xref: /freebsd/sys/kern/kern_exec.c (revision 4a0f765fbf09711e612e86fce8bb09ec43f482d9)
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  *	$Id$
27  */
28 
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/sysproto.h>
32 #include <sys/signalvar.h>
33 #include <sys/kernel.h>
34 #include <sys/mount.h>
35 #include <sys/filedesc.h>
36 #include <sys/fcntl.h>
37 #include <sys/acct.h>
38 #include <sys/exec.h>
39 #include <sys/imgact.h>
40 #include <sys/imgact_elf.h>
41 #include <sys/wait.h>
42 #include <sys/proc.h>
43 #include <sys/malloc.h>
44 #include <sys/namei.h>
45 #include <sys/sysent.h>
46 #include <sys/syslog.h>
47 #include <sys/shm.h>
48 #include <sys/sysctl.h>
49 #include <sys/vnode.h>
50 
51 #include <vm/vm.h>
52 #include <vm/vm_param.h>
53 #include <vm/vm_prot.h>
54 #include <sys/lock.h>
55 #include <vm/pmap.h>
56 #include <vm/vm_map.h>
57 #include <vm/vm_kern.h>
58 #include <vm/vm_extern.h>
59 
60 #include <machine/reg.h>
61 
62 static int *exec_copyout_strings __P((struct image_params *));
63 
64 static int exec_check_permissions(struct image_params *);
65 
66 /*
67  * XXX trouble here if sizeof(caddr_t) != sizeof(int), other parts
68  * of the sysctl code also assumes this, and sizeof(int) == sizeof(long).
69  */
70 static struct ps_strings *ps_strings = PS_STRINGS;
71 SYSCTL_INT(_kern, KERN_PS_STRINGS, ps_strings, 0, &ps_strings, 0, "");
72 
73 static caddr_t usrstack = (caddr_t)USRSTACK;
74 SYSCTL_INT(_kern, KERN_USRSTACK, usrstack, 0, &usrstack, 0, "");
75 
76 /*
77  * execsw_set is constructed for us by the linker.  Each of the items
78  * is a pointer to a `const struct execsw', hence the double pointer here.
79  */
80 static const struct execsw **execsw =
81 	(const struct execsw **)&execsw_set.ls_items[0];
82 
83 #ifndef _SYS_SYSPROTO_H_
84 struct execve_args {
85         char    *fname;
86         char    **argv;
87         char    **envv;
88 };
89 #endif
90 
91 /*
92  * execve() system call.
93  */
94 int
95 execve(p, uap, retval)
96 	struct proc *p;
97 	register struct execve_args *uap;
98 	int *retval;
99 {
100 	struct nameidata nd, *ndp;
101 	int *stack_base;
102 	int error, len, i;
103 	struct image_params image_params, *imgp;
104 	struct vattr attr;
105 
106 	imgp = &image_params;
107 
108 	/*
109 	 * Initialize part of the common data
110 	 */
111 	imgp->proc = p;
112 	imgp->uap = uap;
113 	imgp->attr = &attr;
114 	imgp->image_header = NULL;
115 	imgp->argc = imgp->envc = 0;
116 	imgp->entry_addr = 0;
117 	imgp->vmspace_destroyed = 0;
118 	imgp->interpreted = 0;
119 	imgp->interpreter_name[0] = '\0';
120 	imgp->auxargs = NULL;
121 
122 	/*
123 	 * Allocate temporary demand zeroed space for argument and
124 	 *	environment strings
125 	 */
126 	imgp->stringbase = (char *)kmem_alloc_wait(exec_map, ARG_MAX);
127 	if (imgp->stringbase == NULL) {
128 		error = ENOMEM;
129 		goto exec_fail;
130 	}
131 	imgp->stringp = imgp->stringbase;
132 	imgp->stringspace = ARG_MAX;
133 
134 	/*
135 	 * Translate the file name. namei() returns a vnode pointer
136 	 *	in ni_vp amoung other things.
137 	 */
138 	ndp = &nd;
139 	NDINIT(ndp, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME,
140 	    UIO_USERSPACE, uap->fname, p);
141 
142 interpret:
143 
144 	error = namei(ndp);
145 	if (error) {
146 		kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase, ARG_MAX);
147 		goto exec_fail;
148 	}
149 
150 	imgp->vp = ndp->ni_vp;
151 	if (imgp->vp == NULL) {
152 		error = ENOEXEC;
153 		goto exec_fail_dealloc;
154 	}
155 
156 	/*
157 	 * Check file permissions (also 'opens' file)
158 	 */
159 	error = exec_check_permissions(imgp);
160 
161 	/*
162 	 * Lose the lock on the vnode. It's no longer needed, and must not
163 	 * exist for the pagefault paging to work below.
164 	 */
165 	VOP_UNLOCK(imgp->vp, 0, p);
166 
167 	if (error)
168 		goto exec_fail_dealloc;
169 
170 	/*
171 	 * Map the image header (first page) of the file into
172 	 *	kernel address space
173 	 */
174 	error = vm_mmap(exech_map,			/* map */
175 			(vm_offset_t *)&imgp->image_header, /* address */
176 			PAGE_SIZE,			/* size */
177 			VM_PROT_READ, 			/* protection */
178 			VM_PROT_READ, 			/* max protection */
179 			0,	 			/* flags */
180 			(caddr_t)imgp->vp,		/* vnode */
181 			0);				/* offset */
182 	if (error) {
183 		uprintf("mmap failed: %d\n",error);
184 		goto exec_fail_dealloc;
185 	}
186 
187 	/*
188 	 * Loop through list of image activators, calling each one.
189 	 *	If there is no match, the activator returns -1. If there
190 	 *	is a match, but there was an error during the activation,
191 	 *	the error is returned. Otherwise 0 means success. If the
192 	 *	image is interpreted, loop back up and try activating
193 	 *	the interpreter.
194 	 */
195 	for (i = 0; execsw[i]; ++i) {
196 		if (execsw[i]->ex_imgact)
197 			error = (*execsw[i]->ex_imgact)(imgp);
198 		else
199 			continue;
200 
201 		if (error == -1)
202 			continue;
203 		if (error)
204 			goto exec_fail_dealloc;
205 		if (imgp->interpreted) {
206 			/* free old vnode and name buffer */
207 			vrele(ndp->ni_vp);
208 			FREE(ndp->ni_cnd.cn_pnbuf, M_NAMEI);
209 			if (vm_map_remove(exech_map, (vm_offset_t)imgp->image_header,
210 			    (vm_offset_t)imgp->image_header + PAGE_SIZE))
211 				panic("execve: header dealloc failed (1)");
212 
213 			/* set new name to that of the interpreter */
214 			NDINIT(ndp, LOOKUP, LOCKLEAF | FOLLOW | SAVENAME,
215 			    UIO_SYSSPACE, imgp->interpreter_name, p);
216 			goto interpret;
217 		}
218 		break;
219 	}
220 	/* If we made it through all the activators and none matched, exit. */
221 	if (error == -1) {
222 		error = ENOEXEC;
223 		goto exec_fail_dealloc;
224 	}
225 
226 	/*
227 	 * Copy out strings (args and env) and initialize stack base
228 	 */
229 	stack_base = exec_copyout_strings(imgp);
230 	p->p_vmspace->vm_minsaddr = (char *)stack_base;
231 
232 	/*
233 	 * If custom stack fixup routine present for this process
234 	 * let it do the stack setup.
235 	 * Else stuff argument count as first item on stack
236 	 */
237 	if (p->p_sysent->sv_fixup)
238 		(*p->p_sysent->sv_fixup)(&stack_base, imgp);
239 	else
240 		suword(--stack_base, imgp->argc);
241 
242 	/* close files on exec */
243 	fdcloseexec(p);
244 
245 	/* reset caught signals */
246 	execsigs(p);
247 
248 	/* name this process - nameiexec(p, ndp) */
249 	len = min(ndp->ni_cnd.cn_namelen,MAXCOMLEN);
250 	bcopy(ndp->ni_cnd.cn_nameptr, p->p_comm, len);
251 	p->p_comm[len] = 0;
252 
253 	/*
254 	 * mark as execed, wakeup the process that vforked (if any) and tell
255 	 * it that it now has it's own resources back
256 	 */
257 	p->p_flag |= P_EXEC;
258 	if (p->p_pptr && (p->p_flag & P_PPWAIT)) {
259 		p->p_flag &= ~P_PPWAIT;
260 		wakeup((caddr_t)p->p_pptr);
261 	}
262 
263 	/*
264 	 * Implement image setuid/setgid. Disallow if the process is
265 	 * being traced.
266 	 */
267 	if ((attr.va_mode & (VSUID | VSGID)) &&
268 	    (p->p_flag & P_TRACED) == 0) {
269 		/*
270 		 * Turn off syscall tracing for set-id programs, except for
271 		 * root.
272 		 */
273 		if (p->p_tracep && suser(p->p_ucred, &p->p_acflag)) {
274 			p->p_traceflag = 0;
275 			vrele(p->p_tracep);
276 			p->p_tracep = NULL;
277 		}
278 		/*
279 		 * Set the new credentials.
280 		 */
281 		p->p_ucred = crcopy(p->p_ucred);
282 		if (attr.va_mode & VSUID)
283 			p->p_ucred->cr_uid = attr.va_uid;
284 		if (attr.va_mode & VSGID)
285 			p->p_ucred->cr_groups[0] = attr.va_gid;
286 		p->p_flag |= P_SUGID;
287 	} else {
288 	        if (p->p_ucred->cr_uid == p->p_cred->p_ruid &&
289 		    p->p_ucred->cr_gid == p->p_cred->p_rgid)
290 			p->p_flag &= ~P_SUGID;
291 	}
292 
293 	/*
294 	 * Implement correct POSIX saved-id behavior.
295 	 */
296 	p->p_cred->p_svuid = p->p_ucred->cr_uid;
297 	p->p_cred->p_svgid = p->p_ucred->cr_gid;
298 
299 	/*
300 	 * Store the vp for use in procfs
301 	 */
302 	if (p->p_textvp)		/* release old reference */
303 		vrele(p->p_textvp);
304 	VREF(ndp->ni_vp);
305 	p->p_textvp = ndp->ni_vp;
306 
307 	/*
308 	 * If tracing the process, trap to debugger so breakpoints
309 	 * 	can be set before the program executes.
310 	 */
311 	if (p->p_flag & P_TRACED)
312 		psignal(p, SIGTRAP);
313 
314 	/* clear "fork but no exec" flag, as we _are_ execing */
315 	p->p_acflag &= ~AFORK;
316 
317 	/* Set entry address */
318 	setregs(p, imgp->entry_addr, (u_long)stack_base);
319 
320 	/*
321 	 * free various allocated resources
322 	 */
323 	kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase, ARG_MAX);
324 	if (vm_map_remove(exech_map, (vm_offset_t)imgp->image_header,
325 	    (vm_offset_t)imgp->image_header + PAGE_SIZE))
326 		panic("execve: header dealloc failed (2)");
327 	vrele(ndp->ni_vp);
328 	FREE(ndp->ni_cnd.cn_pnbuf, M_NAMEI);
329 
330 	return (0);
331 
332 exec_fail_dealloc:
333 	if (imgp->stringbase != NULL)
334 		kmem_free_wakeup(exec_map, (vm_offset_t)imgp->stringbase, ARG_MAX);
335 	if (imgp->image_header && imgp->image_header != (char *)-1)
336 		if (vm_map_remove(exech_map, (vm_offset_t)imgp->image_header,
337 		    (vm_offset_t)imgp->image_header + PAGE_SIZE))
338 			panic("execve: header dealloc failed (3)");
339 	if (ndp->ni_vp)
340 		vrele(ndp->ni_vp);
341 	FREE(ndp->ni_cnd.cn_pnbuf, M_NAMEI);
342 
343 exec_fail:
344 	if (imgp->vmspace_destroyed) {
345 		/* sorry, no more process anymore. exit gracefully */
346 		exit1(p, W_EXITCODE(0, SIGABRT));
347 		/* NOT REACHED */
348 		return(0);
349 	} else {
350 		return(error);
351 	}
352 }
353 
354 /*
355  * Destroy old address space, and allocate a new stack
356  *	The new stack is only SGROWSIZ large because it is grown
357  *	automatically in trap.c.
358  */
359 int
360 exec_new_vmspace(imgp)
361 	struct image_params *imgp;
362 {
363 	int error;
364 	struct vmspace *vmspace = imgp->proc->p_vmspace;
365 	caddr_t	stack_addr = (caddr_t) (USRSTACK - SGROWSIZ);
366 
367 	imgp->vmspace_destroyed = 1;
368 
369 	/* Blow away entire process VM */
370 	if (vmspace->vm_shm)
371 		shmexit(imgp->proc);
372 	pmap_remove_pages(&vmspace->vm_pmap, 0, USRSTACK);
373 	vm_map_remove(&vmspace->vm_map, 0, USRSTACK);
374 
375 	/* Allocate a new stack */
376 	error = vm_map_find(&vmspace->vm_map, NULL, 0, (vm_offset_t *)&stack_addr,
377 	    SGROWSIZ, FALSE, VM_PROT_ALL, VM_PROT_ALL, 0);
378 	if (error)
379 		return(error);
380 
381 	vmspace->vm_ssize = SGROWSIZ >> PAGE_SHIFT;
382 
383 	/* Initialize maximum stack address */
384 	vmspace->vm_maxsaddr = (char *)USRSTACK - MAXSSIZ;
385 
386 	return(0);
387 }
388 
389 /*
390  * Copy out argument and environment strings from the old process
391  *	address space into the temporary string buffer.
392  */
393 int
394 exec_extract_strings(imgp)
395 	struct image_params *imgp;
396 {
397 	char	**argv, **envv;
398 	char	*argp, *envp;
399 	int	error, length;
400 
401 	/*
402 	 * extract arguments first
403 	 */
404 
405 	argv = imgp->uap->argv;
406 
407 	if (argv) {
408 		while ((argp = (caddr_t) fuword(argv++))) {
409 			if (argp == (caddr_t) -1)
410 				return (EFAULT);
411 			if ((error = copyinstr(argp, imgp->stringp,
412 			    imgp->stringspace, &length))) {
413 				if (error == ENAMETOOLONG)
414 					return(E2BIG);
415 				return (error);
416 			}
417 			imgp->stringspace -= length;
418 			imgp->stringp += length;
419 			imgp->argc++;
420 		}
421 	}
422 
423 	/*
424 	 * extract environment strings
425 	 */
426 
427 	envv = imgp->uap->envv;
428 
429 	if (envv) {
430 		while ((envp = (caddr_t) fuword(envv++))) {
431 			if (envp == (caddr_t) -1)
432 				return (EFAULT);
433 			if ((error = copyinstr(envp, imgp->stringp,
434 			    imgp->stringspace, &length))) {
435 				if (error == ENAMETOOLONG)
436 					return(E2BIG);
437 				return (error);
438 			}
439 			imgp->stringspace -= length;
440 			imgp->stringp += length;
441 			imgp->envc++;
442 		}
443 	}
444 
445 	return (0);
446 }
447 
448 /*
449  * Copy strings out to the new process address space, constructing
450  *	new arg and env vector tables. Return a pointer to the base
451  *	so that it can be used as the initial stack pointer.
452  */
453 int *
454 exec_copyout_strings(imgp)
455 	struct image_params *imgp;
456 {
457 	int argc, envc;
458 	char **vectp;
459 	char *stringp, *destp;
460 	int *stack_base;
461 	struct ps_strings *arginfo;
462 	int szsigcode;
463 
464 	/*
465 	 * Calculate string base and vector table pointers.
466 	 * Also deal with signal trampoline code for this exec type.
467 	 */
468 	arginfo = PS_STRINGS;
469 	szsigcode = *(imgp->proc->p_sysent->sv_szsigcode);
470 	destp =	(caddr_t)arginfo - szsigcode - SPARE_USRSPACE -
471 		roundup((ARG_MAX - imgp->stringspace), sizeof(char *));
472 
473 	/*
474 	 * install sigcode
475 	 */
476 	if (szsigcode)
477 		copyout(imgp->proc->p_sysent->sv_sigcode,
478 			((caddr_t)arginfo - szsigcode), szsigcode);
479 
480 	/*
481 	 * If we have a valid auxargs ptr, prepare some room
482 	 * on the stack.
483 	 */
484 	if (imgp->auxargs)
485 	/*
486 	 * The '+ 2' is for the null pointers at the end of each of the
487 	 * arg and env vector sets, and 'AT_COUNT*2' is room for the
488 	 * ELF Auxargs data.
489 	 */
490 		vectp = (char **)(destp - (imgp->argc + imgp->envc + 2 +
491 				  AT_COUNT*2) * sizeof(char*));
492 	else
493 	/*
494 	 * The '+ 2' is for the null pointers at the end of each of the
495 	 * arg and env vector sets
496 	 */
497 		vectp = (char **)
498 			(destp - (imgp->argc + imgp->envc + 2) * sizeof(char*));
499 
500 	/*
501 	 * vectp also becomes our initial stack base
502 	 */
503 	stack_base = (int *)vectp;
504 
505 	stringp = imgp->stringbase;
506 	argc = imgp->argc;
507 	envc = imgp->envc;
508 
509 	/*
510 	 * Copy out strings - arguments and environment.
511 	 */
512 	copyout(stringp, destp, ARG_MAX - imgp->stringspace);
513 
514 	/*
515 	 * Fill in "ps_strings" struct for ps, w, etc.
516 	 */
517 	suword(&arginfo->ps_argvstr, (int)vectp);
518 	suword(&arginfo->ps_nargvstr, argc);
519 
520 	/*
521 	 * Fill in argument portion of vector table.
522 	 */
523 	for (; argc > 0; --argc) {
524 		suword(vectp++, (int)destp);
525 		while (*stringp++ != 0)
526 			destp++;
527 		destp++;
528 	}
529 
530 	/* a null vector table pointer seperates the argp's from the envp's */
531 	suword(vectp++, 0);
532 
533 	suword(&arginfo->ps_envstr, (int)vectp);
534 	suword(&arginfo->ps_nenvstr, envc);
535 
536 	/*
537 	 * Fill in environment portion of vector table.
538 	 */
539 	for (; envc > 0; --envc) {
540 		suword(vectp++, (int)destp);
541 		while (*stringp++ != 0)
542 			destp++;
543 		destp++;
544 	}
545 
546 	/* end of vector table is a null pointer */
547 	suword(vectp, 0);
548 
549 	return (stack_base);
550 }
551 
552 /*
553  * Check permissions of file to execute.
554  *	Return 0 for success or error code on failure.
555  */
556 static int
557 exec_check_permissions(imgp)
558 	struct image_params *imgp;
559 {
560 	struct proc *p = imgp->proc;
561 	struct vnode *vp = imgp->vp;
562 	struct vattr *attr = imgp->attr;
563 	int error;
564 
565 	/*
566 	 * Check number of open-for-writes on the file and deny execution
567 	 *	if there are any.
568 	 */
569 	if (vp->v_writecount) {
570 		return (ETXTBSY);
571 	}
572 
573 	/* Get file attributes */
574 	error = VOP_GETATTR(vp, attr, p->p_ucred, p);
575 	if (error)
576 		return (error);
577 
578 	/*
579 	 * 1) Check if file execution is disabled for the filesystem that this
580 	 *	file resides on.
581 	 * 2) Insure that at least one execute bit is on - otherwise root
582 	 *	will always succeed, and we don't want to happen unless the
583 	 *	file really is executable.
584 	 * 3) Insure that the file is a regular file.
585 	 */
586 	if ((vp->v_mount->mnt_flag & MNT_NOEXEC) ||
587 	    ((attr->va_mode & 0111) == 0) ||
588 	    (attr->va_type != VREG)) {
589 		return (EACCES);
590 	}
591 
592 	/*
593 	 * Zero length files can't be exec'd
594 	 */
595 	if (attr->va_size == 0)
596 		return (ENOEXEC);
597 
598 	/*
599 	 * Disable setuid/setgid if the filesystem prohibits it or if
600 	 *	the process is being traced.
601 	 */
602         if ((vp->v_mount->mnt_flag & MNT_NOSUID) || (p->p_flag & P_TRACED))
603 		attr->va_mode &= ~(VSUID | VSGID);
604 
605 	/*
606 	 *  Check for execute permission to file based on current credentials.
607 	 *	Then call filesystem specific open routine (which does nothing
608 	 *	in the general case).
609 	 */
610 	error = VOP_ACCESS(vp, VEXEC, p->p_ucred, p);
611 	if (error)
612 		return (error);
613 
614 	error = VOP_OPEN(vp, FREAD, p->p_ucred, p);
615 	if (error)
616 		return (error);
617 
618 	return (0);
619 }
620