blob: a3ca9e295686495f0bf328cf8c255e46de363661 [file] [log] [blame]
Denis Vlasenko72e1c892007-09-29 22:26:01 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini pgrep/pkill implementation for busybox
4 *
5 * Copyright (C) 2007 Loic Grenie <loic.grenie@gmail.com>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denis Vlasenko72e1c892007-09-29 22:26:01 +00008 */
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +01009//config:config PGREP
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020010//config: bool "pgrep (6.8 kb)"
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010011//config: default y
12//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: Look for processes by name.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010014//config:
15//config:config PKILL
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020016//config: bool "pkill (7.6 kb)"
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010017//config: default y
18//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020019//config: Send signals to processes by name.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010020
21//applet:IF_PGREP(APPLET(pgrep, BB_DIR_USR_BIN, BB_SUID_DROP))
Denys Vlasenko205d48e2017-01-29 14:57:33 +010022// APPLET_ODDNAME:name main location suid_type help
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010023//applet:IF_PKILL(APPLET_ODDNAME(pkill, pgrep, BB_DIR_USR_BIN, BB_SUID_DROP, pkill))
24
25//kbuild:lib-$(CONFIG_PGREP) += pgrep.o
26//kbuild:lib-$(CONFIG_PKILL) += pgrep.o
Pere Orga5bc8c002011-04-11 03:29:49 +020027
28//usage:#define pgrep_trivial_usage
Denys Vlasenko9f4b4222017-06-26 21:10:47 +020029//usage: "[-flanovx] [-s SID|-P PPID|PATTERN]"
Pere Orga5bc8c002011-04-11 03:29:49 +020030//usage:#define pgrep_full_usage "\n\n"
31//usage: "Display process(es) selected by regex PATTERN\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020032//usage: "\n -l Show command name too"
Denys Vlasenko9f4b4222017-06-26 21:10:47 +020033//usage: "\n -a Show command line too"
Pere Orga5bc8c002011-04-11 03:29:49 +020034//usage: "\n -f Match against entire command line"
35//usage: "\n -n Show the newest process only"
36//usage: "\n -o Show the oldest process only"
37//usage: "\n -v Negate the match"
38//usage: "\n -x Match whole name (not substring)"
39//usage: "\n -s Match session ID (0 for current)"
40//usage: "\n -P Match parent process ID"
41//usage:
42//usage:#define pkill_trivial_usage
43//usage: "[-l|-SIGNAL] [-fnovx] [-s SID|-P PPID|PATTERN]"
44//usage:#define pkill_full_usage "\n\n"
45//usage: "Send a signal to process(es) selected by regex PATTERN\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020046//usage: "\n -l List all signals"
47//usage: "\n -f Match against entire command line"
48//usage: "\n -n Signal the newest process only"
49//usage: "\n -o Signal the oldest process only"
50//usage: "\n -v Negate the match"
51//usage: "\n -x Match whole name (not substring)"
52//usage: "\n -s Match session ID (0 for current)"
53//usage: "\n -P Match parent process ID"
54
Denis Vlasenko72e1c892007-09-29 22:26:01 +000055#include "libbb.h"
56#include "xregex.h"
57
58/* Idea taken from kill.c */
Denys Vlasenko9f4b4222017-06-26 21:10:47 +020059#define pgrep (ENABLE_PGREP && (!ENABLE_PKILL || applet_name[1] == 'g'))
60#define pkill (ENABLE_PKILL && (!ENABLE_PGREP || applet_name[1] == 'k'))
Denis Vlasenko72e1c892007-09-29 22:26:01 +000061
62enum {
Denys Vlasenko9f4b4222017-06-26 21:10:47 +020063 /* "vlafxons:+P:+" */
Denys Vlasenko57dc5342009-07-06 00:00:12 +020064 OPTBIT_V = 0, /* must be first, we need OPT_INVERT = 0/1 */
65 OPTBIT_L,
Denys Vlasenko9f4b4222017-06-26 21:10:47 +020066 OPTBIT_A,
Denys Vlasenko57dc5342009-07-06 00:00:12 +020067 OPTBIT_F,
68 OPTBIT_X,
69 OPTBIT_O,
70 OPTBIT_N,
71 OPTBIT_S,
72 OPTBIT_P,
Denis Vlasenko72e1c892007-09-29 22:26:01 +000073};
74
Denys Vlasenko57dc5342009-07-06 00:00:12 +020075#define OPT_INVERT (opt & (1 << OPTBIT_V))
76#define OPT_LIST (opt & (1 << OPTBIT_L))
Denys Vlasenko9f4b4222017-06-26 21:10:47 +020077#define OPT_LISTFULL (opt & (1 << OPTBIT_A))
Denys Vlasenko57dc5342009-07-06 00:00:12 +020078#define OPT_FULL (opt & (1 << OPTBIT_F))
79#define OPT_ANCHOR (opt & (1 << OPTBIT_X))
80#define OPT_FIRST (opt & (1 << OPTBIT_O))
81#define OPT_LAST (opt & (1 << OPTBIT_N))
82#define OPT_SID (opt & (1 << OPTBIT_S))
83#define OPT_PPID (opt & (1 << OPTBIT_P))
Denis Vlasenko72e1c892007-09-29 22:26:01 +000084
Denys Vlasenko57dc5342009-07-06 00:00:12 +020085static void act(unsigned pid, char *cmd, int signo)
Denis Vlasenko72e1c892007-09-29 22:26:01 +000086{
87 if (pgrep) {
Denys Vlasenko9f4b4222017-06-26 21:10:47 +020088 if (option_mask32 & ((1 << OPTBIT_L)|(1 << OPTBIT_A))) /* -l or -a */
Denys Vlasenko327f5502013-11-29 16:45:45 +010089 printf("%u %s\n", pid, cmd);
Denis Vlasenko72e1c892007-09-29 22:26:01 +000090 else
Denys Vlasenko327f5502013-11-29 16:45:45 +010091 printf("%u\n", pid);
Denis Vlasenko72e1c892007-09-29 22:26:01 +000092 } else
93 kill(pid, signo);
94}
95
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000096int pgrep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000097int pgrep_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko72e1c892007-09-29 22:26:01 +000098{
Denys Vlasenko57dc5342009-07-06 00:00:12 +020099 unsigned pid;
100 int signo;
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000101 unsigned opt;
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200102 int scan_mask;
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000103 int matched_pid;
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200104 int sid2match, ppid2match;
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000105 char *cmd_last;
106 procps_status_t *proc;
107 /* These are initialized to 0 */
108 struct {
109 regex_t re_buffer;
110 regmatch_t re_match[1];
111 } Z;
112#define re_buffer (Z.re_buffer)
113#define re_match (Z.re_match )
114
115 memset(&Z, 0, sizeof(Z));
116
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200117 /* Parse -SIGNAL for pkill. Must be first option, if present */
118 signo = SIGTERM;
119 if (pkill && argv[1] && argv[1][0] == '-') {
120 int temp = get_signum(argv[1]+1);
121 if (temp != -1) {
122 signo = temp;
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000123 argv++;
124 }
125 }
126
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200127 /* Parse remaining options */
128 ppid2match = -1;
129 sid2match = -1;
Denys Vlasenko9f4b4222017-06-26 21:10:47 +0200130 opt = getopt32(argv, "vlafxons:+P:+", &sid2match, &ppid2match);
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200131 argv += optind;
132
133 if (pkill && OPT_LIST) { /* -l: print the whole signal list */
134 print_signames();
135 return 0;
136 }
137
138 pid = getpid();
139 if (sid2match == 0)
140 sid2match = getsid(pid);
141
Denys Vlasenko16d1e3c2009-08-14 22:33:10 +0200142 scan_mask = PSSCAN_COMM | PSSCAN_ARGV0;
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200143 if (OPT_FULL)
144 scan_mask |= PSSCAN_ARGVN;
145
146 /* One pattern is required, if no -s and no -P */
147 if ((sid2match & ppid2match) < 0 && (!argv[0] || argv[1]))
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000148 bb_show_usage();
149
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200150 if (argv[0])
Denys Vlasenko7794c212013-02-28 15:51:55 +0100151 xregcomp(&re_buffer, argv[0], OPT_ANCHOR ? REG_EXTENDED : (REG_EXTENDED|REG_NOSUB));
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200152
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000153 matched_pid = 0;
154 cmd_last = NULL;
155 proc = NULL;
156 while ((proc = procps_scan(proc, scan_mask)) != NULL) {
157 char *cmd;
Denys Vlasenko578008a2017-07-21 17:43:14 +0200158 int cmdlen, match;
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200159
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000160 if (proc->pid == pid)
161 continue;
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200162
Denys Vlasenko578008a2017-07-21 17:43:14 +0200163 if (!OPT_INVERT) {
164 /* Quickly reject -sN -PN mismatches... unless -v */
165 if (ppid2match >= 0 && ppid2match != proc->ppid)
166 continue;
167 if (sid2match >= 0 && sid2match != proc->sid)
168 continue;
169 }
Denys Vlasenko4add7572017-06-26 14:41:53 +0200170
Denys Vlasenko9f4b4222017-06-26 21:10:47 +0200171 cmdlen = -1;
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000172 cmd = proc->argv0;
Denis Vlasenko3b3ca112008-07-17 18:39:36 +0000173 if (!cmd) {
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000174 cmd = proc->comm;
Denis Vlasenko3b3ca112008-07-17 18:39:36 +0000175 } else {
176 int i = proc->argv_len;
Denys Vlasenko9f4b4222017-06-26 21:10:47 +0200177
178 if (!OPT_LISTFULL)
179 cmdlen = strlen(cmd); /* not -a: find first NUL */
Denys Vlasenko4add7572017-06-26 14:41:53 +0200180 /*
181 * "sleep 11" looks like "sleep""\0""11""\0" in argv0.
182 * Make sure last "\0" does not get converted to " ":
183 */
184 if (i && cmd[i-1] == '\0')
185 i--;
Denys Vlasenko16d1e3c2009-08-14 22:33:10 +0200186 while (--i >= 0) {
187 if ((unsigned char)cmd[i] < ' ')
188 cmd[i] = ' ';
Denis Vlasenko3b3ca112008-07-17 18:39:36 +0000189 }
190 }
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200191
Denys Vlasenko578008a2017-07-21 17:43:14 +0200192 if (OPT_INVERT) {
193 /* "pgrep -v -P1 firefox" means "not (ppid=1 AND name=firefox)"
194 * or equivalently "ppid!=1 OR name!=firefox".
195 * Check the first condition and if true, skip matching.
196 */
197 if (ppid2match >= 0 && ppid2match != proc->ppid)
198 goto got_it;
199 if (sid2match >= 0 && sid2match != proc->sid)
200 goto got_it;
201 }
202
203 match = !argv[0]; /* if no PATTERN, then it's a match, else... */
204 if (!match) {
205 again:
206 match = (regexec(&re_buffer, cmd, 1, re_match, 0) == 0);
207 if (!match && cmd != proc->comm) {
208 /* if argv[] did not match, try comm */
209 cmdlen = -1;
210 cmd = proc->comm;
211 goto again;
212 }
213 if (match && OPT_ANCHOR) {
214 /* -x requires full string match */
215 match = (re_match[0].rm_so == 0 && cmd[re_match[0].rm_eo] == '\0');
216 }
217 }
218
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000219 /* NB: OPT_INVERT is always 0 or 1 */
Denys Vlasenko578008a2017-07-21 17:43:14 +0200220 if (match ^ OPT_INVERT) {
221 got_it:
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000222 matched_pid = proc->pid;
223 if (OPT_LAST) {
224 free(cmd_last);
Denis Vlasenko5fb09652007-09-30 16:36:02 +0000225 cmd_last = xstrdup(cmd);
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000226 continue;
227 }
Denys Vlasenko9f4b4222017-06-26 21:10:47 +0200228 if (cmdlen >= 0)
229 cmd[cmdlen] = '\0';
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200230 act(proc->pid, cmd, signo);
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000231 if (OPT_FIRST)
232 break;
233 }
234 }
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200235
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000236 if (cmd_last) {
Denys Vlasenko57dc5342009-07-06 00:00:12 +0200237 act(matched_pid, cmd_last, signo);
Denis Vlasenko72e1c892007-09-29 22:26:01 +0000238 if (ENABLE_FEATURE_CLEAN_UP)
239 free(cmd_last);
240 }
241 return matched_pid == 0; /* return 1 if no processes listed/signaled */
242}