Home | History | Annotate | Line # | Download | only in common
linux_misc.c revision 1.4
      1  1.4  mycroft /*	$NetBSD: linux_misc.c,v 1.4 1995/03/22 05:24:47 mycroft Exp $	*/
      2  1.1     fvdl 
      3  1.1     fvdl /*
      4  1.1     fvdl  * Copyright (c) 1995 Frank van der Linden
      5  1.1     fvdl  * All rights reserved.
      6  1.1     fvdl  *
      7  1.1     fvdl  * Redistribution and use in source and binary forms, with or without
      8  1.1     fvdl  * modification, are permitted provided that the following conditions
      9  1.1     fvdl  * are met:
     10  1.1     fvdl  * 1. Redistributions of source code must retain the above copyright
     11  1.1     fvdl  *    notice, this list of conditions and the following disclaimer.
     12  1.1     fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1     fvdl  *    notice, this list of conditions and the following disclaimer in the
     14  1.1     fvdl  *    documentation and/or other materials provided with the distribution.
     15  1.1     fvdl  * 3. All advertising materials mentioning features or use of this software
     16  1.1     fvdl  *    must display the following acknowledgement:
     17  1.1     fvdl  *      This product includes software developed for the NetBSD Project
     18  1.1     fvdl  *      by Frank van der Linden
     19  1.1     fvdl  * 4. The name of the author may not be used to endorse or promote products
     20  1.1     fvdl  *    derived from this software without specific prior written permission
     21  1.1     fvdl  *
     22  1.1     fvdl  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  1.1     fvdl  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  1.1     fvdl  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  1.1     fvdl  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  1.1     fvdl  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  1.1     fvdl  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  1.1     fvdl  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  1.1     fvdl  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  1.1     fvdl  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  1.1     fvdl  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1     fvdl  */
     33  1.1     fvdl 
     34  1.1     fvdl /*
     35  1.1     fvdl  * Linux compatibility module. Try to deal with various Linux system calls.
     36  1.1     fvdl  */
     37  1.1     fvdl 
     38  1.1     fvdl #include <sys/param.h>
     39  1.1     fvdl #include <sys/systm.h>
     40  1.1     fvdl #include <sys/namei.h>
     41  1.1     fvdl #include <sys/proc.h>
     42  1.1     fvdl #include <sys/dir.h>
     43  1.1     fvdl #include <sys/file.h>
     44  1.1     fvdl #include <sys/stat.h>
     45  1.1     fvdl #include <sys/filedesc.h>
     46  1.1     fvdl #include <sys/ioctl.h>
     47  1.1     fvdl #include <sys/kernel.h>
     48  1.1     fvdl #include <sys/malloc.h>
     49  1.1     fvdl #include <sys/mbuf.h>
     50  1.1     fvdl #include <sys/mman.h>
     51  1.1     fvdl #include <sys/mount.h>
     52  1.1     fvdl #include <sys/ptrace.h>
     53  1.1     fvdl #include <sys/resource.h>
     54  1.1     fvdl #include <sys/resourcevar.h>
     55  1.1     fvdl #include <sys/signal.h>
     56  1.1     fvdl #include <sys/signalvar.h>
     57  1.1     fvdl #include <sys/socket.h>
     58  1.1     fvdl #include <sys/time.h>
     59  1.1     fvdl #include <sys/times.h>
     60  1.1     fvdl #include <sys/vnode.h>
     61  1.1     fvdl #include <sys/uio.h>
     62  1.1     fvdl #include <sys/wait.h>
     63  1.1     fvdl #include <sys/utsname.h>
     64  1.1     fvdl #include <sys/unistd.h>
     65  1.1     fvdl 
     66  1.1     fvdl #include <sys/syscallargs.h>
     67  1.1     fvdl 
     68  1.1     fvdl #include <vm/vm.h>
     69  1.1     fvdl #include <vm/vm_param.h>
     70  1.1     fvdl 
     71  1.1     fvdl #include <compat/linux/linux_types.h>
     72  1.1     fvdl #include <compat/linux/linux_fcntl.h>
     73  1.1     fvdl #include <compat/linux/linux_mmap.h>
     74  1.1     fvdl #include <compat/linux/linux_syscallargs.h>
     75  1.1     fvdl #include <compat/linux/linux_util.h>
     76  1.1     fvdl #include <compat/linux/linux_dirent.h>
     77  1.1     fvdl 
     78  1.1     fvdl /*
     79  1.1     fvdl  * The information on a terminated (or stopped) process needs
     80  1.1     fvdl  * to be converted in order for Linux binaries to get a valid signal
     81  1.1     fvdl  * number out of it.
     82  1.1     fvdl  */
     83  1.1     fvdl static int
     84  1.1     fvdl bsd_to_linux_wstat(status)
     85  1.1     fvdl 	int *status;
     86  1.1     fvdl {
     87  1.1     fvdl 	if (WIFSIGNALED(*status))
     88  1.1     fvdl 		*status = (*status & ~0177) |
     89  1.1     fvdl 		    bsd_to_linux_sig(WTERMSIG(*status));
     90  1.1     fvdl 	else if (WIFSTOPPED(*status))
     91  1.1     fvdl 		*status = (*status & ~0xff00) |
     92  1.1     fvdl 		    (bsd_to_linux_sig(WSTOPSIG(*status)) << 8);
     93  1.1     fvdl }
     94  1.1     fvdl 
     95  1.1     fvdl /*
     96  1.1     fvdl  * waitpid(2). Passed on to the NetBSD call, surrounded by code to
     97  1.1     fvdl  * reserve some space for a NetBSD-style wait status, and converting
     98  1.1     fvdl  * it to what Linux wants.
     99  1.1     fvdl  */
    100  1.1     fvdl int
    101  1.1     fvdl linux_waitpid(p, uap, retval)
    102  1.1     fvdl 	struct proc *p;
    103  1.1     fvdl 	struct linux_waitpid_args /* {
    104  1.1     fvdl 		syscallarg(int) pid;
    105  1.1     fvdl 		syscallarg(int *) status;
    106  1.1     fvdl 		syscallarg(int) options;
    107  1.1     fvdl 	} */ *uap;
    108  1.1     fvdl 	register_t *retval;
    109  1.1     fvdl {
    110  1.1     fvdl 	struct wait4_args w4a;
    111  1.1     fvdl 	int error, *status, tstat;
    112  1.1     fvdl 	caddr_t sg;
    113  1.1     fvdl 
    114  1.1     fvdl 	sg = stackgap_init();
    115  1.1     fvdl 	status = (int *) stackgap_alloc(&sg, sizeof status);
    116  1.1     fvdl 
    117  1.1     fvdl 	SCARG(&w4a, pid) = SCARG(uap, pid);
    118  1.1     fvdl 	SCARG(&w4a, status) = status;
    119  1.1     fvdl 	SCARG(&w4a, options) = SCARG(uap, options);
    120  1.1     fvdl 	SCARG(&w4a, rusage) = NULL;
    121  1.1     fvdl 
    122  1.1     fvdl 	if ((error = wait4(p, &w4a, retval)))
    123  1.1     fvdl 		return error;
    124  1.1     fvdl 
    125  1.1     fvdl 	if ((error = copyin(status, &tstat, sizeof tstat)))
    126  1.1     fvdl 		return error;
    127  1.1     fvdl 
    128  1.1     fvdl 	bsd_to_linux_wstat(&tstat);
    129  1.1     fvdl 
    130  1.1     fvdl 	return copyout(&tstat, SCARG(uap, status), sizeof tstat);
    131  1.1     fvdl }
    132  1.1     fvdl 
    133  1.1     fvdl /*
    134  1.1     fvdl  * This is very much the same as waitpid()
    135  1.1     fvdl  */
    136  1.1     fvdl int
    137  1.1     fvdl linux_wait4(p, uap, retval)
    138  1.1     fvdl 	struct proc *p;
    139  1.1     fvdl 	struct linux_wait4_args /* {
    140  1.1     fvdl 		syscallarg(int) pid;
    141  1.1     fvdl 		syscallarg(int *) status;
    142  1.1     fvdl 		syscallarg(int) options;
    143  1.1     fvdl 		syscallarg(struct rusage *) rusage;
    144  1.1     fvdl 	} */ *uap;
    145  1.1     fvdl 	register_t *retval;
    146  1.1     fvdl {
    147  1.1     fvdl 	struct wait4_args w4a;
    148  1.1     fvdl 	int error, *status, tstat;
    149  1.1     fvdl 	caddr_t sg;
    150  1.1     fvdl 
    151  1.1     fvdl 	sg = stackgap_init();
    152  1.1     fvdl 	status = (int *) stackgap_alloc(&sg, sizeof status);
    153  1.1     fvdl 
    154  1.1     fvdl 	SCARG(&w4a, pid) = SCARG(uap, pid);
    155  1.1     fvdl 	SCARG(&w4a, status) = status;
    156  1.1     fvdl 	SCARG(&w4a, options) = SCARG(uap, options);
    157  1.1     fvdl 	SCARG(&w4a, rusage) = SCARG(uap, rusage);
    158  1.1     fvdl 
    159  1.1     fvdl 	if ((error = wait4(p, &w4a, retval)))
    160  1.1     fvdl 		return error;
    161  1.1     fvdl 
    162  1.1     fvdl 	if ((error = copyin(status, &tstat, sizeof tstat)))
    163  1.1     fvdl 		return error;
    164  1.1     fvdl 
    165  1.1     fvdl 	bsd_to_linux_wstat(&tstat);
    166  1.1     fvdl 
    167  1.1     fvdl 	return copyout(&tstat, SCARG(uap, status), sizeof tstat);
    168  1.1     fvdl }
    169  1.1     fvdl 
    170  1.1     fvdl /*
    171  1.1     fvdl  * This is the old brk(2) call. I don't think anything in the Linux
    172  1.1     fvdl  * world uses this anymore
    173  1.1     fvdl  */
    174  1.1     fvdl int
    175  1.1     fvdl linux_break(p, uap, retval)
    176  1.1     fvdl 	struct proc *p;
    177  1.1     fvdl 	struct linux_brk_args /* {
    178  1.1     fvdl 		syscallarg(char *) nsize;
    179  1.1     fvdl 	} */ *uap;
    180  1.1     fvdl 	register_t *retval;
    181  1.1     fvdl {
    182  1.1     fvdl 	return ENOSYS;
    183  1.1     fvdl }
    184  1.1     fvdl 
    185  1.1     fvdl /*
    186  1.1     fvdl  * Linux brk(2). The check if the new address is >= the old one is
    187  1.1     fvdl  * done in the kernel in Linux. NetBSD does it in the library.
    188  1.1     fvdl  */
    189  1.1     fvdl int
    190  1.1     fvdl linux_brk(p, uap, retval)
    191  1.1     fvdl 	struct proc *p;
    192  1.1     fvdl 	struct linux_brk_args /* {
    193  1.1     fvdl 		syscallarg(char *) nsize;
    194  1.1     fvdl 	} */ *uap;
    195  1.1     fvdl 	register_t *retval;
    196  1.1     fvdl {
    197  1.1     fvdl 	char *nbrk = SCARG(uap, nsize);
    198  1.1     fvdl 	struct obreak_args oba;
    199  1.1     fvdl 	struct vmspace *vm = p->p_vmspace;
    200  1.1     fvdl 	int error = 0;
    201  1.1     fvdl 	caddr_t oldbrk, newbrk;
    202  1.1     fvdl 
    203  1.1     fvdl 	oldbrk = vm->vm_daddr + ctob(vm->vm_dsize);
    204  1.1     fvdl 	/*
    205  1.1     fvdl 	 * XXX inconsistent.. Linux always returns at least the old
    206  1.1     fvdl 	 * brk value, but it will be page-aligned if this fails,
    207  1.1     fvdl 	 * and possibly not page aligned if it succeeds (the user
    208  1.1     fvdl 	 * supplied pointer is returned).
    209  1.1     fvdl 	 */
    210  1.1     fvdl 	SCARG(&oba, nsize) = nbrk;
    211  1.1     fvdl 
    212  1.1     fvdl 	if ((caddr_t) nbrk > vm->vm_daddr && obreak(p, &oba, retval) == 0)
    213  1.1     fvdl 		retval[0] = (register_t) nbrk;
    214  1.1     fvdl 	else
    215  1.1     fvdl 		retval[0] = (register_t) oldbrk;
    216  1.1     fvdl 
    217  1.1     fvdl 	return 0;
    218  1.1     fvdl }
    219  1.1     fvdl 
    220  1.1     fvdl /*
    221  1.1     fvdl  * I wonder why Linux has gettimeofday() _and_ time().. Still, we
    222  1.1     fvdl  * need to deal with it.
    223  1.1     fvdl  */
    224  1.1     fvdl int
    225  1.1     fvdl linux_time(p, uap, retval)
    226  1.1     fvdl 	struct proc *p;
    227  1.1     fvdl 	struct linux_time_args /* {
    228  1.1     fvdl 		linux_time_t *t;
    229  1.1     fvdl 	} */ *uap;
    230  1.1     fvdl 	register_t *retval;
    231  1.1     fvdl {
    232  1.1     fvdl 	struct timeval atv;
    233  1.1     fvdl 	linux_time_t tt;
    234  1.1     fvdl 	int error;
    235  1.1     fvdl 
    236  1.1     fvdl 	microtime(&atv);
    237  1.1     fvdl 
    238  1.1     fvdl 	tt = atv.tv_sec;
    239  1.1     fvdl 	if (SCARG(uap, t) && (error = copyout(&tt, SCARG(uap, t), sizeof tt)))
    240  1.1     fvdl 		return error;
    241  1.1     fvdl 
    242  1.1     fvdl 	retval[0] = tt;
    243  1.1     fvdl 	return 0;
    244  1.1     fvdl }
    245  1.1     fvdl 
    246  1.1     fvdl /*
    247  1.2     fvdl  * Convert BSD statfs structure to Linux statfs structure.
    248  1.2     fvdl  * The Linux structure has less fields, and it also wants
    249  1.2     fvdl  * the length of a name in a dir entry in a field, which
    250  1.2     fvdl  * we fake (probably the wrong way).
    251  1.2     fvdl  */
    252  1.2     fvdl static void
    253  1.2     fvdl bsd_to_linux_statfs(bsp, lsp)
    254  1.2     fvdl 	struct statfs *bsp;
    255  1.2     fvdl 	struct linux_statfs *lsp;
    256  1.2     fvdl {
    257  1.2     fvdl 	lsp->l_ftype = bsp->f_type;
    258  1.2     fvdl 	lsp->l_fbsize = bsp->f_bsize;
    259  1.2     fvdl 	lsp->l_fblocks = bsp->f_blocks;
    260  1.2     fvdl 	lsp->l_fbfree = bsp->f_bfree;
    261  1.2     fvdl 	lsp->l_fbavail = bsp->f_bavail;
    262  1.2     fvdl 	lsp->l_ffiles = bsp->f_files;
    263  1.2     fvdl 	lsp->l_fffree = bsp->f_ffree;
    264  1.2     fvdl 	lsp->l_ffsid.val[0] = bsp->f_fsid.val[0];
    265  1.2     fvdl 	lsp->l_ffsid.val[1] = bsp->f_fsid.val[1];
    266  1.2     fvdl 	lsp->l_fnamelen = MAXNAMLEN;	/* XXX */
    267  1.2     fvdl }
    268  1.2     fvdl 
    269  1.2     fvdl /*
    270  1.2     fvdl  * Implement the fs stat functions. Straightforward.
    271  1.1     fvdl  */
    272  1.1     fvdl int
    273  1.1     fvdl linux_statfs(p, uap, retval)
    274  1.1     fvdl 	struct proc *p;
    275  1.1     fvdl 	struct linux_statfs_args /* {
    276  1.1     fvdl 		syscallarg(char *) path;
    277  1.1     fvdl 		syscallarg(struct linux_statfs *) sp;
    278  1.1     fvdl 	} */ *uap;
    279  1.1     fvdl 	register_t *retval;
    280  1.1     fvdl {
    281  1.2     fvdl 	struct statfs btmp, *bsp;
    282  1.2     fvdl 	struct linux_statfs ltmp;
    283  1.2     fvdl 	struct statfs_args bsa;
    284  1.2     fvdl 	caddr_t sg;
    285  1.2     fvdl 	int error;
    286  1.2     fvdl 
    287  1.2     fvdl 	sg = stackgap_init();
    288  1.2     fvdl 	bsp = (struct statfs *) stackgap_alloc(&sg, sizeof (struct statfs));
    289  1.2     fvdl 
    290  1.2     fvdl 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    291  1.2     fvdl 
    292  1.2     fvdl 	SCARG(&bsa, path) = SCARG(uap, path);
    293  1.2     fvdl 	SCARG(&bsa, buf) = bsp;
    294  1.2     fvdl 
    295  1.2     fvdl 	if ((error = statfs(p, &bsa, retval)))
    296  1.2     fvdl 		return error;
    297  1.2     fvdl 
    298  1.2     fvdl 	if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
    299  1.2     fvdl 		return error;
    300  1.2     fvdl 
    301  1.2     fvdl 	bsd_to_linux_statfs(&btmp, &ltmp);
    302  1.2     fvdl 
    303  1.2     fvdl 	return copyout((caddr_t) &ltmp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
    304  1.1     fvdl }
    305  1.1     fvdl 
    306  1.1     fvdl int
    307  1.1     fvdl linux_fstatfs(p, uap, retval)
    308  1.1     fvdl 	struct proc *p;
    309  1.1     fvdl 	struct linux_fstatfs_args /* {
    310  1.2     fvdl 		syscallarg(int) fd;
    311  1.1     fvdl 		syscallarg(struct linux_statfs *) sp;
    312  1.1     fvdl 	} */ *uap;
    313  1.1     fvdl 	register_t *retval;
    314  1.1     fvdl {
    315  1.2     fvdl 	struct statfs btmp, *bsp;
    316  1.2     fvdl 	struct linux_statfs ltmp;
    317  1.2     fvdl 	struct fstatfs_args bsa;
    318  1.2     fvdl 	caddr_t sg;
    319  1.2     fvdl 	int error;
    320  1.2     fvdl 
    321  1.2     fvdl 	sg = stackgap_init();
    322  1.2     fvdl 	bsp = (struct statfs *) stackgap_alloc(&sg, sizeof (struct statfs));
    323  1.2     fvdl 
    324  1.2     fvdl 	SCARG(&bsa, fd) = SCARG(uap, fd);
    325  1.2     fvdl 	SCARG(&bsa, buf) = bsp;
    326  1.2     fvdl 
    327  1.2     fvdl 	if ((error = statfs(p, &bsa, retval)))
    328  1.2     fvdl 		return error;
    329  1.2     fvdl 
    330  1.2     fvdl 	if ((error = copyin((caddr_t) bsp, (caddr_t) &btmp, sizeof btmp)))
    331  1.2     fvdl 		return error;
    332  1.2     fvdl 
    333  1.2     fvdl 	bsd_to_linux_statfs(&btmp, &ltmp);
    334  1.2     fvdl 
    335  1.2     fvdl 	return copyout((caddr_t) &ltmp, (caddr_t) SCARG(uap, sp), sizeof ltmp);
    336  1.1     fvdl }
    337  1.1     fvdl 
    338  1.1     fvdl /*
    339  1.1     fvdl  * uname(). Just copy the info from the various strings stored in the
    340  1.1     fvdl  * kernel, and put it in the Linux utsname structure. That structure
    341  1.1     fvdl  * is almost the same as the NetBSD one, only it has fields 65 characters
    342  1.1     fvdl  * long, and an extra domainname field.
    343  1.1     fvdl  */
    344  1.1     fvdl int
    345  1.1     fvdl linux_uname(p, uap, retval)
    346  1.1     fvdl 	struct proc *p;
    347  1.1     fvdl 	struct linux_uname_args /* {
    348  1.1     fvdl 		syscallarg(struct linux_utsname *) up;
    349  1.1     fvdl 	} */ *uap;
    350  1.1     fvdl 	register_t *retval;
    351  1.1     fvdl {
    352  1.1     fvdl 	extern char ostype[], osrelease[], version[], hostname[], domainname[];
    353  1.1     fvdl 	extern char machine[];
    354  1.1     fvdl 	struct linux_utsname tluts;
    355  1.1     fvdl 	int len;
    356  1.1     fvdl 	char *cp;
    357  1.1     fvdl 
    358  1.1     fvdl 	strncpy(tluts.l_sysname, ostype, sizeof (tluts.l_sysname));
    359  1.1     fvdl 	strncpy(tluts.l_nodename, hostname, sizeof (tluts.l_nodename));
    360  1.1     fvdl 	strncpy(tluts.l_release, osrelease, sizeof (tluts.l_release));
    361  1.1     fvdl 	strncpy(tluts.l_machine, machine, sizeof (tluts.l_machine));
    362  1.1     fvdl 	strncpy(tluts.l_domainname, domainname, sizeof (tluts.l_domainname));
    363  1.1     fvdl 	strncpy(tluts.l_version, version, sizeof (tluts.l_version));
    364  1.1     fvdl 
    365  1.1     fvdl 	/* This part taken from the the uname() in libc */
    366  1.1     fvdl 	len = sizeof (tluts.l_version);
    367  1.1     fvdl 	for (cp = tluts.l_version; len--; ++cp)
    368  1.1     fvdl 		if (*cp == '\n' || *cp == '\t')
    369  1.1     fvdl 			if (len > 1)
    370  1.1     fvdl 				*cp = ' ';
    371  1.1     fvdl 			else
    372  1.1     fvdl 				*cp = '\0';
    373  1.1     fvdl 
    374  1.1     fvdl 	return copyout(&tluts, SCARG(uap, up), sizeof tluts);
    375  1.1     fvdl }
    376  1.1     fvdl 
    377  1.1     fvdl /*
    378  1.1     fvdl  * Linux wants to pass everything to a syscall in registers. However,
    379  1.1     fvdl  * mmap() has 6 of them. Oops: out of register error. They just pass
    380  1.1     fvdl  * everything in a structure.
    381  1.1     fvdl  */
    382  1.1     fvdl int
    383  1.1     fvdl linux_mmap(p, uap, retval)
    384  1.1     fvdl 	struct proc *p;
    385  1.1     fvdl 	struct linux_mmap_args /* {
    386  1.1     fvdl 		syscallarg(struct linux_mmap *) lmp;
    387  1.1     fvdl 	} */ *uap;
    388  1.1     fvdl 	register_t *retval;
    389  1.1     fvdl {
    390  1.1     fvdl 	struct linux_mmap lmap;
    391  1.1     fvdl 	struct mmap_args cma;
    392  1.1     fvdl 	int error, flags;
    393  1.1     fvdl 
    394  1.1     fvdl 	if ((error = copyin(SCARG(uap, lmp), &lmap, sizeof lmap)))
    395  1.1     fvdl 		return error;
    396  1.1     fvdl 
    397  1.1     fvdl 	flags = 0;
    398  1.1     fvdl 	flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_SHARED, MAP_SHARED);
    399  1.1     fvdl 	flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_PRIVATE, MAP_PRIVATE);
    400  1.1     fvdl 	flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_FIXED, MAP_FIXED);
    401  1.1     fvdl 	flags |= cvtto_bsd_mask(lmap.lm_flags, LINUX_MAP_ANON, MAP_ANON);
    402  1.1     fvdl 
    403  1.1     fvdl 	SCARG(&cma,addr) = lmap.lm_addr;
    404  1.1     fvdl 	SCARG(&cma,len) = lmap.lm_len;
    405  1.1     fvdl  	SCARG(&cma,prot) = lmap.lm_prot;
    406  1.1     fvdl 	SCARG(&cma,flags) = flags;
    407  1.1     fvdl 	SCARG(&cma,fd) = lmap.lm_fd;
    408  1.1     fvdl 	SCARG(&cma,pad) = 0;
    409  1.1     fvdl 	SCARG(&cma,pos) = lmap.lm_pos;
    410  1.1     fvdl 
    411  1.1     fvdl 	return mmap(p, &cma, retval);
    412  1.1     fvdl }
    413  1.1     fvdl 
    414  1.1     fvdl /*
    415  1.1     fvdl  * Linux doesn't use the retval[1] value to determine whether
    416  1.1     fvdl  * we are the child or parent.
    417  1.1     fvdl  */
    418  1.1     fvdl int
    419  1.1     fvdl linux_fork(p, uap, retval)
    420  1.1     fvdl 	struct proc *p;
    421  1.1     fvdl 	void *uap;
    422  1.1     fvdl 	register_t *retval;
    423  1.1     fvdl {
    424  1.1     fvdl 	int error;
    425  1.1     fvdl 
    426  1.1     fvdl 	if ((error = fork(p, uap, retval)))
    427  1.1     fvdl 		return error;
    428  1.1     fvdl 
    429  1.1     fvdl 	if (retval[1] == 1)
    430  1.1     fvdl 		retval[0] = 0;
    431  1.1     fvdl 
    432  1.1     fvdl 	return 0;
    433  1.1     fvdl }
    434  1.1     fvdl 
    435  1.1     fvdl /*
    436  1.1     fvdl  * This code is partly stolen from src/lib/libc/compat-43/times.c
    437  1.1     fvdl  * XXX - CLK_TCK isn't declared in /sys, just in <time.h>, done here
    438  1.1     fvdl  */
    439  1.1     fvdl 
    440  1.1     fvdl #define CLK_TCK 100
    441  1.1     fvdl #define	CONVTCK(r)	(r.tv_sec * CLK_TCK + r.tv_usec / (1000000 / CLK_TCK))
    442  1.1     fvdl 
    443  1.1     fvdl int
    444  1.1     fvdl linux_times(p, uap, retval)
    445  1.1     fvdl 	struct proc *p;
    446  1.1     fvdl 	struct linux_times_args /* {
    447  1.1     fvdl 		syscallarg(struct times *) tms;
    448  1.1     fvdl 	} */ *uap;
    449  1.1     fvdl 	register_t *retval;
    450  1.1     fvdl {
    451  1.1     fvdl 	struct timeval t;
    452  1.1     fvdl 	struct linux_tms ltms;
    453  1.1     fvdl 	struct rusage ru;
    454  1.4  mycroft 	int error, s;
    455  1.1     fvdl 
    456  1.1     fvdl 	calcru(p, &ru.ru_utime, &ru.ru_stime, NULL);
    457  1.1     fvdl 	ltms.ltms_utime = CONVTCK(ru.ru_utime);
    458  1.1     fvdl 	ltms.ltms_stime = CONVTCK(ru.ru_stime);
    459  1.1     fvdl 
    460  1.1     fvdl 	ltms.ltms_cutime = CONVTCK(p->p_stats->p_cru.ru_utime);
    461  1.1     fvdl 	ltms.ltms_cstime = CONVTCK(p->p_stats->p_cru.ru_stime);
    462  1.1     fvdl 
    463  1.1     fvdl 	if ((error = copyout(&ltms, SCARG(uap, tms), sizeof ltms)))
    464  1.1     fvdl 		return error;
    465  1.1     fvdl 
    466  1.4  mycroft 	s = splclock();
    467  1.4  mycroft 	timersub(&time, &boottime, &t);
    468  1.4  mycroft 	splx(s);
    469  1.1     fvdl 
    470  1.1     fvdl 	retval[0] = ((linux_clock_t)(CONVTCK(t)));
    471  1.1     fvdl 	return 0;
    472  1.1     fvdl }
    473  1.1     fvdl 
    474  1.1     fvdl /*
    475  1.1     fvdl  * NetBSD passes fd[0] in retval[0], and fd[1] in retval[1].
    476  1.1     fvdl  * Linux directly passes the pointer.
    477  1.1     fvdl  */
    478  1.1     fvdl int
    479  1.1     fvdl linux_pipe(p, uap, retval)
    480  1.1     fvdl 	struct proc *p;
    481  1.1     fvdl 	struct linux_pipe_args /* {
    482  1.1     fvdl 		syscallarg(int *) pfds;
    483  1.1     fvdl 	} */ *uap;
    484  1.1     fvdl 	register_t *retval;
    485  1.1     fvdl {
    486  1.1     fvdl 	int error;
    487  1.1     fvdl 
    488  1.1     fvdl 	if ((error = pipe(p, 0, retval)))
    489  1.1     fvdl 		return error;
    490  1.1     fvdl 
    491  1.1     fvdl 	/* Assumes register_t is an int */
    492  1.1     fvdl 
    493  1.1     fvdl 	if ((error = copyout(retval, SCARG(uap, pfds), 2 * sizeof (int))))
    494  1.1     fvdl 		return error;
    495  1.1     fvdl 
    496  1.1     fvdl 	retval[0] = 0;
    497  1.1     fvdl 	return 0;
    498  1.1     fvdl }
    499  1.1     fvdl 
    500  1.1     fvdl /*
    501  1.1     fvdl  * Alarm. This is a libc call which used setitimer(2) in NetBSD.
    502  1.1     fvdl  * Fiddle with the timers to make it work.
    503  1.1     fvdl  */
    504  1.1     fvdl int
    505  1.1     fvdl linux_alarm(p, uap, retval)
    506  1.1     fvdl 	struct proc *p;
    507  1.1     fvdl 	struct linux_alarm_args /* {
    508  1.1     fvdl 		syscallarg(unsigned int) secs;
    509  1.1     fvdl 	} */ *uap;
    510  1.1     fvdl 	register_t *retval;
    511  1.1     fvdl {
    512  1.1     fvdl 	int error, s;
    513  1.1     fvdl 	struct itimerval *itp, it;
    514  1.1     fvdl 
    515  1.1     fvdl 	itp = &p->p_realtimer;
    516  1.1     fvdl 	s = splclock();
    517  1.1     fvdl 	/*
    518  1.1     fvdl 	 * Clear any pending timer alarms.
    519  1.1     fvdl 	 */
    520  1.1     fvdl 	untimeout(realitexpire, p);
    521  1.1     fvdl 	timerclear(&itp->it_interval);
    522  1.1     fvdl 	if (timerisset(&itp->it_value) &&
    523  1.1     fvdl 	    timercmp(&itp->it_value, &time, >))
    524  1.3  mycroft 		timersub(&itp->it_value, &time, &itp->it_value);
    525  1.1     fvdl 	/*
    526  1.1     fvdl 	 * Return how many seconds were left (rounded up)
    527  1.1     fvdl 	 */
    528  1.1     fvdl 	retval[0] = itp->it_value.tv_sec;
    529  1.1     fvdl 	if (itp->it_value.tv_usec)
    530  1.1     fvdl 		retval[0]++;
    531  1.1     fvdl 
    532  1.1     fvdl 	/*
    533  1.1     fvdl 	 * alarm(0) just resets the timer.
    534  1.1     fvdl 	 */
    535  1.1     fvdl 	if (SCARG(uap, secs) == 0) {
    536  1.1     fvdl 		timerclear(&itp->it_value);
    537  1.1     fvdl 		splx(s);
    538  1.1     fvdl 		return 0;
    539  1.1     fvdl 	}
    540  1.1     fvdl 
    541  1.1     fvdl 	/*
    542  1.1     fvdl 	 * Check the new alarm time for sanity, and set it.
    543  1.1     fvdl 	 */
    544  1.1     fvdl 	timerclear(&it.it_interval);
    545  1.1     fvdl 	it.it_value.tv_sec = SCARG(uap, secs);
    546  1.1     fvdl 	it.it_value.tv_usec = 0;
    547  1.1     fvdl 	if (itimerfix(&it.it_value) || itimerfix(&it.it_interval)) {
    548  1.1     fvdl 		splx(s);
    549  1.1     fvdl 		return (EINVAL);
    550  1.1     fvdl 	}
    551  1.1     fvdl 
    552  1.1     fvdl 	if (timerisset(&it.it_value)) {
    553  1.3  mycroft 		timeradd(&it.it_value, &time, &it.it_value);
    554  1.1     fvdl 		timeout(realitexpire, p, hzto(&it.it_value));
    555  1.1     fvdl 	}
    556  1.1     fvdl 	p->p_realtimer = it;
    557  1.1     fvdl 	splx(s);
    558  1.1     fvdl 
    559  1.1     fvdl 	return 0;
    560  1.1     fvdl }
    561  1.1     fvdl 
    562  1.1     fvdl /*
    563  1.1     fvdl  * utime(). Do conversion to things that utimes() understands,
    564  1.1     fvdl  * and pass it on.
    565  1.1     fvdl  */
    566  1.1     fvdl int
    567  1.1     fvdl linux_utime(p, uap, retval)
    568  1.1     fvdl 	struct proc *p;
    569  1.1     fvdl 	struct linux_utime_args /* {
    570  1.1     fvdl 		syscallarg(char *) path;
    571  1.1     fvdl 		syscallarg(struct linux_utimbuf *)times;
    572  1.1     fvdl 	} */ *uap;
    573  1.1     fvdl 	register_t *retval;
    574  1.1     fvdl {
    575  1.1     fvdl 	caddr_t sg;
    576  1.1     fvdl 	int error;
    577  1.1     fvdl 	struct utimes_args ua;
    578  1.1     fvdl 	struct timeval tv[2], *tvp;
    579  1.1     fvdl 	struct linux_utimbuf lut;
    580  1.1     fvdl 
    581  1.1     fvdl 	sg = stackgap_init();
    582  1.2     fvdl 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    583  1.1     fvdl 
    584  1.1     fvdl 	SCARG(&ua, path) = SCARG(uap, path);
    585  1.1     fvdl 
    586  1.1     fvdl 	if (SCARG(uap, times) != NULL) {
    587  1.1     fvdl 		if ((error = copyin(SCARG(uap, times), &lut, sizeof lut)))
    588  1.1     fvdl 			return error;
    589  1.1     fvdl 		tv[0].tv_usec = tv[1].tv_usec = 0;
    590  1.1     fvdl 		tv[0].tv_sec = lut.l_actime;
    591  1.1     fvdl 		tv[1].tv_sec = lut.l_modtime;
    592  1.1     fvdl 		tvp = (struct timeval *) stackgap_alloc(sizeof tv);
    593  1.1     fvdl 		if ((error = copyout(tv, tvp, sizeof tv)))
    594  1.1     fvdl 			return error;
    595  1.1     fvdl 		SCARG(&ua, tptr) = tvp;
    596  1.1     fvdl 	}
    597  1.1     fvdl 	else
    598  1.1     fvdl 		SCARG(&ua, tptr) = NULL;
    599  1.1     fvdl 
    600  1.1     fvdl 	return utimes(p, uap, retval);
    601  1.1     fvdl }
    602  1.1     fvdl 
    603  1.1     fvdl /*
    604  1.1     fvdl  * Linux 'readdir' call. This code is mostly taken from the
    605  1.1     fvdl  * SunOS getdents call (see compat/sunos/sunos_misc.c), though
    606  1.1     fvdl  * an attempt has been made to keep it a little cleaner (failing
    607  1.1     fvdl  * miserably, because of the cruft needed if count 1 is passed).
    608  1.1     fvdl  *
    609  1.1     fvdl  * Read in BSD-style entries, convert them, and copy them out.
    610  1.1     fvdl  * Note that the Linux d_reclen is actually the name length,
    611  1.1     fvdl  * and d_off is the reclen.
    612  1.1     fvdl  *
    613  1.1     fvdl  * Note that this doesn't handle union-mounted filesystems.
    614  1.1     fvdl  */
    615  1.1     fvdl int
    616  1.1     fvdl linux_readdir(p, uap, retval)
    617  1.1     fvdl 	struct proc *p;
    618  1.1     fvdl 	struct linux_readdir_args /* {
    619  1.1     fvdl 		syscallarg(int) fd;
    620  1.1     fvdl 		syscallarg(struct linux_dirent *) dent;
    621  1.1     fvdl 		syscallarg(unsigned int) count;
    622  1.1     fvdl 	} */ *uap;
    623  1.1     fvdl 	register_t *retval;
    624  1.1     fvdl {
    625  1.1     fvdl 	register struct dirent *bdp;
    626  1.1     fvdl 	struct vnode *vp;
    627  1.1     fvdl 	caddr_t	inp, buf;	/* BSD-format */
    628  1.1     fvdl 	int len, reclen;	/* BSD-format */
    629  1.1     fvdl 	caddr_t outp;		/* Linux-format */
    630  1.1     fvdl 	int resid, linuxreclen;	/* Linux-format */
    631  1.1     fvdl 	struct file *fp;
    632  1.1     fvdl 	struct uio auio;
    633  1.1     fvdl 	struct iovec aiov;
    634  1.1     fvdl 	struct linux_dirent idb;
    635  1.1     fvdl 	off_t off;		/* true file offset */
    636  1.1     fvdl 	linux_off_t soff;	/* Linux file offset */
    637  1.1     fvdl 	int buflen, error, eofflag, nbytes, justone;
    638  1.1     fvdl 	struct vattr va;
    639  1.1     fvdl 
    640  1.1     fvdl 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
    641  1.1     fvdl 		return (error);
    642  1.1     fvdl 
    643  1.1     fvdl 	if ((fp->f_flag & FREAD) == 0)
    644  1.1     fvdl 		return (EBADF);
    645  1.1     fvdl 
    646  1.1     fvdl 	vp = (struct vnode *) fp->f_data;
    647  1.1     fvdl 
    648  1.1     fvdl 	if (vp->v_type != VDIR)	/* XXX  vnode readdir op should do this */
    649  1.1     fvdl 		return (EINVAL);
    650  1.1     fvdl 
    651  1.1     fvdl 	if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
    652  1.1     fvdl 		return error;
    653  1.1     fvdl 
    654  1.1     fvdl 	nbytes = SCARG(uap, count);
    655  1.1     fvdl 	if (nbytes == 1) {	/* Need this for older Linux libs, apparently */
    656  1.1     fvdl 		nbytes = sizeof (struct linux_dirent);
    657  1.1     fvdl 		justone = 1;
    658  1.1     fvdl 	}
    659  1.1     fvdl 	else
    660  1.1     fvdl 		justone = 0;
    661  1.1     fvdl 
    662  1.1     fvdl 	buflen = max(va.va_blocksize, nbytes);
    663  1.1     fvdl 	buf = malloc(buflen, M_TEMP, M_WAITOK);
    664  1.1     fvdl 	VOP_LOCK(vp);
    665  1.1     fvdl 	off = fp->f_offset;
    666  1.1     fvdl again:
    667  1.1     fvdl 	aiov.iov_base = buf;
    668  1.1     fvdl 	aiov.iov_len = buflen;
    669  1.1     fvdl 	auio.uio_iov = &aiov;
    670  1.1     fvdl 	auio.uio_iovcnt = 1;
    671  1.1     fvdl 	auio.uio_rw = UIO_READ;
    672  1.1     fvdl 	auio.uio_segflg = UIO_SYSSPACE;
    673  1.1     fvdl 	auio.uio_procp = p;
    674  1.1     fvdl 	auio.uio_resid = buflen;
    675  1.1     fvdl 	auio.uio_offset = off;
    676  1.1     fvdl 	/*
    677  1.1     fvdl          * First we read into the malloc'ed buffer, then
    678  1.1     fvdl          * we massage it into user space, one record at a time.
    679  1.1     fvdl          */
    680  1.1     fvdl 	error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, (u_long *) 0, 0);
    681  1.1     fvdl 	if (error)
    682  1.1     fvdl 		goto out;
    683  1.1     fvdl 
    684  1.1     fvdl 	inp = buf;
    685  1.1     fvdl 	outp = (caddr_t) SCARG(uap, dent);
    686  1.1     fvdl 	resid = nbytes;
    687  1.1     fvdl 	if ((len = buflen - auio.uio_resid) == 0)
    688  1.1     fvdl 		goto eof;
    689  1.1     fvdl 
    690  1.1     fvdl 	for (; len > 0; len -= reclen) {
    691  1.1     fvdl 		reclen = ((struct dirent *) inp)->d_reclen;
    692  1.1     fvdl 		if (reclen & 3)
    693  1.1     fvdl 			panic("linux_readdir");
    694  1.1     fvdl 		off += reclen;	/* each entry points to next */
    695  1.1     fvdl 		bdp = (struct dirent *) inp;
    696  1.1     fvdl 		if (bdp->d_fileno == 0) {
    697  1.1     fvdl 			inp += reclen;	/* it is a hole; squish it out */
    698  1.1     fvdl 			continue;
    699  1.1     fvdl 		}
    700  1.1     fvdl 		linuxreclen = LINUX_RECLEN(&idb, bdp->d_namlen);
    701  1.1     fvdl 		if (reclen > len || resid < linuxreclen) {
    702  1.1     fvdl 			/* entry too big for buffer, so just stop */
    703  1.1     fvdl 			outp++;
    704  1.1     fvdl 			break;
    705  1.1     fvdl 		}
    706  1.1     fvdl 		/*
    707  1.1     fvdl 		 * Massage in place to make a Linux-shaped dirent (otherwise
    708  1.1     fvdl 		 * we have to worry about touching user memory outside of
    709  1.1     fvdl 		 * the copyout() call).
    710  1.1     fvdl 		 */
    711  1.1     fvdl 		idb.l_dino = (long) bdp->d_fileno;
    712  1.1     fvdl 		idb.l_doff = (linux_off_t) linuxreclen;
    713  1.1     fvdl 		idb.l_dreclen = (u_short) bdp->d_namlen;	/* sigh */
    714  1.1     fvdl 		strcpy(idb.l_dname, bdp->d_name);
    715  1.1     fvdl 		if ((error = copyout((caddr_t)&idb, outp, linuxreclen)))
    716  1.1     fvdl 			goto out;
    717  1.1     fvdl 		/* advance past this real entry */
    718  1.1     fvdl 		inp += reclen;
    719  1.1     fvdl 		/* advance output past Linux-shaped entry */
    720  1.1     fvdl 		outp += linuxreclen;
    721  1.1     fvdl 		resid -= linuxreclen;
    722  1.1     fvdl 		if (justone)
    723  1.1     fvdl 			break;
    724  1.1     fvdl 	}
    725  1.1     fvdl 
    726  1.1     fvdl 	/* if we squished out the whole block, try again */
    727  1.1     fvdl 	if (outp == (caddr_t) SCARG(uap, dent))
    728  1.1     fvdl 		goto again;
    729  1.1     fvdl 	fp->f_offset = off;	/* update the vnode offset */
    730  1.1     fvdl 
    731  1.1     fvdl 	if (justone)
    732  1.1     fvdl 		nbytes = resid + linuxreclen;
    733  1.1     fvdl 
    734  1.1     fvdl eof:
    735  1.1     fvdl 	*retval = nbytes - resid;
    736  1.1     fvdl out:
    737  1.1     fvdl 	VOP_UNLOCK(vp);
    738  1.1     fvdl 	free(buf, M_TEMP);
    739  1.1     fvdl 	return error;
    740  1.1     fvdl }
    741  1.1     fvdl 
    742  1.1     fvdl /*
    743  1.1     fvdl  * Out of register error once more.. Apart from that, no difference.
    744  1.1     fvdl  */
    745  1.1     fvdl int
    746  1.1     fvdl linux_select(p, uap, retval)
    747  1.1     fvdl 	struct proc *p;
    748  1.1     fvdl 	struct linux_select_args /* {
    749  1.1     fvdl 		syscallarg(struct linux_select *) lsp;
    750  1.1     fvdl 	} */ *uap;
    751  1.1     fvdl 	register_t *retval;
    752  1.1     fvdl {
    753  1.1     fvdl 	struct linux_select ls;
    754  1.1     fvdl 	struct select_args bsa;
    755  1.1     fvdl 	int error;
    756  1.1     fvdl 
    757  1.1     fvdl 	if ((error = copyin(SCARG(uap, lsp), (caddr_t) &ls, sizeof ls)))
    758  1.1     fvdl 		return error;
    759  1.1     fvdl 
    760  1.1     fvdl 	SCARG(&bsa, nd) = ls.nfds;
    761  1.1     fvdl 	SCARG(&bsa, in) = ls.readfds;
    762  1.1     fvdl 	SCARG(&bsa, ou) = ls.writefds;
    763  1.1     fvdl 	SCARG(&bsa, ex) = ls.exceptfds;
    764  1.1     fvdl 	SCARG(&bsa, tv) = ls.timeout;
    765  1.1     fvdl 
    766  1.1     fvdl 	return select(p, &bsa, retval);
    767  1.1     fvdl }
    768  1.1     fvdl 
    769  1.1     fvdl /*
    770  1.1     fvdl  * Get the process group of a certain process. Look it up
    771  1.1     fvdl  * and return the value.
    772  1.1     fvdl  */
    773  1.1     fvdl int
    774  1.1     fvdl linux_getpgid(p, uap, retval)
    775  1.1     fvdl 	struct proc *p;
    776  1.1     fvdl 	struct linux_getpgid_args /* {
    777  1.1     fvdl 		syscallarg(int) pid;
    778  1.1     fvdl 	} */ *uap;
    779  1.1     fvdl 	register_t *retval;
    780  1.1     fvdl {
    781  1.1     fvdl 	struct proc *targp;
    782  1.1     fvdl 
    783  1.1     fvdl 	if (SCARG(uap, pid) != 0 && SCARG(uap, pid) != p->p_pid)
    784  1.1     fvdl 		if ((targp = pfind(SCARG(uap, pid))) == 0)
    785  1.1     fvdl 			return ESRCH;
    786  1.1     fvdl 	else
    787  1.1     fvdl 		targp = p;
    788  1.1     fvdl 
    789  1.1     fvdl 	retval[0] = targp->p_pgid;
    790  1.1     fvdl 	return 0;
    791  1.1     fvdl }
    792