]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_exec.c
MFC r323768:
[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/mman.h>
54 #include <sys/priv.h>
55 #include <sys/proc.h>
56 #include <sys/pioctl.h>
57 #include <sys/ptrace.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/smp.h>
68 #include <sys/sysctl.h>
69 #include <sys/vnode.h>
70 #include <sys/stat.h>
71 #ifdef KTRACE
72 #include <sys/ktrace.h>
73 #endif
74
75 #include <vm/vm.h>
76 #include <vm/vm_param.h>
77 #include <vm/pmap.h>
78 #include <vm/vm_page.h>
79 #include <vm/vm_map.h>
80 #include <vm/vm_kern.h>
81 #include <vm/vm_extern.h>
82 #include <vm/vm_object.h>
83 #include <vm/vm_pager.h>
84
85 #ifdef  HWPMC_HOOKS
86 #include <sys/pmckern.h>
87 #endif
88
89 #include <machine/reg.h>
90
91 #include <security/audit/audit.h>
92 #include <security/mac/mac_framework.h>
93
94 #ifdef KDTRACE_HOOKS
95 #include <sys/dtrace_bsd.h>
96 dtrace_execexit_func_t  dtrace_fasttrap_exec;
97 #endif
98
99 SDT_PROVIDER_DECLARE(proc);
100 SDT_PROBE_DEFINE1(proc, , , exec, "char *");
101 SDT_PROBE_DEFINE1(proc, , , exec__failure, "int");
102 SDT_PROBE_DEFINE1(proc, , , exec__success, "char *");
103
104 MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments");
105
106 int coredump_pack_fileinfo = 1;
107 SYSCTL_INT(_kern, OID_AUTO, coredump_pack_fileinfo, CTLFLAG_RWTUN,
108     &coredump_pack_fileinfo, 0,
109     "Enable file path packing in 'procstat -f' coredump notes");
110
111 int coredump_pack_vmmapinfo = 1;
112 SYSCTL_INT(_kern, OID_AUTO, coredump_pack_vmmapinfo, CTLFLAG_RWTUN,
113     &coredump_pack_vmmapinfo, 0,
114     "Enable file path packing in 'procstat -v' coredump notes");
115
116 static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS);
117 static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS);
118 static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS);
119 static int do_execve(struct thread *td, struct image_args *args,
120     struct mac *mac_p);
121
122 /* XXX This should be vm_size_t. */
123 SYSCTL_PROC(_kern, KERN_PS_STRINGS, ps_strings, CTLTYPE_ULONG|CTLFLAG_RD|
124     CTLFLAG_MPSAFE, NULL, 0, sysctl_kern_ps_strings, "LU", "");
125
126 /* XXX This should be vm_size_t. */
127 SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, CTLTYPE_ULONG|CTLFLAG_RD|
128     CTLFLAG_CAPRD|CTLFLAG_MPSAFE, NULL, 0, sysctl_kern_usrstack, "LU", "");
129
130 SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD|CTLFLAG_MPSAFE,
131     NULL, 0, sysctl_kern_stackprot, "I", "");
132
133 u_long ps_arg_cache_limit = PAGE_SIZE / 16;
134 SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW, 
135     &ps_arg_cache_limit, 0, "");
136
137 static int disallow_high_osrel;
138 SYSCTL_INT(_kern, OID_AUTO, disallow_high_osrel, CTLFLAG_RW,
139     &disallow_high_osrel, 0,
140     "Disallow execution of binaries built for higher version of the world");
141
142 static int map_at_zero = 0;
143 SYSCTL_INT(_security_bsd, OID_AUTO, map_at_zero, CTLFLAG_RWTUN, &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         /* ABI enforces the use of Capsicum. Switch into capabilities mode. */
674         if (SV_PROC_FLAG(p, SV_CAPSICUM))
675                 sys_cap_enter(td, NULL);
676
677         /*
678          * Copy out strings (args and env) and initialize stack base
679          */
680         if (p->p_sysent->sv_copyout_strings)
681                 stack_base = (*p->p_sysent->sv_copyout_strings)(imgp);
682         else
683                 stack_base = exec_copyout_strings(imgp);
684
685         /*
686          * If custom stack fixup routine present for this process
687          * let it do the stack setup.
688          * Else stuff argument count as first item on stack
689          */
690         if (p->p_sysent->sv_fixup != NULL)
691                 (*p->p_sysent->sv_fixup)(&stack_base, imgp);
692         else
693                 suword(--stack_base, imgp->args->argc);
694
695         if (args->fdp != NULL) {
696                 /* Install a brand new file descriptor table. */
697                 fdinstall_remapped(td, args->fdp);
698                 args->fdp = NULL;
699         } else {
700                 /*
701                  * Keep on using the existing file descriptor table. For
702                  * security and other reasons, the file descriptor table
703                  * cannot be shared after an exec.
704                  */
705                 fdunshare(td);
706                 /* close files on exec */
707                 fdcloseexec(td);
708         }
709
710         /*
711          * Malloc things before we need locks.
712          */
713         i = imgp->args->begin_envv - imgp->args->begin_argv;
714         /* Cache arguments if they fit inside our allowance */
715         if (ps_arg_cache_limit >= i + sizeof(struct pargs)) {
716                 newargs = pargs_alloc(i);
717                 bcopy(imgp->args->begin_argv, newargs->ar_args, i);
718         }
719
720         /*
721          * For security and other reasons, signal handlers cannot
722          * be shared after an exec. The new process gets a copy of the old
723          * handlers. In execsigs(), the new process will have its signals
724          * reset.
725          */
726         if (sigacts_shared(p->p_sigacts)) {
727                 oldsigacts = p->p_sigacts;
728                 newsigacts = sigacts_alloc();
729                 sigacts_copy(newsigacts, oldsigacts);
730         }
731
732         vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
733
734         PROC_LOCK(p);
735         if (oldsigacts)
736                 p->p_sigacts = newsigacts;
737         /* Stop profiling */
738         stopprofclock(p);
739
740         /* reset caught signals */
741         execsigs(p);
742
743         /* name this process - nameiexec(p, ndp) */
744         bzero(p->p_comm, sizeof(p->p_comm));
745         if (args->fname)
746                 bcopy(nd.ni_cnd.cn_nameptr, p->p_comm,
747                     min(nd.ni_cnd.cn_namelen, MAXCOMLEN));
748         else if (vn_commname(newtextvp, p->p_comm, sizeof(p->p_comm)) != 0)
749                 bcopy(fexecv_proc_title, p->p_comm, sizeof(fexecv_proc_title));
750         bcopy(p->p_comm, td->td_name, sizeof(td->td_name));
751 #ifdef KTR
752         sched_clear_tdname(td);
753 #endif
754
755         /*
756          * mark as execed, wakeup the process that vforked (if any) and tell
757          * it that it now has its own resources back
758          */
759         p->p_flag |= P_EXEC;
760         if ((p->p_flag2 & P2_NOTRACE_EXEC) == 0)
761                 p->p_flag2 &= ~P2_NOTRACE;
762         if (p->p_flag & P_PPWAIT) {
763                 p->p_flag &= ~(P_PPWAIT | P_PPTRACE);
764                 cv_broadcast(&p->p_pwait);
765                 /* STOPs are no longer ignored, arrange for AST */
766                 signotify(td);
767         }
768
769         /*
770          * Implement image setuid/setgid installation.
771          */
772         if (imgp->credential_setid) {
773                 /*
774                  * Turn off syscall tracing for set-id programs, except for
775                  * root.  Record any set-id flags first to make sure that
776                  * we do not regain any tracing during a possible block.
777                  */
778                 setsugid(p);
779
780 #ifdef KTRACE
781                 if (p->p_tracecred != NULL &&
782                     priv_check_cred(p->p_tracecred, PRIV_DEBUG_DIFFCRED, 0))
783                         ktrprocexec(p, &tracecred, &tracevp);
784 #endif
785                 /*
786                  * Close any file descriptors 0..2 that reference procfs,
787                  * then make sure file descriptors 0..2 are in use.
788                  *
789                  * Both fdsetugidsafety() and fdcheckstd() may call functions
790                  * taking sleepable locks, so temporarily drop our locks.
791                  */
792                 PROC_UNLOCK(p);
793                 VOP_UNLOCK(imgp->vp, 0);
794                 fdsetugidsafety(td);
795                 error = fdcheckstd(td);
796                 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
797                 if (error != 0)
798                         goto exec_fail_dealloc;
799                 PROC_LOCK(p);
800 #ifdef MAC
801                 if (will_transition) {
802                         mac_vnode_execve_transition(oldcred, imgp->newcred,
803                             imgp->vp, interpvplabel, imgp);
804                 }
805 #endif
806         } else {
807                 if (oldcred->cr_uid == oldcred->cr_ruid &&
808                     oldcred->cr_gid == oldcred->cr_rgid)
809                         p->p_flag &= ~P_SUGID;
810         }
811         /*
812          * Set the new credentials.
813          */
814         if (imgp->newcred != NULL) {
815                 proc_set_cred(p, imgp->newcred);
816                 crfree(oldcred);
817                 oldcred = NULL;
818         }
819
820         /*
821          * Store the vp for use in procfs.  This vnode was referenced by namei
822          * or fgetvp_exec.
823          */
824         oldtextvp = p->p_textvp;
825         p->p_textvp = newtextvp;
826
827 #ifdef KDTRACE_HOOKS
828         /*
829          * Tell the DTrace fasttrap provider about the exec if it
830          * has declared an interest.
831          */
832         if (dtrace_fasttrap_exec)
833                 dtrace_fasttrap_exec(p);
834 #endif
835
836         /*
837          * Notify others that we exec'd, and clear the P_INEXEC flag
838          * as we're now a bona fide freshly-execed process.
839          */
840         KNOTE_LOCKED(p->p_klist, NOTE_EXEC);
841         p->p_flag &= ~P_INEXEC;
842
843         /* clear "fork but no exec" flag, as we _are_ execing */
844         p->p_acflag &= ~AFORK;
845
846         /*
847          * Free any previous argument cache and replace it with
848          * the new argument cache, if any.
849          */
850         oldargs = p->p_args;
851         p->p_args = newargs;
852         newargs = NULL;
853
854 #ifdef  HWPMC_HOOKS
855         /*
856          * Check if system-wide sampling is in effect or if the
857          * current process is using PMCs.  If so, do exec() time
858          * processing.  This processing needs to happen AFTER the
859          * P_INEXEC flag is cleared.
860          *
861          * The proc lock needs to be released before taking the PMC
862          * SX.
863          */
864         if (PMC_SYSTEM_SAMPLING_ACTIVE() || PMC_PROC_IS_USING_PMCS(p)) {
865                 PROC_UNLOCK(p);
866                 VOP_UNLOCK(imgp->vp, 0);
867                 pe.pm_credentialschanged = credential_changing;
868                 pe.pm_entryaddr = imgp->entry_addr;
869
870                 PMC_CALL_HOOK_X(td, PMC_FN_PROCESS_EXEC, (void *) &pe);
871                 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
872         } else
873                 PROC_UNLOCK(p);
874 #else  /* !HWPMC_HOOKS */
875         PROC_UNLOCK(p);
876 #endif
877
878         /* Set values passed into the program in registers. */
879         if (p->p_sysent->sv_setregs)
880                 (*p->p_sysent->sv_setregs)(td, imgp, 
881                     (u_long)(uintptr_t)stack_base);
882         else
883                 exec_setregs(td, imgp, (u_long)(uintptr_t)stack_base);
884
885         vfs_mark_atime(imgp->vp, td->td_ucred);
886
887         SDT_PROBE1(proc, , , exec__success, args->fname);
888
889 exec_fail_dealloc:
890         if (imgp->firstpage != NULL)
891                 exec_unmap_first_page(imgp);
892
893         if (imgp->vp != NULL) {
894                 if (args->fname)
895                         NDFREE(&nd, NDF_ONLY_PNBUF);
896                 if (imgp->opened)
897                         VOP_CLOSE(imgp->vp, FREAD, td->td_ucred, td);
898                 if (error != 0)
899                         vput(imgp->vp);
900                 else
901                         VOP_UNLOCK(imgp->vp, 0);
902         }
903
904         if (imgp->object != NULL)
905                 vm_object_deallocate(imgp->object);
906
907         free(imgp->freepath, M_TEMP);
908
909         if (error == 0) {
910                 PROC_LOCK(p);
911                 if (p->p_ptevents & PTRACE_EXEC)
912                         td->td_dbgflags |= TDB_EXEC;
913                 PROC_UNLOCK(p);
914
915                 /*
916                  * Stop the process here if its stop event mask has
917                  * the S_EXEC bit set.
918                  */
919                 STOPEVENT(p, S_EXEC, 0);
920         } else {
921 exec_fail:
922                 /* we're done here, clear P_INEXEC */
923                 PROC_LOCK(p);
924                 p->p_flag &= ~P_INEXEC;
925                 PROC_UNLOCK(p);
926
927                 SDT_PROBE1(proc, , , exec__failure, error);
928         }
929
930         if (imgp->newcred != NULL && oldcred != NULL)
931                 crfree(imgp->newcred);
932
933 #ifdef MAC
934         mac_execve_exit(imgp);
935         mac_execve_interpreter_exit(interpvplabel);
936 #endif
937         exec_free_args(args);
938
939         /*
940          * Handle deferred decrement of ref counts.
941          */
942         if (oldtextvp != NULL)
943                 vrele(oldtextvp);
944 #ifdef KTRACE
945         if (tracevp != NULL)
946                 vrele(tracevp);
947         if (tracecred != NULL)
948                 crfree(tracecred);
949 #endif
950         pargs_drop(oldargs);
951         pargs_drop(newargs);
952         if (oldsigacts != NULL)
953                 sigacts_free(oldsigacts);
954         if (euip != NULL)
955                 uifree(euip);
956
957         if (error && imgp->vmspace_destroyed) {
958                 /* sorry, no more process anymore. exit gracefully */
959                 exit1(td, 0, SIGABRT);
960                 /* NOT REACHED */
961         }
962
963 #ifdef KTRACE
964         if (error == 0)
965                 ktrprocctor(p);
966 #endif
967
968         return (error);
969 }
970
971 int
972 exec_map_first_page(imgp)
973         struct image_params *imgp;
974 {
975         int rv, i, after, initial_pagein;
976         vm_page_t ma[VM_INITIAL_PAGEIN];
977         vm_object_t object;
978
979         if (imgp->firstpage != NULL)
980                 exec_unmap_first_page(imgp);
981
982         object = imgp->vp->v_object;
983         if (object == NULL)
984                 return (EACCES);
985         VM_OBJECT_WLOCK(object);
986 #if VM_NRESERVLEVEL > 0
987         vm_object_color(object, 0);
988 #endif
989         ma[0] = vm_page_grab(object, 0, VM_ALLOC_NORMAL | VM_ALLOC_NOBUSY);
990         if (ma[0]->valid != VM_PAGE_BITS_ALL) {
991                 vm_page_xbusy(ma[0]);
992                 if (!vm_pager_has_page(object, 0, NULL, &after)) {
993                         vm_page_lock(ma[0]);
994                         vm_page_free(ma[0]);
995                         vm_page_unlock(ma[0]);
996                         VM_OBJECT_WUNLOCK(object);
997                         return (EIO);
998                 }
999                 initial_pagein = min(after, VM_INITIAL_PAGEIN);
1000                 KASSERT(initial_pagein <= object->size,
1001                     ("%s: initial_pagein %d object->size %ju",
1002                     __func__, initial_pagein, (uintmax_t )object->size));
1003                 for (i = 1; i < initial_pagein; i++) {
1004                         if ((ma[i] = vm_page_next(ma[i - 1])) != NULL) {
1005                                 if (ma[i]->valid)
1006                                         break;
1007                                 if (vm_page_tryxbusy(ma[i]))
1008                                         break;
1009                         } else {
1010                                 ma[i] = vm_page_alloc(object, i,
1011                                     VM_ALLOC_NORMAL);
1012                                 if (ma[i] == NULL)
1013                                         break;
1014                         }
1015                 }
1016                 initial_pagein = i;
1017                 rv = vm_pager_get_pages(object, ma, initial_pagein, NULL, NULL);
1018                 if (rv != VM_PAGER_OK) {
1019                         for (i = 0; i < initial_pagein; i++) {
1020                                 vm_page_lock(ma[i]);
1021                                 vm_page_free(ma[i]);
1022                                 vm_page_unlock(ma[i]);
1023                         }
1024                         VM_OBJECT_WUNLOCK(object);
1025                         return (EIO);
1026                 }
1027                 vm_page_xunbusy(ma[0]);
1028                 for (i = 1; i < initial_pagein; i++)
1029                         vm_page_readahead_finish(ma[i]);
1030         }
1031         vm_page_lock(ma[0]);
1032         vm_page_hold(ma[0]);
1033         vm_page_activate(ma[0]);
1034         vm_page_unlock(ma[0]);
1035         VM_OBJECT_WUNLOCK(object);
1036
1037         imgp->firstpage = sf_buf_alloc(ma[0], 0);
1038         imgp->image_header = (char *)sf_buf_kva(imgp->firstpage);
1039
1040         return (0);
1041 }
1042
1043 void
1044 exec_unmap_first_page(imgp)
1045         struct image_params *imgp;
1046 {
1047         vm_page_t m;
1048
1049         if (imgp->firstpage != NULL) {
1050                 m = sf_buf_page(imgp->firstpage);
1051                 sf_buf_free(imgp->firstpage);
1052                 imgp->firstpage = NULL;
1053                 vm_page_lock(m);
1054                 vm_page_unhold(m);
1055                 vm_page_unlock(m);
1056         }
1057 }
1058
1059 /*
1060  * Destroy old address space, and allocate a new stack.
1061  *      The new stack is only sgrowsiz large because it is grown
1062  *      automatically on a page fault.
1063  */
1064 int
1065 exec_new_vmspace(imgp, sv)
1066         struct image_params *imgp;
1067         struct sysentvec *sv;
1068 {
1069         int error;
1070         struct proc *p = imgp->proc;
1071         struct vmspace *vmspace = p->p_vmspace;
1072         vm_object_t obj;
1073         struct rlimit rlim_stack;
1074         vm_offset_t sv_minuser, stack_addr;
1075         vm_map_t map;
1076         u_long ssiz;
1077
1078         imgp->vmspace_destroyed = 1;
1079         imgp->sysent = sv;
1080
1081         /* May be called with Giant held */
1082         EVENTHANDLER_INVOKE(process_exec, p, imgp);
1083
1084         /*
1085          * Blow away entire process VM, if address space not shared,
1086          * otherwise, create a new VM space so that other threads are
1087          * not disrupted
1088          */
1089         map = &vmspace->vm_map;
1090         if (map_at_zero)
1091                 sv_minuser = sv->sv_minuser;
1092         else
1093                 sv_minuser = MAX(sv->sv_minuser, PAGE_SIZE);
1094         if (vmspace->vm_refcnt == 1 && vm_map_min(map) == sv_minuser &&
1095             vm_map_max(map) == sv->sv_maxuser) {
1096                 shmexit(vmspace);
1097                 pmap_remove_pages(vmspace_pmap(vmspace));
1098                 vm_map_remove(map, vm_map_min(map), vm_map_max(map));
1099                 /* An exec terminates mlockall(MCL_FUTURE). */
1100                 vm_map_lock(map);
1101                 vm_map_modflags(map, 0, MAP_WIREFUTURE);
1102                 vm_map_unlock(map);
1103         } else {
1104                 error = vmspace_exec(p, sv_minuser, sv->sv_maxuser);
1105                 if (error)
1106                         return (error);
1107                 vmspace = p->p_vmspace;
1108                 map = &vmspace->vm_map;
1109         }
1110
1111         /* Map a shared page */
1112         obj = sv->sv_shared_page_obj;
1113         if (obj != NULL) {
1114                 vm_object_reference(obj);
1115                 error = vm_map_fixed(map, obj, 0,
1116                     sv->sv_shared_page_base, sv->sv_shared_page_len,
1117                     VM_PROT_READ | VM_PROT_EXECUTE,
1118                     VM_PROT_READ | VM_PROT_EXECUTE,
1119                     MAP_INHERIT_SHARE | MAP_ACC_NO_CHARGE);
1120                 if (error != KERN_SUCCESS) {
1121                         vm_object_deallocate(obj);
1122                         return (vm_mmap_to_errno(error));
1123                 }
1124         }
1125
1126         /* Allocate a new stack */
1127         if (imgp->stack_sz != 0) {
1128                 ssiz = trunc_page(imgp->stack_sz);
1129                 PROC_LOCK(p);
1130                 lim_rlimit_proc(p, RLIMIT_STACK, &rlim_stack);
1131                 PROC_UNLOCK(p);
1132                 if (ssiz > rlim_stack.rlim_max)
1133                         ssiz = rlim_stack.rlim_max;
1134                 if (ssiz > rlim_stack.rlim_cur) {
1135                         rlim_stack.rlim_cur = ssiz;
1136                         kern_setrlimit(curthread, RLIMIT_STACK, &rlim_stack);
1137                 }
1138         } else if (sv->sv_maxssiz != NULL) {
1139                 ssiz = *sv->sv_maxssiz;
1140         } else {
1141                 ssiz = maxssiz;
1142         }
1143         stack_addr = sv->sv_usrstack - ssiz;
1144         error = vm_map_stack(map, stack_addr, (vm_size_t)ssiz,
1145             obj != NULL && imgp->stack_prot != 0 ? imgp->stack_prot :
1146             sv->sv_stackprot, VM_PROT_ALL, MAP_STACK_GROWS_DOWN);
1147         if (error != KERN_SUCCESS)
1148                 return (vm_mmap_to_errno(error));
1149
1150         /*
1151          * vm_ssize and vm_maxsaddr are somewhat antiquated concepts, but they
1152          * are still used to enforce the stack rlimit on the process stack.
1153          */
1154         vmspace->vm_ssize = sgrowsiz >> PAGE_SHIFT;
1155         vmspace->vm_maxsaddr = (char *)stack_addr;
1156
1157         return (0);
1158 }
1159
1160 /*
1161  * Copy out argument and environment strings from the old process address
1162  * space into the temporary string buffer.
1163  */
1164 int
1165 exec_copyin_args(struct image_args *args, char *fname,
1166     enum uio_seg segflg, char **argv, char **envv)
1167 {
1168         u_long argp, envp;
1169         int error;
1170         size_t length;
1171
1172         bzero(args, sizeof(*args));
1173         if (argv == NULL)
1174                 return (EFAULT);
1175
1176         /*
1177          * Allocate demand-paged memory for the file name, argument, and
1178          * environment strings.
1179          */
1180         error = exec_alloc_args(args);
1181         if (error != 0)
1182                 return (error);
1183
1184         /*
1185          * Copy the file name.
1186          */
1187         if (fname != NULL) {
1188                 args->fname = args->buf;
1189                 error = (segflg == UIO_SYSSPACE) ?
1190                     copystr(fname, args->fname, PATH_MAX, &length) :
1191                     copyinstr(fname, args->fname, PATH_MAX, &length);
1192                 if (error != 0)
1193                         goto err_exit;
1194         } else
1195                 length = 0;
1196
1197         args->begin_argv = args->buf + length;
1198         args->endp = args->begin_argv;
1199         args->stringspace = ARG_MAX;
1200
1201         /*
1202          * extract arguments first
1203          */
1204         for (;;) {
1205                 error = fueword(argv++, &argp);
1206                 if (error == -1) {
1207                         error = EFAULT;
1208                         goto err_exit;
1209                 }
1210                 if (argp == 0)
1211                         break;
1212                 error = copyinstr((void *)(uintptr_t)argp, args->endp,
1213                     args->stringspace, &length);
1214                 if (error != 0) {
1215                         if (error == ENAMETOOLONG) 
1216                                 error = E2BIG;
1217                         goto err_exit;
1218                 }
1219                 args->stringspace -= length;
1220                 args->endp += length;
1221                 args->argc++;
1222         }
1223
1224         args->begin_envv = args->endp;
1225
1226         /*
1227          * extract environment strings
1228          */
1229         if (envv) {
1230                 for (;;) {
1231                         error = fueword(envv++, &envp);
1232                         if (error == -1) {
1233                                 error = EFAULT;
1234                                 goto err_exit;
1235                         }
1236                         if (envp == 0)
1237                                 break;
1238                         error = copyinstr((void *)(uintptr_t)envp,
1239                             args->endp, args->stringspace, &length);
1240                         if (error != 0) {
1241                                 if (error == ENAMETOOLONG)
1242                                         error = E2BIG;
1243                                 goto err_exit;
1244                         }
1245                         args->stringspace -= length;
1246                         args->endp += length;
1247                         args->envc++;
1248                 }
1249         }
1250
1251         return (0);
1252
1253 err_exit:
1254         exec_free_args(args);
1255         return (error);
1256 }
1257
1258 int
1259 exec_copyin_data_fds(struct thread *td, struct image_args *args,
1260     const void *data, size_t datalen, const int *fds, size_t fdslen)
1261 {
1262         struct filedesc *ofdp;
1263         const char *p;
1264         int *kfds;
1265         int error;
1266
1267         memset(args, '\0', sizeof(*args));
1268         ofdp = td->td_proc->p_fd;
1269         if (datalen >= ARG_MAX || fdslen > ofdp->fd_lastfile + 1)
1270                 return (E2BIG);
1271         error = exec_alloc_args(args);
1272         if (error != 0)
1273                 return (error);
1274
1275         args->begin_argv = args->buf;
1276         args->stringspace = ARG_MAX;
1277
1278         if (datalen > 0) {
1279                 /*
1280                  * Argument buffer has been provided. Copy it into the
1281                  * kernel as a single string and add a terminating null
1282                  * byte.
1283                  */
1284                 error = copyin(data, args->begin_argv, datalen);
1285                 if (error != 0)
1286                         goto err_exit;
1287                 args->begin_argv[datalen] = '\0';
1288                 args->endp = args->begin_argv + datalen + 1;
1289                 args->stringspace -= datalen + 1;
1290
1291                 /*
1292                  * Traditional argument counting. Count the number of
1293                  * null bytes.
1294                  */
1295                 for (p = args->begin_argv; p < args->endp; ++p)
1296                         if (*p == '\0')
1297                                 ++args->argc;
1298         } else {
1299                 /* No argument buffer provided. */
1300                 args->endp = args->begin_argv;
1301         }
1302         /* There are no environment variables. */
1303         args->begin_envv = args->endp;
1304
1305         /* Create new file descriptor table. */
1306         kfds = malloc(fdslen * sizeof(int), M_TEMP, M_WAITOK);
1307         error = copyin(fds, kfds, fdslen * sizeof(int));
1308         if (error != 0) {
1309                 free(kfds, M_TEMP);
1310                 goto err_exit;
1311         }
1312         error = fdcopy_remapped(ofdp, kfds, fdslen, &args->fdp);
1313         free(kfds, M_TEMP);
1314         if (error != 0)
1315                 goto err_exit;
1316
1317         return (0);
1318 err_exit:
1319         exec_free_args(args);
1320         return (error);
1321 }
1322
1323 struct exec_args_kva {
1324         vm_offset_t addr;
1325         u_int gen;
1326         SLIST_ENTRY(exec_args_kva) next;
1327 };
1328
1329 static DPCPU_DEFINE(struct exec_args_kva *, exec_args_kva);
1330
1331 static SLIST_HEAD(, exec_args_kva) exec_args_kva_freelist;
1332 static struct mtx exec_args_kva_mtx;
1333 static u_int exec_args_gen;
1334
1335 static void
1336 exec_prealloc_args_kva(void *arg __unused)
1337 {
1338         struct exec_args_kva *argkva;
1339         u_int i;
1340
1341         SLIST_INIT(&exec_args_kva_freelist);
1342         mtx_init(&exec_args_kva_mtx, "exec args kva", NULL, MTX_DEF);
1343         for (i = 0; i < exec_map_entries; i++) {
1344                 argkva = malloc(sizeof(*argkva), M_PARGS, M_WAITOK);
1345                 argkva->addr = kmap_alloc_wait(exec_map, exec_map_entry_size);
1346                 argkva->gen = exec_args_gen;
1347                 SLIST_INSERT_HEAD(&exec_args_kva_freelist, argkva, next);
1348         }
1349 }
1350 SYSINIT(exec_args_kva, SI_SUB_EXEC, SI_ORDER_ANY, exec_prealloc_args_kva, NULL);
1351
1352 static vm_offset_t
1353 exec_alloc_args_kva(void **cookie)
1354 {
1355         struct exec_args_kva *argkva;
1356
1357         argkva = (void *)atomic_readandclear_ptr(
1358             (uintptr_t *)DPCPU_PTR(exec_args_kva));
1359         if (argkva == NULL) {
1360                 mtx_lock(&exec_args_kva_mtx);
1361                 while ((argkva = SLIST_FIRST(&exec_args_kva_freelist)) == NULL)
1362                         (void)mtx_sleep(&exec_args_kva_freelist,
1363                             &exec_args_kva_mtx, 0, "execkva", 0);
1364                 SLIST_REMOVE_HEAD(&exec_args_kva_freelist, next);
1365                 mtx_unlock(&exec_args_kva_mtx);
1366         }
1367         *(struct exec_args_kva **)cookie = argkva;
1368         return (argkva->addr);
1369 }
1370
1371 static void
1372 exec_release_args_kva(struct exec_args_kva *argkva, u_int gen)
1373 {
1374         vm_offset_t base;
1375
1376         base = argkva->addr;
1377         if (argkva->gen != gen) {
1378                 vm_map_madvise(exec_map, base, base + exec_map_entry_size,
1379                     MADV_FREE);
1380                 argkva->gen = gen;
1381         }
1382         if (!atomic_cmpset_ptr((uintptr_t *)DPCPU_PTR(exec_args_kva),
1383             (uintptr_t)NULL, (uintptr_t)argkva)) {
1384                 mtx_lock(&exec_args_kva_mtx);
1385                 SLIST_INSERT_HEAD(&exec_args_kva_freelist, argkva, next);
1386                 wakeup_one(&exec_args_kva_freelist);
1387                 mtx_unlock(&exec_args_kva_mtx);
1388         }
1389 }
1390
1391 static void
1392 exec_free_args_kva(void *cookie)
1393 {
1394
1395         exec_release_args_kva(cookie, exec_args_gen);
1396 }
1397
1398 static void
1399 exec_args_kva_lowmem(void *arg __unused)
1400 {
1401         SLIST_HEAD(, exec_args_kva) head;
1402         struct exec_args_kva *argkva;
1403         u_int gen;
1404         int i;
1405
1406         gen = atomic_fetchadd_int(&exec_args_gen, 1) + 1;
1407
1408         /*
1409          * Force an madvise of each KVA range. Any currently allocated ranges
1410          * will have MADV_FREE applied once they are freed.
1411          */
1412         SLIST_INIT(&head);
1413         mtx_lock(&exec_args_kva_mtx);
1414         SLIST_SWAP(&head, &exec_args_kva_freelist, exec_args_kva);
1415         mtx_unlock(&exec_args_kva_mtx);
1416         while ((argkva = SLIST_FIRST(&head)) != NULL) {
1417                 SLIST_REMOVE_HEAD(&head, next);
1418                 exec_release_args_kva(argkva, gen);
1419         }
1420
1421         CPU_FOREACH(i) {
1422                 argkva = (void *)atomic_readandclear_ptr(
1423                     (uintptr_t *)DPCPU_ID_PTR(i, exec_args_kva));
1424                 if (argkva != NULL)
1425                         exec_release_args_kva(argkva, gen);
1426         }
1427 }
1428 EVENTHANDLER_DEFINE(vm_lowmem, exec_args_kva_lowmem, NULL,
1429     EVENTHANDLER_PRI_ANY);
1430
1431 /*
1432  * Allocate temporary demand-paged, zero-filled memory for the file name,
1433  * argument, and environment strings.
1434  */
1435 int
1436 exec_alloc_args(struct image_args *args)
1437 {
1438
1439         args->buf = (char *)exec_alloc_args_kva(&args->bufkva);
1440         return (0);
1441 }
1442
1443 void
1444 exec_free_args(struct image_args *args)
1445 {
1446
1447         if (args->buf != NULL) {
1448                 exec_free_args_kva(args->bufkva);
1449                 args->buf = NULL;
1450         }
1451         if (args->fname_buf != NULL) {
1452                 free(args->fname_buf, M_TEMP);
1453                 args->fname_buf = NULL;
1454         }
1455         if (args->fdp != NULL)
1456                 fdescfree_remapped(args->fdp);
1457 }
1458
1459 /*
1460  * Copy strings out to the new process address space, constructing new arg
1461  * and env vector tables. Return a pointer to the base so that it can be used
1462  * as the initial stack pointer.
1463  */
1464 register_t *
1465 exec_copyout_strings(imgp)
1466         struct image_params *imgp;
1467 {
1468         int argc, envc;
1469         char **vectp;
1470         char *stringp;
1471         uintptr_t destp;
1472         register_t *stack_base;
1473         struct ps_strings *arginfo;
1474         struct proc *p;
1475         size_t execpath_len;
1476         int szsigcode, szps;
1477         char canary[sizeof(long) * 8];
1478
1479         szps = sizeof(pagesizes[0]) * MAXPAGESIZES;
1480         /*
1481          * Calculate string base and vector table pointers.
1482          * Also deal with signal trampoline code for this exec type.
1483          */
1484         if (imgp->execpath != NULL && imgp->auxargs != NULL)
1485                 execpath_len = strlen(imgp->execpath) + 1;
1486         else
1487                 execpath_len = 0;
1488         p = imgp->proc;
1489         szsigcode = 0;
1490         arginfo = (struct ps_strings *)p->p_sysent->sv_psstrings;
1491         if (p->p_sysent->sv_sigcode_base == 0) {
1492                 if (p->p_sysent->sv_szsigcode != NULL)
1493                         szsigcode = *(p->p_sysent->sv_szsigcode);
1494         }
1495         destp = (uintptr_t)arginfo;
1496
1497         /*
1498          * install sigcode
1499          */
1500         if (szsigcode != 0) {
1501                 destp -= szsigcode;
1502                 destp = rounddown2(destp, sizeof(void *));
1503                 copyout(p->p_sysent->sv_sigcode, (void *)destp, szsigcode);
1504         }
1505
1506         /*
1507          * Copy the image path for the rtld.
1508          */
1509         if (execpath_len != 0) {
1510                 destp -= execpath_len;
1511                 imgp->execpathp = destp;
1512                 copyout(imgp->execpath, (void *)destp, execpath_len);
1513         }
1514
1515         /*
1516          * Prepare the canary for SSP.
1517          */
1518         arc4rand(canary, sizeof(canary), 0);
1519         destp -= sizeof(canary);
1520         imgp->canary = destp;
1521         copyout(canary, (void *)destp, sizeof(canary));
1522         imgp->canarylen = sizeof(canary);
1523
1524         /*
1525          * Prepare the pagesizes array.
1526          */
1527         destp -= szps;
1528         destp = rounddown2(destp, sizeof(void *));
1529         imgp->pagesizes = destp;
1530         copyout(pagesizes, (void *)destp, szps);
1531         imgp->pagesizeslen = szps;
1532
1533         destp -= ARG_MAX - imgp->args->stringspace;
1534         destp = rounddown2(destp, sizeof(void *));
1535
1536         /*
1537          * If we have a valid auxargs ptr, prepare some room
1538          * on the stack.
1539          */
1540         if (imgp->auxargs) {
1541                 /*
1542                  * 'AT_COUNT*2' is size for the ELF Auxargs data. This is for
1543                  * lower compatibility.
1544                  */
1545                 imgp->auxarg_size = (imgp->auxarg_size) ? imgp->auxarg_size :
1546                     (AT_COUNT * 2);
1547                 /*
1548                  * The '+ 2' is for the null pointers at the end of each of
1549                  * the arg and env vector sets,and imgp->auxarg_size is room
1550                  * for argument of Runtime loader.
1551                  */
1552                 vectp = (char **)(destp - (imgp->args->argc +
1553                     imgp->args->envc + 2 + imgp->auxarg_size)
1554                     * sizeof(char *));
1555         } else {
1556                 /*
1557                  * The '+ 2' is for the null pointers at the end of each of
1558                  * the arg and env vector sets
1559                  */
1560                 vectp = (char **)(destp - (imgp->args->argc + imgp->args->envc
1561                     + 2) * sizeof(char *));
1562         }
1563
1564         /*
1565          * vectp also becomes our initial stack base
1566          */
1567         stack_base = (register_t *)vectp;
1568
1569         stringp = imgp->args->begin_argv;
1570         argc = imgp->args->argc;
1571         envc = imgp->args->envc;
1572
1573         /*
1574          * Copy out strings - arguments and environment.
1575          */
1576         copyout(stringp, (void *)destp, ARG_MAX - imgp->args->stringspace);
1577
1578         /*
1579          * Fill in "ps_strings" struct for ps, w, etc.
1580          */
1581         suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp);
1582         suword32(&arginfo->ps_nargvstr, argc);
1583
1584         /*
1585          * Fill in argument portion of vector table.
1586          */
1587         for (; argc > 0; --argc) {
1588                 suword(vectp++, (long)(intptr_t)destp);
1589                 while (*stringp++ != 0)
1590                         destp++;
1591                 destp++;
1592         }
1593
1594         /* a null vector table pointer separates the argp's from the envp's */
1595         suword(vectp++, 0);
1596
1597         suword(&arginfo->ps_envstr, (long)(intptr_t)vectp);
1598         suword32(&arginfo->ps_nenvstr, envc);
1599
1600         /*
1601          * Fill in environment portion of vector table.
1602          */
1603         for (; envc > 0; --envc) {
1604                 suword(vectp++, (long)(intptr_t)destp);
1605                 while (*stringp++ != 0)
1606                         destp++;
1607                 destp++;
1608         }
1609
1610         /* end of vector table is a null pointer */
1611         suword(vectp, 0);
1612
1613         return (stack_base);
1614 }
1615
1616 /*
1617  * Check permissions of file to execute.
1618  *      Called with imgp->vp locked.
1619  *      Return 0 for success or error code on failure.
1620  */
1621 int
1622 exec_check_permissions(imgp)
1623         struct image_params *imgp;
1624 {
1625         struct vnode *vp = imgp->vp;
1626         struct vattr *attr = imgp->attr;
1627         struct thread *td;
1628         int error, writecount;
1629
1630         td = curthread;
1631
1632         /* Get file attributes */
1633         error = VOP_GETATTR(vp, attr, td->td_ucred);
1634         if (error)
1635                 return (error);
1636
1637 #ifdef MAC
1638         error = mac_vnode_check_exec(td->td_ucred, imgp->vp, imgp);
1639         if (error)
1640                 return (error);
1641 #endif
1642
1643         /*
1644          * 1) Check if file execution is disabled for the filesystem that
1645          *    this file resides on.
1646          * 2) Ensure that at least one execute bit is on. Otherwise, a
1647          *    privileged user will always succeed, and we don't want this
1648          *    to happen unless the file really is executable.
1649          * 3) Ensure that the file is a regular file.
1650          */
1651         if ((vp->v_mount->mnt_flag & MNT_NOEXEC) ||
1652             (attr->va_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0 ||
1653             (attr->va_type != VREG))
1654                 return (EACCES);
1655
1656         /*
1657          * Zero length files can't be exec'd
1658          */
1659         if (attr->va_size == 0)
1660                 return (ENOEXEC);
1661
1662         /*
1663          *  Check for execute permission to file based on current credentials.
1664          */
1665         error = VOP_ACCESS(vp, VEXEC, td->td_ucred, td);
1666         if (error)
1667                 return (error);
1668
1669         /*
1670          * Check number of open-for-writes on the file and deny execution
1671          * if there are any.
1672          */
1673         error = VOP_GET_WRITECOUNT(vp, &writecount);
1674         if (error != 0)
1675                 return (error);
1676         if (writecount != 0)
1677                 return (ETXTBSY);
1678
1679         /*
1680          * Call filesystem specific open routine (which does nothing in the
1681          * general case).
1682          */
1683         error = VOP_OPEN(vp, FREAD, td->td_ucred, td, NULL);
1684         if (error == 0)
1685                 imgp->opened = 1;
1686         return (error);
1687 }
1688
1689 /*
1690  * Exec handler registration
1691  */
1692 int
1693 exec_register(execsw_arg)
1694         const struct execsw *execsw_arg;
1695 {
1696         const struct execsw **es, **xs, **newexecsw;
1697         int count = 2;  /* New slot and trailing NULL */
1698
1699         if (execsw)
1700                 for (es = execsw; *es; es++)
1701                         count++;
1702         newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
1703         xs = newexecsw;
1704         if (execsw)
1705                 for (es = execsw; *es; es++)
1706                         *xs++ = *es;
1707         *xs++ = execsw_arg;
1708         *xs = NULL;
1709         if (execsw)
1710                 free(execsw, M_TEMP);
1711         execsw = newexecsw;
1712         return (0);
1713 }
1714
1715 int
1716 exec_unregister(execsw_arg)
1717         const struct execsw *execsw_arg;
1718 {
1719         const struct execsw **es, **xs, **newexecsw;
1720         int count = 1;
1721
1722         if (execsw == NULL)
1723                 panic("unregister with no handlers left?\n");
1724
1725         for (es = execsw; *es; es++) {
1726                 if (*es == execsw_arg)
1727                         break;
1728         }
1729         if (*es == NULL)
1730                 return (ENOENT);
1731         for (es = execsw; *es; es++)
1732                 if (*es != execsw_arg)
1733                         count++;
1734         newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
1735         xs = newexecsw;
1736         for (es = execsw; *es; es++)
1737                 if (*es != execsw_arg)
1738                         *xs++ = *es;
1739         *xs = NULL;
1740         if (execsw)
1741                 free(execsw, M_TEMP);
1742         execsw = newexecsw;
1743         return (0);
1744 }