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