Home | History | Annotate | Line # | Download | only in common
vfs_syscalls_43.c revision 1.24.2.3
      1  1.24.2.3     skrll /*	$NetBSD: vfs_syscalls_43.c,v 1.24.2.3 2004/08/25 06:57:33 skrll Exp $	*/
      2       1.1  christos 
      3       1.1  christos /*
      4       1.1  christos  * Copyright (c) 1989, 1993
      5       1.1  christos  *	The Regents of the University of California.  All rights reserved.
      6       1.1  christos  * (c) UNIX System Laboratories, Inc.
      7       1.1  christos  * All or some portions of this file are derived from material licensed
      8       1.1  christos  * to the University of California by American Telephone and Telegraph
      9       1.1  christos  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10       1.1  christos  * the permission of UNIX System Laboratories, Inc.
     11       1.1  christos  *
     12       1.1  christos  * Redistribution and use in source and binary forms, with or without
     13       1.1  christos  * modification, are permitted provided that the following conditions
     14       1.1  christos  * are met:
     15       1.1  christos  * 1. Redistributions of source code must retain the above copyright
     16       1.1  christos  *    notice, this list of conditions and the following disclaimer.
     17       1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     19       1.1  christos  *    documentation and/or other materials provided with the distribution.
     20  1.24.2.2     skrll  * 3. Neither the name of the University nor the names of its contributors
     21       1.1  christos  *    may be used to endorse or promote products derived from this software
     22       1.1  christos  *    without specific prior written permission.
     23       1.1  christos  *
     24       1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25       1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26       1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1  christos  * SUCH DAMAGE.
     35       1.1  christos  *
     36       1.1  christos  *	@(#)vfs_syscalls.c	8.28 (Berkeley) 12/10/94
     37       1.1  christos  */
     38      1.20     lukem 
     39      1.20     lukem #include <sys/cdefs.h>
     40  1.24.2.3     skrll __KERNEL_RCSID(0, "$NetBSD: vfs_syscalls_43.c,v 1.24.2.3 2004/08/25 06:57:33 skrll Exp $");
     41       1.9   thorpej 
     42      1.18       mrg #if defined(_KERNEL_OPT)
     43       1.9   thorpej #include "fs_union.h"
     44      1.15  jdolecek #endif
     45       1.1  christos 
     46       1.1  christos #include <sys/param.h>
     47       1.1  christos #include <sys/systm.h>
     48       1.1  christos #include <sys/filedesc.h>
     49       1.1  christos #include <sys/kernel.h>
     50       1.1  christos #include <sys/proc.h>
     51       1.1  christos #include <sys/file.h>
     52       1.1  christos #include <sys/vnode.h>
     53       1.1  christos #include <sys/namei.h>
     54       1.1  christos #include <sys/dirent.h>
     55       1.1  christos #include <sys/socket.h>
     56       1.1  christos #include <sys/socketvar.h>
     57       1.1  christos #include <sys/stat.h>
     58  1.24.2.2     skrll #include <sys/malloc.h>
     59       1.1  christos #include <sys/ioctl.h>
     60       1.1  christos #include <sys/fcntl.h>
     61       1.1  christos #include <sys/syslog.h>
     62       1.1  christos #include <sys/unistd.h>
     63       1.1  christos #include <sys/resourcevar.h>
     64       1.1  christos 
     65       1.1  christos #include <sys/mount.h>
     66      1.22   thorpej #include <sys/sa.h>
     67       1.1  christos #include <sys/syscallargs.h>
     68       1.1  christos 
     69       1.8  christos static void cvtstat __P((struct stat *, struct stat43 *));
     70       1.4  christos 
     71       1.1  christos /*
     72       1.1  christos  * Convert from an old to a new stat structure.
     73       1.1  christos  */
     74       1.4  christos static void
     75       1.1  christos cvtstat(st, ost)
     76       1.1  christos 	struct stat *st;
     77       1.8  christos 	struct stat43 *ost;
     78       1.1  christos {
     79       1.1  christos 
     80       1.1  christos 	ost->st_dev = st->st_dev;
     81       1.1  christos 	ost->st_ino = st->st_ino;
     82      1.11  wrstuden 	ost->st_mode = st->st_mode & 0xffff;
     83       1.1  christos 	ost->st_nlink = st->st_nlink;
     84       1.1  christos 	ost->st_uid = st->st_uid;
     85       1.1  christos 	ost->st_gid = st->st_gid;
     86       1.1  christos 	ost->st_rdev = st->st_rdev;
     87       1.1  christos 	if (st->st_size < (quad_t)1 << 32)
     88       1.1  christos 		ost->st_size = st->st_size;
     89       1.1  christos 	else
     90       1.1  christos 		ost->st_size = -2;
     91       1.1  christos 	ost->st_atime = st->st_atime;
     92       1.1  christos 	ost->st_mtime = st->st_mtime;
     93       1.1  christos 	ost->st_ctime = st->st_ctime;
     94       1.1  christos 	ost->st_blksize = st->st_blksize;
     95       1.1  christos 	ost->st_blocks = st->st_blocks;
     96       1.1  christos 	ost->st_flags = st->st_flags;
     97       1.1  christos 	ost->st_gen = st->st_gen;
     98       1.1  christos }
     99       1.1  christos 
    100       1.1  christos /*
    101       1.1  christos  * Get file status; this version follows links.
    102       1.1  christos  */
    103       1.1  christos /* ARGSUSED */
    104       1.1  christos int
    105      1.22   thorpej compat_43_sys_stat(struct lwp *l, void *v, register_t *retval)
    106       1.2   thorpej {
    107      1.13  augustss 	struct compat_43_sys_stat_args /* {
    108       1.1  christos 		syscallarg(char *) path;
    109       1.8  christos 		syscallarg(struct stat43 *) ub;
    110       1.2   thorpej 	} */ *uap = v;
    111       1.1  christos 	struct stat sb;
    112       1.8  christos 	struct stat43 osb;
    113       1.1  christos 	int error;
    114       1.1  christos 	struct nameidata nd;
    115       1.1  christos 
    116       1.1  christos 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE,
    117  1.24.2.1   darrenr 	    SCARG(uap, path), l);
    118       1.4  christos 	if ((error = namei(&nd)) != 0)
    119       1.1  christos 		return (error);
    120  1.24.2.1   darrenr 	error = vn_stat(nd.ni_vp, &sb, l);
    121       1.1  christos 	vput(nd.ni_vp);
    122       1.1  christos 	if (error)
    123       1.1  christos 		return (error);
    124       1.1  christos 	cvtstat(&sb, &osb);
    125       1.1  christos 	error = copyout((caddr_t)&osb, (caddr_t)SCARG(uap, ub), sizeof (osb));
    126       1.1  christos 	return (error);
    127       1.1  christos }
    128       1.1  christos 
    129       1.1  christos /*
    130       1.1  christos  * Get file status; this version does not follow links.
    131       1.1  christos  */
    132       1.1  christos /* ARGSUSED */
    133       1.1  christos int
    134      1.22   thorpej compat_43_sys_lstat(struct lwp *l, void *v, register_t *retval)
    135       1.2   thorpej {
    136      1.13  augustss 	struct compat_43_sys_lstat_args /* {
    137       1.1  christos 		syscallarg(char *) path;
    138      1.10      fvdl 		syscallarg(struct ostat *) ub;
    139       1.2   thorpej 	} */ *uap = v;
    140      1.10      fvdl 	struct vnode *vp, *dvp;
    141      1.10      fvdl 	struct stat sb, sb1;
    142       1.8  christos 	struct stat43 osb;
    143       1.1  christos 	int error;
    144       1.1  christos 	struct nameidata nd;
    145      1.14        pk 	int ndflags;
    146       1.1  christos 
    147      1.14        pk 	ndflags = NOFOLLOW | LOCKLEAF | LOCKPARENT;
    148      1.14        pk again:
    149  1.24.2.1   darrenr 	NDINIT(&nd, LOOKUP, ndflags, UIO_USERSPACE, SCARG(uap, path), l);
    150      1.14        pk 	if ((error = namei(&nd))) {
    151      1.14        pk 		if (error == EISDIR && (ndflags & LOCKPARENT) != 0) {
    152      1.14        pk 			/*
    153      1.14        pk 			 * Should only happen on '/'. Retry without LOCKPARENT;
    154      1.14        pk 			 * this is safe since the vnode won't be a VLNK.
    155      1.14        pk 			 */
    156      1.14        pk 			ndflags &= ~LOCKPARENT;
    157      1.14        pk 			goto again;
    158      1.14        pk 		}
    159       1.5  christos 		return (error);
    160      1.14        pk 	}
    161      1.10      fvdl 	/*
    162      1.10      fvdl 	 * For symbolic links, always return the attributes of its
    163      1.10      fvdl 	 * containing directory, except for mode, size, and links.
    164      1.10      fvdl 	 */
    165      1.10      fvdl 	vp = nd.ni_vp;
    166      1.10      fvdl 	dvp = nd.ni_dvp;
    167      1.10      fvdl 	if (vp->v_type != VLNK) {
    168      1.14        pk 		if ((ndflags & LOCKPARENT) != 0) {
    169      1.14        pk 			if (dvp == vp)
    170      1.14        pk 				vrele(dvp);
    171      1.14        pk 			else
    172      1.14        pk 				vput(dvp);
    173      1.14        pk 		}
    174  1.24.2.1   darrenr 		error = vn_stat(vp, &sb, l);
    175      1.10      fvdl 		vput(vp);
    176      1.10      fvdl 		if (error)
    177      1.10      fvdl 			return (error);
    178      1.10      fvdl 	} else {
    179  1.24.2.1   darrenr 		error = vn_stat(dvp, &sb, l);
    180      1.10      fvdl 		vput(dvp);
    181      1.10      fvdl 		if (error) {
    182      1.10      fvdl 			vput(vp);
    183      1.10      fvdl 			return (error);
    184      1.10      fvdl 		}
    185  1.24.2.1   darrenr 		error = vn_stat(vp, &sb1, l);
    186      1.10      fvdl 		vput(vp);
    187      1.10      fvdl 		if (error)
    188      1.10      fvdl 			return (error);
    189      1.10      fvdl 		sb.st_mode &= ~S_IFDIR;
    190      1.10      fvdl 		sb.st_mode |= S_IFLNK;
    191      1.10      fvdl 		sb.st_nlink = sb1.st_nlink;
    192      1.10      fvdl 		sb.st_size = sb1.st_size;
    193      1.10      fvdl 		sb.st_blocks = sb1.st_blocks;
    194      1.10      fvdl 	}
    195       1.1  christos 	cvtstat(&sb, &osb);
    196      1.10      fvdl 	error = copyout((caddr_t)&osb, (caddr_t)SCARG(uap, ub), sizeof (osb));
    197       1.1  christos 	return (error);
    198       1.1  christos }
    199       1.1  christos 
    200       1.1  christos /*
    201       1.1  christos  * Return status information about a file descriptor.
    202       1.1  christos  */
    203       1.1  christos /* ARGSUSED */
    204       1.4  christos int
    205      1.22   thorpej compat_43_sys_fstat(struct lwp *l, void *v, register_t *retval)
    206       1.2   thorpej {
    207      1.13  augustss 	struct compat_43_sys_fstat_args /* {
    208       1.1  christos 		syscallarg(int) fd;
    209       1.8  christos 		syscallarg(struct stat43 *) sb;
    210       1.2   thorpej 	} */ *uap = v;
    211      1.22   thorpej 	struct proc *p = l->l_proc;
    212       1.1  christos 	int fd = SCARG(uap, fd);
    213      1.13  augustss 	struct filedesc *fdp = p->p_fd;
    214      1.13  augustss 	struct file *fp;
    215       1.1  christos 	struct stat ub;
    216       1.8  christos 	struct stat43 oub;
    217       1.1  christos 	int error;
    218       1.1  christos 
    219      1.19   thorpej 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    220       1.1  christos 		return (EBADF);
    221       1.1  christos 
    222      1.16  jdolecek 	FILE_USE(fp);
    223  1.24.2.1   darrenr 	error = (*fp->f_ops->fo_stat)(fp, &ub, l);
    224  1.24.2.1   darrenr 	FILE_UNUSE(fp, l);
    225      1.16  jdolecek 
    226      1.16  jdolecek 	if (error == 0) {
    227      1.16  jdolecek 		cvtstat(&ub, &oub);
    228       1.1  christos 		error = copyout((caddr_t)&oub, (caddr_t)SCARG(uap, sb),
    229       1.1  christos 		    sizeof (oub));
    230      1.16  jdolecek 	}
    231      1.16  jdolecek 
    232      1.16  jdolecek 
    233       1.1  christos 	return (error);
    234       1.1  christos }
    235       1.1  christos 
    236       1.1  christos 
    237       1.1  christos /*
    238       1.1  christos  * Truncate a file given a file descriptor.
    239       1.1  christos  */
    240       1.1  christos /* ARGSUSED */
    241       1.1  christos int
    242      1.22   thorpej compat_43_sys_ftruncate(struct lwp *l, void *v, register_t *retval)
    243       1.2   thorpej {
    244      1.13  augustss 	struct compat_43_sys_ftruncate_args /* {
    245       1.1  christos 		syscallarg(int) fd;
    246       1.1  christos 		syscallarg(long) length;
    247       1.2   thorpej 	} */ *uap = v;
    248       1.3   mycroft 	struct sys_ftruncate_args /* {
    249       1.1  christos 		syscallarg(int) fd;
    250       1.1  christos 		syscallarg(int) pad;
    251       1.1  christos 		syscallarg(off_t) length;
    252       1.1  christos 	} */ nuap;
    253       1.1  christos 
    254       1.1  christos 	SCARG(&nuap, fd) = SCARG(uap, fd);
    255       1.1  christos 	SCARG(&nuap, length) = SCARG(uap, length);
    256      1.22   thorpej 	return (sys_ftruncate(l, &nuap, retval));
    257       1.1  christos }
    258       1.1  christos 
    259       1.1  christos /*
    260       1.1  christos  * Truncate a file given its path name.
    261       1.1  christos  */
    262       1.1  christos /* ARGSUSED */
    263       1.1  christos int
    264      1.22   thorpej compat_43_sys_truncate(struct lwp *l, void *v, register_t *retval)
    265       1.2   thorpej {
    266      1.13  augustss 	struct compat_43_sys_truncate_args /* {
    267       1.1  christos 		syscallarg(char *) path;
    268       1.1  christos 		syscallarg(long) length;
    269       1.2   thorpej 	} */ *uap = v;
    270       1.3   mycroft 	struct sys_truncate_args /* {
    271       1.1  christos 		syscallarg(char *) path;
    272       1.1  christos 		syscallarg(int) pad;
    273       1.1  christos 		syscallarg(off_t) length;
    274       1.1  christos 	} */ nuap;
    275       1.1  christos 
    276       1.1  christos 	SCARG(&nuap, path) = SCARG(uap, path);
    277       1.1  christos 	SCARG(&nuap, length) = SCARG(uap, length);
    278      1.22   thorpej 	return (sys_truncate(l, &nuap, retval));
    279       1.1  christos }
    280       1.1  christos 
    281       1.1  christos 
    282       1.1  christos /*
    283       1.1  christos  * Reposition read/write file offset.
    284       1.1  christos  */
    285       1.1  christos int
    286      1.22   thorpej compat_43_sys_lseek(struct lwp *l, void *v, register_t *retval)
    287       1.2   thorpej {
    288      1.13  augustss 	struct compat_43_sys_lseek_args /* {
    289       1.1  christos 		syscallarg(int) fd;
    290       1.1  christos 		syscallarg(long) offset;
    291       1.1  christos 		syscallarg(int) whence;
    292       1.2   thorpej 	} */ *uap = v;
    293       1.3   mycroft 	struct sys_lseek_args /* {
    294       1.1  christos 		syscallarg(int) fd;
    295       1.1  christos 		syscallarg(int) pad;
    296       1.1  christos 		syscallarg(off_t) offset;
    297       1.1  christos 		syscallarg(int) whence;
    298       1.1  christos 	} */ nuap;
    299       1.1  christos 	off_t qret;
    300       1.1  christos 	int error;
    301       1.1  christos 
    302       1.1  christos 	SCARG(&nuap, fd) = SCARG(uap, fd);
    303       1.1  christos 	SCARG(&nuap, offset) = SCARG(uap, offset);
    304       1.1  christos 	SCARG(&nuap, whence) = SCARG(uap, whence);
    305      1.22   thorpej 	error = sys_lseek(l, &nuap, (void *)&qret);
    306       1.1  christos 	*(long *)retval = qret;
    307       1.1  christos 	return (error);
    308       1.1  christos }
    309       1.1  christos 
    310       1.1  christos 
    311       1.1  christos /*
    312       1.1  christos  * Create a file.
    313       1.1  christos  */
    314       1.1  christos int
    315      1.22   thorpej compat_43_sys_creat(struct lwp *l, void *v, register_t *retval)
    316       1.2   thorpej {
    317      1.13  augustss 	struct compat_43_sys_creat_args /* {
    318       1.1  christos 		syscallarg(char *) path;
    319       1.1  christos 		syscallarg(int) mode;
    320       1.2   thorpej 	} */ *uap = v;
    321       1.3   mycroft 	struct sys_open_args /* {
    322       1.1  christos 		syscallarg(char *) path;
    323       1.1  christos 		syscallarg(int) flags;
    324       1.1  christos 		syscallarg(int) mode;
    325       1.1  christos 	} */ nuap;
    326       1.1  christos 
    327       1.1  christos 	SCARG(&nuap, path) = SCARG(uap, path);
    328       1.1  christos 	SCARG(&nuap, mode) = SCARG(uap, mode);
    329       1.1  christos 	SCARG(&nuap, flags) = O_WRONLY | O_CREAT | O_TRUNC;
    330      1.22   thorpej 	return (sys_open(l, &nuap, retval));
    331       1.1  christos }
    332       1.1  christos 
    333       1.1  christos /*ARGSUSED*/
    334       1.1  christos int
    335      1.22   thorpej compat_43_sys_quota(struct lwp *l, void *v, register_t *retval)
    336       1.1  christos {
    337       1.1  christos 
    338       1.1  christos 	return (ENOSYS);
    339       1.1  christos }
    340       1.1  christos 
    341       1.1  christos 
    342       1.1  christos /*
    343       1.1  christos  * Read a block of directory entries in a file system independent format.
    344       1.1  christos  */
    345       1.1  christos int
    346      1.22   thorpej compat_43_sys_getdirentries(struct lwp *l, void *v, register_t *retval)
    347       1.2   thorpej {
    348      1.13  augustss 	struct compat_43_sys_getdirentries_args /* {
    349       1.1  christos 		syscallarg(int) fd;
    350       1.1  christos 		syscallarg(char *) buf;
    351       1.1  christos 		syscallarg(u_int) count;
    352       1.1  christos 		syscallarg(long *) basep;
    353       1.2   thorpej 	} */ *uap = v;
    354      1.22   thorpej 	struct proc *p = l->l_proc;
    355      1.13  augustss 	struct vnode *vp;
    356       1.1  christos 	struct file *fp;
    357       1.1  christos 	struct uio auio, kuio;
    358       1.1  christos 	struct iovec aiov, kiov;
    359       1.1  christos 	struct dirent *dp, *edp;
    360       1.1  christos 	caddr_t dirbuf;
    361  1.24.2.2     skrll 	size_t count = min(MAXBSIZE, (size_t)SCARG(uap, count));
    362  1.24.2.2     skrll 
    363       1.1  christos 	int error, eofflag, readcnt;
    364       1.1  christos 	long loff;
    365       1.1  christos 
    366      1.12   thorpej 	/* getvnode() will use the descriptor for us */
    367       1.4  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
    368       1.1  christos 		return (error);
    369      1.12   thorpej 	if ((fp->f_flag & FREAD) == 0) {
    370      1.12   thorpej 		error = EBADF;
    371      1.12   thorpej 		goto out;
    372      1.12   thorpej 	}
    373       1.1  christos 	vp = (struct vnode *)fp->f_data;
    374       1.1  christos unionread:
    375      1.12   thorpej 	if (vp->v_type != VDIR) {
    376      1.12   thorpej 		error = EINVAL;
    377      1.12   thorpej 		goto out;
    378      1.12   thorpej 	}
    379       1.1  christos 	aiov.iov_base = SCARG(uap, buf);
    380  1.24.2.2     skrll 	aiov.iov_len = count;
    381       1.1  christos 	auio.uio_iov = &aiov;
    382       1.1  christos 	auio.uio_iovcnt = 1;
    383       1.1  christos 	auio.uio_rw = UIO_READ;
    384       1.1  christos 	auio.uio_segflg = UIO_USERSPACE;
    385  1.24.2.1   darrenr 	auio.uio_lwp = l;
    386  1.24.2.2     skrll 	auio.uio_resid = count;
    387      1.10      fvdl 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    388       1.1  christos 	loff = auio.uio_offset = fp->f_offset;
    389       1.1  christos #	if (BYTE_ORDER != LITTLE_ENDIAN)
    390  1.24.2.3     skrll 		if ((vp->v_mount->mnt_iflag & IMNT_DTYPE) == 0) {
    391       1.1  christos 			error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag,
    392      1.10      fvdl 			    (off_t **)0, (int *)0);
    393       1.1  christos 			fp->f_offset = auio.uio_offset;
    394       1.1  christos 		} else
    395       1.1  christos #	endif
    396       1.1  christos 	{
    397       1.1  christos 		kuio = auio;
    398       1.1  christos 		kuio.uio_iov = &kiov;
    399       1.1  christos 		kuio.uio_segflg = UIO_SYSSPACE;
    400  1.24.2.2     skrll 		kiov.iov_len = count;
    401  1.24.2.2     skrll 		dirbuf = malloc(count, M_TEMP, M_WAITOK);
    402       1.1  christos 		kiov.iov_base = dirbuf;
    403       1.1  christos 		error = VOP_READDIR(vp, &kuio, fp->f_cred, &eofflag,
    404      1.10      fvdl 			    (off_t **)0, (int *)0);
    405       1.1  christos 		fp->f_offset = kuio.uio_offset;
    406       1.1  christos 		if (error == 0) {
    407  1.24.2.2     skrll 			readcnt = count - kuio.uio_resid;
    408       1.1  christos 			edp = (struct dirent *)&dirbuf[readcnt];
    409       1.1  christos 			for (dp = (struct dirent *)dirbuf; dp < edp; ) {
    410       1.1  christos #				if (BYTE_ORDER == LITTLE_ENDIAN)
    411       1.1  christos 					/*
    412       1.1  christos 					 * The expected low byte of
    413       1.1  christos 					 * dp->d_namlen is our dp->d_type.
    414       1.1  christos 					 * The high MBZ byte of dp->d_namlen
    415       1.1  christos 					 * is our dp->d_namlen.
    416       1.1  christos 					 */
    417       1.1  christos 					dp->d_type = dp->d_namlen;
    418       1.1  christos 					dp->d_namlen = 0;
    419       1.1  christos #				else
    420       1.1  christos 					/*
    421       1.1  christos 					 * The dp->d_type is the high byte
    422       1.1  christos 					 * of the expected dp->d_namlen,
    423       1.1  christos 					 * so must be zero'ed.
    424       1.1  christos 					 */
    425       1.1  christos 					dp->d_type = 0;
    426       1.1  christos #				endif
    427       1.1  christos 				if (dp->d_reclen > 0) {
    428       1.1  christos 					dp = (struct dirent *)
    429       1.1  christos 					    ((char *)dp + dp->d_reclen);
    430       1.1  christos 				} else {
    431       1.1  christos 					error = EIO;
    432       1.1  christos 					break;
    433       1.1  christos 				}
    434       1.1  christos 			}
    435       1.1  christos 			if (dp >= edp)
    436       1.1  christos 				error = uiomove(dirbuf, readcnt, &auio);
    437       1.1  christos 		}
    438  1.24.2.2     skrll 		free(dirbuf, M_TEMP);
    439       1.1  christos 	}
    440      1.10      fvdl 	VOP_UNLOCK(vp, 0);
    441       1.1  christos 	if (error)
    442      1.12   thorpej 		goto out;
    443       1.1  christos 
    444       1.1  christos #ifdef UNION
    445       1.1  christos {
    446       1.4  christos 	extern int (**union_vnodeop_p) __P((void *));
    447       1.1  christos 	extern struct vnode *union_dircache __P((struct vnode *));
    448       1.1  christos 
    449  1.24.2.2     skrll 	if ((count == auio.uio_resid) &&
    450       1.1  christos 	    (vp->v_op == union_vnodeop_p)) {
    451       1.1  christos 		struct vnode *lvp;
    452       1.1  christos 
    453       1.1  christos 		lvp = union_dircache(vp);
    454       1.1  christos 		if (lvp != NULLVP) {
    455       1.1  christos 			struct vattr va;
    456       1.1  christos 
    457       1.1  christos 			/*
    458       1.1  christos 			 * If the directory is opaque,
    459       1.1  christos 			 * then don't show lower entries
    460       1.1  christos 			 */
    461  1.24.2.1   darrenr 			error = VOP_GETATTR(vp, &va, fp->f_cred, l);
    462       1.1  christos 			if (va.va_flags & OPAQUE) {
    463       1.1  christos 				vput(lvp);
    464       1.1  christos 				lvp = NULL;
    465       1.1  christos 			}
    466       1.1  christos 		}
    467       1.1  christos 
    468       1.1  christos 		if (lvp != NULLVP) {
    469  1.24.2.1   darrenr 			error = VOP_OPEN(lvp, FREAD, fp->f_cred, l);
    470      1.10      fvdl 			VOP_UNLOCK(lvp, 0);
    471       1.1  christos 
    472       1.1  christos 			if (error) {
    473       1.1  christos 				vrele(lvp);
    474      1.12   thorpej 				goto out;
    475       1.1  christos 			}
    476       1.1  christos 			fp->f_data = (caddr_t) lvp;
    477       1.1  christos 			fp->f_offset = 0;
    478  1.24.2.1   darrenr 			error = vn_close(vp, FREAD, fp->f_cred, l);
    479       1.1  christos 			if (error)
    480      1.12   thorpej 				goto out;
    481       1.1  christos 			vp = lvp;
    482       1.1  christos 			goto unionread;
    483       1.1  christos 		}
    484       1.1  christos 	}
    485       1.1  christos }
    486       1.1  christos #endif /* UNION */
    487       1.1  christos 
    488  1.24.2.2     skrll 	if ((count == auio.uio_resid) &&
    489       1.1  christos 	    (vp->v_flag & VROOT) &&
    490       1.1  christos 	    (vp->v_mount->mnt_flag & MNT_UNION)) {
    491       1.1  christos 		struct vnode *tvp = vp;
    492       1.1  christos 		vp = vp->v_mount->mnt_vnodecovered;
    493       1.1  christos 		VREF(vp);
    494       1.1  christos 		fp->f_data = (caddr_t) vp;
    495       1.1  christos 		fp->f_offset = 0;
    496       1.1  christos 		vrele(tvp);
    497       1.1  christos 		goto unionread;
    498       1.1  christos 	}
    499       1.1  christos 	error = copyout((caddr_t)&loff, (caddr_t)SCARG(uap, basep),
    500       1.1  christos 	    sizeof(long));
    501  1.24.2.2     skrll 	*retval = count - auio.uio_resid;
    502      1.12   thorpej  out:
    503  1.24.2.1   darrenr 	FILE_UNUSE(fp, l);
    504       1.1  christos 	return (error);
    505       1.1  christos }
    506