Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_fs.c revision 1.90.2.1
      1  1.90.2.1   thorpej /*	$NetBSD: netbsd32_fs.c,v 1.90.2.1 2021/04/03 22:28:42 thorpej Exp $	*/
      2       1.1       mrg 
      3       1.1       mrg /*
      4       1.1       mrg  * Copyright (c) 1998, 2001 Matthew R. Green
      5       1.1       mrg  * All rights reserved.
      6       1.1       mrg  *
      7       1.1       mrg  * Redistribution and use in source and binary forms, with or without
      8       1.1       mrg  * modification, are permitted provided that the following conditions
      9       1.1       mrg  * are met:
     10       1.1       mrg  * 1. Redistributions of source code must retain the above copyright
     11       1.1       mrg  *    notice, this list of conditions and the following disclaimer.
     12       1.1       mrg  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1       mrg  *    notice, this list of conditions and the following disclaimer in the
     14       1.1       mrg  *    documentation and/or other materials provided with the distribution.
     15       1.1       mrg  *
     16       1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17       1.1       mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18       1.1       mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19       1.1       mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20       1.1       mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21       1.1       mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22       1.1       mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23       1.1       mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24       1.1       mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25       1.1       mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26       1.1       mrg  * SUCH DAMAGE.
     27       1.1       mrg  */
     28       1.7     lukem 
     29       1.7     lukem #include <sys/cdefs.h>
     30  1.90.2.1   thorpej __KERNEL_RCSID(0, "$NetBSD: netbsd32_fs.c,v 1.90.2.1 2021/04/03 22:28:42 thorpej Exp $");
     31       1.1       mrg 
     32       1.1       mrg #include <sys/param.h>
     33       1.1       mrg #include <sys/systm.h>
     34       1.1       mrg #include <sys/mount.h>
     35       1.1       mrg #include <sys/socket.h>
     36       1.1       mrg #include <sys/socketvar.h>
     37       1.1       mrg #include <sys/stat.h>
     38       1.1       mrg #include <sys/time.h>
     39       1.1       mrg #include <sys/ktrace.h>
     40       1.1       mrg #include <sys/resourcevar.h>
     41       1.1       mrg #include <sys/vnode.h>
     42       1.1       mrg #include <sys/file.h>
     43       1.1       mrg #include <sys/filedesc.h>
     44       1.1       mrg #include <sys/namei.h>
     45      1.18      cube #include <sys/statvfs.h>
     46       1.1       mrg #include <sys/syscallargs.h>
     47       1.1       mrg #include <sys/proc.h>
     48      1.22  christos #include <sys/dirent.h>
     49      1.27      elad #include <sys/kauth.h>
     50      1.37       dsl #include <sys/vfs_syscalls.h>
     51       1.1       mrg 
     52      1.58      matt #include <fs/cd9660/cd9660_mount.h>
     53      1.72  christos #include <fs/tmpfs/tmpfs_args.h>
     54      1.63  macallan #include <fs/msdosfs/bpb.h>
     55      1.63  macallan #include <fs/msdosfs/msdosfsmount.h>
     56      1.58      matt #include <ufs/ufs/ufsmount.h>
     57      1.81       mrg #include <miscfs/nullfs/null.h>
     58      1.58      matt 
     59      1.60      matt #define NFS_ARGS_ONLY
     60      1.60      matt #include <nfs/nfsmount.h>
     61      1.60      matt 
     62       1.1       mrg #include <compat/netbsd32/netbsd32.h>
     63       1.1       mrg #include <compat/netbsd32/netbsd32_syscallargs.h>
     64       1.1       mrg #include <compat/netbsd32/netbsd32_conv.h>
     65      1.28    martin #include <compat/sys/mount.h>
     66       1.1       mrg 
     67       1.1       mrg 
     68      1.51        ad static int dofilereadv32(int, struct file *, struct netbsd32_iovec *,
     69      1.47       dsl 			      int, off_t *, int, register_t *);
     70      1.51        ad static int dofilewritev32(int, struct file *, struct netbsd32_iovec *,
     71      1.47       dsl 			       int,  off_t *, int, register_t *);
     72       1.1       mrg 
     73      1.45       dsl struct iovec *
     74      1.45       dsl netbsd32_get_iov(struct netbsd32_iovec *iov32, int iovlen, struct iovec *aiov,
     75      1.45       dsl     int aiov_len)
     76      1.45       dsl {
     77      1.45       dsl #define N_IOV32 8
     78      1.45       dsl 	struct netbsd32_iovec aiov32[N_IOV32];
     79      1.45       dsl 	struct iovec *iov = aiov;
     80      1.45       dsl 	struct iovec *iovp;
     81      1.45       dsl 	int i, n, j;
     82      1.45       dsl 	int error;
     83      1.45       dsl 
     84      1.45       dsl 	if (iovlen < 0 || iovlen > IOV_MAX)
     85      1.45       dsl 		return NULL;
     86      1.45       dsl 
     87      1.45       dsl 	if (iovlen > aiov_len)
     88      1.59     rmind 		iov = kmem_alloc(iovlen * sizeof(*iov), KM_SLEEP);
     89      1.45       dsl 
     90      1.45       dsl 	iovp = iov;
     91      1.45       dsl 	for (i = 0; i < iovlen; iov32 += N_IOV32, i += N_IOV32) {
     92      1.45       dsl 		n = iovlen - i;
     93      1.45       dsl 		if (n > N_IOV32)
     94      1.45       dsl 			n = N_IOV32;
     95      1.45       dsl 		error = copyin(iov32, aiov32, n * sizeof (*iov32));
     96      1.45       dsl 		if (error != 0) {
     97      1.45       dsl 			if (iov != aiov)
     98      1.59     rmind 				kmem_free(iov, iovlen * sizeof(*iov));
     99      1.45       dsl 			return NULL;
    100      1.45       dsl 		}
    101      1.45       dsl 		for (j = 0; j < n; iovp++, j++) {
    102      1.45       dsl 			iovp->iov_base = NETBSD32PTR64(aiov32[j].iov_base);
    103      1.45       dsl 			iovp->iov_len = aiov32[j].iov_len;
    104      1.45       dsl 		}
    105      1.45       dsl 	}
    106      1.45       dsl 	return iov;
    107      1.45       dsl #undef N_IOV32
    108      1.45       dsl }
    109      1.45       dsl 
    110       1.1       mrg int
    111      1.49       dsl netbsd32_readv(struct lwp *l, const struct netbsd32_readv_args *uap, register_t *retval)
    112       1.1       mrg {
    113      1.49       dsl 	/* {
    114       1.1       mrg 		syscallarg(int) fd;
    115       1.1       mrg 		syscallarg(const netbsd32_iovecp_t) iovp;
    116       1.1       mrg 		syscallarg(int) iovcnt;
    117      1.49       dsl 	} */
    118       1.1       mrg 	int fd = SCARG(uap, fd);
    119      1.51        ad 	file_t *fp;
    120       1.1       mrg 
    121      1.51        ad 	if ((fp = fd_getfile(fd)) == NULL)
    122  1.90.2.1   thorpej 		return EBADF;
    123       1.6   thorpej 
    124      1.50       dsl 	if ((fp->f_flag & FREAD) == 0) {
    125      1.51        ad 		fd_putfile(fd);
    126  1.90.2.1   thorpej 		return EBADF;
    127      1.50       dsl 	}
    128       1.1       mrg 
    129  1.90.2.1   thorpej 	return dofilereadv32(fd, fp,
    130      1.39       dsl 	    (struct netbsd32_iovec *)SCARG_P32(uap, iovp),
    131  1.90.2.1   thorpej 	    SCARG(uap, iovcnt), &fp->f_offset, FOF_UPDATE_OFFSET, retval);
    132       1.1       mrg }
    133       1.1       mrg 
    134       1.1       mrg /* Damn thing copies in the iovec! */
    135       1.1       mrg int
    136      1.51        ad dofilereadv32(int fd, struct file *fp, struct netbsd32_iovec *iovp, int iovcnt, off_t *offset, int flags, register_t *retval)
    137       1.1       mrg {
    138       1.1       mrg 	struct uio auio;
    139       1.1       mrg 	struct iovec *iov;
    140       1.1       mrg 	struct iovec *needfree;
    141       1.1       mrg 	struct iovec aiov[UIO_SMALLIOV];
    142      1.85  christos 	long i, error = 0;
    143      1.85  christos 	size_t cnt;
    144       1.1       mrg 	u_int iovlen;
    145       1.1       mrg 	struct iovec *ktriov = NULL;
    146       1.1       mrg 
    147       1.1       mrg 	/* note: can't use iovlen until iovcnt is validated */
    148       1.1       mrg 	iovlen = iovcnt * sizeof(struct iovec);
    149       1.1       mrg 	if ((u_int)iovcnt > UIO_SMALLIOV) {
    150       1.9  jdolecek 		if ((u_int)iovcnt > IOV_MAX) {
    151       1.9  jdolecek 			error = EINVAL;
    152       1.9  jdolecek 			goto out;
    153       1.9  jdolecek 		}
    154      1.59     rmind 		iov = kmem_alloc(iovlen, KM_SLEEP);
    155       1.1       mrg 		needfree = iov;
    156       1.1       mrg 	} else if ((u_int)iovcnt > 0) {
    157       1.1       mrg 		iov = aiov;
    158       1.1       mrg 		needfree = NULL;
    159       1.9  jdolecek 	} else {
    160       1.9  jdolecek 		error = EINVAL;
    161       1.9  jdolecek 		goto out;
    162       1.9  jdolecek 	}
    163       1.1       mrg 
    164       1.1       mrg 	auio.uio_iov = iov;
    165       1.1       mrg 	auio.uio_iovcnt = iovcnt;
    166       1.1       mrg 	auio.uio_rw = UIO_READ;
    167      1.51        ad 	auio.uio_vmspace = curproc->p_vmspace;
    168       1.1       mrg 	error = netbsd32_to_iovecin(iovp, iov, iovcnt);
    169       1.1       mrg 	if (error)
    170       1.1       mrg 		goto done;
    171       1.1       mrg 	auio.uio_resid = 0;
    172       1.1       mrg 	for (i = 0; i < iovcnt; i++) {
    173       1.1       mrg 		auio.uio_resid += iov->iov_len;
    174       1.1       mrg 		/*
    175       1.1       mrg 		 * Reads return ssize_t because -1 is returned on error.
    176       1.1       mrg 		 * Therefore we must restrict the length to SSIZE_MAX to
    177       1.1       mrg 		 * avoid garbage return values.
    178       1.1       mrg 		 */
    179  1.90.2.1   thorpej 		if (iov->iov_len > NETBSD32_SSIZE_MAX ||
    180  1.90.2.1   thorpej 		    auio.uio_resid > NETBSD32_SSIZE_MAX) {
    181       1.1       mrg 			error = EINVAL;
    182       1.1       mrg 			goto done;
    183       1.1       mrg 		}
    184       1.1       mrg 		iov++;
    185       1.1       mrg 	}
    186      1.46        ad 
    187       1.1       mrg 	/*
    188       1.1       mrg 	 * if tracing, save a copy of iovec
    189       1.1       mrg 	 */
    190      1.46        ad 	if (ktrpoint(KTR_GENIO)) {
    191      1.59     rmind 		ktriov = kmem_alloc(iovlen, KM_SLEEP);
    192      1.36  christos 		memcpy((void *)ktriov, (void *)auio.uio_iov, iovlen);
    193       1.1       mrg 	}
    194      1.46        ad 
    195       1.1       mrg 	cnt = auio.uio_resid;
    196       1.1       mrg 	error = (*fp->f_ops->fo_read)(fp, offset, &auio, fp->f_cred, flags);
    197       1.1       mrg 	if (error)
    198       1.1       mrg 		if (auio.uio_resid != cnt && (error == ERESTART ||
    199       1.1       mrg 		    error == EINTR || error == EWOULDBLOCK))
    200       1.1       mrg 			error = 0;
    201       1.1       mrg 	cnt -= auio.uio_resid;
    202      1.46        ad 
    203      1.46        ad 	if (ktriov != NULL) {
    204      1.46        ad 		ktrgeniov(fd, UIO_READ, ktriov, cnt, error);
    205      1.59     rmind 		kmem_free(ktriov, iovlen);
    206       1.1       mrg 	}
    207      1.46        ad 
    208       1.1       mrg 	*retval = cnt;
    209       1.1       mrg done:
    210       1.1       mrg 	if (needfree)
    211      1.59     rmind 		kmem_free(needfree, iovlen);
    212       1.9  jdolecek out:
    213      1.51        ad 	fd_putfile(fd);
    214  1.90.2.1   thorpej 	return error;
    215       1.1       mrg }
    216       1.1       mrg 
    217       1.1       mrg int
    218      1.49       dsl netbsd32_writev(struct lwp *l, const struct netbsd32_writev_args *uap, register_t *retval)
    219       1.1       mrg {
    220      1.49       dsl 	/* {
    221       1.1       mrg 		syscallarg(int) fd;
    222       1.1       mrg 		syscallarg(const netbsd32_iovecp_t) iovp;
    223       1.1       mrg 		syscallarg(int) iovcnt;
    224      1.49       dsl 	} */
    225       1.1       mrg 	int fd = SCARG(uap, fd);
    226      1.51        ad 	file_t *fp;
    227       1.1       mrg 
    228      1.51        ad 	if ((fp = fd_getfile(fd)) == NULL)
    229  1.90.2.1   thorpej 		return EBADF;
    230       1.6   thorpej 
    231      1.50       dsl 	if ((fp->f_flag & FWRITE) == 0) {
    232      1.51        ad 		fd_putfile(fd);
    233  1.90.2.1   thorpej 		return EBADF;
    234      1.50       dsl 	}
    235       1.1       mrg 
    236  1.90.2.1   thorpej 	return dofilewritev32(fd, fp,
    237      1.39       dsl 	    (struct netbsd32_iovec *)SCARG_P32(uap, iovp),
    238  1.90.2.1   thorpej 	    SCARG(uap, iovcnt), &fp->f_offset, FOF_UPDATE_OFFSET, retval);
    239       1.1       mrg }
    240       1.1       mrg 
    241       1.1       mrg int
    242      1.51        ad dofilewritev32(int fd, struct file *fp, struct netbsd32_iovec *iovp, int iovcnt, off_t *offset, int flags, register_t *retval)
    243       1.1       mrg {
    244       1.1       mrg 	struct uio auio;
    245       1.1       mrg 	struct iovec *iov;
    246       1.1       mrg 	struct iovec *needfree;
    247       1.1       mrg 	struct iovec aiov[UIO_SMALLIOV];
    248      1.85  christos 	long i, error = 0;
    249      1.85  christos 	size_t cnt;
    250       1.1       mrg 	u_int iovlen;
    251       1.1       mrg 	struct iovec *ktriov = NULL;
    252       1.1       mrg 
    253       1.1       mrg 	/* note: can't use iovlen until iovcnt is validated */
    254       1.1       mrg 	iovlen = iovcnt * sizeof(struct iovec);
    255       1.1       mrg 	if ((u_int)iovcnt > UIO_SMALLIOV) {
    256       1.9  jdolecek 		if ((u_int)iovcnt > IOV_MAX) {
    257       1.9  jdolecek 			error = EINVAL;
    258       1.9  jdolecek 			goto out;
    259       1.9  jdolecek 		}
    260      1.59     rmind 		iov = kmem_alloc(iovlen, KM_SLEEP);
    261       1.1       mrg 		needfree = iov;
    262       1.1       mrg 	} else if ((u_int)iovcnt > 0) {
    263       1.1       mrg 		iov = aiov;
    264       1.1       mrg 		needfree = NULL;
    265       1.9  jdolecek 	} else {
    266       1.9  jdolecek 		error = EINVAL;
    267       1.9  jdolecek 		goto out;
    268       1.9  jdolecek 	}
    269       1.1       mrg 
    270       1.1       mrg 	auio.uio_iov = iov;
    271       1.1       mrg 	auio.uio_iovcnt = iovcnt;
    272       1.1       mrg 	auio.uio_rw = UIO_WRITE;
    273      1.51        ad 	auio.uio_vmspace = curproc->p_vmspace;
    274       1.1       mrg 	error = netbsd32_to_iovecin(iovp, iov, iovcnt);
    275       1.1       mrg 	if (error)
    276       1.1       mrg 		goto done;
    277       1.1       mrg 	auio.uio_resid = 0;
    278       1.1       mrg 	for (i = 0; i < iovcnt; i++) {
    279       1.1       mrg 		auio.uio_resid += iov->iov_len;
    280       1.1       mrg 		/*
    281       1.1       mrg 		 * Writes return ssize_t because -1 is returned on error.
    282       1.1       mrg 		 * Therefore we must restrict the length to SSIZE_MAX to
    283       1.1       mrg 		 * avoid garbage return values.
    284       1.1       mrg 		 */
    285  1.90.2.1   thorpej 		if (iov->iov_len > NETBSD32_SSIZE_MAX ||
    286  1.90.2.1   thorpej 		    auio.uio_resid > NETBSD32_SSIZE_MAX) {
    287       1.1       mrg 			error = EINVAL;
    288       1.1       mrg 			goto done;
    289       1.1       mrg 		}
    290       1.1       mrg 		iov++;
    291       1.1       mrg 	}
    292      1.46        ad 
    293       1.1       mrg 	/*
    294       1.1       mrg 	 * if tracing, save a copy of iovec
    295       1.1       mrg 	 */
    296      1.46        ad 	if (ktrpoint(KTR_GENIO))  {
    297      1.59     rmind 		ktriov = kmem_alloc(iovlen, KM_SLEEP);
    298      1.36  christos 		memcpy((void *)ktriov, (void *)auio.uio_iov, iovlen);
    299       1.1       mrg 	}
    300      1.46        ad 
    301       1.1       mrg 	cnt = auio.uio_resid;
    302       1.1       mrg 	error = (*fp->f_ops->fo_write)(fp, offset, &auio, fp->f_cred, flags);
    303       1.1       mrg 	if (error) {
    304       1.1       mrg 		if (auio.uio_resid != cnt && (error == ERESTART ||
    305       1.1       mrg 		    error == EINTR || error == EWOULDBLOCK))
    306       1.1       mrg 			error = 0;
    307      1.62  christos 		if (error == EPIPE && (fp->f_flag & FNOSIGPIPE) == 0) {
    308      1.90        ad 			mutex_enter(&proc_lock);
    309      1.51        ad 			psignal(curproc, SIGPIPE);
    310      1.90        ad 			mutex_exit(&proc_lock);
    311      1.44        ad 		}
    312       1.1       mrg 	}
    313       1.1       mrg 	cnt -= auio.uio_resid;
    314      1.46        ad 	if (ktriov != NULL) {
    315      1.75  dholland 		ktrgeniov(fd, UIO_WRITE, ktriov, cnt, error);
    316      1.59     rmind 		kmem_free(ktriov, iovlen);
    317       1.1       mrg 	}
    318       1.1       mrg 	*retval = cnt;
    319       1.1       mrg done:
    320       1.1       mrg 	if (needfree)
    321      1.59     rmind 		kmem_free(needfree, iovlen);
    322       1.9  jdolecek out:
    323      1.51        ad 	fd_putfile(fd);
    324  1.90.2.1   thorpej 	return error;
    325       1.1       mrg }
    326       1.1       mrg 
    327      1.43       dsl /*
    328      1.68     njoly  * Common routines to set access and modification times given a vnode.
    329      1.43       dsl  */
    330      1.43       dsl static int
    331      1.43       dsl get_utimes32(const netbsd32_timevalp_t *tptr, struct timeval *tv,
    332      1.43       dsl     struct timeval **tvp)
    333      1.43       dsl {
    334      1.43       dsl 	int error;
    335      1.43       dsl 	struct netbsd32_timeval tv32[2];
    336      1.43       dsl 
    337      1.43       dsl 	if (tptr == NULL) {
    338      1.43       dsl 		*tvp = NULL;
    339      1.43       dsl 		return 0;
    340      1.43       dsl 	}
    341      1.43       dsl 
    342      1.43       dsl 	error = copyin(tptr, tv32, sizeof(tv32));
    343      1.43       dsl 	if (error)
    344      1.43       dsl 		return error;
    345      1.43       dsl 	netbsd32_to_timeval(&tv32[0], &tv[0]);
    346      1.43       dsl 	netbsd32_to_timeval(&tv32[1], &tv[1]);
    347      1.43       dsl 
    348      1.43       dsl 	*tvp = tv;
    349      1.43       dsl 	return 0;
    350      1.43       dsl }
    351      1.43       dsl 
    352      1.68     njoly static int
    353      1.68     njoly get_utimens32(const netbsd32_timespecp_t *tptr, struct timespec *ts,
    354      1.68     njoly     struct timespec **tsp)
    355      1.68     njoly {
    356      1.68     njoly 	int error;
    357      1.68     njoly 	struct netbsd32_timespec ts32[2];
    358      1.68     njoly 
    359      1.68     njoly 	if (tptr == NULL) {
    360      1.68     njoly 		*tsp = NULL;
    361      1.68     njoly 		return 0;
    362      1.68     njoly 	}
    363      1.68     njoly 
    364      1.68     njoly 	error = copyin(tptr, ts32, sizeof(ts32));
    365      1.68     njoly 	if (error)
    366      1.68     njoly 		return error;
    367      1.68     njoly 	netbsd32_to_timespec(&ts32[0], &ts[0]);
    368      1.68     njoly 	netbsd32_to_timespec(&ts32[1], &ts[1]);
    369      1.68     njoly 
    370      1.68     njoly 	*tsp = ts;
    371      1.68     njoly 	return 0;
    372      1.68     njoly }
    373      1.68     njoly 
    374       1.1       mrg int
    375      1.56  christos netbsd32___utimes50(struct lwp *l, const struct netbsd32___utimes50_args *uap, register_t *retval)
    376       1.1       mrg {
    377      1.49       dsl 	/* {
    378       1.1       mrg 		syscallarg(const netbsd32_charp) path;
    379       1.1       mrg 		syscallarg(const netbsd32_timevalp_t) tptr;
    380      1.49       dsl 	} */
    381       1.1       mrg 	int error;
    382      1.43       dsl 	struct timeval tv[2], *tvp;
    383       1.1       mrg 
    384      1.43       dsl 	error = get_utimes32(SCARG_P32(uap, tptr), tv, &tvp);
    385      1.43       dsl 	if (error != 0)
    386      1.43       dsl 		return error;
    387       1.1       mrg 
    388      1.43       dsl 	return do_sys_utimes(l, NULL, SCARG_P32(uap, path), FOLLOW,
    389      1.43       dsl 			    tvp, UIO_SYSSPACE);
    390       1.1       mrg }
    391       1.1       mrg 
    392      1.42       dsl static int
    393      1.79       mrg netbsd32_copyout_statvfs(const void *kp, void *up, size_t len)
    394      1.42       dsl {
    395      1.42       dsl 	struct netbsd32_statvfs *sbuf_32;
    396      1.42       dsl 	int error;
    397      1.42       dsl 
    398      1.59     rmind 	sbuf_32 = kmem_alloc(sizeof(*sbuf_32), KM_SLEEP);
    399      1.42       dsl 	netbsd32_from_statvfs(kp, sbuf_32);
    400      1.42       dsl 	error = copyout(sbuf_32, up, sizeof(*sbuf_32));
    401      1.59     rmind 	kmem_free(sbuf_32, sizeof(*sbuf_32));
    402      1.42       dsl 
    403      1.42       dsl 	return error;
    404      1.42       dsl }
    405      1.42       dsl 
    406       1.1       mrg int
    407      1.84  christos netbsd32___statvfs190(struct lwp *l,
    408      1.84  christos     const struct netbsd32___statvfs190_args *uap, register_t *retval)
    409       1.1       mrg {
    410      1.49       dsl 	/* {
    411       1.1       mrg 		syscallarg(const netbsd32_charp) path;
    412      1.18      cube 		syscallarg(netbsd32_statvfsp_t) buf;
    413      1.18      cube 		syscallarg(int) flags;
    414      1.49       dsl 	} */
    415      1.42       dsl 	struct statvfs *sb;
    416       1.1       mrg 	int error;
    417       1.1       mrg 
    418      1.42       dsl 	sb = STATVFSBUF_GET();
    419      1.42       dsl 	error = do_sys_pstatvfs(l, SCARG_P32(uap, path), SCARG(uap, flags), sb);
    420      1.42       dsl 	if (error == 0)
    421      1.79       mrg 		error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
    422      1.42       dsl 	STATVFSBUF_PUT(sb);
    423      1.42       dsl 	return error;
    424       1.1       mrg }
    425       1.1       mrg 
    426       1.1       mrg int
    427      1.84  christos netbsd32___fstatvfs190(struct lwp *l,
    428      1.84  christos     const struct netbsd32___fstatvfs190_args *uap, register_t *retval)
    429       1.1       mrg {
    430      1.49       dsl 	/* {
    431       1.1       mrg 		syscallarg(int) fd;
    432      1.18      cube 		syscallarg(netbsd32_statvfsp_t) buf;
    433      1.18      cube 		syscallarg(int) flags;
    434      1.49       dsl 	} */
    435      1.42       dsl 	struct statvfs *sb;
    436       1.1       mrg 	int error;
    437       1.1       mrg 
    438      1.42       dsl 	sb = STATVFSBUF_GET();
    439      1.42       dsl 	error = do_sys_fstatvfs(l, SCARG(uap, fd), SCARG(uap, flags), sb);
    440      1.42       dsl 	if (error == 0)
    441      1.79       mrg 		error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
    442      1.42       dsl 	STATVFSBUF_PUT(sb);
    443      1.18      cube 	return error;
    444      1.18      cube }
    445      1.18      cube 
    446      1.18      cube int
    447      1.84  christos netbsd32___getvfsstat90(struct lwp *l,
    448      1.84  christos     const struct netbsd32___getvfsstat90_args *uap, register_t *retval)
    449      1.18      cube {
    450      1.49       dsl 	/* {
    451      1.18      cube 		syscallarg(netbsd32_statvfsp_t) buf;
    452      1.18      cube 		syscallarg(netbsd32_size_t) bufsize;
    453      1.18      cube 		syscallarg(int) flags;
    454      1.49       dsl 	} */
    455      1.18      cube 
    456      1.42       dsl 	return do_sys_getvfsstat(l, SCARG_P32(uap, buf), SCARG(uap, bufsize),
    457      1.79       mrg 	    SCARG(uap, flags), netbsd32_copyout_statvfs,
    458      1.42       dsl 	    sizeof (struct netbsd32_statvfs), retval);
    459      1.18      cube }
    460      1.18      cube 
    461      1.18      cube int
    462      1.84  christos netbsd32___fhstatvfs190(struct lwp *l,
    463      1.84  christos     const struct netbsd32___fhstatvfs190_args *uap, register_t *retval)
    464      1.18      cube {
    465      1.49       dsl 	/* {
    466      1.32    martin 		syscallarg(const netbsd32_pointer_t) fhp;
    467      1.32    martin 		syscallarg(netbsd32_size_t) fh_size;
    468      1.18      cube 		syscallarg(netbsd32_statvfsp_t) buf;
    469      1.18      cube 		syscallarg(int) flags;
    470      1.49       dsl 	} */
    471      1.42       dsl 	struct statvfs *sb;
    472      1.18      cube 	int error;
    473      1.18      cube 
    474      1.42       dsl 	sb = STATVFSBUF_GET();
    475      1.42       dsl 	error = do_fhstatvfs(l, SCARG_P32(uap, fhp), SCARG(uap, fh_size), sb,
    476      1.42       dsl 	    SCARG(uap, flags));
    477      1.42       dsl 
    478      1.42       dsl 	if (error == 0)
    479      1.79       mrg 		error = netbsd32_copyout_statvfs(sb, SCARG_P32(uap, buf), 0);
    480      1.42       dsl 	STATVFSBUF_PUT(sb);
    481      1.18      cube 
    482      1.42       dsl 	return error;
    483       1.1       mrg }
    484       1.1       mrg 
    485       1.1       mrg int
    486      1.56  christos netbsd32___futimes50(struct lwp *l, const struct netbsd32___futimes50_args *uap, register_t *retval)
    487       1.1       mrg {
    488      1.49       dsl 	/* {
    489       1.1       mrg 		syscallarg(int) fd;
    490       1.1       mrg 		syscallarg(const netbsd32_timevalp_t) tptr;
    491      1.49       dsl 	} */
    492       1.1       mrg 	int error;
    493      1.51        ad 	file_t *fp;
    494      1.43       dsl 	struct timeval tv[2], *tvp;
    495      1.43       dsl 
    496      1.43       dsl 	error = get_utimes32(SCARG_P32(uap, tptr), tv, &tvp);
    497      1.43       dsl 	if (error != 0)
    498      1.43       dsl 		return error;
    499       1.1       mrg 
    500      1.55        ad 	/* fd_getvnode() will use the descriptor for us */
    501      1.51        ad 	if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
    502  1.90.2.1   thorpej 		return error;
    503       1.1       mrg 
    504      1.71      matt 	error = do_sys_utimes(l, fp->f_vnode, NULL, 0, tvp, UIO_SYSSPACE);
    505      1.43       dsl 
    506      1.51        ad 	fd_putfile(SCARG(uap, fd));
    507  1.90.2.1   thorpej 	return error;
    508       1.1       mrg }
    509       1.1       mrg 
    510       1.1       mrg int
    511      1.56  christos netbsd32___getdents30(struct lwp *l,
    512      1.56  christos     const struct netbsd32___getdents30_args *uap, register_t *retval)
    513       1.1       mrg {
    514      1.49       dsl 	/* {
    515       1.1       mrg 		syscallarg(int) fd;
    516       1.1       mrg 		syscallarg(netbsd32_charp) buf;
    517       1.1       mrg 		syscallarg(netbsd32_size_t) count;
    518      1.49       dsl 	} */
    519      1.51        ad 	file_t *fp;
    520       1.1       mrg 	int error, done;
    521       1.1       mrg 
    522      1.55        ad 	/* fd_getvnode() will use the descriptor for us */
    523      1.51        ad 	if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
    524  1.90.2.1   thorpej 		return error;
    525       1.1       mrg 	if ((fp->f_flag & FREAD) == 0) {
    526       1.1       mrg 		error = EBADF;
    527       1.1       mrg 		goto out;
    528       1.1       mrg 	}
    529      1.39       dsl 	error = vn_readdir(fp, SCARG_P32(uap, buf),
    530      1.23  christos 	    UIO_USERSPACE, SCARG(uap, count), &done, l, 0, 0);
    531      1.78       mrg 	ktrgenio(SCARG(uap, fd), UIO_READ, SCARG_P32(uap, buf), done, error);
    532       1.1       mrg 	*retval = done;
    533       1.1       mrg  out:
    534      1.51        ad 	fd_putfile(SCARG(uap, fd));
    535  1.90.2.1   thorpej 	return error;
    536       1.1       mrg }
    537       1.1       mrg 
    538       1.1       mrg int
    539      1.56  christos netbsd32___lutimes50(struct lwp *l,
    540      1.56  christos     const struct netbsd32___lutimes50_args *uap, register_t *retval)
    541       1.1       mrg {
    542      1.49       dsl 	/* {
    543       1.1       mrg 		syscallarg(const netbsd32_charp) path;
    544       1.1       mrg 		syscallarg(const netbsd32_timevalp_t) tptr;
    545      1.49       dsl 	} */
    546       1.1       mrg 	int error;
    547      1.43       dsl 	struct timeval tv[2], *tvp;
    548       1.1       mrg 
    549      1.43       dsl 	error = get_utimes32(SCARG_P32(uap, tptr), tv, &tvp);
    550      1.43       dsl 	if (error != 0)
    551      1.43       dsl 		return error;
    552       1.1       mrg 
    553      1.43       dsl 	return do_sys_utimes(l, NULL, SCARG_P32(uap, path), NOFOLLOW,
    554      1.43       dsl 			    tvp, UIO_SYSSPACE);
    555       1.1       mrg }
    556       1.1       mrg 
    557       1.1       mrg int
    558      1.56  christos netbsd32___stat50(struct lwp *l, const struct netbsd32___stat50_args *uap, register_t *retval)
    559       1.1       mrg {
    560      1.49       dsl 	/* {
    561       1.1       mrg 		syscallarg(const netbsd32_charp) path;
    562       1.1       mrg 		syscallarg(netbsd32_statp_t) ub;
    563      1.49       dsl 	} */
    564       1.1       mrg 	struct netbsd32_stat sb32;
    565       1.1       mrg 	struct stat sb;
    566       1.1       mrg 	int error;
    567       1.1       mrg 	const char *path;
    568       1.1       mrg 
    569      1.39       dsl 	path = SCARG_P32(uap, path);
    570       1.1       mrg 
    571      1.51        ad 	error = do_sys_stat(path, FOLLOW, &sb);
    572      1.41       dsl 	if (error)
    573  1.90.2.1   thorpej 		return error;
    574      1.56  christos 	netbsd32_from_stat(&sb, &sb32);
    575      1.39       dsl 	error = copyout(&sb32, SCARG_P32(uap, ub), sizeof(sb32));
    576  1.90.2.1   thorpej 	return error;
    577       1.1       mrg }
    578       1.1       mrg 
    579       1.1       mrg int
    580      1.56  christos netbsd32___fstat50(struct lwp *l, const struct netbsd32___fstat50_args *uap, register_t *retval)
    581       1.1       mrg {
    582      1.49       dsl 	/* {
    583       1.1       mrg 		syscallarg(int) fd;
    584       1.1       mrg 		syscallarg(netbsd32_statp_t) sb;
    585      1.49       dsl 	} */
    586       1.1       mrg 	struct netbsd32_stat sb32;
    587       1.1       mrg 	struct stat ub;
    588      1.57     njoly 	int error;
    589       1.1       mrg 
    590      1.57     njoly 	error = do_sys_fstat(SCARG(uap, fd), &ub);
    591       1.1       mrg 	if (error == 0) {
    592      1.56  christos 		netbsd32_from_stat(&ub, &sb32);
    593      1.39       dsl 		error = copyout(&sb32, SCARG_P32(uap, sb), sizeof(sb32));
    594       1.1       mrg 	}
    595  1.90.2.1   thorpej 	return error;
    596       1.1       mrg }
    597       1.1       mrg 
    598       1.1       mrg int
    599      1.56  christos netbsd32___lstat50(struct lwp *l, const struct netbsd32___lstat50_args *uap, register_t *retval)
    600       1.1       mrg {
    601      1.49       dsl 	/* {
    602       1.1       mrg 		syscallarg(const netbsd32_charp) path;
    603       1.1       mrg 		syscallarg(netbsd32_statp_t) ub;
    604      1.49       dsl 	} */
    605       1.1       mrg 	struct netbsd32_stat sb32;
    606       1.1       mrg 	struct stat sb;
    607       1.1       mrg 	int error;
    608       1.1       mrg 	const char *path;
    609       1.1       mrg 
    610      1.39       dsl 	path = SCARG_P32(uap, path);
    611       1.1       mrg 
    612      1.51        ad 	error = do_sys_stat(path, NOFOLLOW, &sb);
    613       1.1       mrg 	if (error)
    614  1.90.2.1   thorpej 		return error;
    615      1.56  christos 	netbsd32_from_stat(&sb, &sb32);
    616      1.39       dsl 	error = copyout(&sb32, SCARG_P32(uap, ub), sizeof(sb32));
    617  1.90.2.1   thorpej 	return error;
    618       1.1       mrg }
    619       1.1       mrg 
    620      1.49       dsl int
    621      1.56  christos netbsd32___fhstat50(struct lwp *l, const struct netbsd32___fhstat50_args *uap, register_t *retval)
    622      1.26      cube {
    623      1.49       dsl 	/* {
    624      1.32    martin 		syscallarg(const netbsd32_pointer_t) fhp;
    625      1.32    martin 		syscallarg(netbsd32_size_t) fh_size;
    626      1.26      cube 		syscallarg(netbsd32_statp_t) sb;
    627      1.49       dsl 	} */
    628      1.26      cube 	struct stat sb;
    629      1.26      cube 	struct netbsd32_stat sb32;
    630      1.26      cube 	int error;
    631      1.26      cube 
    632      1.42       dsl 	error = do_fhstat(l, SCARG_P32(uap, fhp), SCARG(uap, fh_size), &sb);
    633      1.64      matt 	if (error == 0) {
    634      1.56  christos 		netbsd32_from_stat(&sb, &sb32);
    635      1.86      maxv 		error = copyout(&sb32, SCARG_P32(uap, sb), sizeof(sb32));
    636      1.42       dsl 	}
    637      1.29    martin 	return error;
    638      1.26      cube }
    639      1.26      cube 
    640       1.1       mrg int
    641      1.49       dsl netbsd32_preadv(struct lwp *l, const struct netbsd32_preadv_args *uap, register_t *retval)
    642       1.1       mrg {
    643      1.49       dsl 	/* {
    644       1.1       mrg 		syscallarg(int) fd;
    645       1.1       mrg 		syscallarg(const netbsd32_iovecp_t) iovp;
    646       1.1       mrg 		syscallarg(int) iovcnt;
    647       1.1       mrg 		syscallarg(int) pad;
    648      1.70     njoly 		syscallarg(netbsd32_off_t) offset;
    649      1.49       dsl 	} */
    650      1.51        ad 	file_t *fp;
    651       1.1       mrg 	struct vnode *vp;
    652       1.1       mrg 	off_t offset;
    653       1.1       mrg 	int error, fd = SCARG(uap, fd);
    654       1.1       mrg 
    655      1.51        ad 	if ((fp = fd_getfile(fd)) == NULL)
    656  1.90.2.1   thorpej 		return EBADF;
    657       1.6   thorpej 
    658      1.50       dsl 	if ((fp->f_flag & FREAD) == 0) {
    659      1.51        ad 		fd_putfile(fd);
    660  1.90.2.1   thorpej 		return EBADF;
    661      1.50       dsl 	}
    662       1.1       mrg 
    663      1.71      matt 	vp = fp->f_vnode;
    664       1.9  jdolecek 	if (fp->f_type != DTYPE_VNODE || vp->v_type == VFIFO) {
    665       1.9  jdolecek 		error = ESPIPE;
    666       1.9  jdolecek 		goto out;
    667       1.9  jdolecek 	}
    668       1.1       mrg 
    669       1.1       mrg 	offset = SCARG(uap, offset);
    670       1.1       mrg 
    671       1.1       mrg 	/*
    672       1.1       mrg 	 * XXX This works because no file systems actually
    673       1.1       mrg 	 * XXX take any action on the seek operation.
    674       1.1       mrg 	 */
    675       1.1       mrg 	if ((error = VOP_SEEK(vp, fp->f_offset, offset, fp->f_cred)) != 0)
    676       1.9  jdolecek 		goto out;
    677       1.1       mrg 
    678  1.90.2.1   thorpej 	return dofilereadv32(fd, fp, SCARG_P32(uap, iovp),
    679  1.90.2.1   thorpej 	    SCARG(uap, iovcnt), &offset, 0, retval);
    680       1.9  jdolecek 
    681       1.9  jdolecek out:
    682      1.51        ad 	fd_putfile(fd);
    683  1.90.2.1   thorpej 	return error;
    684       1.1       mrg }
    685       1.1       mrg 
    686       1.1       mrg int
    687      1.49       dsl netbsd32_pwritev(struct lwp *l, const struct netbsd32_pwritev_args *uap, register_t *retval)
    688       1.1       mrg {
    689      1.49       dsl 	/* {
    690       1.1       mrg 		syscallarg(int) fd;
    691       1.1       mrg 		syscallarg(const netbsd32_iovecp_t) iovp;
    692       1.1       mrg 		syscallarg(int) iovcnt;
    693       1.1       mrg 		syscallarg(int) pad;
    694      1.70     njoly 		syscallarg(netbsd32_off_t) offset;
    695      1.49       dsl 	} */
    696      1.51        ad 	file_t *fp;
    697       1.1       mrg 	struct vnode *vp;
    698       1.1       mrg 	off_t offset;
    699       1.1       mrg 	int error, fd = SCARG(uap, fd);
    700       1.1       mrg 
    701      1.51        ad 	if ((fp = fd_getfile(fd)) == NULL)
    702  1.90.2.1   thorpej 		return EBADF;
    703       1.6   thorpej 
    704      1.50       dsl 	if ((fp->f_flag & FWRITE) == 0) {
    705      1.51        ad 		fd_putfile(fd);
    706  1.90.2.1   thorpej 		return EBADF;
    707      1.50       dsl 	}
    708       1.1       mrg 
    709      1.71      matt 	vp = fp->f_vnode;
    710       1.9  jdolecek 	if (fp->f_type != DTYPE_VNODE || vp->v_type == VFIFO) {
    711       1.9  jdolecek 		error = ESPIPE;
    712       1.9  jdolecek 		goto out;
    713       1.9  jdolecek 	}
    714       1.1       mrg 
    715       1.1       mrg 	offset = SCARG(uap, offset);
    716       1.1       mrg 
    717       1.1       mrg 	/*
    718       1.1       mrg 	 * XXX This works because no file systems actually
    719       1.1       mrg 	 * XXX take any action on the seek operation.
    720       1.1       mrg 	 */
    721       1.1       mrg 	if ((error = VOP_SEEK(vp, fp->f_offset, offset, fp->f_cred)) != 0)
    722       1.9  jdolecek 		goto out;
    723       1.1       mrg 
    724  1.90.2.1   thorpej 	return dofilewritev32(fd, fp, SCARG_P32(uap, iovp),
    725  1.90.2.1   thorpej 	    SCARG(uap, iovcnt), &offset, 0, retval);
    726       1.9  jdolecek 
    727       1.9  jdolecek out:
    728      1.51        ad 	fd_putfile(fd);
    729  1.90.2.1   thorpej 	return error;
    730       1.1       mrg }
    731       1.1       mrg 
    732       1.1       mrg /*
    733       1.1       mrg  * Find pathname of process's current directory.
    734       1.1       mrg  *
    735       1.1       mrg  * Use vfs vnode-to-name reverse cache; if that fails, fall back
    736       1.1       mrg  * to reading directory contents.
    737       1.1       mrg  */
    738      1.49       dsl int
    739      1.49       dsl netbsd32___getcwd(struct lwp *l, const struct netbsd32___getcwd_args *uap, register_t *retval)
    740       1.1       mrg {
    741      1.49       dsl 	/* {
    742       1.1       mrg 		syscallarg(char *) bufp;
    743       1.1       mrg 		syscallarg(size_t) length;
    744      1.49       dsl 	} */
    745      1.88        ad 	struct proc *p = l->l_proc;
    746       1.1       mrg 	int     error;
    747       1.1       mrg 	char   *path;
    748       1.1       mrg 	char   *bp, *bend;
    749       1.1       mrg 	int     len = (int)SCARG(uap, length);
    750       1.1       mrg 	int	lenused;
    751      1.88        ad 	struct	cwdinfo *cwdi;
    752       1.1       mrg 
    753       1.1       mrg 	if (len > MAXPATHLEN*4)
    754       1.1       mrg 		len = MAXPATHLEN*4;
    755       1.1       mrg 	else if (len < 2)
    756       1.1       mrg 		return ERANGE;
    757       1.1       mrg 
    758      1.59     rmind 	path = kmem_alloc(len, KM_SLEEP);
    759       1.1       mrg 	bp = &path[len];
    760       1.1       mrg 	bend = bp;
    761       1.1       mrg 	*(--bp) = '\0';
    762       1.1       mrg 
    763       1.1       mrg 	/*
    764       1.1       mrg 	 * 5th argument here is "max number of vnodes to traverse".
    765       1.1       mrg 	 * Since each entry takes up at least 2 bytes in the output buffer,
    766       1.1       mrg 	 * limit it to N/2 vnodes for an N byte buffer.
    767       1.1       mrg 	 */
    768       1.1       mrg #define GETCWD_CHECK_ACCESS 0x0001
    769      1.88        ad 	cwdi = p->p_cwdi;
    770      1.88        ad 	rw_enter(&cwdi->cwdi_lock, RW_READER);
    771      1.88        ad 	error = getcwd_common (cwdi->cwdi_cdir, NULL, &bp, path, len/2,
    772      1.23  christos 			       GETCWD_CHECK_ACCESS, l);
    773      1.88        ad 	rw_exit(&cwdi->cwdi_lock);
    774       1.1       mrg 
    775       1.1       mrg 	if (error)
    776       1.1       mrg 		goto out;
    777       1.1       mrg 	lenused = bend - bp;
    778       1.1       mrg 	*retval = lenused;
    779       1.1       mrg 	/* put the result into user buffer */
    780      1.39       dsl 	error = copyout(bp, SCARG_P32(uap, bufp), lenused);
    781       1.1       mrg 
    782       1.1       mrg out:
    783      1.59     rmind 	kmem_free(path, len);
    784       1.1       mrg 	return error;
    785       1.1       mrg }
    786      1.58      matt 
    787      1.58      matt int
    788      1.58      matt netbsd32___mount50(struct lwp *l, const struct netbsd32___mount50_args *uap,
    789      1.61       dsl 	register_t *retval)
    790      1.58      matt {
    791      1.58      matt 	/* {
    792      1.58      matt 		syscallarg(netbsd32_charp) type;
    793      1.58      matt 		syscallarg(netbsd32_charp) path;
    794      1.58      matt 		syscallarg(int) flags;
    795      1.58      matt 		syscallarg(netbsd32_voidp) data;
    796      1.58      matt 		syscallarg(netbsd32_size_t) data_len;
    797      1.58      matt 	} */
    798      1.58      matt 	char mtype[MNAMELEN];
    799      1.58      matt 	union {
    800      1.58      matt 		struct netbsd32_ufs_args ufs_args;
    801      1.58      matt 		struct netbsd32_mfs_args mfs_args;
    802      1.58      matt 		struct netbsd32_iso_args iso_args;
    803      1.60      matt 		struct netbsd32_nfs_args nfs_args;
    804      1.63  macallan 		struct netbsd32_msdosfs_args msdosfs_args;
    805      1.72  christos 		struct netbsd32_tmpfs_args tmpfs_args;
    806      1.81       mrg 		struct netbsd32_null_args null_args;
    807      1.58      matt 	} fs_args32;
    808      1.58      matt 	union {
    809      1.58      matt 		struct ufs_args ufs_args;
    810      1.58      matt 		struct mfs_args mfs_args;
    811      1.58      matt 		struct iso_args iso_args;
    812      1.60      matt 		struct nfs_args nfs_args;
    813      1.63  macallan 		struct msdosfs_args msdosfs_args;
    814      1.72  christos 		struct tmpfs_args tmpfs_args;
    815      1.81       mrg 		struct null_args null_args;
    816      1.58      matt 	} fs_args;
    817      1.58      matt 	const char *type = SCARG_P32(uap, type);
    818      1.58      matt 	const char *path = SCARG_P32(uap, path);
    819      1.58      matt 	int flags = SCARG(uap, flags);
    820      1.83      maxv 	void *data, *udata;
    821      1.58      matt 	size_t data_len = SCARG(uap, data_len);
    822      1.58      matt 	enum uio_seg data_seg;
    823      1.58      matt 	size_t len;
    824      1.58      matt 	int error;
    825      1.58      matt 
    826      1.83      maxv 	udata = data = SCARG_P32(uap, data);
    827      1.83      maxv 	memset(&fs_args32, 0, sizeof(fs_args32));
    828  1.90.2.1   thorpej 	memset(&fs_args, 0, sizeof(fs_args));
    829      1.83      maxv 
    830      1.58      matt 	error = copyinstr(type, mtype, sizeof(mtype), &len);
    831      1.58      matt 	if (error)
    832      1.58      matt 		return error;
    833      1.83      maxv 
    834      1.72  christos 	if (strcmp(mtype, MOUNT_TMPFS) == 0) {
    835      1.89  christos 		if (data_len != 0 && data_len < sizeof(fs_args32.tmpfs_args))
    836      1.72  christos 			return EINVAL;
    837      1.72  christos 		if ((flags & MNT_GETARGS) == 0) {
    838      1.72  christos 			error = copyin(data, &fs_args32.tmpfs_args,
    839      1.72  christos 			    sizeof(fs_args32.tmpfs_args));
    840      1.72  christos 			if (error)
    841      1.72  christos 				return error;
    842      1.72  christos 			fs_args.tmpfs_args.ta_version =
    843      1.72  christos 			    fs_args32.tmpfs_args.ta_version;
    844      1.72  christos 			fs_args.tmpfs_args.ta_nodes_max =
    845      1.72  christos 			    fs_args32.tmpfs_args.ta_nodes_max;
    846      1.72  christos 			fs_args.tmpfs_args.ta_size_max =
    847      1.72  christos 			    fs_args32.tmpfs_args.ta_size_max;
    848      1.72  christos 			fs_args.tmpfs_args.ta_root_uid =
    849      1.72  christos 			    fs_args32.tmpfs_args.ta_root_uid;
    850      1.72  christos 			fs_args.tmpfs_args.ta_root_gid =
    851      1.72  christos 			    fs_args32.tmpfs_args.ta_root_gid;
    852      1.72  christos 			fs_args.tmpfs_args.ta_root_mode =
    853      1.72  christos 			    fs_args32.tmpfs_args.ta_root_mode;
    854      1.72  christos 		}
    855      1.72  christos 		data_seg = UIO_SYSSPACE;
    856      1.72  christos 		data = &fs_args.tmpfs_args;
    857      1.72  christos 		data_len = sizeof(fs_args.tmpfs_args);
    858      1.72  christos 	} else if (strcmp(mtype, MOUNT_MFS) == 0) {
    859      1.89  christos 		if (data_len != 0 && data_len < sizeof(fs_args32.mfs_args))
    860      1.58      matt 			return EINVAL;
    861      1.58      matt 		if ((flags & MNT_GETARGS) == 0) {
    862      1.58      matt 			error = copyin(data, &fs_args32.mfs_args,
    863      1.58      matt 			    sizeof(fs_args32.mfs_args));
    864      1.58      matt 			if (error)
    865      1.58      matt 				return error;
    866      1.58      matt 			fs_args.mfs_args.fspec =
    867      1.58      matt 			    NETBSD32PTR64(fs_args32.mfs_args.fspec);
    868      1.58      matt 			memset(&fs_args.mfs_args._pad1, 0,
    869      1.58      matt 			    sizeof(fs_args.mfs_args._pad1));
    870      1.58      matt 			fs_args.mfs_args.base =
    871      1.58      matt 			    NETBSD32PTR64(fs_args32.mfs_args.base);
    872      1.58      matt 			fs_args.mfs_args.size = fs_args32.mfs_args.size;
    873      1.58      matt 		}
    874      1.58      matt 		data_seg = UIO_SYSSPACE;
    875      1.58      matt 		data = &fs_args.mfs_args;
    876      1.58      matt 		data_len = sizeof(fs_args.mfs_args);
    877      1.63  macallan 	} else if ((strcmp(mtype, MOUNT_UFS) == 0) ||
    878      1.63  macallan 		   (strcmp(mtype, MOUNT_EXT2FS) == 0) ||
    879      1.63  macallan 		   (strcmp(mtype, MOUNT_LFS) == 0)) {
    880      1.89  christos 		if (data_len != 0 && data_len < sizeof(fs_args32.ufs_args))
    881      1.58      matt 			return EINVAL;
    882      1.58      matt 		if ((flags & MNT_GETARGS) == 0) {
    883      1.58      matt 			error = copyin(data, &fs_args32.ufs_args,
    884      1.58      matt 			    sizeof(fs_args32.ufs_args));
    885      1.58      matt 			if (error)
    886      1.58      matt 				return error;
    887      1.58      matt 			fs_args.ufs_args.fspec =
    888      1.58      matt 			    NETBSD32PTR64(fs_args32.ufs_args.fspec);
    889      1.58      matt 		}
    890      1.58      matt 		data_seg = UIO_SYSSPACE;
    891      1.58      matt 		data = &fs_args.ufs_args;
    892      1.58      matt 		data_len = sizeof(fs_args.ufs_args);
    893      1.58      matt 	} else if (strcmp(mtype, MOUNT_CD9660) == 0) {
    894      1.89  christos 		if (data_len != 0 && data_len < sizeof(fs_args32.iso_args))
    895      1.58      matt 			return EINVAL;
    896      1.58      matt 		if ((flags & MNT_GETARGS) == 0) {
    897      1.58      matt 			error = copyin(data, &fs_args32.iso_args,
    898      1.58      matt 			    sizeof(fs_args32.iso_args));
    899      1.58      matt 			if (error)
    900      1.58      matt 				return error;
    901      1.58      matt 			fs_args.iso_args.fspec =
    902      1.58      matt 			    NETBSD32PTR64(fs_args32.iso_args.fspec);
    903      1.58      matt 			memset(&fs_args.iso_args._pad1, 0,
    904      1.58      matt 			    sizeof(fs_args.iso_args._pad1));
    905      1.58      matt 			fs_args.iso_args.flags = fs_args32.iso_args.flags;
    906      1.58      matt 		}
    907      1.58      matt 		data_seg = UIO_SYSSPACE;
    908      1.58      matt 		data = &fs_args.iso_args;
    909      1.58      matt 		data_len = sizeof(fs_args.iso_args);
    910      1.63  macallan 	} else if (strcmp(mtype, MOUNT_MSDOS) == 0) {
    911      1.83      maxv 		if (data_len < sizeof(fs_args32.msdosfs_args))
    912      1.63  macallan 			return EINVAL;
    913      1.63  macallan 		if ((flags & MNT_GETARGS) == 0) {
    914      1.63  macallan 			error = copyin(data, &fs_args32.msdosfs_args,
    915      1.63  macallan 			    sizeof(fs_args32.msdosfs_args));
    916      1.63  macallan 			if (error)
    917      1.63  macallan 				return error;
    918      1.63  macallan 			fs_args.msdosfs_args.fspec =
    919      1.63  macallan 			    NETBSD32PTR64(fs_args32.msdosfs_args.fspec);
    920      1.63  macallan 			memset(&fs_args.msdosfs_args._pad1, 0,
    921      1.63  macallan 			    sizeof(fs_args.msdosfs_args._pad1));
    922      1.63  macallan 			fs_args.msdosfs_args.uid =
    923      1.63  macallan 			    fs_args32.msdosfs_args.uid;
    924      1.63  macallan 			fs_args.msdosfs_args.gid =
    925      1.63  macallan 			    fs_args32.msdosfs_args.gid;
    926      1.63  macallan 			fs_args.msdosfs_args.mask =
    927      1.63  macallan 			    fs_args32.msdosfs_args.mask;
    928      1.63  macallan 			fs_args.msdosfs_args.flags =
    929      1.63  macallan 			    fs_args32.msdosfs_args.flags;
    930      1.63  macallan 			fs_args.msdosfs_args.version =
    931      1.63  macallan 			    fs_args32.msdosfs_args.version;
    932      1.63  macallan 			fs_args.msdosfs_args.dirmask =
    933      1.63  macallan 			    fs_args32.msdosfs_args.dirmask;
    934      1.63  macallan 			fs_args.msdosfs_args.gmtoff =
    935      1.63  macallan 			    fs_args32.msdosfs_args.gmtoff;
    936      1.63  macallan 		}
    937      1.63  macallan 		data_seg = UIO_SYSSPACE;
    938      1.63  macallan 		data = &fs_args.msdosfs_args;
    939      1.63  macallan 		data_len = sizeof(fs_args.msdosfs_args);
    940      1.60      matt 	} else if (strcmp(mtype, MOUNT_NFS) == 0) {
    941      1.89  christos 		if (data_len != 0 && data_len < sizeof(fs_args32.nfs_args))
    942      1.60      matt 			return EINVAL;
    943      1.83      maxv 		/* XXX: NFS requires copyin even with MNT_GETARGS */
    944      1.60      matt 		if ((flags & MNT_GETARGS) == 0) {
    945      1.60      matt 			error = copyin(data, &fs_args32.nfs_args,
    946      1.60      matt 			    sizeof(fs_args32.nfs_args));
    947      1.60      matt 			if (error)
    948      1.60      matt 				return error;
    949      1.60      matt 			fs_args.nfs_args.version = fs_args32.nfs_args.version;
    950      1.60      matt 			fs_args.nfs_args.addr =
    951      1.60      matt 			    NETBSD32PTR64(fs_args32.nfs_args.addr);
    952      1.60      matt 			memcpy(&fs_args.nfs_args.addrlen,
    953      1.60      matt 			    &fs_args32.nfs_args.addrlen,
    954      1.60      matt 			    offsetof(struct nfs_args, fh)
    955      1.60      matt 				- offsetof(struct nfs_args, addrlen));
    956      1.60      matt 			fs_args.nfs_args.fh =
    957      1.60      matt 			    NETBSD32PTR64(fs_args32.nfs_args.fh);
    958      1.60      matt 			memcpy(&fs_args.nfs_args.fhsize,
    959      1.60      matt 			    &fs_args32.nfs_args.fhsize,
    960      1.60      matt 			    offsetof(struct nfs_args, hostname)
    961      1.60      matt 				- offsetof(struct nfs_args, fhsize));
    962      1.60      matt 			fs_args.nfs_args.hostname =
    963      1.60      matt 			    NETBSD32PTR64(fs_args32.nfs_args.hostname);
    964      1.60      matt 		}
    965      1.60      matt 		data_seg = UIO_SYSSPACE;
    966      1.60      matt 		data = &fs_args.nfs_args;
    967      1.60      matt 		data_len = sizeof(fs_args.nfs_args);
    968      1.81       mrg 	} else if (strcmp(mtype, MOUNT_NULL) == 0) {
    969      1.89  christos 		if (data_len != 0 && data_len < sizeof(fs_args32.null_args))
    970      1.81       mrg 			return EINVAL;
    971      1.81       mrg 		if ((flags & MNT_GETARGS) == 0) {
    972      1.81       mrg 			error = copyin(data, &fs_args32.null_args,
    973      1.81       mrg 			    sizeof(fs_args32.null_args));
    974      1.81       mrg 			if (error)
    975      1.81       mrg 				return error;
    976      1.81       mrg 			fs_args.null_args.la.target =
    977      1.81       mrg 			    NETBSD32PTR64(fs_args32.null_args.la.target);
    978      1.81       mrg 		}
    979      1.81       mrg 		data_seg = UIO_SYSSPACE;
    980      1.81       mrg 		data = &fs_args.null_args;
    981      1.81       mrg 		data_len = sizeof(fs_args.null_args);
    982      1.58      matt 	} else {
    983      1.58      matt 		data_seg = UIO_USERSPACE;
    984      1.58      matt 	}
    985      1.83      maxv 
    986      1.73      maxv 	error = do_sys_mount(l, mtype, UIO_SYSSPACE, path, flags, data, data_seg,
    987      1.58      matt 	    data_len, retval);
    988      1.58      matt 	if (error)
    989      1.58      matt 		return error;
    990      1.83      maxv 
    991      1.58      matt 	if (flags & MNT_GETARGS) {
    992      1.58      matt 		data_len = *retval;
    993      1.72  christos 		if (strcmp(mtype, MOUNT_TMPFS) == 0) {
    994      1.89  christos 			if (data_len != 0 &&
    995      1.89  christos 			    data_len != sizeof(fs_args.tmpfs_args))
    996      1.72  christos 				return EINVAL;
    997      1.72  christos 			fs_args32.tmpfs_args.ta_version =
    998      1.72  christos 			    fs_args.tmpfs_args.ta_version;
    999      1.72  christos 			fs_args32.tmpfs_args.ta_nodes_max =
   1000      1.72  christos 			    fs_args.tmpfs_args.ta_nodes_max;
   1001      1.72  christos 			fs_args32.tmpfs_args.ta_size_max =
   1002      1.72  christos 			    fs_args.tmpfs_args.ta_size_max;
   1003      1.72  christos 			fs_args32.tmpfs_args.ta_root_uid =
   1004      1.72  christos 			    fs_args.tmpfs_args.ta_root_uid;
   1005      1.72  christos 			fs_args32.tmpfs_args.ta_root_gid =
   1006      1.72  christos 			    fs_args.tmpfs_args.ta_root_gid;
   1007      1.72  christos 			fs_args32.tmpfs_args.ta_root_mode =
   1008      1.72  christos 			    fs_args.tmpfs_args.ta_root_mode;
   1009      1.83      maxv 			error = copyout(&fs_args32.tmpfs_args, udata,
   1010      1.72  christos 				    sizeof(fs_args32.tmpfs_args));
   1011      1.83      maxv 			*retval = sizeof(fs_args32.tmpfs_args);
   1012      1.72  christos 		} else if (strcmp(mtype, MOUNT_MFS) == 0) {
   1013      1.89  christos 			if (data_len != 0 &&
   1014      1.89  christos 			    data_len != sizeof(fs_args.mfs_args))
   1015      1.58      matt 				return EINVAL;
   1016      1.58      matt 			NETBSD32PTR32(fs_args32.mfs_args.fspec,
   1017      1.58      matt 			    fs_args.mfs_args.fspec);
   1018      1.58      matt 			memset(&fs_args32.mfs_args._pad1, 0,
   1019      1.58      matt 			    sizeof(fs_args32.mfs_args._pad1));
   1020      1.58      matt 			NETBSD32PTR32(fs_args32.mfs_args.base,
   1021      1.58      matt 			    fs_args.mfs_args.base);
   1022      1.58      matt 			fs_args32.mfs_args.size = fs_args.mfs_args.size;
   1023      1.83      maxv 			error = copyout(&fs_args32.mfs_args, udata,
   1024      1.58      matt 				    sizeof(fs_args32.mfs_args));
   1025      1.83      maxv 			*retval = sizeof(fs_args32.mfs_args);
   1026      1.58      matt 		} else if (strcmp(mtype, MOUNT_UFS) == 0) {
   1027      1.89  christos 			if (data_len != 0 &&
   1028      1.89  christos 			    data_len != sizeof(fs_args.ufs_args))
   1029      1.58      matt 				return EINVAL;
   1030      1.58      matt 			NETBSD32PTR32(fs_args32.ufs_args.fspec,
   1031      1.58      matt 			    fs_args.ufs_args.fspec);
   1032      1.83      maxv 			error = copyout(&fs_args32.ufs_args, udata,
   1033      1.58      matt 			    sizeof(fs_args32.ufs_args));
   1034      1.83      maxv 			*retval = sizeof(fs_args32.ufs_args);
   1035      1.58      matt 		} else if (strcmp(mtype, MOUNT_CD9660) == 0) {
   1036      1.89  christos 			if (data_len != 0 &&
   1037      1.89  christos 			    data_len != sizeof(fs_args.iso_args))
   1038      1.58      matt 				return EINVAL;
   1039      1.58      matt 			NETBSD32PTR32(fs_args32.iso_args.fspec,
   1040      1.58      matt 			    fs_args.iso_args.fspec);
   1041      1.58      matt 			memset(&fs_args32.iso_args._pad1, 0,
   1042      1.58      matt 			    sizeof(fs_args32.iso_args._pad1));
   1043      1.58      matt 			fs_args32.iso_args.flags = fs_args.iso_args.flags;
   1044      1.83      maxv 			error = copyout(&fs_args32.iso_args, udata,
   1045      1.58      matt 				    sizeof(fs_args32.iso_args));
   1046      1.83      maxv 			*retval = sizeof(fs_args32.iso_args);
   1047      1.60      matt 		} else if (strcmp(mtype, MOUNT_NFS) == 0) {
   1048      1.89  christos 			if (data_len != 0 &&
   1049      1.89  christos 			    data_len != sizeof(fs_args.nfs_args))
   1050      1.60      matt 				return EINVAL;
   1051      1.60      matt 			NETBSD32PTR32(fs_args32.nfs_args.addr,
   1052      1.60      matt 			    fs_args.nfs_args.addr);
   1053      1.60      matt 			memcpy(&fs_args32.nfs_args.addrlen,
   1054      1.60      matt 			    &fs_args.nfs_args.addrlen,
   1055      1.60      matt 			    offsetof(struct nfs_args, fh)
   1056      1.60      matt 				- offsetof(struct nfs_args, addrlen));
   1057      1.60      matt 			NETBSD32PTR32(fs_args32.nfs_args.fh,
   1058      1.60      matt 			    fs_args.nfs_args.fh);
   1059      1.60      matt 			memcpy(&fs_args32.nfs_args.fhsize,
   1060      1.60      matt 			    &fs_args.nfs_args.fhsize,
   1061      1.60      matt 			    offsetof(struct nfs_args, hostname)
   1062      1.60      matt 				- offsetof(struct nfs_args, fhsize));
   1063      1.60      matt 			NETBSD32PTR32(fs_args32.nfs_args.hostname,
   1064      1.60      matt 			    fs_args.nfs_args.hostname);
   1065      1.83      maxv 			error = copyout(&fs_args32.nfs_args, udata,
   1066      1.60      matt 			    sizeof(fs_args32.nfs_args));
   1067      1.83      maxv 			*retval = sizeof(fs_args32.nfs_args);
   1068      1.81       mrg 		} else if (strcmp(mtype, MOUNT_NULL) == 0) {
   1069      1.89  christos 			if (data_len != 0 &&
   1070      1.89  christos 			    data_len != sizeof(fs_args.null_args))
   1071      1.81       mrg 				return EINVAL;
   1072      1.81       mrg 			NETBSD32PTR32(fs_args32.null_args.la.target,
   1073      1.81       mrg 			    fs_args.null_args.la.target);
   1074      1.83      maxv 			error = copyout(&fs_args32.null_args, udata,
   1075      1.81       mrg 			    sizeof(fs_args32.null_args));
   1076      1.83      maxv 			*retval = sizeof(fs_args32.null_args);
   1077      1.58      matt 		}
   1078      1.58      matt 	}
   1079      1.58      matt 	return error;
   1080      1.58      matt }
   1081      1.65      matt 
   1082      1.65      matt int
   1083      1.65      matt netbsd32_linkat(struct lwp *l, const struct netbsd32_linkat_args *uap,
   1084      1.65      matt 		 register_t *retval)
   1085      1.65      matt {
   1086      1.65      matt 	/* {
   1087      1.65      matt 		syscallarg(int) fd1;
   1088      1.65      matt 		syscallarg(const netbsd32_charp) name1;
   1089      1.65      matt 		syscallarg(int) fd2;
   1090      1.65      matt 		syscallarg(const netbsd32_charp) name2;
   1091      1.65      matt 		syscallarg(int) flags;
   1092      1.65      matt 	} */
   1093      1.65      matt 	struct sys_linkat_args ua;
   1094      1.65      matt 
   1095      1.65      matt 	NETBSD32TO64_UAP(fd1);
   1096      1.65      matt 	NETBSD32TOP_UAP(name1, const char);
   1097      1.65      matt 	NETBSD32TO64_UAP(fd2);
   1098      1.65      matt 	NETBSD32TOP_UAP(name2, const char);
   1099      1.65      matt 	NETBSD32TO64_UAP(flags);
   1100      1.65      matt 
   1101      1.65      matt 	return sys_linkat(l, &ua, retval);
   1102      1.65      matt }
   1103      1.65      matt 
   1104      1.65      matt int
   1105      1.65      matt netbsd32_renameat(struct lwp *l, const struct netbsd32_renameat_args *uap,
   1106      1.65      matt 		 register_t *retval)
   1107      1.65      matt {
   1108      1.65      matt 	/* {
   1109      1.65      matt 		syscallarg(int) fromfd;
   1110      1.65      matt 		syscallarg(const netbsd32_charp) from;
   1111      1.65      matt 		syscallarg(int) tofd;
   1112      1.65      matt 		syscallarg(const netbsd32_charp) to;
   1113      1.65      matt 	} */
   1114      1.65      matt 	struct sys_renameat_args ua;
   1115      1.65      matt 
   1116      1.65      matt 	NETBSD32TO64_UAP(fromfd);
   1117      1.65      matt 	NETBSD32TOP_UAP(from, const char);
   1118      1.65      matt 	NETBSD32TO64_UAP(tofd);
   1119      1.65      matt 	NETBSD32TOP_UAP(to, const char);
   1120      1.65      matt 
   1121      1.65      matt 	return sys_renameat(l, &ua, retval);
   1122      1.65      matt }
   1123      1.65      matt 
   1124      1.65      matt int
   1125      1.65      matt netbsd32_mkfifoat(struct lwp *l, const struct netbsd32_mkfifoat_args *uap,
   1126      1.65      matt 		 register_t *retval)
   1127      1.65      matt {
   1128      1.65      matt 	/* {
   1129      1.65      matt 		syscallarg(int) fd;
   1130      1.65      matt 		syscallarg(const netbsd32_charp) path;
   1131      1.65      matt 		syscallarg(mode_t) mode;
   1132      1.65      matt 	} */
   1133      1.65      matt 	struct sys_mkfifoat_args ua;
   1134      1.65      matt 
   1135      1.65      matt 	NETBSD32TO64_UAP(fd);
   1136      1.65      matt 	NETBSD32TOP_UAP(path, const char);
   1137      1.65      matt 	NETBSD32TO64_UAP(mode);
   1138      1.65      matt 
   1139      1.65      matt 	return sys_mkfifoat(l, &ua, retval);
   1140      1.65      matt }
   1141      1.65      matt 
   1142      1.65      matt int
   1143      1.65      matt netbsd32_mknodat(struct lwp *l, const struct netbsd32_mknodat_args *uap,
   1144      1.65      matt 		 register_t *retval)
   1145      1.65      matt {
   1146      1.65      matt 	/* {
   1147      1.65      matt 		syscallarg(int) fd;
   1148      1.65      matt 		syscallarg(netbsd32_charp) path;
   1149      1.65      matt 		syscallarg(mode_t) mode;
   1150      1.69     njoly 		syscallarg(int) pad;
   1151      1.69     njoly 		syscallarg(netbsd32_dev_t) dev;
   1152      1.65      matt 	} */
   1153      1.65      matt 	struct sys_mknodat_args ua;
   1154      1.65      matt 
   1155      1.65      matt 	NETBSD32TO64_UAP(fd);
   1156      1.65      matt 	NETBSD32TOP_UAP(path, const char);
   1157      1.65      matt 	NETBSD32TO64_UAP(mode);
   1158      1.69     njoly 	NETBSD32TO64_UAP(PAD);
   1159      1.65      matt 	NETBSD32TO64_UAP(dev);
   1160      1.65      matt 
   1161      1.65      matt 	return sys_mknodat(l, &ua, retval);
   1162      1.65      matt }
   1163      1.65      matt 
   1164      1.65      matt int
   1165      1.65      matt netbsd32_mkdirat(struct lwp *l, const struct netbsd32_mkdirat_args *uap,
   1166      1.65      matt 		 register_t *retval)
   1167      1.65      matt {
   1168      1.65      matt 	/* {
   1169      1.65      matt 		syscallarg(int) fd;
   1170      1.65      matt 		syscallarg(netbsd32_charp) path;
   1171      1.65      matt 		syscallarg(mode_t) mode;
   1172      1.65      matt 	} */
   1173      1.65      matt 	struct sys_mkdirat_args ua;
   1174      1.65      matt 
   1175      1.65      matt 	NETBSD32TO64_UAP(fd);
   1176      1.65      matt 	NETBSD32TOP_UAP(path, const char);
   1177      1.65      matt 	NETBSD32TO64_UAP(mode);
   1178      1.65      matt 
   1179      1.65      matt 	return sys_mkdirat(l, &ua, retval);
   1180      1.65      matt }
   1181      1.65      matt 
   1182      1.65      matt int
   1183      1.65      matt netbsd32_faccessat(struct lwp *l, const struct netbsd32_faccessat_args *uap,
   1184      1.65      matt 		 register_t *retval)
   1185      1.65      matt {
   1186      1.65      matt 	/* {
   1187      1.65      matt 		syscallarg(int) fd;
   1188      1.65      matt 		syscallarg(netbsd32_charp) path;
   1189      1.65      matt 		syscallarg(int) amode;
   1190      1.65      matt 		syscallarg(int) flag;
   1191      1.65      matt 	} */
   1192      1.65      matt 	struct sys_faccessat_args ua;
   1193      1.65      matt 
   1194      1.65      matt 	NETBSD32TO64_UAP(fd);
   1195      1.65      matt 	NETBSD32TOP_UAP(path, const char);
   1196      1.65      matt 	NETBSD32TO64_UAP(amode);
   1197      1.65      matt 	NETBSD32TO64_UAP(flag);
   1198      1.65      matt 
   1199      1.65      matt 	return sys_faccessat(l, &ua, retval);
   1200      1.65      matt }
   1201      1.65      matt 
   1202      1.65      matt int
   1203      1.65      matt netbsd32_fchmodat(struct lwp *l, const struct netbsd32_fchmodat_args *uap,
   1204      1.65      matt 		 register_t *retval)
   1205      1.65      matt {
   1206      1.65      matt 	/* {
   1207      1.65      matt 		syscallarg(int) fd;
   1208      1.65      matt 		syscallarg(netbsd32_charp) path;
   1209      1.65      matt 		syscallarg(mode_t) mode;
   1210      1.65      matt 		syscallarg(int) flag;
   1211      1.65      matt 	} */
   1212      1.65      matt 	struct sys_fchmodat_args ua;
   1213      1.65      matt 
   1214      1.65      matt 	NETBSD32TO64_UAP(fd);
   1215      1.65      matt 	NETBSD32TOP_UAP(path, const char);
   1216      1.65      matt 	NETBSD32TO64_UAP(mode);
   1217      1.65      matt 	NETBSD32TO64_UAP(flag);
   1218      1.65      matt 
   1219      1.65      matt 	return sys_fchmodat(l, &ua, retval);
   1220      1.65      matt }
   1221      1.65      matt 
   1222      1.65      matt int
   1223      1.65      matt netbsd32_fchownat(struct lwp *l, const struct netbsd32_fchownat_args *uap,
   1224      1.65      matt 		 register_t *retval)
   1225      1.65      matt {
   1226      1.65      matt 	/* {
   1227      1.65      matt 		syscallarg(int) fd;
   1228      1.65      matt 		syscallarg(netbsd32_charp) path;
   1229      1.65      matt 		syscallarg(uid_t) owner;
   1230      1.65      matt 		syscallarg(gid_t) group;
   1231      1.65      matt 		syscallarg(int) flag;
   1232      1.65      matt 	} */
   1233      1.65      matt 	struct sys_fchownat_args ua;
   1234      1.65      matt 
   1235      1.65      matt 	NETBSD32TO64_UAP(fd);
   1236      1.65      matt 	NETBSD32TOP_UAP(path, const char);
   1237      1.65      matt 	NETBSD32TO64_UAP(owner);
   1238      1.65      matt 	NETBSD32TO64_UAP(group);
   1239      1.65      matt 	NETBSD32TO64_UAP(flag);
   1240      1.65      matt 
   1241      1.65      matt 	return sys_fchownat(l, &ua, retval);
   1242      1.65      matt }
   1243      1.65      matt 
   1244      1.65      matt int
   1245      1.65      matt netbsd32_fstatat(struct lwp *l, const struct netbsd32_fstatat_args *uap,
   1246      1.65      matt 		 register_t *retval)
   1247      1.65      matt {
   1248      1.65      matt 	/* {
   1249      1.65      matt 		syscallarg(int) fd;
   1250      1.65      matt 		syscallarg(netbsd32_charp) path;
   1251      1.65      matt 		syscallarg(netbsd32_statp_t) buf;
   1252      1.65      matt 		syscallarg(int) flag;
   1253      1.65      matt 	} */
   1254      1.65      matt 	struct netbsd32_stat sb32;
   1255      1.65      matt 	struct stat sb;
   1256      1.66      matt 	int follow;
   1257      1.65      matt 	int error;
   1258      1.65      matt 
   1259      1.66      matt 	follow = (SCARG(uap, flag) & AT_SYMLINK_NOFOLLOW) ? NOFOLLOW : FOLLOW;
   1260      1.65      matt 
   1261      1.65      matt 	error = do_sys_statat(l, SCARG(uap, fd), SCARG_P32(uap, path),
   1262      1.66      matt 	    follow, &sb);
   1263      1.65      matt 	if (error)
   1264      1.65      matt 		return error;
   1265      1.65      matt 	netbsd32_from_stat(&sb, &sb32);
   1266      1.65      matt 	return copyout(&sb32, SCARG_P32(uap, buf), sizeof(sb32));
   1267      1.65      matt }
   1268      1.65      matt 
   1269      1.65      matt int
   1270      1.65      matt netbsd32_utimensat(struct lwp *l, const struct netbsd32_utimensat_args *uap,
   1271      1.65      matt 		 register_t *retval)
   1272      1.65      matt {
   1273      1.65      matt 	/* {
   1274      1.65      matt 		syscallarg(int) fd;
   1275      1.65      matt 		syscallarg(netbsd32_charp) path;
   1276      1.65      matt 		syscallarg(netbsd32_timespecp_t) tptr;
   1277      1.65      matt 		syscallarg(int) flag;
   1278      1.65      matt 	} */
   1279      1.82       mrg 	struct timespec ts[2], *tsp;
   1280      1.66      matt 	int follow;
   1281      1.66      matt 	int error;
   1282      1.66      matt 
   1283      1.68     njoly 	error = get_utimens32(SCARG_P32(uap, tptr), ts, &tsp);
   1284      1.68     njoly 	if (error != 0)
   1285      1.68     njoly 		return error;
   1286      1.66      matt 
   1287      1.66      matt 	follow = (SCARG(uap, flag) & AT_SYMLINK_NOFOLLOW) ? NOFOLLOW : FOLLOW;
   1288      1.65      matt 
   1289      1.68     njoly 	return do_sys_utimensat(l, SCARG(uap, fd), NULL,
   1290      1.68     njoly 	    SCARG_P32(uap, path), follow, tsp, UIO_SYSSPACE);
   1291      1.65      matt }
   1292      1.65      matt 
   1293      1.65      matt int
   1294      1.65      matt netbsd32_openat(struct lwp *l, const struct netbsd32_openat_args *uap,
   1295      1.65      matt 		 register_t *retval)
   1296      1.65      matt {
   1297      1.65      matt 	/* {
   1298      1.65      matt 		syscallarg(int) fd;
   1299      1.65      matt 		syscallarg(netbsd32_charp) path;
   1300      1.65      matt 		syscallarg(int) oflags;
   1301      1.65      matt 		syscallarg(mode_t) mode;
   1302      1.65      matt 	} */
   1303      1.65      matt 	struct sys_openat_args ua;
   1304      1.65      matt 
   1305      1.65      matt 	NETBSD32TO64_UAP(fd);
   1306      1.65      matt 	NETBSD32TOP_UAP(path, const char);
   1307      1.65      matt 	NETBSD32TO64_UAP(oflags);
   1308      1.65      matt 	NETBSD32TO64_UAP(mode);
   1309      1.65      matt 
   1310      1.65      matt 	return sys_openat(l, &ua, retval);
   1311      1.65      matt }
   1312      1.65      matt 
   1313      1.65      matt int
   1314      1.65      matt netbsd32_readlinkat(struct lwp *l, const struct netbsd32_readlinkat_args *uap,
   1315      1.65      matt 		 register_t *retval)
   1316      1.65      matt {
   1317      1.65      matt 	/* {
   1318      1.65      matt 		syscallarg(int) fd;
   1319      1.65      matt 		syscallarg(netbsd32_charp) path;
   1320      1.65      matt 		syscallarg(netbsd32_charp) buf;
   1321      1.65      matt 		syscallarg(netbsd32_size_t) bufsize;
   1322      1.65      matt 	} */
   1323      1.65      matt 	struct sys_readlinkat_args ua;
   1324      1.65      matt 
   1325      1.65      matt 	NETBSD32TO64_UAP(fd);
   1326      1.65      matt 	NETBSD32TOP_UAP(path, const char *);
   1327      1.65      matt 	NETBSD32TOP_UAP(buf, char *);
   1328      1.65      matt 	NETBSD32TOX_UAP(bufsize, size_t);
   1329      1.65      matt 
   1330      1.65      matt 	return sys_readlinkat(l, &ua, retval);
   1331      1.65      matt }
   1332      1.65      matt 
   1333      1.65      matt int
   1334      1.65      matt netbsd32_symlinkat(struct lwp *l, const struct netbsd32_symlinkat_args *uap,
   1335      1.65      matt 		 register_t *retval)
   1336      1.65      matt {
   1337      1.65      matt 	/* {
   1338      1.65      matt 		syscallarg(netbsd32_charp) path1;
   1339      1.65      matt 		syscallarg(int) fd;
   1340      1.65      matt 		syscallarg(netbsd32_charp) path2;
   1341      1.65      matt 	} */
   1342      1.65      matt 	struct sys_symlinkat_args ua;
   1343      1.65      matt 
   1344      1.65      matt 	NETBSD32TOP_UAP(path1, const char *);
   1345      1.65      matt 	NETBSD32TO64_UAP(fd);
   1346      1.65      matt 	NETBSD32TOP_UAP(path2, const char *);
   1347      1.65      matt 
   1348      1.65      matt 	return sys_symlinkat(l, &ua, retval);
   1349      1.65      matt }
   1350      1.65      matt 
   1351      1.65      matt int
   1352      1.65      matt netbsd32_unlinkat(struct lwp *l, const struct netbsd32_unlinkat_args *uap,
   1353      1.65      matt 		 register_t *retval)
   1354      1.65      matt {
   1355      1.65      matt 	/* {
   1356      1.65      matt 		syscallarg(int) fd;
   1357      1.65      matt 		syscallarg(netbsd32_charp) path;
   1358      1.65      matt 		syscallarg(int) flag;
   1359      1.65      matt 	} */
   1360      1.65      matt 	struct sys_unlinkat_args ua;
   1361      1.65      matt 
   1362      1.65      matt 	NETBSD32TO64_UAP(fd);
   1363      1.65      matt 	NETBSD32TOP_UAP(path, const char *);
   1364      1.65      matt 	NETBSD32TO64_UAP(flag);
   1365      1.65      matt 
   1366      1.65      matt 	return sys_unlinkat(l, &ua, retval);
   1367      1.65      matt }
   1368      1.65      matt 
   1369      1.65      matt int
   1370      1.65      matt netbsd32_futimens(struct lwp *l, const struct netbsd32_futimens_args *uap,
   1371      1.65      matt 		 register_t *retval)
   1372      1.65      matt {
   1373      1.65      matt 	/* {
   1374      1.65      matt 		syscallarg(int) fd;
   1375      1.65      matt 		syscallarg(netbsd32_timespecp_t) tptr;
   1376      1.65      matt 	} */
   1377      1.82       mrg 	struct timespec ts[2], *tsp;
   1378      1.66      matt 	file_t *fp;
   1379      1.66      matt 	int error;
   1380      1.66      matt 
   1381      1.68     njoly 	error = get_utimens32(SCARG_P32(uap, tptr), ts, &tsp);
   1382      1.68     njoly 	if (error != 0)
   1383      1.68     njoly 		return error;
   1384      1.65      matt 
   1385      1.66      matt 	/* fd_getvnode() will use the descriptor for us */
   1386      1.66      matt 	if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
   1387  1.90.2.1   thorpej 		return error;
   1388      1.71      matt 	error = do_sys_utimensat(l, AT_FDCWD, fp->f_vnode, NULL, 0,
   1389      1.68     njoly 	    tsp, UIO_SYSSPACE);
   1390      1.66      matt 	fd_putfile(SCARG(uap, fd));
   1391  1.90.2.1   thorpej 	return error;
   1392      1.65      matt }
   1393