blob: 0ef1716a422a45080807a842bf750735cfb30cde [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenc4996011999-10-20 22:08:37 +00002/*
Denis Vlasenko02f47e92007-05-06 22:48:55 +00003 * Mini kill/killall[5] implementation for busybox
Eric Andersenc4996011999-10-20 22:08:37 +00004 *
5 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenc4996011999-10-20 22:08:37 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenc4996011999-10-20 22:08:37 +00009 */
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010010//config:config KILL
11//config: bool "kill"
12//config: default y
13//config: help
14//config: The command kill sends the specified signal to the specified
15//config: process or process group. If no signal is specified, the TERM
16//config: signal is sent.
17//config:
18//config:config KILLALL
19//config: bool "killall"
20//config: default y
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010021//config: help
22//config: killall sends a signal to all processes running any of the
23//config: specified commands. If no signal name is specified, SIGTERM is
24//config: sent.
25//config:
26//config:config KILLALL5
27//config: bool "killall5"
28//config: default y
Denys Vlasenko5467d262016-11-23 06:43:46 +010029//config: help
30//config: The SystemV killall command. killall5 sends a signal
31//config: to all processes except kernel threads and the processes
32//config: in its own session, so it won't kill the shell that is running
33//config: the script it was called from.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010034
35//applet:IF_KILL(APPLET(kill, BB_DIR_BIN, BB_SUID_DROP))
36//applet:IF_KILLALL(APPLET_ODDNAME(killall, kill, BB_DIR_USR_BIN, BB_SUID_DROP, killall))
37//applet:IF_KILLALL5(APPLET_ODDNAME(killall5, kill, BB_DIR_USR_SBIN, BB_SUID_DROP, killall5))
38
39//kbuild:lib-$(CONFIG_KILL) += kill.o
40//kbuild:lib-$(CONFIG_KILLALL) += kill.o
41//kbuild:lib-$(CONFIG_KILLALL5) += kill.o
Eric Andersenc4996011999-10-20 22:08:37 +000042
Pere Orga5bc8c002011-04-11 03:29:49 +020043//usage:#define kill_trivial_usage
44//usage: "[-l] [-SIG] PID..."
45//usage:#define kill_full_usage "\n\n"
46//usage: "Send a signal (default: TERM) to given PIDs\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020047//usage: "\n -l List all signal names and numbers"
48/* //usage: "\n -s SIG Yet another way of specifying SIG" */
49//usage:
50//usage:#define kill_example_usage
51//usage: "$ ps | grep apache\n"
52//usage: "252 root root S [apache]\n"
53//usage: "263 www-data www-data S [apache]\n"
54//usage: "264 www-data www-data S [apache]\n"
55//usage: "265 www-data www-data S [apache]\n"
56//usage: "266 www-data www-data S [apache]\n"
57//usage: "267 www-data www-data S [apache]\n"
58//usage: "$ kill 252\n"
59//usage:
60//usage:#define killall_trivial_usage
61//usage: "[-l] [-q] [-SIG] PROCESS_NAME..."
62//usage:#define killall_full_usage "\n\n"
63//usage: "Send a signal (default: TERM) to given processes\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020064//usage: "\n -l List all signal names and numbers"
65/* //usage: "\n -s SIG Yet another way of specifying SIG" */
66//usage: "\n -q Don't complain if no processes were killed"
67//usage:
68//usage:#define killall_example_usage
69//usage: "$ killall apache\n"
70//usage:
71//usage:#define killall5_trivial_usage
72//usage: "[-l] [-SIG] [-o PID]..."
73//usage:#define killall5_full_usage "\n\n"
74//usage: "Send a signal (default: TERM) to all processes outside current session\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020075//usage: "\n -l List all signal names and numbers"
76//usage: "\n -o PID Don't signal this PID"
77/* //usage: "\n -s SIG Yet another way of specifying SIG" */
78
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000079#include "libbb.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000080
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000081/* Note: kill_main is directly called from shell in order to implement
82 * kill built-in. Shell substitutes job ids with process groups first.
83 *
84 * This brings some complications:
85 *
86 * + we can't use xfunc here
87 * + we can't use applet_name
88 * + we can't use bb_show_usage
89 * (Above doesn't apply for killall[5] cases)
90 *
91 * kill %n gets translated into kill ' -<process group>' by shell (note space!)
92 * This is needed to avoid collision with kill -9 ... syntax
93 */
94
Kang-Che Sung61a91af2017-01-09 18:46:58 +010095//kbuild:lib-$(CONFIG_ASH_JOB_CONTROL) += kill.o
96//kbuild:lib-$(CONFIG_HUSH_KILL) += kill.o
97
98#define SH_KILL (ENABLE_ASH_JOB_CONTROL || ENABLE_HUSH_KILL)
99/* If shells want to have "kill", for ifdefs it's like ENABLE_KILL=1 */
100#if SH_KILL
101# undef ENABLE_KILL
102# define ENABLE_KILL 1
103#endif
104#define KILL_APPLET_CNT (ENABLE_KILL + ENABLE_KILLALL + ENABLE_KILLALL5)
105
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100106int kill_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000107{
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000108 char *arg;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000109 pid_t pid;
110 int signo = SIGTERM, errors = 0, quiet = 0;
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100111
112#if KILL_APPLET_CNT == 1
113# define is_killall ENABLE_KILLALL
114# define is_killall5 ENABLE_KILLALL5
Denis Vlasenko02f47e92007-05-06 22:48:55 +0000115#else
116/* How to determine who we are? find 3rd char from the end:
117 * kill, killall, killall5
Denis Vlasenko0cacc802007-05-06 22:51:52 +0000118 * ^i ^a ^l - it's unique
119 * (checking from the start is complicated by /bin/kill... case) */
Denis Vlasenko02f47e92007-05-06 22:48:55 +0000120 const char char3 = argv[0][strlen(argv[0]) - 3];
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100121# define is_killall (ENABLE_KILLALL && char3 == 'a')
122# define is_killall5 (ENABLE_KILLALL5 && char3 == 'l')
Denis Vlasenko02f47e92007-05-06 22:48:55 +0000123#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000124
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 /* Parse any options */
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000126 arg = *++argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100128 if (!arg || arg[0] != '-') {
Eric Andersen7d72e792003-07-26 07:41:56 +0000129 goto do_it_now;
130 }
131
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000132 /* The -l option, which prints out signal names.
133 * Intended usage in shell:
134 * echo "Died of SIG`kill -l $?`"
135 * We try to mimic what kill from coreutils-6.8 does */
Denis Vlasenkofa076802006-11-05 00:38:51 +0000136 if (arg[1] == 'l' && arg[2] == '\0') {
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100137 arg = *++argv;
138 if (!arg) {
Eric Andersen7d72e792003-07-26 07:41:56 +0000139 /* Print the whole signal list */
Denis Vlasenkoa4f4de92007-09-30 16:32:01 +0000140 print_signames();
141 return 0;
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000142 }
143 /* -l <sig list> */
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100144 do {
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000145 if (isdigit(arg[0])) {
146 signo = bb_strtou(arg, NULL, 10);
147 if (errno) {
148 bb_error_msg("unknown signal '%s'", arg);
149 return EXIT_FAILURE;
Rob Landleyc9c1a412006-07-12 19:17:55 +0000150 }
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000151 /* Exitcodes >= 0x80 are to be treated
152 * as "killed by signal (exitcode & 0x7f)" */
153 puts(get_signame(signo & 0x7f));
154 /* TODO: 'bad' signal# - coreutils says:
155 * kill: 127: invalid signal
156 * we just print "127" instead */
157 } else {
158 signo = get_signum(arg);
159 if (signo < 0) {
160 bb_error_msg("unknown signal '%s'", arg);
161 return EXIT_FAILURE;
162 }
163 printf("%d\n", signo);
Eric Andersen7d72e792003-07-26 07:41:56 +0000164 }
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100165 arg = *++argv;
166 } while (arg);
Eric Andersen7d72e792003-07-26 07:41:56 +0000167 return EXIT_SUCCESS;
168 }
169
170 /* The -q quiet option */
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100171 if (is_killall && arg[1] == 'q' && arg[2] == '\0') {
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000172 quiet = 1;
173 arg = *++argv;
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100174 if (!arg)
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000175 bb_show_usage();
176 if (arg[0] != '-')
177 goto do_it_now;
Eric Andersencc8ed391999-10-05 16:24:54 +0000178 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000179
Denis Vlasenkob9b344a2008-10-31 00:30:48 +0000180 arg++; /* skip '-' */
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000181
182 /* -o PID? (if present, it always is at the end of command line) */
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100183 if (is_killall5 && arg[0] == 'o')
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000184 goto do_it_now;
185
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100186 if (argv[1] && arg[0] == 's' && arg[1] == '\0') { /* -s SIG? */
Denis Vlasenkob9b344a2008-10-31 00:30:48 +0000187 arg = *++argv;
188 } /* else it must be -SIG */
189 signo = get_signum(arg);
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000190 if (signo < 0) { /* || signo > MAX_SIGNUM ? */
Denis Vlasenkob9b344a2008-10-31 00:30:48 +0000191 bb_error_msg("bad signal name '%s'", arg);
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000192 return EXIT_FAILURE;
193 }
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000194 arg = *++argv;
Eric Andersen7d72e792003-07-26 07:41:56 +0000195
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000196 do_it_now:
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000197 pid = getpid();
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000198
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100199 if (is_killall5) {
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000200 pid_t sid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000201 procps_status_t* p = NULL;
Uros Vampl3ac1e0d2013-12-16 17:44:58 +0100202 /* compat: exitcode 2 is "no one was signaled" */
203 int ret = 2;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000204
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000205 /* Find out our session id */
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000206 sid = getsid(pid);
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000207 /* Stop all processes */
Denys Vlasenko14850302012-04-03 08:16:05 +0200208 if (signo != SIGSTOP && signo != SIGCONT)
209 kill(-1, SIGSTOP);
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000210 /* Signal all processes except those in our session */
Alexey Fomenko6a932122011-12-22 11:38:57 +0100211 while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_SID)) != NULL) {
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100212 char **args;
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000213
214 if (p->sid == (unsigned)sid
Uros Vampl3ac1e0d2013-12-16 17:44:58 +0100215 || p->sid == 0 /* compat: kernel thread, don't signal it */
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000216 || p->pid == (unsigned)pid
Alexey Fomenko6a932122011-12-22 11:38:57 +0100217 || p->pid == 1
218 ) {
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000219 continue;
Alexey Fomenko6a932122011-12-22 11:38:57 +0100220 }
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000221
222 /* All remaining args must be -o PID options.
223 * Check p->pid against them. */
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100224 args = argv;
225 while (*args) {
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000226 pid_t omit;
227
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100228 arg = *args++;
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000229 if (arg[0] != '-' || arg[1] != 'o') {
230 bb_error_msg("bad option '%s'", arg);
231 ret = 1;
232 goto resume;
233 }
234 arg += 2;
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100235 if (!arg[0] && *args)
236 arg = *args++;
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000237 omit = bb_strtoi(arg, NULL, 10);
238 if (errno) {
Denys Vlasenkob32a5432010-08-29 13:29:02 +0200239 bb_error_msg("invalid number '%s'", arg);
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000240 ret = 1;
241 goto resume;
242 }
243 if (p->pid == omit)
244 goto dont_kill;
245 }
246 kill(p->pid, signo);
Uros Vampl3ac1e0d2013-12-16 17:44:58 +0100247 ret = 0;
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000248 dont_kill: ;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000249 }
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000250 resume:
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000251 /* And let them continue */
Denys Vlasenko14850302012-04-03 08:16:05 +0200252 if (signo != SIGSTOP && signo != SIGCONT)
253 kill(-1, SIGCONT);
Denis Vlasenkoa0ab9432009-02-07 22:30:39 +0000254 return ret;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000255 }
256
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100257#if ENABLE_KILL || ENABLE_KILLALL
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000258 /* Pid or name is required for kill/killall */
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100259 if (!arg) {
Denis Vlasenko1fe4e9e2007-11-15 00:57:40 +0000260 bb_error_msg("you need to specify whom to kill");
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000261 return EXIT_FAILURE;
262 }
"Vladimir N. Oleynik"1e98a072006-01-25 13:21:08 +0000263
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100264 if (!ENABLE_KILL || is_killall) {
Erik Andersen246cc6d2000-03-07 07:41:42 +0000265 /* Looks like they want to do a killall. Do that */
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100266 do {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000267 pid_t* pidList;
Erik Andersen246cc6d2000-03-07 07:41:42 +0000268
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000269 pidList = find_pid_by_name(arg);
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000270 if (*pidList == 0) {
Eric Andersenc38678d2002-09-16 06:22:25 +0000271 errors++;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000272 if (!quiet)
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000273 bb_error_msg("%s: no process killed", arg);
Eric Andersen7d72e792003-07-26 07:41:56 +0000274 } else {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000275 pid_t *pl;
Glenn L McGrathbb2e9d42002-11-25 22:12:28 +0000276
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000277 for (pl = pidList; *pl; pl++) {
278 if (*pl == pid)
Eric Andersen7d72e792003-07-26 07:41:56 +0000279 continue;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000280 if (kill(*pl, signo) == 0)
281 continue;
282 errors++;
283 if (!quiet)
Denys Vlasenko651a2692010-03-23 16:25:17 +0100284 bb_perror_msg("can't kill pid %d", (int)*pl);
Eric Andersen7d72e792003-07-26 07:41:56 +0000285 }
Erik Andersen246cc6d2000-03-07 07:41:42 +0000286 }
Eric Andersen44608e92002-10-22 12:21:15 +0000287 free(pidList);
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000288 arg = *++argv;
Denys Vlasenko4b26f822013-12-16 17:45:44 +0100289 } while (arg);
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000290 return errors;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000291 }
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100292#endif
Rob Landleyc9c1a412006-07-12 19:17:55 +0000293
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100294#if ENABLE_KILL
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000295 /* Looks like they want to do a kill. Do that */
296 while (arg) {
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100297# if SH_KILL
Denys Vlasenkob12553f2011-02-21 03:22:20 +0100298 /*
299 * We need to support shell's "hack formats" of
300 * " -PRGP_ID" (yes, with a leading space)
301 * and " PID1 PID2 PID3" (with degenerate case "")
302 */
303 while (*arg != '\0') {
304 char *end;
305 if (*arg == ' ')
306 arg++;
307 pid = bb_strtoi(arg, &end, 10);
308 if (errno && (errno != EINVAL || *end != ' ')) {
309 bb_error_msg("invalid number '%s'", arg);
310 errors++;
Alexey Fomenko6a932122011-12-22 11:38:57 +0100311 break;
312 }
313 if (kill(pid, signo) != 0) {
Denys Vlasenkob12553f2011-02-21 03:22:20 +0100314 bb_perror_msg("can't kill pid %d", (int)pid);
315 errors++;
316 }
317 arg = end; /* can only point to ' ' or '\0' now */
318 }
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100319# else /* ENABLE_KILL but !SH_KILL */
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000320 pid = bb_strtoi(arg, NULL, 10);
321 if (errno) {
Denys Vlasenkob32a5432010-08-29 13:29:02 +0200322 bb_error_msg("invalid number '%s'", arg);
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000323 errors++;
324 } else if (kill(pid, signo) != 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100325 bb_perror_msg("can't kill pid %d", (int)pid);
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000326 errors++;
327 }
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100328# endif
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000329 arg = *++argv;
330 }
Eric Andersenc38678d2002-09-16 06:22:25 +0000331 return errors;
Kang-Che Sung61a91af2017-01-09 18:46:58 +0100332#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000333}