]> git.ipfire.org Git - thirdparty/bash.git/blob - jobs.c
commit bash-20110525 snapshot
[thirdparty/bash.git] / jobs.c
1 /* jobs.c - functions that make children, remember them, and handle their termination. */
2
3 /* This file works with both POSIX and BSD systems. It implements job
4 control. */
5
6 /* Copyright (C) 1989-2011 Free Software Foundation, Inc.
7
8 This file is part of GNU Bash, the Bourne Again SHell.
9
10 Bash is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
14
15 Bash is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with Bash. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "config.h"
25
26 #include "bashtypes.h"
27 #include "trap.h"
28 #include <stdio.h>
29 #include <signal.h>
30 #include <errno.h>
31
32 #if defined (HAVE_UNISTD_H)
33 # include <unistd.h>
34 #endif
35
36 #include "posixtime.h"
37
38 #if defined (HAVE_SYS_RESOURCE_H) && defined (HAVE_WAIT3) && !defined (_POSIX_VERSION) && !defined (RLIMTYPE)
39 # include <sys/resource.h>
40 #endif /* !_POSIX_VERSION && HAVE_SYS_RESOURCE_H && HAVE_WAIT3 && !RLIMTYPE */
41
42 #if defined (HAVE_SYS_FILE_H)
43 # include <sys/file.h>
44 #endif
45
46 #include "filecntl.h"
47 #include <sys/ioctl.h>
48 #include <sys/param.h>
49
50 #if defined (BUFFERED_INPUT)
51 # include "input.h"
52 #endif
53
54 /* Need to include this up here for *_TTY_DRIVER definitions. */
55 #include "shtty.h"
56
57 /* Define this if your output is getting swallowed. It's a no-op on
58 machines with the termio or termios tty drivers. */
59 /* #define DRAIN_OUTPUT */
60
61 /* For the TIOCGPGRP and TIOCSPGRP ioctl parameters on HP-UX */
62 #if defined (hpux) && !defined (TERMIOS_TTY_DRIVER)
63 # include <bsdtty.h>
64 #endif /* hpux && !TERMIOS_TTY_DRIVER */
65
66 #include "bashansi.h"
67 #include "bashintl.h"
68 #include "shell.h"
69 #include "jobs.h"
70 #include "execute_cmd.h"
71 #include "flags.h"
72
73 #include "builtins/builtext.h"
74 #include "builtins/common.h"
75
76 #if !defined (errno)
77 extern int errno;
78 #endif /* !errno */
79
80 #if !defined (HAVE_KILLPG)
81 extern int killpg __P((pid_t, int));
82 #endif
83
84 #define DEFAULT_CHILD_MAX 32
85 #if !defined (DEBUG)
86 #define MAX_JOBS_IN_ARRAY 4096 /* production */
87 #else
88 #define MAX_JOBS_IN_ARRAY 128 /* testing */
89 #endif
90
91 /* Flag values for second argument to delete_job */
92 #define DEL_WARNSTOPPED 1 /* warn about deleting stopped jobs */
93 #define DEL_NOBGPID 2 /* don't add pgrp leader to bgpids */
94
95 /* Take care of system dependencies that must be handled when waiting for
96 children. The arguments to the WAITPID macro match those to the Posix.1
97 waitpid() function. */
98
99 #if defined (ultrix) && defined (mips) && defined (_POSIX_VERSION)
100 # define WAITPID(pid, statusp, options) \
101 wait3 ((union wait *)statusp, options, (struct rusage *)0)
102 #else
103 # if defined (_POSIX_VERSION) || defined (HAVE_WAITPID)
104 # define WAITPID(pid, statusp, options) \
105 waitpid ((pid_t)pid, statusp, options)
106 # else
107 # if defined (HAVE_WAIT3)
108 # define WAITPID(pid, statusp, options) \
109 wait3 (statusp, options, (struct rusage *)0)
110 # else
111 # define WAITPID(pid, statusp, options) \
112 wait3 (statusp, options, (int *)0)
113 # endif /* HAVE_WAIT3 */
114 # endif /* !_POSIX_VERSION && !HAVE_WAITPID*/
115 #endif /* !(Ultrix && mips && _POSIX_VERSION) */
116
117 /* getpgrp () varies between systems. Even systems that claim to be
118 Posix.1 compatible lie sometimes (Ultrix, SunOS4, apollo). */
119 #if defined (GETPGRP_VOID)
120 # define getpgid(p) getpgrp ()
121 #else
122 # define getpgid(p) getpgrp (p)
123 #endif /* !GETPGRP_VOID */
124
125 /* If the system needs it, REINSTALL_SIGCHLD_HANDLER will reinstall the
126 handler for SIGCHLD. */
127 #if defined (MUST_REINSTALL_SIGHANDLERS)
128 # define REINSTALL_SIGCHLD_HANDLER signal (SIGCHLD, sigchld_handler)
129 #else
130 # define REINSTALL_SIGCHLD_HANDLER
131 #endif /* !MUST_REINSTALL_SIGHANDLERS */
132
133 /* Some systems let waitpid(2) tell callers about stopped children. */
134 #if !defined (WCONTINUED) || defined (WCONTINUED_BROKEN)
135 # undef WCONTINUED
136 # define WCONTINUED 0
137 #endif
138 #if !defined (WIFCONTINUED)
139 # define WIFCONTINUED(s) (0)
140 #endif
141
142 /* The number of additional slots to allocate when we run out. */
143 #define JOB_SLOTS 8
144
145 typedef int sh_job_map_func_t __P((JOB *, int, int, int));
146
147 /* Variables used here but defined in other files. */
148 extern int subshell_environment, line_number;
149 extern int posixly_correct, shell_level;
150 extern int last_command_exit_value, last_command_exit_signal;
151 extern int loop_level, breaking;
152 extern int executing_list;
153 extern int sourcelevel;
154 extern int running_trap;
155 extern sh_builtin_func_t *this_shell_builtin;
156 extern char *shell_name, *this_command_name;
157 extern sigset_t top_level_mask;
158 extern procenv_t wait_intr_buf;
159 extern int wait_signal_received;
160 extern WORD_LIST *subst_assign_varlist;
161
162 static struct jobstats zerojs = { -1L, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NO_JOB, NO_JOB, 0, 0 };
163 struct jobstats js = { -1L, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NO_JOB, NO_JOB, 0, 0 };
164
165 struct bgpids bgpids = { 0, 0, 0 };
166
167 /* The array of known jobs. */
168 JOB **jobs = (JOB **)NULL;
169
170 #if 0
171 /* The number of slots currently allocated to JOBS. */
172 int job_slots = 0;
173 #endif
174
175 /* The controlling tty for this shell. */
176 int shell_tty = -1;
177
178 /* The shell's process group. */
179 pid_t shell_pgrp = NO_PID;
180
181 /* The terminal's process group. */
182 pid_t terminal_pgrp = NO_PID;
183
184 /* The process group of the shell's parent. */
185 pid_t original_pgrp = NO_PID;
186
187 /* The process group of the pipeline currently being made. */
188 pid_t pipeline_pgrp = (pid_t)0;
189
190 #if defined (PGRP_PIPE)
191 /* Pipes which each shell uses to communicate with the process group leader
192 until all of the processes in a pipeline have been started. Then the
193 process leader is allowed to continue. */
194 int pgrp_pipe[2] = { -1, -1 };
195 #endif
196
197 #if 0
198 /* The job which is current; i.e. the one that `%+' stands for. */
199 int current_job = NO_JOB;
200
201 /* The previous job; i.e. the one that `%-' stands for. */
202 int previous_job = NO_JOB;
203 #endif
204
205 /* Last child made by the shell. */
206 pid_t last_made_pid = NO_PID;
207
208 /* Pid of the last asynchronous child. */
209 pid_t last_asynchronous_pid = NO_PID;
210
211 /* The pipeline currently being built. */
212 PROCESS *the_pipeline = (PROCESS *)NULL;
213
214 /* If this is non-zero, do job control. */
215 int job_control = 1;
216
217 /* Call this when you start making children. */
218 int already_making_children = 0;
219
220 /* If this is non-zero, $LINES and $COLUMNS are reset after every process
221 exits from get_tty_state(). */
222 int check_window_size;
223
224 /* Functions local to this file. */
225
226 static sighandler wait_sigint_handler __P((int));
227 static sighandler sigchld_handler __P((int));
228 static sighandler sigcont_sighandler __P((int));
229 static sighandler sigstop_sighandler __P((int));
230
231 static int waitchld __P((pid_t, int));
232
233 static PROCESS *find_pipeline __P((pid_t, int, int *));
234 static PROCESS *find_process __P((pid_t, int, int *));
235
236 static char *current_working_directory __P((void));
237 static char *job_working_directory __P((void));
238 static char *j_strsignal __P((int));
239 static char *printable_job_status __P((int, PROCESS *, int));
240
241 static PROCESS *find_last_proc __P((int, int));
242 static pid_t find_last_pid __P((int, int));
243
244 static int set_new_line_discipline __P((int));
245 static int map_over_jobs __P((sh_job_map_func_t *, int, int));
246 static int job_last_stopped __P((int));
247 static int job_last_running __P((int));
248 static int most_recent_job_in_state __P((int, JOB_STATE));
249 static int find_job __P((pid_t, int, PROCESS **));
250 static int print_job __P((JOB *, int, int, int));
251 static int process_exit_status __P((WAIT));
252 static int process_exit_signal __P((WAIT));
253 static int set_job_status_and_cleanup __P((int));
254
255 static WAIT job_signal_status __P((int));
256 static WAIT raw_job_exit_status __P((int));
257
258 static void notify_of_job_status __P((void));
259 static void reset_job_indices __P((void));
260 static void cleanup_dead_jobs __P((void));
261 static int processes_in_job __P((int));
262 static void realloc_jobs_list __P((void));
263 static int compact_jobs_list __P((int));
264 static int discard_pipeline __P((PROCESS *));
265 static void add_process __P((char *, pid_t));
266 static void print_pipeline __P((PROCESS *, int, int, FILE *));
267 static void pretty_print_job __P((int, int, FILE *));
268 static void set_current_job __P((int));
269 static void reset_current __P((void));
270 static void set_job_running __P((int));
271 static void setjstatus __P((int));
272 static int maybe_give_terminal_to __P((pid_t, pid_t, int));
273 static void mark_all_jobs_as_dead __P((void));
274 static void mark_dead_jobs_as_notified __P((int));
275 static void restore_sigint_handler __P((void));
276 #if defined (PGRP_PIPE)
277 static void pipe_read __P((int *));
278 #endif
279
280 static struct pidstat *bgp_alloc __P((pid_t, int));
281 static struct pidstat *bgp_add __P((pid_t, int));
282 static int bgp_delete __P((pid_t));
283 static void bgp_clear __P((void));
284 static int bgp_search __P((pid_t));
285 static void bgp_prune __P((void));
286
287 #if defined (ARRAY_VARS)
288 static int *pstatuses; /* list of pipeline statuses */
289 static int statsize;
290 #endif
291
292 /* Used to synchronize between wait_for and other functions and the SIGCHLD
293 signal handler. */
294 static int sigchld;
295 static int queue_sigchld;
296
297 #define QUEUE_SIGCHLD(os) (os) = sigchld, queue_sigchld++
298
299 #define UNQUEUE_SIGCHLD(os) \
300 do { \
301 queue_sigchld--; \
302 if (queue_sigchld == 0 && os != sigchld) \
303 waitchld (-1, 0); \
304 } while (0)
305
306 static SigHandler *old_tstp, *old_ttou, *old_ttin;
307 static SigHandler *old_cont = (SigHandler *)SIG_DFL;
308
309 /* A place to temporarily save the current pipeline. */
310 static PROCESS *saved_pipeline;
311 static int saved_already_making_children;
312
313 /* Set this to non-zero whenever you don't want the jobs list to change at
314 all: no jobs deleted and no status change notifications. This is used,
315 for example, when executing SIGCHLD traps, which may run arbitrary
316 commands. */
317 static int jobs_list_frozen;
318
319 static char retcode_name_buffer[64];
320
321 /* flags to detect pid wraparound */
322 static pid_t first_pid = NO_PID;
323 static int pid_wrap = -1;
324
325 #if !defined (_POSIX_VERSION)
326
327 /* These are definitions to map POSIX 1003.1 functions onto existing BSD
328 library functions and system calls. */
329 #define setpgid(pid, pgrp) setpgrp (pid, pgrp)
330 #define tcsetpgrp(fd, pgrp) ioctl ((fd), TIOCSPGRP, &(pgrp))
331
332 pid_t
333 tcgetpgrp (fd)
334 int fd;
335 {
336 pid_t pgrp;
337
338 /* ioctl will handle setting errno correctly. */
339 if (ioctl (fd, TIOCGPGRP, &pgrp) < 0)
340 return (-1);
341 return (pgrp);
342 }
343
344 #endif /* !_POSIX_VERSION */
345
346 /* Initialize the global job stats structure and other bookkeeping variables */
347 void
348 init_job_stats ()
349 {
350 js = zerojs;
351 first_pid = NO_PID;
352 pid_wrap = -1;
353 }
354
355 /* Return the working directory for the current process. Unlike
356 job_working_directory, this does not call malloc (), nor do any
357 of the functions it calls. This is so that it can safely be called
358 from a signal handler. */
359 static char *
360 current_working_directory ()
361 {
362 char *dir;
363 static char d[PATH_MAX];
364
365 dir = get_string_value ("PWD");
366
367 if (dir == 0 && the_current_working_directory && no_symbolic_links)
368 dir = the_current_working_directory;
369
370 if (dir == 0)
371 {
372 dir = getcwd (d, sizeof(d));
373 if (dir)
374 dir = d;
375 }
376
377 return (dir == 0) ? "<unknown>" : dir;
378 }
379
380 /* Return the working directory for the current process. */
381 static char *
382 job_working_directory ()
383 {
384 char *dir;
385
386 dir = get_string_value ("PWD");
387 if (dir)
388 return (savestring (dir));
389
390 dir = get_working_directory ("job-working-directory");
391 if (dir)
392 return (dir);
393
394 return (savestring ("<unknown>"));
395 }
396
397 void
398 making_children ()
399 {
400 if (already_making_children)
401 return;
402
403 already_making_children = 1;
404 start_pipeline ();
405 }
406
407 void
408 stop_making_children ()
409 {
410 already_making_children = 0;
411 }
412
413 void
414 cleanup_the_pipeline ()
415 {
416 PROCESS *disposer;
417 sigset_t set, oset;
418
419 BLOCK_CHILD (set, oset);
420 disposer = the_pipeline;
421 the_pipeline = (PROCESS *)NULL;
422 UNBLOCK_CHILD (oset);
423
424 if (disposer)
425 discard_pipeline (disposer);
426 }
427
428 void
429 save_pipeline (clear)
430 int clear;
431 {
432 saved_pipeline = the_pipeline;
433 if (clear)
434 the_pipeline = (PROCESS *)NULL;
435 saved_already_making_children = already_making_children;
436 }
437
438 void
439 restore_pipeline (discard)
440 int discard;
441 {
442 PROCESS *old_pipeline;
443
444 old_pipeline = the_pipeline;
445 the_pipeline = saved_pipeline;
446 already_making_children = saved_already_making_children;
447 if (discard && old_pipeline)
448 discard_pipeline (old_pipeline);
449 }
450
451 /* Start building a pipeline. */
452 void
453 start_pipeline ()
454 {
455 if (the_pipeline)
456 {
457 cleanup_the_pipeline ();
458 pipeline_pgrp = 0;
459 #if defined (PGRP_PIPE)
460 sh_closepipe (pgrp_pipe);
461 #endif
462 }
463
464 #if defined (PGRP_PIPE)
465 if (job_control)
466 {
467 if (pipe (pgrp_pipe) == -1)
468 sys_error (_("start_pipeline: pgrp pipe"));
469 }
470 #endif
471 }
472
473 /* Stop building a pipeline. Install the process list in the job array.
474 This returns the index of the newly installed job.
475 DEFERRED is a command structure to be executed upon satisfactory
476 execution exit of this pipeline. */
477 int
478 stop_pipeline (async, deferred)
479 int async;
480 COMMAND *deferred;
481 {
482 register int i, j;
483 JOB *newjob;
484 sigset_t set, oset;
485
486 BLOCK_CHILD (set, oset);
487
488 #if defined (PGRP_PIPE)
489 /* The parent closes the process group synchronization pipe. */
490 sh_closepipe (pgrp_pipe);
491 #endif
492
493 cleanup_dead_jobs ();
494
495 if (js.j_jobslots == 0)
496 {
497 js.j_jobslots = JOB_SLOTS;
498 jobs = (JOB **)xmalloc (js.j_jobslots * sizeof (JOB *));
499
500 /* Now blank out these new entries. */
501 for (i = 0; i < js.j_jobslots; i++)
502 jobs[i] = (JOB *)NULL;
503
504 js.j_firstj = js.j_lastj = js.j_njobs = 0;
505 }
506
507 /* Scan from the last slot backward, looking for the next free one. */
508 /* XXX - revisit this interactive assumption */
509 /* XXX - this way for now */
510 if (interactive)
511 {
512 for (i = js.j_jobslots; i; i--)
513 if (jobs[i - 1])
514 break;
515 }
516 else
517 {
518 #if 0
519 /* This wraps around, but makes it inconvenient to extend the array */
520 for (i = js.j_lastj+1; i != js.j_lastj; i++)
521 {
522 if (i >= js.j_jobslots)
523 i = 0;
524 if (jobs[i] == 0)
525 break;
526 }
527 if (i == js.j_lastj)
528 i = js.j_jobslots;
529 #else
530 /* This doesn't wrap around yet. */
531 for (i = js.j_lastj ? js.j_lastj + 1 : js.j_lastj; i < js.j_jobslots; i++)
532 if (jobs[i] == 0)
533 break;
534 #endif
535 }
536
537 /* Do we need more room? */
538
539 /* First try compaction */
540 if ((interactive_shell == 0 || subshell_environment) && i == js.j_jobslots && js.j_jobslots >= MAX_JOBS_IN_ARRAY)
541 i = compact_jobs_list (0);
542
543 /* If we can't compact, reallocate */
544 if (i == js.j_jobslots)
545 {
546 js.j_jobslots += JOB_SLOTS;
547 jobs = (JOB **)xrealloc (jobs, (js.j_jobslots * sizeof (JOB *)));
548
549 for (j = i; j < js.j_jobslots; j++)
550 jobs[j] = (JOB *)NULL;
551 }
552
553 /* Add the current pipeline to the job list. */
554 if (the_pipeline)
555 {
556 register PROCESS *p;
557 int any_running, any_stopped, n;
558
559 newjob = (JOB *)xmalloc (sizeof (JOB));
560
561 for (n = 1, p = the_pipeline; p->next != the_pipeline; n++, p = p->next)
562 ;
563 p->next = (PROCESS *)NULL;
564 newjob->pipe = REVERSE_LIST (the_pipeline, PROCESS *);
565 for (p = newjob->pipe; p->next; p = p->next)
566 ;
567 p->next = newjob->pipe;
568
569 the_pipeline = (PROCESS *)NULL;
570 newjob->pgrp = pipeline_pgrp;
571 pipeline_pgrp = 0;
572
573 newjob->flags = 0;
574
575 /* Flag to see if in another pgrp. */
576 if (job_control)
577 newjob->flags |= J_JOBCONTROL;
578
579 /* Set the state of this pipeline. */
580 p = newjob->pipe;
581 any_running = any_stopped = 0;
582 do
583 {
584 any_running |= PRUNNING (p);
585 any_stopped |= PSTOPPED (p);
586 p = p->next;
587 }
588 while (p != newjob->pipe);
589
590 newjob->state = any_running ? JRUNNING : (any_stopped ? JSTOPPED : JDEAD);
591 newjob->wd = job_working_directory ();
592 newjob->deferred = deferred;
593
594 newjob->j_cleanup = (sh_vptrfunc_t *)NULL;
595 newjob->cleanarg = (PTR_T) NULL;
596
597 jobs[i] = newjob;
598 if (newjob->state == JDEAD && (newjob->flags & J_FOREGROUND))
599 setjstatus (i);
600 if (newjob->state == JDEAD)
601 {
602 js.c_reaped += n; /* wouldn't have been done since this was not part of a job */
603 js.j_ndead++;
604 }
605 js.c_injobs += n;
606
607 js.j_lastj = i;
608 js.j_njobs++;
609 }
610 else
611 newjob = (JOB *)NULL;
612
613 if (newjob)
614 js.j_lastmade = newjob;
615
616 if (async)
617 {
618 if (newjob)
619 {
620 newjob->flags &= ~J_FOREGROUND;
621 newjob->flags |= J_ASYNC;
622 js.j_lastasync = newjob;
623 }
624 reset_current ();
625 }
626 else
627 {
628 if (newjob)
629 {
630 newjob->flags |= J_FOREGROUND;
631 /*
632 * !!!!! NOTE !!!!! (chet@ins.cwru.edu)
633 *
634 * The currently-accepted job control wisdom says to set the
635 * terminal's process group n+1 times in an n-step pipeline:
636 * once in the parent and once in each child. This is where
637 * the parent gives it away.
638 *
639 * Don't give the terminal away if this shell is an asynchronous
640 * subshell.
641 *
642 */
643 if (job_control && newjob->pgrp && (subshell_environment&SUBSHELL_ASYNC) == 0)
644 maybe_give_terminal_to (shell_pgrp, newjob->pgrp, 0);
645 }
646 }
647
648 stop_making_children ();
649 UNBLOCK_CHILD (oset);
650 return (newjob ? i : js.j_current);
651 }
652
653 /* Functions to manage the list of exited background pids whose status has
654 been saved. */
655
656 static struct pidstat *
657 bgp_alloc (pid, status)
658 pid_t pid;
659 int status;
660 {
661 struct pidstat *ps;
662
663 ps = (struct pidstat *)xmalloc (sizeof (struct pidstat));
664 ps->pid = pid;
665 ps->status = status;
666 ps->next = (struct pidstat *)0;
667 return ps;
668 }
669
670 static struct pidstat *
671 bgp_add (pid, status)
672 pid_t pid;
673 int status;
674 {
675 struct pidstat *ps;
676
677 ps = bgp_alloc (pid, status);
678
679 if (bgpids.list == 0)
680 {
681 bgpids.list = bgpids.end = ps;
682 bgpids.npid = 0; /* just to make sure */
683 }
684 else
685 {
686 bgpids.end->next = ps;
687 bgpids.end = ps;
688 }
689 bgpids.npid++;
690
691 if (bgpids.npid > js.c_childmax)
692 bgp_prune ();
693
694 return ps;
695 }
696
697 static int
698 bgp_delete (pid)
699 pid_t pid;
700 {
701 struct pidstat *prev, *p;
702
703 for (prev = p = bgpids.list; p; prev = p, p = p->next)
704 if (p->pid == pid)
705 {
706 prev->next = p->next; /* remove from list */
707 break;
708 }
709
710 if (p == 0)
711 return 0; /* not found */
712
713 #if defined (DEBUG)
714 itrace("bgp_delete: deleting %d", pid);
715 #endif
716
717 /* Housekeeping in the border cases. */
718 if (p == bgpids.list)
719 bgpids.list = bgpids.list->next;
720 else if (p == bgpids.end)
721 bgpids.end = prev;
722
723 bgpids.npid--;
724 if (bgpids.npid == 0)
725 bgpids.list = bgpids.end = 0;
726 else if (bgpids.npid == 1)
727 bgpids.end = bgpids.list; /* just to make sure */
728
729 free (p);
730 return 1;
731 }
732
733 /* Clear out the list of saved statuses */
734 static void
735 bgp_clear ()
736 {
737 struct pidstat *ps, *p;
738
739 for (ps = bgpids.list; ps; )
740 {
741 p = ps;
742 ps = ps->next;
743 free (p);
744 }
745 bgpids.list = bgpids.end = 0;
746 bgpids.npid = 0;
747 }
748
749 /* Search for PID in the list of saved background pids; return its status if
750 found. If not found, return -1. */
751 static int
752 bgp_search (pid)
753 pid_t pid;
754 {
755 struct pidstat *ps;
756
757 for (ps = bgpids.list ; ps; ps = ps->next)
758 if (ps->pid == pid)
759 return ps->status;
760 return -1;
761 }
762
763 static void
764 bgp_prune ()
765 {
766 struct pidstat *ps;
767
768 while (bgpids.npid > js.c_childmax)
769 {
770 ps = bgpids.list;
771 bgpids.list = bgpids.list->next;
772 free (ps);
773 bgpids.npid--;
774 }
775 }
776
777 /* Reset the values of js.j_lastj and js.j_firstj after one or both have
778 been deleted. The caller should check whether js.j_njobs is 0 before
779 calling this. This wraps around, but the rest of the code does not. At
780 this point, it should not matter. */
781 static void
782 reset_job_indices ()
783 {
784 int old;
785
786 if (jobs[js.j_firstj] == 0)
787 {
788 old = js.j_firstj++;
789 if (old >= js.j_jobslots)
790 old = js.j_jobslots - 1;
791 while (js.j_firstj != old)
792 {
793 if (js.j_firstj >= js.j_jobslots)
794 js.j_firstj = 0;
795 if (jobs[js.j_firstj] || js.j_firstj == old) /* needed if old == 0 */
796 break;
797 js.j_firstj++;
798 }
799 if (js.j_firstj == old)
800 js.j_firstj = js.j_lastj = js.j_njobs = 0;
801 }
802 if (jobs[js.j_lastj] == 0)
803 {
804 old = js.j_lastj--;
805 if (old < 0)
806 old = 0;
807 while (js.j_lastj != old)
808 {
809 if (js.j_lastj < 0)
810 js.j_lastj = js.j_jobslots - 1;
811 if (jobs[js.j_lastj] || js.j_lastj == old) /* needed if old == js.j_jobslots */
812 break;
813 js.j_lastj--;
814 }
815 if (js.j_lastj == old)
816 js.j_firstj = js.j_lastj = js.j_njobs = 0;
817 }
818 }
819
820 /* Delete all DEAD jobs that the user had received notification about. */
821 static void
822 cleanup_dead_jobs ()
823 {
824 register int i;
825 int os;
826
827 if (js.j_jobslots == 0 || jobs_list_frozen)
828 return;
829
830 QUEUE_SIGCHLD(os);
831
832 /* XXX could use js.j_firstj and js.j_lastj here */
833 for (i = 0; i < js.j_jobslots; i++)
834 {
835 #if defined (DEBUG)
836 if (i < js.j_firstj && jobs[i])
837 itrace("cleanup_dead_jobs: job %d non-null before js.j_firstj (%d)", i, js.j_firstj);
838 if (i > js.j_lastj && jobs[i])
839 itrace("cleanup_dead_jobs: job %d non-null after js.j_lastj (%d)", i, js.j_lastj);
840 #endif
841
842 if (jobs[i] && DEADJOB (i) && IS_NOTIFIED (i))
843 delete_job (i, 0);
844 }
845
846 #if defined (COPROCESS_SUPPORT)
847 coproc_reap ();
848 #endif
849
850 UNQUEUE_SIGCHLD(os);
851 }
852
853 static int
854 processes_in_job (job)
855 int job;
856 {
857 int nproc;
858 register PROCESS *p;
859
860 nproc = 0;
861 p = jobs[job]->pipe;
862 do
863 {
864 p = p->next;
865 nproc++;
866 }
867 while (p != jobs[job]->pipe);
868
869 return nproc;
870 }
871
872 static void
873 delete_old_job (pid)
874 pid_t pid;
875 {
876 PROCESS *p;
877 int job;
878
879 job = find_job (pid, 0, &p);
880 if (job != NO_JOB)
881 {
882 #ifdef DEBUG
883 itrace ("delete_old_job: found pid %d in job %d with state %d", pid, job, jobs[job]->state);
884 #endif
885 if (JOBSTATE (job) == JDEAD)
886 delete_job (job, DEL_NOBGPID);
887 else
888 {
889 internal_warning (_("forked pid %d appears in running job %d"), pid, job);
890 if (p)
891 p->pid = 0;
892 }
893 }
894 }
895
896 /* Reallocate and compress the jobs list. This returns with a jobs array
897 whose size is a multiple of JOB_SLOTS and can hold the current number of
898 jobs. Heuristics are used to minimize the number of new reallocs. */
899 static void
900 realloc_jobs_list ()
901 {
902 sigset_t set, oset;
903 int nsize, i, j, ncur, nprev;
904 JOB **nlist;
905
906 ncur = nprev = NO_JOB;
907 nsize = ((js.j_njobs + JOB_SLOTS - 1) / JOB_SLOTS);
908 nsize *= JOB_SLOTS;
909 i = js.j_njobs % JOB_SLOTS;
910 if (i == 0 || i > (JOB_SLOTS >> 1))
911 nsize += JOB_SLOTS;
912
913 BLOCK_CHILD (set, oset);
914 nlist = (js.j_jobslots == nsize) ? jobs : (JOB **) xmalloc (nsize * sizeof (JOB *));
915
916 js.c_reaped = js.j_ndead = 0;
917 for (i = j = 0; i < js.j_jobslots; i++)
918 if (jobs[i])
919 {
920 if (i == js.j_current)
921 ncur = j;
922 if (i == js.j_previous)
923 nprev = j;
924 nlist[j++] = jobs[i];
925 if (jobs[i]->state == JDEAD)
926 {
927 js.j_ndead++;
928 js.c_reaped += processes_in_job (i);
929 }
930 }
931
932 #if defined (DEBUG)
933 itrace ("realloc_jobs_list: resize jobs list from %d to %d", js.j_jobslots, nsize);
934 itrace ("realloc_jobs_list: j_lastj changed from %d to %d", js.j_lastj, (j > 0) ? j - 1 : 0);
935 itrace ("realloc_jobs_list: j_njobs changed from %d to %d", js.j_njobs, j);
936 itrace ("realloc_jobs_list: js.j_ndead %d js.c_reaped %d", js.j_ndead, js.c_reaped);
937 #endif
938
939 js.j_firstj = 0;
940 js.j_lastj = (j > 0) ? j - 1 : 0;
941 js.j_njobs = j;
942 js.j_jobslots = nsize;
943
944 /* Zero out remaining slots in new jobs list */
945 for ( ; j < nsize; j++)
946 nlist[j] = (JOB *)NULL;
947
948 if (jobs != nlist)
949 {
950 free (jobs);
951 jobs = nlist;
952 }
953
954 if (ncur != NO_JOB)
955 js.j_current = ncur;
956 if (nprev != NO_JOB)
957 js.j_previous = nprev;
958
959 /* Need to reset these */
960 if (js.j_current == NO_JOB || js.j_previous == NO_JOB || js.j_current > js.j_lastj || js.j_previous > js.j_lastj)
961 reset_current ();
962
963 #ifdef DEBUG
964 itrace ("realloc_jobs_list: reset js.j_current (%d) and js.j_previous (%d)", js.j_current, js.j_previous);
965 #endif
966
967 UNBLOCK_CHILD (oset);
968 }
969
970 /* Compact the jobs list by removing dead jobs. Assumed that we have filled
971 the jobs array to some predefined maximum. Called when the shell is not
972 the foreground process (subshell_environment != 0). Returns the first
973 available slot in the compacted list. If that value is js.j_jobslots, then
974 the list needs to be reallocated. The jobs array may be in new memory if
975 this returns > 0 and < js.j_jobslots. FLAGS is reserved for future use. */
976 static int
977 compact_jobs_list (flags)
978 int flags;
979 {
980 if (js.j_jobslots == 0 || jobs_list_frozen)
981 return js.j_jobslots;
982
983 reap_dead_jobs ();
984 realloc_jobs_list ();
985
986 #ifdef DEBUG
987 itrace("compact_jobs_list: returning %d", (js.j_lastj || jobs[js.j_lastj]) ? js.j_lastj + 1 : 0);
988 #endif
989
990 return ((js.j_lastj || jobs[js.j_lastj]) ? js.j_lastj + 1 : 0);
991 }
992
993 /* Delete the job at INDEX from the job list. Must be called
994 with SIGCHLD blocked. */
995 void
996 delete_job (job_index, dflags)
997 int job_index, dflags;
998 {
999 register JOB *temp;
1000 PROCESS *proc;
1001 int ndel;
1002
1003 if (js.j_jobslots == 0 || jobs_list_frozen)
1004 return;
1005
1006 if ((dflags & DEL_WARNSTOPPED) && subshell_environment == 0 && STOPPED (job_index))
1007 internal_warning (_("deleting stopped job %d with process group %ld"), job_index+1, (long)jobs[job_index]->pgrp);
1008 temp = jobs[job_index];
1009 if (temp == 0)
1010 return;
1011
1012 if ((dflags & DEL_NOBGPID) == 0)
1013 {
1014 proc = find_last_proc (job_index, 0);
1015 /* Could do this just for J_ASYNC jobs, but we save all. */
1016 if (proc)
1017 bgp_add (proc->pid, process_exit_status (proc->status));
1018 }
1019
1020 jobs[job_index] = (JOB *)NULL;
1021 if (temp == js.j_lastmade)
1022 js.j_lastmade = 0;
1023 else if (temp == js.j_lastasync)
1024 js.j_lastasync = 0;
1025
1026 free (temp->wd);
1027 ndel = discard_pipeline (temp->pipe);
1028
1029 js.c_injobs -= ndel;
1030 if (temp->state == JDEAD)
1031 {
1032 js.c_reaped -= ndel;
1033 js.j_ndead--;
1034 if (js.c_reaped < 0)
1035 {
1036 #ifdef DEBUG
1037 itrace("delete_job (%d pgrp %d): js.c_reaped (%d) < 0 ndel = %d js.j_ndead = %d", job_index, temp->pgrp, js.c_reaped, ndel, js.j_ndead);
1038 #endif
1039 js.c_reaped = 0;
1040 }
1041 }
1042
1043 if (temp->deferred)
1044 dispose_command (temp->deferred);
1045
1046 free (temp);
1047
1048 js.j_njobs--;
1049 if (js.j_njobs == 0)
1050 js.j_firstj = js.j_lastj = 0;
1051 else if (jobs[js.j_firstj] == 0 || jobs[js.j_lastj] == 0)
1052 reset_job_indices ();
1053
1054 if (job_index == js.j_current || job_index == js.j_previous)
1055 reset_current ();
1056 }
1057
1058 /* Must be called with SIGCHLD blocked. */
1059 void
1060 nohup_job (job_index)
1061 int job_index;
1062 {
1063 register JOB *temp;
1064
1065 if (js.j_jobslots == 0)
1066 return;
1067
1068 if (temp = jobs[job_index])
1069 temp->flags |= J_NOHUP;
1070 }
1071
1072 /* Get rid of the data structure associated with a process chain. */
1073 static int
1074 discard_pipeline (chain)
1075 register PROCESS *chain;
1076 {
1077 register PROCESS *this, *next;
1078 int n;
1079
1080 this = chain;
1081 n = 0;
1082 do
1083 {
1084 next = this->next;
1085 FREE (this->command);
1086 free (this);
1087 n++;
1088 this = next;
1089 }
1090 while (this != chain);
1091
1092 return n;
1093 }
1094
1095 /* Add this process to the chain being built in the_pipeline.
1096 NAME is the command string that will be exec'ed later.
1097 PID is the process id of the child. */
1098 static void
1099 add_process (name, pid)
1100 char *name;
1101 pid_t pid;
1102 {
1103 PROCESS *t, *p;
1104
1105 #if defined (RECYCLES_PIDS)
1106 int j;
1107 p = find_process (pid, 0, &j);
1108 if (p)
1109 {
1110 # ifdef DEBUG
1111 if (j == NO_JOB)
1112 internal_warning (_("add_process: process %5ld (%s) in the_pipeline"), (long)p->pid, p->command);
1113 # endif
1114 if (PALIVE (p))
1115 internal_warning (_("add_process: pid %5ld (%s) marked as still alive"), (long)p->pid, p->command);
1116 p->running = PS_RECYCLED; /* mark as recycled */
1117 }
1118 #endif
1119
1120 t = (PROCESS *)xmalloc (sizeof (PROCESS));
1121 t->next = the_pipeline;
1122 t->pid = pid;
1123 WSTATUS (t->status) = 0;
1124 t->running = PS_RUNNING;
1125 t->command = name;
1126 the_pipeline = t;
1127
1128 if (t->next == 0)
1129 t->next = t;
1130 else
1131 {
1132 p = t->next;
1133 while (p->next != t->next)
1134 p = p->next;
1135 p->next = t;
1136 }
1137 }
1138
1139 /* Create a (dummy) PROCESS with NAME, PID, and STATUS, and make it the last
1140 process in jobs[JID]->pipe. Used by the lastpipe code. */
1141 void
1142 append_process (name, pid, status, jid)
1143 char *name;
1144 pid_t pid;
1145 int status;
1146 int jid;
1147 {
1148 PROCESS *t, *p;
1149
1150 t = (PROCESS *)xmalloc (sizeof (PROCESS));
1151 t->next = (PROCESS *)NULL;
1152 t->pid = pid;
1153 /* set process exit status using offset discovered by configure */
1154 t->status = (status & 0xff) << WEXITSTATUS_OFFSET;
1155 t->running = PS_DONE;
1156 t->command = name;
1157
1158 js.c_reaped++; /* XXX */
1159
1160 for (p = jobs[jid]->pipe; p->next != jobs[jid]->pipe; p = p->next)
1161 ;
1162 p->next = t;
1163 t->next = jobs[jid]->pipe;
1164 }
1165
1166 #if 0
1167 /* Take the last job and make it the first job. Must be called with
1168 SIGCHLD blocked. */
1169 int
1170 rotate_the_pipeline ()
1171 {
1172 PROCESS *p;
1173
1174 if (the_pipeline->next == the_pipeline)
1175 return;
1176 for (p = the_pipeline; p->next != the_pipeline; p = p->next)
1177 ;
1178 the_pipeline = p;
1179 }
1180
1181 /* Reverse the order of the processes in the_pipeline. Must be called with
1182 SIGCHLD blocked. */
1183 int
1184 reverse_the_pipeline ()
1185 {
1186 PROCESS *p, *n;
1187
1188 if (the_pipeline->next == the_pipeline)
1189 return;
1190
1191 for (p = the_pipeline; p->next != the_pipeline; p = p->next)
1192 ;
1193 p->next = (PROCESS *)NULL;
1194
1195 n = REVERSE_LIST (the_pipeline, PROCESS *);
1196
1197 the_pipeline = n;
1198 for (p = the_pipeline; p->next; p = p->next)
1199 ;
1200 p->next = the_pipeline;
1201 }
1202 #endif
1203
1204 /* Map FUNC over the list of jobs. If FUNC returns non-zero,
1205 then it is time to stop mapping, and that is the return value
1206 for map_over_jobs. FUNC is called with a JOB, arg1, arg2,
1207 and INDEX. */
1208 static int
1209 map_over_jobs (func, arg1, arg2)
1210 sh_job_map_func_t *func;
1211 int arg1, arg2;
1212 {
1213 register int i;
1214 int result;
1215 sigset_t set, oset;
1216
1217 if (js.j_jobslots == 0)
1218 return 0;
1219
1220 BLOCK_CHILD (set, oset);
1221
1222 /* XXX could use js.j_firstj here */
1223 for (i = result = 0; i < js.j_jobslots; i++)
1224 {
1225 #if defined (DEBUG)
1226 if (i < js.j_firstj && jobs[i])
1227 itrace("map_over_jobs: job %d non-null before js.j_firstj (%d)", i, js.j_firstj);
1228 if (i > js.j_lastj && jobs[i])
1229 itrace("map_over_jobs: job %d non-null after js.j_lastj (%d)", i, js.j_lastj);
1230 #endif
1231 if (jobs[i])
1232 {
1233 result = (*func)(jobs[i], arg1, arg2, i);
1234 if (result)
1235 break;
1236 }
1237 }
1238
1239 UNBLOCK_CHILD (oset);
1240
1241 return (result);
1242 }
1243
1244 /* Cause all the jobs in the current pipeline to exit. */
1245 void
1246 terminate_current_pipeline ()
1247 {
1248 if (pipeline_pgrp && pipeline_pgrp != shell_pgrp)
1249 {
1250 killpg (pipeline_pgrp, SIGTERM);
1251 killpg (pipeline_pgrp, SIGCONT);
1252 }
1253 }
1254
1255 /* Cause all stopped jobs to exit. */
1256 void
1257 terminate_stopped_jobs ()
1258 {
1259 register int i;
1260
1261 /* XXX could use js.j_firstj here */
1262 for (i = 0; i < js.j_jobslots; i++)
1263 {
1264 if (jobs[i] && STOPPED (i))
1265 {
1266 killpg (jobs[i]->pgrp, SIGTERM);
1267 killpg (jobs[i]->pgrp, SIGCONT);
1268 }
1269 }
1270 }
1271
1272 /* Cause all jobs, running or stopped, to receive a hangup signal. If
1273 a job is marked J_NOHUP, don't send the SIGHUP. */
1274 void
1275 hangup_all_jobs ()
1276 {
1277 register int i;
1278
1279 /* XXX could use js.j_firstj here */
1280 for (i = 0; i < js.j_jobslots; i++)
1281 {
1282 if (jobs[i])
1283 {
1284 if (jobs[i]->flags & J_NOHUP)
1285 continue;
1286 killpg (jobs[i]->pgrp, SIGHUP);
1287 if (STOPPED (i))
1288 killpg (jobs[i]->pgrp, SIGCONT);
1289 }
1290 }
1291 }
1292
1293 void
1294 kill_current_pipeline ()
1295 {
1296 stop_making_children ();
1297 start_pipeline ();
1298 }
1299
1300 /* Return the pipeline that PID belongs to. Note that the pipeline
1301 doesn't have to belong to a job. Must be called with SIGCHLD blocked.
1302 If JOBP is non-null, return the index of the job containing PID. */
1303 static PROCESS *
1304 find_pipeline (pid, alive_only, jobp)
1305 pid_t pid;
1306 int alive_only;
1307 int *jobp; /* index into jobs list or NO_JOB */
1308 {
1309 int job;
1310 PROCESS *p;
1311
1312 /* See if this process is in the pipeline that we are building. */
1313 if (jobp)
1314 *jobp = NO_JOB;
1315 if (the_pipeline)
1316 {
1317 p = the_pipeline;
1318 do
1319 {
1320 /* Return it if we found it. Don't ever return a recycled pid. */
1321 if (p->pid == pid && ((alive_only == 0 && PRECYCLED(p) == 0) || PALIVE(p)))
1322 return (p);
1323
1324 p = p->next;
1325 }
1326 while (p != the_pipeline);
1327 }
1328
1329 job = find_job (pid, alive_only, &p);
1330 if (jobp)
1331 *jobp = job;
1332 return (job == NO_JOB) ? (PROCESS *)NULL : jobs[job]->pipe;
1333 }
1334
1335 /* Return the PROCESS * describing PID. If JOBP is non-null return the index
1336 into the jobs array of the job containing PID. Must be called with
1337 SIGCHLD blocked. */
1338 static PROCESS *
1339 find_process (pid, alive_only, jobp)
1340 pid_t pid;
1341 int alive_only;
1342 int *jobp; /* index into jobs list or NO_JOB */
1343 {
1344 PROCESS *p;
1345
1346 p = find_pipeline (pid, alive_only, jobp);
1347 while (p && p->pid != pid)
1348 p = p->next;
1349 return p;
1350 }
1351
1352 /* Return the job index that PID belongs to, or NO_JOB if it doesn't
1353 belong to any job. Must be called with SIGCHLD blocked. */
1354 static int
1355 find_job (pid, alive_only, procp)
1356 pid_t pid;
1357 int alive_only;
1358 PROCESS **procp;
1359 {
1360 register int i;
1361 PROCESS *p;
1362
1363 /* XXX could use js.j_firstj here, and should check js.j_lastj */
1364 for (i = 0; i < js.j_jobslots; i++)
1365 {
1366 #if defined (DEBUG)
1367 if (i < js.j_firstj && jobs[i])
1368 itrace("find_job: job %d non-null before js.j_firstj (%d)", i, js.j_firstj);
1369 if (i > js.j_lastj && jobs[i])
1370 itrace("find_job: job %d non-null after js.j_lastj (%d)", i, js.j_lastj);
1371 #endif
1372 if (jobs[i])
1373 {
1374 p = jobs[i]->pipe;
1375
1376 do
1377 {
1378 if (p->pid == pid && ((alive_only == 0 && PRECYCLED(p) == 0) || PALIVE(p)))
1379 {
1380 if (procp)
1381 *procp = p;
1382 return (i);
1383 }
1384
1385 p = p->next;
1386 }
1387 while (p != jobs[i]->pipe);
1388 }
1389 }
1390
1391 return (NO_JOB);
1392 }
1393
1394 /* Find a job given a PID. If BLOCK is non-zero, block SIGCHLD as
1395 required by find_job. */
1396 int
1397 get_job_by_pid (pid, block)
1398 pid_t pid;
1399 int block;
1400 {
1401 int job;
1402 sigset_t set, oset;
1403
1404 if (block)
1405 BLOCK_CHILD (set, oset);
1406
1407 job = find_job (pid, 0, NULL);
1408
1409 if (block)
1410 UNBLOCK_CHILD (oset);
1411
1412 return job;
1413 }
1414
1415 /* Print descriptive information about the job with leader pid PID. */
1416 void
1417 describe_pid (pid)
1418 pid_t pid;
1419 {
1420 int job;
1421 sigset_t set, oset;
1422
1423 BLOCK_CHILD (set, oset);
1424
1425 job = find_job (pid, 0, NULL);
1426
1427 if (job != NO_JOB)
1428 fprintf (stderr, "[%d] %ld\n", job + 1, (long)pid);
1429 else
1430 programming_error (_("describe_pid: %ld: no such pid"), (long)pid);
1431
1432 UNBLOCK_CHILD (oset);
1433 }
1434
1435 static char *
1436 j_strsignal (s)
1437 int s;
1438 {
1439 char *x;
1440
1441 x = strsignal (s);
1442 if (x == 0)
1443 {
1444 x = retcode_name_buffer;
1445 sprintf (x, _("Signal %d"), s);
1446 }
1447 return x;
1448 }
1449
1450 static char *
1451 printable_job_status (j, p, format)
1452 int j;
1453 PROCESS *p;
1454 int format;
1455 {
1456 static char *temp;
1457 int es;
1458
1459 temp = _("Done");
1460
1461 if (STOPPED (j) && format == 0)
1462 {
1463 if (posixly_correct == 0 || p == 0 || (WIFSTOPPED (p->status) == 0))
1464 temp = _("Stopped");
1465 else
1466 {
1467 temp = retcode_name_buffer;
1468 sprintf (temp, _("Stopped(%s)"), signal_name (WSTOPSIG (p->status)));
1469 }
1470 }
1471 else if (RUNNING (j))
1472 temp = _("Running");
1473 else
1474 {
1475 if (WIFSTOPPED (p->status))
1476 temp = j_strsignal (WSTOPSIG (p->status));
1477 else if (WIFSIGNALED (p->status))
1478 temp = j_strsignal (WTERMSIG (p->status));
1479 else if (WIFEXITED (p->status))
1480 {
1481 temp = retcode_name_buffer;
1482 es = WEXITSTATUS (p->status);
1483 if (es == 0)
1484 strcpy (temp, _("Done"));
1485 else if (posixly_correct)
1486 sprintf (temp, _("Done(%d)"), es);
1487 else
1488 sprintf (temp, _("Exit %d"), es);
1489 }
1490 else
1491 temp = _("Unknown status");
1492 }
1493
1494 return temp;
1495 }
1496
1497 /* This is the way to print out information on a job if you
1498 know the index. FORMAT is:
1499
1500 JLIST_NORMAL) [1]+ Running emacs
1501 JLIST_LONG ) [1]+ 2378 Running emacs
1502 -1 ) [1]+ 2378 emacs
1503
1504 JLIST_NORMAL) [1]+ Stopped ls | more
1505 JLIST_LONG ) [1]+ 2369 Stopped ls
1506 2367 | more
1507 JLIST_PID_ONLY)
1508 Just list the pid of the process group leader (really
1509 the process group).
1510 JLIST_CHANGED_ONLY)
1511 Use format JLIST_NORMAL, but list only jobs about which
1512 the user has not been notified. */
1513
1514 /* Print status for pipeline P. If JOB_INDEX is >= 0, it is the index into
1515 the JOBS array corresponding to this pipeline. FORMAT is as described
1516 above. Must be called with SIGCHLD blocked.
1517
1518 If you're printing a pipeline that's not in the jobs array, like the
1519 current pipeline as it's being created, pass -1 for JOB_INDEX */
1520 static void
1521 print_pipeline (p, job_index, format, stream)
1522 PROCESS *p;
1523 int job_index, format;
1524 FILE *stream;
1525 {
1526 PROCESS *first, *last, *show;
1527 int es, name_padding;
1528 char *temp;
1529
1530 if (p == 0)
1531 return;
1532
1533 first = last = p;
1534 while (last->next != first)
1535 last = last->next;
1536
1537 for (;;)
1538 {
1539 if (p != first)
1540 fprintf (stream, format ? " " : " |");
1541
1542 if (format != JLIST_STANDARD)
1543 fprintf (stream, "%5ld", (long)p->pid);
1544
1545 fprintf (stream, " ");
1546
1547 if (format > -1 && job_index >= 0)
1548 {
1549 show = format ? p : last;
1550 temp = printable_job_status (job_index, show, format);
1551
1552 if (p != first)
1553 {
1554 if (format)
1555 {
1556 if (show->running == first->running &&
1557 WSTATUS (show->status) == WSTATUS (first->status))
1558 temp = "";
1559 }
1560 else
1561 temp = (char *)NULL;
1562 }
1563
1564 if (temp)
1565 {
1566 fprintf (stream, "%s", temp);
1567
1568 es = STRLEN (temp);
1569 if (es == 0)
1570 es = 2; /* strlen ("| ") */
1571 name_padding = LONGEST_SIGNAL_DESC - es;
1572
1573 fprintf (stream, "%*s", name_padding, "");
1574
1575 if ((WIFSTOPPED (show->status) == 0) &&
1576 (WIFCONTINUED (show->status) == 0) &&
1577 WIFCORED (show->status))
1578 fprintf (stream, _("(core dumped) "));
1579 }
1580 }
1581
1582 if (p != first && format)
1583 fprintf (stream, "| ");
1584
1585 if (p->command)
1586 fprintf (stream, "%s", p->command);
1587
1588 if (p == last && job_index >= 0)
1589 {
1590 temp = current_working_directory ();
1591
1592 if (RUNNING (job_index) && (IS_FOREGROUND (job_index) == 0))
1593 fprintf (stream, " &");
1594
1595 if (strcmp (temp, jobs[job_index]->wd) != 0)
1596 fprintf (stream,
1597 _(" (wd: %s)"), polite_directory_format (jobs[job_index]->wd));
1598 }
1599
1600 if (format || (p == last))
1601 {
1602 /* We need to add a CR only if this is an interactive shell, and
1603 we're reporting the status of a completed job asynchronously.
1604 We can't really check whether this particular job is being
1605 reported asynchronously, so just add the CR if the shell is
1606 currently interactive and asynchronous notification is enabled. */
1607 if (asynchronous_notification && interactive)
1608 fprintf (stream, "\r\n");
1609 else
1610 fprintf (stream, "\n");
1611 }
1612
1613 if (p == last)
1614 break;
1615 p = p->next;
1616 }
1617 fflush (stream);
1618 }
1619
1620 /* Print information to STREAM about jobs[JOB_INDEX] according to FORMAT.
1621 Must be called with SIGCHLD blocked or queued with queue_sigchld */
1622 static void
1623 pretty_print_job (job_index, format, stream)
1624 int job_index, format;
1625 FILE *stream;
1626 {
1627 register PROCESS *p;
1628
1629 /* Format only pid information about the process group leader? */
1630 if (format == JLIST_PID_ONLY)
1631 {
1632 fprintf (stream, "%ld\n", (long)jobs[job_index]->pipe->pid);
1633 return;
1634 }
1635
1636 if (format == JLIST_CHANGED_ONLY)
1637 {
1638 if (IS_NOTIFIED (job_index))
1639 return;
1640 format = JLIST_STANDARD;
1641 }
1642
1643 if (format != JLIST_NONINTERACTIVE)
1644 fprintf (stream, "[%d]%c ", job_index + 1,
1645 (job_index == js.j_current) ? '+':
1646 (job_index == js.j_previous) ? '-' : ' ');
1647
1648 if (format == JLIST_NONINTERACTIVE)
1649 format = JLIST_LONG;
1650
1651 p = jobs[job_index]->pipe;
1652
1653 print_pipeline (p, job_index, format, stream);
1654
1655 /* We have printed information about this job. When the job's
1656 status changes, waitchld () sets the notification flag to 0. */
1657 jobs[job_index]->flags |= J_NOTIFIED;
1658 }
1659
1660 static int
1661 print_job (job, format, state, job_index)
1662 JOB *job;
1663 int format, state, job_index;
1664 {
1665 if (state == -1 || (JOB_STATE)state == job->state)
1666 pretty_print_job (job_index, format, stdout);
1667 return (0);
1668 }
1669
1670 void
1671 list_one_job (job, format, ignore, job_index)
1672 JOB *job;
1673 int format, ignore, job_index;
1674 {
1675 pretty_print_job (job_index, format, stdout);
1676 }
1677
1678 void
1679 list_stopped_jobs (format)
1680 int format;
1681 {
1682 cleanup_dead_jobs ();
1683 map_over_jobs (print_job, format, (int)JSTOPPED);
1684 }
1685
1686 void
1687 list_running_jobs (format)
1688 int format;
1689 {
1690 cleanup_dead_jobs ();
1691 map_over_jobs (print_job, format, (int)JRUNNING);
1692 }
1693
1694 /* List jobs. If FORMAT is non-zero, then the long form of the information
1695 is printed, else just a short version. */
1696 void
1697 list_all_jobs (format)
1698 int format;
1699 {
1700 cleanup_dead_jobs ();
1701 map_over_jobs (print_job, format, -1);
1702 }
1703
1704 /* Fork, handling errors. Returns the pid of the newly made child, or 0.
1705 COMMAND is just for remembering the name of the command; we don't do
1706 anything else with it. ASYNC_P says what to do with the tty. If
1707 non-zero, then don't give it away. */
1708 pid_t
1709 make_child (command, async_p)
1710 char *command;
1711 int async_p;
1712 {
1713 int forksleep;
1714 sigset_t set, oset;
1715 pid_t pid;
1716
1717 sigemptyset (&set);
1718 sigaddset (&set, SIGCHLD);
1719 sigaddset (&set, SIGINT);
1720 sigemptyset (&oset);
1721 sigprocmask (SIG_BLOCK, &set, &oset);
1722
1723 making_children ();
1724
1725 forksleep = 1;
1726
1727 #if defined (BUFFERED_INPUT)
1728 /* If default_buffered_input is active, we are reading a script. If
1729 the command is asynchronous, we have already duplicated /dev/null
1730 as fd 0, but have not changed the buffered stream corresponding to
1731 the old fd 0. We don't want to sync the stream in this case. */
1732 if (default_buffered_input != -1 &&
1733 (!async_p || default_buffered_input > 0))
1734 sync_buffered_stream (default_buffered_input);
1735 #endif /* BUFFERED_INPUT */
1736
1737 /* Create the child, handle severe errors. Retry on EAGAIN. */
1738 while ((pid = fork ()) < 0 && errno == EAGAIN && forksleep < FORKSLEEP_MAX)
1739 {
1740 /* bash-4.2 */
1741 /* If we can't create any children, try to reap some dead ones. */
1742 waitchld (-1, 0);
1743
1744 sys_error ("fork: retry");
1745 if (sleep (forksleep) != 0)
1746 break;
1747 forksleep <<= 1;
1748 }
1749
1750 if (pid < 0)
1751 {
1752 sys_error ("fork");
1753
1754 /* Kill all of the processes in the current pipeline. */
1755 terminate_current_pipeline ();
1756
1757 /* Discard the current pipeline, if any. */
1758 if (the_pipeline)
1759 kill_current_pipeline ();
1760
1761 last_command_exit_value = EX_NOEXEC;
1762 throw_to_top_level (); /* Reset signals, etc. */
1763 }
1764
1765 if (pid == 0)
1766 {
1767 /* In the child. Give this child the right process group, set the
1768 signals to the default state for a new process. */
1769 pid_t mypid;
1770
1771 mypid = getpid ();
1772 #if defined (BUFFERED_INPUT)
1773 /* Close default_buffered_input if it's > 0. We don't close it if it's
1774 0 because that's the file descriptor used when redirecting input,
1775 and it's wrong to close the file in that case. */
1776 unset_bash_input (0);
1777 #endif /* BUFFERED_INPUT */
1778
1779 /* Restore top-level signal mask. */
1780 sigprocmask (SIG_SETMASK, &top_level_mask, (sigset_t *)NULL);
1781
1782 if (job_control)
1783 {
1784 /* All processes in this pipeline belong in the same
1785 process group. */
1786
1787 if (pipeline_pgrp == 0) /* This is the first child. */
1788 pipeline_pgrp = mypid;
1789
1790 /* Check for running command in backquotes. */
1791 if (pipeline_pgrp == shell_pgrp)
1792 ignore_tty_job_signals ();
1793 else
1794 default_tty_job_signals ();
1795
1796 /* Set the process group before trying to mess with the terminal's
1797 process group. This is mandated by POSIX. */
1798 /* This is in accordance with the Posix 1003.1 standard,
1799 section B.7.2.4, which says that trying to set the terminal
1800 process group with tcsetpgrp() to an unused pgrp value (like
1801 this would have for the first child) is an error. Section
1802 B.4.3.3, p. 237 also covers this, in the context of job control
1803 shells. */
1804 if (setpgid (mypid, pipeline_pgrp) < 0)
1805 sys_error (_("child setpgid (%ld to %ld)"), (long)mypid, (long)pipeline_pgrp);
1806
1807 /* By convention (and assumption above), if
1808 pipeline_pgrp == shell_pgrp, we are making a child for
1809 command substitution.
1810 In this case, we don't want to give the terminal to the
1811 shell's process group (we could be in the middle of a
1812 pipeline, for example). */
1813 if (async_p == 0 && pipeline_pgrp != shell_pgrp && ((subshell_environment&SUBSHELL_ASYNC) == 0))
1814 give_terminal_to (pipeline_pgrp, 0);
1815
1816 #if defined (PGRP_PIPE)
1817 if (pipeline_pgrp == mypid)
1818 pipe_read (pgrp_pipe);
1819 #endif
1820 }
1821 else /* Without job control... */
1822 {
1823 if (pipeline_pgrp == 0)
1824 pipeline_pgrp = shell_pgrp;
1825
1826 /* If these signals are set to SIG_DFL, we encounter the curious
1827 situation of an interactive ^Z to a running process *working*
1828 and stopping the process, but being unable to do anything with
1829 that process to change its state. On the other hand, if they
1830 are set to SIG_IGN, jobs started from scripts do not stop when
1831 the shell running the script gets a SIGTSTP and stops. */
1832
1833 default_tty_job_signals ();
1834 }
1835
1836 #if defined (PGRP_PIPE)
1837 /* Release the process group pipe, since our call to setpgid ()
1838 is done. The last call to sh_closepipe is done in stop_pipeline. */
1839 sh_closepipe (pgrp_pipe);
1840 #endif /* PGRP_PIPE */
1841
1842 #if 0
1843 /* Don't set last_asynchronous_pid in the child */
1844 if (async_p)
1845 last_asynchronous_pid = mypid; /* XXX */
1846 else
1847 #endif
1848 #if defined (RECYCLES_PIDS)
1849 if (last_asynchronous_pid == mypid)
1850 /* Avoid pid aliasing. 1 seems like a safe, unusual pid value. */
1851 last_asynchronous_pid = 1;
1852 #endif
1853 }
1854 else
1855 {
1856 /* In the parent. Remember the pid of the child just created
1857 as the proper pgrp if this is the first child. */
1858
1859 if (first_pid == NO_PID)
1860 first_pid = pid;
1861 else if (pid_wrap == -1 && pid < first_pid)
1862 pid_wrap = 0;
1863 else if (pid_wrap == 0 && pid >= first_pid)
1864 pid_wrap = 1;
1865
1866 if (job_control)
1867 {
1868 if (pipeline_pgrp == 0)
1869 {
1870 pipeline_pgrp = pid;
1871 /* Don't twiddle terminal pgrps in the parent! This is the bug,
1872 not the good thing of twiddling them in the child! */
1873 /* give_terminal_to (pipeline_pgrp, 0); */
1874 }
1875 /* This is done on the recommendation of the Rationale section of
1876 the POSIX 1003.1 standard, where it discusses job control and
1877 shells. It is done to avoid possible race conditions. (Ref.
1878 1003.1 Rationale, section B.4.3.3, page 236). */
1879 setpgid (pid, pipeline_pgrp);
1880 }
1881 else
1882 {
1883 if (pipeline_pgrp == 0)
1884 pipeline_pgrp = shell_pgrp;
1885 }
1886
1887 /* Place all processes into the jobs array regardless of the
1888 state of job_control. */
1889 add_process (command, pid);
1890
1891 if (async_p)
1892 last_asynchronous_pid = pid;
1893 #if defined (RECYCLES_PIDS)
1894 else if (last_asynchronous_pid == pid)
1895 /* Avoid pid aliasing. 1 seems like a safe, unusual pid value. */
1896 last_asynchronous_pid = 1;
1897 #endif
1898
1899 if (pid_wrap > 0)
1900 delete_old_job (pid);
1901
1902 #if !defined (RECYCLES_PIDS)
1903 /* Only check for saved status if we've saved more than CHILD_MAX
1904 statuses, unless the system recycles pids. */
1905 if ((js.c_reaped + bgpids.npid) >= js.c_childmax)
1906 #endif
1907 bgp_delete (pid); /* new process, discard any saved status */
1908
1909 last_made_pid = pid;
1910
1911 /* keep stats */
1912 js.c_totforked++;
1913 js.c_living++;
1914
1915 /* Unblock SIGINT and SIGCHLD unless creating a pipeline, in which case
1916 SIGCHLD remains blocked until all commands in the pipeline have been
1917 created. */
1918 sigprocmask (SIG_SETMASK, &oset, (sigset_t *)NULL);
1919 }
1920
1921 return (pid);
1922 }
1923
1924 /* These two functions are called only in child processes. */
1925 void
1926 ignore_tty_job_signals ()
1927 {
1928 set_signal_handler (SIGTSTP, SIG_IGN);
1929 set_signal_handler (SIGTTIN, SIG_IGN);
1930 set_signal_handler (SIGTTOU, SIG_IGN);
1931 }
1932
1933 void
1934 default_tty_job_signals ()
1935 {
1936 set_signal_handler (SIGTSTP, SIG_DFL);
1937 set_signal_handler (SIGTTIN, SIG_DFL);
1938 set_signal_handler (SIGTTOU, SIG_DFL);
1939 }
1940
1941 /* When we end a job abnormally, or if we stop a job, we set the tty to the
1942 state kept in here. When a job ends normally, we set the state in here
1943 to the state of the tty. */
1944
1945 static TTYSTRUCT shell_tty_info;
1946
1947 #if defined (NEW_TTY_DRIVER)
1948 static struct tchars shell_tchars;
1949 static struct ltchars shell_ltchars;
1950 #endif /* NEW_TTY_DRIVER */
1951
1952 #if defined (NEW_TTY_DRIVER) && defined (DRAIN_OUTPUT)
1953 /* Since the BSD tty driver does not allow us to change the tty modes
1954 while simultaneously waiting for output to drain and preserving
1955 typeahead, we have to drain the output ourselves before calling
1956 ioctl. We cheat by finding the length of the output queue, and
1957 using select to wait for an appropriate length of time. This is
1958 a hack, and should be labeled as such (it's a hastily-adapted
1959 mutation of a `usleep' implementation). It's only reason for
1960 existing is the flaw in the BSD tty driver. */
1961
1962 static int ttspeeds[] =
1963 {
1964 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
1965 1800, 2400, 4800, 9600, 19200, 38400
1966 };
1967
1968 static void
1969 draino (fd, ospeed)
1970 int fd, ospeed;
1971 {
1972 register int delay = ttspeeds[ospeed];
1973 int n;
1974
1975 if (!delay)
1976 return;
1977
1978 while ((ioctl (fd, TIOCOUTQ, &n) == 0) && n)
1979 {
1980 if (n > (delay / 100))
1981 {
1982 struct timeval tv;
1983
1984 n *= 10; /* 2 bits more for conservativeness. */
1985 tv.tv_sec = n / delay;
1986 tv.tv_usec = ((n % delay) * 1000000) / delay;
1987 select (fd, (fd_set *)0, (fd_set *)0, (fd_set *)0, &tv);
1988 }
1989 else
1990 break;
1991 }
1992 }
1993 #endif /* NEW_TTY_DRIVER && DRAIN_OUTPUT */
1994
1995 /* Return the fd from which we are actually getting input. */
1996 #define input_tty() (shell_tty != -1) ? shell_tty : fileno (stderr)
1997
1998 /* Fill the contents of shell_tty_info with the current tty info. */
1999 int
2000 get_tty_state ()
2001 {
2002 int tty;
2003
2004 tty = input_tty ();
2005 if (tty != -1)
2006 {
2007 #if defined (NEW_TTY_DRIVER)
2008 ioctl (tty, TIOCGETP, &shell_tty_info);
2009 ioctl (tty, TIOCGETC, &shell_tchars);
2010 ioctl (tty, TIOCGLTC, &shell_ltchars);
2011 #endif /* NEW_TTY_DRIVER */
2012
2013 #if defined (TERMIO_TTY_DRIVER)
2014 ioctl (tty, TCGETA, &shell_tty_info);
2015 #endif /* TERMIO_TTY_DRIVER */
2016
2017 #if defined (TERMIOS_TTY_DRIVER)
2018 if (tcgetattr (tty, &shell_tty_info) < 0)
2019 {
2020 #if 0
2021 /* Only print an error message if we're really interactive at
2022 this time. */
2023 if (interactive)
2024 sys_error ("[%ld: %d (%d)] tcgetattr", (long)getpid (), shell_level, tty);
2025 #endif
2026 return -1;
2027 }
2028 #endif /* TERMIOS_TTY_DRIVER */
2029 if (check_window_size)
2030 get_new_window_size (0, (int *)0, (int *)0);
2031 }
2032 return 0;
2033 }
2034
2035 /* Make the current tty use the state in shell_tty_info. */
2036 int
2037 set_tty_state ()
2038 {
2039 int tty;
2040
2041 tty = input_tty ();
2042 if (tty != -1)
2043 {
2044 #if defined (NEW_TTY_DRIVER)
2045 # if defined (DRAIN_OUTPUT)
2046 draino (tty, shell_tty_info.sg_ospeed);
2047 # endif /* DRAIN_OUTPUT */
2048 ioctl (tty, TIOCSETN, &shell_tty_info);
2049 ioctl (tty, TIOCSETC, &shell_tchars);
2050 ioctl (tty, TIOCSLTC, &shell_ltchars);
2051 #endif /* NEW_TTY_DRIVER */
2052
2053 #if defined (TERMIO_TTY_DRIVER)
2054 ioctl (tty, TCSETAW, &shell_tty_info);
2055 #endif /* TERMIO_TTY_DRIVER */
2056
2057 #if defined (TERMIOS_TTY_DRIVER)
2058 if (tcsetattr (tty, TCSADRAIN, &shell_tty_info) < 0)
2059 {
2060 /* Only print an error message if we're really interactive at
2061 this time. */
2062 if (interactive)
2063 sys_error ("[%ld: %d (%d)] tcsetattr", (long)getpid (), shell_level, tty);
2064 return -1;
2065 }
2066 #endif /* TERMIOS_TTY_DRIVER */
2067 }
2068 return 0;
2069 }
2070
2071 /* Given an index into the jobs array JOB, return the PROCESS struct of the last
2072 process in that job's pipeline. This is the one whose exit status
2073 counts. Must be called with SIGCHLD blocked or queued. */
2074 static PROCESS *
2075 find_last_proc (job, block)
2076 int job;
2077 int block;
2078 {
2079 register PROCESS *p;
2080 sigset_t set, oset;
2081
2082 if (block)
2083 BLOCK_CHILD (set, oset);
2084
2085 p = jobs[job]->pipe;
2086 while (p && p->next != jobs[job]->pipe)
2087 p = p->next;
2088
2089 if (block)
2090 UNBLOCK_CHILD (oset);
2091
2092 return (p);
2093 }
2094
2095 static pid_t
2096 find_last_pid (job, block)
2097 int job;
2098 int block;
2099 {
2100 PROCESS *p;
2101
2102 p = find_last_proc (job, block);
2103 /* Possible race condition here. */
2104 return p->pid;
2105 }
2106
2107 /* Wait for a particular child of the shell to finish executing.
2108 This low-level function prints an error message if PID is not
2109 a child of this shell. It returns -1 if it fails, or whatever
2110 wait_for returns otherwise. If the child is not found in the
2111 jobs table, it returns 127. */
2112 int
2113 wait_for_single_pid (pid)
2114 pid_t pid;
2115 {
2116 register PROCESS *child;
2117 sigset_t set, oset;
2118 int r, job;
2119
2120 BLOCK_CHILD (set, oset);
2121 child = find_pipeline (pid, 0, (int *)NULL);
2122 UNBLOCK_CHILD (oset);
2123
2124 if (child == 0)
2125 {
2126 r = bgp_search (pid);
2127 if (r >= 0)
2128 return r;
2129 }
2130
2131 if (child == 0)
2132 {
2133 internal_error (_("wait: pid %ld is not a child of this shell"), (long)pid);
2134 return (127);
2135 }
2136
2137 r = wait_for (pid);
2138
2139 /* POSIX.2: if we just waited for a job, we can remove it from the jobs
2140 table. */
2141 BLOCK_CHILD (set, oset);
2142 job = find_job (pid, 0, NULL);
2143 if (job != NO_JOB && jobs[job] && DEADJOB (job))
2144 jobs[job]->flags |= J_NOTIFIED;
2145 UNBLOCK_CHILD (oset);
2146
2147 /* If running in posix mode, remove the job from the jobs table immediately */
2148 if (posixly_correct)
2149 {
2150 cleanup_dead_jobs ();
2151 bgp_delete (pid);
2152 }
2153
2154 return r;
2155 }
2156
2157 /* Wait for all of the background processes started by this shell to finish. */
2158 void
2159 wait_for_background_pids ()
2160 {
2161 register int i, r, waited_for;
2162 sigset_t set, oset;
2163 pid_t pid;
2164
2165 for (waited_for = 0;;)
2166 {
2167 BLOCK_CHILD (set, oset);
2168
2169 /* find first running job; if none running in foreground, break */
2170 /* XXX could use js.j_firstj and js.j_lastj here */
2171 for (i = 0; i < js.j_jobslots; i++)
2172 {
2173 #if defined (DEBUG)
2174 if (i < js.j_firstj && jobs[i])
2175 itrace("wait_for_background_pids: job %d non-null before js.j_firstj (%d)", i, js.j_firstj);
2176 if (i > js.j_lastj && jobs[i])
2177 itrace("wait_for_background_pids: job %d non-null after js.j_lastj (%d)", i, js.j_lastj);
2178 #endif
2179 if (jobs[i] && RUNNING (i) && IS_FOREGROUND (i) == 0)
2180 break;
2181 }
2182 if (i == js.j_jobslots)
2183 {
2184 UNBLOCK_CHILD (oset);
2185 break;
2186 }
2187
2188 /* now wait for the last pid in that job. */
2189 pid = find_last_pid (i, 0);
2190 UNBLOCK_CHILD (oset);
2191 QUIT;
2192 errno = 0; /* XXX */
2193 r = wait_for_single_pid (pid);
2194 if (r == -1)
2195 {
2196 /* If we're mistaken about job state, compensate. */
2197 if (errno == ECHILD)
2198 mark_all_jobs_as_dead ();
2199 }
2200 else
2201 waited_for++;
2202 }
2203
2204 /* POSIX.2 says the shell can discard the statuses of all completed jobs if
2205 `wait' is called with no arguments. */
2206 mark_dead_jobs_as_notified (1);
2207 cleanup_dead_jobs ();
2208 bgp_clear ();
2209 }
2210
2211 /* Make OLD_SIGINT_HANDLER the SIGINT signal handler. */
2212 #define INVALID_SIGNAL_HANDLER (SigHandler *)wait_for_background_pids
2213 static SigHandler *old_sigint_handler = INVALID_SIGNAL_HANDLER;
2214
2215 static int wait_sigint_received;
2216 static int child_caught_sigint;
2217 static int waiting_for_child;
2218
2219 static void
2220 restore_sigint_handler ()
2221 {
2222 if (old_sigint_handler != INVALID_SIGNAL_HANDLER)
2223 {
2224 set_signal_handler (SIGINT, old_sigint_handler);
2225 old_sigint_handler = INVALID_SIGNAL_HANDLER;
2226 waiting_for_child = 0;
2227 }
2228 }
2229
2230 /* Handle SIGINT while we are waiting for children in a script to exit.
2231 The `wait' builtin should be interruptible, but all others should be
2232 effectively ignored (i.e. not cause the shell to exit). */
2233 static sighandler
2234 wait_sigint_handler (sig)
2235 int sig;
2236 {
2237 SigHandler *sigint_handler;
2238
2239 if (interrupt_immediately ||
2240 (this_shell_builtin && this_shell_builtin == wait_builtin))
2241 {
2242 last_command_exit_value = EXECUTION_FAILURE;
2243 restore_sigint_handler ();
2244 /* If we got a SIGINT while in `wait', and SIGINT is trapped, do
2245 what POSIX.2 says (see builtins/wait.def for more info). */
2246 if (this_shell_builtin && this_shell_builtin == wait_builtin &&
2247 signal_is_trapped (SIGINT) &&
2248 ((sigint_handler = trap_to_sighandler (SIGINT)) == trap_handler))
2249 {
2250 interrupt_immediately = 0;
2251 trap_handler (SIGINT); /* set pending_traps[SIGINT] */
2252 wait_signal_received = SIGINT;
2253 longjmp (wait_intr_buf, 1);
2254 }
2255
2256 ADDINTERRUPT;
2257 QUIT;
2258 }
2259
2260 /* XXX - should this be interrupt_state? If it is, the shell will act
2261 as if it got the SIGINT interrupt. */
2262 if (waiting_for_child)
2263 wait_sigint_received = 1;
2264 else
2265 {
2266 last_command_exit_value = 128+SIGINT;
2267 restore_sigint_handler ();
2268 kill (getpid (), SIGINT);
2269 }
2270
2271 /* Otherwise effectively ignore the SIGINT and allow the running job to
2272 be killed. */
2273 SIGRETURN (0);
2274 }
2275
2276 static int
2277 process_exit_signal (status)
2278 WAIT status;
2279 {
2280 return (WIFSIGNALED (status) ? WTERMSIG (status) : 0);
2281 }
2282
2283 static int
2284 process_exit_status (status)
2285 WAIT status;
2286 {
2287 if (WIFSIGNALED (status))
2288 return (128 + WTERMSIG (status));
2289 else if (WIFSTOPPED (status) == 0)
2290 return (WEXITSTATUS (status));
2291 else
2292 return (EXECUTION_SUCCESS);
2293 }
2294
2295 static WAIT
2296 job_signal_status (job)
2297 int job;
2298 {
2299 register PROCESS *p;
2300 WAIT s;
2301
2302 p = jobs[job]->pipe;
2303 do
2304 {
2305 s = p->status;
2306 if (WIFSIGNALED(s) || WIFSTOPPED(s))
2307 break;
2308 p = p->next;
2309 }
2310 while (p != jobs[job]->pipe);
2311
2312 return s;
2313 }
2314
2315 /* Return the exit status of the last process in the pipeline for job JOB.
2316 This is the exit status of the entire job. */
2317 static WAIT
2318 raw_job_exit_status (job)
2319 int job;
2320 {
2321 register PROCESS *p;
2322 int fail;
2323 WAIT ret;
2324
2325 if (pipefail_opt)
2326 {
2327 fail = 0;
2328 p = jobs[job]->pipe;
2329 do
2330 {
2331 if (WSTATUS (p->status) != EXECUTION_SUCCESS)
2332 fail = WSTATUS(p->status);
2333 p = p->next;
2334 }
2335 while (p != jobs[job]->pipe);
2336 WSTATUS (ret) = fail;
2337 return ret;
2338 }
2339
2340 for (p = jobs[job]->pipe; p->next != jobs[job]->pipe; p = p->next)
2341 ;
2342 return (p->status);
2343 }
2344
2345 /* Return the exit status of job JOB. This is the exit status of the last
2346 (rightmost) process in the job's pipeline, modified if the job was killed
2347 by a signal or stopped. */
2348 int
2349 job_exit_status (job)
2350 int job;
2351 {
2352 return (process_exit_status (raw_job_exit_status (job)));
2353 }
2354
2355 int
2356 job_exit_signal (job)
2357 int job;
2358 {
2359 return (process_exit_signal (raw_job_exit_status (job)));
2360 }
2361
2362 #define FIND_CHILD(pid, child) \
2363 do \
2364 { \
2365 child = find_pipeline (pid, 0, (int *)NULL); \
2366 if (child == 0) \
2367 { \
2368 give_terminal_to (shell_pgrp, 0); \
2369 UNBLOCK_CHILD (oset); \
2370 internal_error (_("wait_for: No record of process %ld"), (long)pid); \
2371 restore_sigint_handler (); \
2372 return (termination_state = 127); \
2373 } \
2374 } \
2375 while (0)
2376
2377 /* Wait for pid (one of our children) to terminate, then
2378 return the termination state. Returns 127 if PID is not found in
2379 the jobs table. Returns -1 if waitchld() returns -1, indicating
2380 that there are no unwaited-for child processes. */
2381 int
2382 wait_for (pid)
2383 pid_t pid;
2384 {
2385 int job, termination_state, r;
2386 WAIT s;
2387 register PROCESS *child;
2388 sigset_t set, oset;
2389
2390 /* In the case that this code is interrupted, and we longjmp () out of it,
2391 we are relying on the code in throw_to_top_level () to restore the
2392 top-level signal mask. */
2393 BLOCK_CHILD (set, oset);
2394
2395 /* Ignore interrupts while waiting for a job run without job control
2396 to finish. We don't want the shell to exit if an interrupt is
2397 received, only if one of the jobs run is killed via SIGINT. If
2398 job control is not set, the job will be run in the same pgrp as
2399 the shell, and the shell will see any signals the job gets. In
2400 fact, we want this set every time the waiting shell and the waited-
2401 for process are in the same process group, including command
2402 substitution. */
2403
2404 /* This is possibly a race condition -- should it go in stop_pipeline? */
2405 wait_sigint_received = child_caught_sigint = 0;
2406 if (job_control == 0 || (subshell_environment&SUBSHELL_COMSUB))
2407 {
2408 old_sigint_handler = set_signal_handler (SIGINT, wait_sigint_handler);
2409 waiting_for_child = 0;
2410 if (old_sigint_handler == SIG_IGN)
2411 set_signal_handler (SIGINT, old_sigint_handler);
2412 }
2413
2414 termination_state = last_command_exit_value;
2415
2416 if (interactive && job_control == 0)
2417 QUIT;
2418 /* Check for terminating signals and exit the shell if we receive one */
2419 CHECK_TERMSIG;
2420
2421 /* If we say wait_for (), then we have a record of this child somewhere.
2422 If it and none of its peers are running, don't call waitchld(). */
2423
2424 job = NO_JOB;
2425 do
2426 {
2427 FIND_CHILD (pid, child);
2428
2429 /* If this child is part of a job, then we are really waiting for the
2430 job to finish. Otherwise, we are waiting for the child to finish.
2431 We check for JDEAD in case the job state has been set by waitchld
2432 after receipt of a SIGCHLD. */
2433 if (job == NO_JOB)
2434 job = find_job (pid, 0, NULL);
2435
2436 /* waitchld() takes care of setting the state of the job. If the job
2437 has already exited before this is called, sigchld_handler will have
2438 called waitchld and the state will be set to JDEAD. */
2439
2440 if (PRUNNING(child) || (job != NO_JOB && RUNNING (job)))
2441 {
2442 #if defined (WAITPID_BROKEN) /* SCOv4 */
2443 sigset_t suspend_set;
2444 sigemptyset (&suspend_set);
2445 sigsuspend (&suspend_set);
2446 #else /* !WAITPID_BROKEN */
2447 # if defined (MUST_UNBLOCK_CHLD)
2448 struct sigaction act, oact;
2449 sigset_t nullset, chldset;
2450
2451 sigemptyset (&nullset);
2452 sigemptyset (&chldset);
2453 sigprocmask (SIG_SETMASK, &nullset, &chldset);
2454 act.sa_handler = SIG_DFL;
2455 sigemptyset (&act.sa_mask);
2456 sigemptyset (&oact.sa_mask);
2457 act.sa_flags = 0;
2458 sigaction (SIGCHLD, &act, &oact);
2459 # endif
2460 queue_sigchld = 1;
2461 waiting_for_child++;
2462 r = waitchld (pid, 1);
2463 waiting_for_child--;
2464 # if defined (MUST_UNBLOCK_CHLD)
2465 sigaction (SIGCHLD, &oact, (struct sigaction *)NULL);
2466 sigprocmask (SIG_SETMASK, &chldset, (sigset_t *)NULL);
2467 # endif
2468 queue_sigchld = 0;
2469 if (r == -1 && errno == ECHILD && this_shell_builtin == wait_builtin)
2470 {
2471 termination_state = -1;
2472 goto wait_for_return;
2473 }
2474
2475 /* If child is marked as running, but waitpid() returns -1/ECHILD,
2476 there is something wrong. Somewhere, wait should have returned
2477 that child's pid. Mark the child as not running and the job,
2478 if it exists, as JDEAD. */
2479 if (r == -1 && errno == ECHILD)
2480 {
2481 child->running = PS_DONE;
2482 WSTATUS (child->status) = 0; /* XXX -- can't find true status */
2483 js.c_living = 0; /* no living child processes */
2484 if (job != NO_JOB)
2485 {
2486 jobs[job]->state = JDEAD;
2487 js.c_reaped++;
2488 js.j_ndead++;
2489 }
2490 }
2491 #endif /* WAITPID_BROKEN */
2492 }
2493
2494 /* If the shell is interactive, and job control is disabled, see
2495 if the foreground process has died due to SIGINT and jump out
2496 of the wait loop if it has. waitchld has already restored the
2497 old SIGINT signal handler. */
2498 if (interactive && job_control == 0)
2499 QUIT;
2500 /* Check for terminating signals and exit the shell if we receive one */
2501 CHECK_TERMSIG;
2502 }
2503 while (PRUNNING (child) || (job != NO_JOB && RUNNING (job)));
2504
2505 /* Restore the original SIGINT signal handler before we return. */
2506 restore_sigint_handler ();
2507
2508 /* The exit state of the command is either the termination state of the
2509 child, or the termination state of the job. If a job, the status
2510 of the last child in the pipeline is the significant one. If the command
2511 or job was terminated by a signal, note that value also. */
2512 termination_state = (job != NO_JOB) ? job_exit_status (job)
2513 : process_exit_status (child->status);
2514 last_command_exit_signal = (job != NO_JOB) ? job_exit_signal (job)
2515 : process_exit_signal (child->status);
2516
2517 /* XXX */
2518 if ((job != NO_JOB && JOBSTATE (job) == JSTOPPED) || WIFSTOPPED (child->status))
2519 termination_state = 128 + WSTOPSIG (child->status);
2520
2521 if (job == NO_JOB || IS_JOBCONTROL (job))
2522 {
2523 /* XXX - under what circumstances is a job not present in the jobs
2524 table (job == NO_JOB)?
2525 1. command substitution
2526
2527 In the case of command substitution, at least, it's probably not
2528 the right thing to give the terminal to the shell's process group,
2529 even though there is code in subst.c:command_substitute to work
2530 around it.
2531
2532 Things that don't:
2533 $PROMPT_COMMAND execution
2534 process substitution
2535 */
2536 #if 0
2537 if (job == NO_JOB)
2538 itrace("wait_for: job == NO_JOB, giving the terminal to shell_pgrp (%ld)", (long)shell_pgrp);
2539 #endif
2540 give_terminal_to (shell_pgrp, 0);
2541 }
2542
2543 /* If the command did not exit cleanly, or the job is just
2544 being stopped, then reset the tty state back to what it
2545 was before this command. Reset the tty state and notify
2546 the user of the job termination only if the shell is
2547 interactive. Clean up any dead jobs in either case. */
2548 if (job != NO_JOB)
2549 {
2550 if (interactive_shell && subshell_environment == 0)
2551 {
2552 /* This used to use `child->status'. That's wrong, however, for
2553 pipelines. `child' is the first process in the pipeline. It's
2554 likely that the process we want to check for abnormal termination
2555 or stopping is the last process in the pipeline, especially if
2556 it's long-lived and the first process is short-lived. Since we
2557 know we have a job here, we can check all the processes in this
2558 job's pipeline and see if one of them stopped or terminated due
2559 to a signal. We might want to change this later to just check
2560 the last process in the pipeline. If no process exits due to a
2561 signal, S is left as the status of the last job in the pipeline. */
2562 s = job_signal_status (job);
2563
2564 if (WIFSIGNALED (s) || WIFSTOPPED (s))
2565 {
2566 set_tty_state ();
2567
2568 /* If the current job was stopped or killed by a signal, and
2569 the user has requested it, get a possibly new window size */
2570 if (check_window_size && (job == js.j_current || IS_FOREGROUND (job)))
2571 get_new_window_size (0, (int *)0, (int *)0);
2572 }
2573 else
2574 get_tty_state ();
2575
2576 /* If job control is enabled, the job was started with job
2577 control, the job was the foreground job, and it was killed
2578 by SIGINT, then print a newline to compensate for the kernel
2579 printing the ^C without a trailing newline. */
2580 if (job_control && IS_JOBCONTROL (job) && IS_FOREGROUND (job) &&
2581 WIFSIGNALED (s) && WTERMSIG (s) == SIGINT)
2582 {
2583 /* If SIGINT is not trapped and the shell is in a for, while,
2584 or until loop, act as if the shell received SIGINT as
2585 well, so the loop can be broken. This doesn't call the
2586 SIGINT signal handler; maybe it should. */
2587 if (signal_is_trapped (SIGINT) == 0 && (loop_level || (shell_compatibility_level > 32 && executing_list)))
2588 ADDINTERRUPT;
2589 else
2590 {
2591 putchar ('\n');
2592 fflush (stdout);
2593 }
2594 }
2595 }
2596 else if ((subshell_environment & (SUBSHELL_COMSUB|SUBSHELL_PIPE)) && wait_sigint_received)
2597 {
2598 /* If waiting for a job in a subshell started to do command
2599 substitution or to run a pipeline element that consists of
2600 something like a while loop or a for loop, simulate getting
2601 and being killed by the SIGINT to pass the status back to our
2602 parent. */
2603 s = job_signal_status (job);
2604
2605 if (child_caught_sigint == 0 && signal_is_trapped (SIGINT) == 0)
2606 {
2607 UNBLOCK_CHILD (oset);
2608 old_sigint_handler = set_signal_handler (SIGINT, SIG_DFL);
2609 if (old_sigint_handler == SIG_IGN)
2610 restore_sigint_handler ();
2611 else
2612 kill (getpid (), SIGINT);
2613 }
2614 }
2615
2616 /* Moved here from set_job_status_and_cleanup, which is in the SIGCHLD
2617 signal handler path */
2618 if (DEADJOB (job) && IS_FOREGROUND (job) /*&& subshell_environment == 0*/)
2619 setjstatus (job);
2620
2621 /* If this job is dead, notify the user of the status. If the shell
2622 is interactive, this will display a message on the terminal. If
2623 the shell is not interactive, make sure we turn on the notify bit
2624 so we don't get an unwanted message about the job's termination,
2625 and so delete_job really clears the slot in the jobs table. */
2626 notify_and_cleanup ();
2627 }
2628
2629 wait_for_return:
2630
2631 UNBLOCK_CHILD (oset);
2632
2633 return (termination_state);
2634 }
2635
2636 /* Wait for the last process in the pipeline for JOB. Returns whatever
2637 wait_for returns: the last process's termination state or -1 if there
2638 are no unwaited-for child processes or an error occurs. */
2639 int
2640 wait_for_job (job)
2641 int job;
2642 {
2643 pid_t pid;
2644 int r;
2645 sigset_t set, oset;
2646
2647 BLOCK_CHILD(set, oset);
2648 if (JOBSTATE (job) == JSTOPPED)
2649 internal_warning (_("wait_for_job: job %d is stopped"), job+1);
2650
2651 pid = find_last_pid (job, 0);
2652 UNBLOCK_CHILD(oset);
2653 r = wait_for (pid);
2654
2655 /* POSIX.2: we can remove the job from the jobs table if we just waited
2656 for it. */
2657 BLOCK_CHILD (set, oset);
2658 if (job != NO_JOB && jobs[job] && DEADJOB (job))
2659 jobs[job]->flags |= J_NOTIFIED;
2660 UNBLOCK_CHILD (oset);
2661
2662 return r;
2663 }
2664
2665 /* Print info about dead jobs, and then delete them from the list
2666 of known jobs. This does not actually delete jobs when the
2667 shell is not interactive, because the dead jobs are not marked
2668 as notified. */
2669 void
2670 notify_and_cleanup ()
2671 {
2672 if (jobs_list_frozen)
2673 return;
2674
2675 if (interactive || interactive_shell == 0 || sourcelevel)
2676 notify_of_job_status ();
2677
2678 cleanup_dead_jobs ();
2679 }
2680
2681 /* Make dead jobs disappear from the jobs array without notification.
2682 This is used when the shell is not interactive. */
2683 void
2684 reap_dead_jobs ()
2685 {
2686 mark_dead_jobs_as_notified (0);
2687 cleanup_dead_jobs ();
2688 }
2689
2690 /* Return the next closest (chronologically) job to JOB which is in
2691 STATE. STATE can be JSTOPPED, JRUNNING. NO_JOB is returned if
2692 there is no next recent job. */
2693 static int
2694 most_recent_job_in_state (job, state)
2695 int job;
2696 JOB_STATE state;
2697 {
2698 register int i, result;
2699 sigset_t set, oset;
2700
2701 BLOCK_CHILD (set, oset);
2702
2703 for (result = NO_JOB, i = job - 1; i >= 0; i--)
2704 {
2705 if (jobs[i] && (JOBSTATE (i) == state))
2706 {
2707 result = i;
2708 break;
2709 }
2710 }
2711
2712 UNBLOCK_CHILD (oset);
2713
2714 return (result);
2715 }
2716
2717 /* Return the newest *stopped* job older than JOB, or NO_JOB if not
2718 found. */
2719 static int
2720 job_last_stopped (job)
2721 int job;
2722 {
2723 return (most_recent_job_in_state (job, JSTOPPED));
2724 }
2725
2726 /* Return the newest *running* job older than JOB, or NO_JOB if not
2727 found. */
2728 static int
2729 job_last_running (job)
2730 int job;
2731 {
2732 return (most_recent_job_in_state (job, JRUNNING));
2733 }
2734
2735 /* Make JOB be the current job, and make previous be useful. Must be
2736 called with SIGCHLD blocked. */
2737 static void
2738 set_current_job (job)
2739 int job;
2740 {
2741 int candidate;
2742
2743 if (js.j_current != job)
2744 {
2745 js.j_previous = js.j_current;
2746 js.j_current = job;
2747 }
2748
2749 /* First choice for previous job is the old current job. */
2750 if (js.j_previous != js.j_current &&
2751 js.j_previous != NO_JOB &&
2752 jobs[js.j_previous] &&
2753 STOPPED (js.j_previous))
2754 return;
2755
2756 /* Second choice: Newest stopped job that is older than
2757 the current job. */
2758 candidate = NO_JOB;
2759 if (STOPPED (js.j_current))
2760 {
2761 candidate = job_last_stopped (js.j_current);
2762
2763 if (candidate != NO_JOB)
2764 {
2765 js.j_previous = candidate;
2766 return;
2767 }
2768 }
2769
2770 /* If we get here, there is either only one stopped job, in which case it is
2771 the current job and the previous job should be set to the newest running
2772 job, or there are only running jobs and the previous job should be set to
2773 the newest running job older than the current job. We decide on which
2774 alternative to use based on whether or not JOBSTATE(js.j_current) is
2775 JSTOPPED. */
2776
2777 candidate = RUNNING (js.j_current) ? job_last_running (js.j_current)
2778 : job_last_running (js.j_jobslots);
2779
2780 if (candidate != NO_JOB)
2781 {
2782 js.j_previous = candidate;
2783 return;
2784 }
2785
2786 /* There is only a single job, and it is both `+' and `-'. */
2787 js.j_previous = js.j_current;
2788 }
2789
2790 /* Make current_job be something useful, if it isn't already. */
2791
2792 /* Here's the deal: The newest non-running job should be `+', and the
2793 next-newest non-running job should be `-'. If there is only a single
2794 stopped job, the js.j_previous is the newest non-running job. If there
2795 are only running jobs, the newest running job is `+' and the
2796 next-newest running job is `-'. Must be called with SIGCHLD blocked. */
2797
2798 static void
2799 reset_current ()
2800 {
2801 int candidate;
2802
2803 if (js.j_jobslots && js.j_current != NO_JOB && jobs[js.j_current] && STOPPED (js.j_current))
2804 candidate = js.j_current;
2805 else
2806 {
2807 candidate = NO_JOB;
2808
2809 /* First choice: the previous job. */
2810 if (js.j_previous != NO_JOB && jobs[js.j_previous] && STOPPED (js.j_previous))
2811 candidate = js.j_previous;
2812
2813 /* Second choice: the most recently stopped job. */
2814 if (candidate == NO_JOB)
2815 candidate = job_last_stopped (js.j_jobslots);
2816
2817 /* Third choice: the newest running job. */
2818 if (candidate == NO_JOB)
2819 candidate = job_last_running (js.j_jobslots);
2820 }
2821
2822 /* If we found a job to use, then use it. Otherwise, there
2823 are no jobs period. */
2824 if (candidate != NO_JOB)
2825 set_current_job (candidate);
2826 else
2827 js.j_current = js.j_previous = NO_JOB;
2828 }
2829
2830 /* Set up the job structures so we know the job and its processes are
2831 all running. */
2832 static void
2833 set_job_running (job)
2834 int job;
2835 {
2836 register PROCESS *p;
2837
2838 /* Each member of the pipeline is now running. */
2839 p = jobs[job]->pipe;
2840
2841 do
2842 {
2843 if (WIFSTOPPED (p->status))
2844 p->running = PS_RUNNING; /* XXX - could be PS_STOPPED */
2845 p = p->next;
2846 }
2847 while (p != jobs[job]->pipe);
2848
2849 /* This means that the job is running. */
2850 JOBSTATE (job) = JRUNNING;
2851 }
2852
2853 /* Start a job. FOREGROUND if non-zero says to do that. Otherwise,
2854 start the job in the background. JOB is a zero-based index into
2855 JOBS. Returns -1 if it is unable to start a job, and the return
2856 status of the job otherwise. */
2857 int
2858 start_job (job, foreground)
2859 int job, foreground;
2860 {
2861 register PROCESS *p;
2862 int already_running;
2863 sigset_t set, oset;
2864 char *wd, *s;
2865 static TTYSTRUCT save_stty;
2866
2867 BLOCK_CHILD (set, oset);
2868
2869 if (DEADJOB (job))
2870 {
2871 internal_error (_("%s: job has terminated"), this_command_name);
2872 UNBLOCK_CHILD (oset);
2873 return (-1);
2874 }
2875
2876 already_running = RUNNING (job);
2877
2878 if (foreground == 0 && already_running)
2879 {
2880 internal_error (_("%s: job %d already in background"), this_command_name, job + 1);
2881 UNBLOCK_CHILD (oset);
2882 return (0); /* XPG6/SUSv3 says this is not an error */
2883 }
2884
2885 wd = current_working_directory ();
2886
2887 /* You don't know about the state of this job. Do you? */
2888 jobs[job]->flags &= ~J_NOTIFIED;
2889
2890 if (foreground)
2891 {
2892 set_current_job (job);
2893 jobs[job]->flags |= J_FOREGROUND;
2894 }
2895
2896 /* Tell the outside world what we're doing. */
2897 p = jobs[job]->pipe;
2898
2899 if (foreground == 0)
2900 {
2901 /* POSIX.2 says `bg' doesn't give any indication about current or
2902 previous job. */
2903 if (posixly_correct == 0)
2904 s = (job == js.j_current) ? "+ ": ((job == js.j_previous) ? "- " : " ");
2905 else
2906 s = " ";
2907 printf ("[%d]%s", job + 1, s);
2908 }
2909
2910 do
2911 {
2912 printf ("%s%s",
2913 p->command ? p->command : "",
2914 p->next != jobs[job]->pipe? " | " : "");
2915 p = p->next;
2916 }
2917 while (p != jobs[job]->pipe);
2918
2919 if (foreground == 0)
2920 printf (" &");
2921
2922 if (strcmp (wd, jobs[job]->wd) != 0)
2923 printf (" (wd: %s)", polite_directory_format (jobs[job]->wd));
2924
2925 printf ("\n");
2926
2927 /* Run the job. */
2928 if (already_running == 0)
2929 set_job_running (job);
2930
2931 /* Save the tty settings before we start the job in the foreground. */
2932 if (foreground)
2933 {
2934 get_tty_state ();
2935 save_stty = shell_tty_info;
2936 /* Give the terminal to this job. */
2937 if (IS_JOBCONTROL (job))
2938 give_terminal_to (jobs[job]->pgrp, 0);
2939 }
2940 else
2941 jobs[job]->flags &= ~J_FOREGROUND;
2942
2943 /* If the job is already running, then don't bother jump-starting it. */
2944 if (already_running == 0)
2945 {
2946 jobs[job]->flags |= J_NOTIFIED;
2947 killpg (jobs[job]->pgrp, SIGCONT);
2948 }
2949
2950 if (foreground)
2951 {
2952 pid_t pid;
2953 int st;
2954
2955 pid = find_last_pid (job, 0);
2956 UNBLOCK_CHILD (oset);
2957 st = wait_for (pid);
2958 shell_tty_info = save_stty;
2959 set_tty_state ();
2960 return (st);
2961 }
2962 else
2963 {
2964 reset_current ();
2965 UNBLOCK_CHILD (oset);
2966 return (0);
2967 }
2968 }
2969
2970 /* Give PID SIGNAL. This determines what job the pid belongs to (if any).
2971 If PID does belong to a job, and the job is stopped, then CONTinue the
2972 job after giving it SIGNAL. Returns -1 on failure. If GROUP is non-null,
2973 then kill the process group associated with PID. */
2974 int
2975 kill_pid (pid, sig, group)
2976 pid_t pid;
2977 int sig, group;
2978 {
2979 register PROCESS *p;
2980 int job, result, negative;
2981 sigset_t set, oset;
2982
2983 if (pid < -1)
2984 {
2985 pid = -pid;
2986 group = negative = 1;
2987 }
2988 else
2989 negative = 0;
2990
2991 result = EXECUTION_SUCCESS;
2992 if (group)
2993 {
2994 BLOCK_CHILD (set, oset);
2995 p = find_pipeline (pid, 0, &job);
2996
2997 if (job != NO_JOB)
2998 {
2999 jobs[job]->flags &= ~J_NOTIFIED;
3000
3001 /* Kill process in backquotes or one started without job control? */
3002
3003 /* If we're passed a pid < -1, just call killpg and see what happens */
3004 if (negative && jobs[job]->pgrp == shell_pgrp)
3005 result = killpg (pid, sig);
3006 /* If we're killing using job control notification, for example,
3007 without job control active, we have to do things ourselves. */
3008 else if (jobs[job]->pgrp == shell_pgrp)
3009 {
3010 p = jobs[job]->pipe;
3011 do
3012 {
3013 if (PALIVE (p) == 0)
3014 continue; /* avoid pid recycling problem */
3015 kill (p->pid, sig);
3016 if (PEXITED (p) && (sig == SIGTERM || sig == SIGHUP))
3017 kill (p->pid, SIGCONT);
3018 p = p->next;
3019 }
3020 while (p != jobs[job]->pipe);
3021 }
3022 else
3023 {
3024 result = killpg (jobs[job]->pgrp, sig);
3025 if (p && STOPPED (job) && (sig == SIGTERM || sig == SIGHUP))
3026 killpg (jobs[job]->pgrp, SIGCONT);
3027 /* If we're continuing a stopped job via kill rather than bg or
3028 fg, emulate the `bg' behavior. */
3029 if (p && STOPPED (job) && (sig == SIGCONT))
3030 {
3031 set_job_running (job);
3032 jobs[job]->flags &= ~J_FOREGROUND;
3033 jobs[job]->flags |= J_NOTIFIED;
3034 }
3035 }
3036 }
3037 else
3038 result = killpg (pid, sig);
3039
3040 UNBLOCK_CHILD (oset);
3041 }
3042 else
3043 result = kill (pid, sig);
3044
3045 return (result);
3046 }
3047
3048 /* sigchld_handler () flushes at least one of the children that we are
3049 waiting for. It gets run when we have gotten a SIGCHLD signal. */
3050 static sighandler
3051 sigchld_handler (sig)
3052 int sig;
3053 {
3054 int n, oerrno;
3055
3056 oerrno = errno;
3057 REINSTALL_SIGCHLD_HANDLER;
3058 sigchld++;
3059 n = 0;
3060 if (queue_sigchld == 0)
3061 n = waitchld (-1, 0);
3062 errno = oerrno;
3063 SIGRETURN (n);
3064 }
3065
3066 /* waitchld() reaps dead or stopped children. It's called by wait_for and
3067 sigchld_handler, and runs until there aren't any children terminating any
3068 more.
3069 If BLOCK is 1, this is to be a blocking wait for a single child, although
3070 an arriving SIGCHLD could cause the wait to be non-blocking. It returns
3071 the number of children reaped, or -1 if there are no unwaited-for child
3072 processes. */
3073 static int
3074 waitchld (wpid, block)
3075 pid_t wpid;
3076 int block;
3077 {
3078 WAIT status;
3079 PROCESS *child;
3080 pid_t pid;
3081 int call_set_current, last_stopped_job, job, children_exited, waitpid_flags;
3082 static int wcontinued = WCONTINUED; /* run-time fix for glibc problem */
3083
3084 call_set_current = children_exited = 0;
3085 last_stopped_job = NO_JOB;
3086
3087 do
3088 {
3089 /* We don't want to be notified about jobs stopping if job control
3090 is not active. XXX - was interactive_shell instead of job_control */
3091 waitpid_flags = (job_control && subshell_environment == 0)
3092 ? (WUNTRACED|wcontinued)
3093 : 0;
3094 if (sigchld || block == 0)
3095 waitpid_flags |= WNOHANG;
3096 /* Check for terminating signals and exit the shell if we receive one */
3097 CHECK_TERMSIG;
3098
3099 if (block == 1 && queue_sigchld == 0 && (waitpid_flags & WNOHANG) == 0)
3100 {
3101 internal_warning (_("waitchld: turning on WNOHANG to avoid indefinite block"));
3102 waitpid_flags |= WNOHANG;
3103 }
3104
3105 pid = WAITPID (-1, &status, waitpid_flags);
3106
3107 /* WCONTINUED may be rejected by waitpid as invalid even when defined */
3108 if (wcontinued && pid < 0 && errno == EINVAL)
3109 {
3110 wcontinued = 0;
3111 continue; /* jump back to the test and retry without WCONTINUED */
3112 }
3113
3114 /* The check for WNOHANG is to make sure we decrement sigchld only
3115 if it was non-zero before we called waitpid. */
3116 if (sigchld > 0 && (waitpid_flags & WNOHANG))
3117 sigchld--;
3118
3119 /* If waitpid returns -1 with errno == ECHILD, there are no more
3120 unwaited-for child processes of this shell. */
3121 if (pid < 0 && errno == ECHILD)
3122 {
3123 if (children_exited == 0)
3124 return -1;
3125 else
3126 break;
3127 }
3128
3129 /* If waitpid returns 0, there are running children. If it returns -1,
3130 the only other error POSIX says it can return is EINTR. */
3131 CHECK_TERMSIG;
3132
3133 /* If waitpid returns -1/EINTR and the shell saw a SIGINT, then we
3134 assume the child has blocked or handled SIGINT. In that case, we
3135 require the child to actually die due to SIGINT to act on the
3136 SIGINT we received; otherwise we assume the child handled it and
3137 let it go. */
3138 if (pid < 0 && errno == EINTR && wait_sigint_received)
3139 child_caught_sigint = 1;
3140
3141 if (pid <= 0)
3142 continue; /* jumps right to the test */
3143
3144 /* If the child process did die due to SIGINT, forget our assumption
3145 that it caught or otherwise handled it. */
3146 if (WIFSIGNALED (status) && WTERMSIG (status) == SIGINT)
3147 child_caught_sigint = 0;
3148
3149 /* children_exited is used to run traps on SIGCHLD. We don't want to
3150 run the trap if a process is just being continued. */
3151 if (WIFCONTINUED(status) == 0)
3152 {
3153 children_exited++;
3154 js.c_living--;
3155 }
3156
3157 /* Locate our PROCESS for this pid. */
3158 child = find_process (pid, 1, &job); /* want living procs only */
3159
3160 #if defined (COPROCESS_SUPPORT)
3161 coproc_pidchk (pid, status);
3162 #endif
3163
3164 /* It is not an error to have a child terminate that we did
3165 not have a record of. This child could have been part of
3166 a pipeline in backquote substitution. Even so, I'm not
3167 sure child is ever non-zero. */
3168 if (child == 0)
3169 {
3170 if (WIFEXITED (status) || WIFSIGNALED (status))
3171 js.c_reaped++;
3172 continue;
3173 }
3174
3175 /* Remember status, and whether or not the process is running. */
3176 child->status = status;
3177 child->running = WIFCONTINUED(status) ? PS_RUNNING : PS_DONE;
3178
3179 if (PEXITED (child))
3180 {
3181 js.c_totreaped++;
3182 if (job != NO_JOB)
3183 js.c_reaped++;
3184 }
3185
3186 if (job == NO_JOB)
3187 continue;
3188
3189 call_set_current += set_job_status_and_cleanup (job);
3190
3191 if (STOPPED (job))
3192 last_stopped_job = job;
3193 else if (DEADJOB (job) && last_stopped_job == job)
3194 last_stopped_job = NO_JOB;
3195 }
3196 while ((sigchld || block == 0) && pid > (pid_t)0);
3197
3198 /* If a job was running and became stopped, then set the current
3199 job. Otherwise, don't change a thing. */
3200 if (call_set_current)
3201 {
3202 if (last_stopped_job != NO_JOB)
3203 set_current_job (last_stopped_job);
3204 else
3205 reset_current ();
3206 }
3207
3208 /* Call a SIGCHLD trap handler for each child that exits, if one is set. */
3209 if (job_control && signal_is_trapped (SIGCHLD) && children_exited &&
3210 trap_list[SIGCHLD] != (char *)IGNORE_SIG)
3211 {
3212 if (posixly_correct && this_shell_builtin && this_shell_builtin == wait_builtin)
3213 {
3214 interrupt_immediately = 0;
3215 trap_handler (SIGCHLD); /* set pending_traps[SIGCHLD] */
3216 wait_signal_received = SIGCHLD;
3217 longjmp (wait_intr_buf, 1);
3218 }
3219
3220 run_sigchld_trap (children_exited);
3221 }
3222
3223 /* We have successfully recorded the useful information about this process
3224 that has just changed state. If we notify asynchronously, and the job
3225 that this process belongs to is no longer running, then notify the user
3226 of that fact now. */
3227 if (asynchronous_notification && interactive)
3228 notify_of_job_status ();
3229
3230 return (children_exited);
3231 }
3232
3233 /* Set the status of JOB and perform any necessary cleanup if the job is
3234 marked as JDEAD.
3235
3236 Currently, the cleanup activity is restricted to handling any SIGINT
3237 received while waiting for a foreground job to finish. */
3238 static int
3239 set_job_status_and_cleanup (job)
3240 int job;
3241 {
3242 PROCESS *child;
3243 int tstatus, job_state, any_stopped, any_tstped, call_set_current;
3244 SigHandler *temp_handler;
3245
3246 child = jobs[job]->pipe;
3247 jobs[job]->flags &= ~J_NOTIFIED;
3248
3249 call_set_current = 0;
3250
3251 /*
3252 * COMPUTE JOB STATUS
3253 */
3254
3255 /* If all children are not running, but any of them is stopped, then
3256 the job is stopped, not dead. */
3257 job_state = any_stopped = any_tstped = 0;
3258 do
3259 {
3260 job_state |= PRUNNING (child);
3261 #if 0
3262 if (PEXITED (child) && (WIFSTOPPED (child->status)))
3263 #else
3264 /* Only checking for WIFSTOPPED now, not for PS_DONE */
3265 if (PSTOPPED (child))
3266 #endif
3267 {
3268 any_stopped = 1;
3269 any_tstped |= interactive && job_control &&
3270 (WSTOPSIG (child->status) == SIGTSTP);
3271 }
3272 child = child->next;
3273 }
3274 while (child != jobs[job]->pipe);
3275
3276 /* If job_state != 0, the job is still running, so don't bother with
3277 setting the process exit status and job state unless we're
3278 transitioning from stopped to running. */
3279 if (job_state != 0 && JOBSTATE(job) != JSTOPPED)
3280 return 0;
3281
3282 /*
3283 * SET JOB STATUS
3284 */
3285
3286 /* The job is either stopped or dead. Set the state of the job accordingly. */
3287 if (any_stopped)
3288 {
3289 jobs[job]->state = JSTOPPED;
3290 jobs[job]->flags &= ~J_FOREGROUND;
3291 call_set_current++;
3292 /* Suspending a job with SIGTSTP breaks all active loops. */
3293 if (any_tstped && loop_level)
3294 breaking = loop_level;
3295 }
3296 else if (job_state != 0) /* was stopped, now running */
3297 {
3298 jobs[job]->state = JRUNNING;
3299 call_set_current++;
3300 }
3301 else
3302 {
3303 jobs[job]->state = JDEAD;
3304 js.j_ndead++;
3305
3306 #if 0
3307 if (IS_FOREGROUND (job))
3308 setjstatus (job);
3309 #endif
3310
3311 /* If this job has a cleanup function associated with it, call it
3312 with `cleanarg' as the single argument, then set the function
3313 pointer to NULL so it is not inadvertently called twice. The
3314 cleanup function is responsible for deallocating cleanarg. */
3315 if (jobs[job]->j_cleanup)
3316 {
3317 (*jobs[job]->j_cleanup) (jobs[job]->cleanarg);
3318 jobs[job]->j_cleanup = (sh_vptrfunc_t *)NULL;
3319 }
3320 }
3321
3322 /*
3323 * CLEANUP
3324 *
3325 * Currently, we just do special things if we got a SIGINT while waiting
3326 * for a foreground job to complete
3327 */
3328
3329 if (JOBSTATE (job) == JDEAD)
3330 {
3331 /* If we're running a shell script and we get a SIGINT with a
3332 SIGINT trap handler, but the foreground job handles it and
3333 does not exit due to SIGINT, run the trap handler but do not
3334 otherwise act as if we got the interrupt. */
3335 if (wait_sigint_received && interactive_shell == 0 &&
3336 child_caught_sigint && IS_FOREGROUND (job) &&
3337 signal_is_trapped (SIGINT))
3338 {
3339 int old_frozen;
3340 wait_sigint_received = 0;
3341 last_command_exit_value = process_exit_status (child->status);
3342
3343 old_frozen = jobs_list_frozen;
3344 jobs_list_frozen = 1;
3345 tstatus = maybe_call_trap_handler (SIGINT);
3346 jobs_list_frozen = old_frozen;
3347 }
3348
3349 /* If the foreground job is killed by SIGINT when job control is not
3350 active, we need to perform some special handling.
3351
3352 The check of wait_sigint_received is a way to determine if the
3353 SIGINT came from the keyboard (in which case the shell has already
3354 seen it, and wait_sigint_received is non-zero, because keyboard
3355 signals are sent to process groups) or via kill(2) to the foreground
3356 process by another process (or itself). If the shell did receive the
3357 SIGINT, it needs to perform normal SIGINT processing. */
3358 else if (wait_sigint_received &&
3359 child_caught_sigint == 0 &&
3360 IS_FOREGROUND (job) && IS_JOBCONTROL (job) == 0)
3361 {
3362 int old_frozen;
3363
3364 wait_sigint_received = 0;
3365
3366 /* If SIGINT is trapped, set the exit status so that the trap
3367 handler can see it. */
3368 if (signal_is_trapped (SIGINT))
3369 last_command_exit_value = process_exit_status (child->status);
3370
3371 /* If the signal is trapped, let the trap handler get it no matter
3372 what and simply return if the trap handler returns.
3373 maybe_call_trap_handler() may cause dead jobs to be removed from
3374 the job table because of a call to execute_command. We work
3375 around this by setting JOBS_LIST_FROZEN. */
3376 old_frozen = jobs_list_frozen;
3377 jobs_list_frozen = 1;
3378 tstatus = maybe_call_trap_handler (SIGINT);
3379 jobs_list_frozen = old_frozen;
3380 if (tstatus == 0 && old_sigint_handler != INVALID_SIGNAL_HANDLER)
3381 {
3382 /* wait_sigint_handler () has already seen SIGINT and
3383 allowed the wait builtin to jump out. We need to
3384 call the original SIGINT handler, if necessary. If
3385 the original handler is SIG_DFL, we need to resend
3386 the signal to ourselves. */
3387
3388 temp_handler = old_sigint_handler;
3389
3390 /* Bogus. If we've reset the signal handler as the result
3391 of a trap caught on SIGINT, then old_sigint_handler
3392 will point to trap_handler, which now knows nothing about
3393 SIGINT (if we reset the sighandler to the default).
3394 In this case, we have to fix things up. What a crock. */
3395 if (temp_handler == trap_handler && signal_is_trapped (SIGINT) == 0)
3396 temp_handler = trap_to_sighandler (SIGINT);
3397 restore_sigint_handler ();
3398 if (temp_handler == SIG_DFL)
3399 termsig_handler (SIGINT); /* XXX */
3400 else if (temp_handler != SIG_IGN)
3401 (*temp_handler) (SIGINT);
3402 }
3403 }
3404 }
3405
3406 return call_set_current;
3407 }
3408
3409 /* Build the array of values for the $PIPESTATUS variable from the set of
3410 exit statuses of all processes in the job J. */
3411 static void
3412 setjstatus (j)
3413 int j;
3414 {
3415 #if defined (ARRAY_VARS)
3416 register int i;
3417 register PROCESS *p;
3418
3419 for (i = 1, p = jobs[j]->pipe; p->next != jobs[j]->pipe; p = p->next, i++)
3420 ;
3421 i++;
3422 if (statsize < i)
3423 {
3424 pstatuses = (int *)xrealloc (pstatuses, i * sizeof (int));
3425 statsize = i;
3426 }
3427 i = 0;
3428 p = jobs[j]->pipe;
3429 do
3430 {
3431 pstatuses[i++] = process_exit_status (p->status);
3432 p = p->next;
3433 }
3434 while (p != jobs[j]->pipe);
3435
3436 pstatuses[i] = -1; /* sentinel */
3437 set_pipestatus_array (pstatuses, i);
3438 #endif
3439 }
3440
3441 void
3442 run_sigchld_trap (nchild)
3443 int nchild;
3444 {
3445 char *trap_command;
3446 int i;
3447
3448 /* Turn off the trap list during the call to parse_and_execute ()
3449 to avoid potentially infinite recursive calls. Preserve the
3450 values of last_command_exit_value, last_made_pid, and the_pipeline
3451 around the execution of the trap commands. */
3452 trap_command = savestring (trap_list[SIGCHLD]);
3453
3454 begin_unwind_frame ("SIGCHLD trap");
3455 unwind_protect_int (last_command_exit_value);
3456 unwind_protect_int (last_command_exit_signal);
3457 unwind_protect_var (last_made_pid);
3458 unwind_protect_int (interrupt_immediately);
3459 unwind_protect_int (jobs_list_frozen);
3460 unwind_protect_pointer (the_pipeline);
3461 unwind_protect_pointer (subst_assign_varlist);
3462
3463 /* We have to add the commands this way because they will be run
3464 in reverse order of adding. We don't want maybe_set_sigchld_trap ()
3465 to reference freed memory. */
3466 add_unwind_protect (xfree, trap_command);
3467 add_unwind_protect (maybe_set_sigchld_trap, trap_command);
3468
3469 subst_assign_varlist = (WORD_LIST *)NULL;
3470 the_pipeline = (PROCESS *)NULL;
3471
3472 set_impossible_sigchld_trap ();
3473 jobs_list_frozen = 1;
3474 for (i = 0; i < nchild; i++)
3475 {
3476 interrupt_immediately = 1;
3477 parse_and_execute (savestring (trap_command), "trap", SEVAL_NOHIST|SEVAL_RESETLINE);
3478 }
3479
3480 run_unwind_frame ("SIGCHLD trap");
3481 }
3482
3483 /* Function to call when you want to notify people of changes
3484 in job status. This prints out all jobs which are pending
3485 notification to stderr, and marks those printed as already
3486 notified, thus making them candidates for cleanup. */
3487 static void
3488 notify_of_job_status ()
3489 {
3490 register int job, termsig;
3491 char *dir;
3492 sigset_t set, oset;
3493 WAIT s;
3494
3495 if (jobs == 0 || js.j_jobslots == 0)
3496 return;
3497
3498 if (old_ttou != 0)
3499 {
3500 sigemptyset (&set);
3501 sigaddset (&set, SIGCHLD);
3502 sigaddset (&set, SIGTTOU);
3503 sigemptyset (&oset);
3504 sigprocmask (SIG_BLOCK, &set, &oset);
3505 }
3506 else
3507 queue_sigchld++;
3508
3509 /* XXX could use js.j_firstj here */
3510 for (job = 0, dir = (char *)NULL; job < js.j_jobslots; job++)
3511 {
3512 if (jobs[job] && IS_NOTIFIED (job) == 0)
3513 {
3514 s = raw_job_exit_status (job);
3515 termsig = WTERMSIG (s);
3516
3517 /* POSIX.2 says we have to hang onto the statuses of at most the
3518 last CHILD_MAX background processes if the shell is running a
3519 script. If the shell is running a script, either from a file
3520 or standard input, don't print anything unless the job was
3521 killed by a signal. */
3522 if (startup_state == 0 && WIFSIGNALED (s) == 0 &&
3523 ((DEADJOB (job) && IS_FOREGROUND (job) == 0) || STOPPED (job)))
3524 continue;
3525
3526 #if 0
3527 /* If job control is disabled, don't print the status messages.
3528 Mark dead jobs as notified so that they get cleaned up. If
3529 startup_state == 2, we were started to run `-c command', so
3530 don't print anything. */
3531 if ((job_control == 0 && interactive_shell) || startup_state == 2)
3532 #else
3533 /* If job control is disabled, don't print the status messages.
3534 Mark dead jobs as notified so that they get cleaned up. If
3535 startup_state == 2 and subshell_environment has the
3536 SUBSHELL_COMSUB bit turned on, we were started to run a command
3537 substitution, so don't print anything. */
3538 if ((job_control == 0 && interactive_shell) ||
3539 (startup_state == 2 && (subshell_environment & SUBSHELL_COMSUB)))
3540 #endif
3541 {
3542 /* POSIX.2 compatibility: if the shell is not interactive,
3543 hang onto the job corresponding to the last asynchronous
3544 pid until the user has been notified of its status or does
3545 a `wait'. */
3546 if (DEADJOB (job) && (interactive_shell || (find_last_pid (job, 0) != last_asynchronous_pid)))
3547 jobs[job]->flags |= J_NOTIFIED;
3548 continue;
3549 }
3550
3551 /* Print info on jobs that are running in the background,
3552 and on foreground jobs that were killed by anything
3553 except SIGINT (and possibly SIGPIPE). */
3554 switch (JOBSTATE (job))
3555 {
3556 case JDEAD:
3557 if (interactive_shell == 0 && termsig && WIFSIGNALED (s) &&
3558 termsig != SIGINT &&
3559 #if defined (DONT_REPORT_SIGTERM)
3560 termsig != SIGTERM &&
3561 #endif
3562 #if defined (DONT_REPORT_SIGPIPE)
3563 termsig != SIGPIPE &&
3564 #endif
3565 signal_is_trapped (termsig) == 0)
3566 {
3567 /* Don't print `0' for a line number. */
3568 fprintf (stderr, _("%s: line %d: "), get_name_for_error (), (line_number == 0) ? 1 : line_number);
3569 pretty_print_job (job, JLIST_NONINTERACTIVE, stderr);
3570 }
3571 else if (IS_FOREGROUND (job))
3572 {
3573 #if !defined (DONT_REPORT_SIGPIPE)
3574 if (termsig && WIFSIGNALED (s) && termsig != SIGINT)
3575 #else
3576 if (termsig && WIFSIGNALED (s) && termsig != SIGINT && termsig != SIGPIPE)
3577 #endif
3578 {
3579 fprintf (stderr, "%s", j_strsignal (termsig));
3580
3581 if (WIFCORED (s))
3582 fprintf (stderr, _(" (core dumped)"));
3583
3584 fprintf (stderr, "\n");
3585 }
3586 }
3587 else if (job_control) /* XXX job control test added */
3588 {
3589 if (dir == 0)
3590 dir = current_working_directory ();
3591 pretty_print_job (job, JLIST_STANDARD, stderr);
3592 if (dir && strcmp (dir, jobs[job]->wd) != 0)
3593 fprintf (stderr,
3594 _("(wd now: %s)\n"), polite_directory_format (dir));
3595 }
3596
3597 jobs[job]->flags |= J_NOTIFIED;
3598 break;
3599
3600 case JSTOPPED:
3601 fprintf (stderr, "\n");
3602 if (dir == 0)
3603 dir = current_working_directory ();
3604 pretty_print_job (job, JLIST_STANDARD, stderr);
3605 if (dir && (strcmp (dir, jobs[job]->wd) != 0))
3606 fprintf (stderr,
3607 _("(wd now: %s)\n"), polite_directory_format (dir));
3608 jobs[job]->flags |= J_NOTIFIED;
3609 break;
3610
3611 case JRUNNING:
3612 case JMIXED:
3613 break;
3614
3615 default:
3616 programming_error ("notify_of_job_status");
3617 }
3618 }
3619 }
3620 if (old_ttou != 0)
3621 sigprocmask (SIG_SETMASK, &oset, (sigset_t *)NULL);
3622 else
3623 queue_sigchld--;
3624 }
3625
3626 /* Initialize the job control mechanism, and set up the tty stuff. */
3627 int
3628 initialize_job_control (force)
3629 int force;
3630 {
3631 pid_t t;
3632 int t_errno;
3633
3634 t_errno = -1;
3635 shell_pgrp = getpgid (0);
3636
3637 if (shell_pgrp == -1)
3638 {
3639 sys_error (_("initialize_job_control: getpgrp failed"));
3640 exit (1);
3641 }
3642
3643 /* We can only have job control if we are interactive. */
3644 if (interactive == 0)
3645 {
3646 job_control = 0;
3647 original_pgrp = NO_PID;
3648 shell_tty = fileno (stderr);
3649 }
3650 else
3651 {
3652 shell_tty = -1;
3653
3654 /* If forced_interactive is set, we skip the normal check that stderr
3655 is attached to a tty, so we need to check here. If it's not, we
3656 need to see whether we have a controlling tty by opening /dev/tty,
3657 since trying to use job control tty pgrp manipulations on a non-tty
3658 is going to fail. */
3659 if (forced_interactive && isatty (fileno (stderr)) == 0)
3660 shell_tty = open ("/dev/tty", O_RDWR|O_NONBLOCK);
3661
3662 /* Get our controlling terminal. If job_control is set, or
3663 interactive is set, then this is an interactive shell no
3664 matter where fd 2 is directed. */
3665 if (shell_tty == -1)
3666 shell_tty = dup (fileno (stderr)); /* fd 2 */
3667
3668 shell_tty = move_to_high_fd (shell_tty, 1, -1);
3669
3670 /* Compensate for a bug in systems that compiled the BSD
3671 rlogind with DEBUG defined, like NeXT and Alliant. */
3672 if (shell_pgrp == 0)
3673 {
3674 shell_pgrp = getpid ();
3675 setpgid (0, shell_pgrp);
3676 tcsetpgrp (shell_tty, shell_pgrp);
3677 }
3678
3679 while ((terminal_pgrp = tcgetpgrp (shell_tty)) != -1)
3680 {
3681 if (shell_pgrp != terminal_pgrp)
3682 {
3683 SigHandler *ottin;
3684
3685 ottin = set_signal_handler(SIGTTIN, SIG_DFL);
3686 kill (0, SIGTTIN);
3687 set_signal_handler (SIGTTIN, ottin);
3688 continue;
3689 }
3690 break;
3691 }
3692
3693 if (terminal_pgrp == -1)
3694 t_errno = errno;
3695
3696 /* Make sure that we are using the new line discipline. */
3697 if (set_new_line_discipline (shell_tty) < 0)
3698 {
3699 sys_error (_("initialize_job_control: line discipline"));
3700 job_control = 0;
3701 }
3702 else
3703 {
3704 original_pgrp = shell_pgrp;
3705 shell_pgrp = getpid ();
3706
3707 if ((original_pgrp != shell_pgrp) && (setpgid (0, shell_pgrp) < 0))
3708 {
3709 sys_error (_("initialize_job_control: setpgid"));
3710 shell_pgrp = original_pgrp;
3711 }
3712
3713 job_control = 1;
3714
3715 /* If (and only if) we just set our process group to our pid,
3716 thereby becoming a process group leader, and the terminal
3717 is not in the same process group as our (new) process group,
3718 then set the terminal's process group to our (new) process
3719 group. If that fails, set our process group back to what it
3720 was originally (so we can still read from the terminal) and
3721 turn off job control. */
3722 if (shell_pgrp != original_pgrp && shell_pgrp != terminal_pgrp)
3723 {
3724 if (give_terminal_to (shell_pgrp, 0) < 0)
3725 {
3726 t_errno = errno;
3727 setpgid (0, original_pgrp);
3728 shell_pgrp = original_pgrp;
3729 job_control = 0;
3730 }
3731 }
3732
3733 if (job_control && ((t = tcgetpgrp (shell_tty)) == -1 || t != shell_pgrp))
3734 {
3735 if (t_errno != -1)
3736 errno = t_errno;
3737 sys_error (_("cannot set terminal process group (%d)"), t);
3738 job_control = 0;
3739 }
3740 }
3741 if (job_control == 0)
3742 internal_error (_("no job control in this shell"));
3743 }
3744
3745 if (shell_tty != fileno (stderr))
3746 SET_CLOSE_ON_EXEC (shell_tty);
3747
3748 set_signal_handler (SIGCHLD, sigchld_handler);
3749
3750 change_flag ('m', job_control ? '-' : '+');
3751
3752 if (interactive)
3753 get_tty_state ();
3754
3755 if (js.c_childmax < 0)
3756 js.c_childmax = getmaxchild ();
3757 if (js.c_childmax < 0)
3758 js.c_childmax = DEFAULT_CHILD_MAX;
3759
3760 return job_control;
3761 }
3762
3763 #ifdef DEBUG
3764 void
3765 debug_print_pgrps ()
3766 {
3767 itrace("original_pgrp = %ld shell_pgrp = %ld terminal_pgrp = %ld",
3768 (long)original_pgrp, (long)shell_pgrp, (long)terminal_pgrp);
3769 itrace("tcgetpgrp(%d) -> %ld, getpgid(0) -> %ld",
3770 shell_tty, (long)tcgetpgrp (shell_tty), (long)getpgid(0));
3771 }
3772 #endif
3773
3774 /* Set the line discipline to the best this system has to offer.
3775 Return -1 if this is not possible. */
3776 static int
3777 set_new_line_discipline (tty)
3778 int tty;
3779 {
3780 #if defined (NEW_TTY_DRIVER)
3781 int ldisc;
3782
3783 if (ioctl (tty, TIOCGETD, &ldisc) < 0)
3784 return (-1);
3785
3786 if (ldisc != NTTYDISC)
3787 {
3788 ldisc = NTTYDISC;
3789
3790 if (ioctl (tty, TIOCSETD, &ldisc) < 0)
3791 return (-1);
3792 }
3793 return (0);
3794 #endif /* NEW_TTY_DRIVER */
3795
3796 #if defined (TERMIO_TTY_DRIVER)
3797 # if defined (TERMIO_LDISC) && (NTTYDISC)
3798 if (ioctl (tty, TCGETA, &shell_tty_info) < 0)
3799 return (-1);
3800
3801 if (shell_tty_info.c_line != NTTYDISC)
3802 {
3803 shell_tty_info.c_line = NTTYDISC;
3804 if (ioctl (tty, TCSETAW, &shell_tty_info) < 0)
3805 return (-1);
3806 }
3807 # endif /* TERMIO_LDISC && NTTYDISC */
3808 return (0);
3809 #endif /* TERMIO_TTY_DRIVER */
3810
3811 #if defined (TERMIOS_TTY_DRIVER)
3812 # if defined (TERMIOS_LDISC) && defined (NTTYDISC)
3813 if (tcgetattr (tty, &shell_tty_info) < 0)
3814 return (-1);
3815
3816 if (shell_tty_info.c_line != NTTYDISC)
3817 {
3818 shell_tty_info.c_line = NTTYDISC;
3819 if (tcsetattr (tty, TCSADRAIN, &shell_tty_info) < 0)
3820 return (-1);
3821 }
3822 # endif /* TERMIOS_LDISC && NTTYDISC */
3823 return (0);
3824 #endif /* TERMIOS_TTY_DRIVER */
3825
3826 #if !defined (NEW_TTY_DRIVER) && !defined (TERMIO_TTY_DRIVER) && !defined (TERMIOS_TTY_DRIVER)
3827 return (-1);
3828 #endif
3829 }
3830
3831 /* Setup this shell to handle C-C, etc. */
3832 void
3833 initialize_job_signals ()
3834 {
3835 if (interactive)
3836 {
3837 set_signal_handler (SIGINT, sigint_sighandler);
3838 set_signal_handler (SIGTSTP, SIG_IGN);
3839 set_signal_handler (SIGTTOU, SIG_IGN);
3840 set_signal_handler (SIGTTIN, SIG_IGN);
3841 }
3842 else if (job_control)
3843 {
3844 old_tstp = set_signal_handler (SIGTSTP, sigstop_sighandler);
3845 old_ttin = set_signal_handler (SIGTTIN, sigstop_sighandler);
3846 old_ttou = set_signal_handler (SIGTTOU, sigstop_sighandler);
3847 }
3848 /* Leave these things alone for non-interactive shells without job
3849 control. */
3850 }
3851
3852 /* Here we handle CONT signals. */
3853 static sighandler
3854 sigcont_sighandler (sig)
3855 int sig;
3856 {
3857 initialize_job_signals ();
3858 set_signal_handler (SIGCONT, old_cont);
3859 kill (getpid (), SIGCONT);
3860
3861 SIGRETURN (0);
3862 }
3863
3864 /* Here we handle stop signals while we are running not as a login shell. */
3865 static sighandler
3866 sigstop_sighandler (sig)
3867 int sig;
3868 {
3869 set_signal_handler (SIGTSTP, old_tstp);
3870 set_signal_handler (SIGTTOU, old_ttou);
3871 set_signal_handler (SIGTTIN, old_ttin);
3872
3873 old_cont = set_signal_handler (SIGCONT, sigcont_sighandler);
3874
3875 give_terminal_to (shell_pgrp, 0);
3876
3877 kill (getpid (), sig);
3878
3879 SIGRETURN (0);
3880 }
3881
3882 /* Give the terminal to PGRP. */
3883 int
3884 give_terminal_to (pgrp, force)
3885 pid_t pgrp;
3886 int force;
3887 {
3888 sigset_t set, oset;
3889 int r, e;
3890
3891 r = 0;
3892 if (job_control || force)
3893 {
3894 sigemptyset (&set);
3895 sigaddset (&set, SIGTTOU);
3896 sigaddset (&set, SIGTTIN);
3897 sigaddset (&set, SIGTSTP);
3898 sigaddset (&set, SIGCHLD);
3899 sigemptyset (&oset);
3900 sigprocmask (SIG_BLOCK, &set, &oset);
3901
3902 if (tcsetpgrp (shell_tty, pgrp) < 0)
3903 {
3904 /* Maybe we should print an error message? */
3905 #if 0
3906 sys_error ("tcsetpgrp(%d) failed: pid %ld to pgrp %ld",
3907 shell_tty, (long)getpid(), (long)pgrp);
3908 #endif
3909 r = -1;
3910 e = errno;
3911 }
3912 else
3913 terminal_pgrp = pgrp;
3914 sigprocmask (SIG_SETMASK, &oset, (sigset_t *)NULL);
3915 }
3916
3917 if (r == -1)
3918 errno = e;
3919
3920 return r;
3921 }
3922
3923 /* Give terminal to NPGRP iff it's currently owned by OPGRP. FLAGS are the
3924 flags to pass to give_terminal_to(). */
3925 static int
3926 maybe_give_terminal_to (opgrp, npgrp, flags)
3927 pid_t opgrp, npgrp;
3928 int flags;
3929 {
3930 int tpgrp;
3931
3932 tpgrp = tcgetpgrp (shell_tty);
3933 if (tpgrp < 0 && errno == ENOTTY)
3934 return -1;
3935 if (tpgrp == npgrp)
3936 {
3937 terminal_pgrp = npgrp;
3938 return 0;
3939 }
3940 else if (tpgrp != opgrp)
3941 {
3942 #if defined (DEBUG)
3943 internal_warning ("maybe_give_terminal_to: terminal pgrp == %d shell pgrp = %d new pgrp = %d", tpgrp, opgrp, npgrp);
3944 #endif
3945 return -1;
3946 }
3947 else
3948 return (give_terminal_to (npgrp, flags));
3949 }
3950
3951 /* Clear out any jobs in the job array. This is intended to be used by
3952 children of the shell, who should not have any job structures as baggage
3953 when they start executing (forking subshells for parenthesized execution
3954 and functions with pipes are the two that spring to mind). If RUNNING_ONLY
3955 is nonzero, only running jobs are removed from the table. */
3956 void
3957 delete_all_jobs (running_only)
3958 int running_only;
3959 {
3960 register int i;
3961 sigset_t set, oset;
3962
3963 BLOCK_CHILD (set, oset);
3964
3965 /* XXX - need to set j_lastj, j_firstj appropriately if running_only != 0. */
3966 if (js.j_jobslots)
3967 {
3968 js.j_current = js.j_previous = NO_JOB;
3969
3970 /* XXX could use js.j_firstj here */
3971 for (i = 0; i < js.j_jobslots; i++)
3972 {
3973 #if defined (DEBUG)
3974 if (i < js.j_firstj && jobs[i])
3975 itrace("delete_all_jobs: job %d non-null before js.j_firstj (%d)", i, js.j_firstj);
3976 if (i > js.j_lastj && jobs[i])
3977 itrace("delete_all_jobs: job %d non-null after js.j_lastj (%d)", i, js.j_lastj);
3978 #endif
3979 if (jobs[i] && (running_only == 0 || (running_only && RUNNING(i))))
3980 delete_job (i, DEL_WARNSTOPPED);
3981 }
3982 if (running_only == 0)
3983 {
3984 free ((char *)jobs);
3985 js.j_jobslots = 0;
3986 js.j_firstj = js.j_lastj = js.j_njobs = 0;
3987 }
3988 }
3989
3990 if (running_only == 0)
3991 bgp_clear ();
3992
3993 UNBLOCK_CHILD (oset);
3994 }
3995
3996 /* Mark all jobs in the job array so that they don't get a SIGHUP when the
3997 shell gets one. If RUNNING_ONLY is nonzero, mark only running jobs. */
3998 void
3999 nohup_all_jobs (running_only)
4000 int running_only;
4001 {
4002 register int i;
4003 sigset_t set, oset;
4004
4005 BLOCK_CHILD (set, oset);
4006
4007 if (js.j_jobslots)
4008 {
4009 /* XXX could use js.j_firstj here */
4010 for (i = 0; i < js.j_jobslots; i++)
4011 if (jobs[i] && (running_only == 0 || (running_only && RUNNING(i))))
4012 nohup_job (i);
4013 }
4014
4015 UNBLOCK_CHILD (oset);
4016 }
4017
4018 int
4019 count_all_jobs ()
4020 {
4021 int i, n;
4022 sigset_t set, oset;
4023
4024 /* This really counts all non-dead jobs. */
4025 BLOCK_CHILD (set, oset);
4026 /* XXX could use js.j_firstj here */
4027 for (i = n = 0; i < js.j_jobslots; i++)
4028 {
4029 #if defined (DEBUG)
4030 if (i < js.j_firstj && jobs[i])
4031 itrace("count_all_jobs: job %d non-null before js.j_firstj (%d)", i, js.j_firstj);
4032 if (i > js.j_lastj && jobs[i])
4033 itrace("count_all_jobs: job %d non-null after js.j_lastj (%d)", i, js.j_lastj);
4034 #endif
4035 if (jobs[i] && DEADJOB(i) == 0)
4036 n++;
4037 }
4038 UNBLOCK_CHILD (oset);
4039 return n;
4040 }
4041
4042 static void
4043 mark_all_jobs_as_dead ()
4044 {
4045 register int i;
4046 sigset_t set, oset;
4047
4048 if (js.j_jobslots == 0)
4049 return;
4050
4051 BLOCK_CHILD (set, oset);
4052
4053 /* XXX could use js.j_firstj here */
4054 for (i = 0; i < js.j_jobslots; i++)
4055 if (jobs[i])
4056 {
4057 jobs[i]->state = JDEAD;
4058 js.j_ndead++;
4059 }
4060
4061 UNBLOCK_CHILD (oset);
4062 }
4063
4064 /* Mark all dead jobs as notified, so delete_job () cleans them out
4065 of the job table properly. POSIX.2 says we need to save the
4066 status of the last CHILD_MAX jobs, so we count the number of dead
4067 jobs and mark only enough as notified to save CHILD_MAX statuses. */
4068 static void
4069 mark_dead_jobs_as_notified (force)
4070 int force;
4071 {
4072 register int i, ndead, ndeadproc;
4073 sigset_t set, oset;
4074
4075 if (js.j_jobslots == 0)
4076 return;
4077
4078 BLOCK_CHILD (set, oset);
4079
4080 /* If FORCE is non-zero, we don't have to keep CHILD_MAX statuses
4081 around; just run through the array. */
4082 if (force)
4083 {
4084 /* XXX could use js.j_firstj here */
4085 for (i = 0; i < js.j_jobslots; i++)
4086 {
4087 if (jobs[i] && DEADJOB (i) && (interactive_shell || (find_last_pid (i, 0) != last_asynchronous_pid)))
4088 jobs[i]->flags |= J_NOTIFIED;
4089 }
4090 UNBLOCK_CHILD (oset);
4091 return;
4092 }
4093
4094 /* Mark enough dead jobs as notified to keep CHILD_MAX processes left in the
4095 array with the corresponding not marked as notified. This is a better
4096 way to avoid pid aliasing and reuse problems than keeping the POSIX-
4097 mandated CHILD_MAX jobs around. delete_job() takes care of keeping the
4098 bgpids list regulated. */
4099
4100 /* Count the number of dead jobs */
4101 /* XXX could use js.j_firstj here */
4102 for (i = ndead = ndeadproc = 0; i < js.j_jobslots; i++)
4103 {
4104 #if defined (DEBUG)
4105 if (i < js.j_firstj && jobs[i])
4106 itrace("mark_dead_jobs_as_notified: job %d non-null before js.j_firstj (%d)", i, js.j_firstj);
4107 if (i > js.j_lastj && jobs[i])
4108 itrace("mark_dead_jobs_as_notified: job %d non-null after js.j_lastj (%d)", i, js.j_lastj);
4109 #endif
4110 if (jobs[i] && DEADJOB (i))
4111 {
4112 ndead++;
4113 ndeadproc += processes_in_job (i);
4114 }
4115 }
4116
4117 #ifdef DEBUG
4118 if (ndeadproc != js.c_reaped)
4119 itrace("mark_dead_jobs_as_notified: ndeadproc (%d) != js.c_reaped (%d)", ndeadproc, js.c_reaped);
4120 if (ndead != js.j_ndead)
4121 itrace("mark_dead_jobs_as_notified: ndead (%d) != js.j_ndead (%d)", ndead, js.j_ndead);
4122 #endif
4123
4124 if (js.c_childmax < 0)
4125 js.c_childmax = getmaxchild ();
4126 if (js.c_childmax < 0)
4127 js.c_childmax = DEFAULT_CHILD_MAX;
4128
4129 /* Don't do anything if the number of dead processes is less than CHILD_MAX
4130 and we're not forcing a cleanup. */
4131 if (ndeadproc <= js.c_childmax)
4132 {
4133 UNBLOCK_CHILD (oset);
4134 return;
4135 }
4136
4137 #if 0
4138 itrace("mark_dead_jobs_as_notified: child_max = %d ndead = %d ndeadproc = %d", js.c_childmax, ndead, ndeadproc);
4139 #endif
4140
4141 /* Mark enough dead jobs as notified that we keep CHILD_MAX jobs in
4142 the list. This isn't exactly right yet; changes need to be made
4143 to stop_pipeline so we don't mark the newer jobs after we've
4144 created CHILD_MAX slots in the jobs array. This needs to be
4145 integrated with a way to keep the jobs array from growing without
4146 bound. Maybe we wrap back around to 0 after we reach some max
4147 limit, and there are sufficient job slots free (keep track of total
4148 size of jobs array (js.j_jobslots) and running count of number of jobs
4149 in jobs array. Then keep a job index corresponding to the `oldest job'
4150 and start this loop there, wrapping around as necessary. In effect,
4151 we turn the list into a circular buffer. */
4152 /* XXX could use js.j_firstj here */
4153 for (i = 0; i < js.j_jobslots; i++)
4154 {
4155 if (jobs[i] && DEADJOB (i) && (interactive_shell || (find_last_pid (i, 0) != last_asynchronous_pid)))
4156 {
4157 #if defined (DEBUG)
4158 if (i < js.j_firstj && jobs[i])
4159 itrace("mark_dead_jobs_as_notified: job %d non-null before js.j_firstj (%d)", i, js.j_firstj);
4160 if (i > js.j_lastj && jobs[i])
4161 itrace("mark_dead_jobs_as_notified: job %d non-null after js.j_lastj (%d)", i, js.j_lastj);
4162 #endif
4163 /* If marking this job as notified would drop us down below
4164 child_max, don't mark it so we can keep at least child_max
4165 statuses. XXX -- need to check what Posix actually says
4166 about keeping statuses. */
4167 if ((ndeadproc -= processes_in_job (i)) <= js.c_childmax)
4168 break;
4169 jobs[i]->flags |= J_NOTIFIED;
4170 }
4171 }
4172
4173 UNBLOCK_CHILD (oset);
4174 }
4175
4176 /* Here to allow other parts of the shell (like the trap stuff) to
4177 freeze and unfreeze the jobs list. */
4178 void
4179 freeze_jobs_list ()
4180 {
4181 jobs_list_frozen = 1;
4182 }
4183
4184 void
4185 unfreeze_jobs_list ()
4186 {
4187 jobs_list_frozen = 0;
4188 }
4189
4190 /* Allow or disallow job control to take place. Returns the old value
4191 of job_control. */
4192 int
4193 set_job_control (arg)
4194 int arg;
4195 {
4196 int old;
4197
4198 old = job_control;
4199 job_control = arg;
4200
4201 /* If we're turning on job control, reset pipeline_pgrp so make_child will
4202 put new child processes into the right pgrp */
4203 if (job_control != old && job_control)
4204 pipeline_pgrp = 0;
4205
4206 return (old);
4207 }
4208
4209 /* Turn off all traces of job control. This is run by children of the shell
4210 which are going to do shellsy things, like wait (), etc. */
4211 void
4212 without_job_control ()
4213 {
4214 stop_making_children ();
4215 start_pipeline ();
4216 #if defined (PGRP_PIPE)
4217 sh_closepipe (pgrp_pipe);
4218 #endif
4219 delete_all_jobs (0);
4220 set_job_control (0);
4221 }
4222
4223 /* If this shell is interactive, terminate all stopped jobs and
4224 restore the original terminal process group. This is done
4225 before the `exec' builtin calls shell_execve. */
4226 void
4227 end_job_control ()
4228 {
4229 if (interactive_shell) /* XXX - should it be interactive? */
4230 {
4231 terminate_stopped_jobs ();
4232
4233 if (original_pgrp >= 0)
4234 give_terminal_to (original_pgrp, 1);
4235 }
4236
4237 if (original_pgrp >= 0)
4238 setpgid (0, original_pgrp);
4239 }
4240
4241 /* Restart job control by closing shell tty and reinitializing. This is
4242 called after an exec fails in an interactive shell and we do not exit. */
4243 void
4244 restart_job_control ()
4245 {
4246 if (shell_tty != -1)
4247 close (shell_tty);
4248 initialize_job_control (0);
4249 }
4250
4251 /* Set the handler to run when the shell receives a SIGCHLD signal. */
4252 void
4253 set_sigchld_handler ()
4254 {
4255 set_signal_handler (SIGCHLD, sigchld_handler);
4256 }
4257
4258 #if defined (PGRP_PIPE)
4259 /* Read from the read end of a pipe. This is how the process group leader
4260 blocks until all of the processes in a pipeline have been made. */
4261 static void
4262 pipe_read (pp)
4263 int *pp;
4264 {
4265 char ch;
4266
4267 if (pp[1] >= 0)
4268 {
4269 close (pp[1]);
4270 pp[1] = -1;
4271 }
4272
4273 if (pp[0] >= 0)
4274 {
4275 while (read (pp[0], &ch, 1) == -1 && errno == EINTR)
4276 ;
4277 }
4278 }
4279
4280 /* Functional interface closes our local-to-job-control pipes. */
4281 void
4282 close_pgrp_pipe ()
4283 {
4284 sh_closepipe (pgrp_pipe);
4285 }
4286
4287 void
4288 save_pgrp_pipe (p, clear)
4289 int *p;
4290 int clear;
4291 {
4292 p[0] = pgrp_pipe[0];
4293 p[1] = pgrp_pipe[1];
4294 if (clear)
4295 pgrp_pipe[0] = pgrp_pipe[1] = -1;
4296 }
4297
4298 void
4299 restore_pgrp_pipe (p)
4300 int *p;
4301 {
4302 pgrp_pipe[0] = p[0];
4303 pgrp_pipe[1] = p[1];
4304 }
4305
4306 #endif /* PGRP_PIPE */