blob: 3e0e121cab8636064e39b14da7226534dd28612f [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 *
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +00008 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersenc4996011999-10-20 22:08:37 +00009 */
10
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000011#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000012
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000013/* 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
Denis Vlasenko06af2162007-02-03 17:28:39 +000027int kill_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000028int kill_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000029{
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000030 char *arg;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +000031 pid_t pid;
32 int signo = SIGTERM, errors = 0, quiet = 0;
Denis Vlasenko02f47e92007-05-06 22:48:55 +000033#if !ENABLE_KILLALL && !ENABLE_KILLALL5
34#define killall 0
35#define killall5 0
36#else
37/* How to determine who we are? find 3rd char from the end:
38 * kill, killall, killall5
Denis Vlasenko0cacc802007-05-06 22:51:52 +000039 * ^i ^a ^l - it's unique
40 * (checking from the start is complicated by /bin/kill... case) */
Denis Vlasenko02f47e92007-05-06 22:48:55 +000041 const char char3 = argv[0][strlen(argv[0]) - 3];
42#define killall (ENABLE_KILLALL && char3 == 'a')
43#define killall5 (ENABLE_KILLALL5 && char3 == 'l')
44#endif
Eric Andersencc8ed391999-10-05 16:24:54 +000045
Erik Andersene49d5ec2000-02-08 19:58:47 +000046 /* Parse any options */
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000047 argc--;
48 arg = *++argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +000049
Denis Vlasenkofa076802006-11-05 00:38:51 +000050 if (argc < 1 || arg[0] != '-') {
Eric Andersen7d72e792003-07-26 07:41:56 +000051 goto do_it_now;
52 }
53
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000054 /* The -l option, which prints out signal names.
55 * Intended usage in shell:
56 * echo "Died of SIG`kill -l $?`"
57 * We try to mimic what kill from coreutils-6.8 does */
Denis Vlasenkofa076802006-11-05 00:38:51 +000058 if (arg[1] == 'l' && arg[2] == '\0') {
Denis Vlasenkofa076802006-11-05 00:38:51 +000059 if (argc == 1) {
Eric Andersen7d72e792003-07-26 07:41:56 +000060 /* Print the whole signal list */
Denis Vlasenkofa076802006-11-05 00:38:51 +000061 for (signo = 1; signo < 32; signo++) {
Denis Vlasenkodcf4de22007-05-01 20:07:29 +000062 const char *name = get_signame(signo);
63 if (!isdigit(name[0]))
64 puts(name);
Eric Andersen80cd3cf2002-07-23 23:45:11 +000065 }
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000066 } else { /* -l <sig list> */
Denis Vlasenkofa076802006-11-05 00:38:51 +000067 while ((arg = *++argv)) {
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000068 if (isdigit(arg[0])) {
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000069 signo = bb_strtou(arg, NULL, 10);
70 if (errno) {
71 bb_error_msg("unknown signal '%s'", arg);
72 return EXIT_FAILURE;
73 }
74 /* Exitcodes >= 0x80 are to be treated
75 * as "killed by signal (exitcode & 0x7f)" */
76 puts(get_signame(signo & 0x7f));
77 /* TODO: 'bad' signal# - coreutils says:
78 * kill: 127: invalid signal
79 * we just print "127" instead */
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000080 } else {
81 signo = get_signum(arg);
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000082 if (signo < 0) {
83 bb_error_msg("unknown signal '%s'", arg);
84 return EXIT_FAILURE;
85 }
86 printf("%d\n", signo);
Rob Landleyc9c1a412006-07-12 19:17:55 +000087 }
Eric Andersen7d72e792003-07-26 07:41:56 +000088 }
89 }
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000090 /* If they specified -l, we are all done */
Eric Andersen7d72e792003-07-26 07:41:56 +000091 return EXIT_SUCCESS;
92 }
93
94 /* The -q quiet option */
Denis Vlasenkofa076802006-11-05 00:38:51 +000095 if (killall && arg[1] == 'q' && arg[2] == '\0') {
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000096 quiet = 1;
97 arg = *++argv;
Eric Andersen7d72e792003-07-26 07:41:56 +000098 argc--;
Denis Vlasenkofa076802006-11-05 00:38:51 +000099 if (argc < 1) bb_show_usage();
100 if (arg[0] != '-') goto do_it_now;
Eric Andersencc8ed391999-10-05 16:24:54 +0000101 }
Eric Andersen3cf52d11999-10-12 22:26:06 +0000102
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000103 /* -SIG */
104 signo = get_signum(&arg[1]);
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000105 if (signo < 0) { /* || signo > MAX_SIGNUM ? */
106 bb_error_msg("bad signal name '%s'", &arg[1]);
107 return EXIT_FAILURE;
108 }
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000109 arg = *++argv;
110 argc--;
Eric Andersen7d72e792003-07-26 07:41:56 +0000111
Eric Andersen80cd3cf2002-07-23 23:45:11 +0000112do_it_now:
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000113
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000114 if (killall5) {
115 pid_t sid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000116 procps_status_t* p = NULL;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000117
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000118 /* Now stop all processes */
119 kill(-1, SIGSTOP);
120 /* Find out our own session id */
121 pid = getpid();
122 sid = getsid(pid);
123 /* Now kill all processes except our session */
Denis Vlasenko150f4022007-01-13 21:06:21 +0000124 while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_SID))) {
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000125 if (p->sid != sid && p->pid != pid && p->pid != 1)
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000126 kill(p->pid, signo);
127 }
128 /* And let them continue */
129 kill(-1, SIGCONT);
130 return 0;
131 }
132
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000133 /* Pid or name is required for kill/killall */
134 if (argc < 1) {
135 puts("You need to specify whom to kill");
136 return EXIT_FAILURE;
137 }
"Vladimir N. Oleynik"1e98a072006-01-25 13:21:08 +0000138
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000139 if (killall) {
Erik Andersen246cc6d2000-03-07 07:41:42 +0000140 /* Looks like they want to do a killall. Do that */
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000141 pid = getpid();
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000142 while (arg) {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000143 pid_t* pidList;
Erik Andersen246cc6d2000-03-07 07:41:42 +0000144
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000145 pidList = find_pid_by_name(arg);
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000146 if (*pidList == 0) {
Eric Andersenc38678d2002-09-16 06:22:25 +0000147 errors++;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000148 if (!quiet)
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000149 bb_error_msg("%s: no process killed", arg);
Eric Andersen7d72e792003-07-26 07:41:56 +0000150 } else {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000151 pid_t *pl;
Glenn L McGrathbb2e9d42002-11-25 22:12:28 +0000152
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000153 for (pl = pidList; *pl; pl++) {
154 if (*pl == pid)
Eric Andersen7d72e792003-07-26 07:41:56 +0000155 continue;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000156 if (kill(*pl, signo) == 0)
157 continue;
158 errors++;
159 if (!quiet)
160 bb_perror_msg("cannot kill pid %u", (unsigned)*pl);
Eric Andersen7d72e792003-07-26 07:41:56 +0000161 }
Erik Andersen246cc6d2000-03-07 07:41:42 +0000162 }
Eric Andersen44608e92002-10-22 12:21:15 +0000163 free(pidList);
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000164 arg = *++argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000165 }
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000166 return errors;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000167 }
Rob Landleyc9c1a412006-07-12 19:17:55 +0000168
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000169 /* Looks like they want to do a kill. Do that */
170 while (arg) {
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000171 /* Support shell 'space' trick */
172 if (arg[0] == ' ')
173 arg++;
174 pid = bb_strtoi(arg, NULL, 10);
175 if (errno) {
176 bb_error_msg("bad pid '%s'", arg);
177 errors++;
178 } else if (kill(pid, signo) != 0) {
179 bb_perror_msg("cannot kill pid %d", (int)pid);
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000180 errors++;
181 }
182 arg = *++argv;
183 }
Eric Andersenc38678d2002-09-16 06:22:25 +0000184 return errors;
Eric Andersencc8ed391999-10-05 16:24:54 +0000185}