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