Home | History | Annotate | Line # | Download | only in freebsd
freebsd_file.c revision 1.9
      1  1.9   thorpej /*	$NetBSD: freebsd_file.c,v 1.9 1998/02/19 00:36:03 thorpej Exp $	*/
      2  1.1   mycroft 
      3  1.1   mycroft /*
      4  1.1   mycroft  * Copyright (c) 1995 Frank van der Linden
      5  1.1   mycroft  * All rights reserved.
      6  1.1   mycroft  *
      7  1.1   mycroft  * Redistribution and use in source and binary forms, with or without
      8  1.1   mycroft  * modification, are permitted provided that the following conditions
      9  1.1   mycroft  * are met:
     10  1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     11  1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     12  1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     14  1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     15  1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     16  1.1   mycroft  *    must display the following acknowledgement:
     17  1.1   mycroft  *      This product includes software developed for the NetBSD Project
     18  1.1   mycroft  *      by Frank van der Linden
     19  1.1   mycroft  * 4. The name of the author may not be used to endorse or promote products
     20  1.1   mycroft  *    derived from this software without specific prior written permission
     21  1.1   mycroft  *
     22  1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23  1.1   mycroft  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24  1.1   mycroft  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25  1.1   mycroft  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26  1.1   mycroft  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27  1.1   mycroft  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28  1.1   mycroft  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29  1.1   mycroft  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30  1.1   mycroft  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     31  1.1   mycroft  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32  1.1   mycroft  *
     33  1.1   mycroft  *	from: linux_file.c,v 1.3 1995/04/04 04:21:30 mycroft Exp
     34  1.1   mycroft  */
     35  1.9   thorpej 
     36  1.9   thorpej #include "fs_nfs.h"
     37  1.1   mycroft 
     38  1.1   mycroft #include <sys/param.h>
     39  1.1   mycroft #include <sys/systm.h>
     40  1.1   mycroft #include <sys/namei.h>
     41  1.1   mycroft #include <sys/proc.h>
     42  1.1   mycroft #include <sys/file.h>
     43  1.1   mycroft #include <sys/stat.h>
     44  1.1   mycroft #include <sys/filedesc.h>
     45  1.1   mycroft #include <sys/ioctl.h>
     46  1.1   mycroft #include <sys/kernel.h>
     47  1.1   mycroft #include <sys/mount.h>
     48  1.1   mycroft #include <sys/malloc.h>
     49  1.1   mycroft 
     50  1.1   mycroft #include <sys/syscallargs.h>
     51  1.1   mycroft 
     52  1.1   mycroft #include <compat/freebsd/freebsd_syscallargs.h>
     53  1.1   mycroft #include <compat/freebsd/freebsd_util.h>
     54  1.1   mycroft 
     55  1.1   mycroft #define	ARRAY_LENGTH(array)	(sizeof(array)/sizeof(array[0]))
     56  1.1   mycroft 
     57  1.1   mycroft const char freebsd_emul_path[] = "/emul/freebsd";
     58  1.1   mycroft 
     59  1.3  christos static char * convert_from_freebsd_mount_type __P((int));
     60  1.3  christos 
     61  1.1   mycroft static char *
     62  1.1   mycroft convert_from_freebsd_mount_type(type)
     63  1.1   mycroft 	int type;
     64  1.1   mycroft {
     65  1.1   mycroft 	static char *netbsd_mount_type[] = {
     66  1.1   mycroft 		NULL,     /*  0 = MOUNT_NONE */
     67  1.2       gwr 		"ffs",	  /*  1 = "Fast" Filesystem */
     68  1.1   mycroft 		"nfs",	  /*  2 = Network Filesystem */
     69  1.1   mycroft 		"mfs",	  /*  3 = Memory Filesystem */
     70  1.1   mycroft 		"msdos",  /*  4 = MSDOS Filesystem */
     71  1.1   mycroft 		"lfs",	  /*  5 = Log-based Filesystem */
     72  1.1   mycroft 		"lofs",	  /*  6 = Loopback filesystem */
     73  1.1   mycroft 		"fdesc",  /*  7 = File Descriptor Filesystem */
     74  1.1   mycroft 		"portal", /*  8 = Portal Filesystem */
     75  1.1   mycroft 		"null",	  /*  9 = Minimal Filesystem Layer */
     76  1.1   mycroft 		"umap",	  /* 10 = User/Group Identifier Remapping Filesystem */
     77  1.1   mycroft 		"kernfs", /* 11 = Kernel Information Filesystem */
     78  1.1   mycroft 		"procfs", /* 12 = /proc Filesystem */
     79  1.1   mycroft 		"afs",	  /* 13 = Andrew Filesystem */
     80  1.1   mycroft 		"cd9660", /* 14 = ISO9660 (aka CDROM) Filesystem */
     81  1.1   mycroft 		"union",  /* 15 = Union (translucent) Filesystem */
     82  1.1   mycroft 		NULL,     /* 16 = "devfs" - existing device Filesystem */
     83  1.1   mycroft #if 0 /* These filesystems don't exist in FreeBSD */
     84  1.1   mycroft 		"adosfs", /* ?? = AmigaDOS Filesystem */
     85  1.1   mycroft #endif
     86  1.1   mycroft 	};
     87  1.1   mycroft 
     88  1.1   mycroft 	if (type < 0 || type >= ARRAY_LENGTH(netbsd_mount_type))
     89  1.1   mycroft 		return (NULL);
     90  1.1   mycroft 	return (netbsd_mount_type[type]);
     91  1.1   mycroft }
     92  1.1   mycroft 
     93  1.1   mycroft int
     94  1.1   mycroft freebsd_sys_mount(p, v, retval)
     95  1.1   mycroft 	struct proc *p;
     96  1.1   mycroft 	void *v;
     97  1.1   mycroft 	register_t *retval;
     98  1.1   mycroft {
     99  1.1   mycroft 	struct freebsd_sys_mount_args /* {
    100  1.1   mycroft 		syscallarg(int) type;
    101  1.1   mycroft 		syscallarg(char *) path;
    102  1.1   mycroft 		syscallarg(int) flags;
    103  1.1   mycroft 		syscallarg(caddr_t) data;
    104  1.1   mycroft 	} */ *uap = v;
    105  1.1   mycroft 	int error;
    106  1.1   mycroft 	char *type, *s;
    107  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    108  1.1   mycroft 	struct sys_mount_args bma;
    109  1.1   mycroft 
    110  1.1   mycroft 	if ((type = convert_from_freebsd_mount_type(SCARG(uap, type))) == NULL)
    111  1.1   mycroft 		return ENODEV;
    112  1.1   mycroft 	s = stackgap_alloc(&sg, MFSNAMELEN + 1);
    113  1.3  christos 	if ((error = copyout(type, s, strlen(type) + 1)) != 0)
    114  1.1   mycroft 		return error;
    115  1.1   mycroft 	SCARG(&bma, type) = s;
    116  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    117  1.1   mycroft 	SCARG(&bma, path) = SCARG(uap, path);
    118  1.1   mycroft 	SCARG(&bma, flags) = SCARG(uap, flags);
    119  1.1   mycroft 	SCARG(&bma, data) = SCARG(uap, data);
    120  1.1   mycroft 	return sys_mount(p, &bma, retval);
    121  1.1   mycroft }
    122  1.1   mycroft 
    123  1.1   mycroft /*
    124  1.1   mycroft  * The following syscalls are only here because of the alternate path check.
    125  1.1   mycroft  */
    126  1.1   mycroft 
    127  1.1   mycroft /* XXX - UNIX domain: int freebsd_sys_bind(int s, caddr_t name, int namelen); */
    128  1.1   mycroft /* XXX - UNIX domain: int freebsd_sys_connect(int s, caddr_t name, int namelen); */
    129  1.1   mycroft 
    130  1.1   mycroft 
    131  1.1   mycroft int
    132  1.1   mycroft freebsd_sys_open(p, v, retval)
    133  1.1   mycroft 	struct proc *p;
    134  1.1   mycroft 	void *v;
    135  1.1   mycroft 	register_t *retval;
    136  1.1   mycroft {
    137  1.1   mycroft 	struct freebsd_sys_open_args /* {
    138  1.1   mycroft 		syscallarg(char *) path;
    139  1.1   mycroft 		syscallarg(int) flags;
    140  1.1   mycroft 		syscallarg(int) mode;
    141  1.1   mycroft 	} */ *uap = v;
    142  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    143  1.1   mycroft 
    144  1.1   mycroft 	if (SCARG(uap, flags) & O_CREAT)
    145  1.1   mycroft 		FREEBSD_CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    146  1.1   mycroft 	else
    147  1.1   mycroft 		FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    148  1.1   mycroft 	return sys_open(p, uap, retval);
    149  1.1   mycroft }
    150  1.1   mycroft 
    151  1.1   mycroft int
    152  1.1   mycroft compat_43_freebsd_sys_creat(p, v, retval)
    153  1.1   mycroft 	struct proc *p;
    154  1.1   mycroft 	void *v;
    155  1.1   mycroft 	register_t *retval;
    156  1.1   mycroft {
    157  1.1   mycroft 	struct compat_43_freebsd_sys_creat_args /* {
    158  1.1   mycroft 		syscallarg(char *) path;
    159  1.1   mycroft 		syscallarg(int) mode;
    160  1.1   mycroft 	} */ *uap = v;
    161  1.1   mycroft 	caddr_t sg  = stackgap_init(p->p_emul);
    162  1.1   mycroft 
    163  1.1   mycroft 	FREEBSD_CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    164  1.1   mycroft 	return compat_43_sys_creat(p, uap, retval);
    165  1.1   mycroft }
    166  1.1   mycroft 
    167  1.1   mycroft int
    168  1.1   mycroft freebsd_sys_link(p, v, retval)
    169  1.1   mycroft 	struct proc *p;
    170  1.1   mycroft 	void *v;
    171  1.1   mycroft 	register_t *retval;
    172  1.1   mycroft {
    173  1.1   mycroft 	struct freebsd_sys_link_args /* {
    174  1.1   mycroft 		syscallarg(char *) path;
    175  1.1   mycroft 		syscallarg(char *) link;
    176  1.1   mycroft 	} */ *uap = v;
    177  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    178  1.1   mycroft 
    179  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    180  1.1   mycroft 	FREEBSD_CHECK_ALT_CREAT(p, &sg, SCARG(uap, link));
    181  1.1   mycroft 	return sys_link(p, uap, retval);
    182  1.1   mycroft }
    183  1.1   mycroft 
    184  1.1   mycroft int
    185  1.1   mycroft freebsd_sys_unlink(p, v, retval)
    186  1.1   mycroft 	struct proc *p;
    187  1.1   mycroft 	void *v;
    188  1.1   mycroft 	register_t *retval;
    189  1.1   mycroft {
    190  1.1   mycroft 	struct freebsd_sys_unlink_args /* {
    191  1.1   mycroft 		syscallarg(char *) path;
    192  1.1   mycroft 	} */ *uap = v;
    193  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    194  1.1   mycroft 
    195  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    196  1.1   mycroft 	return sys_unlink(p, uap, retval);
    197  1.1   mycroft }
    198  1.1   mycroft 
    199  1.1   mycroft int
    200  1.1   mycroft freebsd_sys_chdir(p, v, retval)
    201  1.1   mycroft 	struct proc *p;
    202  1.1   mycroft 	void *v;
    203  1.1   mycroft 	register_t *retval;
    204  1.1   mycroft {
    205  1.1   mycroft 	struct freebsd_sys_chdir_args /* {
    206  1.1   mycroft 		syscallarg(char *) path;
    207  1.1   mycroft 	} */ *uap = v;
    208  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    209  1.1   mycroft 
    210  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    211  1.1   mycroft 	return sys_chdir(p, uap, retval);
    212  1.1   mycroft }
    213  1.1   mycroft 
    214  1.1   mycroft int
    215  1.1   mycroft freebsd_sys_mknod(p, v, retval)
    216  1.1   mycroft 	struct proc *p;
    217  1.1   mycroft 	void *v;
    218  1.1   mycroft 	register_t *retval;
    219  1.1   mycroft {
    220  1.1   mycroft 	struct freebsd_sys_mknod_args /* {
    221  1.1   mycroft 		syscallarg(char *) path;
    222  1.1   mycroft 		syscallarg(int) mode;
    223  1.1   mycroft 		syscallarg(int) dev;
    224  1.1   mycroft 	} */ *uap = v;
    225  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    226  1.1   mycroft 
    227  1.1   mycroft 	FREEBSD_CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    228  1.1   mycroft 	return sys_mknod(p, uap, retval);
    229  1.1   mycroft }
    230  1.1   mycroft 
    231  1.1   mycroft int
    232  1.1   mycroft freebsd_sys_chmod(p, v, retval)
    233  1.1   mycroft 	struct proc *p;
    234  1.1   mycroft 	void *v;
    235  1.1   mycroft 	register_t *retval;
    236  1.1   mycroft {
    237  1.1   mycroft 	struct freebsd_sys_chmod_args /* {
    238  1.1   mycroft 		syscallarg(char *) path;
    239  1.1   mycroft 		syscallarg(int) mode;
    240  1.1   mycroft 	} */ *uap = v;
    241  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    242  1.1   mycroft 
    243  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    244  1.1   mycroft 	return sys_chmod(p, uap, retval);
    245  1.1   mycroft }
    246  1.1   mycroft 
    247  1.1   mycroft int
    248  1.1   mycroft freebsd_sys_chown(p, v, retval)
    249  1.1   mycroft 	struct proc *p;
    250  1.1   mycroft 	void *v;
    251  1.1   mycroft 	register_t *retval;
    252  1.1   mycroft {
    253  1.1   mycroft 	struct freebsd_sys_chown_args /* {
    254  1.1   mycroft 		syscallarg(char *) path;
    255  1.1   mycroft 		syscallarg(int) uid;
    256  1.1   mycroft 		syscallarg(int) gid;
    257  1.1   mycroft 	} */ *uap = v;
    258  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    259  1.1   mycroft 
    260  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    261  1.1   mycroft 	return sys_chown(p, uap, retval);
    262  1.6     enami }
    263  1.6     enami 
    264  1.6     enami int
    265  1.6     enami freebsd_sys_lchown(p, v, retval)
    266  1.6     enami 	struct proc *p;
    267  1.6     enami 	void *v;
    268  1.6     enami 	register_t *retval;
    269  1.6     enami {
    270  1.6     enami 	struct freebsd_sys_lchown_args /* {
    271  1.6     enami 		syscallarg(char *) path;
    272  1.6     enami 		syscallarg(int) uid;
    273  1.6     enami 		syscallarg(int) gid;
    274  1.6     enami 	} */ *uap = v;
    275  1.6     enami 	caddr_t sg = stackgap_init(p->p_emul);
    276  1.6     enami 
    277  1.6     enami 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    278  1.6     enami 	return sys_lchown(p, uap, retval);
    279  1.1   mycroft }
    280  1.1   mycroft 
    281  1.1   mycroft int
    282  1.1   mycroft freebsd_sys_unmount(p, v, retval)
    283  1.1   mycroft 	struct proc *p;
    284  1.1   mycroft 	void *v;
    285  1.1   mycroft 	register_t *retval;
    286  1.1   mycroft {
    287  1.1   mycroft 	struct freebsd_sys_unmount_args /* {
    288  1.1   mycroft 		syscallarg(char *) path;
    289  1.1   mycroft 		syscallarg(int) flags;
    290  1.1   mycroft 	} */ *uap = v;
    291  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    292  1.1   mycroft 
    293  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    294  1.1   mycroft 	return sys_unmount(p, uap, retval);
    295  1.1   mycroft }
    296  1.1   mycroft 
    297  1.1   mycroft int
    298  1.1   mycroft freebsd_sys_access(p, v, retval)
    299  1.1   mycroft 	struct proc *p;
    300  1.1   mycroft 	void *v;
    301  1.1   mycroft 	register_t *retval;
    302  1.1   mycroft {
    303  1.1   mycroft 	struct freebsd_sys_access_args /* {
    304  1.1   mycroft 		syscallarg(char *) path;
    305  1.1   mycroft 		syscallarg(int) flags;
    306  1.1   mycroft 	} */ *uap = v;
    307  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    308  1.1   mycroft 
    309  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    310  1.1   mycroft 	return sys_access(p, uap, retval);
    311  1.1   mycroft }
    312  1.1   mycroft 
    313  1.1   mycroft int
    314  1.1   mycroft freebsd_sys_chflags(p, v, retval)
    315  1.1   mycroft 	struct proc *p;
    316  1.1   mycroft 	void *v;
    317  1.1   mycroft 	register_t *retval;
    318  1.1   mycroft {
    319  1.1   mycroft 	struct freebsd_sys_chflags_args /* {
    320  1.1   mycroft 		syscallarg(char *) path;
    321  1.1   mycroft 		syscallarg(int) flags;
    322  1.1   mycroft 	} */ *uap = v;
    323  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    324  1.1   mycroft 
    325  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    326  1.1   mycroft 	return sys_chflags(p, uap, retval);
    327  1.1   mycroft }
    328  1.1   mycroft 
    329  1.1   mycroft int
    330  1.1   mycroft compat_43_freebsd_sys_stat(p, v, retval)
    331  1.1   mycroft 	struct proc *p;
    332  1.1   mycroft 	void *v;
    333  1.1   mycroft 	register_t *retval;
    334  1.1   mycroft {
    335  1.1   mycroft 	struct compat_43_freebsd_sys_stat_args /* {
    336  1.1   mycroft 		syscallarg(char *) path;
    337  1.7  christos 		syscallarg(struct stat43 *) ub;
    338  1.1   mycroft 	} */ *uap = v;
    339  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    340  1.1   mycroft 
    341  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    342  1.1   mycroft 	return compat_43_sys_stat(p, uap, retval);
    343  1.1   mycroft }
    344  1.1   mycroft 
    345  1.1   mycroft int
    346  1.1   mycroft compat_43_freebsd_sys_lstat(p, v, retval)
    347  1.1   mycroft 	struct proc *p;
    348  1.1   mycroft 	void *v;
    349  1.1   mycroft 	register_t *retval;
    350  1.1   mycroft {
    351  1.1   mycroft 	struct compat_43_freebsd_sys_lstat_args /* {
    352  1.1   mycroft 		syscallarg(char *) path;
    353  1.7  christos 		syscallarg(struct stat43 *) ub;
    354  1.1   mycroft 	} */ *uap = v;
    355  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    356  1.1   mycroft 
    357  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    358  1.1   mycroft 	return compat_43_sys_lstat(p, uap, retval);
    359  1.1   mycroft }
    360  1.1   mycroft 
    361  1.1   mycroft int
    362  1.1   mycroft freebsd_sys_revoke(p, v, retval)
    363  1.1   mycroft 	struct proc *p;
    364  1.1   mycroft 	void *v;
    365  1.1   mycroft 	register_t *retval;
    366  1.1   mycroft {
    367  1.1   mycroft 	struct freebsd_sys_revoke_args /* {
    368  1.1   mycroft 		syscallarg(char *) path;
    369  1.1   mycroft 	} */ *uap = v;
    370  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    371  1.1   mycroft 
    372  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    373  1.1   mycroft 	return sys_revoke(p, uap, retval);
    374  1.1   mycroft }
    375  1.1   mycroft 
    376  1.1   mycroft int
    377  1.1   mycroft freebsd_sys_symlink(p, v, retval)
    378  1.1   mycroft 	struct proc *p;
    379  1.1   mycroft 	void *v;
    380  1.1   mycroft 	register_t *retval;
    381  1.1   mycroft {
    382  1.1   mycroft 	struct freebsd_sys_symlink_args /* {
    383  1.1   mycroft 		syscallarg(char *) path;
    384  1.1   mycroft 		syscallarg(char *) link;
    385  1.1   mycroft 	} */ *uap = v;
    386  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    387  1.1   mycroft 
    388  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    389  1.1   mycroft 	FREEBSD_CHECK_ALT_CREAT(p, &sg, SCARG(uap, link));
    390  1.1   mycroft 	return sys_symlink(p, uap, retval);
    391  1.1   mycroft }
    392  1.1   mycroft 
    393  1.1   mycroft int
    394  1.1   mycroft freebsd_sys_readlink(p, v, retval)
    395  1.1   mycroft 	struct proc *p;
    396  1.1   mycroft 	void *v;
    397  1.1   mycroft 	register_t *retval;
    398  1.1   mycroft {
    399  1.1   mycroft 	struct freebsd_sys_readlink_args /* {
    400  1.1   mycroft 		syscallarg(char *) path;
    401  1.1   mycroft 		syscallarg(char *) buf;
    402  1.1   mycroft 		syscallarg(int) count;
    403  1.1   mycroft 	} */ *uap = v;
    404  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    405  1.1   mycroft 
    406  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    407  1.1   mycroft 	return sys_readlink(p, uap, retval);
    408  1.1   mycroft }
    409  1.1   mycroft 
    410  1.1   mycroft int
    411  1.1   mycroft freebsd_sys_execve(p, v, retval)
    412  1.1   mycroft 	struct proc *p;
    413  1.1   mycroft 	void *v;
    414  1.1   mycroft 	register_t *retval;
    415  1.1   mycroft {
    416  1.1   mycroft 	struct freebsd_sys_execve_args /* {
    417  1.1   mycroft 		syscallarg(char *) path;
    418  1.1   mycroft 		syscallarg(char **) argp;
    419  1.1   mycroft 		syscallarg(char **) envp;
    420  1.1   mycroft 	} */ *uap = v;
    421  1.4   mycroft 	struct sys_execve_args ap;
    422  1.4   mycroft 	caddr_t sg;
    423  1.1   mycroft 
    424  1.4   mycroft 	sg = stackgap_init(p->p_emul);
    425  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    426  1.4   mycroft 
    427  1.4   mycroft 	SCARG(&ap, path) = SCARG(uap, path);
    428  1.4   mycroft 	SCARG(&ap, argp) = SCARG(uap, argp);
    429  1.4   mycroft 	SCARG(&ap, envp) = SCARG(uap, envp);
    430  1.4   mycroft 
    431  1.4   mycroft 	return sys_execve(p, &ap, retval);
    432  1.1   mycroft }
    433  1.1   mycroft 
    434  1.1   mycroft int
    435  1.1   mycroft freebsd_sys_chroot(p, v, retval)
    436  1.1   mycroft 	struct proc *p;
    437  1.1   mycroft 	void *v;
    438  1.1   mycroft 	register_t *retval;
    439  1.1   mycroft {
    440  1.1   mycroft 	struct freebsd_sys_chroot_args /* {
    441  1.1   mycroft 		syscallarg(char *) path;
    442  1.1   mycroft 	} */ *uap = v;
    443  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    444  1.1   mycroft 
    445  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    446  1.1   mycroft 	return sys_chroot(p, uap, retval);
    447  1.1   mycroft }
    448  1.1   mycroft 
    449  1.1   mycroft int
    450  1.1   mycroft freebsd_sys_rename(p, v, retval)
    451  1.1   mycroft 	struct proc *p;
    452  1.1   mycroft 	void *v;
    453  1.1   mycroft 	register_t *retval;
    454  1.1   mycroft {
    455  1.1   mycroft 	struct freebsd_sys_rename_args /* {
    456  1.1   mycroft 		syscallarg(char *) from;
    457  1.1   mycroft 		syscallarg(char *) to;
    458  1.1   mycroft 	} */ *uap = v;
    459  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    460  1.1   mycroft 
    461  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, from));
    462  1.1   mycroft 	FREEBSD_CHECK_ALT_CREAT(p, &sg, SCARG(uap, to));
    463  1.1   mycroft 	return sys_rename(p, uap, retval);
    464  1.1   mycroft }
    465  1.1   mycroft 
    466  1.1   mycroft int
    467  1.1   mycroft compat_43_freebsd_sys_truncate(p, v, retval)
    468  1.1   mycroft 	struct proc *p;
    469  1.1   mycroft 	void *v;
    470  1.1   mycroft 	register_t *retval;
    471  1.1   mycroft {
    472  1.1   mycroft 	struct compat_43_freebsd_sys_truncate_args /* {
    473  1.1   mycroft 		syscallarg(char *) path;
    474  1.1   mycroft 		syscallarg(long) length;
    475  1.1   mycroft 	} */ *uap = v;
    476  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    477  1.1   mycroft 
    478  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    479  1.1   mycroft 	return compat_43_sys_truncate(p, uap, retval);
    480  1.1   mycroft }
    481  1.1   mycroft 
    482  1.1   mycroft int
    483  1.1   mycroft freebsd_sys_mkfifo(p, v, retval)
    484  1.1   mycroft 	struct proc *p;
    485  1.1   mycroft 	void *v;
    486  1.1   mycroft 	register_t *retval;
    487  1.1   mycroft {
    488  1.1   mycroft 	struct freebsd_sys_mkfifo_args /* {
    489  1.1   mycroft 		syscallarg(char *) path;
    490  1.1   mycroft 		syscallarg(int) mode;
    491  1.1   mycroft 	} */ *uap = v;
    492  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    493  1.1   mycroft 
    494  1.1   mycroft 	FREEBSD_CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    495  1.1   mycroft 	return sys_mkfifo(p, uap, retval);
    496  1.1   mycroft }
    497  1.1   mycroft 
    498  1.1   mycroft int
    499  1.1   mycroft freebsd_sys_mkdir(p, v, retval)
    500  1.1   mycroft 	struct proc *p;
    501  1.1   mycroft 	void *v;
    502  1.1   mycroft 	register_t *retval;
    503  1.1   mycroft {
    504  1.1   mycroft 	struct freebsd_sys_mkdir_args /* {
    505  1.1   mycroft 		syscallarg(char *) path;
    506  1.1   mycroft 		syscallarg(int) mode;
    507  1.1   mycroft 	} */ *uap = v;
    508  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    509  1.1   mycroft 
    510  1.1   mycroft 	FREEBSD_CHECK_ALT_CREAT(p, &sg, SCARG(uap, path));
    511  1.1   mycroft 	return sys_mkdir(p, uap, retval);
    512  1.1   mycroft }
    513  1.1   mycroft 
    514  1.1   mycroft int
    515  1.1   mycroft freebsd_sys_rmdir(p, v, retval)
    516  1.1   mycroft 	struct proc *p;
    517  1.1   mycroft 	void *v;
    518  1.1   mycroft 	register_t *retval;
    519  1.1   mycroft {
    520  1.1   mycroft 	struct freebsd_sys_rmdir_args /* {
    521  1.1   mycroft 		syscallarg(char *) path;
    522  1.1   mycroft 	} */ *uap = v;
    523  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    524  1.1   mycroft 
    525  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    526  1.1   mycroft 	return sys_rmdir(p, uap, retval);
    527  1.1   mycroft }
    528  1.1   mycroft 
    529  1.1   mycroft int
    530  1.1   mycroft freebsd_sys_statfs(p, v, retval)
    531  1.1   mycroft 	struct proc *p;
    532  1.1   mycroft 	void *v;
    533  1.1   mycroft 	register_t *retval;
    534  1.1   mycroft {
    535  1.1   mycroft 	struct freebsd_sys_stat_args /* {
    536  1.1   mycroft 		syscallarg(char *) path;
    537  1.1   mycroft 		syscallarg(struct statfs *) buf;
    538  1.1   mycroft 	} */ *uap = v;
    539  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    540  1.1   mycroft 
    541  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    542  1.1   mycroft 	return sys_statfs(p, uap, retval);
    543  1.1   mycroft }
    544  1.1   mycroft 
    545  1.5   thorpej #ifdef NFS
    546  1.1   mycroft int
    547  1.1   mycroft freebsd_sys_getfh(p, v, retval)
    548  1.1   mycroft 	struct proc *p;
    549  1.1   mycroft 	void *v;
    550  1.1   mycroft 	register_t *retval;
    551  1.1   mycroft {
    552  1.1   mycroft 	struct freebsd_sys_getfh_args /* {
    553  1.1   mycroft 		syscallarg(char *) fname;
    554  1.1   mycroft 		syscallarg(fhandle_t *) fhp;
    555  1.1   mycroft 	} */ *uap = v;
    556  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    557  1.1   mycroft 
    558  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, fname));
    559  1.1   mycroft 	return sys_getfh(p, uap, retval);
    560  1.1   mycroft }
    561  1.5   thorpej #endif /* NFS */
    562  1.1   mycroft 
    563  1.1   mycroft int
    564  1.1   mycroft freebsd_sys_stat(p, v, retval)
    565  1.1   mycroft 	struct proc *p;
    566  1.1   mycroft 	void *v;
    567  1.1   mycroft 	register_t *retval;
    568  1.1   mycroft {
    569  1.1   mycroft 	struct freebsd_sys_stat_args /* {
    570  1.1   mycroft 		syscallarg(char *) path;
    571  1.8  christos 		syscallarg(struct stat12 *) ub;
    572  1.1   mycroft 	} */ *uap = v;
    573  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    574  1.1   mycroft 
    575  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    576  1.8  christos 	return compat_12_sys_stat(p, uap, retval);
    577  1.1   mycroft }
    578  1.1   mycroft 
    579  1.1   mycroft int
    580  1.1   mycroft freebsd_sys_lstat(p, v, retval)
    581  1.1   mycroft 	struct proc *p;
    582  1.1   mycroft 	void *v;
    583  1.1   mycroft 	register_t *retval;
    584  1.1   mycroft {
    585  1.1   mycroft 	struct freebsd_sys_lstat_args /* {
    586  1.1   mycroft 		syscallarg(char *) path;
    587  1.8  christos 		syscallarg(struct stat12 *) ub;
    588  1.1   mycroft 	} */ *uap = v;
    589  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    590  1.1   mycroft 
    591  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    592  1.8  christos 	return compat_12_sys_lstat(p, uap, retval);
    593  1.1   mycroft }
    594  1.1   mycroft 
    595  1.1   mycroft int
    596  1.1   mycroft freebsd_sys_pathconf(p, v, retval)
    597  1.1   mycroft 	struct proc *p;
    598  1.1   mycroft 	void *v;
    599  1.1   mycroft 	register_t *retval;
    600  1.1   mycroft {
    601  1.1   mycroft 	struct freebsd_sys_pathconf_args /* {
    602  1.1   mycroft 		syscallarg(char *) path;
    603  1.1   mycroft 		syscallarg(int) name;
    604  1.1   mycroft 	} */ *uap = v;
    605  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    606  1.1   mycroft 
    607  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    608  1.1   mycroft 	return sys_pathconf(p, uap, retval);
    609  1.1   mycroft }
    610  1.1   mycroft 
    611  1.1   mycroft int
    612  1.1   mycroft freebsd_sys_truncate(p, v, retval)
    613  1.1   mycroft 	struct proc *p;
    614  1.1   mycroft 	void *v;
    615  1.1   mycroft 	register_t *retval;
    616  1.1   mycroft {
    617  1.1   mycroft 	struct freebsd_sys_truncate_args /* {
    618  1.1   mycroft 		syscallarg(char *) path;
    619  1.1   mycroft 		syscallarg(int) pad;
    620  1.1   mycroft 		syscallarg(off_t) length;
    621  1.1   mycroft 	} */ *uap = v;
    622  1.1   mycroft 	caddr_t sg = stackgap_init(p->p_emul);
    623  1.1   mycroft 
    624  1.1   mycroft 	FREEBSD_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    625  1.1   mycroft 	return sys_truncate(p, uap, retval);
    626  1.1   mycroft }
    627