don't whine if all we need to do is remove a bg job
[oweals/busybox.git] / kill.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini kill/killall implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  */
22
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <errno.h>
27 #include <unistd.h>
28 #include <signal.h>
29 #include <ctype.h>
30 #include <string.h>
31 #include <unistd.h>
32 #include "busybox.h"
33
34 static const int KILL = 0;
35 static const int KILLALL = 1;
36
37 struct signal_name {
38         const char *name;
39         int number;
40 };
41
42 static const struct signal_name signames[] = {
43         /* POSIX signals */
44         { "HUP",        SIGHUP },       /* 1 */
45         { "INT",        SIGINT },       /* 2 */
46         { "QUIT",       SIGQUIT },      /* 3 */
47         { "ILL",        SIGILL },       /* 4 */
48         { "ABRT",       SIGABRT },      /* 6 */
49         { "FPE",        SIGFPE },       /* 8 */
50         { "KILL",       SIGKILL },      /* 9 */
51         { "SEGV",       SIGSEGV },      /* 11 */
52         { "PIPE",       SIGPIPE },      /* 13 */
53         { "ALRM",       SIGALRM },      /* 14 */
54         { "TERM",       SIGTERM },      /* 15 */
55         { "USR1",       SIGUSR1 },      /* 10 (arm,i386,m68k,ppc), 30 (alpha,sparc*), 16 (mips) */
56         { "USR2",       SIGUSR2 },      /* 12 (arm,i386,m68k,ppc), 31 (alpha,sparc*), 17 (mips) */
57         { "CHLD",       SIGCHLD },      /* 17 (arm,i386,m68k,ppc), 20 (alpha,sparc*), 18 (mips) */
58         { "CONT",       SIGCONT },      /* 18 (arm,i386,m68k,ppc), 19 (alpha,sparc*), 25 (mips) */
59         { "STOP",       SIGSTOP },      /* 19 (arm,i386,m68k,ppc), 17 (alpha,sparc*), 23 (mips) */
60         { "TSTP",       SIGTSTP },      /* 20 (arm,i386,m68k,ppc), 18 (alpha,sparc*), 24 (mips) */
61         { "TTIN",       SIGTTIN },      /* 21 (arm,i386,m68k,ppc,alpha,sparc*), 26 (mips) */
62         { "TTOU",       SIGTTOU },      /* 22 (arm,i386,m68k,ppc,alpha,sparc*), 27 (mips) */
63         /* Miscellaneous other signals */
64 #ifdef SIGTRAP
65         { "TRAP",       SIGTRAP },      /* 5 */
66 #endif
67 #ifdef SIGIOT
68         { "IOT",        SIGIOT },       /* 6, same as SIGABRT */
69 #endif
70 #ifdef SIGEMT
71         { "EMT",        SIGEMT },       /* 7 (mips,alpha,sparc*) */
72 #endif
73 #ifdef SIGBUS
74         { "BUS",        SIGBUS },       /* 7 (arm,i386,m68k,ppc), 10 (mips,alpha,sparc*) */
75 #endif
76 #ifdef SIGSYS
77         { "SYS",        SIGSYS },       /* 12 (mips,alpha,sparc*) */
78 #endif
79 #ifdef SIGSTKFLT
80         { "STKFLT",     SIGSTKFLT },    /* 16 (arm,i386,m68k,ppc) */
81 #endif
82 #ifdef SIGURG
83         { "URG",        SIGURG },       /* 23 (arm,i386,m68k,ppc), 16 (alpha,sparc*), 21 (mips) */
84 #endif
85 #ifdef SIGIO
86         { "IO",         SIGIO },        /* 29 (arm,i386,m68k,ppc), 23 (alpha,sparc*), 22 (mips) */
87 #endif
88 #ifdef SIGPOLL
89         { "POLL",       SIGPOLL },      /* same as SIGIO */
90 #endif
91 #ifdef SIGCLD
92         { "CLD",        SIGCLD },       /* same as SIGCHLD (mips) */
93 #endif
94 #ifdef SIGXCPU
95         { "XCPU",       SIGXCPU },      /* 24 (arm,i386,m68k,ppc,alpha,sparc*), 30 (mips) */
96 #endif
97 #ifdef SIGXFSZ
98         { "XFSZ",       SIGXFSZ },      /* 25 (arm,i386,m68k,ppc,alpha,sparc*), 31 (mips) */
99 #endif
100 #ifdef SIGVTALRM
101         { "VTALRM",     SIGVTALRM },    /* 26 (arm,i386,m68k,ppc,alpha,sparc*), 28 (mips) */
102 #endif
103 #ifdef SIGPROF
104         { "PROF",       SIGPROF },      /* 27 (arm,i386,m68k,ppc,alpha,sparc*), 29 (mips) */
105 #endif
106 #ifdef SIGPWR
107         { "PWR",        SIGPWR },       /* 30 (arm,i386,m68k,ppc), 29 (alpha,sparc*), 19 (mips) */
108 #endif
109 #ifdef SIGINFO
110         { "INFO",       SIGINFO },      /* 29 (alpha) */
111 #endif
112 #ifdef SIGLOST
113         { "LOST",       SIGLOST },      /* 29 (arm,i386,m68k,ppc,sparc*) */
114 #endif
115 #ifdef SIGWINCH
116         { "WINCH",      SIGWINCH },     /* 28 (arm,i386,m68k,ppc,alpha,sparc*), 20 (mips) */
117 #endif
118 #ifdef SIGUNUSED
119         { "UNUSED",     SIGUNUSED },    /* 31 (arm,i386,m68k,ppc) */
120 #endif
121         {0, 0}
122 };
123
124 extern int kill_main(int argc, char **argv)
125 {
126         int whichApp, sig = SIGTERM;
127
128 #ifdef BB_KILLALL
129         /* Figure out what we are trying to do here */
130         whichApp = (strcmp(applet_name, "killall") == 0)? KILLALL : KILL; 
131 #else
132         whichApp = KILL;
133 #endif
134
135         argc--;
136         argv++;
137         /* Parse any options */
138         if (argc < 1)
139                 show_usage();
140
141         while (argc > 0 && **argv == '-') {
142                 while (*++(*argv)) {
143                         switch (**argv) {
144                         case 'l':
145                                 {
146                                         int col = 0;
147                                         const struct signal_name *s = signames;
148
149                                         while (s->name != 0) {
150                                                 col +=
151                                                         fprintf(stderr, "%2d) %-8s", s->number,
152                                                                         (s++)->name);
153                                                 if (col > 60) {
154                                                         fprintf(stderr, "\n");
155                                                         col = 0;
156                                                 }
157                                         }
158                                         fprintf(stderr, "\n\n");
159                                         return EXIT_SUCCESS;
160                                 }
161                                 break;
162                         case '-':
163                                 show_usage();
164                         default:
165                                 {
166                                         if (isdigit(**argv)) {
167                                                 sig = atoi(*argv);
168                                                 if (sig < 0 || sig >= NSIG)
169                                                         goto end;
170                                                 else {
171                                                         argc--;
172                                                         argv++;
173                                                         goto do_it_now;
174                                                 }
175                                         } else {
176                                                 const struct signal_name *s = signames;
177
178                                                 while (s->name != 0) {
179                                                         if (strcasecmp(s->name, *argv) == 0) {
180                                                                 sig = s->number;
181                                                                 argc--;
182                                                                 argv++;
183                                                                 goto do_it_now;
184                                                         }
185                                                         s++;
186                                                 }
187                                                 if (s->name == 0)
188                                                         goto end;
189                                         }
190                                 }
191                         }
192                         argc--;
193                         argv++;
194                 }
195         }
196
197   do_it_now:
198
199         if (whichApp == KILL) {
200                 /* Looks like they want to do a kill. Do that */
201                 while (--argc >= 0) {
202                         int pid;
203
204                         if (!isdigit(**argv))
205                                 perror_msg_and_die( "Bad PID");
206                         pid = strtol(*argv, NULL, 0);
207                         if (kill(pid, sig) != 0) 
208                                 perror_msg_and_die( "Could not kill pid '%d'", pid);
209                         argv++;
210                 }
211         } 
212 #ifdef BB_KILLALL
213         else {
214                 int all_found = TRUE;
215                 pid_t myPid=getpid();
216                 /* Looks like they want to do a killall.  Do that */
217                 while (--argc >= 0) {
218                         pid_t* pidList;
219
220                         pidList = find_pid_by_name( *argv);
221                         if (!pidList) {
222                                 all_found = FALSE;
223                                 error_msg( "%s: no process killed", *argv);
224                         }
225
226                         for(; pidList && *pidList!=0; pidList++) {
227                                 if (*pidList==myPid)
228                                         continue;
229                                 if (kill(*pidList, sig) != 0) 
230                                         perror_msg_and_die( "Could not kill pid '%d'", *pidList);
231                         }
232                         /* Note that we don't bother to free the memory
233                          * allocated in find_pid_by_name().  It will be freed
234                          * upon exit, so we can save a byte or two */
235                         argv++;
236                 }
237                 if (all_found == FALSE)
238                         return EXIT_FAILURE;
239         }
240 #endif
241
242         return EXIT_SUCCESS;
243
244
245   end:
246         error_msg_and_die( "bad signal name: %s", *argv);
247 }