]> git.ipfire.org Git - thirdparty/bash.git/blob - nojobs.c
commit bash-20120622 snapshot
[thirdparty/bash.git] / nojobs.c
1 /* nojobs.c - functions that make children, remember them, and handle their termination. */
2
3 /* This file works under BSD, System V, minix, and Posix systems. It does
4 not implement job control. */
5
6 /* Copyright (C) 1987-2011 Free Software Foundation, Inc.
7
8 This file is part of GNU Bash, the Bourne Again SHell.
9
10 Bash is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
14
15 Bash is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with Bash. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "config.h"
25
26 #include "bashtypes.h"
27 #include "filecntl.h"
28
29 #if defined (HAVE_UNISTD_H)
30 # include <unistd.h>
31 #endif
32
33 #include <stdio.h>
34 #include <signal.h>
35 #include <errno.h>
36
37 #if defined (BUFFERED_INPUT)
38 # include "input.h"
39 #endif
40
41 /* Need to include this up here for *_TTY_DRIVER definitions. */
42 #include "shtty.h"
43
44 #include "bashintl.h"
45
46 #include "shell.h"
47 #include "jobs.h"
48 #include "execute_cmd.h"
49
50 #include "builtins/builtext.h" /* for wait_builtin */
51
52 #define DEFAULT_CHILD_MAX 32
53
54 #if defined (_POSIX_VERSION) || !defined (HAVE_KILLPG)
55 # define killpg(pg, sig) kill(-(pg),(sig))
56 #endif /* USG || _POSIX_VERSION */
57
58 #if !defined (HAVE_SIGINTERRUPT) && !defined (HAVE_POSIX_SIGNALS)
59 # define siginterrupt(sig, code)
60 #endif /* !HAVE_SIGINTERRUPT && !HAVE_POSIX_SIGNALS */
61
62 #if defined (HAVE_WAITPID)
63 # define WAITPID(pid, statusp, options) waitpid (pid, statusp, options)
64 #else
65 # define WAITPID(pid, statusp, options) wait (statusp)
66 #endif /* !HAVE_WAITPID */
67
68 /* Return the fd from which we are actually getting input. */
69 #define input_tty() (shell_tty != -1) ? shell_tty : fileno (stderr)
70
71 #if !defined (errno)
72 extern int errno;
73 #endif /* !errno */
74
75 extern int interactive, interactive_shell, login_shell;
76 extern int subshell_environment;
77 extern int last_command_exit_value, last_command_exit_signal;
78 extern int interrupt_immediately;
79 extern sh_builtin_func_t *this_shell_builtin;
80 #if defined (HAVE_POSIX_SIGNALS)
81 extern sigset_t top_level_mask;
82 #endif
83 extern procenv_t wait_intr_buf;
84 extern int wait_signal_received;
85
86 pid_t last_made_pid = NO_PID;
87 pid_t last_asynchronous_pid = NO_PID;
88
89 /* Call this when you start making children. */
90 int already_making_children = 0;
91
92 /* The controlling tty for this shell. */
93 int shell_tty = -1;
94
95 /* If this is non-zero, $LINES and $COLUMNS are reset after every process
96 exits from get_tty_state(). */
97 int check_window_size = CHECKWINSIZE_DEFAULT;
98
99 /* We don't have job control. */
100 int job_control = 0;
101
102 /* STATUS and FLAGS are only valid if pid != NO_PID
103 STATUS is only valid if (flags & PROC_RUNNING) == 0 */
104 struct proc_status {
105 pid_t pid;
106 int status; /* Exit status of PID or 128 + fatal signal number */
107 int flags;
108 };
109
110 /* Values for proc_status.flags */
111 #define PROC_RUNNING 0x01
112 #define PROC_NOTIFIED 0x02
113 #define PROC_ASYNC 0x04
114 #define PROC_SIGNALED 0x10
115
116 /* Return values from find_status_by_pid */
117 #define PROC_BAD -1
118 #define PROC_STILL_ALIVE -2
119
120 static struct proc_status *pid_list = (struct proc_status *)NULL;
121 static int pid_list_size;
122 static int wait_sigint_received;
123
124 static long child_max = -1L;
125
126 static void alloc_pid_list __P((void));
127 static int find_proc_slot __P((void));
128 static int find_index_by_pid __P((pid_t));
129 static int find_status_by_pid __P((pid_t));
130 static int process_exit_status __P((WAIT));
131 static int find_termsig_by_pid __P((pid_t));
132 static int get_termsig __P((WAIT));
133 static void set_pid_status __P((pid_t, WAIT));
134 static void set_pid_flags __P((pid_t, int));
135 static void unset_pid_flags __P((pid_t, int));
136 static int get_pid_flags __P((pid_t));
137 static void add_pid __P((pid_t, int));
138 static void mark_dead_jobs_as_notified __P((int));
139
140 static sighandler wait_sigint_handler __P((int));
141 static char *j_strsignal __P((int));
142
143 #if defined (HAVE_WAITPID)
144 static void reap_zombie_children __P((void));
145 #endif
146
147 #if !defined (HAVE_SIGINTERRUPT) && defined (HAVE_POSIX_SIGNALS)
148 static int siginterrupt __P((int, int));
149 #endif
150
151 static void restore_sigint_handler __P((void));
152
153 /* Allocate new, or grow existing PID_LIST. */
154 static void
155 alloc_pid_list ()
156 {
157 register int i;
158 int old = pid_list_size;
159
160 pid_list_size += 10;
161 pid_list = (struct proc_status *)xrealloc (pid_list, pid_list_size * sizeof (struct proc_status));
162
163 /* None of the newly allocated slots have process id's yet. */
164 for (i = old; i < pid_list_size; i++)
165 pid_list[i].pid = NO_PID;
166 }
167
168 /* Return the offset within the PID_LIST array of an empty slot. This can
169 create new slots if all of the existing slots are taken. */
170 static int
171 find_proc_slot ()
172 {
173 register int i;
174
175 for (i = 0; i < pid_list_size; i++)
176 if (pid_list[i].pid == NO_PID)
177 return (i);
178
179 if (i == pid_list_size)
180 alloc_pid_list ();
181
182 return (i);
183 }
184
185 /* Return the offset within the PID_LIST array of a slot containing PID,
186 or the value NO_PID if the pid wasn't found. */
187 static int
188 find_index_by_pid (pid)
189 pid_t pid;
190 {
191 register int i;
192
193 for (i = 0; i < pid_list_size; i++)
194 if (pid_list[i].pid == pid)
195 return (i);
196
197 return (NO_PID);
198 }
199
200 /* Return the status of PID as looked up in the PID_LIST array. A
201 return value of PROC_BAD indicates that PID wasn't found. */
202 static int
203 find_status_by_pid (pid)
204 pid_t pid;
205 {
206 int i;
207
208 i = find_index_by_pid (pid);
209 if (i == NO_PID)
210 return (PROC_BAD);
211 if (pid_list[i].flags & PROC_RUNNING)
212 return (PROC_STILL_ALIVE);
213 return (pid_list[i].status);
214 }
215
216 static int
217 process_exit_status (status)
218 WAIT status;
219 {
220 if (WIFSIGNALED (status))
221 return (128 + WTERMSIG (status));
222 else
223 return (WEXITSTATUS (status));
224 }
225
226 /* Return the status of PID as looked up in the PID_LIST array. A
227 return value of PROC_BAD indicates that PID wasn't found. */
228 static int
229 find_termsig_by_pid (pid)
230 pid_t pid;
231 {
232 int i;
233
234 i = find_index_by_pid (pid);
235 if (i == NO_PID)
236 return (0);
237 if (pid_list[i].flags & PROC_RUNNING)
238 return (0);
239 return (get_termsig ((WAIT)pid_list[i].status));
240 }
241
242 /* Set LAST_COMMAND_EXIT_SIGNAL depending on STATUS. If STATUS is -1, look
243 up PID in the pid array and set LAST_COMMAND_EXIT_SIGNAL appropriately
244 depending on its flags and exit status. */
245 static int
246 get_termsig (status)
247 WAIT status;
248 {
249 if (WIFSTOPPED (status) == 0 && WIFSIGNALED (status))
250 return (WTERMSIG (status));
251 else
252 return (0);
253 }
254
255 /* Give PID the status value STATUS in the PID_LIST array. */
256 static void
257 set_pid_status (pid, status)
258 pid_t pid;
259 WAIT status;
260 {
261 int slot;
262
263 #if defined (COPROCESS_SUPPORT)
264 coproc_pidchk (pid, status);
265 #endif
266
267 slot = find_index_by_pid (pid);
268 if (slot == NO_PID)
269 return;
270
271 pid_list[slot].status = process_exit_status (status);
272 pid_list[slot].flags &= ~PROC_RUNNING;
273 if (WIFSIGNALED (status))
274 pid_list[slot].flags |= PROC_SIGNALED;
275 /* If it's not a background process, mark it as notified so it gets
276 cleaned up. */
277 if ((pid_list[slot].flags & PROC_ASYNC) == 0)
278 pid_list[slot].flags |= PROC_NOTIFIED;
279 }
280
281 /* Give PID the flags FLAGS in the PID_LIST array. */
282 static void
283 set_pid_flags (pid, flags)
284 pid_t pid;
285 int flags;
286 {
287 int slot;
288
289 slot = find_index_by_pid (pid);
290 if (slot == NO_PID)
291 return;
292
293 pid_list[slot].flags |= flags;
294 }
295
296 /* Unset FLAGS for PID in the pid list */
297 static void
298 unset_pid_flags (pid, flags)
299 pid_t pid;
300 int flags;
301 {
302 int slot;
303
304 slot = find_index_by_pid (pid);
305 if (slot == NO_PID)
306 return;
307
308 pid_list[slot].flags &= ~flags;
309 }
310
311 /* Return the flags corresponding to PID in the PID_LIST array. */
312 static int
313 get_pid_flags (pid)
314 pid_t pid;
315 {
316 int slot;
317
318 slot = find_index_by_pid (pid);
319 if (slot == NO_PID)
320 return 0;
321
322 return (pid_list[slot].flags);
323 }
324
325 static void
326 add_pid (pid, async)
327 pid_t pid;
328 int async;
329 {
330 int slot;
331
332 slot = find_proc_slot ();
333
334 pid_list[slot].pid = pid;
335 pid_list[slot].status = -1;
336 pid_list[slot].flags = PROC_RUNNING;
337 if (async)
338 pid_list[slot].flags |= PROC_ASYNC;
339 }
340
341 static void
342 mark_dead_jobs_as_notified (force)
343 int force;
344 {
345 register int i, ndead;
346
347 /* first, count the number of non-running async jobs if FORCE == 0 */
348 for (i = ndead = 0; force == 0 && i < pid_list_size; i++)
349 {
350 if (pid_list[i].pid == NO_PID)
351 continue;
352 if (((pid_list[i].flags & PROC_RUNNING) == 0) &&
353 (pid_list[i].flags & PROC_ASYNC))
354 ndead++;
355 }
356
357 if (child_max < 0)
358 child_max = getmaxchild ();
359 if (child_max < 0)
360 child_max = DEFAULT_CHILD_MAX;
361
362 if (force == 0 && ndead <= child_max)
363 return;
364
365 /* If FORCE == 0, we just mark as many non-running async jobs as notified
366 to bring us under the CHILD_MAX limit. */
367 for (i = 0; i < pid_list_size; i++)
368 {
369 if (pid_list[i].pid == NO_PID)
370 continue;
371 if (((pid_list[i].flags & PROC_RUNNING) == 0) &&
372 pid_list[i].pid != last_asynchronous_pid)
373 {
374 pid_list[i].flags |= PROC_NOTIFIED;
375 if (force == 0 && (pid_list[i].flags & PROC_ASYNC) && --ndead <= child_max)
376 break;
377 }
378 }
379 }
380
381 /* Remove all dead, notified jobs from the pid_list. */
382 int
383 cleanup_dead_jobs ()
384 {
385 register int i;
386
387 #if defined (HAVE_WAITPID)
388 reap_zombie_children ();
389 #endif
390
391 for (i = 0; i < pid_list_size; i++)
392 {
393 if ((pid_list[i].flags & PROC_RUNNING) == 0 &&
394 (pid_list[i].flags & PROC_NOTIFIED))
395 pid_list[i].pid = NO_PID;
396 }
397
398 #if defined (COPROCESS_SUPPORT)
399 coproc_reap ();
400 #endif
401
402 return 0;
403 }
404
405 void
406 reap_dead_jobs ()
407 {
408 mark_dead_jobs_as_notified (0);
409 cleanup_dead_jobs ();
410 }
411
412 /* Initialize the job control mechanism, and set up the tty stuff. */
413 initialize_job_control (force)
414 int force;
415 {
416 shell_tty = fileno (stderr);
417
418 if (interactive)
419 get_tty_state ();
420 }
421
422 /* Setup this shell to handle C-C, etc. */
423 void
424 initialize_job_signals ()
425 {
426 set_signal_handler (SIGINT, sigint_sighandler);
427
428 /* If this is a login shell we don't wish to be disturbed by
429 stop signals. */
430 if (login_shell)
431 ignore_tty_job_signals ();
432 }
433
434 #if defined (HAVE_WAITPID)
435 /* Collect the status of all zombie children so that their system
436 resources can be deallocated. */
437 static void
438 reap_zombie_children ()
439 {
440 # if defined (WNOHANG)
441 pid_t pid;
442 WAIT status;
443
444 CHECK_TERMSIG;
445 while ((pid = waitpid (-1, (int *)&status, WNOHANG)) > 0)
446 set_pid_status (pid, status);
447 # endif /* WNOHANG */
448 CHECK_TERMSIG;
449 }
450 #endif /* WAITPID */
451
452 #if !defined (HAVE_SIGINTERRUPT) && defined (HAVE_POSIX_SIGNALS)
453
454 #if !defined (SA_RESTART)
455 # define SA_RESTART 0
456 #endif
457
458 static int
459 siginterrupt (sig, flag)
460 int sig, flag;
461 {
462 struct sigaction act;
463
464 sigaction (sig, (struct sigaction *)NULL, &act);
465
466 if (flag)
467 act.sa_flags &= ~SA_RESTART;
468 else
469 act.sa_flags |= SA_RESTART;
470
471 return (sigaction (sig, &act, (struct sigaction *)NULL));
472 }
473 #endif /* !HAVE_SIGINTERRUPT && HAVE_POSIX_SIGNALS */
474
475 /* Fork, handling errors. Returns the pid of the newly made child, or 0.
476 COMMAND is just for remembering the name of the command; we don't do
477 anything else with it. ASYNC_P says what to do with the tty. If
478 non-zero, then don't give it away. */
479 pid_t
480 make_child (command, async_p)
481 char *command;
482 int async_p;
483 {
484 pid_t pid;
485 int forksleep;
486
487 /* Discard saved memory. */
488 if (command)
489 free (command);
490
491 start_pipeline ();
492
493 #if defined (BUFFERED_INPUT)
494 /* If default_buffered_input is active, we are reading a script. If
495 the command is asynchronous, we have already duplicated /dev/null
496 as fd 0, but have not changed the buffered stream corresponding to
497 the old fd 0. We don't want to sync the stream in this case. */
498 if (default_buffered_input != -1 && (!async_p || default_buffered_input > 0))
499 sync_buffered_stream (default_buffered_input);
500 #endif /* BUFFERED_INPUT */
501
502 /* Create the child, handle severe errors. Retry on EAGAIN. */
503 forksleep = 1;
504 while ((pid = fork ()) < 0 && errno == EAGAIN && forksleep < FORKSLEEP_MAX)
505 {
506 sys_error ("fork: retry");
507 #if defined (HAVE_WAITPID)
508 /* Posix systems with a non-blocking waitpid () system call available
509 get another chance after zombies are reaped. */
510 reap_zombie_children ();
511 if (forksleep > 1 && sleep (forksleep) != 0)
512 break;
513 #else
514 if (sleep (forksleep) != 0)
515 break;
516 #endif /* HAVE_WAITPID */
517 forksleep <<= 1;
518 }
519
520 if (pid < 0)
521 {
522 sys_error ("fork");
523 throw_to_top_level ();
524 }
525
526 if (pid == 0)
527 {
528 #if defined (BUFFERED_INPUT)
529 unset_bash_input (0);
530 #endif /* BUFFERED_INPUT */
531
532 #if defined (HAVE_POSIX_SIGNALS)
533 /* Restore top-level signal mask. */
534 sigprocmask (SIG_SETMASK, &top_level_mask, (sigset_t *)NULL);
535 #endif
536
537 #if 0
538 /* Ignore INT and QUIT in asynchronous children. */
539 if (async_p)
540 last_asynchronous_pid = getpid ();
541 #endif
542
543 default_tty_job_signals ();
544 }
545 else
546 {
547 /* In the parent. */
548
549 last_made_pid = pid;
550
551 if (async_p)
552 last_asynchronous_pid = pid;
553
554 add_pid (pid, async_p);
555 }
556 return (pid);
557 }
558
559 void
560 ignore_tty_job_signals ()
561 {
562 #if defined (SIGTSTP)
563 set_signal_handler (SIGTSTP, SIG_IGN);
564 set_signal_handler (SIGTTIN, SIG_IGN);
565 set_signal_handler (SIGTTOU, SIG_IGN);
566 #endif
567 }
568
569 void
570 default_tty_job_signals ()
571 {
572 #if defined (SIGTSTP)
573 set_signal_handler (SIGTSTP, SIG_DFL);
574 set_signal_handler (SIGTTIN, SIG_DFL);
575 set_signal_handler (SIGTTOU, SIG_DFL);
576 #endif
577 }
578
579 /* Wait for a single pid (PID) and return its exit status. Called by
580 the wait builtin. */
581 int
582 wait_for_single_pid (pid)
583 pid_t pid;
584 {
585 pid_t got_pid;
586 WAIT status;
587 int pstatus, flags;
588
589 pstatus = find_status_by_pid (pid);
590
591 if (pstatus == PROC_BAD)
592 {
593 internal_error (_("wait: pid %ld is not a child of this shell"), (long)pid);
594 return (127);
595 }
596
597 if (pstatus != PROC_STILL_ALIVE)
598 {
599 if (pstatus > 128)
600 last_command_exit_signal = find_termsig_by_pid (pid);
601 return (pstatus);
602 }
603
604 siginterrupt (SIGINT, 1);
605 while ((got_pid = WAITPID (pid, &status, 0)) != pid)
606 {
607 CHECK_TERMSIG;
608 if (got_pid < 0)
609 {
610 if (errno != EINTR && errno != ECHILD)
611 {
612 siginterrupt (SIGINT, 0);
613 sys_error ("wait");
614 }
615 break;
616 }
617 else if (got_pid > 0)
618 set_pid_status (got_pid, status);
619 }
620
621 if (got_pid > 0)
622 {
623 set_pid_status (got_pid, status);
624 set_pid_flags (got_pid, PROC_NOTIFIED);
625 }
626
627 siginterrupt (SIGINT, 0);
628 QUIT;
629
630 return (got_pid > 0 ? process_exit_status (status) : -1);
631 }
632
633 /* Wait for all of the shell's children to exit. Called by the `wait'
634 builtin. */
635 void
636 wait_for_background_pids ()
637 {
638 pid_t got_pid;
639 WAIT status;
640
641 /* If we aren't using job control, we let the kernel take care of the
642 bookkeeping for us. wait () will return -1 and set errno to ECHILD
643 when there are no more unwaited-for child processes on both
644 4.2 BSD-based and System V-based systems. */
645
646 siginterrupt (SIGINT, 1);
647
648 /* Wait for ECHILD */
649 while ((got_pid = WAITPID (-1, &status, 0)) != -1)
650 set_pid_status (got_pid, status);
651
652 if (errno != EINTR && errno != ECHILD)
653 {
654 siginterrupt (SIGINT, 0);
655 sys_error("wait");
656 }
657
658 siginterrupt (SIGINT, 0);
659 QUIT;
660
661 mark_dead_jobs_as_notified (1);
662 cleanup_dead_jobs ();
663 }
664
665 /* Make OLD_SIGINT_HANDLER the SIGINT signal handler. */
666 #define INVALID_SIGNAL_HANDLER (SigHandler *)wait_for_background_pids
667 static SigHandler *old_sigint_handler = INVALID_SIGNAL_HANDLER;
668
669 static void
670 restore_sigint_handler ()
671 {
672 if (old_sigint_handler != INVALID_SIGNAL_HANDLER)
673 {
674 set_signal_handler (SIGINT, old_sigint_handler);
675 old_sigint_handler = INVALID_SIGNAL_HANDLER;
676 }
677 }
678
679 /* Handle SIGINT while we are waiting for children in a script to exit.
680 All interrupts are effectively ignored by the shell, but allowed to
681 kill a running job. */
682 static sighandler
683 wait_sigint_handler (sig)
684 int sig;
685 {
686 SigHandler *sigint_handler;
687
688 /* If we got a SIGINT while in `wait', and SIGINT is trapped, do
689 what POSIX.2 says (see builtins/wait.def for more info). */
690 if (this_shell_builtin && this_shell_builtin == wait_builtin &&
691 signal_is_trapped (SIGINT) &&
692 ((sigint_handler = trap_to_sighandler (SIGINT)) == trap_handler))
693 {
694 last_command_exit_value = EXECUTION_FAILURE;
695 restore_sigint_handler ();
696 interrupt_immediately = 0;
697 trap_handler (SIGINT); /* set pending_traps[SIGINT] */
698 wait_signal_received = SIGINT;
699 longjmp (wait_intr_buf, 1);
700 }
701
702 if (interrupt_immediately)
703 {
704 last_command_exit_value = EXECUTION_FAILURE;
705 restore_sigint_handler ();
706 ADDINTERRUPT;
707 QUIT;
708 }
709
710 wait_sigint_received = 1;
711
712 SIGRETURN (0);
713 }
714
715 static char *
716 j_strsignal (s)
717 int s;
718 {
719 static char retcode_name_buffer[64] = { '\0' };
720 char *x;
721
722 x = strsignal (s);
723 if (x == 0)
724 {
725 x = retcode_name_buffer;
726 sprintf (x, "Signal %d", s);
727 }
728 return x;
729 }
730
731 /* Wait for pid (one of our children) to terminate. This is called only
732 by the execution code in execute_cmd.c. */
733 int
734 wait_for (pid)
735 pid_t pid;
736 {
737 int return_val, pstatus;
738 pid_t got_pid;
739 WAIT status;
740
741 pstatus = find_status_by_pid (pid);
742
743 if (pstatus == PROC_BAD)
744 return (0);
745
746 if (pstatus != PROC_STILL_ALIVE)
747 {
748 if (pstatus > 128)
749 last_command_exit_signal = find_termsig_by_pid (pid);
750 return (pstatus);
751 }
752
753 /* If we are running a script, ignore SIGINT while we're waiting for
754 a child to exit. The loop below does some of this, but not all. */
755 wait_sigint_received = 0;
756 if (interactive_shell == 0)
757 old_sigint_handler = set_signal_handler (SIGINT, wait_sigint_handler);
758
759 while ((got_pid = WAITPID (-1, &status, 0)) != pid) /* XXX was pid now -1 */
760 {
761 CHECK_TERMSIG;
762 if (got_pid < 0 && errno == ECHILD)
763 {
764 #if !defined (_POSIX_VERSION)
765 status.w_termsig = status.w_retcode = 0;
766 #else
767 status = 0;
768 #endif /* _POSIX_VERSION */
769 break;
770 }
771 else if (got_pid < 0 && errno != EINTR)
772 programming_error ("wait_for(%ld): %s", (long)pid, strerror(errno));
773 else if (got_pid > 0)
774 set_pid_status (got_pid, status);
775 }
776
777 if (got_pid > 0)
778 set_pid_status (got_pid, status);
779
780 #if defined (HAVE_WAITPID)
781 if (got_pid >= 0)
782 reap_zombie_children ();
783 #endif /* HAVE_WAITPID */
784
785 if (interactive_shell == 0)
786 {
787 SigHandler *temp_handler;
788
789 temp_handler = old_sigint_handler;
790 restore_sigint_handler ();
791
792 /* If the job exited because of SIGINT, make sure the shell acts as if
793 it had received one also. */
794 if (WIFSIGNALED (status) && (WTERMSIG (status) == SIGINT))
795 {
796
797 if (maybe_call_trap_handler (SIGINT) == 0)
798 {
799 if (temp_handler == SIG_DFL)
800 termsig_handler (SIGINT);
801 else if (temp_handler != INVALID_SIGNAL_HANDLER && temp_handler != SIG_IGN)
802 (*temp_handler) (SIGINT);
803 }
804 }
805 }
806
807 /* Default return value. */
808 /* ``a full 8 bits of status is returned'' */
809 return_val = process_exit_status (status);
810 last_command_exit_signal = get_termsig (status);
811
812 #if defined (DONT_REPORT_SIGPIPE) && defined (DONT_REPORT_SIGTERM)
813 # define REPORTSIG(x) ((x) != SIGINT && (x) != SIGPIPE && (x) != SIGTERM)
814 #elif !defined (DONT_REPORT_SIGPIPE) && !defined (DONT_REPORT_SIGTERM)
815 # define REPORTSIG(x) ((x) != SIGINT)
816 #elif defined (DONT_REPORT_SIGPIPE)
817 # define REPORTSIG(x) ((x) != SIGINT && (x) != SIGPIPE)
818 #else
819 # define REPORTSIG(x) ((x) != SIGINT && (x) != SIGTERM)
820 #endif
821
822 if ((WIFSTOPPED (status) == 0) && WIFSIGNALED (status) && REPORTSIG(WTERMSIG (status)))
823 {
824 fprintf (stderr, "%s", j_strsignal (WTERMSIG (status)));
825 if (WIFCORED (status))
826 fprintf (stderr, _(" (core dumped)"));
827 fprintf (stderr, "\n");
828 }
829
830 if (interactive_shell && subshell_environment == 0)
831 {
832 if (WIFSIGNALED (status) || WIFSTOPPED (status))
833 set_tty_state ();
834 else
835 get_tty_state ();
836 }
837 else if (interactive_shell == 0 && subshell_environment == 0 && check_window_size)
838 get_new_window_size (0, (int *)0, (int *)0);
839
840 return (return_val);
841 }
842
843 /* Send PID SIGNAL. Returns -1 on failure, 0 on success. If GROUP is non-zero,
844 or PID is less than -1, then kill the process group associated with PID. */
845 int
846 kill_pid (pid, signal, group)
847 pid_t pid;
848 int signal, group;
849 {
850 int result;
851
852 if (pid < -1)
853 {
854 pid = -pid;
855 group = 1;
856 }
857 result = group ? killpg (pid, signal) : kill (pid, signal);
858 return (result);
859 }
860
861 static TTYSTRUCT shell_tty_info;
862 static int got_tty_state;
863
864 /* Fill the contents of shell_tty_info with the current tty info. */
865 get_tty_state ()
866 {
867 int tty;
868
869 tty = input_tty ();
870 if (tty != -1)
871 {
872 ttgetattr (tty, &shell_tty_info);
873 got_tty_state = 1;
874 if (check_window_size)
875 get_new_window_size (0, (int *)0, (int *)0);
876 }
877 }
878
879 /* Make the current tty use the state in shell_tty_info. */
880 int
881 set_tty_state ()
882 {
883 int tty;
884
885 tty = input_tty ();
886 if (tty != -1)
887 {
888 if (got_tty_state == 0)
889 return 0;
890 ttsetattr (tty, &shell_tty_info);
891 }
892 return 0;
893 }
894
895 /* Give the terminal to PGRP. */
896 give_terminal_to (pgrp, force)
897 pid_t pgrp;
898 int force;
899 {
900 }
901
902 /* Stop a pipeline. */
903 int
904 stop_pipeline (async, ignore)
905 int async;
906 COMMAND *ignore;
907 {
908 already_making_children = 0;
909 return 0;
910 }
911
912 void
913 start_pipeline ()
914 {
915 already_making_children = 1;
916 }
917
918 void
919 stop_making_children ()
920 {
921 already_making_children = 0;
922 }
923
924 int
925 get_job_by_pid (pid, block)
926 pid_t pid;
927 int block;
928 {
929 int i;
930
931 i = find_index_by_pid (pid);
932 return ((i == NO_PID) ? PROC_BAD : i);
933 }
934
935 /* Print descriptive information about the job with leader pid PID. */
936 void
937 describe_pid (pid)
938 pid_t pid;
939 {
940 fprintf (stderr, "%ld\n", (long) pid);
941 }
942
943 void
944 freeze_jobs_list ()
945 {
946 }
947
948 void
949 unfreeze_jobs_list ()
950 {
951 }
952
953 int
954 count_all_jobs ()
955 {
956 return 0;
957 }