Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_compat_30.c revision 1.1
      1  1.1  christos /*	$NetBSD: netbsd32_compat_30.c,v 1.1 2005/08/19 02:03:57 christos 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.1  christos __KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_30.c,v 1.1 2005/08/19 02:03:57 christos Exp $");
     33  1.1  christos 
     34  1.1  christos #if defined(_KERNEL_OPT)
     35  1.1  christos #include "opt_ktrace.h"
     36  1.1  christos #endif
     37  1.1  christos 
     38  1.1  christos #include <sys/param.h>
     39  1.1  christos #include <sys/systm.h>
     40  1.1  christos #include <sys/malloc.h>
     41  1.1  christos #include <sys/mount.h>
     42  1.1  christos #include <sys/socket.h>
     43  1.1  christos #include <sys/socketvar.h>
     44  1.1  christos #include <sys/stat.h>
     45  1.1  christos #include <sys/time.h>
     46  1.1  christos #include <sys/ktrace.h>
     47  1.1  christos #include <sys/resourcevar.h>
     48  1.1  christos #include <sys/vnode.h>
     49  1.1  christos #include <sys/file.h>
     50  1.1  christos #include <sys/filedesc.h>
     51  1.1  christos #include <sys/namei.h>
     52  1.1  christos #include <sys/sa.h>
     53  1.1  christos #include <sys/statvfs.h>
     54  1.1  christos #include <sys/syscallargs.h>
     55  1.1  christos #include <sys/proc.h>
     56  1.1  christos 
     57  1.1  christos #include <compat/netbsd32/netbsd32.h>
     58  1.1  christos #include <compat/netbsd32/netbsd32_syscallargs.h>
     59  1.1  christos #include <compat/netbsd32/netbsd32_conv.h>
     60  1.1  christos 
     61  1.1  christos 
     62  1.1  christos int
     63  1.1  christos netbsd32_getdents(l, v, retval)
     64  1.1  christos 	struct lwp *l;
     65  1.1  christos 	void *v;
     66  1.1  christos 	register_t *retval;
     67  1.1  christos {
     68  1.1  christos 	struct netbsd32_getdents_args /* {
     69  1.1  christos 		syscallarg(int) fd;
     70  1.1  christos 		syscallarg(netbsd32_charp) buf;
     71  1.1  christos 		syscallarg(netbsd32_size_t) count;
     72  1.1  christos 	} */ *uap = v;
     73  1.1  christos 	struct file *fp;
     74  1.1  christos 	int error, done;
     75  1.1  christos 	char  *buf;
     76  1.1  christos 	struct proc *p = l->l_proc;
     77  1.1  christos 
     78  1.1  christos 	/* getvnode() will use the descriptor for us */
     79  1.1  christos 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
     80  1.1  christos 		return (error);
     81  1.1  christos 	if ((fp->f_flag & FREAD) == 0) {
     82  1.1  christos 		error = EBADF;
     83  1.1  christos 		goto out;
     84  1.1  christos 	}
     85  1.1  christos 	buf = malloc(SCARG(uap, count), M_TEMP, M_WAITOK);
     86  1.1  christos 	error = vn_readdir(fp, obuf,
     87  1.1  christos 	    UIO_SYSSPACE, SCARG(uap, count), &done, p, 0, 0);
     88  1.1  christos 	if (error == 0) {
     89  1.1  christos 		*retval = netbsd32_to_dirent12(buf, done);
     90  1.1  christos 		error = copyout(buf, NETBSD32PTR64(SCARG(uap, buf)), *retval);
     91  1.1  christos 	}
     92  1.1  christos 	free(buf, M_TEMP);
     93  1.1  christos  out:
     94  1.1  christos 	FILE_UNUSE(fp, p);
     95  1.1  christos 	return (error);
     96  1.1  christos }
     97  1.1  christos 
     98  1.1  christos int
     99  1.1  christos netbsd32___stat13(l, v, retval)
    100  1.1  christos 	struct lwp *l;
    101  1.1  christos 	void *v;
    102  1.1  christos 	register_t *retval;
    103  1.1  christos {
    104  1.1  christos 	struct netbsd32___stat13_args /* {
    105  1.1  christos 		syscallarg(const netbsd32_charp) path;
    106  1.1  christos 		syscallarg(netbsd32_stat13p_t) ub;
    107  1.1  christos 	} */ *uap = v;
    108  1.1  christos 	struct netbsd32_stat30 sb32;
    109  1.1  christos 	struct stat sb;
    110  1.1  christos 	int error;
    111  1.1  christos 	struct nameidata nd;
    112  1.1  christos 	caddr_t sg;
    113  1.1  christos 	const char *path;
    114  1.1  christos 	struct proc *p = l->l_proc;
    115  1.1  christos 
    116  1.1  christos 	path = (char *)NETBSD32PTR64(SCARG(uap, path));
    117  1.1  christos 	sg = stackgap_init(p, 0);
    118  1.1  christos 	CHECK_ALT_EXIST(p, &sg, path);
    119  1.1  christos 
    120  1.1  christos 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF, UIO_USERSPACE, path, p);
    121  1.1  christos 	if ((error = namei(&nd)) != 0)
    122  1.1  christos 		return (error);
    123  1.1  christos 	error = vn_stat(nd.ni_vp, &sb, p);
    124  1.1  christos 	vput(nd.ni_vp);
    125  1.1  christos 	if (error)
    126  1.1  christos 		return (error);
    127  1.1  christos 	netbsd32_from___stat13(&sb, &sb32);
    128  1.1  christos 	error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, ub)),
    129  1.1  christos 	    sizeof(sb32));
    130  1.1  christos 	return (error);
    131  1.1  christos }
    132  1.1  christos 
    133  1.1  christos int
    134  1.1  christos netbsd32___fstat13(l, v, retval)
    135  1.1  christos 	struct lwp *l;
    136  1.1  christos 	void *v;
    137  1.1  christos 	register_t *retval;
    138  1.1  christos {
    139  1.1  christos 	struct netbsd32___fstat13_args /* {
    140  1.1  christos 		syscallarg(int) fd;
    141  1.1  christos 		syscallarg(netbsd32_stat13p_t) sb;
    142  1.1  christos 	} */ *uap = v;
    143  1.1  christos 	int fd = SCARG(uap, fd);
    144  1.1  christos 	struct proc *p = l->l_proc;
    145  1.1  christos 	struct filedesc *fdp = p->p_fd;
    146  1.1  christos 	struct file *fp;
    147  1.1  christos 	struct netbsd32_stat sb32;
    148  1.1  christos 	struct stat ub;
    149  1.1  christos 	int error = 0;
    150  1.1  christos 
    151  1.1  christos 	if ((fp = fd_getfile(fdp, fd)) == NULL)
    152  1.1  christos 		return (EBADF);
    153  1.1  christos 
    154  1.1  christos 	FILE_USE(fp);
    155  1.1  christos 	error = (*fp->f_ops->fo_stat)(fp, &ub, p);
    156  1.1  christos 	FILE_UNUSE(fp, p);
    157  1.1  christos 
    158  1.1  christos 	if (error == 0) {
    159  1.1  christos 		netbsd32_from___stat13(&ub, &sb32);
    160  1.1  christos 		error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, sb)),
    161  1.1  christos 		    sizeof(sb32));
    162  1.1  christos 	}
    163  1.1  christos 	return (error);
    164  1.1  christos }
    165  1.1  christos 
    166  1.1  christos int
    167  1.1  christos netbsd32___lstat13(l, v, retval)
    168  1.1  christos 	struct lwp *l;
    169  1.1  christos 	void *v;
    170  1.1  christos 	register_t *retval;
    171  1.1  christos {
    172  1.1  christos 	struct netbsd32___lstat13_args /* {
    173  1.1  christos 		syscallarg(const netbsd32_charp) path;
    174  1.1  christos 		syscallarg(netbsd32_stat13p_t) ub;
    175  1.1  christos 	} */ *uap = v;
    176  1.1  christos 	struct netbsd32_stat sb32;
    177  1.1  christos 	struct stat sb;
    178  1.1  christos 	int error;
    179  1.1  christos 	struct nameidata nd;
    180  1.1  christos 	caddr_t sg;
    181  1.1  christos 	const char *path;
    182  1.1  christos 	struct proc *p = l->l_proc;
    183  1.1  christos 
    184  1.1  christos 	path = (char *)NETBSD32PTR64(SCARG(uap, path));
    185  1.1  christos 	sg = stackgap_init(p, 0);
    186  1.1  christos 	CHECK_ALT_EXIST(p, &sg, path);
    187  1.1  christos 
    188  1.1  christos 	NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF, UIO_USERSPACE, path, p);
    189  1.1  christos 	if ((error = namei(&nd)) != 0)
    190  1.1  christos 		return (error);
    191  1.1  christos 	error = vn_stat(nd.ni_vp, &sb, p);
    192  1.1  christos 	vput(nd.ni_vp);
    193  1.1  christos 	if (error)
    194  1.1  christos 		return (error);
    195  1.1  christos 	netbsd32_from___stat13(&sb, &sb32);
    196  1.1  christos 	error = copyout(&sb32, (caddr_t)NETBSD32PTR64(SCARG(uap, ub)),
    197  1.1  christos 	    sizeof(sb32));
    198  1.1  christos 	return (error);
    199  1.1  christos }
    200