xref: /freebsd/sys/kern/kern_exec.c (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
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  * $FreeBSD$
27  */
28 
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/lock.h>
32 #include <sys/mutex.h>
33 #include <sys/sysproto.h>
34 #include <sys/signalvar.h>
35 #include <sys/kernel.h>
36 #include <sys/mount.h>
37 #include <sys/filedesc.h>
38 #include <sys/fcntl.h>
39 #include <sys/acct.h>
40 #include <sys/exec.h>
41 #include <sys/imgact.h>
42 #include <sys/imgact_elf.h>
43 #include <sys/wait.h>
44 #include <sys/proc.h>
45 #include <sys/pioctl.h>
46 #include <sys/malloc.h>
47 #include <sys/namei.h>
48 #include <sys/sysent.h>
49 #include <sys/shm.h>
50 #include <sys/sysctl.h>
51 #include <sys/vnode.h>
52 
53 #include <vm/vm.h>
54 #include <vm/vm_param.h>
55 #include <vm/pmap.h>
56 #include <vm/vm_page.h>
57 #include <vm/vm_map.h>
58 #include <vm/vm_kern.h>
59 #include <vm/vm_extern.h>
60 #include <vm/vm_object.h>
61 #include <vm/vm_pager.h>
62 
63 #include <machine/reg.h>
64 
65 MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments");
66 
67 static register_t *exec_copyout_strings __P((struct image_params *));
68 
69 /* XXX This should be vm_size_t. */
70 static u_long ps_strings = PS_STRINGS;
71 SYSCTL_ULONG(_kern, KERN_PS_STRINGS, ps_strings, CTLFLAG_RD, &ps_strings, 0, "");
72 
73 /* XXX This should be vm_size_t. */
74 static u_long usrstack = USRSTACK;
75 SYSCTL_ULONG(_kern, KERN_USRSTACK, usrstack, CTLFLAG_RD, &usrstack, 0, "");
76 
77 u_long ps_arg_cache_limit = PAGE_SIZE / 16;
78 SYSCTL_LONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW,
79     &ps_arg_cache_limit, 0, "");
80 
81 int ps_argsopen = 1;
82 SYSCTL_INT(_kern, OID_AUTO, ps_argsopen, CTLFLAG_RW, &ps_argsopen, 0, "");
83 
84 /*
85  * Each of the items is a pointer to a `const struct execsw', hence the
86  * double pointer here.
87  */
88 static const struct execsw **execsw;
89 
90 #ifndef _SYS_SYSPROTO_H_
91 struct execve_args {
92         char    *fname;
93         char    **argv;
94         char    **envv;
95 };
96 #endif
97 
98 /*
99  * execve() system call.
100  */
101 int
102 execve(p, uap)
103 	struct proc *p;
104 	register struct execve_args *uap;
105 {
106 	struct nameidata nd, *ndp;
107 	struct ucred *newcred, *oldcred;
108 	register_t *stack_base;
109 	int error, len, i;
110 	struct image_params image_params, *imgp;
111 	struct vattr attr;
112 	int (*img_first) __P((struct image_params *));
113 	struct pargs *pa;
114 
115 	imgp = &image_params;
116 
117 	/*
118 	 * Initialize part of the common data
119 	 */
120 	imgp->proc = p;
121 	imgp->uap = uap;
122 	imgp->attr = &attr;
123 	imgp->argc = imgp->envc = 0;
124 	imgp->argv0 = NULL;
125 	imgp->entry_addr = 0;
126 	imgp->vmspace_destroyed = 0;
127 	imgp->interpreted = 0;
128 	imgp->interpreter_name[0] = '\0';
129 	imgp->auxargs = NULL;
130 	imgp->vp = NULL;
131 	imgp->firstpage = NULL;
132 	imgp->ps_strings = 0;
133 	imgp->auxarg_size = 0;
134 
135 	/*
136 	 * Allocate temporary demand zeroed space for argument and
137 	 *	environment strings
138 	 */
139 	imgp->stringbase = (char *)kmem_alloc_wait(exec_map, ARG_MAX + PAGE_SIZE);
140 	if (imgp->stringbase == NULL) {
141 		error = ENOMEM;
142 		goto exec_fail;
143 	}
144 	imgp->stringp = imgp->stringbase;
145 	imgp->stringspace = ARG_MAX;
146 	imgp->image_header = imgp->stringbase + ARG_MAX;
147 
148 	/*
149 	 * Translate the file name. namei() returns a vnode pointer
150 	 *	in ni_vp amoung other things.
151 	 */
152 	ndp = &nd;
153 	NDINIT(ndp, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME,
154 	    UIO_USERSPACE, uap->fname, p);
155 
156 interpret:
157 
158 	error = namei(ndp);
159 	if (error) {
160 		kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase,
161 			ARG_MAX + PAGE_SIZE);
162 		goto exec_fail;
163 	}
164 
165 	imgp->vp = ndp->ni_vp;
166 	imgp->fname = uap->fname;
167 
168 	/*
169 	 * Check file permissions (also 'opens' file)
170 	 */
171 	error = exec_check_permissions(imgp);
172 	if (error) {
173 		VOP_UNLOCK(imgp->vp, 0, p);
174 		goto exec_fail_dealloc;
175 	}
176 
177 	error = exec_map_first_page(imgp);
178 	VOP_UNLOCK(imgp->vp, 0, p);
179 	if (error)
180 		goto exec_fail_dealloc;
181 
182 	/*
183 	 *	If the current process has a special image activator it
184 	 *	wants to try first, call it.   For example, emulating shell
185 	 *	scripts differently.
186 	 */
187 	error = -1;
188 	if ((img_first = imgp->proc->p_sysent->sv_imgact_try) != NULL)
189 		error = img_first(imgp);
190 
191 	/*
192 	 *	Loop through the list of image activators, calling each one.
193 	 *	An activator returns -1 if there is no match, 0 on success,
194 	 *	and an error otherwise.
195 	 */
196 	for (i = 0; error == -1 && execsw[i]; ++i) {
197 		if (execsw[i]->ex_imgact == NULL ||
198 		    execsw[i]->ex_imgact == img_first) {
199 			continue;
200 		}
201 		error = (*execsw[i]->ex_imgact)(imgp);
202 	}
203 
204 	if (error) {
205 		if (error == -1)
206 			error = ENOEXEC;
207 		goto exec_fail_dealloc;
208 	}
209 
210 	/*
211 	 * Special interpreter operation, cleanup and loop up to try to
212 	 * activate the interpreter.
213 	 */
214 	if (imgp->interpreted) {
215 		exec_unmap_first_page(imgp);
216 		/* free name buffer and old vnode */
217 		NDFREE(ndp, NDF_ONLY_PNBUF);
218 		vrele(ndp->ni_vp);
219 		/* set new name to that of the interpreter */
220 		NDINIT(ndp, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME,
221 		    UIO_SYSSPACE, imgp->interpreter_name, p);
222 		goto interpret;
223 	}
224 
225 	/*
226 	 * Copy out strings (args and env) and initialize stack base
227 	 */
228 	stack_base = exec_copyout_strings(imgp);
229 	p->p_vmspace->vm_minsaddr = (char *)stack_base;
230 
231 	/*
232 	 * If custom stack fixup routine present for this process
233 	 * let it do the stack setup.
234 	 * Else stuff argument count as first item on stack
235 	 */
236 	if (p->p_sysent->sv_fixup)
237 		(*p->p_sysent->sv_fixup)(&stack_base, imgp);
238 	else
239 		suword(--stack_base, imgp->argc);
240 
241 	/*
242 	 * For security and other reasons, the file descriptor table cannot
243 	 * be shared after an exec.
244 	 */
245 	if (p->p_fd->fd_refcnt > 1) {
246 		struct filedesc *tmp;
247 
248 		tmp = fdcopy(p);
249 		fdfree(p);
250 		p->p_fd = tmp;
251 	}
252 
253 	/* Stop profiling */
254 	stopprofclock(p);
255 
256 	/* close files on exec */
257 	fdcloseexec(p);
258 
259 	/* reset caught signals */
260 	execsigs(p);
261 
262 	/* name this process - nameiexec(p, ndp) */
263 	len = min(ndp->ni_cnd.cn_namelen,MAXCOMLEN);
264 	bcopy(ndp->ni_cnd.cn_nameptr, p->p_comm, len);
265 	p->p_comm[len] = 0;
266 
267 	/*
268 	 * mark as execed, wakeup the process that vforked (if any) and tell
269 	 * it that it now has its own resources back
270 	 */
271 	PROC_LOCK(p);
272 	p->p_flag |= P_EXEC;
273 	if (p->p_pptr && (p->p_flag & P_PPWAIT)) {
274 		p->p_flag &= ~P_PPWAIT;
275 		wakeup((caddr_t)p->p_pptr);
276 	}
277 
278 	/*
279 	 * XXX: Note, the whole execve() is incredibly racey right now
280 	 * with regards to debugging and privilege/credential management.
281 	 * In particular, it's possible to race during exec() to attach
282 	 * debugging to a process that will gain privilege.
283 	 *
284 	 * This MUST be fixed prior to any release.
285 	 */
286 
287 	/*
288 	 * Implement image setuid/setgid.
289 	 *
290 	 * Don't honor setuid/setgid if the filesystem prohibits it or if
291 	 * the process is being traced.
292 	 */
293 	oldcred = p->p_ucred;
294 	newcred = NULL;
295 	if ((((attr.va_mode & VSUID) && oldcred->cr_uid != attr.va_uid) ||
296 	     ((attr.va_mode & VSGID) && oldcred->cr_gid != attr.va_gid)) &&
297 	    (imgp->vp->v_mount->mnt_flag & MNT_NOSUID) == 0 &&
298 	    (p->p_flag & P_TRACED) == 0) {
299 		PROC_UNLOCK(p);
300 		/*
301 		 * Turn off syscall tracing for set-id programs, except for
302 		 * root.  Record any set-id flags first to make sure that
303 		 * we do not regain any tracing during a possible block.
304 		 */
305 		setsugid(p);
306 		if (p->p_tracep && suser_xxx(oldcred, NULL, PRISON_ROOT)) {
307 			p->p_traceflag = 0;
308 			vrele(p->p_tracep);
309 			p->p_tracep = NULL;
310 		}
311 		/*
312 		 * Set the new credentials.
313 		 */
314 		newcred = crdup(oldcred);
315 		if (attr.va_mode & VSUID)
316 			change_euid(newcred, attr.va_uid);
317 		if (attr.va_mode & VSGID)
318 			change_egid(newcred, attr.va_gid);
319 		setugidsafety(p);
320 	} else {
321 		if (oldcred->cr_uid == oldcred->cr_ruid &&
322 		    oldcred->cr_gid == oldcred->cr_rgid)
323 			p->p_flag &= ~P_SUGID;
324 		PROC_UNLOCK(p);
325 	}
326 
327 	/*
328 	 * Implement correct POSIX saved-id behavior.
329 	 *
330 	 * XXX: It's not clear that the existing behavior is
331 	 * POSIX-compliant.  A number of sourses indicate that the saved
332 	 * uid/gid should only be updated if the new ruid is not equal to
333 	 * the old ruid, or the new euid is not equal to the old euid and
334 	 * the new euid is not equal to the old ruid.  The FreeBSD code
335 	 * always updates the saved uid/gid.  Also, this code uses the new
336 	 * (replaced) euid and egid as the source, which may or may not be
337 	 * the right ones to use.
338 	 */
339 	if (newcred == NULL) {
340 		if (oldcred->cr_svuid != oldcred->cr_uid ||
341 		    oldcred->cr_svgid != oldcred->cr_gid) {
342 			newcred = crdup(oldcred);
343 			change_svuid(newcred, newcred->cr_uid);
344 			change_svgid(newcred, newcred->cr_gid);
345 		}
346 	} else {
347 		change_svuid(newcred, newcred->cr_uid);
348 		change_svgid(newcred, newcred->cr_gid);
349 	}
350 
351 	if (newcred != NULL) {
352 		PROC_LOCK(p);
353 		p->p_ucred = newcred;
354 		PROC_UNLOCK(p);
355 		crfree(oldcred);
356 	}
357 
358 	/*
359 	 * Store the vp for use in procfs
360 	 */
361 	if (p->p_textvp)		/* release old reference */
362 		vrele(p->p_textvp);
363 	VREF(ndp->ni_vp);
364 	p->p_textvp = ndp->ni_vp;
365 
366 	/*
367 	 * notify others that we exec'd
368 	 */
369 	PROC_LOCK(p);
370 	KNOTE(&p->p_klist, NOTE_EXEC);
371 
372 	/*
373 	 * If tracing the process, trap to debugger so breakpoints
374 	 * 	can be set before the program executes.
375 	 */
376 	_STOPEVENT(p, S_EXEC, 0);
377 
378 	if (p->p_flag & P_TRACED)
379 		psignal(p, SIGTRAP);
380 
381 	/* clear "fork but no exec" flag, as we _are_ execing */
382 	p->p_acflag &= ~AFORK;
383 
384 	/* Set values passed into the program in registers. */
385 	setregs(p, imgp->entry_addr, (u_long)(uintptr_t)stack_base,
386 	    imgp->ps_strings);
387 
388 	/* Free any previous argument cache */
389 	pa = p->p_args;
390 	p->p_args = NULL;
391 	PROC_UNLOCK(p);
392 	if (pa != NULL && --pa->ar_ref == 0)
393 		FREE(pa, M_PARGS);
394 
395 	/* Cache arguments if they fit inside our allowance */
396 	i = imgp->endargs - imgp->stringbase;
397 	if (ps_arg_cache_limit >= i + sizeof(struct pargs)) {
398 		MALLOC(pa, struct pargs *, sizeof(struct pargs) + i,
399 		    M_PARGS, M_WAITOK);
400 		pa->ar_ref = 1;
401 		pa->ar_length = i;
402 		bcopy(imgp->stringbase, pa->ar_args, i);
403 		PROC_LOCK(p);
404 		p->p_args = pa;
405 		PROC_UNLOCK(p);
406 	}
407 
408 exec_fail_dealloc:
409 
410 	/*
411 	 * free various allocated resources
412 	 */
413 	if (imgp->firstpage)
414 		exec_unmap_first_page(imgp);
415 
416 	if (imgp->stringbase != NULL)
417 		kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase,
418 			ARG_MAX + PAGE_SIZE);
419 
420 	if (imgp->vp) {
421 		NDFREE(ndp, NDF_ONLY_PNBUF);
422 		vrele(imgp->vp);
423 	}
424 
425 	if (error == 0)
426 		return (0);
427 
428 exec_fail:
429 	if (imgp->vmspace_destroyed) {
430 		/* sorry, no more process anymore. exit gracefully */
431 		exit1(p, W_EXITCODE(0, SIGABRT));
432 		/* NOT REACHED */
433 		return(0);
434 	} else {
435 		return(error);
436 	}
437 }
438 
439 int
440 exec_map_first_page(imgp)
441 	struct image_params *imgp;
442 {
443 	int rv, i;
444 	int initial_pagein;
445 	vm_page_t ma[VM_INITIAL_PAGEIN];
446 	vm_object_t object;
447 
448 	GIANT_REQUIRED;
449 
450 	if (imgp->firstpage) {
451 		exec_unmap_first_page(imgp);
452 	}
453 
454 	VOP_GETVOBJECT(imgp->vp, &object);
455 
456 	ma[0] = vm_page_grab(object, 0, VM_ALLOC_NORMAL | VM_ALLOC_RETRY);
457 
458 	if ((ma[0]->valid & VM_PAGE_BITS_ALL) != VM_PAGE_BITS_ALL) {
459 		initial_pagein = VM_INITIAL_PAGEIN;
460 		if (initial_pagein > object->size)
461 			initial_pagein = object->size;
462 		for (i = 1; i < initial_pagein; i++) {
463 			if ((ma[i] = vm_page_lookup(object, i)) != NULL) {
464 				if ((ma[i]->flags & PG_BUSY) || ma[i]->busy)
465 					break;
466 				if (ma[i]->valid)
467 					break;
468 				vm_page_busy(ma[i]);
469 			} else {
470 				ma[i] = vm_page_alloc(object, i, VM_ALLOC_NORMAL);
471 				if (ma[i] == NULL)
472 					break;
473 			}
474 		}
475 		initial_pagein = i;
476 
477 		rv = vm_pager_get_pages(object, ma, initial_pagein, 0);
478 		ma[0] = vm_page_lookup(object, 0);
479 
480 		if ((rv != VM_PAGER_OK) || (ma[0] == NULL) || (ma[0]->valid == 0)) {
481 			if (ma[0]) {
482 				vm_page_protect(ma[0], VM_PROT_NONE);
483 				vm_page_free(ma[0]);
484 			}
485 			return EIO;
486 		}
487 	}
488 
489 	vm_page_wire(ma[0]);
490 	vm_page_wakeup(ma[0]);
491 
492 	pmap_kenter((vm_offset_t) imgp->image_header, VM_PAGE_TO_PHYS(ma[0]));
493 	imgp->firstpage = ma[0];
494 
495 	return 0;
496 }
497 
498 void
499 exec_unmap_first_page(imgp)
500 	struct image_params *imgp;
501 {
502 	GIANT_REQUIRED;
503 
504 	if (imgp->firstpage) {
505 		pmap_kremove((vm_offset_t) imgp->image_header);
506 		vm_page_unwire(imgp->firstpage, 1);
507 		imgp->firstpage = NULL;
508 	}
509 }
510 
511 /*
512  * Destroy old address space, and allocate a new stack
513  *	The new stack is only SGROWSIZ large because it is grown
514  *	automatically in trap.c.
515  */
516 int
517 exec_new_vmspace(imgp)
518 	struct image_params *imgp;
519 {
520 	int error;
521 	struct vmspace *vmspace = imgp->proc->p_vmspace;
522 	caddr_t	stack_addr = (caddr_t) (USRSTACK - MAXSSIZ);
523 	vm_map_t map = &vmspace->vm_map;
524 
525 	GIANT_REQUIRED;
526 
527 	imgp->vmspace_destroyed = 1;
528 
529 	/*
530 	 * Blow away entire process VM, if address space not shared,
531 	 * otherwise, create a new VM space so that other threads are
532 	 * not disrupted
533 	 */
534 	if (vmspace->vm_refcnt == 1) {
535 		if (vmspace->vm_shm)
536 			shmexit(imgp->proc);
537 		pmap_remove_pages(vmspace_pmap(vmspace), 0, VM_MAXUSER_ADDRESS);
538 		vm_map_remove(map, 0, VM_MAXUSER_ADDRESS);
539 	} else {
540 		vmspace_exec(imgp->proc);
541 		vmspace = imgp->proc->p_vmspace;
542 		map = &vmspace->vm_map;
543 	}
544 
545 	/* Allocate a new stack */
546 	error = vm_map_stack (&vmspace->vm_map, (vm_offset_t)stack_addr,
547 			      (vm_size_t)MAXSSIZ, VM_PROT_ALL, VM_PROT_ALL, 0);
548 	if (error)
549 		return (error);
550 
551 #ifdef __ia64__
552 	{
553 		/*
554 		 * Allocate backing store. We really need something
555 		 * similar to vm_map_stack which can allow the backing
556 		 * store to grow upwards. This will do for now.
557 		 */
558 		vm_offset_t bsaddr;
559 		bsaddr = USRSTACK - 2*MAXSSIZ;
560 		error = vm_map_find(&vmspace->vm_map, 0, 0, &bsaddr,
561 				    4*PAGE_SIZE, 0,
562 				    VM_PROT_ALL, VM_PROT_ALL, 0);
563 		imgp->proc->p_md.md_bspstore = bsaddr;
564 	}
565 #endif
566 
567 	/* vm_ssize and vm_maxsaddr are somewhat antiquated concepts in the
568 	 * VM_STACK case, but they are still used to monitor the size of the
569 	 * process stack so we can check the stack rlimit.
570 	 */
571 	vmspace->vm_ssize = SGROWSIZ >> PAGE_SHIFT;
572 	vmspace->vm_maxsaddr = (char *)USRSTACK - MAXSSIZ;
573 
574 	return(0);
575 }
576 
577 /*
578  * Copy out argument and environment strings from the old process
579  *	address space into the temporary string buffer.
580  */
581 int
582 exec_extract_strings(imgp)
583 	struct image_params *imgp;
584 {
585 	char	**argv, **envv;
586 	char	*argp, *envp;
587 	int	error;
588 	size_t	length;
589 
590 	/*
591 	 * extract arguments first
592 	 */
593 
594 	argv = imgp->uap->argv;
595 
596 	if (argv) {
597 		argp = (caddr_t) (intptr_t) fuword(argv);
598 		if (argp == (caddr_t) -1)
599 			return (EFAULT);
600 		if (argp)
601 			argv++;
602 		if (imgp->argv0)
603 			argp = imgp->argv0;
604 		if (argp) {
605 			do {
606 				if (argp == (caddr_t) -1)
607 					return (EFAULT);
608 				if ((error = copyinstr(argp, imgp->stringp,
609 				    imgp->stringspace, &length))) {
610 					if (error == ENAMETOOLONG)
611 						return(E2BIG);
612 					return (error);
613 				}
614 				imgp->stringspace -= length;
615 				imgp->stringp += length;
616 				imgp->argc++;
617 			} while ((argp = (caddr_t) (intptr_t) fuword(argv++)));
618 		}
619 	}
620 
621 	imgp->endargs = imgp->stringp;
622 
623 	/*
624 	 * extract environment strings
625 	 */
626 
627 	envv = imgp->uap->envv;
628 
629 	if (envv) {
630 		while ((envp = (caddr_t) (intptr_t) fuword(envv++))) {
631 			if (envp == (caddr_t) -1)
632 				return (EFAULT);
633 			if ((error = copyinstr(envp, imgp->stringp,
634 			    imgp->stringspace, &length))) {
635 				if (error == ENAMETOOLONG)
636 					return(E2BIG);
637 				return (error);
638 			}
639 			imgp->stringspace -= length;
640 			imgp->stringp += length;
641 			imgp->envc++;
642 		}
643 	}
644 
645 	return (0);
646 }
647 
648 /*
649  * Copy strings out to the new process address space, constructing
650  *	new arg and env vector tables. Return a pointer to the base
651  *	so that it can be used as the initial stack pointer.
652  */
653 register_t *
654 exec_copyout_strings(imgp)
655 	struct image_params *imgp;
656 {
657 	int argc, envc;
658 	char **vectp;
659 	char *stringp, *destp;
660 	register_t *stack_base;
661 	struct ps_strings *arginfo;
662 	int szsigcode;
663 
664 	/*
665 	 * Calculate string base and vector table pointers.
666 	 * Also deal with signal trampoline code for this exec type.
667 	 */
668 	arginfo = (struct ps_strings *)PS_STRINGS;
669 	szsigcode = *(imgp->proc->p_sysent->sv_szsigcode);
670 	destp =	(caddr_t)arginfo - szsigcode - SPARE_USRSPACE -
671 		roundup((ARG_MAX - imgp->stringspace), sizeof(char *));
672 
673 	/*
674 	 * install sigcode
675 	 */
676 	if (szsigcode)
677 		copyout(imgp->proc->p_sysent->sv_sigcode,
678 			((caddr_t)arginfo - szsigcode), szsigcode);
679 
680 	/*
681 	 * If we have a valid auxargs ptr, prepare some room
682 	 * on the stack.
683 	 */
684 	if (imgp->auxargs) {
685 		/*
686 		 * 'AT_COUNT*2' is size for the ELF Auxargs data. This is for
687 		 * lower compatibility.
688 		 */
689 		imgp->auxarg_size = (imgp->auxarg_size) ? imgp->auxarg_size
690 			: (AT_COUNT * 2);
691 		/*
692 		 * The '+ 2' is for the null pointers at the end of each of
693 		 * the arg and env vector sets,and imgp->auxarg_size is room
694 		 * for argument of Runtime loader.
695 		 */
696 		vectp = (char **) (destp - (imgp->argc + imgp->envc + 2 +
697 				       imgp->auxarg_size) * sizeof(char *));
698 
699 	} else
700 		/*
701 		 * The '+ 2' is for the null pointers at the end of each of
702 		 * the arg and env vector sets
703 		 */
704 		vectp = (char **)
705 			(destp - (imgp->argc + imgp->envc + 2) * sizeof(char *));
706 
707 	/*
708 	 * vectp also becomes our initial stack base
709 	 */
710 	stack_base = (register_t *)vectp;
711 
712 	stringp = imgp->stringbase;
713 	argc = imgp->argc;
714 	envc = imgp->envc;
715 
716 	/*
717 	 * Copy out strings - arguments and environment.
718 	 */
719 	copyout(stringp, destp, ARG_MAX - imgp->stringspace);
720 
721 	/*
722 	 * Fill in "ps_strings" struct for ps, w, etc.
723 	 */
724 	suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp);
725 	suword(&arginfo->ps_nargvstr, argc);
726 
727 	/*
728 	 * Fill in argument portion of vector table.
729 	 */
730 	for (; argc > 0; --argc) {
731 		suword(vectp++, (long)(intptr_t)destp);
732 		while (*stringp++ != 0)
733 			destp++;
734 		destp++;
735 	}
736 
737 	/* a null vector table pointer separates the argp's from the envp's */
738 	suword(vectp++, 0);
739 
740 	suword(&arginfo->ps_envstr, (long)(intptr_t)vectp);
741 	suword(&arginfo->ps_nenvstr, envc);
742 
743 	/*
744 	 * Fill in environment portion of vector table.
745 	 */
746 	for (; envc > 0; --envc) {
747 		suword(vectp++, (long)(intptr_t)destp);
748 		while (*stringp++ != 0)
749 			destp++;
750 		destp++;
751 	}
752 
753 	/* end of vector table is a null pointer */
754 	suword(vectp, 0);
755 
756 	return (stack_base);
757 }
758 
759 /*
760  * Check permissions of file to execute.
761  *	Called with imgp->vp locked.
762  *	Return 0 for success or error code on failure.
763  */
764 int
765 exec_check_permissions(imgp)
766 	struct image_params *imgp;
767 {
768 	struct proc *p = imgp->proc;
769 	struct vnode *vp = imgp->vp;
770 	struct vattr *attr = imgp->attr;
771 	int error;
772 
773 	/* Get file attributes */
774 	error = VOP_GETATTR(vp, attr, p->p_ucred, p);
775 	if (error)
776 		return (error);
777 
778 	/*
779 	 * 1) Check if file execution is disabled for the filesystem that this
780 	 *	file resides on.
781 	 * 2) Insure that at least one execute bit is on - otherwise root
782 	 *	will always succeed, and we don't want to happen unless the
783 	 *	file really is executable.
784 	 * 3) Insure that the file is a regular file.
785 	 */
786 	if ((vp->v_mount->mnt_flag & MNT_NOEXEC) ||
787 	    ((attr->va_mode & 0111) == 0) ||
788 	    (attr->va_type != VREG)) {
789 		return (EACCES);
790 	}
791 
792 	/*
793 	 * Zero length files can't be exec'd
794 	 */
795 	if (attr->va_size == 0)
796 		return (ENOEXEC);
797 
798 	/*
799 	 *  Check for execute permission to file based on current credentials.
800 	 */
801 	error = VOP_ACCESS(vp, VEXEC, p->p_ucred, p);
802 	if (error)
803 		return (error);
804 
805 	/*
806 	 * Check number of open-for-writes on the file and deny execution
807 	 * if there are any.
808 	 */
809 	if (vp->v_writecount)
810 		return (ETXTBSY);
811 
812 	/*
813 	 * Call filesystem specific open routine (which does nothing in the
814 	 * general case).
815 	 */
816 	error = VOP_OPEN(vp, FREAD, p->p_ucred, p);
817 	if (error)
818 		return (error);
819 
820 	return (0);
821 }
822 
823 /*
824  * Exec handler registration
825  */
826 int
827 exec_register(execsw_arg)
828 	const struct execsw *execsw_arg;
829 {
830 	const struct execsw **es, **xs, **newexecsw;
831 	int count = 2;	/* New slot and trailing NULL */
832 
833 	if (execsw)
834 		for (es = execsw; *es; es++)
835 			count++;
836 	newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
837 	if (newexecsw == NULL)
838 		return ENOMEM;
839 	xs = newexecsw;
840 	if (execsw)
841 		for (es = execsw; *es; es++)
842 			*xs++ = *es;
843 	*xs++ = execsw_arg;
844 	*xs = NULL;
845 	if (execsw)
846 		free(execsw, M_TEMP);
847 	execsw = newexecsw;
848 	return 0;
849 }
850 
851 int
852 exec_unregister(execsw_arg)
853 	const struct execsw *execsw_arg;
854 {
855 	const struct execsw **es, **xs, **newexecsw;
856 	int count = 1;
857 
858 	if (execsw == NULL)
859 		panic("unregister with no handlers left?\n");
860 
861 	for (es = execsw; *es; es++) {
862 		if (*es == execsw_arg)
863 			break;
864 	}
865 	if (*es == NULL)
866 		return ENOENT;
867 	for (es = execsw; *es; es++)
868 		if (*es != execsw_arg)
869 			count++;
870 	newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
871 	if (newexecsw == NULL)
872 		return ENOMEM;
873 	xs = newexecsw;
874 	for (es = execsw; *es; es++)
875 		if (*es != execsw_arg)
876 			*xs++ = *es;
877 	*xs = NULL;
878 	if (execsw)
879 		free(execsw, M_TEMP);
880 	execsw = newexecsw;
881 	return 0;
882 }
883