Home | History | Annotate | Line # | Download | only in common
linux_file.c revision 1.37.2.13
      1  1.37.2.13   thorpej /*	$NetBSD: linux_file.c,v 1.37.2.13 2002/12/19 00:42:53 thorpej Exp $	*/
      2       1.23       erh 
      3       1.23       erh /*-
      4       1.25      fvdl  * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
      5       1.23       erh  * All rights reserved.
      6       1.23       erh  *
      7       1.23       erh  * This code is derived from software contributed to The NetBSD Foundation
      8       1.25      fvdl  * by Frank van der Linden and Eric Haszlakiewicz.
      9       1.23       erh  *
     10       1.23       erh  * Redistribution and use in source and binary forms, with or without
     11       1.23       erh  * modification, are permitted provided that the following conditions
     12       1.23       erh  * are met:
     13       1.23       erh  * 1. Redistributions of source code must retain the above copyright
     14       1.23       erh  *    notice, this list of conditions and the following disclaimer.
     15       1.23       erh  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.23       erh  *    notice, this list of conditions and the following disclaimer in the
     17       1.23       erh  *    documentation and/or other materials provided with the distribution.
     18       1.23       erh  * 3. All advertising materials mentioning features or use of this software
     19       1.23       erh  *    must display the following acknowledgement:
     20       1.23       erh  *	This product includes software developed by the NetBSD
     21       1.23       erh  *	Foundation, Inc. and its contributors.
     22       1.23       erh  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.23       erh  *    contributors may be used to endorse or promote products derived
     24       1.23       erh  *    from this software without specific prior written permission.
     25       1.23       erh  *
     26       1.23       erh  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.23       erh  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.23       erh  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.23       erh  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.23       erh  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.23       erh  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.23       erh  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.23       erh  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.23       erh  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.23       erh  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.23       erh  * POSSIBILITY OF SUCH DAMAGE.
     37        1.1      fvdl  */
     38        1.1      fvdl 
     39       1.23       erh /*
     40       1.23       erh  * Functions in multiarch:
     41       1.23       erh  *	linux_sys_llseek	: linux_llseek.c
     42       1.23       erh  */
     43   1.37.2.6   nathanw 
     44   1.37.2.6   nathanw #include <sys/cdefs.h>
     45  1.37.2.13   thorpej __KERNEL_RCSID(0, "$NetBSD: linux_file.c,v 1.37.2.13 2002/12/19 00:42:53 thorpej Exp $");
     46       1.23       erh 
     47        1.1      fvdl #include <sys/param.h>
     48        1.1      fvdl #include <sys/systm.h>
     49        1.1      fvdl #include <sys/namei.h>
     50        1.1      fvdl #include <sys/proc.h>
     51        1.1      fvdl #include <sys/file.h>
     52        1.1      fvdl #include <sys/stat.h>
     53        1.1      fvdl #include <sys/filedesc.h>
     54        1.1      fvdl #include <sys/ioctl.h>
     55        1.1      fvdl #include <sys/kernel.h>
     56        1.1      fvdl #include <sys/mount.h>
     57        1.1      fvdl #include <sys/malloc.h>
     58       1.13      fvdl #include <sys/vnode.h>
     59       1.13      fvdl #include <sys/tty.h>
     60   1.37.2.2   nathanw #include <sys/socketvar.h>
     61       1.13      fvdl #include <sys/conf.h>
     62   1.37.2.4   nathanw #include <sys/pipe.h>
     63        1.1      fvdl 
     64  1.37.2.10   nathanw #include <sys/sa.h>
     65        1.1      fvdl #include <sys/syscallargs.h>
     66        1.1      fvdl 
     67       1.24  christos #include <compat/linux/common/linux_types.h>
     68       1.24  christos #include <compat/linux/common/linux_signal.h>
     69       1.24  christos #include <compat/linux/common/linux_fcntl.h>
     70       1.24  christos #include <compat/linux/common/linux_util.h>
     71       1.24  christos #include <compat/linux/common/linux_machdep.h>
     72       1.24  christos 
     73        1.1      fvdl #include <compat/linux/linux_syscallargs.h>
     74       1.14  christos 
     75       1.14  christos static int linux_to_bsd_ioflags __P((int));
     76       1.14  christos static int bsd_to_linux_ioflags __P((int));
     77       1.14  christos static void bsd_to_linux_flock __P((struct flock *, struct linux_flock *));
     78       1.14  christos static void linux_to_bsd_flock __P((struct linux_flock *, struct flock *));
     79       1.14  christos static void bsd_to_linux_stat __P((struct stat *, struct linux_stat *));
     80   1.37.2.1   nathanw static int linux_stat1 __P((struct lwp *, void *, register_t *, int));
     81       1.14  christos 
     82        1.1      fvdl /*
     83        1.1      fvdl  * Some file-related calls are handled here. The usual flag conversion
     84        1.1      fvdl  * an structure conversion is done, and alternate emul path searching.
     85        1.1      fvdl  */
     86        1.1      fvdl 
     87        1.1      fvdl /*
     88        1.1      fvdl  * The next two functions convert between the Linux and NetBSD values
     89        1.1      fvdl  * of the flags used in open(2) and fcntl(2).
     90        1.1      fvdl  */
     91        1.1      fvdl static int
     92       1.14  christos linux_to_bsd_ioflags(lflags)
     93       1.14  christos 	int lflags;
     94        1.1      fvdl {
     95        1.1      fvdl 	int res = 0;
     96        1.1      fvdl 
     97        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_WRONLY, O_WRONLY);
     98        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_RDONLY, O_RDONLY);
     99        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_RDWR, O_RDWR);
    100        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_CREAT, O_CREAT);
    101        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_EXCL, O_EXCL);
    102        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_NOCTTY, O_NOCTTY);
    103        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_TRUNC, O_TRUNC);
    104        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_NDELAY, O_NDELAY);
    105        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_SYNC, O_FSYNC);
    106        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_FASYNC, O_ASYNC);
    107        1.1      fvdl 	res |= cvtto_bsd_mask(lflags, LINUX_O_APPEND, O_APPEND);
    108        1.1      fvdl 
    109        1.1      fvdl 	return res;
    110        1.1      fvdl }
    111        1.1      fvdl 
    112        1.1      fvdl static int
    113       1.14  christos bsd_to_linux_ioflags(bflags)
    114       1.14  christos 	int bflags;
    115        1.1      fvdl {
    116        1.1      fvdl 	int res = 0;
    117        1.1      fvdl 
    118        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_WRONLY, LINUX_O_WRONLY);
    119        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_RDONLY, LINUX_O_RDONLY);
    120        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_RDWR, LINUX_O_RDWR);
    121        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_CREAT, LINUX_O_CREAT);
    122        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_EXCL, LINUX_O_EXCL);
    123        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_NOCTTY, LINUX_O_NOCTTY);
    124        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_TRUNC, LINUX_O_TRUNC);
    125        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_NDELAY, LINUX_O_NDELAY);
    126        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_FSYNC, LINUX_O_SYNC);
    127        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_ASYNC, LINUX_FASYNC);
    128        1.1      fvdl 	res |= cvtto_linux_mask(bflags, O_APPEND, LINUX_O_APPEND);
    129        1.1      fvdl 
    130        1.1      fvdl 	return res;
    131        1.1      fvdl }
    132        1.1      fvdl 
    133        1.1      fvdl /*
    134        1.1      fvdl  * creat(2) is an obsolete function, but it's present as a Linux
    135        1.1      fvdl  * system call, so let's deal with it.
    136        1.1      fvdl  *
    137       1.23       erh  * Note: On the Alpha this doesn't really exist in Linux, but it's defined
    138       1.23       erh  * in syscalls.master anyway so this doesn't have to be special cased.
    139       1.23       erh  *
    140        1.1      fvdl  * Just call open(2) with the TRUNC, CREAT and WRONLY flags.
    141        1.1      fvdl  */
    142        1.1      fvdl int
    143   1.37.2.1   nathanw linux_sys_creat(l, v, retval)
    144   1.37.2.1   nathanw 	struct lwp *l;
    145       1.11   thorpej 	void *v;
    146       1.11   thorpej 	register_t *retval;
    147       1.11   thorpej {
    148       1.12   mycroft 	struct linux_sys_creat_args /* {
    149       1.27  christos 		syscallarg(const char *) path;
    150        1.1      fvdl 		syscallarg(int) mode;
    151       1.11   thorpej 	} */ *uap = v;
    152   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    153       1.12   mycroft 	struct sys_open_args oa;
    154        1.1      fvdl 	caddr_t sg;
    155        1.1      fvdl 
    156   1.37.2.8   nathanw 	sg = stackgap_init(p, 0);
    157       1.30  jdolecek 	CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    158        1.1      fvdl 
    159        1.1      fvdl 	SCARG(&oa, path) = SCARG(uap, path);
    160        1.1      fvdl 	SCARG(&oa, flags) = O_CREAT | O_TRUNC | O_WRONLY;
    161        1.1      fvdl 	SCARG(&oa, mode) = SCARG(uap, mode);
    162       1.12   mycroft 
    163   1.37.2.1   nathanw 	return sys_open(l, &oa, retval);
    164        1.1      fvdl }
    165        1.1      fvdl 
    166        1.1      fvdl /*
    167        1.1      fvdl  * open(2). Take care of the different flag values, and let the
    168        1.1      fvdl  * NetBSD syscall do the real work. See if this operation
    169        1.1      fvdl  * gives the current process a controlling terminal.
    170        1.1      fvdl  * (XXX is this necessary?)
    171        1.1      fvdl  */
    172        1.1      fvdl int
    173   1.37.2.1   nathanw linux_sys_open(l, v, retval)
    174   1.37.2.1   nathanw 	struct lwp *l;
    175       1.11   thorpej 	void *v;
    176       1.11   thorpej 	register_t *retval;
    177       1.11   thorpej {
    178       1.12   mycroft 	struct linux_sys_open_args /* {
    179       1.27  christos 		syscallarg(const char *) path;
    180        1.1      fvdl 		syscallarg(int) flags;
    181        1.1      fvdl 		syscallarg(int) mode;
    182       1.11   thorpej 	} */ *uap = v;
    183   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    184        1.1      fvdl 	int error, fl;
    185       1.12   mycroft 	struct sys_open_args boa;
    186        1.1      fvdl 	caddr_t sg;
    187        1.1      fvdl 
    188   1.37.2.8   nathanw 	sg = stackgap_init(p, 0);
    189        1.1      fvdl 
    190        1.2      fvdl 	fl = linux_to_bsd_ioflags(SCARG(uap, flags));
    191        1.1      fvdl 
    192        1.2      fvdl 	if (fl & O_CREAT)
    193       1.30  jdolecek 		CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    194        1.2      fvdl 	else
    195       1.30  jdolecek 		CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    196        1.1      fvdl 
    197        1.1      fvdl 	SCARG(&boa, path) = SCARG(uap, path);
    198        1.1      fvdl 	SCARG(&boa, flags) = fl;
    199        1.1      fvdl 	SCARG(&boa, mode) = SCARG(uap, mode);
    200        1.2      fvdl 
    201   1.37.2.1   nathanw 	if ((error = sys_open(l, &boa, retval)))
    202        1.1      fvdl 		return error;
    203        1.1      fvdl 
    204        1.1      fvdl 	/*
    205        1.1      fvdl 	 * this bit from sunos_misc.c (and svr4_fcntl.c).
    206        1.1      fvdl 	 * If we are a session leader, and we don't have a controlling
    207        1.1      fvdl 	 * terminal yet, and the O_NOCTTY flag is not set, try to make
    208        1.1      fvdl 	 * this the controlling terminal.
    209        1.1      fvdl 	 */
    210        1.1      fvdl         if (!(fl & O_NOCTTY) && SESS_LEADER(p) && !(p->p_flag & P_CONTROLT)) {
    211        1.1      fvdl                 struct filedesc *fdp = p->p_fd;
    212   1.37.2.2   nathanw                 struct file     *fp;
    213   1.37.2.2   nathanw 
    214   1.37.2.2   nathanw 		fp = fd_getfile(fdp, *retval);
    215        1.1      fvdl 
    216        1.1      fvdl                 /* ignore any error, just give it a try */
    217   1.37.2.2   nathanw                 if (fp != NULL && fp->f_type == DTYPE_VNODE)
    218        1.1      fvdl                         (fp->f_ops->fo_ioctl) (fp, TIOCSCTTY, (caddr_t) 0, p);
    219        1.1      fvdl         }
    220        1.1      fvdl 	return 0;
    221        1.1      fvdl }
    222        1.1      fvdl 
    223        1.1      fvdl /*
    224        1.1      fvdl  * The next two functions take care of converting the flock
    225        1.1      fvdl  * structure back and forth between Linux and NetBSD format.
    226        1.1      fvdl  * The only difference in the structures is the order of
    227        1.1      fvdl  * the fields, and the 'whence' value.
    228        1.1      fvdl  */
    229        1.1      fvdl static void
    230        1.1      fvdl bsd_to_linux_flock(bfp, lfp)
    231        1.1      fvdl 	struct flock *bfp;
    232        1.1      fvdl 	struct linux_flock *lfp;
    233        1.1      fvdl {
    234       1.12   mycroft 
    235        1.1      fvdl 	lfp->l_start = bfp->l_start;
    236        1.1      fvdl 	lfp->l_len = bfp->l_len;
    237        1.1      fvdl 	lfp->l_pid = bfp->l_pid;
    238        1.3   mycroft 	lfp->l_whence = bfp->l_whence;
    239        1.3   mycroft 	switch (bfp->l_type) {
    240        1.1      fvdl 	case F_RDLCK:
    241        1.3   mycroft 		lfp->l_type = LINUX_F_RDLCK;
    242        1.1      fvdl 		break;
    243        1.1      fvdl 	case F_UNLCK:
    244        1.3   mycroft 		lfp->l_type = LINUX_F_UNLCK;
    245        1.1      fvdl 		break;
    246        1.1      fvdl 	case F_WRLCK:
    247        1.3   mycroft 		lfp->l_type = LINUX_F_WRLCK;
    248        1.1      fvdl 		break;
    249        1.1      fvdl 	}
    250        1.1      fvdl }
    251        1.1      fvdl 
    252        1.1      fvdl static void
    253        1.1      fvdl linux_to_bsd_flock(lfp, bfp)
    254        1.1      fvdl 	struct linux_flock *lfp;
    255        1.1      fvdl 	struct flock *bfp;
    256        1.1      fvdl {
    257       1.12   mycroft 
    258        1.1      fvdl 	bfp->l_start = lfp->l_start;
    259        1.1      fvdl 	bfp->l_len = lfp->l_len;
    260        1.1      fvdl 	bfp->l_pid = lfp->l_pid;
    261        1.3   mycroft 	bfp->l_whence = lfp->l_whence;
    262        1.3   mycroft 	switch (lfp->l_type) {
    263        1.1      fvdl 	case LINUX_F_RDLCK:
    264        1.3   mycroft 		bfp->l_type = F_RDLCK;
    265        1.1      fvdl 		break;
    266        1.1      fvdl 	case LINUX_F_UNLCK:
    267        1.3   mycroft 		bfp->l_type = F_UNLCK;
    268        1.1      fvdl 		break;
    269        1.1      fvdl 	case LINUX_F_WRLCK:
    270        1.3   mycroft 		bfp->l_type = F_WRLCK;
    271        1.1      fvdl 		break;
    272        1.1      fvdl 	}
    273        1.1      fvdl }
    274        1.1      fvdl 
    275        1.1      fvdl /*
    276        1.1      fvdl  * Most actions in the fcntl() call are straightforward; simply
    277        1.1      fvdl  * pass control to the NetBSD system call. A few commands need
    278        1.1      fvdl  * conversions after the actual system call has done its work,
    279        1.1      fvdl  * because the flag values and lock structure are different.
    280        1.1      fvdl  */
    281        1.1      fvdl int
    282   1.37.2.1   nathanw linux_sys_fcntl(l, v, retval)
    283   1.37.2.1   nathanw 	struct lwp *l;
    284       1.11   thorpej 	void *v;
    285       1.11   thorpej 	register_t *retval;
    286       1.11   thorpej {
    287       1.12   mycroft 	struct linux_sys_fcntl_args /* {
    288        1.1      fvdl 		syscallarg(int) fd;
    289        1.1      fvdl 		syscallarg(int) cmd;
    290        1.1      fvdl 		syscallarg(void *) arg;
    291       1.11   thorpej 	} */ *uap = v;
    292   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    293       1.23       erh 	int fd, cmd, error;
    294       1.23       erh 	u_long val;
    295        1.1      fvdl 	caddr_t arg, sg;
    296        1.1      fvdl 	struct linux_flock lfl;
    297        1.1      fvdl 	struct flock *bfp, bfl;
    298       1.12   mycroft 	struct sys_fcntl_args fca;
    299       1.13      fvdl 	struct filedesc *fdp;
    300       1.13      fvdl 	struct file *fp;
    301       1.13      fvdl 	struct vnode *vp;
    302       1.13      fvdl 	struct vattr va;
    303  1.37.2.12   nathanw 	const struct cdevsw *cdev;
    304       1.13      fvdl 	long pgid;
    305       1.13      fvdl 	struct pgrp *pgrp;
    306       1.13      fvdl 	struct tty *tp, *(*d_tty) __P((dev_t));
    307        1.1      fvdl 
    308        1.1      fvdl 	fd = SCARG(uap, fd);
    309        1.1      fvdl 	cmd = SCARG(uap, cmd);
    310        1.1      fvdl 	arg = (caddr_t) SCARG(uap, arg);
    311        1.1      fvdl 
    312        1.1      fvdl 	switch (cmd) {
    313        1.1      fvdl 	case LINUX_F_DUPFD:
    314        1.1      fvdl 		cmd = F_DUPFD;
    315        1.1      fvdl 		break;
    316        1.1      fvdl 	case LINUX_F_GETFD:
    317        1.1      fvdl 		cmd = F_GETFD;
    318        1.1      fvdl 		break;
    319        1.1      fvdl 	case LINUX_F_SETFD:
    320        1.1      fvdl 		cmd = F_SETFD;
    321        1.1      fvdl 		break;
    322        1.1      fvdl 	case LINUX_F_GETFL:
    323        1.1      fvdl 		SCARG(&fca, fd) = fd;
    324        1.1      fvdl 		SCARG(&fca, cmd) = F_GETFL;
    325        1.1      fvdl 		SCARG(&fca, arg) = arg;
    326   1.37.2.1   nathanw 		if ((error = sys_fcntl(l, &fca, retval)))
    327        1.1      fvdl 			return error;
    328        1.1      fvdl 		retval[0] = bsd_to_linux_ioflags(retval[0]);
    329        1.1      fvdl 		return 0;
    330   1.37.2.4   nathanw 	case LINUX_F_SETFL: {
    331   1.37.2.4   nathanw 		struct file	*fp = NULL;
    332   1.37.2.4   nathanw 
    333       1.23       erh 		val = linux_to_bsd_ioflags((unsigned long)SCARG(uap, arg));
    334   1.37.2.2   nathanw 		/*
    335   1.37.2.4   nathanw 		 * Linux seems to have same semantics for sending SIGIO to the
    336   1.37.2.4   nathanw 		 * read side of socket, but slighly different semantics
    337   1.37.2.4   nathanw 		 * for SIGIO to the write side.  Rather than sending the SIGIO
    338   1.37.2.4   nathanw 		 * every time it's possible to write (directly) more data, it
    339   1.37.2.4   nathanw 		 * only sends SIGIO if last write(2) failed due to insufficient
    340   1.37.2.4   nathanw 		 * memory to hold the data. This is compatible enough
    341   1.37.2.4   nathanw 		 * with NetBSD semantics to not do anything about the
    342   1.37.2.4   nathanw 		 * difference.
    343   1.37.2.2   nathanw 		 *
    344   1.37.2.4   nathanw 		 * Linux does NOT send SIGIO for pipes. Deal with socketpair
    345   1.37.2.4   nathanw 		 * ones and DTYPE_PIPE ones. For these, we don't set
    346   1.37.2.4   nathanw 		 * the underlying flags (we don't pass O_ASYNC flag down
    347   1.37.2.4   nathanw 		 * to sys_fcntl()), but set the FASYNC flag for file descriptor,
    348   1.37.2.4   nathanw 		 * so that F_GETFL would report the ASYNC i/o is on.
    349   1.37.2.2   nathanw 		 */
    350   1.37.2.4   nathanw 		if (val & O_ASYNC) {
    351   1.37.2.4   nathanw 			if (((fp = fd_getfile(p->p_fd, fd)) == NULL))
    352   1.37.2.2   nathanw 			    return (EBADF);
    353   1.37.2.2   nathanw 
    354   1.37.2.2   nathanw 			FILE_USE(fp);
    355   1.37.2.2   nathanw 
    356   1.37.2.4   nathanw 			if (((fp->f_type == DTYPE_SOCKET) && fp->f_data
    357   1.37.2.4   nathanw 			      && ((struct socket *)fp->f_data)->so_state & SS_ISAPIPE)
    358   1.37.2.4   nathanw 			    || (fp->f_type == DTYPE_PIPE))
    359   1.37.2.4   nathanw 				val &= ~O_ASYNC;
    360   1.37.2.4   nathanw 			else {
    361   1.37.2.4   nathanw 				/* not a pipe, do not modify anything */
    362   1.37.2.4   nathanw 				FILE_UNUSE(fp, p);
    363   1.37.2.4   nathanw 				fp = NULL;
    364   1.37.2.2   nathanw 			}
    365   1.37.2.4   nathanw 		}
    366   1.37.2.2   nathanw 
    367   1.37.2.4   nathanw 		SCARG(&fca, fd) = fd;
    368   1.37.2.4   nathanw 		SCARG(&fca, cmd) = F_SETFL;
    369   1.37.2.4   nathanw 		SCARG(&fca, arg) = (caddr_t) val;
    370   1.37.2.4   nathanw 
    371   1.37.2.4   nathanw 		error = sys_fcntl(l, &fca, retval);
    372   1.37.2.4   nathanw 
    373   1.37.2.4   nathanw 		/* Now set the FASYNC flag for pipes */
    374   1.37.2.4   nathanw 		if (fp) {
    375   1.37.2.4   nathanw 			if (!error)
    376   1.37.2.4   nathanw 				fp->f_flag |= FASYNC;
    377   1.37.2.2   nathanw 			FILE_UNUSE(fp, p);
    378   1.37.2.2   nathanw 		}
    379   1.37.2.4   nathanw 
    380   1.37.2.4   nathanw 		return (error);
    381   1.37.2.4   nathanw 	    }
    382        1.1      fvdl 	case LINUX_F_GETLK:
    383   1.37.2.8   nathanw 		sg = stackgap_init(p, 0);
    384   1.37.2.8   nathanw 		bfp = (struct flock *) stackgap_alloc(p, &sg, sizeof *bfp);
    385       1.18    kleink 		if ((error = copyin(arg, &lfl, sizeof lfl)))
    386       1.18    kleink 			return error;
    387       1.18    kleink 		linux_to_bsd_flock(&lfl, &bfl);
    388       1.18    kleink 		if ((error = copyout(&bfl, bfp, sizeof bfl)))
    389       1.18    kleink 			return error;
    390        1.1      fvdl 		SCARG(&fca, fd) = fd;
    391        1.1      fvdl 		SCARG(&fca, cmd) = F_GETLK;
    392        1.1      fvdl 		SCARG(&fca, arg) = bfp;
    393   1.37.2.1   nathanw 		if ((error = sys_fcntl(l, &fca, retval)))
    394        1.1      fvdl 			return error;
    395        1.1      fvdl 		if ((error = copyin(bfp, &bfl, sizeof bfl)))
    396        1.1      fvdl 			return error;
    397        1.1      fvdl 		bsd_to_linux_flock(&bfl, &lfl);
    398        1.1      fvdl 		return copyout(&lfl, arg, sizeof lfl);
    399   1.37.2.8   nathanw 
    400        1.1      fvdl 	case LINUX_F_SETLK:
    401        1.1      fvdl 	case LINUX_F_SETLKW:
    402        1.1      fvdl 		cmd = (cmd == LINUX_F_SETLK ? F_SETLK : F_SETLKW);
    403        1.1      fvdl 		if ((error = copyin(arg, &lfl, sizeof lfl)))
    404        1.1      fvdl 			return error;
    405        1.1      fvdl 		linux_to_bsd_flock(&lfl, &bfl);
    406   1.37.2.8   nathanw 		sg = stackgap_init(p, 0);
    407   1.37.2.8   nathanw 		bfp = (struct flock *) stackgap_alloc(p, &sg, sizeof *bfp);
    408        1.1      fvdl 		if ((error = copyout(&bfl, bfp, sizeof bfl)))
    409        1.1      fvdl 			return error;
    410   1.37.2.9   nathanw 		arg = (caddr_t)bfp;
    411        1.1      fvdl 		break;
    412   1.37.2.8   nathanw 
    413        1.1      fvdl 	case LINUX_F_SETOWN:
    414       1.13      fvdl 	case LINUX_F_GETOWN:
    415       1.13      fvdl 		/*
    416   1.37.2.8   nathanw 		 * We need to route fcntl() for tty descriptors around normal
    417   1.37.2.8   nathanw 		 * fcntl(), since NetBSD tty TIOC{G,S}PGRP semantics is too
    418   1.37.2.8   nathanw 		 * restrictive for Linux F_{G,S}ETOWN. For non-tty descriptors,
    419   1.37.2.8   nathanw 		 * this is not a problem.
    420       1.13      fvdl 		 */
    421       1.13      fvdl 		fdp = p->p_fd;
    422   1.37.2.2   nathanw 		if ((fp = fd_getfile(fdp, fd)) == NULL)
    423       1.13      fvdl 			return EBADF;
    424   1.37.2.8   nathanw 		/* FILE_USE() not needed here */
    425   1.37.2.8   nathanw 		if (fp->f_type != DTYPE_VNODE) {
    426  1.37.2.12   nathanw 	    not_tty:
    427   1.37.2.8   nathanw 			/* Not a tty, proceed with common fcntl() */
    428       1.13      fvdl 			cmd = cmd == LINUX_F_SETOWN ? F_SETOWN : F_GETOWN;
    429       1.13      fvdl 			break;
    430       1.13      fvdl 		}
    431   1.37.2.8   nathanw 
    432   1.37.2.8   nathanw 		/* check that the vnode is a tty */
    433       1.13      fvdl 		vp = (struct vnode *)fp->f_data;
    434       1.13      fvdl 		if (vp->v_type != VCHR)
    435  1.37.2.12   nathanw 			goto not_tty;
    436       1.13      fvdl 		if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
    437       1.13      fvdl 			return error;
    438  1.37.2.12   nathanw 		cdev = cdevsw_lookup(va.va_rdev);
    439  1.37.2.12   nathanw 		if (cdev == NULL)
    440  1.37.2.12   nathanw 			return (ENXIO);
    441  1.37.2.12   nathanw 		d_tty = cdev->d_tty;
    442       1.13      fvdl 		if (!d_tty || (!(tp = (*d_tty)(va.va_rdev))))
    443  1.37.2.12   nathanw 			goto not_tty;
    444   1.37.2.8   nathanw 
    445   1.37.2.8   nathanw 		/* set tty pg_id appropriately */
    446       1.13      fvdl 		if (cmd == LINUX_F_GETOWN) {
    447       1.13      fvdl 			retval[0] = tp->t_pgrp ? tp->t_pgrp->pg_id : NO_PID;
    448       1.13      fvdl 			return 0;
    449       1.13      fvdl 		}
    450       1.13      fvdl 		if ((long)arg <= 0) {
    451       1.13      fvdl 			pgid = -(long)arg;
    452       1.13      fvdl 		} else {
    453       1.13      fvdl 			struct proc *p1 = pfind((long)arg);
    454   1.37.2.8   nathanw 			if (p1 == NULL)
    455       1.13      fvdl 				return (ESRCH);
    456       1.13      fvdl 			pgid = (long)p1->p_pgrp->pg_id;
    457       1.13      fvdl 		}
    458       1.13      fvdl 		pgrp = pgfind(pgid);
    459       1.13      fvdl 		if (pgrp == NULL || pgrp->pg_session != p->p_session)
    460       1.13      fvdl 			return EPERM;
    461       1.13      fvdl 		tp->t_pgrp = pgrp;
    462       1.13      fvdl 		return 0;
    463   1.37.2.8   nathanw 
    464        1.1      fvdl 	default:
    465        1.1      fvdl 		return EOPNOTSUPP;
    466        1.1      fvdl 	}
    467        1.1      fvdl 
    468        1.1      fvdl 	SCARG(&fca, fd) = fd;
    469        1.1      fvdl 	SCARG(&fca, cmd) = cmd;
    470        1.1      fvdl 	SCARG(&fca, arg) = arg;
    471       1.12   mycroft 
    472   1.37.2.1   nathanw 	return sys_fcntl(l, &fca, retval);
    473        1.1      fvdl }
    474        1.1      fvdl 
    475        1.1      fvdl /*
    476        1.1      fvdl  * Convert a NetBSD stat structure to a Linux stat structure.
    477        1.1      fvdl  * Only the order of the fields and the padding in the structure
    478        1.9      fvdl  * is different. linux_fakedev is a machine-dependent function
    479        1.9      fvdl  * which optionally converts device driver major/minor numbers
    480        1.9      fvdl  * (XXX horrible, but what can you do against code that compares
    481        1.9      fvdl  * things against constant major device numbers? sigh)
    482        1.1      fvdl  */
    483        1.1      fvdl static void
    484        1.1      fvdl bsd_to_linux_stat(bsp, lsp)
    485        1.1      fvdl 	struct stat *bsp;
    486        1.1      fvdl 	struct linux_stat *lsp;
    487        1.1      fvdl {
    488       1.12   mycroft 
    489   1.37.2.7   nathanw 	lsp->lst_dev     = linux_fakedev(bsp->st_dev, 0);
    490        1.1      fvdl 	lsp->lst_ino     = bsp->st_ino;
    491       1.19  christos 	lsp->lst_mode    = (linux_mode_t)bsp->st_mode;
    492       1.19  christos 	if (bsp->st_nlink >= (1 << 15))
    493       1.19  christos 		lsp->lst_nlink = (1 << 15) - 1;
    494       1.19  christos 	else
    495       1.19  christos 		lsp->lst_nlink = (linux_nlink_t)bsp->st_nlink;
    496        1.1      fvdl 	lsp->lst_uid     = bsp->st_uid;
    497        1.1      fvdl 	lsp->lst_gid     = bsp->st_gid;
    498   1.37.2.7   nathanw 	lsp->lst_rdev    = linux_fakedev(bsp->st_rdev, 1);
    499        1.1      fvdl 	lsp->lst_size    = bsp->st_size;
    500        1.1      fvdl 	lsp->lst_blksize = bsp->st_blksize;
    501        1.1      fvdl 	lsp->lst_blocks  = bsp->st_blocks;
    502        1.1      fvdl 	lsp->lst_atime   = bsp->st_atime;
    503        1.1      fvdl 	lsp->lst_mtime   = bsp->st_mtime;
    504        1.1      fvdl 	lsp->lst_ctime   = bsp->st_ctime;
    505        1.1      fvdl }
    506        1.1      fvdl 
    507        1.1      fvdl /*
    508        1.1      fvdl  * The stat functions below are plain sailing. stat and lstat are handled
    509        1.1      fvdl  * by one function to avoid code duplication.
    510        1.1      fvdl  */
    511        1.1      fvdl int
    512   1.37.2.1   nathanw linux_sys_fstat(l, v, retval)
    513   1.37.2.1   nathanw 	struct lwp *l;
    514       1.11   thorpej 	void *v;
    515       1.11   thorpej 	register_t *retval;
    516       1.11   thorpej {
    517       1.12   mycroft 	struct linux_sys_fstat_args /* {
    518        1.1      fvdl 		syscallarg(int) fd;
    519        1.1      fvdl 		syscallarg(linux_stat *) sp;
    520       1.11   thorpej 	} */ *uap = v;
    521   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    522       1.21   thorpej 	struct sys___fstat13_args fsa;
    523        1.1      fvdl 	struct linux_stat tmplst;
    524        1.1      fvdl 	struct stat *st,tmpst;
    525        1.1      fvdl 	caddr_t sg;
    526        1.1      fvdl 	int error;
    527        1.1      fvdl 
    528   1.37.2.8   nathanw 	sg = stackgap_init(p, 0);
    529        1.1      fvdl 
    530   1.37.2.8   nathanw 	st = stackgap_alloc(p, &sg, sizeof (struct stat));
    531        1.1      fvdl 
    532        1.1      fvdl 	SCARG(&fsa, fd) = SCARG(uap, fd);
    533        1.1      fvdl 	SCARG(&fsa, sb) = st;
    534        1.1      fvdl 
    535   1.37.2.1   nathanw 	if ((error = sys___fstat13(l, &fsa, retval)))
    536        1.1      fvdl 		return error;
    537        1.1      fvdl 
    538        1.1      fvdl 	if ((error = copyin(st, &tmpst, sizeof tmpst)))
    539        1.1      fvdl 		return error;
    540        1.1      fvdl 
    541        1.1      fvdl 	bsd_to_linux_stat(&tmpst, &tmplst);
    542        1.1      fvdl 
    543        1.1      fvdl 	if ((error = copyout(&tmplst, SCARG(uap, sp), sizeof tmplst)))
    544        1.1      fvdl 		return error;
    545        1.1      fvdl 
    546        1.1      fvdl 	return 0;
    547        1.1      fvdl }
    548        1.1      fvdl 
    549        1.1      fvdl static int
    550   1.37.2.1   nathanw linux_stat1(l, v, retval, dolstat)
    551   1.37.2.1   nathanw 	struct lwp *l;
    552       1.14  christos 	void *v;
    553        1.1      fvdl 	register_t *retval;
    554        1.1      fvdl 	int dolstat;
    555        1.1      fvdl {
    556       1.21   thorpej 	struct sys___stat13_args sa;
    557        1.1      fvdl 	struct linux_stat tmplst;
    558        1.1      fvdl 	struct stat *st, tmpst;
    559   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    560        1.1      fvdl 	caddr_t sg;
    561        1.1      fvdl 	int error;
    562       1.14  christos 	struct linux_sys_stat_args *uap = v;
    563        1.1      fvdl 
    564   1.37.2.8   nathanw 	sg = stackgap_init(p, 0);
    565   1.37.2.8   nathanw 	st = stackgap_alloc(p, &sg, sizeof (struct stat));
    566       1.37  jdolecek 	if (dolstat)
    567       1.37  jdolecek 		CHECK_ALT_SYMLINK(p, &sg, SCARG(uap, path));
    568       1.37  jdolecek 	else
    569       1.37  jdolecek 		CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    570        1.1      fvdl 
    571        1.1      fvdl 	SCARG(&sa, ub) = st;
    572        1.1      fvdl 	SCARG(&sa, path) = SCARG(uap, path);
    573        1.1      fvdl 
    574   1.37.2.1   nathanw 	if ((error = (dolstat ? sys___lstat13(l, &sa, retval) :
    575   1.37.2.1   nathanw 				sys___stat13(l, &sa, retval))))
    576        1.1      fvdl 		return error;
    577        1.1      fvdl 
    578        1.1      fvdl 	if ((error = copyin(st, &tmpst, sizeof tmpst)))
    579        1.1      fvdl 		return error;
    580        1.1      fvdl 
    581        1.1      fvdl 	bsd_to_linux_stat(&tmpst, &tmplst);
    582        1.1      fvdl 
    583        1.1      fvdl 	if ((error = copyout(&tmplst, SCARG(uap, sp), sizeof tmplst)))
    584        1.1      fvdl 		return error;
    585        1.1      fvdl 
    586        1.1      fvdl 	return 0;
    587        1.1      fvdl }
    588        1.1      fvdl 
    589        1.1      fvdl int
    590   1.37.2.1   nathanw linux_sys_stat(l, v, retval)
    591   1.37.2.1   nathanw 	struct lwp *l;
    592       1.11   thorpej 	void *v;
    593       1.11   thorpej 	register_t *retval;
    594       1.11   thorpej {
    595       1.12   mycroft 	struct linux_sys_stat_args /* {
    596       1.27  christos 		syscallarg(const char *) path;
    597        1.1      fvdl 		syscallarg(struct linux_stat *) sp;
    598       1.11   thorpej 	} */ *uap = v;
    599       1.11   thorpej 
    600   1.37.2.1   nathanw 	return linux_stat1(l, uap, retval, 0);
    601        1.1      fvdl }
    602        1.1      fvdl 
    603       1.23       erh /* Note: this is "newlstat" in the Linux sources */
    604       1.23       erh /*	(we don't bother with the old lstat currently) */
    605        1.1      fvdl int
    606   1.37.2.1   nathanw linux_sys_lstat(l, v, retval)
    607   1.37.2.1   nathanw 	struct lwp *l;
    608       1.11   thorpej 	void *v;
    609       1.11   thorpej 	register_t *retval;
    610       1.11   thorpej {
    611       1.12   mycroft 	struct linux_sys_lstat_args /* {
    612       1.27  christos 		syscallarg(const char *) path;
    613        1.1      fvdl 		syscallarg(struct linux_stat *) sp;
    614       1.11   thorpej 	} */ *uap = v;
    615       1.11   thorpej 
    616   1.37.2.1   nathanw 	return linux_stat1(l, uap, retval, 1);
    617        1.1      fvdl }
    618        1.1      fvdl 
    619        1.1      fvdl /*
    620       1.10      fvdl  * The following syscalls are mostly here because of the alternate path check.
    621        1.1      fvdl  */
    622        1.1      fvdl int
    623   1.37.2.1   nathanw linux_sys_access(l, v, retval)
    624   1.37.2.1   nathanw 	struct lwp *l;
    625       1.11   thorpej 	void *v;
    626       1.11   thorpej 	register_t *retval;
    627       1.11   thorpej {
    628       1.12   mycroft 	struct linux_sys_access_args /* {
    629       1.27  christos 		syscallarg(const char *) path;
    630        1.1      fvdl 		syscallarg(int) flags;
    631       1.11   thorpej 	} */ *uap = v;
    632   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    633   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    634        1.1      fvdl 
    635       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    636        1.1      fvdl 
    637   1.37.2.1   nathanw 	return sys_access(l, uap, retval);
    638        1.2      fvdl }
    639        1.2      fvdl 
    640        1.2      fvdl int
    641   1.37.2.1   nathanw linux_sys_unlink(l, v, retval)
    642   1.37.2.1   nathanw 	struct lwp *l;
    643       1.11   thorpej 	void *v;
    644        1.2      fvdl 	register_t *retval;
    645        1.2      fvdl 
    646        1.2      fvdl {
    647       1.12   mycroft 	struct linux_sys_unlink_args /* {
    648       1.27  christos 		syscallarg(const char *) path;
    649       1.11   thorpej 	} */ *uap = v;
    650   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    651   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    652        1.2      fvdl 
    653       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    654        1.2      fvdl 
    655   1.37.2.1   nathanw 	return sys_unlink(l, uap, retval);
    656        1.2      fvdl }
    657        1.2      fvdl 
    658       1.10      fvdl int
    659   1.37.2.1   nathanw linux_sys_chdir(l, v, retval)
    660   1.37.2.1   nathanw 	struct lwp *l;
    661       1.11   thorpej 	void *v;
    662       1.11   thorpej 	register_t *retval;
    663       1.11   thorpej {
    664       1.12   mycroft 	struct linux_sys_chdir_args /* {
    665       1.27  christos 		syscallarg(const char *) path;
    666       1.11   thorpej 	} */ *uap = v;
    667   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    668   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    669        1.2      fvdl 
    670       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    671        1.2      fvdl 
    672   1.37.2.1   nathanw 	return sys_chdir(l, uap, retval);
    673        1.2      fvdl }
    674        1.2      fvdl 
    675        1.2      fvdl int
    676   1.37.2.1   nathanw linux_sys_mknod(l, v, retval)
    677   1.37.2.1   nathanw 	struct lwp *l;
    678       1.11   thorpej 	void *v;
    679       1.11   thorpej 	register_t *retval;
    680       1.11   thorpej {
    681       1.12   mycroft 	struct linux_sys_mknod_args /* {
    682       1.27  christos 		syscallarg(const char *) path;
    683        1.2      fvdl 		syscallarg(int) mode;
    684        1.2      fvdl 		syscallarg(int) dev;
    685       1.11   thorpej 	} */ *uap = v;
    686   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    687   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    688        1.2      fvdl 
    689       1.30  jdolecek 	CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    690        1.2      fvdl 
    691       1.10      fvdl 	/*
    692   1.37.2.3   nathanw 	 * BSD handles FIFOs separately
    693       1.10      fvdl 	 */
    694       1.21   thorpej 	if (SCARG(uap, mode) & S_IFIFO) {
    695  1.37.2.13   thorpej 		struct sys_mkfifo_args bma;
    696  1.37.2.13   thorpej 
    697  1.37.2.13   thorpej 		SCARG(&bma, path) = SCARG(uap, path);
    698  1.37.2.13   thorpej 		SCARG(&bma, mode) = SCARG(uap, mode);
    699  1.37.2.13   thorpej 		return sys_mkfifo(p, &bma, retval);
    700  1.37.2.13   thorpej 	} else {
    701  1.37.2.13   thorpej 		struct sys_mknod_args bma;
    702  1.37.2.13   thorpej 
    703       1.21   thorpej 		SCARG(&bma, path) = SCARG(uap, path);
    704       1.21   thorpej 		SCARG(&bma, mode) = SCARG(uap, mode);
    705  1.37.2.13   thorpej 		/*
    706  1.37.2.13   thorpej 		 * Linux device numbers uses 8 bits for minor and 8 bits
    707  1.37.2.13   thorpej 		 * for major. Due to how we map our major and minor,
    708  1.37.2.13   thorpej 		 * this just fints into our dev_t. Just mask off the
    709  1.37.2.13   thorpej 		 * upper 16bit to remove any random junk.
    710  1.37.2.13   thorpej 		 */
    711  1.37.2.13   thorpej 		SCARG(&bma, dev) = SCARG(uap, dev) & 0xffff;
    712  1.37.2.13   thorpej 		return sys_mknod(l, &bma, retval);
    713  1.37.2.13   thorpej 	}
    714        1.2      fvdl }
    715        1.2      fvdl 
    716        1.2      fvdl int
    717   1.37.2.1   nathanw linux_sys_chmod(l, v, retval)
    718   1.37.2.1   nathanw 	struct lwp *l;
    719       1.11   thorpej 	void *v;
    720       1.11   thorpej 	register_t *retval;
    721       1.11   thorpej {
    722       1.12   mycroft 	struct linux_sys_chmod_args /* {
    723       1.27  christos 		syscallarg(const char *) path;
    724        1.2      fvdl 		syscallarg(int) mode;
    725       1.11   thorpej 	} */ *uap = v;
    726   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    727   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    728        1.2      fvdl 
    729       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    730        1.2      fvdl 
    731   1.37.2.1   nathanw 	return sys_chmod(l, uap, retval);
    732        1.2      fvdl }
    733        1.2      fvdl 
    734   1.37.2.7   nathanw #if defined(__i386__) || defined(__m68k__) || defined(__arm__)
    735        1.2      fvdl int
    736   1.37.2.1   nathanw linux_sys_chown16(l, v, retval)
    737   1.37.2.1   nathanw 	struct lwp *l;
    738       1.11   thorpej 	void *v;
    739       1.11   thorpej 	register_t *retval;
    740       1.11   thorpej {
    741       1.31      fvdl 	struct linux_sys_chown16_args /* {
    742       1.27  christos 		syscallarg(const char *) path;
    743        1.2      fvdl 		syscallarg(int) uid;
    744        1.2      fvdl 		syscallarg(int) gid;
    745       1.11   thorpej 	} */ *uap = v;
    746   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    747       1.22    kleink 	struct sys___posix_chown_args bca;
    748   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    749        1.2      fvdl 
    750       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    751        1.2      fvdl 
    752       1.10      fvdl 	SCARG(&bca, path) = SCARG(uap, path);
    753       1.10      fvdl 	SCARG(&bca, uid) = ((linux_uid_t)SCARG(uap, uid) == (linux_uid_t)-1) ?
    754       1.10      fvdl 		(uid_t)-1 : SCARG(uap, uid);
    755       1.10      fvdl 	SCARG(&bca, gid) = ((linux_gid_t)SCARG(uap, gid) == (linux_gid_t)-1) ?
    756       1.10      fvdl 		(gid_t)-1 : SCARG(uap, gid);
    757       1.10      fvdl 
    758   1.37.2.1   nathanw 	return sys___posix_chown(l, &bca, retval);
    759       1.10      fvdl }
    760       1.10      fvdl 
    761       1.10      fvdl int
    762   1.37.2.1   nathanw linux_sys_fchown16(l, v, retval)
    763   1.37.2.1   nathanw 	struct lwp *l;
    764       1.11   thorpej 	void *v;
    765       1.11   thorpej 	register_t *retval;
    766       1.11   thorpej {
    767       1.31      fvdl 	struct linux_sys_fchown16_args /* {
    768       1.10      fvdl 		syscallarg(int) fd;
    769       1.10      fvdl 		syscallarg(int) uid;
    770       1.10      fvdl 		syscallarg(int) gid;
    771       1.11   thorpej 	} */ *uap = v;
    772       1.22    kleink 	struct sys___posix_fchown_args bfa;
    773       1.10      fvdl 
    774       1.10      fvdl 	SCARG(&bfa, fd) = SCARG(uap, fd);
    775       1.10      fvdl 	SCARG(&bfa, uid) = ((linux_uid_t)SCARG(uap, uid) == (linux_uid_t)-1) ?
    776       1.10      fvdl 		(uid_t)-1 : SCARG(uap, uid);
    777       1.10      fvdl 	SCARG(&bfa, gid) = ((linux_gid_t)SCARG(uap, gid) == (linux_gid_t)-1) ?
    778       1.10      fvdl 		(gid_t)-1 : SCARG(uap, gid);
    779       1.10      fvdl 
    780   1.37.2.1   nathanw 	return sys___posix_fchown(l, &bfa, retval);
    781        1.2      fvdl }
    782        1.2      fvdl 
    783        1.2      fvdl int
    784   1.37.2.1   nathanw linux_sys_lchown16(l, v, retval)
    785   1.37.2.1   nathanw 	struct lwp *l;
    786       1.23       erh 	void *v;
    787       1.23       erh 	register_t *retval;
    788       1.23       erh {
    789       1.31      fvdl 	struct linux_sys_lchown16_args /* {
    790       1.23       erh 		syscallarg(char *) path;
    791       1.23       erh 		syscallarg(int) uid;
    792       1.23       erh 		syscallarg(int) gid;
    793       1.23       erh 	} */ *uap = v;
    794   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    795       1.23       erh 	struct sys___posix_lchown_args bla;
    796   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    797       1.33      fvdl 
    798       1.36  jdolecek 	CHECK_ALT_SYMLINK(p, &sg, SCARG(uap, path));
    799       1.23       erh 
    800       1.23       erh 	SCARG(&bla, path) = SCARG(uap, path);
    801       1.23       erh 	SCARG(&bla, uid) = ((linux_uid_t)SCARG(uap, uid) == (linux_uid_t)-1) ?
    802       1.23       erh 		(uid_t)-1 : SCARG(uap, uid);
    803       1.23       erh 	SCARG(&bla, gid) = ((linux_gid_t)SCARG(uap, gid) == (linux_gid_t)-1) ?
    804       1.23       erh 		(gid_t)-1 : SCARG(uap, gid);
    805       1.23       erh 
    806   1.37.2.1   nathanw 	return sys___posix_lchown(l, &bla, retval);
    807       1.33      fvdl }
    808   1.37.2.7   nathanw #endif /* __i386__ || __m68k__ || __arm__ */
    809   1.37.2.5   nathanw #if defined (__i386__) || defined (__m68k__) || \
    810   1.37.2.7   nathanw     defined (__powerpc__) || defined (__mips__) || defined(__arm__)
    811       1.33      fvdl int
    812   1.37.2.1   nathanw linux_sys_chown(l, v, retval)
    813   1.37.2.1   nathanw 	struct lwp *l;
    814       1.33      fvdl 	void *v;
    815       1.33      fvdl 	register_t *retval;
    816       1.33      fvdl {
    817       1.33      fvdl 	struct linux_sys_chown_args /* {
    818       1.33      fvdl 		syscallarg(char *) path;
    819       1.33      fvdl 		syscallarg(int) uid;
    820       1.33      fvdl 		syscallarg(int) gid;
    821       1.33      fvdl 	} */ *uap = v;
    822   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    823   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    824       1.33      fvdl 
    825       1.33      fvdl 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    826       1.33      fvdl 
    827   1.37.2.1   nathanw 	return sys___posix_chown(l, uap, retval);
    828       1.33      fvdl }
    829       1.33      fvdl 
    830       1.33      fvdl int
    831   1.37.2.1   nathanw linux_sys_lchown(l, v, retval)
    832   1.37.2.1   nathanw 	struct lwp *l;
    833       1.33      fvdl 	void *v;
    834       1.33      fvdl 	register_t *retval;
    835       1.33      fvdl {
    836       1.33      fvdl 	struct linux_sys_lchown_args /* {
    837       1.33      fvdl 		syscallarg(char *) path;
    838       1.33      fvdl 		syscallarg(int) uid;
    839       1.33      fvdl 		syscallarg(int) gid;
    840       1.33      fvdl 	} */ *uap = v;
    841   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    842   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    843       1.33      fvdl 
    844       1.36  jdolecek 	CHECK_ALT_SYMLINK(p, &sg, SCARG(uap, path));
    845       1.33      fvdl 
    846   1.37.2.1   nathanw 	return sys___posix_lchown(l, uap, retval);
    847       1.23       erh }
    848   1.37.2.7   nathanw #endif /* __i386__ || __m68k__ || __powerpc__ || __mips__ || __arm__ */
    849       1.32   thorpej 
    850       1.23       erh int
    851   1.37.2.1   nathanw linux_sys_rename(l, v, retval)
    852   1.37.2.1   nathanw 	struct lwp *l;
    853       1.11   thorpej 	void *v;
    854       1.11   thorpej 	register_t *retval;
    855       1.11   thorpej {
    856       1.12   mycroft 	struct linux_sys_rename_args /* {
    857       1.27  christos 		syscallarg(const char *) from;
    858       1.27  christos 		syscallarg(const char *) to;
    859       1.11   thorpej 	} */ *uap = v;
    860   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    861   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    862        1.2      fvdl 
    863       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, from));
    864       1.30  jdolecek 	CHECK_ALT_CREAT(p, &sg, SCARG(uap, to));
    865        1.2      fvdl 
    866   1.37.2.1   nathanw 	return sys___posix_rename(l, uap, retval);
    867        1.2      fvdl }
    868        1.2      fvdl 
    869        1.2      fvdl int
    870   1.37.2.1   nathanw linux_sys_mkdir(l, v, retval)
    871   1.37.2.1   nathanw 	struct lwp *l;
    872       1.11   thorpej 	void *v;
    873       1.11   thorpej 	register_t *retval;
    874       1.11   thorpej {
    875       1.12   mycroft 	struct linux_sys_mkdir_args /* {
    876       1.27  christos 		syscallarg(const char *) path;
    877        1.7      fvdl 		syscallarg(int) mode;
    878       1.11   thorpej 	} */ *uap = v;
    879   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    880   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    881        1.2      fvdl 
    882       1.30  jdolecek 	CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    883       1.12   mycroft 
    884   1.37.2.1   nathanw 	return sys_mkdir(l, uap, retval);
    885        1.2      fvdl }
    886        1.2      fvdl 
    887        1.2      fvdl int
    888   1.37.2.1   nathanw linux_sys_rmdir(l, v, retval)
    889   1.37.2.1   nathanw 	struct lwp *l;
    890       1.11   thorpej 	void *v;
    891       1.11   thorpej 	register_t *retval;
    892       1.11   thorpej {
    893       1.12   mycroft 	struct linux_sys_rmdir_args /* {
    894       1.27  christos 		syscallarg(const char *) path;
    895       1.11   thorpej 	} */ *uap = v;
    896   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    897   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    898        1.2      fvdl 
    899       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    900       1.12   mycroft 
    901   1.37.2.1   nathanw 	return sys_rmdir(l, uap, retval);
    902        1.2      fvdl }
    903        1.2      fvdl 
    904        1.2      fvdl int
    905   1.37.2.1   nathanw linux_sys_symlink(l, v, retval)
    906   1.37.2.1   nathanw 	struct lwp *l;
    907       1.11   thorpej 	void *v;
    908       1.11   thorpej 	register_t *retval;
    909       1.11   thorpej {
    910       1.12   mycroft 	struct linux_sys_symlink_args /* {
    911       1.27  christos 		syscallarg(const char *) path;
    912       1.27  christos 		syscallarg(const char *) to;
    913       1.11   thorpej 	} */ *uap = v;
    914   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    915   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    916        1.2      fvdl 
    917       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    918       1.30  jdolecek 	CHECK_ALT_CREAT(p, &sg, SCARG(uap, to));
    919        1.2      fvdl 
    920   1.37.2.1   nathanw 	return sys_symlink(l, uap, retval);
    921       1.34      fvdl }
    922       1.34      fvdl 
    923       1.34      fvdl int
    924   1.37.2.1   nathanw linux_sys_link(l, v, retval)
    925   1.37.2.1   nathanw 	struct lwp *l;
    926       1.34      fvdl 	void *v;
    927       1.34      fvdl 	register_t *retval;
    928       1.34      fvdl {
    929       1.34      fvdl 	struct linux_sys_link_args /* {
    930       1.34      fvdl 		syscallarg(const char *) path;
    931       1.34      fvdl 		syscallarg(const char *) link;
    932       1.34      fvdl 	} */ *uap = v;
    933   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    934   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    935       1.34      fvdl 
    936       1.34      fvdl 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    937       1.34      fvdl 	CHECK_ALT_CREAT(p, &sg, SCARG(uap, link));
    938       1.34      fvdl 
    939   1.37.2.1   nathanw 	return sys_link(l, uap, retval);
    940        1.2      fvdl }
    941        1.2      fvdl 
    942        1.2      fvdl int
    943   1.37.2.1   nathanw linux_sys_readlink(l, v, retval)
    944   1.37.2.1   nathanw 	struct lwp *l;
    945       1.11   thorpej 	void *v;
    946       1.11   thorpej 	register_t *retval;
    947       1.11   thorpej {
    948       1.12   mycroft 	struct linux_sys_readlink_args /* {
    949       1.27  christos 		syscallarg(const char *) name;
    950        1.2      fvdl 		syscallarg(char *) buf;
    951        1.2      fvdl 		syscallarg(int) count;
    952       1.11   thorpej 	} */ *uap = v;
    953   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    954   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    955        1.2      fvdl 
    956       1.36  jdolecek 	CHECK_ALT_SYMLINK(p, &sg, SCARG(uap, name));
    957       1.12   mycroft 
    958   1.37.2.1   nathanw 	return sys_readlink(l, uap, retval);
    959        1.2      fvdl }
    960        1.2      fvdl 
    961        1.2      fvdl int
    962   1.37.2.1   nathanw linux_sys_truncate(l, v, retval)
    963   1.37.2.1   nathanw 	struct lwp *l;
    964       1.11   thorpej 	void *v;
    965       1.11   thorpej 	register_t *retval;
    966       1.11   thorpej {
    967       1.12   mycroft 	struct linux_sys_truncate_args /* {
    968       1.27  christos 		syscallarg(const char *) path;
    969        1.2      fvdl 		syscallarg(long) length;
    970       1.11   thorpej 	} */ *uap = v;
    971   1.37.2.1   nathanw 	struct proc *p = l->l_proc;
    972   1.37.2.8   nathanw 	caddr_t sg = stackgap_init(p, 0);
    973        1.2      fvdl 
    974       1.30  jdolecek 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    975       1.12   mycroft 
    976   1.37.2.1   nathanw 	return compat_43_sys_truncate(l, uap, retval);
    977       1.15      fvdl }
    978       1.15      fvdl 
    979       1.15      fvdl /*
    980       1.15      fvdl  * This is just fsync() for now (just as it is in the Linux kernel)
    981       1.23       erh  * Note: this is not implemented under Linux on Alpha and Arm
    982       1.23       erh  *	but should still be defined in our syscalls.master.
    983       1.23       erh  *	(syscall #148 on the arm)
    984       1.15      fvdl  */
    985       1.15      fvdl int
    986   1.37.2.1   nathanw linux_sys_fdatasync(l, v, retval)
    987   1.37.2.1   nathanw 	struct lwp *l;
    988       1.15      fvdl 	void *v;
    989       1.15      fvdl 	register_t *retval;
    990       1.15      fvdl {
    991       1.16  christos #ifdef notdef
    992       1.15      fvdl 	struct linux_sys_fdatasync_args /* {
    993       1.15      fvdl 		syscallarg(int) fd;
    994       1.15      fvdl 	} */ *uap = v;
    995       1.16  christos #endif
    996   1.37.2.1   nathanw 	return sys_fsync(l, v, retval);
    997       1.28      tron }
    998       1.28      tron 
    999       1.28      tron /*
   1000       1.28      tron  * pread(2).
   1001       1.28      tron  */
   1002       1.28      tron int
   1003   1.37.2.1   nathanw linux_sys_pread(l, v, retval)
   1004   1.37.2.1   nathanw 	struct lwp *l;
   1005       1.28      tron 	void *v;
   1006       1.28      tron 	register_t *retval;
   1007       1.28      tron {
   1008       1.28      tron 	struct linux_sys_pread_args /* {
   1009       1.28      tron 		syscallarg(int) fd;
   1010       1.28      tron 		syscallarg(void *) buf;
   1011       1.28      tron 		syscallarg(size_t) nbyte;
   1012       1.28      tron 		syscallarg(linux_off_t) offset;
   1013       1.28      tron 	} */ *uap = v;
   1014       1.28      tron 	struct sys_pread_args pra;
   1015       1.28      tron 
   1016       1.28      tron 	SCARG(&pra, fd) = SCARG(uap, fd);
   1017       1.28      tron 	SCARG(&pra, buf) = SCARG(uap, buf);
   1018       1.28      tron 	SCARG(&pra, nbyte) = SCARG(uap, nbyte);
   1019       1.28      tron 	SCARG(&pra, offset) = SCARG(uap, offset);
   1020       1.28      tron 
   1021   1.37.2.1   nathanw 	return sys_read(l, &pra, retval);
   1022       1.28      tron }
   1023       1.28      tron 
   1024       1.28      tron /*
   1025       1.28      tron  * pwrite(2).
   1026       1.28      tron  */
   1027       1.28      tron int
   1028   1.37.2.1   nathanw linux_sys_pwrite(l, v, retval)
   1029   1.37.2.1   nathanw 	struct lwp *l;
   1030       1.28      tron 	void *v;
   1031       1.28      tron 	register_t *retval;
   1032       1.28      tron {
   1033       1.28      tron 	struct linux_sys_pwrite_args /* {
   1034       1.28      tron 		syscallarg(int) fd;
   1035       1.28      tron 		syscallarg(void *) buf;
   1036       1.28      tron 		syscallarg(size_t) nbyte;
   1037       1.28      tron 		syscallarg(linux_off_t) offset;
   1038       1.28      tron 	} */ *uap = v;
   1039       1.28      tron 	struct sys_pwrite_args pra;
   1040       1.28      tron 
   1041       1.28      tron 	SCARG(&pra, fd) = SCARG(uap, fd);
   1042       1.28      tron 	SCARG(&pra, buf) = SCARG(uap, buf);
   1043       1.28      tron 	SCARG(&pra, nbyte) = SCARG(uap, nbyte);
   1044       1.28      tron 	SCARG(&pra, offset) = SCARG(uap, offset);
   1045       1.28      tron 
   1046   1.37.2.1   nathanw 	return sys_write(l, &pra, retval);
   1047        1.1      fvdl }
   1048