Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_netbsd.c revision 1.90.2.4
      1  1.90.2.4      yamt /*	$NetBSD: netbsd32_netbsd.c,v 1.90.2.4 2007/09/03 14:32:39 yamt Exp $	*/
      2       1.1       mrg 
      3       1.1       mrg /*
      4      1.57       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  * 3. The name of the author may not be used to endorse or promote products
     16       1.1       mrg  *    derived from this software without specific prior written permission.
     17       1.1       mrg  *
     18       1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19       1.1       mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20       1.1       mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21       1.1       mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22       1.1       mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     23       1.1       mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     24       1.1       mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     25       1.1       mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     26       1.1       mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27       1.1       mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28       1.1       mrg  * SUCH DAMAGE.
     29       1.1       mrg  */
     30      1.62     lukem 
     31      1.62     lukem #include <sys/cdefs.h>
     32  1.90.2.4      yamt __KERNEL_RCSID(0, "$NetBSD: netbsd32_netbsd.c,v 1.90.2.4 2007/09/03 14:32:39 yamt Exp $");
     33       1.1       mrg 
     34      1.58       mrg #if defined(_KERNEL_OPT)
     35      1.28       eeh #include "opt_ddb.h"
     36       1.6       eeh #include "opt_ntp.h"
     37      1.20       eeh #include "opt_compat_netbsd.h"
     38       1.7  drochner #include "opt_compat_43.h"
     39      1.20       eeh #include "opt_sysv.h"
     40      1.71    martin #include "opt_nfsserver.h"
     41      1.71    martin #include "opt_syscall_debug.h"
     42  1.90.2.2      yamt #include "opt_ptrace.h"
     43       1.7  drochner 
     44       1.6       eeh #include "fs_lfs.h"
     45       1.6       eeh #include "fs_nfs.h"
     46      1.42  jdolecek #endif
     47      1.42  jdolecek 
     48      1.42  jdolecek /*
     49      1.42  jdolecek  * Though COMPAT_OLDSOCK is needed only for COMPAT_43, SunOS, Linux,
     50      1.42  jdolecek  * HP-UX, FreeBSD, Ultrix, OSF1, we define it unconditionally so that
     51      1.42  jdolecek  * this would be LKM-safe.
     52      1.42  jdolecek  */
     53      1.42  jdolecek #define COMPAT_OLDSOCK /* used by <sys/socket.h> */
     54       1.4       eeh 
     55       1.1       mrg #include <sys/param.h>
     56       1.1       mrg #include <sys/systm.h>
     57       1.6       eeh #include <sys/kernel.h>
     58      1.57       mrg //#define msg __msg /* Don't ask me! */
     59       1.1       mrg #include <sys/malloc.h>
     60       1.1       mrg #include <sys/mount.h>
     61       1.1       mrg #include <sys/socket.h>
     62       1.1       mrg #include <sys/sockio.h>
     63       1.6       eeh #include <sys/socketvar.h>
     64       1.6       eeh #include <sys/mbuf.h>
     65       1.1       mrg #include <sys/stat.h>
     66       1.1       mrg #include <sys/time.h>
     67       1.4       eeh #include <sys/signalvar.h>
     68       1.6       eeh #include <sys/ptrace.h>
     69       1.6       eeh #include <sys/ktrace.h>
     70       1.6       eeh #include <sys/trace.h>
     71       1.6       eeh #include <sys/resourcevar.h>
     72       1.6       eeh #include <sys/pool.h>
     73       1.6       eeh #include <sys/vnode.h>
     74       1.6       eeh #include <sys/file.h>
     75       1.6       eeh #include <sys/filedesc.h>
     76       1.6       eeh #include <sys/namei.h>
     77  1.90.2.1      yamt #include <sys/dirent.h>
     78  1.90.2.1      yamt #include <sys/kauth.h>
     79      1.29       mrg 
     80      1.29       mrg #include <uvm/uvm_extern.h>
     81      1.29       mrg 
     82       1.1       mrg #include <sys/syscallargs.h>
     83       1.6       eeh #include <sys/proc.h>
     84      1.20       eeh #include <sys/acct.h>
     85      1.20       eeh #include <sys/exec.h>
     86       1.1       mrg 
     87       1.1       mrg #include <net/if.h>
     88       1.1       mrg 
     89      1.10       mrg #include <compat/netbsd32/netbsd32.h>
     90      1.75  christos #include <compat/netbsd32/netbsd32_exec.h>
     91      1.42  jdolecek #include <compat/netbsd32/netbsd32_syscall.h>
     92      1.10       mrg #include <compat/netbsd32/netbsd32_syscallargs.h>
     93      1.56       mrg #include <compat/netbsd32/netbsd32_conv.h>
     94       1.1       mrg 
     95       1.4       eeh #include <machine/frame.h>
     96      1.28       eeh 
     97      1.28       eeh #if defined(DDB)
     98      1.28       eeh #include <ddb/ddbvar.h>
     99      1.28       eeh #endif
    100       1.4       eeh 
    101      1.42  jdolecek extern struct sysent netbsd32_sysent[];
    102      1.42  jdolecek #ifdef SYSCALL_DEBUG
    103      1.42  jdolecek extern const char * const netbsd32_syscallnames[];
    104      1.42  jdolecek #endif
    105      1.46   mycroft #ifdef __HAVE_SYSCALL_INTERN
    106      1.60      fvdl void netbsd32_syscall_intern __P((struct proc *));
    107      1.46   mycroft #else
    108      1.45  jdolecek void syscall __P((void));
    109      1.46   mycroft #endif
    110      1.42  jdolecek 
    111  1.90.2.2      yamt #define LIMITCHECK(a, b) ((a) != RLIM_INFINITY && (a) > (b))
    112  1.90.2.2      yamt 
    113      1.82  drochner #ifdef COMPAT_16
    114      1.82  drochner extern char netbsd32_sigcode[], netbsd32_esigcode[];
    115      1.74       chs struct uvm_object *emul_netbsd32_object;
    116      1.82  drochner #endif
    117      1.82  drochner 
    118      1.77    atatat extern struct sysctlnode netbsd32_sysctl_root;
    119      1.74       chs 
    120      1.42  jdolecek const struct emul emul_netbsd32 = {
    121      1.42  jdolecek 	"netbsd32",
    122      1.42  jdolecek 	"/emul/netbsd32",
    123      1.46   mycroft #ifndef __HAVE_MINIMAL_EMUL
    124      1.46   mycroft 	0,
    125      1.42  jdolecek 	NULL,
    126      1.42  jdolecek 	netbsd32_SYS_syscall,
    127      1.67  jdolecek 	netbsd32_SYS_NSYSENT,
    128      1.46   mycroft #endif
    129      1.42  jdolecek 	netbsd32_sysent,
    130      1.42  jdolecek #ifdef SYSCALL_DEBUG
    131      1.42  jdolecek 	netbsd32_syscallnames,
    132      1.42  jdolecek #else
    133      1.42  jdolecek 	NULL,
    134      1.42  jdolecek #endif
    135      1.46   mycroft 	netbsd32_sendsig,
    136      1.59  christos 	trapsignal,
    137      1.80      fvdl 	NULL,
    138      1.82  drochner #ifdef COMPAT_16
    139      1.42  jdolecek 	netbsd32_sigcode,
    140      1.42  jdolecek 	netbsd32_esigcode,
    141      1.74       chs 	&emul_netbsd32_object,
    142      1.82  drochner #else
    143      1.82  drochner 	NULL,
    144      1.82  drochner 	NULL,
    145      1.82  drochner 	NULL,
    146      1.82  drochner #endif
    147      1.61  jdolecek 	netbsd32_setregs,
    148      1.45  jdolecek 	NULL,
    149      1.45  jdolecek 	NULL,
    150      1.45  jdolecek 	NULL,
    151      1.79      manu 	NULL,
    152      1.79      manu 	NULL,
    153      1.46   mycroft #ifdef __HAVE_SYSCALL_INTERN
    154      1.60      fvdl 	netbsd32_syscall_intern,
    155      1.46   mycroft #else
    156      1.46   mycroft 	syscall,
    157      1.46   mycroft #endif
    158      1.77    atatat 	&netbsd32_sysctl_root,
    159      1.65      manu 	NULL,
    160      1.88      fvdl 
    161      1.88      fvdl 	netbsd32_vm_default_addr,
    162  1.90.2.1      yamt 	NULL,
    163  1.90.2.3      yamt 	sizeof(ucontext32_t),
    164  1.90.2.3      yamt 	startlwp32,
    165      1.42  jdolecek };
    166      1.42  jdolecek 
    167       1.1       mrg /*
    168       1.1       mrg  * below are all the standard NetBSD system calls, in the 32bit
    169      1.32       mrg  * environment, with the necessary conversions to 64bit before
    170      1.57       mrg  * calling the real syscall.  anything that needs special
    171      1.57       mrg  * attention is handled elsewhere.
    172       1.1       mrg  */
    173       1.1       mrg 
    174       1.6       eeh int
    175      1.70   thorpej netbsd32_exit(l, v, retval)
    176      1.70   thorpej 	struct lwp *l;
    177       1.6       eeh 	void *v;
    178       1.6       eeh 	register_t *retval;
    179       1.6       eeh {
    180      1.19       eeh 	struct netbsd32_exit_args /* {
    181       1.6       eeh 		syscallarg(int) rval;
    182       1.6       eeh 	} */ *uap = v;
    183       1.6       eeh 	struct sys_exit_args ua;
    184       1.6       eeh 
    185      1.11       mrg 	NETBSD32TO64_UAP(rval);
    186      1.70   thorpej 	return sys_exit(l, &ua, retval);
    187       1.6       eeh }
    188       1.6       eeh 
    189       1.1       mrg int
    190      1.70   thorpej netbsd32_read(l, v, retval)
    191      1.70   thorpej 	struct lwp *l;
    192       1.1       mrg 	void *v;
    193       1.1       mrg 	register_t *retval;
    194       1.1       mrg {
    195      1.19       eeh 	struct netbsd32_read_args /* {
    196       1.1       mrg 		syscallarg(int) fd;
    197      1.10       mrg 		syscallarg(netbsd32_voidp) buf;
    198      1.10       mrg 		syscallarg(netbsd32_size_t) nbyte;
    199       1.1       mrg 	} */ *uap = v;
    200       1.1       mrg 	struct sys_read_args ua;
    201       1.1       mrg 
    202      1.11       mrg 	NETBSD32TO64_UAP(fd);
    203      1.11       mrg 	NETBSD32TOP_UAP(buf, void *);
    204      1.11       mrg 	NETBSD32TOX_UAP(nbyte, size_t);
    205      1.70   thorpej 	return sys_read(l, &ua, retval);
    206       1.1       mrg }
    207       1.1       mrg 
    208       1.1       mrg int
    209      1.70   thorpej netbsd32_write(l, v, retval)
    210      1.70   thorpej 	struct lwp *l;
    211       1.1       mrg 	void *v;
    212       1.1       mrg 	register_t *retval;
    213       1.1       mrg {
    214      1.19       eeh 	struct netbsd32_write_args /* {
    215       1.1       mrg 		syscallarg(int) fd;
    216      1.10       mrg 		syscallarg(const netbsd32_voidp) buf;
    217      1.10       mrg 		syscallarg(netbsd32_size_t) nbyte;
    218       1.1       mrg 	} */ *uap = v;
    219       1.1       mrg 	struct sys_write_args ua;
    220       1.1       mrg 
    221      1.11       mrg 	NETBSD32TO64_UAP(fd);
    222      1.11       mrg 	NETBSD32TOP_UAP(buf, void *);
    223      1.11       mrg 	NETBSD32TOX_UAP(nbyte, size_t);
    224      1.70   thorpej 	return sys_write(l, &ua, retval);
    225       1.6       eeh }
    226       1.6       eeh 
    227       1.6       eeh int
    228      1.70   thorpej netbsd32_close(l, v, retval)
    229      1.70   thorpej 	struct lwp *l;
    230       1.6       eeh 	void *v;
    231       1.6       eeh 	register_t *retval;
    232       1.6       eeh {
    233      1.19       eeh 	struct netbsd32_close_args /* {
    234       1.6       eeh 		syscallarg(int) fd;
    235       1.6       eeh 	} */ *uap = v;
    236       1.6       eeh 	struct sys_close_args ua;
    237       1.1       mrg 
    238      1.11       mrg 	NETBSD32TO64_UAP(fd);
    239      1.70   thorpej 	return sys_close(l, &ua, retval);
    240       1.1       mrg }
    241       1.1       mrg 
    242       1.1       mrg int
    243      1.70   thorpej netbsd32_open(l, v, retval)
    244      1.70   thorpej 	struct lwp *l;
    245       1.1       mrg 	void *v;
    246       1.1       mrg 	register_t *retval;
    247       1.1       mrg {
    248      1.19       eeh 	struct netbsd32_open_args /* {
    249      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    250       1.1       mrg 		syscallarg(int) flags;
    251       1.1       mrg 		syscallarg(mode_t) mode;
    252       1.1       mrg 	} */ *uap = v;
    253       1.1       mrg 	struct sys_open_args ua;
    254       1.1       mrg 
    255      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    256      1.11       mrg 	NETBSD32TO64_UAP(flags);
    257      1.11       mrg 	NETBSD32TO64_UAP(mode);
    258       1.1       mrg 
    259      1.70   thorpej 	return (sys_open(l, &ua, retval));
    260       1.1       mrg }
    261       1.1       mrg 
    262       1.1       mrg int
    263      1.70   thorpej netbsd32_link(l, v, retval)
    264      1.70   thorpej 	struct lwp *l;
    265       1.1       mrg 	void *v;
    266       1.1       mrg 	register_t *retval;
    267       1.1       mrg {
    268      1.19       eeh 	struct netbsd32_link_args /* {
    269      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    270      1.10       mrg 		syscallarg(const netbsd32_charp) link;
    271       1.1       mrg 	} */ *uap = v;
    272       1.1       mrg 	struct sys_link_args ua;
    273       1.1       mrg 
    274      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    275      1.11       mrg 	NETBSD32TOP_UAP(link, const char);
    276      1.70   thorpej 	return (sys_link(l, &ua, retval));
    277       1.1       mrg }
    278       1.1       mrg 
    279       1.1       mrg int
    280      1.70   thorpej netbsd32_unlink(l, v, retval)
    281      1.70   thorpej 	struct lwp *l;
    282       1.1       mrg 	void *v;
    283       1.1       mrg 	register_t *retval;
    284       1.1       mrg {
    285      1.19       eeh 	struct netbsd32_unlink_args /* {
    286      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    287       1.1       mrg 	} */ *uap = v;
    288       1.1       mrg 	struct sys_unlink_args ua;
    289       1.1       mrg 
    290      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    291       1.1       mrg 
    292      1.70   thorpej 	return (sys_unlink(l, &ua, retval));
    293       1.1       mrg }
    294       1.1       mrg 
    295       1.1       mrg int
    296      1.70   thorpej netbsd32_chdir(l, v, retval)
    297      1.70   thorpej 	struct lwp *l;
    298       1.1       mrg 	void *v;
    299       1.1       mrg 	register_t *retval;
    300       1.1       mrg {
    301      1.19       eeh 	struct netbsd32_chdir_args /* {
    302      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    303       1.1       mrg 	} */ *uap = v;
    304       1.1       mrg 	struct sys_chdir_args ua;
    305       1.1       mrg 
    306      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    307       1.1       mrg 
    308      1.70   thorpej 	return (sys_chdir(l, &ua, retval));
    309       1.1       mrg }
    310       1.1       mrg 
    311       1.1       mrg int
    312      1.70   thorpej netbsd32_fchdir(l, v, retval)
    313      1.70   thorpej 	struct lwp *l;
    314       1.6       eeh 	void *v;
    315       1.6       eeh 	register_t *retval;
    316       1.6       eeh {
    317      1.19       eeh 	struct netbsd32_fchdir_args /* {
    318       1.6       eeh 		syscallarg(int) fd;
    319       1.6       eeh 	} */ *uap = v;
    320       1.6       eeh 	struct sys_fchdir_args ua;
    321       1.6       eeh 
    322      1.11       mrg 	NETBSD32TO64_UAP(fd);
    323       1.6       eeh 
    324      1.70   thorpej 	return (sys_fchdir(l, &ua, retval));
    325       1.6       eeh }
    326       1.6       eeh 
    327       1.6       eeh int
    328      1.70   thorpej netbsd32_mknod(l, v, retval)
    329      1.70   thorpej 	struct lwp *l;
    330       1.1       mrg 	void *v;
    331       1.1       mrg 	register_t *retval;
    332       1.1       mrg {
    333      1.19       eeh 	struct netbsd32_mknod_args /* {
    334      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    335       1.1       mrg 		syscallarg(mode_t) mode;
    336       1.1       mrg 		syscallarg(dev_t) dev;
    337       1.1       mrg 	} */ *uap = v;
    338       1.1       mrg 	struct sys_mknod_args ua;
    339       1.1       mrg 
    340      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    341      1.11       mrg 	NETBSD32TO64_UAP(dev);
    342      1.11       mrg 	NETBSD32TO64_UAP(mode);
    343       1.1       mrg 
    344      1.70   thorpej 	return (sys_mknod(l, &ua, retval));
    345       1.1       mrg }
    346       1.1       mrg 
    347       1.1       mrg int
    348      1.70   thorpej netbsd32_chmod(l, v, retval)
    349      1.70   thorpej 	struct lwp *l;
    350       1.1       mrg 	void *v;
    351       1.1       mrg 	register_t *retval;
    352       1.1       mrg {
    353      1.19       eeh 	struct netbsd32_chmod_args /* {
    354      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    355       1.1       mrg 		syscallarg(mode_t) mode;
    356       1.1       mrg 	} */ *uap = v;
    357       1.1       mrg 	struct sys_chmod_args ua;
    358       1.1       mrg 
    359      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    360      1.11       mrg 	NETBSD32TO64_UAP(mode);
    361       1.1       mrg 
    362      1.70   thorpej 	return (sys_chmod(l, &ua, retval));
    363       1.1       mrg }
    364       1.1       mrg 
    365       1.1       mrg int
    366      1.70   thorpej netbsd32_chown(l, v, retval)
    367      1.70   thorpej 	struct lwp *l;
    368       1.1       mrg 	void *v;
    369       1.1       mrg 	register_t *retval;
    370       1.1       mrg {
    371      1.19       eeh 	struct netbsd32_chown_args /* {
    372      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    373       1.1       mrg 		syscallarg(uid_t) uid;
    374       1.1       mrg 		syscallarg(gid_t) gid;
    375       1.1       mrg 	} */ *uap = v;
    376       1.1       mrg 	struct sys_chown_args ua;
    377       1.1       mrg 
    378      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    379      1.11       mrg 	NETBSD32TO64_UAP(uid);
    380      1.11       mrg 	NETBSD32TO64_UAP(gid);
    381       1.1       mrg 
    382      1.70   thorpej 	return (sys_chown(l, &ua, retval));
    383       1.1       mrg }
    384       1.1       mrg 
    385       1.1       mrg int
    386      1.70   thorpej netbsd32_break(l, v, retval)
    387      1.70   thorpej 	struct lwp *l;
    388       1.1       mrg 	void *v;
    389       1.1       mrg 	register_t *retval;
    390       1.1       mrg {
    391      1.19       eeh 	struct netbsd32_break_args /* {
    392      1.10       mrg 		syscallarg(netbsd32_charp) nsize;
    393       1.1       mrg 	} */ *uap = v;
    394       1.1       mrg 	struct sys_obreak_args ua;
    395       1.1       mrg 
    396  1.90.2.4      yamt 	SCARG(&ua, nsize) = SCARG_P32(uap, nsize);
    397      1.11       mrg 	NETBSD32TOP_UAP(nsize, char);
    398      1.70   thorpej 	return (sys_obreak(l, &ua, retval));
    399       1.1       mrg }
    400       1.1       mrg 
    401       1.1       mrg int
    402      1.70   thorpej netbsd32_mount(l, v, retval)
    403      1.70   thorpej 	struct lwp *l;
    404       1.1       mrg 	void *v;
    405       1.1       mrg 	register_t *retval;
    406       1.1       mrg {
    407      1.19       eeh 	struct netbsd32_mount_args /* {
    408      1.10       mrg 		syscallarg(const netbsd32_charp) type;
    409      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    410       1.1       mrg 		syscallarg(int) flags;
    411      1.10       mrg 		syscallarg(netbsd32_voidp) data;
    412       1.1       mrg 	} */ *uap = v;
    413  1.90.2.4      yamt 	struct compat_40_sys_mount_args ua;
    414       1.1       mrg 
    415      1.11       mrg 	NETBSD32TOP_UAP(type, const char);
    416      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    417      1.11       mrg 	NETBSD32TO64_UAP(flags);
    418      1.11       mrg 	NETBSD32TOP_UAP(data, void);
    419  1.90.2.4      yamt 	return (compat_40_sys_mount(l, &ua, retval));
    420       1.1       mrg }
    421       1.1       mrg 
    422       1.1       mrg int
    423      1.70   thorpej netbsd32_unmount(l, v, retval)
    424      1.70   thorpej 	struct lwp *l;
    425       1.1       mrg 	void *v;
    426       1.1       mrg 	register_t *retval;
    427       1.1       mrg {
    428      1.19       eeh 	struct netbsd32_unmount_args /* {
    429      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    430       1.1       mrg 		syscallarg(int) flags;
    431       1.1       mrg 	} */ *uap = v;
    432       1.1       mrg 	struct sys_unmount_args ua;
    433       1.1       mrg 
    434      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    435      1.11       mrg 	NETBSD32TO64_UAP(flags);
    436      1.70   thorpej 	return (sys_unmount(l, &ua, retval));
    437       1.1       mrg }
    438       1.1       mrg 
    439       1.1       mrg int
    440      1.70   thorpej netbsd32_setuid(l, v, retval)
    441      1.70   thorpej 	struct lwp *l;
    442       1.6       eeh 	void *v;
    443       1.6       eeh 	register_t *retval;
    444       1.6       eeh {
    445      1.19       eeh 	struct netbsd32_setuid_args /* {
    446       1.6       eeh 		syscallarg(uid_t) uid;
    447       1.6       eeh 	} */ *uap = v;
    448       1.6       eeh 	struct sys_setuid_args ua;
    449       1.6       eeh 
    450      1.11       mrg 	NETBSD32TO64_UAP(uid);
    451      1.70   thorpej 	return (sys_setuid(l, &ua, retval));
    452       1.6       eeh }
    453       1.6       eeh 
    454       1.6       eeh int
    455      1.70   thorpej netbsd32_ptrace(l, v, retval)
    456      1.70   thorpej 	struct lwp *l;
    457       1.1       mrg 	void *v;
    458       1.1       mrg 	register_t *retval;
    459       1.1       mrg {
    460  1.90.2.2      yamt #if defined(PTRACE) || defined(_LKM)
    461      1.19       eeh 	struct netbsd32_ptrace_args /* {
    462       1.1       mrg 		syscallarg(int) req;
    463       1.1       mrg 		syscallarg(pid_t) pid;
    464      1.10       mrg 		syscallarg(netbsd32_caddr_t) addr;
    465       1.1       mrg 		syscallarg(int) data;
    466       1.1       mrg 	} */ *uap = v;
    467       1.1       mrg 	struct sys_ptrace_args ua;
    468       1.1       mrg 
    469      1.11       mrg 	NETBSD32TO64_UAP(req);
    470      1.11       mrg 	NETBSD32TO64_UAP(pid);
    471  1.90.2.4      yamt 	NETBSD32TOP_UAP(addr, void *);
    472      1.11       mrg 	NETBSD32TO64_UAP(data);
    473  1.90.2.2      yamt #ifdef _LKM
    474  1.90.2.2      yamt 	return (*sysent[SYS_ptrace].sy_call)(l, &ua, retval);
    475  1.90.2.2      yamt #else
    476  1.90.2.2      yamt 	return sys_ptrace(l, &ua, retval);
    477  1.90.2.2      yamt #endif
    478  1.90.2.2      yamt #else
    479  1.90.2.2      yamt 	return (ENOSYS);
    480  1.90.2.2      yamt #endif /* PTRACE || _LKM */
    481       1.1       mrg }
    482       1.1       mrg 
    483       1.1       mrg int
    484      1.70   thorpej netbsd32_accept(l, v, retval)
    485      1.70   thorpej 	struct lwp *l;
    486       1.1       mrg 	void *v;
    487       1.1       mrg 	register_t *retval;
    488       1.1       mrg {
    489      1.19       eeh 	struct netbsd32_accept_args /* {
    490       1.1       mrg 		syscallarg(int) s;
    491      1.10       mrg 		syscallarg(netbsd32_sockaddrp_t) name;
    492      1.10       mrg 		syscallarg(netbsd32_intp) anamelen;
    493       1.1       mrg 	} */ *uap = v;
    494       1.1       mrg 	struct sys_accept_args ua;
    495       1.1       mrg 
    496      1.11       mrg 	NETBSD32TO64_UAP(s);
    497      1.11       mrg 	NETBSD32TOP_UAP(name, struct sockaddr);
    498  1.90.2.1      yamt 	NETBSD32TOP_UAP(anamelen, socklen_t);
    499      1.70   thorpej 	return (sys_accept(l, &ua, retval));
    500       1.1       mrg }
    501       1.1       mrg 
    502       1.1       mrg int
    503      1.70   thorpej netbsd32_getpeername(l, v, retval)
    504      1.70   thorpej 	struct lwp *l;
    505       1.1       mrg 	void *v;
    506       1.1       mrg 	register_t *retval;
    507       1.1       mrg {
    508      1.19       eeh 	struct netbsd32_getpeername_args /* {
    509       1.1       mrg 		syscallarg(int) fdes;
    510      1.10       mrg 		syscallarg(netbsd32_sockaddrp_t) asa;
    511      1.10       mrg 		syscallarg(netbsd32_intp) alen;
    512       1.1       mrg 	} */ *uap = v;
    513       1.1       mrg 	struct sys_getpeername_args ua;
    514       1.1       mrg 
    515      1.11       mrg 	NETBSD32TO64_UAP(fdes);
    516      1.11       mrg 	NETBSD32TOP_UAP(asa, struct sockaddr);
    517  1.90.2.1      yamt 	NETBSD32TOP_UAP(alen, socklen_t);
    518       1.6       eeh /* NB: do the protocol specific sockaddrs need to be converted? */
    519      1.70   thorpej 	return (sys_getpeername(l, &ua, retval));
    520       1.1       mrg }
    521       1.1       mrg 
    522       1.1       mrg int
    523      1.70   thorpej netbsd32_getsockname(l, v, retval)
    524      1.70   thorpej 	struct lwp *l;
    525       1.1       mrg 	void *v;
    526       1.1       mrg 	register_t *retval;
    527       1.1       mrg {
    528      1.19       eeh 	struct netbsd32_getsockname_args /* {
    529       1.1       mrg 		syscallarg(int) fdes;
    530      1.10       mrg 		syscallarg(netbsd32_sockaddrp_t) asa;
    531      1.10       mrg 		syscallarg(netbsd32_intp) alen;
    532       1.1       mrg 	} */ *uap = v;
    533       1.1       mrg 	struct sys_getsockname_args ua;
    534       1.1       mrg 
    535      1.11       mrg 	NETBSD32TO64_UAP(fdes);
    536      1.11       mrg 	NETBSD32TOP_UAP(asa, struct sockaddr);
    537  1.90.2.1      yamt 	NETBSD32TOP_UAP(alen, socklen_t);
    538      1.70   thorpej 	return (sys_getsockname(l, &ua, retval));
    539       1.1       mrg }
    540       1.1       mrg 
    541       1.1       mrg int
    542      1.70   thorpej netbsd32_access(l, v, retval)
    543      1.70   thorpej 	struct lwp *l;
    544       1.1       mrg 	void *v;
    545       1.1       mrg 	register_t *retval;
    546       1.1       mrg {
    547      1.19       eeh 	struct netbsd32_access_args /* {
    548      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    549       1.1       mrg 		syscallarg(int) flags;
    550       1.1       mrg 	} */ *uap = v;
    551       1.1       mrg 	struct sys_access_args ua;
    552       1.1       mrg 
    553      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    554      1.11       mrg 	NETBSD32TO64_UAP(flags);
    555       1.1       mrg 
    556  1.90.2.4      yamt 	return sys_access(l, &ua, retval);
    557       1.1       mrg }
    558       1.1       mrg 
    559       1.1       mrg int
    560      1.70   thorpej netbsd32_chflags(l, v, retval)
    561      1.70   thorpej 	struct lwp *l;
    562       1.1       mrg 	void *v;
    563       1.1       mrg 	register_t *retval;
    564       1.1       mrg {
    565      1.19       eeh 	struct netbsd32_chflags_args /* {
    566      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    567      1.10       mrg 		syscallarg(netbsd32_u_long) flags;
    568       1.1       mrg 	} */ *uap = v;
    569       1.1       mrg 	struct sys_chflags_args ua;
    570       1.1       mrg 
    571      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    572      1.11       mrg 	NETBSD32TO64_UAP(flags);
    573       1.1       mrg 
    574      1.70   thorpej 	return (sys_chflags(l, &ua, retval));
    575       1.1       mrg }
    576       1.1       mrg 
    577       1.1       mrg int
    578      1.70   thorpej netbsd32_fchflags(l, v, retval)
    579      1.70   thorpej 	struct lwp *l;
    580       1.1       mrg 	void *v;
    581       1.1       mrg 	register_t *retval;
    582       1.1       mrg {
    583      1.19       eeh 	struct netbsd32_fchflags_args /* {
    584       1.1       mrg 		syscallarg(int) fd;
    585      1.10       mrg 		syscallarg(netbsd32_u_long) flags;
    586       1.1       mrg 	} */ *uap = v;
    587       1.1       mrg 	struct sys_fchflags_args ua;
    588       1.1       mrg 
    589      1.11       mrg 	NETBSD32TO64_UAP(fd);
    590      1.11       mrg 	NETBSD32TO64_UAP(flags);
    591       1.1       mrg 
    592      1.70   thorpej 	return (sys_fchflags(l, &ua, retval));
    593       1.1       mrg }
    594       1.1       mrg 
    595       1.1       mrg int
    596      1.70   thorpej netbsd32_lchflags(l, v, retval)
    597      1.70   thorpej 	struct lwp *l;
    598      1.50       mrg 	void *v;
    599      1.50       mrg 	register_t *retval;
    600      1.50       mrg {
    601      1.50       mrg 	struct netbsd32_lchflags_args /* {
    602      1.81       mrg 		syscallarg(const char *) path;
    603      1.50       mrg 		syscallarg(netbsd32_u_long) flags;
    604      1.50       mrg 	} */ *uap = v;
    605      1.50       mrg 	struct sys_lchflags_args ua;
    606      1.50       mrg 
    607      1.50       mrg 	NETBSD32TOP_UAP(path, const char);
    608      1.50       mrg 	NETBSD32TO64_UAP(flags);
    609      1.50       mrg 
    610      1.70   thorpej 	return (sys_lchflags(l, &ua, retval));
    611      1.50       mrg }
    612      1.50       mrg 
    613      1.50       mrg int
    614      1.70   thorpej netbsd32_kill(l, v, retval)
    615      1.70   thorpej 	struct lwp *l;
    616       1.6       eeh 	void *v;
    617       1.6       eeh 	register_t *retval;
    618       1.6       eeh {
    619      1.19       eeh 	struct netbsd32_kill_args /* {
    620       1.6       eeh 		syscallarg(int) pid;
    621       1.6       eeh 		syscallarg(int) signum;
    622       1.6       eeh 	} */ *uap = v;
    623       1.6       eeh 	struct sys_kill_args ua;
    624       1.6       eeh 
    625      1.11       mrg 	NETBSD32TO64_UAP(pid);
    626      1.11       mrg 	NETBSD32TO64_UAP(signum);
    627       1.6       eeh 
    628      1.70   thorpej 	return (sys_kill(l, &ua, retval));
    629       1.6       eeh }
    630       1.6       eeh 
    631       1.6       eeh int
    632      1.70   thorpej netbsd32_dup(l, v, retval)
    633      1.70   thorpej 	struct lwp *l;
    634       1.6       eeh 	void *v;
    635       1.6       eeh 	register_t *retval;
    636       1.6       eeh {
    637      1.19       eeh 	struct netbsd32_dup_args /* {
    638       1.6       eeh 		syscallarg(int) fd;
    639       1.6       eeh 	} */ *uap = v;
    640       1.6       eeh 	struct sys_dup_args ua;
    641       1.6       eeh 
    642      1.11       mrg 	NETBSD32TO64_UAP(fd);
    643       1.6       eeh 
    644      1.70   thorpej 	return (sys_dup(l, &ua, retval));
    645       1.6       eeh }
    646       1.6       eeh 
    647       1.6       eeh int
    648      1.70   thorpej netbsd32_profil(l, v, retval)
    649      1.70   thorpej 	struct lwp *l;
    650       1.1       mrg 	void *v;
    651       1.1       mrg 	register_t *retval;
    652       1.1       mrg {
    653      1.19       eeh 	struct netbsd32_profil_args /* {
    654      1.10       mrg 		syscallarg(netbsd32_caddr_t) samples;
    655      1.10       mrg 		syscallarg(netbsd32_size_t) size;
    656      1.10       mrg 		syscallarg(netbsd32_u_long) offset;
    657       1.1       mrg 		syscallarg(u_int) scale;
    658       1.1       mrg 	} */ *uap = v;
    659       1.1       mrg 	struct sys_profil_args ua;
    660       1.1       mrg 
    661  1.90.2.4      yamt 	NETBSD32TOP_UAP(samples, void *);
    662      1.11       mrg 	NETBSD32TOX_UAP(size, size_t);
    663      1.11       mrg 	NETBSD32TOX_UAP(offset, u_long);
    664      1.11       mrg 	NETBSD32TO64_UAP(scale);
    665      1.70   thorpej 	return (sys_profil(l, &ua, retval));
    666       1.1       mrg }
    667       1.1       mrg 
    668       1.1       mrg int
    669      1.70   thorpej netbsd32_ktrace(l, v, retval)
    670      1.70   thorpej 	struct lwp *l;
    671       1.1       mrg 	void *v;
    672       1.1       mrg 	register_t *retval;
    673       1.1       mrg {
    674      1.19       eeh 	struct netbsd32_ktrace_args /* {
    675      1.10       mrg 		syscallarg(const netbsd32_charp) fname;
    676       1.1       mrg 		syscallarg(int) ops;
    677       1.1       mrg 		syscallarg(int) facs;
    678       1.1       mrg 		syscallarg(int) pid;
    679       1.1       mrg 	} */ *uap = v;
    680       1.1       mrg 	struct sys_ktrace_args ua;
    681       1.1       mrg 
    682      1.11       mrg 	NETBSD32TOP_UAP(fname, const char);
    683      1.11       mrg 	NETBSD32TO64_UAP(ops);
    684      1.11       mrg 	NETBSD32TO64_UAP(facs);
    685      1.11       mrg 	NETBSD32TO64_UAP(pid);
    686      1.70   thorpej 	return (sys_ktrace(l, &ua, retval));
    687       1.1       mrg }
    688      1.50       mrg 
    689      1.50       mrg int
    690      1.70   thorpej netbsd32_utrace(l, v, retval)
    691      1.70   thorpej 	struct lwp *l;
    692      1.50       mrg 	void *v;
    693      1.50       mrg 	register_t *retval;
    694      1.50       mrg {
    695      1.50       mrg 	struct netbsd32_utrace_args /* {
    696      1.50       mrg 		syscallarg(const netbsd32_charp) label;
    697      1.50       mrg 		syscallarg(netbsd32_voidp) addr;
    698      1.50       mrg 		syscallarg(netbsd32_size_t) len;
    699      1.50       mrg 	} */ *uap = v;
    700      1.50       mrg 	struct sys_utrace_args ua;
    701      1.50       mrg 
    702      1.50       mrg 	NETBSD32TOP_UAP(label, const char);
    703      1.50       mrg 	NETBSD32TOP_UAP(addr, void);
    704      1.50       mrg 	NETBSD32TO64_UAP(len);
    705      1.70   thorpej 	return (sys_utrace(l, &ua, retval));
    706      1.50       mrg }
    707       1.1       mrg 
    708       1.1       mrg int
    709      1.70   thorpej netbsd32___getlogin(l, v, retval)
    710      1.70   thorpej 	struct lwp *l;
    711       1.1       mrg 	void *v;
    712       1.1       mrg 	register_t *retval;
    713       1.1       mrg {
    714      1.19       eeh 	struct netbsd32___getlogin_args /* {
    715      1.10       mrg 		syscallarg(netbsd32_charp) namebuf;
    716       1.1       mrg 		syscallarg(u_int) namelen;
    717       1.1       mrg 	} */ *uap = v;
    718       1.1       mrg 	struct sys___getlogin_args ua;
    719       1.1       mrg 
    720      1.11       mrg 	NETBSD32TOP_UAP(namebuf, char);
    721      1.11       mrg 	NETBSD32TO64_UAP(namelen);
    722      1.70   thorpej 	return (sys___getlogin(l, &ua, retval));
    723       1.1       mrg }
    724       1.1       mrg 
    725       1.1       mrg int
    726      1.70   thorpej netbsd32_setlogin(l, v, retval)
    727      1.70   thorpej 	struct lwp *l;
    728       1.1       mrg 	void *v;
    729       1.1       mrg 	register_t *retval;
    730       1.1       mrg {
    731      1.19       eeh 	struct netbsd32_setlogin_args /* {
    732      1.10       mrg 		syscallarg(const netbsd32_charp) namebuf;
    733       1.1       mrg 	} */ *uap = v;
    734      1.70   thorpej 	struct sys___setlogin_args ua;
    735       1.1       mrg 
    736      1.11       mrg 	NETBSD32TOP_UAP(namebuf, char);
    737      1.70   thorpej 	return (sys___setlogin(l, &ua, retval));
    738       1.1       mrg }
    739       1.1       mrg 
    740       1.1       mrg int
    741      1.70   thorpej netbsd32_acct(l, v, retval)
    742      1.70   thorpej 	struct lwp *l;
    743       1.1       mrg 	void *v;
    744       1.1       mrg 	register_t *retval;
    745       1.1       mrg {
    746      1.19       eeh 	struct netbsd32_acct_args /* {
    747      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    748       1.1       mrg 	} */ *uap = v;
    749       1.1       mrg 	struct sys_acct_args ua;
    750       1.1       mrg 
    751      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    752      1.70   thorpej 	return (sys_acct(l, &ua, retval));
    753       1.1       mrg }
    754       1.1       mrg 
    755       1.1       mrg int
    756      1.70   thorpej netbsd32_revoke(l, v, retval)
    757      1.70   thorpej 	struct lwp *l;
    758       1.1       mrg 	void *v;
    759       1.1       mrg 	register_t *retval;
    760       1.1       mrg {
    761      1.19       eeh 	struct netbsd32_revoke_args /* {
    762      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    763       1.1       mrg 	} */ *uap = v;
    764       1.1       mrg 	struct sys_revoke_args ua;
    765       1.1       mrg 
    766      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    767       1.1       mrg 
    768      1.70   thorpej 	return (sys_revoke(l, &ua, retval));
    769       1.1       mrg }
    770       1.1       mrg 
    771       1.1       mrg int
    772      1.70   thorpej netbsd32_symlink(l, v, retval)
    773      1.70   thorpej 	struct lwp *l;
    774       1.1       mrg 	void *v;
    775       1.1       mrg 	register_t *retval;
    776       1.1       mrg {
    777      1.19       eeh 	struct netbsd32_symlink_args /* {
    778      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    779      1.10       mrg 		syscallarg(const netbsd32_charp) link;
    780       1.1       mrg 	} */ *uap = v;
    781       1.1       mrg 	struct sys_symlink_args ua;
    782       1.1       mrg 
    783      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    784      1.11       mrg 	NETBSD32TOP_UAP(link, const char);
    785       1.1       mrg 
    786      1.70   thorpej 	return (sys_symlink(l, &ua, retval));
    787       1.1       mrg }
    788       1.1       mrg 
    789       1.1       mrg int
    790      1.70   thorpej netbsd32_readlink(l, v, retval)
    791      1.70   thorpej 	struct lwp *l;
    792       1.1       mrg 	void *v;
    793       1.1       mrg 	register_t *retval;
    794       1.1       mrg {
    795      1.19       eeh 	struct netbsd32_readlink_args /* {
    796      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    797      1.10       mrg 		syscallarg(netbsd32_charp) buf;
    798      1.10       mrg 		syscallarg(netbsd32_size_t) count;
    799       1.1       mrg 	} */ *uap = v;
    800       1.1       mrg 	struct sys_readlink_args ua;
    801       1.1       mrg 
    802      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    803      1.11       mrg 	NETBSD32TOP_UAP(buf, char);
    804      1.11       mrg 	NETBSD32TOX_UAP(count, size_t);
    805       1.1       mrg 
    806      1.70   thorpej 	return (sys_readlink(l, &ua, retval));
    807       1.1       mrg }
    808       1.1       mrg 
    809       1.1       mrg int
    810      1.70   thorpej netbsd32_umask(l, v, retval)
    811      1.70   thorpej 	struct lwp *l;
    812       1.6       eeh 	void *v;
    813       1.6       eeh 	register_t *retval;
    814       1.6       eeh {
    815      1.19       eeh 	struct netbsd32_umask_args /* {
    816       1.6       eeh 		syscallarg(mode_t) newmask;
    817       1.6       eeh 	} */ *uap = v;
    818       1.6       eeh 	struct sys_umask_args ua;
    819       1.6       eeh 
    820      1.11       mrg 	NETBSD32TO64_UAP(newmask);
    821      1.70   thorpej 	return (sys_umask(l, &ua, retval));
    822       1.6       eeh }
    823       1.6       eeh 
    824       1.6       eeh int
    825      1.70   thorpej netbsd32_chroot(l, v, retval)
    826      1.70   thorpej 	struct lwp *l;
    827       1.1       mrg 	void *v;
    828       1.1       mrg 	register_t *retval;
    829       1.1       mrg {
    830      1.19       eeh 	struct netbsd32_chroot_args /* {
    831      1.10       mrg 		syscallarg(const netbsd32_charp) path;
    832       1.1       mrg 	} */ *uap = v;
    833       1.1       mrg 	struct sys_chroot_args ua;
    834       1.1       mrg 
    835      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
    836      1.70   thorpej 	return (sys_chroot(l, &ua, retval));
    837       1.1       mrg }
    838       1.1       mrg 
    839       1.1       mrg int
    840      1.70   thorpej netbsd32_sbrk(l, v, retval)
    841      1.70   thorpej 	struct lwp *l;
    842       1.6       eeh 	void *v;
    843       1.6       eeh 	register_t *retval;
    844       1.6       eeh {
    845      1.19       eeh 	struct netbsd32_sbrk_args /* {
    846       1.6       eeh 		syscallarg(int) incr;
    847       1.6       eeh 	} */ *uap = v;
    848       1.6       eeh 	struct sys_sbrk_args ua;
    849       1.6       eeh 
    850      1.11       mrg 	NETBSD32TO64_UAP(incr);
    851      1.70   thorpej 	return (sys_sbrk(l, &ua, retval));
    852       1.6       eeh }
    853       1.6       eeh 
    854       1.6       eeh int
    855      1.70   thorpej netbsd32_sstk(l, v, retval)
    856      1.70   thorpej 	struct lwp *l;
    857       1.6       eeh 	void *v;
    858       1.6       eeh 	register_t *retval;
    859       1.6       eeh {
    860      1.19       eeh 	struct netbsd32_sstk_args /* {
    861       1.6       eeh 		syscallarg(int) incr;
    862       1.6       eeh 	} */ *uap = v;
    863       1.6       eeh 	struct sys_sstk_args ua;
    864       1.6       eeh 
    865      1.11       mrg 	NETBSD32TO64_UAP(incr);
    866      1.70   thorpej 	return (sys_sstk(l, &ua, retval));
    867       1.6       eeh }
    868       1.6       eeh 
    869       1.6       eeh int
    870      1.70   thorpej netbsd32_munmap(l, v, retval)
    871      1.70   thorpej 	struct lwp *l;
    872       1.1       mrg 	void *v;
    873       1.1       mrg 	register_t *retval;
    874       1.1       mrg {
    875      1.19       eeh 	struct netbsd32_munmap_args /* {
    876      1.10       mrg 		syscallarg(netbsd32_voidp) addr;
    877      1.10       mrg 		syscallarg(netbsd32_size_t) len;
    878       1.1       mrg 	} */ *uap = v;
    879       1.1       mrg 	struct sys_munmap_args ua;
    880       1.1       mrg 
    881      1.11       mrg 	NETBSD32TOP_UAP(addr, void);
    882      1.11       mrg 	NETBSD32TOX_UAP(len, size_t);
    883      1.70   thorpej 	return (sys_munmap(l, &ua, retval));
    884       1.1       mrg }
    885       1.1       mrg 
    886       1.1       mrg int
    887      1.70   thorpej netbsd32_mprotect(l, v, retval)
    888      1.70   thorpej 	struct lwp *l;
    889       1.1       mrg 	void *v;
    890       1.1       mrg 	register_t *retval;
    891       1.1       mrg {
    892      1.19       eeh 	struct netbsd32_mprotect_args /* {
    893      1.10       mrg 		syscallarg(netbsd32_voidp) addr;
    894      1.10       mrg 		syscallarg(netbsd32_size_t) len;
    895       1.1       mrg 		syscallarg(int) prot;
    896       1.1       mrg 	} */ *uap = v;
    897       1.1       mrg 	struct sys_mprotect_args ua;
    898       1.1       mrg 
    899      1.11       mrg 	NETBSD32TOP_UAP(addr, void);
    900      1.11       mrg 	NETBSD32TOX_UAP(len, size_t);
    901      1.11       mrg 	NETBSD32TO64_UAP(prot);
    902      1.70   thorpej 	return (sys_mprotect(l, &ua, retval));
    903       1.1       mrg }
    904       1.1       mrg 
    905       1.1       mrg int
    906      1.70   thorpej netbsd32_madvise(l, v, retval)
    907      1.70   thorpej 	struct lwp *l;
    908       1.1       mrg 	void *v;
    909       1.1       mrg 	register_t *retval;
    910       1.1       mrg {
    911      1.19       eeh 	struct netbsd32_madvise_args /* {
    912      1.10       mrg 		syscallarg(netbsd32_voidp) addr;
    913      1.10       mrg 		syscallarg(netbsd32_size_t) len;
    914       1.1       mrg 		syscallarg(int) behav;
    915       1.1       mrg 	} */ *uap = v;
    916       1.1       mrg 	struct sys_madvise_args ua;
    917       1.1       mrg 
    918      1.11       mrg 	NETBSD32TOP_UAP(addr, void);
    919      1.11       mrg 	NETBSD32TOX_UAP(len, size_t);
    920      1.11       mrg 	NETBSD32TO64_UAP(behav);
    921      1.70   thorpej 	return (sys_madvise(l, &ua, retval));
    922       1.1       mrg }
    923       1.1       mrg 
    924       1.1       mrg int
    925      1.70   thorpej netbsd32_mincore(l, v, retval)
    926      1.70   thorpej 	struct lwp *l;
    927       1.1       mrg 	void *v;
    928       1.1       mrg 	register_t *retval;
    929       1.1       mrg {
    930      1.19       eeh 	struct netbsd32_mincore_args /* {
    931      1.10       mrg 		syscallarg(netbsd32_caddr_t) addr;
    932      1.10       mrg 		syscallarg(netbsd32_size_t) len;
    933      1.10       mrg 		syscallarg(netbsd32_charp) vec;
    934       1.1       mrg 	} */ *uap = v;
    935       1.1       mrg 	struct sys_mincore_args ua;
    936       1.1       mrg 
    937  1.90.2.4      yamt 	NETBSD32TOP_UAP(addr, void *);
    938      1.11       mrg 	NETBSD32TOX_UAP(len, size_t);
    939      1.11       mrg 	NETBSD32TOP_UAP(vec, char);
    940      1.70   thorpej 	return (sys_mincore(l, &ua, retval));
    941       1.1       mrg }
    942       1.1       mrg 
    943      1.57       mrg /* XXX MOVE ME XXX ? */
    944       1.1       mrg int
    945      1.70   thorpej netbsd32_getgroups(l, v, retval)
    946      1.70   thorpej 	struct lwp *l;
    947       1.1       mrg 	void *v;
    948       1.1       mrg 	register_t *retval;
    949       1.1       mrg {
    950      1.19       eeh 	struct netbsd32_getgroups_args /* {
    951       1.1       mrg 		syscallarg(int) gidsetsize;
    952      1.10       mrg 		syscallarg(netbsd32_gid_tp) gidset;
    953       1.1       mrg 	} */ *uap = v;
    954  1.90.2.4      yamt 	struct sys_getgroups_args ua;
    955       1.1       mrg 
    956  1.90.2.4      yamt 	/* Since sizeof (gid_t) == sizeof (netbsd32_gid_t) ... */
    957  1.90.2.4      yamt 
    958  1.90.2.4      yamt 	NETBSD32TO64_UAP(gidsetsize);
    959  1.90.2.4      yamt 	NETBSD32TOP_UAP(gidset, gid_t);
    960  1.90.2.4      yamt 	return (sys_getgroups(l, &ua, retval));
    961       1.1       mrg }
    962       1.1       mrg 
    963       1.1       mrg int
    964      1.70   thorpej netbsd32_setgroups(l, v, retval)
    965      1.70   thorpej 	struct lwp *l;
    966       1.1       mrg 	void *v;
    967       1.1       mrg 	register_t *retval;
    968       1.1       mrg {
    969      1.19       eeh 	struct netbsd32_setgroups_args /* {
    970       1.1       mrg 		syscallarg(int) gidsetsize;
    971      1.10       mrg 		syscallarg(const netbsd32_gid_tp) gidset;
    972       1.1       mrg 	} */ *uap = v;
    973       1.1       mrg 	struct sys_setgroups_args ua;
    974       1.1       mrg 
    975      1.11       mrg 	NETBSD32TO64_UAP(gidsetsize);
    976      1.11       mrg 	NETBSD32TOP_UAP(gidset, gid_t);
    977      1.70   thorpej 	return (sys_setgroups(l, &ua, retval));
    978       1.1       mrg }
    979       1.1       mrg 
    980       1.1       mrg int
    981      1.70   thorpej netbsd32_setpgid(l, v, retval)
    982      1.70   thorpej 	struct lwp *l;
    983       1.6       eeh 	void *v;
    984       1.6       eeh 	register_t *retval;
    985       1.6       eeh {
    986      1.19       eeh 	struct netbsd32_setpgid_args /* {
    987       1.6       eeh 		syscallarg(int) pid;
    988       1.6       eeh 		syscallarg(int) pgid;
    989       1.6       eeh 	} */ *uap = v;
    990       1.6       eeh 	struct sys_setpgid_args ua;
    991       1.6       eeh 
    992      1.11       mrg 	NETBSD32TO64_UAP(pid);
    993      1.11       mrg 	NETBSD32TO64_UAP(pgid);
    994      1.70   thorpej 	return (sys_setpgid(l, &ua, retval));
    995       1.6       eeh }
    996       1.6       eeh 
    997       1.1       mrg int
    998      1.70   thorpej netbsd32_fcntl(l, v, retval)
    999      1.70   thorpej 	struct lwp *l;
   1000       1.1       mrg 	void *v;
   1001       1.1       mrg 	register_t *retval;
   1002       1.1       mrg {
   1003      1.19       eeh 	struct netbsd32_fcntl_args /* {
   1004       1.1       mrg 		syscallarg(int) fd;
   1005       1.1       mrg 		syscallarg(int) cmd;
   1006      1.10       mrg 		syscallarg(netbsd32_voidp) arg;
   1007       1.1       mrg 	} */ *uap = v;
   1008       1.1       mrg 	struct sys_fcntl_args ua;
   1009       1.1       mrg 
   1010      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1011      1.11       mrg 	NETBSD32TO64_UAP(cmd);
   1012      1.11       mrg 	NETBSD32TOP_UAP(arg, void);
   1013      1.54       mrg 	/* we can do this because `struct flock' doesn't change */
   1014      1.70   thorpej 	return (sys_fcntl(l, &ua, retval));
   1015       1.1       mrg }
   1016       1.1       mrg 
   1017       1.1       mrg int
   1018      1.70   thorpej netbsd32_dup2(l, v, retval)
   1019      1.70   thorpej 	struct lwp *l;
   1020       1.6       eeh 	void *v;
   1021       1.6       eeh 	register_t *retval;
   1022       1.6       eeh {
   1023      1.19       eeh 	struct netbsd32_dup2_args /* {
   1024       1.6       eeh 		syscallarg(int) from;
   1025       1.6       eeh 		syscallarg(int) to;
   1026       1.6       eeh 	} */ *uap = v;
   1027       1.6       eeh 	struct sys_dup2_args ua;
   1028       1.6       eeh 
   1029      1.11       mrg 	NETBSD32TO64_UAP(from);
   1030      1.11       mrg 	NETBSD32TO64_UAP(to);
   1031      1.70   thorpej 	return (sys_dup2(l, &ua, retval));
   1032       1.6       eeh }
   1033       1.6       eeh 
   1034       1.6       eeh int
   1035      1.70   thorpej netbsd32_fsync(l, v, retval)
   1036      1.70   thorpej 	struct lwp *l;
   1037       1.6       eeh 	void *v;
   1038       1.6       eeh 	register_t *retval;
   1039       1.6       eeh {
   1040      1.19       eeh 	struct netbsd32_fsync_args /* {
   1041       1.6       eeh 		syscallarg(int) fd;
   1042       1.6       eeh 	} */ *uap = v;
   1043       1.6       eeh 	struct sys_fsync_args ua;
   1044       1.1       mrg 
   1045      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1046      1.70   thorpej 	return (sys_fsync(l, &ua, retval));
   1047       1.6       eeh }
   1048       1.6       eeh 
   1049       1.6       eeh int
   1050      1.70   thorpej netbsd32_setpriority(l, v, retval)
   1051      1.70   thorpej 	struct lwp *l;
   1052       1.6       eeh 	void *v;
   1053       1.6       eeh 	register_t *retval;
   1054       1.6       eeh {
   1055      1.19       eeh 	struct netbsd32_setpriority_args /* {
   1056       1.6       eeh 		syscallarg(int) which;
   1057       1.6       eeh 		syscallarg(int) who;
   1058       1.6       eeh 		syscallarg(int) prio;
   1059       1.6       eeh 	} */ *uap = v;
   1060       1.6       eeh 	struct sys_setpriority_args ua;
   1061       1.6       eeh 
   1062      1.11       mrg 	NETBSD32TO64_UAP(which);
   1063      1.11       mrg 	NETBSD32TO64_UAP(who);
   1064      1.11       mrg 	NETBSD32TO64_UAP(prio);
   1065      1.70   thorpej 	return (sys_setpriority(l, &ua, retval));
   1066       1.6       eeh }
   1067       1.6       eeh 
   1068       1.6       eeh int
   1069  1.90.2.2      yamt netbsd32_sys___socket30(l, v, retval)
   1070      1.70   thorpej 	struct lwp *l;
   1071       1.6       eeh 	void *v;
   1072       1.6       eeh 	register_t *retval;
   1073       1.6       eeh {
   1074  1.90.2.2      yamt 	struct netbsd32_sys___socket30_args /* {
   1075       1.6       eeh 		syscallarg(int) domain;
   1076       1.6       eeh 		syscallarg(int) type;
   1077       1.6       eeh 		syscallarg(int) protocol;
   1078       1.6       eeh 	} */ *uap = v;
   1079  1.90.2.2      yamt 	struct sys___socket30_args ua;
   1080       1.6       eeh 
   1081      1.11       mrg 	NETBSD32TO64_UAP(domain);
   1082      1.11       mrg 	NETBSD32TO64_UAP(type);
   1083      1.11       mrg 	NETBSD32TO64_UAP(protocol);
   1084  1.90.2.2      yamt 	return (sys___socket30(l, &ua, retval));
   1085       1.1       mrg }
   1086       1.1       mrg 
   1087       1.1       mrg int
   1088      1.70   thorpej netbsd32_connect(l, v, retval)
   1089      1.70   thorpej 	struct lwp *l;
   1090       1.1       mrg 	void *v;
   1091       1.1       mrg 	register_t *retval;
   1092       1.1       mrg {
   1093      1.19       eeh 	struct netbsd32_connect_args /* {
   1094       1.1       mrg 		syscallarg(int) s;
   1095      1.10       mrg 		syscallarg(const netbsd32_sockaddrp_t) name;
   1096       1.1       mrg 		syscallarg(int) namelen;
   1097       1.1       mrg 	} */ *uap = v;
   1098       1.1       mrg 	struct sys_connect_args ua;
   1099       1.1       mrg 
   1100      1.11       mrg 	NETBSD32TO64_UAP(s);
   1101      1.11       mrg 	NETBSD32TOP_UAP(name, struct sockaddr);
   1102      1.11       mrg 	NETBSD32TO64_UAP(namelen);
   1103      1.70   thorpej 	return (sys_connect(l, &ua, retval));
   1104       1.1       mrg }
   1105       1.1       mrg 
   1106       1.6       eeh int
   1107      1.70   thorpej netbsd32_getpriority(l, v, retval)
   1108      1.70   thorpej 	struct lwp *l;
   1109       1.6       eeh 	void *v;
   1110       1.6       eeh 	register_t *retval;
   1111       1.6       eeh {
   1112      1.19       eeh 	struct netbsd32_getpriority_args /* {
   1113       1.6       eeh 		syscallarg(int) which;
   1114       1.6       eeh 		syscallarg(int) who;
   1115       1.6       eeh 	} */ *uap = v;
   1116       1.6       eeh 	struct sys_getpriority_args ua;
   1117       1.6       eeh 
   1118      1.11       mrg 	NETBSD32TO64_UAP(which);
   1119      1.11       mrg 	NETBSD32TO64_UAP(who);
   1120      1.70   thorpej 	return (sys_getpriority(l, &ua, retval));
   1121       1.6       eeh }
   1122       1.6       eeh 
   1123       1.1       mrg int
   1124      1.70   thorpej netbsd32_bind(l, v, retval)
   1125      1.70   thorpej 	struct lwp *l;
   1126       1.1       mrg 	void *v;
   1127       1.1       mrg 	register_t *retval;
   1128       1.1       mrg {
   1129      1.19       eeh 	struct netbsd32_bind_args /* {
   1130       1.1       mrg 		syscallarg(int) s;
   1131      1.10       mrg 		syscallarg(const netbsd32_sockaddrp_t) name;
   1132       1.1       mrg 		syscallarg(int) namelen;
   1133       1.1       mrg 	} */ *uap = v;
   1134       1.6       eeh 	struct sys_bind_args ua;
   1135       1.1       mrg 
   1136      1.11       mrg 	NETBSD32TO64_UAP(s);
   1137      1.11       mrg 	NETBSD32TOP_UAP(name, struct sockaddr);
   1138      1.11       mrg 	NETBSD32TO64_UAP(namelen);
   1139      1.70   thorpej 	return (sys_bind(l, &ua, retval));
   1140       1.1       mrg }
   1141       1.1       mrg 
   1142       1.1       mrg int
   1143      1.70   thorpej netbsd32_setsockopt(l, v, retval)
   1144      1.70   thorpej 	struct lwp *l;
   1145       1.1       mrg 	void *v;
   1146       1.1       mrg 	register_t *retval;
   1147       1.1       mrg {
   1148      1.19       eeh 	struct netbsd32_setsockopt_args /* {
   1149       1.1       mrg 		syscallarg(int) s;
   1150       1.1       mrg 		syscallarg(int) level;
   1151       1.1       mrg 		syscallarg(int) name;
   1152      1.10       mrg 		syscallarg(const netbsd32_voidp) val;
   1153       1.1       mrg 		syscallarg(int) valsize;
   1154       1.1       mrg 	} */ *uap = v;
   1155       1.1       mrg 	struct sys_setsockopt_args ua;
   1156       1.1       mrg 
   1157      1.11       mrg 	NETBSD32TO64_UAP(s);
   1158      1.11       mrg 	NETBSD32TO64_UAP(level);
   1159      1.11       mrg 	NETBSD32TO64_UAP(name);
   1160      1.11       mrg 	NETBSD32TOP_UAP(val, void);
   1161      1.11       mrg 	NETBSD32TO64_UAP(valsize);
   1162       1.6       eeh 	/* may be more efficient to do this inline. */
   1163      1.70   thorpej 	return (sys_setsockopt(l, &ua, retval));
   1164       1.1       mrg }
   1165       1.1       mrg 
   1166       1.1       mrg int
   1167      1.70   thorpej netbsd32_listen(l, v, retval)
   1168      1.70   thorpej 	struct lwp *l;
   1169       1.6       eeh 	void *v;
   1170       1.6       eeh 	register_t *retval;
   1171       1.6       eeh {
   1172      1.19       eeh 	struct netbsd32_listen_args /* {
   1173       1.6       eeh 		syscallarg(int) s;
   1174       1.6       eeh 		syscallarg(int) backlog;
   1175       1.6       eeh 	} */ *uap = v;
   1176       1.6       eeh 	struct sys_listen_args ua;
   1177       1.6       eeh 
   1178      1.11       mrg 	NETBSD32TO64_UAP(s);
   1179      1.11       mrg 	NETBSD32TO64_UAP(backlog);
   1180      1.70   thorpej 	return (sys_listen(l, &ua, retval));
   1181       1.6       eeh }
   1182       1.6       eeh 
   1183       1.6       eeh int
   1184      1.70   thorpej netbsd32_fchown(l, v, retval)
   1185      1.70   thorpej 	struct lwp *l;
   1186       1.1       mrg 	void *v;
   1187       1.1       mrg 	register_t *retval;
   1188       1.1       mrg {
   1189      1.57       mrg 	struct netbsd32_fchown_args /* {
   1190      1.57       mrg 		syscallarg(int) fd;
   1191      1.57       mrg 		syscallarg(uid_t) uid;
   1192      1.57       mrg 		syscallarg(gid_t) gid;
   1193       1.1       mrg 	} */ *uap = v;
   1194      1.57       mrg 	struct sys_fchown_args ua;
   1195       1.6       eeh 
   1196      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1197      1.11       mrg 	NETBSD32TO64_UAP(uid);
   1198      1.11       mrg 	NETBSD32TO64_UAP(gid);
   1199      1.70   thorpej 	return (sys_fchown(l, &ua, retval));
   1200       1.6       eeh }
   1201       1.6       eeh 
   1202       1.6       eeh int
   1203      1.70   thorpej netbsd32_fchmod(l, v, retval)
   1204      1.70   thorpej 	struct lwp *l;
   1205       1.6       eeh 	void *v;
   1206       1.6       eeh 	register_t *retval;
   1207       1.6       eeh {
   1208      1.19       eeh 	struct netbsd32_fchmod_args /* {
   1209       1.6       eeh 		syscallarg(int) fd;
   1210       1.6       eeh 		syscallarg(mode_t) mode;
   1211       1.6       eeh 	} */ *uap = v;
   1212       1.6       eeh 	struct sys_fchmod_args ua;
   1213       1.6       eeh 
   1214      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1215      1.11       mrg 	NETBSD32TO64_UAP(mode);
   1216      1.70   thorpej 	return (sys_fchmod(l, &ua, retval));
   1217       1.6       eeh }
   1218       1.6       eeh 
   1219       1.6       eeh int
   1220      1.70   thorpej netbsd32_setreuid(l, v, retval)
   1221      1.70   thorpej 	struct lwp *l;
   1222       1.6       eeh 	void *v;
   1223       1.6       eeh 	register_t *retval;
   1224       1.6       eeh {
   1225      1.19       eeh 	struct netbsd32_setreuid_args /* {
   1226       1.6       eeh 		syscallarg(uid_t) ruid;
   1227       1.6       eeh 		syscallarg(uid_t) euid;
   1228       1.6       eeh 	} */ *uap = v;
   1229       1.6       eeh 	struct sys_setreuid_args ua;
   1230       1.6       eeh 
   1231      1.11       mrg 	NETBSD32TO64_UAP(ruid);
   1232      1.11       mrg 	NETBSD32TO64_UAP(euid);
   1233      1.70   thorpej 	return (sys_setreuid(l, &ua, retval));
   1234       1.6       eeh }
   1235       1.1       mrg 
   1236       1.6       eeh int
   1237      1.70   thorpej netbsd32_setregid(l, v, retval)
   1238      1.70   thorpej 	struct lwp *l;
   1239       1.6       eeh 	void *v;
   1240       1.6       eeh 	register_t *retval;
   1241       1.6       eeh {
   1242      1.19       eeh 	struct netbsd32_setregid_args /* {
   1243       1.6       eeh 		syscallarg(gid_t) rgid;
   1244       1.6       eeh 		syscallarg(gid_t) egid;
   1245       1.6       eeh 	} */ *uap = v;
   1246       1.6       eeh 	struct sys_setregid_args ua;
   1247       1.6       eeh 
   1248      1.11       mrg 	NETBSD32TO64_UAP(rgid);
   1249      1.11       mrg 	NETBSD32TO64_UAP(egid);
   1250      1.70   thorpej 	return (sys_setregid(l, &ua, retval));
   1251       1.1       mrg }
   1252       1.1       mrg 
   1253       1.1       mrg int
   1254      1.70   thorpej netbsd32_getsockopt(l, v, retval)
   1255      1.70   thorpej 	struct lwp *l;
   1256       1.1       mrg 	void *v;
   1257       1.1       mrg 	register_t *retval;
   1258       1.1       mrg {
   1259      1.19       eeh 	struct netbsd32_getsockopt_args /* {
   1260       1.1       mrg 		syscallarg(int) s;
   1261       1.1       mrg 		syscallarg(int) level;
   1262       1.1       mrg 		syscallarg(int) name;
   1263      1.10       mrg 		syscallarg(netbsd32_voidp) val;
   1264      1.10       mrg 		syscallarg(netbsd32_intp) avalsize;
   1265       1.1       mrg 	} */ *uap = v;
   1266       1.1       mrg 	struct sys_getsockopt_args ua;
   1267       1.1       mrg 
   1268      1.11       mrg 	NETBSD32TO64_UAP(s);
   1269      1.11       mrg 	NETBSD32TO64_UAP(level);
   1270      1.11       mrg 	NETBSD32TO64_UAP(name);
   1271      1.11       mrg 	NETBSD32TOP_UAP(val, void);
   1272  1.90.2.1      yamt 	NETBSD32TOP_UAP(avalsize, socklen_t);
   1273      1.70   thorpej 	return (sys_getsockopt(l, &ua, retval));
   1274       1.1       mrg }
   1275       1.1       mrg 
   1276       1.1       mrg int
   1277      1.70   thorpej netbsd32_rename(l, v, retval)
   1278      1.70   thorpej 	struct lwp *l;
   1279       1.1       mrg 	void *v;
   1280       1.1       mrg 	register_t *retval;
   1281       1.1       mrg {
   1282      1.19       eeh 	struct netbsd32_rename_args /* {
   1283      1.10       mrg 		syscallarg(const netbsd32_charp) from;
   1284      1.10       mrg 		syscallarg(const netbsd32_charp) to;
   1285       1.1       mrg 	} */ *uap = v;
   1286       1.1       mrg 	struct sys_rename_args ua;
   1287       1.1       mrg 
   1288      1.20       eeh 	NETBSD32TOP_UAP(from, const char);
   1289      1.20       eeh 	NETBSD32TOP_UAP(to, const char)
   1290       1.6       eeh 
   1291      1.70   thorpej 	return (sys_rename(l, &ua, retval));
   1292       1.1       mrg }
   1293       1.1       mrg 
   1294       1.1       mrg int
   1295      1.70   thorpej netbsd32_flock(l, v, retval)
   1296      1.70   thorpej 	struct lwp *l;
   1297       1.6       eeh 	void *v;
   1298       1.6       eeh 	register_t *retval;
   1299       1.6       eeh {
   1300      1.19       eeh 	struct netbsd32_flock_args /* {
   1301       1.6       eeh 		syscallarg(int) fd;
   1302       1.6       eeh 		syscallarg(int) how;
   1303       1.6       eeh 	} */ *uap = v;
   1304       1.6       eeh 	struct sys_flock_args ua;
   1305       1.6       eeh 
   1306      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1307      1.11       mrg 	NETBSD32TO64_UAP(how)
   1308       1.6       eeh 
   1309      1.70   thorpej 	return (sys_flock(l, &ua, retval));
   1310       1.6       eeh }
   1311       1.6       eeh 
   1312       1.6       eeh int
   1313      1.70   thorpej netbsd32_mkfifo(l, v, retval)
   1314      1.70   thorpej 	struct lwp *l;
   1315       1.1       mrg 	void *v;
   1316       1.1       mrg 	register_t *retval;
   1317       1.1       mrg {
   1318      1.19       eeh 	struct netbsd32_mkfifo_args /* {
   1319      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   1320       1.1       mrg 		syscallarg(mode_t) mode;
   1321       1.1       mrg 	} */ *uap = v;
   1322       1.1       mrg 	struct sys_mkfifo_args ua;
   1323       1.1       mrg 
   1324      1.11       mrg 	NETBSD32TOP_UAP(path, const char)
   1325      1.11       mrg 	NETBSD32TO64_UAP(mode);
   1326      1.70   thorpej 	return (sys_mkfifo(l, &ua, retval));
   1327       1.1       mrg }
   1328       1.1       mrg 
   1329       1.1       mrg int
   1330      1.70   thorpej netbsd32_shutdown(l, v, retval)
   1331      1.70   thorpej 	struct lwp *l;
   1332       1.6       eeh 	void *v;
   1333       1.6       eeh 	register_t *retval;
   1334       1.6       eeh {
   1335      1.19       eeh 	struct netbsd32_shutdown_args /* {
   1336       1.6       eeh 		syscallarg(int) s;
   1337       1.6       eeh 		syscallarg(int) how;
   1338       1.6       eeh 	} */ *uap = v;
   1339       1.6       eeh 	struct sys_shutdown_args ua;
   1340       1.6       eeh 
   1341      1.11       mrg 	NETBSD32TO64_UAP(s)
   1342      1.11       mrg 	NETBSD32TO64_UAP(how);
   1343      1.70   thorpej 	return (sys_shutdown(l, &ua, retval));
   1344       1.6       eeh }
   1345       1.6       eeh 
   1346       1.6       eeh int
   1347      1.70   thorpej netbsd32_socketpair(l, v, retval)
   1348      1.70   thorpej 	struct lwp *l;
   1349       1.6       eeh 	void *v;
   1350       1.6       eeh 	register_t *retval;
   1351       1.6       eeh {
   1352      1.19       eeh 	struct netbsd32_socketpair_args /* {
   1353       1.6       eeh 		syscallarg(int) domain;
   1354       1.6       eeh 		syscallarg(int) type;
   1355       1.6       eeh 		syscallarg(int) protocol;
   1356      1.10       mrg 		syscallarg(netbsd32_intp) rsv;
   1357       1.6       eeh 	} */ *uap = v;
   1358       1.6       eeh 	struct sys_socketpair_args ua;
   1359       1.6       eeh 
   1360      1.11       mrg 	NETBSD32TO64_UAP(domain);
   1361      1.11       mrg 	NETBSD32TO64_UAP(type);
   1362      1.11       mrg 	NETBSD32TO64_UAP(protocol);
   1363      1.11       mrg 	NETBSD32TOP_UAP(rsv, int);
   1364       1.6       eeh 	/* Since we're just copying out two `int's we can do this */
   1365      1.70   thorpej 	return (sys_socketpair(l, &ua, retval));
   1366       1.6       eeh }
   1367       1.6       eeh 
   1368       1.6       eeh int
   1369      1.70   thorpej netbsd32_mkdir(l, v, retval)
   1370      1.70   thorpej 	struct lwp *l;
   1371       1.1       mrg 	void *v;
   1372       1.1       mrg 	register_t *retval;
   1373       1.1       mrg {
   1374      1.19       eeh 	struct netbsd32_mkdir_args /* {
   1375      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   1376       1.1       mrg 		syscallarg(mode_t) mode;
   1377       1.1       mrg 	} */ *uap = v;
   1378       1.1       mrg 	struct sys_mkdir_args ua;
   1379       1.1       mrg 
   1380      1.11       mrg 	NETBSD32TOP_UAP(path, const char)
   1381      1.11       mrg 	NETBSD32TO64_UAP(mode);
   1382      1.70   thorpej 	return (sys_mkdir(l, &ua, retval));
   1383       1.1       mrg }
   1384       1.1       mrg 
   1385       1.1       mrg int
   1386      1.70   thorpej netbsd32_rmdir(l, v, retval)
   1387      1.70   thorpej 	struct lwp *l;
   1388       1.1       mrg 	void *v;
   1389       1.1       mrg 	register_t *retval;
   1390       1.1       mrg {
   1391      1.19       eeh 	struct netbsd32_rmdir_args /* {
   1392      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   1393       1.1       mrg 	} */ *uap = v;
   1394       1.1       mrg 	struct sys_rmdir_args ua;
   1395       1.1       mrg 
   1396      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   1397      1.70   thorpej 	return (sys_rmdir(l, &ua, retval));
   1398       1.1       mrg }
   1399       1.1       mrg 
   1400       1.1       mrg int
   1401      1.70   thorpej netbsd32_quotactl(l, v, retval)
   1402      1.70   thorpej 	struct lwp *l;
   1403       1.1       mrg 	void *v;
   1404       1.1       mrg 	register_t *retval;
   1405       1.1       mrg {
   1406      1.19       eeh 	struct netbsd32_quotactl_args /* {
   1407      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   1408       1.1       mrg 		syscallarg(int) cmd;
   1409       1.1       mrg 		syscallarg(int) uid;
   1410      1.10       mrg 		syscallarg(netbsd32_caddr_t) arg;
   1411       1.1       mrg 	} */ *uap = v;
   1412       1.1       mrg 	struct sys_quotactl_args ua;
   1413       1.1       mrg 
   1414      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   1415      1.11       mrg 	NETBSD32TO64_UAP(cmd);
   1416      1.11       mrg 	NETBSD32TO64_UAP(uid);
   1417  1.90.2.4      yamt 	NETBSD32TOP_UAP(arg, void *);
   1418      1.70   thorpej 	return (sys_quotactl(l, &ua, retval));
   1419       1.1       mrg }
   1420       1.1       mrg 
   1421       1.6       eeh #if defined(NFS) || defined(NFSSERVER)
   1422       1.1       mrg int
   1423      1.70   thorpej netbsd32_nfssvc(l, v, retval)
   1424      1.70   thorpej 	struct lwp *l;
   1425       1.1       mrg 	void *v;
   1426       1.1       mrg 	register_t *retval;
   1427       1.1       mrg {
   1428       1.6       eeh #if 0
   1429      1.19       eeh 	struct netbsd32_nfssvc_args /* {
   1430       1.1       mrg 		syscallarg(int) flag;
   1431      1.10       mrg 		syscallarg(netbsd32_voidp) argp;
   1432       1.1       mrg 	} */ *uap = v;
   1433       1.1       mrg 	struct sys_nfssvc_args ua;
   1434       1.1       mrg 
   1435      1.11       mrg 	NETBSD32TO64_UAP(flag);
   1436      1.11       mrg 	NETBSD32TOP_UAP(argp, void);
   1437      1.70   thorpej 	return (sys_nfssvc(l, &ua, retval));
   1438       1.6       eeh #else
   1439       1.6       eeh 	/* Why would we want to support a 32-bit nfsd? */
   1440       1.6       eeh 	return (ENOSYS);
   1441       1.6       eeh #endif
   1442       1.1       mrg }
   1443       1.6       eeh #endif
   1444       1.1       mrg 
   1445       1.1       mrg int
   1446  1.90.2.2      yamt netbsd32___getfh30(l, v, retval)
   1447      1.70   thorpej 	struct lwp *l;
   1448       1.1       mrg 	void *v;
   1449       1.1       mrg 	register_t *retval;
   1450       1.1       mrg {
   1451  1.90.2.2      yamt 	struct netbsd32___getfh30_args /* {
   1452      1.10       mrg 		syscallarg(const netbsd32_charp) fname;
   1453      1.10       mrg 		syscallarg(netbsd32_fhandlep_t) fhp;
   1454  1.90.2.2      yamt 		syscallarg(netbsd32_size_tp) fh_size;
   1455       1.1       mrg 	} */ *uap = v;
   1456  1.90.2.2      yamt 	struct vnode *vp;
   1457  1.90.2.2      yamt 	fhandle_t *fh;
   1458  1.90.2.2      yamt 	int error;
   1459  1.90.2.2      yamt 	struct nameidata nd;
   1460  1.90.2.2      yamt 	netbsd32_size_t sz32;
   1461  1.90.2.2      yamt 	size_t sz;
   1462  1.90.2.2      yamt 
   1463  1.90.2.2      yamt 	/*
   1464  1.90.2.2      yamt 	 * Must be super user
   1465  1.90.2.2      yamt 	 */
   1466  1.90.2.2      yamt 	error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_FILEHANDLE,
   1467  1.90.2.2      yamt 	    0, NULL, NULL, NULL);
   1468  1.90.2.2      yamt 	if (error)
   1469  1.90.2.2      yamt 		return (error);
   1470  1.90.2.2      yamt 	fh = NULL;
   1471  1.90.2.4      yamt 	NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | TRYEMULROOT, UIO_USERSPACE,
   1472  1.90.2.4      yamt 	    SCARG_P32(uap, fname), l);
   1473  1.90.2.2      yamt 	error = namei(&nd);
   1474  1.90.2.2      yamt 	if (error)
   1475  1.90.2.2      yamt 		return (error);
   1476  1.90.2.2      yamt 	vp = nd.ni_vp;
   1477  1.90.2.4      yamt 	error = copyin(SCARG_P32(uap, fh_size), &sz32,
   1478  1.90.2.2      yamt 	    sizeof(netbsd32_size_t));
   1479  1.90.2.2      yamt 	if (!error) {
   1480  1.90.2.2      yamt 		fh = malloc(sz32, M_TEMP, M_WAITOK);
   1481  1.90.2.2      yamt 		if (fh == NULL)
   1482  1.90.2.2      yamt 			return EINVAL;
   1483  1.90.2.2      yamt 		sz = sz32;
   1484  1.90.2.2      yamt 		error = vfs_composefh(vp, fh, &sz);
   1485  1.90.2.2      yamt 		sz32 = sz;
   1486  1.90.2.2      yamt 	}
   1487  1.90.2.2      yamt 	vput(vp);
   1488  1.90.2.2      yamt 	if (error == E2BIG)
   1489  1.90.2.4      yamt 		copyout(&sz, SCARG_P32(uap, fh_size), sizeof(size_t));
   1490  1.90.2.2      yamt 	if (error == 0) {
   1491  1.90.2.4      yamt 		error = copyout(&sz32, SCARG_P32(uap, fh_size),
   1492  1.90.2.2      yamt 		    sizeof(netbsd32_size_t));
   1493  1.90.2.2      yamt 		if (!error)
   1494  1.90.2.4      yamt 			error = copyout(fh, SCARG_P32(uap, fhp), sz);
   1495  1.90.2.2      yamt 	}
   1496  1.90.2.2      yamt 	free(fh, M_TEMP);
   1497  1.90.2.2      yamt 	return (error);
   1498       1.1       mrg }
   1499       1.1       mrg 
   1500       1.1       mrg int
   1501      1.70   thorpej netbsd32_pread(l, v, retval)
   1502      1.70   thorpej 	struct lwp *l;
   1503       1.1       mrg 	void *v;
   1504       1.1       mrg 	register_t *retval;
   1505       1.1       mrg {
   1506      1.19       eeh 	struct netbsd32_pread_args /* {
   1507       1.1       mrg 		syscallarg(int) fd;
   1508      1.10       mrg 		syscallarg(netbsd32_voidp) buf;
   1509      1.10       mrg 		syscallarg(netbsd32_size_t) nbyte;
   1510       1.1       mrg 		syscallarg(int) pad;
   1511       1.1       mrg 		syscallarg(off_t) offset;
   1512       1.1       mrg 	} */ *uap = v;
   1513       1.1       mrg 	struct sys_pread_args ua;
   1514       1.1       mrg 	ssize_t rt;
   1515       1.1       mrg 	int error;
   1516       1.1       mrg 
   1517      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1518      1.11       mrg 	NETBSD32TOP_UAP(buf, void);
   1519      1.11       mrg 	NETBSD32TOX_UAP(nbyte, size_t);
   1520      1.11       mrg 	NETBSD32TO64_UAP(pad);
   1521      1.11       mrg 	NETBSD32TO64_UAP(offset);
   1522      1.70   thorpej 	error = sys_pread(l, &ua, (register_t *)&rt);
   1523      1.32       mrg 	*retval = rt;
   1524       1.1       mrg 	return (error);
   1525       1.1       mrg }
   1526       1.1       mrg 
   1527       1.1       mrg int
   1528      1.70   thorpej netbsd32_pwrite(l, v, retval)
   1529      1.70   thorpej 	struct lwp *l;
   1530       1.1       mrg 	void *v;
   1531       1.1       mrg 	register_t *retval;
   1532       1.1       mrg {
   1533      1.19       eeh 	struct netbsd32_pwrite_args /* {
   1534       1.1       mrg 		syscallarg(int) fd;
   1535      1.10       mrg 		syscallarg(const netbsd32_voidp) buf;
   1536      1.10       mrg 		syscallarg(netbsd32_size_t) nbyte;
   1537       1.1       mrg 		syscallarg(int) pad;
   1538       1.1       mrg 		syscallarg(off_t) offset;
   1539       1.1       mrg 	} */ *uap = v;
   1540       1.1       mrg 	struct sys_pwrite_args ua;
   1541       1.1       mrg 	ssize_t rt;
   1542       1.1       mrg 	int error;
   1543       1.1       mrg 
   1544      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1545      1.11       mrg 	NETBSD32TOP_UAP(buf, void);
   1546      1.11       mrg 	NETBSD32TOX_UAP(nbyte, size_t);
   1547      1.11       mrg 	NETBSD32TO64_UAP(pad);
   1548      1.11       mrg 	NETBSD32TO64_UAP(offset);
   1549      1.70   thorpej 	error = sys_pwrite(l, &ua, (register_t *)&rt);
   1550      1.32       mrg 	*retval = rt;
   1551       1.1       mrg 	return (error);
   1552       1.1       mrg }
   1553       1.1       mrg 
   1554       1.6       eeh int
   1555      1.70   thorpej netbsd32_setgid(l, v, retval)
   1556      1.70   thorpej 	struct lwp *l;
   1557       1.6       eeh 	void *v;
   1558       1.6       eeh 	register_t *retval;
   1559       1.6       eeh {
   1560      1.19       eeh 	struct netbsd32_setgid_args /* {
   1561       1.6       eeh 		syscallarg(gid_t) gid;
   1562       1.6       eeh 	} */ *uap = v;
   1563       1.6       eeh 	struct sys_setgid_args ua;
   1564       1.6       eeh 
   1565      1.11       mrg 	NETBSD32TO64_UAP(gid);
   1566      1.70   thorpej 	return (sys_setgid(l, v, retval));
   1567       1.6       eeh }
   1568       1.6       eeh 
   1569       1.6       eeh int
   1570      1.70   thorpej netbsd32_setegid(l, v, retval)
   1571      1.70   thorpej 	struct lwp *l;
   1572       1.6       eeh 	void *v;
   1573       1.6       eeh 	register_t *retval;
   1574       1.6       eeh {
   1575      1.19       eeh 	struct netbsd32_setegid_args /* {
   1576       1.6       eeh 		syscallarg(gid_t) egid;
   1577       1.6       eeh 	} */ *uap = v;
   1578       1.6       eeh 	struct sys_setegid_args ua;
   1579       1.6       eeh 
   1580      1.11       mrg 	NETBSD32TO64_UAP(egid);
   1581      1.70   thorpej 	return (sys_setegid(l, v, retval));
   1582       1.6       eeh }
   1583       1.6       eeh 
   1584       1.6       eeh int
   1585      1.70   thorpej netbsd32_seteuid(l, v, retval)
   1586      1.70   thorpej 	struct lwp *l;
   1587       1.6       eeh 	void *v;
   1588       1.6       eeh 	register_t *retval;
   1589       1.6       eeh {
   1590      1.19       eeh 	struct netbsd32_seteuid_args /* {
   1591       1.6       eeh 		syscallarg(gid_t) euid;
   1592       1.6       eeh 	} */ *uap = v;
   1593       1.6       eeh 	struct sys_seteuid_args ua;
   1594       1.6       eeh 
   1595      1.11       mrg 	NETBSD32TO64_UAP(euid);
   1596      1.70   thorpej 	return (sys_seteuid(l, v, retval));
   1597       1.1       mrg }
   1598       1.1       mrg 
   1599       1.6       eeh #ifdef LFS
   1600       1.1       mrg int
   1601      1.70   thorpej netbsd32_sys_lfs_bmapv(l, v, retval)
   1602      1.70   thorpej 	struct lwp *l;
   1603       1.1       mrg 	void *v;
   1604       1.1       mrg 	register_t *retval;
   1605       1.1       mrg {
   1606       1.1       mrg 
   1607       1.1       mrg 	return (ENOSYS);	/* XXX */
   1608       1.1       mrg }
   1609       1.1       mrg 
   1610       1.1       mrg int
   1611      1.70   thorpej netbsd32_sys_lfs_markv(l, v, retval)
   1612      1.70   thorpej 	struct lwp *l;
   1613       1.1       mrg 	void *v;
   1614       1.1       mrg 	register_t *retval;
   1615       1.1       mrg {
   1616       1.1       mrg 
   1617       1.1       mrg 	return (ENOSYS);	/* XXX */
   1618       1.1       mrg }
   1619       1.1       mrg 
   1620       1.1       mrg int
   1621      1.70   thorpej netbsd32_sys_lfs_segclean(l, v, retval)
   1622      1.70   thorpej 	struct lwp *l;
   1623       1.1       mrg 	void *v;
   1624       1.1       mrg 	register_t *retval;
   1625       1.1       mrg {
   1626      1.20       eeh 
   1627       1.1       mrg 	return (ENOSYS);	/* XXX */
   1628       1.1       mrg }
   1629       1.1       mrg 
   1630       1.1       mrg int
   1631      1.70   thorpej netbsd32_sys_lfs_segwait(l, v, retval)
   1632      1.70   thorpej 	struct lwp *l;
   1633       1.1       mrg 	void *v;
   1634       1.1       mrg 	register_t *retval;
   1635       1.1       mrg {
   1636      1.20       eeh 
   1637       1.1       mrg 	return (ENOSYS);	/* XXX */
   1638       1.1       mrg }
   1639       1.6       eeh #endif
   1640       1.1       mrg 
   1641       1.1       mrg int
   1642      1.70   thorpej netbsd32_pathconf(l, v, retval)
   1643      1.70   thorpej 	struct lwp *l;
   1644       1.1       mrg 	void *v;
   1645       1.1       mrg 	register_t *retval;
   1646       1.1       mrg {
   1647      1.19       eeh 	struct netbsd32_pathconf_args /* {
   1648       1.1       mrg 		syscallarg(int) fd;
   1649       1.1       mrg 		syscallarg(int) name;
   1650       1.1       mrg 	} */ *uap = v;
   1651       1.1       mrg 	struct sys_pathconf_args ua;
   1652       1.1       mrg 	long rt;
   1653       1.1       mrg 	int error;
   1654       1.1       mrg 
   1655      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   1656      1.11       mrg 	NETBSD32TO64_UAP(name);
   1657      1.70   thorpej 	error = sys_pathconf(l, &ua, (register_t *)&rt);
   1658      1.32       mrg 	*retval = rt;
   1659       1.1       mrg 	return (error);
   1660       1.1       mrg }
   1661       1.1       mrg 
   1662       1.1       mrg int
   1663      1.70   thorpej netbsd32_fpathconf(l, v, retval)
   1664      1.70   thorpej 	struct lwp *l;
   1665       1.1       mrg 	void *v;
   1666       1.1       mrg 	register_t *retval;
   1667       1.1       mrg {
   1668      1.19       eeh 	struct netbsd32_fpathconf_args /* {
   1669       1.1       mrg 		syscallarg(int) fd;
   1670       1.1       mrg 		syscallarg(int) name;
   1671       1.1       mrg 	} */ *uap = v;
   1672       1.1       mrg 	struct sys_fpathconf_args ua;
   1673       1.1       mrg 	long rt;
   1674       1.1       mrg 	int error;
   1675       1.1       mrg 
   1676      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1677      1.11       mrg 	NETBSD32TO64_UAP(name);
   1678      1.70   thorpej 	error = sys_fpathconf(l, &ua, (register_t *)&rt);
   1679      1.32       mrg 	*retval = rt;
   1680       1.1       mrg 	return (error);
   1681       1.1       mrg }
   1682       1.1       mrg 
   1683       1.1       mrg int
   1684      1.70   thorpej netbsd32_getrlimit(l, v, retval)
   1685      1.70   thorpej 	struct lwp *l;
   1686       1.1       mrg 	void *v;
   1687       1.1       mrg 	register_t *retval;
   1688       1.1       mrg {
   1689      1.19       eeh 	struct netbsd32_getrlimit_args /* {
   1690       1.1       mrg 		syscallarg(int) which;
   1691      1.10       mrg 		syscallarg(netbsd32_rlimitp_t) rlp;
   1692       1.1       mrg 	} */ *uap = v;
   1693       1.6       eeh 	int which = SCARG(uap, which);
   1694       1.1       mrg 
   1695       1.6       eeh 	if ((u_int)which >= RLIM_NLIMITS)
   1696       1.6       eeh 		return (EINVAL);
   1697      1.70   thorpej 	return (copyout(&l->l_proc->p_rlimit[which],
   1698  1.90.2.4      yamt 	    SCARG_P32(uap, rlp), sizeof(struct rlimit)));
   1699       1.1       mrg }
   1700       1.1       mrg 
   1701       1.1       mrg int
   1702      1.70   thorpej netbsd32_setrlimit(l, v, retval)
   1703      1.70   thorpej 	struct lwp *l;
   1704       1.1       mrg 	void *v;
   1705       1.1       mrg 	register_t *retval;
   1706       1.1       mrg {
   1707      1.19       eeh 	struct netbsd32_setrlimit_args /* {
   1708       1.1       mrg 		syscallarg(int) which;
   1709      1.10       mrg 		syscallarg(const netbsd32_rlimitp_t) rlp;
   1710       1.1       mrg 	} */ *uap = v;
   1711       1.6       eeh 		int which = SCARG(uap, which);
   1712       1.6       eeh 	struct rlimit alim;
   1713       1.6       eeh 	int error;
   1714       1.1       mrg 
   1715  1.90.2.4      yamt 	error = copyin(SCARG_P32(uap, rlp), &alim, sizeof(struct rlimit));
   1716       1.6       eeh 	if (error)
   1717       1.6       eeh 		return (error);
   1718      1.88      fvdl 
   1719      1.88      fvdl 	switch (which) {
   1720      1.88      fvdl 	case RLIMIT_DATA:
   1721  1.90.2.2      yamt 		if (LIMITCHECK(alim.rlim_cur, MAXDSIZ32))
   1722      1.88      fvdl 			alim.rlim_cur = MAXDSIZ32;
   1723  1.90.2.2      yamt 		if (LIMITCHECK(alim.rlim_max, MAXDSIZ32))
   1724      1.88      fvdl 			alim.rlim_max = MAXDSIZ32;
   1725      1.88      fvdl 		break;
   1726      1.88      fvdl 
   1727      1.88      fvdl 	case RLIMIT_STACK:
   1728  1.90.2.2      yamt 		if (LIMITCHECK(alim.rlim_cur, MAXSSIZ32))
   1729      1.88      fvdl 			alim.rlim_cur = MAXSSIZ32;
   1730  1.90.2.2      yamt 		if (LIMITCHECK(alim.rlim_max, MAXSSIZ32))
   1731      1.88      fvdl 			alim.rlim_max = MAXSSIZ32;
   1732      1.88      fvdl 	default:
   1733      1.88      fvdl 		break;
   1734      1.88      fvdl 	}
   1735      1.88      fvdl 
   1736  1.90.2.2      yamt 	return (dosetrlimit(l, l->l_proc, which, &alim));
   1737       1.1       mrg }
   1738       1.1       mrg 
   1739       1.1       mrg int
   1740      1.70   thorpej netbsd32_mmap(l, v, retval)
   1741      1.70   thorpej 	struct lwp *l;
   1742       1.1       mrg 	void *v;
   1743       1.1       mrg 	register_t *retval;
   1744       1.1       mrg {
   1745      1.19       eeh 	struct netbsd32_mmap_args /* {
   1746      1.10       mrg 		syscallarg(netbsd32_voidp) addr;
   1747      1.10       mrg 		syscallarg(netbsd32_size_t) len;
   1748       1.1       mrg 		syscallarg(int) prot;
   1749       1.1       mrg 		syscallarg(int) flags;
   1750       1.1       mrg 		syscallarg(int) fd;
   1751      1.10       mrg 		syscallarg(netbsd32_long) pad;
   1752       1.1       mrg 		syscallarg(off_t) pos;
   1753       1.1       mrg 	} */ *uap = v;
   1754       1.1       mrg 	struct sys_mmap_args ua;
   1755       1.1       mrg 	int error;
   1756       1.1       mrg 
   1757      1.11       mrg 	NETBSD32TOP_UAP(addr, void);
   1758      1.11       mrg 	NETBSD32TOX_UAP(len, size_t);
   1759      1.11       mrg 	NETBSD32TO64_UAP(prot);
   1760      1.11       mrg 	NETBSD32TO64_UAP(flags);
   1761      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1762      1.11       mrg 	NETBSD32TOX_UAP(pad, long);
   1763      1.11       mrg 	NETBSD32TOX_UAP(pos, off_t);
   1764      1.70   thorpej 	error = sys_mmap(l, &ua, retval);
   1765      1.69       scw 	if ((u_long)*retval > (u_long)UINT_MAX) {
   1766      1.69       scw 		printf("netbsd32_mmap: retval out of range: 0x%lx",
   1767      1.69       scw 		    (u_long)*retval);
   1768      1.55       eeh 		/* Should try to recover and return an error here. */
   1769      1.55       eeh 	}
   1770       1.1       mrg 	return (error);
   1771       1.1       mrg }
   1772       1.1       mrg 
   1773       1.1       mrg int
   1774      1.70   thorpej netbsd32_lseek(l, v, retval)
   1775      1.70   thorpej 	struct lwp *l;
   1776       1.6       eeh 	void *v;
   1777       1.6       eeh 	register_t *retval;
   1778       1.6       eeh {
   1779      1.19       eeh 	struct netbsd32_lseek_args /* {
   1780       1.6       eeh 		syscallarg(int) fd;
   1781       1.6       eeh 		syscallarg(int) pad;
   1782       1.6       eeh 		syscallarg(off_t) offset;
   1783       1.6       eeh 		syscallarg(int) whence;
   1784       1.6       eeh 	} */ *uap = v;
   1785       1.6       eeh 	struct sys_lseek_args ua;
   1786  1.90.2.1      yamt 	int rv;
   1787       1.6       eeh 
   1788      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1789      1.11       mrg 	NETBSD32TO64_UAP(pad);
   1790      1.11       mrg 	NETBSD32TO64_UAP(offset);
   1791      1.11       mrg 	NETBSD32TO64_UAP(whence);
   1792  1.90.2.1      yamt 	rv = sys_lseek(l, &ua, retval);
   1793  1.90.2.1      yamt #ifdef NETBSD32_OFF_T_RETURN
   1794  1.90.2.1      yamt 	if (rv == 0)
   1795  1.90.2.1      yamt 		NETBSD32_OFF_T_RETURN(retval);
   1796  1.90.2.1      yamt #endif
   1797  1.90.2.1      yamt 	return rv;
   1798       1.6       eeh }
   1799       1.6       eeh 
   1800       1.6       eeh int
   1801      1.70   thorpej netbsd32_truncate(l, v, retval)
   1802      1.70   thorpej 	struct lwp *l;
   1803       1.1       mrg 	void *v;
   1804       1.1       mrg 	register_t *retval;
   1805       1.1       mrg {
   1806      1.19       eeh 	struct netbsd32_truncate_args /* {
   1807      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   1808       1.1       mrg 		syscallarg(int) pad;
   1809       1.1       mrg 		syscallarg(off_t) length;
   1810       1.1       mrg 	} */ *uap = v;
   1811       1.1       mrg 	struct sys_truncate_args ua;
   1812       1.1       mrg 
   1813      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   1814      1.11       mrg 	NETBSD32TO64_UAP(pad);
   1815      1.11       mrg 	NETBSD32TO64_UAP(length);
   1816      1.70   thorpej 	return (sys_truncate(l, &ua, retval));
   1817       1.1       mrg }
   1818       1.1       mrg 
   1819       1.1       mrg int
   1820      1.70   thorpej netbsd32_ftruncate(l, v, retval)
   1821      1.70   thorpej 	struct lwp *l;
   1822       1.6       eeh 	void *v;
   1823       1.6       eeh 	register_t *retval;
   1824       1.6       eeh {
   1825      1.19       eeh 	struct netbsd32_ftruncate_args /* {
   1826       1.6       eeh 		syscallarg(int) fd;
   1827       1.6       eeh 		syscallarg(int) pad;
   1828       1.6       eeh 		syscallarg(off_t) length;
   1829       1.6       eeh 	} */ *uap = v;
   1830       1.6       eeh 	struct sys_ftruncate_args ua;
   1831       1.6       eeh 
   1832      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1833      1.11       mrg 	NETBSD32TO64_UAP(pad);
   1834      1.11       mrg 	NETBSD32TO64_UAP(length);
   1835      1.70   thorpej 	return (sys_ftruncate(l, &ua, retval));
   1836       1.6       eeh }
   1837       1.6       eeh 
   1838      1.53       mrg int
   1839      1.70   thorpej netbsd32_mlock(l, v, retval)
   1840      1.70   thorpej 	struct lwp *l;
   1841      1.57       mrg 	void *v;
   1842      1.57       mrg 	register_t *retval;
   1843      1.53       mrg {
   1844      1.57       mrg 	struct netbsd32_mlock_args /* {
   1845      1.57       mrg 		syscallarg(const netbsd32_voidp) addr;
   1846      1.57       mrg 		syscallarg(netbsd32_size_t) len;
   1847      1.57       mrg 	} */ *uap = v;
   1848      1.57       mrg 	struct sys_mlock_args ua;
   1849      1.53       mrg 
   1850      1.57       mrg 	NETBSD32TOP_UAP(addr, const void);
   1851      1.57       mrg 	NETBSD32TO64_UAP(len);
   1852      1.70   thorpej 	return (sys_mlock(l, &ua, retval));
   1853      1.53       mrg }
   1854      1.53       mrg 
   1855       1.6       eeh int
   1856      1.70   thorpej netbsd32_munlock(l, v, retval)
   1857      1.70   thorpej 	struct lwp *l;
   1858       1.1       mrg 	void *v;
   1859       1.1       mrg 	register_t *retval;
   1860       1.1       mrg {
   1861      1.57       mrg 	struct netbsd32_munlock_args /* {
   1862      1.57       mrg 		syscallarg(const netbsd32_voidp) addr;
   1863      1.57       mrg 		syscallarg(netbsd32_size_t) len;
   1864       1.1       mrg 	} */ *uap = v;
   1865       1.1       mrg 	struct sys_munlock_args ua;
   1866       1.1       mrg 
   1867      1.11       mrg 	NETBSD32TOP_UAP(addr, const void);
   1868      1.11       mrg 	NETBSD32TO64_UAP(len);
   1869      1.70   thorpej 	return (sys_munlock(l, &ua, retval));
   1870       1.1       mrg }
   1871       1.1       mrg 
   1872       1.1       mrg int
   1873      1.70   thorpej netbsd32_undelete(l, v, retval)
   1874      1.70   thorpej 	struct lwp *l;
   1875       1.1       mrg 	void *v;
   1876       1.1       mrg 	register_t *retval;
   1877       1.1       mrg {
   1878      1.19       eeh 	struct netbsd32_undelete_args /* {
   1879      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   1880       1.1       mrg 	} */ *uap = v;
   1881       1.1       mrg 	struct sys_undelete_args ua;
   1882       1.1       mrg 
   1883      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   1884      1.70   thorpej 	return (sys_undelete(l, &ua, retval));
   1885       1.1       mrg }
   1886       1.1       mrg 
   1887       1.6       eeh int
   1888      1.70   thorpej netbsd32_getpgid(l, v, retval)
   1889      1.70   thorpej 	struct lwp *l;
   1890       1.6       eeh 	void *v;
   1891       1.6       eeh 	register_t *retval;
   1892       1.6       eeh {
   1893      1.19       eeh 	struct netbsd32_getpgid_args /* {
   1894       1.6       eeh 		syscallarg(pid_t) pid;
   1895       1.6       eeh 	} */ *uap = v;
   1896       1.6       eeh 	struct sys_getpgid_args ua;
   1897       1.1       mrg 
   1898      1.11       mrg 	NETBSD32TO64_UAP(pid);
   1899      1.70   thorpej 	return (sys_getpgid(l, &ua, retval));
   1900       1.1       mrg }
   1901       1.1       mrg 
   1902       1.1       mrg int
   1903      1.70   thorpej netbsd32_reboot(l, v, retval)
   1904      1.70   thorpej 	struct lwp *l;
   1905       1.1       mrg 	void *v;
   1906       1.1       mrg 	register_t *retval;
   1907       1.1       mrg {
   1908      1.19       eeh 	struct netbsd32_reboot_args /* {
   1909       1.1       mrg 		syscallarg(int) opt;
   1910      1.10       mrg 		syscallarg(netbsd32_charp) bootstr;
   1911       1.1       mrg 	} */ *uap = v;
   1912       1.1       mrg 	struct sys_reboot_args ua;
   1913       1.1       mrg 
   1914      1.11       mrg 	NETBSD32TO64_UAP(opt);
   1915      1.11       mrg 	NETBSD32TOP_UAP(bootstr, char);
   1916      1.70   thorpej 	return (sys_reboot(l, &ua, retval));
   1917       1.1       mrg }
   1918       1.1       mrg 
   1919  1.90.2.1      yamt #include <sys/poll.h>
   1920       1.1       mrg int
   1921      1.70   thorpej netbsd32_poll(l, v, retval)
   1922      1.70   thorpej 	struct lwp *l;
   1923       1.1       mrg 	void *v;
   1924       1.1       mrg 	register_t *retval;
   1925       1.1       mrg {
   1926      1.19       eeh 	struct netbsd32_poll_args /* {
   1927      1.10       mrg 		syscallarg(netbsd32_pollfdp_t) fds;
   1928       1.1       mrg 		syscallarg(u_int) nfds;
   1929       1.1       mrg 		syscallarg(int) timeout;
   1930       1.1       mrg 	} */ *uap = v;
   1931       1.1       mrg 	struct sys_poll_args ua;
   1932       1.1       mrg 
   1933      1.11       mrg 	NETBSD32TOP_UAP(fds, struct pollfd);
   1934      1.11       mrg 	NETBSD32TO64_UAP(nfds);
   1935      1.11       mrg 	NETBSD32TO64_UAP(timeout);
   1936  1.90.2.1      yamt 
   1937      1.70   thorpej 	return (sys_poll(l, &ua, retval));
   1938       1.1       mrg }
   1939       1.1       mrg 
   1940       1.6       eeh int
   1941      1.70   thorpej netbsd32_fdatasync(l, v, retval)
   1942      1.70   thorpej 	struct lwp *l;
   1943       1.6       eeh 	void *v;
   1944       1.6       eeh 	register_t *retval;
   1945       1.6       eeh {
   1946      1.19       eeh 	struct netbsd32_fdatasync_args /* {
   1947       1.6       eeh 		syscallarg(int) fd;
   1948       1.6       eeh 	} */ *uap = v;
   1949       1.6       eeh 	struct sys_fdatasync_args ua;
   1950       1.6       eeh 
   1951      1.11       mrg 	NETBSD32TO64_UAP(fd);
   1952      1.70   thorpej 	return (sys_fdatasync(l, &ua, retval));
   1953       1.1       mrg }
   1954       1.1       mrg 
   1955       1.1       mrg int
   1956      1.70   thorpej netbsd32___posix_rename(l, v, retval)
   1957      1.70   thorpej 	struct lwp *l;
   1958       1.1       mrg 	void *v;
   1959       1.1       mrg 	register_t *retval;
   1960       1.1       mrg {
   1961      1.19       eeh 	struct netbsd32___posix_rename_args /* {
   1962      1.10       mrg 		syscallarg(const netbsd32_charp) from;
   1963      1.10       mrg 		syscallarg(const netbsd32_charp) to;
   1964       1.1       mrg 	} */ *uap = v;
   1965       1.1       mrg 	struct sys___posix_rename_args ua;
   1966       1.1       mrg 
   1967      1.20       eeh 	NETBSD32TOP_UAP(from, const char);
   1968      1.20       eeh 	NETBSD32TOP_UAP(to, const char);
   1969      1.70   thorpej 	return (sys___posix_rename(l, &ua, retval));
   1970       1.1       mrg }
   1971       1.1       mrg 
   1972       1.1       mrg int
   1973      1.70   thorpej netbsd32_swapctl(l, v, retval)
   1974      1.70   thorpej 	struct lwp *l;
   1975       1.1       mrg 	void *v;
   1976       1.1       mrg 	register_t *retval;
   1977       1.1       mrg {
   1978      1.19       eeh 	struct netbsd32_swapctl_args /* {
   1979       1.1       mrg 		syscallarg(int) cmd;
   1980      1.10       mrg 		syscallarg(const netbsd32_voidp) arg;
   1981       1.1       mrg 		syscallarg(int) misc;
   1982       1.1       mrg 	} */ *uap = v;
   1983       1.1       mrg 	struct sys_swapctl_args ua;
   1984       1.1       mrg 
   1985      1.11       mrg 	NETBSD32TO64_UAP(cmd);
   1986      1.89       chs 	NETBSD32TOP_UAP(arg, void);
   1987      1.11       mrg 	NETBSD32TO64_UAP(misc);
   1988      1.70   thorpej 	return (sys_swapctl(l, &ua, retval));
   1989       1.1       mrg }
   1990       1.1       mrg 
   1991       1.1       mrg int
   1992      1.70   thorpej netbsd32_minherit(l, v, retval)
   1993      1.70   thorpej 	struct lwp *l;
   1994       1.1       mrg 	void *v;
   1995       1.1       mrg 	register_t *retval;
   1996       1.1       mrg {
   1997      1.19       eeh 	struct netbsd32_minherit_args /* {
   1998      1.10       mrg 		syscallarg(netbsd32_voidp) addr;
   1999      1.10       mrg 		syscallarg(netbsd32_size_t) len;
   2000       1.1       mrg 		syscallarg(int) inherit;
   2001       1.1       mrg 	} */ *uap = v;
   2002       1.1       mrg 	struct sys_minherit_args ua;
   2003       1.1       mrg 
   2004      1.11       mrg 	NETBSD32TOP_UAP(addr, void);
   2005      1.11       mrg 	NETBSD32TOX_UAP(len, size_t);
   2006      1.11       mrg 	NETBSD32TO64_UAP(inherit);
   2007      1.70   thorpej 	return (sys_minherit(l, &ua, retval));
   2008       1.1       mrg }
   2009       1.1       mrg 
   2010       1.1       mrg int
   2011      1.70   thorpej netbsd32_lchmod(l, v, retval)
   2012      1.70   thorpej 	struct lwp *l;
   2013       1.1       mrg 	void *v;
   2014       1.1       mrg 	register_t *retval;
   2015       1.1       mrg {
   2016      1.19       eeh 	struct netbsd32_lchmod_args /* {
   2017      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   2018       1.1       mrg 		syscallarg(mode_t) mode;
   2019       1.1       mrg 	} */ *uap = v;
   2020       1.1       mrg 	struct sys_lchmod_args ua;
   2021       1.1       mrg 
   2022      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   2023      1.11       mrg 	NETBSD32TO64_UAP(mode);
   2024      1.70   thorpej 	return (sys_lchmod(l, &ua, retval));
   2025       1.1       mrg }
   2026       1.1       mrg 
   2027       1.1       mrg int
   2028      1.70   thorpej netbsd32_lchown(l, v, retval)
   2029      1.70   thorpej 	struct lwp *l;
   2030       1.1       mrg 	void *v;
   2031       1.1       mrg 	register_t *retval;
   2032       1.1       mrg {
   2033      1.19       eeh 	struct netbsd32_lchown_args /* {
   2034      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   2035       1.1       mrg 		syscallarg(uid_t) uid;
   2036       1.1       mrg 		syscallarg(gid_t) gid;
   2037       1.1       mrg 	} */ *uap = v;
   2038       1.1       mrg 	struct sys_lchown_args ua;
   2039       1.1       mrg 
   2040      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   2041      1.11       mrg 	NETBSD32TO64_UAP(uid);
   2042      1.11       mrg 	NETBSD32TO64_UAP(gid);
   2043      1.70   thorpej 	return (sys_lchown(l, &ua, retval));
   2044       1.1       mrg }
   2045       1.1       mrg 
   2046       1.1       mrg int
   2047      1.70   thorpej netbsd32___msync13(l, v, retval)
   2048      1.70   thorpej 	struct lwp *l;
   2049       1.1       mrg 	void *v;
   2050       1.1       mrg 	register_t *retval;
   2051       1.1       mrg {
   2052      1.19       eeh 	struct netbsd32___msync13_args /* {
   2053      1.10       mrg 		syscallarg(netbsd32_voidp) addr;
   2054      1.10       mrg 		syscallarg(netbsd32_size_t) len;
   2055       1.1       mrg 		syscallarg(int) flags;
   2056       1.1       mrg 	} */ *uap = v;
   2057       1.1       mrg 	struct sys___msync13_args ua;
   2058       1.1       mrg 
   2059      1.11       mrg 	NETBSD32TOP_UAP(addr, void);
   2060      1.11       mrg 	NETBSD32TOX_UAP(len, size_t);
   2061      1.11       mrg 	NETBSD32TO64_UAP(flags);
   2062      1.70   thorpej 	return (sys___msync13(l, &ua, retval));
   2063       1.1       mrg }
   2064       1.1       mrg 
   2065       1.1       mrg int
   2066      1.70   thorpej netbsd32___posix_chown(l, v, retval)
   2067      1.70   thorpej 	struct lwp *l;
   2068       1.1       mrg 	void *v;
   2069       1.1       mrg 	register_t *retval;
   2070       1.1       mrg {
   2071      1.19       eeh 	struct netbsd32___posix_chown_args /* {
   2072      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   2073       1.1       mrg 		syscallarg(uid_t) uid;
   2074       1.1       mrg 		syscallarg(gid_t) gid;
   2075       1.1       mrg 	} */ *uap = v;
   2076       1.1       mrg 	struct sys___posix_chown_args ua;
   2077       1.1       mrg 
   2078      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   2079      1.11       mrg 	NETBSD32TO64_UAP(uid);
   2080      1.11       mrg 	NETBSD32TO64_UAP(gid);
   2081      1.70   thorpej 	return (sys___posix_chown(l, &ua, retval));
   2082       1.1       mrg }
   2083       1.1       mrg 
   2084       1.1       mrg int
   2085      1.70   thorpej netbsd32___posix_fchown(l, v, retval)
   2086      1.70   thorpej 	struct lwp *l;
   2087       1.6       eeh 	void *v;
   2088       1.6       eeh 	register_t *retval;
   2089       1.6       eeh {
   2090      1.19       eeh 	struct netbsd32___posix_fchown_args /* {
   2091       1.6       eeh 		syscallarg(int) fd;
   2092       1.6       eeh 		syscallarg(uid_t) uid;
   2093       1.6       eeh 		syscallarg(gid_t) gid;
   2094       1.6       eeh 	} */ *uap = v;
   2095       1.6       eeh 	struct sys___posix_fchown_args ua;
   2096       1.6       eeh 
   2097      1.11       mrg 	NETBSD32TO64_UAP(fd);
   2098      1.11       mrg 	NETBSD32TO64_UAP(uid);
   2099      1.11       mrg 	NETBSD32TO64_UAP(gid);
   2100      1.70   thorpej 	return (sys___posix_fchown(l, &ua, retval));
   2101       1.6       eeh }
   2102       1.6       eeh 
   2103       1.6       eeh int
   2104      1.70   thorpej netbsd32___posix_lchown(l, v, retval)
   2105      1.70   thorpej 	struct lwp *l;
   2106       1.1       mrg 	void *v;
   2107       1.1       mrg 	register_t *retval;
   2108       1.1       mrg {
   2109      1.19       eeh 	struct netbsd32___posix_lchown_args /* {
   2110      1.10       mrg 		syscallarg(const netbsd32_charp) path;
   2111       1.1       mrg 		syscallarg(uid_t) uid;
   2112       1.1       mrg 		syscallarg(gid_t) gid;
   2113       1.1       mrg 	} */ *uap = v;
   2114       1.1       mrg 	struct sys___posix_lchown_args ua;
   2115       1.1       mrg 
   2116      1.11       mrg 	NETBSD32TOP_UAP(path, const char);
   2117      1.11       mrg 	NETBSD32TO64_UAP(uid);
   2118      1.11       mrg 	NETBSD32TO64_UAP(gid);
   2119      1.70   thorpej 	return (sys___posix_lchown(l, &ua, retval));
   2120       1.1       mrg }
   2121       1.1       mrg 
   2122       1.1       mrg int
   2123      1.70   thorpej netbsd32_getsid(l, v, retval)
   2124      1.70   thorpej 	struct lwp *l;
   2125       1.6       eeh 	void *v;
   2126       1.6       eeh 	register_t *retval;
   2127       1.6       eeh {
   2128      1.19       eeh 	struct netbsd32_getsid_args /* {
   2129       1.6       eeh 		syscallarg(pid_t) pid;
   2130       1.6       eeh 	} */ *uap = v;
   2131       1.6       eeh 	struct sys_getsid_args ua;
   2132       1.6       eeh 
   2133      1.11       mrg 	NETBSD32TO64_UAP(pid);
   2134      1.70   thorpej 	return (sys_getsid(l, &ua, retval));
   2135       1.6       eeh }
   2136       1.6       eeh 
   2137       1.6       eeh int
   2138      1.70   thorpej netbsd32_fktrace(l, v, retval)
   2139      1.70   thorpej 	struct lwp *l;
   2140       1.6       eeh 	void *v;
   2141       1.6       eeh 	register_t *retval;
   2142       1.6       eeh {
   2143      1.19       eeh 	struct netbsd32_fktrace_args /* {
   2144       1.6       eeh 		syscallarg(const int) fd;
   2145       1.6       eeh 		syscallarg(int) ops;
   2146       1.6       eeh 		syscallarg(int) facs;
   2147       1.6       eeh 		syscallarg(int) pid;
   2148       1.6       eeh 	} */ *uap = v;
   2149      1.43      fvdl #if 0
   2150       1.6       eeh 	struct sys_fktrace_args ua;
   2151      1.43      fvdl #else
   2152      1.43      fvdl 	/* XXXX */
   2153      1.43      fvdl 	struct sys_fktrace_noconst_args {
   2154      1.43      fvdl 		syscallarg(int) fd;
   2155      1.43      fvdl 		syscallarg(int) ops;
   2156      1.43      fvdl 		syscallarg(int) facs;
   2157      1.43      fvdl 		syscallarg(int) pid;
   2158      1.43      fvdl 	} ua;
   2159      1.43      fvdl #endif
   2160       1.6       eeh 
   2161      1.32       mrg 	NETBSD32TOX_UAP(fd, int);
   2162      1.11       mrg 	NETBSD32TO64_UAP(ops);
   2163      1.11       mrg 	NETBSD32TO64_UAP(facs);
   2164      1.11       mrg 	NETBSD32TO64_UAP(pid);
   2165      1.70   thorpej 	return (sys_fktrace(l, &ua, retval));
   2166       1.6       eeh }
   2167       1.6       eeh 
   2168      1.87     perry int netbsd32___sigpending14(l, v, retval)
   2169      1.70   thorpej 	struct lwp *l;
   2170      1.20       eeh 	void   *v;
   2171      1.20       eeh 	register_t *retval;
   2172      1.20       eeh {
   2173      1.25  augustss 	struct netbsd32___sigpending14_args /* {
   2174      1.20       eeh 		syscallarg(sigset_t *) set;
   2175      1.20       eeh 	} */ *uap = v;
   2176      1.20       eeh 	struct sys___sigpending14_args ua;
   2177      1.20       eeh 
   2178      1.20       eeh 	NETBSD32TOP_UAP(set, sigset_t);
   2179      1.70   thorpej 	return (sys___sigpending14(l, &ua, retval));
   2180      1.20       eeh }
   2181      1.20       eeh 
   2182      1.87     perry int netbsd32___sigprocmask14(l, v, retval)
   2183      1.70   thorpej 	struct lwp *l;
   2184      1.20       eeh 	void   *v;
   2185      1.20       eeh 	register_t *retval;
   2186      1.20       eeh {
   2187      1.25  augustss 	struct netbsd32___sigprocmask14_args /* {
   2188      1.20       eeh 		syscallarg(int) how;
   2189      1.20       eeh 		syscallarg(const sigset_t *) set;
   2190      1.20       eeh 		syscallarg(sigset_t *) oset;
   2191      1.20       eeh 	} */ *uap = v;
   2192      1.20       eeh 	struct sys___sigprocmask14_args ua;
   2193      1.20       eeh 
   2194      1.20       eeh 	NETBSD32TO64_UAP(how);
   2195      1.20       eeh 	NETBSD32TOP_UAP(set, sigset_t);
   2196      1.20       eeh 	NETBSD32TOP_UAP(oset, sigset_t);
   2197      1.70   thorpej 	return (sys___sigprocmask14(l, &ua, retval));
   2198      1.20       eeh }
   2199      1.20       eeh 
   2200      1.87     perry int netbsd32___sigsuspend14(l, v, retval)
   2201      1.70   thorpej 	struct lwp *l;
   2202      1.20       eeh 	void   *v;
   2203      1.20       eeh 	register_t *retval;
   2204      1.20       eeh {
   2205      1.20       eeh 	struct netbsd32___sigsuspend14_args /* {
   2206      1.20       eeh 		syscallarg(const sigset_t *) set;
   2207      1.20       eeh 	} */ *uap = v;
   2208      1.20       eeh 	struct sys___sigsuspend14_args ua;
   2209      1.20       eeh 
   2210      1.20       eeh 	NETBSD32TOP_UAP(set, sigset_t);
   2211      1.70   thorpej 	return (sys___sigsuspend14(l, &ua, retval));
   2212      1.20       eeh };
   2213      1.20       eeh 
   2214      1.70   thorpej int netbsd32_fchroot(l, v, retval)
   2215      1.70   thorpej 	struct lwp *l;
   2216      1.20       eeh 	void *v;
   2217      1.20       eeh 	register_t *retval;
   2218      1.20       eeh {
   2219      1.25  augustss 	struct netbsd32_fchroot_args /* {
   2220      1.20       eeh 		syscallarg(int) fd;
   2221      1.20       eeh 	} */ *uap = v;
   2222      1.20       eeh 	struct sys_fchroot_args ua;
   2223      1.87     perry 
   2224      1.20       eeh 	NETBSD32TO64_UAP(fd);
   2225      1.70   thorpej 	return (sys_fchroot(l, &ua, retval));
   2226      1.20       eeh }
   2227      1.20       eeh 
   2228      1.20       eeh /*
   2229      1.20       eeh  * Open a file given a file handle.
   2230      1.20       eeh  *
   2231      1.20       eeh  * Check permissions, allocate an open file structure,
   2232      1.20       eeh  * and call the device open routine if any.
   2233      1.20       eeh  */
   2234       1.6       eeh int
   2235  1.90.2.2      yamt netbsd32___fhopen40(l, v, retval)
   2236      1.70   thorpej 	struct lwp *l;
   2237      1.20       eeh 	void *v;
   2238      1.20       eeh 	register_t *retval;
   2239      1.20       eeh {
   2240  1.90.2.2      yamt 	struct netbsd32___fhopen40_args /* {
   2241  1.90.2.2      yamt 		syscallarg(const netbsd32_pointer_t *) fhp;
   2242  1.90.2.2      yamt 		syscallarg(netbsd32_size_t) fh_size;
   2243      1.20       eeh 		syscallarg(int) flags;
   2244      1.20       eeh 	} */ *uap = v;
   2245  1.90.2.2      yamt 	struct sys___fhopen40_args ua;
   2246      1.20       eeh 
   2247      1.20       eeh 	NETBSD32TOP_UAP(fhp, fhandle_t);
   2248  1.90.2.2      yamt 	NETBSD32TO64_UAP(fh_size);
   2249      1.20       eeh 	NETBSD32TO64_UAP(flags);
   2250  1.90.2.2      yamt 	return (sys___fhopen40(l, &ua, retval));
   2251      1.20       eeh }
   2252      1.20       eeh 
   2253      1.37    martin /* virtual memory syscalls */
   2254      1.37    martin int
   2255      1.70   thorpej netbsd32_ovadvise(l, v, retval)
   2256      1.70   thorpej 	struct lwp *l;
   2257      1.37    martin 	void *v;
   2258      1.37    martin 	register_t *retval;
   2259      1.37    martin {
   2260      1.37    martin 	struct netbsd32_ovadvise_args /* {
   2261      1.37    martin 		syscallarg(int) anom;
   2262      1.37    martin 	} */ *uap = v;
   2263      1.37    martin 	struct sys_ovadvise_args ua;
   2264      1.37    martin 
   2265      1.37    martin 	NETBSD32TO64_UAP(anom);
   2266      1.70   thorpej 	return (sys_ovadvise(l, &ua, retval));
   2267      1.37    martin }
   2268      1.37    martin 
   2269      1.88      fvdl void
   2270      1.88      fvdl netbsd32_adjust_limits(struct proc *p)
   2271      1.88      fvdl {
   2272  1.90.2.2      yamt 	static const struct {
   2273  1.90.2.2      yamt 		int id;
   2274  1.90.2.2      yamt 		rlim_t lim;
   2275  1.90.2.2      yamt 	} lm[] = {
   2276  1.90.2.2      yamt 		{ RLIMIT_DATA,	MAXDSIZ32 },
   2277  1.90.2.2      yamt 		{ RLIMIT_STACK, MAXSSIZ32 },
   2278  1.90.2.2      yamt 	};
   2279  1.90.2.2      yamt 	struct rlimit val[__arraycount(lm)];
   2280  1.90.2.2      yamt 	size_t i;
   2281  1.90.2.2      yamt 	int needcopy = 0;
   2282  1.90.2.3      yamt 
   2283  1.90.2.3      yamt 	mutex_enter(&p->p_mutex);
   2284  1.90.2.2      yamt 	for (i = 0; i < __arraycount(val); i++) {
   2285  1.90.2.2      yamt 		val[i] = p->p_rlimit[lm[i].id];
   2286  1.90.2.2      yamt 		if (LIMITCHECK(val[i].rlim_cur, lm[i].lim)) {
   2287  1.90.2.2      yamt 			val[i].rlim_cur = lm[i].lim;
   2288  1.90.2.2      yamt 			needcopy++;
   2289  1.90.2.2      yamt 		}
   2290  1.90.2.2      yamt 		if (LIMITCHECK(val[i].rlim_max, lm[i].lim)) {
   2291  1.90.2.2      yamt 			val[i].rlim_max = lm[i].lim;
   2292  1.90.2.2      yamt 			needcopy++;
   2293  1.90.2.2      yamt 		}
   2294  1.90.2.2      yamt 	}
   2295  1.90.2.2      yamt 
   2296  1.90.2.3      yamt 	if (needcopy == 0) {
   2297  1.90.2.3      yamt 		mutex_exit(&p->p_mutex);
   2298  1.90.2.2      yamt 		return;
   2299  1.90.2.3      yamt 	}
   2300  1.90.2.2      yamt 
   2301  1.90.2.2      yamt 	if (p->p_limit->p_refcnt > 1 &&
   2302  1.90.2.2      yamt 	    (p->p_limit->p_lflags & PL_SHAREMOD) == 0) {
   2303  1.90.2.2      yamt 		struct plimit *oldplim;
   2304  1.90.2.3      yamt 		oldplim = p->p_limit;
   2305  1.90.2.3      yamt 		p->p_limit = limcopy(p);
   2306  1.90.2.2      yamt 		limfree(oldplim);
   2307  1.90.2.2      yamt 	}
   2308  1.90.2.2      yamt 
   2309  1.90.2.2      yamt 	for (i = 0; i < __arraycount(val); i++)
   2310  1.90.2.2      yamt 		p->p_rlimit[lm[i].id] = val[i];
   2311      1.88      fvdl 
   2312  1.90.2.3      yamt 	mutex_exit(&p->p_mutex);
   2313      1.88      fvdl }
   2314      1.90      cube 
   2315      1.90      cube int
   2316      1.90      cube netbsd32_uuidgen(struct lwp *l, void *v, register_t *retval)
   2317      1.90      cube {
   2318      1.90      cube 	struct netbsd32_uuidgen_args /* {
   2319      1.90      cube 		syscallarg(netbsd32_uuidp_t) store;
   2320      1.90      cube 		syscallarg(int) count;
   2321      1.90      cube 	} */ *uap = v;
   2322      1.90      cube 	struct sys_uuidgen_args ua;
   2323      1.90      cube 
   2324      1.90      cube 	NETBSD32TOP_UAP(store, struct uuid);
   2325      1.90      cube 	NETBSD32TO64_UAP(count);
   2326      1.90      cube 	return (sys_uuidgen(l, &ua, retval));
   2327      1.90      cube }
   2328  1.90.2.1      yamt 
   2329  1.90.2.1      yamt int
   2330  1.90.2.1      yamt netbsd32_extattrctl(struct lwp *l, void *v, register_t *retval)
   2331  1.90.2.1      yamt {
   2332  1.90.2.1      yamt 	struct netbsd32_extattrctl_args /* {
   2333  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2334  1.90.2.1      yamt 		syscallarg(int) cmd;
   2335  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) filename;
   2336  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2337  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2338  1.90.2.1      yamt 	} */ *uap = v;
   2339  1.90.2.1      yamt 	struct sys_extattrctl_args ua;
   2340  1.90.2.1      yamt 
   2341  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2342  1.90.2.1      yamt 	NETBSD32TO64_UAP(cmd);
   2343  1.90.2.1      yamt 	NETBSD32TOP_UAP(filename, const char);
   2344  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2345  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2346  1.90.2.1      yamt 	return sys_extattrctl(l, &ua, retval);
   2347  1.90.2.1      yamt }
   2348  1.90.2.1      yamt 
   2349  1.90.2.1      yamt int
   2350  1.90.2.1      yamt netbsd32_extattr_set_fd(struct lwp *l, void *v, register_t *retval)
   2351  1.90.2.1      yamt {
   2352  1.90.2.1      yamt 	struct netbsd32_extattr_set_fd_args /* {
   2353  1.90.2.1      yamt 		syscallarg(int) fd;
   2354  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2355  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2356  1.90.2.1      yamt 		syscallarg(const netbsd32_voidp) data;
   2357  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2358  1.90.2.1      yamt 	} */ *uap = v;
   2359  1.90.2.1      yamt 	struct sys_extattr_set_fd_args ua;
   2360  1.90.2.1      yamt 
   2361  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2362  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2363  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2364  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, const void);
   2365  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2366  1.90.2.1      yamt 	return sys_extattr_set_fd(l, &ua, retval);
   2367  1.90.2.1      yamt }
   2368  1.90.2.1      yamt 
   2369  1.90.2.1      yamt int
   2370  1.90.2.1      yamt netbsd32_extattr_set_file(struct lwp *l, void *v, register_t *retval)
   2371  1.90.2.1      yamt {
   2372  1.90.2.1      yamt 	struct netbsd32_extattr_set_file_args /* {
   2373  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2374  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2375  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2376  1.90.2.1      yamt 		syscallarg(const netbsd32_voidp) data;
   2377  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2378  1.90.2.1      yamt 	} */ *uap = v;
   2379  1.90.2.1      yamt 	struct sys_extattr_set_file_args ua;
   2380  1.90.2.1      yamt 
   2381  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2382  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2383  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2384  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, const void);
   2385  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2386  1.90.2.1      yamt 	return sys_extattr_set_file(l, &ua, retval);
   2387  1.90.2.1      yamt }
   2388  1.90.2.1      yamt 
   2389  1.90.2.1      yamt int
   2390  1.90.2.1      yamt netbsd32_extattr_set_link(struct lwp *l, void *v, register_t *retval)
   2391  1.90.2.1      yamt {
   2392  1.90.2.1      yamt 	struct netbsd32_extattr_set_link_args /* {
   2393  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2394  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2395  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2396  1.90.2.1      yamt 		syscallarg(const netbsd32_voidp) data;
   2397  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2398  1.90.2.1      yamt 	} */ *uap = v;
   2399  1.90.2.1      yamt 	struct sys_extattr_set_link_args ua;
   2400  1.90.2.1      yamt 
   2401  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2402  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2403  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2404  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, const void);
   2405  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2406  1.90.2.1      yamt 	return sys_extattr_set_link(l, &ua, retval);
   2407  1.90.2.1      yamt }
   2408  1.90.2.1      yamt 
   2409  1.90.2.1      yamt int
   2410  1.90.2.1      yamt netbsd32_extattr_get_fd(struct lwp *l, void *v, register_t *retval)
   2411  1.90.2.1      yamt {
   2412  1.90.2.1      yamt 	struct netbsd32_extattr_get_fd_args /* {
   2413  1.90.2.1      yamt 		syscallarg(int) fd;
   2414  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2415  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2416  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) data;
   2417  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2418  1.90.2.1      yamt 	} */ *uap = v;
   2419  1.90.2.1      yamt 	struct sys_extattr_get_fd_args ua;
   2420  1.90.2.1      yamt 
   2421  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2422  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2423  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2424  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, void);
   2425  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2426  1.90.2.1      yamt 	return sys_extattr_get_fd(l, &ua, retval);
   2427  1.90.2.1      yamt }
   2428  1.90.2.1      yamt 
   2429  1.90.2.1      yamt int
   2430  1.90.2.1      yamt netbsd32_extattr_get_file(struct lwp *l, void *v, register_t *retval)
   2431  1.90.2.1      yamt {
   2432  1.90.2.1      yamt 	struct netbsd32_extattr_get_file_args /* {
   2433  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2434  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2435  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2436  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) data;
   2437  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2438  1.90.2.1      yamt 	} */ *uap = v;
   2439  1.90.2.1      yamt 	struct sys_extattr_get_file_args ua;
   2440  1.90.2.1      yamt 
   2441  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2442  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2443  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2444  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, void);
   2445  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2446  1.90.2.1      yamt 	return sys_extattr_get_file(l, &ua, retval);
   2447  1.90.2.1      yamt }
   2448  1.90.2.1      yamt 
   2449  1.90.2.1      yamt int
   2450  1.90.2.1      yamt netbsd32_extattr_get_link(struct lwp *l, void *v, register_t *retval)
   2451  1.90.2.1      yamt {
   2452  1.90.2.1      yamt 	struct netbsd32_extattr_get_link_args /* {
   2453  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2454  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2455  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2456  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) data;
   2457  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2458  1.90.2.1      yamt 	} */ *uap = v;
   2459  1.90.2.1      yamt 	struct sys_extattr_get_link_args ua;
   2460  1.90.2.1      yamt 
   2461  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2462  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2463  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2464  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, void);
   2465  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2466  1.90.2.1      yamt 	return sys_extattr_get_link(l, &ua, retval);
   2467  1.90.2.1      yamt }
   2468  1.90.2.1      yamt 
   2469  1.90.2.1      yamt int
   2470  1.90.2.1      yamt netbsd32_extattr_delete_fd(struct lwp *l, void *v, register_t *retval)
   2471  1.90.2.1      yamt {
   2472  1.90.2.1      yamt 	struct netbsd32_extattr_delete_fd_args /* {
   2473  1.90.2.1      yamt 		syscallarg(int) fd;
   2474  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2475  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2476  1.90.2.1      yamt 	} */ *uap = v;
   2477  1.90.2.1      yamt 	struct sys_extattr_delete_fd_args ua;
   2478  1.90.2.1      yamt 
   2479  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2480  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2481  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2482  1.90.2.1      yamt 	return sys_extattr_delete_fd(l, &ua, retval);
   2483  1.90.2.1      yamt }
   2484  1.90.2.1      yamt 
   2485  1.90.2.1      yamt int
   2486  1.90.2.1      yamt netbsd32_extattr_delete_file(struct lwp *l, void *v, register_t *retval)
   2487  1.90.2.1      yamt {
   2488  1.90.2.1      yamt 	struct netbsd32_extattr_delete_file_args /* {
   2489  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2490  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2491  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2492  1.90.2.1      yamt 	} */ *uap = v;
   2493  1.90.2.1      yamt 	struct sys_extattr_delete_file_args ua;
   2494  1.90.2.1      yamt 
   2495  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2496  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2497  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2498  1.90.2.1      yamt 	return sys_extattr_delete_file(l, &ua, retval);
   2499  1.90.2.1      yamt }
   2500  1.90.2.1      yamt 
   2501  1.90.2.1      yamt int
   2502  1.90.2.1      yamt netbsd32_extattr_delete_link(struct lwp *l, void *v, register_t *retval)
   2503  1.90.2.1      yamt {
   2504  1.90.2.1      yamt 	struct netbsd32_extattr_delete_link_args /* {
   2505  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2506  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2507  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) attrname;
   2508  1.90.2.1      yamt 	} */ *uap = v;
   2509  1.90.2.1      yamt 	struct sys_extattr_delete_link_args ua;
   2510  1.90.2.1      yamt 
   2511  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2512  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2513  1.90.2.1      yamt 	NETBSD32TOP_UAP(attrname, const char);
   2514  1.90.2.1      yamt 	return sys_extattr_delete_link(l, &ua, retval);
   2515  1.90.2.1      yamt }
   2516  1.90.2.1      yamt 
   2517  1.90.2.1      yamt int
   2518  1.90.2.1      yamt netbsd32_extattr_list_fd(struct lwp *l, void *v, register_t *retval)
   2519  1.90.2.1      yamt {
   2520  1.90.2.1      yamt 	struct netbsd32_extattr_list_fd_args /* {
   2521  1.90.2.1      yamt 		syscallarg(int) fd;
   2522  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2523  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) data;
   2524  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2525  1.90.2.1      yamt 	} */ *uap = v;
   2526  1.90.2.1      yamt 	struct sys_extattr_list_fd_args ua;
   2527  1.90.2.1      yamt 
   2528  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2529  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2530  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, void);
   2531  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2532  1.90.2.1      yamt 	return sys_extattr_list_fd(l, &ua, retval);
   2533  1.90.2.1      yamt }
   2534  1.90.2.1      yamt 
   2535  1.90.2.1      yamt int
   2536  1.90.2.1      yamt netbsd32_extattr_list_file(struct lwp *l, void *v, register_t *retval)
   2537  1.90.2.1      yamt {
   2538  1.90.2.1      yamt 	struct netbsd32_extattr_list_file_args /* {
   2539  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2540  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2541  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) data;
   2542  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2543  1.90.2.1      yamt 	} */ *uap = v;
   2544  1.90.2.1      yamt 	struct sys_extattr_list_file_args ua;
   2545  1.90.2.1      yamt 
   2546  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2547  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2548  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, void);
   2549  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2550  1.90.2.1      yamt 	return sys_extattr_list_file(l, &ua, retval);
   2551  1.90.2.1      yamt }
   2552  1.90.2.1      yamt 
   2553  1.90.2.1      yamt int
   2554  1.90.2.1      yamt netbsd32_extattr_list_link(struct lwp *l, void *v, register_t *retval)
   2555  1.90.2.1      yamt {
   2556  1.90.2.1      yamt 	struct netbsd32_extattr_list_link_args /* {
   2557  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2558  1.90.2.1      yamt 		syscallarg(int) attrnamespace;
   2559  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) data;
   2560  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) nbytes;
   2561  1.90.2.1      yamt 	} */ *uap = v;
   2562  1.90.2.1      yamt 	struct sys_extattr_list_link_args ua;
   2563  1.90.2.1      yamt 
   2564  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2565  1.90.2.1      yamt 	NETBSD32TO64_UAP(attrnamespace);
   2566  1.90.2.1      yamt 	NETBSD32TOP_UAP(data, void);
   2567  1.90.2.1      yamt 	NETBSD32TOX_UAP(nbytes, size_t);
   2568  1.90.2.1      yamt 	return sys_extattr_list_link(l, &ua, retval);
   2569  1.90.2.1      yamt }
   2570  1.90.2.1      yamt 
   2571  1.90.2.1      yamt int
   2572  1.90.2.1      yamt netbsd32_mlockall(l, v, retval)
   2573  1.90.2.1      yamt 	struct lwp *l;
   2574  1.90.2.1      yamt 	void *v;
   2575  1.90.2.1      yamt 	register_t *retval;
   2576  1.90.2.1      yamt {
   2577  1.90.2.1      yamt 	struct netbsd32_mlockall_args /* {
   2578  1.90.2.1      yamt 		syscallarg(int) flags;
   2579  1.90.2.1      yamt 	} */ *uap = v;
   2580  1.90.2.1      yamt 	struct sys_mlockall_args ua;
   2581  1.90.2.1      yamt 
   2582  1.90.2.1      yamt 	NETBSD32TO64_UAP(flags);
   2583  1.90.2.1      yamt 	return (sys_mlockall(l, &ua, retval));
   2584  1.90.2.1      yamt }
   2585  1.90.2.1      yamt 
   2586  1.90.2.1      yamt int
   2587  1.90.2.1      yamt netbsd32___clone(struct lwp *l, void *v, register_t *retval)
   2588  1.90.2.1      yamt {
   2589  1.90.2.1      yamt 	struct netbsd32___clone_args /*  {
   2590  1.90.2.1      yamt 		syscallarg(int) flags;
   2591  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) stack;
   2592  1.90.2.1      yamt 	} */ *uap = v;
   2593  1.90.2.1      yamt 	struct sys___clone_args ua;
   2594  1.90.2.1      yamt 
   2595  1.90.2.1      yamt 	NETBSD32TO64_UAP(flags);
   2596  1.90.2.1      yamt 	NETBSD32TOP_UAP(stack, void);
   2597  1.90.2.1      yamt 	return sys___clone(l, &ua, retval);
   2598  1.90.2.1      yamt }
   2599  1.90.2.1      yamt 
   2600  1.90.2.1      yamt int
   2601  1.90.2.1      yamt netbsd32_fsync_range(struct lwp *l, void *v, register_t *retval)
   2602  1.90.2.1      yamt {
   2603  1.90.2.1      yamt 	struct netbsd32_fsync_range_args /* {
   2604  1.90.2.1      yamt 		syscallarg(int) fd;
   2605  1.90.2.1      yamt 		syscallarg(int) flags;
   2606  1.90.2.1      yamt 		syscallarg(off_t) start;
   2607  1.90.2.1      yamt 		syscallarg(off_t) length;
   2608  1.90.2.1      yamt 	} */ *uap = v;
   2609  1.90.2.1      yamt 	struct sys_fsync_range_args ua;
   2610  1.90.2.1      yamt 
   2611  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2612  1.90.2.1      yamt 	NETBSD32TO64_UAP(flags);
   2613  1.90.2.1      yamt 	NETBSD32TO64_UAP(start);
   2614  1.90.2.1      yamt 	NETBSD32TO64_UAP(length);
   2615  1.90.2.1      yamt 	return (sys_fsync_range(l, &ua, retval));
   2616  1.90.2.1      yamt }
   2617  1.90.2.1      yamt 
   2618  1.90.2.1      yamt int
   2619  1.90.2.1      yamt netbsd32_rasctl(struct lwp *l, void *v, register_t *retval)
   2620  1.90.2.1      yamt {
   2621  1.90.2.1      yamt 	struct netbsd32_rasctl_args /* {
   2622  1.90.2.1      yamt 		syscallarg(netbsd32_caddr_t) addr;
   2623  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) len;
   2624  1.90.2.1      yamt 		syscallarg(int) op;
   2625  1.90.2.1      yamt 	} */ *uap = v;
   2626  1.90.2.1      yamt 	struct sys_rasctl_args ua;
   2627  1.90.2.1      yamt 
   2628  1.90.2.4      yamt 	NETBSD32TOP_UAP(addr, void *);
   2629  1.90.2.1      yamt 	NETBSD32TOX_UAP(len, size_t);
   2630  1.90.2.1      yamt 	NETBSD32TO64_UAP(op);
   2631  1.90.2.1      yamt 	return sys_rasctl(l, &ua, retval);
   2632  1.90.2.1      yamt }
   2633  1.90.2.1      yamt 
   2634  1.90.2.1      yamt int
   2635  1.90.2.1      yamt netbsd32_setxattr(struct lwp *l, void *v, register_t *retval)
   2636  1.90.2.1      yamt {
   2637  1.90.2.1      yamt 	struct netbsd32_setxattr_args /* {
   2638  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2639  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2640  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) value;
   2641  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2642  1.90.2.1      yamt 		syscallarg(int) flags;
   2643  1.90.2.1      yamt 	} */ *uap = v;
   2644  1.90.2.1      yamt 	struct sys_setxattr_args ua;
   2645  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2646  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2647  1.90.2.1      yamt 	NETBSD32TOP_UAP(value, void);
   2648  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2649  1.90.2.1      yamt 	NETBSD32TO64_UAP(flags);
   2650  1.90.2.1      yamt 	return sys_setxattr(l, &ua, retval);
   2651  1.90.2.1      yamt }
   2652  1.90.2.1      yamt 
   2653  1.90.2.1      yamt int
   2654  1.90.2.1      yamt netbsd32_lsetxattr(struct lwp *l, void *v, register_t *retval)
   2655  1.90.2.1      yamt {
   2656  1.90.2.1      yamt 	struct netbsd32_lsetxattr_args /* {
   2657  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2658  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2659  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) value;
   2660  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2661  1.90.2.1      yamt 		syscallarg(int) flags;
   2662  1.90.2.1      yamt 	} */ *uap = v;
   2663  1.90.2.1      yamt 	struct sys_lsetxattr_args ua;
   2664  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2665  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2666  1.90.2.1      yamt 	NETBSD32TOP_UAP(value, void);
   2667  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2668  1.90.2.1      yamt 	NETBSD32TO64_UAP(flags);
   2669  1.90.2.1      yamt 	return sys_lsetxattr(l, &ua, retval);
   2670  1.90.2.1      yamt }
   2671  1.90.2.1      yamt 
   2672  1.90.2.1      yamt int
   2673  1.90.2.1      yamt netbsd32_fsetxattr(struct lwp *l, void *v, register_t *retval)
   2674  1.90.2.1      yamt {
   2675  1.90.2.1      yamt 	struct netbsd32_fsetxattr_args /* {
   2676  1.90.2.1      yamt 		syscallarg(int) fd;
   2677  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2678  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) value;
   2679  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2680  1.90.2.1      yamt 		syscallarg(int) flags;
   2681  1.90.2.1      yamt 	} */ *uap = v;
   2682  1.90.2.1      yamt 	struct sys_fsetxattr_args ua;
   2683  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2684  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2685  1.90.2.1      yamt 	NETBSD32TOP_UAP(value, void);
   2686  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2687  1.90.2.1      yamt 	NETBSD32TO64_UAP(flags);
   2688  1.90.2.1      yamt 	return sys_fsetxattr(l, &ua, retval);
   2689  1.90.2.1      yamt }
   2690  1.90.2.1      yamt 
   2691  1.90.2.1      yamt int
   2692  1.90.2.1      yamt netbsd32_getxattr(struct lwp *l, void *v, register_t *retval)
   2693  1.90.2.1      yamt {
   2694  1.90.2.1      yamt 	struct netbsd32_getxattr_args /* {
   2695  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2696  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2697  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) value;
   2698  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2699  1.90.2.1      yamt 	} */ *uap = v;
   2700  1.90.2.1      yamt 	struct sys_getxattr_args ua;
   2701  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2702  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2703  1.90.2.1      yamt 	NETBSD32TOP_UAP(value, void);
   2704  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2705  1.90.2.1      yamt 	return sys_getxattr(l, &ua, retval);
   2706  1.90.2.1      yamt }
   2707  1.90.2.1      yamt 
   2708  1.90.2.1      yamt int
   2709  1.90.2.1      yamt netbsd32_lgetxattr(struct lwp *l, void *v, register_t *retval)
   2710  1.90.2.1      yamt {
   2711  1.90.2.1      yamt 	struct netbsd32_lgetxattr_args /* {
   2712  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2713  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2714  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) value;
   2715  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2716  1.90.2.1      yamt 	} */ *uap = v;
   2717  1.90.2.1      yamt 	struct sys_lgetxattr_args ua;
   2718  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2719  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2720  1.90.2.1      yamt 	NETBSD32TOP_UAP(value, void);
   2721  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2722  1.90.2.1      yamt 	return sys_lgetxattr(l, &ua, retval);
   2723  1.90.2.1      yamt }
   2724  1.90.2.1      yamt 
   2725  1.90.2.1      yamt int
   2726  1.90.2.1      yamt netbsd32_fgetxattr(struct lwp *l, void *v, register_t *retval)
   2727  1.90.2.1      yamt {
   2728  1.90.2.1      yamt 	struct netbsd32_fgetxattr_args /* {
   2729  1.90.2.1      yamt 		syscallarg(int) fd;
   2730  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2731  1.90.2.1      yamt 		syscallarg(netbsd32_voidp) value;
   2732  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2733  1.90.2.1      yamt 	} */ *uap = v;
   2734  1.90.2.1      yamt 	struct sys_fgetxattr_args ua;
   2735  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2736  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2737  1.90.2.1      yamt 	NETBSD32TOP_UAP(value, void);
   2738  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2739  1.90.2.1      yamt 	return sys_fgetxattr(l, &ua, retval);
   2740  1.90.2.1      yamt }
   2741  1.90.2.1      yamt 
   2742  1.90.2.1      yamt int
   2743  1.90.2.1      yamt netbsd32_listxattr(struct lwp *l, void *v, register_t *retval)
   2744  1.90.2.1      yamt {
   2745  1.90.2.1      yamt 	struct netbsd32_listxattr_args /* {
   2746  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2747  1.90.2.1      yamt 		syscallarg(netbsd32_charp) list;
   2748  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2749  1.90.2.1      yamt 	} */ *uap = v;
   2750  1.90.2.1      yamt 	struct sys_listxattr_args ua;
   2751  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2752  1.90.2.1      yamt 	NETBSD32TOP_UAP(list, char);
   2753  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2754  1.90.2.1      yamt 	return sys_listxattr(l, &ua, retval);
   2755  1.90.2.1      yamt }
   2756  1.90.2.1      yamt 
   2757  1.90.2.1      yamt int
   2758  1.90.2.1      yamt netbsd32_llistxattr(struct lwp *l, void *v, register_t *retval)
   2759  1.90.2.1      yamt {
   2760  1.90.2.1      yamt 	struct netbsd32_llistxattr_args /* {
   2761  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2762  1.90.2.1      yamt 		syscallarg(netbsd32_charp) list;
   2763  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2764  1.90.2.1      yamt 	} */ *uap = v;
   2765  1.90.2.1      yamt 	struct sys_llistxattr_args ua;
   2766  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2767  1.90.2.1      yamt 	NETBSD32TOP_UAP(list, char);
   2768  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2769  1.90.2.1      yamt 	return sys_llistxattr(l, &ua, retval);
   2770  1.90.2.1      yamt }
   2771  1.90.2.1      yamt 
   2772  1.90.2.1      yamt int
   2773  1.90.2.1      yamt netbsd32_flistxattr(struct lwp *l, void *v, register_t *retval)
   2774  1.90.2.1      yamt {
   2775  1.90.2.1      yamt 	struct netbsd32_flistxattr_args /* {
   2776  1.90.2.1      yamt 		syscallarg(int) fd;
   2777  1.90.2.1      yamt 		syscallarg(netbsd32_charp) list;
   2778  1.90.2.1      yamt 		syscallarg(netbsd32_size_t) size;
   2779  1.90.2.1      yamt 	} */ *uap = v;
   2780  1.90.2.1      yamt 	struct sys_flistxattr_args ua;
   2781  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2782  1.90.2.1      yamt 	NETBSD32TOP_UAP(list, char);
   2783  1.90.2.1      yamt 	NETBSD32TOX_UAP(size, size_t);
   2784  1.90.2.1      yamt 	return sys_flistxattr(l, &ua, retval);
   2785  1.90.2.1      yamt }
   2786  1.90.2.1      yamt 
   2787  1.90.2.1      yamt int
   2788  1.90.2.1      yamt netbsd32_removexattr(struct lwp *l, void *v, register_t *retval)
   2789  1.90.2.1      yamt {
   2790  1.90.2.1      yamt 	struct netbsd32_removexattr_args /* {
   2791  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2792  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2793  1.90.2.1      yamt 	} */ *uap = v;
   2794  1.90.2.1      yamt 	struct sys_removexattr_args ua;
   2795  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2796  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2797  1.90.2.1      yamt 	return sys_removexattr(l, &ua, retval);
   2798  1.90.2.1      yamt }
   2799  1.90.2.1      yamt 
   2800  1.90.2.1      yamt int
   2801  1.90.2.1      yamt netbsd32_lremovexattr(struct lwp *l, void *v, register_t *retval)
   2802  1.90.2.1      yamt {
   2803  1.90.2.1      yamt 	struct netbsd32_lremovexattr_args /* {
   2804  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) path;
   2805  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2806  1.90.2.1      yamt 	} */ *uap = v;
   2807  1.90.2.1      yamt 	struct sys_lremovexattr_args ua;
   2808  1.90.2.1      yamt 	NETBSD32TOP_UAP(path, const char);
   2809  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2810  1.90.2.1      yamt 	return sys_lremovexattr(l, &ua, retval);
   2811  1.90.2.1      yamt }
   2812  1.90.2.1      yamt 
   2813  1.90.2.1      yamt int
   2814  1.90.2.1      yamt netbsd32_fremovexattr(struct lwp *l, void *v, register_t *retval)
   2815  1.90.2.1      yamt {
   2816  1.90.2.1      yamt 	struct netbsd32_fremovexattr_args /* {
   2817  1.90.2.1      yamt 		syscallarg(int) fd;
   2818  1.90.2.1      yamt 		syscallarg(const netbsd32_charp) name;
   2819  1.90.2.1      yamt 	} */ *uap = v;
   2820  1.90.2.1      yamt 	struct sys_fremovexattr_args ua;
   2821  1.90.2.1      yamt 	NETBSD32TO64_UAP(fd);
   2822  1.90.2.1      yamt 	NETBSD32TOP_UAP(name, const char);
   2823  1.90.2.1      yamt 	return sys_fremovexattr(l, &ua, retval);
   2824  1.90.2.1      yamt }
   2825