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