Home | History | Annotate | Line # | Download | only in netbsd32
netbsd32_execve.c revision 1.33.2.1.4.2
      1  1.33.2.1.4.2  sborrill /*	$NetBSD: netbsd32_execve.c,v 1.33.2.1.4.2 2014/02/03 11:56:20 sborrill Exp $	*/
      2           1.1       mrg 
      3           1.1       mrg /*
      4           1.1       mrg  * Copyright (c) 1998, 2001 Matthew R. Green
      5           1.1       mrg  * All rights reserved.
      6           1.1       mrg  *
      7           1.1       mrg  * Redistribution and use in source and binary forms, with or without
      8           1.1       mrg  * modification, are permitted provided that the following conditions
      9           1.1       mrg  * are met:
     10           1.1       mrg  * 1. Redistributions of source code must retain the above copyright
     11           1.1       mrg  *    notice, this list of conditions and the following disclaimer.
     12           1.1       mrg  * 2. Redistributions in binary form must reproduce the above copyright
     13           1.1       mrg  *    notice, this list of conditions and the following disclaimer in the
     14           1.1       mrg  *    documentation and/or other materials provided with the distribution.
     15           1.1       mrg  *
     16           1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17           1.1       mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18           1.1       mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19           1.1       mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20           1.1       mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21           1.1       mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22           1.1       mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23           1.1       mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24           1.1       mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25           1.1       mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26           1.1       mrg  * SUCH DAMAGE.
     27           1.1       mrg  */
     28           1.6     lukem 
     29           1.6     lukem #include <sys/cdefs.h>
     30          1.25  christos 
     31  1.33.2.1.4.2  sborrill __KERNEL_RCSID(0, "$NetBSD: netbsd32_execve.c,v 1.33.2.1.4.2 2014/02/03 11:56:20 sborrill Exp $");
     32           1.1       mrg 
     33           1.1       mrg #include <sys/param.h>
     34           1.1       mrg #include <sys/systm.h>
     35      1.33.2.1       riz #include <sys/atomic.h>
     36           1.1       mrg #include <sys/mount.h>
     37      1.33.2.1       riz #include <sys/namei.h>
     38           1.1       mrg #include <sys/stat.h>
     39      1.33.2.1       riz #include <sys/spawn.h>
     40      1.33.2.1       riz #include <sys/uidinfo.h>
     41           1.1       mrg #include <sys/vnode.h>
     42           1.1       mrg #include <sys/file.h>
     43           1.1       mrg #include <sys/filedesc.h>
     44           1.1       mrg #include <sys/syscallargs.h>
     45           1.1       mrg #include <sys/proc.h>
     46           1.1       mrg #include <sys/exec.h>
     47           1.1       mrg 
     48           1.1       mrg #include <compat/netbsd32/netbsd32.h>
     49           1.1       mrg #include <compat/netbsd32/netbsd32_syscall.h>
     50           1.1       mrg #include <compat/netbsd32/netbsd32_syscallargs.h>
     51           1.1       mrg 
     52          1.23      cube static int
     53          1.23      cube netbsd32_execve_fetch_element(char * const *array, size_t index, char **value)
     54          1.23      cube {
     55          1.23      cube 	int error;
     56          1.23      cube 	netbsd32_charp const *a32 = (void const *)array;
     57          1.23      cube 	netbsd32_charp e;
     58          1.23      cube 
     59          1.23      cube 	error = copyin(a32 + index, &e, sizeof(e));
     60          1.23      cube 	if (error)
     61          1.23      cube 		return error;
     62          1.23      cube 	*value = (char *)NETBSD32PTR64(e);
     63          1.23      cube 	return 0;
     64          1.23      cube }
     65           1.1       mrg 
     66           1.1       mrg int
     67          1.31       dsl netbsd32_execve(struct lwp *l, const struct netbsd32_execve_args *uap, register_t *retval)
     68           1.1       mrg {
     69          1.31       dsl 	/* {
     70           1.1       mrg 		syscallarg(const netbsd32_charp) path;
     71           1.1       mrg 		syscallarg(netbsd32_charpp) argp;
     72           1.1       mrg 		syscallarg(netbsd32_charpp) envp;
     73          1.31       dsl 	} */
     74          1.29       dsl 	const char *path = SCARG_P32(uap, path);
     75           1.1       mrg 
     76          1.29       dsl 	return execve1(l, path, SCARG_P32(uap, argp),
     77          1.29       dsl 	    SCARG_P32(uap, envp), netbsd32_execve_fetch_element);
     78           1.1       mrg }
     79          1.33      matt 
     80          1.33      matt int
     81          1.33      matt netbsd32_fexecve(struct lwp *l, const struct netbsd32_fexecve_args *uap,
     82          1.33      matt 		 register_t *retval)
     83          1.33      matt {
     84          1.33      matt 	/* {
     85          1.33      matt 		syscallarg(int) fd;
     86          1.33      matt 		syscallarg(netbsd32_charpp) argp;
     87          1.33      matt 		syscallarg(netbsd32_charpp) envp;
     88          1.33      matt 	} */
     89          1.33      matt 	struct sys_fexecve_args ua;
     90          1.33      matt 
     91          1.33      matt 	NETBSD32TO64_UAP(fd);
     92          1.33      matt 	NETBSD32TOP_UAP(argp, char * const);
     93          1.33      matt 	NETBSD32TOP_UAP(envp, char * const);
     94          1.33      matt 
     95          1.33      matt 	return sys_fexecve(l, &ua, retval);
     96          1.33      matt }
     97      1.33.2.1       riz 
     98      1.33.2.1       riz static int
     99      1.33.2.1       riz netbsd32_posix_spawn_fa_alloc(struct posix_spawn_file_actions **fap,
    100  1.33.2.1.4.2  sborrill     const struct netbsd32_posix_spawn_file_actions *ufa, rlim_t lim)
    101      1.33.2.1       riz {
    102      1.33.2.1       riz 	struct posix_spawn_file_actions *fa;
    103      1.33.2.1       riz 	struct netbsd32_posix_spawn_file_actions fa32;
    104      1.33.2.1       riz 	struct netbsd32_posix_spawn_file_actions_entry *fae32 = NULL, *f32 = NULL;
    105      1.33.2.1       riz 	struct posix_spawn_file_actions_entry *fae;
    106      1.33.2.1       riz 	char *pbuf = NULL;
    107      1.33.2.1       riz 	int error;
    108      1.33.2.1       riz 	size_t fal, fal32, slen, i = 0;
    109      1.33.2.1       riz 
    110      1.33.2.1       riz 	error = copyin(ufa, &fa32, sizeof(fa32));
    111      1.33.2.1       riz 	if (error)
    112      1.33.2.1       riz 		return error;
    113      1.33.2.1       riz 
    114      1.33.2.1       riz 	if (fa32.len == 0)
    115      1.33.2.1       riz 		return 0;
    116      1.33.2.1       riz 
    117      1.33.2.1       riz 	fa = kmem_alloc(sizeof(*fa), KM_SLEEP);
    118      1.33.2.1       riz 	fa->len = fa->size = fa32.len;
    119      1.33.2.1       riz 
    120  1.33.2.1.4.2  sborrill 	if (fa->len > lim) {
    121  1.33.2.1.4.2  sborrill 		kmem_free(fa, sizeof(*fa));
    122  1.33.2.1.4.2  sborrill 		return EINVAL;
    123  1.33.2.1.4.2  sborrill 	}
    124  1.33.2.1.4.2  sborrill 
    125      1.33.2.1       riz 	fal = fa->len * sizeof(*fae);
    126      1.33.2.1       riz 	fal32 = fa->len * sizeof(*fae32);
    127      1.33.2.1       riz 
    128      1.33.2.1       riz 	fa->fae = kmem_alloc(fal, KM_SLEEP);
    129      1.33.2.1       riz 	fae32 = kmem_alloc(fal32, KM_SLEEP);
    130      1.33.2.1       riz 	error = copyin(NETBSD32PTR64(fa32.fae), fae32, fal32);
    131      1.33.2.1       riz 	if (error)
    132      1.33.2.1       riz 		goto out;
    133      1.33.2.1       riz 
    134      1.33.2.1       riz 	pbuf = PNBUF_GET();
    135      1.33.2.1       riz 	for (; i < fa->len; i++) {
    136      1.33.2.1       riz 		fae = &fa->fae[i];
    137      1.33.2.1       riz 		f32 = &fae32[i];
    138      1.33.2.1       riz 		fae->fae_action = f32->fae_action;
    139      1.33.2.1       riz 		fae->fae_fildes = f32->fae_fildes;
    140      1.33.2.1       riz 		if (fae->fae_action == FAE_DUP2)
    141      1.33.2.1       riz 			fae->fae_data.dup2.newfildes =
    142      1.33.2.1       riz 			    f32->fae_data.dup2.newfildes;
    143      1.33.2.1       riz 		if (fae->fae_action != FAE_OPEN)
    144      1.33.2.1       riz 			continue;
    145      1.33.2.1       riz 		error = copyinstr(NETBSD32PTR64(f32->fae_path), pbuf,
    146      1.33.2.1       riz 		    MAXPATHLEN, &slen);
    147      1.33.2.1       riz 		if (error)
    148      1.33.2.1       riz 			goto out;
    149  1.33.2.1.4.1       riz 		fae->fae_path = kmem_alloc(slen, KM_SLEEP);
    150      1.33.2.1       riz 		memcpy(fae->fae_path, pbuf, slen);
    151      1.33.2.1       riz 		fae->fae_oflag = f32->fae_oflag;
    152      1.33.2.1       riz 		fae->fae_mode = f32->fae_mode;
    153      1.33.2.1       riz 	}
    154      1.33.2.1       riz 	PNBUF_PUT(pbuf);
    155      1.33.2.1       riz 	if (fae32)
    156      1.33.2.1       riz 		kmem_free(fae32, fal32);
    157      1.33.2.1       riz 	*fap = fa;
    158      1.33.2.1       riz 	return 0;
    159      1.33.2.1       riz 
    160      1.33.2.1       riz out:
    161      1.33.2.1       riz 	if (fae32)
    162      1.33.2.1       riz 		kmem_free(fae32, fal32);
    163      1.33.2.1       riz 	if (pbuf)
    164      1.33.2.1       riz 		PNBUF_PUT(pbuf);
    165      1.33.2.1       riz 	posix_spawn_fa_free(fa, i);
    166      1.33.2.1       riz 	return error;
    167      1.33.2.1       riz }
    168      1.33.2.1       riz 
    169      1.33.2.1       riz int
    170      1.33.2.1       riz netbsd32_posix_spawn(struct lwp *l,
    171      1.33.2.1       riz 	const struct netbsd32_posix_spawn_args *uap, register_t *retval)
    172      1.33.2.1       riz {
    173      1.33.2.1       riz 	/* {
    174      1.33.2.1       riz 	syscallarg(netbsd32_pid_tp) pid;
    175      1.33.2.1       riz 	syscallarg(const netbsd32_charp) path;
    176      1.33.2.1       riz 	syscallarg(const netbsd32_posix_spawn_file_actionsp) file_actions;
    177      1.33.2.1       riz 	syscallarg(const netbsd32_posix_spawnattrp) attrp;
    178      1.33.2.1       riz 	syscallarg(netbsd32_charpp) argv;
    179      1.33.2.1       riz 	syscallarg(netbsd32_charpp) envp;
    180      1.33.2.1       riz 	} */
    181      1.33.2.1       riz 
    182      1.33.2.1       riz 	int error;
    183      1.33.2.1       riz 	struct posix_spawn_file_actions *fa = NULL;
    184      1.33.2.1       riz 	struct posix_spawnattr *sa = NULL;
    185      1.33.2.1       riz 	pid_t pid;
    186      1.33.2.1       riz 	bool child_ok = false;
    187  1.33.2.1.4.2  sborrill 	rlim_t max_fileactions;
    188  1.33.2.1.4.2  sborrill 	proc_t *p = l->l_proc;
    189      1.33.2.1       riz 
    190      1.33.2.1       riz 	error = check_posix_spawn(l);
    191      1.33.2.1       riz 	if (error) {
    192      1.33.2.1       riz 		*retval = error;
    193      1.33.2.1       riz 		return 0;
    194      1.33.2.1       riz 	}
    195      1.33.2.1       riz 
    196      1.33.2.1       riz 	/* copy in file_actions struct */
    197      1.33.2.1       riz 	if (SCARG_P32(uap, file_actions) != NULL) {
    198  1.33.2.1.4.2  sborrill 		max_fileactions = 2 * min(p->p_rlimit[RLIMIT_NOFILE].rlim_cur,
    199  1.33.2.1.4.2  sborrill 		    maxfiles);
    200      1.33.2.1       riz 		error = netbsd32_posix_spawn_fa_alloc(&fa,
    201  1.33.2.1.4.2  sborrill 		    SCARG_P32(uap, file_actions), max_fileactions);
    202      1.33.2.1       riz 		if (error)
    203      1.33.2.1       riz 			goto error_exit;
    204      1.33.2.1       riz 	}
    205      1.33.2.1       riz 
    206      1.33.2.1       riz 	/* copyin posix_spawnattr struct */
    207      1.33.2.1       riz 	if (SCARG_P32(uap, attrp) != NULL) {
    208      1.33.2.1       riz 		sa = kmem_alloc(sizeof(*sa), KM_SLEEP);
    209      1.33.2.1       riz 		error = copyin(SCARG_P32(uap, attrp), sa, sizeof(*sa));
    210      1.33.2.1       riz 		if (error)
    211      1.33.2.1       riz 			goto error_exit;
    212      1.33.2.1       riz 	}
    213      1.33.2.1       riz 
    214      1.33.2.1       riz 	/*
    215      1.33.2.1       riz 	 * Do the spawn
    216      1.33.2.1       riz 	 */
    217      1.33.2.1       riz 	error = do_posix_spawn(l, &pid, &child_ok, SCARG_P32(uap, path), fa,
    218      1.33.2.1       riz 	    sa, SCARG_P32(uap, argv), SCARG_P32(uap, envp),
    219      1.33.2.1       riz 	    netbsd32_execve_fetch_element);
    220      1.33.2.1       riz 	if (error)
    221      1.33.2.1       riz 		goto error_exit;
    222      1.33.2.1       riz 
    223      1.33.2.1       riz 	if (error == 0 && SCARG_P32(uap, pid) != NULL)
    224      1.33.2.1       riz 		error = copyout(&pid, SCARG_P32(uap, pid), sizeof(pid));
    225      1.33.2.1       riz 
    226      1.33.2.1       riz 	*retval = error;
    227      1.33.2.1       riz 	return 0;
    228      1.33.2.1       riz 
    229      1.33.2.1       riz  error_exit:
    230      1.33.2.1       riz  	if (!child_ok) {
    231      1.33.2.1       riz 		(void)chgproccnt(kauth_cred_getuid(l->l_cred), -1);
    232      1.33.2.1       riz 		atomic_dec_uint(&nprocs);
    233      1.33.2.1       riz 
    234      1.33.2.1       riz 		if (sa)
    235      1.33.2.1       riz 			kmem_free(sa, sizeof(*sa));
    236      1.33.2.1       riz 		if (fa)
    237      1.33.2.1       riz 			posix_spawn_fa_free(fa, fa->len);
    238      1.33.2.1       riz 	}
    239      1.33.2.1       riz 
    240      1.33.2.1       riz 	*retval = error;
    241      1.33.2.1       riz 	return 0;
    242      1.33.2.1       riz }
    243