kern_exec.c revision 1.145 1 1.145 jdolecek /* $NetBSD: kern_exec.c,v 1.145 2001/09/18 19:36:33 jdolecek Exp $ */
2 1.55 cgd
3 1.55 cgd /*-
4 1.77 cgd * Copyright (C) 1993, 1994, 1996 Christopher G. Demetriou
5 1.55 cgd * Copyright (C) 1992 Wolfgang Solfrank.
6 1.55 cgd * Copyright (C) 1992 TooLs GmbH.
7 1.55 cgd * All rights reserved.
8 1.55 cgd *
9 1.55 cgd * Redistribution and use in source and binary forms, with or without
10 1.55 cgd * modification, are permitted provided that the following conditions
11 1.55 cgd * are met:
12 1.55 cgd * 1. Redistributions of source code must retain the above copyright
13 1.55 cgd * notice, this list of conditions and the following disclaimer.
14 1.55 cgd * 2. Redistributions in binary form must reproduce the above copyright
15 1.55 cgd * notice, this list of conditions and the following disclaimer in the
16 1.55 cgd * documentation and/or other materials provided with the distribution.
17 1.55 cgd * 3. All advertising materials mentioning features or use of this software
18 1.55 cgd * must display the following acknowledgement:
19 1.55 cgd * This product includes software developed by TooLs GmbH.
20 1.55 cgd * 4. The name of TooLs GmbH may not be used to endorse or promote products
21 1.55 cgd * derived from this software without specific prior written permission.
22 1.55 cgd *
23 1.55 cgd * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
24 1.55 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.55 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.55 cgd * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 1.55 cgd * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28 1.55 cgd * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
29 1.55 cgd * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30 1.55 cgd * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
31 1.55 cgd * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
32 1.55 cgd * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.55 cgd */
34 1.89 mrg
35 1.92 thorpej #include "opt_ktrace.h"
36 1.124 jdolecek #include "opt_syscall_debug.h"
37 1.55 cgd
38 1.55 cgd #include <sys/param.h>
39 1.55 cgd #include <sys/systm.h>
40 1.55 cgd #include <sys/filedesc.h>
41 1.55 cgd #include <sys/kernel.h>
42 1.55 cgd #include <sys/proc.h>
43 1.55 cgd #include <sys/mount.h>
44 1.55 cgd #include <sys/malloc.h>
45 1.55 cgd #include <sys/namei.h>
46 1.55 cgd #include <sys/vnode.h>
47 1.55 cgd #include <sys/file.h>
48 1.55 cgd #include <sys/acct.h>
49 1.55 cgd #include <sys/exec.h>
50 1.55 cgd #include <sys/ktrace.h>
51 1.55 cgd #include <sys/resourcevar.h>
52 1.55 cgd #include <sys/wait.h>
53 1.55 cgd #include <sys/mman.h>
54 1.55 cgd #include <sys/signalvar.h>
55 1.55 cgd #include <sys/stat.h>
56 1.124 jdolecek #include <sys/syscall.h>
57 1.55 cgd
58 1.56 cgd #include <sys/syscallargs.h>
59 1.55 cgd
60 1.88 mrg #include <uvm/uvm_extern.h>
61 1.88 mrg
62 1.55 cgd #include <machine/cpu.h>
63 1.55 cgd #include <machine/reg.h>
64 1.55 cgd
65 1.143 christos #ifdef DEBUG_EXEC
66 1.143 christos #define DPRINTF(a) uprintf a
67 1.143 christos #else
68 1.143 christos #define DPRINTF(a)
69 1.143 christos #endif /* DEBUG_EXEC */
70 1.143 christos
71 1.130 jdolecek /*
72 1.130 jdolecek * Exec function switch:
73 1.130 jdolecek *
74 1.130 jdolecek * Note that each makecmds function is responsible for loading the
75 1.130 jdolecek * exec package with the necessary functions for any exec-type-specific
76 1.130 jdolecek * handling.
77 1.130 jdolecek *
78 1.130 jdolecek * Functions for specific exec types should be defined in their own
79 1.130 jdolecek * header file.
80 1.130 jdolecek */
81 1.138 lukem extern const struct execsw execsw_builtin[];
82 1.138 lukem extern int nexecs_builtin;
83 1.138 lukem static const struct execsw **execsw = NULL;
84 1.138 lukem static int nexecs;
85 1.138 lukem
86 1.138 lukem int exec_maxhdrsz; /* must not be static - netbsd32 needs it */
87 1.130 jdolecek
88 1.130 jdolecek #ifdef LKM
89 1.130 jdolecek /* list of supported emulations */
90 1.130 jdolecek static
91 1.130 jdolecek LIST_HEAD(emlist_head, emul_entry) el_head = LIST_HEAD_INITIALIZER(el_head);
92 1.130 jdolecek struct emul_entry {
93 1.138 lukem LIST_ENTRY(emul_entry) el_list;
94 1.138 lukem const struct emul *el_emul;
95 1.138 lukem int ro_entry;
96 1.130 jdolecek };
97 1.130 jdolecek
98 1.130 jdolecek /* list of dynamically loaded execsw entries */
99 1.130 jdolecek static
100 1.130 jdolecek LIST_HEAD(execlist_head, exec_entry) ex_head = LIST_HEAD_INITIALIZER(ex_head);
101 1.130 jdolecek struct exec_entry {
102 1.138 lukem LIST_ENTRY(exec_entry) ex_list;
103 1.138 lukem const struct execsw *es;
104 1.130 jdolecek };
105 1.130 jdolecek
106 1.130 jdolecek /* structure used for building execw[] */
107 1.130 jdolecek struct execsw_entry {
108 1.138 lukem struct execsw_entry *next;
109 1.138 lukem const struct execsw *es;
110 1.130 jdolecek };
111 1.130 jdolecek #endif /* LKM */
112 1.130 jdolecek
113 1.130 jdolecek /* NetBSD emul struct */
114 1.138 lukem extern char sigcode[], esigcode[];
115 1.124 jdolecek #ifdef SYSCALL_DEBUG
116 1.124 jdolecek extern const char * const syscallnames[];
117 1.124 jdolecek #endif
118 1.133 mycroft #ifdef __HAVE_SYSCALL_INTERN
119 1.138 lukem void syscall_intern(struct proc *);
120 1.133 mycroft #else
121 1.138 lukem void syscall(void);
122 1.133 mycroft #endif
123 1.124 jdolecek
124 1.124 jdolecek const struct emul emul_netbsd = {
125 1.124 jdolecek "netbsd",
126 1.127 jdolecek NULL, /* emulation path */
127 1.133 mycroft #ifndef __HAVE_MINIMAL_EMUL
128 1.140 manu EMUL_HAS_SYS___syscall,
129 1.124 jdolecek NULL,
130 1.124 jdolecek SYS_syscall,
131 1.124 jdolecek SYS_MAXSYSCALL,
132 1.133 mycroft #endif
133 1.124 jdolecek sysent,
134 1.124 jdolecek #ifdef SYSCALL_DEBUG
135 1.124 jdolecek syscallnames,
136 1.124 jdolecek #else
137 1.124 jdolecek NULL,
138 1.124 jdolecek #endif
139 1.133 mycroft sendsig,
140 1.142 christos trapsignal,
141 1.124 jdolecek sigcode,
142 1.124 jdolecek esigcode,
143 1.145 jdolecek setregs,
144 1.128 jdolecek NULL,
145 1.128 jdolecek NULL,
146 1.128 jdolecek NULL,
147 1.133 mycroft #ifdef __HAVE_SYSCALL_INTERN
148 1.133 mycroft syscall_intern,
149 1.133 mycroft #else
150 1.133 mycroft syscall,
151 1.133 mycroft #endif
152 1.124 jdolecek };
153 1.124 jdolecek
154 1.55 cgd /*
155 1.130 jdolecek * Exec lock. Used to control access to execsw[] structures.
156 1.130 jdolecek * This must not be static so that netbsd32 can access it, too.
157 1.130 jdolecek */
158 1.130 jdolecek struct lock exec_lock;
159 1.130 jdolecek
160 1.130 jdolecek #ifdef LKM
161 1.138 lukem static const struct emul * emul_search(const char *);
162 1.138 lukem static void link_es(struct execsw_entry **, const struct execsw *);
163 1.130 jdolecek #endif /* LKM */
164 1.130 jdolecek
165 1.130 jdolecek /*
166 1.55 cgd * check exec:
167 1.55 cgd * given an "executable" described in the exec package's namei info,
168 1.55 cgd * see what we can do with it.
169 1.55 cgd *
170 1.55 cgd * ON ENTRY:
171 1.55 cgd * exec package with appropriate namei info
172 1.55 cgd * proc pointer of exec'ing proc
173 1.55 cgd * NO SELF-LOCKED VNODES
174 1.55 cgd *
175 1.55 cgd * ON EXIT:
176 1.55 cgd * error: nothing held, etc. exec header still allocated.
177 1.77 cgd * ok: filled exec package, executable's vnode (unlocked).
178 1.55 cgd *
179 1.55 cgd * EXEC SWITCH ENTRY:
180 1.55 cgd * Locked vnode to check, exec package, proc.
181 1.55 cgd *
182 1.55 cgd * EXEC SWITCH EXIT:
183 1.77 cgd * ok: return 0, filled exec package, executable's vnode (unlocked).
184 1.55 cgd * error: destructive:
185 1.55 cgd * everything deallocated execept exec header.
186 1.76 cgd * non-destructive:
187 1.77 cgd * error code, executable's vnode (unlocked),
188 1.76 cgd * exec header unmodified.
189 1.55 cgd */
190 1.55 cgd int
191 1.118 thorpej check_exec(struct proc *p, struct exec_package *epp)
192 1.55 cgd {
193 1.138 lukem int error, i;
194 1.138 lukem struct vnode *vp;
195 1.55 cgd struct nameidata *ndp;
196 1.138 lukem size_t resid;
197 1.55 cgd
198 1.55 cgd ndp = epp->ep_ndp;
199 1.55 cgd ndp->ni_cnd.cn_nameiop = LOOKUP;
200 1.55 cgd ndp->ni_cnd.cn_flags = FOLLOW | LOCKLEAF | SAVENAME;
201 1.55 cgd /* first get the vnode */
202 1.74 christos if ((error = namei(ndp)) != 0)
203 1.55 cgd return error;
204 1.55 cgd epp->ep_vp = vp = ndp->ni_vp;
205 1.55 cgd
206 1.84 mycroft /* check access and type */
207 1.55 cgd if (vp->v_type != VREG) {
208 1.81 kleink error = EACCES;
209 1.55 cgd goto bad1;
210 1.55 cgd }
211 1.84 mycroft if ((error = VOP_ACCESS(vp, VEXEC, p->p_ucred, p)) != 0)
212 1.84 mycroft goto bad1;
213 1.55 cgd
214 1.55 cgd /* get attributes */
215 1.74 christos if ((error = VOP_GETATTR(vp, epp->ep_vap, p->p_ucred, p)) != 0)
216 1.55 cgd goto bad1;
217 1.55 cgd
218 1.55 cgd /* Check mount point */
219 1.55 cgd if (vp->v_mount->mnt_flag & MNT_NOEXEC) {
220 1.55 cgd error = EACCES;
221 1.55 cgd goto bad1;
222 1.55 cgd }
223 1.141 thorpej if (vp->v_mount->mnt_flag & MNT_NOSUID)
224 1.83 mycroft epp->ep_vap->va_mode &= ~(S_ISUID | S_ISGID);
225 1.55 cgd
226 1.55 cgd /* try to open it */
227 1.74 christos if ((error = VOP_OPEN(vp, FREAD, p->p_ucred, p)) != 0)
228 1.55 cgd goto bad1;
229 1.55 cgd
230 1.99 wrstuden /* unlock vp, since we need it unlocked from here on out. */
231 1.90 fvdl VOP_UNLOCK(vp, 0);
232 1.77 cgd
233 1.55 cgd /* now we have the file, get the exec header */
234 1.125 chs uvn_attach(vp, VM_PROT_READ);
235 1.74 christos error = vn_rdwr(UIO_READ, vp, epp->ep_hdr, epp->ep_hdrlen, 0,
236 1.77 cgd UIO_SYSSPACE, 0, p->p_ucred, &resid, p);
237 1.74 christos if (error)
238 1.55 cgd goto bad2;
239 1.55 cgd epp->ep_hdrvalid = epp->ep_hdrlen - resid;
240 1.55 cgd
241 1.55 cgd /*
242 1.136 eeh * Set up default address space limits. Can be overridden
243 1.136 eeh * by individual exec packages.
244 1.136 eeh *
245 1.136 eeh * XXX probably shoul be all done in the exec pakages.
246 1.136 eeh */
247 1.136 eeh epp->ep_vm_minaddr = VM_MIN_ADDRESS;
248 1.136 eeh epp->ep_vm_maxaddr = VM_MAXUSER_ADDRESS;
249 1.136 eeh /*
250 1.55 cgd * set up the vmcmds for creation of the process
251 1.55 cgd * address space
252 1.55 cgd */
253 1.55 cgd error = ENOEXEC;
254 1.55 cgd for (i = 0; i < nexecs && error != 0; i++) {
255 1.68 cgd int newerror;
256 1.68 cgd
257 1.130 jdolecek epp->ep_esch = execsw[i];
258 1.130 jdolecek newerror = (*execsw[i]->es_check)(p, epp);
259 1.68 cgd /* make sure the first "interesting" error code is saved. */
260 1.68 cgd if (!newerror || error == ENOEXEC)
261 1.68 cgd error = newerror;
262 1.124 jdolecek
263 1.124 jdolecek /* if es_check call was successful, update epp->ep_es */
264 1.124 jdolecek if (!newerror && (epp->ep_flags & EXEC_HASES) == 0)
265 1.130 jdolecek epp->ep_es = execsw[i];
266 1.124 jdolecek
267 1.55 cgd if (epp->ep_flags & EXEC_DESTR && error != 0)
268 1.55 cgd return error;
269 1.55 cgd }
270 1.55 cgd if (!error) {
271 1.55 cgd /* check that entry point is sane */
272 1.55 cgd if (epp->ep_entry > VM_MAXUSER_ADDRESS)
273 1.55 cgd error = ENOEXEC;
274 1.55 cgd
275 1.55 cgd /* check limits */
276 1.55 cgd if ((epp->ep_tsize > MAXTSIZ) ||
277 1.55 cgd (epp->ep_dsize > p->p_rlimit[RLIMIT_DATA].rlim_cur))
278 1.55 cgd error = ENOMEM;
279 1.55 cgd
280 1.55 cgd if (!error)
281 1.55 cgd return (0);
282 1.55 cgd }
283 1.55 cgd
284 1.55 cgd /*
285 1.55 cgd * free any vmspace-creation commands,
286 1.55 cgd * and release their references
287 1.55 cgd */
288 1.55 cgd kill_vmcmds(&epp->ep_vmcmds);
289 1.55 cgd
290 1.55 cgd bad2:
291 1.55 cgd /*
292 1.99 wrstuden * close and release the vnode, restore the old one, free the
293 1.55 cgd * pathname buf, and punt.
294 1.55 cgd */
295 1.99 wrstuden vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
296 1.77 cgd VOP_CLOSE(vp, FREAD, p->p_ucred, p);
297 1.99 wrstuden vput(vp);
298 1.120 thorpej PNBUF_PUT(ndp->ni_cnd.cn_pnbuf);
299 1.55 cgd return error;
300 1.55 cgd
301 1.55 cgd bad1:
302 1.55 cgd /*
303 1.55 cgd * free the namei pathname buffer, and put the vnode
304 1.55 cgd * (which we don't yet have open).
305 1.55 cgd */
306 1.77 cgd vput(vp); /* was still locked */
307 1.120 thorpej PNBUF_PUT(ndp->ni_cnd.cn_pnbuf);
308 1.55 cgd return error;
309 1.55 cgd }
310 1.55 cgd
311 1.55 cgd /*
312 1.55 cgd * exec system call
313 1.55 cgd */
314 1.55 cgd /* ARGSUSED */
315 1.75 christos int
316 1.118 thorpej sys_execve(struct proc *p, void *v, register_t *retval)
317 1.71 thorpej {
318 1.108 augustss struct sys_execve_args /* {
319 1.138 lukem syscallarg(const char *) path;
320 1.138 lukem syscallarg(char * const *) argp;
321 1.138 lukem syscallarg(char * const *) envp;
322 1.71 thorpej } */ *uap = v;
323 1.138 lukem int error, i;
324 1.138 lukem struct exec_package pack;
325 1.138 lukem struct nameidata nid;
326 1.138 lukem struct vattr attr;
327 1.138 lukem struct ucred *cred;
328 1.138 lukem char *argp;
329 1.138 lukem char * const *cpp;
330 1.138 lukem char *dp, *sp;
331 1.138 lukem long argc, envc;
332 1.138 lukem size_t len;
333 1.138 lukem char *stack;
334 1.138 lukem struct ps_strings arginfo;
335 1.138 lukem struct vmspace *vm;
336 1.138 lukem char **tmpfap;
337 1.138 lukem int szsigcode;
338 1.138 lukem struct exec_vmcmd *base_vcp;
339 1.55 cgd
340 1.138 lukem cred = p->p_ucred;
341 1.138 lukem base_vcp = NULL;
342 1.55 cgd /*
343 1.129 jdolecek * Init the namei data to point the file user's program name.
344 1.129 jdolecek * This is done here rather than in check_exec(), so that it's
345 1.129 jdolecek * possible to override this settings if any of makecmd/probe
346 1.129 jdolecek * functions call check_exec() recursively - for example,
347 1.129 jdolecek * see exec_script_makecmds().
348 1.129 jdolecek */
349 1.56 cgd NDINIT(&nid, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
350 1.55 cgd
351 1.55 cgd /*
352 1.55 cgd * initialize the fields of the exec package.
353 1.55 cgd */
354 1.56 cgd pack.ep_name = SCARG(uap, path);
355 1.119 thorpej pack.ep_hdr = malloc(exec_maxhdrsz, M_EXEC, M_WAITOK);
356 1.55 cgd pack.ep_hdrlen = exec_maxhdrsz;
357 1.55 cgd pack.ep_hdrvalid = 0;
358 1.55 cgd pack.ep_ndp = &nid;
359 1.67 christos pack.ep_emul_arg = NULL;
360 1.55 cgd pack.ep_vmcmds.evs_cnt = 0;
361 1.55 cgd pack.ep_vmcmds.evs_used = 0;
362 1.55 cgd pack.ep_vap = &attr;
363 1.55 cgd pack.ep_flags = 0;
364 1.55 cgd
365 1.130 jdolecek lockmgr(&exec_lock, LK_SHARED, NULL);
366 1.130 jdolecek
367 1.55 cgd /* see if we can run it. */
368 1.74 christos if ((error = check_exec(p, &pack)) != 0)
369 1.55 cgd goto freehdr;
370 1.55 cgd
371 1.55 cgd /* XXX -- THE FOLLOWING SECTION NEEDS MAJOR CLEANUP */
372 1.55 cgd
373 1.55 cgd /* allocate an argument buffer */
374 1.88 mrg argp = (char *) uvm_km_valloc_wait(exec_map, NCARGS);
375 1.55 cgd #ifdef DIAGNOSTIC
376 1.95 eeh if (argp == (vaddr_t) 0)
377 1.55 cgd panic("execve: argp == NULL");
378 1.55 cgd #endif
379 1.55 cgd dp = argp;
380 1.55 cgd argc = 0;
381 1.55 cgd
382 1.55 cgd /* copy the fake args list, if there's one, freeing it as we go */
383 1.55 cgd if (pack.ep_flags & EXEC_HASARGL) {
384 1.55 cgd tmpfap = pack.ep_fa;
385 1.55 cgd while (*tmpfap != NULL) {
386 1.55 cgd char *cp;
387 1.55 cgd
388 1.55 cgd cp = *tmpfap;
389 1.55 cgd while (*cp)
390 1.55 cgd *dp++ = *cp++;
391 1.74 christos dp++;
392 1.55 cgd
393 1.55 cgd FREE(*tmpfap, M_EXEC);
394 1.55 cgd tmpfap++; argc++;
395 1.55 cgd }
396 1.55 cgd FREE(pack.ep_fa, M_EXEC);
397 1.55 cgd pack.ep_flags &= ~EXEC_HASARGL;
398 1.55 cgd }
399 1.55 cgd
400 1.55 cgd /* Now get argv & environment */
401 1.56 cgd if (!(cpp = SCARG(uap, argp))) {
402 1.55 cgd error = EINVAL;
403 1.55 cgd goto bad;
404 1.55 cgd }
405 1.55 cgd
406 1.55 cgd if (pack.ep_flags & EXEC_SKIPARG)
407 1.55 cgd cpp++;
408 1.55 cgd
409 1.55 cgd while (1) {
410 1.55 cgd len = argp + ARG_MAX - dp;
411 1.74 christos if ((error = copyin(cpp, &sp, sizeof(sp))) != 0)
412 1.55 cgd goto bad;
413 1.55 cgd if (!sp)
414 1.55 cgd break;
415 1.74 christos if ((error = copyinstr(sp, dp, len, &len)) != 0) {
416 1.55 cgd if (error == ENAMETOOLONG)
417 1.55 cgd error = E2BIG;
418 1.55 cgd goto bad;
419 1.55 cgd }
420 1.55 cgd dp += len;
421 1.55 cgd cpp++;
422 1.55 cgd argc++;
423 1.55 cgd }
424 1.55 cgd
425 1.55 cgd envc = 0;
426 1.74 christos /* environment need not be there */
427 1.74 christos if ((cpp = SCARG(uap, envp)) != NULL ) {
428 1.55 cgd while (1) {
429 1.55 cgd len = argp + ARG_MAX - dp;
430 1.74 christos if ((error = copyin(cpp, &sp, sizeof(sp))) != 0)
431 1.55 cgd goto bad;
432 1.55 cgd if (!sp)
433 1.55 cgd break;
434 1.74 christos if ((error = copyinstr(sp, dp, len, &len)) != 0) {
435 1.55 cgd if (error == ENAMETOOLONG)
436 1.55 cgd error = E2BIG;
437 1.55 cgd goto bad;
438 1.55 cgd }
439 1.55 cgd dp += len;
440 1.55 cgd cpp++;
441 1.55 cgd envc++;
442 1.55 cgd }
443 1.55 cgd }
444 1.61 mycroft
445 1.61 mycroft dp = (char *) ALIGN(dp);
446 1.55 cgd
447 1.126 mrg szsigcode = pack.ep_es->es_emul->e_esigcode -
448 1.126 mrg pack.ep_es->es_emul->e_sigcode;
449 1.65 fvdl
450 1.55 cgd /* Now check if args & environ fit into new stack */
451 1.105 eeh if (pack.ep_flags & EXEC_32)
452 1.126 mrg len = ((argc + envc + 2 + pack.ep_es->es_arglen) *
453 1.126 mrg sizeof(int) + sizeof(int) + dp + STACKGAPLEN +
454 1.126 mrg szsigcode + sizeof(struct ps_strings)) - argp;
455 1.105 eeh else
456 1.126 mrg len = ((argc + envc + 2 + pack.ep_es->es_arglen) *
457 1.126 mrg sizeof(char *) + sizeof(int) + dp + STACKGAPLEN +
458 1.126 mrg szsigcode + sizeof(struct ps_strings)) - argp;
459 1.67 christos
460 1.55 cgd len = ALIGN(len); /* make the stack "safely" aligned */
461 1.55 cgd
462 1.55 cgd if (len > pack.ep_ssize) { /* in effect, compare to initial limit */
463 1.55 cgd error = ENOMEM;
464 1.55 cgd goto bad;
465 1.55 cgd }
466 1.55 cgd
467 1.55 cgd /* adjust "active stack depth" for process VSZ */
468 1.55 cgd pack.ep_ssize = len; /* maybe should go elsewhere, but... */
469 1.55 cgd
470 1.86 thorpej /*
471 1.86 thorpej * Do whatever is necessary to prepare the address space
472 1.86 thorpej * for remapping. Note that this might replace the current
473 1.86 thorpej * vmspace with another!
474 1.86 thorpej */
475 1.136 eeh uvmspace_exec(p, pack.ep_vm_minaddr, pack.ep_vm_maxaddr);
476 1.55 cgd
477 1.55 cgd /* Now map address space */
478 1.86 thorpej vm = p->p_vmspace;
479 1.55 cgd vm->vm_taddr = (char *) pack.ep_taddr;
480 1.55 cgd vm->vm_tsize = btoc(pack.ep_tsize);
481 1.55 cgd vm->vm_daddr = (char *) pack.ep_daddr;
482 1.55 cgd vm->vm_dsize = btoc(pack.ep_dsize);
483 1.55 cgd vm->vm_ssize = btoc(pack.ep_ssize);
484 1.55 cgd vm->vm_maxsaddr = (char *) pack.ep_maxsaddr;
485 1.121 eeh vm->vm_minsaddr = (char *) pack.ep_minsaddr;
486 1.55 cgd
487 1.55 cgd /* create the new process's VM space by running the vmcmds */
488 1.55 cgd #ifdef DIAGNOSTIC
489 1.55 cgd if (pack.ep_vmcmds.evs_used == 0)
490 1.55 cgd panic("execve: no vmcmds");
491 1.55 cgd #endif
492 1.55 cgd for (i = 0; i < pack.ep_vmcmds.evs_used && !error; i++) {
493 1.55 cgd struct exec_vmcmd *vcp;
494 1.55 cgd
495 1.55 cgd vcp = &pack.ep_vmcmds.evs_cmds[i];
496 1.114 matt if (vcp->ev_flags & VMCMD_RELATIVE) {
497 1.114 matt #ifdef DIAGNOSTIC
498 1.114 matt if (base_vcp == NULL)
499 1.114 matt panic("execve: relative vmcmd with no base");
500 1.114 matt if (vcp->ev_flags & VMCMD_BASE)
501 1.114 matt panic("execve: illegal base & relative vmcmd");
502 1.114 matt #endif
503 1.114 matt vcp->ev_addr += base_vcp->ev_addr;
504 1.114 matt }
505 1.55 cgd error = (*vcp->ev_proc)(p, vcp);
506 1.143 christos #ifdef DEBUG_EXEC
507 1.111 matt if (error) {
508 1.143 christos int j;
509 1.143 christos struct exec_vmcmd *vp = &pack.ep_vmcmds.evs_cmds[0];
510 1.143 christos for (j = 0; j <= i; j++)
511 1.143 christos uprintf(
512 1.143 christos "vmcmd[%d] = %#lx/%#lx fd@%#lx prot=0%o flags=%d\n",
513 1.143 christos j, vp[j].ev_addr, vp[j].ev_len,
514 1.143 christos vp[j].ev_offset, vp[j].ev_prot,
515 1.143 christos vp[j].ev_flags);
516 1.111 matt }
517 1.143 christos #endif /* DEBUG_EXEC */
518 1.114 matt if (vcp->ev_flags & VMCMD_BASE)
519 1.114 matt base_vcp = vcp;
520 1.55 cgd }
521 1.55 cgd
522 1.55 cgd /* free the vmspace-creation commands, and release their references */
523 1.55 cgd kill_vmcmds(&pack.ep_vmcmds);
524 1.55 cgd
525 1.55 cgd /* if an error happened, deallocate and punt */
526 1.111 matt if (error) {
527 1.143 christos DPRINTF(("execve: vmcmd %i failed: %d\n", i - 1, error));
528 1.55 cgd goto exec_abort;
529 1.111 matt }
530 1.55 cgd
531 1.55 cgd /* remember information about the process */
532 1.55 cgd arginfo.ps_nargvstr = argc;
533 1.55 cgd arginfo.ps_nenvstr = envc;
534 1.55 cgd
535 1.121 eeh stack = (char *) (vm->vm_minsaddr - len);
536 1.55 cgd /* Now copy argc, args & environ to new stack */
537 1.144 christos error = (*pack.ep_es->es_copyargs)(&pack, &arginfo, &stack, argp);
538 1.144 christos if (error) {
539 1.144 christos DPRINTF(("execve: copyargs failed %d\n", error));
540 1.55 cgd goto exec_abort;
541 1.111 matt }
542 1.144 christos /* Move the stack back to original point */
543 1.144 christos stack = (char *) (vm->vm_minsaddr - len);
544 1.55 cgd
545 1.121 eeh /* fill process ps_strings info */
546 1.121 eeh p->p_psstr = (struct ps_strings *)(vm->vm_minsaddr
547 1.121 eeh - sizeof(struct ps_strings));
548 1.121 eeh p->p_psargv = offsetof(struct ps_strings, ps_argvstr);
549 1.121 eeh p->p_psnargv = offsetof(struct ps_strings, ps_nargvstr);
550 1.121 eeh p->p_psenv = offsetof(struct ps_strings, ps_envstr);
551 1.121 eeh p->p_psnenv = offsetof(struct ps_strings, ps_nenvstr);
552 1.121 eeh
553 1.55 cgd /* copy out the process's ps_strings structure */
554 1.144 christos if ((error = copyout(&arginfo, (char *)p->p_psstr,
555 1.144 christos sizeof(arginfo))) != 0) {
556 1.143 christos DPRINTF(("execve: ps_strings copyout %p->%p size %ld failed\n",
557 1.143 christos &arginfo, (char *)p->p_psstr, (long)sizeof(arginfo)));
558 1.55 cgd goto exec_abort;
559 1.111 matt }
560 1.109 simonb
561 1.55 cgd /* copy out the process's signal trapoline code */
562 1.96 mycroft if (szsigcode) {
563 1.144 christos if ((error = copyout((char *)pack.ep_es->es_emul->e_sigcode,
564 1.134 jdolecek p->p_sigctx.ps_sigcode = (char *)p->p_psstr - szsigcode,
565 1.144 christos szsigcode)) != 0) {
566 1.143 christos DPRINTF(("execve: sig trampoline copyout failed\n"));
567 1.97 kleink goto exec_abort;
568 1.111 matt }
569 1.104 is #ifdef PMAP_NEED_PROCWR
570 1.104 is /* This is code. Let the pmap do what is needed. */
571 1.134 jdolecek pmap_procwr(p, (vaddr_t)p->p_sigctx.ps_sigcode, szsigcode);
572 1.104 is #endif
573 1.96 mycroft }
574 1.55 cgd
575 1.102 ross stopprofclock(p); /* stop profiling */
576 1.55 cgd fdcloseexec(p); /* handle close on exec */
577 1.55 cgd execsigs(p); /* reset catched signals */
578 1.98 kleink p->p_ctxlink = NULL; /* reset ucontext link */
579 1.55 cgd
580 1.55 cgd /* set command name & other accounting info */
581 1.55 cgd len = min(nid.ni_cnd.cn_namelen, MAXCOMLEN);
582 1.94 perry memcpy(p->p_comm, nid.ni_cnd.cn_nameptr, len);
583 1.55 cgd p->p_comm[len] = 0;
584 1.55 cgd p->p_acflag &= ~AFORK;
585 1.55 cgd
586 1.55 cgd /* record proc's vnode, for use by procfs and others */
587 1.55 cgd if (p->p_textvp)
588 1.55 cgd vrele(p->p_textvp);
589 1.55 cgd VREF(pack.ep_vp);
590 1.55 cgd p->p_textvp = pack.ep_vp;
591 1.55 cgd
592 1.55 cgd p->p_flag |= P_EXEC;
593 1.55 cgd if (p->p_flag & P_PPWAIT) {
594 1.55 cgd p->p_flag &= ~P_PPWAIT;
595 1.55 cgd wakeup((caddr_t) p->p_pptr);
596 1.55 cgd }
597 1.55 cgd
598 1.55 cgd /*
599 1.55 cgd * deal with set[ug]id.
600 1.141 thorpej * MNT_NOSUID has already been used to disable s[ug]id.
601 1.55 cgd */
602 1.141 thorpej if ((p->p_flag & P_TRACED) == 0 &&
603 1.141 thorpej
604 1.141 thorpej (((attr.va_mode & S_ISUID) != 0 &&
605 1.141 thorpej p->p_ucred->cr_uid != attr.va_uid) ||
606 1.141 thorpej
607 1.141 thorpej ((attr.va_mode & S_ISGID) != 0 &&
608 1.141 thorpej p->p_ucred->cr_gid != attr.va_gid))) {
609 1.141 thorpej /*
610 1.141 thorpej * Mark the process as SUGID before we do
611 1.141 thorpej * anything that might block.
612 1.141 thorpej */
613 1.141 thorpej p_sugid(p);
614 1.141 thorpej
615 1.55 cgd p->p_ucred = crcopy(cred);
616 1.55 cgd #ifdef KTRACE
617 1.55 cgd /*
618 1.55 cgd * If process is being ktraced, turn off - unless
619 1.55 cgd * root set it.
620 1.55 cgd */
621 1.91 christos if (p->p_tracep && !(p->p_traceflag & KTRFAC_ROOT))
622 1.91 christos ktrderef(p);
623 1.55 cgd #endif
624 1.83 mycroft if (attr.va_mode & S_ISUID)
625 1.55 cgd p->p_ucred->cr_uid = attr.va_uid;
626 1.83 mycroft if (attr.va_mode & S_ISGID)
627 1.55 cgd p->p_ucred->cr_gid = attr.va_gid;
628 1.79 mrg } else
629 1.79 mrg p->p_flag &= ~P_SUGID;
630 1.55 cgd p->p_cred->p_svuid = p->p_ucred->cr_uid;
631 1.55 cgd p->p_cred->p_svgid = p->p_ucred->cr_gid;
632 1.107 fvdl
633 1.107 fvdl doexechooks(p);
634 1.55 cgd
635 1.95 eeh uvm_km_free_wakeup(exec_map, (vaddr_t) argp, NCARGS);
636 1.55 cgd
637 1.120 thorpej PNBUF_PUT(nid.ni_cnd.cn_pnbuf);
638 1.99 wrstuden vn_lock(pack.ep_vp, LK_EXCLUSIVE | LK_RETRY);
639 1.55 cgd VOP_CLOSE(pack.ep_vp, FREAD, cred, p);
640 1.99 wrstuden vput(pack.ep_vp);
641 1.55 cgd
642 1.55 cgd /* setup new registers and do misc. setup. */
643 1.145 jdolecek (*pack.ep_es->es_emul->e_setregs)(p, &pack, (u_long) stack);
644 1.145 jdolecek if (pack.ep_es->es_setregs)
645 1.145 jdolecek (*pack.ep_es->es_setregs)(p, &pack, (u_long) stack);
646 1.55 cgd
647 1.55 cgd if (p->p_flag & P_TRACED)
648 1.55 cgd psignal(p, SIGTRAP);
649 1.55 cgd
650 1.122 jdolecek free(pack.ep_hdr, M_EXEC);
651 1.122 jdolecek
652 1.122 jdolecek /*
653 1.122 jdolecek * Call emulation specific exec hook. This can setup setup per-process
654 1.122 jdolecek * p->p_emuldata or do any other per-process stuff an emulation needs.
655 1.122 jdolecek *
656 1.122 jdolecek * If we are executing process of different emulation than the
657 1.122 jdolecek * original forked process, call e_proc_exit() of the old emulation
658 1.122 jdolecek * first, then e_proc_exec() of new emulation. If the emulation is
659 1.122 jdolecek * same, the exec hook code should deallocate any old emulation
660 1.122 jdolecek * resources held previously by this process.
661 1.122 jdolecek */
662 1.124 jdolecek if (p->p_emul && p->p_emul->e_proc_exit
663 1.124 jdolecek && p->p_emul != pack.ep_es->es_emul)
664 1.122 jdolecek (*p->p_emul->e_proc_exit)(p);
665 1.122 jdolecek
666 1.123 jdolecek /*
667 1.123 jdolecek * Call exec hook. Emulation code may NOT store reference to anything
668 1.123 jdolecek * from &pack.
669 1.123 jdolecek */
670 1.124 jdolecek if (pack.ep_es->es_emul->e_proc_exec)
671 1.124 jdolecek (*pack.ep_es->es_emul->e_proc_exec)(p, &pack);
672 1.122 jdolecek
673 1.122 jdolecek /* update p_emul, the old value is no longer needed */
674 1.124 jdolecek p->p_emul = pack.ep_es->es_emul;
675 1.133 mycroft #ifdef __HAVE_SYSCALL_INTERN
676 1.133 mycroft (*p->p_emul->e_syscall_intern)(p);
677 1.133 mycroft #endif
678 1.70 christos #ifdef KTRACE
679 1.70 christos if (KTRPOINT(p, KTR_EMUL))
680 1.110 sommerfe ktremul(p);
681 1.70 christos #endif
682 1.85 mycroft
683 1.130 jdolecek lockmgr(&exec_lock, LK_RELEASE, NULL);
684 1.130 jdolecek
685 1.85 mycroft return (EJUSTRETURN);
686 1.55 cgd
687 1.138 lukem bad:
688 1.55 cgd /* free the vmspace-creation commands, and release their references */
689 1.55 cgd kill_vmcmds(&pack.ep_vmcmds);
690 1.55 cgd /* kill any opened file descriptor, if necessary */
691 1.55 cgd if (pack.ep_flags & EXEC_HASFD) {
692 1.55 cgd pack.ep_flags &= ~EXEC_HASFD;
693 1.66 mycroft (void) fdrelease(p, pack.ep_fd);
694 1.55 cgd }
695 1.55 cgd /* close and put the exec'd file */
696 1.99 wrstuden vn_lock(pack.ep_vp, LK_EXCLUSIVE | LK_RETRY);
697 1.55 cgd VOP_CLOSE(pack.ep_vp, FREAD, cred, p);
698 1.99 wrstuden vput(pack.ep_vp);
699 1.120 thorpej PNBUF_PUT(nid.ni_cnd.cn_pnbuf);
700 1.95 eeh uvm_km_free_wakeup(exec_map, (vaddr_t) argp, NCARGS);
701 1.55 cgd
702 1.138 lukem freehdr:
703 1.130 jdolecek lockmgr(&exec_lock, LK_RELEASE, NULL);
704 1.130 jdolecek
705 1.119 thorpej free(pack.ep_hdr, M_EXEC);
706 1.55 cgd return error;
707 1.55 cgd
708 1.138 lukem exec_abort:
709 1.130 jdolecek lockmgr(&exec_lock, LK_RELEASE, NULL);
710 1.130 jdolecek
711 1.55 cgd /*
712 1.55 cgd * the old process doesn't exist anymore. exit gracefully.
713 1.55 cgd * get rid of the (new) address space we have created, if any, get rid
714 1.55 cgd * of our namei data and vnode, and exit noting failure
715 1.55 cgd */
716 1.88 mrg uvm_deallocate(&vm->vm_map, VM_MIN_ADDRESS,
717 1.88 mrg VM_MAXUSER_ADDRESS - VM_MIN_ADDRESS);
718 1.73 mycroft if (pack.ep_emul_arg)
719 1.124 jdolecek FREE(pack.ep_emul_arg, M_TEMP);
720 1.120 thorpej PNBUF_PUT(nid.ni_cnd.cn_pnbuf);
721 1.99 wrstuden vn_lock(pack.ep_vp, LK_EXCLUSIVE | LK_RETRY);
722 1.55 cgd VOP_CLOSE(pack.ep_vp, FREAD, cred, p);
723 1.99 wrstuden vput(pack.ep_vp);
724 1.95 eeh uvm_km_free_wakeup(exec_map, (vaddr_t) argp, NCARGS);
725 1.119 thorpej free(pack.ep_hdr, M_EXEC);
726 1.144 christos exit1(p, W_EXITCODE(error, SIGABRT));
727 1.55 cgd
728 1.55 cgd /* NOTREACHED */
729 1.55 cgd return 0;
730 1.67 christos }
731 1.67 christos
732 1.67 christos
733 1.144 christos int
734 1.118 thorpej copyargs(struct exec_package *pack, struct ps_strings *arginfo,
735 1.144 christos char **stackp, void *argp)
736 1.67 christos {
737 1.138 lukem char **cpp, *dp, *sp;
738 1.138 lukem size_t len;
739 1.138 lukem void *nullp;
740 1.138 lukem long argc, envc;
741 1.144 christos int error;
742 1.138 lukem
743 1.144 christos cpp = (char **)*stackp;
744 1.138 lukem nullp = NULL;
745 1.138 lukem argc = arginfo->ps_nargvstr;
746 1.138 lukem envc = arginfo->ps_nenvstr;
747 1.144 christos if ((error = copyout(&argc, cpp++, sizeof(argc))) != 0)
748 1.144 christos return error;
749 1.67 christos
750 1.124 jdolecek dp = (char *) (cpp + argc + envc + 2 + pack->ep_es->es_arglen);
751 1.67 christos sp = argp;
752 1.67 christos
753 1.67 christos /* XXX don't copy them out, remap them! */
754 1.69 mycroft arginfo->ps_argvstr = cpp; /* remember location of argv for later */
755 1.67 christos
756 1.67 christos for (; --argc >= 0; sp += len, dp += len)
757 1.144 christos if ((error = copyout(&dp, cpp++, sizeof(dp))) != 0 ||
758 1.144 christos (error = copyoutstr(sp, dp, ARG_MAX, &len)) != 0)
759 1.144 christos return error;
760 1.67 christos
761 1.144 christos if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
762 1.144 christos return error;
763 1.67 christos
764 1.69 mycroft arginfo->ps_envstr = cpp; /* remember location of envp for later */
765 1.67 christos
766 1.67 christos for (; --envc >= 0; sp += len, dp += len)
767 1.144 christos if ((error = copyout(&dp, cpp++, sizeof(dp))) != 0 ||
768 1.144 christos (error = copyoutstr(sp, dp, ARG_MAX, &len)) != 0)
769 1.144 christos return error;
770 1.67 christos
771 1.144 christos if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
772 1.144 christos return error;
773 1.67 christos
774 1.144 christos *stackp = (char *)cpp;
775 1.144 christos return 0;
776 1.55 cgd }
777 1.130 jdolecek
778 1.130 jdolecek #ifdef LKM
779 1.130 jdolecek /*
780 1.130 jdolecek * Find an emulation of given name in list of emulations.
781 1.130 jdolecek */
782 1.130 jdolecek static const struct emul *
783 1.138 lukem emul_search(const char *name)
784 1.130 jdolecek {
785 1.130 jdolecek struct emul_entry *it;
786 1.130 jdolecek
787 1.130 jdolecek LIST_FOREACH(it, &el_head, el_list) {
788 1.130 jdolecek if (strcmp(name, it->el_emul->e_name) == 0)
789 1.130 jdolecek return it->el_emul;
790 1.130 jdolecek }
791 1.130 jdolecek
792 1.130 jdolecek return NULL;
793 1.130 jdolecek }
794 1.130 jdolecek
795 1.130 jdolecek /*
796 1.130 jdolecek * Add an emulation to list, if it's not there already.
797 1.130 jdolecek */
798 1.130 jdolecek int
799 1.138 lukem emul_register(const struct emul *emul, int ro_entry)
800 1.130 jdolecek {
801 1.138 lukem struct emul_entry *ee;
802 1.138 lukem int error;
803 1.130 jdolecek
804 1.138 lukem error = 0;
805 1.130 jdolecek lockmgr(&exec_lock, LK_SHARED, NULL);
806 1.130 jdolecek
807 1.130 jdolecek if (emul_search(emul->e_name)) {
808 1.130 jdolecek error = EEXIST;
809 1.130 jdolecek goto out;
810 1.130 jdolecek }
811 1.130 jdolecek
812 1.130 jdolecek MALLOC(ee, struct emul_entry *, sizeof(struct emul_entry),
813 1.130 jdolecek M_EXEC, M_WAITOK);
814 1.130 jdolecek ee->el_emul = emul;
815 1.130 jdolecek ee->ro_entry = ro_entry;
816 1.130 jdolecek LIST_INSERT_HEAD(&el_head, ee, el_list);
817 1.130 jdolecek
818 1.138 lukem out:
819 1.130 jdolecek lockmgr(&exec_lock, LK_RELEASE, NULL);
820 1.130 jdolecek return error;
821 1.130 jdolecek }
822 1.130 jdolecek
823 1.130 jdolecek /*
824 1.130 jdolecek * Remove emulation with name 'name' from list of supported emulations.
825 1.130 jdolecek */
826 1.130 jdolecek int
827 1.138 lukem emul_unregister(const char *name)
828 1.130 jdolecek {
829 1.130 jdolecek const struct proclist_desc *pd;
830 1.138 lukem struct emul_entry *it;
831 1.138 lukem int i, error;
832 1.138 lukem struct proc *ptmp;
833 1.130 jdolecek
834 1.138 lukem error = 0;
835 1.130 jdolecek lockmgr(&exec_lock, LK_SHARED, NULL);
836 1.130 jdolecek
837 1.130 jdolecek LIST_FOREACH(it, &el_head, el_list) {
838 1.130 jdolecek if (strcmp(it->el_emul->e_name, name) == 0)
839 1.130 jdolecek break;
840 1.130 jdolecek }
841 1.130 jdolecek
842 1.130 jdolecek if (!it) {
843 1.130 jdolecek error = ENOENT;
844 1.130 jdolecek goto out;
845 1.130 jdolecek }
846 1.130 jdolecek
847 1.130 jdolecek if (it->ro_entry) {
848 1.130 jdolecek error = EBUSY;
849 1.130 jdolecek goto out;
850 1.130 jdolecek }
851 1.130 jdolecek
852 1.130 jdolecek /* test if any execw[] entry is still using this */
853 1.132 jdolecek for(i=0; i < nexecs; i++) {
854 1.130 jdolecek if (execsw[i]->es_emul == it->el_emul) {
855 1.130 jdolecek error = EBUSY;
856 1.130 jdolecek goto out;
857 1.130 jdolecek }
858 1.130 jdolecek }
859 1.130 jdolecek
860 1.130 jdolecek /*
861 1.130 jdolecek * Test if any process is running under this emulation - since
862 1.130 jdolecek * emul_unregister() is running quite sendomly, it's better
863 1.130 jdolecek * to do expensive check here than to use any locking.
864 1.130 jdolecek */
865 1.130 jdolecek proclist_lock_read();
866 1.130 jdolecek for (pd = proclists; pd->pd_list != NULL && !error; pd++) {
867 1.130 jdolecek LIST_FOREACH(ptmp, pd->pd_list, p_list) {
868 1.130 jdolecek if (ptmp->p_emul == it->el_emul) {
869 1.130 jdolecek error = EBUSY;
870 1.130 jdolecek break;
871 1.130 jdolecek }
872 1.130 jdolecek }
873 1.130 jdolecek }
874 1.130 jdolecek proclist_unlock_read();
875 1.130 jdolecek
876 1.130 jdolecek if (error)
877 1.130 jdolecek goto out;
878 1.130 jdolecek
879 1.130 jdolecek
880 1.130 jdolecek /* entry is not used, remove it */
881 1.130 jdolecek LIST_REMOVE(it, el_list);
882 1.130 jdolecek FREE(it, M_EXEC);
883 1.130 jdolecek
884 1.138 lukem out:
885 1.130 jdolecek lockmgr(&exec_lock, LK_RELEASE, NULL);
886 1.130 jdolecek return error;
887 1.130 jdolecek }
888 1.130 jdolecek
889 1.130 jdolecek /*
890 1.130 jdolecek * Add execsw[] entry.
891 1.130 jdolecek */
892 1.130 jdolecek int
893 1.138 lukem exec_add(struct execsw *esp, const char *e_name)
894 1.130 jdolecek {
895 1.138 lukem struct exec_entry *it;
896 1.138 lukem int error;
897 1.130 jdolecek
898 1.138 lukem error = 0;
899 1.130 jdolecek lockmgr(&exec_lock, LK_EXCLUSIVE, NULL);
900 1.130 jdolecek
901 1.130 jdolecek if (!esp->es_emul) {
902 1.130 jdolecek esp->es_emul = emul_search(e_name);
903 1.130 jdolecek if (!esp->es_emul) {
904 1.130 jdolecek error = ENOENT;
905 1.130 jdolecek goto out;
906 1.130 jdolecek }
907 1.130 jdolecek }
908 1.130 jdolecek
909 1.130 jdolecek LIST_FOREACH(it, &ex_head, ex_list) {
910 1.130 jdolecek /* assume tuple (makecmds, probe_func, emulation) is unique */
911 1.130 jdolecek if (it->es->es_check == esp->es_check
912 1.130 jdolecek && it->es->u.elf_probe_func == esp->u.elf_probe_func
913 1.130 jdolecek && it->es->es_emul == esp->es_emul) {
914 1.130 jdolecek error = EEXIST;
915 1.130 jdolecek goto out;
916 1.130 jdolecek }
917 1.130 jdolecek }
918 1.130 jdolecek
919 1.130 jdolecek /* if we got here, the entry doesn't exist yet */
920 1.130 jdolecek MALLOC(it, struct exec_entry *, sizeof(struct exec_entry),
921 1.130 jdolecek M_EXEC, M_WAITOK);
922 1.130 jdolecek it->es = esp;
923 1.130 jdolecek LIST_INSERT_HEAD(&ex_head, it, ex_list);
924 1.130 jdolecek
925 1.130 jdolecek /* update execsw[] */
926 1.130 jdolecek exec_init(0);
927 1.130 jdolecek
928 1.138 lukem out:
929 1.130 jdolecek lockmgr(&exec_lock, LK_RELEASE, NULL);
930 1.130 jdolecek return error;
931 1.130 jdolecek }
932 1.130 jdolecek
933 1.130 jdolecek /*
934 1.130 jdolecek * Remove execsw[] entry.
935 1.130 jdolecek */
936 1.130 jdolecek int
937 1.138 lukem exec_remove(const struct execsw *esp)
938 1.130 jdolecek {
939 1.138 lukem struct exec_entry *it;
940 1.138 lukem int error;
941 1.130 jdolecek
942 1.138 lukem error = 0;
943 1.130 jdolecek lockmgr(&exec_lock, LK_EXCLUSIVE, NULL);
944 1.130 jdolecek
945 1.130 jdolecek LIST_FOREACH(it, &ex_head, ex_list) {
946 1.130 jdolecek /* assume tuple (makecmds, probe_func, emulation) is unique */
947 1.130 jdolecek if (it->es->es_check == esp->es_check
948 1.130 jdolecek && it->es->u.elf_probe_func == esp->u.elf_probe_func
949 1.130 jdolecek && it->es->es_emul == esp->es_emul)
950 1.130 jdolecek break;
951 1.130 jdolecek }
952 1.130 jdolecek if (!it) {
953 1.130 jdolecek error = ENOENT;
954 1.130 jdolecek goto out;
955 1.130 jdolecek }
956 1.130 jdolecek
957 1.130 jdolecek /* remove item from list and free resources */
958 1.130 jdolecek LIST_REMOVE(it, ex_list);
959 1.130 jdolecek FREE(it, M_EXEC);
960 1.130 jdolecek
961 1.130 jdolecek /* update execsw[] */
962 1.130 jdolecek exec_init(0);
963 1.130 jdolecek
964 1.138 lukem out:
965 1.130 jdolecek lockmgr(&exec_lock, LK_RELEASE, NULL);
966 1.130 jdolecek return error;
967 1.130 jdolecek }
968 1.130 jdolecek
969 1.130 jdolecek static void
970 1.138 lukem link_es(struct execsw_entry **listp, const struct execsw *esp)
971 1.130 jdolecek {
972 1.130 jdolecek struct execsw_entry *et, *e1;
973 1.130 jdolecek
974 1.130 jdolecek MALLOC(et, struct execsw_entry *, sizeof(struct execsw_entry),
975 1.130 jdolecek M_TEMP, M_WAITOK);
976 1.130 jdolecek et->next = NULL;
977 1.130 jdolecek et->es = esp;
978 1.130 jdolecek if (*listp == NULL) {
979 1.130 jdolecek *listp = et;
980 1.130 jdolecek return;
981 1.130 jdolecek }
982 1.130 jdolecek
983 1.130 jdolecek switch(et->es->es_prio) {
984 1.130 jdolecek case EXECSW_PRIO_FIRST:
985 1.130 jdolecek /* put new entry as the first */
986 1.130 jdolecek et->next = *listp;
987 1.130 jdolecek *listp = et;
988 1.130 jdolecek break;
989 1.130 jdolecek case EXECSW_PRIO_ANY:
990 1.130 jdolecek /* put new entry after all *_FIRST and *_ANY entries */
991 1.130 jdolecek for(e1 = *listp; e1->next
992 1.130 jdolecek && e1->next->es->es_prio != EXECSW_PRIO_LAST;
993 1.130 jdolecek e1 = e1->next);
994 1.130 jdolecek et->next = e1->next;
995 1.130 jdolecek e1->next = et;
996 1.130 jdolecek break;
997 1.130 jdolecek case EXECSW_PRIO_LAST:
998 1.130 jdolecek /* put new entry as the last one */
999 1.130 jdolecek for(e1 = *listp; e1->next; e1 = e1->next);
1000 1.130 jdolecek e1->next = et;
1001 1.130 jdolecek break;
1002 1.130 jdolecek default:
1003 1.130 jdolecek #ifdef DIAGNOSTIC
1004 1.130 jdolecek panic("execw[] entry with unknown priority %d found\n",
1005 1.130 jdolecek et->es->es_prio);
1006 1.130 jdolecek #endif
1007 1.130 jdolecek break;
1008 1.130 jdolecek }
1009 1.130 jdolecek }
1010 1.130 jdolecek
1011 1.130 jdolecek /*
1012 1.130 jdolecek * Initialize exec structures. If init_boot is true, also does necessary
1013 1.130 jdolecek * one-time initialization (it's called from main() that way).
1014 1.130 jdolecek * Once system is multiuser, this should be called with exec_lock hold,
1015 1.130 jdolecek * i.e. via exec_{add|remove}().
1016 1.130 jdolecek */
1017 1.130 jdolecek int
1018 1.138 lukem exec_init(int init_boot)
1019 1.130 jdolecek {
1020 1.138 lukem const struct execsw **new_es, * const *old_es;
1021 1.138 lukem struct execsw_entry *list, *e1;
1022 1.138 lukem struct exec_entry *e2;
1023 1.138 lukem int i, es_sz;
1024 1.130 jdolecek
1025 1.130 jdolecek if (init_boot) {
1026 1.130 jdolecek /* do one-time initializations */
1027 1.130 jdolecek lockinit(&exec_lock, PWAIT, "execlck", 0, 0);
1028 1.130 jdolecek
1029 1.130 jdolecek /* register compiled-in emulations */
1030 1.130 jdolecek for(i=0; i < nexecs_builtin; i++) {
1031 1.130 jdolecek if (execsw_builtin[i].es_emul)
1032 1.130 jdolecek emul_register(execsw_builtin[i].es_emul, 1);
1033 1.130 jdolecek }
1034 1.130 jdolecek #ifdef DIAGNOSTIC
1035 1.130 jdolecek if (i == 0)
1036 1.130 jdolecek panic("no emulations found in execsw_builtin[]\n");
1037 1.130 jdolecek #endif
1038 1.130 jdolecek }
1039 1.130 jdolecek
1040 1.130 jdolecek /*
1041 1.130 jdolecek * Build execsw[] array from builtin entries and entries added
1042 1.130 jdolecek * at runtime.
1043 1.130 jdolecek */
1044 1.130 jdolecek list = NULL;
1045 1.130 jdolecek for(i=0; i < nexecs_builtin; i++)
1046 1.130 jdolecek link_es(&list, &execsw_builtin[i]);
1047 1.130 jdolecek
1048 1.130 jdolecek /* Add dynamically loaded entries */
1049 1.130 jdolecek es_sz = nexecs_builtin;
1050 1.130 jdolecek LIST_FOREACH(e2, &ex_head, ex_list) {
1051 1.130 jdolecek link_es(&list, e2->es);
1052 1.130 jdolecek es_sz++;
1053 1.130 jdolecek }
1054 1.130 jdolecek
1055 1.130 jdolecek /*
1056 1.130 jdolecek * Now that we have sorted all execw entries, create new execsw[]
1057 1.130 jdolecek * and free no longer needed memory in the process.
1058 1.130 jdolecek */
1059 1.130 jdolecek new_es = malloc(es_sz * sizeof(struct execsw *), M_EXEC, M_WAITOK);
1060 1.130 jdolecek for(i=0; list; i++) {
1061 1.130 jdolecek new_es[i] = list->es;
1062 1.130 jdolecek e1 = list->next;
1063 1.130 jdolecek FREE(list, M_TEMP);
1064 1.130 jdolecek list = e1;
1065 1.130 jdolecek }
1066 1.130 jdolecek
1067 1.130 jdolecek /*
1068 1.130 jdolecek * New execsw[] array built, now replace old execsw[] and free
1069 1.130 jdolecek * used memory.
1070 1.130 jdolecek */
1071 1.130 jdolecek old_es = execsw;
1072 1.130 jdolecek execsw = new_es;
1073 1.130 jdolecek nexecs = es_sz;
1074 1.130 jdolecek if (old_es)
1075 1.130 jdolecek free((void *)old_es, M_EXEC);
1076 1.130 jdolecek
1077 1.130 jdolecek /*
1078 1.130 jdolecek * Figure out the maximum size of an exec header.
1079 1.130 jdolecek */
1080 1.130 jdolecek exec_maxhdrsz = 0;
1081 1.130 jdolecek for (i = 0; i < nexecs; i++) {
1082 1.130 jdolecek if (execsw[i]->es_hdrsz > exec_maxhdrsz)
1083 1.130 jdolecek exec_maxhdrsz = execsw[i]->es_hdrsz;
1084 1.130 jdolecek }
1085 1.130 jdolecek
1086 1.130 jdolecek return 0;
1087 1.130 jdolecek }
1088 1.130 jdolecek #endif
1089 1.130 jdolecek
1090 1.130 jdolecek #ifndef LKM
1091 1.130 jdolecek /*
1092 1.130 jdolecek * Simplified exec_init() for kernels without LKMs. Only initialize
1093 1.130 jdolecek * exec_maxhdrsz and execsw[].
1094 1.130 jdolecek */
1095 1.130 jdolecek int
1096 1.138 lukem exec_init(int init_boot)
1097 1.130 jdolecek {
1098 1.130 jdolecek int i;
1099 1.130 jdolecek
1100 1.130 jdolecek #ifdef DIAGNOSTIC
1101 1.130 jdolecek if (!init_boot)
1102 1.130 jdolecek panic("exec_init(): called with init_boot == 0");
1103 1.130 jdolecek #endif
1104 1.130 jdolecek
1105 1.130 jdolecek /* do one-time initializations */
1106 1.130 jdolecek lockinit(&exec_lock, PWAIT, "execlck", 0, 0);
1107 1.130 jdolecek
1108 1.130 jdolecek nexecs = nexecs_builtin;
1109 1.130 jdolecek execsw = malloc(nexecs*sizeof(struct execsw *), M_EXEC, M_WAITOK);
1110 1.130 jdolecek
1111 1.130 jdolecek /*
1112 1.130 jdolecek * Fill in execsw[] and figure out the maximum size of an exec header.
1113 1.130 jdolecek */
1114 1.130 jdolecek exec_maxhdrsz = 0;
1115 1.130 jdolecek for(i=0; i < nexecs; i++) {
1116 1.130 jdolecek execsw[i] = &execsw_builtin[i];
1117 1.130 jdolecek if (execsw_builtin[i].es_hdrsz > exec_maxhdrsz)
1118 1.130 jdolecek exec_maxhdrsz = execsw_builtin[i].es_hdrsz;
1119 1.130 jdolecek }
1120 1.130 jdolecek
1121 1.130 jdolecek return 0;
1122 1.130 jdolecek
1123 1.130 jdolecek }
1124 1.130 jdolecek #endif /* !LKM */
1125