Home | History | Annotate | Line # | Download | only in common
vfs_syscalls_43.c revision 1.50
      1  1.50    dyoung /*	$NetBSD: vfs_syscalls_43.c,v 1.50 2009/03/17 00:01:54 dyoung 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.25       agc  * 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.50    dyoung __KERNEL_RCSID(0, "$NetBSD: vfs_syscalls_43.c,v 1.50 2009/03/17 00:01:54 dyoung Exp $");
     41   1.9   thorpej 
     42  1.18       mrg #if defined(_KERNEL_OPT)
     43  1.50    dyoung #include "opt_compat_netbsd.h"
     44   1.9   thorpej #include "fs_union.h"
     45  1.15  jdolecek #endif
     46   1.1  christos 
     47   1.1  christos #include <sys/param.h>
     48   1.1  christos #include <sys/systm.h>
     49   1.1  christos #include <sys/filedesc.h>
     50   1.1  christos #include <sys/kernel.h>
     51   1.1  christos #include <sys/proc.h>
     52   1.1  christos #include <sys/file.h>
     53   1.1  christos #include <sys/vnode.h>
     54   1.1  christos #include <sys/namei.h>
     55   1.1  christos #include <sys/dirent.h>
     56   1.1  christos #include <sys/socket.h>
     57   1.1  christos #include <sys/socketvar.h>
     58   1.1  christos #include <sys/stat.h>
     59  1.27  christos #include <sys/malloc.h>
     60   1.1  christos #include <sys/ioctl.h>
     61   1.1  christos #include <sys/fcntl.h>
     62   1.1  christos #include <sys/syslog.h>
     63   1.1  christos #include <sys/unistd.h>
     64   1.1  christos #include <sys/resourcevar.h>
     65  1.30  christos #include <sys/sysctl.h>
     66   1.1  christos 
     67   1.1  christos #include <sys/mount.h>
     68   1.1  christos #include <sys/syscallargs.h>
     69  1.37       dsl #include <sys/vfs_syscalls.h>
     70   1.1  christos 
     71  1.30  christos #include <compat/sys/stat.h>
     72  1.30  christos #include <compat/sys/mount.h>
     73  1.30  christos 
     74  1.48        ad #include <compat/common/compat_util.h>
     75  1.48        ad 
     76  1.42       dsl static void cvtstat(struct stat *, struct stat43 *);
     77   1.4  christos 
     78   1.1  christos /*
     79   1.1  christos  * Convert from an old to a new stat structure.
     80   1.1  christos  */
     81   1.4  christos static void
     82  1.43       dsl cvtstat(struct stat *st, struct stat43 *ost)
     83   1.1  christos {
     84   1.1  christos 
     85   1.1  christos 	ost->st_dev = st->st_dev;
     86   1.1  christos 	ost->st_ino = st->st_ino;
     87  1.11  wrstuden 	ost->st_mode = st->st_mode & 0xffff;
     88   1.1  christos 	ost->st_nlink = st->st_nlink;
     89   1.1  christos 	ost->st_uid = st->st_uid;
     90   1.1  christos 	ost->st_gid = st->st_gid;
     91   1.1  christos 	ost->st_rdev = st->st_rdev;
     92   1.1  christos 	if (st->st_size < (quad_t)1 << 32)
     93   1.1  christos 		ost->st_size = st->st_size;
     94   1.1  christos 	else
     95   1.1  christos 		ost->st_size = -2;
     96   1.1  christos 	ost->st_atime = st->st_atime;
     97   1.1  christos 	ost->st_mtime = st->st_mtime;
     98   1.1  christos 	ost->st_ctime = st->st_ctime;
     99   1.1  christos 	ost->st_blksize = st->st_blksize;
    100   1.1  christos 	ost->st_blocks = st->st_blocks;
    101   1.1  christos 	ost->st_flags = st->st_flags;
    102   1.1  christos 	ost->st_gen = st->st_gen;
    103   1.1  christos }
    104   1.1  christos 
    105   1.1  christos /*
    106   1.1  christos  * Get file status; this version follows links.
    107   1.1  christos  */
    108   1.1  christos /* ARGSUSED */
    109   1.1  christos int
    110  1.45       dsl compat_43_sys_stat(struct lwp *l, const struct compat_43_sys_stat_args *uap, register_t *retval)
    111   1.2   thorpej {
    112  1.45       dsl 	/* {
    113   1.1  christos 		syscallarg(char *) path;
    114   1.8  christos 		syscallarg(struct stat43 *) ub;
    115  1.45       dsl 	} */
    116   1.1  christos 	struct stat sb;
    117   1.8  christos 	struct stat43 osb;
    118   1.1  christos 	int error;
    119   1.1  christos 
    120  1.46        ad 	error = do_sys_stat(SCARG(uap, path), FOLLOW, &sb);
    121   1.1  christos 	if (error)
    122   1.1  christos 		return (error);
    123   1.1  christos 	cvtstat(&sb, &osb);
    124  1.36  christos 	error = copyout((void *)&osb, (void *)SCARG(uap, ub), sizeof (osb));
    125   1.1  christos 	return (error);
    126   1.1  christos }
    127   1.1  christos 
    128   1.1  christos /*
    129   1.1  christos  * Get file status; this version does not follow links.
    130   1.1  christos  */
    131   1.1  christos /* ARGSUSED */
    132   1.1  christos int
    133  1.45       dsl compat_43_sys_lstat(struct lwp *l, const struct compat_43_sys_lstat_args *uap, register_t *retval)
    134   1.2   thorpej {
    135  1.45       dsl 	/* {
    136   1.1  christos 		syscallarg(char *) path;
    137  1.10      fvdl 		syscallarg(struct ostat *) ub;
    138  1.45       dsl 	} */
    139  1.10      fvdl 	struct vnode *vp, *dvp;
    140  1.10      fvdl 	struct stat sb, sb1;
    141   1.8  christos 	struct stat43 osb;
    142   1.1  christos 	int error;
    143   1.1  christos 	struct nameidata nd;
    144  1.14        pk 	int ndflags;
    145   1.1  christos 
    146  1.38       dsl 	ndflags = NOFOLLOW | LOCKLEAF | LOCKPARENT | TRYEMULROOT;
    147  1.14        pk again:
    148  1.44     pooka 	NDINIT(&nd, LOOKUP, ndflags, UIO_USERSPACE, SCARG(uap, path));
    149  1.14        pk 	if ((error = namei(&nd))) {
    150  1.14        pk 		if (error == EISDIR && (ndflags & LOCKPARENT) != 0) {
    151  1.14        pk 			/*
    152  1.14        pk 			 * Should only happen on '/'. Retry without LOCKPARENT;
    153  1.14        pk 			 * this is safe since the vnode won't be a VLNK.
    154  1.14        pk 			 */
    155  1.14        pk 			ndflags &= ~LOCKPARENT;
    156  1.14        pk 			goto again;
    157  1.14        pk 		}
    158   1.5  christos 		return (error);
    159  1.14        pk 	}
    160  1.10      fvdl 	/*
    161  1.10      fvdl 	 * For symbolic links, always return the attributes of its
    162  1.10      fvdl 	 * containing directory, except for mode, size, and links.
    163  1.10      fvdl 	 */
    164  1.10      fvdl 	vp = nd.ni_vp;
    165  1.10      fvdl 	dvp = nd.ni_dvp;
    166  1.10      fvdl 	if (vp->v_type != VLNK) {
    167  1.14        pk 		if ((ndflags & LOCKPARENT) != 0) {
    168  1.14        pk 			if (dvp == vp)
    169  1.14        pk 				vrele(dvp);
    170  1.14        pk 			else
    171  1.14        pk 				vput(dvp);
    172  1.14        pk 		}
    173  1.46        ad 		error = vn_stat(vp, &sb);
    174  1.10      fvdl 		vput(vp);
    175  1.10      fvdl 		if (error)
    176  1.10      fvdl 			return (error);
    177  1.10      fvdl 	} else {
    178  1.46        ad 		error = vn_stat(dvp, &sb);
    179  1.10      fvdl 		vput(dvp);
    180  1.10      fvdl 		if (error) {
    181  1.10      fvdl 			vput(vp);
    182  1.10      fvdl 			return (error);
    183  1.10      fvdl 		}
    184  1.46        ad 		error = vn_stat(vp, &sb1);
    185  1.10      fvdl 		vput(vp);
    186  1.10      fvdl 		if (error)
    187  1.10      fvdl 			return (error);
    188  1.10      fvdl 		sb.st_mode &= ~S_IFDIR;
    189  1.10      fvdl 		sb.st_mode |= S_IFLNK;
    190  1.10      fvdl 		sb.st_nlink = sb1.st_nlink;
    191  1.10      fvdl 		sb.st_size = sb1.st_size;
    192  1.10      fvdl 		sb.st_blocks = sb1.st_blocks;
    193  1.10      fvdl 	}
    194   1.1  christos 	cvtstat(&sb, &osb);
    195  1.36  christos 	error = copyout((void *)&osb, (void *)SCARG(uap, ub), sizeof (osb));
    196   1.1  christos 	return (error);
    197   1.1  christos }
    198   1.1  christos 
    199   1.1  christos /*
    200   1.1  christos  * Return status information about a file descriptor.
    201   1.1  christos  */
    202   1.1  christos /* ARGSUSED */
    203   1.4  christos int
    204  1.45       dsl compat_43_sys_fstat(struct lwp *l, const struct compat_43_sys_fstat_args *uap, register_t *retval)
    205   1.2   thorpej {
    206  1.45       dsl 	/* {
    207   1.1  christos 		syscallarg(int) fd;
    208   1.8  christos 		syscallarg(struct stat43 *) sb;
    209  1.45       dsl 	} */
    210   1.1  christos 	struct stat ub;
    211   1.8  christos 	struct stat43 oub;
    212   1.1  christos 	int error;
    213   1.1  christos 
    214  1.49     njoly 	error = do_sys_fstat(SCARG(uap, fd), &ub);
    215  1.16  jdolecek 	if (error == 0) {
    216  1.16  jdolecek 		cvtstat(&ub, &oub);
    217  1.36  christos 		error = copyout((void *)&oub, (void *)SCARG(uap, sb),
    218   1.1  christos 		    sizeof (oub));
    219  1.16  jdolecek 	}
    220  1.16  jdolecek 
    221   1.1  christos 	return (error);
    222   1.1  christos }
    223   1.1  christos 
    224   1.1  christos 
    225   1.1  christos /*
    226   1.1  christos  * Truncate a file given a file descriptor.
    227   1.1  christos  */
    228   1.1  christos /* ARGSUSED */
    229   1.1  christos int
    230  1.45       dsl compat_43_sys_ftruncate(struct lwp *l, const struct compat_43_sys_ftruncate_args *uap, register_t *retval)
    231   1.2   thorpej {
    232  1.45       dsl 	/* {
    233   1.1  christos 		syscallarg(int) fd;
    234   1.1  christos 		syscallarg(long) length;
    235  1.45       dsl 	} */
    236   1.3   mycroft 	struct sys_ftruncate_args /* {
    237   1.1  christos 		syscallarg(int) fd;
    238   1.1  christos 		syscallarg(int) pad;
    239   1.1  christos 		syscallarg(off_t) length;
    240   1.1  christos 	} */ nuap;
    241   1.1  christos 
    242   1.1  christos 	SCARG(&nuap, fd) = SCARG(uap, fd);
    243   1.1  christos 	SCARG(&nuap, length) = SCARG(uap, length);
    244  1.22   thorpej 	return (sys_ftruncate(l, &nuap, retval));
    245   1.1  christos }
    246   1.1  christos 
    247   1.1  christos /*
    248   1.1  christos  * Truncate a file given its path name.
    249   1.1  christos  */
    250   1.1  christos /* ARGSUSED */
    251   1.1  christos int
    252  1.45       dsl compat_43_sys_truncate(struct lwp *l, const struct compat_43_sys_truncate_args *uap, register_t *retval)
    253   1.2   thorpej {
    254  1.45       dsl 	/* {
    255   1.1  christos 		syscallarg(char *) path;
    256   1.1  christos 		syscallarg(long) length;
    257  1.45       dsl 	} */
    258   1.3   mycroft 	struct sys_truncate_args /* {
    259   1.1  christos 		syscallarg(char *) path;
    260   1.1  christos 		syscallarg(int) pad;
    261   1.1  christos 		syscallarg(off_t) length;
    262   1.1  christos 	} */ nuap;
    263   1.1  christos 
    264   1.1  christos 	SCARG(&nuap, path) = SCARG(uap, path);
    265   1.1  christos 	SCARG(&nuap, length) = SCARG(uap, length);
    266  1.22   thorpej 	return (sys_truncate(l, &nuap, retval));
    267   1.1  christos }
    268   1.1  christos 
    269   1.1  christos 
    270   1.1  christos /*
    271   1.1  christos  * Reposition read/write file offset.
    272   1.1  christos  */
    273   1.1  christos int
    274  1.45       dsl compat_43_sys_lseek(struct lwp *l, const struct compat_43_sys_lseek_args *uap, register_t *retval)
    275   1.2   thorpej {
    276  1.45       dsl 	/* {
    277   1.1  christos 		syscallarg(int) fd;
    278   1.1  christos 		syscallarg(long) offset;
    279   1.1  christos 		syscallarg(int) whence;
    280  1.45       dsl 	} */
    281   1.3   mycroft 	struct sys_lseek_args /* {
    282   1.1  christos 		syscallarg(int) fd;
    283   1.1  christos 		syscallarg(int) pad;
    284   1.1  christos 		syscallarg(off_t) offset;
    285   1.1  christos 		syscallarg(int) whence;
    286   1.1  christos 	} */ nuap;
    287   1.1  christos 	off_t qret;
    288   1.1  christos 	int error;
    289   1.1  christos 
    290   1.1  christos 	SCARG(&nuap, fd) = SCARG(uap, fd);
    291   1.1  christos 	SCARG(&nuap, offset) = SCARG(uap, offset);
    292   1.1  christos 	SCARG(&nuap, whence) = SCARG(uap, whence);
    293  1.22   thorpej 	error = sys_lseek(l, &nuap, (void *)&qret);
    294   1.1  christos 	*(long *)retval = qret;
    295   1.1  christos 	return (error);
    296   1.1  christos }
    297   1.1  christos 
    298   1.1  christos 
    299   1.1  christos /*
    300   1.1  christos  * Create a file.
    301   1.1  christos  */
    302   1.1  christos int
    303  1.45       dsl compat_43_sys_creat(struct lwp *l, const struct compat_43_sys_creat_args *uap, register_t *retval)
    304   1.2   thorpej {
    305  1.45       dsl 	/* {
    306   1.1  christos 		syscallarg(char *) path;
    307   1.1  christos 		syscallarg(int) mode;
    308  1.45       dsl 	} */
    309   1.3   mycroft 	struct sys_open_args /* {
    310   1.1  christos 		syscallarg(char *) path;
    311   1.1  christos 		syscallarg(int) flags;
    312   1.1  christos 		syscallarg(int) mode;
    313   1.1  christos 	} */ nuap;
    314   1.1  christos 
    315   1.1  christos 	SCARG(&nuap, path) = SCARG(uap, path);
    316   1.1  christos 	SCARG(&nuap, mode) = SCARG(uap, mode);
    317   1.1  christos 	SCARG(&nuap, flags) = O_WRONLY | O_CREAT | O_TRUNC;
    318  1.22   thorpej 	return (sys_open(l, &nuap, retval));
    319   1.1  christos }
    320   1.1  christos 
    321   1.1  christos /*ARGSUSED*/
    322   1.1  christos int
    323  1.45       dsl compat_43_sys_quota(struct lwp *l, const void *v, register_t *retval)
    324   1.1  christos {
    325   1.1  christos 
    326   1.1  christos 	return (ENOSYS);
    327   1.1  christos }
    328   1.1  christos 
    329   1.1  christos 
    330   1.1  christos /*
    331   1.1  christos  * Read a block of directory entries in a file system independent format.
    332   1.1  christos  */
    333   1.1  christos int
    334  1.45       dsl compat_43_sys_getdirentries(struct lwp *l, const struct compat_43_sys_getdirentries_args *uap, register_t *retval)
    335   1.2   thorpej {
    336  1.45       dsl 	/* {
    337   1.1  christos 		syscallarg(int) fd;
    338   1.1  christos 		syscallarg(char *) buf;
    339   1.1  christos 		syscallarg(u_int) count;
    340   1.1  christos 		syscallarg(long *) basep;
    341  1.45       dsl 	} */
    342  1.13  augustss 	struct vnode *vp;
    343   1.1  christos 	struct file *fp;
    344   1.1  christos 	struct uio auio, kuio;
    345   1.1  christos 	struct iovec aiov, kiov;
    346   1.1  christos 	struct dirent *dp, *edp;
    347  1.36  christos 	char *dirbuf;
    348  1.27  christos 	size_t count = min(MAXBSIZE, (size_t)SCARG(uap, count));
    349  1.27  christos 
    350   1.1  christos 	int error, eofflag, readcnt;
    351   1.1  christos 	long loff;
    352   1.1  christos 
    353  1.47        ad 	/* fd_getvnode() will use the descriptor for us */
    354  1.47        ad 	if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
    355   1.1  christos 		return (error);
    356  1.12   thorpej 	if ((fp->f_flag & FREAD) == 0) {
    357  1.12   thorpej 		error = EBADF;
    358  1.12   thorpej 		goto out;
    359  1.12   thorpej 	}
    360   1.1  christos 	vp = (struct vnode *)fp->f_data;
    361   1.1  christos unionread:
    362  1.12   thorpej 	if (vp->v_type != VDIR) {
    363  1.12   thorpej 		error = EINVAL;
    364  1.12   thorpej 		goto out;
    365  1.12   thorpej 	}
    366   1.1  christos 	aiov.iov_base = SCARG(uap, buf);
    367  1.27  christos 	aiov.iov_len = count;
    368   1.1  christos 	auio.uio_iov = &aiov;
    369   1.1  christos 	auio.uio_iovcnt = 1;
    370   1.1  christos 	auio.uio_rw = UIO_READ;
    371  1.27  christos 	auio.uio_resid = count;
    372  1.32      yamt 	KASSERT(l == curlwp);
    373  1.46        ad 	auio.uio_vmspace = curproc->p_vmspace;
    374  1.10      fvdl 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    375   1.1  christos 	loff = auio.uio_offset = fp->f_offset;
    376   1.1  christos #	if (BYTE_ORDER != LITTLE_ENDIAN)
    377  1.28   mycroft 		if ((vp->v_mount->mnt_iflag & IMNT_DTYPE) == 0) {
    378   1.1  christos 			error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag,
    379  1.10      fvdl 			    (off_t **)0, (int *)0);
    380   1.1  christos 			fp->f_offset = auio.uio_offset;
    381   1.1  christos 		} else
    382   1.1  christos #	endif
    383   1.1  christos 	{
    384   1.1  christos 		kuio = auio;
    385   1.1  christos 		kuio.uio_iov = &kiov;
    386  1.27  christos 		kiov.iov_len = count;
    387  1.27  christos 		dirbuf = malloc(count, M_TEMP, M_WAITOK);
    388   1.1  christos 		kiov.iov_base = dirbuf;
    389  1.32      yamt 		UIO_SETUP_SYSSPACE(&kuio);
    390   1.1  christos 		error = VOP_READDIR(vp, &kuio, fp->f_cred, &eofflag,
    391  1.10      fvdl 			    (off_t **)0, (int *)0);
    392   1.1  christos 		fp->f_offset = kuio.uio_offset;
    393   1.1  christos 		if (error == 0) {
    394  1.27  christos 			readcnt = count - kuio.uio_resid;
    395   1.1  christos 			edp = (struct dirent *)&dirbuf[readcnt];
    396   1.1  christos 			for (dp = (struct dirent *)dirbuf; dp < edp; ) {
    397   1.1  christos #				if (BYTE_ORDER == LITTLE_ENDIAN)
    398   1.1  christos 					/*
    399   1.1  christos 					 * The expected low byte of
    400   1.1  christos 					 * dp->d_namlen is our dp->d_type.
    401   1.1  christos 					 * The high MBZ byte of dp->d_namlen
    402   1.1  christos 					 * is our dp->d_namlen.
    403   1.1  christos 					 */
    404   1.1  christos 					dp->d_type = dp->d_namlen;
    405   1.1  christos 					dp->d_namlen = 0;
    406   1.1  christos #				else
    407   1.1  christos 					/*
    408   1.1  christos 					 * The dp->d_type is the high byte
    409   1.1  christos 					 * of the expected dp->d_namlen,
    410   1.1  christos 					 * so must be zero'ed.
    411   1.1  christos 					 */
    412   1.1  christos 					dp->d_type = 0;
    413   1.1  christos #				endif
    414   1.1  christos 				if (dp->d_reclen > 0) {
    415   1.1  christos 					dp = (struct dirent *)
    416   1.1  christos 					    ((char *)dp + dp->d_reclen);
    417   1.1  christos 				} else {
    418   1.1  christos 					error = EIO;
    419   1.1  christos 					break;
    420   1.1  christos 				}
    421   1.1  christos 			}
    422   1.1  christos 			if (dp >= edp)
    423   1.1  christos 				error = uiomove(dirbuf, readcnt, &auio);
    424   1.1  christos 		}
    425  1.27  christos 		free(dirbuf, M_TEMP);
    426   1.1  christos 	}
    427  1.10      fvdl 	VOP_UNLOCK(vp, 0);
    428   1.1  christos 	if (error)
    429  1.12   thorpej 		goto out;
    430   1.1  christos 
    431  1.27  christos 	if ((count == auio.uio_resid) &&
    432  1.40        ad 	    (vp->v_vflag & VV_ROOT) &&
    433   1.1  christos 	    (vp->v_mount->mnt_flag & MNT_UNION)) {
    434   1.1  christos 		struct vnode *tvp = vp;
    435   1.1  christos 		vp = vp->v_mount->mnt_vnodecovered;
    436   1.1  christos 		VREF(vp);
    437  1.36  christos 		fp->f_data = (void *) vp;
    438   1.1  christos 		fp->f_offset = 0;
    439   1.1  christos 		vrele(tvp);
    440   1.1  christos 		goto unionread;
    441   1.1  christos 	}
    442  1.36  christos 	error = copyout((void *)&loff, (void *)SCARG(uap, basep),
    443   1.1  christos 	    sizeof(long));
    444  1.27  christos 	*retval = count - auio.uio_resid;
    445  1.12   thorpej  out:
    446  1.46        ad 	fd_putfile(SCARG(uap, fd));
    447   1.1  christos 	return (error);
    448   1.1  christos }
    449  1.30  christos 
    450  1.30  christos /*
    451  1.30  christos  * sysctl helper routine for vfs.generic.conf lookups.
    452  1.30  christos  */
    453  1.30  christos #if defined(COMPAT_09) || defined(COMPAT_43) || defined(COMPAT_44)
    454  1.48        ad static struct sysctllog *compat_clog;
    455  1.48        ad 
    456  1.30  christos static int
    457  1.30  christos sysctl_vfs_generic_conf(SYSCTLFN_ARGS)
    458  1.30  christos {
    459  1.30  christos         struct vfsconf vfc;
    460  1.30  christos         extern const char * const mountcompatnames[];
    461  1.30  christos         extern int nmountcompatnames;
    462  1.30  christos 	struct sysctlnode node;
    463  1.30  christos 	struct vfsops *vfsp;
    464  1.30  christos 	u_int vfsnum;
    465  1.30  christos 
    466  1.30  christos 	if (namelen != 1)
    467  1.30  christos 		return (ENOTDIR);
    468  1.30  christos 	vfsnum = name[0];
    469  1.30  christos 	if (vfsnum >= nmountcompatnames ||
    470  1.30  christos 	    mountcompatnames[vfsnum] == NULL)
    471  1.30  christos 		return (EOPNOTSUPP);
    472  1.30  christos 	vfsp = vfs_getopsbyname(mountcompatnames[vfsnum]);
    473  1.30  christos 	if (vfsp == NULL)
    474  1.30  christos 		return (EOPNOTSUPP);
    475  1.30  christos 
    476  1.30  christos 	vfc.vfc_vfsops = vfsp;
    477  1.39  christos 	strncpy(vfc.vfc_name, vfsp->vfs_name, sizeof(vfc.vfc_name));
    478  1.30  christos 	vfc.vfc_typenum = vfsnum;
    479  1.30  christos 	vfc.vfc_refcount = vfsp->vfs_refcount;
    480  1.30  christos 	vfc.vfc_flags = 0;
    481  1.30  christos 	vfc.vfc_mountroot = vfsp->vfs_mountroot;
    482  1.30  christos 	vfc.vfc_next = NULL;
    483  1.40        ad 	vfs_delref(vfsp);
    484  1.30  christos 
    485  1.30  christos 	node = *rnode;
    486  1.30  christos 	node.sysctl_data = &vfc;
    487  1.30  christos 	return (sysctl_lookup(SYSCTLFN_CALL(&node)));
    488  1.30  christos }
    489  1.30  christos 
    490  1.30  christos /*
    491  1.30  christos  * Top level filesystem related information gathering.
    492  1.30  christos  */
    493  1.48        ad void
    494  1.48        ad compat_sysctl_init(void)
    495  1.30  christos {
    496  1.30  christos 	extern int nmountcompatnames;
    497  1.30  christos 
    498  1.48        ad 	sysctl_createv(&compat_clog, 0, NULL, NULL,
    499  1.30  christos 		       CTLFLAG_PERMANENT|CTLFLAG_IMMEDIATE,
    500  1.30  christos 		       CTLTYPE_INT, "maxtypenum",
    501  1.30  christos 		       SYSCTL_DESCR("Highest valid filesystem type number"),
    502  1.30  christos 		       NULL, nmountcompatnames, NULL, 0,
    503  1.30  christos 		       CTL_VFS, VFS_GENERIC, VFS_MAXTYPENUM, CTL_EOL);
    504  1.48        ad 	sysctl_createv(&compat_clog, 0, NULL, NULL,
    505  1.30  christos 		       CTLFLAG_PERMANENT,
    506  1.30  christos 		       CTLTYPE_STRUCT, "conf",
    507  1.30  christos 		       SYSCTL_DESCR("Filesystem configuration information"),
    508  1.30  christos 		       sysctl_vfs_generic_conf, 0, NULL,
    509  1.30  christos 		       sizeof(struct vfsconf),
    510  1.30  christos 		       CTL_VFS, VFS_GENERIC, VFS_CONF, CTL_EOL);
    511  1.30  christos }
    512  1.48        ad 
    513  1.48        ad void
    514  1.48        ad compat_sysctl_fini(void)
    515  1.48        ad {
    516  1.48        ad 
    517  1.48        ad 	sysctl_teardown(&compat_clog);
    518  1.48        ad }
    519  1.30  christos #endif
    520