Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 2 | /* |
Denis Vlasenko | 02f47e9 | 2007-05-06 22:48:55 +0000 | [diff] [blame] | 3 | * Mini kill/killall[5] implementation for busybox |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 11 | #include "libbb.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 12 | |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 13 | /* Note: kill_main is directly called from shell in order to implement |
| 14 | * kill built-in. Shell substitutes job ids with process groups first. |
| 15 | * |
| 16 | * This brings some complications: |
| 17 | * |
| 18 | * + we can't use xfunc here |
| 19 | * + we can't use applet_name |
| 20 | * + we can't use bb_show_usage |
| 21 | * (Above doesn't apply for killall[5] cases) |
| 22 | * |
| 23 | * kill %n gets translated into kill ' -<process group>' by shell (note space!) |
| 24 | * This is needed to avoid collision with kill -9 ... syntax |
| 25 | */ |
| 26 | |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 27 | int kill_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 28 | { |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 29 | char *arg; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 30 | pid_t pid; |
| 31 | int signo = SIGTERM, errors = 0, quiet = 0; |
Denis Vlasenko | 02f47e9 | 2007-05-06 22:48:55 +0000 | [diff] [blame] | 32 | #if !ENABLE_KILLALL && !ENABLE_KILLALL5 |
| 33 | #define killall 0 |
| 34 | #define killall5 0 |
| 35 | #else |
| 36 | /* How to determine who we are? find 3rd char from the end: |
| 37 | * kill, killall, killall5 |
Denis Vlasenko | 0cacc80 | 2007-05-06 22:51:52 +0000 | [diff] [blame] | 38 | * ^i ^a ^l - it's unique |
| 39 | * (checking from the start is complicated by /bin/kill... case) */ |
Denis Vlasenko | 02f47e9 | 2007-05-06 22:48:55 +0000 | [diff] [blame] | 40 | const char char3 = argv[0][strlen(argv[0]) - 3]; |
| 41 | #define killall (ENABLE_KILLALL && char3 == 'a') |
| 42 | #define killall5 (ENABLE_KILLALL5 && char3 == 'l') |
| 43 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 44 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 45 | /* Parse any options */ |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 46 | argc--; |
| 47 | arg = *++argv; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 48 | |
Denis Vlasenko | fa07680 | 2006-11-05 00:38:51 +0000 | [diff] [blame] | 49 | if (argc < 1 || arg[0] != '-') { |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 50 | goto do_it_now; |
| 51 | } |
| 52 | |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 53 | /* The -l option, which prints out signal names. |
| 54 | * Intended usage in shell: |
| 55 | * echo "Died of SIG`kill -l $?`" |
| 56 | * We try to mimic what kill from coreutils-6.8 does */ |
Denis Vlasenko | fa07680 | 2006-11-05 00:38:51 +0000 | [diff] [blame] | 57 | if (arg[1] == 'l' && arg[2] == '\0') { |
Denis Vlasenko | fa07680 | 2006-11-05 00:38:51 +0000 | [diff] [blame] | 58 | if (argc == 1) { |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 59 | /* Print the whole signal list */ |
Denis Vlasenko | a4f4de9 | 2007-09-30 16:32:01 +0000 | [diff] [blame] | 60 | print_signames(); |
| 61 | return 0; |
Denis Vlasenko | 72e1c89 | 2007-09-29 22:26:01 +0000 | [diff] [blame] | 62 | } |
| 63 | /* -l <sig list> */ |
| 64 | while ((arg = *++argv)) { |
| 65 | if (isdigit(arg[0])) { |
| 66 | signo = bb_strtou(arg, NULL, 10); |
| 67 | if (errno) { |
| 68 | bb_error_msg("unknown signal '%s'", arg); |
| 69 | return EXIT_FAILURE; |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 70 | } |
Denis Vlasenko | 72e1c89 | 2007-09-29 22:26:01 +0000 | [diff] [blame] | 71 | /* Exitcodes >= 0x80 are to be treated |
| 72 | * as "killed by signal (exitcode & 0x7f)" */ |
| 73 | puts(get_signame(signo & 0x7f)); |
| 74 | /* TODO: 'bad' signal# - coreutils says: |
| 75 | * kill: 127: invalid signal |
| 76 | * we just print "127" instead */ |
| 77 | } else { |
| 78 | signo = get_signum(arg); |
| 79 | if (signo < 0) { |
| 80 | bb_error_msg("unknown signal '%s'", arg); |
| 81 | return EXIT_FAILURE; |
| 82 | } |
| 83 | printf("%d\n", signo); |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 84 | } |
| 85 | } |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 86 | /* If they specified -l, we are all done */ |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 87 | return EXIT_SUCCESS; |
| 88 | } |
| 89 | |
| 90 | /* The -q quiet option */ |
Denis Vlasenko | fa07680 | 2006-11-05 00:38:51 +0000 | [diff] [blame] | 91 | if (killall && arg[1] == 'q' && arg[2] == '\0') { |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 92 | quiet = 1; |
| 93 | arg = *++argv; |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 94 | argc--; |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 95 | if (argc < 1) |
| 96 | bb_show_usage(); |
| 97 | if (arg[0] != '-') |
| 98 | goto do_it_now; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 99 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 100 | |
Denis Vlasenko | b9b344a | 2008-10-31 00:30:48 +0000 | [diff] [blame] | 101 | arg++; /* skip '-' */ |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 102 | |
| 103 | /* -o PID? (if present, it always is at the end of command line) */ |
| 104 | if (killall5 && arg[0] == 'o') |
| 105 | goto do_it_now; |
| 106 | |
Denis Vlasenko | b9b344a | 2008-10-31 00:30:48 +0000 | [diff] [blame] | 107 | if (argc > 1 && arg[0] == 's' && arg[1] == '\0') { /* -s SIG? */ |
| 108 | argc--; |
| 109 | arg = *++argv; |
| 110 | } /* else it must be -SIG */ |
| 111 | signo = get_signum(arg); |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 112 | if (signo < 0) { /* || signo > MAX_SIGNUM ? */ |
Denis Vlasenko | b9b344a | 2008-10-31 00:30:48 +0000 | [diff] [blame] | 113 | bb_error_msg("bad signal name '%s'", arg); |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 114 | return EXIT_FAILURE; |
| 115 | } |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 116 | arg = *++argv; |
| 117 | argc--; |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 118 | |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 119 | do_it_now: |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 120 | pid = getpid(); |
Eric Andersen | abc0f4f | 1999-12-08 23:19:36 +0000 | [diff] [blame] | 121 | |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 122 | if (killall5) { |
| 123 | pid_t sid; |
Denis Vlasenko | 459e4d6 | 2006-11-05 00:43:51 +0000 | [diff] [blame] | 124 | procps_status_t* p = NULL; |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 125 | int ret = 0; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 126 | |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 127 | /* Find out our session id */ |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 128 | sid = getsid(pid); |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 129 | /* Stop all processes */ |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 130 | kill(-1, SIGSTOP); |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 131 | /* Signal all processes except those in our session */ |
Denis Vlasenko | 150f402 | 2007-01-13 21:06:21 +0000 | [diff] [blame] | 132 | while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_SID))) { |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 133 | int i; |
| 134 | |
| 135 | if (p->sid == (unsigned)sid |
| 136 | || p->pid == (unsigned)pid |
| 137 | || p->pid == 1) |
| 138 | continue; |
| 139 | |
| 140 | /* All remaining args must be -o PID options. |
| 141 | * Check p->pid against them. */ |
| 142 | for (i = 0; i < argc; i++) { |
| 143 | pid_t omit; |
| 144 | |
| 145 | arg = argv[i]; |
| 146 | if (arg[0] != '-' || arg[1] != 'o') { |
| 147 | bb_error_msg("bad option '%s'", arg); |
| 148 | ret = 1; |
| 149 | goto resume; |
| 150 | } |
| 151 | arg += 2; |
| 152 | if (!arg[0] && argv[++i]) |
| 153 | arg = argv[i]; |
| 154 | omit = bb_strtoi(arg, NULL, 10); |
| 155 | if (errno) { |
| 156 | bb_error_msg("bad pid '%s'", arg); |
| 157 | ret = 1; |
| 158 | goto resume; |
| 159 | } |
| 160 | if (p->pid == omit) |
| 161 | goto dont_kill; |
| 162 | } |
| 163 | kill(p->pid, signo); |
| 164 | dont_kill: ; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 165 | } |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 166 | resume: |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 167 | /* And let them continue */ |
| 168 | kill(-1, SIGCONT); |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 169 | return ret; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 170 | } |
| 171 | |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 172 | /* Pid or name is required for kill/killall */ |
| 173 | if (argc < 1) { |
Denis Vlasenko | 1fe4e9e | 2007-11-15 00:57:40 +0000 | [diff] [blame] | 174 | bb_error_msg("you need to specify whom to kill"); |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 175 | return EXIT_FAILURE; |
| 176 | } |
"Vladimir N. Oleynik" | 1e98a07 | 2006-01-25 13:21:08 +0000 | [diff] [blame] | 177 | |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 178 | if (killall) { |
Erik Andersen | 246cc6d | 2000-03-07 07:41:42 +0000 | [diff] [blame] | 179 | /* Looks like they want to do a killall. Do that */ |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 180 | while (arg) { |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 181 | pid_t* pidList; |
Erik Andersen | 246cc6d | 2000-03-07 07:41:42 +0000 | [diff] [blame] | 182 | |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 183 | pidList = find_pid_by_name(arg); |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 184 | if (*pidList == 0) { |
Eric Andersen | c38678d | 2002-09-16 06:22:25 +0000 | [diff] [blame] | 185 | errors++; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 186 | if (!quiet) |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 187 | bb_error_msg("%s: no process killed", arg); |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 188 | } else { |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 189 | pid_t *pl; |
Glenn L McGrath | bb2e9d4 | 2002-11-25 22:12:28 +0000 | [diff] [blame] | 190 | |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 191 | for (pl = pidList; *pl; pl++) { |
| 192 | if (*pl == pid) |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 193 | continue; |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 194 | if (kill(*pl, signo) == 0) |
| 195 | continue; |
| 196 | errors++; |
| 197 | if (!quiet) |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 198 | bb_perror_msg("can't kill pid %d", (int)*pl); |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 199 | } |
Erik Andersen | 246cc6d | 2000-03-07 07:41:42 +0000 | [diff] [blame] | 200 | } |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 201 | free(pidList); |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 202 | arg = *++argv; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 203 | } |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 204 | return errors; |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 205 | } |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 206 | |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 207 | /* Looks like they want to do a kill. Do that */ |
| 208 | while (arg) { |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 209 | /* Support shell 'space' trick */ |
| 210 | if (arg[0] == ' ') |
| 211 | arg++; |
| 212 | pid = bb_strtoi(arg, NULL, 10); |
| 213 | if (errno) { |
| 214 | bb_error_msg("bad pid '%s'", arg); |
| 215 | errors++; |
| 216 | } else if (kill(pid, signo) != 0) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 217 | bb_perror_msg("can't kill pid %d", (int)pid); |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 218 | errors++; |
| 219 | } |
| 220 | arg = *++argv; |
| 221 | } |
Eric Andersen | c38678d | 2002-09-16 06:22:25 +0000 | [diff] [blame] | 222 | return errors; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 223 | } |