xref: /csrg-svn/sys/kern/kern_proc.c (revision 10887)
1*10887Ssam /*	kern_proc.c	4.58	83/02/10	*/
236Sbill 
39753Ssam #include "../machine/reg.h"
49753Ssam #include "../machine/pte.h"
59753Ssam #include "../machine/psl.h"
69753Ssam 
736Sbill #include "../h/param.h"
836Sbill #include "../h/systm.h"
936Sbill #include "../h/map.h"
1036Sbill #include "../h/dir.h"
1136Sbill #include "../h/user.h"
128030Sroot #include "../h/kernel.h"
1336Sbill #include "../h/proc.h"
1436Sbill #include "../h/buf.h"
1536Sbill #include "../h/inode.h"
1636Sbill #include "../h/seg.h"
1736Sbill #include "../h/acct.h"
18*10887Ssam #include "../h/wait.h"
1936Sbill #include "../h/vm.h"
2036Sbill #include "../h/text.h"
21890Sbill #include "../h/file.h"
227488Skre #include "../h/quota.h"
237497Sroot #include "../h/descrip.h"
247713Sroot #include "../h/uio.h"
258030Sroot #include "../h/mbuf.h"
269159Ssam #include "../h/nami.h"
2736Sbill 
288030Sroot gethostid()
298030Sroot {
308030Sroot 
318099Sroot 	u.u_r.r_val1 = hostid;
328030Sroot }
338030Sroot 
348030Sroot sethostid()
358030Sroot {
368099Sroot 	struct a {
378099Sroot 		int	hostid;
388099Sroot 	} *uap = (struct a *)u.u_ap;
398030Sroot 
408099Sroot 	if (suser())
418099Sroot 		hostid = uap->hostid;
428030Sroot }
438030Sroot 
448099Sroot gethostname()
458099Sroot {
468099Sroot 	register struct a {
478099Sroot 		char	*hostname;
488099Sroot 		int	len;
498099Sroot 	} *uap = (struct a *)u.u_ap;
508099Sroot 	register u_int len;
518099Sroot 
528099Sroot 	len = uap->len;
538099Sroot 	if (len > hostnamelen)
548099Sroot 		len = hostnamelen;
559996Ssam 	u.u_error = copyout((caddr_t)hostname, (caddr_t)uap->hostname, len);
568099Sroot }
578099Sroot 
588099Sroot sethostname()
598099Sroot {
608099Sroot 	register struct a {
618099Sroot 		char	*hostname;
628099Sroot 		u_int	len;
638099Sroot 	} *uap = (struct a *)u.u_ap;
648099Sroot 
658099Sroot 	if (!suser())
668099Sroot 		return;
678099Sroot 	if (uap->len > sizeof (hostname) - 1) {
688099Sroot 		u.u_error = EINVAL;
698099Sroot 		return;
708099Sroot 	}
718099Sroot 	hostnamelen = uap->len;
729996Ssam 	u.u_error = copyin((caddr_t)uap->hostname, hostname, uap->len);
738099Sroot 	hostname[hostnamelen] = 0;
748099Sroot }
758099Sroot 
7636Sbill /*
7736Sbill  * exec system call, with and without environments.
7836Sbill  */
7936Sbill struct execa {
8036Sbill 	char	*fname;
8136Sbill 	char	**argp;
8236Sbill 	char	**envp;
8336Sbill };
8436Sbill 
858030Sroot execv()
8636Sbill {
8736Sbill 	((struct execa *)u.u_ap)->envp = NULL;
888030Sroot 	execve();
8936Sbill }
9036Sbill 
918030Sroot execve()
9236Sbill {
9336Sbill 	register nc;
9436Sbill 	register char *cp;
9536Sbill 	register struct buf *bp;
9636Sbill 	register struct execa *uap;
9736Sbill 	int na, ne, ucp, ap, c;
982301Skre 	int indir, uid, gid;
992301Skre 	char *sharg;
10036Sbill 	struct inode *ip;
10136Sbill 	swblk_t bno;
1026568Smckusic 	char cfname[MAXNAMLEN + 1];
1032301Skre 	char cfarg[SHSIZE];
1047748Sroot 	int resid;
10536Sbill 
1069159Ssam 	if ((ip = namei(uchar, LOOKUP, 1)) == NULL)
10736Sbill 		return;
10836Sbill 	bno = 0;
10936Sbill 	bp = 0;
1102301Skre 	indir = 0;
1112301Skre 	uid = u.u_uid;
1122301Skre 	gid = u.u_gid;
1132301Skre 	if (ip->i_mode & ISUID)
1142301Skre 		uid = ip->i_uid;
1152301Skre 	if (ip->i_mode & ISGID)
1162301Skre 		gid = ip->i_gid;
1172301Skre 
1182301Skre   again:
1194827Swnj 	if (access(ip, IEXEC))
12036Sbill 		goto bad;
1214827Swnj 	if ((u.u_procp->p_flag&STRC) && access(ip, IREAD))
1222330Swnj 		goto bad;
1234827Swnj 	if ((ip->i_mode & IFMT) != IFREG ||
12436Sbill 	   (ip->i_mode & (IEXEC|(IEXEC>>3)|(IEXEC>>6))) == 0) {
12536Sbill 		u.u_error = EACCES;
12636Sbill 		goto bad;
12736Sbill 	}
1282301Skre 
12936Sbill 	/*
1302301Skre 	 * Read in first few bytes of file for segment sizes, ux_mag:
1312301Skre 	 *	407 = plain executable
1322301Skre 	 *	410 = RO text
1332301Skre 	 *	413 = demand paged RO text
1342301Skre 	 * Also an ASCII line beginning with #! is
1352301Skre 	 * the file name of a ``shell'' and arguments may be prepended
1362301Skre 	 * to the argument list if given here.
1372301Skre 	 *
1382301Skre 	 * SHELL NAMES ARE LIMITED IN LENGTH.
1392301Skre 	 *
1402301Skre 	 * ONLY ONE ARGUMENT MAY BE PASSED TO THE SHELL FROM
1412301Skre 	 * THE ASCII LINE.
1422301Skre 	 */
1439753Ssam 	u.u_exdata.ux_shell[0] = 0;	/* for zero length files */
1447816Sroot 	u.u_error = rdwri(UIO_READ, ip, (caddr_t)&u.u_exdata, sizeof (u.u_exdata),
1457748Sroot 	    0, 1, &resid);
1464827Swnj 	if (u.u_error)
1472301Skre 		goto bad;
1487748Sroot 	u.u_count = resid;
1497816Sroot #ifndef lint
1504982Swnj 	if (u.u_count > sizeof(u.u_exdata) - sizeof(u.u_exdata.Ux_A) &&
1514982Swnj 	    u.u_exdata.ux_shell[0] != '#') {
1522301Skre 		u.u_error = ENOEXEC;
1532301Skre 		goto bad;
1542301Skre 	}
1557816Sroot #endif
1562301Skre 	switch (u.u_exdata.ux_mag) {
1572301Skre 
1582301Skre 	case 0407:
1592301Skre 		u.u_exdata.ux_dsize += u.u_exdata.ux_tsize;
1602301Skre 		u.u_exdata.ux_tsize = 0;
1612301Skre 		break;
1622301Skre 
1632301Skre 	case 0413:
1642301Skre 	case 0410:
1652301Skre 		if (u.u_exdata.ux_tsize == 0) {
1662301Skre 			u.u_error = ENOEXEC;
1672301Skre 			goto bad;
1682301Skre 		}
1692301Skre 		break;
1702301Skre 
1712301Skre 	default:
1722301Skre 		if (u.u_exdata.ux_shell[0] != '#' ||
1732301Skre 		    u.u_exdata.ux_shell[1] != '!' ||
1742301Skre 		    indir) {
1752301Skre 			u.u_error = ENOEXEC;
1762301Skre 			goto bad;
1772301Skre 		}
1782301Skre 		cp = &u.u_exdata.ux_shell[2];		/* skip "#!" */
1792301Skre 		while (cp < &u.u_exdata.ux_shell[SHSIZE]) {
1802301Skre 			if (*cp == '\t')
1812301Skre 				*cp = ' ';
1822301Skre 			else if (*cp == '\n') {
1832301Skre 				*cp = '\0';
1842301Skre 				break;
1852301Skre 			}
1862301Skre 			cp++;
1872301Skre 		}
1882301Skre 		if (*cp != '\0') {
1892301Skre 			u.u_error = ENOEXEC;
1902301Skre 			goto bad;
1912301Skre 		}
1922301Skre 		cp = &u.u_exdata.ux_shell[2];
1932301Skre 		while (*cp == ' ')
1942301Skre 			cp++;
1952301Skre 		u.u_dirp = cp;
1962301Skre 		while (*cp && *cp != ' ')
1972301Skre 			cp++;
1982301Skre 		sharg = NULL;
1992301Skre 		if (*cp) {
2002301Skre 			*cp++ = '\0';
2012301Skre 			while (*cp == ' ')
2022301Skre 				cp++;
2032301Skre 			if (*cp) {
2042301Skre 				bcopy((caddr_t)cp, (caddr_t)cfarg, SHSIZE);
2052301Skre 				sharg = cfarg;
2062301Skre 			}
2072301Skre 		}
2086568Smckusic 		bcopy((caddr_t)u.u_dent.d_name, (caddr_t)cfname,
2097816Sroot 		    (unsigned)(u.u_dent.d_namlen + 1));
2102301Skre 		indir = 1;
2112301Skre 		iput(ip);
2129159Ssam 		ip = namei(schar, LOOKUP, 1);
2132301Skre 		if (ip == NULL)
2142301Skre 			return;
2152301Skre 		goto again;
2162301Skre 	}
2172301Skre 
2182301Skre 	/*
21936Sbill 	 * Collect arguments on "file" in swap space.
22036Sbill 	 */
22136Sbill 	na = 0;
22236Sbill 	ne = 0;
22336Sbill 	nc = 0;
22436Sbill 	uap = (struct execa *)u.u_ap;
2258665S 	if ((bno = rmalloc(argmap, (long)ctod(clrnd((int)btoc(NCARGS))))) == 0) {
22636Sbill 		swkill(u.u_procp, "exece");
22736Sbill 		goto bad;
22836Sbill 	}
22936Sbill 	if (bno % CLSIZE)
2302780Swnj 		panic("execa rmalloc");
23136Sbill 	if (uap->argp) for (;;) {
23236Sbill 		ap = NULL;
2333621Sroot 		if (indir && (na == 1 || na == 2 && sharg))
2342301Skre 			ap = (int)uap->fname;
2352301Skre 		else if (uap->argp) {
23636Sbill 			ap = fuword((caddr_t)uap->argp);
23736Sbill 			uap->argp++;
23836Sbill 		}
23936Sbill 		if (ap==NULL && uap->envp) {
24036Sbill 			uap->argp = NULL;
24136Sbill 			if ((ap = fuword((caddr_t)uap->envp)) == NULL)
24236Sbill 				break;
24336Sbill 			uap->envp++;
24436Sbill 			ne++;
24536Sbill 		}
2466568Smckusic 		if (ap == NULL)
24736Sbill 			break;
24836Sbill 		na++;
2494827Swnj 		if (ap == -1)
25036Sbill 			u.u_error = EFAULT;
25136Sbill 		do {
25236Sbill 			if (nc >= NCARGS-1)
25336Sbill 				u.u_error = E2BIG;
2542301Skre 			if (indir && na == 2 && sharg != NULL)
2552301Skre 				c = *sharg++ & 0377;
2562301Skre 			else if ((c = fubyte((caddr_t)ap++)) < 0)
25736Sbill 				u.u_error = EFAULT;
25883Sbill 			if (u.u_error) {
25983Sbill 				if (bp)
26083Sbill 					brelse(bp);
26183Sbill 				bp = 0;
26236Sbill 				goto badarg;
26383Sbill 			}
2646568Smckusic 			if (nc % (CLSIZE*NBPG) == 0) {
26536Sbill 				if (bp)
26636Sbill 					bdwrite(bp);
2678968Sroot 				bp = getblk(argdev, bno + ctod(nc / NBPG),
2686568Smckusic 				    CLSIZE*NBPG);
26936Sbill 				cp = bp->b_un.b_addr;
27036Sbill 			}
27136Sbill 			nc++;
27236Sbill 			*cp++ = c;
2736568Smckusic 		} while (c > 0);
27436Sbill 	}
27536Sbill 	if (bp)
27636Sbill 		bdwrite(bp);
27736Sbill 	bp = 0;
27836Sbill 	nc = (nc + NBPW-1) & ~(NBPW-1);
2796568Smckusic 	if (indir) {
2806568Smckusic 		u.u_dent.d_namlen = strlen(cfname);
2816568Smckusic 		bcopy((caddr_t)cfname, (caddr_t)u.u_dent.d_name,
2827816Sroot 		    (unsigned)(u.u_dent.d_namlen + 1));
2836568Smckusic 	}
2842301Skre 	getxfile(ip, nc + (na+4)*NBPW, uid, gid);
285912Sbill 	if (u.u_error) {
28636Sbill badarg:
2879006Sroot 		for (c = 0; c < nc; c += CLSIZE*NBPG) {
2889006Sroot 			bp = baddr(argdev, bno + ctod(c / NBPG), CLSIZE*NBPG);
2898968Sroot 			if (bp) {
29036Sbill 				bp->b_flags |= B_AGE;		/* throw away */
29136Sbill 				bp->b_flags &= ~B_DELWRI;	/* cancel io */
29236Sbill 				brelse(bp);
29336Sbill 				bp = 0;
29436Sbill 			}
2959006Sroot 		}
29636Sbill 		goto bad;
29736Sbill 	}
29836Sbill 
29936Sbill 	/*
30036Sbill 	 * copy back arglist
30136Sbill 	 */
30236Sbill 	ucp = USRSTACK - nc - NBPW;
30336Sbill 	ap = ucp - na*NBPW - 3*NBPW;
30436Sbill 	u.u_ar0[SP] = ap;
305132Sbill 	(void) suword((caddr_t)ap, na-ne);
30636Sbill 	nc = 0;
30736Sbill 	for (;;) {
30836Sbill 		ap += NBPW;
30936Sbill 		if (na==ne) {
310132Sbill 			(void) suword((caddr_t)ap, 0);
31136Sbill 			ap += NBPW;
31236Sbill 		}
31336Sbill 		if (--na < 0)
31436Sbill 			break;
315132Sbill 		(void) suword((caddr_t)ap, ucp);
31636Sbill 		do {
3176568Smckusic 			if (nc % (CLSIZE*NBPG) == 0) {
31836Sbill 				if (bp)
31936Sbill 					brelse(bp);
3209866Ssam 				bp = bread(argdev, bno + ctod(nc / NBPG),
3216568Smckusic 				    CLSIZE*NBPG);
32236Sbill 				bp->b_flags |= B_AGE;		/* throw away */
32336Sbill 				bp->b_flags &= ~B_DELWRI;	/* cancel io */
32436Sbill 				cp = bp->b_un.b_addr;
32536Sbill 			}
326132Sbill 			(void) subyte((caddr_t)ucp++, (c = *cp++));
32736Sbill 			nc++;
32836Sbill 		} while(c&0377);
32936Sbill 	}
330132Sbill 	(void) suword((caddr_t)ap, 0);
33136Sbill 	setregs();
33236Sbill bad:
33336Sbill 	if (bp)
33436Sbill 		brelse(bp);
33536Sbill 	if (bno)
3368816Sroot 		rmfree(argmap, (long)ctod(clrnd((int) btoc(NCARGS))), bno);
33736Sbill 	iput(ip);
33836Sbill }
33936Sbill 
34036Sbill /*
34136Sbill  * Read in and set up memory for executed file.
34236Sbill  */
3432301Skre getxfile(ip, nargc, uid, gid)
34436Sbill register struct inode *ip;
34536Sbill {
34636Sbill 	register size_t ts, ds, ss;
3472301Skre 	int pagi;
34836Sbill 
3492301Skre 	if (u.u_exdata.ux_mag == 0413)
35036Sbill 		pagi = SPAGI;
3512301Skre 	else
3522301Skre 		pagi = 0;
3534827Swnj 	if (u.u_exdata.ux_tsize!=0 && (ip->i_flag&ITEXT)==0 &&
3544827Swnj 	    ip->i_count!=1) {
355890Sbill 		register struct file *fp;
356890Sbill 
3574827Swnj 		for (fp = file; fp < fileNFILE; fp++) {
3587497Sroot 			if (fp->f_type == DTYPE_FILE &&
3599743Ssam 			    fp->f_count > 0 &&
3607497Sroot 			    fp->f_inode == ip && (fp->f_flag&FWRITE)) {
361890Sbill 				u.u_error = ETXTBSY;
362890Sbill 				goto bad;
363890Sbill 			}
3644827Swnj 		}
36536Sbill 	}
36636Sbill 
36736Sbill 	/*
3684827Swnj 	 * Compute text and data sizes and make sure not too large.
36936Sbill 	 */
37036Sbill 	ts = clrnd(btoc(u.u_exdata.ux_tsize));
37136Sbill 	ds = clrnd(btoc((u.u_exdata.ux_dsize+u.u_exdata.ux_bsize)));
37236Sbill 	ss = clrnd(SSIZE + btoc(nargc));
373912Sbill 	if (chksize(ts, ds, ss))
374912Sbill 		goto bad;
3754827Swnj 
3764827Swnj 	/*
3774827Swnj 	 * Make sure enough space to start process.
3784827Swnj 	 */
379912Sbill 	u.u_cdmap = zdmap;
380912Sbill 	u.u_csmap = zdmap;
381912Sbill 	if (swpexpand(ds, ss, &u.u_cdmap, &u.u_csmap) == NULL)
382912Sbill 		goto bad;
38336Sbill 
384912Sbill 	/*
385912Sbill 	 * At this point, committed to the new image!
386912Sbill 	 * Release virtual memory resources of old process, and
387912Sbill 	 * initialize the virtual memory of the new process.
388912Sbill 	 * If we resulted from vfork(), instead wakeup our
389912Sbill 	 * parent who will set SVFDONE when he has taken back
390912Sbill 	 * our resources.
391912Sbill 	 */
392912Sbill 	if ((u.u_procp->p_flag & SVFORK) == 0)
393912Sbill 		vrelvm();
394912Sbill 	else {
395912Sbill 		u.u_procp->p_flag &= ~SVFORK;
396912Sbill 		u.u_procp->p_flag |= SKEEP;
397912Sbill 		wakeup((caddr_t)u.u_procp);
398912Sbill 		while ((u.u_procp->p_flag & SVFDONE) == 0)
399912Sbill 			sleep((caddr_t)u.u_procp, PZERO - 1);
400912Sbill 		u.u_procp->p_flag &= ~(SVFDONE|SKEEP);
401912Sbill 	}
4023592Swnj 	u.u_procp->p_flag &= ~(SPAGI|SSEQL|SUANOM|SNUSIG);
403912Sbill 	u.u_procp->p_flag |= pagi;
404912Sbill 	u.u_dmap = u.u_cdmap;
405912Sbill 	u.u_smap = u.u_csmap;
406912Sbill 	vgetvm(ts, ds, ss);
407912Sbill 
4087748Sroot 	if (pagi == 0)
4097816Sroot 		u.u_error =
4107816Sroot 		    rdwri(UIO_READ, ip,
4118968Sroot 			(char *)ctob(dptov(u.u_procp, 0)),
4128968Sroot 			(int)u.u_exdata.ux_dsize,
4137816Sroot 			(int)(sizeof(u.u_exdata)+u.u_exdata.ux_tsize),
4147816Sroot 			0, (int *)0);
415912Sbill 	xalloc(ip, pagi);
416912Sbill 	if (pagi && u.u_procp->p_textp)
417912Sbill 		vinifod((struct fpte *)dptopte(u.u_procp, 0),
418912Sbill 		    PG_FTEXT, u.u_procp->p_textp->x_iptr,
4198665S 		    (long)(1 + ts/CLSIZE), (int)btoc(u.u_exdata.ux_dsize));
42036Sbill 
4218968Sroot #ifdef vax
422912Sbill 	/* THIS SHOULD BE DONE AT A LOWER LEVEL, IF AT ALL */
4238443Sroot #include "../vax/mtpr.h"		/* XXX */
424912Sbill 	mtpr(TBIA, 0);
4258968Sroot #endif
42636Sbill 
4277530Sroot 	if (u.u_error)
4287530Sroot 		swkill(u.u_procp, "i/o error mapping pages");
429912Sbill 	/*
430912Sbill 	 * set SUID/SGID protections, if no tracing
431912Sbill 	 */
432912Sbill 	if ((u.u_procp->p_flag&STRC)==0) {
4334827Swnj 		u.u_uid = uid;
4344827Swnj 		u.u_procp->p_uid = uid;
4352301Skre 		u.u_gid = gid;
4368665S 		(void) entergroup(gid);
437912Sbill 	} else
438912Sbill 		psignal(u.u_procp, SIGTRAP);
43936Sbill 	u.u_tsize = ts;
44036Sbill 	u.u_dsize = ds;
44136Sbill 	u.u_ssize = ss;
44236Sbill bad:
443912Sbill 	return;
44436Sbill }
44536Sbill 
44636Sbill /*
44736Sbill  * Clear registers on exec
44836Sbill  */
44936Sbill setregs()
45036Sbill {
451173Sbill 	register int (**rp)();
45236Sbill 	register i;
453188Sbill 	long sigmask;
45436Sbill 
4556464Swnj 	for (rp = &u.u_signal[1], sigmask = 1L; rp < &u.u_signal[NSIG];
456188Sbill 	    sigmask <<= 1, rp++) {
457188Sbill 		switch (*rp) {
458188Sbill 
459188Sbill 		case SIG_IGN:
460188Sbill 		case SIG_DFL:
461188Sbill 		case SIG_HOLD:
462188Sbill 			continue;
463188Sbill 
464188Sbill 		default:
465188Sbill 			/*
466206Sbill 			 * Normal or deferring catch; revert to default.
467188Sbill 			 */
468206Sbill 			(void) spl6();
469206Sbill 			*rp = SIG_DFL;
470188Sbill 			if ((int)*rp & 1)
471188Sbill 				u.u_procp->p_siga0 |= sigmask;
472188Sbill 			else
4736327Swnj 				u.u_procp->p_siga0 &= ~sigmask;
474188Sbill 			if ((int)*rp & 2)
475188Sbill 				u.u_procp->p_siga1 |= sigmask;
476188Sbill 			else
477188Sbill 				u.u_procp->p_siga1 &= ~sigmask;
478206Sbill 			(void) spl0();
479188Sbill 			continue;
480188Sbill 		}
481188Sbill 	}
4828968Sroot #ifdef vax
48336Sbill /*
4844827Swnj 	for (rp = &u.u_ar0[0]; rp < &u.u_ar0[16];)
48536Sbill 		*rp++ = 0;
48636Sbill */
4878968Sroot 	u.u_ar0[PC] = u.u_exdata.ux_entloc+2;
4888968Sroot #endif
4898968Sroot #ifdef sun
4908968Sroot 	{ register struct regs *r = (struct regs *)u.u_ar0;
4918968Sroot 	  for (i = 0; i < 8; i++) {
4928968Sroot 		r->r_dreg[i] = 0;
4938968Sroot 		if (&r->r_areg[i] != &r->r_sp)
4948968Sroot 			r->r_areg[i] = 0;
4958968Sroot 	  }
4968968Sroot 	  r->r_sr = PSL_USERSET;
4978968Sroot 	  r->r_pc = u.u_exdata.ux_entloc;
4988968Sroot 	}
4998968Sroot #endif
5004827Swnj 	for (i=0; i<NOFILE; i++) {
5019591Ssam 		if (u.u_pofile[i]&UF_EXCLOSE) {
5027697Ssam 			closef(u.u_ofile[i], 1, u.u_pofile[i]);
50336Sbill 			u.u_ofile[i] = NULL;
5047697Ssam 			u.u_pofile[i] = 0;
50536Sbill 		}
5068968Sroot 		u.u_pofile[i] &= ~UF_MAPPED;
50736Sbill 	}
5084827Swnj 
50936Sbill 	/*
51036Sbill 	 * Remember file name for accounting.
51136Sbill 	 */
51236Sbill 	u.u_acflag &= ~AFORK;
5136568Smckusic 	bcopy((caddr_t)u.u_dent.d_name, (caddr_t)u.u_comm,
5147816Sroot 	    (unsigned)(u.u_dent.d_namlen + 1));
5158968Sroot #ifdef sun
5168968Sroot 	u.u_eosys = REALLYRETURN;
5178968Sroot #endif
51836Sbill }
51936Sbill 
52036Sbill /*
5214827Swnj  * Exit system call: pass back caller's arg
52236Sbill  */
52336Sbill rexit()
52436Sbill {
52536Sbill 	register struct a {
52636Sbill 		int	rval;
52736Sbill 	} *uap;
52836Sbill 
52936Sbill 	uap = (struct a *)u.u_ap;
53036Sbill 	exit((uap->rval & 0377) << 8);
53136Sbill }
53236Sbill 
53336Sbill /*
53436Sbill  * Release resources.
53536Sbill  * Save u. area for parent to look at.
53636Sbill  * Enter zombie state.
53736Sbill  * Wake up parent and init processes,
53836Sbill  * and dispose of children.
53936Sbill  */
54036Sbill exit(rv)
54136Sbill {
54236Sbill 	register int i;
54336Sbill 	register struct proc *p, *q;
54436Sbill 	register int x;
5459632Ssam 	struct mbuf *m = m_getclr(M_WAIT, MT_ZOMBIE);
54636Sbill 
54736Sbill #ifdef PGINPROF
54836Sbill 	vmsizmon();
54936Sbill #endif
55036Sbill 	p = u.u_procp;
55136Sbill 	p->p_flag &= ~(STRC|SULOCK);
55236Sbill 	p->p_flag |= SWEXIT;
553188Sbill 	(void) spl6();
554188Sbill 	if ((int)SIG_IGN & 1)
555188Sbill 		p->p_siga0 = ~0;
556188Sbill 	else
557188Sbill 		p->p_siga0 = 0;
558188Sbill 	if ((int)SIG_IGN & 2)
559188Sbill 		p->p_siga1 = ~0;
560188Sbill 	else
561206Sbill 		p->p_siga1 = 0;
562188Sbill 	(void) spl0();
5631399Sbill 	p->p_cpticks = 0;
5641399Sbill 	p->p_pctcpu = 0;
5654827Swnj 	for (i=0; i<NSIG; i++)
566173Sbill 		u.u_signal[i] = SIG_IGN;
5678623Sroot 	untimeout(realitexpire, (caddr_t)p);
56836Sbill 	/*
56936Sbill 	 * Release virtual memory.  If we resulted from
57036Sbill 	 * a vfork(), instead give the resources back to
57136Sbill 	 * the parent.
57236Sbill 	 */
57336Sbill 	if ((p->p_flag & SVFORK) == 0)
57436Sbill 		vrelvm();
57536Sbill 	else {
57636Sbill 		p->p_flag &= ~SVFORK;
57736Sbill 		wakeup((caddr_t)p);
57836Sbill 		while ((p->p_flag & SVFDONE) == 0)
57936Sbill 			sleep((caddr_t)p, PZERO - 1);
58036Sbill 		p->p_flag &= ~SVFDONE;
58136Sbill 	}
5827697Ssam 	for (i = 0; i < NOFILE; i++) {
5839558Ssam 		struct file *f;
5849558Ssam 		int p;
5859558Ssam 
58636Sbill 		f = u.u_ofile[i];
58736Sbill 		u.u_ofile[i] = NULL;
5889558Ssam 		p = u.u_pofile[i];
5897697Ssam 		u.u_pofile[i] = 0;
5909558Ssam 		closef(f, 1, p);
59136Sbill 	}
5924827Swnj 	ilock(u.u_cdir);
59336Sbill 	iput(u.u_cdir);
59436Sbill 	if (u.u_rdir) {
5954827Swnj 		ilock(u.u_rdir);
59636Sbill 		iput(u.u_rdir);
59736Sbill 	}
5988030Sroot 	u.u_rlimit[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
59936Sbill 	acct();
6007488Skre #ifdef QUOTA
6017488Skre 	qclean();
6027488Skre #endif
6038968Sroot #ifdef sun
6048968Sroot 	ctxfree(&u);
6058968Sroot #endif
60636Sbill 	vrelpt(u.u_procp);
60736Sbill 	vrelu(u.u_procp, 0);
6085630Swnj 	(void) spl5();		/* hack for mem alloc race XXX */
60936Sbill 	multprog--;
610931Sbill 	p->p_stat = SZOMB;
611307Sbill 	noproc = 1;
61236Sbill 	i = PIDHASH(p->p_pid);
61336Sbill 	x = p - proc;
61436Sbill 	if (pidhash[i] == x)
61536Sbill 		pidhash[i] = p->p_idhash;
61636Sbill 	else {
61736Sbill 		for (i = pidhash[i]; i != 0; i = proc[i].p_idhash)
61836Sbill 			if (proc[i].p_idhash == x) {
61936Sbill 				proc[i].p_idhash = p->p_idhash;
62036Sbill 				goto done;
62136Sbill 			}
62236Sbill 		panic("exit");
62336Sbill 	}
6241409Sbill 	if (p->p_pid == 1)
6251409Sbill 		panic("init died");
62636Sbill done:
6278030Sroot 	p->p_xstat = rv;
6289558Ssam if (m == 0)
6299558Ssam panic("exit: m_getclr");
6308827Sroot 	p->p_ru = mtod(m, struct rusage *);
6318030Sroot 	*p->p_ru = u.u_ru;
6328030Sroot 	ruadd(p->p_ru, &u.u_cru);
6334827Swnj 	for (q = proc; q < procNPROC; q++)
6344827Swnj 		if (q->p_pptr == p) {
6357488Skre 			if (q->p_osptr)
6367488Skre 				q->p_osptr->p_ysptr = q->p_ysptr;
6377488Skre 			if (q->p_ysptr)
6387488Skre 				q->p_ysptr->p_osptr = q->p_osptr;
6397488Skre 			if (proc[1].p_cptr)
6407488Skre 				proc[1].p_cptr->p_ysptr = q;
6417488Skre 			q->p_osptr = proc[1].p_cptr;
6427488Skre 			q->p_ysptr = NULL;
6437488Skre 			proc[1].p_cptr = q;
6447488Skre 
645188Sbill 			q->p_pptr = &proc[1];
646188Sbill 			q->p_ppid = 1;
64736Sbill 			wakeup((caddr_t)&proc[1]);
648188Sbill 			/*
649212Sbill 			 * Traced processes are killed
650188Sbill 			 * since their existence means someone is screwing up.
651354Sbill 			 * Stopped processes are sent a hangup and a continue.
652212Sbill 			 * This is designed to be ``safe'' for setuid
653212Sbill 			 * processes since they must be willing to tolerate
654212Sbill 			 * hangups anyways.
655188Sbill 			 */
656212Sbill 			if (q->p_flag&STRC) {
657188Sbill 				q->p_flag &= ~STRC;
658188Sbill 				psignal(q, SIGKILL);
659212Sbill 			} else if (q->p_stat == SSTOP) {
660212Sbill 				psignal(q, SIGHUP);
661212Sbill 				psignal(q, SIGCONT);
662188Sbill 			}
663215Sbill 			/*
664215Sbill 			 * Protect this process from future
6655619Swnj 			 * tty signals, clear TSTP/TTIN/TTOU if pending.
666215Sbill 			 */
6671788Sbill 			(void) spgrp(q, -1);
66836Sbill 		}
6696464Swnj 	psignal(p->p_pptr, SIGCHLD);
670188Sbill 	wakeup((caddr_t)p->p_pptr);
67136Sbill 	swtch();
67236Sbill }
67336Sbill 
6749990Ssam wait()
6759990Ssam {
6769990Ssam 	struct rusage ru, *rup;
6779990Ssam 
6789990Ssam 	if ((u.u_ar0[PS] & PSL_ALLCC) != PSL_ALLCC) {
6799990Ssam 		u.u_error = wait1(0, (struct rusage *)0);
6809990Ssam 		return;
6819990Ssam 	}
6829990Ssam 	rup = (struct rusage *)u.u_ar0[R1];
6839990Ssam 	u.u_error = wait1(u.u_ar0[R0], &ru);
6849990Ssam 	if (u.u_error)
6859990Ssam 		return;
6869990Ssam 	(void) copyout((caddr_t)&ru, (caddr_t)rup, sizeof (struct rusage));
6879990Ssam }
6889990Ssam 
6899990Ssam #ifndef NOCOMPAT
6909753Ssam #include "../h/vtimes.h"
6918151Sroot 
6928099Sroot owait()
69336Sbill {
6948151Sroot 	struct rusage ru;
6958151Sroot 	struct vtimes *vtp, avt;
69636Sbill 
697188Sbill 	if ((u.u_ar0[PS] & PSL_ALLCC) != PSL_ALLCC) {
6989990Ssam 		u.u_error = wait1(0, (struct rusage *)0);
699188Sbill 		return;
700188Sbill 	}
7018151Sroot 	vtp = (struct vtimes *)u.u_ar0[R1];
7029990Ssam 	u.u_error = wait1(u.u_ar0[R0], &ru);
703188Sbill 	if (u.u_error)
704188Sbill 		return;
7058151Sroot 	getvtimes(&ru, &avt);
7068151Sroot 	(void) copyout((caddr_t)&avt, (caddr_t)vtp, sizeof (struct vtimes));
70736Sbill }
7089990Ssam #endif
70936Sbill 
71036Sbill /*
71136Sbill  * Wait system call.
71236Sbill  * Search for a terminated (zombie) child,
71336Sbill  * finally lay it to rest, and collect its status.
71436Sbill  * Look also for stopped (traced) children,
71536Sbill  * and pass back status from them.
71636Sbill  */
7178030Sroot wait1(options, ru)
7188030Sroot 	register int options;
7198030Sroot 	struct rusage *ru;
72036Sbill {
72136Sbill 	register f;
7227488Skre 	register struct proc *p, *q;
72336Sbill 
72436Sbill 	f = 0;
72536Sbill loop:
7264827Swnj 	for (p = proc; p < procNPROC; p++)
7274827Swnj 	if (p->p_pptr == u.u_procp) {
72836Sbill 		f++;
7294827Swnj 		if (p->p_stat == SZOMB) {
73036Sbill 			u.u_r.r_val1 = p->p_pid;
7318030Sroot 			u.u_r.r_val2 = p->p_xstat;
7328030Sroot 			p->p_xstat = 0;
7338030Sroot 			if (ru)
7348030Sroot 				*ru = *p->p_ru;
7358030Sroot 			ruadd(&u.u_cru, p->p_ru);
7368665S 			(void) m_free(dtom(p->p_ru));
7378030Sroot 			p->p_ru = 0;
73836Sbill 			p->p_stat = NULL;
73936Sbill 			p->p_pid = 0;
74036Sbill 			p->p_ppid = 0;
7417488Skre 			if (q = p->p_ysptr)
7427488Skre 				q->p_osptr = p->p_osptr;
7437488Skre 			if (q = p->p_osptr)
7447488Skre 				q->p_ysptr = p->p_ysptr;
7457488Skre 			if ((q = p->p_pptr)->p_cptr == p)
7467488Skre 				q->p_cptr = p->p_osptr;
747188Sbill 			p->p_pptr = 0;
7487488Skre 			p->p_ysptr = 0;
7497488Skre 			p->p_osptr = 0;
7507488Skre 			p->p_cptr = 0;
75136Sbill 			p->p_sig = 0;
752188Sbill 			p->p_siga0 = 0;
753188Sbill 			p->p_siga1 = 0;
75436Sbill 			p->p_pgrp = 0;
75536Sbill 			p->p_flag = 0;
75636Sbill 			p->p_wchan = 0;
757188Sbill 			p->p_cursig = 0;
7589990Ssam 			return (0);
75936Sbill 		}
760188Sbill 		if (p->p_stat == SSTOP && (p->p_flag&SWTED)==0 &&
761188Sbill 		    (p->p_flag&STRC || options&WUNTRACED)) {
762188Sbill 			p->p_flag |= SWTED;
763188Sbill 			u.u_r.r_val1 = p->p_pid;
764188Sbill 			u.u_r.r_val2 = (p->p_cursig<<8) | WSTOPPED;
7659990Ssam 			return (0);
76636Sbill 		}
76736Sbill 	}
7689990Ssam 	if (f == 0) {
7699990Ssam 		return (ECHILD);
77036Sbill 	}
771188Sbill 	if (options&WNOHANG) {
772188Sbill 		u.u_r.r_val1 = 0;
7739990Ssam 		return (0);
774188Sbill 	}
7758116Sroot 	if ((u.u_procp->p_flag&SNUSIG) && setjmp(&u.u_qsave)) {
776188Sbill 		u.u_eosys = RESTARTSYS;
7779990Ssam 		return (0);
778188Sbill 	}
779188Sbill 	sleep((caddr_t)u.u_procp, PWAIT);
780188Sbill 	goto loop;
78136Sbill }
78236Sbill 
78336Sbill /*
78436Sbill  * fork system call.
78536Sbill  */
78636Sbill fork()
78736Sbill {
78836Sbill 
78936Sbill 	u.u_cdmap = zdmap;
79036Sbill 	u.u_csmap = zdmap;
79136Sbill 	if (swpexpand(u.u_dsize, u.u_ssize, &u.u_cdmap, &u.u_csmap) == 0) {
79236Sbill 		u.u_r.r_val2 = 0;
79336Sbill 		return;
79436Sbill 	}
79536Sbill 	fork1(0);
79636Sbill }
79736Sbill 
79836Sbill fork1(isvfork)
79936Sbill {
80036Sbill 	register struct proc *p1, *p2;
8017488Skre #ifndef	QUOTA
80236Sbill 	register a;
80336Sbill 
80436Sbill 	a = 0;
8057488Skre #else
8067488Skre 	if (u.u_quota != NOQUOT && u.u_quota->q_plim &&
8077488Skre 	    u.u_quota->q_cnt >= u.u_quota->q_plim) {
8087488Skre 		u.u_error = EPROCLIM;
8097488Skre 		return;
8107488Skre 	}
8117488Skre #endif
81236Sbill 	p2 = NULL;
8134827Swnj 	for (p1 = proc; p1 < procNPROC; p1++) {
8147488Skre #ifdef QUOTA
8157488Skre 		if (p1->p_stat == NULL) {
8167488Skre 			p2 = p1;
8177488Skre 			break;
8187488Skre 		}
8197488Skre #else
82036Sbill 		if (p1->p_stat==NULL && p2==NULL)
82136Sbill 			p2 = p1;
82236Sbill 		else {
82336Sbill 			if (p1->p_uid==u.u_uid && p1->p_stat!=NULL)
82436Sbill 				a++;
82536Sbill 		}
8267488Skre #endif
82736Sbill 	}
82836Sbill 	/*
82936Sbill 	 * Disallow if
83036Sbill 	 *  No processes at all;
83136Sbill 	 *  not su and too many procs owned; or
83236Sbill 	 *  not su and would take last slot.
83336Sbill 	 */
8342938Swnj 	if (p2==NULL)
8352938Swnj 		tablefull("proc");
8367488Skre #ifdef QUOTA
8377488Skre 	if (p2==NULL || (u.u_uid!=0 && p2==procNPROC-1)) {
8387488Skre #else
8392741Swnj 	if (p2==NULL || (u.u_uid!=0 && (p2==procNPROC-1 || a>MAXUPRC))) {
8407488Skre #endif
84136Sbill 		u.u_error = EAGAIN;
84236Sbill 		if (!isvfork) {
843132Sbill 			(void) vsexpand(0, &u.u_cdmap, 1);
844132Sbill 			(void) vsexpand(0, &u.u_csmap, 1);
84536Sbill 		}
84636Sbill 		goto out;
84736Sbill 	}
84836Sbill 	p1 = u.u_procp;
8494827Swnj 	if (newproc(isvfork)) {
85036Sbill 		u.u_r.r_val1 = p1->p_pid;
85136Sbill 		u.u_r.r_val2 = 1;  /* child */
8528030Sroot 		u.u_start = time.tv_sec;
85336Sbill 		u.u_acflag = AFORK;
8547488Skre #ifdef QUOTA
8557488Skre 		u.u_qflags &= ~QUF_LOGIN;
8567488Skre #endif
85736Sbill 		return;
85836Sbill 	}
85936Sbill 	u.u_r.r_val1 = p2->p_pid;
86036Sbill 
86136Sbill out:
86236Sbill 	u.u_r.r_val2 = 0;
86336Sbill }
86436Sbill 
8657497Sroot spgrp(top, npgrp)
8667497Sroot register struct proc *top;
8677497Sroot {
8687497Sroot 	register struct proc *pp, *p;
8697497Sroot 	int f = 0;
8707497Sroot 
8717497Sroot 	for (p = top; npgrp == -1 || u.u_uid == p->p_uid ||
8727497Sroot 	    !u.u_uid || inferior(p); p = pp) {
8737497Sroot 		if (npgrp == -1) {
8747497Sroot #define	bit(a)	(1<<(a-1))
8757497Sroot 			p->p_sig &= ~(bit(SIGTSTP)|bit(SIGTTIN)|bit(SIGTTOU));
8767497Sroot 		} else
8777497Sroot 			p->p_pgrp = npgrp;
8787497Sroot 		f++;
8797497Sroot 		/*
8807497Sroot 		 * Search for children.
8817497Sroot 		 */
8827497Sroot 		for (pp = proc; pp < procNPROC; pp++)
8837497Sroot 			if (pp->p_pptr == p)
8847497Sroot 				goto cont;
8857497Sroot 		/*
8867497Sroot 		 * Search for siblings.
8877497Sroot 		 */
8887497Sroot 		for (; p != top; p = p->p_pptr)
8897497Sroot 			for (pp = p + 1; pp < procNPROC; pp++)
8907497Sroot 				if (pp->p_pptr == p->p_pptr)
8917497Sroot 					goto cont;
8927497Sroot 		break;
8937497Sroot 	cont:
8947497Sroot 		;
8957497Sroot 	}
8967497Sroot 	return (f);
8977497Sroot }
8987497Sroot 
89936Sbill /*
9007497Sroot  * Is p an inferior of the current process?
90136Sbill  */
9027497Sroot inferior(p)
9037816Sroot 	register struct proc *p;
90436Sbill {
90536Sbill 
9067497Sroot 	for (; p != u.u_procp; p = p->p_pptr)
9077497Sroot 		if (p->p_ppid == 0)
9087497Sroot 			return (0);
9097497Sroot 	return (1);
91036Sbill }
9117816Sroot 
9127816Sroot struct proc *
9137816Sroot pfind(pid)
9147816Sroot 	int pid;
9157816Sroot {
9167816Sroot 	register struct proc *p;
9177816Sroot 
9187816Sroot 	for (p = &proc[pidhash[PIDHASH(pid)]]; p != &proc[0]; p = &proc[p->p_idhash])
9197816Sroot 		if (p->p_pid == pid)
9207816Sroot 			return (p);
9217816Sroot 	return ((struct proc *)0);
9227816Sroot }
9238099Sroot 
9248099Sroot /*
9258099Sroot  * Create a new process-- the internal version of
9268099Sroot  * sys fork.
9278099Sroot  * It returns 1 in the new process, 0 in the old.
9288099Sroot  */
9298099Sroot newproc(isvfork)
9308099Sroot 	int isvfork;
9318099Sroot {
9328099Sroot 	register struct proc *p;
9338099Sroot 	register struct proc *rpp, *rip;
9348099Sroot 	register int n;
9358099Sroot 	register struct file *fp;
9368099Sroot 
9378099Sroot 	p = NULL;
9388099Sroot 	/*
9398099Sroot 	 * First, just locate a slot for a process
9408099Sroot 	 * and copy the useful info from this process into it.
9418099Sroot 	 * The panic "cannot happen" because fork has already
9428099Sroot 	 * checked for the existence of a slot.
9438099Sroot 	 */
9448099Sroot retry:
9458099Sroot 	mpid++;
9468099Sroot 	if (mpid >= 30000) {
9478099Sroot 		mpid = 0;
9488099Sroot 		goto retry;
9498099Sroot 	}
9508099Sroot 	for (rpp = proc; rpp < procNPROC; rpp++) {
9518099Sroot 		if (rpp->p_stat == NULL && p==NULL)
9528099Sroot 			p = rpp;
9538099Sroot 		if (rpp->p_pid==mpid || rpp->p_pgrp==mpid)
9548099Sroot 			goto retry;
9558099Sroot 	}
9568099Sroot 	if ((rpp = p) == NULL)
9578099Sroot 		panic("no procs");
9588099Sroot 
9598099Sroot 	/*
9608099Sroot 	 * Make a proc table entry for the new process.
9618099Sroot 	 */
9628099Sroot 	rip = u.u_procp;
9638099Sroot #ifdef QUOTA
9648099Sroot 	(rpp->p_quota = rip->p_quota)->q_cnt++;
9658099Sroot #endif
9668099Sroot 	rpp->p_stat = SIDL;
9678099Sroot 	timerclear(&rpp->p_realtimer.it_value);
9688099Sroot 	rpp->p_flag = SLOAD | (rip->p_flag & (SPAGI|SNUSIG));
9698099Sroot 	if (isvfork) {
9708099Sroot 		rpp->p_flag |= SVFORK;
9718099Sroot 		rpp->p_ndx = rip->p_ndx;
9728099Sroot 	} else
9738099Sroot 		rpp->p_ndx = rpp - proc;
9748099Sroot 	rpp->p_uid = rip->p_uid;
9758099Sroot 	rpp->p_pgrp = rip->p_pgrp;
9768099Sroot 	rpp->p_nice = rip->p_nice;
9778099Sroot 	rpp->p_textp = isvfork ? 0 : rip->p_textp;
9788099Sroot 	rpp->p_pid = mpid;
9798099Sroot 	rpp->p_ppid = rip->p_pid;
9808099Sroot 	rpp->p_pptr = rip;
9818099Sroot 	rpp->p_osptr = rip->p_cptr;
9828099Sroot 	if (rip->p_cptr)
9838099Sroot 		rip->p_cptr->p_ysptr = rpp;
9848099Sroot 	rpp->p_ysptr = NULL;
9858099Sroot 	rpp->p_cptr = NULL;
9868099Sroot 	rip->p_cptr = rpp;
9878099Sroot 	rpp->p_time = 0;
9888099Sroot 	rpp->p_cpu = 0;
9898099Sroot 	rpp->p_siga0 = rip->p_siga0;
9908099Sroot 	rpp->p_siga1 = rip->p_siga1;
9918099Sroot 	/* take along any pending signals, like stops? */
9928099Sroot 	if (isvfork) {
9938099Sroot 		rpp->p_tsize = rpp->p_dsize = rpp->p_ssize = 0;
9948099Sroot 		rpp->p_szpt = clrnd(ctopt(UPAGES));
9958099Sroot 		forkstat.cntvfork++;
9968099Sroot 		forkstat.sizvfork += rip->p_dsize + rip->p_ssize;
9978099Sroot 	} else {
9988099Sroot 		rpp->p_tsize = rip->p_tsize;
9998099Sroot 		rpp->p_dsize = rip->p_dsize;
10008099Sroot 		rpp->p_ssize = rip->p_ssize;
10018099Sroot 		rpp->p_szpt = rip->p_szpt;
10028099Sroot 		forkstat.cntfork++;
10038099Sroot 		forkstat.sizfork += rip->p_dsize + rip->p_ssize;
10048099Sroot 	}
10058099Sroot 	rpp->p_rssize = 0;
10068099Sroot 	rpp->p_maxrss = rip->p_maxrss;
10078099Sroot 	rpp->p_wchan = 0;
10088099Sroot 	rpp->p_slptime = 0;
10098099Sroot 	rpp->p_pctcpu = 0;
10108099Sroot 	rpp->p_cpticks = 0;
10118099Sroot 	n = PIDHASH(rpp->p_pid);
10128099Sroot 	p->p_idhash = pidhash[n];
10138099Sroot 	pidhash[n] = rpp - proc;
10148099Sroot 	multprog++;
10158099Sroot 
10168099Sroot 	/*
10178099Sroot 	 * Increase reference counts on shared objects.
10188099Sroot 	 */
10198099Sroot 	for (n = 0; n < NOFILE; n++) {
10208099Sroot 		fp = u.u_ofile[n];
10218099Sroot 		if (fp == NULL)
10228099Sroot 			continue;
10238099Sroot 		fp->f_count++;
10249591Ssam 		if (u.u_pofile[n]&UF_SHLOCK)
10259159Ssam 			fp->f_inode->i_shlockc++;
10269591Ssam 		if (u.u_pofile[n]&UF_EXLOCK)
10279159Ssam 			fp->f_inode->i_exlockc++;
10288099Sroot 	}
10298099Sroot 	u.u_cdir->i_count++;
10308099Sroot 	if (u.u_rdir)
10318099Sroot 		u.u_rdir->i_count++;
10328099Sroot 
10338099Sroot 	/*
10348099Sroot 	 * Partially simulate the environment
10358099Sroot 	 * of the new process so that when it is actually
10368099Sroot 	 * created (by copying) it will look right.
10378099Sroot 	 * This begins the section where we must prevent the parent
10388099Sroot 	 * from being swapped.
10398099Sroot 	 */
10408099Sroot 	rip->p_flag |= SKEEP;
10418099Sroot 	if (procdup(rpp, isvfork))
10428099Sroot 		return (1);
10438099Sroot 
10448099Sroot 	/*
10458099Sroot 	 * Make child runnable and add to run queue.
10468099Sroot 	 */
10478099Sroot 	(void) spl6();
10488099Sroot 	rpp->p_stat = SRUN;
10498099Sroot 	setrq(rpp);
10508099Sroot 	(void) spl0();
10518099Sroot 
10528099Sroot 	/*
10538099Sroot 	 * Cause child to take a non-local goto as soon as it runs.
10548099Sroot 	 * On older systems this was done with SSWAP bit in proc
10558099Sroot 	 * table; on VAX we use u.u_pcb.pcb_sswap so don't need
10568099Sroot 	 * to do rpp->p_flag |= SSWAP.  Actually do nothing here.
10578099Sroot 	 */
10588099Sroot 	/* rpp->p_flag |= SSWAP; */
10598099Sroot 
10608099Sroot 	/*
10618099Sroot 	 * Now can be swapped.
10628099Sroot 	 */
10638099Sroot 	rip->p_flag &= ~SKEEP;
10648099Sroot 
10658099Sroot 	/*
10668099Sroot 	 * If vfork make chain from parent process to child
10678099Sroot 	 * (where virtal memory is temporarily).  Wait for
10688099Sroot 	 * child to finish, steal virtual memory back,
10698099Sroot 	 * and wakeup child to let it die.
10708099Sroot 	 */
10718099Sroot 	if (isvfork) {
10728099Sroot 		u.u_procp->p_xlink = rpp;
10738099Sroot 		u.u_procp->p_flag |= SNOVM;
10748099Sroot 		while (rpp->p_flag & SVFORK)
10758099Sroot 			sleep((caddr_t)rpp, PZERO - 1);
10768099Sroot 		if ((rpp->p_flag & SLOAD) == 0)
10778099Sroot 			panic("newproc vfork");
10788099Sroot 		uaccess(rpp, Vfmap, &vfutl);
10798099Sroot 		u.u_procp->p_xlink = 0;
10808099Sroot 		vpassvm(rpp, u.u_procp, &vfutl, &u, Vfmap);
10818099Sroot 		u.u_procp->p_flag &= ~SNOVM;
10828099Sroot 		rpp->p_ndx = rpp - proc;
10838099Sroot 		rpp->p_flag |= SVFDONE;
10848099Sroot 		wakeup((caddr_t)rpp);
10858099Sroot 	}
10868099Sroot 
10878099Sroot 	/*
10888099Sroot 	 * 0 return means parent.
10898099Sroot 	 */
10908099Sroot 	return (0);
10918099Sroot }
1092