xref: /titanic_44/usr/src/uts/common/os/exec.c (revision 321502cd0930b1eb6d4805e17f16234f3e3ff4b2)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 /*	Copyright (c) 1988 AT&T	*/
29 /*	  All Rights Reserved  	*/
30 
31 
32 #include <sys/types.h>
33 #include <sys/param.h>
34 #include <sys/sysmacros.h>
35 #include <sys/systm.h>
36 #include <sys/signal.h>
37 #include <sys/cred_impl.h>
38 #include <sys/policy.h>
39 #include <sys/user.h>
40 #include <sys/errno.h>
41 #include <sys/file.h>
42 #include <sys/vfs.h>
43 #include <sys/vnode.h>
44 #include <sys/mman.h>
45 #include <sys/acct.h>
46 #include <sys/cpuvar.h>
47 #include <sys/proc.h>
48 #include <sys/cmn_err.h>
49 #include <sys/debug.h>
50 #include <sys/pathname.h>
51 #include <sys/vm.h>
52 #include <sys/lgrp.h>
53 #include <sys/vtrace.h>
54 #include <sys/exec.h>
55 #include <sys/exechdr.h>
56 #include <sys/kmem.h>
57 #include <sys/prsystm.h>
58 #include <sys/modctl.h>
59 #include <sys/vmparam.h>
60 #include <sys/schedctl.h>
61 #include <sys/utrap.h>
62 #include <sys/systeminfo.h>
63 #include <sys/stack.h>
64 #include <sys/rctl.h>
65 #include <sys/dtrace.h>
66 #include <sys/lwpchan_impl.h>
67 #include <sys/pool.h>
68 #include <sys/sdt.h>
69 #include <sys/brand.h>
70 
71 #include <c2/audit.h>
72 
73 #include <vm/hat.h>
74 #include <vm/anon.h>
75 #include <vm/as.h>
76 #include <vm/seg.h>
77 #include <vm/seg_vn.h>
78 
79 #define	PRIV_RESET		0x01	/* needs to reset privs */
80 #define	PRIV_SETID		0x02	/* needs to change uids */
81 #define	PRIV_SETUGID		0x04	/* is setuid/setgid/forced privs */
82 #define	PRIV_INCREASE		0x08	/* child runs with more privs */
83 #define	MAC_FLAGS		0x10	/* need to adjust MAC flags */
84 
85 static int execsetid(struct vnode *, struct vattr *, uid_t *, uid_t *);
86 static int hold_execsw(struct execsw *);
87 
88 uint_t auxv_hwcap = 0;	/* auxv AT_SUN_HWCAP value; determined on the fly */
89 #if defined(_SYSCALL32_IMPL)
90 uint_t auxv_hwcap32 = 0;	/* 32-bit version of auxv_hwcap */
91 #endif
92 
93 #define	PSUIDFLAGS		(SNOCD|SUGID)
94 
95 /*
96  * exec() - wrapper around exece providing NULL environment pointer
97  */
98 int
99 exec(const char *fname, const char **argp)
100 {
101 	return (exece(fname, argp, NULL));
102 }
103 
104 /*
105  * exece() - system call wrapper around exec_common()
106  */
107 int
108 exece(const char *fname, const char **argp, const char **envp)
109 {
110 	int error;
111 
112 	error = exec_common(fname, argp, envp, EBA_NONE);
113 	return (error ? (set_errno(error)) : 0);
114 }
115 
116 int
117 exec_common(const char *fname, const char **argp, const char **envp,
118     int brand_action)
119 {
120 	vnode_t *vp = NULL, *dir = NULL, *tmpvp = NULL;
121 	proc_t *p = ttoproc(curthread);
122 	klwp_t *lwp = ttolwp(curthread);
123 	struct user *up = PTOU(p);
124 	long execsz;		/* temporary count of exec size */
125 	int i;
126 	int error;
127 	char exec_file[MAXCOMLEN+1];
128 	struct pathname pn;
129 	struct pathname resolvepn;
130 	struct uarg args;
131 	struct execa ua;
132 	k_sigset_t savedmask;
133 	lwpdir_t *lwpdir = NULL;
134 	lwpdir_t **tidhash;
135 	lwpdir_t *old_lwpdir = NULL;
136 	uint_t old_lwpdir_sz;
137 	lwpdir_t **old_tidhash;
138 	uint_t old_tidhash_sz;
139 	lwpent_t *lep;
140 	int brandme = 0;
141 
142 	/*
143 	 * exec() is not supported for the /proc agent lwp.
144 	 */
145 	if (curthread == p->p_agenttp)
146 		return (ENOTSUP);
147 
148 	if (brand_action != EBA_NONE) {
149 		/*
150 		 * Brand actions are not supported for processes that are not
151 		 * running in a branded zone.
152 		 */
153 		if (!ZONE_IS_BRANDED(p->p_zone))
154 			return (ENOTSUP);
155 
156 		if (brand_action == EBA_NATIVE) {
157 			/* Only branded processes can be unbranded */
158 			if (!PROC_IS_BRANDED(p))
159 				return (ENOTSUP);
160 		} else {
161 			/* Only unbranded processes can be branded */
162 			if (PROC_IS_BRANDED(p))
163 				return (ENOTSUP);
164 			brandme = 1;
165 		}
166 	} else {
167 		/*
168 		 * If this is a native zone, or if the process is already
169 		 * branded, then we don't need to do anything.  If this is
170 		 * a native process in a branded zone, we need to brand the
171 		 * process as it exec()s the new binary.
172 		 */
173 		if (ZONE_IS_BRANDED(p->p_zone) && !PROC_IS_BRANDED(p))
174 			brandme = 1;
175 	}
176 
177 	/*
178 	 * Inform /proc that an exec() has started.
179 	 * Hold signals that are ignored by default so that we will
180 	 * not be interrupted by a signal that will be ignored after
181 	 * successful completion of gexec().
182 	 */
183 	mutex_enter(&p->p_lock);
184 	prexecstart();
185 	schedctl_finish_sigblock(curthread);
186 	savedmask = curthread->t_hold;
187 	sigorset(&curthread->t_hold, &ignoredefault);
188 	mutex_exit(&p->p_lock);
189 
190 	/*
191 	 * Look up path name and remember last component for later.
192 	 * To help coreadm expand its %d token, we attempt to save
193 	 * the directory containing the executable in p_execdir. The
194 	 * first call to lookuppn() may fail and return EINVAL because
195 	 * dirvpp is non-NULL. In that case, we make a second call to
196 	 * lookuppn() with dirvpp set to NULL; p_execdir will be NULL,
197 	 * but coreadm is allowed to expand %d to the empty string and
198 	 * there are other cases in which that failure may occur.
199 	 */
200 	if ((error = pn_get((char *)fname, UIO_USERSPACE, &pn)) != 0)
201 		goto out;
202 	pn_alloc(&resolvepn);
203 	if ((error = lookuppn(&pn, &resolvepn, FOLLOW, &dir, &vp)) != 0) {
204 		pn_free(&resolvepn);
205 		pn_free(&pn);
206 		if (error != EINVAL)
207 			goto out;
208 
209 		dir = NULL;
210 		if ((error = pn_get((char *)fname, UIO_USERSPACE, &pn)) != 0)
211 			goto out;
212 		pn_alloc(&resolvepn);
213 		if ((error = lookuppn(&pn, &resolvepn, FOLLOW, NULLVPP,
214 		    &vp)) != 0) {
215 			pn_free(&resolvepn);
216 			pn_free(&pn);
217 			goto out;
218 		}
219 	}
220 	if (vp == NULL) {
221 		if (dir != NULL)
222 			VN_RELE(dir);
223 		error = ENOENT;
224 		pn_free(&resolvepn);
225 		pn_free(&pn);
226 		goto out;
227 	}
228 
229 	if ((error = secpolicy_basic_exec(CRED(), vp)) != 0) {
230 		if (dir != NULL)
231 			VN_RELE(dir);
232 		pn_free(&resolvepn);
233 		pn_free(&pn);
234 		VN_RELE(vp);
235 		goto out;
236 	}
237 
238 	/*
239 	 * We do not allow executing files in attribute directories.
240 	 * We test this by determining whether the resolved path
241 	 * contains a "/" when we're in an attribute directory;
242 	 * only if the pathname does not contain a "/" the resolved path
243 	 * points to a file in the current working (attribute) directory.
244 	 */
245 	if ((p->p_user.u_cdir->v_flag & V_XATTRDIR) != 0 &&
246 	    strchr(resolvepn.pn_path, '/') == NULL) {
247 		if (dir != NULL)
248 			VN_RELE(dir);
249 		error = EACCES;
250 		pn_free(&resolvepn);
251 		pn_free(&pn);
252 		VN_RELE(vp);
253 		goto out;
254 	}
255 
256 	bzero(exec_file, MAXCOMLEN+1);
257 	(void) strncpy(exec_file, pn.pn_path, MAXCOMLEN);
258 	bzero(&args, sizeof (args));
259 	args.pathname = resolvepn.pn_path;
260 	/* don't free resolvepn until we are done with args */
261 	pn_free(&pn);
262 
263 	/*
264 	 * Specific exec handlers, or policies determined via
265 	 * /etc/system may override the historical default.
266 	 */
267 	args.stk_prot = PROT_ZFOD;
268 	args.dat_prot = PROT_ZFOD;
269 
270 	CPU_STATS_ADD_K(sys, sysexec, 1);
271 	DTRACE_PROC1(exec, char *, args.pathname);
272 
273 	ua.fname = fname;
274 	ua.argp = argp;
275 	ua.envp = envp;
276 
277 	/* If necessary, brand this process before we start the exec. */
278 	if (brandme != 0)
279 		brand_setbrand(p);
280 
281 	if ((error = gexec(&vp, &ua, &args, NULL, 0, &execsz,
282 	    exec_file, p->p_cred, brand_action)) != 0) {
283 		if (brandme != 0)
284 			BROP(p)->b_proc_exit(p, lwp);
285 		VN_RELE(vp);
286 		if (dir != NULL)
287 			VN_RELE(dir);
288 		pn_free(&resolvepn);
289 		goto fail;
290 	}
291 
292 	/*
293 	 * Free floating point registers (sun4u only)
294 	 */
295 	ASSERT(lwp != NULL);
296 	lwp_freeregs(lwp, 1);
297 
298 	/*
299 	 * Free thread and process context ops.
300 	 */
301 	if (curthread->t_ctx)
302 		freectx(curthread, 1);
303 	if (p->p_pctx)
304 		freepctx(p, 1);
305 
306 	/*
307 	 * Remember file name for accounting; clear any cached DTrace predicate.
308 	 */
309 	up->u_acflag &= ~AFORK;
310 	bcopy(exec_file, up->u_comm, MAXCOMLEN+1);
311 	curthread->t_predcache = NULL;
312 
313 	/*
314 	 * Clear contract template state
315 	 */
316 	lwp_ctmpl_clear(lwp);
317 
318 	/*
319 	 * Save the directory in which we found the executable for expanding
320 	 * the %d token used in core file patterns.
321 	 */
322 	mutex_enter(&p->p_lock);
323 	tmpvp = p->p_execdir;
324 	p->p_execdir = dir;
325 	if (p->p_execdir != NULL)
326 		VN_HOLD(p->p_execdir);
327 	mutex_exit(&p->p_lock);
328 
329 	if (tmpvp != NULL)
330 		VN_RELE(tmpvp);
331 
332 	/*
333 	 * Reset stack state to the user stack, clear set of signals
334 	 * caught on the signal stack, and reset list of signals that
335 	 * restart system calls; the new program's environment should
336 	 * not be affected by detritus from the old program.  Any
337 	 * pending held signals remain held, so don't clear t_hold.
338 	 */
339 	mutex_enter(&p->p_lock);
340 	lwp->lwp_oldcontext = 0;
341 	lwp->lwp_ustack = 0;
342 	lwp->lwp_old_stk_ctl = 0;
343 	sigemptyset(&up->u_signodefer);
344 	sigemptyset(&up->u_sigonstack);
345 	sigemptyset(&up->u_sigresethand);
346 	lwp->lwp_sigaltstack.ss_sp = 0;
347 	lwp->lwp_sigaltstack.ss_size = 0;
348 	lwp->lwp_sigaltstack.ss_flags = SS_DISABLE;
349 
350 	/*
351 	 * Make saved resource limit == current resource limit.
352 	 */
353 	for (i = 0; i < RLIM_NLIMITS; i++) {
354 		/*CONSTCOND*/
355 		if (RLIM_SAVED(i)) {
356 			(void) rctl_rlimit_get(rctlproc_legacy[i], p,
357 			    &up->u_saved_rlimit[i]);
358 		}
359 	}
360 
361 	/*
362 	 * If the action was to catch the signal, then the action
363 	 * must be reset to SIG_DFL.
364 	 */
365 	sigdefault(p);
366 	p->p_flag &= ~(SNOWAIT|SJCTL);
367 	p->p_flag |= (SEXECED|SMSACCT|SMSFORK);
368 	up->u_signal[SIGCLD - 1] = SIG_DFL;
369 
370 	/*
371 	 * Delete the dot4 sigqueues/signotifies.
372 	 */
373 	sigqfree(p);
374 
375 	mutex_exit(&p->p_lock);
376 
377 	mutex_enter(&p->p_pflock);
378 	p->p_prof.pr_base = NULL;
379 	p->p_prof.pr_size = 0;
380 	p->p_prof.pr_off = 0;
381 	p->p_prof.pr_scale = 0;
382 	p->p_prof.pr_samples = 0;
383 	mutex_exit(&p->p_pflock);
384 
385 	ASSERT(curthread->t_schedctl == NULL);
386 
387 #if defined(__sparc)
388 	if (p->p_utraps != NULL)
389 		utrap_free(p);
390 #endif	/* __sparc */
391 
392 	/*
393 	 * Close all close-on-exec files.
394 	 */
395 	close_exec(P_FINFO(p));
396 	TRACE_2(TR_FAC_PROC, TR_PROC_EXEC, "proc_exec:p %p up %p", p, up);
397 
398 	/* Unbrand ourself if requested. */
399 	if (brand_action == EBA_NATIVE)
400 		BROP(p)->b_proc_exit(p, lwp);
401 	ASSERT((brand_action != EBA_NATIVE) || !PROC_IS_BRANDED(p));
402 
403 	setregs(&args);
404 
405 	/* Mark this as an executable vnode */
406 	mutex_enter(&vp->v_lock);
407 	vp->v_flag |= VVMEXEC;
408 	mutex_exit(&vp->v_lock);
409 
410 	VN_RELE(vp);
411 	if (dir != NULL)
412 		VN_RELE(dir);
413 	pn_free(&resolvepn);
414 
415 	/*
416 	 * Allocate a new lwp directory and lwpid hash table if necessary.
417 	 */
418 	if (curthread->t_tid != 1 || p->p_lwpdir_sz != 2) {
419 		lwpdir = kmem_zalloc(2 * sizeof (lwpdir_t), KM_SLEEP);
420 		lwpdir->ld_next = lwpdir + 1;
421 		tidhash = kmem_zalloc(2 * sizeof (lwpdir_t *), KM_SLEEP);
422 		if (p->p_lwpdir != NULL)
423 			lep = p->p_lwpdir[curthread->t_dslot].ld_entry;
424 		else
425 			lep = kmem_zalloc(sizeof (*lep), KM_SLEEP);
426 	}
427 
428 	if (PROC_IS_BRANDED(p))
429 		BROP(p)->b_exec();
430 
431 	mutex_enter(&p->p_lock);
432 	prbarrier(p);
433 
434 	/*
435 	 * Reset lwp id to the default value of 1.
436 	 * This is a single-threaded process now
437 	 * and lwp #1 is lwp_wait()able by default.
438 	 * The t_unpark flag should not be inherited.
439 	 */
440 	ASSERT(p->p_lwpcnt == 1 && p->p_zombcnt == 0);
441 	curthread->t_tid = 1;
442 	kpreempt_disable();
443 	ASSERT(curthread->t_lpl != NULL);
444 	p->p_t1_lgrpid = curthread->t_lpl->lpl_lgrpid;
445 	kpreempt_enable();
446 	if (p->p_tr_lgrpid != LGRP_NONE && p->p_tr_lgrpid != p->p_t1_lgrpid) {
447 		lgrp_update_trthr_migrations(1);
448 	}
449 	curthread->t_unpark = 0;
450 	curthread->t_proc_flag |= TP_TWAIT;
451 	curthread->t_proc_flag &= ~TP_DAEMON;	/* daemons shouldn't exec */
452 	p->p_lwpdaemon = 0;			/* but oh well ... */
453 	p->p_lwpid = 1;
454 
455 	/*
456 	 * Install the newly-allocated lwp directory and lwpid hash table
457 	 * and insert the current thread into the new hash table.
458 	 */
459 	if (lwpdir != NULL) {
460 		old_lwpdir = p->p_lwpdir;
461 		old_lwpdir_sz = p->p_lwpdir_sz;
462 		old_tidhash = p->p_tidhash;
463 		old_tidhash_sz = p->p_tidhash_sz;
464 		p->p_lwpdir = p->p_lwpfree = lwpdir;
465 		p->p_lwpdir_sz = 2;
466 		p->p_tidhash = tidhash;
467 		p->p_tidhash_sz = 2;
468 		lep->le_thread = curthread;
469 		lep->le_lwpid = curthread->t_tid;
470 		lep->le_start = curthread->t_start;
471 		lwp_hash_in(p, lep);
472 	}
473 
474 	/*
475 	 * Restore the saved signal mask and
476 	 * inform /proc that the exec() has finished.
477 	 */
478 	curthread->t_hold = savedmask;
479 	prexecend();
480 	mutex_exit(&p->p_lock);
481 	if (old_lwpdir) {
482 		kmem_free(old_lwpdir, old_lwpdir_sz * sizeof (lwpdir_t));
483 		kmem_free(old_tidhash, old_tidhash_sz * sizeof (lwpdir_t *));
484 	}
485 
486 	ASSERT(error == 0);
487 	DTRACE_PROC(exec__success);
488 	return (0);
489 
490 fail:
491 	DTRACE_PROC1(exec__failure, int, error);
492 out:		/* error return */
493 	mutex_enter(&p->p_lock);
494 	curthread->t_hold = savedmask;
495 	prexecend();
496 	mutex_exit(&p->p_lock);
497 	ASSERT(error != 0);
498 	return (error);
499 }
500 
501 
502 /*
503  * Perform generic exec duties and switchout to object-file specific
504  * handler.
505  */
506 int
507 gexec(
508 	struct vnode **vpp,
509 	struct execa *uap,
510 	struct uarg *args,
511 	struct intpdata *idatap,
512 	int level,
513 	long *execsz,
514 	caddr_t exec_file,
515 	struct cred *cred,
516 	int brand_action)
517 {
518 	struct vnode *vp;
519 	proc_t *pp = ttoproc(curthread);
520 	struct execsw *eswp;
521 	int error = 0;
522 	int suidflags = 0;
523 	ssize_t resid;
524 	uid_t uid, gid;
525 	struct vattr vattr;
526 	char magbuf[MAGIC_BYTES];
527 	int setid;
528 	cred_t *oldcred, *newcred = NULL;
529 	int privflags = 0;
530 	int setidfl;
531 
532 	/*
533 	 * If the SNOCD or SUGID flag is set, turn it off and remember the
534 	 * previous setting so we can restore it if we encounter an error.
535 	 */
536 	if (level == 0 && (pp->p_flag & PSUIDFLAGS)) {
537 		mutex_enter(&pp->p_lock);
538 		suidflags = pp->p_flag & PSUIDFLAGS;
539 		pp->p_flag &= ~PSUIDFLAGS;
540 		mutex_exit(&pp->p_lock);
541 	}
542 
543 	if ((error = execpermissions(*vpp, &vattr, args)) != 0)
544 		goto bad;
545 
546 	/* need to open vnode for stateful file systems like rfs */
547 	if ((error = VOP_OPEN(vpp, FREAD, CRED(), NULL)) != 0)
548 		goto bad;
549 	vp = *vpp;
550 
551 	/*
552 	 * Note: to support binary compatibility with SunOS a.out
553 	 * executables, we read in the first four bytes, as the
554 	 * magic number is in bytes 2-3.
555 	 */
556 	if (error = vn_rdwr(UIO_READ, vp, magbuf, sizeof (magbuf),
557 	    (offset_t)0, UIO_SYSSPACE, 0, (rlim64_t)0, CRED(), &resid))
558 		goto bad;
559 	if (resid != 0)
560 		goto bad;
561 
562 	if ((eswp = findexec_by_hdr(magbuf)) == NULL)
563 		goto bad;
564 
565 	if (level == 0 &&
566 	    (privflags = execsetid(vp, &vattr, &uid, &gid)) != 0) {
567 
568 		newcred = cred = crdup(cred);
569 
570 		/* If we can, drop the PA bit */
571 		if ((privflags & PRIV_RESET) != 0)
572 			priv_adjust_PA(cred);
573 
574 		if (privflags & PRIV_SETID) {
575 			cred->cr_uid = uid;
576 			cred->cr_gid = gid;
577 			cred->cr_suid = uid;
578 			cred->cr_sgid = gid;
579 		}
580 
581 		if (privflags & MAC_FLAGS) {
582 			if (!(CR_FLAGS(cred) & NET_MAC_AWARE_INHERIT))
583 				CR_FLAGS(cred) &= ~NET_MAC_AWARE;
584 			CR_FLAGS(cred) &= ~NET_MAC_AWARE_INHERIT;
585 		}
586 
587 		/*
588 		 * Implement the privilege updates:
589 		 *
590 		 * Restrict with L:
591 		 *
592 		 *	I' = I & L
593 		 *
594 		 *	E' = P' = (I' + F) & A
595 		 *
596 		 * But if running under ptrace, we cap I with P.
597 		 */
598 		if ((privflags & PRIV_RESET) != 0) {
599 			if ((privflags & PRIV_INCREASE) != 0 &&
600 			    (pp->p_proc_flag & P_PR_PTRACE) != 0)
601 				priv_intersect(&CR_OPPRIV(cred),
602 				    &CR_IPRIV(cred));
603 			priv_intersect(&CR_LPRIV(cred), &CR_IPRIV(cred));
604 			CR_EPRIV(cred) = CR_PPRIV(cred) = CR_IPRIV(cred);
605 			priv_adjust_PA(cred);
606 		}
607 	}
608 
609 	/* SunOS 4.x buy-back */
610 	if ((vp->v_vfsp->vfs_flag & VFS_NOSETUID) &&
611 	    (vattr.va_mode & (VSUID|VSGID))) {
612 		cmn_err(CE_NOTE,
613 		    "!%s, uid %d: setuid execution not allowed, dev=%lx",
614 		    exec_file, cred->cr_uid, vp->v_vfsp->vfs_dev);
615 	}
616 
617 	/*
618 	 * execsetid() told us whether or not we had to change the
619 	 * credentials of the process.  In privflags, it told us
620 	 * whether we gained any privileges or executed a set-uid executable.
621 	 */
622 	setid = (privflags & (PRIV_SETUGID|PRIV_INCREASE));
623 
624 	/*
625 	 * Use /etc/system variable to determine if the stack
626 	 * should be marked as executable by default.
627 	 */
628 	if (noexec_user_stack)
629 		args->stk_prot &= ~PROT_EXEC;
630 
631 	args->execswp = eswp; /* Save execsw pointer in uarg for exec_func */
632 	args->ex_vp = vp;
633 
634 	/*
635 	 * Traditionally, the setid flags told the sub processes whether
636 	 * the file just executed was set-uid or set-gid; this caused
637 	 * some confusion as the 'setid' flag did not match the SUGID
638 	 * process flag which is only set when the uids/gids do not match.
639 	 * A script set-gid/set-uid to the real uid/gid would start with
640 	 * /dev/fd/X but an executable would happily trust LD_LIBRARY_PATH.
641 	 * Now we flag those cases where the calling process cannot
642 	 * be trusted to influence the newly exec'ed process, either
643 	 * because it runs with more privileges or when the uids/gids
644 	 * do in fact not match.
645 	 * This also makes the runtime linker agree with the on exec
646 	 * values of SNOCD and SUGID.
647 	 */
648 	setidfl = 0;
649 	if (cred->cr_uid != cred->cr_ruid || (cred->cr_rgid != cred->cr_gid &&
650 	    !supgroupmember(cred->cr_gid, cred))) {
651 		setidfl |= EXECSETID_UGIDS;
652 	}
653 	if (setid & PRIV_SETUGID)
654 		setidfl |= EXECSETID_SETID;
655 	if (setid & PRIV_INCREASE)
656 		setidfl |= EXECSETID_PRIVS;
657 
658 	error = (*eswp->exec_func)(vp, uap, args, idatap, level, execsz,
659 	    setidfl, exec_file, cred, brand_action);
660 	rw_exit(eswp->exec_lock);
661 	if (error != 0) {
662 		if (newcred != NULL)
663 			crfree(newcred);
664 		goto bad;
665 	}
666 
667 	if (level == 0) {
668 		mutex_enter(&pp->p_crlock);
669 		if (newcred != NULL) {
670 			/*
671 			 * Free the old credentials, and set the new ones.
672 			 * Do this for both the process and the (single) thread.
673 			 */
674 			crfree(pp->p_cred);
675 			pp->p_cred = cred;	/* cred already held for proc */
676 			crhold(cred);		/* hold new cred for thread */
677 			/*
678 			 * DTrace accesses t_cred in probe context.  t_cred
679 			 * must always be either NULL, or point to a valid,
680 			 * allocated cred structure.
681 			 */
682 			oldcred = curthread->t_cred;
683 			curthread->t_cred = cred;
684 			crfree(oldcred);
685 		}
686 		/*
687 		 * On emerging from a successful exec(), the saved
688 		 * uid and gid equal the effective uid and gid.
689 		 */
690 		cred->cr_suid = cred->cr_uid;
691 		cred->cr_sgid = cred->cr_gid;
692 
693 		/*
694 		 * If the real and effective ids do not match, this
695 		 * is a setuid process that should not dump core.
696 		 * The group comparison is tricky; we prevent the code
697 		 * from flagging SNOCD when executing with an effective gid
698 		 * which is a supplementary group.
699 		 */
700 		if (cred->cr_ruid != cred->cr_uid ||
701 		    (cred->cr_rgid != cred->cr_gid &&
702 		    !supgroupmember(cred->cr_gid, cred)) ||
703 		    (privflags & PRIV_INCREASE) != 0)
704 			suidflags = PSUIDFLAGS;
705 		else
706 			suidflags = 0;
707 
708 		mutex_exit(&pp->p_crlock);
709 		if (suidflags) {
710 			mutex_enter(&pp->p_lock);
711 			pp->p_flag |= suidflags;
712 			mutex_exit(&pp->p_lock);
713 		}
714 		if (setid && (pp->p_proc_flag & P_PR_PTRACE) == 0) {
715 			/*
716 			 * If process is traced via /proc, arrange to
717 			 * invalidate the associated /proc vnode.
718 			 */
719 			if (pp->p_plist || (pp->p_proc_flag & P_PR_TRACE))
720 				args->traceinval = 1;
721 		}
722 		if (pp->p_proc_flag & P_PR_PTRACE)
723 			psignal(pp, SIGTRAP);
724 		if (args->traceinval)
725 			prinvalidate(&pp->p_user);
726 	}
727 
728 	return (0);
729 bad:
730 	if (error == 0)
731 		error = ENOEXEC;
732 
733 	if (suidflags) {
734 		mutex_enter(&pp->p_lock);
735 		pp->p_flag |= suidflags;
736 		mutex_exit(&pp->p_lock);
737 	}
738 	return (error);
739 }
740 
741 extern char *execswnames[];
742 
743 struct execsw *
744 allocate_execsw(char *name, char *magic, size_t magic_size)
745 {
746 	int i, j;
747 	char *ename;
748 	char *magicp;
749 
750 	mutex_enter(&execsw_lock);
751 	for (i = 0; i < nexectype; i++) {
752 		if (execswnames[i] == NULL) {
753 			ename = kmem_alloc(strlen(name) + 1, KM_SLEEP);
754 			(void) strcpy(ename, name);
755 			execswnames[i] = ename;
756 			/*
757 			 * Set the magic number last so that we
758 			 * don't need to hold the execsw_lock in
759 			 * findexectype().
760 			 */
761 			magicp = kmem_alloc(magic_size, KM_SLEEP);
762 			for (j = 0; j < magic_size; j++)
763 				magicp[j] = magic[j];
764 			execsw[i].exec_magic = magicp;
765 			mutex_exit(&execsw_lock);
766 			return (&execsw[i]);
767 		}
768 	}
769 	mutex_exit(&execsw_lock);
770 	return (NULL);
771 }
772 
773 /*
774  * Find the exec switch table entry with the corresponding magic string.
775  */
776 struct execsw *
777 findexecsw(char *magic)
778 {
779 	struct execsw *eswp;
780 
781 	for (eswp = execsw; eswp < &execsw[nexectype]; eswp++) {
782 		ASSERT(eswp->exec_maglen <= MAGIC_BYTES);
783 		if (magic && eswp->exec_maglen != 0 &&
784 		    bcmp(magic, eswp->exec_magic, eswp->exec_maglen) == 0)
785 			return (eswp);
786 	}
787 	return (NULL);
788 }
789 
790 /*
791  * Find the execsw[] index for the given exec header string by looking for the
792  * magic string at a specified offset and length for each kind of executable
793  * file format until one matches.  If no execsw[] entry is found, try to
794  * autoload a module for this magic string.
795  */
796 struct execsw *
797 findexec_by_hdr(char *header)
798 {
799 	struct execsw *eswp;
800 
801 	for (eswp = execsw; eswp < &execsw[nexectype]; eswp++) {
802 		ASSERT(eswp->exec_maglen <= MAGIC_BYTES);
803 		if (header && eswp->exec_maglen != 0 &&
804 		    bcmp(&header[eswp->exec_magoff], eswp->exec_magic,
805 		    eswp->exec_maglen) == 0) {
806 			if (hold_execsw(eswp) != 0)
807 				return (NULL);
808 			return (eswp);
809 		}
810 	}
811 	return (NULL);	/* couldn't find the type */
812 }
813 
814 /*
815  * Find the execsw[] index for the given magic string.  If no execsw[] entry
816  * is found, try to autoload a module for this magic string.
817  */
818 struct execsw *
819 findexec_by_magic(char *magic)
820 {
821 	struct execsw *eswp;
822 
823 	for (eswp = execsw; eswp < &execsw[nexectype]; eswp++) {
824 		ASSERT(eswp->exec_maglen <= MAGIC_BYTES);
825 		if (magic && eswp->exec_maglen != 0 &&
826 		    bcmp(magic, eswp->exec_magic, eswp->exec_maglen) == 0) {
827 			if (hold_execsw(eswp) != 0)
828 				return (NULL);
829 			return (eswp);
830 		}
831 	}
832 	return (NULL);	/* couldn't find the type */
833 }
834 
835 static int
836 hold_execsw(struct execsw *eswp)
837 {
838 	char *name;
839 
840 	rw_enter(eswp->exec_lock, RW_READER);
841 	while (!LOADED_EXEC(eswp)) {
842 		rw_exit(eswp->exec_lock);
843 		name = execswnames[eswp-execsw];
844 		ASSERT(name);
845 		if (modload("exec", name) == -1)
846 			return (-1);
847 		rw_enter(eswp->exec_lock, RW_READER);
848 	}
849 	return (0);
850 }
851 
852 static int
853 execsetid(struct vnode *vp, struct vattr *vattrp, uid_t *uidp, uid_t *gidp)
854 {
855 	proc_t *pp = ttoproc(curthread);
856 	uid_t uid, gid;
857 	cred_t *cr = pp->p_cred;
858 	int privflags = 0;
859 
860 	/*
861 	 * Remember credentials.
862 	 */
863 	uid = cr->cr_uid;
864 	gid = cr->cr_gid;
865 
866 	/* Will try to reset the PRIV_AWARE bit later. */
867 	if ((CR_FLAGS(cr) & (PRIV_AWARE|PRIV_AWARE_INHERIT)) == PRIV_AWARE)
868 		privflags |= PRIV_RESET;
869 
870 	if ((vp->v_vfsp->vfs_flag & VFS_NOSETUID) == 0) {
871 		/*
872 		 * Set-uid root execution only allowed if the limit set
873 		 * holds all unsafe privileges.
874 		 */
875 		if ((vattrp->va_mode & VSUID) && (vattrp->va_uid != 0 ||
876 		    priv_issubset(&priv_unsafe, &CR_LPRIV(cr)))) {
877 			uid = vattrp->va_uid;
878 			privflags |= PRIV_SETUGID;
879 		}
880 		if (vattrp->va_mode & VSGID) {
881 			gid = vattrp->va_gid;
882 			privflags |= PRIV_SETUGID;
883 		}
884 	}
885 
886 	/*
887 	 * Do we need to change our credential anyway?
888 	 * This is the case when E != I or P != I, as
889 	 * we need to do the assignments (with F empty and A full)
890 	 * Or when I is not a subset of L; in that case we need to
891 	 * enforce L.
892 	 *
893 	 *		I' = L & I
894 	 *
895 	 *		E' = P' = (I' + F) & A
896 	 * or
897 	 *		E' = P' = I'
898 	 */
899 	if (!priv_isequalset(&CR_EPRIV(cr), &CR_IPRIV(cr)) ||
900 	    !priv_issubset(&CR_IPRIV(cr), &CR_LPRIV(cr)) ||
901 	    !priv_isequalset(&CR_PPRIV(cr), &CR_IPRIV(cr)))
902 		privflags |= PRIV_RESET;
903 
904 	/* If MAC-aware flag(s) are on, need to update cred to remove. */
905 	if ((CR_FLAGS(cr) & NET_MAC_AWARE) ||
906 	    (CR_FLAGS(cr) & NET_MAC_AWARE_INHERIT))
907 		privflags |= MAC_FLAGS;
908 
909 	/*
910 	 * When we introduce the "forced" set then we will need
911 	 * to set PRIV_INCREASE here if I not a subset of P.
912 	 * If the "allowed" set is introduced we will need to do
913 	 * a similar thing; however, it seems more reasonable to
914 	 * have the allowed set reduce "L": script language interpreters
915 	 * would typically have an allowed set of "all".
916 	 */
917 
918 	/*
919 	 * Set setuid/setgid protections if no ptrace() compatibility.
920 	 * For privileged processes, honor setuid/setgid even in
921 	 * the presence of ptrace() compatibility.
922 	 */
923 	if (((pp->p_proc_flag & P_PR_PTRACE) == 0 ||
924 	    PRIV_POLICY_ONLY(cr, PRIV_PROC_OWNER, (uid == 0))) &&
925 	    (cr->cr_uid != uid ||
926 	    cr->cr_gid != gid ||
927 	    cr->cr_suid != uid ||
928 	    cr->cr_sgid != gid)) {
929 		*uidp = uid;
930 		*gidp = gid;
931 		privflags |= PRIV_SETID;
932 	}
933 	return (privflags);
934 }
935 
936 int
937 execpermissions(struct vnode *vp, struct vattr *vattrp, struct uarg *args)
938 {
939 	int error;
940 	proc_t *p = ttoproc(curthread);
941 
942 	vattrp->va_mask = AT_MODE | AT_UID | AT_GID | AT_SIZE;
943 	if (error = VOP_GETATTR(vp, vattrp, ATTR_EXEC, p->p_cred, NULL))
944 		return (error);
945 	/*
946 	 * Check the access mode.
947 	 * If VPROC, ask /proc if the file is an object file.
948 	 */
949 	if ((error = VOP_ACCESS(vp, VEXEC, 0, p->p_cred, NULL)) != 0 ||
950 	    !(vp->v_type == VREG || (vp->v_type == VPROC && pr_isobject(vp))) ||
951 	    (vp->v_vfsp->vfs_flag & VFS_NOEXEC) != 0 ||
952 	    (vattrp->va_mode & (VEXEC|(VEXEC>>3)|(VEXEC>>6))) == 0) {
953 		if (error == 0)
954 			error = EACCES;
955 		return (error);
956 	}
957 
958 	if ((p->p_plist || (p->p_proc_flag & (P_PR_PTRACE|P_PR_TRACE))) &&
959 	    (error = VOP_ACCESS(vp, VREAD, 0, p->p_cred, NULL))) {
960 		/*
961 		 * If process is under ptrace(2) compatibility,
962 		 * fail the exec(2).
963 		 */
964 		if (p->p_proc_flag & P_PR_PTRACE)
965 			goto bad;
966 		/*
967 		 * Process is traced via /proc.
968 		 * Arrange to invalidate the /proc vnode.
969 		 */
970 		args->traceinval = 1;
971 	}
972 	return (0);
973 bad:
974 	if (error == 0)
975 		error = ENOEXEC;
976 	return (error);
977 }
978 
979 /*
980  * Map a section of an executable file into the user's
981  * address space.
982  */
983 int
984 execmap(struct vnode *vp, caddr_t addr, size_t len, size_t zfodlen,
985     off_t offset, int prot, int page, uint_t szc)
986 {
987 	int error = 0;
988 	off_t oldoffset;
989 	caddr_t zfodbase, oldaddr;
990 	size_t end, oldlen;
991 	size_t zfoddiff;
992 	label_t ljb;
993 	proc_t *p = ttoproc(curthread);
994 
995 	oldaddr = addr;
996 	addr = (caddr_t)((uintptr_t)addr & (uintptr_t)PAGEMASK);
997 	if (len) {
998 		oldlen = len;
999 		len += ((size_t)oldaddr - (size_t)addr);
1000 		oldoffset = offset;
1001 		offset = (off_t)((uintptr_t)offset & PAGEMASK);
1002 		if (page) {
1003 			spgcnt_t  prefltmem, availm, npages;
1004 			int preread;
1005 			uint_t mflag = MAP_PRIVATE | MAP_FIXED;
1006 
1007 			if ((prot & (PROT_WRITE | PROT_EXEC)) == PROT_EXEC) {
1008 				mflag |= MAP_TEXT;
1009 			} else {
1010 				mflag |= MAP_INITDATA;
1011 			}
1012 
1013 			if (valid_usr_range(addr, len, prot, p->p_as,
1014 			    p->p_as->a_userlimit) != RANGE_OKAY) {
1015 				error = ENOMEM;
1016 				goto bad;
1017 			}
1018 			if (error = VOP_MAP(vp, (offset_t)offset,
1019 			    p->p_as, &addr, len, prot, PROT_ALL,
1020 			    mflag, CRED(), NULL))
1021 				goto bad;
1022 
1023 			/*
1024 			 * If the segment can fit, then we prefault
1025 			 * the entire segment in.  This is based on the
1026 			 * model that says the best working set of a
1027 			 * small program is all of its pages.
1028 			 */
1029 			npages = (spgcnt_t)btopr(len);
1030 			prefltmem = freemem - desfree;
1031 			preread =
1032 			    (npages < prefltmem && len < PGTHRESH) ? 1 : 0;
1033 
1034 			/*
1035 			 * If we aren't prefaulting the segment,
1036 			 * increment "deficit", if necessary to ensure
1037 			 * that pages will become available when this
1038 			 * process starts executing.
1039 			 */
1040 			availm = freemem - lotsfree;
1041 			if (preread == 0 && npages > availm &&
1042 			    deficit < lotsfree) {
1043 				deficit += MIN((pgcnt_t)(npages - availm),
1044 				    lotsfree - deficit);
1045 			}
1046 
1047 			if (preread) {
1048 				TRACE_2(TR_FAC_PROC, TR_EXECMAP_PREREAD,
1049 				    "execmap preread:freemem %d size %lu",
1050 				    freemem, len);
1051 				(void) as_fault(p->p_as->a_hat, p->p_as,
1052 				    (caddr_t)addr, len, F_INVAL, S_READ);
1053 			}
1054 		} else {
1055 			if (valid_usr_range(addr, len, prot, p->p_as,
1056 			    p->p_as->a_userlimit) != RANGE_OKAY) {
1057 				error = ENOMEM;
1058 				goto bad;
1059 			}
1060 
1061 			if (error = as_map(p->p_as, addr, len,
1062 			    segvn_create, zfod_argsp))
1063 				goto bad;
1064 			/*
1065 			 * Read in the segment in one big chunk.
1066 			 */
1067 			if (error = vn_rdwr(UIO_READ, vp, (caddr_t)oldaddr,
1068 			    oldlen, (offset_t)oldoffset, UIO_USERSPACE, 0,
1069 			    (rlim64_t)0, CRED(), (ssize_t *)0))
1070 				goto bad;
1071 			/*
1072 			 * Now set protections.
1073 			 */
1074 			if (prot != PROT_ZFOD) {
1075 				(void) as_setprot(p->p_as, (caddr_t)addr,
1076 				    len, prot);
1077 			}
1078 		}
1079 	}
1080 
1081 	if (zfodlen) {
1082 		struct as *as = curproc->p_as;
1083 		struct seg *seg;
1084 		uint_t zprot = 0;
1085 
1086 		end = (size_t)addr + len;
1087 		zfodbase = (caddr_t)roundup(end, PAGESIZE);
1088 		zfoddiff = (uintptr_t)zfodbase - end;
1089 		if (zfoddiff) {
1090 			/*
1091 			 * Before we go to zero the remaining space on the last
1092 			 * page, make sure we have write permission.
1093 			 */
1094 
1095 			AS_LOCK_ENTER(as, &as->a_lock, RW_READER);
1096 			seg = as_segat(curproc->p_as, (caddr_t)end);
1097 			if (seg != NULL)
1098 				SEGOP_GETPROT(seg, (caddr_t)end, zfoddiff - 1,
1099 				    &zprot);
1100 			AS_LOCK_EXIT(as, &as->a_lock);
1101 
1102 			if (seg != NULL && (zprot & PROT_WRITE) == 0) {
1103 				(void) as_setprot(as, (caddr_t)end,
1104 				    zfoddiff - 1, zprot | PROT_WRITE);
1105 			}
1106 
1107 			if (on_fault(&ljb)) {
1108 				no_fault();
1109 				if (seg != NULL && (zprot & PROT_WRITE) == 0)
1110 					(void) as_setprot(as, (caddr_t)end,
1111 					    zfoddiff - 1, zprot);
1112 				error = EFAULT;
1113 				goto bad;
1114 			}
1115 			uzero((void *)end, zfoddiff);
1116 			no_fault();
1117 			if (seg != NULL && (zprot & PROT_WRITE) == 0)
1118 				(void) as_setprot(as, (caddr_t)end,
1119 				    zfoddiff - 1, zprot);
1120 		}
1121 		if (zfodlen > zfoddiff) {
1122 			struct segvn_crargs crargs =
1123 			    SEGVN_ZFOD_ARGS(PROT_ZFOD, PROT_ALL);
1124 
1125 			zfodlen -= zfoddiff;
1126 			if (valid_usr_range(zfodbase, zfodlen, prot, p->p_as,
1127 			    p->p_as->a_userlimit) != RANGE_OKAY) {
1128 				error = ENOMEM;
1129 				goto bad;
1130 			}
1131 			if (szc > 0) {
1132 				/*
1133 				 * ASSERT alignment because the mapelfexec()
1134 				 * caller for the szc > 0 case extended zfod
1135 				 * so it's end is pgsz aligned.
1136 				 */
1137 				size_t pgsz = page_get_pagesize(szc);
1138 				ASSERT(IS_P2ALIGNED(zfodbase + zfodlen, pgsz));
1139 
1140 				if (IS_P2ALIGNED(zfodbase, pgsz)) {
1141 					crargs.szc = szc;
1142 				} else {
1143 					crargs.szc = AS_MAP_HEAP;
1144 				}
1145 			} else {
1146 				crargs.szc = AS_MAP_NO_LPOOB;
1147 			}
1148 			if (error = as_map(p->p_as, (caddr_t)zfodbase,
1149 			    zfodlen, segvn_create, &crargs))
1150 				goto bad;
1151 			if (prot != PROT_ZFOD) {
1152 				(void) as_setprot(p->p_as, (caddr_t)zfodbase,
1153 				    zfodlen, prot);
1154 			}
1155 		}
1156 	}
1157 	return (0);
1158 bad:
1159 	return (error);
1160 }
1161 
1162 void
1163 setexecenv(struct execenv *ep)
1164 {
1165 	proc_t *p = ttoproc(curthread);
1166 	klwp_t *lwp = ttolwp(curthread);
1167 	struct vnode *vp;
1168 
1169 	p->p_bssbase = ep->ex_bssbase;
1170 	p->p_brkbase = ep->ex_brkbase;
1171 	p->p_brksize = ep->ex_brksize;
1172 	if (p->p_exec)
1173 		VN_RELE(p->p_exec);	/* out with the old */
1174 	vp = p->p_exec = ep->ex_vp;
1175 	if (vp != NULL)
1176 		VN_HOLD(vp);		/* in with the new */
1177 
1178 	lwp->lwp_sigaltstack.ss_sp = 0;
1179 	lwp->lwp_sigaltstack.ss_size = 0;
1180 	lwp->lwp_sigaltstack.ss_flags = SS_DISABLE;
1181 }
1182 
1183 int
1184 execopen(struct vnode **vpp, int *fdp)
1185 {
1186 	struct vnode *vp = *vpp;
1187 	file_t *fp;
1188 	int error = 0;
1189 	int filemode = FREAD;
1190 
1191 	VN_HOLD(vp);		/* open reference */
1192 	if (error = falloc(NULL, filemode, &fp, fdp)) {
1193 		VN_RELE(vp);
1194 		*fdp = -1;	/* just in case falloc changed value */
1195 		return (error);
1196 	}
1197 	if (error = VOP_OPEN(&vp, filemode, CRED(), NULL)) {
1198 		VN_RELE(vp);
1199 		setf(*fdp, NULL);
1200 		unfalloc(fp);
1201 		*fdp = -1;
1202 		return (error);
1203 	}
1204 	*vpp = vp;		/* vnode should not have changed */
1205 	fp->f_vnode = vp;
1206 	mutex_exit(&fp->f_tlock);
1207 	setf(*fdp, fp);
1208 	return (0);
1209 }
1210 
1211 int
1212 execclose(int fd)
1213 {
1214 	return (closeandsetf(fd, NULL));
1215 }
1216 
1217 
1218 /*
1219  * noexec stub function.
1220  */
1221 /*ARGSUSED*/
1222 int
1223 noexec(
1224     struct vnode *vp,
1225     struct execa *uap,
1226     struct uarg *args,
1227     struct intpdata *idatap,
1228     int level,
1229     long *execsz,
1230     int setid,
1231     caddr_t exec_file,
1232     struct cred *cred)
1233 {
1234 	cmn_err(CE_WARN, "missing exec capability for %s", uap->fname);
1235 	return (ENOEXEC);
1236 }
1237 
1238 /*
1239  * Support routines for building a user stack.
1240  *
1241  * execve(path, argv, envp) must construct a new stack with the specified
1242  * arguments and environment variables (see exec_args() for a description
1243  * of the user stack layout).  To do this, we copy the arguments and
1244  * environment variables from the old user address space into the kernel,
1245  * free the old as, create the new as, and copy our buffered information
1246  * to the new stack.  Our kernel buffer has the following structure:
1247  *
1248  *	+-----------------------+ <--- stk_base + stk_size
1249  *	| string offsets	|
1250  *	+-----------------------+ <--- stk_offp
1251  *	|			|
1252  *	| STK_AVAIL() space	|
1253  *	|			|
1254  *	+-----------------------+ <--- stk_strp
1255  *	| strings		|
1256  *	+-----------------------+ <--- stk_base
1257  *
1258  * When we add a string, we store the string's contents (including the null
1259  * terminator) at stk_strp, and we store the offset of the string relative to
1260  * stk_base at --stk_offp.  At strings are added, stk_strp increases and
1261  * stk_offp decreases.  The amount of space remaining, STK_AVAIL(), is just
1262  * the difference between these pointers.  If we run out of space, we return
1263  * an error and exec_args() starts all over again with a buffer twice as large.
1264  * When we're all done, the kernel buffer looks like this:
1265  *
1266  *	+-----------------------+ <--- stk_base + stk_size
1267  *	| argv[0] offset	|
1268  *	+-----------------------+
1269  *	| ...			|
1270  *	+-----------------------+
1271  *	| argv[argc-1] offset	|
1272  *	+-----------------------+
1273  *	| envp[0] offset	|
1274  *	+-----------------------+
1275  *	| ...			|
1276  *	+-----------------------+
1277  *	| envp[envc-1] offset	|
1278  *	+-----------------------+
1279  *	| AT_SUN_PLATFORM offset|
1280  *	+-----------------------+
1281  *	| AT_SUN_EXECNAME offset|
1282  *	+-----------------------+ <--- stk_offp
1283  *	|			|
1284  *	| STK_AVAIL() space	|
1285  *	|			|
1286  *	+-----------------------+ <--- stk_strp
1287  *	| AT_SUN_EXECNAME offset|
1288  *	+-----------------------+
1289  *	| AT_SUN_PLATFORM offset|
1290  *	+-----------------------+
1291  *	| envp[envc-1] string	|
1292  *	+-----------------------+
1293  *	| ...			|
1294  *	+-----------------------+
1295  *	| envp[0] string	|
1296  *	+-----------------------+
1297  *	| argv[argc-1] string	|
1298  *	+-----------------------+
1299  *	| ...			|
1300  *	+-----------------------+
1301  *	| argv[0] string	|
1302  *	+-----------------------+ <--- stk_base
1303  */
1304 
1305 #define	STK_AVAIL(args)		((char *)(args)->stk_offp - (args)->stk_strp)
1306 
1307 /*
1308  * Add a string to the stack.
1309  */
1310 static int
1311 stk_add(uarg_t *args, const char *sp, enum uio_seg segflg)
1312 {
1313 	int error;
1314 	size_t len;
1315 
1316 	if (STK_AVAIL(args) < sizeof (int))
1317 		return (E2BIG);
1318 	*--args->stk_offp = args->stk_strp - args->stk_base;
1319 
1320 	if (segflg == UIO_USERSPACE) {
1321 		error = copyinstr(sp, args->stk_strp, STK_AVAIL(args), &len);
1322 		if (error != 0)
1323 			return (error);
1324 	} else {
1325 		len = strlen(sp) + 1;
1326 		if (len > STK_AVAIL(args))
1327 			return (E2BIG);
1328 		bcopy(sp, args->stk_strp, len);
1329 	}
1330 
1331 	args->stk_strp += len;
1332 
1333 	return (0);
1334 }
1335 
1336 static int
1337 stk_getptr(uarg_t *args, char *src, char **dst)
1338 {
1339 	int error;
1340 
1341 	if (args->from_model == DATAMODEL_NATIVE) {
1342 		ulong_t ptr;
1343 		error = fulword(src, &ptr);
1344 		*dst = (caddr_t)ptr;
1345 	} else {
1346 		uint32_t ptr;
1347 		error = fuword32(src, &ptr);
1348 		*dst = (caddr_t)(uintptr_t)ptr;
1349 	}
1350 	return (error);
1351 }
1352 
1353 static int
1354 stk_putptr(uarg_t *args, char *addr, char *value)
1355 {
1356 	if (args->to_model == DATAMODEL_NATIVE)
1357 		return (sulword(addr, (ulong_t)value));
1358 	else
1359 		return (suword32(addr, (uint32_t)(uintptr_t)value));
1360 }
1361 
1362 static int
1363 stk_copyin(execa_t *uap, uarg_t *args, intpdata_t *intp, void **auxvpp)
1364 {
1365 	char *sp;
1366 	int argc, error;
1367 	int argv_empty = 0;
1368 	size_t ptrsize = args->from_ptrsize;
1369 	size_t size, pad;
1370 	char *argv = (char *)uap->argp;
1371 	char *envp = (char *)uap->envp;
1372 
1373 	/*
1374 	 * Copy interpreter's name and argument to argv[0] and argv[1].
1375 	 */
1376 	if (intp != NULL && intp->intp_name != NULL) {
1377 		if ((error = stk_add(args, intp->intp_name, UIO_SYSSPACE)) != 0)
1378 			return (error);
1379 		if (intp->intp_arg != NULL &&
1380 		    (error = stk_add(args, intp->intp_arg, UIO_SYSSPACE)) != 0)
1381 			return (error);
1382 		if (args->fname != NULL)
1383 			error = stk_add(args, args->fname, UIO_SYSSPACE);
1384 		else
1385 			error = stk_add(args, uap->fname, UIO_USERSPACE);
1386 		if (error)
1387 			return (error);
1388 
1389 		/*
1390 		 * Check for an empty argv[].
1391 		 */
1392 		if (stk_getptr(args, argv, &sp))
1393 			return (EFAULT);
1394 		if (sp == NULL)
1395 			argv_empty = 1;
1396 
1397 		argv += ptrsize;		/* ignore original argv[0] */
1398 	}
1399 
1400 	if (argv_empty == 0) {
1401 		/*
1402 		 * Add argv[] strings to the stack.
1403 		 */
1404 		for (;;) {
1405 			if (stk_getptr(args, argv, &sp))
1406 				return (EFAULT);
1407 			if (sp == NULL)
1408 				break;
1409 			if ((error = stk_add(args, sp, UIO_USERSPACE)) != 0)
1410 				return (error);
1411 			argv += ptrsize;
1412 		}
1413 	}
1414 	argc = (int *)(args->stk_base + args->stk_size) - args->stk_offp;
1415 	args->arglen = args->stk_strp - args->stk_base;
1416 
1417 	/*
1418 	 * Add environ[] strings to the stack.
1419 	 */
1420 	if (envp != NULL) {
1421 		for (;;) {
1422 			if (stk_getptr(args, envp, &sp))
1423 				return (EFAULT);
1424 			if (sp == NULL)
1425 				break;
1426 			if ((error = stk_add(args, sp, UIO_USERSPACE)) != 0)
1427 				return (error);
1428 			envp += ptrsize;
1429 		}
1430 	}
1431 	args->na = (int *)(args->stk_base + args->stk_size) - args->stk_offp;
1432 	args->ne = args->na - argc;
1433 
1434 	/*
1435 	 * Add AT_SUN_PLATFORM, AT_SUN_EXECNAME, AT_SUN_BRANDNAME, and
1436 	 * AT_SUN_EMULATOR strings to the stack.
1437 	 */
1438 	if (auxvpp != NULL && *auxvpp != NULL) {
1439 		if ((error = stk_add(args, platform, UIO_SYSSPACE)) != 0)
1440 			return (error);
1441 		if ((error = stk_add(args, args->pathname, UIO_SYSSPACE)) != 0)
1442 			return (error);
1443 		if (args->brandname != NULL &&
1444 		    (error = stk_add(args, args->brandname,
1445 		    UIO_SYSSPACE)) != 0)
1446 			return (error);
1447 		if (args->emulator != NULL &&
1448 		    (error = stk_add(args, args->emulator,
1449 		    UIO_SYSSPACE)) != 0)
1450 			return (error);
1451 	}
1452 
1453 	/*
1454 	 * Compute the size of the stack.  This includes all the pointers,
1455 	 * the space reserved for the aux vector, and all the strings.
1456 	 * The total number of pointers is args->na (which is argc + envc)
1457 	 * plus 4 more: (1) a pointer's worth of space for argc; (2) the NULL
1458 	 * after the last argument (i.e. argv[argc]); (3) the NULL after the
1459 	 * last environment variable (i.e. envp[envc]); and (4) the NULL after
1460 	 * all the strings, at the very top of the stack.
1461 	 */
1462 	size = (args->na + 4) * args->to_ptrsize + args->auxsize +
1463 	    (args->stk_strp - args->stk_base);
1464 
1465 	/*
1466 	 * Pad the string section with zeroes to align the stack size.
1467 	 */
1468 	pad = P2NPHASE(size, args->stk_align);
1469 
1470 	if (STK_AVAIL(args) < pad)
1471 		return (E2BIG);
1472 
1473 	args->usrstack_size = size + pad;
1474 
1475 	while (pad-- != 0)
1476 		*args->stk_strp++ = 0;
1477 
1478 	args->nc = args->stk_strp - args->stk_base;
1479 
1480 	return (0);
1481 }
1482 
1483 static int
1484 stk_copyout(uarg_t *args, char *usrstack, void **auxvpp, user_t *up)
1485 {
1486 	size_t ptrsize = args->to_ptrsize;
1487 	ssize_t pslen;
1488 	char *kstrp = args->stk_base;
1489 	char *ustrp = usrstack - args->nc - ptrsize;
1490 	char *usp = usrstack - args->usrstack_size;
1491 	int *offp = (int *)(args->stk_base + args->stk_size);
1492 	int envc = args->ne;
1493 	int argc = args->na - envc;
1494 	int i;
1495 
1496 	/*
1497 	 * Record argc for /proc.
1498 	 */
1499 	up->u_argc = argc;
1500 
1501 	/*
1502 	 * Put argc on the stack.  Note that even though it's an int,
1503 	 * it always consumes ptrsize bytes (for alignment).
1504 	 */
1505 	if (stk_putptr(args, usp, (char *)(uintptr_t)argc))
1506 		return (-1);
1507 
1508 	/*
1509 	 * Add argc space (ptrsize) to usp and record argv for /proc.
1510 	 */
1511 	up->u_argv = (uintptr_t)(usp += ptrsize);
1512 
1513 	/*
1514 	 * Put the argv[] pointers on the stack.
1515 	 */
1516 	for (i = 0; i < argc; i++, usp += ptrsize)
1517 		if (stk_putptr(args, usp, &ustrp[*--offp]))
1518 			return (-1);
1519 
1520 	/*
1521 	 * Copy arguments to u_psargs.
1522 	 */
1523 	pslen = MIN(args->arglen, PSARGSZ) - 1;
1524 	for (i = 0; i < pslen; i++)
1525 		up->u_psargs[i] = (kstrp[i] == '\0' ? ' ' : kstrp[i]);
1526 	while (i < PSARGSZ)
1527 		up->u_psargs[i++] = '\0';
1528 
1529 	/*
1530 	 * Add space for argv[]'s NULL terminator (ptrsize) to usp and
1531 	 * record envp for /proc.
1532 	 */
1533 	up->u_envp = (uintptr_t)(usp += ptrsize);
1534 
1535 	/*
1536 	 * Put the envp[] pointers on the stack.
1537 	 */
1538 	for (i = 0; i < envc; i++, usp += ptrsize)
1539 		if (stk_putptr(args, usp, &ustrp[*--offp]))
1540 			return (-1);
1541 
1542 	/*
1543 	 * Add space for envp[]'s NULL terminator (ptrsize) to usp and
1544 	 * remember where the stack ends, which is also where auxv begins.
1545 	 */
1546 	args->stackend = usp += ptrsize;
1547 
1548 	/*
1549 	 * Put all the argv[], envp[], and auxv strings on the stack.
1550 	 */
1551 	if (copyout(args->stk_base, ustrp, args->nc))
1552 		return (-1);
1553 
1554 	/*
1555 	 * Fill in the aux vector now that we know the user stack addresses
1556 	 * for the AT_SUN_PLATFORM, AT_SUN_EXECNAME, AT_SUN_BRANDNAME and
1557 	 * AT_SUN_EMULATOR strings.
1558 	 */
1559 	if (auxvpp != NULL && *auxvpp != NULL) {
1560 		if (args->to_model == DATAMODEL_NATIVE) {
1561 			auxv_t **a = (auxv_t **)auxvpp;
1562 			ADDAUX(*a, AT_SUN_PLATFORM, (long)&ustrp[*--offp])
1563 			ADDAUX(*a, AT_SUN_EXECNAME, (long)&ustrp[*--offp])
1564 			if (args->brandname != NULL)
1565 				ADDAUX(*a,
1566 				    AT_SUN_BRANDNAME, (long)&ustrp[*--offp])
1567 			if (args->emulator != NULL)
1568 				ADDAUX(*a,
1569 				    AT_SUN_EMULATOR, (long)&ustrp[*--offp])
1570 		} else {
1571 			auxv32_t **a = (auxv32_t **)auxvpp;
1572 			ADDAUX(*a,
1573 			    AT_SUN_PLATFORM, (int)(uintptr_t)&ustrp[*--offp])
1574 			ADDAUX(*a,
1575 			    AT_SUN_EXECNAME, (int)(uintptr_t)&ustrp[*--offp])
1576 			if (args->brandname != NULL)
1577 				ADDAUX(*a, AT_SUN_BRANDNAME,
1578 				    (int)(uintptr_t)&ustrp[*--offp])
1579 			if (args->emulator != NULL)
1580 				ADDAUX(*a, AT_SUN_EMULATOR,
1581 				    (int)(uintptr_t)&ustrp[*--offp])
1582 		}
1583 	}
1584 
1585 	return (0);
1586 }
1587 
1588 /*
1589  * Initialize a new user stack with the specified arguments and environment.
1590  * The initial user stack layout is as follows:
1591  *
1592  *	User Stack
1593  *	+---------------+ <--- curproc->p_usrstack
1594  *	|		|
1595  *	| slew		|
1596  *	|		|
1597  *	+---------------+
1598  *	| NULL		|
1599  *	+---------------+
1600  *	|		|
1601  *	| auxv strings	|
1602  *	|		|
1603  *	+---------------+
1604  *	|		|
1605  *	| envp strings	|
1606  *	|		|
1607  *	+---------------+
1608  *	|		|
1609  *	| argv strings	|
1610  *	|		|
1611  *	+---------------+ <--- ustrp
1612  *	|		|
1613  *	| aux vector	|
1614  *	|		|
1615  *	+---------------+ <--- auxv
1616  *	| NULL		|
1617  *	+---------------+
1618  *	| envp[envc-1]	|
1619  *	+---------------+
1620  *	| ...		|
1621  *	+---------------+
1622  *	| envp[0]	|
1623  *	+---------------+ <--- envp[]
1624  *	| NULL		|
1625  *	+---------------+
1626  *	| argv[argc-1]	|
1627  *	+---------------+
1628  *	| ...		|
1629  *	+---------------+
1630  *	| argv[0]	|
1631  *	+---------------+ <--- argv[]
1632  *	| argc		|
1633  *	+---------------+ <--- stack base
1634  */
1635 int
1636 exec_args(execa_t *uap, uarg_t *args, intpdata_t *intp, void **auxvpp)
1637 {
1638 	size_t size;
1639 	int error;
1640 	proc_t *p = ttoproc(curthread);
1641 	user_t *up = PTOU(p);
1642 	char *usrstack;
1643 	rctl_entity_p_t e;
1644 	struct as *as;
1645 	extern int use_stk_lpg;
1646 	size_t sp_slew;
1647 
1648 	args->from_model = p->p_model;
1649 	if (p->p_model == DATAMODEL_NATIVE) {
1650 		args->from_ptrsize = sizeof (long);
1651 	} else {
1652 		args->from_ptrsize = sizeof (int32_t);
1653 	}
1654 
1655 	if (args->to_model == DATAMODEL_NATIVE) {
1656 		args->to_ptrsize = sizeof (long);
1657 		args->ncargs = NCARGS;
1658 		args->stk_align = STACK_ALIGN;
1659 		usrstack = (char *)USRSTACK;
1660 	} else {
1661 		args->to_ptrsize = sizeof (int32_t);
1662 		args->ncargs = NCARGS32;
1663 		args->stk_align = STACK_ALIGN32;
1664 		usrstack = (char *)USRSTACK32;
1665 	}
1666 
1667 	ASSERT(P2PHASE((uintptr_t)usrstack, args->stk_align) == 0);
1668 
1669 #if defined(__sparc)
1670 	/*
1671 	 * Make sure user register windows are empty before
1672 	 * attempting to make a new stack.
1673 	 */
1674 	(void) flush_user_windows_to_stack(NULL);
1675 #endif
1676 
1677 	for (size = PAGESIZE; ; size *= 2) {
1678 		args->stk_size = size;
1679 		args->stk_base = kmem_alloc(size, KM_SLEEP);
1680 		args->stk_strp = args->stk_base;
1681 		args->stk_offp = (int *)(args->stk_base + size);
1682 		error = stk_copyin(uap, args, intp, auxvpp);
1683 		if (error == 0)
1684 			break;
1685 		kmem_free(args->stk_base, size);
1686 		if (error != E2BIG && error != ENAMETOOLONG)
1687 			return (error);
1688 		if (size >= args->ncargs)
1689 			return (E2BIG);
1690 	}
1691 
1692 	size = args->usrstack_size;
1693 
1694 	ASSERT(error == 0);
1695 	ASSERT(P2PHASE(size, args->stk_align) == 0);
1696 	ASSERT((ssize_t)STK_AVAIL(args) >= 0);
1697 
1698 	if (size > args->ncargs) {
1699 		kmem_free(args->stk_base, args->stk_size);
1700 		return (E2BIG);
1701 	}
1702 
1703 	/*
1704 	 * Leave only the current lwp and force the other lwps to exit.
1705 	 * If another lwp beat us to the punch by calling exit(), bail out.
1706 	 */
1707 	if ((error = exitlwps(0)) != 0) {
1708 		kmem_free(args->stk_base, args->stk_size);
1709 		return (error);
1710 	}
1711 
1712 	/*
1713 	 * Revoke any doors created by the process.
1714 	 */
1715 	if (p->p_door_list)
1716 		door_exit();
1717 
1718 	/*
1719 	 * Release schedctl data structures.
1720 	 */
1721 	if (p->p_pagep)
1722 		schedctl_proc_cleanup();
1723 
1724 	/*
1725 	 * Clean up any DTrace helpers for the process.
1726 	 */
1727 	if (p->p_dtrace_helpers != NULL) {
1728 		ASSERT(dtrace_helpers_cleanup != NULL);
1729 		(*dtrace_helpers_cleanup)();
1730 	}
1731 
1732 	mutex_enter(&p->p_lock);
1733 	/*
1734 	 * Cleanup the DTrace provider associated with this process.
1735 	 */
1736 	if (p->p_dtrace_probes) {
1737 		ASSERT(dtrace_fasttrap_exec_ptr != NULL);
1738 		dtrace_fasttrap_exec_ptr(p);
1739 	}
1740 	mutex_exit(&p->p_lock);
1741 
1742 	/*
1743 	 * discard the lwpchan cache.
1744 	 */
1745 	if (p->p_lcp != NULL)
1746 		lwpchan_destroy_cache(1);
1747 
1748 	/*
1749 	 * Delete the POSIX timers.
1750 	 */
1751 	if (p->p_itimer != NULL)
1752 		timer_exit();
1753 
1754 	if (audit_active)
1755 		audit_exec(args->stk_base, args->stk_base + args->arglen,
1756 		    args->na - args->ne, args->ne);
1757 
1758 	/*
1759 	 * Ensure that we don't change resource associations while we
1760 	 * change address spaces.
1761 	 */
1762 	mutex_enter(&p->p_lock);
1763 	pool_barrier_enter();
1764 	mutex_exit(&p->p_lock);
1765 
1766 	/*
1767 	 * Destroy the old address space and create a new one.
1768 	 * From here on, any errors are fatal to the exec()ing process.
1769 	 * On error we return -1, which means the caller must SIGKILL
1770 	 * the process.
1771 	 */
1772 	relvm();
1773 
1774 	mutex_enter(&p->p_lock);
1775 	pool_barrier_exit();
1776 	mutex_exit(&p->p_lock);
1777 
1778 	up->u_execsw = args->execswp;
1779 
1780 	p->p_brkbase = NULL;
1781 	p->p_brksize = 0;
1782 	p->p_brkpageszc = 0;
1783 	p->p_stksize = 0;
1784 	p->p_stkpageszc = 0;
1785 	p->p_model = args->to_model;
1786 	p->p_usrstack = usrstack;
1787 	p->p_stkprot = args->stk_prot;
1788 	p->p_datprot = args->dat_prot;
1789 
1790 	/*
1791 	 * Reset resource controls such that all controls are again active as
1792 	 * well as appropriate to the potentially new address model for the
1793 	 * process.
1794 	 */
1795 	e.rcep_p.proc = p;
1796 	e.rcep_t = RCENTITY_PROCESS;
1797 	rctl_set_reset(p->p_rctls, p, &e);
1798 
1799 	/* Too early to call map_pgsz for the heap */
1800 	if (use_stk_lpg) {
1801 		p->p_stkpageszc = page_szc(map_pgsz(MAPPGSZ_STK, p, 0, 0, 0));
1802 	}
1803 
1804 	mutex_enter(&p->p_lock);
1805 	p->p_flag |= SAUTOLPG;	/* kernel controls page sizes */
1806 	mutex_exit(&p->p_lock);
1807 
1808 	/*
1809 	 * Some platforms may choose to randomize real stack start by adding a
1810 	 * small slew (not more than a few hundred bytes) to the top of the
1811 	 * stack. This helps avoid cache thrashing when identical processes
1812 	 * simultaneously share caches that don't provide enough associativity
1813 	 * (e.g. sun4v systems). In this case stack slewing makes the same hot
1814 	 * stack variables in different processes to live in different cache
1815 	 * sets increasing effective associativity.
1816 	 */
1817 	sp_slew = exec_get_spslew();
1818 	ASSERT(P2PHASE(sp_slew, args->stk_align) == 0);
1819 	exec_set_sp(size + sp_slew);
1820 
1821 	as = as_alloc();
1822 	p->p_as = as;
1823 	as->a_proc = p;
1824 	if (p->p_model == DATAMODEL_ILP32)
1825 		as->a_userlimit = (caddr_t)USERLIMIT32;
1826 	(void) hat_setup(as->a_hat, HAT_ALLOC);
1827 	hat_join_srd(as->a_hat, args->ex_vp);
1828 
1829 	/*
1830 	 * Finally, write out the contents of the new stack.
1831 	 */
1832 	error = stk_copyout(args, usrstack - sp_slew, auxvpp, up);
1833 	kmem_free(args->stk_base, args->stk_size);
1834 	return (error);
1835 }
1836