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