1 /* jobs.c - functions that make children, remember them, and handle their termination. */
3 /* This file works with both POSIX and BSD systems. It implements job
6 /* Copyright (C) 1989-2020 Free Software Foundation, Inc.
8 This file is part of GNU Bush, the Bourne Again SHell.
10 Bush is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
15 Bush is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with Bush. If not, see <http://www.gnu.org/licenses/>.
26 #include "bushtypes.h"
32 #if defined (HAVE_UNISTD_H)
36 #include "posixtime.h"
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 */
42 #if defined (HAVE_SYS_FILE_H)
43 # include <sys/file.h>
47 #include <sys/ioctl.h>
48 #if defined (HAVE_SYS_PARAM_H)
49 #include <sys/param.h>
52 #if defined (BUFFERED_INPUT)
53 # include "input/input.h"
56 /* Need to include this up here for *_TTY_DRIVER definitions. */
59 /* Define this if your output is getting swallowed. It's a no-op on
60 machines with the termio or termios tty drivers. */
61 /* #define DRAIN_OUTPUT */
63 /* For the TIOCGPGRP and TIOCSPGRP ioctl parameters on HP-UX */
64 #if defined (hpux) && !defined (TERMIOS_TTY_DRIVER)
66 #endif /* hpux && !TERMIOS_TTY_DRIVER */
71 #include "lxrgmr/parser.h"
73 #include "runner/execute_cmd.h"
78 #include "builtins/builtext.h"
79 #include "builtins/common.h"
81 #if defined (READLINE)
82 # include <readline/readline.h>
89 #if !defined (HAVE_KILLPG)
90 extern int killpg
PARAMS((pid_t
, int));
93 #if !DEFAULT_CHILD_MAX
94 # define DEFAULT_CHILD_MAX 4096
98 # define MAX_CHILD_MAX 32768
102 #define MAX_JOBS_IN_ARRAY 4096 /* production */
104 #define MAX_JOBS_IN_ARRAY 128 /* testing */
108 #define PIDSTAT_TABLE_SZ 4096
109 #define BGPIDS_TABLE_SZ 512
111 /* Flag values for second argument to delete_job */
112 #define DEL_WARNSTOPPED 1 /* warn about deleting stopped jobs */
113 #define DEL_NOBGPID 2 /* don't add pgrp leader to bgpids */
115 /* Take care of system dependencies that must be handled when waiting for
116 children. The arguments to the WAITPID macro match those to the Posix.1
117 waitpid() function. */
119 #if defined (ultrix) && defined (mips) && defined (_POSIX_VERSION)
120 # define WAITPID(pid, statusp, options) \
121 wait3 ((union wait *)statusp, options, (struct rusage *)0)
123 # if defined (_POSIX_VERSION) || defined (HAVE_WAITPID)
124 # define WAITPID(pid, statusp, options) \
125 waitpid ((pid_t)pid, statusp, options)
127 # if defined (HAVE_WAIT3)
128 # define WAITPID(pid, statusp, options) \
129 wait3 (statusp, options, (struct rusage *)0)
131 # define WAITPID(pid, statusp, options) \
132 wait3 (statusp, options, (int *)0)
133 # endif /* HAVE_WAIT3 */
134 # endif /* !_POSIX_VERSION && !HAVE_WAITPID*/
135 #endif /* !(Ultrix && mips && _POSIX_VERSION) */
137 /* getpgrp () varies between systems. Even systems that claim to be
138 Posix.1 compatible lie sometimes (Ultrix, SunOS4, apollo). */
139 #if defined (GETPGRP_VOID)
140 # define getpgid(p) getpgrp ()
142 # define getpgid(p) getpgrp (p)
143 #endif /* !GETPGRP_VOID */
145 /* If the system needs it, REINSTALL_SIGCHLD_HANDLER will reinstall the
146 handler for SIGCHLD. */
147 #if defined (MUST_REINSTALL_SIGHANDLERS)
148 # define REINSTALL_SIGCHLD_HANDLER signal (SIGCHLD, sigchld_handler)
150 # define REINSTALL_SIGCHLD_HANDLER
151 #endif /* !MUST_REINSTALL_SIGHANDLERS */
153 /* Some systems let waitpid(2) tell callers about stopped children. */
154 #if !defined (WCONTINUED) || defined (WCONTINUED_BROKEN)
156 # define WCONTINUED 0
158 #if !defined (WIFCONTINUED)
159 # define WIFCONTINUED(s) (0)
162 /* The number of additional slots to allocate when we run out. */
165 typedef int sh_job_map_func_t
PARAMS((JOB
*, int, int, int));
167 /* Variables used here but defined in other files. */
168 extern WORD_LIST
*subst_assign_varlist
;
170 extern SigHandler
**original_signals
;
172 extern void set_original_signal
PARAMS((int, SigHandler
*));
174 static struct jobstats zerojs
= { -1L, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NO_JOB
, NO_JOB
, 0, 0 };
175 struct jobstats js
= { -1L, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NO_JOB
, NO_JOB
, 0, 0 };
177 ps_index_t pidstat_table
[PIDSTAT_TABLE_SZ
];
178 struct bgpids bgpids
= { 0, 0, 0, 0 };
180 struct procchain procsubs
= { 0, 0, 0 };
182 /* The array of known jobs. */
183 JOB
**jobs
= (JOB
**)NULL
;
186 /* The number of slots currently allocated to JOBS. */
190 /* The controlling tty for this shell. */
193 /* The shell's process group. */
194 pid_t shell_pgrp
= NO_PID
;
196 /* The terminal's process group. */
197 pid_t terminal_pgrp
= NO_PID
;
199 /* The process group of the shell's parent. */
200 pid_t original_pgrp
= NO_PID
;
202 /* The process group of the pipeline currently being made. */
203 pid_t pipeline_pgrp
= (pid_t
)0;
205 #if defined (PGRP_PIPE)
206 /* Pipes which each shell uses to communicate with the process group leader
207 until all of the processes in a pipeline have been started. Then the
208 process leader is allowed to continue. */
209 int pgrp_pipe
[2] = { -1, -1 };
212 /* Last child made by the shell. */
213 volatile pid_t last_made_pid
= NO_PID
;
215 /* Pid of the last asynchronous child. */
216 volatile pid_t last_asynchronous_pid
= NO_PID
;
218 /* The pipeline currently being built. */
219 PROCESS
*the_pipeline
= (PROCESS
*)NULL
;
221 /* If this is non-zero, do job control. */
224 /* Are we running in background? (terminal_pgrp != shell_pgrp) */
225 int running_in_background
= 0;
227 /* Call this when you start making children. */
228 int already_making_children
= 0;
230 /* If this is non-zero, $LINES and $COLUMNS are reset after every process
231 exits from get_tty_state(). */
232 int check_window_size
= CHECKWINSIZE_DEFAULT
;
234 PROCESS
*last_procsub_child
= (PROCESS
*)NULL
;
236 /* Functions local to this file. */
238 void debug_print_pgrps (void);
240 static sighandler wait_sigint_handler
PARAMS((int));
241 static sighandler sigchld_handler
PARAMS((int));
242 static sighandler sigcont_sighandler
PARAMS((int));
243 static sighandler sigstop_sighandler
PARAMS((int));
245 static int waitchld
PARAMS((pid_t
, int));
247 static PROCESS
*find_pid_in_pipeline
PARAMS((pid_t
, PROCESS
*, int));
248 static PROCESS
*find_pipeline
PARAMS((pid_t
, int, int *));
249 static PROCESS
*find_process
PARAMS((pid_t
, int, int *));
251 static char *current_working_directory
PARAMS((void));
252 static char *job_working_directory
PARAMS((void));
253 static char *j_strsignal
PARAMS((int));
254 static char *printable_job_status
PARAMS((int, PROCESS
*, int));
256 static PROCESS
*find_last_proc
PARAMS((int, int));
257 static pid_t find_last_pid
PARAMS((int, int));
259 static int set_new_line_discipline
PARAMS((int));
260 static int map_over_jobs
PARAMS((sh_job_map_func_t
*, int, int));
261 static int job_last_stopped
PARAMS((int));
262 static int job_last_running
PARAMS((int));
263 static int most_recent_job_in_state
PARAMS((int, JOB_STATE
));
264 static int find_job
PARAMS((pid_t
, int, PROCESS
**));
265 static int print_job
PARAMS((JOB
*, int, int, int));
266 static int process_exit_status
PARAMS((WAIT
));
267 static int process_exit_signal
PARAMS((WAIT
));
268 static int set_job_status_and_cleanup
PARAMS((int));
270 static WAIT job_signal_status
PARAMS((int));
271 static WAIT raw_job_exit_status
PARAMS((int));
273 static void notify_of_job_status
PARAMS((void));
274 static void reset_job_indices
PARAMS((void));
275 static void cleanup_dead_jobs
PARAMS((void));
276 static int processes_in_job
PARAMS((int));
277 static void realloc_jobs_list
PARAMS((void));
278 static int compact_jobs_list
PARAMS((int));
279 static void add_process
PARAMS((char *, pid_t
));
280 static void print_pipeline
PARAMS((PROCESS
*, int, int, FILE *));
281 static void pretty_print_job
PARAMS((int, int, FILE *));
282 static void set_current_job
PARAMS((int));
283 static void reset_current
PARAMS((void));
284 static void set_job_running
PARAMS((int));
285 static void setjstatus
PARAMS((int));
286 static int maybe_give_terminal_to
PARAMS((pid_t
, pid_t
, int));
287 static void mark_all_jobs_as_dead
PARAMS((void));
288 static void mark_dead_jobs_as_notified
PARAMS((int));
289 static void restore_sigint_handler
PARAMS((void));
290 #if defined (PGRP_PIPE)
291 static void pipe_read
PARAMS((int *));
294 /* Hash table manipulation */
296 static ps_index_t
*pshash_getbucket
PARAMS((pid_t
));
297 static void pshash_delindex
PARAMS((ps_index_t
));
299 /* Saved background process status management */
300 static struct pidstat
*bgp_add
PARAMS((pid_t
, int));
301 static int bgp_delete
PARAMS((pid_t
));
302 static void bgp_clear
PARAMS((void));
303 static int bgp_search
PARAMS((pid_t
));
305 static struct pipeline_saver
*alloc_pipeline_saver
PARAMS((void));
307 static ps_index_t bgp_getindex
PARAMS((void));
308 static void bgp_resize
PARAMS((void)); /* XXX */
310 #if defined (ARRAY_VARS)
311 static int *pstatuses
; /* list of pipeline statuses */
315 /* Used to synchronize between wait_for and other functions and the SIGCHLD
318 static int queue_sigchld
;
320 #define QUEUE_SIGCHLD(os) (os) = sigchld, queue_sigchld++
322 /* We set queue_sigchld around the call to waitchld to protect data structures
323 from a SIGCHLD arriving while waitchld is executing. */
324 #define UNQUEUE_SIGCHLD(os) \
327 if (queue_sigchld == 0 && os != sigchld) \
335 static SigHandler
*old_tstp
, *old_ttou
, *old_ttin
;
336 static SigHandler
*old_cont
= (SigHandler
*)SIG_DFL
;
338 /* A place to temporarily save the current pipeline. */
339 static struct pipeline_saver
*saved_pipeline
;
340 static int saved_already_making_children
;
342 /* Set this to non-zero whenever you don't want the jobs list to change at
343 all: no jobs deleted and no status change notifications. This is used,
344 for example, when executing SIGCHLD traps, which may run arbitrary
346 static int jobs_list_frozen
;
348 static char retcode_name_buffer
[64];
350 #if !defined (_POSIX_VERSION)
352 /* These are definitions to map POSIX 1003.1 functions onto existing BSD
353 library functions and system calls. */
354 #define setpgid(pid, pgrp) setpgrp (pid, pgrp)
355 #define tcsetpgrp(fd, pgrp) ioctl ((fd), TIOCSPGRP, &(pgrp))
363 /* ioctl will handle setting errno correctly. */
364 if (ioctl (fd
, TIOCGPGRP
, &pgrp
) < 0)
369 #endif /* !_POSIX_VERSION */
371 /* Initialize the global job stats structure and other bookkeeping variables */
378 /* Return the working directory for the current process. Unlike
379 job_working_directory, this does not call malloc (), nor do any
380 of the functions it calls. This is so that it can safely be called
381 from a signal handler. */
383 current_working_directory ()
386 static char d
[PATH_MAX
];
388 dir
= get_string_value ("PWD");
390 if (dir
== 0 && the_current_working_directory
&& no_symbolic_links
)
391 dir
= the_current_working_directory
;
395 dir
= getcwd (d
, sizeof(d
));
400 return (dir
== 0) ? "<unknown>" : dir
;
403 /* Return the working directory for the current process. */
405 job_working_directory ()
409 dir
= get_string_value ("PWD");
411 return (savestring (dir
));
413 dir
= get_working_directory ("job-working-directory");
417 return (savestring ("<unknown>"));
423 if (already_making_children
)
426 already_making_children
= 1;
431 stop_making_children ()
433 already_making_children
= 0;
437 cleanup_the_pipeline ()
442 BLOCK_CHILD (set
, oset
);
443 disposer
= the_pipeline
;
444 the_pipeline
= (PROCESS
*)NULL
;
445 UNBLOCK_CHILD (oset
);
448 discard_pipeline (disposer
);
451 /* Not used right now */
453 discard_last_procsub_child ()
458 BLOCK_CHILD (set
, oset
);
459 disposer
= last_procsub_child
;
460 last_procsub_child
= (PROCESS
*)NULL
;
461 UNBLOCK_CHILD (oset
);
464 discard_pipeline (disposer
);
467 static struct pipeline_saver
*
468 alloc_pipeline_saver ()
470 struct pipeline_saver
*ret
;
472 ret
= (struct pipeline_saver
*)xmalloc (sizeof (struct pipeline_saver
));
479 save_pipeline (clear
)
483 struct pipeline_saver
*saver
;
485 BLOCK_CHILD (set
, oset
);
486 saver
= alloc_pipeline_saver ();
487 saver
->pipeline
= the_pipeline
;
488 saver
->next
= saved_pipeline
;
489 saved_pipeline
= saver
;
491 the_pipeline
= (PROCESS
*)NULL
;
492 saved_already_making_children
= already_making_children
;
493 UNBLOCK_CHILD (oset
);
497 restore_pipeline (discard
)
500 PROCESS
*old_pipeline
;
502 struct pipeline_saver
*saver
;
504 BLOCK_CHILD (set
, oset
);
505 old_pipeline
= the_pipeline
;
506 the_pipeline
= saved_pipeline
->pipeline
;
507 saver
= saved_pipeline
;
508 saved_pipeline
= saved_pipeline
->next
;
510 already_making_children
= saved_already_making_children
;
511 UNBLOCK_CHILD (oset
);
513 if (discard
&& old_pipeline
)
515 discard_pipeline (old_pipeline
);
516 return ((PROCESS
*)NULL
);
521 /* Start building a pipeline. */
527 cleanup_the_pipeline ();
528 /* If job_control == 0, pipeline_pgrp will always be equal to shell_pgrp;
529 if job_control != 0, pipeline_pgrp == shell_pgrp for command and
530 process substitution, in which case we want it to be the same as
531 shell_pgrp for the lifetime of this shell instance. */
532 if (pipeline_pgrp
!= shell_pgrp
)
534 #if defined (PGRP_PIPE)
535 sh_closepipe (pgrp_pipe
);
539 #if defined (PGRP_PIPE)
542 if (pipe (pgrp_pipe
) == -1)
543 sys_error (_("start_pipeline: pgrp pipe"));
548 /* Stop building a pipeline. Install the process list in the job array.
549 This returns the index of the newly installed job.
550 DEFERRED is a command structure to be executed upon satisfactory
551 execution exit of this pipeline. */
553 stop_pipeline (async
, deferred
)
561 BLOCK_CHILD (set
, oset
);
563 #if defined (PGRP_PIPE)
564 /* The parent closes the process group synchronization pipe. */
565 sh_closepipe (pgrp_pipe
);
568 cleanup_dead_jobs ();
570 if (js
.j_jobslots
== 0)
572 js
.j_jobslots
= JOB_SLOTS
;
573 jobs
= (JOB
**)xmalloc (js
.j_jobslots
* sizeof (JOB
*));
575 /* Now blank out these new entries. */
576 for (i
= 0; i
< js
.j_jobslots
; i
++)
577 jobs
[i
] = (JOB
*)NULL
;
579 js
.j_firstj
= js
.j_lastj
= js
.j_njobs
= 0;
582 /* Scan from the last slot backward, looking for the next free one. */
583 /* XXX - revisit this interactive assumption */
584 /* XXX - this way for now */
587 for (i
= js
.j_jobslots
; i
; i
--)
594 /* This wraps around, but makes it inconvenient to extend the array */
595 for (i
= js
.j_lastj
+1; i
!= js
.j_lastj
; i
++)
597 if (i
>= js
.j_jobslots
)
605 /* This doesn't wrap around yet. */
606 for (i
= js
.j_lastj
? js
.j_lastj
+ 1 : js
.j_lastj
; i
< js
.j_jobslots
; i
++)
612 /* Do we need more room? */
614 /* First try compaction */
615 if ((interactive_shell
== 0 || subshell_environment
) && i
== js
.j_jobslots
&& js
.j_jobslots
>= MAX_JOBS_IN_ARRAY
)
616 i
= compact_jobs_list (0);
618 /* If we can't compact, reallocate */
619 if (i
== js
.j_jobslots
)
621 js
.j_jobslots
+= JOB_SLOTS
;
622 jobs
= (JOB
**)xrealloc (jobs
, (js
.j_jobslots
* sizeof (JOB
*)));
624 for (j
= i
; j
< js
.j_jobslots
; j
++)
625 jobs
[j
] = (JOB
*)NULL
;
628 /* Add the current pipeline to the job list. */
632 int any_running
, any_stopped
, n
;
634 newjob
= (JOB
*)xmalloc (sizeof (JOB
));
636 for (n
= 1, p
= the_pipeline
; p
->next
!= the_pipeline
; n
++, p
= p
->next
)
638 p
->next
= (PROCESS
*)NULL
;
639 newjob
->pipe
= REVERSE_LIST (the_pipeline
, PROCESS
*);
640 for (p
= newjob
->pipe
; p
->next
; p
= p
->next
)
642 p
->next
= newjob
->pipe
;
644 the_pipeline
= (PROCESS
*)NULL
;
645 newjob
->pgrp
= pipeline_pgrp
;
646 if (pipeline_pgrp
!= shell_pgrp
)
651 newjob
->flags
|= J_PIPEFAIL
;
653 /* Flag to see if in another pgrp. */
655 newjob
->flags
|= J_JOBCONTROL
;
657 /* Set the state of this pipeline. */
659 any_running
= any_stopped
= 0;
662 any_running
|= PRUNNING (p
);
663 any_stopped
|= PSTOPPED (p
);
666 while (p
!= newjob
->pipe
);
668 newjob
->state
= any_running
? JRUNNING
: (any_stopped
? JSTOPPED
: JDEAD
);
669 newjob
->wd
= job_working_directory ();
670 newjob
->deferred
= deferred
;
672 newjob
->j_cleanup
= (sh_vptrfunc_t
*)NULL
;
673 newjob
->cleanarg
= (PTR_T
) NULL
;
676 if (newjob
->state
== JDEAD
&& (newjob
->flags
& J_FOREGROUND
))
678 if (newjob
->state
== JDEAD
)
680 js
.c_reaped
+= n
; /* wouldn't have been done since this was not part of a job */
689 newjob
= (JOB
*)NULL
;
692 js
.j_lastmade
= newjob
;
698 newjob
->flags
&= ~J_FOREGROUND
;
699 newjob
->flags
|= J_ASYNC
;
700 js
.j_lastasync
= newjob
;
708 newjob
->flags
|= J_FOREGROUND
;
710 * !!!!! NOTE !!!!! (chet@po.cwru.edu)
712 * The currently-accepted job control wisdom says to set the
713 * terminal's process group n+1 times in an n-step pipeline:
714 * once in the parent and once in each child. This is where
715 * the parent gives it away.
717 * Don't give the terminal away if this shell is an asynchronous
718 * subshell or if we're a (presumably non-interactive) shell running
722 if (job_control
&& newjob
->pgrp
&& (subshell_environment
&SUBSHELL_ASYNC
) == 0 && running_in_background
== 0)
723 maybe_give_terminal_to (shell_pgrp
, newjob
->pgrp
, 0);
727 stop_making_children ();
728 UNBLOCK_CHILD (oset
);
729 return (newjob
? i
: js
.j_current
);
732 /* Functions to manage the list of exited background pids whose status has
737 The current implementation is a hash table using a single (separate) arena
738 for storage that can be allocated and freed as a unit. The size of the hash
739 table is a multiple of PIDSTAT_TABLE_SZ (4096) and multiple PIDs that hash
740 to the same value are chained through the bucket_next and bucket_prev
741 pointers (basically coalesced hashing for collision resolution).
745 All pid/status storage is done using the circular buffer bgpids.storage.
746 This must contain at least js.c_childmax entries. The circular buffer is
747 used to supply the ordered list Posix requires ("the last CHILD_MAX
748 processes"). To avoid searching the entire storage table for a given PID,
749 the hash table (pidstat_table) holds pointers into the storage arena and
750 uses a doubly-linked list of cells (bucket_next/bucket_prev, also pointers
751 into the arena) to implement collision resolution. */
753 /* The number of elements in bgpids.storage always has to be > js.c_childmax for
754 the circular buffer to work right. */
758 ps_index_t nsize
, nsize_cur
, nsize_max
;
761 if (bgpids
.nalloc
== 0)
763 /* invalidate hash table when bgpids table is reallocated */
764 for (psi
= 0; psi
< PIDSTAT_TABLE_SZ
; psi
++)
765 pidstat_table
[psi
] = NO_PIDSTAT
;
766 nsize
= BGPIDS_TABLE_SZ
; /* should be power of 2 */
770 nsize
= bgpids
.nalloc
;
772 nsize_max
= TYPE_MAXIMUM (ps_index_t
);
773 nsize_cur
= (ps_index_t
)js
.c_childmax
;
774 if (nsize_cur
< 0) /* overflow */
775 nsize_cur
= MAX_CHILD_MAX
;
777 while (nsize
> 0 && nsize
< nsize_cur
) /* > 0 should catch overflow */
779 if (nsize
> nsize_max
|| nsize
<= 0) /* overflow? */
781 if (nsize
> MAX_CHILD_MAX
)
782 nsize
= nsize_max
= MAX_CHILD_MAX
; /* hard cap */
784 if (bgpids
.nalloc
< nsize_cur
&& bgpids
.nalloc
< nsize_max
)
786 bgpids
.storage
= (struct pidstat
*)xrealloc (bgpids
.storage
, nsize
* sizeof (struct pidstat
));
788 for (psi
= bgpids
.nalloc
; psi
< nsize
; psi
++)
789 bgpids
.storage
[psi
].pid
= NO_PID
;
791 bgpids
.nalloc
= nsize
;
794 else if (bgpids
.head
>= bgpids
.nalloc
) /* wrap around */
801 if (bgpids
.nalloc
< (ps_index_t
)js
.c_childmax
|| bgpids
.head
>= bgpids
.nalloc
)
804 pshash_delindex (bgpids
.head
); /* XXX - clear before reusing */
805 return bgpids
.head
++;
809 pshash_getbucket (pid
)
812 unsigned long hash
; /* XXX - u_bits32_t */
814 hash
= pid
* 0x9e370001UL
;
815 return (&pidstat_table
[hash
% PIDSTAT_TABLE_SZ
]);
818 static struct pidstat
*
819 bgp_add (pid
, status
)
823 ps_index_t
*bucket
, psi
;
826 /* bucket == existing chain of pids hashing to same value
827 psi = where were going to put this pid/status */
829 bucket
= pshash_getbucket (pid
); /* index into pidstat_table */
830 psi
= bgp_getindex (); /* bgpids.head, index into storage */
832 /* XXX - what if psi == *bucket? */
836 internal_warning ("hashed pid %d (pid %d) collides with bgpids.head, skipping", psi
, pid
);
838 bgpids
.storage
[psi
].pid
= NO_PID
; /* make sure */
839 psi
= bgp_getindex (); /* skip to next one */
842 ps
= &bgpids
.storage
[psi
];
846 ps
->bucket_next
= *bucket
;
847 ps
->bucket_prev
= NO_PIDSTAT
;
852 if (bgpids
.npid
> js
.c_childmax
)
856 if (ps
->bucket_next
!= NO_PIDSTAT
)
857 bgpids
.storage
[ps
->bucket_next
].bucket_prev
= psi
;
859 *bucket
= psi
; /* set chain head in hash table */
865 pshash_delindex (psi
)
871 ps
= &bgpids
.storage
[psi
];
872 if (ps
->pid
== NO_PID
)
875 if (ps
->bucket_next
!= NO_PIDSTAT
)
876 bgpids
.storage
[ps
->bucket_next
].bucket_prev
= ps
->bucket_prev
;
877 if (ps
->bucket_prev
!= NO_PIDSTAT
)
878 bgpids
.storage
[ps
->bucket_prev
].bucket_next
= ps
->bucket_next
;
881 bucket
= pshash_getbucket (ps
->pid
);
882 *bucket
= ps
->bucket_next
; /* deleting chain head in hash table */
885 /* clear out this cell, in case it gets reused. */
887 ps
->bucket_next
= ps
->bucket_prev
= NO_PIDSTAT
;
894 ps_index_t psi
, orig_psi
;
896 if (bgpids
.storage
== 0 || bgpids
.nalloc
== 0 || bgpids
.npid
== 0)
899 /* Search chain using hash to find bucket in pidstat_table */
900 for (orig_psi
= psi
= *(pshash_getbucket (pid
)); psi
!= NO_PIDSTAT
; psi
= bgpids
.storage
[psi
].bucket_next
)
902 if (bgpids
.storage
[psi
].pid
== pid
)
904 if (orig_psi
== bgpids
.storage
[psi
].bucket_next
) /* catch reported bug */
906 internal_warning (_("bgp_delete: LOOP: psi (%d) == storage[psi].bucket_next"), psi
);
911 if (psi
== NO_PIDSTAT
)
912 return 0; /* not found */
915 itrace("bgp_delete: deleting %d", pid
);
918 pshash_delindex (psi
); /* hash table management */
924 /* Clear out the list of saved statuses */
928 if (bgpids
.storage
== 0 || bgpids
.nalloc
== 0)
931 free (bgpids
.storage
);
940 /* Search for PID in the list of saved background pids; return its status if
941 found. If not found, return -1. We hash to the right spot in pidstat_table
942 and follow the bucket chain to the end. */
947 ps_index_t psi
, orig_psi
;
949 if (bgpids
.storage
== 0 || bgpids
.nalloc
== 0 || bgpids
.npid
== 0)
952 /* Search chain using hash to find bucket in pidstat_table */
953 for (orig_psi
= psi
= *(pshash_getbucket (pid
)); psi
!= NO_PIDSTAT
; psi
= bgpids
.storage
[psi
].bucket_next
)
955 if (bgpids
.storage
[psi
].pid
== pid
)
956 return (bgpids
.storage
[psi
].status
);
957 if (orig_psi
== bgpids
.storage
[psi
].bucket_next
) /* catch reported bug */
959 internal_warning (_("bgp_search: LOOP: psi (%d) == storage[psi].bucket_next"), psi
);
975 /* External interface to bgp_add; takes care of blocking and unblocking
976 SIGCHLD. Not really used. */
978 save_proc_status (pid
, status
)
984 BLOCK_CHILD (set
, oset
);
985 bgp_add (pid
, status
);
986 UNBLOCK_CHILD (oset
);
989 #if defined (PROCESS_SUBSTITUTION)
990 /* Functions to add and remove PROCESS * children from the list of running
991 asynchronous process substitutions. The list is currently a simple singly
992 linked list of PROCESS *, so it works with the set of callers that want
993 a child. subst.c:process_substitute adds to the list, the various wait*
994 functions manipulate child->running and child->status, and processes are
995 eventually removed from the list and added to the bgpids table. */
1011 BLOCK_CHILD (set
, oset
);
1012 if (procsubs
.head
== 0)
1014 procsubs
.head
= procsubs
.end
= p
;
1019 procsubs
.end
->next
= p
;
1023 UNBLOCK_CHILD (oset
);
1029 procsub_search (pid
)
1035 BLOCK_CHILD (set
, oset
);
1036 for (p
= procsubs
.head
; p
; p
= p
->next
)
1039 UNBLOCK_CHILD (oset
);
1045 procsub_delete (pid
)
1051 BLOCK_CHILD (set
, oset
);
1052 for (p
= prev
= procsubs
.head
; p
; prev
= p
, p
= p
->next
)
1055 prev
->next
= p
->next
;
1061 UNBLOCK_CHILD (oset
);
1065 if (p
== procsubs
.head
)
1066 procsubs
.head
= procsubs
.head
->next
;
1067 else if (p
== procsubs
.end
)
1068 procsubs
.end
= prev
;
1071 if (procsubs
.nproc
== 0)
1072 procsubs
.head
= procsubs
.end
= 0;
1073 else if (procsubs
.nproc
== 1) /* XXX */
1074 procsubs
.end
= procsubs
.head
;
1076 /* this can't be called anywhere in a signal handling path */
1077 bgp_add (p
->pid
, process_exit_status (p
->status
));
1078 UNBLOCK_CHILD (oset
);
1083 procsub_waitpid (pid
)
1089 p
= procsub_search (pid
);
1092 if (p
->running
== PS_DONE
)
1094 r
= wait_for (p
->pid
, 0);
1095 return (r
); /* defer removing until later */
1104 for (p
= procsubs
.head
; p
; p
= p
->next
)
1106 if (p
->running
== PS_DONE
)
1108 r
= wait_for (p
->pid
, 0);
1118 BLOCK_CHILD (set
, oset
);
1120 for (ps
= procsubs
.head
; ps
; )
1126 procsubs
.head
= procsubs
.end
= 0;
1128 UNBLOCK_CHILD (oset
);
1131 /* Must be called with SIGCHLD blocked. */
1135 PROCESS
*ohead
, *oend
, *ps
, *p
;
1138 if (procsubs
.nproc
== 0)
1141 ohead
= procsubs
.head
;
1142 oend
= procsubs
.end
;
1143 onproc
= procsubs
.nproc
;
1145 procsubs
.head
= procsubs
.end
= 0;
1148 for (p
= ohead
; p
; )
1152 if (p
->running
== PS_DONE
)
1154 bgp_add (p
->pid
, process_exit_status (p
->status
));
1164 /* Reset the values of js.j_lastj and js.j_firstj after one or both have
1165 been deleted. The caller should check whether js.j_njobs is 0 before
1166 calling this. This wraps around, but the rest of the code does not. At
1167 this point, it should not matter. */
1169 reset_job_indices ()
1173 if (jobs
[js
.j_firstj
] == 0)
1175 old
= js
.j_firstj
++;
1176 if (old
>= js
.j_jobslots
)
1177 old
= js
.j_jobslots
- 1;
1178 while (js
.j_firstj
!= old
)
1180 if (js
.j_firstj
>= js
.j_jobslots
)
1182 if (jobs
[js
.j_firstj
] || js
.j_firstj
== old
) /* needed if old == 0 */
1186 if (js
.j_firstj
== old
)
1187 js
.j_firstj
= js
.j_lastj
= js
.j_njobs
= 0;
1189 if (jobs
[js
.j_lastj
] == 0)
1194 while (js
.j_lastj
!= old
)
1197 js
.j_lastj
= js
.j_jobslots
- 1;
1198 if (jobs
[js
.j_lastj
] || js
.j_lastj
== old
) /* needed if old == js.j_jobslots */
1202 if (js
.j_lastj
== old
)
1203 js
.j_firstj
= js
.j_lastj
= js
.j_njobs
= 0;
1207 /* Delete all DEAD jobs that the user had received notification about. */
1209 cleanup_dead_jobs ()
1215 if (js
.j_jobslots
== 0 || jobs_list_frozen
)
1220 /* XXX could use js.j_firstj and js.j_lastj here */
1221 for (i
= 0; i
< js
.j_jobslots
; i
++)
1224 if (i
< js
.j_firstj
&& jobs
[i
])
1225 itrace("cleanup_dead_jobs: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
1226 if (i
> js
.j_lastj
&& jobs
[i
])
1227 itrace("cleanup_dead_jobs: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
1230 if (jobs
[i
] && DEADJOB (i
) && IS_NOTIFIED (i
))
1234 #if defined (PROCESS_SUBSTITUTION)
1236 last_procsub_child
= (PROCESS
*)NULL
;
1239 #if defined (COPROCESS_SUPPORT)
1243 UNQUEUE_SIGCHLD(os
);
1247 processes_in_job (job
)
1251 register PROCESS
*p
;
1254 p
= jobs
[job
]->pipe
;
1260 while (p
!= jobs
[job
]->pipe
);
1266 delete_old_job (pid
)
1272 job
= find_job (pid
, 0, &p
);
1276 itrace ("delete_old_job: found pid %d in job %d with state %d", pid
, job
, jobs
[job
]->state
);
1278 if (JOBSTATE (job
) == JDEAD
)
1279 delete_job (job
, DEL_NOBGPID
);
1283 internal_warning (_("forked pid %d appears in running job %d"), pid
, job
+1);
1291 /* Reallocate and compress the jobs list. This returns with a jobs array
1292 whose size is a multiple of JOB_SLOTS and can hold the current number of
1293 jobs. Heuristics are used to minimize the number of new reallocs. */
1295 realloc_jobs_list ()
1298 int nsize
, i
, j
, ncur
, nprev
;
1301 ncur
= nprev
= NO_JOB
;
1302 nsize
= ((js
.j_njobs
+ JOB_SLOTS
- 1) / JOB_SLOTS
);
1304 i
= js
.j_njobs
% JOB_SLOTS
;
1305 if (i
== 0 || i
> (JOB_SLOTS
>> 1))
1308 BLOCK_CHILD (set
, oset
);
1309 nlist
= (js
.j_jobslots
== nsize
) ? jobs
: (JOB
**) xmalloc (nsize
* sizeof (JOB
*));
1311 js
.c_reaped
= js
.j_ndead
= 0;
1312 for (i
= j
= 0; i
< js
.j_jobslots
; i
++)
1315 if (i
== js
.j_current
)
1317 if (i
== js
.j_previous
)
1319 nlist
[j
++] = jobs
[i
];
1320 if (jobs
[i
]->state
== JDEAD
)
1323 js
.c_reaped
+= processes_in_job (i
);
1328 itrace ("realloc_jobs_list: resize jobs list from %d to %d", js
.j_jobslots
, nsize
);
1329 itrace ("realloc_jobs_list: j_lastj changed from %d to %d", js
.j_lastj
, (j
> 0) ? j
- 1 : 0);
1330 itrace ("realloc_jobs_list: j_njobs changed from %d to %d", js
.j_njobs
, j
);
1331 itrace ("realloc_jobs_list: js.j_ndead %d js.c_reaped %d", js
.j_ndead
, js
.c_reaped
);
1335 js
.j_lastj
= (j
> 0) ? j
- 1 : 0;
1337 js
.j_jobslots
= nsize
;
1339 /* Zero out remaining slots in new jobs list */
1340 for ( ; j
< nsize
; j
++)
1341 nlist
[j
] = (JOB
*)NULL
;
1350 js
.j_current
= ncur
;
1351 if (nprev
!= NO_JOB
)
1352 js
.j_previous
= nprev
;
1354 /* Need to reset these */
1355 if (js
.j_current
== NO_JOB
|| js
.j_previous
== NO_JOB
|| js
.j_current
> js
.j_lastj
|| js
.j_previous
> js
.j_lastj
)
1359 itrace ("realloc_jobs_list: reset js.j_current (%d) and js.j_previous (%d)", js
.j_current
, js
.j_previous
);
1362 UNBLOCK_CHILD (oset
);
1365 /* Compact the jobs list by removing dead jobs. Assume that we have filled
1366 the jobs array to some predefined maximum. Called when the shell is not
1367 the foreground process (subshell_environment != 0). Returns the first
1368 available slot in the compacted list. If that value is js.j_jobslots, then
1369 the list needs to be reallocated. The jobs array may be in new memory if
1370 this returns > 0 and < js.j_jobslots. FLAGS is reserved for future use. */
1372 compact_jobs_list (flags
)
1375 if (js
.j_jobslots
== 0 || jobs_list_frozen
)
1376 return js
.j_jobslots
;
1379 realloc_jobs_list ();
1382 itrace("compact_jobs_list: returning %d", (js
.j_lastj
|| jobs
[js
.j_lastj
]) ? js
.j_lastj
+ 1 : 0);
1385 return ((js
.j_lastj
|| jobs
[js
.j_lastj
]) ? js
.j_lastj
+ 1 : 0);
1388 /* Delete the job at INDEX from the job list. Must be called
1389 with SIGCHLD blocked. */
1391 delete_job (job_index
, dflags
)
1392 int job_index
, dflags
;
1398 if (js
.j_jobslots
== 0 || jobs_list_frozen
)
1401 if ((dflags
& DEL_WARNSTOPPED
) && subshell_environment
== 0 && STOPPED (job_index
))
1402 internal_warning (_("deleting stopped job %d with process group %ld"), job_index
+1, (long)jobs
[job_index
]->pgrp
);
1403 temp
= jobs
[job_index
];
1407 if ((dflags
& DEL_NOBGPID
) == 0 && (temp
->flags
& (J_ASYNC
|J_FOREGROUND
)) == J_ASYNC
)
1409 proc
= find_last_proc (job_index
, 0);
1411 bgp_add (proc
->pid
, process_exit_status (proc
->status
));
1414 jobs
[job_index
] = (JOB
*)NULL
;
1415 if (temp
== js
.j_lastmade
)
1417 else if (temp
== js
.j_lastasync
)
1421 ndel
= discard_pipeline (temp
->pipe
);
1423 js
.c_injobs
-= ndel
;
1424 if (temp
->state
== JDEAD
)
1426 /* XXX - save_pipeline and restore_pipeline (e.g., for DEBUG trap) can
1427 mess with this total. */
1428 js
.c_reaped
-= ndel
; /* assumes proc hadn't been reaped earlier */
1430 if (js
.c_reaped
< 0)
1433 itrace("delete_job (%d pgrp %d): js.c_reaped (%d) < 0 ndel = %d js.j_ndead = %d", job_index
, temp
->pgrp
, js
.c_reaped
, ndel
, js
.j_ndead
);
1440 dispose_command (temp
->deferred
);
1445 if (js
.j_njobs
== 0)
1446 js
.j_firstj
= js
.j_lastj
= 0;
1447 else if (jobs
[js
.j_firstj
] == 0 || jobs
[js
.j_lastj
] == 0)
1448 reset_job_indices ();
1450 if (job_index
== js
.j_current
|| job_index
== js
.j_previous
)
1454 /* Must be called with SIGCHLD blocked. */
1456 nohup_job (job_index
)
1461 if (js
.j_jobslots
== 0)
1464 if (temp
= jobs
[job_index
])
1465 temp
->flags
|= J_NOHUP
;
1468 /* Get rid of the data structure associated with a process chain. */
1470 discard_pipeline (chain
)
1471 register PROCESS
*chain
;
1473 register PROCESS
*this, *next
;
1481 FREE (this->command
);
1486 while (this != chain
);
1491 /* Add this process to the chain being built in the_pipeline.
1492 NAME is the command string that will be exec'ed later.
1493 PID is the process id of the child. */
1495 add_process (name
, pid
)
1501 #if defined (RECYCLES_PIDS)
1503 p
= find_process (pid
, 0, &j
);
1508 internal_warning ("add_process: process %5ld (%s) in the_pipeline", (long)p
->pid
, p
->command
);
1511 internal_warning (_("add_process: pid %5ld (%s) marked as still alive"), (long)p
->pid
, p
->command
);
1512 p
->running
= PS_RECYCLED
; /* mark as recycled */
1516 t
= (PROCESS
*)xmalloc (sizeof (PROCESS
));
1517 t
->next
= the_pipeline
;
1519 WSTATUS (t
->status
) = 0;
1520 t
->running
= PS_RUNNING
;
1529 while (p
->next
!= t
->next
)
1535 /* Create a (dummy) PROCESS with NAME, PID, and STATUS, and make it the last
1536 process in jobs[JID]->pipe. Used by the lastpipe code. */
1538 append_process (name
, pid
, status
, jid
)
1546 t
= (PROCESS
*)xmalloc (sizeof (PROCESS
));
1547 t
->next
= (PROCESS
*)NULL
;
1549 /* set process exit status using offset discovered by configure */
1550 t
->status
= (status
& 0xff) << WEXITSTATUS_OFFSET
;
1551 t
->running
= PS_DONE
;
1554 js
.c_reaped
++; /* XXX */
1556 for (p
= jobs
[jid
]->pipe
; p
->next
!= jobs
[jid
]->pipe
; p
= p
->next
)
1559 t
->next
= jobs
[jid
]->pipe
;
1563 /* Take the last job and make it the first job. Must be called with
1566 rotate_the_pipeline ()
1570 if (the_pipeline
->next
== the_pipeline
)
1572 for (p
= the_pipeline
; p
->next
!= the_pipeline
; p
= p
->next
)
1577 /* Reverse the order of the processes in the_pipeline. Must be called with
1580 reverse_the_pipeline ()
1584 if (the_pipeline
->next
== the_pipeline
)
1587 for (p
= the_pipeline
; p
->next
!= the_pipeline
; p
= p
->next
)
1589 p
->next
= (PROCESS
*)NULL
;
1591 n
= REVERSE_LIST (the_pipeline
, PROCESS
*);
1594 for (p
= the_pipeline
; p
->next
; p
= p
->next
)
1596 p
->next
= the_pipeline
;
1600 /* Map FUNC over the list of jobs. If FUNC returns non-zero,
1601 then it is time to stop mapping, and that is the return value
1602 for map_over_jobs. FUNC is called with a JOB, arg1, arg2,
1605 map_over_jobs (func
, arg1
, arg2
)
1606 sh_job_map_func_t
*func
;
1613 if (js
.j_jobslots
== 0)
1616 BLOCK_CHILD (set
, oset
);
1618 /* XXX could use js.j_firstj here */
1619 for (i
= result
= 0; i
< js
.j_jobslots
; i
++)
1622 if (i
< js
.j_firstj
&& jobs
[i
])
1623 itrace("map_over_jobs: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
1624 if (i
> js
.j_lastj
&& jobs
[i
])
1625 itrace("map_over_jobs: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
1629 result
= (*func
)(jobs
[i
], arg1
, arg2
, i
);
1635 UNBLOCK_CHILD (oset
);
1640 /* Cause all the jobs in the current pipeline to exit. */
1642 terminate_current_pipeline ()
1644 if (pipeline_pgrp
&& pipeline_pgrp
!= shell_pgrp
)
1646 killpg (pipeline_pgrp
, SIGTERM
);
1647 killpg (pipeline_pgrp
, SIGCONT
);
1651 /* Cause all stopped jobs to exit. */
1653 terminate_stopped_jobs ()
1657 /* XXX could use js.j_firstj here */
1658 for (i
= 0; i
< js
.j_jobslots
; i
++)
1660 if (jobs
[i
] && STOPPED (i
))
1662 killpg (jobs
[i
]->pgrp
, SIGTERM
);
1663 killpg (jobs
[i
]->pgrp
, SIGCONT
);
1668 /* Cause all jobs, running or stopped, to receive a hangup signal. If
1669 a job is marked J_NOHUP, don't send the SIGHUP. */
1675 /* XXX could use js.j_firstj here */
1676 for (i
= 0; i
< js
.j_jobslots
; i
++)
1680 if (jobs
[i
]->flags
& J_NOHUP
)
1682 killpg (jobs
[i
]->pgrp
, SIGHUP
);
1684 killpg (jobs
[i
]->pgrp
, SIGCONT
);
1690 kill_current_pipeline ()
1692 stop_making_children ();
1697 find_pid_in_pipeline (pid
, pipeline
, alive_only
)
1707 /* Return it if we found it. Don't ever return a recycled pid. */
1708 if (p
->pid
== pid
&& ((alive_only
== 0 && PRECYCLED(p
) == 0) || PALIVE(p
)))
1713 while (p
!= pipeline
);
1714 return ((PROCESS
*)NULL
);
1717 /* Return the pipeline that PID belongs to. Note that the pipeline
1718 doesn't have to belong to a job. Must be called with SIGCHLD blocked.
1719 If JOBP is non-null, return the index of the job containing PID. */
1721 find_pipeline (pid
, alive_only
, jobp
)
1724 int *jobp
; /* index into jobs list or NO_JOB */
1728 struct pipeline_saver
*save
;
1730 /* See if this process is in the pipeline that we are building. */
1731 p
= (PROCESS
*)NULL
;
1735 if (the_pipeline
&& (p
= find_pid_in_pipeline (pid
, the_pipeline
, alive_only
)))
1738 /* Is this process in a saved pipeline? */
1739 for (save
= saved_pipeline
; save
; save
= save
->next
)
1740 if (save
->pipeline
&& (p
= find_pid_in_pipeline (pid
, save
->pipeline
, alive_only
)))
1743 #if defined (PROCESS_SUBSTITUTION)
1744 if (procsubs
.nproc
> 0 && (p
= procsub_search (pid
)) && ((alive_only
== 0 && PRECYCLED(p
) == 0) || PALIVE(p
)))
1748 job
= find_job (pid
, alive_only
, &p
);
1751 return (job
== NO_JOB
) ? (PROCESS
*)NULL
: jobs
[job
]->pipe
;
1754 /* Return the PROCESS * describing PID. If JOBP is non-null return the index
1755 into the jobs array of the job containing PID. Must be called with
1758 find_process (pid
, alive_only
, jobp
)
1761 int *jobp
; /* index into jobs list or NO_JOB */
1765 p
= find_pipeline (pid
, alive_only
, jobp
);
1766 while (p
&& p
->pid
!= pid
)
1771 /* Return the job index that PID belongs to, or NO_JOB if it doesn't
1772 belong to any job. Must be called with SIGCHLD blocked. */
1774 find_job (pid
, alive_only
, procp
)
1782 /* XXX could use js.j_firstj here, and should check js.j_lastj */
1783 for (i
= 0; i
< js
.j_jobslots
; i
++)
1786 if (i
< js
.j_firstj
&& jobs
[i
])
1787 itrace("find_job: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
1788 if (i
> js
.j_lastj
&& jobs
[i
])
1789 itrace("find_job: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
1797 if (p
->pid
== pid
&& ((alive_only
== 0 && PRECYCLED(p
) == 0) || PALIVE(p
)))
1806 while (p
!= jobs
[i
]->pipe
);
1813 /* Find a job given a PID. If BLOCK is non-zero, block SIGCHLD as
1814 required by find_job. */
1816 get_job_by_pid (pid
, block
, procp
)
1825 BLOCK_CHILD (set
, oset
);
1827 job
= find_job (pid
, 0, procp
);
1830 UNBLOCK_CHILD (oset
);
1835 /* Print descriptive information about the job with leader pid PID. */
1843 BLOCK_CHILD (set
, oset
);
1845 job
= find_job (pid
, 0, NULL
);
1848 fprintf (stderr
, "[%d] %ld\n", job
+ 1, (long)pid
);
1850 programming_error (_("describe_pid: %ld: no such pid"), (long)pid
);
1852 UNBLOCK_CHILD (oset
);
1864 x
= retcode_name_buffer
;
1865 snprintf (x
, sizeof(retcode_name_buffer
), _("Signal %d"), s
);
1871 printable_job_status (j
, p
, format
)
1881 if (STOPPED (j
) && format
== 0)
1883 if (posixly_correct
== 0 || p
== 0 || (WIFSTOPPED (p
->status
) == 0))
1884 temp
= _("Stopped");
1887 temp
= retcode_name_buffer
;
1888 snprintf (temp
, sizeof(retcode_name_buffer
), _("Stopped(%s)"), signal_name (WSTOPSIG (p
->status
)));
1891 else if (RUNNING (j
))
1892 temp
= _("Running");
1895 if (WIFSTOPPED (p
->status
))
1896 temp
= j_strsignal (WSTOPSIG (p
->status
));
1897 else if (WIFSIGNALED (p
->status
))
1898 temp
= j_strsignal (WTERMSIG (p
->status
));
1899 else if (WIFEXITED (p
->status
))
1901 temp
= retcode_name_buffer
;
1902 es
= WEXITSTATUS (p
->status
);
1905 strncpy (temp
, _("Done"), sizeof (retcode_name_buffer
) - 1);
1906 temp
[sizeof (retcode_name_buffer
) - 1] = '\0';
1908 else if (posixly_correct
)
1909 snprintf (temp
, sizeof(retcode_name_buffer
), _("Done(%d)"), es
);
1911 snprintf (temp
, sizeof(retcode_name_buffer
), _("Exit %d"), es
);
1914 temp
= _("Unknown status");
1920 /* This is the way to print out information on a job if you
1921 know the index. FORMAT is:
1923 JLIST_NORMAL) [1]+ Running emacs
1924 JLIST_LONG ) [1]+ 2378 Running emacs
1925 -1 ) [1]+ 2378 emacs
1927 JLIST_NORMAL) [1]+ Stopped ls | more
1928 JLIST_LONG ) [1]+ 2369 Stopped ls
1931 Just list the pid of the process group leader (really
1934 Use format JLIST_NORMAL, but list only jobs about which
1935 the user has not been notified. */
1937 /* Print status for pipeline P. If JOB_INDEX is >= 0, it is the index into
1938 the JOBS array corresponding to this pipeline. FORMAT is as described
1939 above. Must be called with SIGCHLD blocked.
1941 If you're printing a pipeline that's not in the jobs array, like the
1942 current pipeline as it's being created, pass -1 for JOB_INDEX */
1944 print_pipeline (p
, job_index
, format
, stream
)
1946 int job_index
, format
;
1949 PROCESS
*first
, *last
, *show
;
1950 int es
, name_padding
;
1957 while (last
->next
!= first
)
1963 fprintf (stream
, format
? " " : " |");
1965 if (format
!= JLIST_STANDARD
)
1966 fprintf (stream
, "%5ld", (long)p
->pid
);
1968 fprintf (stream
, " ");
1970 if (format
> -1 && job_index
>= 0)
1972 show
= format
? p
: last
;
1973 temp
= printable_job_status (job_index
, show
, format
);
1979 if (show
->running
== first
->running
&&
1980 WSTATUS (show
->status
) == WSTATUS (first
->status
))
1984 temp
= (char *)NULL
;
1989 fprintf (stream
, "%s", temp
);
1993 es
= 2; /* strlen ("| ") */
1994 name_padding
= LONGEST_SIGNAL_DESC
- es
;
1996 fprintf (stream
, "%*s", name_padding
, "");
1998 if ((WIFSTOPPED (show
->status
) == 0) &&
1999 (WIFCONTINUED (show
->status
) == 0) &&
2000 WIFCORED (show
->status
))
2001 fprintf (stream
, _("(core dumped) "));
2005 if (p
!= first
&& format
)
2006 fprintf (stream
, "| ");
2009 fprintf (stream
, "%s", p
->command
);
2011 if (p
== last
&& job_index
>= 0)
2013 temp
= current_working_directory ();
2015 if (RUNNING (job_index
) && (IS_FOREGROUND (job_index
) == 0))
2016 fprintf (stream
, " &");
2018 if (strcmp (temp
, jobs
[job_index
]->wd
) != 0)
2020 _(" (wd: %s)"), polite_directory_format (jobs
[job_index
]->wd
));
2023 if (format
|| (p
== last
))
2025 /* We need to add a CR only if this is an interactive shell, and
2026 we're reporting the status of a completed job asynchronously.
2027 We can't really check whether this particular job is being
2028 reported asynchronously, so just add the CR if the shell is
2029 currently interactive and asynchronous notification is enabled. */
2030 if (asynchronous_notification
&& interactive
)
2031 putc ('\r', stream
);
2032 fprintf (stream
, "\n");
2042 /* Print information to STREAM about jobs[JOB_INDEX] according to FORMAT.
2043 Must be called with SIGCHLD blocked or queued with queue_sigchld */
2045 pretty_print_job (job_index
, format
, stream
)
2046 int job_index
, format
;
2049 register PROCESS
*p
;
2051 /* Format only pid information about the process group leader? */
2052 if (format
== JLIST_PID_ONLY
)
2054 fprintf (stream
, "%ld\n", (long)jobs
[job_index
]->pipe
->pid
);
2058 if (format
== JLIST_CHANGED_ONLY
)
2060 if (IS_NOTIFIED (job_index
))
2062 format
= JLIST_STANDARD
;
2065 if (format
!= JLIST_NONINTERACTIVE
)
2066 fprintf (stream
, "[%d]%c ", job_index
+ 1,
2067 (job_index
== js
.j_current
) ? '+':
2068 (job_index
== js
.j_previous
) ? '-' : ' ');
2070 if (format
== JLIST_NONINTERACTIVE
)
2071 format
= JLIST_LONG
;
2073 p
= jobs
[job_index
]->pipe
;
2075 print_pipeline (p
, job_index
, format
, stream
);
2077 /* We have printed information about this job. When the job's
2078 status changes, waitchld () sets the notification flag to 0. */
2079 jobs
[job_index
]->flags
|= J_NOTIFIED
;
2083 print_job (job
, format
, state
, job_index
)
2085 int format
, state
, job_index
;
2087 if (state
== -1 || (JOB_STATE
)state
== job
->state
)
2088 pretty_print_job (job_index
, format
, stdout
);
2093 list_one_job (job
, format
, ignore
, job_index
)
2095 int format
, ignore
, job_index
;
2097 pretty_print_job (job_index
, format
, stdout
);
2098 cleanup_dead_jobs ();
2102 list_stopped_jobs (format
)
2105 cleanup_dead_jobs ();
2106 map_over_jobs (print_job
, format
, (int)JSTOPPED
);
2110 list_running_jobs (format
)
2113 cleanup_dead_jobs ();
2114 map_over_jobs (print_job
, format
, (int)JRUNNING
);
2117 /* List jobs. If FORMAT is non-zero, then the long form of the information
2118 is printed, else just a short version. */
2120 list_all_jobs (format
)
2123 cleanup_dead_jobs ();
2124 map_over_jobs (print_job
, format
, -1);
2127 /* Fork, handling errors. Returns the pid of the newly made child, or 0.
2128 COMMAND is just for remembering the name of the command; we don't do
2129 anything else with it. ASYNC_P says what to do with the tty. If
2130 non-zero, then don't give it away. */
2132 make_child (command
, flags
)
2136 int async_p
, forksleep
;
2137 sigset_t set
, oset
, termset
, chldset
, oset_copy
;
2141 sigemptyset (&oset_copy
);
2142 sigprocmask (SIG_BLOCK
, (sigset_t
*)NULL
, &oset_copy
);
2143 sigaddset (&oset_copy
, SIGTERM
);
2145 /* Block SIGTERM here and unblock in child after fork resets the
2146 set of pending signals. */
2148 sigaddset (&set
, SIGCHLD
);
2149 sigaddset (&set
, SIGINT
);
2150 sigaddset (&set
, SIGTERM
);
2152 sigemptyset (&oset
);
2153 sigprocmask (SIG_BLOCK
, &set
, &oset
);
2155 /* Blocked in the parent, child will receive it after unblocking SIGTERM */
2156 if (interactive_shell
)
2157 oterm
= set_signal_handler (SIGTERM
, SIG_DFL
);
2161 async_p
= (flags
& FORK_ASYNC
);
2164 #if defined (BUFFERED_INPUT)
2165 /* If default_buffered_input is active, we are reading a script. If
2166 the command is asynchronous, we have already duplicated /dev/null
2167 as fd 0, but have not changed the buffered stream corresponding to
2168 the old fd 0. We don't want to sync the stream in this case. */
2169 if (default_buffered_input
!= -1 &&
2170 (!async_p
|| default_buffered_input
> 0))
2171 sync_buffered_stream (default_buffered_input
);
2172 #endif /* BUFFERED_INPUT */
2174 /* Create the child, handle severe errors. Retry on EAGAIN. */
2175 while ((pid
= fork ()) < 0 && errno
== EAGAIN
&& forksleep
< FORKSLEEP_MAX
)
2178 /* keep SIGTERM blocked until we reset the handler to SIG_IGN */
2179 sigprocmask (SIG_SETMASK
, &oset_copy
, (sigset_t
*)NULL
);
2180 /* If we can't create any children, try to reap some dead ones. */
2183 errno
= EAGAIN
; /* restore errno */
2184 sys_error ("fork: retry");
2186 if (sleep (forksleep
) != 0)
2190 if (interrupt_state
)
2192 sigprocmask (SIG_SETMASK
, &set
, (sigset_t
*)NULL
);
2196 if (interactive_shell
)
2197 set_signal_handler (SIGTERM
, oterm
);
2203 /* Kill all of the processes in the current pipeline. */
2204 terminate_current_pipeline ();
2206 /* Discard the current pipeline, if any. */
2208 kill_current_pipeline ();
2210 set_exit_status (EX_NOEXEC
);
2211 throw_to_top_level (); /* Reset signals, etc. */
2216 /* In the child. Give this child the right process group, set the
2217 signals to the default state for a new process. */
2220 /* If this ends up being changed to modify or use `command' in the
2221 child process, go back and change callers who free `command' in
2222 the child process when this returns. */
2224 #if defined (BUFFERED_INPUT)
2225 /* Close default_buffered_input if it's > 0. We don't close it if it's
2226 0 because that's the file descriptor used when redirecting input,
2227 and it's wrong to close the file in that case. */
2228 unset_bush_input (0);
2229 #endif /* BUFFERED_INPUT */
2231 CLRINTERRUPT
; /* XXX - children have their own interrupt state */
2233 /* Restore top-level signal mask, including unblocking SIGTERM */
2238 /* All processes in this pipeline belong in the same
2241 if (pipeline_pgrp
== 0) /* This is the first child. */
2242 pipeline_pgrp
= mypid
;
2244 /* Check for running command in backquotes. */
2245 if (pipeline_pgrp
== shell_pgrp
)
2246 ignore_tty_job_signals ();
2248 default_tty_job_signals ();
2250 /* Set the process group before trying to mess with the terminal's
2251 process group. This is mandated by POSIX. */
2252 /* This is in accordance with the Posix 1003.1 standard,
2253 section B.7.2.4, which says that trying to set the terminal
2254 process group with tcsetpgrp() to an unused pgrp value (like
2255 this would have for the first child) is an error. Section
2256 B.4.3.3, p. 237 also covers this, in the context of job control
2258 if (setpgid (mypid
, pipeline_pgrp
) < 0)
2259 sys_error (_("child setpgid (%ld to %ld)"), (long)mypid
, (long)pipeline_pgrp
);
2261 /* By convention (and assumption above), if
2262 pipeline_pgrp == shell_pgrp, we are making a child for
2263 command substitution.
2264 In this case, we don't want to give the terminal to the
2265 shell's process group (we could be in the middle of a
2266 pipeline, for example). */
2267 if ((flags
& FORK_NOTERM
) == 0 && async_p
== 0 && pipeline_pgrp
!= shell_pgrp
&& ((subshell_environment
&(SUBSHELL_ASYNC
|SUBSHELL_PIPE
)) == 0) && running_in_background
== 0)
2268 give_terminal_to (pipeline_pgrp
, 0);
2270 #if defined (PGRP_PIPE)
2271 if (pipeline_pgrp
== mypid
)
2272 pipe_read (pgrp_pipe
);
2275 else /* Without job control... */
2277 if (pipeline_pgrp
== 0)
2278 pipeline_pgrp
= shell_pgrp
;
2280 /* If these signals are set to SIG_DFL, we encounter the curious
2281 situation of an interactive ^Z to a running process *working*
2282 and stopping the process, but being unable to do anything with
2283 that process to change its state. On the other hand, if they
2284 are set to SIG_IGN, jobs started from scripts do not stop when
2285 the shell running the script gets a SIGTSTP and stops. */
2287 default_tty_job_signals ();
2290 #if defined (PGRP_PIPE)
2291 /* Release the process group pipe, since our call to setpgid ()
2292 is done. The last call to sh_closepipe is done in stop_pipeline. */
2293 sh_closepipe (pgrp_pipe
);
2294 #endif /* PGRP_PIPE */
2296 /* Don't set last_asynchronous_pid in the child */
2298 #if defined (RECYCLES_PIDS)
2299 if (last_asynchronous_pid
== mypid
)
2300 /* Avoid pid aliasing. 1 seems like a safe, unusual pid value. */
2301 last_asynchronous_pid
= 1;
2306 /* In the parent. Remember the pid of the child just created
2307 as the proper pgrp if this is the first child. */
2311 if (pipeline_pgrp
== 0)
2313 pipeline_pgrp
= pid
;
2314 /* Don't twiddle terminal pgrps in the parent! This is the bug,
2315 not the good thing of twiddling them in the child! */
2316 /* give_terminal_to (pipeline_pgrp, 0); */
2318 /* This is done on the recommendation of the Rationale section of
2319 the POSIX 1003.1 standard, where it discusses job control and
2320 shells. It is done to avoid possible race conditions. (Ref.
2321 1003.1 Rationale, section B.4.3.3, page 236). */
2322 setpgid (pid
, pipeline_pgrp
);
2326 if (pipeline_pgrp
== 0)
2327 pipeline_pgrp
= shell_pgrp
;
2330 /* Place all processes into the jobs array regardless of the
2331 state of job_control. */
2332 add_process (command
, pid
);
2335 last_asynchronous_pid
= pid
;
2336 #if defined (RECYCLES_PIDS)
2337 else if (last_asynchronous_pid
== pid
)
2338 /* Avoid pid aliasing. 1 seems like a safe, unusual pid value. */
2339 last_asynchronous_pid
= 1;
2342 /* Delete the saved status for any job containing this PID in case it's
2344 delete_old_job (pid
);
2346 /* Perform the check for pid reuse unconditionally. Some systems reuse
2347 PIDs before giving a process CHILD_MAX/_SC_CHILD_MAX unique ones. */
2348 bgp_delete (pid
); /* new process, discard any saved status */
2350 last_made_pid
= pid
;
2356 /* Unblock SIGTERM, SIGINT, and SIGCHLD unless creating a pipeline, in
2357 which case SIGCHLD remains blocked until all commands in the pipeline
2358 have been created (execute_cmd.c:execute_pipeline()). */
2359 sigprocmask (SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
2365 /* These two functions are called only in child processes. */
2367 ignore_tty_job_signals ()
2369 set_signal_handler (SIGTSTP
, SIG_IGN
);
2370 set_signal_handler (SIGTTIN
, SIG_IGN
);
2371 set_signal_handler (SIGTTOU
, SIG_IGN
);
2374 /* Reset the tty-generated job control signals to SIG_DFL unless that signal
2375 was ignored at entry to the shell, in which case we need to set it to
2376 SIG_IGN in the child. We can't rely on resetting traps, since the hard
2377 ignored signals can't be trapped. */
2379 default_tty_job_signals ()
2381 if (signal_is_trapped (SIGTSTP
) == 0 && signal_is_hard_ignored (SIGTSTP
))
2382 set_signal_handler (SIGTSTP
, SIG_IGN
);
2384 set_signal_handler (SIGTSTP
, SIG_DFL
);
2386 if (signal_is_trapped (SIGTTIN
) == 0 && signal_is_hard_ignored (SIGTTIN
))
2387 set_signal_handler (SIGTTIN
, SIG_IGN
);
2389 set_signal_handler (SIGTTIN
, SIG_DFL
);
2391 if (signal_is_trapped (SIGTTOU
) == 0 && signal_is_hard_ignored (SIGTTOU
))
2392 set_signal_handler (SIGTTOU
, SIG_IGN
);
2394 set_signal_handler (SIGTTOU
, SIG_DFL
);
2397 /* Called once in a parent process. */
2399 get_original_tty_job_signals ()
2401 static int fetched
= 0;
2405 if (interactive_shell
)
2407 set_original_signal (SIGTSTP
, SIG_DFL
);
2408 set_original_signal (SIGTTIN
, SIG_DFL
);
2409 set_original_signal (SIGTTOU
, SIG_DFL
);
2413 get_original_signal (SIGTSTP
);
2414 get_original_signal (SIGTTIN
);
2415 get_original_signal (SIGTTOU
);
2421 /* When we end a job abnormally, or if we stop a job, we set the tty to the
2422 state kept in here. When a job ends normally, we set the state in here
2423 to the state of the tty. */
2425 static TTYSTRUCT shell_tty_info
;
2427 #if defined (NEW_TTY_DRIVER)
2428 static struct tchars shell_tchars
;
2429 static struct ltchars shell_ltchars
;
2430 #endif /* NEW_TTY_DRIVER */
2432 #if defined (NEW_TTY_DRIVER) && defined (DRAIN_OUTPUT)
2433 /* Since the BSD tty driver does not allow us to change the tty modes
2434 while simultaneously waiting for output to drain and preserving
2435 typeahead, we have to drain the output ourselves before calling
2436 ioctl. We cheat by finding the length of the output queue, and
2437 using select to wait for an appropriate length of time. This is
2438 a hack, and should be labeled as such (it's a hastily-adapted
2439 mutation of a `usleep' implementation). It's only reason for
2440 existing is the flaw in the BSD tty driver. */
2442 static int ttspeeds
[] =
2444 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
2445 1800, 2400, 4800, 9600, 19200, 38400
2452 register int delay
= ttspeeds
[ospeed
];
2458 while ((ioctl (fd
, TIOCOUTQ
, &n
) == 0) && n
)
2460 if (n
> (delay
/ 100))
2464 n
*= 10; /* 2 bits more for conservativeness. */
2465 tv
.tv_sec
= n
/ delay
;
2466 tv
.tv_usec
= ((n
% delay
) * 1000000) / delay
;
2467 select (fd
, (fd_set
*)0, (fd_set
*)0, (fd_set
*)0, &tv
);
2473 #endif /* NEW_TTY_DRIVER && DRAIN_OUTPUT */
2475 /* Return the fd from which we are actually getting input. */
2476 #define input_tty() (shell_tty != -1) ? shell_tty : fileno (stderr)
2478 /* Fill the contents of shell_tty_info with the current tty info. */
2487 #if defined (NEW_TTY_DRIVER)
2488 ioctl (tty
, TIOCGETP
, &shell_tty_info
);
2489 ioctl (tty
, TIOCGETC
, &shell_tchars
);
2490 ioctl (tty
, TIOCGLTC
, &shell_ltchars
);
2491 #endif /* NEW_TTY_DRIVER */
2493 #if defined (TERMIO_TTY_DRIVER)
2494 ioctl (tty
, TCGETA
, &shell_tty_info
);
2495 #endif /* TERMIO_TTY_DRIVER */
2497 #if defined (TERMIOS_TTY_DRIVER)
2498 if (tcgetattr (tty
, &shell_tty_info
) < 0)
2501 /* Only print an error message if we're really interactive at
2504 sys_error ("[%ld: %d (%d)] tcgetattr", (long)getpid (), shell_level
, tty
);
2508 #endif /* TERMIOS_TTY_DRIVER */
2509 if (check_window_size
)
2510 get_new_window_size (0, (int *)0, (int *)0);
2515 /* Make the current tty use the state in shell_tty_info. */
2524 #if defined (NEW_TTY_DRIVER)
2525 # if defined (DRAIN_OUTPUT)
2526 draino (tty
, shell_tty_info
.sg_ospeed
);
2527 # endif /* DRAIN_OUTPUT */
2528 ioctl (tty
, TIOCSETN
, &shell_tty_info
);
2529 ioctl (tty
, TIOCSETC
, &shell_tchars
);
2530 ioctl (tty
, TIOCSLTC
, &shell_ltchars
);
2531 #endif /* NEW_TTY_DRIVER */
2533 #if defined (TERMIO_TTY_DRIVER)
2534 ioctl (tty
, TCSETAW
, &shell_tty_info
);
2535 #endif /* TERMIO_TTY_DRIVER */
2537 #if defined (TERMIOS_TTY_DRIVER)
2538 if (tcsetattr (tty
, TCSADRAIN
, &shell_tty_info
) < 0)
2540 /* Only print an error message if we're really interactive at
2543 sys_error ("[%ld: %d (%d)] tcsetattr", (long)getpid (), shell_level
, tty
);
2546 #endif /* TERMIOS_TTY_DRIVER */
2551 /* Given an index into the jobs array JOB, return the PROCESS struct of the last
2552 process in that job's pipeline. This is the one whose exit status
2553 counts. Must be called with SIGCHLD blocked or queued. */
2555 find_last_proc (job
, block
)
2559 register PROCESS
*p
;
2563 BLOCK_CHILD (set
, oset
);
2565 p
= jobs
[job
]->pipe
;
2566 while (p
&& p
->next
!= jobs
[job
]->pipe
)
2570 UNBLOCK_CHILD (oset
);
2576 find_last_pid (job
, block
)
2582 p
= find_last_proc (job
, block
);
2583 /* Possible race condition here. */
2587 /* Wait for a particular child of the shell to finish executing.
2588 This low-level function prints an error message if PID is not
2589 a child of this shell. It returns -1 if it fails, or whatever
2590 wait_for returns otherwise. If the child is not found in the
2591 jobs table, it returns 127. If FLAGS doesn't include JWAIT_PERROR,
2592 we suppress the error message if PID isn't found. */
2595 wait_for_single_pid (pid
, flags
)
2599 register PROCESS
*child
;
2603 BLOCK_CHILD (set
, oset
);
2604 child
= find_pipeline (pid
, 0, (int *)NULL
);
2605 UNBLOCK_CHILD (oset
);
2609 r
= bgp_search (pid
);
2616 if (flags
& JWAIT_PERROR
)
2617 internal_error (_("wait: pid %ld is not a child of this shell"), (long)pid
);
2624 r
= wait_for (pid
, 0);
2625 if ((flags
& JWAIT_FORCE
) == 0)
2628 BLOCK_CHILD (set
, oset
);
2629 alive
= PALIVE (child
);
2630 UNBLOCK_CHILD (oset
);
2634 /* POSIX.2: if we just waited for a job, we can remove it from the jobs
2636 BLOCK_CHILD (set
, oset
);
2637 job
= find_job (pid
, 0, NULL
);
2638 if (job
!= NO_JOB
&& jobs
[job
] && DEADJOB (job
))
2639 jobs
[job
]->flags
|= J_NOTIFIED
;
2640 UNBLOCK_CHILD (oset
);
2642 /* If running in posix mode, remove the job from the jobs table immediately */
2643 if (posixly_correct
)
2645 cleanup_dead_jobs ();
2649 /* Check for a trapped signal interrupting the wait builtin and jump out */
2655 /* Wait for all of the background processes started by this shell to finish. */
2657 wait_for_background_pids (ps
)
2658 struct procstat
*ps
;
2661 int any_stopped
, check_async
;
2665 for (any_stopped
= 0, check_async
= 1;;)
2667 BLOCK_CHILD (set
, oset
);
2669 /* find first running job; if none running in foreground, break */
2670 /* XXX could use js.j_firstj and js.j_lastj here */
2671 for (i
= 0; i
< js
.j_jobslots
; i
++)
2674 if (i
< js
.j_firstj
&& jobs
[i
])
2675 itrace("wait_for_background_pids: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
2676 if (i
> js
.j_lastj
&& jobs
[i
])
2677 itrace("wait_for_background_pids: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
2679 if (jobs
[i
] && STOPPED (i
))
2681 builtin_warning ("job %d[%d] stopped", i
+1, find_last_pid (i
, 0));
2685 if (jobs
[i
] && RUNNING (i
) && IS_FOREGROUND (i
) == 0)
2688 if (i
== js
.j_jobslots
)
2690 UNBLOCK_CHILD (oset
);
2694 /* now wait for the last pid in that job. */
2695 pid
= find_last_pid (i
, 0);
2696 UNBLOCK_CHILD (oset
);
2698 errno
= 0; /* XXX */
2699 r
= wait_for_single_pid (pid
, JWAIT_PERROR
);
2703 ps
->status
= (r
< 0) ? 127 : r
;
2705 if (r
== -1 && errno
== ECHILD
)
2707 /* If we're mistaken about job state, compensate. */
2709 mark_all_jobs_as_dead ();
2713 #if defined (PROCESS_SUBSTITUTION)
2717 /* POSIX.2 says the shell can discard the statuses of all completed jobs if
2718 `wait' is called with no arguments. */
2719 mark_dead_jobs_as_notified (1);
2720 cleanup_dead_jobs ();
2724 /* Make OLD_SIGINT_HANDLER the SIGINT signal handler. */
2725 #define INVALID_SIGNAL_HANDLER (SigHandler *)wait_for_background_pids
2726 static SigHandler
*old_sigint_handler
= INVALID_SIGNAL_HANDLER
;
2728 static int wait_sigint_received
;
2729 static int child_caught_sigint
;
2731 int waiting_for_child
;
2733 /* Clean up state after longjmp to wait_intr_buf */
2735 wait_sigint_cleanup ()
2738 waiting_for_child
= 0;
2742 restore_sigint_handler ()
2744 if (old_sigint_handler
!= INVALID_SIGNAL_HANDLER
)
2746 set_signal_handler (SIGINT
, old_sigint_handler
);
2747 old_sigint_handler
= INVALID_SIGNAL_HANDLER
;
2748 waiting_for_child
= 0;
2752 /* Handle SIGINT while we are waiting for children in a script to exit.
2753 The `wait' builtin should be interruptible, but all others should be
2754 effectively ignored (i.e. not cause the shell to exit). */
2756 wait_sigint_handler (sig
)
2759 SigHandler
*sigint_handler
;
2761 if (this_shell_builtin
&& this_shell_builtin
== wait_builtin
)
2763 set_exit_status (128+SIGINT
);
2764 restore_sigint_handler ();
2765 /* If we got a SIGINT while in `wait', and SIGINT is trapped, do
2766 what POSIX.2 says (see builtins/wait.def for more info). */
2767 if (this_shell_builtin
&& this_shell_builtin
== wait_builtin
&&
2768 signal_is_trapped (SIGINT
) &&
2769 ((sigint_handler
= trap_to_sighandler (SIGINT
)) == trap_handler
))
2771 trap_handler (SIGINT
); /* set pending_traps[SIGINT] */
2772 wait_signal_received
= SIGINT
;
2774 sh_longjmp (wait_intr_buf
, 1);
2776 /* Let CHECK_WAIT_INTR handle it in wait_for/waitchld */
2779 else /* wait_builtin but signal not trapped, treat as interrupt */
2780 kill (getpid (), SIGINT
);
2783 /* XXX - should this be interrupt_state? If it is, the shell will act
2784 as if it got the SIGINT interrupt. */
2785 if (waiting_for_child
)
2786 wait_sigint_received
= 1;
2789 set_exit_status (128+SIGINT
);
2790 restore_sigint_handler ();
2791 kill (getpid (), SIGINT
);
2794 /* Otherwise effectively ignore the SIGINT and allow the running job to
2800 process_exit_signal (status
)
2803 return (WIFSIGNALED (status
) ? WTERMSIG (status
) : 0);
2807 process_exit_status (status
)
2810 if (WIFSIGNALED (status
))
2811 return (128 + WTERMSIG (status
));
2812 else if (WIFSTOPPED (status
) == 0)
2813 return (WEXITSTATUS (status
));
2815 return (EXECUTION_SUCCESS
);
2819 job_signal_status (job
)
2822 register PROCESS
*p
;
2825 p
= jobs
[job
]->pipe
;
2829 if (WIFSIGNALED(s
) || WIFSTOPPED(s
))
2833 while (p
!= jobs
[job
]->pipe
);
2838 /* Return the exit status of the last process in the pipeline for job JOB.
2839 This is the exit status of the entire job. */
2841 raw_job_exit_status (job
)
2844 register PROCESS
*p
;
2848 if (jobs
[job
]->flags
& J_PIPEFAIL
)
2851 p
= jobs
[job
]->pipe
;
2854 if (WSTATUS (p
->status
) != EXECUTION_SUCCESS
)
2855 fail
= WSTATUS(p
->status
);
2858 while (p
!= jobs
[job
]->pipe
);
2859 WSTATUS (ret
) = fail
;
2863 for (p
= jobs
[job
]->pipe
; p
->next
!= jobs
[job
]->pipe
; p
= p
->next
)
2868 /* Return the exit status of job JOB. This is the exit status of the last
2869 (rightmost) process in the job's pipeline, modified if the job was killed
2870 by a signal or stopped. */
2872 job_exit_status (job
)
2875 return (process_exit_status (raw_job_exit_status (job
)));
2879 job_exit_signal (job
)
2882 return (process_exit_signal (raw_job_exit_status (job
)));
2885 #define FIND_CHILD(pid, child) \
2888 child = find_pipeline (pid, 0, (int *)NULL); \
2891 give_terminal_to (shell_pgrp, 0); \
2892 UNBLOCK_CHILD (oset); \
2893 internal_error (_("wait_for: No record of process %ld"), (long)pid); \
2894 restore_sigint_handler (); \
2895 return (termination_state = 127); \
2900 /* Wait for pid (one of our children) to terminate, then
2901 return the termination state. Returns 127 if PID is not found in
2902 the jobs table. Returns -1 if waitchld() returns -1, indicating
2903 that there are no unwaited-for child processes. */
2905 wait_for (pid
, flags
)
2909 int job
, termination_state
, r
;
2911 register PROCESS
*child
;
2914 /* In the case that this code is interrupted, and we longjmp () out of it,
2915 we are relying on the code in throw_to_top_level () to restore the
2916 top-level signal mask. */
2918 BLOCK_CHILD (set
, oset
);
2920 /* Ignore interrupts while waiting for a job run without job control
2921 to finish. We don't want the shell to exit if an interrupt is
2922 received, only if one of the jobs run is killed via SIGINT. If
2923 job control is not set, the job will be run in the same pgrp as
2924 the shell, and the shell will see any signals the job gets. In
2925 fact, we want this set every time the waiting shell and the waited-
2926 for process are in the same process group, including command
2929 /* This is possibly a race condition -- should it go in stop_pipeline? */
2930 wait_sigint_received
= child_caught_sigint
= 0;
2931 if (job_control
== 0 || (subshell_environment
&SUBSHELL_COMSUB
))
2933 SigHandler
*temp_sigint_handler
;
2935 temp_sigint_handler
= set_signal_handler (SIGINT
, wait_sigint_handler
);
2936 if (temp_sigint_handler
== wait_sigint_handler
)
2939 internal_warning ("wait_for: recursively setting old_sigint_handler to wait_sigint_handler: running_trap = %d", running_trap
);
2943 old_sigint_handler
= temp_sigint_handler
;
2944 waiting_for_child
= 0;
2945 if (old_sigint_handler
== SIG_IGN
)
2946 set_signal_handler (SIGINT
, old_sigint_handler
);
2949 termination_state
= last_command_exit_value
;
2951 if (interactive
&& job_control
== 0)
2953 /* Check for terminating signals and exit the shell if we receive one */
2956 /* Check for a trapped signal interrupting the wait builtin and jump out */
2959 /* If we say wait_for (), then we have a record of this child somewhere.
2960 If it and none of its peers are running, don't call waitchld(). */
2966 FIND_CHILD (pid
, child
);
2968 /* If this child is part of a job, then we are really waiting for the
2969 job to finish. Otherwise, we are waiting for the child to finish.
2970 We check for JDEAD in case the job state has been set by waitchld
2971 after receipt of a SIGCHLD. */
2972 if (job
== NO_JOB
&& pid
!= ANY_PID
) /* XXX -- && pid != ANY_PID ? */
2973 job
= find_job (pid
, 0, NULL
);
2975 /* waitchld() takes care of setting the state of the job. If the job
2976 has already exited before this is called, sigchld_handler will have
2977 called waitchld and the state will be set to JDEAD. */
2979 if (pid
== ANY_PID
|| PRUNNING(child
) || (job
!= NO_JOB
&& RUNNING (job
)))
2984 old_waiting
= waiting_for_child
;
2985 waiting_for_child
= 1;
2986 /* XXX - probably not strictly necessary but we want to catch
2987 everything that happened before we switch the behavior of
2988 trap_handler to longjmp on a trapped signal (waiting_for_child) */
2990 r
= waitchld (pid
, 1); /* XXX */
2991 waiting_for_child
= old_waiting
;
2993 itrace("wait_for: blocking wait for %d returns %d child = %p", (int)pid
, r
, child
);
2996 if (r
== -1 && errno
== ECHILD
&& this_shell_builtin
== wait_builtin
)
2998 termination_state
= -1;
2999 /* XXX - restore sigint handler here */
3000 restore_sigint_handler ();
3001 goto wait_for_return
;
3004 /* If child is marked as running, but waitpid() returns -1/ECHILD,
3005 there is something wrong. Somewhere, wait should have returned
3006 that child's pid. Mark the child as not running and the job,
3007 if it exists, as JDEAD. */
3008 if (r
== -1 && errno
== ECHILD
)
3012 child
->running
= PS_DONE
;
3013 WSTATUS (child
->status
) = 0; /* XXX -- can't find true status */
3015 js
.c_living
= 0; /* no living child processes */
3018 jobs
[job
]->state
= JDEAD
;
3024 termination_state
= -1;
3030 /* If the shell is interactive, and job control is disabled, see
3031 if the foreground process has died due to SIGINT and jump out
3032 of the wait loop if it has. waitchld has already restored the
3033 old SIGINT signal handler. */
3034 if (interactive
&& job_control
== 0)
3036 /* Check for terminating signals and exit the shell if we receive one */
3039 /* Check for a trapped signal interrupting the wait builtin and jump out */
3044 /* XXX - could set child but we don't have a handle on what waitchld
3045 reaps. Leave termination_state alone. */
3046 restore_sigint_handler ();
3047 goto wait_for_return
;
3050 while (PRUNNING (child
) || (job
!= NO_JOB
&& RUNNING (job
)));
3052 /* Restore the original SIGINT signal handler before we return. */
3053 restore_sigint_handler ();
3055 /* The exit state of the command is either the termination state of the
3056 child, or the termination state of the job. If a job, the status
3057 of the last child in the pipeline is the significant one. If the command
3058 or job was terminated by a signal, note that value also. */
3059 termination_state
= (job
!= NO_JOB
) ? job_exit_status (job
)
3060 : (child
? process_exit_status (child
->status
) : EXECUTION_SUCCESS
);
3061 last_command_exit_signal
= (job
!= NO_JOB
) ? job_exit_signal (job
)
3062 : (child
? process_exit_signal (child
->status
) : 0);
3065 if ((job
!= NO_JOB
&& JOBSTATE (job
) == JSTOPPED
) || (child
&& WIFSTOPPED (child
->status
)))
3066 termination_state
= 128 + WSTOPSIG (child
->status
);
3068 if (job
== NO_JOB
|| IS_JOBCONTROL (job
))
3070 /* XXX - under what circumstances is a job not present in the jobs
3071 table (job == NO_JOB)?
3072 1. command substitution
3074 In the case of command substitution, at least, it's probably not
3075 the right thing to give the terminal to the shell's process group,
3076 even though there is code in subst.c:command_substitute to work
3080 $PROMPT_COMMAND execution
3081 process substitution
3085 itrace("wait_for: job == NO_JOB, giving the terminal to shell_pgrp (%ld)", (long)shell_pgrp
);
3087 /* Don't modify terminal pgrp if we are running in background or a
3088 subshell. Make sure subst.c:command_substitute uses the same
3089 conditions to determine whether or not it should undo this and
3090 give the terminal to pipeline_pgrp. */
3092 if ((flags
& JWAIT_NOTERM
) == 0 && running_in_background
== 0 &&
3093 (subshell_environment
& (SUBSHELL_ASYNC
|SUBSHELL_PIPE
)) == 0)
3094 give_terminal_to (shell_pgrp
, 0);
3097 /* If the command did not exit cleanly, or the job is just
3098 being stopped, then reset the tty state back to what it
3099 was before this command. Reset the tty state and notify
3100 the user of the job termination only if the shell is
3101 interactive. Clean up any dead jobs in either case. */
3104 if (interactive_shell
&& subshell_environment
== 0)
3106 /* This used to use `child->status'. That's wrong, however, for
3107 pipelines. `child' is the first process in the pipeline. It's
3108 likely that the process we want to check for abnormal termination
3109 or stopping is the last process in the pipeline, especially if
3110 it's long-lived and the first process is short-lived. Since we
3111 know we have a job here, we can check all the processes in this
3112 job's pipeline and see if one of them stopped or terminated due
3113 to a signal. We might want to change this later to just check
3114 the last process in the pipeline. If no process exits due to a
3115 signal, S is left as the status of the last job in the pipeline. */
3116 s
= job_signal_status (job
);
3118 if (WIFSIGNALED (s
) || WIFSTOPPED (s
))
3122 /* If the current job was stopped or killed by a signal, and
3123 the user has requested it, get a possibly new window size */
3124 if (check_window_size
&& (job
== js
.j_current
|| IS_FOREGROUND (job
)))
3125 get_new_window_size (0, (int *)0, (int *)0);
3128 #if defined (READLINE)
3129 /* We don't want to do this if we are running a process during
3130 programmable completion. */
3131 if (RL_ISSTATE (RL_STATE_COMPLETING
) == 0)
3135 /* If job control is enabled, the job was started with job
3136 control, the job was the foreground job, and it was killed
3137 by SIGINT, then print a newline to compensate for the kernel
3138 printing the ^C without a trailing newline. */
3139 if (job_control
&& IS_JOBCONTROL (job
) && IS_FOREGROUND (job
) &&
3140 WIFSIGNALED (s
) && WTERMSIG (s
) == SIGINT
)
3142 /* If SIGINT is not trapped and the shell is in a for, while,
3143 or until loop, act as if the shell received SIGINT as
3144 well, so the loop can be broken. This doesn't call the
3145 SIGINT signal handler; maybe it should. */
3146 if (signal_is_trapped (SIGINT
) == 0 && (loop_level
|| (shell_compatibility_level
> 32 && executing_list
)))
3148 /* Call any SIGINT trap handler if the shell is running a loop, so
3149 the loop can be broken. This seems more useful and matches the
3150 behavior when the shell is running a builtin command in a loop
3151 when it is interrupted. Change ADDINTERRUPT to
3152 trap_handler (SIGINT) to run the trap without interrupting the
3154 else if (signal_is_trapped (SIGINT
) && loop_level
)
3156 /* If an interactive shell with job control enabled is sourcing
3157 a file, allow the interrupt to terminate the file sourcing. */
3158 else if (interactive_shell
&& signal_is_trapped (SIGINT
) == 0 && sourcelevel
)
3167 else if ((subshell_environment
& (SUBSHELL_COMSUB
|SUBSHELL_PIPE
)) && wait_sigint_received
)
3169 /* If waiting for a job in a subshell started to do command
3170 substitution or to run a pipeline element that consists of
3171 something like a while loop or a for loop, simulate getting
3172 and being killed by the SIGINT to pass the status back to our
3174 if (child_caught_sigint
== 0 && signal_is_trapped (SIGINT
) == 0)
3176 UNBLOCK_CHILD (oset
);
3177 old_sigint_handler
= set_signal_handler (SIGINT
, SIG_DFL
);
3178 if (old_sigint_handler
== SIG_IGN
)
3179 restore_sigint_handler ();
3181 kill (getpid (), SIGINT
);
3184 else if (interactive_shell
== 0 && subshell_environment
== 0 && IS_FOREGROUND (job
))
3186 s
= job_signal_status (job
);
3188 /* If we are non-interactive, but job control is enabled, and the job
3189 died due to SIGINT, pretend we got the SIGINT */
3190 if (job_control
&& IS_JOBCONTROL (job
) && WIFSIGNALED (s
) && WTERMSIG (s
) == SIGINT
)
3192 ADDINTERRUPT
; /* For now */
3195 if (check_window_size
)
3196 get_new_window_size (0, (int *)0, (int *)0);
3199 /* Moved here from set_job_status_and_cleanup, which is in the SIGCHLD
3200 signal handler path */
3201 if (DEADJOB (job
) && IS_FOREGROUND (job
) /*&& subshell_environment == 0*/)
3204 /* If this job is dead, notify the user of the status. If the shell
3205 is interactive, this will display a message on the terminal. If
3206 the shell is not interactive, make sure we turn on the notify bit
3207 so we don't get an unwanted message about the job's termination,
3208 and so delete_job really clears the slot in the jobs table. */
3209 notify_and_cleanup ();
3214 UNBLOCK_CHILD (oset
);
3216 return (termination_state
);
3219 /* Wait for the last process in the pipeline for JOB. Returns whatever
3220 wait_for returns: the last process's termination state or -1 if there
3221 are no unwaited-for child processes or an error occurs. If FLAGS
3222 includes JWAIT_FORCE, we wait for the job to terminate, no just change
3225 wait_for_job (job
, flags
, ps
)
3227 struct procstat
*ps
;
3233 BLOCK_CHILD(set
, oset
);
3234 state
= JOBSTATE (job
);
3235 if (state
== JSTOPPED
)
3236 internal_warning (_("wait_for_job: job %d is stopped"), job
+1);
3238 pid
= find_last_pid (job
, 0);
3239 UNBLOCK_CHILD(oset
);
3243 r
= wait_for (pid
, 0);
3244 if (r
== -1 && errno
== ECHILD
)
3245 mark_all_jobs_as_dead ();
3249 if ((flags
& JWAIT_FORCE
) == 0)
3252 BLOCK_CHILD (set
, oset
);
3253 state
= (job
!= NO_JOB
&& jobs
[job
]) ? JOBSTATE (job
) : JDEAD
;
3254 UNBLOCK_CHILD (oset
);
3256 while (state
!= JDEAD
);
3258 /* POSIX.2: we can remove the job from the jobs table if we just waited
3260 BLOCK_CHILD (set
, oset
);
3261 if (job
!= NO_JOB
&& jobs
[job
] && DEADJOB (job
))
3262 jobs
[job
]->flags
|= J_NOTIFIED
;
3263 UNBLOCK_CHILD (oset
);
3268 ps
->status
= (r
< 0) ? 127 : r
;
3273 /* Wait for any background job started by this shell to finish. Very
3274 similar to wait_for_background_pids(). Returns the exit status of
3275 the next exiting job, -1 if there are no background jobs. The caller
3276 is responsible for translating -1 into the right return value. RPID,
3277 if non-null, gets the pid of the job's process leader. */
3279 wait_for_any_job (flags
, ps
)
3281 struct procstat
*ps
;
3287 if (jobs_list_frozen
)
3290 /* First see if there are any unnotified dead jobs that we can report on */
3291 BLOCK_CHILD (set
, oset
);
3292 for (i
= 0; i
< js
.j_jobslots
; i
++)
3294 if ((flags
& JWAIT_WAITING
) && jobs
[i
] && IS_WAITING (i
) == 0)
3295 continue; /* if we don't want it, skip it */
3296 if (jobs
[i
] && DEADJOB (i
) && IS_NOTIFIED (i
) == 0)
3299 r
= job_exit_status (i
);
3300 pid
= find_last_pid (i
, 0);
3306 notify_of_job_status (); /* XXX */
3308 #if defined (COPROCESS_SUPPORT)
3311 UNBLOCK_CHILD (oset
);
3315 UNBLOCK_CHILD (oset
);
3317 /* At this point, we have no dead jobs in the jobs table. Wait until we
3318 get one, even if it takes multiple pids exiting. */
3321 /* Make sure there is a background job to wait for */
3322 BLOCK_CHILD (set
, oset
);
3323 for (i
= 0; i
< js
.j_jobslots
; i
++)
3324 if (jobs
[i
] && RUNNING (i
) && IS_FOREGROUND (i
) == 0)
3326 if (i
== js
.j_jobslots
)
3328 UNBLOCK_CHILD (oset
);
3332 UNBLOCK_CHILD (oset
);
3339 r
= wait_for (ANY_PID
, 0); /* special sentinel value for wait_for */
3340 if (r
== -1 && errno
== ECHILD
)
3341 mark_all_jobs_as_dead ();
3343 /* Now we see if we have any dead jobs and return the first one */
3344 BLOCK_CHILD (set
, oset
);
3345 for (i
= 0; i
< js
.j_jobslots
; i
++)
3347 if ((flags
& JWAIT_WAITING
) && jobs
[i
] && IS_WAITING (i
) == 0)
3348 continue; /* if we don't want it, skip it */
3349 if (jobs
[i
] && DEADJOB (i
))
3352 UNBLOCK_CHILD (oset
);
3358 /* Print info about dead jobs, and then delete them from the list
3359 of known jobs. This does not actually delete jobs when the
3360 shell is not interactive, because the dead jobs are not marked
3363 notify_and_cleanup ()
3365 if (jobs_list_frozen
)
3368 if (interactive
|| interactive_shell
== 0 || sourcelevel
)
3369 notify_of_job_status ();
3371 cleanup_dead_jobs ();
3374 /* Make dead jobs disappear from the jobs array without notification.
3375 This is used when the shell is not interactive. */
3379 mark_dead_jobs_as_notified (0);
3380 cleanup_dead_jobs ();
3383 /* Return the next closest (chronologically) job to JOB which is in
3384 STATE. STATE can be JSTOPPED, JRUNNING. NO_JOB is returned if
3385 there is no next recent job. */
3387 most_recent_job_in_state (job
, state
)
3391 register int i
, result
;
3394 BLOCK_CHILD (set
, oset
);
3396 for (result
= NO_JOB
, i
= job
- 1; i
>= 0; i
--)
3398 if (jobs
[i
] && (JOBSTATE (i
) == state
))
3405 UNBLOCK_CHILD (oset
);
3410 /* Return the newest *stopped* job older than JOB, or NO_JOB if not
3413 job_last_stopped (job
)
3416 return (most_recent_job_in_state (job
, JSTOPPED
));
3419 /* Return the newest *running* job older than JOB, or NO_JOB if not
3422 job_last_running (job
)
3425 return (most_recent_job_in_state (job
, JRUNNING
));
3428 /* Make JOB be the current job, and make previous be useful. Must be
3429 called with SIGCHLD blocked. */
3431 set_current_job (job
)
3436 if (js
.j_current
!= job
)
3438 js
.j_previous
= js
.j_current
;
3442 /* First choice for previous job is the old current job. */
3443 if (js
.j_previous
!= js
.j_current
&&
3444 js
.j_previous
!= NO_JOB
&&
3445 jobs
[js
.j_previous
] &&
3446 STOPPED (js
.j_previous
))
3449 /* Second choice: Newest stopped job that is older than
3452 if (STOPPED (js
.j_current
))
3454 candidate
= job_last_stopped (js
.j_current
);
3456 if (candidate
!= NO_JOB
)
3458 js
.j_previous
= candidate
;
3463 /* If we get here, there is either only one stopped job, in which case it is
3464 the current job and the previous job should be set to the newest running
3465 job, or there are only running jobs and the previous job should be set to
3466 the newest running job older than the current job. We decide on which
3467 alternative to use based on whether or not JOBSTATE(js.j_current) is
3470 candidate
= RUNNING (js
.j_current
) ? job_last_running (js
.j_current
)
3471 : job_last_running (js
.j_jobslots
);
3473 if (candidate
!= NO_JOB
)
3475 js
.j_previous
= candidate
;
3479 /* There is only a single job, and it is both `+' and `-'. */
3480 js
.j_previous
= js
.j_current
;
3483 /* Make current_job be something useful, if it isn't already. */
3485 /* Here's the deal: The newest non-running job should be `+', and the
3486 next-newest non-running job should be `-'. If there is only a single
3487 stopped job, the js.j_previous is the newest non-running job. If there
3488 are only running jobs, the newest running job is `+' and the
3489 next-newest running job is `-'. Must be called with SIGCHLD blocked. */
3496 if (js
.j_jobslots
&& js
.j_current
!= NO_JOB
&& jobs
[js
.j_current
] && STOPPED (js
.j_current
))
3497 candidate
= js
.j_current
;
3502 /* First choice: the previous job. */
3503 if (js
.j_previous
!= NO_JOB
&& jobs
[js
.j_previous
] && STOPPED (js
.j_previous
))
3504 candidate
= js
.j_previous
;
3506 /* Second choice: the most recently stopped job. */
3507 if (candidate
== NO_JOB
)
3508 candidate
= job_last_stopped (js
.j_jobslots
);
3510 /* Third choice: the newest running job. */
3511 if (candidate
== NO_JOB
)
3512 candidate
= job_last_running (js
.j_jobslots
);
3515 /* If we found a job to use, then use it. Otherwise, there
3516 are no jobs period. */
3517 if (candidate
!= NO_JOB
)
3518 set_current_job (candidate
);
3520 js
.j_current
= js
.j_previous
= NO_JOB
;
3523 /* Set up the job structures so we know the job and its processes are
3526 set_job_running (job
)
3529 register PROCESS
*p
;
3531 /* Each member of the pipeline is now running. */
3532 p
= jobs
[job
]->pipe
;
3536 if (WIFSTOPPED (p
->status
))
3537 p
->running
= PS_RUNNING
; /* XXX - could be PS_STOPPED */
3540 while (p
!= jobs
[job
]->pipe
);
3542 /* This means that the job is running. */
3543 JOBSTATE (job
) = JRUNNING
;
3546 /* Start a job. FOREGROUND if non-zero says to do that. Otherwise,
3547 start the job in the background. JOB is a zero-based index into
3548 JOBS. Returns -1 if it is unable to start a job, and the return
3549 status of the job otherwise. */
3551 start_job (job
, foreground
)
3552 int job
, foreground
;
3554 register PROCESS
*p
;
3555 int already_running
;
3558 static TTYSTRUCT save_stty
;
3560 BLOCK_CHILD (set
, oset
);
3562 if ((subshell_environment
& SUBSHELL_COMSUB
) && (pipeline_pgrp
== shell_pgrp
))
3564 internal_error (_("%s: no current jobs"), this_command_name
);
3565 UNBLOCK_CHILD (oset
);
3571 internal_error (_("%s: job has terminated"), this_command_name
);
3572 UNBLOCK_CHILD (oset
);
3576 already_running
= RUNNING (job
);
3578 if (foreground
== 0 && already_running
)
3580 internal_error (_("%s: job %d already in background"), this_command_name
, job
+ 1);
3581 UNBLOCK_CHILD (oset
);
3582 return (0); /* XPG6/SUSv3 says this is not an error */
3585 wd
= current_working_directory ();
3587 /* You don't know about the state of this job. Do you? */
3588 jobs
[job
]->flags
&= ~J_NOTIFIED
;
3592 set_current_job (job
);
3593 jobs
[job
]->flags
|= J_FOREGROUND
;
3596 /* Tell the outside world what we're doing. */
3597 p
= jobs
[job
]->pipe
;
3599 if (foreground
== 0)
3601 /* POSIX.2 says `bg' doesn't give any indication about current or
3603 if (posixly_correct
== 0)
3604 s
= (job
== js
.j_current
) ? "+ ": ((job
== js
.j_previous
) ? "- " : " ");
3607 printf ("[%d]%s", job
+ 1, s
);
3613 p
->command
? p
->command
: "",
3614 p
->next
!= jobs
[job
]->pipe
? " | " : "");
3617 while (p
!= jobs
[job
]->pipe
);
3619 if (foreground
== 0)
3622 if (strcmp (wd
, jobs
[job
]->wd
) != 0)
3623 printf (" (wd: %s)", polite_directory_format (jobs
[job
]->wd
));
3628 if (already_running
== 0)
3629 set_job_running (job
);
3631 /* Save the tty settings before we start the job in the foreground. */
3635 save_stty
= shell_tty_info
;
3636 /* Give the terminal to this job. */
3637 if (IS_JOBCONTROL (job
))
3638 give_terminal_to (jobs
[job
]->pgrp
, 0);
3641 jobs
[job
]->flags
&= ~J_FOREGROUND
;
3643 /* If the job is already running, then don't bother jump-starting it. */
3644 if (already_running
== 0)
3646 jobs
[job
]->flags
|= J_NOTIFIED
;
3647 killpg (jobs
[job
]->pgrp
, SIGCONT
);
3655 pid
= find_last_pid (job
, 0);
3656 UNBLOCK_CHILD (oset
);
3657 st
= wait_for (pid
, 0);
3658 shell_tty_info
= save_stty
;
3665 UNBLOCK_CHILD (oset
);
3670 /* Give PID SIGNAL. This determines what job the pid belongs to (if any).
3671 If PID does belong to a job, and the job is stopped, then CONTinue the
3672 job after giving it SIGNAL. Returns -1 on failure. If GROUP is non-null,
3673 then kill the process group associated with PID. */
3675 kill_pid (pid
, sig
, group
)
3679 register PROCESS
*p
;
3680 int job
, result
, negative
;
3686 group
= negative
= 1;
3691 result
= EXECUTION_SUCCESS
;
3694 BLOCK_CHILD (set
, oset
);
3695 p
= find_pipeline (pid
, 0, &job
);
3699 jobs
[job
]->flags
&= ~J_NOTIFIED
;
3701 /* Kill process in backquotes or one started without job control? */
3703 /* If we're passed a pid < -1, just call killpg and see what happens */
3704 if (negative
&& jobs
[job
]->pgrp
== shell_pgrp
)
3705 result
= killpg (pid
, sig
);
3706 /* If we're killing using job control notification, for example,
3707 without job control active, we have to do things ourselves. */
3708 else if (jobs
[job
]->pgrp
== shell_pgrp
)
3710 p
= jobs
[job
]->pipe
;
3713 if (PALIVE (p
) == 0)
3714 continue; /* avoid pid recycling problem */
3716 if (PEXITED (p
) && (sig
== SIGTERM
|| sig
== SIGHUP
))
3717 kill (p
->pid
, SIGCONT
);
3720 while (p
!= jobs
[job
]->pipe
);
3724 result
= killpg (jobs
[job
]->pgrp
, sig
);
3725 if (p
&& STOPPED (job
) && (sig
== SIGTERM
|| sig
== SIGHUP
))
3726 killpg (jobs
[job
]->pgrp
, SIGCONT
);
3727 /* If we're continuing a stopped job via kill rather than bg or
3728 fg, emulate the `bg' behavior. */
3729 if (p
&& STOPPED (job
) && (sig
== SIGCONT
))
3731 set_job_running (job
);
3732 jobs
[job
]->flags
&= ~J_FOREGROUND
;
3733 jobs
[job
]->flags
|= J_NOTIFIED
;
3738 result
= killpg (pid
, sig
);
3740 UNBLOCK_CHILD (oset
);
3743 result
= kill (pid
, sig
);
3748 /* sigchld_handler () flushes at least one of the children that we are
3749 waiting for. It gets run when we have gotten a SIGCHLD signal. */
3751 sigchld_handler (sig
)
3757 REINSTALL_SIGCHLD_HANDLER
;
3760 if (queue_sigchld
== 0)
3761 n
= waitchld (-1, 0);
3766 /* waitchld() reaps dead or stopped children. It's called by wait_for and
3767 sigchld_handler, and runs until there aren't any children terminating any
3769 If BLOCK is 1, this is to be a blocking wait for a single child, although
3770 an arriving SIGCHLD could cause the wait to be non-blocking. It returns
3771 the number of children reaped, or -1 if there are no unwaited-for child
3774 waitchld (wpid
, block
)
3783 int call_set_current
, last_stopped_job
, job
, children_exited
, waitpid_flags
;
3784 static int wcontinued
= WCONTINUED
; /* run-time fix for glibc problem */
3786 call_set_current
= children_exited
= 0;
3787 last_stopped_job
= NO_JOB
;
3791 /* We don't want to be notified about jobs stopping if job control
3792 is not active. XXX - was interactive_shell instead of job_control */
3793 waitpid_flags
= (job_control
&& subshell_environment
== 0)
3794 ? (WUNTRACED
|wcontinued
)
3796 if (sigchld
|| block
== 0)
3797 waitpid_flags
|= WNOHANG
;
3799 /* Check for terminating signals and exit the shell if we receive one */
3801 /* Check for a trapped signal interrupting the wait builtin and jump out */
3804 if (block
== 1 && queue_sigchld
== 0 && (waitpid_flags
& WNOHANG
) == 0)
3806 internal_warning (_("waitchld: turning on WNOHANG to avoid indefinite block"));
3807 waitpid_flags
|= WNOHANG
;
3810 pid
= WAITPID (-1, &status
, waitpid_flags
);
3813 if (wpid
!= -1 && block
)
3814 itrace("waitchld: blocking waitpid returns %d", pid
);
3818 itrace("waitchld: %s waitpid returns %d", block
?"blocking":"non-blocking", pid
);
3820 /* WCONTINUED may be rejected by waitpid as invalid even when defined */
3821 if (wcontinued
&& pid
< 0 && errno
== EINVAL
)
3824 continue; /* jump back to the test and retry without WCONTINUED */
3827 /* The check for WNOHANG is to make sure we decrement sigchld only
3828 if it was non-zero before we called waitpid. */
3829 if (sigchld
> 0 && (waitpid_flags
& WNOHANG
))
3832 /* If waitpid returns -1 with errno == ECHILD, there are no more
3833 unwaited-for child processes of this shell. */
3834 if (pid
< 0 && errno
== ECHILD
)
3836 if (children_exited
== 0)
3843 itrace("waitchld: waitpid returns %d block = %d children_exited = %d", pid
, block
, children_exited
);
3845 /* If waitpid returns 0, there are running children. If it returns -1,
3846 the only other error POSIX says it can return is EINTR. */
3850 /* If waitpid returns -1/EINTR and the shell saw a SIGINT, then we
3851 assume the child has blocked or handled SIGINT. In that case, we
3852 require the child to actually die due to SIGINT to act on the
3853 SIGINT we received; otherwise we assume the child handled it and
3855 if (pid
< 0 && errno
== EINTR
&& wait_sigint_received
)
3856 child_caught_sigint
= 1;
3859 continue; /* jumps right to the test */
3861 /* Linux kernels appear to signal the parent but not interrupt the
3862 waitpid() (or restart it even without SA_RESTART) on SIGINT, so if
3863 we saw a SIGINT and the process exited or died due to some other
3864 signal, assume the child caught the SIGINT. */
3865 if (wait_sigint_received
&& (WIFSIGNALED (status
) == 0 || WTERMSIG (status
) != SIGINT
))
3866 child_caught_sigint
= 1;
3868 /* If the child process did die due to SIGINT, forget our assumption
3869 that it caught or otherwise handled it. */
3870 if (WIFSIGNALED (status
) && WTERMSIG (status
) == SIGINT
)
3871 child_caught_sigint
= 0;
3873 /* children_exited is used to run traps on SIGCHLD. We don't want to
3874 run the trap if a process is just being continued. */
3875 if (WIFCONTINUED(status
) == 0)
3881 /* Locate our PROCESS for this pid. */
3882 child
= find_process (pid
, 1, &job
); /* want living procs only */
3884 #if defined (COPROCESS_SUPPORT)
3885 coproc_pidchk (pid
, WSTATUS(status
));
3888 #if defined (PROCESS_SUBSTITUTION)
3889 /* Only manipulate the list of process substitutions while SIGCHLD
3890 is blocked. We only use this as a hint that we can remove FIFOs
3891 or close file descriptors corresponding to terminated process
3893 if ((ind
= find_procsub_child (pid
)) >= 0)
3894 set_procsub_status (ind
, pid
, WSTATUS (status
));
3897 /* It is not an error to have a child terminate that we did
3898 not have a record of. This child could have been part of
3899 a pipeline in backquote substitution. Even so, I'm not
3900 sure child is ever non-zero. */
3903 if (WIFEXITED (status
) || WIFSIGNALED (status
))
3908 /* Remember status, and whether or not the process is running. */
3909 child
->status
= status
;
3910 child
->running
= WIFCONTINUED(status
) ? PS_RUNNING
: PS_DONE
;
3912 if (PEXITED (child
))
3922 call_set_current
+= set_job_status_and_cleanup (job
);
3925 last_stopped_job
= job
;
3926 else if (DEADJOB (job
) && last_stopped_job
== job
)
3927 last_stopped_job
= NO_JOB
;
3929 while ((sigchld
|| block
== 0) && pid
> (pid_t
)0);
3931 /* If a job was running and became stopped, then set the current
3932 job. Otherwise, don't change a thing. */
3933 if (call_set_current
)
3935 if (last_stopped_job
!= NO_JOB
)
3936 set_current_job (last_stopped_job
);
3941 /* Call a SIGCHLD trap handler for each child that exits, if one is set. */
3942 if (children_exited
&&
3943 (signal_is_trapped (SIGCHLD
) || trap_list
[SIGCHLD
] == (char *)IMPOSSIBLE_TRAP_HANDLER
) &&
3944 trap_list
[SIGCHLD
] != (char *)IGNORE_SIG
)
3946 if (posixly_correct
&& this_shell_builtin
&& this_shell_builtin
== wait_builtin
)
3948 /* This was trap_handler (SIGCHLD) but that can lose traps if
3949 children_exited > 1 */
3950 queue_sigchld_trap (children_exited
);
3951 wait_signal_received
= SIGCHLD
;
3952 /* If we're in a signal handler, let CHECK_WAIT_INTR pick it up;
3953 run_pending_traps will call run_sigchld_trap later */
3954 if (sigchld
== 0 && wait_intr_flag
)
3955 sh_longjmp (wait_intr_buf
, 1);
3957 /* If not in posix mode and not executing the wait builtin, queue the
3958 signal for later handling. Run the trap immediately if we are
3959 executing the wait builtin, but don't break out of `wait'. */
3960 else if (sigchld
) /* called from signal handler */
3961 queue_sigchld_trap (children_exited
);
3962 else if (signal_in_progress (SIGCHLD
))
3963 queue_sigchld_trap (children_exited
);
3964 else if (trap_list
[SIGCHLD
] == (char *)IMPOSSIBLE_TRAP_HANDLER
)
3965 queue_sigchld_trap (children_exited
);
3966 else if (running_trap
)
3967 queue_sigchld_trap (children_exited
);
3968 else if (this_shell_builtin
== wait_builtin
)
3969 run_sigchld_trap (children_exited
); /* XXX */
3971 queue_sigchld_trap (children_exited
);
3974 /* We have successfully recorded the useful information about this process
3975 that has just changed state. If we notify asynchronously, and the job
3976 that this process belongs to is no longer running, then notify the user
3977 of that fact now. */
3978 if (asynchronous_notification
&& interactive
&& executing_builtin
== 0)
3979 notify_of_job_status ();
3981 return (children_exited
);
3984 /* Set the status of JOB and perform any necessary cleanup if the job is
3987 Currently, the cleanup activity is restricted to handling any SIGINT
3988 received while waiting for a foreground job to finish. */
3990 set_job_status_and_cleanup (job
)
3994 int tstatus
, job_state
, any_stopped
, any_tstped
, call_set_current
;
3995 SigHandler
*temp_handler
;
3997 child
= jobs
[job
]->pipe
;
3998 jobs
[job
]->flags
&= ~J_NOTIFIED
;
4000 call_set_current
= 0;
4003 * COMPUTE JOB STATUS
4006 /* If all children are not running, but any of them is stopped, then
4007 the job is stopped, not dead. */
4008 job_state
= any_stopped
= any_tstped
= 0;
4011 job_state
|= PRUNNING (child
);
4013 if (PEXITED (child
) && (WIFSTOPPED (child
->status
)))
4015 /* Only checking for WIFSTOPPED now, not for PS_DONE */
4016 if (PSTOPPED (child
))
4020 any_tstped
|= job_control
&& (WSTOPSIG (child
->status
) == SIGTSTP
);
4022 child
= child
->next
;
4024 while (child
!= jobs
[job
]->pipe
);
4026 /* If job_state != 0, the job is still running, so don't bother with
4027 setting the process exit status and job state unless we're
4028 transitioning from stopped to running. */
4029 if (job_state
!= 0 && JOBSTATE(job
) != JSTOPPED
)
4036 /* The job is either stopped or dead. Set the state of the job accordingly. */
4039 jobs
[job
]->state
= JSTOPPED
;
4040 jobs
[job
]->flags
&= ~J_FOREGROUND
;
4042 /* Suspending a job with SIGTSTP breaks all active loops. */
4043 if (any_tstped
&& loop_level
)
4044 breaking
= loop_level
;
4046 else if (job_state
!= 0) /* was stopped, now running */
4048 jobs
[job
]->state
= JRUNNING
;
4053 jobs
[job
]->state
= JDEAD
;
4057 if (IS_FOREGROUND (job
))
4061 /* If this job has a cleanup function associated with it, call it
4062 with `cleanarg' as the single argument, then set the function
4063 pointer to NULL so it is not inadvertently called twice. The
4064 cleanup function is responsible for deallocating cleanarg. */
4065 if (jobs
[job
]->j_cleanup
)
4067 (*jobs
[job
]->j_cleanup
) (jobs
[job
]->cleanarg
);
4068 jobs
[job
]->j_cleanup
= (sh_vptrfunc_t
*)NULL
;
4075 * Currently, we just do special things if we got a SIGINT while waiting
4076 * for a foreground job to complete
4079 if (JOBSTATE (job
) == JDEAD
)
4081 /* If we're running a shell script and we get a SIGINT with a
4082 SIGINT trap handler, but the foreground job handles it and
4083 does not exit due to SIGINT, run the trap handler but do not
4084 otherwise act as if we got the interrupt. */
4085 if (wait_sigint_received
&& interactive_shell
== 0 &&
4086 child_caught_sigint
&& IS_FOREGROUND (job
) &&
4087 signal_is_trapped (SIGINT
))
4090 wait_sigint_received
= 0;
4091 last_command_exit_value
= process_exit_status (child
->status
);
4093 old_frozen
= jobs_list_frozen
;
4094 jobs_list_frozen
= 1;
4095 tstatus
= maybe_call_trap_handler (SIGINT
);
4096 jobs_list_frozen
= old_frozen
;
4099 /* If the foreground job is killed by SIGINT when job control is not
4100 active, we need to perform some special handling.
4102 The check of wait_sigint_received is a way to determine if the
4103 SIGINT came from the keyboard (in which case the shell has already
4104 seen it, and wait_sigint_received is non-zero, because keyboard
4105 signals are sent to process groups) or via kill(2) to the foreground
4106 process by another process (or itself). If the shell did receive the
4107 SIGINT, it needs to perform normal SIGINT processing. XXX - should
4108 this change its behavior depending on whether the last command in an
4109 pipeline exited due to SIGINT, or any process in the pipeline? Right
4110 now it does this if any process in the pipeline exits due to SIGINT. */
4111 else if (wait_sigint_received
&&
4112 child_caught_sigint
== 0 &&
4113 IS_FOREGROUND (job
) && IS_JOBCONTROL (job
) == 0)
4117 wait_sigint_received
= 0;
4119 /* If SIGINT is trapped, set the exit status so that the trap
4120 handler can see it. */
4121 if (signal_is_trapped (SIGINT
))
4122 last_command_exit_value
= process_exit_status (child
->status
);
4124 /* If the signal is trapped, let the trap handler get it no matter
4125 what and simply return if the trap handler returns.
4126 maybe_call_trap_handler() may cause dead jobs to be removed from
4127 the job table because of a call to execute_command. We work
4128 around this by setting JOBS_LIST_FROZEN. */
4129 old_frozen
= jobs_list_frozen
;
4130 jobs_list_frozen
= 1;
4131 tstatus
= maybe_call_trap_handler (SIGINT
);
4132 jobs_list_frozen
= old_frozen
;
4133 if (tstatus
== 0 && old_sigint_handler
!= INVALID_SIGNAL_HANDLER
)
4135 /* wait_sigint_handler () has already seen SIGINT and
4136 allowed the wait builtin to jump out. We need to
4137 call the original SIGINT handler, if necessary. If
4138 the original handler is SIG_DFL, we need to resend
4139 the signal to ourselves. */
4141 temp_handler
= old_sigint_handler
;
4143 /* Bogus. If we've reset the signal handler as the result
4144 of a trap caught on SIGINT, then old_sigint_handler
4145 will point to trap_handler, which now knows nothing about
4146 SIGINT (if we reset the sighandler to the default).
4147 In this case, we have to fix things up. What a crock. */
4148 if (temp_handler
== trap_handler
&& signal_is_trapped (SIGINT
) == 0)
4149 temp_handler
= trap_to_sighandler (SIGINT
);
4150 restore_sigint_handler ();
4151 if (temp_handler
== SIG_DFL
)
4152 termsig_handler (SIGINT
); /* XXX */
4153 else if (temp_handler
!= SIG_IGN
)
4154 (*temp_handler
) (SIGINT
);
4159 return call_set_current
;
4162 /* Build the array of values for the $PIPESTATUS variable from the set of
4163 exit statuses of all processes in the job J. */
4168 #if defined (ARRAY_VARS)
4170 register PROCESS
*p
;
4172 for (i
= 1, p
= jobs
[j
]->pipe
; p
->next
!= jobs
[j
]->pipe
; p
= p
->next
, i
++)
4177 pstatuses
= (int *)xrealloc (pstatuses
, i
* sizeof (int));
4184 pstatuses
[i
++] = process_exit_status (p
->status
);
4187 while (p
!= jobs
[j
]->pipe
);
4189 pstatuses
[i
] = -1; /* sentinel */
4190 set_pipestatus_array (pstatuses
, i
);
4195 run_sigchld_trap (nchild
)
4201 /* Turn off the trap list during the call to parse_and_execute ()
4202 to avoid potentially infinite recursive calls. Preserve the
4203 values of last_command_exit_value, last_made_pid, and the_pipeline
4204 around the execution of the trap commands. */
4205 trap_command
= savestring (trap_list
[SIGCHLD
]);
4207 begin_unwind_frame ("SIGCHLD trap");
4208 unwind_protect_int (last_command_exit_value
);
4209 unwind_protect_int (last_command_exit_signal
);
4210 unwind_protect_var (last_made_pid
);
4211 unwind_protect_int (jobs_list_frozen
);
4212 unwind_protect_pointer (the_pipeline
);
4213 unwind_protect_pointer (subst_assign_varlist
);
4214 unwind_protect_pointer (this_shell_builtin
);
4215 unwind_protect_pointer (temporary_env
);
4217 /* We have to add the commands this way because they will be run
4218 in reverse order of adding. We don't want maybe_set_sigchld_trap ()
4219 to reference freed memory. */
4220 add_unwind_protect (xfree
, trap_command
);
4221 add_unwind_protect (maybe_set_sigchld_trap
, trap_command
);
4223 subst_assign_varlist
= (WORD_LIST
*)NULL
;
4224 the_pipeline
= (PROCESS
*)NULL
;
4225 temporary_env
= 0; /* traps should not run with temporary env */
4227 running_trap
= SIGCHLD
+ 1;
4229 set_impossible_sigchld_trap ();
4230 jobs_list_frozen
= 1;
4231 for (i
= 0; i
< nchild
; i
++)
4233 parse_and_execute (savestring (trap_command
), "trap", SEVAL_NOHIST
|SEVAL_RESETLINE
);
4236 run_unwind_frame ("SIGCHLD trap");
4240 /* Function to call when you want to notify people of changes
4241 in job status. This prints out all jobs which are pending
4242 notification to stderr, and marks those printed as already
4243 notified, thus making them candidates for cleanup. */
4245 notify_of_job_status ()
4247 register int job
, termsig
;
4252 if (jobs
== 0 || js
.j_jobslots
== 0)
4258 sigaddset (&set
, SIGCHLD
);
4259 sigaddset (&set
, SIGTTOU
);
4260 sigemptyset (&oset
);
4261 sigprocmask (SIG_BLOCK
, &set
, &oset
);
4266 /* XXX could use js.j_firstj here */
4267 for (job
= 0, dir
= (char *)NULL
; job
< js
.j_jobslots
; job
++)
4269 if (jobs
[job
] && IS_NOTIFIED (job
) == 0)
4271 s
= raw_job_exit_status (job
);
4272 termsig
= WTERMSIG (s
);
4274 /* POSIX.2 says we have to hang onto the statuses of at most the
4275 last CHILD_MAX background processes if the shell is running a
4276 script. If the shell is running a script, either from a file
4277 or standard input, don't print anything unless the job was
4278 killed by a signal. */
4279 if (startup_state
== 0 && WIFSIGNALED (s
) == 0 &&
4280 ((DEADJOB (job
) && IS_FOREGROUND (job
) == 0) || STOPPED (job
)))
4283 /* If job control is disabled, don't print the status messages.
4284 Mark dead jobs as notified so that they get cleaned up. If
4285 startup_state == 2 and subshell_environment has the
4286 SUBSHELL_COMSUB bit turned on, we were started to run a command
4287 substitution, so don't print anything.
4288 Otherwise, if the shell is not interactive, POSIX says that `jobs'
4289 is the only way to notify of job status. */
4290 if ((job_control
== 0 && interactive_shell
) ||
4291 (startup_state
== 2 && (subshell_environment
& SUBSHELL_COMSUB
)) ||
4292 (startup_state
== 2 && posixly_correct
&& (subshell_environment
& SUBSHELL_COMSUB
) == 0))
4294 /* POSIX.2 compatibility: if the shell is not interactive,
4295 hang onto the job corresponding to the last asynchronous
4296 pid until the user has been notified of its status or does
4298 if (DEADJOB (job
) && (interactive_shell
|| (find_last_pid (job
, 0) != last_asynchronous_pid
)))
4299 jobs
[job
]->flags
|= J_NOTIFIED
;
4303 /* Print info on jobs that are running in the background,
4304 and on foreground jobs that were killed by anything
4305 except SIGINT (and possibly SIGPIPE). */
4306 switch (JOBSTATE (job
))
4309 if (interactive_shell
== 0 && termsig
&& WIFSIGNALED (s
) &&
4310 termsig
!= SIGINT
&&
4311 #if defined (DONT_REPORT_SIGTERM)
4312 termsig
!= SIGTERM
&&
4314 #if defined (DONT_REPORT_SIGPIPE)
4315 termsig
!= SIGPIPE
&&
4317 signal_is_trapped (termsig
) == 0)
4319 /* Don't print `0' for a line number. */
4320 fprintf (stderr
, _("%s: line %d: "), get_name_for_error (), (line_number
== 0) ? 1 : line_number
);
4321 pretty_print_job (job
, JLIST_NONINTERACTIVE
, stderr
);
4323 else if (IS_FOREGROUND (job
))
4325 #if !defined (DONT_REPORT_SIGPIPE)
4326 if (termsig
&& WIFSIGNALED (s
) && termsig
!= SIGINT
)
4328 if (termsig
&& WIFSIGNALED (s
) && termsig
!= SIGINT
&& termsig
!= SIGPIPE
)
4331 fprintf (stderr
, "%s", j_strsignal (termsig
));
4334 fprintf (stderr
, _(" (core dumped)"));
4336 fprintf (stderr
, "\n");
4339 else if (job_control
) /* XXX job control test added */
4342 dir
= current_working_directory ();
4343 pretty_print_job (job
, JLIST_STANDARD
, stderr
);
4344 if (dir
&& strcmp (dir
, jobs
[job
]->wd
) != 0)
4346 _("(wd now: %s)\n"), polite_directory_format (dir
));
4349 jobs
[job
]->flags
|= J_NOTIFIED
;
4353 fprintf (stderr
, "\n");
4355 dir
= current_working_directory ();
4356 pretty_print_job (job
, JLIST_STANDARD
, stderr
);
4357 if (dir
&& (strcmp (dir
, jobs
[job
]->wd
) != 0))
4359 _("(wd now: %s)\n"), polite_directory_format (dir
));
4360 jobs
[job
]->flags
|= J_NOTIFIED
;
4368 programming_error ("notify_of_job_status");
4373 sigprocmask (SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
4378 /* Initialize the job control mechanism, and set up the tty stuff. */
4380 initialize_job_control (force
)
4384 int t_errno
, tty_sigs
;
4387 shell_pgrp
= getpgid (0);
4389 if (shell_pgrp
== -1)
4391 sys_error (_("initialize_job_control: getpgrp failed"));
4395 /* We can only have job control if we are interactive unless we force it. */
4396 if (interactive
== 0 && force
== 0)
4399 original_pgrp
= NO_PID
;
4400 shell_tty
= fileno (stderr
);
4401 terminal_pgrp
= tcgetpgrp (shell_tty
); /* for checking later */
4407 /* If forced_interactive is set, we skip the normal check that stderr
4408 is attached to a tty, so we need to check here. If it's not, we
4409 need to see whether we have a controlling tty by opening /dev/tty,
4410 since trying to use job control tty pgrp manipulations on a non-tty
4411 is going to fail. */
4412 if (forced_interactive
&& isatty (fileno (stderr
)) == 0)
4413 shell_tty
= open ("/dev/tty", O_RDWR
|O_NONBLOCK
);
4415 /* Get our controlling terminal. If job_control is set, or
4416 interactive is set, then this is an interactive shell no
4417 matter where fd 2 is directed. */
4418 if (shell_tty
== -1)
4419 shell_tty
= dup (fileno (stderr
)); /* fd 2 */
4421 if (shell_tty
!= -1)
4422 shell_tty
= move_to_high_fd (shell_tty
, 1, -1);
4424 /* Compensate for a bug in systems that compiled the BSD
4425 rlogind with DEBUG defined, like NeXT and Alliant. */
4426 if (shell_pgrp
== 0)
4428 shell_pgrp
= getpid ();
4429 setpgid (0, shell_pgrp
);
4430 if (shell_tty
!= -1)
4431 tcsetpgrp (shell_tty
, shell_pgrp
);
4435 while ((terminal_pgrp
= tcgetpgrp (shell_tty
)) != -1)
4437 if (shell_pgrp
!= terminal_pgrp
)
4442 ottin
= set_signal_handler (SIGTTIN
, SIG_DFL
);
4444 set_signal_handler (SIGTTIN
, ottin
);
4445 if (tty_sigs
++ > 16)
4447 sys_error (_("initialize_job_control: no job control in background"));
4449 original_pgrp
= terminal_pgrp
; /* for eventual give_terminal_to */
4457 if (terminal_pgrp
== -1)
4460 /* Make sure that we are using the new line discipline. */
4461 if (set_new_line_discipline (shell_tty
) < 0)
4463 sys_error (_("initialize_job_control: line discipline"));
4468 original_pgrp
= shell_pgrp
;
4469 shell_pgrp
= getpid ();
4471 if ((original_pgrp
!= shell_pgrp
) && (setpgid (0, shell_pgrp
) < 0))
4473 sys_error (_("initialize_job_control: setpgid"));
4474 shell_pgrp
= original_pgrp
;
4479 /* If (and only if) we just set our process group to our pid,
4480 thereby becoming a process group leader, and the terminal
4481 is not in the same process group as our (new) process group,
4482 then set the terminal's process group to our (new) process
4483 group. If that fails, set our process group back to what it
4484 was originally (so we can still read from the terminal) and
4485 turn off job control. */
4486 if (shell_pgrp
!= original_pgrp
&& shell_pgrp
!= terminal_pgrp
)
4488 if (give_terminal_to (shell_pgrp
, 0) < 0)
4491 setpgid (0, original_pgrp
);
4492 shell_pgrp
= original_pgrp
;
4494 sys_error (_("cannot set terminal process group (%d)"), shell_pgrp
);
4499 if (job_control
&& ((t
= tcgetpgrp (shell_tty
)) == -1 || t
!= shell_pgrp
))
4503 sys_error (_("cannot set terminal process group (%d)"), t
);
4507 if (job_control
== 0)
4508 internal_error (_("no job control in this shell"));
4512 running_in_background
= terminal_pgrp
!= shell_pgrp
;
4514 if (shell_tty
!= fileno (stderr
))
4515 SET_CLOSE_ON_EXEC (shell_tty
);
4517 set_signal_handler (SIGCHLD
, sigchld_handler
);
4519 change_flag ('m', job_control
? '-' : '+');
4531 debug_print_pgrps ()
4533 itrace("original_pgrp = %ld shell_pgrp = %ld terminal_pgrp = %ld",
4534 (long)original_pgrp
, (long)shell_pgrp
, (long)terminal_pgrp
);
4535 itrace("tcgetpgrp(%d) -> %ld, getpgid(0) -> %ld",
4536 shell_tty
, (long)tcgetpgrp (shell_tty
), (long)getpgid(0));
4540 /* Set the line discipline to the best this system has to offer.
4541 Return -1 if this is not possible. */
4543 set_new_line_discipline (tty
)
4546 #if defined (NEW_TTY_DRIVER)
4549 if (ioctl (tty
, TIOCGETD
, &ldisc
) < 0)
4552 if (ldisc
!= NTTYDISC
)
4556 if (ioctl (tty
, TIOCSETD
, &ldisc
) < 0)
4560 #endif /* NEW_TTY_DRIVER */
4562 #if defined (TERMIO_TTY_DRIVER)
4563 # if defined (TERMIO_LDISC) && (NTTYDISC)
4564 if (ioctl (tty
, TCGETA
, &shell_tty_info
) < 0)
4567 if (shell_tty_info
.c_line
!= NTTYDISC
)
4569 shell_tty_info
.c_line
= NTTYDISC
;
4570 if (ioctl (tty
, TCSETAW
, &shell_tty_info
) < 0)
4573 # endif /* TERMIO_LDISC && NTTYDISC */
4575 #endif /* TERMIO_TTY_DRIVER */
4577 #if defined (TERMIOS_TTY_DRIVER)
4578 # if defined (TERMIOS_LDISC) && defined (NTTYDISC)
4579 if (tcgetattr (tty
, &shell_tty_info
) < 0)
4582 if (shell_tty_info
.c_line
!= NTTYDISC
)
4584 shell_tty_info
.c_line
= NTTYDISC
;
4585 if (tcsetattr (tty
, TCSADRAIN
, &shell_tty_info
) < 0)
4588 # endif /* TERMIOS_LDISC && NTTYDISC */
4590 #endif /* TERMIOS_TTY_DRIVER */
4592 #if !defined (NEW_TTY_DRIVER) && !defined (TERMIO_TTY_DRIVER) && !defined (TERMIOS_TTY_DRIVER)
4597 /* Setup this shell to handle C-C, etc. */
4599 initialize_job_signals ()
4603 set_signal_handler (SIGINT
, sigint_sighandler
);
4604 set_signal_handler (SIGTSTP
, SIG_IGN
);
4605 set_signal_handler (SIGTTOU
, SIG_IGN
);
4606 set_signal_handler (SIGTTIN
, SIG_IGN
);
4608 else if (job_control
)
4610 old_tstp
= set_signal_handler (SIGTSTP
, sigstop_sighandler
);
4611 old_ttin
= set_signal_handler (SIGTTIN
, sigstop_sighandler
);
4612 old_ttou
= set_signal_handler (SIGTTOU
, sigstop_sighandler
);
4614 /* Leave disposition unmodified for non-interactive shells without job
4618 /* Here we handle CONT signals. */
4620 sigcont_sighandler (sig
)
4623 initialize_job_signals ();
4624 set_signal_handler (SIGCONT
, old_cont
);
4625 kill (getpid (), SIGCONT
);
4630 /* Here we handle stop signals while we are running not as a login shell. */
4632 sigstop_sighandler (sig
)
4635 set_signal_handler (SIGTSTP
, old_tstp
);
4636 set_signal_handler (SIGTTOU
, old_ttou
);
4637 set_signal_handler (SIGTTIN
, old_ttin
);
4639 old_cont
= set_signal_handler (SIGCONT
, sigcont_sighandler
);
4641 give_terminal_to (shell_pgrp
, 0);
4643 kill (getpid (), sig
);
4648 /* Give the terminal to PGRP. */
4650 give_terminal_to (pgrp
, force
)
4658 if (job_control
|| force
)
4661 sigaddset (&set
, SIGTTOU
);
4662 sigaddset (&set
, SIGTTIN
);
4663 sigaddset (&set
, SIGTSTP
);
4664 sigaddset (&set
, SIGCHLD
);
4665 sigemptyset (&oset
);
4666 sigprocmask (SIG_BLOCK
, &set
, &oset
);
4668 if (tcsetpgrp (shell_tty
, pgrp
) < 0)
4670 /* Maybe we should print an error message? */
4672 sys_error ("tcsetpgrp(%d) failed: pid %ld to pgrp %ld",
4673 shell_tty
, (long)getpid(), (long)pgrp
);
4679 terminal_pgrp
= pgrp
;
4680 sigprocmask (SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
4689 /* Give terminal to NPGRP iff it's currently owned by OPGRP. FLAGS are the
4690 flags to pass to give_terminal_to(). */
4692 maybe_give_terminal_to (opgrp
, npgrp
, flags
)
4698 tpgrp
= tcgetpgrp (shell_tty
);
4699 if (tpgrp
< 0 && errno
== ENOTTY
)
4703 terminal_pgrp
= npgrp
;
4706 else if (tpgrp
!= opgrp
)
4709 internal_warning ("%d: maybe_give_terminal_to: terminal pgrp == %d shell pgrp = %d new pgrp = %d in_background = %d", (int)getpid(), tpgrp
, opgrp
, npgrp
, running_in_background
);
4714 return (give_terminal_to (npgrp
, flags
));
4717 /* Clear out any jobs in the job array. This is intended to be used by
4718 children of the shell, who should not have any job structures as baggage
4719 when they start executing (forking subshells for parenthesized execution
4720 and functions with pipes are the two that spring to mind). If RUNNING_ONLY
4721 is nonzero, only running jobs are removed from the table. */
4723 delete_all_jobs (running_only
)
4729 BLOCK_CHILD (set
, oset
);
4731 /* XXX - need to set j_lastj, j_firstj appropriately if running_only != 0. */
4734 js
.j_current
= js
.j_previous
= NO_JOB
;
4736 /* XXX could use js.j_firstj here */
4737 for (i
= 0; i
< js
.j_jobslots
; i
++)
4740 if (i
< js
.j_firstj
&& jobs
[i
])
4741 itrace("delete_all_jobs: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
4742 if (i
> js
.j_lastj
&& jobs
[i
])
4743 itrace("delete_all_jobs: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
4745 if (jobs
[i
] && (running_only
== 0 || (running_only
&& RUNNING(i
))))
4746 /* We don't want to add any of these pids to bgpids. If running_only
4747 is non-zero, we don't want to add running jobs to the list.
4748 If we are interested in all jobs, not just running jobs, and
4749 we are going to clear the bgpids list below (bgp_clear()), we
4750 don't need to bother. */
4751 delete_job (i
, DEL_WARNSTOPPED
|DEL_NOBGPID
);
4753 if (running_only
== 0)
4755 free ((char *)jobs
);
4757 js
.j_firstj
= js
.j_lastj
= js
.j_njobs
= 0;
4761 if (running_only
== 0)
4764 UNBLOCK_CHILD (oset
);
4767 /* Mark all jobs in the job array so that they don't get a SIGHUP when the
4768 shell gets one. If RUNNING_ONLY is nonzero, mark only running jobs. */
4770 nohup_all_jobs (running_only
)
4776 BLOCK_CHILD (set
, oset
);
4780 /* XXX could use js.j_firstj here */
4781 for (i
= 0; i
< js
.j_jobslots
; i
++)
4782 if (jobs
[i
] && (running_only
== 0 || (running_only
&& RUNNING(i
))))
4786 UNBLOCK_CHILD (oset
);
4795 /* This really counts all non-dead jobs. */
4796 BLOCK_CHILD (set
, oset
);
4797 /* XXX could use js.j_firstj here */
4798 for (i
= n
= 0; i
< js
.j_jobslots
; i
++)
4801 if (i
< js
.j_firstj
&& jobs
[i
])
4802 itrace("count_all_jobs: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
4803 if (i
> js
.j_lastj
&& jobs
[i
])
4804 itrace("count_all_jobs: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
4806 if (jobs
[i
] && DEADJOB(i
) == 0)
4809 UNBLOCK_CHILD (oset
);
4814 mark_all_jobs_as_dead ()
4819 if (js
.j_jobslots
== 0)
4822 BLOCK_CHILD (set
, oset
);
4824 /* XXX could use js.j_firstj here */
4825 for (i
= 0; i
< js
.j_jobslots
; i
++)
4828 jobs
[i
]->state
= JDEAD
;
4832 UNBLOCK_CHILD (oset
);
4835 /* Mark all dead jobs as notified, so delete_job () cleans them out
4836 of the job table properly. POSIX.2 says we need to save the
4837 status of the last CHILD_MAX jobs, so we count the number of dead
4838 jobs and mark only enough as notified to save CHILD_MAX statuses. */
4840 mark_dead_jobs_as_notified (force
)
4843 register int i
, ndead
, ndeadproc
;
4846 if (js
.j_jobslots
== 0)
4849 BLOCK_CHILD (set
, oset
);
4851 /* If FORCE is non-zero, we don't have to keep CHILD_MAX statuses
4852 around; just run through the array. */
4855 /* XXX could use js.j_firstj here */
4856 for (i
= 0; i
< js
.j_jobslots
; i
++)
4858 if (jobs
[i
] && DEADJOB (i
) && (interactive_shell
|| (find_last_pid (i
, 0) != last_asynchronous_pid
)))
4859 jobs
[i
]->flags
|= J_NOTIFIED
;
4861 UNBLOCK_CHILD (oset
);
4865 /* Mark enough dead jobs as notified to keep CHILD_MAX processes left in the
4866 array with the corresponding not marked as notified. This is a better
4867 way to avoid pid aliasing and reuse problems than keeping the POSIX-
4868 mandated CHILD_MAX jobs around. delete_job() takes care of keeping the
4869 bgpids list regulated. */
4871 /* Count the number of dead jobs */
4872 /* XXX could use js.j_firstj here */
4873 for (i
= ndead
= ndeadproc
= 0; i
< js
.j_jobslots
; i
++)
4876 if (i
< js
.j_firstj
&& jobs
[i
])
4877 itrace("mark_dead_jobs_as_notified: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
4878 if (i
> js
.j_lastj
&& jobs
[i
])
4879 itrace("mark_dead_jobs_as_notified: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
4881 if (jobs
[i
] && DEADJOB (i
))
4884 ndeadproc
+= processes_in_job (i
);
4890 if (ndeadproc
!= js
.c_reaped
)
4891 itrace("mark_dead_jobs_as_notified: ndeadproc (%d) != js.c_reaped (%d)", ndeadproc
, js
.c_reaped
);
4893 if (ndead
!= js
.j_ndead
)
4894 itrace("mark_dead_jobs_as_notified: ndead (%d) != js.j_ndead (%d)", ndead
, js
.j_ndead
);
4897 if (js
.c_childmax
< 0)
4900 /* Don't do anything if the number of dead processes is less than CHILD_MAX
4901 and we're not forcing a cleanup. */
4902 if (ndeadproc
<= js
.c_childmax
)
4904 UNBLOCK_CHILD (oset
);
4909 itrace("mark_dead_jobs_as_notified: child_max = %d ndead = %d ndeadproc = %d", js
.c_childmax
, ndead
, ndeadproc
);
4912 /* Mark enough dead jobs as notified that we keep CHILD_MAX jobs in
4913 the list. This isn't exactly right yet; changes need to be made
4914 to stop_pipeline so we don't mark the newer jobs after we've
4915 created CHILD_MAX slots in the jobs array. This needs to be
4916 integrated with a way to keep the jobs array from growing without
4917 bound. Maybe we wrap back around to 0 after we reach some max
4918 limit, and there are sufficient job slots free (keep track of total
4919 size of jobs array (js.j_jobslots) and running count of number of jobs
4920 in jobs array. Then keep a job index corresponding to the `oldest job'
4921 and start this loop there, wrapping around as necessary. In effect,
4922 we turn the list into a circular buffer. */
4923 /* XXX could use js.j_firstj here */
4924 for (i
= 0; i
< js
.j_jobslots
; i
++)
4926 if (jobs
[i
] && DEADJOB (i
) && (interactive_shell
|| (find_last_pid (i
, 0) != last_asynchronous_pid
)))
4929 if (i
< js
.j_firstj
&& jobs
[i
])
4930 itrace("mark_dead_jobs_as_notified: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
4931 if (i
> js
.j_lastj
&& jobs
[i
])
4932 itrace("mark_dead_jobs_as_notified: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
4934 /* If marking this job as notified would drop us down below
4935 child_max, don't mark it so we can keep at least child_max
4936 statuses. XXX -- need to check what Posix actually says
4937 about keeping statuses. */
4938 if ((ndeadproc
-= processes_in_job (i
)) <= js
.c_childmax
)
4940 jobs
[i
]->flags
|= J_NOTIFIED
;
4944 UNBLOCK_CHILD (oset
);
4947 /* Here to allow other parts of the shell (like the trap stuff) to
4948 freeze and unfreeze the jobs list. */
4954 o
= jobs_list_frozen
;
4955 jobs_list_frozen
= 1;
4960 unfreeze_jobs_list ()
4962 jobs_list_frozen
= 0;
4966 set_jobs_list_frozen (s
)
4969 jobs_list_frozen
= s
;
4972 /* Allow or disallow job control to take place. Returns the old value
4975 set_job_control (arg
)
4983 if (terminal_pgrp
== NO_PID
)
4984 terminal_pgrp
= tcgetpgrp (shell_tty
);
4986 /* If we're turning on job control we're going to want to know the shell's
4988 if (job_control
!= old
&& job_control
)
4989 shell_pgrp
= getpgid (0);
4991 running_in_background
= (terminal_pgrp
!= shell_pgrp
);
4994 if (interactive_shell
== 0 && running_in_background
== 0 && job_control
!= old
)
4997 initialize_job_signals ();
4999 default_tty_job_signals ();
5003 /* If we're turning on job control, reset pipeline_pgrp so make_child will
5004 put new child processes into the right pgrp */
5005 if (job_control
!= old
&& job_control
)
5011 /* Turn off all traces of job control. This is run by children of the shell
5012 which are going to do shellsy things, like wait (), etc. */
5014 without_job_control ()
5016 stop_making_children ();
5018 #if defined (PGRP_PIPE)
5019 sh_closepipe (pgrp_pipe
);
5021 delete_all_jobs (0);
5022 set_job_control (0);
5025 /* If this shell is interactive, terminate all stopped jobs and
5026 restore the original terminal process group. This is done
5027 before the `exec' builtin calls shell_execve. */
5032 terminate_stopped_jobs ();
5034 if (original_pgrp
>= 0 && terminal_pgrp
!= original_pgrp
)
5035 give_terminal_to (original_pgrp
, 1);
5037 if (original_pgrp
>= 0 && setpgid (0, original_pgrp
) == 0)
5038 shell_pgrp
= original_pgrp
;
5041 /* Restart job control by closing shell tty and reinitializing. This is
5042 called after an exec fails in an interactive shell and we do not exit. */
5044 restart_job_control ()
5046 if (shell_tty
!= -1)
5048 initialize_job_control (0);
5051 /* Set the maximum number of background children we keep track of to NCHILD.
5052 If the caller passes NCHILD as 0 or -1, this ends up setting it to
5053 LMAXCHILD, which is initialized the first time through. */
5055 set_maxchild (nchild
)
5058 static int lmaxchild
= -1;
5060 /* Initialize once. */
5064 lmaxchild
= getmaxchild ();
5065 if (lmaxchild
< 0 && errno
== 0)
5066 lmaxchild
= MAX_CHILD_MAX
; /* assume unlimited */
5069 lmaxchild
= DEFAULT_CHILD_MAX
;
5071 /* Clamp value we set. Minimum is what Posix requires, maximum is defined
5072 above as MAX_CHILD_MAX. */
5073 if (nchild
< lmaxchild
)
5075 else if (nchild
> MAX_CHILD_MAX
)
5076 nchild
= MAX_CHILD_MAX
;
5078 js
.c_childmax
= nchild
;
5081 /* Set the handler to run when the shell receives a SIGCHLD signal. */
5083 set_sigchld_handler ()
5085 set_signal_handler (SIGCHLD
, sigchld_handler
);
5088 #if defined (PGRP_PIPE)
5089 /* Read from the read end of a pipe. This is how the process group leader
5090 blocks until all of the processes in a pipeline have been made. */
5105 while (read (pp
[0], &ch
, 1) == -1 && errno
== EINTR
)
5110 /* Functional interface closes our local-to-job-control pipes. */
5114 sh_closepipe (pgrp_pipe
);
5118 save_pgrp_pipe (p
, clear
)
5122 p
[0] = pgrp_pipe
[0];
5123 p
[1] = pgrp_pipe
[1];
5125 pgrp_pipe
[0] = pgrp_pipe
[1] = -1;
5129 restore_pgrp_pipe (p
)
5132 pgrp_pipe
[0] = p
[0];
5133 pgrp_pipe
[1] = p
[1];
5136 #endif /* PGRP_PIPE */