xref: /freebsd/sys/kern/kern_exec.c (revision 1c69690319c5bb7deae6ce1add6ea25bb40b3b91)
19454b2d8SWarner Losh /*-
28a36da99SPedro F. Giffuni  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
38a36da99SPedro F. Giffuni  *
426f9a767SRodney W. Grimes  * Copyright (c) 1993, David Greenman
526f9a767SRodney W. Grimes  * All rights reserved.
6df8bae1dSRodney W. Grimes  *
7df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
8df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
9df8bae1dSRodney W. Grimes  * are met:
10df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
11df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
12df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
13df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
14df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15df8bae1dSRodney W. Grimes  *
1626f9a767SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1926f9a767SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
27df8bae1dSRodney W. Grimes  */
28df8bae1dSRodney W. Grimes 
29677b542eSDavid E. O'Brien #include <sys/cdefs.h>
30677b542eSDavid E. O'Brien __FBSDID("$FreeBSD$");
31677b542eSDavid E. O'Brien 
3212bc222eSJonathan Anderson #include "opt_capsicum.h"
334da0d332SPeter Wemm #include "opt_hwpmc_hooks.h"
341e9b3d91SPeter Wemm #include "opt_ktrace.h"
35f8a47341SAlan Cox #include "opt_vm.h"
361e9b3d91SPeter Wemm 
37df8bae1dSRodney W. Grimes #include <sys/param.h>
3826f9a767SRodney W. Grimes #include <sys/systm.h>
3926f9a767SRodney W. Grimes #include <sys/acct.h>
40f1c3adefSMark Johnston #include <sys/asan.h>
41eeeaa7baSMark Johnston #include <sys/capsicum.h>
4233621dfcSEdward Tomasz Napierala #include <sys/compressor.h>
43eeeaa7baSMark Johnston #include <sys/eventhandler.h>
4426f9a767SRodney W. Grimes #include <sys/exec.h>
45eeeaa7baSMark Johnston #include <sys/fcntl.h>
46eeeaa7baSMark Johnston #include <sys/filedesc.h>
4726f9a767SRodney W. Grimes #include <sys/imgact.h>
48e1743d02SSøren Schmidt #include <sys/imgact_elf.h>
49eeeaa7baSMark Johnston #include <sys/kernel.h>
50eeeaa7baSMark Johnston #include <sys/lock.h>
51333ea485SGuido van Rooij #include <sys/malloc.h>
52ec492b13SMark Johnston #include <sys/mman.h>
53eeeaa7baSMark Johnston #include <sys/mount.h>
54eeeaa7baSMark Johnston #include <sys/mutex.h>
55eeeaa7baSMark Johnston #include <sys/namei.h>
56acd3428bSRobert Watson #include <sys/priv.h>
57a794e791SBruce Evans #include <sys/proc.h>
588d570f64SJohn Baldwin #include <sys/ptrace.h>
59b7924341SAndrew Turner #include <sys/reg.h>
606004362eSDavid Schultz #include <sys/resourcevar.h>
6189f6b863SAttilio Rao #include <sys/rwlock.h>
6244ad5475SJohn Baldwin #include <sys/sched.h>
635d217f17SJohn Birrell #include <sys/sdt.h>
6459c8bc40SAlan Cox #include <sys/sf_buf.h>
65797f2d22SPoul-Henning Kamp #include <sys/shm.h>
66eeeaa7baSMark Johnston #include <sys/signalvar.h>
67ec492b13SMark Johnston #include <sys/smp.h>
68dfa7fd1dSEdward Tomasz Napierala #include <sys/stat.h>
69eeeaa7baSMark Johnston #include <sys/syscallsubr.h>
70eeeaa7baSMark Johnston #include <sys/sysctl.h>
71eeeaa7baSMark Johnston #include <sys/sysent.h>
72eeeaa7baSMark Johnston #include <sys/sysproto.h>
73e68c6191SKonstantin Belousov #include <sys/timers.h>
74af29f399SDmitry Chagin #include <sys/umtxvar.h>
75eeeaa7baSMark Johnston #include <sys/vnode.h>
76eeeaa7baSMark Johnston #include <sys/wait.h>
77c781aea8SPeter Wemm #ifdef KTRACE
78c781aea8SPeter Wemm #include <sys/ktrace.h>
79c781aea8SPeter Wemm #endif
8026f9a767SRodney W. Grimes 
8126f9a767SRodney W. Grimes #include <vm/vm.h>
82efeaf95aSDavid Greenman #include <vm/vm_param.h>
83efeaf95aSDavid Greenman #include <vm/pmap.h>
841616db3cSJohn Dyson #include <vm/vm_page.h>
85efeaf95aSDavid Greenman #include <vm/vm_map.h>
8626f9a767SRodney W. Grimes #include <vm/vm_kern.h>
87efeaf95aSDavid Greenman #include <vm/vm_extern.h>
881ebd0c59SDavid Greenman #include <vm/vm_object.h>
891616db3cSJohn Dyson #include <vm/vm_pager.h>
9026f9a767SRodney W. Grimes 
91ebccf1e3SJoseph Koshy #ifdef	HWPMC_HOOKS
92ebccf1e3SJoseph Koshy #include <sys/pmckern.h>
93ebccf1e3SJoseph Koshy #endif
94ebccf1e3SJoseph Koshy 
95ae1078d6SWayne Salamon #include <security/audit/audit.h>
96aed55708SRobert Watson #include <security/mac/mac_framework.h>
97ae1078d6SWayne Salamon 
985d217f17SJohn Birrell #ifdef KDTRACE_HOOKS
995d217f17SJohn Birrell #include <sys/dtrace_bsd.h>
1005d217f17SJohn Birrell dtrace_execexit_func_t	dtrace_fasttrap_exec;
1015d217f17SJohn Birrell #endif
1025d217f17SJohn Birrell 
1035d217f17SJohn Birrell SDT_PROVIDER_DECLARE(proc);
10436160958SMark Johnston SDT_PROBE_DEFINE1(proc, , , exec, "char *");
10536160958SMark Johnston SDT_PROBE_DEFINE1(proc, , , exec__failure, "int");
10636160958SMark Johnston SDT_PROBE_DEFINE1(proc, , , exec__success, "char *");
1075d217f17SJohn Birrell 
108b9df5231SPoul-Henning Kamp MALLOC_DEFINE(M_PARGS, "proc-args", "Process arguments");
109b9df5231SPoul-Henning Kamp 
110bcb60d52SConrad Meyer int coredump_pack_fileinfo = 1;
111bcb60d52SConrad Meyer SYSCTL_INT(_kern, OID_AUTO, coredump_pack_fileinfo, CTLFLAG_RWTUN,
112bcb60d52SConrad Meyer     &coredump_pack_fileinfo, 0,
113bcb60d52SConrad Meyer     "Enable file path packing in 'procstat -f' coredump notes");
114bcb60d52SConrad Meyer 
115e6b95927SConrad Meyer int coredump_pack_vmmapinfo = 1;
116e6b95927SConrad Meyer SYSCTL_INT(_kern, OID_AUTO, coredump_pack_vmmapinfo, CTLFLAG_RWTUN,
117e6b95927SConrad Meyer     &coredump_pack_vmmapinfo, 0,
118e6b95927SConrad Meyer     "Enable file path packing in 'procstat -v' coredump notes");
119e6b95927SConrad Meyer 
12005ba50f5SJake Burkholder static int sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS);
12105ba50f5SJake Burkholder static int sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS);
122a97d6971SDawid Gorecki static int sysctl_kern_stacktop(SYSCTL_HANDLER_ARGS);
1235dadd17bSJake Burkholder static int sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS);
124610ecfe0SMaxim Sobolev static int do_execve(struct thread *td, struct image_args *args,
125aaf78c16SKonstantin Belousov     struct mac *mac_p, struct vmspace *oldvmspace);
12605ba50f5SJake Burkholder 
1279701cd40SJohn Baldwin /* XXX This should be vm_size_t. */
12853dc58f2SMateusz Guzik SYSCTL_PROC(_kern, KERN_PS_STRINGS, ps_strings, CTLTYPE_ULONG|CTLFLAG_RD|
129b05ca429SPawel Biernacki     CTLFLAG_CAPRD|CTLFLAG_MPSAFE, NULL, 0, sysctl_kern_ps_strings, "LU",
130b05ca429SPawel Biernacki     "Location of process' ps_strings structure");
131486bddb0SDoug Rabson 
1329701cd40SJohn Baldwin /* XXX This should be vm_size_t. */
133ff66f6a4SRobert Watson SYSCTL_PROC(_kern, KERN_USRSTACK, usrstack, CTLTYPE_ULONG|CTLFLAG_RD|
134b05ca429SPawel Biernacki     CTLFLAG_CAPRD|CTLFLAG_MPSAFE, NULL, 0, sysctl_kern_usrstack, "LU",
135b05ca429SPawel Biernacki     "Top of process stack");
13699ac3bc8SPeter Wemm 
137a97d6971SDawid Gorecki SYSCTL_PROC(_kern, KERN_STACKTOP, stacktop, CTLTYPE_ULONG | CTLFLAG_RD |
138a97d6971SDawid Gorecki     CTLFLAG_CAPRD | CTLFLAG_MPSAFE, NULL, 0, sysctl_kern_stacktop, "LU",
139a97d6971SDawid Gorecki     "Top of process stack with stack gap.");
140a97d6971SDawid Gorecki 
14153dc58f2SMateusz Guzik SYSCTL_PROC(_kern, OID_AUTO, stackprot, CTLTYPE_INT|CTLFLAG_RD|CTLFLAG_MPSAFE,
142b05ca429SPawel Biernacki     NULL, 0, sysctl_kern_stackprot, "I",
143b05ca429SPawel Biernacki     "Stack memory permissions");
1445dadd17bSJake Burkholder 
145b9df5231SPoul-Henning Kamp u_long ps_arg_cache_limit = PAGE_SIZE / 16;
146c3699b5fSPeter Wemm SYSCTL_ULONG(_kern, OID_AUTO, ps_arg_cache_limit, CTLFLAG_RW,
147b05ca429SPawel Biernacki     &ps_arg_cache_limit, 0,
148b05ca429SPawel Biernacki     "Process' command line characters cache limit");
149b9df5231SPoul-Henning Kamp 
150eda6009cSKonstantin Belousov static int disallow_high_osrel;
151eda6009cSKonstantin Belousov SYSCTL_INT(_kern, OID_AUTO, disallow_high_osrel, CTLFLAG_RW,
152eda6009cSKonstantin Belousov     &disallow_high_osrel, 0,
153eda6009cSKonstantin Belousov     "Disallow execution of binaries built for higher version of the world");
154eda6009cSKonstantin Belousov 
155878adb85SBjoern A. Zeeb static int map_at_zero = 0;
156af3b2549SHans Petter Selasky SYSCTL_INT(_security_bsd, OID_AUTO, map_at_zero, CTLFLAG_RWTUN, &map_at_zero, 0,
157878adb85SBjoern A. Zeeb     "Permit processes to map an object at virtual address 0.");
158878adb85SBjoern A. Zeeb 
159b5cadc64SKonstantin Belousov static int core_dump_can_intr = 1;
160b5cadc64SKonstantin Belousov SYSCTL_INT(_kern, OID_AUTO, core_dump_can_intr, CTLFLAG_RWTUN,
161b5cadc64SKonstantin Belousov     &core_dump_can_intr, 0,
162b5cadc64SKonstantin Belousov     "Core dumping interruptible with SIGKILL");
163b5cadc64SKonstantin Belousov 
16405ba50f5SJake Burkholder static int
16505ba50f5SJake Burkholder sysctl_kern_ps_strings(SYSCTL_HANDLER_ARGS)
16605ba50f5SJake Burkholder {
16705ba50f5SJake Burkholder 	struct proc *p;
168df7c361eSPeter Wemm 	int error;
16905ba50f5SJake Burkholder 
17005ba50f5SJake Burkholder 	p = curproc;
171a7bc3102SPeter Wemm #ifdef SCTL_MASK32
172a7bc3102SPeter Wemm 	if (req->flags & SCTL_MASK32) {
173df7c361eSPeter Wemm 		unsigned int val;
174df7c361eSPeter Wemm 		val = (unsigned int)p->p_sysent->sv_psstrings;
175df7c361eSPeter Wemm 		error = SYSCTL_OUT(req, &val, sizeof(val));
176df7c361eSPeter Wemm 	} else
177df7c361eSPeter Wemm #endif
178df7c361eSPeter Wemm 		error = SYSCTL_OUT(req, &p->p_sysent->sv_psstrings,
179df7c361eSPeter Wemm 		   sizeof(p->p_sysent->sv_psstrings));
180df7c361eSPeter Wemm 	return error;
18105ba50f5SJake Burkholder }
18205ba50f5SJake Burkholder 
18305ba50f5SJake Burkholder static int
18405ba50f5SJake Burkholder sysctl_kern_usrstack(SYSCTL_HANDLER_ARGS)
18505ba50f5SJake Burkholder {
18605ba50f5SJake Burkholder 	struct proc *p;
187df7c361eSPeter Wemm 	int error;
18805ba50f5SJake Burkholder 
18905ba50f5SJake Burkholder 	p = curproc;
190a7bc3102SPeter Wemm #ifdef SCTL_MASK32
191a7bc3102SPeter Wemm 	if (req->flags & SCTL_MASK32) {
192df7c361eSPeter Wemm 		unsigned int val;
193df7c361eSPeter Wemm 		val = (unsigned int)p->p_sysent->sv_usrstack;
194df7c361eSPeter Wemm 		error = SYSCTL_OUT(req, &val, sizeof(val));
195df7c361eSPeter Wemm 	} else
196df7c361eSPeter Wemm #endif
197df7c361eSPeter Wemm 		error = SYSCTL_OUT(req, &p->p_sysent->sv_usrstack,
198df7c361eSPeter Wemm 		    sizeof(p->p_sysent->sv_usrstack));
199a97d6971SDawid Gorecki 	return (error);
200a97d6971SDawid Gorecki }
201a97d6971SDawid Gorecki 
202a97d6971SDawid Gorecki static int
203a97d6971SDawid Gorecki sysctl_kern_stacktop(SYSCTL_HANDLER_ARGS)
204a97d6971SDawid Gorecki {
205a97d6971SDawid Gorecki 	vm_offset_t stacktop;
206a97d6971SDawid Gorecki 	struct proc *p;
207a97d6971SDawid Gorecki 	int error;
208a97d6971SDawid Gorecki 
209a97d6971SDawid Gorecki 	p = curproc;
210a97d6971SDawid Gorecki #ifdef SCTL_MASK32
211a97d6971SDawid Gorecki 	if (req->flags & SCTL_MASK32) {
212a97d6971SDawid Gorecki 		unsigned int val;
213a97d6971SDawid Gorecki 
214a97d6971SDawid Gorecki 		val = (unsigned int)(p->p_sysent->sv_usrstack -
215a97d6971SDawid Gorecki 		    p->p_vmspace->vm_stkgap);
216a97d6971SDawid Gorecki 		error = SYSCTL_OUT(req, &val, sizeof(val));
217a97d6971SDawid Gorecki 	} else
218a97d6971SDawid Gorecki #endif
219a97d6971SDawid Gorecki 	{
220a97d6971SDawid Gorecki 		stacktop = p->p_sysent->sv_usrstack - p->p_vmspace->vm_stkgap;
221a97d6971SDawid Gorecki 		error = SYSCTL_OUT(req, &stacktop, sizeof(stacktop));
222a97d6971SDawid Gorecki 	}
223a97d6971SDawid Gorecki 	return (error);
22405ba50f5SJake Burkholder }
22505ba50f5SJake Burkholder 
2265dadd17bSJake Burkholder static int
2275dadd17bSJake Burkholder sysctl_kern_stackprot(SYSCTL_HANDLER_ARGS)
2285dadd17bSJake Burkholder {
2295dadd17bSJake Burkholder 	struct proc *p;
2305dadd17bSJake Burkholder 
2315dadd17bSJake Burkholder 	p = curproc;
2325dadd17bSJake Burkholder 	return (SYSCTL_OUT(req, &p->p_sysent->sv_stackprot,
2335dadd17bSJake Burkholder 	    sizeof(p->p_sysent->sv_stackprot)));
2345dadd17bSJake Burkholder }
2355dadd17bSJake Burkholder 
23699ac3bc8SPeter Wemm /*
237aa855a59SPeter Wemm  * Each of the items is a pointer to a `const struct execsw', hence the
238aa855a59SPeter Wemm  * double pointer here.
239df8bae1dSRodney W. Grimes  */
240aa855a59SPeter Wemm static const struct execsw **execsw;
24126f9a767SRodney W. Grimes 
242ca46e90eSBruce Evans #ifndef _SYS_SYSPROTO_H_
243ca46e90eSBruce Evans struct execve_args {
244ca46e90eSBruce Evans 	char    *fname;
245ca46e90eSBruce Evans 	char    **argv;
246ca46e90eSBruce Evans 	char    **envv;
247ca46e90eSBruce Evans };
248ca46e90eSBruce Evans #endif
249ca46e90eSBruce Evans 
250ca46e90eSBruce Evans int
2517b445033SKonstantin Belousov sys_execve(struct thread *td, struct execve_args *uap)
252ca46e90eSBruce Evans {
253610ecfe0SMaxim Sobolev 	struct image_args args;
2547b445033SKonstantin Belousov 	struct vmspace *oldvmspace;
2557b445033SKonstantin Belousov 	int error;
256ca46e90eSBruce Evans 
2577b445033SKonstantin Belousov 	error = pre_execve(td, &oldvmspace);
2587b445033SKonstantin Belousov 	if (error != 0)
2597b445033SKonstantin Belousov 		return (error);
260610ecfe0SMaxim Sobolev 	error = exec_copyin_args(&args, uap->fname, UIO_USERSPACE,
261610ecfe0SMaxim Sobolev 	    uap->argv, uap->envv);
262610ecfe0SMaxim Sobolev 	if (error == 0)
263aaf78c16SKonstantin Belousov 		error = kern_execve(td, &args, NULL, oldvmspace);
2647b445033SKonstantin Belousov 	post_execve(td, error, oldvmspace);
265275c821dSKyle Evans 	AUDIT_SYSCALL_EXIT(error == EJUSTRETURN ? 0 : error, td);
266610ecfe0SMaxim Sobolev 	return (error);
267ca46e90eSBruce Evans }
268ca46e90eSBruce Evans 
269ca46e90eSBruce Evans #ifndef _SYS_SYSPROTO_H_
270632dbc19SKonstantin Belousov struct fexecve_args {
271632dbc19SKonstantin Belousov 	int	fd;
272632dbc19SKonstantin Belousov 	char	**argv;
273632dbc19SKonstantin Belousov 	char	**envv;
274698dda67SConrad Meyer };
275632dbc19SKonstantin Belousov #endif
276632dbc19SKonstantin Belousov int
2778451d0ddSKip Macy sys_fexecve(struct thread *td, struct fexecve_args *uap)
278632dbc19SKonstantin Belousov {
279632dbc19SKonstantin Belousov 	struct image_args args;
2807b445033SKonstantin Belousov 	struct vmspace *oldvmspace;
2817b445033SKonstantin Belousov 	int error;
282632dbc19SKonstantin Belousov 
2837b445033SKonstantin Belousov 	error = pre_execve(td, &oldvmspace);
2847b445033SKonstantin Belousov 	if (error != 0)
2857b445033SKonstantin Belousov 		return (error);
286632dbc19SKonstantin Belousov 	error = exec_copyin_args(&args, NULL, UIO_SYSSPACE,
287632dbc19SKonstantin Belousov 	    uap->argv, uap->envv);
288632dbc19SKonstantin Belousov 	if (error == 0) {
289632dbc19SKonstantin Belousov 		args.fd = uap->fd;
290aaf78c16SKonstantin Belousov 		error = kern_execve(td, &args, NULL, oldvmspace);
291632dbc19SKonstantin Belousov 	}
2927b445033SKonstantin Belousov 	post_execve(td, error, oldvmspace);
293275c821dSKyle Evans 	AUDIT_SYSCALL_EXIT(error == EJUSTRETURN ? 0 : error, td);
294632dbc19SKonstantin Belousov 	return (error);
295632dbc19SKonstantin Belousov }
296632dbc19SKonstantin Belousov 
297632dbc19SKonstantin Belousov #ifndef _SYS_SYSPROTO_H_
298ca46e90eSBruce Evans struct __mac_execve_args {
299ca46e90eSBruce Evans 	char	*fname;
300ca46e90eSBruce Evans 	char	**argv;
301ca46e90eSBruce Evans 	char	**envv;
302ca46e90eSBruce Evans 	struct mac	*mac_p;
303ca46e90eSBruce Evans };
304ca46e90eSBruce Evans #endif
305ca46e90eSBruce Evans 
306ca46e90eSBruce Evans int
3077b445033SKonstantin Belousov sys___mac_execve(struct thread *td, struct __mac_execve_args *uap)
308ca46e90eSBruce Evans {
309ca46e90eSBruce Evans #ifdef MAC
310610ecfe0SMaxim Sobolev 	struct image_args args;
3117b445033SKonstantin Belousov 	struct vmspace *oldvmspace;
3127b445033SKonstantin Belousov 	int error;
313610ecfe0SMaxim Sobolev 
3147b445033SKonstantin Belousov 	error = pre_execve(td, &oldvmspace);
3157b445033SKonstantin Belousov 	if (error != 0)
3167b445033SKonstantin Belousov 		return (error);
317610ecfe0SMaxim Sobolev 	error = exec_copyin_args(&args, uap->fname, UIO_USERSPACE,
318610ecfe0SMaxim Sobolev 	    uap->argv, uap->envv);
319610ecfe0SMaxim Sobolev 	if (error == 0)
320aaf78c16SKonstantin Belousov 		error = kern_execve(td, &args, uap->mac_p, oldvmspace);
3217b445033SKonstantin Belousov 	post_execve(td, error, oldvmspace);
322275c821dSKyle Evans 	AUDIT_SYSCALL_EXIT(error == EJUSTRETURN ? 0 : error, td);
323610ecfe0SMaxim Sobolev 	return (error);
324ca46e90eSBruce Evans #else
325ca46e90eSBruce Evans 	return (ENOSYS);
326ca46e90eSBruce Evans #endif
327ca46e90eSBruce Evans }
328ca46e90eSBruce Evans 
32984e0b075SDavid Xu int
3307b445033SKonstantin Belousov pre_execve(struct thread *td, struct vmspace **oldvmspace)
331906ac69dSDavid Xu {
3327b445033SKonstantin Belousov 	struct proc *p;
333906ac69dSDavid Xu 	int error;
334906ac69dSDavid Xu 
3357b445033SKonstantin Belousov 	KASSERT(td == curthread, ("non-current thread %p", td));
3367b445033SKonstantin Belousov 	error = 0;
3377b445033SKonstantin Belousov 	p = td->td_proc;
3387b445033SKonstantin Belousov 	if ((p->p_flag & P_HADTHREADS) != 0) {
339906ac69dSDavid Xu 		PROC_LOCK(p);
3407b445033SKonstantin Belousov 		if (thread_single(p, SINGLE_BOUNDARY) != 0)
3417b445033SKonstantin Belousov 			error = ERESTART;
342906ac69dSDavid Xu 		PROC_UNLOCK(p);
343906ac69dSDavid Xu 	}
3447b445033SKonstantin Belousov 	KASSERT(error != 0 || (td->td_pflags & TDP_EXECVMSPC) == 0,
3457b445033SKonstantin Belousov 	    ("nested execve"));
3467b445033SKonstantin Belousov 	*oldvmspace = p->p_vmspace;
3477b445033SKonstantin Belousov 	return (error);
3487b445033SKonstantin Belousov }
349906ac69dSDavid Xu 
3507b445033SKonstantin Belousov void
3517b445033SKonstantin Belousov post_execve(struct thread *td, int error, struct vmspace *oldvmspace)
3527b445033SKonstantin Belousov {
3537b445033SKonstantin Belousov 	struct proc *p;
354906ac69dSDavid Xu 
3557b445033SKonstantin Belousov 	KASSERT(td == curthread, ("non-current thread %p", td));
3567b445033SKonstantin Belousov 	p = td->td_proc;
3577b445033SKonstantin Belousov 	if ((p->p_flag & P_HADTHREADS) != 0) {
358906ac69dSDavid Xu 		PROC_LOCK(p);
359906ac69dSDavid Xu 		/*
360906ac69dSDavid Xu 		 * If success, we upgrade to SINGLE_EXIT state to
361906ac69dSDavid Xu 		 * force other threads to suicide.
362906ac69dSDavid Xu 		 */
363814629ddSEd Schouten 		if (error == EJUSTRETURN)
3646ddcc233SKonstantin Belousov 			thread_single(p, SINGLE_EXIT);
365906ac69dSDavid Xu 		else
3666ddcc233SKonstantin Belousov 			thread_single_end(p, SINGLE_BOUNDARY);
367906ac69dSDavid Xu 		PROC_UNLOCK(p);
368906ac69dSDavid Xu 	}
369aaf78c16SKonstantin Belousov 	exec_cleanup(td, oldvmspace);
3707b445033SKonstantin Belousov }
371906ac69dSDavid Xu 
3727b445033SKonstantin Belousov /*
373aaf78c16SKonstantin Belousov  * kern_execve() has the astonishing property of not always returning to
3747b445033SKonstantin Belousov  * the caller.  If sufficiently bad things happen during the call to
3757b445033SKonstantin Belousov  * do_execve(), it can end up calling exit1(); as a result, callers must
3767b445033SKonstantin Belousov  * avoid doing anything which they might need to undo (e.g., allocating
3777b445033SKonstantin Belousov  * memory).
3787b445033SKonstantin Belousov  */
3797b445033SKonstantin Belousov int
380aaf78c16SKonstantin Belousov kern_execve(struct thread *td, struct image_args *args, struct mac *mac_p,
381aaf78c16SKonstantin Belousov     struct vmspace *oldvmspace)
3827b445033SKonstantin Belousov {
3837b445033SKonstantin Belousov 
38446dd801aSColin Percival 	TSEXEC(td->td_proc->p_pid, args->begin_argv);
3857b445033SKonstantin Belousov 	AUDIT_ARG_ARGV(args->begin_argv, args->argc,
386f373437aSBrooks Davis 	    exec_args_get_begin_envv(args) - args->begin_argv);
387f373437aSBrooks Davis 	AUDIT_ARG_ENVV(exec_args_get_begin_envv(args), args->envc,
388f373437aSBrooks Davis 	    args->endp - exec_args_get_begin_envv(args));
389aaf78c16SKonstantin Belousov 	return (do_execve(td, args, mac_p, oldvmspace));
390906ac69dSDavid Xu }
391906ac69dSDavid Xu 
39219e6043aSKonstantin Belousov static void
39319e6043aSKonstantin Belousov execve_nosetid(struct image_params *imgp)
39419e6043aSKonstantin Belousov {
39519e6043aSKonstantin Belousov 	imgp->credential_setid = false;
39619e6043aSKonstantin Belousov 	if (imgp->newcred != NULL) {
39719e6043aSKonstantin Belousov 		crfree(imgp->newcred);
39819e6043aSKonstantin Belousov 		imgp->newcred = NULL;
39919e6043aSKonstantin Belousov 	}
40019e6043aSKonstantin Belousov }
40119e6043aSKonstantin Belousov 
40226f9a767SRodney W. Grimes /*
403450ffb44SRobert Watson  * In-kernel implementation of execve().  All arguments are assumed to be
404450ffb44SRobert Watson  * userspace pointers from the passed thread.
40526f9a767SRodney W. Grimes  */
406450ffb44SRobert Watson static int
407aaf78c16SKonstantin Belousov do_execve(struct thread *td, struct image_args *args, struct mac *mac_p,
408aaf78c16SKonstantin Belousov     struct vmspace *oldvmspace)
409df8bae1dSRodney W. Grimes {
410b40ce416SJulian Elischer 	struct proc *p = td->td_proc;
41169c9eff8SEd Schouten 	struct nameidata nd;
412881010f0SBryan Drewery 	struct ucred *oldcred;
413350d5181SMateusz Guzik 	struct uidinfo *euip = NULL;
41431174518SJohn Baldwin 	uintptr_t stack_base;
415c52007c2SDavid Greenman 	struct image_params image_params, *imgp;
4169f5c1d19SDiomidis Spinellis 	struct vattr attr;
4174d77a549SAlfred Perlstein 	int (*img_first)(struct image_params *);
41869be5db9SAlfred Perlstein 	struct pargs *oldargs = NULL, *newargs = NULL;
419cda68844SMateusz Guzik 	struct sigacts *oldsigacts = NULL, *newsigacts = NULL;
4206c84de02SJohn Baldwin #ifdef KTRACE
4211762f674SKonstantin Belousov 	struct ktr_io_params *kiop;
4226c84de02SJohn Baldwin #endif
423351d5f7fSKonstantin Belousov 	struct vnode *oldtextvp, *newtextvp;
424351d5f7fSKonstantin Belousov 	struct vnode *oldtextdvp, *newtextdvp;
425351d5f7fSKonstantin Belousov 	char *oldbinname, *newbinname;
4269d58243fSKonstantin Belousov 	bool credential_changing;
427ccafe7ebSRobert Watson #ifdef MAC
4286356dba0SRobert Watson 	struct label *interpvplabel = NULL;
4299d58243fSKonstantin Belousov 	bool will_transition;
430ccafe7ebSRobert Watson #endif
43115139246SJoseph Koshy #ifdef HWPMC_HOOKS
43215139246SJoseph Koshy 	struct pmckern_procexec pe;
43315139246SJoseph Koshy #endif
43401a2b567SKonstantin Belousov 	int error, i, orig_osrel;
43501a2b567SKonstantin Belousov 	uint32_t orig_fctl0;
436615f22b2SDmitry Chagin 	Elf_Brandinfo *orig_brandinfo;
4370c10648fSKonstantin Belousov 	size_t freepath_size;
438632dbc19SKonstantin Belousov 	static const char fexecv_proc_title[] = "(fexecv)";
43926f9a767SRodney W. Grimes 
440c52007c2SDavid Greenman 	imgp = &image_params;
441351d5f7fSKonstantin Belousov 	oldtextvp = oldtextdvp = NULL;
442351d5f7fSKonstantin Belousov 	newtextvp = newtextdvp = NULL;
443351d5f7fSKonstantin Belousov 	newbinname = oldbinname = NULL;
444154f0eccSMateusz Guzik #ifdef KTRACE
4451762f674SKonstantin Belousov 	kiop = NULL;
446154f0eccSMateusz Guzik #endif
447df8bae1dSRodney W. Grimes 
4489ca45e81SDag-Erling Smørgrav 	/*
4499ca45e81SDag-Erling Smørgrav 	 * Lock the process and set the P_INEXEC flag to indicate that
4509ca45e81SDag-Erling Smørgrav 	 * it should be left alone until we're done here.  This is
4519ca45e81SDag-Erling Smørgrav 	 * necessary to avoid race conditions - e.g. in ptrace() -
4529ca45e81SDag-Erling Smørgrav 	 * that might allow a local user to illicitly obtain elevated
4539ca45e81SDag-Erling Smørgrav 	 * privileges.
4549ca45e81SDag-Erling Smørgrav 	 */
4559ca45e81SDag-Erling Smørgrav 	PROC_LOCK(p);
4569ca45e81SDag-Erling Smørgrav 	KASSERT((p->p_flag & P_INEXEC) == 0,
45791f91617SDavid E. O'Brien 	    ("%s(): process already has P_INEXEC flag", __func__));
4589ca45e81SDag-Erling Smørgrav 	p->p_flag |= P_INEXEC;
4599ca45e81SDag-Erling Smørgrav 	PROC_UNLOCK(p);
4609ca45e81SDag-Erling Smørgrav 
461df8bae1dSRodney W. Grimes 	/*
462c52007c2SDavid Greenman 	 * Initialize part of the common data
463df8bae1dSRodney W. Grimes 	 */
4648e572983SMateusz Guzik 	bzero(imgp, sizeof(*imgp));
465c52007c2SDavid Greenman 	imgp->proc = p;
466c52007c2SDavid Greenman 	imgp->attr = &attr;
467610ecfe0SMaxim Sobolev 	imgp->args = args;
468881010f0SBryan Drewery 	oldcred = p->p_ucred;
46901a2b567SKonstantin Belousov 	orig_osrel = p->p_osrel;
47001a2b567SKonstantin Belousov 	orig_fctl0 = p->p_fctl0;
471615f22b2SDmitry Chagin 	orig_brandinfo = p->p_elf_brandinfo;
47226f9a767SRodney W. Grimes 
473670cb89bSRobert Watson #ifdef MAC
474eca8a663SRobert Watson 	error = mac_execve_enter(imgp, mac_p);
475532c491bSJeff Roberson 	if (error)
476670cb89bSRobert Watson 		goto exec_fail;
477670cb89bSRobert Watson #endif
478670cb89bSRobert Watson 
47936160958SMark Johnston 	SDT_PROBE1(proc, , , exec, args->fname);
480e506f34bSCraig Rodrigues 
48126f9a767SRodney W. Grimes interpret:
482632dbc19SKonstantin Belousov 	if (args->fname != NULL) {
48312bc222eSJonathan Anderson #ifdef CAPABILITY_MODE
48412bc222eSJonathan Anderson 		/*
48512bc222eSJonathan Anderson 		 * While capability mode can't reach this point via direct
48612bc222eSJonathan Anderson 		 * path arguments to execve(), we also don't allow
48712bc222eSJonathan Anderson 		 * interpreters to be used in capability mode (for now).
48812bc222eSJonathan Anderson 		 * Catch indirect lookups and return a permissions error.
48912bc222eSJonathan Anderson 		 */
49012bc222eSJonathan Anderson 		if (IN_CAPABILITY_MODE(td)) {
49112bc222eSJonathan Anderson 			error = ECAPMODE;
49212bc222eSJonathan Anderson 			goto exec_fail;
49312bc222eSJonathan Anderson 		}
49412bc222eSJonathan Anderson #endif
495351d5f7fSKonstantin Belousov 
496351d5f7fSKonstantin Belousov 		/*
497351d5f7fSKonstantin Belousov 		 * Translate the file name. namei() returns a vnode
498351d5f7fSKonstantin Belousov 		 * pointer in ni_vp among other things.
499351d5f7fSKonstantin Belousov 		 */
500351d5f7fSKonstantin Belousov 		NDINIT(&nd, LOOKUP, ISOPEN | LOCKLEAF | LOCKSHARED | FOLLOW |
501351d5f7fSKonstantin Belousov 		    SAVENAME | AUDITVNODE1 | WANTPARENT, UIO_SYSSPACE,
502351d5f7fSKonstantin Belousov 		    args->fname, td);
503351d5f7fSKonstantin Belousov 
50469c9eff8SEd Schouten 		error = namei(&nd);
505610ecfe0SMaxim Sobolev 		if (error)
50626f9a767SRodney W. Grimes 			goto exec_fail;
50726f9a767SRodney W. Grimes 
50861617058SMateusz Guzik 		newtextvp = nd.ni_vp;
509351d5f7fSKonstantin Belousov 		newtextdvp = nd.ni_dvp;
510351d5f7fSKonstantin Belousov 		nd.ni_dvp = NULL;
511351d5f7fSKonstantin Belousov 		newbinname = malloc(nd.ni_cnd.cn_namelen + 1, M_PARGS,
512351d5f7fSKonstantin Belousov 		    M_WAITOK);
513351d5f7fSKonstantin Belousov 		memcpy(newbinname, nd.ni_cnd.cn_nameptr, nd.ni_cnd.cn_namelen);
514351d5f7fSKonstantin Belousov 		newbinname[nd.ni_cnd.cn_namelen] = '\0';
51561617058SMateusz Guzik 		imgp->vp = newtextvp;
516351d5f7fSKonstantin Belousov 
517351d5f7fSKonstantin Belousov 		/*
518351d5f7fSKonstantin Belousov 		 * Do the best to calculate the full path to the image file.
519351d5f7fSKonstantin Belousov 		 */
520351d5f7fSKonstantin Belousov 		if (args->fname[0] == '/') {
521351d5f7fSKonstantin Belousov 			imgp->execpath = args->fname;
522351d5f7fSKonstantin Belousov 		} else {
523351d5f7fSKonstantin Belousov 			VOP_UNLOCK(imgp->vp);
524351d5f7fSKonstantin Belousov 			freepath_size = MAXPATHLEN;
525351d5f7fSKonstantin Belousov 			if (vn_fullpath_hardlink(newtextvp, newtextdvp,
526351d5f7fSKonstantin Belousov 			    newbinname, nd.ni_cnd.cn_namelen, &imgp->execpath,
527351d5f7fSKonstantin Belousov 			    &imgp->freepath, &freepath_size) != 0)
528351d5f7fSKonstantin Belousov 				imgp->execpath = args->fname;
529351d5f7fSKonstantin Belousov 			vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
530351d5f7fSKonstantin Belousov 		}
531632dbc19SKonstantin Belousov 	} else {
53214961ba7SRobert Watson 		AUDIT_ARG_FD(args->fd);
533a9d2f8d8SRobert Watson 		/*
534c8e781f6SPawel Jakub Dawidek 		 * Descriptors opened only with O_EXEC or O_RDONLY are allowed.
535a9d2f8d8SRobert Watson 		 */
536143dba3aSKonstantin Belousov 		error = fgetvp_exec(td, args->fd, &cap_fexecve_rights,
537143dba3aSKonstantin Belousov 		    &newtextvp);
538632dbc19SKonstantin Belousov 		if (error)
539632dbc19SKonstantin Belousov 			goto exec_fail;
540351d5f7fSKonstantin Belousov 		if (vn_fullpath(imgp->vp, &imgp->execpath,
541351d5f7fSKonstantin Belousov 		    &imgp->freepath) != 0)
542351d5f7fSKonstantin Belousov 			imgp->execpath = args->fname;
54378022527SKonstantin Belousov 		vn_lock(newtextvp, LK_SHARED | LK_RETRY);
54461617058SMateusz Guzik 		AUDIT_ARG_VNODE1(newtextvp);
54561617058SMateusz Guzik 		imgp->vp = newtextvp;
546632dbc19SKonstantin Belousov 	}
54726f9a767SRodney W. Grimes 
54826f9a767SRodney W. Grimes 	/*
54978022527SKonstantin Belousov 	 * Check file permissions.  Also 'opens' file and sets its vnode to
55078022527SKonstantin Belousov 	 * text mode.
5519022e4adSDavid Greenman 	 */
552c52007c2SDavid Greenman 	error = exec_check_permissions(imgp);
553619eb6e5SJeff Roberson 	if (error)
55426f9a767SRodney W. Grimes 		goto exec_fail_dealloc;
555619eb6e5SJeff Roberson 
5568516dd18SPoul-Henning Kamp 	imgp->object = imgp->vp->v_object;
5578516dd18SPoul-Henning Kamp 	if (imgp->object != NULL)
5580b2ed1aeSJeff Roberson 		vm_object_reference(imgp->object);
55926f9a767SRodney W. Grimes 
5601616db3cSJohn Dyson 	error = exec_map_first_page(imgp);
5616d5a0a8cSDavid Greenman 	if (error)
56226f9a767SRodney W. Grimes 		goto exec_fail_dealloc;
56326f9a767SRodney W. Grimes 
564f231de47SKonstantin Belousov 	imgp->proc->p_osrel = 0;
565f5cf7589SKonstantin Belousov 	imgp->proc->p_fctl0 = 0;
566615f22b2SDmitry Chagin 	imgp->proc->p_elf_brandinfo = NULL;
567881010f0SBryan Drewery 
568881010f0SBryan Drewery 	/*
569881010f0SBryan Drewery 	 * Implement image setuid/setgid.
570881010f0SBryan Drewery 	 *
571881010f0SBryan Drewery 	 * Determine new credentials before attempting image activators
572881010f0SBryan Drewery 	 * so that it can be used by process_exec handlers to determine
573881010f0SBryan Drewery 	 * credential/setid changes.
574881010f0SBryan Drewery 	 *
575881010f0SBryan Drewery 	 * Don't honor setuid/setgid if the filesystem prohibits it or if
576881010f0SBryan Drewery 	 * the process is being traced.
577881010f0SBryan Drewery 	 *
578881010f0SBryan Drewery 	 * We disable setuid/setgid/etc in capability mode on the basis
579881010f0SBryan Drewery 	 * that most setugid applications are not written with that
580881010f0SBryan Drewery 	 * environment in mind, and will therefore almost certainly operate
581881010f0SBryan Drewery 	 * incorrectly. In principle there's no reason that setugid
582881010f0SBryan Drewery 	 * applications might not be useful in capability mode, so we may want
583881010f0SBryan Drewery 	 * to reconsider this conservative design choice in the future.
584881010f0SBryan Drewery 	 *
585881010f0SBryan Drewery 	 * XXXMAC: For the time being, use NOSUID to also prohibit
586881010f0SBryan Drewery 	 * transitions on the file system.
587881010f0SBryan Drewery 	 */
5889d58243fSKonstantin Belousov 	credential_changing = false;
589881010f0SBryan Drewery 	credential_changing |= (attr.va_mode & S_ISUID) &&
590881010f0SBryan Drewery 	    oldcred->cr_uid != attr.va_uid;
591881010f0SBryan Drewery 	credential_changing |= (attr.va_mode & S_ISGID) &&
592881010f0SBryan Drewery 	    oldcred->cr_gid != attr.va_gid;
593881010f0SBryan Drewery #ifdef MAC
594881010f0SBryan Drewery 	will_transition = mac_vnode_execve_will_transition(oldcred, imgp->vp,
5959d58243fSKonstantin Belousov 	    interpvplabel, imgp) != 0;
596881010f0SBryan Drewery 	credential_changing |= will_transition;
597881010f0SBryan Drewery #endif
598881010f0SBryan Drewery 
5991302eea7SKonstantin Belousov 	/* Don't inherit PROC_PDEATHSIG_CTL value if setuid/setgid. */
600b9408863SKonstantin Belousov 	if (credential_changing)
601b9408863SKonstantin Belousov 		imgp->proc->p_pdeathsig = 0;
602b9408863SKonstantin Belousov 
603881010f0SBryan Drewery 	if (credential_changing &&
604881010f0SBryan Drewery #ifdef CAPABILITY_MODE
605881010f0SBryan Drewery 	    ((oldcred->cr_flags & CRED_FLAG_CAPMODE) == 0) &&
606881010f0SBryan Drewery #endif
607881010f0SBryan Drewery 	    (imgp->vp->v_mount->mnt_flag & MNT_NOSUID) == 0 &&
608881010f0SBryan Drewery 	    (p->p_flag & P_TRACED) == 0) {
609881010f0SBryan Drewery 		imgp->credential_setid = true;
610b249ce48SMateusz Guzik 		VOP_UNLOCK(imgp->vp);
611881010f0SBryan Drewery 		imgp->newcred = crdup(oldcred);
612881010f0SBryan Drewery 		if (attr.va_mode & S_ISUID) {
613881010f0SBryan Drewery 			euip = uifind(attr.va_uid);
614881010f0SBryan Drewery 			change_euid(imgp->newcred, euip);
615881010f0SBryan Drewery 		}
6161040254bSKonstantin Belousov 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
617881010f0SBryan Drewery 		if (attr.va_mode & S_ISGID)
618881010f0SBryan Drewery 			change_egid(imgp->newcred, attr.va_gid);
619881010f0SBryan Drewery 		/*
620881010f0SBryan Drewery 		 * Implement correct POSIX saved-id behavior.
621881010f0SBryan Drewery 		 *
622881010f0SBryan Drewery 		 * XXXMAC: Note that the current logic will save the
623881010f0SBryan Drewery 		 * uid and gid if a MAC domain transition occurs, even
624881010f0SBryan Drewery 		 * though maybe it shouldn't.
625881010f0SBryan Drewery 		 */
626881010f0SBryan Drewery 		change_svuid(imgp->newcred, imgp->newcred->cr_uid);
627881010f0SBryan Drewery 		change_svgid(imgp->newcred, imgp->newcred->cr_gid);
628881010f0SBryan Drewery 	} else {
629881010f0SBryan Drewery 		/*
630881010f0SBryan Drewery 		 * Implement correct POSIX saved-id behavior.
631881010f0SBryan Drewery 		 *
632881010f0SBryan Drewery 		 * XXX: It's not clear that the existing behavior is
633881010f0SBryan Drewery 		 * POSIX-compliant.  A number of sources indicate that the
634881010f0SBryan Drewery 		 * saved uid/gid should only be updated if the new ruid is
635881010f0SBryan Drewery 		 * not equal to the old ruid, or the new euid is not equal
636881010f0SBryan Drewery 		 * to the old euid and the new euid is not equal to the old
637881010f0SBryan Drewery 		 * ruid.  The FreeBSD code always updates the saved uid/gid.
638881010f0SBryan Drewery 		 * Also, this code uses the new (replaced) euid and egid as
639881010f0SBryan Drewery 		 * the source, which may or may not be the right ones to use.
640881010f0SBryan Drewery 		 */
641881010f0SBryan Drewery 		if (oldcred->cr_svuid != oldcred->cr_uid ||
642881010f0SBryan Drewery 		    oldcred->cr_svgid != oldcred->cr_gid) {
643b249ce48SMateusz Guzik 			VOP_UNLOCK(imgp->vp);
644881010f0SBryan Drewery 			imgp->newcred = crdup(oldcred);
6451040254bSKonstantin Belousov 			vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
646881010f0SBryan Drewery 			change_svuid(imgp->newcred, imgp->newcred->cr_uid);
647881010f0SBryan Drewery 			change_svgid(imgp->newcred, imgp->newcred->cr_gid);
648881010f0SBryan Drewery 		}
649881010f0SBryan Drewery 	}
650881010f0SBryan Drewery 	/* The new credentials are installed into the process later. */
651881010f0SBryan Drewery 
65226f9a767SRodney W. Grimes 	/*
653d323ddf3SMatthew Dillon 	 *	If the current process has a special image activator it
654d323ddf3SMatthew Dillon 	 *	wants to try first, call it.   For example, emulating shell
655d323ddf3SMatthew Dillon 	 *	scripts differently.
65626f9a767SRodney W. Grimes 	 */
657d323ddf3SMatthew Dillon 	error = -1;
658d323ddf3SMatthew Dillon 	if ((img_first = imgp->proc->p_sysent->sv_imgact_try) != NULL)
659d323ddf3SMatthew Dillon 		error = img_first(imgp);
660d323ddf3SMatthew Dillon 
661d323ddf3SMatthew Dillon 	/*
662d323ddf3SMatthew Dillon 	 *	Loop through the list of image activators, calling each one.
663d323ddf3SMatthew Dillon 	 *	An activator returns -1 if there is no match, 0 on success,
664d323ddf3SMatthew Dillon 	 *	and an error otherwise.
665d323ddf3SMatthew Dillon 	 */
666d323ddf3SMatthew Dillon 	for (i = 0; error == -1 && execsw[i]; ++i) {
667d323ddf3SMatthew Dillon 		if (execsw[i]->ex_imgact == NULL ||
668d323ddf3SMatthew Dillon 		    execsw[i]->ex_imgact == img_first) {
669d323ddf3SMatthew Dillon 			continue;
670d323ddf3SMatthew Dillon 		}
671c52007c2SDavid Greenman 		error = (*execsw[i]->ex_imgact)(imgp);
672d323ddf3SMatthew Dillon 	}
673d323ddf3SMatthew Dillon 
674d323ddf3SMatthew Dillon 	if (error) {
67578022527SKonstantin Belousov 		if (error == -1)
676d323ddf3SMatthew Dillon 			error = ENOEXEC;
67726f9a767SRodney W. Grimes 		goto exec_fail_dealloc;
678d323ddf3SMatthew Dillon 	}
679d323ddf3SMatthew Dillon 
680d323ddf3SMatthew Dillon 	/*
681d323ddf3SMatthew Dillon 	 * Special interpreter operation, cleanup and loop up to try to
682d323ddf3SMatthew Dillon 	 * activate the interpreter.
683d323ddf3SMatthew Dillon 	 */
684c52007c2SDavid Greenman 	if (imgp->interpreted) {
6851616db3cSJohn Dyson 		exec_unmap_first_page(imgp);
686619eb6e5SJeff Roberson 		/*
68778022527SKonstantin Belousov 		 * The text reference needs to be removed for scripts.
68878022527SKonstantin Belousov 		 * There is a short period before we determine that
68978022527SKonstantin Belousov 		 * something is a script where text reference is active.
69078022527SKonstantin Belousov 		 * The vnode lock is held over this entire period
69178022527SKonstantin Belousov 		 * so nothing should illegitimately be blocked.
692619eb6e5SJeff Roberson 		 */
6931c36b728SKonstantin Belousov 		MPASS(imgp->textset);
6941c36b728SKonstantin Belousov 		VOP_UNSET_TEXT_CHECKED(newtextvp);
6951c36b728SKonstantin Belousov 		imgp->textset = false;
696762e6b85SEivind Eklund 		/* free name buffer and old vnode */
697670cb89bSRobert Watson #ifdef MAC
69861617058SMateusz Guzik 		mac_execve_interpreter_enter(newtextvp, &interpvplabel);
699670cb89bSRobert Watson #endif
7009a75ea23SKonstantin Belousov 		if (imgp->opened) {
70161617058SMateusz Guzik 			VOP_CLOSE(newtextvp, FREAD, td->td_ucred, td);
70215bf81f3SKonstantin Belousov 			imgp->opened = false;
7039a75ea23SKonstantin Belousov 		}
70461617058SMateusz Guzik 		vput(newtextvp);
705351d5f7fSKonstantin Belousov 		imgp->vp = newtextvp = NULL;
7060c10648fSKonstantin Belousov 		if (args->fname != NULL) {
707351d5f7fSKonstantin Belousov 			if (newtextdvp != NULL) {
708351d5f7fSKonstantin Belousov 				vrele(newtextdvp);
709351d5f7fSKonstantin Belousov 				newtextdvp = NULL;
710351d5f7fSKonstantin Belousov 			}
7110c10648fSKonstantin Belousov 			NDFREE(&nd, NDF_ONLY_PNBUF);
712351d5f7fSKonstantin Belousov 			free(newbinname, M_PARGS);
713351d5f7fSKonstantin Belousov 			newbinname = NULL;
7140c10648fSKonstantin Belousov 		}
7150b2ed1aeSJeff Roberson 		vm_object_deallocate(imgp->object);
7160b2ed1aeSJeff Roberson 		imgp->object = NULL;
71719e6043aSKonstantin Belousov 		execve_nosetid(imgp);
7181afd78b3SBryan Drewery 		imgp->execpath = NULL;
7191afd78b3SBryan Drewery 		free(imgp->freepath, M_TEMP);
7201afd78b3SBryan Drewery 		imgp->freepath = NULL;
72126f9a767SRodney W. Grimes 		/* set new name to that of the interpreter */
722632dbc19SKonstantin Belousov 		args->fname = imgp->interpreter_name;
72326f9a767SRodney W. Grimes 		goto interpret;
72426f9a767SRodney W. Grimes 	}
72526f9a767SRodney W. Grimes 
72626f9a767SRodney W. Grimes 	/*
727ded7d39cSChristian S.J. Peron 	 * NB: We unlock the vnode here because it is believed that none
728ded7d39cSChristian S.J. Peron 	 * of the sv_copyout_strings/sv_fixup operations require the vnode.
729ded7d39cSChristian S.J. Peron 	 */
730b249ce48SMateusz Guzik 	VOP_UNLOCK(imgp->vp);
7313ff06357SKonstantin Belousov 
732eda6009cSKonstantin Belousov 	if (disallow_high_osrel &&
733eda6009cSKonstantin Belousov 	    P_OSREL_MAJOR(p->p_osrel) > P_OSREL_MAJOR(__FreeBSD_version)) {
734eda6009cSKonstantin Belousov 		error = ENOEXEC;
735eda6009cSKonstantin Belousov 		uprintf("Osrel %d for image %s too high\n", p->p_osrel,
736eda6009cSKonstantin Belousov 		    imgp->execpath != NULL ? imgp->execpath : "<unresolved>");
737eda6009cSKonstantin Belousov 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
738eda6009cSKonstantin Belousov 		goto exec_fail_dealloc;
739eda6009cSKonstantin Belousov 	}
740eda6009cSKonstantin Belousov 
741ded7d39cSChristian S.J. Peron 	/*
74291ff2d48SEdward Tomasz Napierala 	 * Copy out strings (args and env) and initialize stack base.
74326f9a767SRodney W. Grimes 	 */
74403b0d68cSJohn Baldwin 	error = (*p->p_sysent->sv_copyout_strings)(imgp, &stack_base);
74503b0d68cSJohn Baldwin 	if (error != 0) {
74603b0d68cSJohn Baldwin 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
74703b0d68cSJohn Baldwin 		goto exec_fail_dealloc;
74803b0d68cSJohn Baldwin 	}
74926f9a767SRodney W. Grimes 
75026f9a767SRodney W. Grimes 	/*
75191ff2d48SEdward Tomasz Napierala 	 * Stack setup.
75226f9a767SRodney W. Grimes 	 */
7535f77b8a8SBrooks Davis 	error = (*p->p_sysent->sv_fixup)(&stack_base, imgp);
7546f26dd50SKonstantin Belousov 	if (error != 0) {
7556f26dd50SKonstantin Belousov 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
7565f77b8a8SBrooks Davis 		goto exec_fail_dealloc;
7576f26dd50SKonstantin Belousov 	}
75826f9a767SRodney W. Grimes 
759a78e8d2aSDavid Greenman 	/*
760a0558fe9SMateusz Guzik 	 * For security and other reasons, the file descriptor table cannot be
761a0558fe9SMateusz Guzik 	 * shared after an exec.
762a78e8d2aSDavid Greenman 	 */
763b9d32c36SMateusz Guzik 	fdunshare(td);
76485078b85SConrad Meyer 	pdunshare(td);
765b0bc0cadSMateusz Guzik 	/* close files on exec */
766b0bc0cadSMateusz Guzik 	fdcloseexec(td);
767a78e8d2aSDavid Greenman 
768333ea485SGuido van Rooij 	/*
7699b3b1c5fSJohn Baldwin 	 * Malloc things before we need locks.
7709b3b1c5fSJohn Baldwin 	 */
771f373437aSBrooks Davis 	i = exec_args_get_begin_envv(imgp->args) - imgp->args->begin_argv;
7725997cae9SDon Lewis 	/* Cache arguments if they fit inside our allowance */
7735997cae9SDon Lewis 	if (ps_arg_cache_limit >= i + sizeof(struct pargs)) {
7749b3b1c5fSJohn Baldwin 		newargs = pargs_alloc(i);
7755997cae9SDon Lewis 		bcopy(imgp->args->begin_argv, newargs->ar_args, i);
7765997cae9SDon Lewis 	}
7779b3b1c5fSJohn Baldwin 
7789b3b1c5fSJohn Baldwin 	/*
779333ea485SGuido van Rooij 	 * For security and other reasons, signal handlers cannot
7808688bb93SJohn Baldwin 	 * be shared after an exec. The new process gets a copy of the old
781b2c3fa70SDima Dorfman 	 * handlers. In execsigs(), the new process will have its signals
782333ea485SGuido van Rooij 	 * reset.
783333ea485SGuido van Rooij 	 */
78490af4afaSJohn Baldwin 	if (sigacts_shared(p->p_sigacts)) {
78590af4afaSJohn Baldwin 		oldsigacts = p->p_sigacts;
78690af4afaSJohn Baldwin 		newsigacts = sigacts_alloc();
78790af4afaSJohn Baldwin 		sigacts_copy(newsigacts, oldsigacts);
788a6bad85eSMateusz Guzik 	}
789333ea485SGuido van Rooij 
790cda68844SMateusz Guzik 	vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
791cda68844SMateusz Guzik 
792d00c8ea4SMateusz Guzik 	PROC_LOCK(p);
793d00c8ea4SMateusz Guzik 	if (oldsigacts)
794d00c8ea4SMateusz Guzik 		p->p_sigacts = newsigacts;
795fdf4e8b3SWarner Losh 	/* Stop profiling */
796fdf4e8b3SWarner Losh 	stopprofclock(p);
797fdf4e8b3SWarner Losh 
79826f9a767SRodney W. Grimes 	/* reset caught signals */
79926f9a767SRodney W. Grimes 	execsigs(p);
80026f9a767SRodney W. Grimes 
80126f9a767SRodney W. Grimes 	/* name this process - nameiexec(p, ndp) */
8025ca4819dSJohn Baldwin 	bzero(p->p_comm, sizeof(p->p_comm));
8035ca4819dSJohn Baldwin 	if (args->fname)
8045ca4819dSJohn Baldwin 		bcopy(nd.ni_cnd.cn_nameptr, p->p_comm,
8055ca4819dSJohn Baldwin 		    min(nd.ni_cnd.cn_namelen, MAXCOMLEN));
80661617058SMateusz Guzik 	else if (vn_commname(newtextvp, p->p_comm, sizeof(p->p_comm)) != 0)
8075ca4819dSJohn Baldwin 		bcopy(fexecv_proc_title, p->p_comm, sizeof(fexecv_proc_title));
808ca081fdbSJulian Elischer 	bcopy(p->p_comm, td->td_name, sizeof(td->td_name));
80944ad5475SJohn Baldwin #ifdef KTR
81044ad5475SJohn Baldwin 	sched_clear_tdname(td);
81144ad5475SJohn Baldwin #endif
81226f9a767SRodney W. Grimes 
81326f9a767SRodney W. Grimes 	/*
81424b34f09SSujal Patel 	 * mark as execed, wakeup the process that vforked (if any) and tell
815dc733423SDag-Erling Smørgrav 	 * it that it now has its own resources back
81626f9a767SRodney W. Grimes 	 */
81726f9a767SRodney W. Grimes 	p->p_flag |= P_EXEC;
818677258f7SKonstantin Belousov 	if ((p->p_flag2 & P2_NOTRACE_EXEC) == 0)
819677258f7SKonstantin Belousov 		p->p_flag2 &= ~P2_NOTRACE;
820fe69291fSKonstantin Belousov 	if ((p->p_flag2 & P2_STKGAP_DISABLE_EXEC) == 0)
821fe69291fSKonstantin Belousov 		p->p_flag2 &= ~P2_STKGAP_DISABLE;
822965d0860SMateusz Guzik 	if (p->p_flag & P_PPWAIT) {
823888d4d4fSKonstantin Belousov 		p->p_flag &= ~(P_PPWAIT | P_PPTRACE);
824aeb32571SKonstantin Belousov 		cv_broadcast(&p->p_pwait);
82577d68094SKonstantin Belousov 		/* STOPs are no longer ignored, arrange for AST */
82677d68094SKonstantin Belousov 		signotify(td);
82726f9a767SRodney W. Grimes 	}
82826f9a767SRodney W. Grimes 
829db8d680eSEdward Tomasz Napierala 	if ((imgp->sysent->sv_setid_allowed != NULL &&
830db8d680eSEdward Tomasz Napierala 	    !(*imgp->sysent->sv_setid_allowed)(td, imgp)) ||
831db8d680eSEdward Tomasz Napierala 	    (p->p_flag2 & P2_NO_NEW_PRIVS) != 0)
8322d423f76SKonstantin Belousov 		execve_nosetid(imgp);
8332d423f76SKonstantin Belousov 
83426f9a767SRodney W. Grimes 	/*
835881010f0SBryan Drewery 	 * Implement image setuid/setgid installation.
836c52007c2SDavid Greenman 	 */
837881010f0SBryan Drewery 	if (imgp->credential_setid) {
838c52007c2SDavid Greenman 		/*
839c52007c2SDavid Greenman 		 * Turn off syscall tracing for set-id programs, except for
840b85db196SPeter Wemm 		 * root.  Record any set-id flags first to make sure that
841b85db196SPeter Wemm 		 * we do not regain any tracing during a possible block.
84226f9a767SRodney W. Grimes 		 */
843b85db196SPeter Wemm 		setsugid(p);
8446c84de02SJohn Baldwin #ifdef KTRACE
8451762f674SKonstantin Belousov 		kiop = ktrprocexec(p);
8466c84de02SJohn Baldwin #endif
84728b325aaSDon Lewis 		/*
848c1e2d386SNate Lawson 		 * Close any file descriptors 0..2 that reference procfs,
849c1e2d386SNate Lawson 		 * then make sure file descriptors 0..2 are in use.
85028b325aaSDon Lewis 		 *
8518a5177ccSMateusz Guzik 		 * Both fdsetugidsafety() and fdcheckstd() may call functions
8528a5177ccSMateusz Guzik 		 * taking sleepable locks, so temporarily drop our locks.
85328b325aaSDon Lewis 		 */
85428b325aaSDon Lewis 		PROC_UNLOCK(p);
855b249ce48SMateusz Guzik 		VOP_UNLOCK(imgp->vp);
85611888da8SMateusz Guzik 		fdsetugidsafety(td);
857e983a376SJacques Vidrine 		error = fdcheckstd(td);
8585e2554b7SMateusz Guzik 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
859cda68844SMateusz Guzik 		if (error != 0)
860cda68844SMateusz Guzik 			goto exec_fail_dealloc;
861e1b1aa3bSJohn Baldwin 		PROC_LOCK(p);
862ccafe7ebSRobert Watson #ifdef MAC
863670cb89bSRobert Watson 		if (will_transition) {
864881010f0SBryan Drewery 			mac_vnode_execve_transition(oldcred, imgp->newcred,
865881010f0SBryan Drewery 			    imgp->vp, interpvplabel, imgp);
866670cb89bSRobert Watson 		}
867ccafe7ebSRobert Watson #endif
868c52007c2SDavid Greenman 	} else {
869b1fc0ec1SRobert Watson 		if (oldcred->cr_uid == oldcred->cr_ruid &&
870b1fc0ec1SRobert Watson 		    oldcred->cr_gid == oldcred->cr_rgid)
871c52007c2SDavid Greenman 			p->p_flag &= ~P_SUGID;
872881010f0SBryan Drewery 	}
87326f9a767SRodney W. Grimes 	/*
874881010f0SBryan Drewery 	 * Set the new credentials.
87526f9a767SRodney W. Grimes 	 */
8763fc292d5SKonstantin Belousov 	if (imgp->newcred != NULL) {
877881010f0SBryan Drewery 		proc_set_cred(p, imgp->newcred);
8783fc292d5SKonstantin Belousov 		crfree(oldcred);
8793fc292d5SKonstantin Belousov 		oldcred = NULL;
8803fc292d5SKonstantin Belousov 	}
88126f9a767SRodney W. Grimes 
88226f9a767SRodney W. Grimes 	/*
883351d5f7fSKonstantin Belousov 	 * Store the vp for use in kern.proc.pathname.  This vnode was
884351d5f7fSKonstantin Belousov 	 * referenced by namei() or fgetvp_exec().
8852a531c80SDavid Greenman 	 */
88661617058SMateusz Guzik 	oldtextvp = p->p_textvp;
88761617058SMateusz Guzik 	p->p_textvp = newtextvp;
888351d5f7fSKonstantin Belousov 	oldtextdvp = p->p_textdvp;
889351d5f7fSKonstantin Belousov 	p->p_textdvp = newtextdvp;
890351d5f7fSKonstantin Belousov 	newtextdvp = NULL;
891351d5f7fSKonstantin Belousov 	oldbinname = p->p_binname;
892351d5f7fSKonstantin Belousov 	p->p_binname = newbinname;
893351d5f7fSKonstantin Belousov 	newbinname = NULL;
8942a531c80SDavid Greenman 
8955d217f17SJohn Birrell #ifdef KDTRACE_HOOKS
8965d217f17SJohn Birrell 	/*
8975d217f17SJohn Birrell 	 * Tell the DTrace fasttrap provider about the exec if it
8985d217f17SJohn Birrell 	 * has declared an interest.
8995d217f17SJohn Birrell 	 */
9005d217f17SJohn Birrell 	if (dtrace_fasttrap_exec)
9015d217f17SJohn Birrell 		dtrace_fasttrap_exec(p);
9025d217f17SJohn Birrell #endif
9035d217f17SJohn Birrell 
9042a531c80SDavid Greenman 	/*
9059ca45e81SDag-Erling Smørgrav 	 * Notify others that we exec'd, and clear the P_INEXEC flag
9069ca45e81SDag-Erling Smørgrav 	 * as we're now a bona fide freshly-execed process.
907cb679c38SJonathan Lemon 	 */
9089e590ff0SKonstantin Belousov 	KNOTE_LOCKED(p->p_klist, NOTE_EXEC);
9099ca45e81SDag-Erling Smørgrav 	p->p_flag &= ~P_INEXEC;
910cb679c38SJonathan Lemon 
91126f9a767SRodney W. Grimes 	/* clear "fork but no exec" flag, as we _are_ execing */
91226f9a767SRodney W. Grimes 	p->p_acflag &= ~AFORK;
91326f9a767SRodney W. Grimes 
9145997cae9SDon Lewis 	/*
91534ea500bSDon Lewis 	 * Free any previous argument cache and replace it with
9165997cae9SDon Lewis 	 * the new argument cache, if any.
9175997cae9SDon Lewis 	 */
9189b3b1c5fSJohn Baldwin 	oldargs = p->p_args;
919e1b1aa3bSJohn Baldwin 	p->p_args = newargs;
920e1b1aa3bSJohn Baldwin 	newargs = NULL;
921ebccf1e3SJoseph Koshy 
92280a2397aSMateusz Guzik 	PROC_UNLOCK(p);
92380a2397aSMateusz Guzik 
924ebccf1e3SJoseph Koshy #ifdef	HWPMC_HOOKS
925ebccf1e3SJoseph Koshy 	/*
926f263522aSJoseph Koshy 	 * Check if system-wide sampling is in effect or if the
927f263522aSJoseph Koshy 	 * current process is using PMCs.  If so, do exec() time
928ebccf1e3SJoseph Koshy 	 * processing.  This processing needs to happen AFTER the
929ebccf1e3SJoseph Koshy 	 * P_INEXEC flag is cleared.
930ebccf1e3SJoseph Koshy 	 */
931f263522aSJoseph Koshy 	if (PMC_SYSTEM_SAMPLING_ACTIVE() || PMC_PROC_IS_USING_PMCS(p)) {
932b249ce48SMateusz Guzik 		VOP_UNLOCK(imgp->vp);
93315139246SJoseph Koshy 		pe.pm_credentialschanged = credential_changing;
93415139246SJoseph Koshy 		pe.pm_entryaddr = imgp->entry_addr;
93515139246SJoseph Koshy 
93615139246SJoseph Koshy 		PMC_CALL_HOOK_X(td, PMC_FN_PROCESS_EXEC, (void *) &pe);
9372974cc36SKonstantin Belousov 		vn_lock(imgp->vp, LK_SHARED | LK_RETRY);
93880a2397aSMateusz Guzik 	}
939ebccf1e3SJoseph Koshy #endif
940e1b1aa3bSJohn Baldwin 
941e913ca22SDoug Rabson 	/* Set values passed into the program in registers. */
94231174518SJohn Baldwin 	(*p->p_sysent->sv_setregs)(td, imgp, stack_base);
943e913ca22SDoug Rabson 
944643656cfSMateusz Guzik 	VOP_MMAPPED(imgp->vp);
9456341095eSKen Smith 
94636160958SMark Johnston 	SDT_PROBE1(proc, , , exec__success, args->fname);
9475d217f17SJohn Birrell 
9481616db3cSJohn Dyson exec_fail_dealloc:
94901a2b567SKonstantin Belousov 	if (error != 0) {
95001a2b567SKonstantin Belousov 		p->p_osrel = orig_osrel;
95101a2b567SKonstantin Belousov 		p->p_fctl0 = orig_fctl0;
952615f22b2SDmitry Chagin 		p->p_elf_brandinfo = orig_brandinfo;
95301a2b567SKonstantin Belousov 	}
95401a2b567SKonstantin Belousov 
955d6c847f3SBruce Evans 	if (imgp->firstpage != NULL)
9561616db3cSJohn Dyson 		exec_unmap_first_page(imgp);
95726f9a767SRodney W. Grimes 
958d6c847f3SBruce Evans 	if (imgp->vp != NULL) {
9599a75ea23SKonstantin Belousov 		if (imgp->opened)
9609a75ea23SKonstantin Belousov 			VOP_CLOSE(imgp->vp, FREAD, td->td_ucred, td);
96178022527SKonstantin Belousov 		if (imgp->textset)
96278022527SKonstantin Belousov 			VOP_UNSET_TEXT_CHECKED(imgp->vp);
963853be5ffSMateusz Guzik 		if (error != 0)
964619eb6e5SJeff Roberson 			vput(imgp->vp);
965853be5ffSMateusz Guzik 		else
966b249ce48SMateusz Guzik 			VOP_UNLOCK(imgp->vp);
967351d5f7fSKonstantin Belousov 		if (args->fname != NULL)
9680c10648fSKonstantin Belousov 			NDFREE(&nd, NDF_ONLY_PNBUF);
969351d5f7fSKonstantin Belousov 		if (newtextdvp != NULL)
970351d5f7fSKonstantin Belousov 			vrele(newtextdvp);
971351d5f7fSKonstantin Belousov 		free(newbinname, M_PARGS);
972a3cf6ebaSDavid Greenman 	}
97326f9a767SRodney W. Grimes 
974d6c847f3SBruce Evans 	if (imgp->object != NULL)
9750b2ed1aeSJeff Roberson 		vm_object_deallocate(imgp->object);
9760b2ed1aeSJeff Roberson 
9773ff06357SKonstantin Belousov 	free(imgp->freepath, M_TEMP);
9783ff06357SKonstantin Belousov 
979d1989db5SRobert Drehmel 	if (error == 0) {
980e6b645aeSMateusz Guzik 		if (p->p_ptevents & PTRACE_EXEC) {
981afe1a688SKonstantin Belousov 			PROC_LOCK(p);
9828d570f64SJohn Baldwin 			if (p->p_ptevents & PTRACE_EXEC)
983afe1a688SKonstantin Belousov 				td->td_dbgflags |= TDB_EXEC;
984afe1a688SKonstantin Belousov 			PROC_UNLOCK(p);
985e6b645aeSMateusz Guzik 		}
986cda68844SMateusz Guzik 	} else {
98726f9a767SRodney W. Grimes exec_fail:
9889ca45e81SDag-Erling Smørgrav 		/* we're done here, clear P_INEXEC */
9899ca45e81SDag-Erling Smørgrav 		PROC_LOCK(p);
9909ca45e81SDag-Erling Smørgrav 		p->p_flag &= ~P_INEXEC;
9919ca45e81SDag-Erling Smørgrav 		PROC_UNLOCK(p);
9929ca45e81SDag-Erling Smørgrav 
99336160958SMark Johnston 		SDT_PROBE1(proc, , , exec__failure, error);
994cda68844SMateusz Guzik 	}
9955d217f17SJohn Birrell 
9963fc292d5SKonstantin Belousov 	if (imgp->newcred != NULL && oldcred != NULL)
9973fc292d5SKonstantin Belousov 		crfree(imgp->newcred);
9983fc292d5SKonstantin Belousov 
999670cb89bSRobert Watson #ifdef MAC
1000670cb89bSRobert Watson 	mac_execve_exit(imgp);
10016356dba0SRobert Watson 	mac_execve_interpreter_exit(interpvplabel);
1002670cb89bSRobert Watson #endif
10038917b8d2SJohn Baldwin 	exec_free_args(args);
10048917b8d2SJohn Baldwin 
1005cda68844SMateusz Guzik 	/*
1006cda68844SMateusz Guzik 	 * Handle deferred decrement of ref counts.
1007cda68844SMateusz Guzik 	 */
1008cda68844SMateusz Guzik 	if (oldtextvp != NULL)
1009cda68844SMateusz Guzik 		vrele(oldtextvp);
1010351d5f7fSKonstantin Belousov 	if (oldtextdvp != NULL)
1011351d5f7fSKonstantin Belousov 		vrele(oldtextdvp);
1012351d5f7fSKonstantin Belousov 	free(oldbinname, M_PARGS);
1013154f0eccSMateusz Guzik #ifdef KTRACE
10141762f674SKonstantin Belousov 	ktr_io_params_free(kiop);
1015154f0eccSMateusz Guzik #endif
1016cda68844SMateusz Guzik 	pargs_drop(oldargs);
1017cda68844SMateusz Guzik 	pargs_drop(newargs);
1018cda68844SMateusz Guzik 	if (oldsigacts != NULL)
1019cda68844SMateusz Guzik 		sigacts_free(oldsigacts);
1020cda68844SMateusz Guzik 	if (euip != NULL)
1021cda68844SMateusz Guzik 		uifree(euip);
1022cda68844SMateusz Guzik 
10238917b8d2SJohn Baldwin 	if (error && imgp->vmspace_destroyed) {
10248917b8d2SJohn Baldwin 		/* sorry, no more process anymore. exit gracefully */
1025aaf78c16SKonstantin Belousov 		exec_cleanup(td, oldvmspace);
1026b4490c6eSKonstantin Belousov 		exit1(td, 0, SIGABRT);
10278917b8d2SJohn Baldwin 		/* NOT REACHED */
10288917b8d2SJohn Baldwin 	}
10297705d4b2SDmitry Chagin 
10307705d4b2SDmitry Chagin #ifdef KTRACE
10317705d4b2SDmitry Chagin 	if (error == 0)
10327705d4b2SDmitry Chagin 		ktrprocctor(p);
10337705d4b2SDmitry Chagin #endif
10347705d4b2SDmitry Chagin 
1035814629ddSEd Schouten 	/*
1036814629ddSEd Schouten 	 * We don't want cpu_set_syscall_retval() to overwrite any of
1037814629ddSEd Schouten 	 * the register values put in place by exec_setregs().
1038814629ddSEd Schouten 	 * Implementations of cpu_set_syscall_retval() will leave
1039814629ddSEd Schouten 	 * registers unmodified when returning EJUSTRETURN.
1040814629ddSEd Schouten 	 */
1041814629ddSEd Schouten 	return (error == 0 ? EJUSTRETURN : error);
104226f9a767SRodney W. Grimes }
104326f9a767SRodney W. Grimes 
1044aaf78c16SKonstantin Belousov void
1045aaf78c16SKonstantin Belousov exec_cleanup(struct thread *td, struct vmspace *oldvmspace)
1046aaf78c16SKonstantin Belousov {
1047aaf78c16SKonstantin Belousov 	if ((td->td_pflags & TDP_EXECVMSPC) != 0) {
10485dca94eeSKonstantin Belousov 		KASSERT(td->td_proc->p_vmspace != oldvmspace,
1049aaf78c16SKonstantin Belousov 		    ("oldvmspace still used"));
1050aaf78c16SKonstantin Belousov 		vmspace_free(oldvmspace);
1051aaf78c16SKonstantin Belousov 		td->td_pflags &= ~TDP_EXECVMSPC;
1052aaf78c16SKonstantin Belousov 	}
1053aaf78c16SKonstantin Belousov }
1054aaf78c16SKonstantin Belousov 
10551616db3cSJohn Dyson int
1056b8d908b7SEd Maste exec_map_first_page(struct image_params *imgp)
10571616db3cSJohn Dyson {
10581616db3cSJohn Dyson 	vm_object_t object;
1059af009714SJeff Roberson 	vm_page_t m;
1060af009714SJeff Roberson 	int error;
10611616db3cSJohn Dyson 
1062d6c847f3SBruce Evans 	if (imgp->firstpage != NULL)
10631616db3cSJohn Dyson 		exec_unmap_first_page(imgp);
10641616db3cSJohn Dyson 
10658516dd18SPoul-Henning Kamp 	object = imgp->vp->v_object;
10664d7d2993SJeff Roberson 	if (object == NULL)
10674d7d2993SJeff Roberson 		return (EACCES);
1068f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
10697aaf252cSJeff Roberson 	if ((object->flags & OBJ_COLORED) == 0) {
10707aaf252cSJeff Roberson 		VM_OBJECT_WLOCK(object);
10713d653db0SAlan Cox 		vm_object_color(object, 0);
10727aaf252cSJeff Roberson 		VM_OBJECT_WUNLOCK(object);
10737aaf252cSJeff Roberson 	}
1074f8a47341SAlan Cox #endif
10757aaf252cSJeff Roberson 	error = vm_page_grab_valid_unlocked(&m, object, 0,
1076af009714SJeff Roberson 	    VM_ALLOC_COUNT(VM_INITIAL_PAGEIN) |
1077af009714SJeff Roberson 	    VM_ALLOC_NORMAL | VM_ALLOC_NOBUSY | VM_ALLOC_WIRED);
10781616db3cSJohn Dyson 
1079af009714SJeff Roberson 	if (error != VM_PAGER_OK)
1080af009714SJeff Roberson 		return (EIO);
1081af009714SJeff Roberson 	imgp->firstpage = sf_buf_alloc(m, 0);
108259c8bc40SAlan Cox 	imgp->image_header = (char *)sf_buf_kva(imgp->firstpage);
10831616db3cSJohn Dyson 
1084a7cddfedSJake Burkholder 	return (0);
10851616db3cSJohn Dyson }
10861616db3cSJohn Dyson 
10871616db3cSJohn Dyson void
10883e85b721SEd Maste exec_unmap_first_page(struct image_params *imgp)
10891616db3cSJohn Dyson {
109059c8bc40SAlan Cox 	vm_page_t m;
109123955314SAlfred Perlstein 
1092d6c847f3SBruce Evans 	if (imgp->firstpage != NULL) {
109359c8bc40SAlan Cox 		m = sf_buf_page(imgp->firstpage);
109459c8bc40SAlan Cox 		sf_buf_free(imgp->firstpage);
10951616db3cSJohn Dyson 		imgp->firstpage = NULL;
1096eeacb3b0SMark Johnston 		vm_page_unwire(m, PQ_ACTIVE);
10971616db3cSJohn Dyson 	}
10981616db3cSJohn Dyson }
10991616db3cSJohn Dyson 
110028a66fc3SKonstantin Belousov void
110128a66fc3SKonstantin Belousov exec_onexec_old(struct thread *td)
110228a66fc3SKonstantin Belousov {
110328a66fc3SKonstantin Belousov 	sigfastblock_clear(td);
110428a66fc3SKonstantin Belousov 	umtx_exec(td->td_proc);
110528a66fc3SKonstantin Belousov }
110628a66fc3SKonstantin Belousov 
110726f9a767SRodney W. Grimes /*
1108*1c696903SKonstantin Belousov  * This is an optimization which removes the unmanaged shared page
1109*1c696903SKonstantin Belousov  * mapping. In combination with pmap_remove_pages(), which cleans all
1110*1c696903SKonstantin Belousov  * managed mappings in the process' vmspace pmap, no work will be left
1111*1c696903SKonstantin Belousov  * for pmap_remove(min, max).
1112*1c696903SKonstantin Belousov  */
1113*1c696903SKonstantin Belousov void
1114*1c696903SKonstantin Belousov exec_free_abi_mappings(struct proc *p)
1115*1c696903SKonstantin Belousov {
1116*1c696903SKonstantin Belousov 	struct vmspace *vmspace;
1117*1c696903SKonstantin Belousov 	struct sysentvec *sv;
1118*1c696903SKonstantin Belousov 
1119*1c696903SKonstantin Belousov 	vmspace = p->p_vmspace;
1120*1c696903SKonstantin Belousov 	if (refcount_load(&vmspace->vm_refcnt) != 1)
1121*1c696903SKonstantin Belousov 		return;
1122*1c696903SKonstantin Belousov 
1123*1c696903SKonstantin Belousov 	sv = p->p_sysent;
1124*1c696903SKonstantin Belousov 	if (sv->sv_shared_page_obj == NULL)
1125*1c696903SKonstantin Belousov 		return;
1126*1c696903SKonstantin Belousov 
1127*1c696903SKonstantin Belousov 	pmap_remove(vmspace_pmap(vmspace), sv->sv_shared_page_base,
1128*1c696903SKonstantin Belousov 	    sv->sv_shared_page_base + sv->sv_shared_page_len);
1129*1c696903SKonstantin Belousov }
1130*1c696903SKonstantin Belousov 
1131*1c696903SKonstantin Belousov /*
1132467b3975SKonstantin Belousov  * Destroy old address space, and allocate a new stack.
1133467b3975SKonstantin Belousov  *	The new stack is only sgrowsiz large because it is grown
1134467b3975SKonstantin Belousov  *	automatically on a page fault.
113526f9a767SRodney W. Grimes  */
113626f9a767SRodney W. Grimes int
11373e85b721SEd Maste exec_new_vmspace(struct image_params *imgp, struct sysentvec *sv)
113826f9a767SRodney W. Grimes {
113926f9a767SRodney W. Grimes 	int error;
11405e20c11fSAlan Cox 	struct proc *p = imgp->proc;
11415e20c11fSAlan Cox 	struct vmspace *vmspace = p->p_vmspace;
1142146fc63fSKonstantin Belousov 	struct thread *td = curthread;
11436297a3d8SKonstantin Belousov 	vm_object_t obj;
1144316b3843SKonstantin Belousov 	struct rlimit rlim_stack;
1145878adb85SBjoern A. Zeeb 	vm_offset_t sv_minuser, stack_addr;
114605ba50f5SJake Burkholder 	vm_map_t map;
11474ea65707SKonstantin Belousov 	vm_prot_t stack_prot;
114859d8f3ffSJohn Baldwin 	u_long ssiz;
114926f9a767SRodney W. Grimes 
115015bf81f3SKonstantin Belousov 	imgp->vmspace_destroyed = true;
1151993182e5SAlexander Leidinger 	imgp->sysent = sv;
115226f9a767SRodney W. Grimes 
115371ab3445SKonstantin Belousov 	if (p->p_sysent->sv_onexec_old != NULL)
115471ab3445SKonstantin Belousov 		p->p_sysent->sv_onexec_old(td);
1155e68c6191SKonstantin Belousov 	itimers_exec(p);
1156146fc63fSKonstantin Belousov 
11572ca45184SMatt Joras 	EVENTHANDLER_DIRECT_INVOKE(process_exec, p, imgp);
11586f5dafeaSAlan Cox 
11596f5dafeaSAlan Cox 	/*
1160af9ec885SJohn Dyson 	 * Blow away entire process VM, if address space not shared,
1161af9ec885SJohn Dyson 	 * otherwise, create a new VM space so that other threads are
1162af9ec885SJohn Dyson 	 * not disrupted
1163af9ec885SJohn Dyson 	 */
116405ba50f5SJake Burkholder 	map = &vmspace->vm_map;
1165878adb85SBjoern A. Zeeb 	if (map_at_zero)
1166878adb85SBjoern A. Zeeb 		sv_minuser = sv->sv_minuser;
1167878adb85SBjoern A. Zeeb 	else
1168878adb85SBjoern A. Zeeb 		sv_minuser = MAX(sv->sv_minuser, PAGE_SIZE);
1169f7db0c95SMark Johnston 	if (refcount_load(&vmspace->vm_refcnt) == 1 &&
1170f7db0c95SMark Johnston 	    vm_map_min(map) == sv_minuser &&
11716f1fe330SKonstantin Belousov 	    vm_map_max(map) == sv->sv_maxuser &&
11726f1fe330SKonstantin Belousov 	    cpu_exec_vmspace_reuse(p, map)) {
1173*1c696903SKonstantin Belousov 		exec_free_abi_mappings(p);
11743db161e0SMatthew Dillon 		shmexit(vmspace);
1175b9eee07eSPeter Wemm 		pmap_remove_pages(vmspace_pmap(vmspace));
117605ba50f5SJake Burkholder 		vm_map_remove(map, vm_map_min(map), vm_map_max(map));
1177fa50a355SKonstantin Belousov 		/*
11782e1c94aaSKonstantin Belousov 		 * An exec terminates mlockall(MCL_FUTURE).
11792e1c94aaSKonstantin Belousov 		 * ASLR and W^X states must be re-evaluated.
1180fa50a355SKonstantin Belousov 		 */
11818056df6eSAlan Cox 		vm_map_lock(map);
1182fa50a355SKonstantin Belousov 		vm_map_modflags(map, 0, MAP_WIREFUTURE | MAP_ASLR |
11832e1c94aaSKonstantin Belousov 		    MAP_ASLR_IGNSTART | MAP_WXORX);
11848056df6eSAlan Cox 		vm_map_unlock(map);
1185af9ec885SJohn Dyson 	} else {
1186878adb85SBjoern A. Zeeb 		error = vmspace_exec(p, sv_minuser, sv->sv_maxuser);
118789b57fcfSKonstantin Belousov 		if (error)
118889b57fcfSKonstantin Belousov 			return (error);
11895e20c11fSAlan Cox 		vmspace = p->p_vmspace;
119005ba50f5SJake Burkholder 		map = &vmspace->vm_map;
1191af9ec885SJohn Dyson 	}
1192fa50a355SKonstantin Belousov 	map->flags |= imgp->map_flags;
119326f9a767SRodney W. Grimes 
11946297a3d8SKonstantin Belousov 	/* Map a shared page */
11956297a3d8SKonstantin Belousov 	obj = sv->sv_shared_page_obj;
11966297a3d8SKonstantin Belousov 	if (obj != NULL) {
11976297a3d8SKonstantin Belousov 		vm_object_reference(obj);
11986297a3d8SKonstantin Belousov 		error = vm_map_fixed(map, obj, 0,
11996297a3d8SKonstantin Belousov 		    sv->sv_shared_page_base, sv->sv_shared_page_len,
12001e65d73cSKonstantin Belousov 		    VM_PROT_READ | VM_PROT_EXECUTE,
12011e65d73cSKonstantin Belousov 		    VM_PROT_READ | VM_PROT_EXECUTE,
12021e65d73cSKonstantin Belousov 		    MAP_INHERIT_SHARE | MAP_ACC_NO_CHARGE);
1203467b3975SKonstantin Belousov 		if (error != KERN_SUCCESS) {
12046297a3d8SKonstantin Belousov 			vm_object_deallocate(obj);
1205467b3975SKonstantin Belousov 			return (vm_mmap_to_errno(error));
12066297a3d8SKonstantin Belousov 		}
12076297a3d8SKonstantin Belousov 	}
12086297a3d8SKonstantin Belousov 
120926f9a767SRodney W. Grimes 	/* Allocate a new stack */
1210316b3843SKonstantin Belousov 	if (imgp->stack_sz != 0) {
1211fe8a824cSKonstantin Belousov 		ssiz = trunc_page(imgp->stack_sz);
1212316b3843SKonstantin Belousov 		PROC_LOCK(p);
1213f6f6d240SMateusz Guzik 		lim_rlimit_proc(p, RLIMIT_STACK, &rlim_stack);
1214316b3843SKonstantin Belousov 		PROC_UNLOCK(p);
1215316b3843SKonstantin Belousov 		if (ssiz > rlim_stack.rlim_max)
1216316b3843SKonstantin Belousov 			ssiz = rlim_stack.rlim_max;
1217316b3843SKonstantin Belousov 		if (ssiz > rlim_stack.rlim_cur) {
1218316b3843SKonstantin Belousov 			rlim_stack.rlim_cur = ssiz;
1219316b3843SKonstantin Belousov 			kern_setrlimit(curthread, RLIMIT_STACK, &rlim_stack);
1220316b3843SKonstantin Belousov 		}
1221316b3843SKonstantin Belousov 	} else if (sv->sv_maxssiz != NULL) {
122259d8f3ffSJohn Baldwin 		ssiz = *sv->sv_maxssiz;
1223316b3843SKonstantin Belousov 	} else {
122459d8f3ffSJohn Baldwin 		ssiz = maxssiz;
1225316b3843SKonstantin Belousov 	}
122601c3ba97SKonstantin Belousov 	imgp->eff_stack_sz = lim_cur(curthread, RLIMIT_STACK);
122701c3ba97SKonstantin Belousov 	if (ssiz < imgp->eff_stack_sz)
1228fc83c5a7SKonstantin Belousov 		imgp->eff_stack_sz = ssiz;
122959d8f3ffSJohn Baldwin 	stack_addr = sv->sv_usrstack - ssiz;
12304ea65707SKonstantin Belousov 	stack_prot = obj != NULL && imgp->stack_prot != 0 ?
12314ea65707SKonstantin Belousov 	    imgp->stack_prot : sv->sv_stackprot;
12324ea65707SKonstantin Belousov 	error = vm_map_stack(map, stack_addr, (vm_size_t)ssiz, stack_prot,
12334ea65707SKonstantin Belousov 	    VM_PROT_ALL, MAP_STACK_GROWS_DOWN);
12344ea65707SKonstantin Belousov 	if (error != KERN_SUCCESS) {
12354ea65707SKonstantin Belousov 		uprintf("exec_new_vmspace: mapping stack size %#jx prot %#x "
12364ea65707SKonstantin Belousov 		    "failed mach error %d errno %d\n", (uintmax_t)ssiz,
12374ea65707SKonstantin Belousov 		    stack_prot, error, vm_mmap_to_errno(error));
1238467b3975SKonstantin Belousov 		return (vm_mmap_to_errno(error));
12394ea65707SKonstantin Belousov 	}
1240889b56c8SDawid Gorecki 	vmspace->vm_stkgap = 0;
12412267af78SJulian Elischer 
124278960940SAlan Cox 	/*
124378960940SAlan Cox 	 * vm_ssize and vm_maxsaddr are somewhat antiquated concepts, but they
124478960940SAlan Cox 	 * are still used to enforce the stack rlimit on the process stack.
12452267af78SJulian Elischer 	 */
1246cbc89bfbSPaul Saab 	vmspace->vm_ssize = sgrowsiz >> PAGE_SHIFT;
12476ef12002SKonstantin Belousov 	vmspace->vm_maxsaddr = (char *)stack_addr;
124826f9a767SRodney W. Grimes 
12495fd9cd53SDmitry Chagin 	return (sv->sv_onexec != NULL ? sv->sv_onexec(p, imgp) : 0);
125026f9a767SRodney W. Grimes }
125126f9a767SRodney W. Grimes 
125226f9a767SRodney W. Grimes /*
1253873fbcd7SRobert Watson  * Copy out argument and environment strings from the old process address
1254873fbcd7SRobert Watson  * space into the temporary string buffer.
125526f9a767SRodney W. Grimes  */
125626f9a767SRodney W. Grimes int
125712e69f96SBrooks Davis exec_copyin_args(struct image_args *args, const char *fname,
1258610ecfe0SMaxim Sobolev     enum uio_seg segflg, char **argv, char **envv)
125926f9a767SRodney W. Grimes {
1260f373437aSBrooks Davis 	u_long arg, env;
1261ecbb00a2SDoug Rabson 	int error;
126226f9a767SRodney W. Grimes 
1263610ecfe0SMaxim Sobolev 	bzero(args, sizeof(*args));
1264610ecfe0SMaxim Sobolev 	if (argv == NULL)
1265610ecfe0SMaxim Sobolev 		return (EFAULT);
12662af6e14dSAlan Cox 
126726f9a767SRodney W. Grimes 	/*
12682af6e14dSAlan Cox 	 * Allocate demand-paged memory for the file name, argument, and
12692af6e14dSAlan Cox 	 * environment strings.
127026f9a767SRodney W. Grimes 	 */
12712af6e14dSAlan Cox 	error = exec_alloc_args(args);
12722af6e14dSAlan Cox 	if (error != 0)
12732af6e14dSAlan Cox 		return (error);
12749e4e5114SAlan Cox 
1275610ecfe0SMaxim Sobolev 	/*
1276610ecfe0SMaxim Sobolev 	 * Copy the file name.
1277610ecfe0SMaxim Sobolev 	 */
1278f373437aSBrooks Davis 	error = exec_args_add_fname(args, fname, segflg);
1279c30af532SMaxim Sobolev 	if (error != 0)
128068ff3c24SStephan Uphoff 		goto err_exit;
128126f9a767SRodney W. Grimes 
1282610ecfe0SMaxim Sobolev 	/*
1283610ecfe0SMaxim Sobolev 	 * extract arguments first
1284610ecfe0SMaxim Sobolev 	 */
12850a2c94b8SKonstantin Belousov 	for (;;) {
1286f373437aSBrooks Davis 		error = fueword(argv++, &arg);
12870a2c94b8SKonstantin Belousov 		if (error == -1) {
128868ff3c24SStephan Uphoff 			error = EFAULT;
128968ff3c24SStephan Uphoff 			goto err_exit;
129068ff3c24SStephan Uphoff 		}
1291f373437aSBrooks Davis 		if (arg == 0)
12920a2c94b8SKonstantin Belousov 			break;
1293f373437aSBrooks Davis 		error = exec_args_add_arg(args, (char *)(uintptr_t)arg,
1294f373437aSBrooks Davis 		    UIO_USERSPACE);
1295f373437aSBrooks Davis 		if (error != 0)
129668ff3c24SStephan Uphoff 			goto err_exit;
1297610ecfe0SMaxim Sobolev 	}
1298b9df5231SPoul-Henning Kamp 
129926f9a767SRodney W. Grimes 	/*
130026f9a767SRodney W. Grimes 	 * extract environment strings
130126f9a767SRodney W. Grimes 	 */
13020fd1a014SDavid Greenman 	if (envv) {
13030a2c94b8SKonstantin Belousov 		for (;;) {
1304f373437aSBrooks Davis 			error = fueword(envv++, &env);
13050a2c94b8SKonstantin Belousov 			if (error == -1) {
130668ff3c24SStephan Uphoff 				error = EFAULT;
130768ff3c24SStephan Uphoff 				goto err_exit;
130868ff3c24SStephan Uphoff 			}
1309f373437aSBrooks Davis 			if (env == 0)
13100a2c94b8SKonstantin Belousov 				break;
1311f373437aSBrooks Davis 			error = exec_args_add_env(args,
1312f373437aSBrooks Davis 			    (char *)(uintptr_t)env, UIO_USERSPACE);
1313f373437aSBrooks Davis 			if (error != 0)
131468ff3c24SStephan Uphoff 				goto err_exit;
13150fd1a014SDavid Greenman 		}
13160fd1a014SDavid Greenman 	}
131726f9a767SRodney W. Grimes 
131826f9a767SRodney W. Grimes 	return (0);
131968ff3c24SStephan Uphoff 
132068ff3c24SStephan Uphoff err_exit:
132168ff3c24SStephan Uphoff 	exec_free_args(args);
132268ff3c24SStephan Uphoff 	return (error);
132326f9a767SRodney W. Grimes }
132426f9a767SRodney W. Grimes 
1325ec492b13SMark Johnston struct exec_args_kva {
1326ec492b13SMark Johnston 	vm_offset_t addr;
1327c6a4ba5aSMark Johnston 	u_int gen;
1328ec492b13SMark Johnston 	SLIST_ENTRY(exec_args_kva) next;
1329ec492b13SMark Johnston };
1330ec492b13SMark Johnston 
13312bf95012SAndrew Turner DPCPU_DEFINE_STATIC(struct exec_args_kva *, exec_args_kva);
1332ec492b13SMark Johnston 
1333ec492b13SMark Johnston static SLIST_HEAD(, exec_args_kva) exec_args_kva_freelist;
1334ec492b13SMark Johnston static struct mtx exec_args_kva_mtx;
1335c6a4ba5aSMark Johnston static u_int exec_args_gen;
1336ec492b13SMark Johnston 
1337ec492b13SMark Johnston static void
1338ec492b13SMark Johnston exec_prealloc_args_kva(void *arg __unused)
1339ec492b13SMark Johnston {
1340ec492b13SMark Johnston 	struct exec_args_kva *argkva;
1341ec492b13SMark Johnston 	u_int i;
1342ec492b13SMark Johnston 
1343ec492b13SMark Johnston 	SLIST_INIT(&exec_args_kva_freelist);
1344ec492b13SMark Johnston 	mtx_init(&exec_args_kva_mtx, "exec args kva", NULL, MTX_DEF);
1345ec492b13SMark Johnston 	for (i = 0; i < exec_map_entries; i++) {
1346ec492b13SMark Johnston 		argkva = malloc(sizeof(*argkva), M_PARGS, M_WAITOK);
1347ec492b13SMark Johnston 		argkva->addr = kmap_alloc_wait(exec_map, exec_map_entry_size);
1348c6a4ba5aSMark Johnston 		argkva->gen = exec_args_gen;
1349ec492b13SMark Johnston 		SLIST_INSERT_HEAD(&exec_args_kva_freelist, argkva, next);
1350ec492b13SMark Johnston 	}
1351ec492b13SMark Johnston }
1352ec492b13SMark Johnston SYSINIT(exec_args_kva, SI_SUB_EXEC, SI_ORDER_ANY, exec_prealloc_args_kva, NULL);
1353ec492b13SMark Johnston 
1354ec492b13SMark Johnston static vm_offset_t
1355ec492b13SMark Johnston exec_alloc_args_kva(void **cookie)
1356ec492b13SMark Johnston {
1357ec492b13SMark Johnston 	struct exec_args_kva *argkva;
1358ec492b13SMark Johnston 
1359ec492b13SMark Johnston 	argkva = (void *)atomic_readandclear_ptr(
1360ec492b13SMark Johnston 	    (uintptr_t *)DPCPU_PTR(exec_args_kva));
1361ec492b13SMark Johnston 	if (argkva == NULL) {
1362ec492b13SMark Johnston 		mtx_lock(&exec_args_kva_mtx);
1363ec492b13SMark Johnston 		while ((argkva = SLIST_FIRST(&exec_args_kva_freelist)) == NULL)
1364ec492b13SMark Johnston 			(void)mtx_sleep(&exec_args_kva_freelist,
1365ec492b13SMark Johnston 			    &exec_args_kva_mtx, 0, "execkva", 0);
1366ec492b13SMark Johnston 		SLIST_REMOVE_HEAD(&exec_args_kva_freelist, next);
1367ec492b13SMark Johnston 		mtx_unlock(&exec_args_kva_mtx);
1368ec492b13SMark Johnston 	}
1369f1c3adefSMark Johnston 	kasan_mark((void *)argkva->addr, exec_map_entry_size,
1370f1c3adefSMark Johnston 	    exec_map_entry_size, 0);
1371ec492b13SMark Johnston 	*(struct exec_args_kva **)cookie = argkva;
1372ec492b13SMark Johnston 	return (argkva->addr);
1373ec492b13SMark Johnston }
1374ec492b13SMark Johnston 
1375ec492b13SMark Johnston static void
1376c6a4ba5aSMark Johnston exec_release_args_kva(struct exec_args_kva *argkva, u_int gen)
1377ec492b13SMark Johnston {
1378ec492b13SMark Johnston 	vm_offset_t base;
1379ec492b13SMark Johnston 
1380ec492b13SMark Johnston 	base = argkva->addr;
1381f1c3adefSMark Johnston 	kasan_mark((void *)argkva->addr, 0, exec_map_entry_size,
1382f1c3adefSMark Johnston 	    KASAN_EXEC_ARGS_FREED);
1383c6a4ba5aSMark Johnston 	if (argkva->gen != gen) {
13843e7cb27cSAlan Cox 		(void)vm_map_madvise(exec_map, base, base + exec_map_entry_size,
1385c6a4ba5aSMark Johnston 		    MADV_FREE);
1386c6a4ba5aSMark Johnston 		argkva->gen = gen;
1387c6a4ba5aSMark Johnston 	}
1388ec492b13SMark Johnston 	if (!atomic_cmpset_ptr((uintptr_t *)DPCPU_PTR(exec_args_kva),
1389ec492b13SMark Johnston 	    (uintptr_t)NULL, (uintptr_t)argkva)) {
1390ec492b13SMark Johnston 		mtx_lock(&exec_args_kva_mtx);
1391ec492b13SMark Johnston 		SLIST_INSERT_HEAD(&exec_args_kva_freelist, argkva, next);
1392ec492b13SMark Johnston 		wakeup_one(&exec_args_kva_freelist);
1393ec492b13SMark Johnston 		mtx_unlock(&exec_args_kva_mtx);
1394ec492b13SMark Johnston 	}
1395ec492b13SMark Johnston }
1396ec492b13SMark Johnston 
1397c6a4ba5aSMark Johnston static void
1398c6a4ba5aSMark Johnston exec_free_args_kva(void *cookie)
1399c6a4ba5aSMark Johnston {
1400c6a4ba5aSMark Johnston 
1401c6a4ba5aSMark Johnston 	exec_release_args_kva(cookie, exec_args_gen);
1402c6a4ba5aSMark Johnston }
1403c6a4ba5aSMark Johnston 
1404c6a4ba5aSMark Johnston static void
1405c6a4ba5aSMark Johnston exec_args_kva_lowmem(void *arg __unused)
1406c6a4ba5aSMark Johnston {
1407c6a4ba5aSMark Johnston 	SLIST_HEAD(, exec_args_kva) head;
1408c6a4ba5aSMark Johnston 	struct exec_args_kva *argkva;
1409c6a4ba5aSMark Johnston 	u_int gen;
1410c6a4ba5aSMark Johnston 	int i;
1411c6a4ba5aSMark Johnston 
1412c6a4ba5aSMark Johnston 	gen = atomic_fetchadd_int(&exec_args_gen, 1) + 1;
1413c6a4ba5aSMark Johnston 
1414c6a4ba5aSMark Johnston 	/*
1415c6a4ba5aSMark Johnston 	 * Force an madvise of each KVA range. Any currently allocated ranges
1416c6a4ba5aSMark Johnston 	 * will have MADV_FREE applied once they are freed.
1417c6a4ba5aSMark Johnston 	 */
1418c6a4ba5aSMark Johnston 	SLIST_INIT(&head);
1419c6a4ba5aSMark Johnston 	mtx_lock(&exec_args_kva_mtx);
1420c6a4ba5aSMark Johnston 	SLIST_SWAP(&head, &exec_args_kva_freelist, exec_args_kva);
1421c6a4ba5aSMark Johnston 	mtx_unlock(&exec_args_kva_mtx);
1422c6a4ba5aSMark Johnston 	while ((argkva = SLIST_FIRST(&head)) != NULL) {
1423c6a4ba5aSMark Johnston 		SLIST_REMOVE_HEAD(&head, next);
1424c6a4ba5aSMark Johnston 		exec_release_args_kva(argkva, gen);
1425c6a4ba5aSMark Johnston 	}
1426c6a4ba5aSMark Johnston 
1427c6a4ba5aSMark Johnston 	CPU_FOREACH(i) {
1428c6a4ba5aSMark Johnston 		argkva = (void *)atomic_readandclear_ptr(
1429c6a4ba5aSMark Johnston 		    (uintptr_t *)DPCPU_ID_PTR(i, exec_args_kva));
1430c6a4ba5aSMark Johnston 		if (argkva != NULL)
1431c6a4ba5aSMark Johnston 			exec_release_args_kva(argkva, gen);
1432c6a4ba5aSMark Johnston 	}
1433c6a4ba5aSMark Johnston }
1434c6a4ba5aSMark Johnston EVENTHANDLER_DEFINE(vm_lowmem, exec_args_kva_lowmem, NULL,
1435c6a4ba5aSMark Johnston     EVENTHANDLER_PRI_ANY);
1436c6a4ba5aSMark Johnston 
14372af6e14dSAlan Cox /*
14382af6e14dSAlan Cox  * Allocate temporary demand-paged, zero-filled memory for the file name,
1439ec492b13SMark Johnston  * argument, and environment strings.
14402af6e14dSAlan Cox  */
14412af6e14dSAlan Cox int
14422af6e14dSAlan Cox exec_alloc_args(struct image_args *args)
14432af6e14dSAlan Cox {
14442af6e14dSAlan Cox 
1445ec492b13SMark Johnston 	args->buf = (char *)exec_alloc_args_kva(&args->bufkva);
1446ec492b13SMark Johnston 	return (0);
14472af6e14dSAlan Cox }
14482af6e14dSAlan Cox 
144969a8f9e3SAlan Cox void
1450610ecfe0SMaxim Sobolev exec_free_args(struct image_args *args)
1451610ecfe0SMaxim Sobolev {
1452610ecfe0SMaxim Sobolev 
145369a8f9e3SAlan Cox 	if (args->buf != NULL) {
1454ec492b13SMark Johnston 		exec_free_args_kva(args->bufkva);
1455610ecfe0SMaxim Sobolev 		args->buf = NULL;
1456610ecfe0SMaxim Sobolev 	}
1457a14a9498SAlan Cox 	if (args->fname_buf != NULL) {
1458a14a9498SAlan Cox 		free(args->fname_buf, M_TEMP);
1459a14a9498SAlan Cox 		args->fname_buf = NULL;
1460a14a9498SAlan Cox 	}
1461610ecfe0SMaxim Sobolev }
1462610ecfe0SMaxim Sobolev 
146326f9a767SRodney W. Grimes /*
1464f373437aSBrooks Davis  * A set to functions to fill struct image args.
1465f373437aSBrooks Davis  *
1466f373437aSBrooks Davis  * NOTE: exec_args_add_fname() must be called (possibly with a NULL
1467f373437aSBrooks Davis  * fname) before the other functions.  All exec_args_add_arg() calls must
1468f373437aSBrooks Davis  * be made before any exec_args_add_env() calls.  exec_args_adjust_args()
1469f373437aSBrooks Davis  * may be called any time after exec_args_add_fname().
1470f373437aSBrooks Davis  *
1471f373437aSBrooks Davis  * exec_args_add_fname() - install path to be executed
1472f373437aSBrooks Davis  * exec_args_add_arg() - append an argument string
1473f373437aSBrooks Davis  * exec_args_add_env() - append an env string
1474f373437aSBrooks Davis  * exec_args_adjust_args() - adjust location of the argument list to
1475f373437aSBrooks Davis  *                           allow new arguments to be prepended
1476f373437aSBrooks Davis  */
1477f373437aSBrooks Davis int
1478f373437aSBrooks Davis exec_args_add_fname(struct image_args *args, const char *fname,
1479f373437aSBrooks Davis     enum uio_seg segflg)
1480f373437aSBrooks Davis {
1481f373437aSBrooks Davis 	int error;
1482f373437aSBrooks Davis 	size_t length;
1483f373437aSBrooks Davis 
1484f373437aSBrooks Davis 	KASSERT(args->fname == NULL, ("fname already appended"));
1485f373437aSBrooks Davis 	KASSERT(args->endp == NULL, ("already appending to args"));
1486f373437aSBrooks Davis 
1487f373437aSBrooks Davis 	if (fname != NULL) {
1488f373437aSBrooks Davis 		args->fname = args->buf;
1489f373437aSBrooks Davis 		error = segflg == UIO_SYSSPACE ?
1490f373437aSBrooks Davis 		    copystr(fname, args->fname, PATH_MAX, &length) :
1491f373437aSBrooks Davis 		    copyinstr(fname, args->fname, PATH_MAX, &length);
1492f373437aSBrooks Davis 		if (error != 0)
1493f373437aSBrooks Davis 			return (error == ENAMETOOLONG ? E2BIG : error);
1494f373437aSBrooks Davis 	} else
1495f373437aSBrooks Davis 		length = 0;
1496f373437aSBrooks Davis 
1497f373437aSBrooks Davis 	/* Set up for _arg_*()/_env_*() */
1498f373437aSBrooks Davis 	args->endp = args->buf + length;
1499f373437aSBrooks Davis 	/* begin_argv must be set and kept updated */
1500f373437aSBrooks Davis 	args->begin_argv = args->endp;
1501f373437aSBrooks Davis 	KASSERT(exec_map_entry_size - length >= ARG_MAX,
1502f373437aSBrooks Davis 	    ("too little space remaining for arguments %zu < %zu",
1503f373437aSBrooks Davis 	    exec_map_entry_size - length, (size_t)ARG_MAX));
1504f373437aSBrooks Davis 	args->stringspace = ARG_MAX;
1505f373437aSBrooks Davis 
1506f373437aSBrooks Davis 	return (0);
1507f373437aSBrooks Davis }
1508f373437aSBrooks Davis 
1509f373437aSBrooks Davis static int
1510f373437aSBrooks Davis exec_args_add_str(struct image_args *args, const char *str,
1511f373437aSBrooks Davis     enum uio_seg segflg, int *countp)
1512f373437aSBrooks Davis {
1513f373437aSBrooks Davis 	int error;
1514f373437aSBrooks Davis 	size_t length;
1515f373437aSBrooks Davis 
1516f373437aSBrooks Davis 	KASSERT(args->endp != NULL, ("endp not initialized"));
1517f373437aSBrooks Davis 	KASSERT(args->begin_argv != NULL, ("begin_argp not initialized"));
1518f373437aSBrooks Davis 
1519f373437aSBrooks Davis 	error = (segflg == UIO_SYSSPACE) ?
1520f373437aSBrooks Davis 	    copystr(str, args->endp, args->stringspace, &length) :
1521f373437aSBrooks Davis 	    copyinstr(str, args->endp, args->stringspace, &length);
1522f373437aSBrooks Davis 	if (error != 0)
1523f373437aSBrooks Davis 		return (error == ENAMETOOLONG ? E2BIG : error);
1524f373437aSBrooks Davis 	args->stringspace -= length;
1525f373437aSBrooks Davis 	args->endp += length;
1526f373437aSBrooks Davis 	(*countp)++;
1527f373437aSBrooks Davis 
1528f373437aSBrooks Davis 	return (0);
1529f373437aSBrooks Davis }
1530f373437aSBrooks Davis 
1531f373437aSBrooks Davis int
1532f373437aSBrooks Davis exec_args_add_arg(struct image_args *args, const char *argp,
1533f373437aSBrooks Davis     enum uio_seg segflg)
1534f373437aSBrooks Davis {
1535f373437aSBrooks Davis 
1536f373437aSBrooks Davis 	KASSERT(args->envc == 0, ("appending args after env"));
1537f373437aSBrooks Davis 
1538f373437aSBrooks Davis 	return (exec_args_add_str(args, argp, segflg, &args->argc));
1539f373437aSBrooks Davis }
1540f373437aSBrooks Davis 
1541f373437aSBrooks Davis int
1542f373437aSBrooks Davis exec_args_add_env(struct image_args *args, const char *envp,
1543f373437aSBrooks Davis     enum uio_seg segflg)
1544f373437aSBrooks Davis {
1545f373437aSBrooks Davis 
1546f373437aSBrooks Davis 	if (args->envc == 0)
1547f373437aSBrooks Davis 		args->begin_envv = args->endp;
1548f373437aSBrooks Davis 
1549f373437aSBrooks Davis 	return (exec_args_add_str(args, envp, segflg, &args->envc));
1550f373437aSBrooks Davis }
1551f373437aSBrooks Davis 
1552f373437aSBrooks Davis int
1553f373437aSBrooks Davis exec_args_adjust_args(struct image_args *args, size_t consume, ssize_t extend)
1554f373437aSBrooks Davis {
1555f373437aSBrooks Davis 	ssize_t offset;
1556f373437aSBrooks Davis 
1557f373437aSBrooks Davis 	KASSERT(args->endp != NULL, ("endp not initialized"));
1558f373437aSBrooks Davis 	KASSERT(args->begin_argv != NULL, ("begin_argp not initialized"));
1559f373437aSBrooks Davis 
1560f373437aSBrooks Davis 	offset = extend - consume;
1561f373437aSBrooks Davis 	if (args->stringspace < offset)
1562f373437aSBrooks Davis 		return (E2BIG);
1563f373437aSBrooks Davis 	memmove(args->begin_argv + extend, args->begin_argv + consume,
1564f373437aSBrooks Davis 	    args->endp - args->begin_argv + consume);
1565f373437aSBrooks Davis 	if (args->envc > 0)
1566f373437aSBrooks Davis 		args->begin_envv += offset;
1567f373437aSBrooks Davis 	args->endp += offset;
1568f373437aSBrooks Davis 	args->stringspace -= offset;
1569f373437aSBrooks Davis 	return (0);
1570f373437aSBrooks Davis }
1571f373437aSBrooks Davis 
1572f373437aSBrooks Davis char *
1573f373437aSBrooks Davis exec_args_get_begin_envv(struct image_args *args)
1574f373437aSBrooks Davis {
1575f373437aSBrooks Davis 
1576f373437aSBrooks Davis 	KASSERT(args->endp != NULL, ("endp not initialized"));
1577f373437aSBrooks Davis 
1578f373437aSBrooks Davis 	if (args->envc > 0)
1579f373437aSBrooks Davis 		return (args->begin_envv);
1580f373437aSBrooks Davis 	return (args->endp);
1581f373437aSBrooks Davis }
1582f373437aSBrooks Davis 
1583673e2dd6SKonstantin Belousov void
1584673e2dd6SKonstantin Belousov exec_stackgap(struct image_params *imgp, uintptr_t *dp)
1585673e2dd6SKonstantin Belousov {
1586889b56c8SDawid Gorecki 	struct proc *p = imgp->proc;
1587889b56c8SDawid Gorecki 
1588673e2dd6SKonstantin Belousov 	if (imgp->sysent->sv_stackgap == NULL ||
1589889b56c8SDawid Gorecki 	    (p->p_fctl0 & (NT_FREEBSD_FCTL_ASLR_DISABLE |
1590673e2dd6SKonstantin Belousov 	    NT_FREEBSD_FCTL_ASG_DISABLE)) != 0 ||
1591889b56c8SDawid Gorecki 	    (imgp->map_flags & MAP_ASLR) == 0) {
1592889b56c8SDawid Gorecki 		p->p_vmspace->vm_stkgap = 0;
1593673e2dd6SKonstantin Belousov 		return;
1594889b56c8SDawid Gorecki 	}
1595889b56c8SDawid Gorecki 	p->p_vmspace->vm_stkgap = imgp->sysent->sv_stackgap(imgp, dp);
1596673e2dd6SKonstantin Belousov }
1597673e2dd6SKonstantin Belousov 
1598f373437aSBrooks Davis /*
1599873fbcd7SRobert Watson  * Copy strings out to the new process address space, constructing new arg
1600873fbcd7SRobert Watson  * and env vector tables. Return a pointer to the base so that it can be used
1601873fbcd7SRobert Watson  * as the initial stack pointer.
160226f9a767SRodney W. Grimes  */
160303b0d68cSJohn Baldwin int
160431174518SJohn Baldwin exec_copyout_strings(struct image_params *imgp, uintptr_t *stack_base)
160526f9a767SRodney W. Grimes {
160626f9a767SRodney W. Grimes 	int argc, envc;
160726f9a767SRodney W. Grimes 	char **vectp;
160888b124ceSKonstantin Belousov 	char *stringp;
160931174518SJohn Baldwin 	uintptr_t destp, ustringp;
161093f6448cSDavid Greenman 	struct ps_strings *arginfo;
1611f3bec5d7SJake Burkholder 	struct proc *p;
16123ff06357SKonstantin Belousov 	size_t execpath_len;
161303b0d68cSJohn Baldwin 	int error, szsigcode, szps;
1614ee235befSKonstantin Belousov 	char canary[sizeof(long) * 8];
161526f9a767SRodney W. Grimes 
1616ee235befSKonstantin Belousov 	szps = sizeof(pagesizes[0]) * MAXPAGESIZES;
161726f9a767SRodney W. Grimes 	/*
161826f9a767SRodney W. Grimes 	 * Calculate string base and vector table pointers.
1619d66a5066SPeter Wemm 	 * Also deal with signal trampoline code for this exec type.
162026f9a767SRodney W. Grimes 	 */
16213ff06357SKonstantin Belousov 	if (imgp->execpath != NULL && imgp->auxargs != NULL)
16223ff06357SKonstantin Belousov 		execpath_len = strlen(imgp->execpath) + 1;
16233ff06357SKonstantin Belousov 	else
16243ff06357SKonstantin Belousov 		execpath_len = 0;
1625f3bec5d7SJake Burkholder 	p = imgp->proc;
1626f3bec5d7SJake Burkholder 	szsigcode = 0;
162705ba50f5SJake Burkholder 	arginfo = (struct ps_strings *)p->p_sysent->sv_psstrings;
1628397df744SBrooks Davis 	imgp->ps_strings = arginfo;
16296297a3d8SKonstantin Belousov 	if (p->p_sysent->sv_sigcode_base == 0) {
1630f3bec5d7SJake Burkholder 		if (p->p_sysent->sv_szsigcode != NULL)
1631f3bec5d7SJake Burkholder 			szsigcode = *(p->p_sysent->sv_szsigcode);
16326297a3d8SKonstantin Belousov 	}
163388b124ceSKonstantin Belousov 	destp =	(uintptr_t)arginfo;
16341ed012f9SPeter Wemm 
163526f9a767SRodney W. Grimes 	/*
1636d66a5066SPeter Wemm 	 * install sigcode
1637d66a5066SPeter Wemm 	 */
163888b124ceSKonstantin Belousov 	if (szsigcode != 0) {
163988b124ceSKonstantin Belousov 		destp -= szsigcode;
164088b124ceSKonstantin Belousov 		destp = rounddown2(destp, sizeof(void *));
164103b0d68cSJohn Baldwin 		error = copyout(p->p_sysent->sv_sigcode, (void *)destp,
164203b0d68cSJohn Baldwin 		    szsigcode);
164303b0d68cSJohn Baldwin 		if (error != 0)
164403b0d68cSJohn Baldwin 			return (error);
164588b124ceSKonstantin Belousov 	}
1646d66a5066SPeter Wemm 
1647d66a5066SPeter Wemm 	/*
16483ff06357SKonstantin Belousov 	 * Copy the image path for the rtld.
16493ff06357SKonstantin Belousov 	 */
16503ff06357SKonstantin Belousov 	if (execpath_len != 0) {
165188b124ceSKonstantin Belousov 		destp -= execpath_len;
1652d92da759SBrooks Davis 		destp = rounddown2(destp, sizeof(void *));
1653b24e6ac8SBrooks Davis 		imgp->execpathp = (void *)destp;
1654b24e6ac8SBrooks Davis 		error = copyout(imgp->execpath, imgp->execpathp, execpath_len);
165503b0d68cSJohn Baldwin 		if (error != 0)
165603b0d68cSJohn Baldwin 			return (error);
16573ff06357SKonstantin Belousov 	}
16583ff06357SKonstantin Belousov 
16593ff06357SKonstantin Belousov 	/*
1660ee235befSKonstantin Belousov 	 * Prepare the canary for SSP.
1661ee235befSKonstantin Belousov 	 */
1662ee235befSKonstantin Belousov 	arc4rand(canary, sizeof(canary), 0);
166388b124ceSKonstantin Belousov 	destp -= sizeof(canary);
1664b24e6ac8SBrooks Davis 	imgp->canary = (void *)destp;
1665b24e6ac8SBrooks Davis 	error = copyout(canary, imgp->canary, sizeof(canary));
166603b0d68cSJohn Baldwin 	if (error != 0)
166703b0d68cSJohn Baldwin 		return (error);
1668ee235befSKonstantin Belousov 	imgp->canarylen = sizeof(canary);
1669ee235befSKonstantin Belousov 
1670ee235befSKonstantin Belousov 	/*
1671ee235befSKonstantin Belousov 	 * Prepare the pagesizes array.
1672ee235befSKonstantin Belousov 	 */
167388b124ceSKonstantin Belousov 	destp -= szps;
167488b124ceSKonstantin Belousov 	destp = rounddown2(destp, sizeof(void *));
1675b24e6ac8SBrooks Davis 	imgp->pagesizes = (void *)destp;
1676b24e6ac8SBrooks Davis 	error = copyout(pagesizes, imgp->pagesizes, szps);
167703b0d68cSJohn Baldwin 	if (error != 0)
167803b0d68cSJohn Baldwin 		return (error);
1679ee235befSKonstantin Belousov 	imgp->pagesizeslen = szps;
1680ee235befSKonstantin Belousov 
168131174518SJohn Baldwin 	/*
168231174518SJohn Baldwin 	 * Allocate room for the argument and environment strings.
168331174518SJohn Baldwin 	 */
168488b124ceSKonstantin Belousov 	destp -= ARG_MAX - imgp->args->stringspace;
168588b124ceSKonstantin Belousov 	destp = rounddown2(destp, sizeof(void *));
168631174518SJohn Baldwin 	ustringp = destp;
168788b124ceSKonstantin Belousov 
1688673e2dd6SKonstantin Belousov 	exec_stackgap(imgp, &destp);
1689fc83c5a7SKonstantin Belousov 
169003b0d68cSJohn Baldwin 	if (imgp->auxargs) {
1691d8010b11SJohn Baldwin 		/*
1692d8010b11SJohn Baldwin 		 * Allocate room on the stack for the ELF auxargs
1693d8010b11SJohn Baldwin 		 * array.  It has up to AT_COUNT entries.
1694d8010b11SJohn Baldwin 		 */
1695d8010b11SJohn Baldwin 		destp -= AT_COUNT * sizeof(Elf_Auxinfo);
1696d8010b11SJohn Baldwin 		destp = rounddown2(destp, sizeof(void *));
169703b0d68cSJohn Baldwin 	}
169826f9a767SRodney W. Grimes 
169931174518SJohn Baldwin 	vectp = (char **)destp;
170031174518SJohn Baldwin 
170126f9a767SRodney W. Grimes 	/*
170273c8686eSJohn Baldwin 	 * Allocate room for the argv[] and env vectors including the
170373c8686eSJohn Baldwin 	 * terminating NULL pointers.
170473c8686eSJohn Baldwin 	 */
170573c8686eSJohn Baldwin 	vectp -= imgp->args->argc + 1 + imgp->args->envc + 1;
170673c8686eSJohn Baldwin 
170773c8686eSJohn Baldwin 	/*
170826f9a767SRodney W. Grimes 	 * vectp also becomes our initial stack base
170926f9a767SRodney W. Grimes 	 */
171031174518SJohn Baldwin 	*stack_base = (uintptr_t)vectp;
171126f9a767SRodney W. Grimes 
1712610ecfe0SMaxim Sobolev 	stringp = imgp->args->begin_argv;
1713610ecfe0SMaxim Sobolev 	argc = imgp->args->argc;
1714610ecfe0SMaxim Sobolev 	envc = imgp->args->envc;
171526f9a767SRodney W. Grimes 
171693f6448cSDavid Greenman 	/*
17173aed948bSDavid Greenman 	 * Copy out strings - arguments and environment.
171893f6448cSDavid Greenman 	 */
171931174518SJohn Baldwin 	error = copyout(stringp, (void *)ustringp,
172003b0d68cSJohn Baldwin 	    ARG_MAX - imgp->args->stringspace);
172103b0d68cSJohn Baldwin 	if (error != 0)
172203b0d68cSJohn Baldwin 		return (error);
172393f6448cSDavid Greenman 
172493f6448cSDavid Greenman 	/*
17253aed948bSDavid Greenman 	 * Fill in "ps_strings" struct for ps, w, etc.
17263aed948bSDavid Greenman 	 */
17279df1c38bSBrooks Davis 	imgp->argv = vectp;
172803b0d68cSJohn Baldwin 	if (suword(&arginfo->ps_argvstr, (long)(intptr_t)vectp) != 0 ||
172903b0d68cSJohn Baldwin 	    suword32(&arginfo->ps_nargvstr, argc) != 0)
173003b0d68cSJohn Baldwin 		return (EFAULT);
17313aed948bSDavid Greenman 
17323aed948bSDavid Greenman 	/*
17333aed948bSDavid Greenman 	 * Fill in argument portion of vector table.
173493f6448cSDavid Greenman 	 */
173526f9a767SRodney W. Grimes 	for (; argc > 0; --argc) {
173631174518SJohn Baldwin 		if (suword(vectp++, ustringp) != 0)
173703b0d68cSJohn Baldwin 			return (EFAULT);
17383aed948bSDavid Greenman 		while (*stringp++ != 0)
173931174518SJohn Baldwin 			ustringp++;
174031174518SJohn Baldwin 		ustringp++;
174126f9a767SRodney W. Grimes 	}
174226f9a767SRodney W. Grimes 
17431a6e52d0SJeroen Ruigrok van der Werven 	/* a null vector table pointer separates the argp's from the envp's */
174403b0d68cSJohn Baldwin 	if (suword(vectp++, 0) != 0)
174503b0d68cSJohn Baldwin 		return (EFAULT);
174626f9a767SRodney W. Grimes 
17479df1c38bSBrooks Davis 	imgp->envv = vectp;
174803b0d68cSJohn Baldwin 	if (suword(&arginfo->ps_envstr, (long)(intptr_t)vectp) != 0 ||
174903b0d68cSJohn Baldwin 	    suword32(&arginfo->ps_nenvstr, envc) != 0)
175003b0d68cSJohn Baldwin 		return (EFAULT);
175193f6448cSDavid Greenman 
175293f6448cSDavid Greenman 	/*
17533aed948bSDavid Greenman 	 * Fill in environment portion of vector table.
175493f6448cSDavid Greenman 	 */
175526f9a767SRodney W. Grimes 	for (; envc > 0; --envc) {
175631174518SJohn Baldwin 		if (suword(vectp++, ustringp) != 0)
175703b0d68cSJohn Baldwin 			return (EFAULT);
17583aed948bSDavid Greenman 		while (*stringp++ != 0)
175931174518SJohn Baldwin 			ustringp++;
176031174518SJohn Baldwin 		ustringp++;
176126f9a767SRodney W. Grimes 	}
176226f9a767SRodney W. Grimes 
176326f9a767SRodney W. Grimes 	/* end of vector table is a null pointer */
176403b0d68cSJohn Baldwin 	if (suword(vectp, 0) != 0)
176503b0d68cSJohn Baldwin 		return (EFAULT);
176626f9a767SRodney W. Grimes 
1767d8010b11SJohn Baldwin 	if (imgp->auxargs) {
1768d8010b11SJohn Baldwin 		vectp++;
1769d8010b11SJohn Baldwin 		error = imgp->sysent->sv_copyout_auxargs(imgp,
1770d8010b11SJohn Baldwin 		    (uintptr_t)vectp);
1771d8010b11SJohn Baldwin 		if (error != 0)
1772d8010b11SJohn Baldwin 			return (error);
1773d8010b11SJohn Baldwin 	}
1774d8010b11SJohn Baldwin 
177503b0d68cSJohn Baldwin 	return (0);
177626f9a767SRodney W. Grimes }
177726f9a767SRodney W. Grimes 
177826f9a767SRodney W. Grimes /*
177926f9a767SRodney W. Grimes  * Check permissions of file to execute.
1780cf64863aSRobert Watson  *	Called with imgp->vp locked.
178126f9a767SRodney W. Grimes  *	Return 0 for success or error code on failure.
178226f9a767SRodney W. Grimes  */
1783c8a79999SPeter Wemm int
17843e85b721SEd Maste exec_check_permissions(struct image_params *imgp)
178526f9a767SRodney W. Grimes {
1786c52007c2SDavid Greenman 	struct vnode *vp = imgp->vp;
1787c52007c2SDavid Greenman 	struct vattr *attr = imgp->attr;
1788a854ed98SJohn Baldwin 	struct thread *td;
178978022527SKonstantin Belousov 	int error;
179026f9a767SRodney W. Grimes 
17916617724cSJeff Roberson 	td = curthread;
1792339b79b9SRobert Watson 
1793ec35c2afSRobert Watson 	/* Get file attributes */
17940359a12eSAttilio Rao 	error = VOP_GETATTR(vp, attr, td->td_ucred);
1795ec35c2afSRobert Watson 	if (error)
1796ec35c2afSRobert Watson 		return (error);
1797ec35c2afSRobert Watson 
1798339b79b9SRobert Watson #ifdef MAC
179930d239bcSRobert Watson 	error = mac_vnode_check_exec(td->td_ucred, imgp->vp, imgp);
1800339b79b9SRobert Watson 	if (error)
1801339b79b9SRobert Watson 		return (error);
1802339b79b9SRobert Watson #endif
1803339b79b9SRobert Watson 
180426f9a767SRodney W. Grimes 	/*
1805de478dd4SJaakko Heinonen 	 * 1) Check if file execution is disabled for the filesystem that
1806de478dd4SJaakko Heinonen 	 *    this file resides on.
1807de478dd4SJaakko Heinonen 	 * 2) Ensure that at least one execute bit is on. Otherwise, a
1808de478dd4SJaakko Heinonen 	 *    privileged user will always succeed, and we don't want this
1809de478dd4SJaakko Heinonen 	 *    to happen unless the file really is executable.
1810de478dd4SJaakko Heinonen 	 * 3) Ensure that the file is a regular file.
181126f9a767SRodney W. Grimes 	 */
1812c52007c2SDavid Greenman 	if ((vp->v_mount->mnt_flag & MNT_NOEXEC) ||
1813de478dd4SJaakko Heinonen 	    (attr->va_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) == 0 ||
1814a854ed98SJohn Baldwin 	    (attr->va_type != VREG))
181526f9a767SRodney W. Grimes 		return (EACCES);
181626f9a767SRodney W. Grimes 
181726f9a767SRodney W. Grimes 	/*
181826f9a767SRodney W. Grimes 	 * Zero length files can't be exec'd
181926f9a767SRodney W. Grimes 	 */
182026f9a767SRodney W. Grimes 	if (attr->va_size == 0)
182126f9a767SRodney W. Grimes 		return (ENOEXEC);
182226f9a767SRodney W. Grimes 
182326f9a767SRodney W. Grimes 	/*
182426f9a767SRodney W. Grimes 	 *  Check for execute permission to file based on current credentials.
182526f9a767SRodney W. Grimes 	 */
1826a854ed98SJohn Baldwin 	error = VOP_ACCESS(vp, VEXEC, td->td_ucred, td);
182726f9a767SRodney W. Grimes 	if (error)
182826f9a767SRodney W. Grimes 		return (error);
182926f9a767SRodney W. Grimes 
18306d5a0a8cSDavid Greenman 	/*
18316d5a0a8cSDavid Greenman 	 * Check number of open-for-writes on the file and deny execution
18326d5a0a8cSDavid Greenman 	 * if there are any.
183378022527SKonstantin Belousov 	 *
183478022527SKonstantin Belousov 	 * Add a text reference now so no one can write to the
183578022527SKonstantin Belousov 	 * executable while we're activating it.
183678022527SKonstantin Belousov 	 *
183778022527SKonstantin Belousov 	 * Remember if this was set before and unset it in case this is not
183878022527SKonstantin Belousov 	 * actually an executable image.
18396d5a0a8cSDavid Greenman 	 */
184078022527SKonstantin Belousov 	error = VOP_SET_TEXT(vp);
1841140dedb8SKonstantin Belousov 	if (error != 0)
1842140dedb8SKonstantin Belousov 		return (error);
184378022527SKonstantin Belousov 	imgp->textset = true;
18446d5a0a8cSDavid Greenman 
18456d5a0a8cSDavid Greenman 	/*
18466d5a0a8cSDavid Greenman 	 * Call filesystem specific open routine (which does nothing in the
18476d5a0a8cSDavid Greenman 	 * general case).
18486d5a0a8cSDavid Greenman 	 */
18499e223287SKonstantin Belousov 	error = VOP_OPEN(vp, FREAD, td->td_ucred, td, NULL);
18509a75ea23SKonstantin Belousov 	if (error == 0)
185115bf81f3SKonstantin Belousov 		imgp->opened = true;
185226f9a767SRodney W. Grimes 	return (error);
1853df8bae1dSRodney W. Grimes }
1854aa855a59SPeter Wemm 
1855aa855a59SPeter Wemm /*
1856aa855a59SPeter Wemm  * Exec handler registration
1857aa855a59SPeter Wemm  */
1858aa855a59SPeter Wemm int
18593e85b721SEd Maste exec_register(const struct execsw *execsw_arg)
1860aa855a59SPeter Wemm {
1861aa855a59SPeter Wemm 	const struct execsw **es, **xs, **newexecsw;
1862d821d364SPedro F. Giffuni 	u_int count = 2;	/* New slot and trailing NULL */
1863aa855a59SPeter Wemm 
1864aa855a59SPeter Wemm 	if (execsw)
1865aa855a59SPeter Wemm 		for (es = execsw; *es; es++)
1866aa855a59SPeter Wemm 			count++;
1867a163d034SWarner Losh 	newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
1868aa855a59SPeter Wemm 	xs = newexecsw;
1869aa855a59SPeter Wemm 	if (execsw)
1870aa855a59SPeter Wemm 		for (es = execsw; *es; es++)
1871aa855a59SPeter Wemm 			*xs++ = *es;
1872aa855a59SPeter Wemm 	*xs++ = execsw_arg;
1873aa855a59SPeter Wemm 	*xs = NULL;
1874aa855a59SPeter Wemm 	if (execsw)
1875aa855a59SPeter Wemm 		free(execsw, M_TEMP);
1876aa855a59SPeter Wemm 	execsw = newexecsw;
1877a7cddfedSJake Burkholder 	return (0);
1878aa855a59SPeter Wemm }
1879aa855a59SPeter Wemm 
1880aa855a59SPeter Wemm int
18813e85b721SEd Maste exec_unregister(const struct execsw *execsw_arg)
1882aa855a59SPeter Wemm {
1883aa855a59SPeter Wemm 	const struct execsw **es, **xs, **newexecsw;
1884aa855a59SPeter Wemm 	int count = 1;
1885aa855a59SPeter Wemm 
1886aa855a59SPeter Wemm 	if (execsw == NULL)
1887aa855a59SPeter Wemm 		panic("unregister with no handlers left?\n");
1888aa855a59SPeter Wemm 
1889aa855a59SPeter Wemm 	for (es = execsw; *es; es++) {
1890aa855a59SPeter Wemm 		if (*es == execsw_arg)
1891aa855a59SPeter Wemm 			break;
1892aa855a59SPeter Wemm 	}
1893aa855a59SPeter Wemm 	if (*es == NULL)
1894a7cddfedSJake Burkholder 		return (ENOENT);
1895aa855a59SPeter Wemm 	for (es = execsw; *es; es++)
1896aa855a59SPeter Wemm 		if (*es != execsw_arg)
1897aa855a59SPeter Wemm 			count++;
1898a163d034SWarner Losh 	newexecsw = malloc(count * sizeof(*es), M_TEMP, M_WAITOK);
1899aa855a59SPeter Wemm 	xs = newexecsw;
1900aa855a59SPeter Wemm 	for (es = execsw; *es; es++)
1901aa855a59SPeter Wemm 		if (*es != execsw_arg)
1902aa855a59SPeter Wemm 			*xs++ = *es;
1903aa855a59SPeter Wemm 	*xs = NULL;
1904aa855a59SPeter Wemm 	if (execsw)
1905aa855a59SPeter Wemm 		free(execsw, M_TEMP);
1906aa855a59SPeter Wemm 	execsw = newexecsw;
1907a7cddfedSJake Burkholder 	return (0);
1908aa855a59SPeter Wemm }
190933621dfcSEdward Tomasz Napierala 
191033621dfcSEdward Tomasz Napierala /*
191133621dfcSEdward Tomasz Napierala  * Write out a core segment to the compression stream.
191233621dfcSEdward Tomasz Napierala  */
191333621dfcSEdward Tomasz Napierala static int
191463cb9308SJustin Hibbits compress_chunk(struct coredump_params *cp, char *base, char *buf, size_t len)
191533621dfcSEdward Tomasz Napierala {
191663cb9308SJustin Hibbits 	size_t chunk_len;
191733621dfcSEdward Tomasz Napierala 	int error;
191833621dfcSEdward Tomasz Napierala 
191933621dfcSEdward Tomasz Napierala 	while (len > 0) {
192033621dfcSEdward Tomasz Napierala 		chunk_len = MIN(len, CORE_BUF_SIZE);
192133621dfcSEdward Tomasz Napierala 
192233621dfcSEdward Tomasz Napierala 		/*
192333621dfcSEdward Tomasz Napierala 		 * We can get EFAULT error here.
192433621dfcSEdward Tomasz Napierala 		 * In that case zero out the current chunk of the segment.
192533621dfcSEdward Tomasz Napierala 		 */
192633621dfcSEdward Tomasz Napierala 		error = copyin(base, buf, chunk_len);
192733621dfcSEdward Tomasz Napierala 		if (error != 0)
192833621dfcSEdward Tomasz Napierala 			bzero(buf, chunk_len);
19293b9971c8SEdward Tomasz Napierala 		error = compressor_write(cp->comp, buf, chunk_len);
193033621dfcSEdward Tomasz Napierala 		if (error != 0)
193133621dfcSEdward Tomasz Napierala 			break;
193233621dfcSEdward Tomasz Napierala 		base += chunk_len;
193333621dfcSEdward Tomasz Napierala 		len -= chunk_len;
193433621dfcSEdward Tomasz Napierala 	}
193533621dfcSEdward Tomasz Napierala 	return (error);
193633621dfcSEdward Tomasz Napierala }
193733621dfcSEdward Tomasz Napierala 
193833621dfcSEdward Tomasz Napierala int
19393b9971c8SEdward Tomasz Napierala core_write(struct coredump_params *cp, const void *base, size_t len,
194033621dfcSEdward Tomasz Napierala     off_t offset, enum uio_seg seg, size_t *resid)
194133621dfcSEdward Tomasz Napierala {
194233621dfcSEdward Tomasz Napierala 
19433b9971c8SEdward Tomasz Napierala 	return (vn_rdwr_inchunks(UIO_WRITE, cp->vp, __DECONST(void *, base),
194433621dfcSEdward Tomasz Napierala 	    len, offset, seg, IO_UNIT | IO_DIRECT | IO_RANGELOCKED,
19453b9971c8SEdward Tomasz Napierala 	    cp->active_cred, cp->file_cred, resid, cp->td));
194633621dfcSEdward Tomasz Napierala }
194733621dfcSEdward Tomasz Napierala 
194833621dfcSEdward Tomasz Napierala int
19493b9971c8SEdward Tomasz Napierala core_output(char *base, size_t len, off_t offset, struct coredump_params *cp,
195033621dfcSEdward Tomasz Napierala     void *tmpbuf)
195133621dfcSEdward Tomasz Napierala {
195233621dfcSEdward Tomasz Napierala 	vm_map_t map;
195333621dfcSEdward Tomasz Napierala 	struct mount *mp;
195433621dfcSEdward Tomasz Napierala 	size_t resid, runlen;
195533621dfcSEdward Tomasz Napierala 	int error;
195633621dfcSEdward Tomasz Napierala 	bool success;
195733621dfcSEdward Tomasz Napierala 
195833621dfcSEdward Tomasz Napierala 	KASSERT((uintptr_t)base % PAGE_SIZE == 0,
195933621dfcSEdward Tomasz Napierala 	    ("%s: user address %p is not page-aligned", __func__, base));
196033621dfcSEdward Tomasz Napierala 
19613b9971c8SEdward Tomasz Napierala 	if (cp->comp != NULL)
19623b9971c8SEdward Tomasz Napierala 		return (compress_chunk(cp, base, tmpbuf, len));
196333621dfcSEdward Tomasz Napierala 
19643b9971c8SEdward Tomasz Napierala 	map = &cp->td->td_proc->p_vmspace->vm_map;
196533621dfcSEdward Tomasz Napierala 	for (; len > 0; base += runlen, offset += runlen, len -= runlen) {
196633621dfcSEdward Tomasz Napierala 		/*
196733621dfcSEdward Tomasz Napierala 		 * Attempt to page in all virtual pages in the range.  If a
196833621dfcSEdward Tomasz Napierala 		 * virtual page is not backed by the pager, it is represented as
196933621dfcSEdward Tomasz Napierala 		 * a hole in the file.  This can occur with zero-filled
197033621dfcSEdward Tomasz Napierala 		 * anonymous memory or truncated files, for example.
197133621dfcSEdward Tomasz Napierala 		 */
197233621dfcSEdward Tomasz Napierala 		for (runlen = 0; runlen < len; runlen += PAGE_SIZE) {
1973b5cadc64SKonstantin Belousov 			if (core_dump_can_intr && curproc_sigkilled())
1974b5cadc64SKonstantin Belousov 				return (EINTR);
197533621dfcSEdward Tomasz Napierala 			error = vm_fault(map, (uintptr_t)base + runlen,
197633621dfcSEdward Tomasz Napierala 			    VM_PROT_READ, VM_FAULT_NOFILL, NULL);
197733621dfcSEdward Tomasz Napierala 			if (runlen == 0)
197833621dfcSEdward Tomasz Napierala 				success = error == KERN_SUCCESS;
197933621dfcSEdward Tomasz Napierala 			else if ((error == KERN_SUCCESS) != success)
198033621dfcSEdward Tomasz Napierala 				break;
198133621dfcSEdward Tomasz Napierala 		}
198233621dfcSEdward Tomasz Napierala 
198333621dfcSEdward Tomasz Napierala 		if (success) {
19843b9971c8SEdward Tomasz Napierala 			error = core_write(cp, base, runlen, offset,
198533621dfcSEdward Tomasz Napierala 			    UIO_USERSPACE, &resid);
198633621dfcSEdward Tomasz Napierala 			if (error != 0) {
198733621dfcSEdward Tomasz Napierala 				if (error != EFAULT)
198833621dfcSEdward Tomasz Napierala 					break;
198933621dfcSEdward Tomasz Napierala 
199033621dfcSEdward Tomasz Napierala 				/*
199133621dfcSEdward Tomasz Napierala 				 * EFAULT may be returned if the user mapping
199233621dfcSEdward Tomasz Napierala 				 * could not be accessed, e.g., because a mapped
199333621dfcSEdward Tomasz Napierala 				 * file has been truncated.  Skip the page if no
199433621dfcSEdward Tomasz Napierala 				 * progress was made, to protect against a
199533621dfcSEdward Tomasz Napierala 				 * hypothetical scenario where vm_fault() was
199633621dfcSEdward Tomasz Napierala 				 * successful but core_write() returns EFAULT
199733621dfcSEdward Tomasz Napierala 				 * anyway.
199833621dfcSEdward Tomasz Napierala 				 */
199933621dfcSEdward Tomasz Napierala 				runlen -= resid;
200033621dfcSEdward Tomasz Napierala 				if (runlen == 0) {
200133621dfcSEdward Tomasz Napierala 					success = false;
200233621dfcSEdward Tomasz Napierala 					runlen = PAGE_SIZE;
200333621dfcSEdward Tomasz Napierala 				}
200433621dfcSEdward Tomasz Napierala 			}
200533621dfcSEdward Tomasz Napierala 		}
200633621dfcSEdward Tomasz Napierala 		if (!success) {
20073b9971c8SEdward Tomasz Napierala 			error = vn_start_write(cp->vp, &mp, V_WAIT);
200833621dfcSEdward Tomasz Napierala 			if (error != 0)
200933621dfcSEdward Tomasz Napierala 				break;
20103b9971c8SEdward Tomasz Napierala 			vn_lock(cp->vp, LK_EXCLUSIVE | LK_RETRY);
20113b9971c8SEdward Tomasz Napierala 			error = vn_truncate_locked(cp->vp, offset + runlen,
20123b9971c8SEdward Tomasz Napierala 			    false, cp->td->td_ucred);
20133b9971c8SEdward Tomasz Napierala 			VOP_UNLOCK(cp->vp);
201433621dfcSEdward Tomasz Napierala 			vn_finished_write(mp);
201533621dfcSEdward Tomasz Napierala 			if (error != 0)
201633621dfcSEdward Tomasz Napierala 				break;
201733621dfcSEdward Tomasz Napierala 		}
201833621dfcSEdward Tomasz Napierala 	}
201933621dfcSEdward Tomasz Napierala 	return (error);
202033621dfcSEdward Tomasz Napierala }
202133621dfcSEdward Tomasz Napierala 
202233621dfcSEdward Tomasz Napierala /*
202333621dfcSEdward Tomasz Napierala  * Drain into a core file.
202433621dfcSEdward Tomasz Napierala  */
202533621dfcSEdward Tomasz Napierala int
202633621dfcSEdward Tomasz Napierala sbuf_drain_core_output(void *arg, const char *data, int len)
202733621dfcSEdward Tomasz Napierala {
20283b9971c8SEdward Tomasz Napierala 	struct coredump_params *cp;
20293b9971c8SEdward Tomasz Napierala 	struct proc *p;
203033621dfcSEdward Tomasz Napierala 	int error, locked;
203133621dfcSEdward Tomasz Napierala 
20323b9971c8SEdward Tomasz Napierala 	cp = arg;
20333b9971c8SEdward Tomasz Napierala 	p = cp->td->td_proc;
203433621dfcSEdward Tomasz Napierala 
203533621dfcSEdward Tomasz Napierala 	/*
203633621dfcSEdward Tomasz Napierala 	 * Some kern_proc out routines that print to this sbuf may
203733621dfcSEdward Tomasz Napierala 	 * call us with the process lock held. Draining with the
203833621dfcSEdward Tomasz Napierala 	 * non-sleepable lock held is unsafe. The lock is needed for
203933621dfcSEdward Tomasz Napierala 	 * those routines when dumping a live process. In our case we
204033621dfcSEdward Tomasz Napierala 	 * can safely release the lock before draining and acquire
204133621dfcSEdward Tomasz Napierala 	 * again after.
204233621dfcSEdward Tomasz Napierala 	 */
20433b9971c8SEdward Tomasz Napierala 	locked = PROC_LOCKED(p);
204433621dfcSEdward Tomasz Napierala 	if (locked)
20453b9971c8SEdward Tomasz Napierala 		PROC_UNLOCK(p);
20463b9971c8SEdward Tomasz Napierala 	if (cp->comp != NULL)
2047143dba3aSKonstantin Belousov 		error = compressor_write(cp->comp, __DECONST(char *, data),
2048143dba3aSKonstantin Belousov 		    len);
204933621dfcSEdward Tomasz Napierala 	else
20503b9971c8SEdward Tomasz Napierala 		error = core_write(cp, __DECONST(void *, data), len, cp->offset,
205133621dfcSEdward Tomasz Napierala 		    UIO_SYSSPACE, NULL);
205233621dfcSEdward Tomasz Napierala 	if (locked)
20533b9971c8SEdward Tomasz Napierala 		PROC_LOCK(p);
205433621dfcSEdward Tomasz Napierala 	if (error != 0)
205533621dfcSEdward Tomasz Napierala 		return (-error);
20563b9971c8SEdward Tomasz Napierala 	cp->offset += len;
205733621dfcSEdward Tomasz Napierala 	return (len);
205833621dfcSEdward Tomasz Napierala }
2059