]>
git.saurik.com Git - apple/shell_cmds.git/blob - sh/trap.c
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 static char sccsid
[] = "@(#)trap.c 8.5 (Berkeley) 6/5/95";
40 #include <sys/cdefs.h>
41 __FBSDID("$FreeBSD: head/bin/sh/trap.c 326025 2017-11-20 19:49:47Z pfg $");
49 #include "nodes.h" /* for other headers */
61 #include "myhistedit.h"
64 #define sys_nsig (NSIG)
65 #endif /* __APPLE__ */
68 * Sigmode records the current value of the signal handlers for the various
69 * modes. A value of zero means that the current handler is not known.
70 * S_HARD_IGN indicates that the signal was ignored on entry to the shell,
73 #define S_DFL 1 /* default signal handling (SIG_DFL) */
74 #define S_CATCH 2 /* signal is caught */
75 #define S_IGN 3 /* signal is ignored (SIG_IGN) */
76 #define S_HARD_IGN 4 /* signal is ignored permanently */
77 #define S_RESET 5 /* temporary - to reset a hard ignored sig */
80 static char sigmode
[NSIG
]; /* current value of signal */
81 volatile sig_atomic_t pendingsig
; /* indicates some signal received */
82 volatile sig_atomic_t pendingsig_waitcmd
; /* indicates wait builtin should be interrupted */
83 static int in_dotrap
; /* do we execute in a trap handler? */
84 static char *volatile trap
[NSIG
]; /* trap handler commands */
85 static volatile sig_atomic_t gotsig
[NSIG
];
86 /* indicates specified signal received */
87 static int ignore_sigchld
; /* Used while handling SIGCHLD traps. */
88 static int last_trapsig
;
90 static int exiting
; /* exitshell() has been called */
91 static int exiting_exitstatus
; /* value passed to exitshell() */
93 static int getsigaction(int, sig_t
*);
97 * Map a string to a signal number.
99 * Note: the signal number may exceed NSIG.
102 sigstring_to_signum(char *sig
)
105 if (is_number(sig
)) {
109 return ((signo
>= 0 && signo
< NSIG
) ? signo
: (-1));
110 } else if (strcasecmp(sig
, "EXIT") == 0) {
115 if (strncasecmp(sig
, "SIG", 3) == 0)
117 for (n
= 1; n
< sys_nsig
; n
++)
118 if (sys_signame
[n
] &&
119 strcasecmp(sys_signame
[n
], sig
) == 0)
127 * Print a list of valid signal names.
135 for (n
= 1; n
< sys_nsig
; n
++) {
136 if (sys_signame
[n
]) {
137 out1fmt("%s", sys_signame
[n
]);
138 outlen
+= strlen(sys_signame
[n
]);
141 outlen
+= 3; /* good enough */
144 if (outlen
> 71 || n
== sys_nsig
- 1) {
158 trapcmd(int argc __unused
, char **argv
)
165 while ((i
= nextopt("l")) != '\0') {
175 for (signo
= 0 ; signo
< sys_nsig
; signo
++) {
176 if (signo
< NSIG
&& trap
[signo
] != NULL
) {
178 out1qstr(trap
[signo
]);
181 } else if (sys_signame
[signo
]) {
182 out1fmt(" %s\n", sys_signame
[signo
]);
184 out1fmt(" %d\n", signo
);
191 if (*argv
&& !is_number(*argv
)) {
192 if (strcmp(*argv
, "-") == 0)
199 for (; *argv
; argv
++) {
200 if ((signo
= sigstring_to_signum(*argv
)) == -1) {
201 warning("bad signal %s", *argv
);
207 action
= savestr(action
);
210 trap
[signo
] = action
;
220 * Clear traps on a fork.
227 for (tp
= trap
; tp
<= &trap
[NSIG
- 1] ; tp
++) {
228 if (*tp
&& **tp
) { /* trap not NULL or SIG_IGN */
233 setsignal(tp
- trap
);
241 * Check if we have any traps enabled.
248 for (tp
= trap
; tp
<= &trap
[NSIG
- 1] ; tp
++) {
249 if (*tp
&& **tp
) /* trap not NULL or SIG_IGN */
256 * Set the signal handler for the specified signal. The routine figures
257 * out what it should be set to.
263 sig_t sigact
= SIG_DFL
;
267 if ((t
= trap
[signo
]) == NULL
)
273 if (action
== S_DFL
) {
290 if (rootshell
&& iflag
)
296 if (rootshell
&& mflag
)
306 * current setting unknown
308 if (!getsigaction(signo
, &sigact
)) {
310 * Pretend it worked; maybe we should give a warning
311 * here, but other shells don't. We don't alter
312 * sigmode, so that we retry every time.
316 if (sigact
== SIG_IGN
) {
317 if (mflag
&& (signo
== SIGTSTP
||
318 signo
== SIGTTIN
|| signo
== SIGTTOU
)) {
319 *t
= S_IGN
; /* don't hard ignore these */
323 *t
= S_RESET
; /* force to be set */
326 if (*t
== S_HARD_IGN
|| *t
== action
)
329 case S_DFL
: sigact
= SIG_DFL
; break;
330 case S_CATCH
: sigact
= onsig
; break;
331 case S_IGN
: sigact
= SIG_IGN
; break;
334 sa
.sa_handler
= sigact
;
336 sigemptyset(&sa
.sa_mask
);
337 sigaction(signo
, &sa
, NULL
);
342 * Return the current setting for sig w/o changing it.
345 getsigaction(int signo
, sig_t
*sigact
)
349 if (sigaction(signo
, (struct sigaction
*)0, &sa
) == -1)
351 *sigact
= (sig_t
) sa
.sa_handler
;
363 if (sigmode
[signo
] == 0)
365 if (sigmode
[signo
] != S_IGN
&& sigmode
[signo
] != S_HARD_IGN
) {
366 signal(signo
, SIG_IGN
);
367 sigmode
[signo
] = S_IGN
;
373 issigchldtrapped(void)
376 return (trap
[SIGCHLD
] != NULL
&& *trap
[SIGCHLD
] != '\0');
387 if (signo
== SIGINT
&& trap
[SIGINT
] == NULL
) {
389 * The !in_dotrap here is safe. The only way we can arrive
390 * here with in_dotrap set is that a trap handler set SIGINT to
391 * SIG_DFL and killed itself.
393 if (suppressint
&& !in_dotrap
)
400 /* If we are currently in a wait builtin, prepare to break it */
401 if (signo
== SIGINT
|| signo
== SIGQUIT
)
402 pendingsig_waitcmd
= signo
;
404 if (trap
[signo
] != NULL
&& trap
[signo
][0] != '\0' &&
405 (signo
!= SIGCHLD
|| !ignore_sigchld
)) {
408 pendingsig_waitcmd
= signo
;
414 * Called to execute a trap. Perhaps we should avoid entering new trap
415 * handlers while we are executing a trap handler.
420 struct stackmark smark
;
422 int savestatus
, prev_evalskip
, prev_skipcount
;
427 pendingsig_waitcmd
= 0;
428 for (i
= 1; i
< NSIG
; i
++) {
433 * Ignore SIGCHLD to avoid infinite
434 * recursion if the trap action does
441 * Backup current evalskip
442 * state and reset it before
443 * executing a trap, so that the
444 * trap is not disturbed by an
445 * ongoing break/continue/return
448 prev_evalskip
= evalskip
;
449 prev_skipcount
= skipcount
;
453 savestatus
= exitstatus
;
454 setstackmark(&smark
);
455 evalstring(stsavestr(trap
[i
]), 0);
456 popstackmark(&smark
);
459 * If such a command was not
460 * already in progress, allow a
461 * break/continue/return in the
462 * trap action to have an effect
466 prev_evalskip
!= 0) {
467 evalskip
= prev_evalskip
;
468 skipcount
= prev_skipcount
;
469 exitstatus
= savestatus
;
486 * Controls whether the shell is interactive or not based on iflag.
498 * Called to exit the shell.
501 exitshell(int status
)
503 TRACE(("exitshell(%d) pid=%d\n", status
, getpid()));
505 exiting_exitstatus
= status
;
506 exitshell_savedstatus();
510 exitshell_savedstatus(void)
512 struct jmploc loc1
, loc2
;
518 if (in_dotrap
&& last_trapsig
) {
520 exiting_exitstatus
= sig
+ 128;
522 exiting_exitstatus
= oexitstatus
;
524 exitstatus
= oexitstatus
= exiting_exitstatus
;
525 if (!setjmp(loc1
.loc
)) {
527 if ((p
= trap
[0]) != NULL
&& *p
!= '\0') {
529 * Reset evalskip, or the trap on EXIT could be
530 * interrupted if the last command was a "return".
538 if (!setjmp(loc2
.loc
)) {
539 handler
= &loc2
; /* probably unnecessary */
546 if (sig
!= 0 && sig
!= SIGSTOP
&& sig
!= SIGTSTP
&& sig
!= SIGTTIN
&&
548 signal(sig
, SIG_DFL
);
550 sigaddset(&sigs
, sig
);
551 sigprocmask(SIG_UNBLOCK
, &sigs
, NULL
);
553 /* If the default action is to ignore, fall back to _exit(). */
555 _exit(exiting_exitstatus
);