blob: ed659afdca0b1a6f822ab2333e6a1852f3b7d864 [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
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000011#include "libbb.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
Rob Landleydfba7412006-03-06 20:47:33 +000027int kill_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000028{
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000029 char *arg;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +000030 pid_t pid;
31 int signo = SIGTERM, errors = 0, quiet = 0;
Denis Vlasenko02f47e92007-05-06 22:48:55 +000032#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 Vlasenko0cacc802007-05-06 22:51:52 +000038 * ^i ^a ^l - it's unique
39 * (checking from the start is complicated by /bin/kill... case) */
Denis Vlasenko02f47e92007-05-06 22:48:55 +000040 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 Andersencc8ed391999-10-05 16:24:54 +000044
Erik Andersene49d5ec2000-02-08 19:58:47 +000045 /* Parse any options */
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000046 argc--;
47 arg = *++argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +000048
Denis Vlasenkofa076802006-11-05 00:38:51 +000049 if (argc < 1 || arg[0] != '-') {
Eric Andersen7d72e792003-07-26 07:41:56 +000050 goto do_it_now;
51 }
52
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000053 /* 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 Vlasenkofa076802006-11-05 00:38:51 +000057 if (arg[1] == 'l' && arg[2] == '\0') {
Denis Vlasenkofa076802006-11-05 00:38:51 +000058 if (argc == 1) {
Eric Andersen7d72e792003-07-26 07:41:56 +000059 /* Print the whole signal list */
Denis Vlasenkoa4f4de92007-09-30 16:32:01 +000060 print_signames();
61 return 0;
Denis Vlasenko72e1c892007-09-29 22:26:01 +000062 }
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 Landleyc9c1a412006-07-12 19:17:55 +000070 }
Denis Vlasenko72e1c892007-09-29 22:26:01 +000071 /* 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 Andersen7d72e792003-07-26 07:41:56 +000084 }
85 }
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000086 /* If they specified -l, we are all done */
Eric Andersen7d72e792003-07-26 07:41:56 +000087 return EXIT_SUCCESS;
88 }
89
90 /* The -q quiet option */
Denis Vlasenkofa076802006-11-05 00:38:51 +000091 if (killall && arg[1] == 'q' && arg[2] == '\0') {
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000092 quiet = 1;
93 arg = *++argv;
Eric Andersen7d72e792003-07-26 07:41:56 +000094 argc--;
Denis Vlasenkofa076802006-11-05 00:38:51 +000095 if (argc < 1) bb_show_usage();
96 if (arg[0] != '-') goto do_it_now;
Eric Andersencc8ed391999-10-05 16:24:54 +000097 }
Eric Andersen3cf52d11999-10-12 22:26:06 +000098
Denis Vlasenkoa77947f2006-09-27 14:19:16 +000099 /* -SIG */
100 signo = get_signum(&arg[1]);
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000101 if (signo < 0) { /* || signo > MAX_SIGNUM ? */
102 bb_error_msg("bad signal name '%s'", &arg[1]);
103 return EXIT_FAILURE;
104 }
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000105 arg = *++argv;
106 argc--;
Eric Andersen7d72e792003-07-26 07:41:56 +0000107
Eric Andersen80cd3cf2002-07-23 23:45:11 +0000108do_it_now:
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000109 pid = getpid();
Eric Andersenabc0f4f1999-12-08 23:19:36 +0000110
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000111 if (killall5) {
112 pid_t sid;
Denis Vlasenko459e4d62006-11-05 00:43:51 +0000113 procps_status_t* p = NULL;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000114
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000115 /* Find out our own session id */
116 sid = getsid(pid);
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000117 /* Now stop all processes */
118 kill(-1, SIGSTOP);
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000119 /* Now kill all processes except our session */
Denis Vlasenko150f4022007-01-13 21:06:21 +0000120 while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_SID))) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000121 if (p->sid != (unsigned)sid && p->pid != (unsigned)pid && p->pid != 1)
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000122 kill(p->pid, signo);
123 }
124 /* And let them continue */
125 kill(-1, SIGCONT);
126 return 0;
127 }
128
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000129 /* Pid or name is required for kill/killall */
130 if (argc < 1) {
Denis Vlasenko1fe4e9e2007-11-15 00:57:40 +0000131 bb_error_msg("you need to specify whom to kill");
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000132 return EXIT_FAILURE;
133 }
"Vladimir N. Oleynik"1e98a072006-01-25 13:21:08 +0000134
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000135 if (killall) {
Erik Andersen246cc6d2000-03-07 07:41:42 +0000136 /* Looks like they want to do a killall. Do that */
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000137 while (arg) {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000138 pid_t* pidList;
Erik Andersen246cc6d2000-03-07 07:41:42 +0000139
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000140 pidList = find_pid_by_name(arg);
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000141 if (*pidList == 0) {
Eric Andersenc38678d2002-09-16 06:22:25 +0000142 errors++;
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000143 if (!quiet)
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000144 bb_error_msg("%s: no process killed", arg);
Eric Andersen7d72e792003-07-26 07:41:56 +0000145 } else {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000146 pid_t *pl;
Glenn L McGrathbb2e9d42002-11-25 22:12:28 +0000147
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000148 for (pl = pidList; *pl; pl++) {
149 if (*pl == pid)
Eric Andersen7d72e792003-07-26 07:41:56 +0000150 continue;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000151 if (kill(*pl, signo) == 0)
152 continue;
153 errors++;
154 if (!quiet)
155 bb_perror_msg("cannot kill pid %u", (unsigned)*pl);
Eric Andersen7d72e792003-07-26 07:41:56 +0000156 }
Erik Andersen246cc6d2000-03-07 07:41:42 +0000157 }
Eric Andersen44608e92002-10-22 12:21:15 +0000158 free(pidList);
Denis Vlasenkoa77947f2006-09-27 14:19:16 +0000159 arg = *++argv;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160 }
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000161 return errors;
Eric Andersen3cf52d11999-10-12 22:26:06 +0000162 }
Rob Landleyc9c1a412006-07-12 19:17:55 +0000163
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000164 /* Looks like they want to do a kill. Do that */
165 while (arg) {
Denis Vlasenkof20de5b2007-04-29 23:42:54 +0000166 /* Support shell 'space' trick */
167 if (arg[0] == ' ')
168 arg++;
169 pid = bb_strtoi(arg, NULL, 10);
170 if (errno) {
171 bb_error_msg("bad pid '%s'", arg);
172 errors++;
173 } else if (kill(pid, signo) != 0) {
174 bb_perror_msg("cannot kill pid %d", (int)pid);
Denis Vlasenko0bb628f2006-09-27 14:25:33 +0000175 errors++;
176 }
177 arg = *++argv;
178 }
Eric Andersenc38678d2002-09-16 06:22:25 +0000179 return errors;
Eric Andersencc8ed391999-10-05 16:24:54 +0000180}