]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_exec.c
Add a link to the Elf_Brandinfo into the struc proc.
[FreeBSD/FreeBSD.git] / sys / kern / kern_exec.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 1993, David Greenman
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include "opt_capsicum.h"
33 #include "opt_hwpmc_hooks.h"
34 #include "opt_ktrace.h"
35 #include "opt_vm.h"
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/acct.h>
40 #include <sys/asan.h>
41 #include <sys/capsicum.h>
42 #include <sys/compressor.h>
43 #include <sys/eventhandler.h>
44 #include <sys/exec.h>
45 #include <sys/fcntl.h>
46 #include <sys/filedesc.h>
47 #include <sys/imgact.h>
48 #include <sys/imgact_elf.h>
49 #include <sys/kernel.h>
50 #include <sys/lock.h>
51 #include <sys/malloc.h>
52 #include <sys/mman.h>
53 #include <sys/mount.h>
54 #include <sys/mutex.h>
55 #include <sys/namei.h>
56 #include <sys/priv.h>
57 #include <sys/proc.h>
58 #include <sys/ptrace.h>
59 #include <sys/reg.h>
60 #include <sys/resourcevar.h>
61 #include <sys/rwlock.h>
62 #include <sys/sched.h>
63 #include <sys/sdt.h>
64 #include <sys/sf_buf.h>
65 #include <sys/shm.h>
66 #include <sys/signalvar.h>
67 #include <sys/smp.h>
68 #include <sys/stat.h>
69 #include <sys/syscallsubr.h>
70 #include <sys/sysctl.h>
71 #include <sys/sysent.h>
72 #include <sys/sysproto.h>
73 #include <sys/timers.h>
74 #include <sys/umtx.h>
75 #include <sys/vnode.h>
76 #include <sys/wait.h>
77 #ifdef KTRACE
78 #include <sys/ktrace.h>
79 #endif
80
81 #include <vm/vm.h>
82 #include <vm/vm_param.h>
83 #include <vm/pmap.h>
84 #include <vm/vm_page.h>
85 #include <vm/vm_map.h>
86 #include <vm/vm_kern.h>
87 #include <vm/vm_extern.h>
88 #include <vm/vm_object.h>
89 #include <vm/vm_pager.h>
90
91 #ifdef  HWPMC_HOOKS
92 #include <sys/pmckern.h>
93 #endif
94
95 #include <security/audit/audit.h>
96 #include <security/mac/mac_framework.h>
97
98 #ifdef KDTRACE_HOOKS
99 #include <sys/dtrace_bsd.h>
100 dtrace_execexit_func_t  dtrace_fasttrap_exec;
101 #endif
102
103 SDT_PROVIDER_DECLARE(proc);
104 SDT_PROBE_DEFINE1(proc, , , exec, "char *");
105 SDT_PROBE_DEFINE1(proc, , , exec__failure, "int");
106 SDT_PROBE_DEFINE1(proc, , , exec__success, "char *");
107
108 MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments");
109
110 int coredump_pack_fileinfo = 1;
111 SYSCTL_INT(_kern, OID_AUTO, coredump_pack_fileinfo, CTLFLAG_RWTUN,
112     &coredump_pack_fileinfo, 0,
113     "Enable file path packing in 'procstat -f' coredump notes");
114
115 int coredump_pack_vmmapinfo = 1;
116 SYSCTL_INT(_kern, OID_AUTO, coredump_pack_vmmapinfo, CTLFLAG_RWTUN,
117     &coredump_pack_vmmapinfo, 0,
118     "Enable file path packing in 'procstat -v' coredump notes");
119
120 static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS);
121 static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS);
122 static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS);
123 static int do_execve(struct thread *td, struct image_args *args,
124     struct mac *mac_p, struct vmspace *oldvmspace);
125
126 /* XXX This should be vm_size_t. */
127 SYSCTL_PROC(_kern, KERN_PS_STRINGS, ps_strings, CTLTYPE_ULONG|CTLFLAG_RD|
128     CTLFLAG_CAPRD|CTLFLAG_MPSAFE, NULL, 0, sysctl_kern_ps_strings, "LU",
129     "Location of process' ps_strings structure");
130
131 /* XXX This should be vm_size_t. */
132 SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, CTLTYPE_ULONG|CTLFLAG_RD|
133     CTLFLAG_CAPRD|CTLFLAG_MPSAFE, NULL, 0, sysctl_kern_usrstack, "LU",
134     "Top of process stack");
135
136 SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD|CTLFLAG_MPSAFE,
137     NULL, 0, sysctl_kern_stackprot, "I",
138     "Stack memory permissions");
139
140 u_long ps_arg_cache_limit = PAGE_SIZE / 16;
141 SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW, 
142     &ps_arg_cache_limit, 0,
143     "Process' command line characters cache limit");
144
145 static int disallow_high_osrel;
146 SYSCTL_INT(_kern, OID_AUTO, disallow_high_osrel, CTLFLAG_RW,
147     &disallow_high_osrel, 0,
148     "Disallow execution of binaries built for higher version of the world");
149
150 static int map_at_zero = 0;
151 SYSCTL_INT(_security_bsd, OID_AUTO, map_at_zero, CTLFLAG_RWTUN, &map_at_zero, 0,
152     "Permit processes to map an object at virtual address 0.");
153
154 static int core_dump_can_intr = 1;
155 SYSCTL_INT(_kern, OID_AUTO, core_dump_can_intr, CTLFLAG_RWTUN,
156     &core_dump_can_intr, 0,
157     "Core dumping interruptible with SIGKILL");
158
159 static int
160 sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS)
161 {
162         struct proc *p;
163         vm_offset_t ps_strings;
164
165         p = curproc;
166 #ifdef SCTL_MASK32
167         if (req->flags & SCTL_MASK32) {
168                 unsigned int val;
169                 val = (unsigned int)PROC_PS_STRINGS(p);
170                 return (SYSCTL_OUT(req, &val, sizeof(val)));
171         }
172 #endif
173         ps_strings = PROC_PS_STRINGS(p);
174         return (SYSCTL_OUT(req, &ps_strings, sizeof(ps_strings)));
175 }
176
177 static int
178 sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS)
179 {
180         struct proc *p;
181         vm_offset_t val;
182
183         p = curproc;
184 #ifdef SCTL_MASK32
185         if (req->flags & SCTL_MASK32) {
186                 unsigned int val32;
187
188                 val32 = round_page((unsigned int)p->p_vmspace->vm_stacktop);
189                 return (SYSCTL_OUT(req, &val32, sizeof(val32)));
190         }
191 #endif
192         val = round_page(p->p_vmspace->vm_stacktop);
193         return (SYSCTL_OUT(req, &val, sizeof(val)));
194 }
195
196 static int
197 sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS)
198 {
199         struct proc *p;
200
201         p = curproc;
202         return (SYSCTL_OUT(req, &p->p_sysent->sv_stackprot,
203             sizeof(p->p_sysent->sv_stackprot)));
204 }
205
206 /*
207  * Each of the items is a pointer to a `const struct execsw', hence the
208  * double pointer here.
209  */
210 static const struct execsw **execsw;
211
212 #ifndef _SYS_SYSPROTO_H_
213 struct execve_args {
214         char    *fname;
215         char    **argv;
216         char    **envv;
217 };
218 #endif
219
220 int
221 sys_execve(struct thread *td, struct execve_args *uap)
222 {
223         struct image_args args;
224         struct vmspace *oldvmspace;
225         int error;
226
227         error = pre_execve(td, &oldvmspace);
228         if (error != 0)
229                 return (error);
230         error = exec_copyin_args(&args, uap->fname, UIO_USERSPACE,
231             uap->argv, uap->envv);
232         if (error == 0)
233                 error = kern_execve(td, &args, NULL, oldvmspace);
234         post_execve(td, error, oldvmspace);
235         AUDIT_SYSCALL_EXIT(error == EJUSTRETURN ? 0 : error, td);
236         return (error);
237 }
238
239 #ifndef _SYS_SYSPROTO_H_
240 struct fexecve_args {
241         int     fd;
242         char    **argv;
243         char    **envv;
244 };
245 #endif
246 int
247 sys_fexecve(struct thread *td, struct fexecve_args *uap)
248 {
249         struct image_args args;
250         struct vmspace *oldvmspace;
251         int error;
252
253         error = pre_execve(td, &oldvmspace);
254         if (error != 0)
255                 return (error);
256         error = exec_copyin_args(&args, NULL, UIO_SYSSPACE,
257             uap->argv, uap->envv);
258         if (error == 0) {
259                 args.fd = uap->fd;
260                 error = kern_execve(td, &args, NULL, oldvmspace);
261         }
262         post_execve(td, error, oldvmspace);
263         AUDIT_SYSCALL_EXIT(error == EJUSTRETURN ? 0 : error, td);
264         return (error);
265 }
266
267 #ifndef _SYS_SYSPROTO_H_
268 struct __mac_execve_args {
269         char    *fname;
270         char    **argv;
271         char    **envv;
272         struct mac      *mac_p;
273 };
274 #endif
275
276 int
277 sys___mac_execve(struct thread *td, struct __mac_execve_args *uap)
278 {
279 #ifdef MAC
280         struct image_args args;
281         struct vmspace *oldvmspace;
282         int error;
283
284         error = pre_execve(td, &oldvmspace);
285         if (error != 0)
286                 return (error);
287         error = exec_copyin_args(&args, uap->fname, UIO_USERSPACE,
288             uap->argv, uap->envv);
289         if (error == 0)
290                 error = kern_execve(td, &args, uap->mac_p, oldvmspace);
291         post_execve(td, error, oldvmspace);
292         AUDIT_SYSCALL_EXIT(error == EJUSTRETURN ? 0 : error, td);
293         return (error);
294 #else
295         return (ENOSYS);
296 #endif
297 }
298
299 int
300 pre_execve(struct thread *td, struct vmspace **oldvmspace)
301 {
302         struct proc *p;
303         int error;
304
305         KASSERT(td == curthread, ("non-current thread %p", td));
306         error = 0;
307         p = td->td_proc;
308         if ((p->p_flag & P_HADTHREADS) != 0) {
309                 PROC_LOCK(p);
310                 if (thread_single(p, SINGLE_BOUNDARY) != 0)
311                         error = ERESTART;
312                 PROC_UNLOCK(p);
313         }
314         KASSERT(error != 0 || (td->td_pflags & TDP_EXECVMSPC) == 0,
315             ("nested execve"));
316         *oldvmspace = p->p_vmspace;
317         return (error);
318 }
319
320 void
321 post_execve(struct thread *td, int error, struct vmspace *oldvmspace)
322 {
323         struct proc *p;
324
325         KASSERT(td == curthread, ("non-current thread %p", td));
326         p = td->td_proc;
327         if ((p->p_flag & P_HADTHREADS) != 0) {
328                 PROC_LOCK(p);
329                 /*
330                  * If success, we upgrade to SINGLE_EXIT state to
331                  * force other threads to suicide.
332                  */
333                 if (error == EJUSTRETURN)
334                         thread_single(p, SINGLE_EXIT);
335                 else
336                         thread_single_end(p, SINGLE_BOUNDARY);
337                 PROC_UNLOCK(p);
338         }
339         exec_cleanup(td, oldvmspace);
340 }
341
342 /*
343  * kern_execve() has the astonishing property of not always returning to
344  * the caller.  If sufficiently bad things happen during the call to
345  * do_execve(), it can end up calling exit1(); as a result, callers must
346  * avoid doing anything which they might need to undo (e.g., allocating
347  * memory).
348  */
349 int
350 kern_execve(struct thread *td, struct image_args *args, struct mac *mac_p,
351     struct vmspace *oldvmspace)
352 {
353
354         TSEXEC(td->td_proc->p_pid, args->begin_argv);
355         AUDIT_ARG_ARGV(args->begin_argv, args->argc,
356             exec_args_get_begin_envv(args) - args->begin_argv);
357         AUDIT_ARG_ENVV(exec_args_get_begin_envv(args), args->envc,
358             args->endp - exec_args_get_begin_envv(args));
359
360         /* Must have at least one argument. */
361         if (args->argc == 0) {
362                 exec_free_args(args);
363                 return (EINVAL);
364         }
365         return (do_execve(td, args, mac_p, oldvmspace));
366 }
367
368 static void
369 execve_nosetid(struct image_params *imgp)
370 {
371         imgp->credential_setid = false;
372         if (imgp->newcred != NULL) {
373                 crfree(imgp->newcred);
374                 imgp->newcred = NULL;
375         }
376 }
377
378 /*
379  * In-kernel implementation of execve().  All arguments are assumed to be
380  * userspace pointers from the passed thread.
381  */
382 static int
383 do_execve(struct thread *td, struct image_args *args, struct mac *mac_p,
384     struct vmspace *oldvmspace)
385 {
386         struct proc *p = td->td_proc;
387         struct nameidata nd;
388         struct ucred *oldcred;
389         struct uidinfo *euip = NULL;
390         uintptr_t stack_base;
391         struct image_params image_params, *imgp;
392         struct vattr attr;
393         int (*img_first)(struct image_params *);
394         struct pargs *oldargs = NULL, *newargs = NULL;
395         struct sigacts *oldsigacts = NULL, *newsigacts = NULL;
396 #ifdef KTRACE
397         struct ktr_io_params *kiop;
398 #endif
399         struct vnode *oldtextvp, *newtextvp;
400         struct vnode *oldtextdvp, *newtextdvp;
401         char *oldbinname, *newbinname;
402         bool credential_changing;
403 #ifdef MAC
404         struct label *interpvplabel = NULL;
405         bool will_transition;
406 #endif
407 #ifdef HWPMC_HOOKS
408         struct pmckern_procexec pe;
409 #endif
410         int error, i, orig_osrel;
411         uint32_t orig_fctl0;
412         Elf_Brandinfo *orig_brandinfo;
413         size_t freepath_size;
414         static const char fexecv_proc_title[] = "(fexecv)";
415
416         imgp = &image_params;
417         oldtextvp = oldtextdvp = NULL;
418         newtextvp = newtextdvp = NULL;
419         newbinname = oldbinname = NULL;
420 #ifdef KTRACE
421         kiop = NULL;
422 #endif
423
424         /*
425          * Lock the process and set the P_INEXEC flag to indicate that
426          * it should be left alone until we're done here.  This is
427          * necessary to avoid race conditions - e.g. in ptrace() -
428          * that might allow a local user to illicitly obtain elevated
429          * privileges.
430          */
431         PROC_LOCK(p);
432         KASSERT((p->p_flag & P_INEXEC) == 0,
433             ("%s(): process already has P_INEXEC flag", __func__));
434         p->p_flag |= P_INEXEC;
435         PROC_UNLOCK(p);
436
437         /*
438          * Initialize part of the common data
439          */
440         bzero(imgp, sizeof(*imgp));
441         imgp->proc = p;
442         imgp->attr = &attr;
443         imgp->args = args;
444         oldcred = p->p_ucred;
445         orig_osrel = p->p_osrel;
446         orig_fctl0 = p->p_fctl0;
447         orig_brandinfo = p->p_elf_brandinfo;
448
449 #ifdef MAC
450         error = mac_execve_enter(imgp, mac_p);
451         if (error)
452                 goto exec_fail;
453 #endif
454
455         SDT_PROBE1(proc, , , exec, args->fname);
456
457 interpret:
458         if (args->fname != NULL) {
459 #ifdef CAPABILITY_MODE
460                 /*
461                  * While capability mode can't reach this point via direct
462                  * path arguments to execve(), we also don't allow
463                  * interpreters to be used in capability mode (for now).
464                  * Catch indirect lookups and return a permissions error.
465                  */
466                 if (IN_CAPABILITY_MODE(td)) {
467                         error = ECAPMODE;
468                         goto exec_fail;
469                 }
470 #endif
471
472                 /*
473                  * Translate the file name. namei() returns a vnode
474                  * pointer in ni_vp among other things.
475                  */
476                 NDINIT(&nd, LOOKUP, ISOPEN | LOCKLEAF | LOCKSHARED | FOLLOW |
477                     SAVENAME | AUDITVNODE1 | WANTPARENT, UIO_SYSSPACE,
478                     args->fname, td);
479
480                 error = namei(&nd);
481                 if (error)
482                         goto exec_fail;
483
484                 newtextvp = nd.ni_vp;
485                 newtextdvp = nd.ni_dvp;
486                 nd.ni_dvp = NULL;
487                 newbinname = malloc(nd.ni_cnd.cn_namelen + 1, M_PARGS,
488                     M_WAITOK);
489                 memcpy(newbinname, nd.ni_cnd.cn_nameptr, nd.ni_cnd.cn_namelen);
490                 newbinname[nd.ni_cnd.cn_namelen] = '\0';
491                 imgp->vp = newtextvp;
492
493                 /*
494                  * Do the best to calculate the full path to the image file.
495                  */
496                 if (args->fname[0] == '/') {
497                         imgp->execpath = args->fname;
498                 } else {
499                         VOP_UNLOCK(imgp->vp);
500                         freepath_size = MAXPATHLEN;
501                         if (vn_fullpath_hardlink(newtextvp, newtextdvp,
502                             newbinname, nd.ni_cnd.cn_namelen, &imgp->execpath,
503                             &imgp->freepath, &freepath_size) != 0)
504                                 imgp->execpath = args->fname;
505                         vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
506                 }
507         } else {
508                 AUDIT_ARG_FD(args->fd);
509
510                 /*
511                  * If the descriptors was not opened with O_PATH, then
512                  * we require that it was opened with O_EXEC or
513                  * O_RDONLY.  In either case, exec_check_permissions()
514                  * below checks _current_ file access mode regardless
515                  * of the permissions additionally checked at the
516                  * open(2).
517                  */
518                 error = fgetvp_exec(td, args->fd, &cap_fexecve_rights,
519                     &newtextvp);
520                 if (error != 0)
521                         goto exec_fail;
522
523                 if (vn_fullpath(newtextvp, &imgp->execpath,
524                     &imgp->freepath) != 0)
525                         imgp->execpath = args->fname;
526                 vn_lock(newtextvp, LK_SHARED | LK_RETRY);
527                 AUDIT_ARG_VNODE1(newtextvp);
528                 imgp->vp = newtextvp;
529         }
530
531         /*
532          * Check file permissions.  Also 'opens' file and sets its vnode to
533          * text mode.
534          */
535         error = exec_check_permissions(imgp);
536         if (error)
537                 goto exec_fail_dealloc;
538
539         imgp->object = imgp->vp->v_object;
540         if (imgp->object != NULL)
541                 vm_object_reference(imgp->object);
542
543         error = exec_map_first_page(imgp);
544         if (error)
545                 goto exec_fail_dealloc;
546
547         imgp->proc->p_osrel = 0;
548         imgp->proc->p_fctl0 = 0;
549         imgp->proc->p_elf_brandinfo = NULL;
550
551         /*
552          * Implement image setuid/setgid.
553          *
554          * Determine new credentials before attempting image activators
555          * so that it can be used by process_exec handlers to determine
556          * credential/setid changes.
557          *
558          * Don't honor setuid/setgid if the filesystem prohibits it or if
559          * the process is being traced.
560          *
561          * We disable setuid/setgid/etc in capability mode on the basis
562          * that most setugid applications are not written with that
563          * environment in mind, and will therefore almost certainly operate
564          * incorrectly. In principle there's no reason that setugid
565          * applications might not be useful in capability mode, so we may want
566          * to reconsider this conservative design choice in the future.
567          *
568          * XXXMAC: For the time being, use NOSUID to also prohibit
569          * transitions on the file system.
570          */
571         credential_changing = false;
572         credential_changing |= (attr.va_mode & S_ISUID) &&
573             oldcred->cr_uid != attr.va_uid;
574         credential_changing |= (attr.va_mode & S_ISGID) &&
575             oldcred->cr_gid != attr.va_gid;
576 #ifdef MAC
577         will_transition = mac_vnode_execve_will_transition(oldcred, imgp->vp,
578             interpvplabel, imgp) != 0;
579         credential_changing |= will_transition;
580 #endif
581
582         /* Don't inherit PROC_PDEATHSIG_CTL value if setuid/setgid. */
583         if (credential_changing)
584                 imgp->proc->p_pdeathsig = 0;
585
586         if (credential_changing &&
587 #ifdef CAPABILITY_MODE
588             ((oldcred->cr_flags & CRED_FLAG_CAPMODE) == 0) &&
589 #endif
590             (imgp->vp->v_mount->mnt_flag & MNT_NOSUID) == 0 &&
591             (p->p_flag & P_TRACED) == 0) {
592                 imgp->credential_setid = true;
593                 VOP_UNLOCK(imgp->vp);
594                 imgp->newcred = crdup(oldcred);
595                 if (attr.va_mode & S_ISUID) {
596                         euip = uifind(attr.va_uid);
597                         change_euid(imgp->newcred, euip);
598                 }
599                 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
600                 if (attr.va_mode & S_ISGID)
601                         change_egid(imgp->newcred, attr.va_gid);
602                 /*
603                  * Implement correct POSIX saved-id behavior.
604                  *
605                  * XXXMAC: Note that the current logic will save the
606                  * uid and gid if a MAC domain transition occurs, even
607                  * though maybe it shouldn't.
608                  */
609                 change_svuid(imgp->newcred, imgp->newcred->cr_uid);
610                 change_svgid(imgp->newcred, imgp->newcred->cr_gid);
611         } else {
612                 /*
613                  * Implement correct POSIX saved-id behavior.
614                  *
615                  * XXX: It's not clear that the existing behavior is
616                  * POSIX-compliant.  A number of sources indicate that the
617                  * saved uid/gid should only be updated if the new ruid is
618                  * not equal to the old ruid, or the new euid is not equal
619                  * to the old euid and the new euid is not equal to the old
620                  * ruid.  The FreeBSD code always updates the saved uid/gid.
621                  * Also, this code uses the new (replaced) euid and egid as
622                  * the source, which may or may not be the right ones to use.
623                  */
624                 if (oldcred->cr_svuid != oldcred->cr_uid ||
625                     oldcred->cr_svgid != oldcred->cr_gid) {
626                         VOP_UNLOCK(imgp->vp);
627                         imgp->newcred = crdup(oldcred);
628                         vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
629                         change_svuid(imgp->newcred, imgp->newcred->cr_uid);
630                         change_svgid(imgp->newcred, imgp->newcred->cr_gid);
631                 }
632         }
633         /* The new credentials are installed into the process later. */
634
635         /*
636          *      If the current process has a special image activator it
637          *      wants to try first, call it.   For example, emulating shell
638          *      scripts differently.
639          */
640         error = -1;
641         if ((img_first = imgp->proc->p_sysent->sv_imgact_try) != NULL)
642                 error = img_first(imgp);
643
644         /*
645          *      Loop through the list of image activators, calling each one.
646          *      An activator returns -1 if there is no match, 0 on success,
647          *      and an error otherwise.
648          */
649         for (i = 0; error == -1 && execsw[i]; ++i) {
650                 if (execsw[i]->ex_imgact == NULL ||
651                     execsw[i]->ex_imgact == img_first) {
652                         continue;
653                 }
654                 error = (*execsw[i]->ex_imgact)(imgp);
655         }
656
657         if (error) {
658                 if (error == -1)
659                         error = ENOEXEC;
660                 goto exec_fail_dealloc;
661         }
662
663         /*
664          * Special interpreter operation, cleanup and loop up to try to
665          * activate the interpreter.
666          */
667         if (imgp->interpreted) {
668                 exec_unmap_first_page(imgp);
669                 /*
670                  * The text reference needs to be removed for scripts.
671                  * There is a short period before we determine that
672                  * something is a script where text reference is active.
673                  * The vnode lock is held over this entire period
674                  * so nothing should illegitimately be blocked.
675                  */
676                 MPASS(imgp->textset);
677                 VOP_UNSET_TEXT_CHECKED(newtextvp);
678                 imgp->textset = false;
679                 /* free name buffer and old vnode */
680 #ifdef MAC
681                 mac_execve_interpreter_enter(newtextvp, &interpvplabel);
682 #endif
683                 if (imgp->opened) {
684                         VOP_CLOSE(newtextvp, FREAD, td->td_ucred, td);
685                         imgp->opened = false;
686                 }
687                 vput(newtextvp);
688                 imgp->vp = newtextvp = NULL;
689                 if (args->fname != NULL) {
690                         if (newtextdvp != NULL) {
691                                 vrele(newtextdvp);
692                                 newtextdvp = NULL;
693                         }
694                         NDFREE(&nd, NDF_ONLY_PNBUF);
695                         free(newbinname, M_PARGS);
696                         newbinname = NULL;
697                 }
698                 vm_object_deallocate(imgp->object);
699                 imgp->object = NULL;
700                 execve_nosetid(imgp);
701                 imgp->execpath = NULL;
702                 free(imgp->freepath, M_TEMP);
703                 imgp->freepath = NULL;
704                 /* set new name to that of the interpreter */
705                 args->fname = imgp->interpreter_name;
706                 goto interpret;
707         }
708
709         /*
710          * NB: We unlock the vnode here because it is believed that none
711          * of the sv_copyout_strings/sv_fixup operations require the vnode.
712          */
713         VOP_UNLOCK(imgp->vp);
714
715         if (disallow_high_osrel &&
716             P_OSREL_MAJOR(p->p_osrel) > P_OSREL_MAJOR(__FreeBSD_version)) {
717                 error = ENOEXEC;
718                 uprintf("Osrel %d for image %s too high\n", p->p_osrel,
719                     imgp->execpath != NULL ? imgp->execpath : "<unresolved>");
720                 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
721                 goto exec_fail_dealloc;
722         }
723
724         /* ABI enforces the use of Capsicum. Switch into capabilities mode. */
725         if (SV_PROC_FLAG(p, SV_CAPSICUM))
726                 sys_cap_enter(td, NULL);
727
728         /*
729          * Copy out strings (args and env) and initialize stack base.
730          */
731         error = (*p->p_sysent->sv_copyout_strings)(imgp, &stack_base);
732         if (error != 0) {
733                 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
734                 goto exec_fail_dealloc;
735         }
736
737         /*
738          * Stack setup.
739          */
740         error = (*p->p_sysent->sv_fixup)(&stack_base, imgp);
741         if (error != 0) {
742                 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
743                 goto exec_fail_dealloc;
744         }
745
746         if (args->fdp != NULL) {
747                 /* Install a brand new file descriptor table. */
748                 fdinstall_remapped(td, args->fdp);
749                 args->fdp = NULL;
750         } else {
751                 /*
752                  * Keep on using the existing file descriptor table. For
753                  * security and other reasons, the file descriptor table
754                  * cannot be shared after an exec.
755                  */
756                 fdunshare(td);
757                 pdunshare(td);
758                 /* close files on exec */
759                 fdcloseexec(td);
760         }
761
762         /*
763          * Malloc things before we need locks.
764          */
765         i = exec_args_get_begin_envv(imgp->args) - imgp->args->begin_argv;
766         /* Cache arguments if they fit inside our allowance */
767         if (ps_arg_cache_limit >= i + sizeof(struct pargs)) {
768                 newargs = pargs_alloc(i);
769                 bcopy(imgp->args->begin_argv, newargs->ar_args, i);
770         }
771
772         /*
773          * For security and other reasons, signal handlers cannot
774          * be shared after an exec. The new process gets a copy of the old
775          * handlers. In execsigs(), the new process will have its signals
776          * reset.
777          */
778         if (sigacts_shared(p->p_sigacts)) {
779                 oldsigacts = p->p_sigacts;
780                 newsigacts = sigacts_alloc();
781                 sigacts_copy(newsigacts, oldsigacts);
782         }
783
784         vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
785
786         PROC_LOCK(p);
787         if (oldsigacts)
788                 p->p_sigacts = newsigacts;
789         /* Stop profiling */
790         stopprofclock(p);
791
792         /* reset caught signals */
793         execsigs(p);
794
795         /* name this process - nameiexec(p, ndp) */
796         bzero(p->p_comm, sizeof(p->p_comm));
797         if (args->fname)
798                 bcopy(nd.ni_cnd.cn_nameptr, p->p_comm,
799                     min(nd.ni_cnd.cn_namelen, MAXCOMLEN));
800         else if (vn_commname(newtextvp, p->p_comm, sizeof(p->p_comm)) != 0)
801                 bcopy(fexecv_proc_title, p->p_comm, sizeof(fexecv_proc_title));
802         bcopy(p->p_comm, td->td_name, sizeof(td->td_name));
803 #ifdef KTR
804         sched_clear_tdname(td);
805 #endif
806
807         /*
808          * mark as execed, wakeup the process that vforked (if any) and tell
809          * it that it now has its own resources back
810          */
811         p->p_flag |= P_EXEC;
812         if ((p->p_flag2 & P2_NOTRACE_EXEC) == 0)
813                 p->p_flag2 &= ~P2_NOTRACE;
814         if ((p->p_flag2 & P2_STKGAP_DISABLE_EXEC) == 0)
815                 p->p_flag2 &= ~P2_STKGAP_DISABLE;
816         if (p->p_flag & P_PPWAIT) {
817                 p->p_flag &= ~(P_PPWAIT | P_PPTRACE);
818                 cv_broadcast(&p->p_pwait);
819                 /* STOPs are no longer ignored, arrange for AST */
820                 signotify(td);
821         }
822
823         if ((imgp->sysent->sv_setid_allowed != NULL &&
824             !(*imgp->sysent->sv_setid_allowed)(td, imgp)) ||
825             (p->p_flag2 & P2_NO_NEW_PRIVS) != 0)
826                 execve_nosetid(imgp);
827
828         /*
829          * Implement image setuid/setgid installation.
830          */
831         if (imgp->credential_setid) {
832                 /*
833                  * Turn off syscall tracing for set-id programs, except for
834                  * root.  Record any set-id flags first to make sure that
835                  * we do not regain any tracing during a possible block.
836                  */
837                 setsugid(p);
838 #ifdef KTRACE
839                 kiop = ktrprocexec(p);
840 #endif
841                 /*
842                  * Close any file descriptors 0..2 that reference procfs,
843                  * then make sure file descriptors 0..2 are in use.
844                  *
845                  * Both fdsetugidsafety() and fdcheckstd() may call functions
846                  * taking sleepable locks, so temporarily drop our locks.
847                  */
848                 PROC_UNLOCK(p);
849                 VOP_UNLOCK(imgp->vp);
850                 fdsetugidsafety(td);
851                 error = fdcheckstd(td);
852                 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
853                 if (error != 0)
854                         goto exec_fail_dealloc;
855                 PROC_LOCK(p);
856 #ifdef MAC
857                 if (will_transition) {
858                         mac_vnode_execve_transition(oldcred, imgp->newcred,
859                             imgp->vp, interpvplabel, imgp);
860                 }
861 #endif
862         } else {
863                 if (oldcred->cr_uid == oldcred->cr_ruid &&
864                     oldcred->cr_gid == oldcred->cr_rgid)
865                         p->p_flag &= ~P_SUGID;
866         }
867         /*
868          * Set the new credentials.
869          */
870         if (imgp->newcred != NULL) {
871                 proc_set_cred(p, imgp->newcred);
872                 crfree(oldcred);
873                 oldcred = NULL;
874         }
875
876         /*
877          * Store the vp for use in kern.proc.pathname.  This vnode was
878          * referenced by namei() or by fexecve variant of fname handling.
879          */
880         oldtextvp = p->p_textvp;
881         p->p_textvp = newtextvp;
882         oldtextdvp = p->p_textdvp;
883         p->p_textdvp = newtextdvp;
884         newtextdvp = NULL;
885         oldbinname = p->p_binname;
886         p->p_binname = newbinname;
887         newbinname = NULL;
888
889 #ifdef KDTRACE_HOOKS
890         /*
891          * Tell the DTrace fasttrap provider about the exec if it
892          * has declared an interest.
893          */
894         if (dtrace_fasttrap_exec)
895                 dtrace_fasttrap_exec(p);
896 #endif
897
898         /*
899          * Notify others that we exec'd, and clear the P_INEXEC flag
900          * as we're now a bona fide freshly-execed process.
901          */
902         KNOTE_LOCKED(p->p_klist, NOTE_EXEC);
903         p->p_flag &= ~P_INEXEC;
904
905         /* clear "fork but no exec" flag, as we _are_ execing */
906         p->p_acflag &= ~AFORK;
907
908         /*
909          * Free any previous argument cache and replace it with
910          * the new argument cache, if any.
911          */
912         oldargs = p->p_args;
913         p->p_args = newargs;
914         newargs = NULL;
915
916         PROC_UNLOCK(p);
917
918 #ifdef  HWPMC_HOOKS
919         /*
920          * Check if system-wide sampling is in effect or if the
921          * current process is using PMCs.  If so, do exec() time
922          * processing.  This processing needs to happen AFTER the
923          * P_INEXEC flag is cleared.
924          */
925         if (PMC_SYSTEM_SAMPLING_ACTIVE() || PMC_PROC_IS_USING_PMCS(p)) {
926                 VOP_UNLOCK(imgp->vp);
927                 pe.pm_credentialschanged = credential_changing;
928                 pe.pm_entryaddr = imgp->entry_addr;
929
930                 PMC_CALL_HOOK_X(td, PMC_FN_PROCESS_EXEC, (void *) &pe);
931                 vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
932         }
933 #endif
934
935         /* Set values passed into the program in registers. */
936         (*p->p_sysent->sv_setregs)(td, imgp, stack_base);
937
938         VOP_MMAPPED(imgp->vp);
939
940         SDT_PROBE1(proc, , , exec__success, args->fname);
941
942 exec_fail_dealloc:
943         if (error != 0) {
944                 p->p_osrel = orig_osrel;
945                 p->p_fctl0 = orig_fctl0;
946                 p->p_elf_brandinfo = orig_brandinfo;
947         }
948
949         if (imgp->firstpage != NULL)
950                 exec_unmap_first_page(imgp);
951
952         if (imgp->vp != NULL) {
953                 if (imgp->opened)
954                         VOP_CLOSE(imgp->vp, FREAD, td->td_ucred, td);
955                 if (imgp->textset)
956                         VOP_UNSET_TEXT_CHECKED(imgp->vp);
957                 if (error != 0)
958                         vput(imgp->vp);
959                 else
960                         VOP_UNLOCK(imgp->vp);
961                 if (args->fname != NULL)
962                         NDFREE(&nd, NDF_ONLY_PNBUF);
963                 if (newtextdvp != NULL)
964                         vrele(newtextdvp);
965                 free(newbinname, M_PARGS);
966         }
967
968         if (imgp->object != NULL)
969                 vm_object_deallocate(imgp->object);
970
971         free(imgp->freepath, M_TEMP);
972
973         if (error == 0) {
974                 if (p->p_ptevents & PTRACE_EXEC) {
975                         PROC_LOCK(p);
976                         if (p->p_ptevents & PTRACE_EXEC)
977                                 td->td_dbgflags |= TDB_EXEC;
978                         PROC_UNLOCK(p);
979                 }
980         } else {
981 exec_fail:
982                 /* we're done here, clear P_INEXEC */
983                 PROC_LOCK(p);
984                 p->p_flag &= ~P_INEXEC;
985                 PROC_UNLOCK(p);
986
987                 SDT_PROBE1(proc, , , exec__failure, error);
988         }
989
990         if (imgp->newcred != NULL && oldcred != NULL)
991                 crfree(imgp->newcred);
992
993 #ifdef MAC
994         mac_execve_exit(imgp);
995         mac_execve_interpreter_exit(interpvplabel);
996 #endif
997         exec_free_args(args);
998
999         /*
1000          * Handle deferred decrement of ref counts.
1001          */
1002         if (oldtextvp != NULL)
1003                 vrele(oldtextvp);
1004         if (oldtextdvp != NULL)
1005                 vrele(oldtextdvp);
1006         free(oldbinname, M_PARGS);
1007 #ifdef KTRACE
1008         ktr_io_params_free(kiop);
1009 #endif
1010         pargs_drop(oldargs);
1011         pargs_drop(newargs);
1012         if (oldsigacts != NULL)
1013                 sigacts_free(oldsigacts);
1014         if (euip != NULL)
1015                 uifree(euip);
1016
1017         if (error && imgp->vmspace_destroyed) {
1018                 /* sorry, no more process anymore. exit gracefully */
1019                 exec_cleanup(td, oldvmspace);
1020                 exit1(td, 0, SIGABRT);
1021                 /* NOT REACHED */
1022         }
1023
1024 #ifdef KTRACE
1025         if (error == 0)
1026                 ktrprocctor(p);
1027 #endif
1028
1029         /*
1030          * We don't want cpu_set_syscall_retval() to overwrite any of
1031          * the register values put in place by exec_setregs().
1032          * Implementations of cpu_set_syscall_retval() will leave
1033          * registers unmodified when returning EJUSTRETURN.
1034          */
1035         return (error == 0 ? EJUSTRETURN : error);
1036 }
1037
1038 void
1039 exec_cleanup(struct thread *td, struct vmspace *oldvmspace)
1040 {
1041         if ((td->td_pflags & TDP_EXECVMSPC) != 0) {
1042                 KASSERT(td->td_proc->p_vmspace != oldvmspace,
1043                     ("oldvmspace still used"));
1044                 vmspace_free(oldvmspace);
1045                 td->td_pflags &= ~TDP_EXECVMSPC;
1046         }
1047 }
1048
1049 int
1050 exec_map_first_page(struct image_params *imgp)
1051 {
1052         vm_object_t object;
1053         vm_page_t m;
1054         int error;
1055
1056         if (imgp->firstpage != NULL)
1057                 exec_unmap_first_page(imgp);
1058
1059         object = imgp->vp->v_object;
1060         if (object == NULL)
1061                 return (EACCES);
1062 #if VM_NRESERVLEVEL > 0
1063         if ((object->flags & OBJ_COLORED) == 0) {
1064                 VM_OBJECT_WLOCK(object);
1065                 vm_object_color(object, 0);
1066                 VM_OBJECT_WUNLOCK(object);
1067         }
1068 #endif
1069         error = vm_page_grab_valid_unlocked(&m, object, 0,
1070             VM_ALLOC_COUNT(VM_INITIAL_PAGEIN) |
1071             VM_ALLOC_NORMAL | VM_ALLOC_NOBUSY | VM_ALLOC_WIRED);
1072
1073         if (error != VM_PAGER_OK)
1074                 return (EIO);
1075         imgp->firstpage = sf_buf_alloc(m, 0);
1076         imgp->image_header = (char *)sf_buf_kva(imgp->firstpage);
1077
1078         return (0);
1079 }
1080
1081 void
1082 exec_unmap_first_page(struct image_params *imgp)
1083 {
1084         vm_page_t m;
1085
1086         if (imgp->firstpage != NULL) {
1087                 m = sf_buf_page(imgp->firstpage);
1088                 sf_buf_free(imgp->firstpage);
1089                 imgp->firstpage = NULL;
1090                 vm_page_unwire(m, PQ_ACTIVE);
1091         }
1092 }
1093
1094 void
1095 exec_onexec_old(struct thread *td)
1096 {
1097         sigfastblock_clear(td);
1098         umtx_exec(td->td_proc);
1099 }
1100
1101 /*
1102  * This is an optimization which removes the unmanaged shared page
1103  * mapping. In combination with pmap_remove_pages(), which cleans all
1104  * managed mappings in the process' vmspace pmap, no work will be left
1105  * for pmap_remove(min, max).
1106  */
1107 void
1108 exec_free_abi_mappings(struct proc *p)
1109 {
1110         struct vmspace *vmspace;
1111         struct sysentvec *sv;
1112
1113         vmspace = p->p_vmspace;
1114         if (refcount_load(&vmspace->vm_refcnt) != 1)
1115                 return;
1116
1117         sv = p->p_sysent;
1118         if (sv->sv_shared_page_obj == NULL)
1119                 return;
1120
1121         pmap_remove(vmspace_pmap(vmspace), sv->sv_shared_page_base,
1122             sv->sv_shared_page_base + sv->sv_shared_page_len);
1123 }
1124
1125 /*
1126  * Run down the current address space and install a new one.  Map the shared
1127  * page.
1128  */
1129 int
1130 exec_new_vmspace(struct image_params *imgp, struct sysentvec *sv)
1131 {
1132         int error;
1133         struct proc *p = imgp->proc;
1134         struct vmspace *vmspace = p->p_vmspace;
1135         struct thread *td = curthread;
1136         vm_object_t obj;
1137         vm_offset_t sv_minuser;
1138         vm_map_t map;
1139
1140         imgp->vmspace_destroyed = true;
1141         imgp->sysent = sv;
1142
1143         if (p->p_sysent->sv_onexec_old != NULL)
1144                 p->p_sysent->sv_onexec_old(td);
1145         itimers_exec(p);
1146         if (sv->sv_onexec != NULL)
1147                 sv->sv_onexec(p, imgp);
1148
1149         EVENTHANDLER_DIRECT_INVOKE(process_exec, p, imgp);
1150
1151         /*
1152          * Blow away entire process VM, if address space not shared,
1153          * otherwise, create a new VM space so that other threads are
1154          * not disrupted
1155          */
1156         map = &vmspace->vm_map;
1157         if (map_at_zero)
1158                 sv_minuser = sv->sv_minuser;
1159         else
1160                 sv_minuser = MAX(sv->sv_minuser, PAGE_SIZE);
1161         if (refcount_load(&vmspace->vm_refcnt) == 1 &&
1162             vm_map_min(map) == sv_minuser &&
1163             vm_map_max(map) == sv->sv_maxuser &&
1164             cpu_exec_vmspace_reuse(p, map)) {
1165                 exec_free_abi_mappings(p);
1166                 shmexit(vmspace);
1167                 pmap_remove_pages(vmspace_pmap(vmspace));
1168                 vm_map_remove(map, vm_map_min(map), vm_map_max(map));
1169                 /*
1170                  * An exec terminates mlockall(MCL_FUTURE).
1171                  * ASLR and W^X states must be re-evaluated.
1172                  */
1173                 vm_map_lock(map);
1174                 vm_map_modflags(map, 0, MAP_WIREFUTURE | MAP_ASLR |
1175                     MAP_ASLR_IGNSTART | MAP_ASLR_STACK | MAP_WXORX);
1176                 vm_map_unlock(map);
1177         } else {
1178                 error = vmspace_exec(p, sv_minuser, sv->sv_maxuser);
1179                 if (error)
1180                         return (error);
1181                 vmspace = p->p_vmspace;
1182                 map = &vmspace->vm_map;
1183         }
1184         map->flags |= imgp->map_flags;
1185
1186         /* Map a shared page */
1187         obj = sv->sv_shared_page_obj;
1188         if (obj != NULL) {
1189                 vm_object_reference(obj);
1190                 error = vm_map_fixed(map, obj, 0,
1191                     sv->sv_shared_page_base, sv->sv_shared_page_len,
1192                     VM_PROT_READ | VM_PROT_EXECUTE,
1193                     VM_PROT_READ | VM_PROT_EXECUTE,
1194                     MAP_INHERIT_SHARE | MAP_ACC_NO_CHARGE);
1195                 if (error != KERN_SUCCESS) {
1196                         vm_object_deallocate(obj);
1197                         return (vm_mmap_to_errno(error));
1198                 }
1199         }
1200
1201         return (0);
1202 }
1203
1204 /*
1205  * Compute the stack size limit and map the main process stack.
1206  */
1207 int
1208 exec_map_stack(struct image_params *imgp)
1209 {
1210         struct rlimit rlim_stack;
1211         struct sysentvec *sv;
1212         struct proc *p;
1213         vm_map_t map;
1214         struct vmspace *vmspace;
1215         vm_offset_t stack_addr, stack_top;
1216         u_long ssiz;
1217         int error, find_space, stack_off;
1218         vm_prot_t stack_prot;
1219
1220         p = imgp->proc;
1221         sv = p->p_sysent;
1222
1223         if (imgp->stack_sz != 0) {
1224                 ssiz = trunc_page(imgp->stack_sz);
1225                 PROC_LOCK(p);
1226                 lim_rlimit_proc(p, RLIMIT_STACK, &rlim_stack);
1227                 PROC_UNLOCK(p);
1228                 if (ssiz > rlim_stack.rlim_max)
1229                         ssiz = rlim_stack.rlim_max;
1230                 if (ssiz > rlim_stack.rlim_cur) {
1231                         rlim_stack.rlim_cur = ssiz;
1232                         kern_setrlimit(curthread, RLIMIT_STACK, &rlim_stack);
1233                 }
1234         } else if (sv->sv_maxssiz != NULL) {
1235                 ssiz = *sv->sv_maxssiz;
1236         } else {
1237                 ssiz = maxssiz;
1238         }
1239
1240         vmspace = p->p_vmspace;
1241         map = &vmspace->vm_map;
1242
1243         stack_prot = sv->sv_shared_page_obj != NULL && imgp->stack_prot != 0 ?
1244             imgp->stack_prot : sv->sv_stackprot;
1245         if ((map->flags & MAP_ASLR_STACK) != 0) {
1246                 stack_addr = round_page((vm_offset_t)p->p_vmspace->vm_daddr +
1247                     lim_max(curthread, RLIMIT_DATA));
1248                 find_space = VMFS_ANY_SPACE;
1249         } else {
1250                 stack_addr = sv->sv_usrstack - ssiz;
1251                 find_space = VMFS_NO_SPACE;
1252         }
1253         error = vm_map_find(map, NULL, 0, &stack_addr, (vm_size_t)ssiz,
1254             sv->sv_usrstack, find_space, stack_prot, VM_PROT_ALL,
1255             MAP_STACK_GROWS_DOWN);
1256         if (error != KERN_SUCCESS) {
1257                 uprintf("exec_new_vmspace: mapping stack size %#jx prot %#x "
1258                     "failed, mach error %d errno %d\n", (uintmax_t)ssiz,
1259                     stack_prot, error, vm_mmap_to_errno(error));
1260                 return (vm_mmap_to_errno(error));
1261         }
1262
1263         stack_top = stack_addr + ssiz;
1264         if ((map->flags & MAP_ASLR_STACK) != 0) {
1265                 /* Randomize within the first page of the stack. */
1266                 arc4rand(&stack_off, sizeof(stack_off), 0);
1267                 stack_top -= rounddown2(stack_off & PAGE_MASK, sizeof(void *));
1268         }
1269
1270         /*
1271          * vm_ssize and vm_maxsaddr are somewhat antiquated concepts, but they
1272          * are still used to enforce the stack rlimit on the process stack.
1273          */
1274         vmspace->vm_maxsaddr = (char *)stack_addr;
1275         vmspace->vm_stacktop = stack_top;
1276         vmspace->vm_ssize = sgrowsiz >> PAGE_SHIFT;
1277
1278         return (0);
1279 }
1280
1281 /*
1282  * Copy out argument and environment strings from the old process address
1283  * space into the temporary string buffer.
1284  */
1285 int
1286 exec_copyin_args(struct image_args *args, const char *fname,
1287     enum uio_seg segflg, char **argv, char **envv)
1288 {
1289         u_long arg, env;
1290         int error;
1291
1292         bzero(args, sizeof(*args));
1293         if (argv == NULL)
1294                 return (EFAULT);
1295
1296         /*
1297          * Allocate demand-paged memory for the file name, argument, and
1298          * environment strings.
1299          */
1300         error = exec_alloc_args(args);
1301         if (error != 0)
1302                 return (error);
1303
1304         /*
1305          * Copy the file name.
1306          */
1307         error = exec_args_add_fname(args, fname, segflg);
1308         if (error != 0)
1309                 goto err_exit;
1310
1311         /*
1312          * extract arguments first
1313          */
1314         for (;;) {
1315                 error = fueword(argv++, &arg);
1316                 if (error == -1) {
1317                         error = EFAULT;
1318                         goto err_exit;
1319                 }
1320                 if (arg == 0)
1321                         break;
1322                 error = exec_args_add_arg(args, (char *)(uintptr_t)arg,
1323                     UIO_USERSPACE);
1324                 if (error != 0)
1325                         goto err_exit;
1326         }
1327
1328         /*
1329          * extract environment strings
1330          */
1331         if (envv) {
1332                 for (;;) {
1333                         error = fueword(envv++, &env);
1334                         if (error == -1) {
1335                                 error = EFAULT;
1336                                 goto err_exit;
1337                         }
1338                         if (env == 0)
1339                                 break;
1340                         error = exec_args_add_env(args,
1341                             (char *)(uintptr_t)env, UIO_USERSPACE);
1342                         if (error != 0)
1343                                 goto err_exit;
1344                 }
1345         }
1346
1347         return (0);
1348
1349 err_exit:
1350         exec_free_args(args);
1351         return (error);
1352 }
1353
1354 int
1355 exec_copyin_data_fds(struct thread *td, struct image_args *args,
1356     const void *data, size_t datalen, const int *fds, size_t fdslen)
1357 {
1358         struct filedesc *ofdp;
1359         const char *p;
1360         int *kfds;
1361         int error;
1362
1363         memset(args, '\0', sizeof(*args));
1364         ofdp = td->td_proc->p_fd;
1365         if (datalen >= ARG_MAX || fdslen >= ofdp->fd_nfiles)
1366                 return (E2BIG);
1367         error = exec_alloc_args(args);
1368         if (error != 0)
1369                 return (error);
1370
1371         args->begin_argv = args->buf;
1372         args->stringspace = ARG_MAX;
1373
1374         if (datalen > 0) {
1375                 /*
1376                  * Argument buffer has been provided. Copy it into the
1377                  * kernel as a single string and add a terminating null
1378                  * byte.
1379                  */
1380                 error = copyin(data, args->begin_argv, datalen);
1381                 if (error != 0)
1382                         goto err_exit;
1383                 args->begin_argv[datalen] = '\0';
1384                 args->endp = args->begin_argv + datalen + 1;
1385                 args->stringspace -= datalen + 1;
1386
1387                 /*
1388                  * Traditional argument counting. Count the number of
1389                  * null bytes.
1390                  */
1391                 for (p = args->begin_argv; p < args->endp; ++p)
1392                         if (*p == '\0')
1393                                 ++args->argc;
1394         } else {
1395                 /* No argument buffer provided. */
1396                 args->endp = args->begin_argv;
1397         }
1398
1399         /* Create new file descriptor table. */
1400         kfds = malloc(fdslen * sizeof(int), M_TEMP, M_WAITOK);
1401         error = copyin(fds, kfds, fdslen * sizeof(int));
1402         if (error != 0) {
1403                 free(kfds, M_TEMP);
1404                 goto err_exit;
1405         }
1406         error = fdcopy_remapped(ofdp, kfds, fdslen, &args->fdp);
1407         free(kfds, M_TEMP);
1408         if (error != 0)
1409                 goto err_exit;
1410
1411         return (0);
1412 err_exit:
1413         exec_free_args(args);
1414         return (error);
1415 }
1416
1417 struct exec_args_kva {
1418         vm_offset_t addr;
1419         u_int gen;
1420         SLIST_ENTRY(exec_args_kva) next;
1421 };
1422
1423 DPCPU_DEFINE_STATIC(struct exec_args_kva *, exec_args_kva);
1424
1425 static SLIST_HEAD(, exec_args_kva) exec_args_kva_freelist;
1426 static struct mtx exec_args_kva_mtx;
1427 static u_int exec_args_gen;
1428
1429 static void
1430 exec_prealloc_args_kva(void *arg __unused)
1431 {
1432         struct exec_args_kva *argkva;
1433         u_int i;
1434
1435         SLIST_INIT(&exec_args_kva_freelist);
1436         mtx_init(&exec_args_kva_mtx, "exec args kva", NULL, MTX_DEF);
1437         for (i = 0; i < exec_map_entries; i++) {
1438                 argkva = malloc(sizeof(*argkva), M_PARGS, M_WAITOK);
1439                 argkva->addr = kmap_alloc_wait(exec_map, exec_map_entry_size);
1440                 argkva->gen = exec_args_gen;
1441                 SLIST_INSERT_HEAD(&exec_args_kva_freelist, argkva, next);
1442         }
1443 }
1444 SYSINIT(exec_args_kva, SI_SUB_EXEC, SI_ORDER_ANY, exec_prealloc_args_kva, NULL);
1445
1446 static vm_offset_t
1447 exec_alloc_args_kva(void **cookie)
1448 {
1449         struct exec_args_kva *argkva;
1450
1451         argkva = (void *)atomic_readandclear_ptr(
1452             (uintptr_t *)DPCPU_PTR(exec_args_kva));
1453         if (argkva == NULL) {
1454                 mtx_lock(&exec_args_kva_mtx);
1455                 while ((argkva = SLIST_FIRST(&exec_args_kva_freelist)) == NULL)
1456                         (void)mtx_sleep(&exec_args_kva_freelist,
1457                             &exec_args_kva_mtx, 0, "execkva", 0);
1458                 SLIST_REMOVE_HEAD(&exec_args_kva_freelist, next);
1459                 mtx_unlock(&exec_args_kva_mtx);
1460         }
1461         kasan_mark((void *)argkva->addr, exec_map_entry_size,
1462             exec_map_entry_size, 0);
1463         *(struct exec_args_kva **)cookie = argkva;
1464         return (argkva->addr);
1465 }
1466
1467 static void
1468 exec_release_args_kva(struct exec_args_kva *argkva, u_int gen)
1469 {
1470         vm_offset_t base;
1471
1472         base = argkva->addr;
1473         kasan_mark((void *)argkva->addr, 0, exec_map_entry_size,
1474             KASAN_EXEC_ARGS_FREED);
1475         if (argkva->gen != gen) {
1476                 (void)vm_map_madvise(exec_map, base, base + exec_map_entry_size,
1477                     MADV_FREE);
1478                 argkva->gen = gen;
1479         }
1480         if (!atomic_cmpset_ptr((uintptr_t *)DPCPU_PTR(exec_args_kva),
1481             (uintptr_t)NULL, (uintptr_t)argkva)) {
1482                 mtx_lock(&exec_args_kva_mtx);
1483                 SLIST_INSERT_HEAD(&exec_args_kva_freelist, argkva, next);
1484                 wakeup_one(&exec_args_kva_freelist);
1485                 mtx_unlock(&exec_args_kva_mtx);
1486         }
1487 }
1488
1489 static void
1490 exec_free_args_kva(void *cookie)
1491 {
1492
1493         exec_release_args_kva(cookie, exec_args_gen);
1494 }
1495
1496 static void
1497 exec_args_kva_lowmem(void *arg __unused)
1498 {
1499         SLIST_HEAD(, exec_args_kva) head;
1500         struct exec_args_kva *argkva;
1501         u_int gen;
1502         int i;
1503
1504         gen = atomic_fetchadd_int(&exec_args_gen, 1) + 1;
1505
1506         /*
1507          * Force an madvise of each KVA range. Any currently allocated ranges
1508          * will have MADV_FREE applied once they are freed.
1509          */
1510         SLIST_INIT(&head);
1511         mtx_lock(&exec_args_kva_mtx);
1512         SLIST_SWAP(&head, &exec_args_kva_freelist, exec_args_kva);
1513         mtx_unlock(&exec_args_kva_mtx);
1514         while ((argkva = SLIST_FIRST(&head)) != NULL) {
1515                 SLIST_REMOVE_HEAD(&head, next);
1516                 exec_release_args_kva(argkva, gen);
1517         }
1518
1519         CPU_FOREACH(i) {
1520                 argkva = (void *)atomic_readandclear_ptr(
1521                     (uintptr_t *)DPCPU_ID_PTR(i, exec_args_kva));
1522                 if (argkva != NULL)
1523                         exec_release_args_kva(argkva, gen);
1524         }
1525 }
1526 EVENTHANDLER_DEFINE(vm_lowmem, exec_args_kva_lowmem, NULL,
1527     EVENTHANDLER_PRI_ANY);
1528
1529 /*
1530  * Allocate temporary demand-paged, zero-filled memory for the file name,
1531  * argument, and environment strings.
1532  */
1533 int
1534 exec_alloc_args(struct image_args *args)
1535 {
1536
1537         args->buf = (char *)exec_alloc_args_kva(&args->bufkva);
1538         return (0);
1539 }
1540
1541 void
1542 exec_free_args(struct image_args *args)
1543 {
1544
1545         if (args->buf != NULL) {
1546                 exec_free_args_kva(args->bufkva);
1547                 args->buf = NULL;
1548         }
1549         if (args->fname_buf != NULL) {
1550                 free(args->fname_buf, M_TEMP);
1551                 args->fname_buf = NULL;
1552         }
1553         if (args->fdp != NULL)
1554                 fdescfree_remapped(args->fdp);
1555 }
1556
1557 /*
1558  * A set to functions to fill struct image args.
1559  *
1560  * NOTE: exec_args_add_fname() must be called (possibly with a NULL
1561  * fname) before the other functions.  All exec_args_add_arg() calls must
1562  * be made before any exec_args_add_env() calls.  exec_args_adjust_args()
1563  * may be called any time after exec_args_add_fname().
1564  *
1565  * exec_args_add_fname() - install path to be executed
1566  * exec_args_add_arg() - append an argument string
1567  * exec_args_add_env() - append an env string
1568  * exec_args_adjust_args() - adjust location of the argument list to
1569  *                           allow new arguments to be prepended
1570  */
1571 int
1572 exec_args_add_fname(struct image_args *args, const char *fname,
1573     enum uio_seg segflg)
1574 {
1575         int error;
1576         size_t length;
1577
1578         KASSERT(args->fname == NULL, ("fname already appended"));
1579         KASSERT(args->endp == NULL, ("already appending to args"));
1580
1581         if (fname != NULL) {
1582                 args->fname = args->buf;
1583                 error = segflg == UIO_SYSSPACE ?
1584                     copystr(fname, args->fname, PATH_MAX, &length) :
1585                     copyinstr(fname, args->fname, PATH_MAX, &length);
1586                 if (error != 0)
1587                         return (error == ENAMETOOLONG ? E2BIG : error);
1588         } else
1589                 length = 0;
1590
1591         /* Set up for _arg_*()/_env_*() */
1592         args->endp = args->buf + length;
1593         /* begin_argv must be set and kept updated */
1594         args->begin_argv = args->endp;
1595         KASSERT(exec_map_entry_size - length >= ARG_MAX,
1596             ("too little space remaining for arguments %zu < %zu",
1597             exec_map_entry_size - length, (size_t)ARG_MAX));
1598         args->stringspace = ARG_MAX;
1599
1600         return (0);
1601 }
1602
1603 static int
1604 exec_args_add_str(struct image_args *args, const char *str,
1605     enum uio_seg segflg, int *countp)
1606 {
1607         int error;
1608         size_t length;
1609
1610         KASSERT(args->endp != NULL, ("endp not initialized"));
1611         KASSERT(args->begin_argv != NULL, ("begin_argp not initialized"));
1612
1613         error = (segflg == UIO_SYSSPACE) ?
1614             copystr(str, args->endp, args->stringspace, &length) :
1615             copyinstr(str, args->endp, args->stringspace, &length);
1616         if (error != 0)
1617                 return (error == ENAMETOOLONG ? E2BIG : error);
1618         args->stringspace -= length;
1619         args->endp += length;
1620         (*countp)++;
1621
1622         return (0);
1623 }
1624
1625 int
1626 exec_args_add_arg(struct image_args *args, const char *argp,
1627     enum uio_seg segflg)
1628 {
1629
1630         KASSERT(args->envc == 0, ("appending args after env"));
1631
1632         return (exec_args_add_str(args, argp, segflg, &args->argc));
1633 }
1634
1635 int
1636 exec_args_add_env(struct image_args *args, const char *envp,
1637     enum uio_seg segflg)
1638 {
1639
1640         if (args->envc == 0)
1641                 args->begin_envv = args->endp;
1642
1643         return (exec_args_add_str(args, envp, segflg, &args->envc));
1644 }
1645
1646 int
1647 exec_args_adjust_args(struct image_args *args, size_t consume, ssize_t extend)
1648 {
1649         ssize_t offset;
1650
1651         KASSERT(args->endp != NULL, ("endp not initialized"));
1652         KASSERT(args->begin_argv != NULL, ("begin_argp not initialized"));
1653
1654         offset = extend - consume;
1655         if (args->stringspace < offset)
1656                 return (E2BIG);
1657         memmove(args->begin_argv + extend, args->begin_argv + consume,
1658             args->endp - args->begin_argv + consume);
1659         if (args->envc > 0)
1660                 args->begin_envv += offset;
1661         args->endp += offset;
1662         args->stringspace -= offset;
1663         return (0);
1664 }
1665
1666 char *
1667 exec_args_get_begin_envv(struct image_args *args)
1668 {
1669
1670         KASSERT(args->endp != NULL, ("endp not initialized"));
1671
1672         if (args->envc > 0)
1673                 return (args->begin_envv);
1674         return (args->endp);
1675 }
1676
1677 /*
1678  * Copy strings out to the new process address space, constructing new arg
1679  * and env vector tables. Return a pointer to the base so that it can be used
1680  * as the initial stack pointer.
1681  */
1682 int
1683 exec_copyout_strings(struct image_params *imgp, uintptr_t *stack_base)
1684 {
1685         int argc, envc;
1686         char **vectp;
1687         char *stringp;
1688         uintptr_t destp, ustringp;
1689         struct ps_strings *arginfo;
1690         struct proc *p;
1691         struct sysentvec *sysent;
1692         size_t execpath_len;
1693         int error, szsigcode;
1694         char canary[sizeof(long) * 8];
1695
1696         p = imgp->proc;
1697         sysent = p->p_sysent;
1698
1699         destp = PROC_PS_STRINGS(p);
1700         arginfo = imgp->ps_strings = (void *)destp;
1701
1702         /*
1703          * Install sigcode.
1704          */
1705         if (sysent->sv_sigcode_base == 0 && sysent->sv_szsigcode != NULL) {
1706                 szsigcode = *(sysent->sv_szsigcode);
1707                 destp -= szsigcode;
1708                 destp = rounddown2(destp, sizeof(void *));
1709                 error = copyout(sysent->sv_sigcode, (void *)destp, szsigcode);
1710                 if (error != 0)
1711                         return (error);
1712         }
1713
1714         /*
1715          * Copy the image path for the rtld.
1716          */
1717         if (imgp->execpath != NULL && imgp->auxargs != NULL) {
1718                 execpath_len = strlen(imgp->execpath) + 1;
1719                 destp -= execpath_len;
1720                 destp = rounddown2(destp, sizeof(void *));
1721                 imgp->execpathp = (void *)destp;
1722                 error = copyout(imgp->execpath, imgp->execpathp, execpath_len);
1723                 if (error != 0)
1724                         return (error);
1725         }
1726
1727         /*
1728          * Prepare the canary for SSP.
1729          */
1730         arc4rand(canary, sizeof(canary), 0);
1731         destp -= sizeof(canary);
1732         imgp->canary = (void *)destp;
1733         error = copyout(canary, imgp->canary, sizeof(canary));
1734         if (error != 0)
1735                 return (error);
1736         imgp->canarylen = sizeof(canary);
1737
1738         /*
1739          * Prepare the pagesizes array.
1740          */
1741         imgp->pagesizeslen = sizeof(pagesizes[0]) * MAXPAGESIZES;
1742         destp -= imgp->pagesizeslen;
1743         destp = rounddown2(destp, sizeof(void *));
1744         imgp->pagesizes = (void *)destp;
1745         error = copyout(pagesizes, imgp->pagesizes, imgp->pagesizeslen);
1746         if (error != 0)
1747                 return (error);
1748
1749         /*
1750          * Allocate room for the argument and environment strings.
1751          */
1752         destp -= ARG_MAX - imgp->args->stringspace;
1753         destp = rounddown2(destp, sizeof(void *));
1754         ustringp = destp;
1755
1756         if (imgp->auxargs) {
1757                 /*
1758                  * Allocate room on the stack for the ELF auxargs
1759                  * array.  It has up to AT_COUNT entries.
1760                  */
1761                 destp -= AT_COUNT * sizeof(Elf_Auxinfo);
1762                 destp = rounddown2(destp, sizeof(void *));
1763         }
1764
1765         vectp = (char **)destp;
1766
1767         /*
1768          * Allocate room for the argv[] and env vectors including the
1769          * terminating NULL pointers.
1770          */
1771         vectp -= imgp->args->argc + 1 + imgp->args->envc + 1;
1772
1773         /*
1774          * vectp also becomes our initial stack base
1775          */
1776         *stack_base = (uintptr_t)vectp;
1777
1778         stringp = imgp->args->begin_argv;
1779         argc = imgp->args->argc;
1780         envc = imgp->args->envc;
1781
1782         /*
1783          * Copy out strings - arguments and environment.
1784          */
1785         error = copyout(stringp, (void *)ustringp,
1786             ARG_MAX - imgp->args->stringspace);
1787         if (error != 0)
1788                 return (error);
1789
1790         /*
1791          * Fill in "ps_strings" struct for ps, w, etc.
1792          */
1793         imgp->argv = vectp;
1794         if (suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp) != 0 ||
1795             suword32(&arginfo->ps_nargvstr, argc) != 0)
1796                 return (EFAULT);
1797
1798         /*
1799          * Fill in argument portion of vector table.
1800          */
1801         for (; argc > 0; --argc) {
1802                 if (suword(vectp++, ustringp) != 0)
1803                         return (EFAULT);
1804                 while (*stringp++ != 0)
1805                         ustringp++;
1806                 ustringp++;
1807         }
1808
1809         /* a null vector table pointer separates the argp's from the envp's */
1810         if (suword(vectp++, 0) != 0)
1811                 return (EFAULT);
1812
1813         imgp->envv = vectp;
1814         if (suword(&arginfo->ps_envstr, (long)(intptr_t)vectp) != 0 ||
1815             suword32(&arginfo->ps_nenvstr, envc) != 0)
1816                 return (EFAULT);
1817
1818         /*
1819          * Fill in environment portion of vector table.
1820          */
1821         for (; envc > 0; --envc) {
1822                 if (suword(vectp++, ustringp) != 0)
1823                         return (EFAULT);
1824                 while (*stringp++ != 0)
1825                         ustringp++;
1826                 ustringp++;
1827         }
1828
1829         /* end of vector table is a null pointer */
1830         if (suword(vectp, 0) != 0)
1831                 return (EFAULT);
1832
1833         if (imgp->auxargs) {
1834                 vectp++;
1835                 error = imgp->sysent->sv_copyout_auxargs(imgp,
1836                     (uintptr_t)vectp);
1837                 if (error != 0)
1838                         return (error);
1839         }
1840
1841         return (0);
1842 }
1843
1844 /*
1845  * Check permissions of file to execute.
1846  *      Called with imgp->vp locked.
1847  *      Return 0 for success or error code on failure.
1848  */
1849 int
1850 exec_check_permissions(struct image_params *imgp)
1851 {
1852         struct vnode *vp = imgp->vp;
1853         struct vattr *attr = imgp->attr;
1854         struct thread *td;
1855         int error;
1856
1857         td = curthread;
1858
1859         /* Get file attributes */
1860         error = VOP_GETATTR(vp, attr, td->td_ucred);
1861         if (error)
1862                 return (error);
1863
1864 #ifdef MAC
1865         error = mac_vnode_check_exec(td->td_ucred, imgp->vp, imgp);
1866         if (error)
1867                 return (error);
1868 #endif
1869
1870         /*
1871          * 1) Check if file execution is disabled for the filesystem that
1872          *    this file resides on.
1873          * 2) Ensure that at least one execute bit is on. Otherwise, a
1874          *    privileged user will always succeed, and we don't want this
1875          *    to happen unless the file really is executable.
1876          * 3) Ensure that the file is a regular file.
1877          */
1878         if ((vp->v_mount->mnt_flag & MNT_NOEXEC) ||
1879             (attr->va_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0 ||
1880             (attr->va_type != VREG))
1881                 return (EACCES);
1882
1883         /*
1884          * Zero length files can't be exec'd
1885          */
1886         if (attr->va_size == 0)
1887                 return (ENOEXEC);
1888
1889         /*
1890          *  Check for execute permission to file based on current credentials.
1891          */
1892         error = VOP_ACCESS(vp, VEXEC, td->td_ucred, td);
1893         if (error)
1894                 return (error);
1895
1896         /*
1897          * Check number of open-for-writes on the file and deny execution
1898          * if there are any.
1899          *
1900          * Add a text reference now so no one can write to the
1901          * executable while we're activating it.
1902          *
1903          * Remember if this was set before and unset it in case this is not
1904          * actually an executable image.
1905          */
1906         error = VOP_SET_TEXT(vp);
1907         if (error != 0)
1908                 return (error);
1909         imgp->textset = true;
1910
1911         /*
1912          * Call filesystem specific open routine (which does nothing in the
1913          * general case).
1914          */
1915         error = VOP_OPEN(vp, FREAD, td->td_ucred, td, NULL);
1916         if (error == 0)
1917                 imgp->opened = true;
1918         return (error);
1919 }
1920
1921 /*
1922  * Exec handler registration
1923  */
1924 int
1925 exec_register(const struct execsw *execsw_arg)
1926 {
1927         const struct execsw **es, **xs, **newexecsw;
1928         u_int count = 2;        /* New slot and trailing NULL */
1929
1930         if (execsw)
1931                 for (es = execsw; *es; es++)
1932                         count++;
1933         newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
1934         xs = newexecsw;
1935         if (execsw)
1936                 for (es = execsw; *es; es++)
1937                         *xs++ = *es;
1938         *xs++ = execsw_arg;
1939         *xs = NULL;
1940         if (execsw)
1941                 free(execsw, M_TEMP);
1942         execsw = newexecsw;
1943         return (0);
1944 }
1945
1946 int
1947 exec_unregister(const struct execsw *execsw_arg)
1948 {
1949         const struct execsw **es, **xs, **newexecsw;
1950         int count = 1;
1951
1952         if (execsw == NULL)
1953                 panic("unregister with no handlers left?\n");
1954
1955         for (es = execsw; *es; es++) {
1956                 if (*es == execsw_arg)
1957                         break;
1958         }
1959         if (*es == NULL)
1960                 return (ENOENT);
1961         for (es = execsw; *es; es++)
1962                 if (*es != execsw_arg)
1963                         count++;
1964         newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
1965         xs = newexecsw;
1966         for (es = execsw; *es; es++)
1967                 if (*es != execsw_arg)
1968                         *xs++ = *es;
1969         *xs = NULL;
1970         if (execsw)
1971                 free(execsw, M_TEMP);
1972         execsw = newexecsw;
1973         return (0);
1974 }
1975
1976 /*
1977  * Write out a core segment to the compression stream.
1978  */
1979 static int
1980 compress_chunk(struct coredump_params *cp, char *base, char *buf, size_t len)
1981 {
1982         size_t chunk_len;
1983         int error;
1984
1985         while (len > 0) {
1986                 chunk_len = MIN(len, CORE_BUF_SIZE);
1987
1988                 /*
1989                  * We can get EFAULT error here.
1990                  * In that case zero out the current chunk of the segment.
1991                  */
1992                 error = copyin(base, buf, chunk_len);
1993                 if (error != 0)
1994                         bzero(buf, chunk_len);
1995                 error = compressor_write(cp->comp, buf, chunk_len);
1996                 if (error != 0)
1997                         break;
1998                 base += chunk_len;
1999                 len -= chunk_len;
2000         }
2001         return (error);
2002 }
2003
2004 int
2005 core_write(struct coredump_params *cp, const void *base, size_t len,
2006     off_t offset, enum uio_seg seg, size_t *resid)
2007 {
2008
2009         return (vn_rdwr_inchunks(UIO_WRITE, cp->vp, __DECONST(void *, base),
2010             len, offset, seg, IO_UNIT | IO_DIRECT | IO_RANGELOCKED,
2011             cp->active_cred, cp->file_cred, resid, cp->td));
2012 }
2013
2014 int
2015 core_output(char *base, size_t len, off_t offset, struct coredump_params *cp,
2016     void *tmpbuf)
2017 {
2018         vm_map_t map;
2019         struct mount *mp;
2020         size_t resid, runlen;
2021         int error;
2022         bool success;
2023
2024         KASSERT((uintptr_t)base % PAGE_SIZE == 0,
2025             ("%s: user address %p is not page-aligned", __func__, base));
2026
2027         if (cp->comp != NULL)
2028                 return (compress_chunk(cp, base, tmpbuf, len));
2029
2030         map = &cp->td->td_proc->p_vmspace->vm_map;
2031         for (; len > 0; base += runlen, offset += runlen, len -= runlen) {
2032                 /*
2033                  * Attempt to page in all virtual pages in the range.  If a
2034                  * virtual page is not backed by the pager, it is represented as
2035                  * a hole in the file.  This can occur with zero-filled
2036                  * anonymous memory or truncated files, for example.
2037                  */
2038                 for (runlen = 0; runlen < len; runlen += PAGE_SIZE) {
2039                         if (core_dump_can_intr && curproc_sigkilled())
2040                                 return (EINTR);
2041                         error = vm_fault(map, (uintptr_t)base + runlen,
2042                             VM_PROT_READ, VM_FAULT_NOFILL, NULL);
2043                         if (runlen == 0)
2044                                 success = error == KERN_SUCCESS;
2045                         else if ((error == KERN_SUCCESS) != success)
2046                                 break;
2047                 }
2048
2049                 if (success) {
2050                         error = core_write(cp, base, runlen, offset,
2051                             UIO_USERSPACE, &resid);
2052                         if (error != 0) {
2053                                 if (error != EFAULT)
2054                                         break;
2055
2056                                 /*
2057                                  * EFAULT may be returned if the user mapping
2058                                  * could not be accessed, e.g., because a mapped
2059                                  * file has been truncated.  Skip the page if no
2060                                  * progress was made, to protect against a
2061                                  * hypothetical scenario where vm_fault() was
2062                                  * successful but core_write() returns EFAULT
2063                                  * anyway.
2064                                  */
2065                                 runlen -= resid;
2066                                 if (runlen == 0) {
2067                                         success = false;
2068                                         runlen = PAGE_SIZE;
2069                                 }
2070                         }
2071                 }
2072                 if (!success) {
2073                         error = vn_start_write(cp->vp, &mp, V_WAIT);
2074                         if (error != 0)
2075                                 break;
2076                         vn_lock(cp->vp, LK_EXCLUSIVE | LK_RETRY);
2077                         error = vn_truncate_locked(cp->vp, offset + runlen,
2078                             false, cp->td->td_ucred);
2079                         VOP_UNLOCK(cp->vp);
2080                         vn_finished_write(mp);
2081                         if (error != 0)
2082                                 break;
2083                 }
2084         }
2085         return (error);
2086 }
2087
2088 /*
2089  * Drain into a core file.
2090  */
2091 int
2092 sbuf_drain_core_output(void *arg, const char *data, int len)
2093 {
2094         struct coredump_params *cp;
2095         struct proc *p;
2096         int error, locked;
2097
2098         cp = arg;
2099         p = cp->td->td_proc;
2100
2101         /*
2102          * Some kern_proc out routines that print to this sbuf may
2103          * call us with the process lock held. Draining with the
2104          * non-sleepable lock held is unsafe. The lock is needed for
2105          * those routines when dumping a live process. In our case we
2106          * can safely release the lock before draining and acquire
2107          * again after.
2108          */
2109         locked = PROC_LOCKED(p);
2110         if (locked)
2111                 PROC_UNLOCK(p);
2112         if (cp->comp != NULL)
2113                 error = compressor_write(cp->comp, __DECONST(char *, data), len);
2114         else
2115                 error = core_write(cp, __DECONST(void *, data), len, cp->offset,
2116                     UIO_SYSSPACE, NULL);
2117         if (locked)
2118                 PROC_LOCK(p);
2119         if (error != 0)
2120                 return (-error);
2121         cp->offset += len;
2122         return (len);
2123 }