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