Home | History | Annotate | Line # | Download | only in common
vfs_syscalls_30.c revision 1.26
      1  1.26        ad /*	$NetBSD: vfs_syscalls_30.c,v 1.26 2008/03/21 21:54:58 ad Exp $	*/
      2   1.1  christos 
      3   1.1  christos /*-
      4  1.26        ad  * Copyright (c) 2005, 2008 The NetBSD Foundation, Inc.
      5   1.1  christos  * All rights reserved.
      6   1.1  christos  *
      7   1.1  christos  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1  christos  * by Christos Zoulas.
      9   1.1  christos  *
     10   1.1  christos  * Redistribution and use in source and binary forms, with or without
     11   1.1  christos  * modification, are permitted provided that the following conditions
     12   1.1  christos  * are met:
     13   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     14   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     15   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  christos  *    documentation and/or other materials provided with the distribution.
     18   1.1  christos  * 3. All advertising materials mentioning features or use of this software
     19   1.1  christos  *    must display the following acknowledgement:
     20   1.1  christos  *        This product includes software developed by the NetBSD
     21   1.1  christos  *        Foundation, Inc. and its contributors.
     22   1.1  christos  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1  christos  *    contributors may be used to endorse or promote products derived
     24   1.1  christos  *    from this software without specific prior written permission.
     25   1.1  christos  *
     26   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1  christos  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1  christos  */
     38   1.1  christos #include <sys/cdefs.h>
     39  1.26        ad __KERNEL_RCSID(0, "$NetBSD: vfs_syscalls_30.c,v 1.26 2008/03/21 21:54:58 ad Exp $");
     40   1.1  christos 
     41   1.1  christos #include <sys/param.h>
     42   1.1  christos #include <sys/systm.h>
     43   1.1  christos #include <sys/namei.h>
     44   1.1  christos #include <sys/filedesc.h>
     45   1.1  christos #include <sys/kernel.h>
     46   1.1  christos #include <sys/file.h>
     47   1.1  christos #include <sys/stat.h>
     48   1.1  christos #include <sys/socketvar.h>
     49   1.1  christos #include <sys/vnode.h>
     50   1.1  christos #include <sys/mount.h>
     51   1.1  christos #include <sys/proc.h>
     52   1.1  christos #include <sys/uio.h>
     53   1.1  christos #include <sys/dirent.h>
     54   1.1  christos #include <sys/malloc.h>
     55   1.9      elad #include <sys/kauth.h>
     56  1.21       dsl #include <sys/vfs_syscalls.h>
     57   1.1  christos 
     58   1.1  christos #include <sys/syscallargs.h>
     59   1.1  christos 
     60   1.1  christos #include <compat/common/compat_util.h>
     61   1.5  christos #include <compat/sys/stat.h>
     62   1.5  christos #include <compat/sys/dirent.h>
     63  1.10    martin #include <compat/sys/mount.h>
     64   1.1  christos 
     65   1.1  christos static void cvtstat(struct stat13 *, const struct stat *);
     66   1.1  christos 
     67   1.1  christos /*
     68   1.1  christos  * Convert from a new to an old stat structure.
     69   1.1  christos  */
     70   1.1  christos static void
     71   1.1  christos cvtstat(struct stat13 *ost, const struct stat *st)
     72   1.1  christos {
     73   1.1  christos 
     74   1.1  christos 	ost->st_dev = st->st_dev;
     75   1.1  christos 	ost->st_ino = (uint32_t)st->st_ino;
     76   1.1  christos 	ost->st_mode = st->st_mode;
     77   1.1  christos 	ost->st_nlink = st->st_nlink;
     78   1.1  christos 	ost->st_uid = st->st_uid;
     79   1.1  christos 	ost->st_gid = st->st_gid;
     80   1.1  christos 	ost->st_rdev = st->st_rdev;
     81   1.1  christos 	ost->st_atimespec = st->st_atimespec;
     82   1.1  christos 	ost->st_mtimespec = st->st_mtimespec;
     83   1.1  christos 	ost->st_ctimespec = st->st_ctimespec;
     84   1.1  christos 	ost->st_birthtimespec = st->st_birthtimespec;
     85   1.1  christos 	ost->st_size = st->st_size;
     86   1.1  christos 	ost->st_blocks = st->st_blocks;
     87   1.1  christos 	ost->st_blksize = st->st_blksize;
     88   1.1  christos 	ost->st_flags = st->st_flags;
     89   1.1  christos 	ost->st_gen = st->st_gen;
     90   1.1  christos }
     91   1.1  christos 
     92   1.1  christos /*
     93   1.1  christos  * Get file status; this version follows links.
     94   1.1  christos  */
     95   1.1  christos /* ARGSUSED */
     96   1.1  christos int
     97  1.25       dsl compat_30_sys___stat13(struct lwp *l, const struct compat_30_sys___stat13_args *uap, register_t *retval)
     98   1.1  christos {
     99  1.25       dsl 	/* {
    100   1.1  christos 		syscallarg(const char *) path;
    101   1.1  christos 		syscallarg(struct stat13 *) ub;
    102  1.25       dsl 	} */
    103   1.1  christos 	struct stat sb;
    104   1.1  christos 	struct stat13 osb;
    105   1.1  christos 	int error;
    106   1.1  christos 
    107  1.26        ad 	error = do_sys_stat(SCARG(uap, path), FOLLOW, &sb);
    108   1.1  christos 	if (error)
    109   1.1  christos 		return error;
    110   1.1  christos 	cvtstat(&osb, &sb);
    111   1.1  christos 	error = copyout(&osb, SCARG(uap, ub), sizeof (osb));
    112   1.1  christos 	return error;
    113   1.1  christos }
    114   1.1  christos 
    115   1.1  christos 
    116   1.1  christos /*
    117   1.1  christos  * Get file status; this version does not follow links.
    118   1.1  christos  */
    119   1.1  christos /* ARGSUSED */
    120   1.1  christos int
    121  1.25       dsl compat_30_sys___lstat13(struct lwp *l, const struct compat_30_sys___lstat13_args *uap, register_t *retval)
    122   1.1  christos {
    123  1.25       dsl 	/* {
    124   1.1  christos 		syscallarg(const char *) path;
    125   1.1  christos 		syscallarg(struct stat13 *) ub;
    126  1.25       dsl 	} */
    127   1.1  christos 	struct stat sb;
    128   1.1  christos 	struct stat13 osb;
    129   1.1  christos 	int error;
    130   1.1  christos 
    131  1.26        ad 	error = do_sys_stat(SCARG(uap, path), NOFOLLOW, &sb);
    132   1.1  christos 	if (error)
    133   1.1  christos 		return error;
    134   1.1  christos 	cvtstat(&osb, &sb);
    135   1.1  christos 	error = copyout(&osb, SCARG(uap, ub), sizeof (osb));
    136   1.1  christos 	return error;
    137   1.1  christos }
    138   1.1  christos 
    139   1.8  christos /* ARGSUSED */
    140   1.8  christos int
    141  1.25       dsl compat_30_sys_fhstat(struct lwp *l, const struct compat_30_sys_fhstat_args *uap, register_t *retval)
    142   1.8  christos {
    143  1.25       dsl 	/* {
    144  1.10    martin 		syscallarg(const struct compat_30_fhandle *) fhp;
    145   1.8  christos 		syscallarg(struct stat13 *) sb;
    146  1.25       dsl 	} */
    147   1.8  christos 	struct stat sb;
    148   1.8  christos 	struct stat13 osb;
    149   1.8  christos 	int error;
    150  1.10    martin 	struct compat_30_fhandle fh;
    151   1.8  christos 	struct mount *mp;
    152   1.8  christos 	struct vnode *vp;
    153   1.8  christos 
    154   1.8  christos 	/*
    155   1.8  christos 	 * Must be super user
    156   1.8  christos 	 */
    157  1.17      elad 	if ((error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FILEHANDLE,
    158  1.17      elad 	    0, NULL, NULL, NULL)))
    159   1.8  christos 		return (error);
    160   1.8  christos 
    161  1.10    martin 	if ((error = copyin(SCARG(uap, fhp), &fh, sizeof(fh))) != 0)
    162   1.8  christos 		return (error);
    163   1.8  christos 
    164   1.8  christos 	if ((mp = vfs_getvfs(&fh.fh_fsid)) == NULL)
    165   1.8  christos 		return (ESTALE);
    166   1.8  christos 	if (mp->mnt_op->vfs_fhtovp == NULL)
    167   1.8  christos 		return EOPNOTSUPP;
    168  1.10    martin 	if ((error = VFS_FHTOVP(mp, (struct fid*)&fh.fh_fid, &vp)))
    169   1.8  christos 		return (error);
    170  1.26        ad 	error = vn_stat(vp, &sb);
    171   1.8  christos 	vput(vp);
    172   1.8  christos 	if (error)
    173   1.8  christos 		return (error);
    174   1.8  christos 	cvtstat(&osb, &sb);
    175   1.8  christos 	error = copyout(&osb, SCARG(uap, sb), sizeof(sb));
    176   1.8  christos 	return (error);
    177   1.8  christos }
    178   1.8  christos 
    179   1.1  christos /*
    180   1.1  christos  * Return status information about a file descriptor.
    181   1.1  christos  */
    182   1.1  christos /* ARGSUSED */
    183   1.1  christos int
    184  1.25       dsl compat_30_sys___fstat13(struct lwp *l, const struct compat_30_sys___fstat13_args *uap, register_t *retval)
    185   1.1  christos {
    186  1.25       dsl 	/* {
    187   1.1  christos 		syscallarg(int) fd;
    188   1.1  christos 		syscallarg(struct stat13 *) sb;
    189  1.25       dsl 	} */
    190   1.1  christos 	int fd = SCARG(uap, fd);
    191   1.1  christos 	struct file *fp;
    192   1.1  christos 	struct stat sb;
    193   1.1  christos 	struct stat13 osb;
    194   1.1  christos 	int error;
    195   1.1  christos 
    196  1.26        ad 	if ((fp = fd_getfile(fd)) == NULL)
    197   1.1  christos 		return EBADF;
    198  1.26        ad 	error = (*fp->f_ops->fo_stat)(fp, &sb);
    199  1.26        ad 	fd_putfile(fd);
    200   1.1  christos 	if (error)
    201   1.1  christos 		return error;
    202   1.1  christos 	cvtstat(&osb, &sb);
    203   1.1  christos 	error = copyout(&osb, SCARG(uap, sb), sizeof (osb));
    204   1.1  christos 	return error;
    205   1.1  christos }
    206   1.1  christos 
    207   1.1  christos /*
    208   1.1  christos  * Read a block of directory entries in a file system independent format.
    209   1.1  christos  */
    210   1.1  christos int
    211  1.25       dsl compat_30_sys_getdents(struct lwp *l, const struct compat_30_sys_getdents_args *uap, register_t *retval)
    212   1.1  christos {
    213  1.25       dsl 	/* {
    214   1.1  christos 		syscallarg(int) fd;
    215   1.1  christos 		syscallarg(char *) buf;
    216   1.1  christos 		syscallarg(size_t) count;
    217  1.25       dsl 	} */
    218   1.1  christos 	struct dirent *bdp;
    219   1.1  christos 	struct vnode *vp;
    220  1.20  christos 	char *inp, *tbuf;	/* BSD-format */
    221   1.1  christos 	int len, reclen;	/* BSD-format */
    222  1.20  christos 	char *outp;		/* NetBSD-3.0-format */
    223   1.1  christos 	int resid;
    224   1.1  christos 	struct file *fp;
    225   1.1  christos 	struct uio auio;
    226   1.1  christos 	struct iovec aiov;
    227   1.1  christos 	struct dirent12 idb;
    228   1.1  christos 	off_t off;		/* true file offset */
    229   1.1  christos 	int buflen, error, eofflag;
    230   1.1  christos 	off_t *cookiebuf = NULL, *cookie;
    231   1.1  christos 	int ncookies;
    232   1.1  christos 
    233   1.1  christos 	/* getvnode() will use the descriptor for us */
    234  1.26        ad 	if ((error = getvnode(SCARG(uap, fd), &fp)) != 0)
    235   1.1  christos 		return error;
    236   1.1  christos 
    237   1.1  christos 	if ((fp->f_flag & FREAD) == 0) {
    238   1.1  christos 		error = EBADF;
    239   1.1  christos 		goto out1;
    240   1.1  christos 	}
    241   1.1  christos 
    242  1.26        ad 	vp = fp->f_data;
    243   1.1  christos 	if (vp->v_type != VDIR) {
    244   1.1  christos 		error = EINVAL;
    245   1.1  christos 		goto out1;
    246   1.1  christos 	}
    247   1.1  christos 
    248   1.1  christos 	buflen = min(MAXBSIZE, SCARG(uap, count));
    249   1.1  christos 	tbuf = malloc(buflen, M_TEMP, M_WAITOK);
    250   1.1  christos 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    251   1.1  christos 	off = fp->f_offset;
    252   1.1  christos again:
    253   1.1  christos 	aiov.iov_base = tbuf;
    254   1.1  christos 	aiov.iov_len = buflen;
    255   1.1  christos 	auio.uio_iov = &aiov;
    256   1.1  christos 	auio.uio_iovcnt = 1;
    257   1.1  christos 	auio.uio_rw = UIO_READ;
    258   1.1  christos 	auio.uio_resid = buflen;
    259   1.1  christos 	auio.uio_offset = off;
    260   1.7      yamt 	UIO_SETUP_SYSSPACE(&auio);
    261   1.1  christos 	/*
    262   1.1  christos          * First we read into the malloc'ed buffer, then
    263   1.1  christos          * we massage it into user space, one record at a time.
    264   1.1  christos          */
    265   1.1  christos 	error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &cookiebuf,
    266   1.1  christos 	    &ncookies);
    267   1.1  christos 	if (error)
    268   1.1  christos 		goto out;
    269   1.1  christos 
    270   1.1  christos 	inp = tbuf;
    271   1.1  christos 	outp = SCARG(uap, buf);
    272   1.1  christos 	resid = SCARG(uap, count);
    273   1.1  christos 	if ((len = buflen - auio.uio_resid) == 0)
    274   1.1  christos 		goto eof;
    275   1.1  christos 
    276   1.1  christos 	for (cookie = cookiebuf; len > 0; len -= reclen) {
    277   1.1  christos 		bdp = (struct dirent *)inp;
    278   1.1  christos 		reclen = bdp->d_reclen;
    279   1.2  christos 		if (reclen & _DIRENT_ALIGN(bdp))
    280   1.1  christos 			panic("netbsd30_getdents: bad reclen %d", reclen);
    281   1.1  christos 		if (cookie)
    282   1.1  christos 			off = *cookie++; /* each entry points to the next */
    283   1.1  christos 		else
    284   1.1  christos 			off += reclen;
    285   1.1  christos 		if ((off >> 32) != 0) {
    286   1.4      yamt 			compat_offseterr(vp, "netbsd30_getdents");
    287   1.1  christos 			error = EINVAL;
    288   1.1  christos 			goto out;
    289   1.1  christos 		}
    290   1.1  christos 		if (bdp->d_namlen >= sizeof(idb.d_name))
    291   1.1  christos 			idb.d_namlen = sizeof(idb.d_name) - 1;
    292   1.1  christos 		else
    293   1.1  christos 			idb.d_namlen = bdp->d_namlen;
    294   1.1  christos 		idb.d_reclen = _DIRENT_SIZE(&idb);
    295   1.1  christos 		if (reclen > len || resid < idb.d_reclen) {
    296   1.1  christos 			/* entry too big for buffer, so just stop */
    297   1.1  christos 			outp++;
    298   1.1  christos 			break;
    299   1.1  christos 		}
    300   1.1  christos 		/*
    301   1.4      yamt 		 * Massage in place to make a NetBSD-3.0-shaped dirent
    302   1.1  christos 		 * (otherwise we have to worry about touching user memory
    303   1.1  christos 		 * outside of the copyout() call).
    304   1.1  christos 		 */
    305   1.1  christos 		idb.d_fileno = (u_int32_t)bdp->d_fileno;
    306   1.1  christos 		idb.d_type = bdp->d_type;
    307   1.1  christos 		(void)memcpy(idb.d_name, bdp->d_name, idb.d_namlen);
    308   1.3      yamt 		memset(idb.d_name + idb.d_namlen, 0,
    309   1.3      yamt 		    idb.d_reclen - _DIRENT_NAMEOFF(&idb) - idb.d_namlen);
    310   1.1  christos 		if ((error = copyout(&idb, outp, idb.d_reclen)) != 0)
    311   1.1  christos 			goto out;
    312   1.1  christos 		/* advance past this real entry */
    313   1.1  christos 		inp += reclen;
    314   1.4      yamt 		/* advance output past NetBSD-3.0-shaped entry */
    315   1.1  christos 		outp += idb.d_reclen;
    316   1.1  christos 		resid -= idb.d_reclen;
    317   1.1  christos 	}
    318   1.1  christos 
    319   1.1  christos 	/* if we squished out the whole block, try again */
    320   1.1  christos 	if (outp == SCARG(uap, buf))
    321   1.1  christos 		goto again;
    322   1.1  christos 	fp->f_offset = off;	/* update the vnode offset */
    323   1.1  christos 
    324   1.1  christos eof:
    325   1.1  christos 	*retval = SCARG(uap, count) - resid;
    326   1.1  christos out:
    327   1.1  christos 	VOP_UNLOCK(vp, 0);
    328   1.1  christos 	if (cookiebuf)
    329   1.1  christos 		free(cookiebuf, M_TEMP);
    330   1.1  christos 	free(tbuf, M_TEMP);
    331   1.1  christos out1:
    332  1.26        ad 	fd_putfile(SCARG(uap, fd));
    333   1.1  christos 	return error;
    334   1.1  christos }
    335  1.10    martin 
    336  1.10    martin /*
    337  1.10    martin  * Get file handle system call
    338  1.10    martin  */
    339  1.10    martin int
    340  1.25       dsl compat_30_sys_getfh(struct lwp *l, const struct compat_30_sys_getfh_args *uap, register_t *retval)
    341  1.10    martin {
    342  1.25       dsl 	/* {
    343  1.10    martin 		syscallarg(char *) fname;
    344  1.10    martin 		syscallarg(struct compat_30_fhandle *) fhp;
    345  1.25       dsl 	} */
    346  1.10    martin 	struct vnode *vp;
    347  1.11      yamt 	struct compat_30_fhandle fh;
    348  1.10    martin 	int error;
    349  1.10    martin 	struct nameidata nd;
    350  1.10    martin 	size_t sz;
    351  1.10    martin 
    352  1.10    martin 	/*
    353  1.10    martin 	 * Must be super user
    354  1.10    martin 	 */
    355  1.17      elad 	error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FILEHANDLE,
    356  1.17      elad 	    0, NULL, NULL, NULL);
    357  1.10    martin 	if (error)
    358  1.10    martin 		return (error);
    359  1.22       dsl 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | TRYEMULROOT, UIO_USERSPACE,
    360  1.24     pooka 	    SCARG(uap, fname));
    361  1.10    martin 	error = namei(&nd);
    362  1.10    martin 	if (error)
    363  1.10    martin 		return (error);
    364  1.10    martin 	vp = nd.ni_vp;
    365  1.10    martin 	sz = sizeof(struct compat_30_fhandle);
    366  1.11      yamt 	error = vfs_composefh(vp, (void *)&fh, &sz);
    367  1.10    martin 	vput(vp);
    368  1.15      yamt 	if (sz != FHANDLE_SIZE_COMPAT) {
    369  1.15      yamt 		error = EINVAL;
    370  1.15      yamt 	}
    371  1.10    martin 	if (error)
    372  1.10    martin 		return (error);
    373  1.15      yamt 	error = copyout(&fh, SCARG(uap, fhp), sizeof(struct compat_30_fhandle));
    374  1.10    martin 	return (error);
    375  1.10    martin }
    376  1.13    martin 
    377  1.13    martin /*
    378  1.13    martin  * Open a file given a file handle.
    379  1.13    martin  *
    380  1.13    martin  * Check permissions, allocate an open file structure,
    381  1.13    martin  * and call the device open routine if any.
    382  1.13    martin  */
    383  1.13    martin int
    384  1.25       dsl compat_30_sys_fhopen(struct lwp *l, const struct compat_30_sys_fhopen_args *uap, register_t *retval)
    385  1.13    martin {
    386  1.25       dsl 	/* {
    387  1.13    martin 		syscallarg(const fhandle_t *) fhp;
    388  1.13    martin 		syscallarg(int) flags;
    389  1.25       dsl 	} */
    390  1.13    martin 
    391  1.14      yamt 	return dofhopen(l, SCARG(uap, fhp), FHANDLE_SIZE_COMPAT,
    392  1.14      yamt 	    SCARG(uap, flags), retval);
    393  1.13    martin }
    394  1.13    martin 
    395  1.13    martin /* ARGSUSED */
    396  1.13    martin int
    397  1.25       dsl compat_30_sys___fhstat30(struct lwp *l, const struct compat_30_sys___fhstat30_args *uap_30, register_t *retval)
    398  1.13    martin {
    399  1.25       dsl 	/* {
    400  1.13    martin 		syscallarg(const fhandle_t *) fhp;
    401  1.13    martin 		syscallarg(struct stat *) sb;
    402  1.25       dsl 	} */
    403  1.23       dsl 	struct sys___fhstat40_args uap;
    404  1.23       dsl 
    405  1.23       dsl 	SCARG(&uap, fhp) = SCARG(uap_30, fhp);
    406  1.23       dsl 	SCARG(&uap, fh_size) = FHANDLE_SIZE_COMPAT;
    407  1.23       dsl 	SCARG(&uap, sb) = SCARG(uap_30, sb);
    408  1.13    martin 
    409  1.23       dsl 	return sys___fhstat40(l, &uap, retval);
    410  1.13    martin }
    411  1.13    martin 
    412  1.13    martin /* ARGSUSED */
    413  1.13    martin int
    414  1.25       dsl compat_30_sys_fhstatvfs1(struct lwp *l, const struct compat_30_sys_fhstatvfs1_args *uap_30, register_t *retval)
    415  1.13    martin {
    416  1.25       dsl 	/* {
    417  1.13    martin 		syscallarg(const fhandle_t *) fhp;
    418  1.13    martin 		syscallarg(struct statvfs *) buf;
    419  1.13    martin 		syscallarg(int)	flags;
    420  1.25       dsl 	} */
    421  1.23       dsl 	struct sys___fhstatvfs140_args uap;
    422  1.23       dsl 
    423  1.23       dsl 	SCARG(&uap, fhp) = SCARG(uap_30, fhp);
    424  1.23       dsl 	SCARG(&uap, fh_size) = FHANDLE_SIZE_COMPAT;
    425  1.23       dsl 	SCARG(&uap, buf) = SCARG(uap_30, buf);
    426  1.23       dsl 	SCARG(&uap, flags) = SCARG(uap_30, flags);
    427  1.13    martin 
    428  1.23       dsl 	return sys___fhstatvfs140(l, &uap, retval);
    429  1.13    martin }
    430