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-2009 Free Software Foundation, Inc.
8 This file is part of GNU Bash, the Bourne Again SHell.
10 Bash is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
15 Bash is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with Bash. If not, see <http://www.gnu.org/licenses/>.
26 #include "bashtypes.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 #include <sys/param.h>
50 #if defined (BUFFERED_INPUT)
54 /* Need to include this up here for *_TTY_DRIVER definitions. */
57 /* Define this if your output is getting swallowed. It's a no-op on
58 machines with the termio or termios tty drivers. */
59 /* #define DRAIN_OUTPUT */
61 /* For the TIOCGPGRP and TIOCSPGRP ioctl parameters on HP-UX */
62 #if defined (hpux) && !defined (TERMIOS_TTY_DRIVER)
64 #endif /* hpux && !TERMIOS_TTY_DRIVER */
70 #include "execute_cmd.h"
73 #include "builtins/builtext.h"
74 #include "builtins/common.h"
80 #define DEFAULT_CHILD_MAX 32
82 #define MAX_JOBS_IN_ARRAY 4096 /* production */
84 #define MAX_JOBS_IN_ARRAY 128 /* testing */
87 /* Flag values for second argument to delete_job */
88 #define DEL_WARNSTOPPED 1 /* warn about deleting stopped jobs */
89 #define DEL_NOBGPID 2 /* don't add pgrp leader to bgpids */
91 /* Take care of system dependencies that must be handled when waiting for
92 children. The arguments to the WAITPID macro match those to the Posix.1
93 waitpid() function. */
95 #if defined (ultrix) && defined (mips) && defined (_POSIX_VERSION)
96 # define WAITPID(pid, statusp, options) \
97 wait3 ((union wait *)statusp, options, (struct rusage *)0)
99 # if defined (_POSIX_VERSION) || defined (HAVE_WAITPID)
100 # define WAITPID(pid, statusp, options) \
101 waitpid ((pid_t)pid, statusp, options)
103 # if defined (HAVE_WAIT3)
104 # define WAITPID(pid, statusp, options) \
105 wait3 (statusp, options, (struct rusage *)0)
107 # define WAITPID(pid, statusp, options) \
108 wait3 (statusp, options, (int *)0)
109 # endif /* HAVE_WAIT3 */
110 # endif /* !_POSIX_VERSION && !HAVE_WAITPID*/
111 #endif /* !(Ultrix && mips && _POSIX_VERSION) */
113 /* getpgrp () varies between systems. Even systems that claim to be
114 Posix.1 compatible lie sometimes (Ultrix, SunOS4, apollo). */
115 #if defined (GETPGRP_VOID)
116 # define getpgid(p) getpgrp ()
118 # define getpgid(p) getpgrp (p)
119 #endif /* !GETPGRP_VOID */
121 /* If the system needs it, REINSTALL_SIGCHLD_HANDLER will reinstall the
122 handler for SIGCHLD. */
123 #if defined (MUST_REINSTALL_SIGHANDLERS)
124 # define REINSTALL_SIGCHLD_HANDLER signal (SIGCHLD, sigchld_handler)
126 # define REINSTALL_SIGCHLD_HANDLER
127 #endif /* !MUST_REINSTALL_SIGHANDLERS */
129 /* Some systems let waitpid(2) tell callers about stopped children. */
130 #if !defined (WCONTINUED) || defined (WCONTINUED_BROKEN)
132 # define WCONTINUED 0
134 #if !defined (WIFCONTINUED)
135 # define WIFCONTINUED(s) (0)
138 /* The number of additional slots to allocate when we run out. */
141 typedef int sh_job_map_func_t
__P((JOB
*, int, int, int));
143 /* Variables used here but defined in other files. */
144 extern int subshell_environment
, line_number
;
145 extern int posixly_correct
, shell_level
;
146 extern int last_command_exit_value
, last_command_exit_signal
;
147 extern int loop_level
, breaking
;
148 extern int executing_list
;
149 extern int sourcelevel
;
150 extern int running_trap
;
151 extern sh_builtin_func_t
*this_shell_builtin
;
152 extern char *shell_name
, *this_command_name
;
153 extern sigset_t top_level_mask
;
154 extern procenv_t wait_intr_buf
;
155 extern int wait_signal_received
;
156 extern WORD_LIST
*subst_assign_varlist
;
158 static struct jobstats zerojs
= { -1L, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NO_JOB
, NO_JOB
, 0, 0 };
159 struct jobstats js
= { -1L, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NO_JOB
, NO_JOB
, 0, 0 };
161 struct bgpids bgpids
= { 0, 0, 0 };
163 /* The array of known jobs. */
164 JOB
**jobs
= (JOB
**)NULL
;
167 /* The number of slots currently allocated to JOBS. */
171 /* The controlling tty for this shell. */
174 /* The shell's process group. */
175 pid_t shell_pgrp
= NO_PID
;
177 /* The terminal's process group. */
178 pid_t terminal_pgrp
= NO_PID
;
180 /* The process group of the shell's parent. */
181 pid_t original_pgrp
= NO_PID
;
183 /* The process group of the pipeline currently being made. */
184 pid_t pipeline_pgrp
= (pid_t
)0;
186 #if defined (PGRP_PIPE)
187 /* Pipes which each shell uses to communicate with the process group leader
188 until all of the processes in a pipeline have been started. Then the
189 process leader is allowed to continue. */
190 int pgrp_pipe
[2] = { -1, -1 };
194 /* The job which is current; i.e. the one that `%+' stands for. */
195 int current_job
= NO_JOB
;
197 /* The previous job; i.e. the one that `%-' stands for. */
198 int previous_job
= NO_JOB
;
201 /* Last child made by the shell. */
202 pid_t last_made_pid
= NO_PID
;
204 /* Pid of the last asynchronous child. */
205 pid_t last_asynchronous_pid
= NO_PID
;
207 /* The pipeline currently being built. */
208 PROCESS
*the_pipeline
= (PROCESS
*)NULL
;
210 /* If this is non-zero, do job control. */
213 /* Call this when you start making children. */
214 int already_making_children
= 0;
216 /* If this is non-zero, $LINES and $COLUMNS are reset after every process
217 exits from get_tty_state(). */
218 int check_window_size
;
220 /* Functions local to this file. */
222 static sighandler wait_sigint_handler
__P((int));
223 static sighandler sigchld_handler
__P((int));
224 static sighandler sigcont_sighandler
__P((int));
225 static sighandler sigstop_sighandler
__P((int));
227 static int waitchld
__P((pid_t
, int));
229 static PROCESS
*find_pipeline
__P((pid_t
, int, int *));
230 static PROCESS
*find_process
__P((pid_t
, int, int *));
232 static char *current_working_directory
__P((void));
233 static char *job_working_directory
__P((void));
234 static char *j_strsignal
__P((int));
235 static char *printable_job_status
__P((int, PROCESS
*, int));
237 static PROCESS
*find_last_proc
__P((int, int));
238 static pid_t find_last_pid
__P((int, int));
240 static int set_new_line_discipline
__P((int));
241 static int map_over_jobs
__P((sh_job_map_func_t
*, int, int));
242 static int job_last_stopped
__P((int));
243 static int job_last_running
__P((int));
244 static int most_recent_job_in_state
__P((int, JOB_STATE
));
245 static int find_job
__P((pid_t
, int, PROCESS
**));
246 static int print_job
__P((JOB
*, int, int, int));
247 static int process_exit_status
__P((WAIT
));
248 static int process_exit_signal
__P((WAIT
));
249 static int job_exit_status
__P((int));
250 static int job_exit_signal
__P((int));
251 static int set_job_status_and_cleanup
__P((int));
253 static WAIT job_signal_status
__P((int));
254 static WAIT raw_job_exit_status
__P((int));
256 static void notify_of_job_status
__P((void));
257 static void reset_job_indices
__P((void));
258 static void cleanup_dead_jobs
__P((void));
259 static int processes_in_job
__P((int));
260 static void realloc_jobs_list
__P((void));
261 static int compact_jobs_list
__P((int));
262 static int discard_pipeline
__P((PROCESS
*));
263 static void add_process
__P((char *, pid_t
));
264 static void print_pipeline
__P((PROCESS
*, int, int, FILE *));
265 static void pretty_print_job
__P((int, int, FILE *));
266 static void set_current_job
__P((int));
267 static void reset_current
__P((void));
268 static void set_job_running
__P((int));
269 static void setjstatus
__P((int));
270 static int maybe_give_terminal_to
__P((pid_t
, pid_t
, int));
271 static void mark_all_jobs_as_dead
__P((void));
272 static void mark_dead_jobs_as_notified
__P((int));
273 static void restore_sigint_handler
__P((void));
274 #if defined (PGRP_PIPE)
275 static void pipe_read
__P((int *));
278 static struct pidstat
*bgp_alloc
__P((pid_t
, int));
279 static struct pidstat
*bgp_add
__P((pid_t
, int));
280 static int bgp_delete
__P((pid_t
));
281 static void bgp_clear
__P((void));
282 static int bgp_search
__P((pid_t
));
283 static void bgp_prune
__P((void));
285 #if defined (ARRAY_VARS)
286 static int *pstatuses
; /* list of pipeline statuses */
290 /* Used to synchronize between wait_for and other functions and the SIGCHLD
293 static int queue_sigchld
;
295 #define QUEUE_SIGCHLD(os) (os) = sigchld, queue_sigchld++
297 #define UNQUEUE_SIGCHLD(os) \
300 if (queue_sigchld == 0 && os != sigchld) \
304 static SigHandler
*old_tstp
, *old_ttou
, *old_ttin
;
305 static SigHandler
*old_cont
= (SigHandler
*)SIG_DFL
;
307 /* A place to temporarily save the current pipeline. */
308 static PROCESS
*saved_pipeline
;
309 static int saved_already_making_children
;
311 /* Set this to non-zero whenever you don't want the jobs list to change at
312 all: no jobs deleted and no status change notifications. This is used,
313 for example, when executing SIGCHLD traps, which may run arbitrary
315 static int jobs_list_frozen
;
317 static char retcode_name_buffer
[64];
319 /* flags to detect pid wraparound */
320 static pid_t first_pid
= NO_PID
;
321 static int pid_wrap
= -1;
323 #if !defined (_POSIX_VERSION)
325 /* These are definitions to map POSIX 1003.1 functions onto existing BSD
326 library functions and system calls. */
327 #define setpgid(pid, pgrp) setpgrp (pid, pgrp)
328 #define tcsetpgrp(fd, pgrp) ioctl ((fd), TIOCSPGRP, &(pgrp))
336 /* ioctl will handle setting errno correctly. */
337 if (ioctl (fd
, TIOCGPGRP
, &pgrp
) < 0)
342 #endif /* !_POSIX_VERSION */
344 /* Initialize the global job stats structure and other bookkeeping variables */
353 /* Return the working directory for the current process. Unlike
354 job_working_directory, this does not call malloc (), nor do any
355 of the functions it calls. This is so that it can safely be called
356 from a signal handler. */
358 current_working_directory ()
361 static char d
[PATH_MAX
];
363 dir
= get_string_value ("PWD");
365 if (dir
== 0 && the_current_working_directory
&& no_symbolic_links
)
366 dir
= the_current_working_directory
;
370 dir
= getcwd (d
, sizeof(d
));
375 return (dir
== 0) ? "<unknown>" : dir
;
378 /* Return the working directory for the current process. */
380 job_working_directory ()
384 dir
= get_string_value ("PWD");
386 return (savestring (dir
));
388 dir
= get_working_directory ("job-working-directory");
392 return (savestring ("<unknown>"));
398 if (already_making_children
)
401 already_making_children
= 1;
406 stop_making_children ()
408 already_making_children
= 0;
412 cleanup_the_pipeline ()
417 BLOCK_CHILD (set
, oset
);
418 disposer
= the_pipeline
;
419 the_pipeline
= (PROCESS
*)NULL
;
420 UNBLOCK_CHILD (oset
);
423 discard_pipeline (disposer
);
427 save_pipeline (clear
)
430 saved_pipeline
= the_pipeline
;
432 the_pipeline
= (PROCESS
*)NULL
;
433 saved_already_making_children
= already_making_children
;
437 restore_pipeline (discard
)
440 PROCESS
*old_pipeline
;
442 old_pipeline
= the_pipeline
;
443 the_pipeline
= saved_pipeline
;
444 already_making_children
= saved_already_making_children
;
445 if (discard
&& old_pipeline
)
446 discard_pipeline (old_pipeline
);
449 /* Start building a pipeline. */
455 cleanup_the_pipeline ();
457 #if defined (PGRP_PIPE)
458 sh_closepipe (pgrp_pipe
);
462 #if defined (PGRP_PIPE)
465 if (pipe (pgrp_pipe
) == -1)
466 sys_error (_("start_pipeline: pgrp pipe"));
471 /* Stop building a pipeline. Install the process list in the job array.
472 This returns the index of the newly installed job.
473 DEFERRED is a command structure to be executed upon satisfactory
474 execution exit of this pipeline. */
476 stop_pipeline (async
, deferred
)
484 BLOCK_CHILD (set
, oset
);
486 #if defined (PGRP_PIPE)
487 /* The parent closes the process group synchronization pipe. */
488 sh_closepipe (pgrp_pipe
);
491 cleanup_dead_jobs ();
493 if (js
.j_jobslots
== 0)
495 js
.j_jobslots
= JOB_SLOTS
;
496 jobs
= (JOB
**)xmalloc (js
.j_jobslots
* sizeof (JOB
*));
498 /* Now blank out these new entries. */
499 for (i
= 0; i
< js
.j_jobslots
; i
++)
500 jobs
[i
] = (JOB
*)NULL
;
502 js
.j_firstj
= js
.j_lastj
= js
.j_njobs
= 0;
505 /* Scan from the last slot backward, looking for the next free one. */
506 /* XXX - revisit this interactive assumption */
507 /* XXX - this way for now */
510 for (i
= js
.j_jobslots
; i
; i
--)
517 /* This wraps around, but makes it inconvenient to extend the array */
518 for (i
= js
.j_lastj
+1; i
!= js
.j_lastj
; i
++)
520 if (i
>= js
.j_jobslots
)
528 /* This doesn't wrap around yet. */
529 for (i
= js
.j_lastj
? js
.j_lastj
+ 1 : js
.j_lastj
; i
< js
.j_jobslots
; i
++)
535 /* Do we need more room? */
537 /* First try compaction */
538 if ((interactive_shell
== 0 || subshell_environment
) && i
== js
.j_jobslots
&& js
.j_jobslots
>= MAX_JOBS_IN_ARRAY
)
539 i
= compact_jobs_list (0);
541 /* If we can't compact, reallocate */
542 if (i
== js
.j_jobslots
)
544 js
.j_jobslots
+= JOB_SLOTS
;
545 jobs
= (JOB
**)xrealloc (jobs
, (js
.j_jobslots
* sizeof (JOB
*)));
547 for (j
= i
; j
< js
.j_jobslots
; j
++)
548 jobs
[j
] = (JOB
*)NULL
;
551 /* Add the current pipeline to the job list. */
555 int any_running
, any_stopped
, n
;
557 newjob
= (JOB
*)xmalloc (sizeof (JOB
));
559 for (n
= 1, p
= the_pipeline
; p
->next
!= the_pipeline
; n
++, p
= p
->next
)
561 p
->next
= (PROCESS
*)NULL
;
562 newjob
->pipe
= REVERSE_LIST (the_pipeline
, PROCESS
*);
563 for (p
= newjob
->pipe
; p
->next
; p
= p
->next
)
565 p
->next
= newjob
->pipe
;
567 the_pipeline
= (PROCESS
*)NULL
;
568 newjob
->pgrp
= pipeline_pgrp
;
573 /* Flag to see if in another pgrp. */
575 newjob
->flags
|= J_JOBCONTROL
;
577 /* Set the state of this pipeline. */
579 any_running
= any_stopped
= 0;
582 any_running
|= PRUNNING (p
);
583 any_stopped
|= PSTOPPED (p
);
586 while (p
!= newjob
->pipe
);
588 newjob
->state
= any_running
? JRUNNING
: (any_stopped
? JSTOPPED
: JDEAD
);
589 newjob
->wd
= job_working_directory ();
590 newjob
->deferred
= deferred
;
592 newjob
->j_cleanup
= (sh_vptrfunc_t
*)NULL
;
593 newjob
->cleanarg
= (PTR_T
) NULL
;
596 if (newjob
->state
== JDEAD
&& (newjob
->flags
& J_FOREGROUND
))
598 if (newjob
->state
== JDEAD
)
600 js
.c_reaped
+= n
; /* wouldn't have been done since this was not part of a job */
609 newjob
= (JOB
*)NULL
;
612 js
.j_lastmade
= newjob
;
618 newjob
->flags
&= ~J_FOREGROUND
;
619 newjob
->flags
|= J_ASYNC
;
620 js
.j_lastasync
= newjob
;
628 newjob
->flags
|= J_FOREGROUND
;
630 * !!!!! NOTE !!!!! (chet@ins.cwru.edu)
632 * The currently-accepted job control wisdom says to set the
633 * terminal's process group n+1 times in an n-step pipeline:
634 * once in the parent and once in each child. This is where
635 * the parent gives it away.
637 * Don't give the terminal away if this shell is an asynchronous
641 if (job_control
&& newjob
->pgrp
&& (subshell_environment
&SUBSHELL_ASYNC
) == 0)
642 maybe_give_terminal_to (shell_pgrp
, newjob
->pgrp
, 0);
646 stop_making_children ();
647 UNBLOCK_CHILD (oset
);
648 return (js
.j_current
);
651 /* Functions to manage the list of exited background pids whose status has
654 static struct pidstat
*
655 bgp_alloc (pid
, status
)
661 ps
= (struct pidstat
*)xmalloc (sizeof (struct pidstat
));
664 ps
->next
= (struct pidstat
*)0;
668 static struct pidstat
*
669 bgp_add (pid
, status
)
675 ps
= bgp_alloc (pid
, status
);
677 if (bgpids
.list
== 0)
679 bgpids
.list
= bgpids
.end
= ps
;
680 bgpids
.npid
= 0; /* just to make sure */
684 bgpids
.end
->next
= ps
;
689 if (bgpids
.npid
> js
.c_childmax
)
699 struct pidstat
*prev
, *p
;
701 for (prev
= p
= bgpids
.list
; p
; prev
= p
, p
= p
->next
)
704 prev
->next
= p
->next
; /* remove from list */
709 return 0; /* not found */
712 itrace("bgp_delete: deleting %d", pid
);
715 /* Housekeeping in the border cases. */
716 if (p
== bgpids
.list
)
717 bgpids
.list
= bgpids
.list
->next
;
718 else if (p
== bgpids
.end
)
722 if (bgpids
.npid
== 0)
723 bgpids
.list
= bgpids
.end
= 0;
724 else if (bgpids
.npid
== 1)
725 bgpids
.end
= bgpids
.list
; /* just to make sure */
731 /* Clear out the list of saved statuses */
735 struct pidstat
*ps
, *p
;
737 for (ps
= bgpids
.list
; ps
; )
743 bgpids
.list
= bgpids
.end
= 0;
747 /* Search for PID in the list of saved background pids; return its status if
748 found. If not found, return -1. */
755 for (ps
= bgpids
.list
; ps
; ps
= ps
->next
)
766 while (bgpids
.npid
> js
.c_childmax
)
769 bgpids
.list
= bgpids
.list
->next
;
775 /* Reset the values of js.j_lastj and js.j_firstj after one or both have
776 been deleted. The caller should check whether js.j_njobs is 0 before
777 calling this. This wraps around, but the rest of the code does not. At
778 this point, it should not matter. */
784 if (jobs
[js
.j_firstj
] == 0)
787 if (old
>= js
.j_jobslots
)
788 old
= js
.j_jobslots
- 1;
789 while (js
.j_firstj
!= old
)
791 if (js
.j_firstj
>= js
.j_jobslots
)
793 if (jobs
[js
.j_firstj
] || js
.j_firstj
== old
) /* needed if old == 0 */
797 if (js
.j_firstj
== old
)
798 js
.j_firstj
= js
.j_lastj
= js
.j_njobs
= 0;
800 if (jobs
[js
.j_lastj
] == 0)
805 while (js
.j_lastj
!= old
)
808 js
.j_lastj
= js
.j_jobslots
- 1;
809 if (jobs
[js
.j_lastj
] || js
.j_lastj
== old
) /* needed if old == js.j_jobslots */
813 if (js
.j_lastj
== old
)
814 js
.j_firstj
= js
.j_lastj
= js
.j_njobs
= 0;
818 /* Delete all DEAD jobs that the user had received notification about. */
825 if (js
.j_jobslots
== 0 || jobs_list_frozen
)
830 /* XXX could use js.j_firstj and js.j_lastj here */
831 for (i
= 0; i
< js
.j_jobslots
; i
++)
834 if (i
< js
.j_firstj
&& jobs
[i
])
835 itrace("cleanup_dead_jobs: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
836 if (i
> js
.j_lastj
&& jobs
[i
])
837 itrace("cleanup_dead_jobs: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
840 if (jobs
[i
] && DEADJOB (i
) && IS_NOTIFIED (i
))
844 #if defined (COPROCESS_SUPPORT)
852 processes_in_job (job
)
865 while (p
!= jobs
[job
]->pipe
);
877 job
= find_job (pid
, 0, &p
);
881 itrace ("delete_old_job: found pid %d in job %d with state %d", pid
, job
, jobs
[job
]->state
);
883 if (JOBSTATE (job
) == JDEAD
)
884 delete_job (job
, DEL_NOBGPID
);
887 internal_warning (_("forked pid %d appears in running job %d"), pid
, job
);
894 /* Reallocate and compress the jobs list. This returns with a jobs array
895 whose size is a multiple of JOB_SLOTS and can hold the current number of
896 jobs. Heuristics are used to minimize the number of new reallocs. */
901 int nsize
, i
, j
, ncur
, nprev
;
904 ncur
= nprev
= NO_JOB
;
905 nsize
= ((js
.j_njobs
+ JOB_SLOTS
- 1) / JOB_SLOTS
);
907 i
= js
.j_njobs
% JOB_SLOTS
;
908 if (i
== 0 || i
> (JOB_SLOTS
>> 1))
911 BLOCK_CHILD (set
, oset
);
912 nlist
= (js
.j_jobslots
== nsize
) ? jobs
: (JOB
**) xmalloc (nsize
* sizeof (JOB
*));
914 js
.c_reaped
= js
.j_ndead
= 0;
915 for (i
= j
= 0; i
< js
.j_jobslots
; i
++)
918 if (i
== js
.j_current
)
920 if (i
== js
.j_previous
)
922 nlist
[j
++] = jobs
[i
];
923 if (jobs
[i
]->state
== JDEAD
)
926 js
.c_reaped
+= processes_in_job (i
);
931 itrace ("realloc_jobs_list: resize jobs list from %d to %d", js
.j_jobslots
, nsize
);
932 itrace ("realloc_jobs_list: j_lastj changed from %d to %d", js
.j_lastj
, (j
> 0) ? j
- 1 : 0);
933 itrace ("realloc_jobs_list: j_njobs changed from %d to %d", js
.j_njobs
, j
);
934 itrace ("realloc_jobs_list: js.j_ndead %d js.c_reaped %d", js
.j_ndead
, js
.c_reaped
);
938 js
.j_lastj
= (j
> 0) ? j
- 1 : 0;
940 js
.j_jobslots
= nsize
;
942 /* Zero out remaining slots in new jobs list */
943 for ( ; j
< nsize
; j
++)
944 nlist
[j
] = (JOB
*)NULL
;
955 js
.j_previous
= nprev
;
957 /* Need to reset these */
958 if (js
.j_current
== NO_JOB
|| js
.j_previous
== NO_JOB
|| js
.j_current
> js
.j_lastj
|| js
.j_previous
> js
.j_lastj
)
962 itrace ("realloc_jobs_list: reset js.j_current (%d) and js.j_previous (%d)", js
.j_current
, js
.j_previous
);
965 UNBLOCK_CHILD (oset
);
968 /* Compact the jobs list by removing dead jobs. Assumed that we have filled
969 the jobs array to some predefined maximum. Called when the shell is not
970 the foreground process (subshell_environment != 0). Returns the first
971 available slot in the compacted list. If that value is js.j_jobslots, then
972 the list needs to be reallocated. The jobs array may be in new memory if
973 this returns > 0 and < js.j_jobslots. FLAGS is reserved for future use. */
975 compact_jobs_list (flags
)
978 if (js
.j_jobslots
== 0 || jobs_list_frozen
)
979 return js
.j_jobslots
;
982 realloc_jobs_list ();
985 itrace("compact_jobs_list: returning %d", (js
.j_lastj
|| jobs
[js
.j_lastj
]) ? js
.j_lastj
+ 1 : 0);
988 return ((js
.j_lastj
|| jobs
[js
.j_lastj
]) ? js
.j_lastj
+ 1 : 0);
991 /* Delete the job at INDEX from the job list. Must be called
992 with SIGCHLD blocked. */
994 delete_job (job_index
, dflags
)
995 int job_index
, dflags
;
1001 if (js
.j_jobslots
== 0 || jobs_list_frozen
)
1004 if ((dflags
& DEL_WARNSTOPPED
) && subshell_environment
== 0 && STOPPED (job_index
))
1005 internal_warning (_("deleting stopped job %d with process group %ld"), job_index
+1, (long)jobs
[job_index
]->pgrp
);
1006 temp
= jobs
[job_index
];
1010 if ((dflags
& DEL_NOBGPID
) == 0)
1012 proc
= find_last_proc (job_index
, 0);
1013 /* Could do this just for J_ASYNC jobs, but we save all. */
1015 bgp_add (proc
->pid
, process_exit_status (proc
->status
));
1018 jobs
[job_index
] = (JOB
*)NULL
;
1019 if (temp
== js
.j_lastmade
)
1021 else if (temp
== js
.j_lastasync
)
1025 ndel
= discard_pipeline (temp
->pipe
);
1027 js
.c_injobs
-= ndel
;
1028 if (temp
->state
== JDEAD
)
1030 js
.c_reaped
-= ndel
;
1032 if (js
.c_reaped
< 0)
1035 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
);
1042 dispose_command (temp
->deferred
);
1047 if (js
.j_njobs
== 0)
1048 js
.j_firstj
= js
.j_lastj
= 0;
1049 else if (jobs
[js
.j_firstj
] == 0 || jobs
[js
.j_lastj
] == 0)
1050 reset_job_indices ();
1052 if (job_index
== js
.j_current
|| job_index
== js
.j_previous
)
1056 /* Must be called with SIGCHLD blocked. */
1058 nohup_job (job_index
)
1063 if (js
.j_jobslots
== 0)
1066 if (temp
= jobs
[job_index
])
1067 temp
->flags
|= J_NOHUP
;
1070 /* Get rid of the data structure associated with a process chain. */
1072 discard_pipeline (chain
)
1073 register PROCESS
*chain
;
1075 register PROCESS
*this, *next
;
1083 FREE (this->command
);
1088 while (this != chain
);
1093 /* Add this process to the chain being built in the_pipeline.
1094 NAME is the command string that will be exec'ed later.
1095 PID is the process id of the child. */
1097 add_process (name
, pid
)
1103 #if defined (RECYCLES_PIDS)
1105 p
= find_process (pid
, 0, &j
);
1110 internal_warning (_("add_process: process %5ld (%s) in the_pipeline"), (long)p
->pid
, p
->command
);
1113 internal_warning (_("add_process: pid %5ld (%s) marked as still alive"), (long)p
->pid
, p
->command
);
1114 p
->running
= PS_RECYCLED
; /* mark as recycled */
1118 t
= (PROCESS
*)xmalloc (sizeof (PROCESS
));
1119 t
->next
= the_pipeline
;
1121 WSTATUS (t
->status
) = 0;
1122 t
->running
= PS_RUNNING
;
1131 while (p
->next
!= t
->next
)
1138 /* Take the last job and make it the first job. Must be called with
1141 rotate_the_pipeline ()
1145 if (the_pipeline
->next
== the_pipeline
)
1147 for (p
= the_pipeline
; p
->next
!= the_pipeline
; p
= p
->next
)
1152 /* Reverse the order of the processes in the_pipeline. Must be called with
1155 reverse_the_pipeline ()
1159 if (the_pipeline
->next
== the_pipeline
)
1162 for (p
= the_pipeline
; p
->next
!= the_pipeline
; p
= p
->next
)
1164 p
->next
= (PROCESS
*)NULL
;
1166 n
= REVERSE_LIST (the_pipeline
, PROCESS
*);
1169 for (p
= the_pipeline
; p
->next
; p
= p
->next
)
1171 p
->next
= the_pipeline
;
1175 /* Map FUNC over the list of jobs. If FUNC returns non-zero,
1176 then it is time to stop mapping, and that is the return value
1177 for map_over_jobs. FUNC is called with a JOB, arg1, arg2,
1180 map_over_jobs (func
, arg1
, arg2
)
1181 sh_job_map_func_t
*func
;
1188 if (js
.j_jobslots
== 0)
1191 BLOCK_CHILD (set
, oset
);
1193 /* XXX could use js.j_firstj here */
1194 for (i
= result
= 0; i
< js
.j_jobslots
; i
++)
1197 if (i
< js
.j_firstj
&& jobs
[i
])
1198 itrace("map_over_jobs: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
1199 if (i
> js
.j_lastj
&& jobs
[i
])
1200 itrace("map_over_jobs: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
1204 result
= (*func
)(jobs
[i
], arg1
, arg2
, i
);
1210 UNBLOCK_CHILD (oset
);
1215 /* Cause all the jobs in the current pipeline to exit. */
1217 terminate_current_pipeline ()
1219 if (pipeline_pgrp
&& pipeline_pgrp
!= shell_pgrp
)
1221 killpg (pipeline_pgrp
, SIGTERM
);
1222 killpg (pipeline_pgrp
, SIGCONT
);
1226 /* Cause all stopped jobs to exit. */
1228 terminate_stopped_jobs ()
1232 /* XXX could use js.j_firstj here */
1233 for (i
= 0; i
< js
.j_jobslots
; i
++)
1235 if (jobs
[i
] && STOPPED (i
))
1237 killpg (jobs
[i
]->pgrp
, SIGTERM
);
1238 killpg (jobs
[i
]->pgrp
, SIGCONT
);
1243 /* Cause all jobs, running or stopped, to receive a hangup signal. If
1244 a job is marked J_NOHUP, don't send the SIGHUP. */
1250 /* XXX could use js.j_firstj here */
1251 for (i
= 0; i
< js
.j_jobslots
; i
++)
1255 if (jobs
[i
]->flags
& J_NOHUP
)
1257 killpg (jobs
[i
]->pgrp
, SIGHUP
);
1259 killpg (jobs
[i
]->pgrp
, SIGCONT
);
1265 kill_current_pipeline ()
1267 stop_making_children ();
1271 /* Return the pipeline that PID belongs to. Note that the pipeline
1272 doesn't have to belong to a job. Must be called with SIGCHLD blocked.
1273 If JOBP is non-null, return the index of the job containing PID. */
1275 find_pipeline (pid
, alive_only
, jobp
)
1278 int *jobp
; /* index into jobs list or NO_JOB */
1283 /* See if this process is in the pipeline that we are building. */
1291 /* Return it if we found it. Don't ever return a recycled pid. */
1292 if (p
->pid
== pid
&& ((alive_only
== 0 && PRECYCLED(p
) == 0) || PALIVE(p
)))
1297 while (p
!= the_pipeline
);
1300 job
= find_job (pid
, alive_only
, &p
);
1303 return (job
== NO_JOB
) ? (PROCESS
*)NULL
: jobs
[job
]->pipe
;
1306 /* Return the PROCESS * describing PID. If JOBP is non-null return the index
1307 into the jobs array of the job containing PID. Must be called with
1310 find_process (pid
, alive_only
, jobp
)
1313 int *jobp
; /* index into jobs list or NO_JOB */
1317 p
= find_pipeline (pid
, alive_only
, jobp
);
1318 while (p
&& p
->pid
!= pid
)
1323 /* Return the job index that PID belongs to, or NO_JOB if it doesn't
1324 belong to any job. Must be called with SIGCHLD blocked. */
1326 find_job (pid
, alive_only
, procp
)
1334 /* XXX could use js.j_firstj here, and should check js.j_lastj */
1335 for (i
= 0; i
< js
.j_jobslots
; i
++)
1338 if (i
< js
.j_firstj
&& jobs
[i
])
1339 itrace("find_job: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
1340 if (i
> js
.j_lastj
&& jobs
[i
])
1341 itrace("find_job: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
1349 if (p
->pid
== pid
&& ((alive_only
== 0 && PRECYCLED(p
) == 0) || PALIVE(p
)))
1358 while (p
!= jobs
[i
]->pipe
);
1365 /* Find a job given a PID. If BLOCK is non-zero, block SIGCHLD as
1366 required by find_job. */
1368 get_job_by_pid (pid
, block
)
1376 BLOCK_CHILD (set
, oset
);
1378 job
= find_job (pid
, 0, NULL
);
1381 UNBLOCK_CHILD (oset
);
1386 /* Print descriptive information about the job with leader pid PID. */
1394 BLOCK_CHILD (set
, oset
);
1396 job
= find_job (pid
, 0, NULL
);
1399 fprintf (stderr
, "[%d] %ld\n", job
+ 1, (long)pid
);
1401 programming_error (_("describe_pid: %ld: no such pid"), (long)pid
);
1403 UNBLOCK_CHILD (oset
);
1415 x
= retcode_name_buffer
;
1416 sprintf (x
, _("Signal %d"), s
);
1422 printable_job_status (j
, p
, format
)
1432 if (STOPPED (j
) && format
== 0)
1434 if (posixly_correct
== 0 || p
== 0 || (WIFSTOPPED (p
->status
) == 0))
1435 temp
= _("Stopped");
1438 temp
= retcode_name_buffer
;
1439 sprintf (temp
, _("Stopped(%s)"), signal_name (WSTOPSIG (p
->status
)));
1442 else if (RUNNING (j
))
1443 temp
= _("Running");
1446 if (WIFSTOPPED (p
->status
))
1447 temp
= j_strsignal (WSTOPSIG (p
->status
));
1448 else if (WIFSIGNALED (p
->status
))
1449 temp
= j_strsignal (WTERMSIG (p
->status
));
1450 else if (WIFEXITED (p
->status
))
1452 temp
= retcode_name_buffer
;
1453 es
= WEXITSTATUS (p
->status
);
1455 strcpy (temp
, _("Done"));
1456 else if (posixly_correct
)
1457 sprintf (temp
, _("Done(%d)"), es
);
1459 sprintf (temp
, _("Exit %d"), es
);
1462 temp
= _("Unknown status");
1468 /* This is the way to print out information on a job if you
1469 know the index. FORMAT is:
1471 JLIST_NORMAL) [1]+ Running emacs
1472 JLIST_LONG ) [1]+ 2378 Running emacs
1473 -1 ) [1]+ 2378 emacs
1475 JLIST_NORMAL) [1]+ Stopped ls | more
1476 JLIST_LONG ) [1]+ 2369 Stopped ls
1479 Just list the pid of the process group leader (really
1482 Use format JLIST_NORMAL, but list only jobs about which
1483 the user has not been notified. */
1485 /* Print status for pipeline P. If JOB_INDEX is >= 0, it is the index into
1486 the JOBS array corresponding to this pipeline. FORMAT is as described
1487 above. Must be called with SIGCHLD blocked.
1489 If you're printing a pipeline that's not in the jobs array, like the
1490 current pipeline as it's being created, pass -1 for JOB_INDEX */
1492 print_pipeline (p
, job_index
, format
, stream
)
1494 int job_index
, format
;
1497 PROCESS
*first
, *last
, *show
;
1498 int es
, name_padding
;
1505 while (last
->next
!= first
)
1511 fprintf (stream
, format
? " " : " |");
1513 if (format
!= JLIST_STANDARD
)
1514 fprintf (stream
, "%5ld", (long)p
->pid
);
1516 fprintf (stream
, " ");
1518 if (format
> -1 && job_index
>= 0)
1520 show
= format
? p
: last
;
1521 temp
= printable_job_status (job_index
, show
, format
);
1527 if (show
->running
== first
->running
&&
1528 WSTATUS (show
->status
) == WSTATUS (first
->status
))
1532 temp
= (char *)NULL
;
1537 fprintf (stream
, "%s", temp
);
1541 es
= 2; /* strlen ("| ") */
1542 name_padding
= LONGEST_SIGNAL_DESC
- es
;
1544 fprintf (stream
, "%*s", name_padding
, "");
1546 if ((WIFSTOPPED (show
->status
) == 0) &&
1547 (WIFCONTINUED (show
->status
) == 0) &&
1548 WIFCORED (show
->status
))
1549 fprintf (stream
, _("(core dumped) "));
1553 if (p
!= first
&& format
)
1554 fprintf (stream
, "| ");
1557 fprintf (stream
, "%s", p
->command
);
1559 if (p
== last
&& job_index
>= 0)
1561 temp
= current_working_directory ();
1563 if (RUNNING (job_index
) && (IS_FOREGROUND (job_index
) == 0))
1564 fprintf (stream
, " &");
1566 if (strcmp (temp
, jobs
[job_index
]->wd
) != 0)
1568 _(" (wd: %s)"), polite_directory_format (jobs
[job_index
]->wd
));
1571 if (format
|| (p
== last
))
1573 /* We need to add a CR only if this is an interactive shell, and
1574 we're reporting the status of a completed job asynchronously.
1575 We can't really check whether this particular job is being
1576 reported asynchronously, so just add the CR if the shell is
1577 currently interactive and asynchronous notification is enabled. */
1578 if (asynchronous_notification
&& interactive
)
1579 fprintf (stream
, "\r\n");
1581 fprintf (stream
, "\n");
1591 /* Print information to STREAM about jobs[JOB_INDEX] according to FORMAT.
1592 Must be called with SIGCHLD blocked or queued with queue_sigchld */
1594 pretty_print_job (job_index
, format
, stream
)
1595 int job_index
, format
;
1598 register PROCESS
*p
;
1600 /* Format only pid information about the process group leader? */
1601 if (format
== JLIST_PID_ONLY
)
1603 fprintf (stream
, "%ld\n", (long)jobs
[job_index
]->pipe
->pid
);
1607 if (format
== JLIST_CHANGED_ONLY
)
1609 if (IS_NOTIFIED (job_index
))
1611 format
= JLIST_STANDARD
;
1614 if (format
!= JLIST_NONINTERACTIVE
)
1615 fprintf (stream
, "[%d]%c ", job_index
+ 1,
1616 (job_index
== js
.j_current
) ? '+':
1617 (job_index
== js
.j_previous
) ? '-' : ' ');
1619 if (format
== JLIST_NONINTERACTIVE
)
1620 format
= JLIST_LONG
;
1622 p
= jobs
[job_index
]->pipe
;
1624 print_pipeline (p
, job_index
, format
, stream
);
1626 /* We have printed information about this job. When the job's
1627 status changes, waitchld () sets the notification flag to 0. */
1628 jobs
[job_index
]->flags
|= J_NOTIFIED
;
1632 print_job (job
, format
, state
, job_index
)
1634 int format
, state
, job_index
;
1636 if (state
== -1 || (JOB_STATE
)state
== job
->state
)
1637 pretty_print_job (job_index
, format
, stdout
);
1642 list_one_job (job
, format
, ignore
, job_index
)
1644 int format
, ignore
, job_index
;
1646 pretty_print_job (job_index
, format
, stdout
);
1650 list_stopped_jobs (format
)
1653 cleanup_dead_jobs ();
1654 map_over_jobs (print_job
, format
, (int)JSTOPPED
);
1658 list_running_jobs (format
)
1661 cleanup_dead_jobs ();
1662 map_over_jobs (print_job
, format
, (int)JRUNNING
);
1665 /* List jobs. If FORMAT is non-zero, then the long form of the information
1666 is printed, else just a short version. */
1668 list_all_jobs (format
)
1671 cleanup_dead_jobs ();
1672 map_over_jobs (print_job
, format
, -1);
1675 /* Fork, handling errors. Returns the pid of the newly made child, or 0.
1676 COMMAND is just for remembering the name of the command; we don't do
1677 anything else with it. ASYNC_P says what to do with the tty. If
1678 non-zero, then don't give it away. */
1680 make_child (command
, async_p
)
1689 sigaddset (&set
, SIGCHLD
);
1690 sigaddset (&set
, SIGINT
);
1691 sigemptyset (&oset
);
1692 sigprocmask (SIG_BLOCK
, &set
, &oset
);
1698 #if defined (BUFFERED_INPUT)
1699 /* If default_buffered_input is active, we are reading a script. If
1700 the command is asynchronous, we have already duplicated /dev/null
1701 as fd 0, but have not changed the buffered stream corresponding to
1702 the old fd 0. We don't want to sync the stream in this case. */
1703 if (default_buffered_input
!= -1 &&
1704 (!async_p
|| default_buffered_input
> 0))
1705 sync_buffered_stream (default_buffered_input
);
1706 #endif /* BUFFERED_INPUT */
1708 /* Create the child, handle severe errors. Retry on EAGAIN. */
1709 while ((pid
= fork ()) < 0 && errno
== EAGAIN
&& forksleep
< FORKSLEEP_MAX
)
1711 sys_error ("fork: retry");
1712 if (sleep (forksleep
) != 0)
1721 /* Kill all of the processes in the current pipeline. */
1722 terminate_current_pipeline ();
1724 /* Discard the current pipeline, if any. */
1726 kill_current_pipeline ();
1728 throw_to_top_level (); /* Reset signals, etc. */
1733 /* In the child. Give this child the right process group, set the
1734 signals to the default state for a new process. */
1738 #if defined (BUFFERED_INPUT)
1739 /* Close default_buffered_input if it's > 0. We don't close it if it's
1740 0 because that's the file descriptor used when redirecting input,
1741 and it's wrong to close the file in that case. */
1742 unset_bash_input (0);
1743 #endif /* BUFFERED_INPUT */
1745 /* Restore top-level signal mask. */
1746 sigprocmask (SIG_SETMASK
, &top_level_mask
, (sigset_t
*)NULL
);
1750 /* All processes in this pipeline belong in the same
1753 if (pipeline_pgrp
== 0) /* This is the first child. */
1754 pipeline_pgrp
= mypid
;
1756 /* Check for running command in backquotes. */
1757 if (pipeline_pgrp
== shell_pgrp
)
1758 ignore_tty_job_signals ();
1760 default_tty_job_signals ();
1762 /* Set the process group before trying to mess with the terminal's
1763 process group. This is mandated by POSIX. */
1764 /* This is in accordance with the Posix 1003.1 standard,
1765 section B.7.2.4, which says that trying to set the terminal
1766 process group with tcsetpgrp() to an unused pgrp value (like
1767 this would have for the first child) is an error. Section
1768 B.4.3.3, p. 237 also covers this, in the context of job control
1770 if (setpgid (mypid
, pipeline_pgrp
) < 0)
1771 sys_error (_("child setpgid (%ld to %ld)"), (long)mypid
, (long)pipeline_pgrp
);
1773 /* By convention (and assumption above), if
1774 pipeline_pgrp == shell_pgrp, we are making a child for
1775 command substitution.
1776 In this case, we don't want to give the terminal to the
1777 shell's process group (we could be in the middle of a
1778 pipeline, for example). */
1779 if (async_p
== 0 && pipeline_pgrp
!= shell_pgrp
&& ((subshell_environment
&SUBSHELL_ASYNC
) == 0))
1780 give_terminal_to (pipeline_pgrp
, 0);
1782 #if defined (PGRP_PIPE)
1783 if (pipeline_pgrp
== mypid
)
1784 pipe_read (pgrp_pipe
);
1787 else /* Without job control... */
1789 if (pipeline_pgrp
== 0)
1790 pipeline_pgrp
= shell_pgrp
;
1792 /* If these signals are set to SIG_DFL, we encounter the curious
1793 situation of an interactive ^Z to a running process *working*
1794 and stopping the process, but being unable to do anything with
1795 that process to change its state. On the other hand, if they
1796 are set to SIG_IGN, jobs started from scripts do not stop when
1797 the shell running the script gets a SIGTSTP and stops. */
1799 default_tty_job_signals ();
1802 #if defined (PGRP_PIPE)
1803 /* Release the process group pipe, since our call to setpgid ()
1804 is done. The last call to sh_closepipe is done in stop_pipeline. */
1805 sh_closepipe (pgrp_pipe
);
1806 #endif /* PGRP_PIPE */
1809 /* Don't set last_asynchronous_pid in the child */
1811 last_asynchronous_pid
= mypid
; /* XXX */
1814 #if defined (RECYCLES_PIDS)
1815 if (last_asynchronous_pid
== mypid
)
1816 /* Avoid pid aliasing. 1 seems like a safe, unusual pid value. */
1817 last_asynchronous_pid
= 1;
1822 /* In the parent. Remember the pid of the child just created
1823 as the proper pgrp if this is the first child. */
1825 if (first_pid
== NO_PID
)
1827 else if (pid_wrap
== -1 && pid
< first_pid
)
1829 else if (pid_wrap
== 0 && pid
>= first_pid
)
1834 if (pipeline_pgrp
== 0)
1836 pipeline_pgrp
= pid
;
1837 /* Don't twiddle terminal pgrps in the parent! This is the bug,
1838 not the good thing of twiddling them in the child! */
1839 /* give_terminal_to (pipeline_pgrp, 0); */
1841 /* This is done on the recommendation of the Rationale section of
1842 the POSIX 1003.1 standard, where it discusses job control and
1843 shells. It is done to avoid possible race conditions. (Ref.
1844 1003.1 Rationale, section B.4.3.3, page 236). */
1845 setpgid (pid
, pipeline_pgrp
);
1849 if (pipeline_pgrp
== 0)
1850 pipeline_pgrp
= shell_pgrp
;
1853 /* Place all processes into the jobs array regardless of the
1854 state of job_control. */
1855 add_process (command
, pid
);
1858 last_asynchronous_pid
= pid
;
1859 #if defined (RECYCLES_PIDS)
1860 else if (last_asynchronous_pid
== pid
)
1861 /* Avoid pid aliasing. 1 seems like a safe, unusual pid value. */
1862 last_asynchronous_pid
= 1;
1866 delete_old_job (pid
);
1868 #if !defined (RECYCLES_PIDS)
1869 /* Only check for saved status if we've saved more than CHILD_MAX
1870 statuses, unless the system recycles pids. */
1871 if ((js
.c_reaped
+ bgpids
.npid
) >= js
.c_childmax
)
1873 bgp_delete (pid
); /* new process, discard any saved status */
1875 last_made_pid
= pid
;
1881 /* Unblock SIGINT and SIGCHLD unless creating a pipeline, in which case
1882 SIGCHLD remains blocked until all commands in the pipeline have been
1884 sigprocmask (SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
1890 /* These two functions are called only in child processes. */
1892 ignore_tty_job_signals ()
1894 set_signal_handler (SIGTSTP
, SIG_IGN
);
1895 set_signal_handler (SIGTTIN
, SIG_IGN
);
1896 set_signal_handler (SIGTTOU
, SIG_IGN
);
1900 default_tty_job_signals ()
1902 set_signal_handler (SIGTSTP
, SIG_DFL
);
1903 set_signal_handler (SIGTTIN
, SIG_DFL
);
1904 set_signal_handler (SIGTTOU
, SIG_DFL
);
1907 /* When we end a job abnormally, or if we stop a job, we set the tty to the
1908 state kept in here. When a job ends normally, we set the state in here
1909 to the state of the tty. */
1911 static TTYSTRUCT shell_tty_info
;
1913 #if defined (NEW_TTY_DRIVER)
1914 static struct tchars shell_tchars
;
1915 static struct ltchars shell_ltchars
;
1916 #endif /* NEW_TTY_DRIVER */
1918 #if defined (NEW_TTY_DRIVER) && defined (DRAIN_OUTPUT)
1919 /* Since the BSD tty driver does not allow us to change the tty modes
1920 while simultaneously waiting for output to drain and preserving
1921 typeahead, we have to drain the output ourselves before calling
1922 ioctl. We cheat by finding the length of the output queue, and
1923 using select to wait for an appropriate length of time. This is
1924 a hack, and should be labeled as such (it's a hastily-adapted
1925 mutation of a `usleep' implementation). It's only reason for
1926 existing is the flaw in the BSD tty driver. */
1928 static int ttspeeds
[] =
1930 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200,
1931 1800, 2400, 4800, 9600, 19200, 38400
1938 register int delay
= ttspeeds
[ospeed
];
1944 while ((ioctl (fd
, TIOCOUTQ
, &n
) == 0) && n
)
1946 if (n
> (delay
/ 100))
1950 n
*= 10; /* 2 bits more for conservativeness. */
1951 tv
.tv_sec
= n
/ delay
;
1952 tv
.tv_usec
= ((n
% delay
) * 1000000) / delay
;
1953 select (fd
, (fd_set
*)0, (fd_set
*)0, (fd_set
*)0, &tv
);
1959 #endif /* NEW_TTY_DRIVER && DRAIN_OUTPUT */
1961 /* Return the fd from which we are actually getting input. */
1962 #define input_tty() (shell_tty != -1) ? shell_tty : fileno (stderr)
1964 /* Fill the contents of shell_tty_info with the current tty info. */
1973 #if defined (NEW_TTY_DRIVER)
1974 ioctl (tty
, TIOCGETP
, &shell_tty_info
);
1975 ioctl (tty
, TIOCGETC
, &shell_tchars
);
1976 ioctl (tty
, TIOCGLTC
, &shell_ltchars
);
1977 #endif /* NEW_TTY_DRIVER */
1979 #if defined (TERMIO_TTY_DRIVER)
1980 ioctl (tty
, TCGETA
, &shell_tty_info
);
1981 #endif /* TERMIO_TTY_DRIVER */
1983 #if defined (TERMIOS_TTY_DRIVER)
1984 if (tcgetattr (tty
, &shell_tty_info
) < 0)
1987 /* Only print an error message if we're really interactive at
1990 sys_error ("[%ld: %d (%d)] tcgetattr", (long)getpid (), shell_level
, tty
);
1994 #endif /* TERMIOS_TTY_DRIVER */
1995 if (check_window_size
)
1996 get_new_window_size (0, (int *)0, (int *)0);
2001 /* Make the current tty use the state in shell_tty_info. */
2010 #if defined (NEW_TTY_DRIVER)
2011 # if defined (DRAIN_OUTPUT)
2012 draino (tty
, shell_tty_info
.sg_ospeed
);
2013 # endif /* DRAIN_OUTPUT */
2014 ioctl (tty
, TIOCSETN
, &shell_tty_info
);
2015 ioctl (tty
, TIOCSETC
, &shell_tchars
);
2016 ioctl (tty
, TIOCSLTC
, &shell_ltchars
);
2017 #endif /* NEW_TTY_DRIVER */
2019 #if defined (TERMIO_TTY_DRIVER)
2020 ioctl (tty
, TCSETAW
, &shell_tty_info
);
2021 #endif /* TERMIO_TTY_DRIVER */
2023 #if defined (TERMIOS_TTY_DRIVER)
2024 if (tcsetattr (tty
, TCSADRAIN
, &shell_tty_info
) < 0)
2026 /* Only print an error message if we're really interactive at
2029 sys_error ("[%ld: %d (%d)] tcsetattr", (long)getpid (), shell_level
, tty
);
2032 #endif /* TERMIOS_TTY_DRIVER */
2037 /* Given an index into the jobs array JOB, return the PROCESS struct of the last
2038 process in that job's pipeline. This is the one whose exit status
2039 counts. Must be called with SIGCHLD blocked or queued. */
2041 find_last_proc (job
, block
)
2045 register PROCESS
*p
;
2049 BLOCK_CHILD (set
, oset
);
2051 p
= jobs
[job
]->pipe
;
2052 while (p
&& p
->next
!= jobs
[job
]->pipe
)
2056 UNBLOCK_CHILD (oset
);
2062 find_last_pid (job
, block
)
2068 p
= find_last_proc (job
, block
);
2069 /* Possible race condition here. */
2073 /* Wait for a particular child of the shell to finish executing.
2074 This low-level function prints an error message if PID is not
2075 a child of this shell. It returns -1 if it fails, or whatever
2076 wait_for returns otherwise. If the child is not found in the
2077 jobs table, it returns 127. */
2079 wait_for_single_pid (pid
)
2082 register PROCESS
*child
;
2086 BLOCK_CHILD (set
, oset
);
2087 child
= find_pipeline (pid
, 0, (int *)NULL
);
2088 UNBLOCK_CHILD (oset
);
2092 r
= bgp_search (pid
);
2099 internal_error (_("wait: pid %ld is not a child of this shell"), (long)pid
);
2105 /* POSIX.2: if we just waited for a job, we can remove it from the jobs
2107 BLOCK_CHILD (set
, oset
);
2108 job
= find_job (pid
, 0, NULL
);
2109 if (job
!= NO_JOB
&& jobs
[job
] && DEADJOB (job
))
2110 jobs
[job
]->flags
|= J_NOTIFIED
;
2111 UNBLOCK_CHILD (oset
);
2113 /* If running in posix mode, remove the job from the jobs table immediately */
2114 if (posixly_correct
)
2116 cleanup_dead_jobs ();
2123 /* Wait for all of the backgrounds of this shell to finish. */
2125 wait_for_background_pids ()
2127 register int i
, r
, waited_for
;
2131 for (waited_for
= 0;;)
2133 BLOCK_CHILD (set
, oset
);
2135 /* find first running job; if none running in foreground, break */
2136 /* XXX could use js.j_firstj and js.j_lastj here */
2137 for (i
= 0; i
< js
.j_jobslots
; i
++)
2140 if (i
< js
.j_firstj
&& jobs
[i
])
2141 itrace("wait_for_background_pids: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
2142 if (i
> js
.j_lastj
&& jobs
[i
])
2143 itrace("wait_for_background_pids: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
2145 if (jobs
[i
] && RUNNING (i
) && IS_FOREGROUND (i
) == 0)
2148 if (i
== js
.j_jobslots
)
2150 UNBLOCK_CHILD (oset
);
2154 /* now wait for the last pid in that job. */
2155 pid
= find_last_pid (i
, 0);
2156 UNBLOCK_CHILD (oset
);
2158 errno
= 0; /* XXX */
2159 r
= wait_for_single_pid (pid
);
2162 /* If we're mistaken about job state, compensate. */
2163 if (errno
== ECHILD
)
2164 mark_all_jobs_as_dead ();
2170 /* POSIX.2 says the shell can discard the statuses of all completed jobs if
2171 `wait' is called with no arguments. */
2172 mark_dead_jobs_as_notified (1);
2173 cleanup_dead_jobs ();
2177 /* Make OLD_SIGINT_HANDLER the SIGINT signal handler. */
2178 #define INVALID_SIGNAL_HANDLER (SigHandler *)wait_for_background_pids
2179 static SigHandler
*old_sigint_handler
= INVALID_SIGNAL_HANDLER
;
2182 restore_sigint_handler ()
2184 if (old_sigint_handler
!= INVALID_SIGNAL_HANDLER
)
2186 set_signal_handler (SIGINT
, old_sigint_handler
);
2187 old_sigint_handler
= INVALID_SIGNAL_HANDLER
;
2191 static int wait_sigint_received
;
2193 /* Handle SIGINT while we are waiting for children in a script to exit.
2194 The `wait' builtin should be interruptible, but all others should be
2195 effectively ignored (i.e. not cause the shell to exit). */
2197 wait_sigint_handler (sig
)
2200 SigHandler
*sigint_handler
;
2202 if (interrupt_immediately
||
2203 (this_shell_builtin
&& this_shell_builtin
== wait_builtin
))
2205 last_command_exit_value
= EXECUTION_FAILURE
;
2206 restore_sigint_handler ();
2207 /* If we got a SIGINT while in `wait', and SIGINT is trapped, do
2208 what POSIX.2 says (see builtins/wait.def for more info). */
2209 if (this_shell_builtin
&& this_shell_builtin
== wait_builtin
&&
2210 signal_is_trapped (SIGINT
) &&
2211 ((sigint_handler
= trap_to_sighandler (SIGINT
)) == trap_handler
))
2213 interrupt_immediately
= 0;
2214 trap_handler (SIGINT
); /* set pending_traps[SIGINT] */
2215 wait_signal_received
= SIGINT
;
2216 longjmp (wait_intr_buf
, 1);
2223 /* XXX - should this be interrupt_state? If it is, the shell will act
2224 as if it got the SIGINT interrupt. */
2225 wait_sigint_received
= 1;
2227 /* Otherwise effectively ignore the SIGINT and allow the running job to
2233 process_exit_signal (status
)
2236 return (WIFSIGNALED (status
) ? WTERMSIG (status
) : 0);
2240 process_exit_status (status
)
2243 if (WIFSIGNALED (status
))
2244 return (128 + WTERMSIG (status
));
2245 else if (WIFSTOPPED (status
) == 0)
2246 return (WEXITSTATUS (status
));
2248 return (EXECUTION_SUCCESS
);
2252 job_signal_status (job
)
2255 register PROCESS
*p
;
2258 p
= jobs
[job
]->pipe
;
2262 if (WIFSIGNALED(s
) || WIFSTOPPED(s
))
2266 while (p
!= jobs
[job
]->pipe
);
2271 /* Return the exit status of the last process in the pipeline for job JOB.
2272 This is the exit status of the entire job. */
2274 raw_job_exit_status (job
)
2277 register PROCESS
*p
;
2284 p
= jobs
[job
]->pipe
;
2287 if (WSTATUS (p
->status
) != EXECUTION_SUCCESS
)
2288 fail
= WSTATUS(p
->status
);
2291 while (p
!= jobs
[job
]->pipe
);
2292 WSTATUS (ret
) = fail
;
2296 for (p
= jobs
[job
]->pipe
; p
->next
!= jobs
[job
]->pipe
; p
= p
->next
)
2301 /* Return the exit status of job JOB. This is the exit status of the last
2302 (rightmost) process in the job's pipeline, modified if the job was killed
2303 by a signal or stopped. */
2305 job_exit_status (job
)
2308 return (process_exit_status (raw_job_exit_status (job
)));
2312 job_exit_signal (job
)
2315 return (process_exit_signal (raw_job_exit_status (job
)));
2318 #define FIND_CHILD(pid, child) \
2321 child = find_pipeline (pid, 0, (int *)NULL); \
2324 give_terminal_to (shell_pgrp, 0); \
2325 UNBLOCK_CHILD (oset); \
2326 internal_error (_("wait_for: No record of process %ld"), (long)pid); \
2327 restore_sigint_handler (); \
2328 return (termination_state = 127); \
2333 /* Wait for pid (one of our children) to terminate, then
2334 return the termination state. Returns 127 if PID is not found in
2335 the jobs table. Returns -1 if waitchld() returns -1, indicating
2336 that there are no unwaited-for child processes. */
2341 int job
, termination_state
, r
;
2343 register PROCESS
*child
;
2345 register PROCESS
*p
;
2347 /* In the case that this code is interrupted, and we longjmp () out of it,
2348 we are relying on the code in throw_to_top_level () to restore the
2349 top-level signal mask. */
2350 BLOCK_CHILD (set
, oset
);
2352 /* Ignore interrupts while waiting for a job run without job control
2353 to finish. We don't want the shell to exit if an interrupt is
2354 received, only if one of the jobs run is killed via SIGINT. If
2355 job control is not set, the job will be run in the same pgrp as
2356 the shell, and the shell will see any signals the job gets. In
2357 fact, we want this set every time the waiting shell and the waited-
2358 for process are in the same process group, including command
2361 /* This is possibly a race condition -- should it go in stop_pipeline? */
2362 wait_sigint_received
= 0;
2363 if (job_control
== 0 || (subshell_environment
&SUBSHELL_COMSUB
))
2365 old_sigint_handler
= set_signal_handler (SIGINT
, wait_sigint_handler
);
2366 if (old_sigint_handler
== SIG_IGN
)
2367 set_signal_handler (SIGINT
, old_sigint_handler
);
2370 termination_state
= last_command_exit_value
;
2372 if (interactive
&& job_control
== 0)
2375 /* If we say wait_for (), then we have a record of this child somewhere.
2376 If it and none of its peers are running, don't call waitchld(). */
2381 FIND_CHILD (pid
, child
);
2383 /* If this child is part of a job, then we are really waiting for the
2384 job to finish. Otherwise, we are waiting for the child to finish.
2385 We check for JDEAD in case the job state has been set by waitchld
2386 after receipt of a SIGCHLD. */
2388 job
= find_job (pid
, 0, NULL
);
2390 /* waitchld() takes care of setting the state of the job. If the job
2391 has already exited before this is called, sigchld_handler will have
2392 called waitchld and the state will be set to JDEAD. */
2394 if (PRUNNING(child
) || (job
!= NO_JOB
&& RUNNING (job
)))
2396 #if defined (WAITPID_BROKEN) /* SCOv4 */
2397 sigset_t suspend_set
;
2398 sigemptyset (&suspend_set
);
2399 sigsuspend (&suspend_set
);
2400 #else /* !WAITPID_BROKEN */
2401 # if defined (MUST_UNBLOCK_CHLD)
2402 struct sigaction act
, oact
;
2403 sigset_t nullset
, chldset
;
2405 sigemptyset (&nullset
);
2406 sigemptyset (&chldset
);
2407 sigprocmask (SIG_SETMASK
, &nullset
, &chldset
);
2408 act
.sa_handler
= SIG_DFL
;
2409 sigemptyset (&act
.sa_mask
);
2410 sigemptyset (&oact
.sa_mask
);
2412 sigaction (SIGCHLD
, &act
, &oact
);
2415 r
= waitchld (pid
, 1);
2416 # if defined (MUST_UNBLOCK_CHLD)
2417 sigaction (SIGCHLD
, &oact
, (struct sigaction
*)NULL
);
2418 sigprocmask (SIG_SETMASK
, &chldset
, (sigset_t
*)NULL
);
2421 if (r
== -1 && errno
== ECHILD
&& this_shell_builtin
== wait_builtin
)
2423 termination_state
= -1;
2424 goto wait_for_return
;
2427 /* If child is marked as running, but waitpid() returns -1/ECHILD,
2428 there is something wrong. Somewhere, wait should have returned
2429 that child's pid. Mark the child as not running and the job,
2430 if it exists, as JDEAD. */
2431 if (r
== -1 && errno
== ECHILD
)
2433 child
->running
= PS_DONE
;
2434 WSTATUS (child
->status
) = 0; /* XXX -- can't find true status */
2435 js
.c_living
= 0; /* no living child processes */
2438 jobs
[job
]->state
= JDEAD
;
2443 #endif /* WAITPID_BROKEN */
2446 /* If the shell is interactive, and job control is disabled, see
2447 if the foreground process has died due to SIGINT and jump out
2448 of the wait loop if it has. waitchld has already restored the
2449 old SIGINT signal handler. */
2450 if (interactive
&& job_control
== 0)
2453 while (PRUNNING (child
) || (job
!= NO_JOB
&& RUNNING (job
)));
2455 /* The exit state of the command is either the termination state of the
2456 child, or the termination state of the job. If a job, the status
2457 of the last child in the pipeline is the significant one. If the command
2458 or job was terminated by a signal, note that value also. */
2459 termination_state
= (job
!= NO_JOB
) ? job_exit_status (job
)
2460 : process_exit_status (child
->status
);
2461 last_command_exit_signal
= (job
!= NO_JOB
) ? job_exit_signal (job
)
2462 : process_exit_signal (child
->status
);
2465 if ((job
!= NO_JOB
&& JOBSTATE (job
) == JSTOPPED
) || WIFSTOPPED (child
->status
))
2466 termination_state
= 128 + WSTOPSIG (child
->status
);
2468 if (job
== NO_JOB
|| IS_JOBCONTROL (job
))
2470 /* XXX - under what circumstances is a job not present in the jobs
2471 table (job == NO_JOB)?
2472 1. command substitution
2474 In the case of command substitution, at least, it's probably not
2475 the right thing to give the terminal to the shell's process group,
2476 even though there is code in subst.c:command_substitute to work
2480 $PROMPT_COMMAND execution
2481 process substitution
2485 itrace("wait_for: job == NO_JOB, giving the terminal to shell_pgrp (%ld)", (long)shell_pgrp
);
2487 give_terminal_to (shell_pgrp
, 0);
2490 /* If the command did not exit cleanly, or the job is just
2491 being stopped, then reset the tty state back to what it
2492 was before this command. Reset the tty state and notify
2493 the user of the job termination only if the shell is
2494 interactive. Clean up any dead jobs in either case. */
2497 if (interactive_shell
&& subshell_environment
== 0)
2499 /* This used to use `child->status'. That's wrong, however, for
2500 pipelines. `child' is the first process in the pipeline. It's
2501 likely that the process we want to check for abnormal termination
2502 or stopping is the last process in the pipeline, especially if
2503 it's long-lived and the first process is short-lived. Since we
2504 know we have a job here, we can check all the processes in this
2505 job's pipeline and see if one of them stopped or terminated due
2506 to a signal. We might want to change this later to just check
2507 the last process in the pipeline. If no process exits due to a
2508 signal, S is left as the status of the last job in the pipeline. */
2509 s
= job_signal_status (job
);
2511 if (WIFSIGNALED (s
) || WIFSTOPPED (s
))
2515 /* If the current job was stopped or killed by a signal, and
2516 the user has requested it, get a possibly new window size */
2517 if (check_window_size
&& (job
== js
.j_current
|| IS_FOREGROUND (job
)))
2518 get_new_window_size (0, (int *)0, (int *)0);
2523 /* If job control is enabled, the job was started with job
2524 control, the job was the foreground job, and it was killed
2525 by SIGINT, then print a newline to compensate for the kernel
2526 printing the ^C without a trailing newline. */
2527 if (job_control
&& IS_JOBCONTROL (job
) && IS_FOREGROUND (job
) &&
2528 WIFSIGNALED (s
) && WTERMSIG (s
) == SIGINT
)
2530 /* If SIGINT is not trapped and the shell is in a for, while,
2531 or until loop, act as if the shell received SIGINT as
2532 well, so the loop can be broken. This doesn't call the
2533 SIGINT signal handler; maybe it should. */
2534 if (signal_is_trapped (SIGINT
) == 0 && (loop_level
|| (shell_compatibility_level
> 32 && executing_list
)))
2543 else if ((subshell_environment
& SUBSHELL_COMSUB
) && wait_sigint_received
)
2545 /* If waiting for a job in a subshell started to do command
2546 substitution, simulate getting and being killed by the SIGINT to
2547 pass the status back to our parent. */
2548 s
= job_signal_status (job
);
2550 if (WIFSIGNALED (s
) && WTERMSIG (s
) == SIGINT
&& signal_is_trapped (SIGINT
) == 0)
2552 UNBLOCK_CHILD (oset
);
2553 restore_sigint_handler ();
2554 old_sigint_handler
= set_signal_handler (SIGINT
, SIG_DFL
);
2555 if (old_sigint_handler
== SIG_IGN
)
2556 restore_sigint_handler ();
2558 kill (getpid (), SIGINT
);
2562 /* Moved here from set_job_status_and_cleanup, which is in the SIGCHLD
2563 signal handler path */
2564 if (DEADJOB (job
) && IS_FOREGROUND (job
) /*&& subshell_environment == 0*/)
2567 /* If this job is dead, notify the user of the status. If the shell
2568 is interactive, this will display a message on the terminal. If
2569 the shell is not interactive, make sure we turn on the notify bit
2570 so we don't get an unwanted message about the job's termination,
2571 and so delete_job really clears the slot in the jobs table. */
2572 notify_and_cleanup ();
2577 UNBLOCK_CHILD (oset
);
2579 /* Restore the original SIGINT signal handler before we return. */
2580 restore_sigint_handler ();
2582 return (termination_state
);
2585 /* Wait for the last process in the pipeline for JOB. Returns whatever
2586 wait_for returns: the last process's termination state or -1 if there
2587 are no unwaited-for child processes or an error occurs. */
2596 BLOCK_CHILD(set
, oset
);
2597 if (JOBSTATE (job
) == JSTOPPED
)
2598 internal_warning (_("wait_for_job: job %d is stopped"), job
+1);
2600 pid
= find_last_pid (job
, 0);
2601 UNBLOCK_CHILD(oset
);
2604 /* POSIX.2: we can remove the job from the jobs table if we just waited
2606 BLOCK_CHILD (set
, oset
);
2607 if (job
!= NO_JOB
&& jobs
[job
] && DEADJOB (job
))
2608 jobs
[job
]->flags
|= J_NOTIFIED
;
2609 UNBLOCK_CHILD (oset
);
2614 /* Print info about dead jobs, and then delete them from the list
2615 of known jobs. This does not actually delete jobs when the
2616 shell is not interactive, because the dead jobs are not marked
2619 notify_and_cleanup ()
2621 if (jobs_list_frozen
)
2624 if (interactive
|| interactive_shell
== 0 || sourcelevel
)
2625 notify_of_job_status ();
2627 cleanup_dead_jobs ();
2630 /* Make dead jobs disappear from the jobs array without notification.
2631 This is used when the shell is not interactive. */
2635 mark_dead_jobs_as_notified (0);
2636 cleanup_dead_jobs ();
2639 /* Return the next closest (chronologically) job to JOB which is in
2640 STATE. STATE can be JSTOPPED, JRUNNING. NO_JOB is returned if
2641 there is no next recent job. */
2643 most_recent_job_in_state (job
, state
)
2647 register int i
, result
;
2650 BLOCK_CHILD (set
, oset
);
2652 for (result
= NO_JOB
, i
= job
- 1; i
>= 0; i
--)
2654 if (jobs
[i
] && (JOBSTATE (i
) == state
))
2661 UNBLOCK_CHILD (oset
);
2666 /* Return the newest *stopped* job older than JOB, or NO_JOB if not
2669 job_last_stopped (job
)
2672 return (most_recent_job_in_state (job
, JSTOPPED
));
2675 /* Return the newest *running* job older than JOB, or NO_JOB if not
2678 job_last_running (job
)
2681 return (most_recent_job_in_state (job
, JRUNNING
));
2684 /* Make JOB be the current job, and make previous be useful. Must be
2685 called with SIGCHLD blocked. */
2687 set_current_job (job
)
2692 if (js
.j_current
!= job
)
2694 js
.j_previous
= js
.j_current
;
2698 /* First choice for previous job is the old current job. */
2699 if (js
.j_previous
!= js
.j_current
&&
2700 js
.j_previous
!= NO_JOB
&&
2701 jobs
[js
.j_previous
] &&
2702 STOPPED (js
.j_previous
))
2705 /* Second choice: Newest stopped job that is older than
2708 if (STOPPED (js
.j_current
))
2710 candidate
= job_last_stopped (js
.j_current
);
2712 if (candidate
!= NO_JOB
)
2714 js
.j_previous
= candidate
;
2719 /* If we get here, there is either only one stopped job, in which case it is
2720 the current job and the previous job should be set to the newest running
2721 job, or there are only running jobs and the previous job should be set to
2722 the newest running job older than the current job. We decide on which
2723 alternative to use based on whether or not JOBSTATE(js.j_current) is
2726 candidate
= RUNNING (js
.j_current
) ? job_last_running (js
.j_current
)
2727 : job_last_running (js
.j_jobslots
);
2729 if (candidate
!= NO_JOB
)
2731 js
.j_previous
= candidate
;
2735 /* There is only a single job, and it is both `+' and `-'. */
2736 js
.j_previous
= js
.j_current
;
2739 /* Make current_job be something useful, if it isn't already. */
2741 /* Here's the deal: The newest non-running job should be `+', and the
2742 next-newest non-running job should be `-'. If there is only a single
2743 stopped job, the js.j_previous is the newest non-running job. If there
2744 are only running jobs, the newest running job is `+' and the
2745 next-newest running job is `-'. Must be called with SIGCHLD blocked. */
2752 if (js
.j_jobslots
&& js
.j_current
!= NO_JOB
&& jobs
[js
.j_current
] && STOPPED (js
.j_current
))
2753 candidate
= js
.j_current
;
2758 /* First choice: the previous job. */
2759 if (js
.j_previous
!= NO_JOB
&& jobs
[js
.j_previous
] && STOPPED (js
.j_previous
))
2760 candidate
= js
.j_previous
;
2762 /* Second choice: the most recently stopped job. */
2763 if (candidate
== NO_JOB
)
2764 candidate
= job_last_stopped (js
.j_jobslots
);
2766 /* Third choice: the newest running job. */
2767 if (candidate
== NO_JOB
)
2768 candidate
= job_last_running (js
.j_jobslots
);
2771 /* If we found a job to use, then use it. Otherwise, there
2772 are no jobs period. */
2773 if (candidate
!= NO_JOB
)
2774 set_current_job (candidate
);
2776 js
.j_current
= js
.j_previous
= NO_JOB
;
2779 /* Set up the job structures so we know the job and its processes are
2782 set_job_running (job
)
2785 register PROCESS
*p
;
2787 /* Each member of the pipeline is now running. */
2788 p
= jobs
[job
]->pipe
;
2792 if (WIFSTOPPED (p
->status
))
2793 p
->running
= PS_RUNNING
; /* XXX - could be PS_STOPPED */
2796 while (p
!= jobs
[job
]->pipe
);
2798 /* This means that the job is running. */
2799 JOBSTATE (job
) = JRUNNING
;
2802 /* Start a job. FOREGROUND if non-zero says to do that. Otherwise,
2803 start the job in the background. JOB is a zero-based index into
2804 JOBS. Returns -1 if it is unable to start a job, and the return
2805 status of the job otherwise. */
2807 start_job (job
, foreground
)
2808 int job
, foreground
;
2810 register PROCESS
*p
;
2811 int already_running
;
2814 static TTYSTRUCT save_stty
;
2816 BLOCK_CHILD (set
, oset
);
2820 internal_error (_("%s: job has terminated"), this_command_name
);
2821 UNBLOCK_CHILD (oset
);
2825 already_running
= RUNNING (job
);
2827 if (foreground
== 0 && already_running
)
2829 internal_error (_("%s: job %d already in background"), this_command_name
, job
+ 1);
2830 UNBLOCK_CHILD (oset
);
2831 return (0); /* XPG6/SUSv3 says this is not an error */
2834 wd
= current_working_directory ();
2836 /* You don't know about the state of this job. Do you? */
2837 jobs
[job
]->flags
&= ~J_NOTIFIED
;
2841 set_current_job (job
);
2842 jobs
[job
]->flags
|= J_FOREGROUND
;
2845 /* Tell the outside world what we're doing. */
2846 p
= jobs
[job
]->pipe
;
2848 if (foreground
== 0)
2850 /* POSIX.2 says `bg' doesn't give any indication about current or
2852 if (posixly_correct
== 0)
2853 s
= (job
== js
.j_current
) ? "+ ": ((job
== js
.j_previous
) ? "- " : " ");
2856 printf ("[%d]%s", job
+ 1, s
);
2862 p
->command
? p
->command
: "",
2863 p
->next
!= jobs
[job
]->pipe
? " | " : "");
2866 while (p
!= jobs
[job
]->pipe
);
2868 if (foreground
== 0)
2871 if (strcmp (wd
, jobs
[job
]->wd
) != 0)
2872 printf (" (wd: %s)", polite_directory_format (jobs
[job
]->wd
));
2877 if (already_running
== 0)
2878 set_job_running (job
);
2880 /* Save the tty settings before we start the job in the foreground. */
2884 save_stty
= shell_tty_info
;
2885 /* Give the terminal to this job. */
2886 if (IS_JOBCONTROL (job
))
2887 give_terminal_to (jobs
[job
]->pgrp
, 0);
2890 jobs
[job
]->flags
&= ~J_FOREGROUND
;
2892 /* If the job is already running, then don't bother jump-starting it. */
2893 if (already_running
== 0)
2895 jobs
[job
]->flags
|= J_NOTIFIED
;
2896 killpg (jobs
[job
]->pgrp
, SIGCONT
);
2904 pid
= find_last_pid (job
, 0);
2905 UNBLOCK_CHILD (oset
);
2906 st
= wait_for (pid
);
2907 shell_tty_info
= save_stty
;
2914 UNBLOCK_CHILD (oset
);
2919 /* Give PID SIGNAL. This determines what job the pid belongs to (if any).
2920 If PID does belong to a job, and the job is stopped, then CONTinue the
2921 job after giving it SIGNAL. Returns -1 on failure. If GROUP is non-null,
2922 then kill the process group associated with PID. */
2924 kill_pid (pid
, sig
, group
)
2928 register PROCESS
*p
;
2929 int job
, result
, negative
;
2935 group
= negative
= 1;
2940 result
= EXECUTION_SUCCESS
;
2943 BLOCK_CHILD (set
, oset
);
2944 p
= find_pipeline (pid
, 0, &job
);
2948 jobs
[job
]->flags
&= ~J_NOTIFIED
;
2950 /* Kill process in backquotes or one started without job control? */
2952 /* If we're passed a pid < -1, just call killpg and see what happens */
2953 if (negative
&& jobs
[job
]->pgrp
== shell_pgrp
)
2954 result
= killpg (pid
, sig
);
2955 /* If we're killing using job control notification, for example,
2956 without job control active, we have to do things ourselves. */
2957 else if (jobs
[job
]->pgrp
== shell_pgrp
)
2959 p
= jobs
[job
]->pipe
;
2962 if (PALIVE (p
) == 0)
2963 continue; /* avoid pid recycling problem */
2965 if (PEXITED (p
) && (sig
== SIGTERM
|| sig
== SIGHUP
))
2966 kill (p
->pid
, SIGCONT
);
2969 while (p
!= jobs
[job
]->pipe
);
2973 result
= killpg (jobs
[job
]->pgrp
, sig
);
2974 if (p
&& STOPPED (job
) && (sig
== SIGTERM
|| sig
== SIGHUP
))
2975 killpg (jobs
[job
]->pgrp
, SIGCONT
);
2976 /* If we're continuing a stopped job via kill rather than bg or
2977 fg, emulate the `bg' behavior. */
2978 if (p
&& STOPPED (job
) && (sig
== SIGCONT
))
2980 set_job_running (job
);
2981 jobs
[job
]->flags
&= ~J_FOREGROUND
;
2982 jobs
[job
]->flags
|= J_NOTIFIED
;
2987 result
= killpg (pid
, sig
);
2989 UNBLOCK_CHILD (oset
);
2992 result
= kill (pid
, sig
);
2997 /* sigchld_handler () flushes at least one of the children that we are
2998 waiting for. It gets run when we have gotten a SIGCHLD signal. */
3000 sigchld_handler (sig
)
3006 REINSTALL_SIGCHLD_HANDLER
;
3009 if (queue_sigchld
== 0)
3010 n
= waitchld (-1, 0);
3015 /* waitchld() reaps dead or stopped children. It's called by wait_for and
3016 sigchld_handler, and runs until there aren't any children terminating any
3018 If BLOCK is 1, this is to be a blocking wait for a single child, although
3019 an arriving SIGCHLD could cause the wait to be non-blocking. It returns
3020 the number of children reaped, or -1 if there are no unwaited-for child
3023 waitchld (wpid
, block
)
3030 int call_set_current
, last_stopped_job
, job
, children_exited
, waitpid_flags
;
3031 static int wcontinued
= WCONTINUED
; /* run-time fix for glibc problem */
3033 call_set_current
= children_exited
= 0;
3034 last_stopped_job
= NO_JOB
;
3038 /* We don't want to be notified about jobs stopping if job control
3039 is not active. XXX - was interactive_shell instead of job_control */
3040 waitpid_flags
= (job_control
&& subshell_environment
== 0)
3041 ? (WUNTRACED
|wcontinued
)
3043 if (sigchld
|| block
== 0)
3044 waitpid_flags
|= WNOHANG
;
3047 pid
= WAITPID (-1, &status
, waitpid_flags
);
3049 /* WCONTINUED may be rejected by waitpid as invalid even when defined */
3050 if (wcontinued
&& pid
< 0 && errno
== EINVAL
)
3053 continue; /* jump back to the test and retry without WCONTINUED */
3056 /* The check for WNOHANG is to make sure we decrement sigchld only
3057 if it was non-zero before we called waitpid. */
3058 if (sigchld
> 0 && (waitpid_flags
& WNOHANG
))
3061 /* If waitpid returns -1 with errno == ECHILD, there are no more
3062 unwaited-for child processes of this shell. */
3063 if (pid
< 0 && errno
== ECHILD
)
3065 if (children_exited
== 0)
3071 /* If waitpid returns 0, there are running children. If it returns -1,
3072 the only other error POSIX says it can return is EINTR. */
3075 continue; /* jumps right to the test */
3077 /* children_exited is used to run traps on SIGCHLD. We don't want to
3078 run the trap if a process is just being continued. */
3079 if (WIFCONTINUED(status
) == 0)
3085 /* Locate our PROCESS for this pid. */
3086 child
= find_process (pid
, 1, &job
); /* want living procs only */
3088 #if defined (COPROCESS_SUPPORT)
3089 coproc_pidchk (pid
, status
);
3092 /* It is not an error to have a child terminate that we did
3093 not have a record of. This child could have been part of
3094 a pipeline in backquote substitution. Even so, I'm not
3095 sure child is ever non-zero. */
3098 if (WIFEXITED (status
) || WIFSIGNALED (status
))
3103 /* Remember status, and whether or not the process is running. */
3104 child
->status
= status
;
3105 child
->running
= WIFCONTINUED(status
) ? PS_RUNNING
: PS_DONE
;
3107 if (PEXITED (child
))
3117 call_set_current
+= set_job_status_and_cleanup (job
);
3120 last_stopped_job
= job
;
3121 else if (DEADJOB (job
) && last_stopped_job
== job
)
3122 last_stopped_job
= NO_JOB
;
3124 while ((sigchld
|| block
== 0) && pid
> (pid_t
)0);
3126 /* If a job was running and became stopped, then set the current
3127 job. Otherwise, don't change a thing. */
3128 if (call_set_current
)
3130 if (last_stopped_job
!= NO_JOB
)
3131 set_current_job (last_stopped_job
);
3136 /* Call a SIGCHLD trap handler for each child that exits, if one is set. */
3137 if (job_control
&& signal_is_trapped (SIGCHLD
) && children_exited
&&
3138 trap_list
[SIGCHLD
] != (char *)IGNORE_SIG
)
3140 if (this_shell_builtin
&& this_shell_builtin
== wait_builtin
)
3142 interrupt_immediately
= 0;
3143 trap_handler (SIGCHLD
); /* set pending_traps[SIGCHLD] */
3144 wait_signal_received
= SIGCHLD
;
3145 longjmp (wait_intr_buf
, 1);
3148 run_sigchld_trap (children_exited
);
3151 /* We have successfully recorded the useful information about this process
3152 that has just changed state. If we notify asynchronously, and the job
3153 that this process belongs to is no longer running, then notify the user
3154 of that fact now. */
3155 if (asynchronous_notification
&& interactive
)
3156 notify_of_job_status ();
3158 return (children_exited
);
3161 /* Set the status of JOB and perform any necessary cleanup if the job is
3164 Currently, the cleanup activity is restricted to handling any SIGINT
3165 received while waiting for a foreground job to finish. */
3167 set_job_status_and_cleanup (job
)
3171 int tstatus
, job_state
, any_stopped
, any_tstped
, call_set_current
;
3172 SigHandler
*temp_handler
;
3174 child
= jobs
[job
]->pipe
;
3175 jobs
[job
]->flags
&= ~J_NOTIFIED
;
3177 call_set_current
= 0;
3180 * COMPUTE JOB STATUS
3183 /* If all children are not running, but any of them is stopped, then
3184 the job is stopped, not dead. */
3185 job_state
= any_stopped
= any_tstped
= 0;
3188 job_state
|= PRUNNING (child
);
3190 if (PEXITED (child
) && (WIFSTOPPED (child
->status
)))
3192 /* Only checking for WIFSTOPPED now, not for PS_DONE */
3193 if (PSTOPPED (child
))
3197 any_tstped
|= interactive
&& job_control
&&
3198 (WSTOPSIG (child
->status
) == SIGTSTP
);
3200 child
= child
->next
;
3202 while (child
!= jobs
[job
]->pipe
);
3204 /* If job_state != 0, the job is still running, so don't bother with
3205 setting the process exit status and job state unless we're
3206 transitioning from stopped to running. */
3207 if (job_state
!= 0 && JOBSTATE(job
) != JSTOPPED
)
3214 /* The job is either stopped or dead. Set the state of the job accordingly. */
3217 jobs
[job
]->state
= JSTOPPED
;
3218 jobs
[job
]->flags
&= ~J_FOREGROUND
;
3220 /* Suspending a job with SIGTSTP breaks all active loops. */
3221 if (any_tstped
&& loop_level
)
3222 breaking
= loop_level
;
3224 else if (job_state
!= 0) /* was stopped, now running */
3226 jobs
[job
]->state
= JRUNNING
;
3231 jobs
[job
]->state
= JDEAD
;
3235 if (IS_FOREGROUND (job
))
3239 /* If this job has a cleanup function associated with it, call it
3240 with `cleanarg' as the single argument, then set the function
3241 pointer to NULL so it is not inadvertently called twice. The
3242 cleanup function is responsible for deallocating cleanarg. */
3243 if (jobs
[job
]->j_cleanup
)
3245 (*jobs
[job
]->j_cleanup
) (jobs
[job
]->cleanarg
);
3246 jobs
[job
]->j_cleanup
= (sh_vptrfunc_t
*)NULL
;
3253 * Currently, we just do special things if we got a SIGINT while waiting
3254 * for a foreground job to complete
3257 if (JOBSTATE (job
) == JDEAD
)
3259 /* If we're running a shell script and we get a SIGINT with a
3260 SIGINT trap handler, but the foreground job handles it and
3261 does not exit due to SIGINT, run the trap handler but do not
3262 otherwise act as if we got the interrupt. */
3263 if (wait_sigint_received
&& interactive_shell
== 0 &&
3264 WIFSIGNALED (child
->status
) == 0 && IS_FOREGROUND (job
) &&
3265 signal_is_trapped (SIGINT
))
3268 wait_sigint_received
= 0;
3269 last_command_exit_value
= process_exit_status (child
->status
);
3271 old_frozen
= jobs_list_frozen
;
3272 jobs_list_frozen
= 1;
3273 tstatus
= maybe_call_trap_handler (SIGINT
);
3274 jobs_list_frozen
= old_frozen
;
3277 /* If the foreground job is killed by SIGINT when job control is not
3278 active, we need to perform some special handling.
3280 The check of wait_sigint_received is a way to determine if the
3281 SIGINT came from the keyboard (in which case the shell has already
3282 seen it, and wait_sigint_received is non-zero, because keyboard
3283 signals are sent to process groups) or via kill(2) to the foreground
3284 process by another process (or itself). If the shell did receive the
3285 SIGINT, it needs to perform normal SIGINT processing. */
3286 else if (wait_sigint_received
&& (WTERMSIG (child
->status
) == SIGINT
) &&
3287 IS_FOREGROUND (job
) && IS_JOBCONTROL (job
) == 0)
3291 wait_sigint_received
= 0;
3293 /* If SIGINT is trapped, set the exit status so that the trap
3294 handler can see it. */
3295 if (signal_is_trapped (SIGINT
))
3296 last_command_exit_value
= process_exit_status (child
->status
);
3298 /* If the signal is trapped, let the trap handler get it no matter
3299 what and simply return if the trap handler returns.
3300 maybe_call_trap_handler() may cause dead jobs to be removed from
3301 the job table because of a call to execute_command. We work
3302 around this by setting JOBS_LIST_FROZEN. */
3303 old_frozen
= jobs_list_frozen
;
3304 jobs_list_frozen
= 1;
3305 tstatus
= maybe_call_trap_handler (SIGINT
);
3306 jobs_list_frozen
= old_frozen
;
3307 if (tstatus
== 0 && old_sigint_handler
!= INVALID_SIGNAL_HANDLER
)
3309 /* wait_sigint_handler () has already seen SIGINT and
3310 allowed the wait builtin to jump out. We need to
3311 call the original SIGINT handler, if necessary. If
3312 the original handler is SIG_DFL, we need to resend
3313 the signal to ourselves. */
3315 temp_handler
= old_sigint_handler
;
3317 /* Bogus. If we've reset the signal handler as the result
3318 of a trap caught on SIGINT, then old_sigint_handler
3319 will point to trap_handler, which now knows nothing about
3320 SIGINT (if we reset the sighandler to the default).
3321 In this case, we have to fix things up. What a crock. */
3322 if (temp_handler
== trap_handler
&& signal_is_trapped (SIGINT
) == 0)
3323 temp_handler
= trap_to_sighandler (SIGINT
);
3324 restore_sigint_handler ();
3325 if (temp_handler
== SIG_DFL
)
3326 termsig_handler (SIGINT
);
3327 else if (temp_handler
!= SIG_IGN
)
3328 (*temp_handler
) (SIGINT
);
3333 return call_set_current
;
3336 /* Build the array of values for the $PIPESTATUS variable from the set of
3337 exit statuses of all processes in the job J. */
3342 #if defined (ARRAY_VARS)
3344 register PROCESS
*p
;
3346 for (i
= 1, p
= jobs
[j
]->pipe
; p
->next
!= jobs
[j
]->pipe
; p
= p
->next
, i
++)
3351 pstatuses
= (int *)xrealloc (pstatuses
, i
* sizeof (int));
3358 pstatuses
[i
++] = process_exit_status (p
->status
);
3361 while (p
!= jobs
[j
]->pipe
);
3363 pstatuses
[i
] = -1; /* sentinel */
3364 set_pipestatus_array (pstatuses
, i
);
3369 run_sigchld_trap (nchild
)
3375 /* Turn off the trap list during the call to parse_and_execute ()
3376 to avoid potentially infinite recursive calls. Preserve the
3377 values of last_command_exit_value, last_made_pid, and the_pipeline
3378 around the execution of the trap commands. */
3379 trap_command
= savestring (trap_list
[SIGCHLD
]);
3381 begin_unwind_frame ("SIGCHLD trap");
3382 unwind_protect_int (last_command_exit_value
);
3383 unwind_protect_int (last_command_exit_signal
);
3384 unwind_protect_var (last_made_pid
);
3385 unwind_protect_int (interrupt_immediately
);
3386 unwind_protect_int (jobs_list_frozen
);
3387 unwind_protect_pointer (the_pipeline
);
3388 unwind_protect_pointer (subst_assign_varlist
);
3390 /* We have to add the commands this way because they will be run
3391 in reverse order of adding. We don't want maybe_set_sigchld_trap ()
3392 to reference freed memory. */
3393 add_unwind_protect (xfree
, trap_command
);
3394 add_unwind_protect (maybe_set_sigchld_trap
, trap_command
);
3396 subst_assign_varlist
= (WORD_LIST
*)NULL
;
3397 the_pipeline
= (PROCESS
*)NULL
;
3399 set_impossible_sigchld_trap ();
3400 jobs_list_frozen
= 1;
3401 for (i
= 0; i
< nchild
; i
++)
3403 interrupt_immediately
= 1;
3404 parse_and_execute (savestring (trap_command
), "trap", SEVAL_NOHIST
|SEVAL_RESETLINE
);
3407 run_unwind_frame ("SIGCHLD trap");
3410 /* Function to call when you want to notify people of changes
3411 in job status. This prints out all jobs which are pending
3412 notification to stderr, and marks those printed as already
3413 notified, thus making them candidates for cleanup. */
3415 notify_of_job_status ()
3417 register int job
, termsig
;
3422 if (jobs
== 0 || js
.j_jobslots
== 0)
3428 sigaddset (&set
, SIGCHLD
);
3429 sigaddset (&set
, SIGTTOU
);
3430 sigemptyset (&oset
);
3431 sigprocmask (SIG_BLOCK
, &set
, &oset
);
3436 /* XXX could use js.j_firstj here */
3437 for (job
= 0, dir
= (char *)NULL
; job
< js
.j_jobslots
; job
++)
3439 if (jobs
[job
] && IS_NOTIFIED (job
) == 0)
3441 s
= raw_job_exit_status (job
);
3442 termsig
= WTERMSIG (s
);
3444 /* POSIX.2 says we have to hang onto the statuses of at most the
3445 last CHILD_MAX background processes if the shell is running a
3446 script. If the shell is running a script, either from a file
3447 or standard input, don't print anything unless the job was
3448 killed by a signal. */
3449 if (startup_state
== 0 && WIFSIGNALED (s
) == 0 &&
3450 ((DEADJOB (job
) && IS_FOREGROUND (job
) == 0) || STOPPED (job
)))
3454 /* If job control is disabled, don't print the status messages.
3455 Mark dead jobs as notified so that they get cleaned up. If
3456 startup_state == 2, we were started to run `-c command', so
3457 don't print anything. */
3458 if ((job_control
== 0 && interactive_shell
) || startup_state
== 2)
3460 /* If job control is disabled, don't print the status messages.
3461 Mark dead jobs as notified so that they get cleaned up. If
3462 startup_state == 2 and subshell_environment has the
3463 SUBSHELL_COMSUB bit turned on, we were started to run a command
3464 substitution, so don't print anything. */
3465 if ((job_control
== 0 && interactive_shell
) ||
3466 (startup_state
== 2 && (subshell_environment
& SUBSHELL_COMSUB
)))
3469 /* POSIX.2 compatibility: if the shell is not interactive,
3470 hang onto the job corresponding to the last asynchronous
3471 pid until the user has been notified of its status or does
3473 if (DEADJOB (job
) && (interactive_shell
|| (find_last_pid (job
, 0) != last_asynchronous_pid
)))
3474 jobs
[job
]->flags
|= J_NOTIFIED
;
3478 /* Print info on jobs that are running in the background,
3479 and on foreground jobs that were killed by anything
3480 except SIGINT (and possibly SIGPIPE). */
3481 switch (JOBSTATE (job
))
3484 if (interactive_shell
== 0 && termsig
&& WIFSIGNALED (s
) &&
3485 termsig
!= SIGINT
&&
3486 #if defined (DONT_REPORT_SIGPIPE)
3487 termsig
!= SIGPIPE
&&
3489 signal_is_trapped (termsig
) == 0)
3491 /* Don't print `0' for a line number. */
3492 fprintf (stderr
, _("%s: line %d: "), get_name_for_error (), (line_number
== 0) ? 1 : line_number
);
3493 pretty_print_job (job
, JLIST_NONINTERACTIVE
, stderr
);
3495 else if (IS_FOREGROUND (job
))
3497 #if !defined (DONT_REPORT_SIGPIPE)
3498 if (termsig
&& WIFSIGNALED (s
) && termsig
!= SIGINT
)
3500 if (termsig
&& WIFSIGNALED (s
) && termsig
!= SIGINT
&& termsig
!= SIGPIPE
)
3503 fprintf (stderr
, "%s", j_strsignal (termsig
));
3506 fprintf (stderr
, _(" (core dumped)"));
3508 fprintf (stderr
, "\n");
3511 else if (job_control
) /* XXX job control test added */
3514 dir
= current_working_directory ();
3515 pretty_print_job (job
, JLIST_STANDARD
, stderr
);
3516 if (dir
&& strcmp (dir
, jobs
[job
]->wd
) != 0)
3518 _("(wd now: %s)\n"), polite_directory_format (dir
));
3521 jobs
[job
]->flags
|= J_NOTIFIED
;
3525 fprintf (stderr
, "\n");
3527 dir
= current_working_directory ();
3528 pretty_print_job (job
, JLIST_STANDARD
, stderr
);
3529 if (dir
&& (strcmp (dir
, jobs
[job
]->wd
) != 0))
3531 _("(wd now: %s)\n"), polite_directory_format (dir
));
3532 jobs
[job
]->flags
|= J_NOTIFIED
;
3540 programming_error ("notify_of_job_status");
3545 sigprocmask (SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
3550 /* Initialize the job control mechanism, and set up the tty stuff. */
3552 initialize_job_control (force
)
3559 shell_pgrp
= getpgid (0);
3561 if (shell_pgrp
== -1)
3563 sys_error (_("initialize_job_control: getpgrp failed"));
3567 /* We can only have job control if we are interactive. */
3568 if (interactive
== 0)
3571 original_pgrp
= NO_PID
;
3572 shell_tty
= fileno (stderr
);
3578 /* If forced_interactive is set, we skip the normal check that stderr
3579 is attached to a tty, so we need to check here. If it's not, we
3580 need to see whether we have a controlling tty by opening /dev/tty,
3581 since trying to use job control tty pgrp manipulations on a non-tty
3582 is going to fail. */
3583 if (forced_interactive
&& isatty (fileno (stderr
)) == 0)
3584 shell_tty
= open ("/dev/tty", O_RDWR
|O_NONBLOCK
);
3586 /* Get our controlling terminal. If job_control is set, or
3587 interactive is set, then this is an interactive shell no
3588 matter where fd 2 is directed. */
3589 if (shell_tty
== -1)
3590 shell_tty
= dup (fileno (stderr
)); /* fd 2 */
3592 shell_tty
= move_to_high_fd (shell_tty
, 1, -1);
3594 /* Compensate for a bug in systems that compiled the BSD
3595 rlogind with DEBUG defined, like NeXT and Alliant. */
3596 if (shell_pgrp
== 0)
3598 shell_pgrp
= getpid ();
3599 setpgid (0, shell_pgrp
);
3600 tcsetpgrp (shell_tty
, shell_pgrp
);
3603 while ((terminal_pgrp
= tcgetpgrp (shell_tty
)) != -1)
3605 if (shell_pgrp
!= terminal_pgrp
)
3609 ottin
= set_signal_handler(SIGTTIN
, SIG_DFL
);
3611 set_signal_handler (SIGTTIN
, ottin
);
3617 if (terminal_pgrp
== -1)
3620 /* Make sure that we are using the new line discipline. */
3621 if (set_new_line_discipline (shell_tty
) < 0)
3623 sys_error (_("initialize_job_control: line discipline"));
3628 original_pgrp
= shell_pgrp
;
3629 shell_pgrp
= getpid ();
3631 if ((original_pgrp
!= shell_pgrp
) && (setpgid (0, shell_pgrp
) < 0))
3633 sys_error (_("initialize_job_control: setpgid"));
3634 shell_pgrp
= original_pgrp
;
3639 /* If (and only if) we just set our process group to our pid,
3640 thereby becoming a process group leader, and the terminal
3641 is not in the same process group as our (new) process group,
3642 then set the terminal's process group to our (new) process
3643 group. If that fails, set our process group back to what it
3644 was originally (so we can still read from the terminal) and
3645 turn off job control. */
3646 if (shell_pgrp
!= original_pgrp
&& shell_pgrp
!= terminal_pgrp
)
3648 if (give_terminal_to (shell_pgrp
, 0) < 0)
3651 setpgid (0, original_pgrp
);
3652 shell_pgrp
= original_pgrp
;
3657 if (job_control
&& ((t
= tcgetpgrp (shell_tty
)) == -1 || t
!= shell_pgrp
))
3661 sys_error (_("cannot set terminal process group (%d)"), t
);
3665 if (job_control
== 0)
3666 internal_error (_("no job control in this shell"));
3669 if (shell_tty
!= fileno (stderr
))
3670 SET_CLOSE_ON_EXEC (shell_tty
);
3672 set_signal_handler (SIGCHLD
, sigchld_handler
);
3674 change_flag ('m', job_control
? '-' : '+');
3679 if (js
.c_childmax
< 0)
3680 js
.c_childmax
= getmaxchild ();
3681 if (js
.c_childmax
< 0)
3682 js
.c_childmax
= DEFAULT_CHILD_MAX
;
3689 debug_print_pgrps ()
3691 itrace("original_pgrp = %ld shell_pgrp = %ld terminal_pgrp = %ld",
3692 (long)original_pgrp
, (long)shell_pgrp
, (long)terminal_pgrp
);
3693 itrace("tcgetpgrp(%d) -> %ld, getpgid(0) -> %ld",
3694 shell_tty
, (long)tcgetpgrp (shell_tty
), (long)getpgid(0));
3698 /* Set the line discipline to the best this system has to offer.
3699 Return -1 if this is not possible. */
3701 set_new_line_discipline (tty
)
3704 #if defined (NEW_TTY_DRIVER)
3707 if (ioctl (tty
, TIOCGETD
, &ldisc
) < 0)
3710 if (ldisc
!= NTTYDISC
)
3714 if (ioctl (tty
, TIOCSETD
, &ldisc
) < 0)
3718 #endif /* NEW_TTY_DRIVER */
3720 #if defined (TERMIO_TTY_DRIVER)
3721 # if defined (TERMIO_LDISC) && (NTTYDISC)
3722 if (ioctl (tty
, TCGETA
, &shell_tty_info
) < 0)
3725 if (shell_tty_info
.c_line
!= NTTYDISC
)
3727 shell_tty_info
.c_line
= NTTYDISC
;
3728 if (ioctl (tty
, TCSETAW
, &shell_tty_info
) < 0)
3731 # endif /* TERMIO_LDISC && NTTYDISC */
3733 #endif /* TERMIO_TTY_DRIVER */
3735 #if defined (TERMIOS_TTY_DRIVER)
3736 # if defined (TERMIOS_LDISC) && defined (NTTYDISC)
3737 if (tcgetattr (tty
, &shell_tty_info
) < 0)
3740 if (shell_tty_info
.c_line
!= NTTYDISC
)
3742 shell_tty_info
.c_line
= NTTYDISC
;
3743 if (tcsetattr (tty
, TCSADRAIN
, &shell_tty_info
) < 0)
3746 # endif /* TERMIOS_LDISC && NTTYDISC */
3748 #endif /* TERMIOS_TTY_DRIVER */
3750 #if !defined (NEW_TTY_DRIVER) && !defined (TERMIO_TTY_DRIVER) && !defined (TERMIOS_TTY_DRIVER)
3755 /* Setup this shell to handle C-C, etc. */
3757 initialize_job_signals ()
3761 set_signal_handler (SIGINT
, sigint_sighandler
);
3762 set_signal_handler (SIGTSTP
, SIG_IGN
);
3763 set_signal_handler (SIGTTOU
, SIG_IGN
);
3764 set_signal_handler (SIGTTIN
, SIG_IGN
);
3766 else if (job_control
)
3768 old_tstp
= set_signal_handler (SIGTSTP
, sigstop_sighandler
);
3769 old_ttin
= set_signal_handler (SIGTTIN
, sigstop_sighandler
);
3770 old_ttou
= set_signal_handler (SIGTTOU
, sigstop_sighandler
);
3772 /* Leave these things alone for non-interactive shells without job
3776 /* Here we handle CONT signals. */
3778 sigcont_sighandler (sig
)
3781 initialize_job_signals ();
3782 set_signal_handler (SIGCONT
, old_cont
);
3783 kill (getpid (), SIGCONT
);
3788 /* Here we handle stop signals while we are running not as a login shell. */
3790 sigstop_sighandler (sig
)
3793 set_signal_handler (SIGTSTP
, old_tstp
);
3794 set_signal_handler (SIGTTOU
, old_ttou
);
3795 set_signal_handler (SIGTTIN
, old_ttin
);
3797 old_cont
= set_signal_handler (SIGCONT
, sigcont_sighandler
);
3799 give_terminal_to (shell_pgrp
, 0);
3801 kill (getpid (), sig
);
3806 /* Give the terminal to PGRP. */
3808 give_terminal_to (pgrp
, force
)
3816 if (job_control
|| force
)
3819 sigaddset (&set
, SIGTTOU
);
3820 sigaddset (&set
, SIGTTIN
);
3821 sigaddset (&set
, SIGTSTP
);
3822 sigaddset (&set
, SIGCHLD
);
3823 sigemptyset (&oset
);
3824 sigprocmask (SIG_BLOCK
, &set
, &oset
);
3826 if (tcsetpgrp (shell_tty
, pgrp
) < 0)
3828 /* Maybe we should print an error message? */
3830 sys_error ("tcsetpgrp(%d) failed: pid %ld to pgrp %ld",
3831 shell_tty
, (long)getpid(), (long)pgrp
);
3837 terminal_pgrp
= pgrp
;
3838 sigprocmask (SIG_SETMASK
, &oset
, (sigset_t
*)NULL
);
3847 /* Give terminal to NPGRP iff it's currently owned by OPGRP. FLAGS are the
3848 flags to pass to give_terminal_to(). */
3850 maybe_give_terminal_to (opgrp
, npgrp
, flags
)
3856 tpgrp
= tcgetpgrp (shell_tty
);
3857 if (tpgrp
< 0 && errno
== ENOTTY
)
3861 terminal_pgrp
= npgrp
;
3864 else if (tpgrp
!= opgrp
)
3867 internal_warning ("maybe_give_terminal_to: terminal pgrp == %d shell pgrp = %d new pgrp = %d", tpgrp
, opgrp
, npgrp
);
3872 return (give_terminal_to (npgrp
, flags
));
3875 /* Clear out any jobs in the job array. This is intended to be used by
3876 children of the shell, who should not have any job structures as baggage
3877 when they start executing (forking subshells for parenthesized execution
3878 and functions with pipes are the two that spring to mind). If RUNNING_ONLY
3879 is nonzero, only running jobs are removed from the table. */
3881 delete_all_jobs (running_only
)
3887 BLOCK_CHILD (set
, oset
);
3889 /* XXX - need to set j_lastj, j_firstj appropriately if running_only != 0. */
3892 js
.j_current
= js
.j_previous
= NO_JOB
;
3894 /* XXX could use js.j_firstj here */
3895 for (i
= 0; i
< js
.j_jobslots
; i
++)
3898 if (i
< js
.j_firstj
&& jobs
[i
])
3899 itrace("delete_all_jobs: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
3900 if (i
> js
.j_lastj
&& jobs
[i
])
3901 itrace("delete_all_jobs: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
3903 if (jobs
[i
] && (running_only
== 0 || (running_only
&& RUNNING(i
))))
3904 delete_job (i
, DEL_WARNSTOPPED
);
3906 if (running_only
== 0)
3908 free ((char *)jobs
);
3910 js
.j_firstj
= js
.j_lastj
= js
.j_njobs
= 0;
3914 if (running_only
== 0)
3917 UNBLOCK_CHILD (oset
);
3920 /* Mark all jobs in the job array so that they don't get a SIGHUP when the
3921 shell gets one. If RUNNING_ONLY is nonzero, mark only running jobs. */
3923 nohup_all_jobs (running_only
)
3929 BLOCK_CHILD (set
, oset
);
3933 /* XXX could use js.j_firstj here */
3934 for (i
= 0; i
< js
.j_jobslots
; i
++)
3935 if (jobs
[i
] && (running_only
== 0 || (running_only
&& RUNNING(i
))))
3939 UNBLOCK_CHILD (oset
);
3948 /* This really counts all non-dead jobs. */
3949 BLOCK_CHILD (set
, oset
);
3950 /* XXX could use js.j_firstj here */
3951 for (i
= n
= 0; i
< js
.j_jobslots
; i
++)
3954 if (i
< js
.j_firstj
&& jobs
[i
])
3955 itrace("count_all_jobs: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
3956 if (i
> js
.j_lastj
&& jobs
[i
])
3957 itrace("count_all_jobs: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
3959 if (jobs
[i
] && DEADJOB(i
) == 0)
3962 UNBLOCK_CHILD (oset
);
3967 mark_all_jobs_as_dead ()
3972 if (js
.j_jobslots
== 0)
3975 BLOCK_CHILD (set
, oset
);
3977 /* XXX could use js.j_firstj here */
3978 for (i
= 0; i
< js
.j_jobslots
; i
++)
3981 jobs
[i
]->state
= JDEAD
;
3985 UNBLOCK_CHILD (oset
);
3988 /* Mark all dead jobs as notified, so delete_job () cleans them out
3989 of the job table properly. POSIX.2 says we need to save the
3990 status of the last CHILD_MAX jobs, so we count the number of dead
3991 jobs and mark only enough as notified to save CHILD_MAX statuses. */
3993 mark_dead_jobs_as_notified (force
)
3996 register int i
, ndead
, ndeadproc
;
3999 if (js
.j_jobslots
== 0)
4002 BLOCK_CHILD (set
, oset
);
4004 /* If FORCE is non-zero, we don't have to keep CHILD_MAX statuses
4005 around; just run through the array. */
4008 /* XXX could use js.j_firstj here */
4009 for (i
= 0; i
< js
.j_jobslots
; i
++)
4011 if (jobs
[i
] && DEADJOB (i
) && (interactive_shell
|| (find_last_pid (i
, 0) != last_asynchronous_pid
)))
4012 jobs
[i
]->flags
|= J_NOTIFIED
;
4014 UNBLOCK_CHILD (oset
);
4018 /* Mark enough dead jobs as notified to keep CHILD_MAX processes left in the
4019 array with the corresponding not marked as notified. This is a better
4020 way to avoid pid aliasing and reuse problems than keeping the POSIX-
4021 mandated CHILD_MAX jobs around. delete_job() takes care of keeping the
4022 bgpids list regulated. */
4024 /* Count the number of dead jobs */
4025 /* XXX could use js.j_firstj here */
4026 for (i
= ndead
= ndeadproc
= 0; i
< js
.j_jobslots
; i
++)
4029 if (i
< js
.j_firstj
&& jobs
[i
])
4030 itrace("mark_dead_jobs_as_notified: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
4031 if (i
> js
.j_lastj
&& jobs
[i
])
4032 itrace("mark_dead_jobs_as_notified: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
4034 if (jobs
[i
] && DEADJOB (i
))
4037 ndeadproc
+= processes_in_job (i
);
4042 if (ndeadproc
!= js
.c_reaped
)
4043 itrace("mark_dead_jobs_as_notified: ndeadproc (%d) != js.c_reaped (%d)", ndeadproc
, js
.c_reaped
);
4044 if (ndead
!= js
.j_ndead
)
4045 itrace("mark_dead_jobs_as_notified: ndead (%d) != js.j_ndead (%d)", ndead
, js
.j_ndead
);
4048 if (js
.c_childmax
< 0)
4049 js
.c_childmax
= getmaxchild ();
4050 if (js
.c_childmax
< 0)
4051 js
.c_childmax
= DEFAULT_CHILD_MAX
;
4053 /* Don't do anything if the number of dead processes is less than CHILD_MAX
4054 and we're not forcing a cleanup. */
4055 if (ndeadproc
<= js
.c_childmax
)
4057 UNBLOCK_CHILD (oset
);
4062 itrace("mark_dead_jobs_as_notified: child_max = %d ndead = %d ndeadproc = %d", js
.c_childmax
, ndead
, ndeadproc
);
4065 /* Mark enough dead jobs as notified that we keep CHILD_MAX jobs in
4066 the list. This isn't exactly right yet; changes need to be made
4067 to stop_pipeline so we don't mark the newer jobs after we've
4068 created CHILD_MAX slots in the jobs array. This needs to be
4069 integrated with a way to keep the jobs array from growing without
4070 bound. Maybe we wrap back around to 0 after we reach some max
4071 limit, and there are sufficient job slots free (keep track of total
4072 size of jobs array (js.j_jobslots) and running count of number of jobs
4073 in jobs array. Then keep a job index corresponding to the `oldest job'
4074 and start this loop there, wrapping around as necessary. In effect,
4075 we turn the list into a circular buffer. */
4076 /* XXX could use js.j_firstj here */
4077 for (i
= 0; i
< js
.j_jobslots
; i
++)
4079 if (jobs
[i
] && DEADJOB (i
) && (interactive_shell
|| (find_last_pid (i
, 0) != last_asynchronous_pid
)))
4082 if (i
< js
.j_firstj
&& jobs
[i
])
4083 itrace("mark_dead_jobs_as_notified: job %d non-null before js.j_firstj (%d)", i
, js
.j_firstj
);
4084 if (i
> js
.j_lastj
&& jobs
[i
])
4085 itrace("mark_dead_jobs_as_notified: job %d non-null after js.j_lastj (%d)", i
, js
.j_lastj
);
4087 /* If marking this job as notified would drop us down below
4088 child_max, don't mark it so we can keep at least child_max
4089 statuses. XXX -- need to check what Posix actually says
4090 about keeping statuses. */
4091 if ((ndeadproc
-= processes_in_job (i
)) <= js
.c_childmax
)
4093 jobs
[i
]->flags
|= J_NOTIFIED
;
4097 UNBLOCK_CHILD (oset
);
4100 /* Here to allow other parts of the shell (like the trap stuff) to
4101 unfreeze the jobs list. */
4103 unfreeze_jobs_list ()
4105 jobs_list_frozen
= 0;
4108 /* Allow or disallow job control to take place. Returns the old value
4111 set_job_control (arg
)
4119 /* If we're turning on job control, reset pipeline_pgrp so make_child will
4120 put new child processes into the right pgrp */
4121 if (job_control
!= old
&& job_control
)
4127 /* Turn off all traces of job control. This is run by children of the shell
4128 which are going to do shellsy things, like wait (), etc. */
4130 without_job_control ()
4132 stop_making_children ();
4134 #if defined (PGRP_PIPE)
4135 sh_closepipe (pgrp_pipe
);
4137 delete_all_jobs (0);
4138 set_job_control (0);
4141 /* If this shell is interactive, terminate all stopped jobs and
4142 restore the original terminal process group. This is done
4143 before the `exec' builtin calls shell_execve. */
4147 if (interactive_shell
) /* XXX - should it be interactive? */
4149 terminate_stopped_jobs ();
4151 if (original_pgrp
>= 0)
4152 give_terminal_to (original_pgrp
, 1);
4155 if (original_pgrp
>= 0)
4156 setpgid (0, original_pgrp
);
4159 /* Restart job control by closing shell tty and reinitializing. This is
4160 called after an exec fails in an interactive shell and we do not exit. */
4162 restart_job_control ()
4164 if (shell_tty
!= -1)
4166 initialize_job_control (0);
4169 /* Set the handler to run when the shell receives a SIGCHLD signal. */
4171 set_sigchld_handler ()
4173 set_signal_handler (SIGCHLD
, sigchld_handler
);
4176 #if defined (PGRP_PIPE)
4177 /* Read from the read end of a pipe. This is how the process group leader
4178 blocks until all of the processes in a pipeline have been made. */
4193 while (read (pp
[0], &ch
, 1) == -1 && errno
== EINTR
)
4198 /* Functional interface closes our local-to-job-control pipes. */
4202 sh_closepipe (pgrp_pipe
);
4206 save_pgrp_pipe (p
, clear
)
4210 p
[0] = pgrp_pipe
[0];
4211 p
[1] = pgrp_pipe
[1];
4213 pgrp_pipe
[0] = pgrp_pipe
[1] = -1;
4217 restore_pgrp_pipe (p
)
4220 pgrp_pipe
[0] = p
[0];
4221 pgrp_pipe
[1] = p
[1];
4224 #endif /* PGRP_PIPE */