Home | History | Annotate | Line # | Download | only in sh
jobs.c revision 1.30
      1 /*	$NetBSD: jobs.c,v 1.30 1999/04/05 14:59:35 mycroft Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1991, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * Kenneth Almquist.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the University of
     21  *	California, Berkeley and its contributors.
     22  * 4. Neither the name of the University nor the names of its contributors
     23  *    may be used to endorse or promote products derived from this software
     24  *    without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36  * SUCH DAMAGE.
     37  */
     38 
     39 #include <sys/cdefs.h>
     40 #ifndef lint
     41 #if 0
     42 static char sccsid[] = "@(#)jobs.c	8.5 (Berkeley) 5/4/95";
     43 #else
     44 __RCSID("$NetBSD: jobs.c,v 1.30 1999/04/05 14:59:35 mycroft Exp $");
     45 #endif
     46 #endif /* not lint */
     47 
     48 #include <fcntl.h>
     49 #include <signal.h>
     50 #include <errno.h>
     51 #include <unistd.h>
     52 #include <stdlib.h>
     53 #include <paths.h>
     54 #include <sys/types.h>
     55 #include <sys/param.h>
     56 #ifdef BSD
     57 #include <sys/wait.h>
     58 #include <sys/time.h>
     59 #include <sys/resource.h>
     60 #endif
     61 #include <sys/ioctl.h>
     62 
     63 #include "shell.h"
     64 #if JOBS
     65 #if OLD_TTY_DRIVER
     66 #include "sgtty.h"
     67 #else
     68 #include <termios.h>
     69 #endif
     70 #undef CEOF			/* syntax.h redefines this */
     71 #endif
     72 #include "redir.h"
     73 #include "show.h"
     74 #include "main.h"
     75 #include "parser.h"
     76 #include "nodes.h"
     77 #include "jobs.h"
     78 #include "options.h"
     79 #include "trap.h"
     80 #include "syntax.h"
     81 #include "input.h"
     82 #include "output.h"
     83 #include "memalloc.h"
     84 #include "error.h"
     85 #include "mystring.h"
     86 
     87 
     88 struct job *jobtab;		/* array of jobs */
     89 int njobs;			/* size of array */
     90 MKINIT short backgndpid = -1;	/* pid of last background process */
     91 #if JOBS
     92 int initialpgrp;		/* pgrp of shell on invocation */
     93 short curjob;			/* current job */
     94 #endif
     95 
     96 STATIC void restartjob __P((struct job *));
     97 STATIC void freejob __P((struct job *));
     98 STATIC struct job *getjob __P((char *));
     99 STATIC int dowait __P((int, struct job *));
    100 STATIC int onsigchild __P((void));
    101 STATIC int waitproc __P((int, int *));
    102 STATIC void cmdtxt __P((union node *));
    103 STATIC void cmdputs __P((char *));
    104 
    105 
    106 /*
    107  * Turn job control on and off.
    108  *
    109  * Note:  This code assumes that the third arg to ioctl is a character
    110  * pointer, which is true on Berkeley systems but not System V.  Since
    111  * System V doesn't have job control yet, this isn't a problem now.
    112  */
    113 
    114 MKINIT int jobctl;
    115 
    116 void
    117 setjobctl(on)
    118 	int on;
    119 {
    120 #ifdef OLD_TTY_DRIVER
    121 	int ldisc;
    122 #endif
    123 
    124 	if (on == jobctl || rootshell == 0)
    125 		return;
    126 	if (on) {
    127 		do { /* while we are in the background */
    128 #ifdef OLD_TTY_DRIVER
    129 			if (ioctl(2, TIOCGPGRP, (char *)&initialpgrp) < 0) {
    130 #else
    131 			initialpgrp = tcgetpgrp(2);
    132 			if (initialpgrp < 0) {
    133 #endif
    134 				out2str("sh: can't access tty; job control turned off\n");
    135 				mflag = 0;
    136 				return;
    137 			}
    138 			if (initialpgrp == -1)
    139 				initialpgrp = getpgrp();
    140 			else if (initialpgrp != getpgrp()) {
    141 				killpg(initialpgrp, SIGTTIN);
    142 				continue;
    143 			}
    144 		} while (0);
    145 #ifdef OLD_TTY_DRIVER
    146 		if (ioctl(2, TIOCGETD, (char *)&ldisc) < 0 || ldisc != NTTYDISC) {
    147 			out2str("sh: need new tty driver to run job control; job control turned off\n");
    148 			mflag = 0;
    149 			return;
    150 		}
    151 #endif
    152 		setsignal(SIGTSTP);
    153 		setsignal(SIGTTOU);
    154 		setsignal(SIGTTIN);
    155 		setpgid(0, rootpid);
    156 #ifdef OLD_TTY_DRIVER
    157 		ioctl(2, TIOCSPGRP, (char *)&rootpid);
    158 #else
    159 		tcsetpgrp(2, rootpid);
    160 #endif
    161 	} else { /* turning job control off */
    162 		setpgid(0, initialpgrp);
    163 #ifdef OLD_TTY_DRIVER
    164 		ioctl(2, TIOCSPGRP, (char *)&initialpgrp);
    165 #else
    166 		tcsetpgrp(2, initialpgrp);
    167 #endif
    168 		setsignal(SIGTSTP);
    169 		setsignal(SIGTTOU);
    170 		setsignal(SIGTTIN);
    171 	}
    172 	jobctl = on;
    173 }
    174 
    175 
    176 #ifdef mkinit
    177 INCLUDE <stdlib.h>
    178 
    179 SHELLPROC {
    180 	backgndpid = -1;
    181 #if JOBS
    182 	jobctl = 0;
    183 #endif
    184 }
    185 
    186 #endif
    187 
    188 
    189 
    190 #if JOBS
    191 int
    192 fgcmd(argc, argv)
    193 	int argc;
    194 	char **argv;
    195 {
    196 	struct job *jp;
    197 	int pgrp;
    198 	int status;
    199 
    200 	jp = getjob(argv[1]);
    201 	if (jp->jobctl == 0)
    202 		error("job not created under job control");
    203 	pgrp = jp->ps[0].pid;
    204 #ifdef OLD_TTY_DRIVER
    205 	ioctl(2, TIOCSPGRP, (char *)&pgrp);
    206 #else
    207 	tcsetpgrp(2, pgrp);
    208 #endif
    209 	restartjob(jp);
    210 	INTOFF;
    211 	status = waitforjob(jp);
    212 	INTON;
    213 	return status;
    214 }
    215 
    216 
    217 int
    218 bgcmd(argc, argv)
    219 	int argc;
    220 	char **argv;
    221 {
    222 	struct job *jp;
    223 
    224 	do {
    225 		jp = getjob(*++argv);
    226 		if (jp->jobctl == 0)
    227 			error("job not created under job control");
    228 		restartjob(jp);
    229 	} while (--argc > 1);
    230 	return 0;
    231 }
    232 
    233 
    234 STATIC void
    235 restartjob(jp)
    236 	struct job *jp;
    237 {
    238 	struct procstat *ps;
    239 	int i;
    240 
    241 	if (jp->state == JOBDONE)
    242 		return;
    243 	INTOFF;
    244 	killpg(jp->ps[0].pid, SIGCONT);
    245 	for (ps = jp->ps, i = jp->nprocs ; --i >= 0 ; ps++) {
    246 		if (WIFSTOPPED(ps->status)) {
    247 			ps->status = -1;
    248 			jp->state = 0;
    249 		}
    250 	}
    251 	INTON;
    252 }
    253 #endif
    254 
    255 
    256 int
    257 jobscmd(argc, argv)
    258 	int argc;
    259 	char **argv;
    260 {
    261 	showjobs(0);
    262 	return 0;
    263 }
    264 
    265 
    266 /*
    267  * Print a list of jobs.  If "change" is nonzero, only print jobs whose
    268  * statuses have changed since the last call to showjobs.
    269  *
    270  * If the shell is interrupted in the process of creating a job, the
    271  * result may be a job structure containing zero processes.  Such structures
    272  * will be freed here.
    273  */
    274 
    275 void
    276 showjobs(change)
    277 	int change;
    278 {
    279 	int jobno;
    280 	int procno;
    281 	int i;
    282 	struct job *jp;
    283 	struct procstat *ps;
    284 	int col;
    285 	char s[64];
    286 
    287 	TRACE(("showjobs(%d) called\n", change));
    288 	while (dowait(0, (struct job *)NULL) > 0);
    289 	for (jobno = 1, jp = jobtab ; jobno <= njobs ; jobno++, jp++) {
    290 		if (! jp->used)
    291 			continue;
    292 		if (jp->nprocs == 0) {
    293 			freejob(jp);
    294 			continue;
    295 		}
    296 		if (change && ! jp->changed)
    297 			continue;
    298 		procno = jp->nprocs;
    299 		for (ps = jp->ps ; ; ps++) {	/* for each process */
    300 			if (ps == jp->ps)
    301 				fmtstr(s, 64, "[%d] %ld ", jobno,
    302 				    (long)ps->pid);
    303 			else
    304 				fmtstr(s, 64, "    %ld ",
    305 				    (long)ps->pid);
    306 			out1str(s);
    307 			col = strlen(s);
    308 			s[0] = '\0';
    309 			if (ps->status == -1) {
    310 				/* don't print anything */
    311 			} else if (WIFEXITED(ps->status)) {
    312 				fmtstr(s, 64, "Exit %d",
    313 				       WEXITSTATUS(ps->status));
    314 			} else {
    315 #if JOBS
    316 				if (WIFSTOPPED(ps->status))
    317 					i = WSTOPSIG(ps->status);
    318 				else /* WIFSIGNALED(ps->status) */
    319 #endif
    320 					i = WTERMSIG(ps->status);
    321 				if ((i & 0x7F) < NSIG && sys_siglist[i & 0x7F])
    322 					scopy(sys_siglist[i & 0x7F], s);
    323 				else
    324 					fmtstr(s, 64, "Signal %d", i & 0x7F);
    325 				if (WCOREDUMP(ps->status))
    326 					strcat(s, " (core dumped)");
    327 			}
    328 			out1str(s);
    329 			col += strlen(s);
    330 			do {
    331 				out1c(' ');
    332 				col++;
    333 			} while (col < 30);
    334 			out1str(ps->cmd);
    335 			out1c('\n');
    336 			if (--procno <= 0)
    337 				break;
    338 		}
    339 		jp->changed = 0;
    340 		if (jp->state == JOBDONE) {
    341 			freejob(jp);
    342 		}
    343 	}
    344 }
    345 
    346 
    347 /*
    348  * Mark a job structure as unused.
    349  */
    350 
    351 STATIC void
    352 freejob(jp)
    353 	struct job *jp;
    354 	{
    355 	struct procstat *ps;
    356 	int i;
    357 
    358 	INTOFF;
    359 	for (i = jp->nprocs, ps = jp->ps ; --i >= 0 ; ps++) {
    360 		if (ps->cmd != nullstr)
    361 			ckfree(ps->cmd);
    362 	}
    363 	if (jp->ps != &jp->ps0)
    364 		ckfree(jp->ps);
    365 	jp->used = 0;
    366 #if JOBS
    367 	if (curjob == jp - jobtab + 1)
    368 		curjob = 0;
    369 #endif
    370 	INTON;
    371 }
    372 
    373 
    374 
    375 int
    376 waitcmd(argc, argv)
    377 	int argc;
    378 	char **argv;
    379 {
    380 	struct job *job;
    381 	int status, retval;
    382 	struct job *jp;
    383 
    384 	if (argc > 1) {
    385 		job = getjob(argv[1]);
    386 	} else {
    387 		job = NULL;
    388 	}
    389 	for (;;) {	/* loop until process terminated or stopped */
    390 		if (job != NULL) {
    391 			if (job->state) {
    392 				status = job->ps[job->nprocs - 1].status;
    393 				if (WIFEXITED(status))
    394 					retval = WEXITSTATUS(status);
    395 #if JOBS
    396 				else if (WIFSTOPPED(status))
    397 					retval = WSTOPSIG(status) + 128;
    398 #endif
    399 				else {
    400 					/* XXX: limits number of signals */
    401 					retval = WTERMSIG(status) + 128;
    402 				}
    403 				if (! iflag)
    404 					freejob(job);
    405 				return retval;
    406 			}
    407 		} else {
    408 			for (jp = jobtab ; ; jp++) {
    409 				if (jp >= jobtab + njobs) {	/* no running procs */
    410 					return 0;
    411 				}
    412 				if (jp->used && jp->state == 0)
    413 					break;
    414 			}
    415 		}
    416 		dowait(1, (struct job *)NULL);
    417 	}
    418 }
    419 
    420 
    421 
    422 int
    423 jobidcmd(argc, argv)
    424 	int argc;
    425 	char **argv;
    426 {
    427 	struct job *jp;
    428 	int i;
    429 
    430 	jp = getjob(argv[1]);
    431 	for (i = 0 ; i < jp->nprocs ; ) {
    432 		out1fmt("%ld", (long)jp->ps[i].pid);
    433 		out1c(++i < jp->nprocs? ' ' : '\n');
    434 	}
    435 	return 0;
    436 }
    437 
    438 
    439 
    440 /*
    441  * Convert a job name to a job structure.
    442  */
    443 
    444 STATIC struct job *
    445 getjob(name)
    446 	char *name;
    447 	{
    448 	int jobno;
    449 	struct job *jp;
    450 	int pid;
    451 	int i;
    452 
    453 	if (name == NULL) {
    454 #if JOBS
    455 currentjob:
    456 		if ((jobno = curjob) == 0 || jobtab[jobno - 1].used == 0)
    457 			error("No current job");
    458 		return &jobtab[jobno - 1];
    459 #else
    460 		error("No current job");
    461 #endif
    462 	} else if (name[0] == '%') {
    463 		if (is_digit(name[1])) {
    464 			jobno = number(name + 1);
    465 			if (jobno > 0 && jobno <= njobs
    466 			 && jobtab[jobno - 1].used != 0)
    467 				return &jobtab[jobno - 1];
    468 #if JOBS
    469 		} else if (name[1] == '%' && name[2] == '\0') {
    470 			goto currentjob;
    471 #endif
    472 		} else {
    473 			struct job *found = NULL;
    474 			for (jp = jobtab, i = njobs ; --i >= 0 ; jp++) {
    475 				if (jp->used && jp->nprocs > 0
    476 				 && prefix(name + 1, jp->ps[0].cmd)) {
    477 					if (found)
    478 						error("%s: ambiguous", name);
    479 					found = jp;
    480 				}
    481 			}
    482 			if (found)
    483 				return found;
    484 		}
    485 	} else if (is_number(name)) {
    486 		pid = number(name);
    487 		for (jp = jobtab, i = njobs ; --i >= 0 ; jp++) {
    488 			if (jp->used && jp->nprocs > 0
    489 			 && jp->ps[jp->nprocs - 1].pid == pid)
    490 				return jp;
    491 		}
    492 	}
    493 	error("No such job: %s", name);
    494 	/* NOTREACHED */
    495 }
    496 
    497 
    498 
    499 /*
    500  * Return a new job structure,
    501  */
    502 
    503 struct job *
    504 makejob(node, nprocs)
    505 	union node *node;
    506 	int nprocs;
    507 {
    508 	int i;
    509 	struct job *jp;
    510 
    511 	for (i = njobs, jp = jobtab ; ; jp++) {
    512 		if (--i < 0) {
    513 			INTOFF;
    514 			if (njobs == 0) {
    515 				jobtab = ckmalloc(4 * sizeof jobtab[0]);
    516 			} else {
    517 				jp = ckmalloc((njobs + 4) * sizeof jobtab[0]);
    518 				memcpy(jp, jobtab, njobs * sizeof jp[0]);
    519 				/* Relocate `ps' pointers */
    520 				for (i = 0; i < njobs; i++)
    521 					if (jp[i].ps == &jobtab[i].ps0)
    522 						jp[i].ps = &jp[i].ps0;
    523 				ckfree(jobtab);
    524 				jobtab = jp;
    525 			}
    526 			jp = jobtab + njobs;
    527 			for (i = 4 ; --i >= 0 ; jobtab[njobs++].used = 0);
    528 			INTON;
    529 			break;
    530 		}
    531 		if (jp->used == 0)
    532 			break;
    533 	}
    534 	INTOFF;
    535 	jp->state = 0;
    536 	jp->used = 1;
    537 	jp->changed = 0;
    538 	jp->nprocs = 0;
    539 #if JOBS
    540 	jp->jobctl = jobctl;
    541 #endif
    542 	if (nprocs > 1) {
    543 		jp->ps = ckmalloc(nprocs * sizeof (struct procstat));
    544 	} else {
    545 		jp->ps = &jp->ps0;
    546 	}
    547 	INTON;
    548 	TRACE(("makejob(0x%lx, %d) returns %%%d\n", (long)node, nprocs,
    549 	    jp - jobtab + 1));
    550 	return jp;
    551 }
    552 
    553 
    554 /*
    555  * Fork of a subshell.  If we are doing job control, give the subshell its
    556  * own process group.  Jp is a job structure that the job is to be added to.
    557  * N is the command that will be evaluated by the child.  Both jp and n may
    558  * be NULL.  The mode parameter can be one of the following:
    559  *	FORK_FG - Fork off a foreground process.
    560  *	FORK_BG - Fork off a background process.
    561  *	FORK_NOJOB - Like FORK_FG, but don't give the process its own
    562  *		     process group even if job control is on.
    563  *
    564  * When job control is turned off, background processes have their standard
    565  * input redirected to /dev/null (except for the second and later processes
    566  * in a pipeline).
    567  */
    568 
    569 int
    570 forkshell(jp, n, mode)
    571 	union node *n;
    572 	struct job *jp;
    573 	int mode;
    574 {
    575 	int pid;
    576 	int pgrp;
    577 	const char *devnull = _PATH_DEVNULL;
    578 	/* const */ char *nullerr = "Can't open %s";
    579 
    580 	TRACE(("forkshell(%%%d, 0x%lx, %d) called\n", jp - jobtab, (long)n,
    581 	    mode));
    582 	INTOFF;
    583 	pid = fork();
    584 	if (pid == -1) {
    585 		TRACE(("Fork failed, errno=%d\n", errno));
    586 		INTON;
    587 		error("Cannot fork");
    588 	}
    589 	if (pid == 0) {
    590 		struct job *p;
    591 		int wasroot;
    592 		int i;
    593 
    594 		TRACE(("Child shell %d\n", getpid()));
    595 		wasroot = rootshell;
    596 		rootshell = 0;
    597 		for (i = njobs, p = jobtab ; --i >= 0 ; p++)
    598 			if (p->used)
    599 				freejob(p);
    600 		closescript();
    601 		INTON;
    602 		clear_traps();
    603 #if JOBS
    604 		jobctl = 0;		/* do job control only in root shell */
    605 		if (wasroot && mode != FORK_NOJOB && mflag) {
    606 			if (jp == NULL || jp->nprocs == 0)
    607 				pgrp = getpid();
    608 			else
    609 				pgrp = jp->ps[0].pid;
    610 			setpgid(0, pgrp);
    611 			if (mode == FORK_FG) {
    612 				/*** this causes superfluous TIOCSPGRPS ***/
    613 #ifdef OLD_TTY_DRIVER
    614 				if (ioctl(2, TIOCSPGRP, (char *)&pgrp) < 0)
    615 					error("TIOCSPGRP failed, errno=%d", errno);
    616 #else
    617 				if (tcsetpgrp(2, pgrp) < 0)
    618 					error("tcsetpgrp failed, errno=%d", errno);
    619 #endif
    620 			}
    621 			setsignal(SIGTSTP);
    622 			setsignal(SIGTTOU);
    623 		} else if (mode == FORK_BG) {
    624 			ignoresig(SIGINT);
    625 			ignoresig(SIGQUIT);
    626 			if ((jp == NULL || jp->nprocs == 0) &&
    627 			    ! fd0_redirected_p ()) {
    628 				close(0);
    629 				if (open(devnull, O_RDONLY) != 0)
    630 					error(nullerr, devnull);
    631 			}
    632 		}
    633 #else
    634 		if (mode == FORK_BG) {
    635 			ignoresig(SIGINT);
    636 			ignoresig(SIGQUIT);
    637 			if ((jp == NULL || jp->nprocs == 0) &&
    638 			    ! fd0_redirected_p ()) {
    639 				close(0);
    640 				if (open(devnull, O_RDONLY) != 0)
    641 					error(nullerr, devnull);
    642 			}
    643 		}
    644 #endif
    645 		if (wasroot && iflag) {
    646 			setsignal(SIGINT);
    647 			setsignal(SIGQUIT);
    648 			setsignal(SIGTERM);
    649 		}
    650 		return pid;
    651 	}
    652 	if (rootshell && mode != FORK_NOJOB && mflag) {
    653 		if (jp == NULL || jp->nprocs == 0)
    654 			pgrp = pid;
    655 		else
    656 			pgrp = jp->ps[0].pid;
    657 		setpgid(pid, pgrp);
    658 	}
    659 	if (mode == FORK_BG)
    660 		backgndpid = pid;		/* set $! */
    661 	if (jp) {
    662 		struct procstat *ps = &jp->ps[jp->nprocs++];
    663 		ps->pid = pid;
    664 		ps->status = -1;
    665 		ps->cmd = nullstr;
    666 		if (iflag && rootshell && n)
    667 			ps->cmd = commandtext(n);
    668 	}
    669 	INTON;
    670 	TRACE(("In parent shell:  child = %d\n", pid));
    671 	return pid;
    672 }
    673 
    674 
    675 
    676 /*
    677  * Wait for job to finish.
    678  *
    679  * Under job control we have the problem that while a child process is
    680  * running interrupts generated by the user are sent to the child but not
    681  * to the shell.  This means that an infinite loop started by an inter-
    682  * active user may be hard to kill.  With job control turned off, an
    683  * interactive user may place an interactive program inside a loop.  If
    684  * the interactive program catches interrupts, the user doesn't want
    685  * these interrupts to also abort the loop.  The approach we take here
    686  * is to have the shell ignore interrupt signals while waiting for a
    687  * forground process to terminate, and then send itself an interrupt
    688  * signal if the child process was terminated by an interrupt signal.
    689  * Unfortunately, some programs want to do a bit of cleanup and then
    690  * exit on interrupt; unless these processes terminate themselves by
    691  * sending a signal to themselves (instead of calling exit) they will
    692  * confuse this approach.
    693  */
    694 
    695 int
    696 waitforjob(jp)
    697 	struct job *jp;
    698 	{
    699 #if JOBS
    700 	int mypgrp = getpgrp();
    701 #endif
    702 	int status;
    703 	int st;
    704 
    705 	INTOFF;
    706 	TRACE(("waitforjob(%%%d) called\n", jp - jobtab + 1));
    707 	while (jp->state == 0) {
    708 		dowait(1, jp);
    709 	}
    710 #if JOBS
    711 	if (jp->jobctl) {
    712 #ifdef OLD_TTY_DRIVER
    713 		if (ioctl(2, TIOCSPGRP, (char *)&mypgrp) < 0)
    714 			error("TIOCSPGRP failed, errno=%d\n", errno);
    715 #else
    716 		if (tcsetpgrp(2, mypgrp) < 0)
    717 			error("tcsetpgrp failed, errno=%d\n", errno);
    718 #endif
    719 	}
    720 	if (jp->state == JOBSTOPPED)
    721 		curjob = jp - jobtab + 1;
    722 #endif
    723 	status = jp->ps[jp->nprocs - 1].status;
    724 	/* convert to 8 bits */
    725 	if (WIFEXITED(status))
    726 		st = WEXITSTATUS(status);
    727 #if JOBS
    728 	else if (WIFSTOPPED(status))
    729 		st = WSTOPSIG(status) + 128;
    730 #endif
    731 	else
    732 		st = WTERMSIG(status) + 128;
    733 	if (! JOBS || jp->state == JOBDONE)
    734 		freejob(jp);
    735 #if 0
    736 	/*
    737 	 * XXXX
    738 	 * Why was this here?  It causes us to lose SIGINTs unless the current
    739 	 * command happens to also catch the SIGINT and exit with the right
    740 	 * status.  I don't see how that can possibly be correct.  -- mycroft
    741 	 */
    742 	CLEAR_PENDING_INT;
    743 	if (WIFSIGNALED(status) && WTERMSIG(status) == SIGINT)
    744 		raise(SIGINT);
    745 #endif
    746 	INTON;
    747 	return st;
    748 }
    749 
    750 
    751 
    752 /*
    753  * Wait for a process to terminate.
    754  */
    755 
    756 STATIC int
    757 dowait(block, job)
    758 	int block;
    759 	struct job *job;
    760 {
    761 	int pid;
    762 	int status;
    763 	struct procstat *sp;
    764 	struct job *jp;
    765 	struct job *thisjob;
    766 	int done;
    767 	int stopped;
    768 	int core;
    769 	int sig;
    770 
    771 	TRACE(("dowait(%d) called\n", block));
    772 	do {
    773 		pid = waitproc(block, &status);
    774 		TRACE(("wait returns %d, status=%d\n", pid, status));
    775 	} while (pid == -1 && errno == EINTR);
    776 	if (pid <= 0)
    777 		return pid;
    778 	INTOFF;
    779 	thisjob = NULL;
    780 	for (jp = jobtab ; jp < jobtab + njobs ; jp++) {
    781 		if (jp->used) {
    782 			done = 1;
    783 			stopped = 1;
    784 			for (sp = jp->ps ; sp < jp->ps + jp->nprocs ; sp++) {
    785 				if (sp->pid == -1)
    786 					continue;
    787 				if (sp->pid == pid) {
    788 					TRACE(("Changing status of proc %d from 0x%x to 0x%x\n", pid, sp->status, status));
    789 					sp->status = status;
    790 					thisjob = jp;
    791 				}
    792 				if (sp->status == -1)
    793 					stopped = 0;
    794 				else if (WIFSTOPPED(sp->status))
    795 					done = 0;
    796 			}
    797 			if (stopped) {		/* stopped or done */
    798 				int state = done? JOBDONE : JOBSTOPPED;
    799 				if (jp->state != state) {
    800 					TRACE(("Job %d: changing state from %d to %d\n", jp - jobtab + 1, jp->state, state));
    801 					jp->state = state;
    802 #if JOBS
    803 					if (done && curjob == jp - jobtab + 1)
    804 						curjob = 0;		/* no current job */
    805 #endif
    806 				}
    807 			}
    808 		}
    809 	}
    810 	INTON;
    811 	if (! rootshell || ! iflag || (job && thisjob == job)) {
    812 		core = WCOREDUMP(status);
    813 #if JOBS
    814 		if (WIFSTOPPED(status)) sig = WSTOPSIG(status);
    815 		else
    816 #endif
    817 		if (WIFEXITED(status)) sig = 0;
    818 		else sig = WTERMSIG(status);
    819 
    820 		if (sig != 0 && sig != SIGINT && sig != SIGPIPE) {
    821 			if (thisjob != job)
    822 				outfmt(out2, "%d: ", pid);
    823 #if JOBS
    824 			if (sig == SIGTSTP && rootshell && iflag)
    825 				outfmt(out2, "%%%ld ",
    826 				    (long)(job - jobtab + 1));
    827 #endif
    828 			if (sig < NSIG && sys_siglist[sig])
    829 				out2str(sys_siglist[sig]);
    830 			else
    831 				outfmt(out2, "Signal %d", sig);
    832 			if (core)
    833 				out2str(" - core dumped");
    834 			out2c('\n');
    835 			flushout(&errout);
    836 		} else {
    837 			TRACE(("Not printing status: status=%d, sig=%d\n",
    838 			       status, sig));
    839 		}
    840 	} else {
    841 		TRACE(("Not printing status, rootshell=%d, job=0x%x\n", rootshell, job));
    842 		if (thisjob)
    843 			thisjob->changed = 1;
    844 	}
    845 	return pid;
    846 }
    847 
    848 
    849 
    850 /*
    851  * Do a wait system call.  If job control is compiled in, we accept
    852  * stopped processes.  If block is zero, we return a value of zero
    853  * rather than blocking.
    854  *
    855  * System V doesn't have a non-blocking wait system call.  It does
    856  * have a SIGCLD signal that is sent to a process when one of it's
    857  * children dies.  The obvious way to use SIGCLD would be to install
    858  * a handler for SIGCLD which simply bumped a counter when a SIGCLD
    859  * was received, and have waitproc bump another counter when it got
    860  * the status of a process.  Waitproc would then know that a wait
    861  * system call would not block if the two counters were different.
    862  * This approach doesn't work because if a process has children that
    863  * have not been waited for, System V will send it a SIGCLD when it
    864  * installs a signal handler for SIGCLD.  What this means is that when
    865  * a child exits, the shell will be sent SIGCLD signals continuously
    866  * until is runs out of stack space, unless it does a wait call before
    867  * restoring the signal handler.  The code below takes advantage of
    868  * this (mis)feature by installing a signal handler for SIGCLD and
    869  * then checking to see whether it was called.  If there are any
    870  * children to be waited for, it will be.
    871  *
    872  * If neither SYSV nor BSD is defined, we don't implement nonblocking
    873  * waits at all.  In this case, the user will not be informed when
    874  * a background process until the next time she runs a real program
    875  * (as opposed to running a builtin command or just typing return),
    876  * and the jobs command may give out of date information.
    877  */
    878 
    879 #ifdef SYSV
    880 STATIC int gotsigchild;
    881 
    882 STATIC int onsigchild() {
    883 	gotsigchild = 1;
    884 }
    885 #endif
    886 
    887 
    888 STATIC int
    889 waitproc(block, status)
    890 	int block;
    891 	int *status;
    892 {
    893 #ifdef BSD
    894 	int flags;
    895 
    896 #if JOBS
    897 	flags = WUNTRACED;
    898 #else
    899 	flags = 0;
    900 #endif
    901 	if (block == 0)
    902 		flags |= WNOHANG;
    903 	return wait3(status, flags, (struct rusage *)NULL);
    904 #else
    905 #ifdef SYSV
    906 	int (*save)();
    907 
    908 	if (block == 0) {
    909 		gotsigchild = 0;
    910 		save = signal(SIGCLD, onsigchild);
    911 		signal(SIGCLD, save);
    912 		if (gotsigchild == 0)
    913 			return 0;
    914 	}
    915 	return wait(status);
    916 #else
    917 	if (block == 0)
    918 		return 0;
    919 	return wait(status);
    920 #endif
    921 #endif
    922 }
    923 
    924 /*
    925  * return 1 if there are stopped jobs, otherwise 0
    926  */
    927 int job_warning = 0;
    928 int
    929 stoppedjobs()
    930 {
    931 	int jobno;
    932 	struct job *jp;
    933 
    934 	if (job_warning)
    935 		return (0);
    936 	for (jobno = 1, jp = jobtab; jobno <= njobs; jobno++, jp++) {
    937 		if (jp->used == 0)
    938 			continue;
    939 		if (jp->state == JOBSTOPPED) {
    940 			out2str("You have stopped jobs.\n");
    941 			job_warning = 2;
    942 			return (1);
    943 		}
    944 	}
    945 
    946 	return (0);
    947 }
    948 
    949 /*
    950  * Return a string identifying a command (to be printed by the
    951  * jobs command.
    952  */
    953 
    954 STATIC char *cmdnextc;
    955 STATIC int cmdnleft;
    956 #define MAXCMDTEXT	200
    957 
    958 char *
    959 commandtext(n)
    960 	union node *n;
    961 	{
    962 	char *name;
    963 
    964 	cmdnextc = name = ckmalloc(MAXCMDTEXT);
    965 	cmdnleft = MAXCMDTEXT - 4;
    966 	cmdtxt(n);
    967 	*cmdnextc = '\0';
    968 	return name;
    969 }
    970 
    971 
    972 STATIC void
    973 cmdtxt(n)
    974 	union node *n;
    975 	{
    976 	union node *np;
    977 	struct nodelist *lp;
    978 	char *p;
    979 	int i;
    980 	char s[2];
    981 
    982 	if (n == NULL)
    983 		return;
    984 	switch (n->type) {
    985 	case NSEMI:
    986 		cmdtxt(n->nbinary.ch1);
    987 		cmdputs("; ");
    988 		cmdtxt(n->nbinary.ch2);
    989 		break;
    990 	case NAND:
    991 		cmdtxt(n->nbinary.ch1);
    992 		cmdputs(" && ");
    993 		cmdtxt(n->nbinary.ch2);
    994 		break;
    995 	case NOR:
    996 		cmdtxt(n->nbinary.ch1);
    997 		cmdputs(" || ");
    998 		cmdtxt(n->nbinary.ch2);
    999 		break;
   1000 	case NPIPE:
   1001 		for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
   1002 			cmdtxt(lp->n);
   1003 			if (lp->next)
   1004 				cmdputs(" | ");
   1005 		}
   1006 		break;
   1007 	case NSUBSHELL:
   1008 		cmdputs("(");
   1009 		cmdtxt(n->nredir.n);
   1010 		cmdputs(")");
   1011 		break;
   1012 	case NREDIR:
   1013 	case NBACKGND:
   1014 		cmdtxt(n->nredir.n);
   1015 		break;
   1016 	case NIF:
   1017 		cmdputs("if ");
   1018 		cmdtxt(n->nif.test);
   1019 		cmdputs("; then ");
   1020 		cmdtxt(n->nif.ifpart);
   1021 		cmdputs("...");
   1022 		break;
   1023 	case NWHILE:
   1024 		cmdputs("while ");
   1025 		goto until;
   1026 	case NUNTIL:
   1027 		cmdputs("until ");
   1028 until:
   1029 		cmdtxt(n->nbinary.ch1);
   1030 		cmdputs("; do ");
   1031 		cmdtxt(n->nbinary.ch2);
   1032 		cmdputs("; done");
   1033 		break;
   1034 	case NFOR:
   1035 		cmdputs("for ");
   1036 		cmdputs(n->nfor.var);
   1037 		cmdputs(" in ...");
   1038 		break;
   1039 	case NCASE:
   1040 		cmdputs("case ");
   1041 		cmdputs(n->ncase.expr->narg.text);
   1042 		cmdputs(" in ...");
   1043 		break;
   1044 	case NDEFUN:
   1045 		cmdputs(n->narg.text);
   1046 		cmdputs("() ...");
   1047 		break;
   1048 	case NCMD:
   1049 		for (np = n->ncmd.args ; np ; np = np->narg.next) {
   1050 			cmdtxt(np);
   1051 			if (np->narg.next)
   1052 				cmdputs(" ");
   1053 		}
   1054 		for (np = n->ncmd.redirect ; np ; np = np->nfile.next) {
   1055 			cmdputs(" ");
   1056 			cmdtxt(np);
   1057 		}
   1058 		break;
   1059 	case NARG:
   1060 		cmdputs(n->narg.text);
   1061 		break;
   1062 	case NTO:
   1063 		p = ">";  i = 1;  goto redir;
   1064 	case NAPPEND:
   1065 		p = ">>";  i = 1;  goto redir;
   1066 	case NTOFD:
   1067 		p = ">&";  i = 1;  goto redir;
   1068 	case NFROM:
   1069 		p = "<";  i = 0;  goto redir;
   1070 	case NFROMFD:
   1071 		p = "<&";  i = 0;  goto redir;
   1072 	case NFROMTO:
   1073 		p = "<>";  i = 0;  goto redir;
   1074 redir:
   1075 		if (n->nfile.fd != i) {
   1076 			s[0] = n->nfile.fd + '0';
   1077 			s[1] = '\0';
   1078 			cmdputs(s);
   1079 		}
   1080 		cmdputs(p);
   1081 		if (n->type == NTOFD || n->type == NFROMFD) {
   1082 			s[0] = n->ndup.dupfd + '0';
   1083 			s[1] = '\0';
   1084 			cmdputs(s);
   1085 		} else {
   1086 			cmdtxt(n->nfile.fname);
   1087 		}
   1088 		break;
   1089 	case NHERE:
   1090 	case NXHERE:
   1091 		cmdputs("<<...");
   1092 		break;
   1093 	default:
   1094 		cmdputs("???");
   1095 		break;
   1096 	}
   1097 }
   1098 
   1099 
   1100 
   1101 STATIC void
   1102 cmdputs(s)
   1103 	char *s;
   1104 	{
   1105 	char *p, *q;
   1106 	char c;
   1107 	int subtype = 0;
   1108 
   1109 	if (cmdnleft <= 0)
   1110 		return;
   1111 	p = s;
   1112 	q = cmdnextc;
   1113 	while ((c = *p++) != '\0') {
   1114 		if (c == CTLESC)
   1115 			*q++ = *p++;
   1116 		else if (c == CTLVAR) {
   1117 			*q++ = '$';
   1118 			if (--cmdnleft > 0)
   1119 				*q++ = '{';
   1120 			subtype = *p++;
   1121 		} else if (c == '=' && subtype != 0) {
   1122 			*q++ = "}-+?="[(subtype & VSTYPE) - VSNORMAL];
   1123 			subtype = 0;
   1124 		} else if (c == CTLENDVAR) {
   1125 			*q++ = '}';
   1126 		} else if (c == CTLBACKQ || c == CTLBACKQ+CTLQUOTE)
   1127 			cmdnleft++;		/* ignore it */
   1128 		else
   1129 			*q++ = c;
   1130 		if (--cmdnleft <= 0) {
   1131 			*q++ = '.';
   1132 			*q++ = '.';
   1133 			*q++ = '.';
   1134 			break;
   1135 		}
   1136 	}
   1137 	cmdnextc = q;
   1138 }
   1139