Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_compat_30.c revision 1.4.6.1
      1  1.4.6.1    simonb /*	$NetBSD: netbsd32_compat_30.c,v 1.4.6.1 2006/04/22 11:38:16 simonb Exp $	*/
      2      1.1  christos 
      3      1.1  christos /*
      4      1.1  christos  * Copyright (c) 1998, 2001 Matthew R. Green
      5      1.1  christos  * All rights reserved.
      6      1.1  christos  *
      7      1.1  christos  * Redistribution and use in source and binary forms, with or without
      8      1.1  christos  * modification, are permitted provided that the following conditions
      9      1.1  christos  * are met:
     10      1.1  christos  * 1. Redistributions of source code must retain the above copyright
     11      1.1  christos  *    notice, this list of conditions and the following disclaimer.
     12      1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     14      1.1  christos  *    documentation and/or other materials provided with the distribution.
     15      1.1  christos  * 3. The name of the author may not be used to endorse or promote products
     16      1.1  christos  *    derived from this software without specific prior written permission.
     17      1.1  christos  *
     18      1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19      1.1  christos  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20      1.1  christos  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21      1.1  christos  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22      1.1  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     23      1.1  christos  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     24      1.1  christos  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     25      1.1  christos  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     26      1.1  christos  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27      1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28      1.1  christos  * SUCH DAMAGE.
     29      1.1  christos  */
     30      1.1  christos 
     31      1.1  christos #include <sys/cdefs.h>
     32  1.4.6.1    simonb __KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_30.c,v 1.4.6.1 2006/04/22 11:38:16 simonb Exp $");
     33      1.1  christos 
     34      1.1  christos #include <sys/param.h>
     35      1.1  christos #include <sys/systm.h>
     36      1.1  christos #include <sys/malloc.h>
     37      1.1  christos #include <sys/mount.h>
     38      1.1  christos #include <sys/socket.h>
     39      1.1  christos #include <sys/socketvar.h>
     40      1.1  christos #include <sys/stat.h>
     41      1.1  christos #include <sys/time.h>
     42      1.1  christos #include <sys/ktrace.h>
     43      1.1  christos #include <sys/resourcevar.h>
     44      1.1  christos #include <sys/vnode.h>
     45      1.1  christos #include <sys/file.h>
     46      1.1  christos #include <sys/filedesc.h>
     47      1.1  christos #include <sys/namei.h>
     48      1.1  christos #include <sys/sa.h>
     49      1.1  christos #include <sys/statvfs.h>
     50      1.1  christos #include <sys/syscallargs.h>
     51      1.1  christos #include <sys/proc.h>
     52      1.2  christos #include <sys/dirent.h>
     53      1.1  christos 
     54      1.1  christos #include <compat/netbsd32/netbsd32.h>
     55      1.1  christos #include <compat/netbsd32/netbsd32_syscallargs.h>
     56      1.1  christos #include <compat/netbsd32/netbsd32_conv.h>
     57      1.1  christos 
     58      1.1  christos 
     59      1.1  christos int
     60      1.1  christos netbsd32_getdents(l, v, retval)
     61      1.1  christos 	struct lwp *l;
     62      1.1  christos 	void *v;
     63      1.1  christos 	register_t *retval;
     64      1.1  christos {
     65      1.1  christos 	struct netbsd32_getdents_args /* {
     66      1.1  christos 		syscallarg(int) fd;
     67      1.1  christos 		syscallarg(netbsd32_charp) buf;
     68      1.1  christos 		syscallarg(netbsd32_size_t) count;
     69      1.1  christos 	} */ *uap = v;
     70      1.1  christos 	struct file *fp;
     71      1.1  christos 	int error, done;
     72      1.1  christos 	char  *buf;
     73      1.1  christos 	struct proc *p = l->l_proc;
     74      1.1  christos 
     75      1.1  christos 	/* getvnode() will use the descriptor for us */
     76      1.1  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
     77      1.1  christos 		return (error);
     78      1.1  christos 	if ((fp->f_flag & FREAD) == 0) {
     79      1.1  christos 		error = EBADF;
     80      1.1  christos 		goto out;
     81      1.1  christos 	}
     82      1.1  christos 	buf = malloc(SCARG(uap, count), M_TEMP, M_WAITOK);
     83      1.2  christos 	error = vn_readdir(fp, buf,
     84      1.4  christos 	    UIO_SYSSPACE, SCARG(uap, count), &done, l, 0, 0);
     85      1.1  christos 	if (error == 0) {
     86      1.1  christos 		*retval = netbsd32_to_dirent12(buf, done);
     87      1.1  christos 		error = copyout(buf, NETBSD32PTR64(SCARG(uap, buf)), *retval);
     88      1.1  christos 	}
     89      1.1  christos 	free(buf, M_TEMP);
     90      1.1  christos  out:
     91      1.4  christos 	FILE_UNUSE(fp, l);
     92      1.1  christos 	return (error);
     93      1.1  christos }
     94      1.1  christos 
     95      1.1  christos int
     96      1.1  christos netbsd32___stat13(l, v, retval)
     97      1.1  christos 	struct lwp *l;
     98      1.1  christos 	void *v;
     99      1.1  christos 	register_t *retval;
    100      1.1  christos {
    101      1.1  christos 	struct netbsd32___stat13_args /* {
    102      1.1  christos 		syscallarg(const netbsd32_charp) path;
    103      1.1  christos 		syscallarg(netbsd32_stat13p_t) ub;
    104      1.1  christos 	} */ *uap = v;
    105      1.2  christos 	struct netbsd32_stat13 sb32;
    106      1.1  christos 	struct stat sb;
    107      1.1  christos 	int error;
    108      1.1  christos 	struct nameidata nd;
    109      1.1  christos 	caddr_t sg;
    110      1.1  christos 	const char *path;
    111      1.1  christos 	struct proc *p = l->l_proc;
    112      1.1  christos 
    113      1.1  christos 	path = (char *)NETBSD32PTR64(SCARG(uap, path));
    114      1.1  christos 	sg = stackgap_init(p, 0);
    115      1.4  christos 	CHECK_ALT_EXIST(l, &sg, path);
    116      1.1  christos 
    117      1.4  christos 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE, path, l);
    118      1.1  christos 	if ((error = namei(&nd)) != 0)
    119      1.1  christos 		return (error);
    120      1.4  christos 	error = vn_stat(nd.ni_vp, &sb, l);
    121      1.1  christos 	vput(nd.ni_vp);
    122      1.1  christos 	if (error)
    123      1.1  christos 		return (error);
    124      1.1  christos 	netbsd32_from___stat13(&sb, &sb32);
    125      1.1  christos 	error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, ub)),
    126      1.1  christos 	    sizeof(sb32));
    127      1.1  christos 	return (error);
    128      1.1  christos }
    129      1.1  christos 
    130      1.1  christos int
    131      1.1  christos netbsd32___fstat13(l, v, retval)
    132      1.1  christos 	struct lwp *l;
    133      1.1  christos 	void *v;
    134      1.1  christos 	register_t *retval;
    135      1.1  christos {
    136      1.1  christos 	struct netbsd32___fstat13_args /* {
    137      1.1  christos 		syscallarg(int) fd;
    138      1.1  christos 		syscallarg(netbsd32_stat13p_t) sb;
    139      1.1  christos 	} */ *uap = v;
    140      1.1  christos 	int fd = SCARG(uap, fd);
    141      1.1  christos 	struct proc *p = l->l_proc;
    142      1.1  christos 	struct filedesc *fdp = p->p_fd;
    143      1.1  christos 	struct file *fp;
    144      1.2  christos 	struct netbsd32_stat13 sb32;
    145      1.1  christos 	struct stat ub;
    146      1.1  christos 	int error = 0;
    147      1.1  christos 
    148      1.1  christos 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    149      1.1  christos 		return (EBADF);
    150      1.1  christos 
    151      1.1  christos 	FILE_USE(fp);
    152      1.4  christos 	error = (*fp->f_ops->fo_stat)(fp, &ub, l);
    153      1.4  christos 	FILE_UNUSE(fp, l);
    154      1.1  christos 
    155      1.1  christos 	if (error == 0) {
    156      1.1  christos 		netbsd32_from___stat13(&ub, &sb32);
    157      1.1  christos 		error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, sb)),
    158      1.1  christos 		    sizeof(sb32));
    159      1.1  christos 	}
    160      1.1  christos 	return (error);
    161      1.1  christos }
    162      1.1  christos 
    163      1.1  christos int
    164      1.1  christos netbsd32___lstat13(l, v, retval)
    165      1.1  christos 	struct lwp *l;
    166      1.1  christos 	void *v;
    167      1.1  christos 	register_t *retval;
    168      1.1  christos {
    169      1.1  christos 	struct netbsd32___lstat13_args /* {
    170      1.1  christos 		syscallarg(const netbsd32_charp) path;
    171      1.1  christos 		syscallarg(netbsd32_stat13p_t) ub;
    172      1.1  christos 	} */ *uap = v;
    173      1.2  christos 	struct netbsd32_stat13 sb32;
    174      1.1  christos 	struct stat sb;
    175      1.1  christos 	int error;
    176      1.1  christos 	struct nameidata nd;
    177      1.1  christos 	caddr_t sg;
    178      1.1  christos 	const char *path;
    179      1.1  christos 	struct proc *p = l->l_proc;
    180      1.1  christos 
    181      1.1  christos 	path = (char *)NETBSD32PTR64(SCARG(uap, path));
    182      1.1  christos 	sg = stackgap_init(p, 0);
    183      1.4  christos 	CHECK_ALT_EXIST(l, &sg, path);
    184      1.1  christos 
    185      1.4  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF, UIO_USERSPACE, path, l);
    186      1.1  christos 	if ((error = namei(&nd)) != 0)
    187      1.1  christos 		return (error);
    188      1.4  christos 	error = vn_stat(nd.ni_vp, &sb, l);
    189      1.1  christos 	vput(nd.ni_vp);
    190      1.1  christos 	if (error)
    191      1.1  christos 		return (error);
    192      1.1  christos 	netbsd32_from___stat13(&sb, &sb32);
    193      1.1  christos 	error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, ub)),
    194      1.1  christos 	    sizeof(sb32));
    195      1.1  christos 	return (error);
    196      1.1  christos }
    197