build: ensure sys/select.h is included
[coreutils.git] / src / operand2sig.c
blob77ccdefdc58da05f8fa6afc3fb424506d001907f
1 /* operand2sig.c -- common function for parsing signal specifications
2 Copyright (C) 2008-2019 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Extracted from kill.c/timeout.c by Pádraig Brady.
18 FIXME: Move this to gnulib/str2sig.c */
21 /* Convert OPERAND to a signal number with printable representation SIGNAME.
22 Return the signal number, or -1 if unsuccessful. */
24 #include <config.h>
25 #include <stdio.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
29 #include "system.h"
30 #include "error.h"
31 #include "quote.h"
32 #include "sig2str.h"
33 #include "operand2sig.h"
35 extern int
36 operand2sig (char const *operand, char *signame)
38 int signum;
40 if (ISDIGIT (*operand))
42 /* Note we don't put a limit on the maximum value passed,
43 because we're checking shell $? values here, and ksh for
44 example will add 256 to the signal value, thus being wider
45 than the number of WEXITSTATUS bits.
46 We could validate that values were not above say
47 ((WEXITSTATUS (~0) << 1) + 1), which would cater for ksh.
48 But some shells may use other adjustments in future to be
49 (forward) compatible with systems that support
50 wider exit status values as discussed at
51 http://austingroupbugs.net/view.php?id=947 */
53 char *endp;
54 long int l = (errno = 0, strtol (operand, &endp, 10));
55 int i = l;
56 signum = (operand == endp || *endp || errno || i != l ? -1 : i);
58 if (signum != -1)
60 /* Note AIX uses a different bit pattern for status returned
61 from shell and wait(), so we can't use WTERMSIG etc. here.
62 Also ksh returns 0xFF + signal number. */
63 signum &= signum >= 0xFF ? 0xFF : 0x7F;
66 else
68 /* Convert signal to upper case in the C locale, not in the
69 current locale. Don't assume ASCII; it might be EBCDIC. */
70 char *upcased = xstrdup (operand);
71 char *p;
72 for (p = upcased; *p; p++)
73 if (strchr ("abcdefghijklmnopqrstuvwxyz", *p))
74 *p += 'A' - 'a';
76 /* Look for the signal name, possibly prefixed by "SIG",
77 and possibly lowercased. */
78 if (!(str2sig (upcased, &signum) == 0
79 || (upcased[0] == 'S' && upcased[1] == 'I' && upcased[2] == 'G'
80 && str2sig (upcased + 3, &signum) == 0)))
81 signum = -1;
83 free (upcased);
86 if (signum < 0 || sig2str (signum, signame) != 0)
88 error (0, 0, _("%s: invalid signal"), quote (operand));
89 return -1;
92 return signum;