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