1 /*-
2  * Copyright (c) 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Kenneth Almquist.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)jobs.c	8.5 (Berkeley) 5/4/95";
36 #endif
37 #endif /* not lint */
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD: stable/12/bin/sh/jobs.c 361646 2020-05-30 13:39:56Z jilles $");
40 
41 #include <sys/ioctl.h>
42 #include <sys/param.h>
43 #include <sys/resource.h>
44 #include <sys/time.h>
45 #include <sys/wait.h>
46 #include <errno.h>
47 #include <fcntl.h>
48 #include <paths.h>
49 #include <signal.h>
50 #include <stddef.h>
51 #include <stdlib.h>
52 #include <unistd.h>
53 
54 #include "shell.h"
55 #if JOBS
56 #include <termios.h>
57 #undef CEOF			/* syntax.h redefines this */
58 #endif
59 #include "redir.h"
60 #include "exec.h"
61 #include "show.h"
62 #include "main.h"
63 #include "parser.h"
64 #include "nodes.h"
65 #include "jobs.h"
66 #include "options.h"
67 #include "trap.h"
68 #include "syntax.h"
69 #include "input.h"
70 #include "output.h"
71 #include "memalloc.h"
72 #include "error.h"
73 #include "mystring.h"
74 #include "var.h"
75 #include "builtins.h"
76 
77 
78 /*
79  * A job structure contains information about a job.  A job is either a
80  * single process or a set of processes contained in a pipeline.  In the
81  * latter case, pidlist will be non-NULL, and will point to a -1 terminated
82  * array of pids.
83  */
84 
85 struct procstat {
86 	pid_t pid;		/* process id */
87 	int status;		/* status flags (defined above) */
88 	char *cmd;		/* text of command being run */
89 };
90 
91 
92 /* states */
93 #define JOBSTOPPED 1		/* all procs are stopped */
94 #define JOBDONE 2		/* all procs are completed */
95 
96 
97 struct job {
98 	struct procstat ps0;	/* status of process */
99 	struct procstat *ps;	/* status or processes when more than one */
100 	short nprocs;		/* number of processes */
101 	pid_t pgrp;		/* process group of this job */
102 	char state;		/* true if job is finished */
103 	char used;		/* true if this entry is in used */
104 	char changed;		/* true if status has changed */
105 	char foreground;	/* true if running in the foreground */
106 	char remembered;	/* true if $! referenced */
107 	char pipefail;		/* pass any non-zero status */
108 #if JOBS
109 	char jobctl;		/* job running under job control */
110 	struct job *next;	/* job used after this one */
111 #endif
112 };
113 
114 
115 static struct job *jobtab;	/* array of jobs */
116 static int njobs;		/* size of array */
117 static pid_t backgndpid = -1;	/* pid of last background process */
118 static struct job *bgjob = NULL; /* last background process */
119 #if JOBS
120 static struct job *jobmru;	/* most recently used job list */
121 static pid_t initialpgrp;	/* pgrp of shell on invocation */
122 #endif
123 static int ttyfd = -1;
124 
125 /* mode flags for dowait */
126 #define DOWAIT_BLOCK	0x1 /* wait until a child exits */
127 #define DOWAIT_SIG	0x2 /* if DOWAIT_BLOCK, abort on signal */
128 #define DOWAIT_SIG_TRAP	0x4 /* if DOWAIT_SIG, abort on trapped signal only */
129 
130 #if JOBS
131 static void restartjob(struct job *);
132 #endif
133 static void freejob(struct job *);
134 static int waitcmdloop(struct job *);
135 static struct job *getjob_nonotfound(const char *);
136 static struct job *getjob(const char *);
137 pid_t killjob(const char *, int);
138 static pid_t dowait(int, struct job *);
139 static void checkzombies(void);
140 static void cmdtxt(union node *);
141 static void cmdputs(const char *);
142 #if JOBS
143 static void setcurjob(struct job *);
144 static void deljob(struct job *);
145 static struct job *getcurjob(struct job *);
146 #endif
147 static int getjobstatus(const struct job *);
148 static void printjobcmd(struct job *);
149 static void showjob(struct job *, int);
150 
151 
152 /*
153  * Turn job control on and off.
154  */
155 
156 static int jobctl;
157 
158 #if JOBS
159 static void
jobctl_notty(void)160 jobctl_notty(void)
161 {
162 	if (ttyfd >= 0) {
163 		close(ttyfd);
164 		ttyfd = -1;
165 	}
166 	if (!iflag) {
167 		setsignal(SIGTSTP);
168 		setsignal(SIGTTOU);
169 		setsignal(SIGTTIN);
170 		jobctl = 1;
171 		return;
172 	}
173 	out2fmt_flush("sh: can't access tty; job control turned off\n");
174 	mflag = 0;
175 }
176 
177 void
setjobctl(int on)178 setjobctl(int on)
179 {
180 	int i;
181 
182 	if (on == jobctl || rootshell == 0)
183 		return;
184 	if (on) {
185 		if (ttyfd != -1)
186 			close(ttyfd);
187 		if ((ttyfd = open(_PATH_TTY, O_RDWR | O_CLOEXEC)) < 0) {
188 			i = 0;
189 			while (i <= 2 && !isatty(i))
190 				i++;
191 			if (i > 2 ||
192 			    (ttyfd = fcntl(i, F_DUPFD_CLOEXEC, 10)) < 0) {
193 				jobctl_notty();
194 				return;
195 			}
196 		}
197 		if (ttyfd < 10) {
198 			/*
199 			 * Keep our TTY file descriptor out of the way of
200 			 * the user's redirections.
201 			 */
202 			if ((i = fcntl(ttyfd, F_DUPFD_CLOEXEC, 10)) < 0) {
203 				jobctl_notty();
204 				return;
205 			}
206 			close(ttyfd);
207 			ttyfd = i;
208 		}
209 		do { /* while we are in the background */
210 			initialpgrp = tcgetpgrp(ttyfd);
211 			if (initialpgrp < 0) {
212 				jobctl_notty();
213 				return;
214 			}
215 			if (initialpgrp != getpgrp()) {
216 				if (!iflag) {
217 					initialpgrp = -1;
218 					jobctl_notty();
219 					return;
220 				}
221 				kill(0, SIGTTIN);
222 				continue;
223 			}
224 		} while (0);
225 		setsignal(SIGTSTP);
226 		setsignal(SIGTTOU);
227 		setsignal(SIGTTIN);
228 		setpgid(0, rootpid);
229 		tcsetpgrp(ttyfd, rootpid);
230 	} else { /* turning job control off */
231 		setpgid(0, initialpgrp);
232 		if (ttyfd >= 0) {
233 			tcsetpgrp(ttyfd, initialpgrp);
234 			close(ttyfd);
235 			ttyfd = -1;
236 		}
237 		setsignal(SIGTSTP);
238 		setsignal(SIGTTOU);
239 		setsignal(SIGTTIN);
240 	}
241 	jobctl = on;
242 }
243 #endif
244 
245 
246 #if JOBS
247 int
fgcmd(int argc __unused,char ** argv __unused)248 fgcmd(int argc __unused, char **argv __unused)
249 {
250 	struct job *jp;
251 	pid_t pgrp;
252 	int status;
253 
254 	nextopt("");
255 	jp = getjob(*argptr);
256 	if (jp->jobctl == 0)
257 		error("job not created under job control");
258 	printjobcmd(jp);
259 	flushout(&output);
260 	pgrp = jp->ps[0].pid;
261 	if (ttyfd >= 0)
262 		tcsetpgrp(ttyfd, pgrp);
263 	restartjob(jp);
264 	jp->foreground = 1;
265 	INTOFF;
266 	status = waitforjob(jp, (int *)NULL);
267 	INTON;
268 	return status;
269 }
270 
271 
272 int
bgcmd(int argc __unused,char ** argv __unused)273 bgcmd(int argc __unused, char **argv __unused)
274 {
275 	struct job *jp;
276 
277 	nextopt("");
278 	do {
279 		jp = getjob(*argptr);
280 		if (jp->jobctl == 0)
281 			error("job not created under job control");
282 		if (jp->state == JOBDONE)
283 			continue;
284 		restartjob(jp);
285 		jp->foreground = 0;
286 		out1fmt("[%td] ", jp - jobtab + 1);
287 		printjobcmd(jp);
288 	} while (*argptr != NULL && *++argptr != NULL);
289 	return 0;
290 }
291 
292 
293 static void
restartjob(struct job * jp)294 restartjob(struct job *jp)
295 {
296 	struct procstat *ps;
297 	int i;
298 
299 	if (jp->state == JOBDONE)
300 		return;
301 	setcurjob(jp);
302 	INTOFF;
303 	kill(-jp->ps[0].pid, SIGCONT);
304 	for (ps = jp->ps, i = jp->nprocs ; --i >= 0 ; ps++) {
305 		if (WIFSTOPPED(ps->status)) {
306 			ps->status = -1;
307 			jp->state = 0;
308 		}
309 	}
310 	INTON;
311 }
312 #endif
313 
314 
315 int
jobscmd(int argc __unused,char * argv[]__unused)316 jobscmd(int argc __unused, char *argv[] __unused)
317 {
318 	char *id;
319 	int ch, mode;
320 
321 	mode = SHOWJOBS_DEFAULT;
322 	while ((ch = nextopt("lps")) != '\0') {
323 		switch (ch) {
324 		case 'l':
325 			mode = SHOWJOBS_VERBOSE;
326 			break;
327 		case 'p':
328 			mode = SHOWJOBS_PGIDS;
329 			break;
330 		case 's':
331 			mode = SHOWJOBS_PIDS;
332 			break;
333 		}
334 	}
335 
336 	if (*argptr == NULL)
337 		showjobs(0, mode);
338 	else
339 		while ((id = *argptr++) != NULL)
340 			showjob(getjob(id), mode);
341 
342 	return (0);
343 }
344 
getjobstatus(const struct job * jp)345 static int getjobstatus(const struct job *jp)
346 {
347 	int i, status;
348 
349 	if (!jp->pipefail)
350 		return (jp->ps[jp->nprocs - 1].status);
351 	for (i = jp->nprocs - 1; i >= 0; i--) {
352 		status = jp->ps[i].status;
353 		if (status != 0)
354 			return (status);
355 	}
356 	return (0);
357 }
358 
359 static void
printjobcmd(struct job * jp)360 printjobcmd(struct job *jp)
361 {
362 	struct procstat *ps;
363 	int i;
364 
365 	for (ps = jp->ps, i = jp->nprocs ; --i >= 0 ; ps++) {
366 		out1str(ps->cmd);
367 		if (i > 0)
368 			out1str(" | ");
369 	}
370 	out1c('\n');
371 }
372 
373 static void
showjob(struct job * jp,int mode)374 showjob(struct job *jp, int mode)
375 {
376 	char s[64];
377 	char statebuf[16];
378 	const char *statestr, *coredump;
379 	struct procstat *ps;
380 	struct job *j;
381 	int col, curr, i, jobno, prev, procno, status;
382 	char c;
383 
384 	procno = (mode == SHOWJOBS_PGIDS) ? 1 : jp->nprocs;
385 	jobno = jp - jobtab + 1;
386 	curr = prev = 0;
387 #if JOBS
388 	if ((j = getcurjob(NULL)) != NULL) {
389 		curr = j - jobtab + 1;
390 		if ((j = getcurjob(j)) != NULL)
391 			prev = j - jobtab + 1;
392 	}
393 #endif
394 	coredump = "";
395 	status = getjobstatus(jp);
396 	if (jp->state == 0) {
397 		statestr = "Running";
398 #if JOBS
399 	} else if (jp->state == JOBSTOPPED) {
400 		ps = jp->ps + jp->nprocs - 1;
401 		while (!WIFSTOPPED(ps->status) && ps > jp->ps)
402 			ps--;
403 		if (WIFSTOPPED(ps->status))
404 			i = WSTOPSIG(ps->status);
405 		else
406 			i = -1;
407 		statestr = strsignal(i);
408 		if (statestr == NULL)
409 			statestr = "Suspended";
410 #endif
411 	} else if (WIFEXITED(status)) {
412 		if (WEXITSTATUS(status) == 0)
413 			statestr = "Done";
414 		else {
415 			fmtstr(statebuf, sizeof(statebuf), "Done(%d)",
416 			    WEXITSTATUS(status));
417 			statestr = statebuf;
418 		}
419 	} else {
420 		i = WTERMSIG(status);
421 		statestr = strsignal(i);
422 		if (statestr == NULL)
423 			statestr = "Unknown signal";
424 		if (WCOREDUMP(status))
425 			coredump = " (core dumped)";
426 	}
427 
428 	for (ps = jp->ps ; procno > 0 ; ps++, procno--) { /* for each process */
429 		if (mode == SHOWJOBS_PIDS || mode == SHOWJOBS_PGIDS) {
430 			out1fmt("%d\n", (int)ps->pid);
431 			continue;
432 		}
433 		if (mode != SHOWJOBS_VERBOSE && ps != jp->ps)
434 			continue;
435 		if (jobno == curr && ps == jp->ps)
436 			c = '+';
437 		else if (jobno == prev && ps == jp->ps)
438 			c = '-';
439 		else
440 			c = ' ';
441 		if (ps == jp->ps)
442 			fmtstr(s, 64, "[%d] %c ", jobno, c);
443 		else
444 			fmtstr(s, 64, "    %c ", c);
445 		out1str(s);
446 		col = strlen(s);
447 		if (mode == SHOWJOBS_VERBOSE) {
448 			fmtstr(s, 64, "%d ", (int)ps->pid);
449 			out1str(s);
450 			col += strlen(s);
451 		}
452 		if (ps == jp->ps) {
453 			out1str(statestr);
454 			out1str(coredump);
455 			col += strlen(statestr) + strlen(coredump);
456 		}
457 		do {
458 			out1c(' ');
459 			col++;
460 		} while (col < 30);
461 		if (mode == SHOWJOBS_VERBOSE) {
462 			out1str(ps->cmd);
463 			out1c('\n');
464 		} else
465 			printjobcmd(jp);
466 	}
467 }
468 
469 /*
470  * Print a list of jobs.  If "change" is nonzero, only print jobs whose
471  * statuses have changed since the last call to showjobs.
472  *
473  * If the shell is interrupted in the process of creating a job, the
474  * result may be a job structure containing zero processes.  Such structures
475  * will be freed here.
476  */
477 
478 void
showjobs(int change,int mode)479 showjobs(int change, int mode)
480 {
481 	int jobno;
482 	struct job *jp;
483 
484 	TRACE(("showjobs(%d) called\n", change));
485 	checkzombies();
486 	for (jobno = 1, jp = jobtab ; jobno <= njobs ; jobno++, jp++) {
487 		if (! jp->used)
488 			continue;
489 		if (jp->nprocs == 0) {
490 			freejob(jp);
491 			continue;
492 		}
493 		if (change && ! jp->changed)
494 			continue;
495 		showjob(jp, mode);
496 		if (mode == SHOWJOBS_DEFAULT || mode == SHOWJOBS_VERBOSE) {
497 			jp->changed = 0;
498 			/* Hack: discard jobs for which $! has not been
499 			 * referenced in interactive mode when they terminate.
500 			 */
501 			if (jp->state == JOBDONE && !jp->remembered &&
502 					(iflag || jp != bgjob)) {
503 				freejob(jp);
504 			}
505 		}
506 	}
507 }
508 
509 
510 /*
511  * Mark a job structure as unused.
512  */
513 
514 static void
freejob(struct job * jp)515 freejob(struct job *jp)
516 {
517 	struct procstat *ps;
518 	int i;
519 
520 	INTOFF;
521 	if (bgjob == jp)
522 		bgjob = NULL;
523 	for (i = jp->nprocs, ps = jp->ps ; --i >= 0 ; ps++) {
524 		if (ps->cmd != nullstr)
525 			ckfree(ps->cmd);
526 	}
527 	if (jp->ps != &jp->ps0)
528 		ckfree(jp->ps);
529 	jp->used = 0;
530 #if JOBS
531 	deljob(jp);
532 #endif
533 	INTON;
534 }
535 
536 
537 
538 int
waitcmd(int argc __unused,char ** argv __unused)539 waitcmd(int argc __unused, char **argv __unused)
540 {
541 	struct job *job;
542 	int retval;
543 
544 	nextopt("");
545 	if (*argptr == NULL)
546 		return (waitcmdloop(NULL));
547 
548 	do {
549 		job = getjob_nonotfound(*argptr);
550 		if (job == NULL)
551 			retval = 127;
552 		else
553 			retval = waitcmdloop(job);
554 		argptr++;
555 	} while (*argptr != NULL);
556 
557 	return (retval);
558 }
559 
560 static int
waitcmdloop(struct job * job)561 waitcmdloop(struct job *job)
562 {
563 	int status, retval, sig;
564 	struct job *jp;
565 
566 	/*
567 	 * Loop until a process is terminated or stopped, or a SIGINT is
568 	 * received.
569 	 */
570 
571 	do {
572 		if (job != NULL) {
573 			if (job->state == JOBDONE) {
574 				status = getjobstatus(job);
575 				if (WIFEXITED(status))
576 					retval = WEXITSTATUS(status);
577 				else
578 					retval = WTERMSIG(status) + 128;
579 				if (! iflag || ! job->changed)
580 					freejob(job);
581 				else {
582 					job->remembered = 0;
583 					if (job == bgjob)
584 						bgjob = NULL;
585 				}
586 				return retval;
587 			}
588 		} else {
589 			for (jp = jobtab ; jp < jobtab + njobs; jp++)
590 				if (jp->used && jp->state == JOBDONE) {
591 					if (! iflag || ! jp->changed)
592 						freejob(jp);
593 					else {
594 						jp->remembered = 0;
595 						if (jp == bgjob)
596 							bgjob = NULL;
597 					}
598 				}
599 			for (jp = jobtab ; ; jp++) {
600 				if (jp >= jobtab + njobs) {	/* no running procs */
601 					return 0;
602 				}
603 				if (jp->used && jp->state == 0)
604 					break;
605 			}
606 		}
607 	} while (dowait(DOWAIT_BLOCK | DOWAIT_SIG, (struct job *)NULL) != -1);
608 
609 	sig = pendingsig_waitcmd;
610 	pendingsig_waitcmd = 0;
611 	return sig + 128;
612 }
613 
614 
615 
616 int
jobidcmd(int argc __unused,char ** argv __unused)617 jobidcmd(int argc __unused, char **argv __unused)
618 {
619 	struct job *jp;
620 	int i;
621 
622 	nextopt("");
623 	jp = getjob(*argptr);
624 	for (i = 0 ; i < jp->nprocs ; ) {
625 		out1fmt("%d", (int)jp->ps[i].pid);
626 		out1c(++i < jp->nprocs? ' ' : '\n');
627 	}
628 	return 0;
629 }
630 
631 
632 
633 /*
634  * Convert a job name to a job structure.
635  */
636 
637 static struct job *
getjob_nonotfound(const char * name)638 getjob_nonotfound(const char *name)
639 {
640 	int jobno;
641 	struct job *found, *jp;
642 	size_t namelen;
643 	pid_t pid;
644 	int i;
645 
646 	if (name == NULL) {
647 #if JOBS
648 		name = "%+";
649 #else
650 		error("No current job");
651 #endif
652 	}
653 	if (name[0] == '%') {
654 		if (is_digit(name[1])) {
655 			jobno = number(name + 1);
656 			if (jobno > 0 && jobno <= njobs
657 			 && jobtab[jobno - 1].used != 0)
658 				return &jobtab[jobno - 1];
659 #if JOBS
660 		} else if ((name[1] == '%' || name[1] == '+') &&
661 		    name[2] == '\0') {
662 			if ((jp = getcurjob(NULL)) == NULL)
663 				error("No current job");
664 			return (jp);
665 		} else if (name[1] == '-' && name[2] == '\0') {
666 			if ((jp = getcurjob(NULL)) == NULL ||
667 			    (jp = getcurjob(jp)) == NULL)
668 				error("No previous job");
669 			return (jp);
670 #endif
671 		} else if (name[1] == '?') {
672 			found = NULL;
673 			for (jp = jobtab, i = njobs ; --i >= 0 ; jp++) {
674 				if (jp->used && jp->nprocs > 0
675 				 && strstr(jp->ps[0].cmd, name + 2) != NULL) {
676 					if (found)
677 						error("%s: ambiguous", name);
678 					found = jp;
679 				}
680 			}
681 			if (found != NULL)
682 				return (found);
683 		} else {
684 			namelen = strlen(name);
685 			found = NULL;
686 			for (jp = jobtab, i = njobs ; --i >= 0 ; jp++) {
687 				if (jp->used && jp->nprocs > 0
688 				 && strncmp(jp->ps[0].cmd, name + 1,
689 				 namelen - 1) == 0) {
690 					if (found)
691 						error("%s: ambiguous", name);
692 					found = jp;
693 				}
694 			}
695 			if (found)
696 				return found;
697 		}
698 	} else if (is_number(name)) {
699 		pid = (pid_t)number(name);
700 		for (jp = jobtab, i = njobs ; --i >= 0 ; jp++) {
701 			if (jp->used && jp->nprocs > 0
702 			 && jp->ps[jp->nprocs - 1].pid == pid)
703 				return jp;
704 		}
705 	}
706 	return NULL;
707 }
708 
709 
710 static struct job *
getjob(const char * name)711 getjob(const char *name)
712 {
713 	struct job *jp;
714 
715 	jp = getjob_nonotfound(name);
716 	if (jp == NULL)
717 		error("No such job: %s", name);
718 	return (jp);
719 }
720 
721 
722 int
killjob(const char * name,int sig)723 killjob(const char *name, int sig)
724 {
725 	struct job *jp;
726 	int i, ret;
727 
728 	jp = getjob(name);
729 	if (jp->state == JOBDONE)
730 		return 0;
731 	if (jp->jobctl)
732 		return kill(-jp->ps[0].pid, sig);
733 	ret = -1;
734 	errno = ESRCH;
735 	for (i = 0; i < jp->nprocs; i++)
736 		if (jp->ps[i].status == -1 || WIFSTOPPED(jp->ps[i].status)) {
737 			if (kill(jp->ps[i].pid, sig) == 0)
738 				ret = 0;
739 		} else
740 			ret = 0;
741 	return ret;
742 }
743 
744 /*
745  * Return a new job structure,
746  */
747 
748 struct job *
makejob(union node * node __unused,int nprocs)749 makejob(union node *node __unused, int nprocs)
750 {
751 	int i;
752 	struct job *jp;
753 
754 	for (i = njobs, jp = jobtab ; ; jp++) {
755 		if (--i < 0) {
756 			INTOFF;
757 			if (njobs == 0) {
758 				jobtab = ckmalloc(4 * sizeof jobtab[0]);
759 #if JOBS
760 				jobmru = NULL;
761 #endif
762 			} else {
763 				jp = ckmalloc((njobs + 4) * sizeof jobtab[0]);
764 				memcpy(jp, jobtab, njobs * sizeof jp[0]);
765 #if JOBS
766 				/* Relocate `next' pointers and list head */
767 				if (jobmru != NULL)
768 					jobmru = &jp[jobmru - jobtab];
769 				for (i = 0; i < njobs; i++)
770 					if (jp[i].next != NULL)
771 						jp[i].next = &jp[jp[i].next -
772 						    jobtab];
773 #endif
774 				if (bgjob != NULL)
775 					bgjob = &jp[bgjob - jobtab];
776 				/* Relocate `ps' pointers */
777 				for (i = 0; i < njobs; i++)
778 					if (jp[i].ps == &jobtab[i].ps0)
779 						jp[i].ps = &jp[i].ps0;
780 				ckfree(jobtab);
781 				jobtab = jp;
782 			}
783 			jp = jobtab + njobs;
784 			for (i = 4 ; --i >= 0 ; jobtab[njobs++].used = 0)
785 				;
786 			INTON;
787 			break;
788 		}
789 		if (jp->used == 0)
790 			break;
791 	}
792 	INTOFF;
793 	jp->state = 0;
794 	jp->used = 1;
795 	jp->changed = 0;
796 	jp->nprocs = 0;
797 	jp->foreground = 0;
798 	jp->remembered = 0;
799 	jp->pipefail = pipefailflag;
800 #if JOBS
801 	jp->jobctl = jobctl;
802 	jp->next = NULL;
803 #endif
804 	if (nprocs > 1) {
805 		jp->ps = ckmalloc(nprocs * sizeof (struct procstat));
806 	} else {
807 		jp->ps = &jp->ps0;
808 	}
809 	INTON;
810 	TRACE(("makejob(%p, %d) returns %%%td\n", (void *)node, nprocs,
811 	    jp - jobtab + 1));
812 	return jp;
813 }
814 
815 #if JOBS
816 static void
setcurjob(struct job * cj)817 setcurjob(struct job *cj)
818 {
819 	struct job *jp, *prev;
820 
821 	for (prev = NULL, jp = jobmru; jp != NULL; prev = jp, jp = jp->next) {
822 		if (jp == cj) {
823 			if (prev != NULL)
824 				prev->next = jp->next;
825 			else
826 				jobmru = jp->next;
827 			jp->next = jobmru;
828 			jobmru = cj;
829 			return;
830 		}
831 	}
832 	cj->next = jobmru;
833 	jobmru = cj;
834 }
835 
836 static void
deljob(struct job * j)837 deljob(struct job *j)
838 {
839 	struct job *jp, *prev;
840 
841 	for (prev = NULL, jp = jobmru; jp != NULL; prev = jp, jp = jp->next) {
842 		if (jp == j) {
843 			if (prev != NULL)
844 				prev->next = jp->next;
845 			else
846 				jobmru = jp->next;
847 			return;
848 		}
849 	}
850 }
851 
852 /*
853  * Return the most recently used job that isn't `nj', and preferably one
854  * that is stopped.
855  */
856 static struct job *
getcurjob(struct job * nj)857 getcurjob(struct job *nj)
858 {
859 	struct job *jp;
860 
861 	/* Try to find a stopped one.. */
862 	for (jp = jobmru; jp != NULL; jp = jp->next)
863 		if (jp->used && jp != nj && jp->state == JOBSTOPPED)
864 			return (jp);
865 	/* Otherwise the most recently used job that isn't `nj' */
866 	for (jp = jobmru; jp != NULL; jp = jp->next)
867 		if (jp->used && jp != nj)
868 			return (jp);
869 
870 	return (NULL);
871 }
872 
873 #endif
874 
875 /*
876  * Fork of a subshell.  If we are doing job control, give the subshell its
877  * own process group.  Jp is a job structure that the job is to be added to.
878  * N is the command that will be evaluated by the child.  Both jp and n may
879  * be NULL.  The mode parameter can be one of the following:
880  *	FORK_FG - Fork off a foreground process.
881  *	FORK_BG - Fork off a background process.
882  *	FORK_NOJOB - Like FORK_FG, but don't give the process its own
883  *		     process group even if job control is on.
884  *
885  * When job control is turned off, background processes have their standard
886  * input redirected to /dev/null (except for the second and later processes
887  * in a pipeline).
888  */
889 
890 pid_t
forkshell(struct job * jp,union node * n,int mode)891 forkshell(struct job *jp, union node *n, int mode)
892 {
893 	pid_t pid;
894 	pid_t pgrp;
895 
896 	TRACE(("forkshell(%%%td, %p, %d) called\n", jp - jobtab, (void *)n,
897 	    mode));
898 	INTOFF;
899 	if (mode == FORK_BG && (jp == NULL || jp->nprocs == 0))
900 		checkzombies();
901 	flushall();
902 	pid = fork();
903 	if (pid == -1) {
904 		TRACE(("Fork failed, errno=%d\n", errno));
905 		INTON;
906 		error("Cannot fork: %s", strerror(errno));
907 	}
908 	if (pid == 0) {
909 		struct job *p;
910 		int wasroot;
911 		int i;
912 
913 		TRACE(("Child shell %d\n", (int)getpid()));
914 		wasroot = rootshell;
915 		rootshell = 0;
916 		handler = &main_handler;
917 		closescript();
918 		INTON;
919 		forcelocal = 0;
920 		clear_traps();
921 #if JOBS
922 		jobctl = 0;		/* do job control only in root shell */
923 		if (wasroot && mode != FORK_NOJOB && mflag) {
924 			if (jp == NULL || jp->nprocs == 0)
925 				pgrp = getpid();
926 			else
927 				pgrp = jp->ps[0].pid;
928 			if (setpgid(0, pgrp) == 0 && mode == FORK_FG &&
929 			    ttyfd >= 0) {
930 				/*** this causes superfluous TIOCSPGRPS ***/
931 				if (tcsetpgrp(ttyfd, pgrp) < 0)
932 					error("tcsetpgrp failed, errno=%d", errno);
933 			}
934 			setsignal(SIGTSTP);
935 			setsignal(SIGTTOU);
936 		} else if (mode == FORK_BG) {
937 			ignoresig(SIGINT);
938 			ignoresig(SIGQUIT);
939 			if ((jp == NULL || jp->nprocs == 0) &&
940 			    ! fd0_redirected_p ()) {
941 				close(0);
942 				if (open(_PATH_DEVNULL, O_RDONLY) != 0)
943 					error("cannot open %s: %s",
944 					    _PATH_DEVNULL, strerror(errno));
945 			}
946 		}
947 #else
948 		if (mode == FORK_BG) {
949 			ignoresig(SIGINT);
950 			ignoresig(SIGQUIT);
951 			if ((jp == NULL || jp->nprocs == 0) &&
952 			    ! fd0_redirected_p ()) {
953 				close(0);
954 				if (open(_PATH_DEVNULL, O_RDONLY) != 0)
955 					error("cannot open %s: %s",
956 					    _PATH_DEVNULL, strerror(errno));
957 			}
958 		}
959 #endif
960 		INTOFF;
961 		for (i = njobs, p = jobtab ; --i >= 0 ; p++)
962 			if (p->used)
963 				freejob(p);
964 		INTON;
965 		if (wasroot && iflag) {
966 			setsignal(SIGINT);
967 			setsignal(SIGQUIT);
968 			setsignal(SIGTERM);
969 		}
970 		return pid;
971 	}
972 	if (rootshell && mode != FORK_NOJOB && mflag) {
973 		if (jp == NULL || jp->nprocs == 0)
974 			pgrp = pid;
975 		else
976 			pgrp = jp->ps[0].pid;
977 		setpgid(pid, pgrp);
978 	}
979 	if (mode == FORK_BG) {
980 		if (bgjob != NULL && bgjob->state == JOBDONE &&
981 		    !bgjob->remembered && !iflag)
982 			freejob(bgjob);
983 		backgndpid = pid;		/* set $! */
984 		bgjob = jp;
985 	}
986 	if (jp) {
987 		struct procstat *ps = &jp->ps[jp->nprocs++];
988 		ps->pid = pid;
989 		ps->status = -1;
990 		ps->cmd = nullstr;
991 		if (iflag && rootshell && n)
992 			ps->cmd = commandtext(n);
993 		jp->foreground = mode == FORK_FG;
994 #if JOBS
995 		setcurjob(jp);
996 #endif
997 	}
998 	INTON;
999 	TRACE(("In parent shell:  child = %d\n", (int)pid));
1000 	return pid;
1001 }
1002 
1003 
1004 pid_t
vforkexecshell(struct job * jp,char ** argv,char ** envp,const char * path,int idx,int pip[2])1005 vforkexecshell(struct job *jp, char **argv, char **envp, const char *path, int idx, int pip[2])
1006 {
1007 	pid_t pid;
1008 	struct jmploc jmploc;
1009 	struct jmploc *savehandler;
1010 	int inton;
1011 
1012 	TRACE(("vforkexecshell(%%%td, %s, %p) called\n", jp - jobtab, argv[0],
1013 	    (void *)pip));
1014 	inton = is_int_on();
1015 	INTOFF;
1016 	flushall();
1017 	savehandler = handler;
1018 	pid = vfork();
1019 	if (pid == -1) {
1020 		TRACE(("Vfork failed, errno=%d\n", errno));
1021 		INTON;
1022 		error("Cannot fork: %s", strerror(errno));
1023 	}
1024 	if (pid == 0) {
1025 		TRACE(("Child shell %d\n", (int)getpid()));
1026 		if (setjmp(jmploc.loc))
1027 			_exit(exception == EXEXEC ? exerrno : 2);
1028 		if (pip != NULL) {
1029 			close(pip[0]);
1030 			if (pip[1] != 1) {
1031 				dup2(pip[1], 1);
1032 				close(pip[1]);
1033 			}
1034 		}
1035 		handler = &jmploc;
1036 		shellexec(argv, envp, path, idx);
1037 	}
1038 	handler = savehandler;
1039 	if (jp) {
1040 		struct procstat *ps = &jp->ps[jp->nprocs++];
1041 		ps->pid = pid;
1042 		ps->status = -1;
1043 		ps->cmd = nullstr;
1044 		jp->foreground = 1;
1045 #if JOBS
1046 		setcurjob(jp);
1047 #endif
1048 	}
1049 	SETINTON(inton);
1050 	TRACE(("In parent shell:  child = %d\n", (int)pid));
1051 	return pid;
1052 }
1053 
1054 
1055 /*
1056  * Wait for job to finish.
1057  *
1058  * Under job control we have the problem that while a child process is
1059  * running interrupts generated by the user are sent to the child but not
1060  * to the shell.  This means that an infinite loop started by an inter-
1061  * active user may be hard to kill.  With job control turned off, an
1062  * interactive user may place an interactive program inside a loop.  If
1063  * the interactive program catches interrupts, the user doesn't want
1064  * these interrupts to also abort the loop.  The approach we take here
1065  * is to have the shell ignore interrupt signals while waiting for a
1066  * foreground process to terminate, and then send itself an interrupt
1067  * signal if the child process was terminated by an interrupt signal.
1068  * Unfortunately, some programs want to do a bit of cleanup and then
1069  * exit on interrupt; unless these processes terminate themselves by
1070  * sending a signal to themselves (instead of calling exit) they will
1071  * confuse this approach.
1072  */
1073 
1074 int
waitforjob(struct job * jp,int * signaled)1075 waitforjob(struct job *jp, int *signaled)
1076 {
1077 #if JOBS
1078 	int propagate_int = jp->jobctl && jp->foreground;
1079 #endif
1080 	int status;
1081 	int st;
1082 
1083 	INTOFF;
1084 	TRACE(("waitforjob(%%%td) called\n", jp - jobtab + 1));
1085 	while (jp->state == 0)
1086 		if (dowait(DOWAIT_BLOCK | (Tflag ? DOWAIT_SIG |
1087 		    DOWAIT_SIG_TRAP : 0), jp) == -1)
1088 			dotrap();
1089 #if JOBS
1090 	if (jp->jobctl) {
1091 		if (ttyfd >= 0 && tcsetpgrp(ttyfd, rootpid) < 0)
1092 			error("tcsetpgrp failed, errno=%d\n", errno);
1093 	}
1094 	if (jp->state == JOBSTOPPED)
1095 		setcurjob(jp);
1096 #endif
1097 	status = getjobstatus(jp);
1098 	if (signaled != NULL)
1099 		*signaled = WIFSIGNALED(status);
1100 	/* convert to 8 bits */
1101 	if (WIFEXITED(status))
1102 		st = WEXITSTATUS(status);
1103 #if JOBS
1104 	else if (WIFSTOPPED(status))
1105 		st = WSTOPSIG(status) + 128;
1106 #endif
1107 	else
1108 		st = WTERMSIG(status) + 128;
1109 	if (! JOBS || jp->state == JOBDONE)
1110 		freejob(jp);
1111 	if (int_pending()) {
1112 		if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGINT)
1113 			CLEAR_PENDING_INT;
1114 	}
1115 #if JOBS
1116 	else if (rootshell && propagate_int &&
1117 			WIFSIGNALED(status) && WTERMSIG(status) == SIGINT)
1118 		kill(getpid(), SIGINT);
1119 #endif
1120 	INTON;
1121 	return st;
1122 }
1123 
1124 
1125 static void
dummy_handler(int sig __unused)1126 dummy_handler(int sig __unused)
1127 {
1128 }
1129 
1130 /*
1131  * Wait for a process to terminate.
1132  */
1133 
1134 static pid_t
dowait(int mode,struct job * job)1135 dowait(int mode, struct job *job)
1136 {
1137 	struct sigaction sa, osa;
1138 	sigset_t mask, omask;
1139 	pid_t pid;
1140 	int status;
1141 	struct procstat *sp;
1142 	struct job *jp;
1143 	struct job *thisjob;
1144 	const char *sigstr;
1145 	int done;
1146 	int stopped;
1147 	int sig;
1148 	int coredump;
1149 	int wflags;
1150 	int restore_sigchld;
1151 
1152 	TRACE(("dowait(%d, %p) called\n", mode, job));
1153 	restore_sigchld = 0;
1154 	if ((mode & DOWAIT_SIG) != 0) {
1155 		sigfillset(&mask);
1156 		sigprocmask(SIG_BLOCK, &mask, &omask);
1157 		INTOFF;
1158 		if (!issigchldtrapped()) {
1159 			restore_sigchld = 1;
1160 			sa.sa_handler = dummy_handler;
1161 			sa.sa_flags = 0;
1162 			sigemptyset(&sa.sa_mask);
1163 			sigaction(SIGCHLD, &sa, &osa);
1164 		}
1165 	}
1166 	do {
1167 #if JOBS
1168 		if (iflag)
1169 			wflags = WUNTRACED | WCONTINUED;
1170 		else
1171 #endif
1172 			wflags = 0;
1173 		if ((mode & (DOWAIT_BLOCK | DOWAIT_SIG)) != DOWAIT_BLOCK)
1174 			wflags |= WNOHANG;
1175 		pid = wait3(&status, wflags, (struct rusage *)NULL);
1176 		TRACE(("wait returns %d, status=%d\n", (int)pid, status));
1177 		if (pid == 0 && (mode & DOWAIT_SIG) != 0) {
1178 			pid = -1;
1179 			if (((mode & DOWAIT_SIG_TRAP) != 0 ?
1180 			    pendingsig : pendingsig_waitcmd) != 0) {
1181 				errno = EINTR;
1182 				break;
1183 			}
1184 			sigsuspend(&omask);
1185 			if (int_pending())
1186 				break;
1187 		}
1188 	} while (pid == -1 && errno == EINTR);
1189 	if (pid == -1 && errno == ECHILD && job != NULL)
1190 		job->state = JOBDONE;
1191 	if ((mode & DOWAIT_SIG) != 0) {
1192 		if (restore_sigchld)
1193 			sigaction(SIGCHLD, &osa, NULL);
1194 		sigprocmask(SIG_SETMASK, &omask, NULL);
1195 		INTON;
1196 	}
1197 	if (pid <= 0)
1198 		return pid;
1199 	INTOFF;
1200 	thisjob = NULL;
1201 	for (jp = jobtab ; jp < jobtab + njobs ; jp++) {
1202 		if (jp->used && jp->nprocs > 0) {
1203 			done = 1;
1204 			stopped = 1;
1205 			for (sp = jp->ps ; sp < jp->ps + jp->nprocs ; sp++) {
1206 				if (sp->pid == -1)
1207 					continue;
1208 				if (sp->pid == pid && (sp->status == -1 ||
1209 				    WIFSTOPPED(sp->status))) {
1210 					TRACE(("Changing status of proc %d from 0x%x to 0x%x\n",
1211 						   (int)pid, sp->status,
1212 						   status));
1213 					if (WIFCONTINUED(status)) {
1214 						sp->status = -1;
1215 						jp->state = 0;
1216 					} else
1217 						sp->status = status;
1218 					thisjob = jp;
1219 				}
1220 				if (sp->status == -1)
1221 					stopped = 0;
1222 				else if (WIFSTOPPED(sp->status))
1223 					done = 0;
1224 			}
1225 			if (stopped) {		/* stopped or done */
1226 				int state = done? JOBDONE : JOBSTOPPED;
1227 				if (jp->state != state) {
1228 					TRACE(("Job %td: changing state from %d to %d\n", jp - jobtab + 1, jp->state, state));
1229 					jp->state = state;
1230 					if (jp != job) {
1231 						if (done && !jp->remembered &&
1232 						    !iflag && jp != bgjob)
1233 							freejob(jp);
1234 #if JOBS
1235 						else if (done)
1236 							deljob(jp);
1237 #endif
1238 					}
1239 				}
1240 			}
1241 		}
1242 	}
1243 	INTON;
1244 	if (!thisjob || thisjob->state == 0)
1245 		;
1246 	else if ((!rootshell || !iflag || thisjob == job) &&
1247 	    thisjob->foreground && thisjob->state != JOBSTOPPED) {
1248 		sig = 0;
1249 		coredump = 0;
1250 		for (sp = thisjob->ps; sp < thisjob->ps + thisjob->nprocs; sp++)
1251 			if (WIFSIGNALED(sp->status)) {
1252 				sig = WTERMSIG(sp->status);
1253 				coredump = WCOREDUMP(sp->status);
1254 			}
1255 		if (sig > 0 && sig != SIGINT && sig != SIGPIPE) {
1256 			sigstr = strsignal(sig);
1257 			if (sigstr != NULL)
1258 				out2str(sigstr);
1259 			else
1260 				out2str("Unknown signal");
1261 			if (coredump)
1262 				out2str(" (core dumped)");
1263 			out2c('\n');
1264 			flushout(out2);
1265 		}
1266 	} else {
1267 		TRACE(("Not printing status, rootshell=%d, job=%p\n", rootshell, job));
1268 		thisjob->changed = 1;
1269 	}
1270 	return pid;
1271 }
1272 
1273 
1274 
1275 /*
1276  * return 1 if there are stopped jobs, otherwise 0
1277  */
1278 int job_warning = 0;
1279 int
stoppedjobs(void)1280 stoppedjobs(void)
1281 {
1282 	int jobno;
1283 	struct job *jp;
1284 
1285 	if (job_warning)
1286 		return (0);
1287 	for (jobno = 1, jp = jobtab; jobno <= njobs; jobno++, jp++) {
1288 		if (jp->used == 0)
1289 			continue;
1290 		if (jp->state == JOBSTOPPED) {
1291 			out2fmt_flush("You have stopped jobs.\n");
1292 			job_warning = 2;
1293 			return (1);
1294 		}
1295 	}
1296 
1297 	return (0);
1298 }
1299 
1300 
1301 static void
checkzombies(void)1302 checkzombies(void)
1303 {
1304 	while (njobs > 0 && dowait(0, NULL) > 0)
1305 		;
1306 }
1307 
1308 
1309 int
backgndpidset(void)1310 backgndpidset(void)
1311 {
1312 	return backgndpid != -1;
1313 }
1314 
1315 
1316 pid_t
backgndpidval(void)1317 backgndpidval(void)
1318 {
1319 	if (bgjob != NULL && !forcelocal)
1320 		bgjob->remembered = 1;
1321 	return backgndpid;
1322 }
1323 
1324 /*
1325  * Return a string identifying a command (to be printed by the
1326  * jobs command.
1327  */
1328 
1329 static char *cmdnextc;
1330 static int cmdnleft;
1331 #define MAXCMDTEXT	200
1332 
1333 char *
commandtext(union node * n)1334 commandtext(union node *n)
1335 {
1336 	char *name;
1337 
1338 	cmdnextc = name = ckmalloc(MAXCMDTEXT);
1339 	cmdnleft = MAXCMDTEXT - 4;
1340 	cmdtxt(n);
1341 	*cmdnextc = '\0';
1342 	return name;
1343 }
1344 
1345 
1346 static void
cmdtxtdogroup(union node * n)1347 cmdtxtdogroup(union node *n)
1348 {
1349 	cmdputs("; do ");
1350 	cmdtxt(n);
1351 	cmdputs("; done");
1352 }
1353 
1354 
1355 static void
cmdtxtredir(union node * n,const char * op,int deffd)1356 cmdtxtredir(union node *n, const char *op, int deffd)
1357 {
1358 	char s[2];
1359 
1360 	if (n->nfile.fd != deffd) {
1361 		s[0] = n->nfile.fd + '0';
1362 		s[1] = '\0';
1363 		cmdputs(s);
1364 	}
1365 	cmdputs(op);
1366 	if (n->type == NTOFD || n->type == NFROMFD) {
1367 		if (n->ndup.dupfd >= 0)
1368 			s[0] = n->ndup.dupfd + '0';
1369 		else
1370 			s[0] = '-';
1371 		s[1] = '\0';
1372 		cmdputs(s);
1373 	} else {
1374 		cmdtxt(n->nfile.fname);
1375 	}
1376 }
1377 
1378 
1379 static void
cmdtxt(union node * n)1380 cmdtxt(union node *n)
1381 {
1382 	union node *np;
1383 	struct nodelist *lp;
1384 
1385 	if (n == NULL)
1386 		return;
1387 	switch (n->type) {
1388 	case NSEMI:
1389 		cmdtxt(n->nbinary.ch1);
1390 		cmdputs("; ");
1391 		cmdtxt(n->nbinary.ch2);
1392 		break;
1393 	case NAND:
1394 		cmdtxt(n->nbinary.ch1);
1395 		cmdputs(" && ");
1396 		cmdtxt(n->nbinary.ch2);
1397 		break;
1398 	case NOR:
1399 		cmdtxt(n->nbinary.ch1);
1400 		cmdputs(" || ");
1401 		cmdtxt(n->nbinary.ch2);
1402 		break;
1403 	case NPIPE:
1404 		for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
1405 			cmdtxt(lp->n);
1406 			if (lp->next)
1407 				cmdputs(" | ");
1408 		}
1409 		break;
1410 	case NSUBSHELL:
1411 		cmdputs("(");
1412 		cmdtxt(n->nredir.n);
1413 		cmdputs(")");
1414 		break;
1415 	case NREDIR:
1416 	case NBACKGND:
1417 		cmdtxt(n->nredir.n);
1418 		break;
1419 	case NIF:
1420 		cmdputs("if ");
1421 		cmdtxt(n->nif.test);
1422 		cmdputs("; then ");
1423 		cmdtxt(n->nif.ifpart);
1424 		cmdputs("...");
1425 		break;
1426 	case NWHILE:
1427 		cmdputs("while ");
1428 		cmdtxt(n->nbinary.ch1);
1429 		cmdtxtdogroup(n->nbinary.ch2);
1430 		break;
1431 	case NUNTIL:
1432 		cmdputs("until ");
1433 		cmdtxt(n->nbinary.ch1);
1434 		cmdtxtdogroup(n->nbinary.ch2);
1435 		break;
1436 	case NFOR:
1437 		cmdputs("for ");
1438 		cmdputs(n->nfor.var);
1439 		cmdputs(" in ...");
1440 		break;
1441 	case NCASE:
1442 		cmdputs("case ");
1443 		cmdputs(n->ncase.expr->narg.text);
1444 		cmdputs(" in ...");
1445 		break;
1446 	case NDEFUN:
1447 		cmdputs(n->narg.text);
1448 		cmdputs("() ...");
1449 		break;
1450 	case NNOT:
1451 		cmdputs("! ");
1452 		cmdtxt(n->nnot.com);
1453 		break;
1454 	case NCMD:
1455 		for (np = n->ncmd.args ; np ; np = np->narg.next) {
1456 			cmdtxt(np);
1457 			if (np->narg.next)
1458 				cmdputs(" ");
1459 		}
1460 		for (np = n->ncmd.redirect ; np ; np = np->nfile.next) {
1461 			cmdputs(" ");
1462 			cmdtxt(np);
1463 		}
1464 		break;
1465 	case NARG:
1466 		cmdputs(n->narg.text);
1467 		break;
1468 	case NTO:
1469 		cmdtxtredir(n, ">", 1);
1470 		break;
1471 	case NAPPEND:
1472 		cmdtxtredir(n, ">>", 1);
1473 		break;
1474 	case NTOFD:
1475 		cmdtxtredir(n, ">&", 1);
1476 		break;
1477 	case NCLOBBER:
1478 		cmdtxtredir(n, ">|", 1);
1479 		break;
1480 	case NFROM:
1481 		cmdtxtredir(n, "<", 0);
1482 		break;
1483 	case NFROMTO:
1484 		cmdtxtredir(n, "<>", 0);
1485 		break;
1486 	case NFROMFD:
1487 		cmdtxtredir(n, "<&", 0);
1488 		break;
1489 	case NHERE:
1490 	case NXHERE:
1491 		cmdputs("<<...");
1492 		break;
1493 	default:
1494 		cmdputs("???");
1495 		break;
1496 	}
1497 }
1498 
1499 
1500 
1501 static void
cmdputs(const char * s)1502 cmdputs(const char *s)
1503 {
1504 	const char *p;
1505 	char *q;
1506 	char c;
1507 	int subtype = 0;
1508 
1509 	if (cmdnleft <= 0)
1510 		return;
1511 	p = s;
1512 	q = cmdnextc;
1513 	while ((c = *p++) != '\0') {
1514 		if (c == CTLESC)
1515 			*q++ = *p++;
1516 		else if (c == CTLVAR) {
1517 			*q++ = '$';
1518 			if (--cmdnleft > 0)
1519 				*q++ = '{';
1520 			subtype = *p++;
1521 			if ((subtype & VSTYPE) == VSLENGTH && --cmdnleft > 0)
1522 				*q++ = '#';
1523 		} else if (c == '=' && subtype != 0) {
1524 			*q = "}-+?=##%%\0X"[(subtype & VSTYPE) - VSNORMAL];
1525 			if (*q)
1526 				q++;
1527 			else
1528 				cmdnleft++;
1529 			if (((subtype & VSTYPE) == VSTRIMLEFTMAX ||
1530 			    (subtype & VSTYPE) == VSTRIMRIGHTMAX) &&
1531 			    --cmdnleft > 0)
1532 				*q = q[-1], q++;
1533 			subtype = 0;
1534 		} else if (c == CTLENDVAR) {
1535 			*q++ = '}';
1536 		} else if (c == CTLBACKQ || c == CTLBACKQ+CTLQUOTE) {
1537 			cmdnleft -= 5;
1538 			if (cmdnleft > 0) {
1539 				*q++ = '$';
1540 				*q++ = '(';
1541 				*q++ = '.';
1542 				*q++ = '.';
1543 				*q++ = '.';
1544 				*q++ = ')';
1545 			}
1546 		} else if (c == CTLARI) {
1547 			cmdnleft -= 2;
1548 			if (cmdnleft > 0) {
1549 				*q++ = '$';
1550 				*q++ = '(';
1551 				*q++ = '(';
1552 			}
1553 			p++;
1554 		} else if (c == CTLENDARI) {
1555 			if (--cmdnleft > 0) {
1556 				*q++ = ')';
1557 				*q++ = ')';
1558 			}
1559 		} else if (c == CTLQUOTEMARK || c == CTLQUOTEEND)
1560 			cmdnleft++; /* ignore */
1561 		else
1562 			*q++ = c;
1563 		if (--cmdnleft <= 0) {
1564 			*q++ = '.';
1565 			*q++ = '.';
1566 			*q++ = '.';
1567 			break;
1568 		}
1569 	}
1570 	cmdnextc = q;
1571 }
1572