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