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