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