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 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 11 | //usage:#define kill_trivial_usage |
| 12 | //usage: "[-l] [-SIG] PID..." |
| 13 | //usage:#define kill_full_usage "\n\n" |
| 14 | //usage: "Send a signal (default: TERM) to given PIDs\n" |
| 15 | //usage: "\nOptions:" |
| 16 | //usage: "\n -l List all signal names and numbers" |
| 17 | /* //usage: "\n -s SIG Yet another way of specifying SIG" */ |
| 18 | //usage: |
| 19 | //usage:#define kill_example_usage |
| 20 | //usage: "$ ps | grep apache\n" |
| 21 | //usage: "252 root root S [apache]\n" |
| 22 | //usage: "263 www-data www-data S [apache]\n" |
| 23 | //usage: "264 www-data www-data S [apache]\n" |
| 24 | //usage: "265 www-data www-data S [apache]\n" |
| 25 | //usage: "266 www-data www-data S [apache]\n" |
| 26 | //usage: "267 www-data www-data S [apache]\n" |
| 27 | //usage: "$ kill 252\n" |
| 28 | //usage: |
| 29 | //usage:#define killall_trivial_usage |
| 30 | //usage: "[-l] [-q] [-SIG] PROCESS_NAME..." |
| 31 | //usage:#define killall_full_usage "\n\n" |
| 32 | //usage: "Send a signal (default: TERM) to given processes\n" |
| 33 | //usage: "\nOptions:" |
| 34 | //usage: "\n -l List all signal names and numbers" |
| 35 | /* //usage: "\n -s SIG Yet another way of specifying SIG" */ |
| 36 | //usage: "\n -q Don't complain if no processes were killed" |
| 37 | //usage: |
| 38 | //usage:#define killall_example_usage |
| 39 | //usage: "$ killall apache\n" |
| 40 | //usage: |
| 41 | //usage:#define killall5_trivial_usage |
| 42 | //usage: "[-l] [-SIG] [-o PID]..." |
| 43 | //usage:#define killall5_full_usage "\n\n" |
| 44 | //usage: "Send a signal (default: TERM) to all processes outside current session\n" |
| 45 | //usage: "\nOptions:" |
| 46 | //usage: "\n -l List all signal names and numbers" |
| 47 | //usage: "\n -o PID Don't signal this PID" |
| 48 | /* //usage: "\n -s SIG Yet another way of specifying SIG" */ |
| 49 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 50 | #include "libbb.h" |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 51 | |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 52 | /* Note: kill_main is directly called from shell in order to implement |
| 53 | * kill built-in. Shell substitutes job ids with process groups first. |
| 54 | * |
| 55 | * This brings some complications: |
| 56 | * |
| 57 | * + we can't use xfunc here |
| 58 | * + we can't use applet_name |
| 59 | * + we can't use bb_show_usage |
| 60 | * (Above doesn't apply for killall[5] cases) |
| 61 | * |
| 62 | * kill %n gets translated into kill ' -<process group>' by shell (note space!) |
| 63 | * This is needed to avoid collision with kill -9 ... syntax |
| 64 | */ |
| 65 | |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 66 | int kill_main(int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 67 | { |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 68 | char *arg; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 69 | pid_t pid; |
| 70 | int signo = SIGTERM, errors = 0, quiet = 0; |
Denis Vlasenko | 02f47e9 | 2007-05-06 22:48:55 +0000 | [diff] [blame] | 71 | #if !ENABLE_KILLALL && !ENABLE_KILLALL5 |
| 72 | #define killall 0 |
| 73 | #define killall5 0 |
| 74 | #else |
| 75 | /* How to determine who we are? find 3rd char from the end: |
| 76 | * kill, killall, killall5 |
Denis Vlasenko | 0cacc80 | 2007-05-06 22:51:52 +0000 | [diff] [blame] | 77 | * ^i ^a ^l - it's unique |
| 78 | * (checking from the start is complicated by /bin/kill... case) */ |
Denis Vlasenko | 02f47e9 | 2007-05-06 22:48:55 +0000 | [diff] [blame] | 79 | const char char3 = argv[0][strlen(argv[0]) - 3]; |
| 80 | #define killall (ENABLE_KILLALL && char3 == 'a') |
| 81 | #define killall5 (ENABLE_KILLALL5 && char3 == 'l') |
| 82 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 83 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 84 | /* Parse any options */ |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 85 | argc--; |
| 86 | arg = *++argv; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 87 | |
Denis Vlasenko | fa07680 | 2006-11-05 00:38:51 +0000 | [diff] [blame] | 88 | if (argc < 1 || arg[0] != '-') { |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 89 | goto do_it_now; |
| 90 | } |
| 91 | |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 92 | /* The -l option, which prints out signal names. |
| 93 | * Intended usage in shell: |
| 94 | * echo "Died of SIG`kill -l $?`" |
| 95 | * We try to mimic what kill from coreutils-6.8 does */ |
Denis Vlasenko | fa07680 | 2006-11-05 00:38:51 +0000 | [diff] [blame] | 96 | if (arg[1] == 'l' && arg[2] == '\0') { |
Denis Vlasenko | fa07680 | 2006-11-05 00:38:51 +0000 | [diff] [blame] | 97 | if (argc == 1) { |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 98 | /* Print the whole signal list */ |
Denis Vlasenko | a4f4de9 | 2007-09-30 16:32:01 +0000 | [diff] [blame] | 99 | print_signames(); |
| 100 | return 0; |
Denis Vlasenko | 72e1c89 | 2007-09-29 22:26:01 +0000 | [diff] [blame] | 101 | } |
| 102 | /* -l <sig list> */ |
| 103 | while ((arg = *++argv)) { |
| 104 | if (isdigit(arg[0])) { |
| 105 | signo = bb_strtou(arg, NULL, 10); |
| 106 | if (errno) { |
| 107 | bb_error_msg("unknown signal '%s'", arg); |
| 108 | return EXIT_FAILURE; |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 109 | } |
Denis Vlasenko | 72e1c89 | 2007-09-29 22:26:01 +0000 | [diff] [blame] | 110 | /* Exitcodes >= 0x80 are to be treated |
| 111 | * as "killed by signal (exitcode & 0x7f)" */ |
| 112 | puts(get_signame(signo & 0x7f)); |
| 113 | /* TODO: 'bad' signal# - coreutils says: |
| 114 | * kill: 127: invalid signal |
| 115 | * we just print "127" instead */ |
| 116 | } else { |
| 117 | signo = get_signum(arg); |
| 118 | if (signo < 0) { |
| 119 | bb_error_msg("unknown signal '%s'", arg); |
| 120 | return EXIT_FAILURE; |
| 121 | } |
| 122 | printf("%d\n", signo); |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 123 | } |
| 124 | } |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 125 | /* If they specified -l, we are all done */ |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 126 | return EXIT_SUCCESS; |
| 127 | } |
| 128 | |
| 129 | /* The -q quiet option */ |
Denis Vlasenko | fa07680 | 2006-11-05 00:38:51 +0000 | [diff] [blame] | 130 | if (killall && arg[1] == 'q' && arg[2] == '\0') { |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 131 | quiet = 1; |
| 132 | arg = *++argv; |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 133 | argc--; |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 134 | if (argc < 1) |
| 135 | bb_show_usage(); |
| 136 | if (arg[0] != '-') |
| 137 | goto do_it_now; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 138 | } |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 139 | |
Denis Vlasenko | b9b344a | 2008-10-31 00:30:48 +0000 | [diff] [blame] | 140 | arg++; /* skip '-' */ |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 141 | |
| 142 | /* -o PID? (if present, it always is at the end of command line) */ |
| 143 | if (killall5 && arg[0] == 'o') |
| 144 | goto do_it_now; |
| 145 | |
Denis Vlasenko | b9b344a | 2008-10-31 00:30:48 +0000 | [diff] [blame] | 146 | if (argc > 1 && arg[0] == 's' && arg[1] == '\0') { /* -s SIG? */ |
| 147 | argc--; |
| 148 | arg = *++argv; |
| 149 | } /* else it must be -SIG */ |
| 150 | signo = get_signum(arg); |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 151 | if (signo < 0) { /* || signo > MAX_SIGNUM ? */ |
Denis Vlasenko | b9b344a | 2008-10-31 00:30:48 +0000 | [diff] [blame] | 152 | bb_error_msg("bad signal name '%s'", arg); |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 153 | return EXIT_FAILURE; |
| 154 | } |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 155 | arg = *++argv; |
| 156 | argc--; |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 157 | |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 158 | do_it_now: |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 159 | pid = getpid(); |
Eric Andersen | abc0f4f | 1999-12-08 23:19:36 +0000 | [diff] [blame] | 160 | |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 161 | if (killall5) { |
| 162 | pid_t sid; |
Denis Vlasenko | 459e4d6 | 2006-11-05 00:43:51 +0000 | [diff] [blame] | 163 | procps_status_t* p = NULL; |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 164 | int ret = 0; |
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 | /* Find out our session id */ |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 167 | sid = getsid(pid); |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 168 | /* Stop all processes */ |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 169 | kill(-1, SIGSTOP); |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 170 | /* Signal all processes except those in our session */ |
Denis Vlasenko | 150f402 | 2007-01-13 21:06:21 +0000 | [diff] [blame] | 171 | while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_SID))) { |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 172 | int i; |
| 173 | |
| 174 | if (p->sid == (unsigned)sid |
| 175 | || p->pid == (unsigned)pid |
| 176 | || p->pid == 1) |
| 177 | continue; |
| 178 | |
| 179 | /* All remaining args must be -o PID options. |
| 180 | * Check p->pid against them. */ |
| 181 | for (i = 0; i < argc; i++) { |
| 182 | pid_t omit; |
| 183 | |
| 184 | arg = argv[i]; |
| 185 | if (arg[0] != '-' || arg[1] != 'o') { |
| 186 | bb_error_msg("bad option '%s'", arg); |
| 187 | ret = 1; |
| 188 | goto resume; |
| 189 | } |
| 190 | arg += 2; |
| 191 | if (!arg[0] && argv[++i]) |
| 192 | arg = argv[i]; |
| 193 | omit = bb_strtoi(arg, NULL, 10); |
| 194 | if (errno) { |
Denys Vlasenko | b32a543 | 2010-08-29 13:29:02 +0200 | [diff] [blame] | 195 | bb_error_msg("invalid number '%s'", arg); |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 196 | ret = 1; |
| 197 | goto resume; |
| 198 | } |
| 199 | if (p->pid == omit) |
| 200 | goto dont_kill; |
| 201 | } |
| 202 | kill(p->pid, signo); |
| 203 | dont_kill: ; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 204 | } |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 205 | resume: |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 206 | /* And let them continue */ |
| 207 | kill(-1, SIGCONT); |
Denis Vlasenko | a0ab943 | 2009-02-07 22:30:39 +0000 | [diff] [blame] | 208 | return ret; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 211 | /* Pid or name is required for kill/killall */ |
| 212 | if (argc < 1) { |
Denis Vlasenko | 1fe4e9e | 2007-11-15 00:57:40 +0000 | [diff] [blame] | 213 | bb_error_msg("you need to specify whom to kill"); |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 214 | return EXIT_FAILURE; |
| 215 | } |
"Vladimir N. Oleynik" | 1e98a07 | 2006-01-25 13:21:08 +0000 | [diff] [blame] | 216 | |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 217 | if (killall) { |
Erik Andersen | 246cc6d | 2000-03-07 07:41:42 +0000 | [diff] [blame] | 218 | /* Looks like they want to do a killall. Do that */ |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 219 | while (arg) { |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 220 | pid_t* pidList; |
Erik Andersen | 246cc6d | 2000-03-07 07:41:42 +0000 | [diff] [blame] | 221 | |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 222 | pidList = find_pid_by_name(arg); |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 223 | if (*pidList == 0) { |
Eric Andersen | c38678d | 2002-09-16 06:22:25 +0000 | [diff] [blame] | 224 | errors++; |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 225 | if (!quiet) |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 226 | bb_error_msg("%s: no process killed", arg); |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 227 | } else { |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 228 | pid_t *pl; |
Glenn L McGrath | bb2e9d4 | 2002-11-25 22:12:28 +0000 | [diff] [blame] | 229 | |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 230 | for (pl = pidList; *pl; pl++) { |
| 231 | if (*pl == pid) |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 232 | continue; |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 233 | if (kill(*pl, signo) == 0) |
| 234 | continue; |
| 235 | errors++; |
| 236 | if (!quiet) |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 237 | bb_perror_msg("can't kill pid %d", (int)*pl); |
Eric Andersen | 7d72e79 | 2003-07-26 07:41:56 +0000 | [diff] [blame] | 238 | } |
Erik Andersen | 246cc6d | 2000-03-07 07:41:42 +0000 | [diff] [blame] | 239 | } |
Eric Andersen | 44608e9 | 2002-10-22 12:21:15 +0000 | [diff] [blame] | 240 | free(pidList); |
Denis Vlasenko | a77947f | 2006-09-27 14:19:16 +0000 | [diff] [blame] | 241 | arg = *++argv; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 242 | } |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 243 | return errors; |
Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 244 | } |
Rob Landley | c9c1a41 | 2006-07-12 19:17:55 +0000 | [diff] [blame] | 245 | |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 246 | /* Looks like they want to do a kill. Do that */ |
| 247 | while (arg) { |
Denys Vlasenko | b12553f | 2011-02-21 03:22:20 +0100 | [diff] [blame] | 248 | #if ENABLE_ASH || ENABLE_HUSH |
| 249 | /* |
| 250 | * We need to support shell's "hack formats" of |
| 251 | * " -PRGP_ID" (yes, with a leading space) |
| 252 | * and " PID1 PID2 PID3" (with degenerate case "") |
| 253 | */ |
| 254 | while (*arg != '\0') { |
| 255 | char *end; |
| 256 | if (*arg == ' ') |
| 257 | arg++; |
| 258 | pid = bb_strtoi(arg, &end, 10); |
| 259 | if (errno && (errno != EINVAL || *end != ' ')) { |
| 260 | bb_error_msg("invalid number '%s'", arg); |
Pere Orga | 9283d7c | 2011-03-07 16:22:17 +0100 | [diff] [blame] | 261 | *end = '\0'; |
Denys Vlasenko | b12553f | 2011-02-21 03:22:20 +0100 | [diff] [blame] | 262 | errors++; |
| 263 | } else if (kill(pid, signo) != 0) { |
| 264 | bb_perror_msg("can't kill pid %d", (int)pid); |
| 265 | errors++; |
| 266 | } |
| 267 | arg = end; /* can only point to ' ' or '\0' now */ |
| 268 | } |
| 269 | #else |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 270 | pid = bb_strtoi(arg, NULL, 10); |
| 271 | if (errno) { |
Denys Vlasenko | b32a543 | 2010-08-29 13:29:02 +0200 | [diff] [blame] | 272 | bb_error_msg("invalid number '%s'", arg); |
Denis Vlasenko | f20de5b | 2007-04-29 23:42:54 +0000 | [diff] [blame] | 273 | errors++; |
| 274 | } else if (kill(pid, signo) != 0) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 275 | bb_perror_msg("can't kill pid %d", (int)pid); |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 276 | errors++; |
| 277 | } |
Denys Vlasenko | b12553f | 2011-02-21 03:22:20 +0100 | [diff] [blame] | 278 | #endif |
Denis Vlasenko | 0bb628f | 2006-09-27 14:25:33 +0000 | [diff] [blame] | 279 | arg = *++argv; |
| 280 | } |
Eric Andersen | c38678d | 2002-09-16 06:22:25 +0000 | [diff] [blame] | 281 | return errors; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 282 | } |