xref: /freebsd/sys/kern/kern_exec.c (revision 3823d5e198425b4f5e5a80267d195769d1063773)
1 /*-
2  * Copyright (c) 1993, David Greenman
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26 
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29 
30 #include "opt_capsicum.h"
31 #include "opt_hwpmc_hooks.h"
32 #include "opt_ktrace.h"
33 #include "opt_vm.h"
34 
35 #include <sys/param.h>
36 #include <sys/capsicum.h>
37 #include <sys/systm.h>
38 #include <sys/eventhandler.h>
39 #include <sys/lock.h>
40 #include <sys/mutex.h>
41 #include <sys/sysproto.h>
42 #include <sys/signalvar.h>
43 #include <sys/kernel.h>
44 #include <sys/mount.h>
45 #include <sys/filedesc.h>
46 #include <sys/fcntl.h>
47 #include <sys/acct.h>
48 #include <sys/exec.h>
49 #include <sys/imgact.h>
50 #include <sys/imgact_elf.h>
51 #include <sys/wait.h>
52 #include <sys/malloc.h>
53 #include <sys/priv.h>
54 #include <sys/proc.h>
55 #include <sys/pioctl.h>
56 #include <sys/namei.h>
57 #include <sys/resourcevar.h>
58 #include <sys/rwlock.h>
59 #include <sys/sched.h>
60 #include <sys/sdt.h>
61 #include <sys/sf_buf.h>
62 #include <sys/syscallsubr.h>
63 #include <sys/sysent.h>
64 #include <sys/shm.h>
65 #include <sys/sysctl.h>
66 #include <sys/vnode.h>
67 #include <sys/stat.h>
68 #ifdef KTRACE
69 #include <sys/ktrace.h>
70 #endif
71 
72 #include <vm/vm.h>
73 #include <vm/vm_param.h>
74 #include <vm/pmap.h>
75 #include <vm/vm_page.h>
76 #include <vm/vm_map.h>
77 #include <vm/vm_kern.h>
78 #include <vm/vm_extern.h>
79 #include <vm/vm_object.h>
80 #include <vm/vm_pager.h>
81 
82 #ifdef	HWPMC_HOOKS
83 #include <sys/pmckern.h>
84 #endif
85 
86 #include <machine/reg.h>
87 
88 #include <security/audit/audit.h>
89 #include <security/mac/mac_framework.h>
90 
91 #ifdef KDTRACE_HOOKS
92 #include <sys/dtrace_bsd.h>
93 dtrace_execexit_func_t	dtrace_fasttrap_exec;
94 #endif
95 
96 SDT_PROVIDER_DECLARE(proc);
97 SDT_PROBE_DEFINE1(proc, kernel, , exec, "char *");
98 SDT_PROBE_DEFINE1(proc, kernel, , exec__failure, "int");
99 SDT_PROBE_DEFINE1(proc, kernel, , exec__success, "char *");
100 
101 MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments");
102 
103 static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS);
104 static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS);
105 static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS);
106 static int do_execve(struct thread *td, struct image_args *args,
107     struct mac *mac_p);
108 
109 /* XXX This should be vm_size_t. */
110 SYSCTL_PROC(_kern, KERN_PS_STRINGS, ps_strings, CTLTYPE_ULONG|CTLFLAG_RD,
111     NULL, 0, sysctl_kern_ps_strings, "LU", "");
112 
113 /* XXX This should be vm_size_t. */
114 SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, CTLTYPE_ULONG|CTLFLAG_RD|
115     CTLFLAG_CAPRD, NULL, 0, sysctl_kern_usrstack, "LU", "");
116 
117 SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD,
118     NULL, 0, sysctl_kern_stackprot, "I", "");
119 
120 u_long ps_arg_cache_limit = PAGE_SIZE / 16;
121 SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW,
122     &ps_arg_cache_limit, 0, "");
123 
124 static int disallow_high_osrel;
125 SYSCTL_INT(_kern, OID_AUTO, disallow_high_osrel, CTLFLAG_RW,
126     &disallow_high_osrel, 0,
127     "Disallow execution of binaries built for higher version of the world");
128 
129 static int map_at_zero = 0;
130 SYSCTL_INT(_security_bsd, OID_AUTO, map_at_zero, CTLFLAG_RWTUN, &map_at_zero, 0,
131     "Permit processes to map an object at virtual address 0.");
132 
133 static int
134 sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS)
135 {
136 	struct proc *p;
137 	int error;
138 
139 	p = curproc;
140 #ifdef SCTL_MASK32
141 	if (req->flags & SCTL_MASK32) {
142 		unsigned int val;
143 		val = (unsigned int)p->p_sysent->sv_psstrings;
144 		error = SYSCTL_OUT(req, &val, sizeof(val));
145 	} else
146 #endif
147 		error = SYSCTL_OUT(req, &p->p_sysent->sv_psstrings,
148 		   sizeof(p->p_sysent->sv_psstrings));
149 	return error;
150 }
151 
152 static int
153 sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS)
154 {
155 	struct proc *p;
156 	int error;
157 
158 	p = curproc;
159 #ifdef SCTL_MASK32
160 	if (req->flags & SCTL_MASK32) {
161 		unsigned int val;
162 		val = (unsigned int)p->p_sysent->sv_usrstack;
163 		error = SYSCTL_OUT(req, &val, sizeof(val));
164 	} else
165 #endif
166 		error = SYSCTL_OUT(req, &p->p_sysent->sv_usrstack,
167 		    sizeof(p->p_sysent->sv_usrstack));
168 	return error;
169 }
170 
171 static int
172 sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS)
173 {
174 	struct proc *p;
175 
176 	p = curproc;
177 	return (SYSCTL_OUT(req, &p->p_sysent->sv_stackprot,
178 	    sizeof(p->p_sysent->sv_stackprot)));
179 }
180 
181 /*
182  * Each of the items is a pointer to a `const struct execsw', hence the
183  * double pointer here.
184  */
185 static const struct execsw **execsw;
186 
187 #ifndef _SYS_SYSPROTO_H_
188 struct execve_args {
189 	char    *fname;
190 	char    **argv;
191 	char    **envv;
192 };
193 #endif
194 
195 int
196 sys_execve(td, uap)
197 	struct thread *td;
198 	struct execve_args /* {
199 		char *fname;
200 		char **argv;
201 		char **envv;
202 	} */ *uap;
203 {
204 	int error;
205 	struct image_args args;
206 
207 	error = exec_copyin_args(&args, uap->fname, UIO_USERSPACE,
208 	    uap->argv, uap->envv);
209 	if (error == 0)
210 		error = kern_execve(td, &args, NULL);
211 	return (error);
212 }
213 
214 #ifndef _SYS_SYSPROTO_H_
215 struct fexecve_args {
216 	int	fd;
217 	char	**argv;
218 	char	**envv;
219 }
220 #endif
221 int
222 sys_fexecve(struct thread *td, struct fexecve_args *uap)
223 {
224 	int error;
225 	struct image_args args;
226 
227 	error = exec_copyin_args(&args, NULL, UIO_SYSSPACE,
228 	    uap->argv, uap->envv);
229 	if (error == 0) {
230 		args.fd = uap->fd;
231 		error = kern_execve(td, &args, NULL);
232 	}
233 	return (error);
234 }
235 
236 #ifndef _SYS_SYSPROTO_H_
237 struct __mac_execve_args {
238 	char	*fname;
239 	char	**argv;
240 	char	**envv;
241 	struct mac	*mac_p;
242 };
243 #endif
244 
245 int
246 sys___mac_execve(td, uap)
247 	struct thread *td;
248 	struct __mac_execve_args /* {
249 		char *fname;
250 		char **argv;
251 		char **envv;
252 		struct mac *mac_p;
253 	} */ *uap;
254 {
255 #ifdef MAC
256 	int error;
257 	struct image_args args;
258 
259 	error = exec_copyin_args(&args, uap->fname, UIO_USERSPACE,
260 	    uap->argv, uap->envv);
261 	if (error == 0)
262 		error = kern_execve(td, &args, uap->mac_p);
263 	return (error);
264 #else
265 	return (ENOSYS);
266 #endif
267 }
268 
269 /*
270  * XXX: kern_execve has the astonishing property of not always returning to
271  * the caller.  If sufficiently bad things happen during the call to
272  * do_execve(), it can end up calling exit1(); as a result, callers must
273  * avoid doing anything which they might need to undo (e.g., allocating
274  * memory).
275  */
276 int
277 kern_execve(td, args, mac_p)
278 	struct thread *td;
279 	struct image_args *args;
280 	struct mac *mac_p;
281 {
282 	struct proc *p = td->td_proc;
283 	struct vmspace *oldvmspace;
284 	int error;
285 
286 	AUDIT_ARG_ARGV(args->begin_argv, args->argc,
287 	    args->begin_envv - args->begin_argv);
288 	AUDIT_ARG_ENVV(args->begin_envv, args->envc,
289 	    args->endp - args->begin_envv);
290 	if (p->p_flag & P_HADTHREADS) {
291 		PROC_LOCK(p);
292 		if (thread_single(SINGLE_BOUNDARY)) {
293 			PROC_UNLOCK(p);
294 	       		exec_free_args(args);
295 			return (ERESTART);	/* Try again later. */
296 		}
297 		PROC_UNLOCK(p);
298 	}
299 
300 	KASSERT((td->td_pflags & TDP_EXECVMSPC) == 0, ("nested execve"));
301 	oldvmspace = td->td_proc->p_vmspace;
302 	error = do_execve(td, args, mac_p);
303 
304 	if (p->p_flag & P_HADTHREADS) {
305 		PROC_LOCK(p);
306 		/*
307 		 * If success, we upgrade to SINGLE_EXIT state to
308 		 * force other threads to suicide.
309 		 */
310 		if (error == 0)
311 			thread_single(SINGLE_EXIT);
312 		else
313 			thread_single_end();
314 		PROC_UNLOCK(p);
315 	}
316 	if ((td->td_pflags & TDP_EXECVMSPC) != 0) {
317 		KASSERT(td->td_proc->p_vmspace != oldvmspace,
318 		    ("oldvmspace still used"));
319 		vmspace_free(oldvmspace);
320 		td->td_pflags &= ~TDP_EXECVMSPC;
321 	}
322 
323 	return (error);
324 }
325 
326 /*
327  * In-kernel implementation of execve().  All arguments are assumed to be
328  * userspace pointers from the passed thread.
329  */
330 static int
331 do_execve(td, args, mac_p)
332 	struct thread *td;
333 	struct image_args *args;
334 	struct mac *mac_p;
335 {
336 	struct proc *p = td->td_proc;
337 	struct nameidata nd;
338 	struct ucred *newcred = NULL, *oldcred;
339 	struct uidinfo *euip = NULL;
340 	register_t *stack_base;
341 	int error, i;
342 	struct image_params image_params, *imgp;
343 	struct vattr attr;
344 	int (*img_first)(struct image_params *);
345 	struct pargs *oldargs = NULL, *newargs = NULL;
346 	struct sigacts *oldsigacts, *newsigacts;
347 #ifdef KTRACE
348 	struct vnode *tracevp = NULL;
349 	struct ucred *tracecred = NULL;
350 #endif
351 	struct vnode *textvp = NULL, *binvp;
352 	cap_rights_t rights;
353 	int credential_changing;
354 	int textset;
355 #ifdef MAC
356 	struct label *interpvplabel = NULL;
357 	int will_transition;
358 #endif
359 #ifdef HWPMC_HOOKS
360 	struct pmckern_procexec pe;
361 #endif
362 	static const char fexecv_proc_title[] = "(fexecv)";
363 
364 	imgp = &image_params;
365 
366 	/*
367 	 * Lock the process and set the P_INEXEC flag to indicate that
368 	 * it should be left alone until we're done here.  This is
369 	 * necessary to avoid race conditions - e.g. in ptrace() -
370 	 * that might allow a local user to illicitly obtain elevated
371 	 * privileges.
372 	 */
373 	PROC_LOCK(p);
374 	KASSERT((p->p_flag & P_INEXEC) == 0,
375 	    ("%s(): process already has P_INEXEC flag", __func__));
376 	p->p_flag |= P_INEXEC;
377 	PROC_UNLOCK(p);
378 
379 	/*
380 	 * Initialize part of the common data
381 	 */
382 	bzero(imgp, sizeof(*imgp));
383 	imgp->proc = p;
384 	imgp->attr = &attr;
385 	imgp->args = args;
386 
387 #ifdef MAC
388 	error = mac_execve_enter(imgp, mac_p);
389 	if (error)
390 		goto exec_fail;
391 #endif
392 
393 	/*
394 	 * Translate the file name. namei() returns a vnode pointer
395 	 *	in ni_vp amoung other things.
396 	 *
397 	 * XXXAUDIT: It would be desirable to also audit the name of the
398 	 * interpreter if this is an interpreted binary.
399 	 */
400 	if (args->fname != NULL) {
401 		NDINIT(&nd, LOOKUP, ISOPEN | LOCKLEAF | FOLLOW | SAVENAME
402 		    | AUDITVNODE1, UIO_SYSSPACE, args->fname, td);
403 	}
404 
405 	SDT_PROBE(proc, kernel, , exec, args->fname, 0, 0, 0, 0 );
406 
407 interpret:
408 	if (args->fname != NULL) {
409 #ifdef CAPABILITY_MODE
410 		/*
411 		 * While capability mode can't reach this point via direct
412 		 * path arguments to execve(), we also don't allow
413 		 * interpreters to be used in capability mode (for now).
414 		 * Catch indirect lookups and return a permissions error.
415 		 */
416 		if (IN_CAPABILITY_MODE(td)) {
417 			error = ECAPMODE;
418 			goto exec_fail;
419 		}
420 #endif
421 		error = namei(&nd);
422 		if (error)
423 			goto exec_fail;
424 
425 		binvp = nd.ni_vp;
426 		imgp->vp = binvp;
427 	} else {
428 		AUDIT_ARG_FD(args->fd);
429 		/*
430 		 * Descriptors opened only with O_EXEC or O_RDONLY are allowed.
431 		 */
432 		error = fgetvp_exec(td, args->fd,
433 		    cap_rights_init(&rights, CAP_FEXECVE), &binvp);
434 		if (error)
435 			goto exec_fail;
436 		vn_lock(binvp, LK_EXCLUSIVE | LK_RETRY);
437 		AUDIT_ARG_VNODE1(binvp);
438 		imgp->vp = binvp;
439 	}
440 
441 	/*
442 	 * Check file permissions (also 'opens' file)
443 	 */
444 	error = exec_check_permissions(imgp);
445 	if (error)
446 		goto exec_fail_dealloc;
447 
448 	imgp->object = imgp->vp->v_object;
449 	if (imgp->object != NULL)
450 		vm_object_reference(imgp->object);
451 
452 	/*
453 	 * Set VV_TEXT now so no one can write to the executable while we're
454 	 * activating it.
455 	 *
456 	 * Remember if this was set before and unset it in case this is not
457 	 * actually an executable image.
458 	 */
459 	textset = VOP_IS_TEXT(imgp->vp);
460 	VOP_SET_TEXT(imgp->vp);
461 
462 	error = exec_map_first_page(imgp);
463 	if (error)
464 		goto exec_fail_dealloc;
465 
466 	imgp->proc->p_osrel = 0;
467 	/*
468 	 *	If the current process has a special image activator it
469 	 *	wants to try first, call it.   For example, emulating shell
470 	 *	scripts differently.
471 	 */
472 	error = -1;
473 	if ((img_first = imgp->proc->p_sysent->sv_imgact_try) != NULL)
474 		error = img_first(imgp);
475 
476 	/*
477 	 *	Loop through the list of image activators, calling each one.
478 	 *	An activator returns -1 if there is no match, 0 on success,
479 	 *	and an error otherwise.
480 	 */
481 	for (i = 0; error == -1 && execsw[i]; ++i) {
482 		if (execsw[i]->ex_imgact == NULL ||
483 		    execsw[i]->ex_imgact == img_first) {
484 			continue;
485 		}
486 		error = (*execsw[i]->ex_imgact)(imgp);
487 	}
488 
489 	if (error) {
490 		if (error == -1) {
491 			if (textset == 0)
492 				VOP_UNSET_TEXT(imgp->vp);
493 			error = ENOEXEC;
494 		}
495 		goto exec_fail_dealloc;
496 	}
497 
498 	/*
499 	 * Special interpreter operation, cleanup and loop up to try to
500 	 * activate the interpreter.
501 	 */
502 	if (imgp->interpreted) {
503 		exec_unmap_first_page(imgp);
504 		/*
505 		 * VV_TEXT needs to be unset for scripts.  There is a short
506 		 * period before we determine that something is a script where
507 		 * VV_TEXT will be set. The vnode lock is held over this
508 		 * entire period so nothing should illegitimately be blocked.
509 		 */
510 		VOP_UNSET_TEXT(imgp->vp);
511 		/* free name buffer and old vnode */
512 		if (args->fname != NULL)
513 			NDFREE(&nd, NDF_ONLY_PNBUF);
514 #ifdef MAC
515 		mac_execve_interpreter_enter(binvp, &interpvplabel);
516 #endif
517 		if (imgp->opened) {
518 			VOP_CLOSE(binvp, FREAD, td->td_ucred, td);
519 			imgp->opened = 0;
520 		}
521 		vput(binvp);
522 		vm_object_deallocate(imgp->object);
523 		imgp->object = NULL;
524 		/* set new name to that of the interpreter */
525 		NDINIT(&nd, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME,
526 		    UIO_SYSSPACE, imgp->interpreter_name, td);
527 		args->fname = imgp->interpreter_name;
528 		goto interpret;
529 	}
530 
531 	/*
532 	 * NB: We unlock the vnode here because it is believed that none
533 	 * of the sv_copyout_strings/sv_fixup operations require the vnode.
534 	 */
535 	VOP_UNLOCK(imgp->vp, 0);
536 
537 	/*
538 	 * Do the best to calculate the full path to the image file.
539 	 */
540 	if (imgp->auxargs != NULL &&
541 	    ((args->fname != NULL && args->fname[0] == '/') ||
542 	     vn_fullpath(td, imgp->vp, &imgp->execpath, &imgp->freepath) != 0))
543 		imgp->execpath = args->fname;
544 
545 	if (disallow_high_osrel &&
546 	    P_OSREL_MAJOR(p->p_osrel) > P_OSREL_MAJOR(__FreeBSD_version)) {
547 		error = ENOEXEC;
548 		uprintf("Osrel %d for image %s too high\n", p->p_osrel,
549 		    imgp->execpath != NULL ? imgp->execpath : "<unresolved>");
550 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
551 		goto exec_fail_dealloc;
552 	}
553 
554 	/*
555 	 * Copy out strings (args and env) and initialize stack base
556 	 */
557 	if (p->p_sysent->sv_copyout_strings)
558 		stack_base = (*p->p_sysent->sv_copyout_strings)(imgp);
559 	else
560 		stack_base = exec_copyout_strings(imgp);
561 
562 	/*
563 	 * If custom stack fixup routine present for this process
564 	 * let it do the stack setup.
565 	 * Else stuff argument count as first item on stack
566 	 */
567 	if (p->p_sysent->sv_fixup != NULL)
568 		(*p->p_sysent->sv_fixup)(&stack_base, imgp);
569 	else
570 		suword(--stack_base, imgp->args->argc);
571 
572 	/*
573 	 * For security and other reasons, the file descriptor table cannot
574 	 * be shared after an exec.
575 	 */
576 	fdunshare(td);
577 	/* close files on exec */
578 	fdcloseexec(td);
579 
580 	/*
581 	 * Malloc things before we need locks.
582 	 */
583 	i = imgp->args->begin_envv - imgp->args->begin_argv;
584 	/* Cache arguments if they fit inside our allowance */
585 	if (ps_arg_cache_limit >= i + sizeof(struct pargs)) {
586 		newargs = pargs_alloc(i);
587 		bcopy(imgp->args->begin_argv, newargs->ar_args, i);
588 	}
589 
590 	vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
591 
592 	/* Get a reference to the vnode prior to locking the proc */
593 	VREF(binvp);
594 
595 	/*
596 	 * For security and other reasons, signal handlers cannot
597 	 * be shared after an exec. The new process gets a copy of the old
598 	 * handlers. In execsigs(), the new process will have its signals
599 	 * reset.
600 	 */
601 	if (sigacts_shared(p->p_sigacts)) {
602 		oldsigacts = p->p_sigacts;
603 		newsigacts = sigacts_alloc();
604 		sigacts_copy(newsigacts, oldsigacts);
605 	} else {
606 		oldsigacts = NULL;
607 		newsigacts = NULL; /* satisfy gcc */
608 	}
609 
610 	PROC_LOCK(p);
611 	if (oldsigacts)
612 		p->p_sigacts = newsigacts;
613 	oldcred = p->p_ucred;
614 	/* Stop profiling */
615 	stopprofclock(p);
616 
617 	/* reset caught signals */
618 	execsigs(p);
619 
620 	/* name this process - nameiexec(p, ndp) */
621 	bzero(p->p_comm, sizeof(p->p_comm));
622 	if (args->fname)
623 		bcopy(nd.ni_cnd.cn_nameptr, p->p_comm,
624 		    min(nd.ni_cnd.cn_namelen, MAXCOMLEN));
625 	else if (vn_commname(binvp, p->p_comm, sizeof(p->p_comm)) != 0)
626 		bcopy(fexecv_proc_title, p->p_comm, sizeof(fexecv_proc_title));
627 	bcopy(p->p_comm, td->td_name, sizeof(td->td_name));
628 #ifdef KTR
629 	sched_clear_tdname(td);
630 #endif
631 
632 	/*
633 	 * mark as execed, wakeup the process that vforked (if any) and tell
634 	 * it that it now has its own resources back
635 	 */
636 	p->p_flag |= P_EXEC;
637 	if (p->p_flag & P_PPWAIT) {
638 		p->p_flag &= ~(P_PPWAIT | P_PPTRACE);
639 		cv_broadcast(&p->p_pwait);
640 	}
641 
642 	/*
643 	 * Implement image setuid/setgid.
644 	 *
645 	 * Don't honor setuid/setgid if the filesystem prohibits it or if
646 	 * the process is being traced.
647 	 *
648 	 * We disable setuid/setgid/etc in compatibility mode on the basis
649 	 * that most setugid applications are not written with that
650 	 * environment in mind, and will therefore almost certainly operate
651 	 * incorrectly. In principle there's no reason that setugid
652 	 * applications might not be useful in capability mode, so we may want
653 	 * to reconsider this conservative design choice in the future.
654 	 *
655 	 * XXXMAC: For the time being, use NOSUID to also prohibit
656 	 * transitions on the file system.
657 	 */
658 	credential_changing = 0;
659 	credential_changing |= (attr.va_mode & S_ISUID) && oldcred->cr_uid !=
660 	    attr.va_uid;
661 	credential_changing |= (attr.va_mode & S_ISGID) && oldcred->cr_gid !=
662 	    attr.va_gid;
663 #ifdef MAC
664 	will_transition = mac_vnode_execve_will_transition(oldcred, imgp->vp,
665 	    interpvplabel, imgp);
666 	credential_changing |= will_transition;
667 #endif
668 
669 	if (credential_changing &&
670 #ifdef CAPABILITY_MODE
671 	    ((oldcred->cr_flags & CRED_FLAG_CAPMODE) == 0) &&
672 #endif
673 	    (imgp->vp->v_mount->mnt_flag & MNT_NOSUID) == 0 &&
674 	    (p->p_flag & P_TRACED) == 0) {
675 		/*
676 		 * Turn off syscall tracing for set-id programs, except for
677 		 * root.  Record any set-id flags first to make sure that
678 		 * we do not regain any tracing during a possible block.
679 		 */
680 		setsugid(p);
681 
682 #ifdef KTRACE
683 		if (p->p_tracecred != NULL &&
684 		    priv_check_cred(p->p_tracecred, PRIV_DEBUG_DIFFCRED, 0))
685 			ktrprocexec(p, &tracecred, &tracevp);
686 #endif
687 		/*
688 		 * Close any file descriptors 0..2 that reference procfs,
689 		 * then make sure file descriptors 0..2 are in use.
690 		 *
691 		 * setugidsafety() may call closef() and then pfind()
692 		 * which may grab the process lock.
693 		 * fdcheckstd() may call falloc() which may block to
694 		 * allocate memory, so temporarily drop the process lock.
695 		 */
696 		PROC_UNLOCK(p);
697 		VOP_UNLOCK(imgp->vp, 0);
698 		fdsetugidsafety(td);
699 		error = fdcheckstd(td);
700 		if (error != 0)
701 			goto done1;
702 		newcred = crdup(oldcred);
703 		euip = uifind(attr.va_uid);
704 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
705 		PROC_LOCK(p);
706 		/*
707 		 * Set the new credentials.
708 		 */
709 		if (attr.va_mode & S_ISUID)
710 			change_euid(newcred, euip);
711 		if (attr.va_mode & S_ISGID)
712 			change_egid(newcred, attr.va_gid);
713 #ifdef MAC
714 		if (will_transition) {
715 			mac_vnode_execve_transition(oldcred, newcred, imgp->vp,
716 			    interpvplabel, imgp);
717 		}
718 #endif
719 		/*
720 		 * Implement correct POSIX saved-id behavior.
721 		 *
722 		 * XXXMAC: Note that the current logic will save the
723 		 * uid and gid if a MAC domain transition occurs, even
724 		 * though maybe it shouldn't.
725 		 */
726 		change_svuid(newcred, newcred->cr_uid);
727 		change_svgid(newcred, newcred->cr_gid);
728 		p->p_ucred = newcred;
729 	} else {
730 		if (oldcred->cr_uid == oldcred->cr_ruid &&
731 		    oldcred->cr_gid == oldcred->cr_rgid)
732 			p->p_flag &= ~P_SUGID;
733 		/*
734 		 * Implement correct POSIX saved-id behavior.
735 		 *
736 		 * XXX: It's not clear that the existing behavior is
737 		 * POSIX-compliant.  A number of sources indicate that the
738 		 * saved uid/gid should only be updated if the new ruid is
739 		 * not equal to the old ruid, or the new euid is not equal
740 		 * to the old euid and the new euid is not equal to the old
741 		 * ruid.  The FreeBSD code always updates the saved uid/gid.
742 		 * Also, this code uses the new (replaced) euid and egid as
743 		 * the source, which may or may not be the right ones to use.
744 		 */
745 		if (oldcred->cr_svuid != oldcred->cr_uid ||
746 		    oldcred->cr_svgid != oldcred->cr_gid) {
747 			PROC_UNLOCK(p);
748 			VOP_UNLOCK(imgp->vp, 0);
749 			newcred = crdup(oldcred);
750 			vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
751 			PROC_LOCK(p);
752 			change_svuid(newcred, newcred->cr_uid);
753 			change_svgid(newcred, newcred->cr_gid);
754 			p->p_ucred = newcred;
755 		}
756 	}
757 
758 	/*
759 	 * Store the vp for use in procfs.  This vnode was referenced prior
760 	 * to locking the proc lock.
761 	 */
762 	textvp = p->p_textvp;
763 	p->p_textvp = binvp;
764 
765 #ifdef KDTRACE_HOOKS
766 	/*
767 	 * Tell the DTrace fasttrap provider about the exec if it
768 	 * has declared an interest.
769 	 */
770 	if (dtrace_fasttrap_exec)
771 		dtrace_fasttrap_exec(p);
772 #endif
773 
774 	/*
775 	 * Notify others that we exec'd, and clear the P_INEXEC flag
776 	 * as we're now a bona fide freshly-execed process.
777 	 */
778 	KNOTE_LOCKED(&p->p_klist, NOTE_EXEC);
779 	p->p_flag &= ~P_INEXEC;
780 
781 	/* clear "fork but no exec" flag, as we _are_ execing */
782 	p->p_acflag &= ~AFORK;
783 
784 	/*
785 	 * Free any previous argument cache and replace it with
786 	 * the new argument cache, if any.
787 	 */
788 	oldargs = p->p_args;
789 	p->p_args = newargs;
790 	newargs = NULL;
791 
792 #ifdef	HWPMC_HOOKS
793 	/*
794 	 * Check if system-wide sampling is in effect or if the
795 	 * current process is using PMCs.  If so, do exec() time
796 	 * processing.  This processing needs to happen AFTER the
797 	 * P_INEXEC flag is cleared.
798 	 *
799 	 * The proc lock needs to be released before taking the PMC
800 	 * SX.
801 	 */
802 	if (PMC_SYSTEM_SAMPLING_ACTIVE() || PMC_PROC_IS_USING_PMCS(p)) {
803 		PROC_UNLOCK(p);
804 		VOP_UNLOCK(imgp->vp, 0);
805 		pe.pm_credentialschanged = credential_changing;
806 		pe.pm_entryaddr = imgp->entry_addr;
807 
808 		PMC_CALL_HOOK_X(td, PMC_FN_PROCESS_EXEC, (void *) &pe);
809 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
810 	} else
811 		PROC_UNLOCK(p);
812 #else  /* !HWPMC_HOOKS */
813 	PROC_UNLOCK(p);
814 #endif
815 
816 	/* Set values passed into the program in registers. */
817 	if (p->p_sysent->sv_setregs)
818 		(*p->p_sysent->sv_setregs)(td, imgp,
819 		    (u_long)(uintptr_t)stack_base);
820 	else
821 		exec_setregs(td, imgp, (u_long)(uintptr_t)stack_base);
822 
823 	vfs_mark_atime(imgp->vp, td->td_ucred);
824 
825 	SDT_PROBE(proc, kernel, , exec__success, args->fname, 0, 0, 0, 0);
826 
827 	VOP_UNLOCK(imgp->vp, 0);
828 done1:
829 	/*
830 	 * Free any resources malloc'd earlier that we didn't use.
831 	 */
832 	if (euip != NULL)
833 		uifree(euip);
834 	if (newcred != NULL)
835 		crfree(oldcred);
836 
837 	/*
838 	 * Handle deferred decrement of ref counts.
839 	 */
840 	if (textvp != NULL)
841 		vrele(textvp);
842 	if (error != 0)
843 		vrele(binvp);
844 #ifdef KTRACE
845 	if (tracevp != NULL)
846 		vrele(tracevp);
847 	if (tracecred != NULL)
848 		crfree(tracecred);
849 #endif
850 	vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
851 	pargs_drop(oldargs);
852 	pargs_drop(newargs);
853 	if (oldsigacts != NULL)
854 		sigacts_free(oldsigacts);
855 
856 exec_fail_dealloc:
857 
858 	/*
859 	 * free various allocated resources
860 	 */
861 	if (imgp->firstpage != NULL)
862 		exec_unmap_first_page(imgp);
863 
864 	if (imgp->vp != NULL) {
865 		if (args->fname)
866 			NDFREE(&nd, NDF_ONLY_PNBUF);
867 		if (imgp->opened)
868 			VOP_CLOSE(imgp->vp, FREAD, td->td_ucred, td);
869 		vput(imgp->vp);
870 	}
871 
872 	if (imgp->object != NULL)
873 		vm_object_deallocate(imgp->object);
874 
875 	free(imgp->freepath, M_TEMP);
876 
877 	if (error == 0) {
878 		PROC_LOCK(p);
879 		td->td_dbgflags |= TDB_EXEC;
880 		PROC_UNLOCK(p);
881 
882 		/*
883 		 * Stop the process here if its stop event mask has
884 		 * the S_EXEC bit set.
885 		 */
886 		STOPEVENT(p, S_EXEC, 0);
887 		goto done2;
888 	}
889 
890 exec_fail:
891 	/* we're done here, clear P_INEXEC */
892 	PROC_LOCK(p);
893 	p->p_flag &= ~P_INEXEC;
894 	PROC_UNLOCK(p);
895 
896 	SDT_PROBE(proc, kernel, , exec__failure, error, 0, 0, 0, 0);
897 
898 done2:
899 #ifdef MAC
900 	mac_execve_exit(imgp);
901 	mac_execve_interpreter_exit(interpvplabel);
902 #endif
903 	exec_free_args(args);
904 
905 	if (error && imgp->vmspace_destroyed) {
906 		/* sorry, no more process anymore. exit gracefully */
907 		exit1(td, W_EXITCODE(0, SIGABRT));
908 		/* NOT REACHED */
909 	}
910 
911 #ifdef KTRACE
912 	if (error == 0)
913 		ktrprocctor(p);
914 #endif
915 
916 	return (error);
917 }
918 
919 int
920 exec_map_first_page(imgp)
921 	struct image_params *imgp;
922 {
923 	int rv, i;
924 	int initial_pagein;
925 	vm_page_t ma[VM_INITIAL_PAGEIN];
926 	vm_object_t object;
927 
928 	if (imgp->firstpage != NULL)
929 		exec_unmap_first_page(imgp);
930 
931 	object = imgp->vp->v_object;
932 	if (object == NULL)
933 		return (EACCES);
934 	VM_OBJECT_WLOCK(object);
935 #if VM_NRESERVLEVEL > 0
936 	if ((object->flags & OBJ_COLORED) == 0) {
937 		object->flags |= OBJ_COLORED;
938 		object->pg_color = 0;
939 	}
940 #endif
941 	ma[0] = vm_page_grab(object, 0, VM_ALLOC_NORMAL);
942 	if (ma[0]->valid != VM_PAGE_BITS_ALL) {
943 		initial_pagein = VM_INITIAL_PAGEIN;
944 		if (initial_pagein > object->size)
945 			initial_pagein = object->size;
946 		for (i = 1; i < initial_pagein; i++) {
947 			if ((ma[i] = vm_page_next(ma[i - 1])) != NULL) {
948 				if (ma[i]->valid)
949 					break;
950 				if (vm_page_tryxbusy(ma[i]))
951 					break;
952 			} else {
953 				ma[i] = vm_page_alloc(object, i,
954 				    VM_ALLOC_NORMAL | VM_ALLOC_IFNOTCACHED);
955 				if (ma[i] == NULL)
956 					break;
957 			}
958 		}
959 		initial_pagein = i;
960 		rv = vm_pager_get_pages(object, ma, initial_pagein, 0);
961 		ma[0] = vm_page_lookup(object, 0);
962 		if ((rv != VM_PAGER_OK) || (ma[0] == NULL)) {
963 			if (ma[0] != NULL) {
964 				vm_page_lock(ma[0]);
965 				vm_page_free(ma[0]);
966 				vm_page_unlock(ma[0]);
967 			}
968 			VM_OBJECT_WUNLOCK(object);
969 			return (EIO);
970 		}
971 	}
972 	vm_page_xunbusy(ma[0]);
973 	vm_page_lock(ma[0]);
974 	vm_page_hold(ma[0]);
975 	vm_page_activate(ma[0]);
976 	vm_page_unlock(ma[0]);
977 	VM_OBJECT_WUNLOCK(object);
978 
979 	imgp->firstpage = sf_buf_alloc(ma[0], 0);
980 	imgp->image_header = (char *)sf_buf_kva(imgp->firstpage);
981 
982 	return (0);
983 }
984 
985 void
986 exec_unmap_first_page(imgp)
987 	struct image_params *imgp;
988 {
989 	vm_page_t m;
990 
991 	if (imgp->firstpage != NULL) {
992 		m = sf_buf_page(imgp->firstpage);
993 		sf_buf_free(imgp->firstpage);
994 		imgp->firstpage = NULL;
995 		vm_page_lock(m);
996 		vm_page_unhold(m);
997 		vm_page_unlock(m);
998 	}
999 }
1000 
1001 /*
1002  * Destroy old address space, and allocate a new stack
1003  *	The new stack is only SGROWSIZ large because it is grown
1004  *	automatically in trap.c.
1005  */
1006 int
1007 exec_new_vmspace(imgp, sv)
1008 	struct image_params *imgp;
1009 	struct sysentvec *sv;
1010 {
1011 	int error;
1012 	struct proc *p = imgp->proc;
1013 	struct vmspace *vmspace = p->p_vmspace;
1014 	vm_object_t obj;
1015 	vm_offset_t sv_minuser, stack_addr;
1016 	vm_map_t map;
1017 	u_long ssiz;
1018 
1019 	imgp->vmspace_destroyed = 1;
1020 	imgp->sysent = sv;
1021 
1022 	/* May be called with Giant held */
1023 	EVENTHANDLER_INVOKE(process_exec, p, imgp);
1024 
1025 	/*
1026 	 * Blow away entire process VM, if address space not shared,
1027 	 * otherwise, create a new VM space so that other threads are
1028 	 * not disrupted
1029 	 */
1030 	map = &vmspace->vm_map;
1031 	if (map_at_zero)
1032 		sv_minuser = sv->sv_minuser;
1033 	else
1034 		sv_minuser = MAX(sv->sv_minuser, PAGE_SIZE);
1035 	if (vmspace->vm_refcnt == 1 && vm_map_min(map) == sv_minuser &&
1036 	    vm_map_max(map) == sv->sv_maxuser) {
1037 		shmexit(vmspace);
1038 		pmap_remove_pages(vmspace_pmap(vmspace));
1039 		vm_map_remove(map, vm_map_min(map), vm_map_max(map));
1040 	} else {
1041 		error = vmspace_exec(p, sv_minuser, sv->sv_maxuser);
1042 		if (error)
1043 			return (error);
1044 		vmspace = p->p_vmspace;
1045 		map = &vmspace->vm_map;
1046 	}
1047 
1048 	/* Map a shared page */
1049 	obj = sv->sv_shared_page_obj;
1050 	if (obj != NULL) {
1051 		vm_object_reference(obj);
1052 		error = vm_map_fixed(map, obj, 0,
1053 		    sv->sv_shared_page_base, sv->sv_shared_page_len,
1054 		    VM_PROT_READ | VM_PROT_EXECUTE,
1055 		    VM_PROT_READ | VM_PROT_EXECUTE,
1056 		    MAP_INHERIT_SHARE | MAP_ACC_NO_CHARGE);
1057 		if (error) {
1058 			vm_object_deallocate(obj);
1059 			return (error);
1060 		}
1061 	}
1062 
1063 	/* Allocate a new stack */
1064 	if (sv->sv_maxssiz != NULL)
1065 		ssiz = *sv->sv_maxssiz;
1066 	else
1067 		ssiz = maxssiz;
1068 	stack_addr = sv->sv_usrstack - ssiz;
1069 	error = vm_map_stack(map, stack_addr, (vm_size_t)ssiz,
1070 	    obj != NULL && imgp->stack_prot != 0 ? imgp->stack_prot :
1071 		sv->sv_stackprot,
1072 	    VM_PROT_ALL, MAP_STACK_GROWS_DOWN);
1073 	if (error)
1074 		return (error);
1075 
1076 	/*
1077 	 * vm_ssize and vm_maxsaddr are somewhat antiquated concepts, but they
1078 	 * are still used to enforce the stack rlimit on the process stack.
1079 	 */
1080 	vmspace->vm_ssize = sgrowsiz >> PAGE_SHIFT;
1081 	vmspace->vm_maxsaddr = (char *)sv->sv_usrstack - ssiz;
1082 
1083 	return (0);
1084 }
1085 
1086 /*
1087  * Copy out argument and environment strings from the old process address
1088  * space into the temporary string buffer.
1089  */
1090 int
1091 exec_copyin_args(struct image_args *args, char *fname,
1092     enum uio_seg segflg, char **argv, char **envv)
1093 {
1094 	char *argp, *envp;
1095 	int error;
1096 	size_t length;
1097 
1098 	bzero(args, sizeof(*args));
1099 	if (argv == NULL)
1100 		return (EFAULT);
1101 
1102 	/*
1103 	 * Allocate demand-paged memory for the file name, argument, and
1104 	 * environment strings.
1105 	 */
1106 	error = exec_alloc_args(args);
1107 	if (error != 0)
1108 		return (error);
1109 
1110 	/*
1111 	 * Copy the file name.
1112 	 */
1113 	if (fname != NULL) {
1114 		args->fname = args->buf;
1115 		error = (segflg == UIO_SYSSPACE) ?
1116 		    copystr(fname, args->fname, PATH_MAX, &length) :
1117 		    copyinstr(fname, args->fname, PATH_MAX, &length);
1118 		if (error != 0)
1119 			goto err_exit;
1120 	} else
1121 		length = 0;
1122 
1123 	args->begin_argv = args->buf + length;
1124 	args->endp = args->begin_argv;
1125 	args->stringspace = ARG_MAX;
1126 
1127 	/*
1128 	 * extract arguments first
1129 	 */
1130 	while ((argp = (caddr_t) (intptr_t) fuword(argv++))) {
1131 		if (argp == (caddr_t) -1) {
1132 			error = EFAULT;
1133 			goto err_exit;
1134 		}
1135 		if ((error = copyinstr(argp, args->endp,
1136 		    args->stringspace, &length))) {
1137 			if (error == ENAMETOOLONG)
1138 				error = E2BIG;
1139 			goto err_exit;
1140 		}
1141 		args->stringspace -= length;
1142 		args->endp += length;
1143 		args->argc++;
1144 	}
1145 
1146 	args->begin_envv = args->endp;
1147 
1148 	/*
1149 	 * extract environment strings
1150 	 */
1151 	if (envv) {
1152 		while ((envp = (caddr_t)(intptr_t)fuword(envv++))) {
1153 			if (envp == (caddr_t)-1) {
1154 				error = EFAULT;
1155 				goto err_exit;
1156 			}
1157 			if ((error = copyinstr(envp, args->endp,
1158 			    args->stringspace, &length))) {
1159 				if (error == ENAMETOOLONG)
1160 					error = E2BIG;
1161 				goto err_exit;
1162 			}
1163 			args->stringspace -= length;
1164 			args->endp += length;
1165 			args->envc++;
1166 		}
1167 	}
1168 
1169 	return (0);
1170 
1171 err_exit:
1172 	exec_free_args(args);
1173 	return (error);
1174 }
1175 
1176 /*
1177  * Allocate temporary demand-paged, zero-filled memory for the file name,
1178  * argument, and environment strings.  Returns zero if the allocation succeeds
1179  * and ENOMEM otherwise.
1180  */
1181 int
1182 exec_alloc_args(struct image_args *args)
1183 {
1184 
1185 	args->buf = (char *)kmap_alloc_wait(exec_map, PATH_MAX + ARG_MAX);
1186 	return (args->buf != NULL ? 0 : ENOMEM);
1187 }
1188 
1189 void
1190 exec_free_args(struct image_args *args)
1191 {
1192 
1193 	if (args->buf != NULL) {
1194 		kmap_free_wakeup(exec_map, (vm_offset_t)args->buf,
1195 		    PATH_MAX + ARG_MAX);
1196 		args->buf = NULL;
1197 	}
1198 	if (args->fname_buf != NULL) {
1199 		free(args->fname_buf, M_TEMP);
1200 		args->fname_buf = NULL;
1201 	}
1202 }
1203 
1204 /*
1205  * Copy strings out to the new process address space, constructing new arg
1206  * and env vector tables. Return a pointer to the base so that it can be used
1207  * as the initial stack pointer.
1208  */
1209 register_t *
1210 exec_copyout_strings(imgp)
1211 	struct image_params *imgp;
1212 {
1213 	int argc, envc;
1214 	char **vectp;
1215 	char *stringp;
1216 	uintptr_t destp;
1217 	register_t *stack_base;
1218 	struct ps_strings *arginfo;
1219 	struct proc *p;
1220 	size_t execpath_len;
1221 	int szsigcode, szps;
1222 	char canary[sizeof(long) * 8];
1223 
1224 	szps = sizeof(pagesizes[0]) * MAXPAGESIZES;
1225 	/*
1226 	 * Calculate string base and vector table pointers.
1227 	 * Also deal with signal trampoline code for this exec type.
1228 	 */
1229 	if (imgp->execpath != NULL && imgp->auxargs != NULL)
1230 		execpath_len = strlen(imgp->execpath) + 1;
1231 	else
1232 		execpath_len = 0;
1233 	p = imgp->proc;
1234 	szsigcode = 0;
1235 	arginfo = (struct ps_strings *)p->p_sysent->sv_psstrings;
1236 	if (p->p_sysent->sv_sigcode_base == 0) {
1237 		if (p->p_sysent->sv_szsigcode != NULL)
1238 			szsigcode = *(p->p_sysent->sv_szsigcode);
1239 	}
1240 	destp =	(uintptr_t)arginfo;
1241 
1242 	/*
1243 	 * install sigcode
1244 	 */
1245 	if (szsigcode != 0) {
1246 		destp -= szsigcode;
1247 		destp = rounddown2(destp, sizeof(void *));
1248 		copyout(p->p_sysent->sv_sigcode, (void *)destp, szsigcode);
1249 	}
1250 
1251 	/*
1252 	 * Copy the image path for the rtld.
1253 	 */
1254 	if (execpath_len != 0) {
1255 		destp -= execpath_len;
1256 		imgp->execpathp = destp;
1257 		copyout(imgp->execpath, (void *)destp, execpath_len);
1258 	}
1259 
1260 	/*
1261 	 * Prepare the canary for SSP.
1262 	 */
1263 	arc4rand(canary, sizeof(canary), 0);
1264 	destp -= sizeof(canary);
1265 	imgp->canary = destp;
1266 	copyout(canary, (void *)destp, sizeof(canary));
1267 	imgp->canarylen = sizeof(canary);
1268 
1269 	/*
1270 	 * Prepare the pagesizes array.
1271 	 */
1272 	destp -= szps;
1273 	destp = rounddown2(destp, sizeof(void *));
1274 	imgp->pagesizes = destp;
1275 	copyout(pagesizes, (void *)destp, szps);
1276 	imgp->pagesizeslen = szps;
1277 
1278 	destp -= ARG_MAX - imgp->args->stringspace;
1279 	destp = rounddown2(destp, sizeof(void *));
1280 
1281 	/*
1282 	 * If we have a valid auxargs ptr, prepare some room
1283 	 * on the stack.
1284 	 */
1285 	if (imgp->auxargs) {
1286 		/*
1287 		 * 'AT_COUNT*2' is size for the ELF Auxargs data. This is for
1288 		 * lower compatibility.
1289 		 */
1290 		imgp->auxarg_size = (imgp->auxarg_size) ? imgp->auxarg_size :
1291 		    (AT_COUNT * 2);
1292 		/*
1293 		 * The '+ 2' is for the null pointers at the end of each of
1294 		 * the arg and env vector sets,and imgp->auxarg_size is room
1295 		 * for argument of Runtime loader.
1296 		 */
1297 		vectp = (char **)(destp - (imgp->args->argc +
1298 		    imgp->args->envc + 2 + imgp->auxarg_size)
1299 		    * sizeof(char *));
1300 	} else {
1301 		/*
1302 		 * The '+ 2' is for the null pointers at the end of each of
1303 		 * the arg and env vector sets
1304 		 */
1305 		vectp = (char **)(destp - (imgp->args->argc + imgp->args->envc
1306 		    + 2) * sizeof(char *));
1307 	}
1308 
1309 	/*
1310 	 * vectp also becomes our initial stack base
1311 	 */
1312 	stack_base = (register_t *)vectp;
1313 
1314 	stringp = imgp->args->begin_argv;
1315 	argc = imgp->args->argc;
1316 	envc = imgp->args->envc;
1317 
1318 	/*
1319 	 * Copy out strings - arguments and environment.
1320 	 */
1321 	copyout(stringp, (void *)destp, ARG_MAX - imgp->args->stringspace);
1322 
1323 	/*
1324 	 * Fill in "ps_strings" struct for ps, w, etc.
1325 	 */
1326 	suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp);
1327 	suword32(&arginfo->ps_nargvstr, argc);
1328 
1329 	/*
1330 	 * Fill in argument portion of vector table.
1331 	 */
1332 	for (; argc > 0; --argc) {
1333 		suword(vectp++, (long)(intptr_t)destp);
1334 		while (*stringp++ != 0)
1335 			destp++;
1336 		destp++;
1337 	}
1338 
1339 	/* a null vector table pointer separates the argp's from the envp's */
1340 	suword(vectp++, 0);
1341 
1342 	suword(&arginfo->ps_envstr, (long)(intptr_t)vectp);
1343 	suword32(&arginfo->ps_nenvstr, envc);
1344 
1345 	/*
1346 	 * Fill in environment portion of vector table.
1347 	 */
1348 	for (; envc > 0; --envc) {
1349 		suword(vectp++, (long)(intptr_t)destp);
1350 		while (*stringp++ != 0)
1351 			destp++;
1352 		destp++;
1353 	}
1354 
1355 	/* end of vector table is a null pointer */
1356 	suword(vectp, 0);
1357 
1358 	return (stack_base);
1359 }
1360 
1361 /*
1362  * Check permissions of file to execute.
1363  *	Called with imgp->vp locked.
1364  *	Return 0 for success or error code on failure.
1365  */
1366 int
1367 exec_check_permissions(imgp)
1368 	struct image_params *imgp;
1369 {
1370 	struct vnode *vp = imgp->vp;
1371 	struct vattr *attr = imgp->attr;
1372 	struct thread *td;
1373 	int error, writecount;
1374 
1375 	td = curthread;
1376 
1377 	/* Get file attributes */
1378 	error = VOP_GETATTR(vp, attr, td->td_ucred);
1379 	if (error)
1380 		return (error);
1381 
1382 #ifdef MAC
1383 	error = mac_vnode_check_exec(td->td_ucred, imgp->vp, imgp);
1384 	if (error)
1385 		return (error);
1386 #endif
1387 
1388 	/*
1389 	 * 1) Check if file execution is disabled for the filesystem that
1390 	 *    this file resides on.
1391 	 * 2) Ensure that at least one execute bit is on. Otherwise, a
1392 	 *    privileged user will always succeed, and we don't want this
1393 	 *    to happen unless the file really is executable.
1394 	 * 3) Ensure that the file is a regular file.
1395 	 */
1396 	if ((vp->v_mount->mnt_flag & MNT_NOEXEC) ||
1397 	    (attr->va_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0 ||
1398 	    (attr->va_type != VREG))
1399 		return (EACCES);
1400 
1401 	/*
1402 	 * Zero length files can't be exec'd
1403 	 */
1404 	if (attr->va_size == 0)
1405 		return (ENOEXEC);
1406 
1407 	/*
1408 	 *  Check for execute permission to file based on current credentials.
1409 	 */
1410 	error = VOP_ACCESS(vp, VEXEC, td->td_ucred, td);
1411 	if (error)
1412 		return (error);
1413 
1414 	/*
1415 	 * Check number of open-for-writes on the file and deny execution
1416 	 * if there are any.
1417 	 */
1418 	error = VOP_GET_WRITECOUNT(vp, &writecount);
1419 	if (error != 0)
1420 		return (error);
1421 	if (writecount != 0)
1422 		return (ETXTBSY);
1423 
1424 	/*
1425 	 * Call filesystem specific open routine (which does nothing in the
1426 	 * general case).
1427 	 */
1428 	error = VOP_OPEN(vp, FREAD, td->td_ucred, td, NULL);
1429 	if (error == 0)
1430 		imgp->opened = 1;
1431 	return (error);
1432 }
1433 
1434 /*
1435  * Exec handler registration
1436  */
1437 int
1438 exec_register(execsw_arg)
1439 	const struct execsw *execsw_arg;
1440 {
1441 	const struct execsw **es, **xs, **newexecsw;
1442 	int count = 2;	/* New slot and trailing NULL */
1443 
1444 	if (execsw)
1445 		for (es = execsw; *es; es++)
1446 			count++;
1447 	newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
1448 	if (newexecsw == NULL)
1449 		return (ENOMEM);
1450 	xs = newexecsw;
1451 	if (execsw)
1452 		for (es = execsw; *es; es++)
1453 			*xs++ = *es;
1454 	*xs++ = execsw_arg;
1455 	*xs = NULL;
1456 	if (execsw)
1457 		free(execsw, M_TEMP);
1458 	execsw = newexecsw;
1459 	return (0);
1460 }
1461 
1462 int
1463 exec_unregister(execsw_arg)
1464 	const struct execsw *execsw_arg;
1465 {
1466 	const struct execsw **es, **xs, **newexecsw;
1467 	int count = 1;
1468 
1469 	if (execsw == NULL)
1470 		panic("unregister with no handlers left?\n");
1471 
1472 	for (es = execsw; *es; es++) {
1473 		if (*es == execsw_arg)
1474 			break;
1475 	}
1476 	if (*es == NULL)
1477 		return (ENOENT);
1478 	for (es = execsw; *es; es++)
1479 		if (*es != execsw_arg)
1480 			count++;
1481 	newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
1482 	if (newexecsw == NULL)
1483 		return (ENOMEM);
1484 	xs = newexecsw;
1485 	for (es = execsw; *es; es++)
1486 		if (*es != execsw_arg)
1487 			*xs++ = *es;
1488 	*xs = NULL;
1489 	if (execsw)
1490 		free(execsw, M_TEMP);
1491 	execsw = newexecsw;
1492 	return (0);
1493 }
1494