Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_compat_50.c revision 1.32.16.7
      1  1.32.16.7  pgoyette /*	$NetBSD: netbsd32_compat_50.c,v 1.32.16.7 2018/09/11 23:26:21 pgoyette Exp $	*/
      2        1.2  christos 
      3        1.2  christos /*-
      4        1.2  christos  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5        1.2  christos  * All rights reserved.
      6        1.2  christos  *
      7        1.2  christos  * This code is derived from software contributed to The NetBSD Foundation
      8        1.2  christos  * by Christos Zoulas.
      9        1.2  christos  *
     10        1.2  christos  * Redistribution and use in source and binary forms, with or without
     11        1.2  christos  * modification, are permitted provided that the following conditions
     12        1.2  christos  * are met:
     13        1.2  christos  * 1. Redistributions of source code must retain the above copyright
     14        1.2  christos  *    notice, this list of conditions and the following disclaimer.
     15        1.2  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.2  christos  *    notice, this list of conditions and the following disclaimer in the
     17        1.2  christos  *    documentation and/or other materials provided with the distribution.
     18        1.2  christos  * 3. All advertising materials mentioning features or use of this software
     19        1.2  christos  *    must display the following acknowledgement:
     20        1.2  christos  *        This product includes software developed by the NetBSD
     21        1.2  christos  *        Foundation, Inc. and its contributors.
     22        1.2  christos  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23        1.2  christos  *    contributors may be used to endorse or promote products derived
     24        1.2  christos  *    from this software without specific prior written permission.
     25        1.2  christos  *
     26        1.2  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27        1.2  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28        1.2  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29        1.2  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30        1.2  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31        1.2  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32        1.2  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33        1.2  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34        1.2  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35        1.2  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36        1.2  christos  * POSSIBILITY OF SUCH DAMAGE.
     37        1.2  christos  */
     38        1.2  christos #include <sys/cdefs.h>
     39  1.32.16.7  pgoyette __KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_50.c,v 1.32.16.7 2018/09/11 23:26:21 pgoyette Exp $");
     40        1.2  christos 
     41        1.2  christos #if defined(_KERNEL_OPT)
     42       1.32  pgoyette #include "opt_compat_netbsd.h"
     43        1.8     njoly #endif
     44        1.2  christos 
     45        1.2  christos #include <sys/param.h>
     46        1.2  christos #include <sys/systm.h>
     47  1.32.16.1  pgoyette #include <sys/module.h>
     48        1.2  christos #include <sys/mount.h>
     49        1.2  christos #include <sys/socket.h>
     50        1.2  christos #include <sys/socketvar.h>
     51        1.2  christos #include <sys/stat.h>
     52        1.2  christos #include <sys/time.h>
     53        1.2  christos #include <sys/ktrace.h>
     54        1.2  christos #include <sys/eventvar.h>
     55        1.2  christos #include <sys/resourcevar.h>
     56        1.2  christos #include <sys/vnode.h>
     57        1.2  christos #include <sys/file.h>
     58        1.2  christos #include <sys/filedesc.h>
     59        1.2  christos #include <sys/poll.h>
     60        1.2  christos #include <sys/namei.h>
     61        1.2  christos #include <sys/statvfs.h>
     62        1.2  christos #include <sys/syscallargs.h>
     63  1.32.16.2  pgoyette #include <sys/syscallvar.h>
     64        1.2  christos #include <sys/proc.h>
     65        1.2  christos #include <sys/dirent.h>
     66        1.2  christos #include <sys/kauth.h>
     67        1.2  christos #include <sys/vfs_syscalls.h>
     68  1.32.16.7  pgoyette #include <sys/rnd.h>
     69        1.2  christos 
     70        1.2  christos #include <compat/netbsd32/netbsd32.h>
     71  1.32.16.3  pgoyette #include <compat/netbsd32/netbsd32_syscall.h>
     72        1.2  christos #include <compat/netbsd32/netbsd32_syscallargs.h>
     73        1.2  christos #include <compat/netbsd32/netbsd32_conv.h>
     74        1.2  christos #include <compat/sys/mount.h>
     75        1.2  christos #include <compat/sys/time.h>
     76  1.32.16.7  pgoyette #include <compat/sys/rnd.h>
     77        1.2  christos 
     78       1.32  pgoyette #if defined(COMPAT_50)
     79        1.2  christos 
     80        1.2  christos /*
     81        1.2  christos  * Common routine to set access and modification times given a vnode.
     82        1.2  christos  */
     83        1.2  christos static int
     84        1.2  christos get_utimes32(const netbsd32_timeval50p_t *tptr, struct timeval *tv,
     85        1.2  christos     struct timeval **tvp)
     86        1.2  christos {
     87        1.2  christos 	int error;
     88        1.2  christos 	struct netbsd32_timeval50 tv32[2];
     89        1.2  christos 
     90        1.2  christos 	if (tptr == NULL) {
     91        1.2  christos 		*tvp = NULL;
     92        1.2  christos 		return 0;
     93        1.2  christos 	}
     94        1.2  christos 
     95        1.2  christos 	error = copyin(tptr, tv32, sizeof(tv32));
     96        1.2  christos 	if (error)
     97        1.2  christos 		return error;
     98        1.2  christos 	netbsd32_to_timeval50(&tv32[0], &tv[0]);
     99        1.2  christos 	netbsd32_to_timeval50(&tv32[1], &tv[1]);
    100        1.2  christos 
    101        1.2  christos 	*tvp = tv;
    102        1.2  christos 	return 0;
    103        1.2  christos }
    104        1.2  christos 
    105        1.2  christos int
    106        1.2  christos compat_50_netbsd32_mknod(struct lwp *l,
    107        1.2  christos     const struct compat_50_netbsd32_mknod_args *uap, register_t *retval)
    108        1.2  christos {
    109        1.2  christos 	/* {
    110        1.2  christos 		syscallarg(netbsd32_charp) path;
    111        1.2  christos 		syscallarg(mode_t) mode;
    112        1.2  christos 		syscallarg(uint32_t) dev;
    113        1.2  christos 	} */
    114        1.2  christos 	return do_sys_mknod(l, SCARG_P32(uap, path), SCARG(uap, mode),
    115        1.5      haad 	    SCARG(uap, dev), retval, UIO_USERSPACE);
    116        1.2  christos }
    117        1.2  christos 
    118        1.2  christos int
    119        1.2  christos compat_50_netbsd32_select(struct lwp *l,
    120        1.2  christos     const struct compat_50_netbsd32_select_args *uap, register_t *retval)
    121        1.2  christos {
    122        1.2  christos 	/* {
    123        1.2  christos 		syscallarg(int) nd;
    124        1.2  christos 		syscallarg(netbsd32_fd_setp_t) in;
    125        1.2  christos 		syscallarg(netbsd32_fd_setp_t) ou;
    126        1.2  christos 		syscallarg(netbsd32_fd_setp_t) ex;
    127        1.2  christos 		syscallarg(netbsd32_timeval50p_t) tv;
    128        1.2  christos 	} */
    129        1.2  christos 	int error;
    130        1.2  christos 	struct netbsd32_timeval50 tv32;
    131        1.4  christos 	struct timespec ats, *ts = NULL;
    132        1.2  christos 
    133        1.2  christos 	if (SCARG_P32(uap, tv)) {
    134        1.2  christos 		error = copyin(SCARG_P32(uap, tv), &tv32, sizeof(tv32));
    135        1.2  christos 		if (error != 0)
    136        1.2  christos 			return error;
    137        1.4  christos 		ats.tv_sec = tv32.tv_sec;
    138        1.4  christos 		ats.tv_nsec = tv32.tv_usec * 1000;
    139        1.4  christos 		ts = &ats;
    140        1.2  christos 	}
    141        1.2  christos 
    142        1.7     rmind 	return selcommon(retval, SCARG(uap, nd), SCARG_P32(uap, in),
    143        1.4  christos 	    SCARG_P32(uap, ou), SCARG_P32(uap, ex), ts, NULL);
    144        1.2  christos }
    145        1.2  christos 
    146        1.2  christos int
    147        1.2  christos compat_50_netbsd32_gettimeofday(struct lwp *l,
    148        1.2  christos     const struct compat_50_netbsd32_gettimeofday_args *uap, register_t *retval)
    149        1.2  christos {
    150        1.2  christos 	/* {
    151        1.2  christos 		syscallarg(netbsd32_timeval50p_t) tp;
    152        1.2  christos 		syscallarg(netbsd32_timezonep_t) tzp;
    153        1.2  christos 	} */
    154        1.2  christos 	struct timeval atv;
    155        1.2  christos 	struct netbsd32_timeval50 tv32;
    156        1.2  christos 	int error = 0;
    157        1.2  christos 	struct netbsd32_timezone tzfake;
    158        1.2  christos 
    159        1.2  christos 	if (SCARG_P32(uap, tp)) {
    160        1.2  christos 		microtime(&atv);
    161        1.2  christos 		netbsd32_from_timeval50(&atv, &tv32);
    162        1.2  christos 		error = copyout(&tv32, SCARG_P32(uap, tp), sizeof(tv32));
    163        1.2  christos 		if (error)
    164        1.2  christos 			return error;
    165        1.2  christos 	}
    166        1.2  christos 	if (SCARG_P32(uap, tzp)) {
    167        1.2  christos 		/*
    168        1.2  christos 		 * NetBSD has no kernel notion of time zone, so we just
    169        1.2  christos 		 * fake up a timezone struct and return it if demanded.
    170        1.2  christos 		 */
    171        1.2  christos 		tzfake.tz_minuteswest = 0;
    172        1.2  christos 		tzfake.tz_dsttime = 0;
    173        1.2  christos 		error = copyout(&tzfake, SCARG_P32(uap, tzp), sizeof(tzfake));
    174        1.2  christos 	}
    175        1.2  christos 	return error;
    176        1.2  christos }
    177        1.2  christos 
    178        1.2  christos int
    179        1.2  christos compat_50_netbsd32_settimeofday(struct lwp *l,
    180        1.2  christos     const struct compat_50_netbsd32_settimeofday_args *uap, register_t *retval)
    181        1.2  christos {
    182        1.2  christos 	/* {
    183        1.2  christos 		syscallarg(const netbsd32_timeval50p_t) tv;
    184        1.2  christos 		syscallarg(const netbsd32_timezonep_t) tzp;
    185        1.2  christos 	} */
    186        1.2  christos 	struct netbsd32_timeval50 atv32;
    187        1.2  christos 	struct timeval atv;
    188        1.2  christos 	struct timespec ats;
    189        1.2  christos 	int error;
    190        1.2  christos 	struct proc *p = l->l_proc;
    191        1.2  christos 
    192        1.2  christos 	/* Verify all parameters before changing time. */
    193        1.2  christos 
    194        1.2  christos 	/*
    195        1.2  christos 	 * NetBSD has no kernel notion of time zone, and only an
    196        1.2  christos 	 * obsolete program would try to set it, so we log a warning.
    197        1.2  christos 	 */
    198        1.2  christos 	if (SCARG_P32(uap, tzp))
    199        1.2  christos 		printf("pid %d attempted to set the "
    200        1.2  christos 		    "(obsolete) kernel time zone\n", p->p_pid);
    201        1.2  christos 
    202        1.2  christos 	if (SCARG_P32(uap, tv) == 0)
    203        1.2  christos 		return 0;
    204        1.2  christos 
    205        1.2  christos 	if ((error = copyin(SCARG_P32(uap, tv), &atv32, sizeof(atv32))) != 0)
    206        1.2  christos 		return error;
    207        1.2  christos 
    208        1.2  christos 	netbsd32_to_timeval50(&atv32, &atv);
    209        1.2  christos 	TIMEVAL_TO_TIMESPEC(&atv, &ats);
    210        1.2  christos 	return settime(p, &ats);
    211        1.2  christos }
    212        1.2  christos 
    213        1.2  christos int
    214        1.2  christos compat_50_netbsd32_utimes(struct lwp *l,
    215        1.2  christos     const struct compat_50_netbsd32_utimes_args *uap, register_t *retval)
    216        1.2  christos {
    217        1.2  christos 	/* {
    218        1.2  christos 		syscallarg(const netbsd32_charp) path;
    219        1.2  christos 		syscallarg(const netbsd32_timeval50p_t) tptr;
    220        1.2  christos 	} */
    221        1.2  christos 	int error;
    222        1.2  christos 	struct timeval tv[2], *tvp;
    223        1.2  christos 
    224        1.2  christos 	error = get_utimes32(SCARG_P32(uap, tptr), tv, &tvp);
    225        1.2  christos 	if (error != 0)
    226        1.2  christos 		return error;
    227        1.2  christos 
    228        1.2  christos 	return do_sys_utimes(l, NULL, SCARG_P32(uap, path), FOLLOW,
    229        1.2  christos 	    tvp, UIO_SYSSPACE);
    230        1.2  christos }
    231        1.2  christos 
    232        1.2  christos int
    233        1.2  christos compat_50_netbsd32_adjtime(struct lwp *l,
    234        1.2  christos     const struct compat_50_netbsd32_adjtime_args *uap, register_t *retval)
    235        1.2  christos {
    236        1.2  christos 	/* {
    237        1.2  christos 		syscallarg(const netbsd32_timeval50p_t) delta;
    238        1.2  christos 		syscallarg(netbsd32_timeval50p_t) olddelta;
    239        1.2  christos 	} */
    240        1.2  christos 	struct netbsd32_timeval50 atv;
    241        1.2  christos 	int error;
    242        1.2  christos 
    243        1.2  christos 	extern int time_adjusted;     /* in kern_ntptime.c */
    244        1.2  christos 	extern int64_t time_adjtime;  /* in kern_ntptime.c */
    245        1.2  christos 
    246        1.2  christos 	if ((error = kauth_authorize_system(l->l_cred,
    247        1.2  christos 	    KAUTH_SYSTEM_TIME, KAUTH_REQ_SYSTEM_TIME_ADJTIME, NULL, NULL,
    248        1.2  christos 	    NULL)) != 0)
    249        1.2  christos 		return (error);
    250        1.2  christos 
    251        1.2  christos 	if (SCARG_P32(uap, olddelta)) {
    252       1.28  christos 		mutex_spin_enter(&timecounter_lock);
    253        1.2  christos 		atv.tv_sec = time_adjtime / 1000000;
    254        1.2  christos 		atv.tv_usec = time_adjtime % 1000000;
    255        1.2  christos 		if (atv.tv_usec < 0) {
    256        1.2  christos 			atv.tv_usec += 1000000;
    257        1.2  christos 			atv.tv_sec--;
    258        1.2  christos 		}
    259       1.28  christos 		mutex_spin_exit(&timecounter_lock);
    260       1.28  christos 
    261       1.28  christos 		error = copyout(&atv, SCARG_P32(uap, olddelta), sizeof(atv));
    262        1.2  christos 		if (error)
    263        1.2  christos 			return (error);
    264        1.2  christos 	}
    265        1.2  christos 
    266        1.2  christos 	if (SCARG_P32(uap, delta)) {
    267       1.28  christos 		error = copyin(SCARG_P32(uap, delta), &atv, sizeof(atv));
    268        1.2  christos 		if (error)
    269        1.2  christos 			return (error);
    270        1.2  christos 
    271       1.28  christos 		mutex_spin_enter(&timecounter_lock);
    272        1.2  christos 		time_adjtime = (int64_t)atv.tv_sec * 1000000 + atv.tv_usec;
    273        1.2  christos 		if (time_adjtime)
    274        1.2  christos 			/* We need to save the system time during shutdown */
    275        1.2  christos 			time_adjusted |= 1;
    276       1.28  christos 		mutex_spin_exit(&timecounter_lock);
    277        1.2  christos 	}
    278        1.2  christos 
    279        1.2  christos 	return 0;
    280        1.2  christos }
    281        1.2  christos 
    282        1.2  christos int
    283        1.2  christos compat_50_netbsd32_futimes(struct lwp *l,
    284        1.2  christos     const struct compat_50_netbsd32_futimes_args *uap, register_t *retval)
    285        1.2  christos {
    286        1.2  christos 	/* {
    287        1.2  christos 		syscallarg(int) fd;
    288        1.2  christos 		syscallarg(const netbsd32_timeval50p_t) tptr;
    289        1.2  christos 	} */
    290        1.2  christos 	int error;
    291        1.2  christos 	file_t *fp;
    292        1.2  christos 	struct timeval tv[2], *tvp;
    293        1.2  christos 
    294        1.2  christos 	error = get_utimes32(SCARG_P32(uap, tptr), tv, &tvp);
    295        1.2  christos 	if (error != 0)
    296        1.2  christos 		return error;
    297        1.2  christos 
    298        1.2  christos 	/* fd_getvnode() will use the descriptor for us */
    299        1.2  christos 	if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
    300        1.2  christos 		return error;
    301        1.2  christos 
    302       1.27      matt 	error = do_sys_utimes(l, fp->f_vnode, NULL, 0, tvp, UIO_SYSSPACE);
    303        1.2  christos 
    304        1.2  christos 	fd_putfile(SCARG(uap, fd));
    305        1.2  christos 	return error;
    306        1.2  christos }
    307        1.2  christos 
    308        1.2  christos int
    309        1.2  christos compat_50_netbsd32_clock_gettime(struct lwp *l,
    310        1.2  christos     const struct compat_50_netbsd32_clock_gettime_args *uap, register_t *retval)
    311        1.2  christos {
    312        1.2  christos 	/* {
    313        1.2  christos 		syscallarg(netbsd32_clockid_t) clock_id;
    314        1.2  christos 		syscallarg(netbsd32_timespec50p_t) tp;
    315        1.2  christos 	} */
    316       1.15     njoly 	int error;
    317        1.2  christos 	struct timespec ats;
    318        1.2  christos 	struct netbsd32_timespec50 ts32;
    319        1.2  christos 
    320       1.15     njoly 	error = clock_gettime1(SCARG(uap, clock_id), &ats);
    321       1.15     njoly 	if (error != 0)
    322       1.15     njoly 		return error;
    323        1.2  christos 
    324        1.2  christos 	netbsd32_from_timespec50(&ats, &ts32);
    325        1.2  christos 	return copyout(&ts32, SCARG_P32(uap, tp), sizeof(ts32));
    326        1.2  christos }
    327        1.2  christos 
    328        1.2  christos int
    329        1.2  christos compat_50_netbsd32_clock_settime(struct lwp *l,
    330        1.2  christos     const struct compat_50_netbsd32_clock_settime_args *uap, register_t *retval)
    331        1.2  christos {
    332        1.2  christos 	/* {
    333        1.2  christos 		syscallarg(netbsd32_clockid_t) clock_id;
    334        1.2  christos 		syscallarg(const netbsd32_timespec50p_t) tp;
    335        1.2  christos 	} */
    336        1.2  christos 	struct netbsd32_timespec50 ts32;
    337        1.2  christos 	struct timespec ats;
    338        1.2  christos 	int error;
    339        1.2  christos 
    340        1.2  christos 	if ((error = copyin(SCARG_P32(uap, tp), &ts32, sizeof(ts32))) != 0)
    341        1.2  christos 		return (error);
    342        1.2  christos 
    343        1.2  christos 	netbsd32_to_timespec50(&ts32, &ats);
    344       1.13     njoly 	return clock_settime1(l->l_proc, SCARG(uap, clock_id), &ats, true);
    345        1.2  christos }
    346        1.2  christos 
    347        1.2  christos int
    348        1.2  christos compat_50_netbsd32_clock_getres(struct lwp *l,
    349        1.2  christos     const struct compat_50_netbsd32_clock_getres_args *uap, register_t *retval)
    350        1.2  christos {
    351        1.2  christos 	/* {
    352        1.2  christos 		syscallarg(netbsd32_clockid_t) clock_id;
    353        1.2  christos 		syscallarg(netbsd32_timespec50p_t) tp;
    354        1.2  christos 	} */
    355        1.2  christos 	struct netbsd32_timespec50 ts32;
    356        1.2  christos 	struct timespec ts;
    357       1.30      maxv 	int error;
    358        1.2  christos 
    359       1.14     njoly 	error = clock_getres1(SCARG(uap, clock_id), &ts);
    360       1.14     njoly 	if (error != 0)
    361       1.14     njoly 		return error;
    362        1.2  christos 
    363        1.2  christos 	if (SCARG_P32(uap, tp)) {
    364        1.2  christos 		netbsd32_from_timespec50(&ts, &ts32);
    365       1.12     njoly 		error = copyout(&ts32, SCARG_P32(uap, tp), sizeof(ts32));
    366        1.2  christos 	}
    367        1.2  christos 
    368        1.2  christos 	return error;
    369        1.2  christos }
    370        1.2  christos 
    371        1.2  christos int
    372        1.2  christos compat_50_netbsd32_timer_settime(struct lwp *l,
    373        1.2  christos     const struct compat_50_netbsd32_timer_settime_args *uap, register_t *retval)
    374        1.2  christos {
    375        1.2  christos 	/* {
    376        1.2  christos 		syscallarg(netbsd32_timer_t) timerid;
    377        1.2  christos 		syscallarg(int) flags;
    378        1.2  christos 		syscallarg(const netbsd32_itimerspec50p_t) value;
    379        1.2  christos 		syscallarg(netbsd32_itimerspec50p_t) ovalue;
    380        1.2  christos 	} */
    381        1.2  christos 	int error;
    382        1.2  christos 	struct itimerspec value, ovalue, *ovp = NULL;
    383        1.2  christos 	struct netbsd32_itimerspec50 its32;
    384        1.2  christos 
    385        1.2  christos 	if ((error = copyin(SCARG_P32(uap, value), &its32, sizeof(its32))) != 0)
    386        1.2  christos 		return (error);
    387        1.2  christos 	netbsd32_to_timespec50(&its32.it_interval, &value.it_interval);
    388        1.2  christos 	netbsd32_to_timespec50(&its32.it_value, &value.it_value);
    389        1.2  christos 
    390        1.2  christos 	if (SCARG_P32(uap, ovalue))
    391        1.2  christos 		ovp = &ovalue;
    392        1.2  christos 
    393        1.2  christos 	if ((error = dotimer_settime(SCARG(uap, timerid), &value, ovp,
    394        1.2  christos 	    SCARG(uap, flags), l->l_proc)) != 0)
    395        1.2  christos 		return error;
    396        1.2  christos 
    397        1.2  christos 	if (ovp) {
    398        1.2  christos 		netbsd32_from_timespec50(&ovp->it_interval, &its32.it_interval);
    399        1.2  christos 		netbsd32_from_timespec50(&ovp->it_value, &its32.it_value);
    400        1.2  christos 		return copyout(&its32, SCARG_P32(uap, ovalue), sizeof(its32));
    401        1.2  christos 	}
    402        1.2  christos 	return 0;
    403        1.2  christos }
    404        1.2  christos 
    405        1.2  christos int
    406        1.2  christos compat_50_netbsd32_timer_gettime(struct lwp *l, const struct compat_50_netbsd32_timer_gettime_args *uap, register_t *retval)
    407        1.2  christos {
    408        1.2  christos 	/* {
    409        1.2  christos 		syscallarg(netbsd32_timer_t) timerid;
    410        1.2  christos 		syscallarg(netbsd32_itimerspec50p_t) value;
    411        1.2  christos 	} */
    412        1.2  christos 	int error;
    413        1.2  christos 	struct itimerspec its;
    414        1.2  christos 	struct netbsd32_itimerspec50 its32;
    415        1.2  christos 
    416        1.2  christos 	if ((error = dotimer_gettime(SCARG(uap, timerid), l->l_proc,
    417        1.2  christos 	    &its)) != 0)
    418        1.2  christos 		return error;
    419        1.2  christos 
    420        1.2  christos 	netbsd32_from_timespec50(&its.it_interval, &its32.it_interval);
    421        1.2  christos 	netbsd32_from_timespec50(&its.it_value, &its32.it_value);
    422        1.2  christos 
    423        1.2  christos 	return copyout(&its32, SCARG_P32(uap, value), sizeof(its32));
    424        1.2  christos }
    425        1.2  christos 
    426        1.2  christos int
    427        1.2  christos compat_50_netbsd32_nanosleep(struct lwp *l,
    428        1.2  christos     const struct compat_50_netbsd32_nanosleep_args *uap, register_t *retval)
    429        1.2  christos {
    430        1.2  christos 	/* {
    431        1.2  christos 		syscallarg(const netbsd32_timespec50p_t) rqtp;
    432        1.2  christos 		syscallarg(netbsd32_timespecp_t) rmtp;
    433        1.2  christos 	} */
    434        1.2  christos 	struct netbsd32_timespec50 ts32;
    435       1.11     njoly 	struct timespec rqt, rmt;
    436       1.11     njoly 	int error, error1;
    437        1.2  christos 
    438        1.2  christos 	error = copyin(SCARG_P32(uap, rqtp), &ts32, sizeof(ts32));
    439        1.2  christos 	if (error)
    440        1.2  christos 		return (error);
    441        1.2  christos 	netbsd32_to_timespec50(&ts32, &rqt);
    442        1.2  christos 
    443       1.21  christos 	error = nanosleep1(l, CLOCK_MONOTONIC, 0, &rqt,
    444       1.21  christos 	    SCARG_P32(uap, rmtp) ? &rmt : NULL);
    445       1.11     njoly 	if (SCARG_P32(uap, rmtp) == NULL || (error != 0 && error != EINTR))
    446       1.11     njoly 		return error;
    447        1.2  christos 
    448       1.11     njoly 	netbsd32_from_timespec50(&rmt, &ts32);
    449       1.11     njoly 	error1 = copyout(&ts32, SCARG_P32(uap,rmtp), sizeof(ts32));
    450       1.11     njoly 	return error1 ? error1 : error;
    451        1.2  christos }
    452        1.2  christos 
    453        1.2  christos static int
    454        1.2  christos compat_50_netbsd32_sigtimedwait_put_info(const void *src, void *dst, size_t size)
    455        1.2  christos {
    456        1.2  christos 	const siginfo_t *info = src;
    457        1.2  christos 	siginfo32_t info32;
    458        1.2  christos 
    459        1.2  christos 	netbsd32_si_to_si32(&info32, info);
    460        1.2  christos 
    461        1.2  christos 	return copyout(&info32, dst, sizeof(info32));
    462        1.2  christos }
    463        1.2  christos 
    464        1.2  christos static int
    465        1.2  christos compat_50_netbsd32_sigtimedwait_fetch_timeout(const void *src, void *dst, size_t size)
    466        1.2  christos {
    467        1.2  christos 	struct timespec *ts = dst;
    468        1.2  christos 	struct netbsd32_timespec50 ts32;
    469        1.2  christos 	int error;
    470        1.2  christos 
    471        1.2  christos 	error = copyin(src, &ts32, sizeof(ts32));
    472        1.2  christos 	if (error)
    473        1.2  christos 		return error;
    474        1.2  christos 
    475        1.2  christos 	netbsd32_to_timespec50(&ts32, ts);
    476        1.2  christos 	return 0;
    477        1.2  christos }
    478        1.2  christos 
    479        1.2  christos static int
    480        1.2  christos compat_50_netbsd32_sigtimedwait_put_timeout(const void *src, void *dst, size_t size)
    481        1.2  christos {
    482        1.2  christos 	const struct timespec *ts = src;
    483        1.2  christos 	struct netbsd32_timespec50 ts32;
    484        1.2  christos 
    485        1.2  christos 	netbsd32_from_timespec50(ts, &ts32);
    486        1.2  christos 
    487        1.2  christos 	return copyout(&ts32, dst, sizeof(ts32));
    488        1.2  christos }
    489        1.2  christos 
    490        1.2  christos int
    491        1.2  christos compat_50_netbsd32___sigtimedwait(struct lwp *l,
    492        1.2  christos     const struct compat_50_netbsd32___sigtimedwait_args *uap, register_t *retval)
    493        1.2  christos {
    494        1.2  christos 	/* {
    495        1.2  christos 		syscallarg(netbsd32_sigsetp_t) set;
    496        1.2  christos 		syscallarg(netbsd32_siginfop_t) info;
    497        1.2  christos 		syscallarg(netbsd32_timespec50p_t) timeout;
    498        1.2  christos 	} */
    499        1.2  christos 	struct sys_____sigtimedwait50_args ua;
    500       1.17  drochner 	int res;
    501        1.2  christos 
    502        1.2  christos 	NETBSD32TOP_UAP(set, const sigset_t);
    503        1.2  christos 	NETBSD32TOP_UAP(info, siginfo_t);
    504        1.2  christos 	NETBSD32TOP_UAP(timeout, struct timespec);
    505        1.2  christos 
    506       1.17  drochner 	res = sigtimedwait1(l, &ua, retval,
    507       1.20  christos 	    copyin,
    508        1.2  christos 	    compat_50_netbsd32_sigtimedwait_put_info,
    509        1.2  christos 	    compat_50_netbsd32_sigtimedwait_fetch_timeout,
    510        1.2  christos 	    compat_50_netbsd32_sigtimedwait_put_timeout);
    511       1.17  drochner 	if (!res)
    512       1.17  drochner 		*retval = 0; /* XXX NetBSD<=5 was not POSIX compliant */
    513       1.17  drochner 	return res;
    514        1.2  christos }
    515        1.2  christos 
    516        1.2  christos int
    517        1.2  christos compat_50_netbsd32_lutimes(struct lwp *l,
    518        1.2  christos     const struct compat_50_netbsd32_lutimes_args *uap, register_t *retval)
    519        1.2  christos {
    520        1.2  christos 	/* {
    521        1.2  christos 		syscallarg(const netbsd32_charp) path;
    522        1.2  christos 		syscallarg(const netbsd32_timeval50p_t) tptr;
    523        1.2  christos 	} */
    524        1.2  christos 	int error;
    525        1.2  christos 	struct timeval tv[2], *tvp;
    526        1.2  christos 
    527        1.2  christos 	error = get_utimes32(SCARG_P32(uap, tptr), tv, &tvp);
    528        1.2  christos 	if (error != 0)
    529        1.2  christos 		return error;
    530        1.2  christos 
    531        1.2  christos 	return do_sys_utimes(l, NULL, SCARG_P32(uap, path), NOFOLLOW,
    532        1.2  christos 	    tvp, UIO_SYSSPACE);
    533        1.2  christos }
    534        1.2  christos 
    535        1.2  christos int
    536        1.2  christos compat_50_netbsd32__lwp_park(struct lwp *l,
    537        1.2  christos     const struct compat_50_netbsd32__lwp_park_args *uap, register_t *retval)
    538        1.2  christos {
    539        1.2  christos 	/* {
    540        1.2  christos 		syscallarg(const netbsd32_timespec50p) ts;
    541        1.2  christos 		syscallarg(lwpid_t) unpark;
    542        1.2  christos 		syscallarg(netbsd32_voidp) hint;
    543        1.2  christos 		syscallarg(netbsd32_voidp) unparkhint;
    544        1.2  christos 	} */
    545        1.2  christos 	struct timespec ts, *tsp;
    546        1.2  christos 	struct netbsd32_timespec50 ts32;
    547        1.2  christos 	int error;
    548        1.2  christos 
    549        1.2  christos 	if (SCARG_P32(uap, ts) == NULL)
    550        1.2  christos 		tsp = NULL;
    551        1.2  christos 	else {
    552        1.2  christos 		error = copyin(SCARG_P32(uap, ts), &ts32, sizeof ts32);
    553        1.2  christos 		if (error != 0)
    554        1.2  christos 			return error;
    555        1.2  christos 		netbsd32_to_timespec50(&ts32, &ts);
    556        1.2  christos 		tsp = &ts;
    557        1.2  christos 	}
    558        1.2  christos 
    559        1.2  christos 	if (SCARG(uap, unpark) != 0) {
    560        1.2  christos 		error = lwp_unpark(SCARG(uap, unpark),
    561        1.2  christos 		    SCARG_P32(uap, unparkhint));
    562        1.2  christos 		if (error != 0)
    563        1.2  christos 			return error;
    564        1.2  christos 	}
    565        1.2  christos 
    566       1.23  christos 	return lwp_park(CLOCK_REALTIME, TIMER_ABSTIME, tsp,
    567       1.23  christos 	    SCARG_P32(uap, hint));
    568        1.2  christos }
    569        1.2  christos 
    570        1.2  christos static int
    571        1.2  christos netbsd32_kevent_fetch_timeout(const void *src, void *dest, size_t length)
    572        1.2  christos {
    573        1.2  christos 	struct netbsd32_timespec50 ts32;
    574        1.2  christos 	int error;
    575        1.2  christos 
    576        1.2  christos 	KASSERT(length == sizeof(struct timespec50));
    577        1.2  christos 
    578        1.2  christos 	error = copyin(src, &ts32, sizeof(ts32));
    579        1.2  christos 	if (error)
    580        1.2  christos 		return error;
    581        1.2  christos 	netbsd32_to_timespec50(&ts32, (struct timespec *)dest);
    582        1.2  christos 	return 0;
    583        1.2  christos }
    584        1.2  christos 
    585        1.2  christos static int
    586       1.26      matt netbsd32_kevent_fetch_changes(void *ctx, const struct kevent *changelist,
    587        1.2  christos     struct kevent *changes, size_t index, int n)
    588        1.2  christos {
    589        1.2  christos 	const struct netbsd32_kevent *src =
    590        1.2  christos 	    (const struct netbsd32_kevent *)changelist;
    591       1.26      matt 	struct netbsd32_kevent *kev32, *changes32 = ctx;
    592        1.2  christos 	int error, i;
    593        1.2  christos 
    594        1.2  christos 	error = copyin(src + index, changes32, n * sizeof(*changes32));
    595        1.2  christos 	if (error)
    596        1.2  christos 		return error;
    597        1.2  christos 	for (i = 0, kev32 = changes32; i < n; i++, kev32++, changes++)
    598        1.2  christos 		netbsd32_to_kevent(kev32, changes);
    599        1.2  christos 	return 0;
    600        1.2  christos }
    601        1.2  christos 
    602        1.2  christos static int
    603       1.26      matt netbsd32_kevent_put_events(void *ctx, struct kevent *events,
    604        1.2  christos     struct kevent *eventlist, size_t index, int n)
    605        1.2  christos {
    606       1.26      matt 	struct netbsd32_kevent *kev32, *events32 = ctx;
    607        1.2  christos 	int i;
    608        1.2  christos 
    609        1.2  christos 	for (i = 0, kev32 = events32; i < n; i++, kev32++, events++)
    610        1.2  christos 		netbsd32_from_kevent(events, kev32);
    611        1.2  christos 	kev32 = (struct netbsd32_kevent *)eventlist;
    612        1.2  christos 	return  copyout(events32, kev32, n * sizeof(*events32));
    613        1.2  christos }
    614        1.2  christos 
    615        1.2  christos int
    616        1.2  christos compat_50_netbsd32_kevent(struct lwp *l,
    617        1.2  christos     const struct compat_50_netbsd32_kevent_args *uap, register_t *retval)
    618        1.2  christos {
    619        1.2  christos 	/* {
    620        1.2  christos 		syscallarg(int) fd;
    621        1.2  christos 		syscallarg(netbsd32_keventp_t) changelist;
    622        1.2  christos 		syscallarg(netbsd32_size_t) nchanges;
    623        1.2  christos 		syscallarg(netbsd32_keventp_t) eventlist;
    624        1.2  christos 		syscallarg(netbsd32_size_t) nevents;
    625        1.2  christos 		syscallarg(netbsd32_timespec50p_t) timeout;
    626        1.2  christos 	} */
    627        1.2  christos 	int error;
    628        1.2  christos 	size_t maxalloc, nchanges, nevents;
    629        1.2  christos 	struct kevent_ops netbsd32_kevent_ops = {
    630       1.19     joerg 		.keo_fetch_timeout = netbsd32_kevent_fetch_timeout,
    631       1.19     joerg 		.keo_fetch_changes = netbsd32_kevent_fetch_changes,
    632       1.19     joerg 		.keo_put_events = netbsd32_kevent_put_events,
    633        1.2  christos 	};
    634        1.2  christos 
    635        1.2  christos 	nchanges = SCARG(uap, nchanges);
    636        1.2  christos 	nevents = SCARG(uap, nevents);
    637       1.24      maxv 	maxalloc = KQ_NEVENTS;
    638       1.24      maxv 
    639        1.2  christos 	netbsd32_kevent_ops.keo_private =
    640       1.16     rmind 	    kmem_alloc(maxalloc * sizeof(struct netbsd32_kevent), KM_SLEEP);
    641        1.2  christos 
    642        1.2  christos 	error = kevent1(retval, SCARG(uap, fd),
    643        1.2  christos 	    NETBSD32PTR64(SCARG(uap, changelist)), nchanges,
    644        1.2  christos 	    NETBSD32PTR64(SCARG(uap, eventlist)), nevents,
    645        1.2  christos 	    NETBSD32PTR64(SCARG(uap, timeout)), &netbsd32_kevent_ops);
    646        1.2  christos 
    647       1.16     rmind 	kmem_free(netbsd32_kevent_ops.keo_private,
    648       1.16     rmind 	    maxalloc * sizeof(struct netbsd32_kevent));
    649        1.2  christos 	return error;
    650        1.2  christos }
    651        1.2  christos 
    652        1.2  christos int
    653        1.2  christos compat_50_netbsd32_pselect(struct lwp *l,
    654        1.2  christos     const struct compat_50_netbsd32_pselect_args *uap, register_t *retval)
    655        1.2  christos {
    656        1.2  christos 	/* {
    657        1.2  christos 		syscallarg(int) nd;
    658        1.2  christos 		syscallarg(netbsd32_fd_setp_t) in;
    659        1.2  christos 		syscallarg(netbsd32_fd_setp_t) ou;
    660        1.2  christos 		syscallarg(netbsd32_fd_setp_t) ex;
    661        1.2  christos 		syscallarg(const netbsd32_timespec50p_t) ts;
    662        1.2  christos 		syscallarg(const netbsd32_sigsetp_t) mask;
    663        1.2  christos 	} */
    664        1.2  christos 	int error;
    665        1.2  christos 	struct netbsd32_timespec50 ts32;
    666        1.4  christos 	struct timespec ats, *ts = NULL;
    667        1.2  christos 	sigset_t amask, *mask = NULL;
    668        1.2  christos 
    669        1.2  christos 	if (SCARG_P32(uap, ts)) {
    670        1.2  christos 		error = copyin(SCARG_P32(uap, ts), &ts32, sizeof(ts32));
    671        1.2  christos 		if (error != 0)
    672        1.2  christos 			return error;
    673        1.4  christos 		netbsd32_to_timespec50(&ts32, &ats);
    674        1.4  christos 		ts = &ats;
    675        1.2  christos 	}
    676        1.2  christos 	if (SCARG_P32(uap, mask)) {
    677        1.2  christos 		error = copyin(SCARG_P32(uap, mask), &amask, sizeof(amask));
    678        1.2  christos 		if (error != 0)
    679        1.2  christos 			return error;
    680        1.2  christos 		mask = &amask;
    681        1.2  christos 	}
    682        1.2  christos 
    683        1.7     rmind 	return selcommon(retval, SCARG(uap, nd), SCARG_P32(uap, in),
    684        1.4  christos 	    SCARG_P32(uap, ou), SCARG_P32(uap, ex), ts, mask);
    685        1.2  christos }
    686        1.2  christos 
    687        1.2  christos int
    688        1.2  christos compat_50_netbsd32_pollts(struct lwp *l,
    689        1.2  christos     const struct compat_50_netbsd32_pollts_args *uap, register_t *retval)
    690        1.2  christos {
    691        1.2  christos 	/* {
    692        1.2  christos 		syscallarg(struct netbsd32_pollfdp_t) fds;
    693        1.2  christos 		syscallarg(u_int) nfds;
    694        1.2  christos 		syscallarg(const netbsd32_timespec50p_t) ts;
    695        1.2  christos 		syscallarg(const netbsd32_sigsetp_t) mask;
    696        1.2  christos 	} */
    697        1.2  christos 	int error;
    698        1.2  christos 	struct netbsd32_timespec50 ts32;
    699        1.4  christos 	struct timespec ats, *ts = NULL;
    700        1.2  christos 	sigset_t amask, *mask = NULL;
    701        1.2  christos 
    702        1.2  christos 	if (SCARG_P32(uap, ts)) {
    703        1.2  christos 		error = copyin(SCARG_P32(uap, ts), &ts32, sizeof(ts32));
    704        1.2  christos 		if (error != 0)
    705        1.2  christos 			return error;
    706        1.4  christos 		netbsd32_to_timespec50(&ts32, &ats);
    707        1.4  christos 		ts = &ats;
    708        1.2  christos 	}
    709        1.2  christos 	if (NETBSD32PTR64( SCARG(uap, mask))) {
    710        1.2  christos 		error = copyin(SCARG_P32(uap, mask), &amask, sizeof(amask));
    711        1.2  christos 		if (error != 0)
    712        1.2  christos 			return error;
    713        1.2  christos 		mask = &amask;
    714        1.2  christos 	}
    715        1.2  christos 
    716        1.7     rmind 	return pollcommon(retval, SCARG_P32(uap, fds),
    717        1.4  christos 	    SCARG(uap, nfds), ts, mask);
    718        1.2  christos }
    719        1.2  christos 
    720        1.2  christos int
    721        1.2  christos compat_50_netbsd32___stat30(struct lwp *l,
    722        1.2  christos     const struct compat_50_netbsd32___stat30_args *uap, register_t *retval)
    723        1.2  christos {
    724        1.2  christos 	/* {
    725        1.2  christos 		syscallarg(const netbsd32_charp) path;
    726        1.2  christos 		syscallarg(netbsd32_stat50p_t) ub;
    727        1.2  christos 	} */
    728        1.2  christos 	struct netbsd32_stat50 sb32;
    729        1.2  christos 	struct stat sb;
    730        1.2  christos 	int error;
    731        1.2  christos 	const char *path;
    732        1.2  christos 
    733        1.2  christos 	path = SCARG_P32(uap, path);
    734        1.2  christos 
    735        1.2  christos 	error = do_sys_stat(path, FOLLOW, &sb);
    736        1.2  christos 	if (error)
    737        1.2  christos 		return error;
    738        1.2  christos 	netbsd32_from___stat50(&sb, &sb32);
    739        1.2  christos 	error = copyout(&sb32, SCARG_P32(uap, ub), sizeof(sb32));
    740        1.2  christos 	return error;
    741        1.2  christos }
    742        1.2  christos 
    743        1.2  christos int
    744        1.2  christos compat_50_netbsd32___fstat30(struct lwp *l,
    745        1.2  christos     const struct compat_50_netbsd32___fstat30_args *uap, register_t *retval)
    746        1.2  christos {
    747        1.2  christos 	/* {
    748        1.2  christos 		syscallarg(int) fd;
    749        1.2  christos 		syscallarg(netbsd32_stat50p_t) sb;
    750        1.2  christos 	} */
    751        1.2  christos 	struct netbsd32_stat50 sb32;
    752        1.2  christos 	struct stat ub;
    753        1.3     njoly 	int error;
    754        1.2  christos 
    755        1.3     njoly 	error = do_sys_fstat(SCARG(uap, fd), &ub);
    756        1.2  christos 	if (error == 0) {
    757        1.2  christos 		netbsd32_from___stat50(&ub, &sb32);
    758        1.2  christos 		error = copyout(&sb32, SCARG_P32(uap, sb), sizeof(sb32));
    759        1.2  christos 	}
    760        1.2  christos 	return error;
    761        1.2  christos }
    762        1.2  christos 
    763        1.2  christos int
    764        1.2  christos compat_50_netbsd32___lstat30(struct lwp *l,
    765        1.2  christos     const struct compat_50_netbsd32___lstat30_args *uap, register_t *retval)
    766        1.2  christos {
    767        1.2  christos 	/* {
    768        1.2  christos 		syscallarg(const netbsd32_charp) path;
    769        1.2  christos 		syscallarg(netbsd32_stat50p_t) ub;
    770        1.2  christos 	} */
    771        1.2  christos 	struct netbsd32_stat50 sb32;
    772        1.2  christos 	struct stat sb;
    773        1.2  christos 	int error;
    774        1.2  christos 	const char *path;
    775        1.2  christos 
    776        1.2  christos 	path = SCARG_P32(uap, path);
    777        1.2  christos 
    778        1.2  christos 	error = do_sys_stat(path, NOFOLLOW, &sb);
    779        1.2  christos 	if (error)
    780        1.2  christos 		return error;
    781        1.2  christos 	netbsd32_from___stat50(&sb, &sb32);
    782        1.2  christos 	error = copyout(&sb32, SCARG_P32(uap, ub), sizeof(sb32));
    783        1.2  christos 	return error;
    784        1.2  christos }
    785        1.2  christos 
    786        1.2  christos int
    787        1.2  christos compat_50_netbsd32___fhstat40(struct lwp *l, const struct compat_50_netbsd32___fhstat40_args *uap, register_t *retval)
    788        1.2  christos {
    789        1.2  christos 	/* {
    790        1.2  christos 		syscallarg(const netbsd32_pointer_t) fhp;
    791        1.2  christos 		syscallarg(netbsd32_size_t) fh_size;
    792        1.2  christos 		syscallarg(netbsd32_stat50p_t) sb;
    793        1.2  christos 	} */
    794        1.2  christos 	struct stat sb;
    795        1.2  christos 	struct netbsd32_stat50 sb32;
    796        1.2  christos 	int error;
    797        1.2  christos 
    798        1.2  christos 	error = do_fhstat(l, SCARG_P32(uap, fhp), SCARG(uap, fh_size), &sb);
    799        1.2  christos 	if (error != 0) {
    800        1.2  christos 		netbsd32_from___stat50(&sb, &sb32);
    801        1.2  christos 		error = copyout(&sb32, SCARG_P32(uap, sb), sizeof(sb));
    802        1.2  christos 	}
    803        1.2  christos 	return error;
    804        1.2  christos }
    805        1.2  christos 
    806        1.2  christos int
    807        1.2  christos compat_50_netbsd32_wait4(struct lwp *l, const struct compat_50_netbsd32_wait4_args *uap, register_t *retval)
    808        1.2  christos {
    809        1.2  christos 	/* {
    810        1.2  christos 		syscallarg(int) pid;
    811        1.2  christos 		syscallarg(netbsd32_intp) status;
    812        1.2  christos 		syscallarg(int) options;
    813        1.2  christos 		syscallarg(netbsd32_rusage50p_t) rusage;
    814        1.2  christos 	} */
    815        1.6     rmind 	int error, status, pid = SCARG(uap, pid);
    816        1.6     rmind 	struct netbsd32_rusage50 ru32;
    817        1.6     rmind 	struct rusage ru;
    818        1.2  christos 
    819        1.6     rmind 	error = do_sys_wait(&pid, &status, SCARG(uap, options),
    820        1.6     rmind 	    SCARG_P32(uap, rusage) != NULL ? &ru : NULL);
    821        1.2  christos 
    822        1.2  christos 	retval[0] = pid;
    823        1.2  christos 	if (pid == 0)
    824        1.2  christos 		return error;
    825        1.2  christos 
    826        1.2  christos 	if (SCARG_P32(uap, rusage)) {
    827        1.2  christos 		netbsd32_from_rusage50(&ru, &ru32);
    828        1.2  christos 		error = copyout(&ru32, SCARG_P32(uap, rusage), sizeof(ru32));
    829        1.2  christos 	}
    830        1.2  christos 
    831        1.2  christos 	if (error == 0 && SCARG_P32(uap, status))
    832        1.2  christos 		error = copyout(&status, SCARG_P32(uap, status), sizeof(status));
    833        1.2  christos 
    834        1.2  christos 	return error;
    835        1.2  christos }
    836        1.2  christos 
    837        1.2  christos 
    838        1.2  christos int
    839        1.2  christos compat_50_netbsd32_getrusage(struct lwp *l, const struct compat_50_netbsd32_getrusage_args *uap, register_t *retval)
    840        1.2  christos {
    841        1.2  christos 	/* {
    842        1.2  christos 		syscallarg(int) who;
    843        1.2  christos 		syscallarg(netbsd32_rusage50p_t) rusage;
    844        1.2  christos 	} */
    845       1.22     njoly 	int error;
    846        1.2  christos 	struct proc *p = l->l_proc;
    847       1.22     njoly 	struct rusage ru;
    848       1.22     njoly 	struct netbsd32_rusage50 ru32;
    849        1.2  christos 
    850       1.22     njoly 	error = getrusage1(p, SCARG(uap, who), &ru);
    851       1.22     njoly 	if (error != 0)
    852       1.22     njoly 		return error;
    853        1.2  christos 
    854       1.22     njoly 	netbsd32_from_rusage50(&ru, &ru32);
    855       1.22     njoly 	return copyout(&ru32, SCARG_P32(uap, rusage), sizeof(ru32));
    856        1.2  christos }
    857        1.2  christos 
    858        1.2  christos int
    859        1.2  christos compat_50_netbsd32_setitimer(struct lwp *l,
    860        1.2  christos     const struct compat_50_netbsd32_setitimer_args *uap, register_t *retval)
    861        1.2  christos {
    862        1.2  christos 	/* {
    863        1.2  christos 		syscallarg(int) which;
    864        1.2  christos 		syscallarg(const netbsd32_itimerval50p_t) itv;
    865        1.2  christos 		syscallarg(netbsd32_itimerval50p_t) oitv;
    866        1.2  christos 	} */
    867        1.2  christos 	struct proc *p = l->l_proc;
    868        1.2  christos 	struct netbsd32_itimerval50 s32it, *itv32;
    869        1.2  christos 	int which = SCARG(uap, which);
    870        1.2  christos 	struct compat_50_netbsd32_getitimer_args getargs;
    871        1.2  christos 	struct itimerval aitv;
    872        1.2  christos 	int error;
    873        1.2  christos 
    874        1.2  christos 	if ((u_int)which > ITIMER_PROF)
    875        1.2  christos 		return (EINVAL);
    876        1.2  christos 	itv32 = SCARG_P32(uap, itv);
    877        1.2  christos 	if (itv32) {
    878        1.2  christos 		if ((error = copyin(itv32, &s32it, sizeof(s32it))))
    879        1.2  christos 			return (error);
    880        1.2  christos 		netbsd32_to_itimerval50(&s32it, &aitv);
    881        1.2  christos 	}
    882        1.2  christos 	if (SCARG_P32(uap, oitv) != 0) {
    883        1.2  christos 		SCARG(&getargs, which) = which;
    884        1.2  christos 		SCARG(&getargs, itv) = SCARG(uap, oitv);
    885        1.2  christos 		if ((error = compat_50_netbsd32_getitimer(l, &getargs, retval)) != 0)
    886        1.2  christos 			return (error);
    887        1.2  christos 	}
    888        1.2  christos 	if (itv32 == 0)
    889        1.2  christos 		return 0;
    890        1.2  christos 
    891        1.2  christos 	return dosetitimer(p, which, &aitv);
    892        1.2  christos }
    893        1.2  christos 
    894        1.2  christos int
    895        1.2  christos compat_50_netbsd32_getitimer(struct lwp *l, const struct compat_50_netbsd32_getitimer_args *uap, register_t *retval)
    896        1.2  christos {
    897        1.2  christos 	/* {
    898        1.2  christos 		syscallarg(int) which;
    899        1.2  christos 		syscallarg(netbsd32_itimerval50p_t) itv;
    900        1.2  christos 	} */
    901        1.2  christos 	struct proc *p = l->l_proc;
    902        1.2  christos 	struct netbsd32_itimerval50 s32it;
    903        1.2  christos 	struct itimerval aitv;
    904        1.2  christos 	int error;
    905        1.2  christos 
    906        1.2  christos 	error = dogetitimer(p, SCARG(uap, which), &aitv);
    907        1.2  christos 	if (error)
    908        1.2  christos 		return error;
    909        1.2  christos 
    910        1.2  christos 	netbsd32_from_itimerval50(&aitv, &s32it);
    911        1.2  christos 	return copyout(&s32it, SCARG_P32(uap, itv), sizeof(s32it));
    912        1.2  christos }
    913        1.2  christos 
    914       1.18    bouyer int
    915       1.18    bouyer compat_50_netbsd32_quotactl(struct lwp *l, const struct compat_50_netbsd32_quotactl_args *uap, register_t *retval)
    916       1.18    bouyer {
    917       1.18    bouyer 	/* {
    918       1.18    bouyer 		syscallarg(const netbsd32_charp) path;
    919       1.18    bouyer 		syscallarg(int) cmd;
    920       1.18    bouyer 		syscallarg(int) uid;
    921       1.18    bouyer 		syscallarg(netbsd32_voidp) arg;
    922       1.18    bouyer 	} */
    923       1.18    bouyer 	struct compat_50_sys_quotactl_args ua;
    924       1.18    bouyer 
    925       1.18    bouyer 	NETBSD32TOP_UAP(path, const char);
    926       1.18    bouyer 	NETBSD32TO64_UAP(cmd);
    927       1.18    bouyer 	NETBSD32TO64_UAP(uid);
    928       1.18    bouyer 	NETBSD32TOP_UAP(arg, void *);
    929       1.18    bouyer 	return (compat_50_sys_quotactl(l, &ua, retval));
    930       1.18    bouyer }
    931       1.29    martin 
    932  1.32.16.1  pgoyette static struct syscall_package compat_netbsd32_50_syscalls[] = {
    933  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_mknod, 0,
    934  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_mknod },
    935  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_select, 0,
    936  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_select },
    937  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_gettimeofday, 0,
    938  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_gettimeofday },
    939  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_settimeofday, 0,
    940  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_settimeofday },
    941  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_utimes, 0,
    942  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_utimes },
    943  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_futimes, 0,
    944  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_futimes },
    945  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_adjtime, 0,
    946  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_adjtime },
    947  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_clock_gettime, 0,
    948  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_clock_gettime },
    949  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_clock_settime, 0,
    950  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_clock_settime },
    951  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_clock_getres, 0,
    952  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_clock_getres },
    953  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_timer_settime, 0,
    954  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_timer_settime },
    955  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_timer_gettime, 0,
    956  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_timer_gettime },
    957  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_nanosleep, 0,
    958  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_nanosleep },
    959  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32___sigtimedwait, 0,
    960  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32___sigtimedwait },
    961  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_lutimes, 0,
    962  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_lutimes },
    963  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32__lwp_park, 0,
    964  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32__lwp_park },
    965  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_kevent, 0,
    966  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_kevent },
    967  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_pselect, 0,
    968  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_pselect },
    969  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_pollts, 0,
    970  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_pollts },
    971  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32___stat30, 0,
    972  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32___stat30 },
    973  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32___fstat30, 0,
    974  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32___fstat30 },
    975  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32___lstat30, 0,
    976  1.32.16.3  pgoyette 	    (sy_call_t *)compat_50_netbsd32___lstat30 },
    977  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32___fhstat40, 0,
    978  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32___fhstat40 },
    979  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_wait4, 0,
    980  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_wait4 },
    981  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_getrusage, 0,
    982  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_getrusage },
    983  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_setitimer, 0,
    984  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_setitimer },
    985  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_getitimer, 0,
    986  1.32.16.3  pgoyette 	    (sy_call_t *)compat_50_netbsd32_getitimer },
    987  1.32.16.3  pgoyette 	{ NETBSD32_SYS_compat_50_netbsd32_quotactl, 0,
    988  1.32.16.1  pgoyette 	    (sy_call_t *)compat_50_netbsd32_quotactl },
    989  1.32.16.1  pgoyette 	{ 0, 0, NULL }
    990  1.32.16.1  pgoyette };
    991  1.32.16.1  pgoyette 
    992  1.32.16.1  pgoyette MODULE(MODULE_CLASS_EXEC, compat_netbsd32_50, "compat_netbsd32,compat_50");
    993  1.32.16.1  pgoyette 
    994  1.32.16.1  pgoyette static int
    995  1.32.16.1  pgoyette compat_netbsd32_50_modcmd(modcmd_t cmd, void *arg)
    996  1.32.16.1  pgoyette {
    997  1.32.16.7  pgoyette 	int ret;
    998  1.32.16.1  pgoyette 
    999  1.32.16.1  pgoyette 	switch (cmd) {
   1000  1.32.16.4  pgoyette 	case MODULE_CMD_INIT:
   1001  1.32.16.7  pgoyette 		vec_compat32_50_rnd_ioctl = compat32_50_rnd_ioctl;
   1002  1.32.16.7  pgoyette                 ret = syscall_establish(&emul_netbsd32,
   1003  1.32.16.4  pgoyette 		    compat_netbsd32_50_syscalls);
   1004  1.32.16.7  pgoyette 		if (ret)
   1005  1.32.16.7  pgoyette 			vec_compat32_50_rnd_ioctl = (void *)enosys;
   1006  1.32.16.7  pgoyette 		return ret;
   1007  1.32.16.4  pgoyette 
   1008  1.32.16.4  pgoyette 	case MODULE_CMD_FINI:
   1009  1.32.16.7  pgoyette 		vec_compat32_50_rnd_ioctl = (void *)enosys;
   1010  1.32.16.7  pgoyette                 ret = syscall_disestablish(&emul_netbsd32,
   1011  1.32.16.4  pgoyette 		    compat_netbsd32_50_syscalls);
   1012  1.32.16.7  pgoyette 		if (ret)
   1013  1.32.16.7  pgoyette 			vec_compat32_50_rnd_ioctl = compat32_50_rnd_ioctl;
   1014  1.32.16.7  pgoyette 		return ret;
   1015  1.32.16.1  pgoyette 
   1016  1.32.16.1  pgoyette 	default:
   1017  1.32.16.1  pgoyette 		return ENOTTY;
   1018  1.32.16.1  pgoyette 	}
   1019  1.32.16.1  pgoyette }
   1020       1.32  pgoyette #endif /* COMPAT_50 */
   1021