aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-09-05 12:05:47 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-09-05 12:05:47 +0000
commita959a858a36fd88c1adc4ef5a05d621d555df63e (patch)
tree2373169d946b8f7ec3335128422e6d309a8b9ddf
parent2957fc699207d8e855c7024f8f91c451cf018952 (diff)
downloadbusybox-w32-a959a858a36fd88c1adc4ef5a05d621d555df63e.tar.gz
busybox-w32-a959a858a36fd88c1adc4ef5a05d621d555df63e.tar.bz2
busybox-w32-a959a858a36fd88c1adc4ef5a05d621d555df63e.zip
- pull r22872 from trunk:
pidof/killall: allow find_pid_by_name to find running processes started as scripts_with_name_longer_than_15_bytes.sh closes bug 4054 (and is generally neat)
-rw-r--r--include/libbb.h3
-rw-r--r--libbb/find_pid_by_name.c45
-rw-r--r--libbb/procps.c15
-rw-r--r--procps/pgrep.c8
4 files changed, 51 insertions, 20 deletions
diff --git a/include/libbb.h b/include/libbb.h
index e92dbc4c0..27fb50ae4 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1140,6 +1140,7 @@ typedef struct procps_status_t {
1140 uint8_t shift_pages_to_bytes; 1140 uint8_t shift_pages_to_bytes;
1141 uint8_t shift_pages_to_kb; 1141 uint8_t shift_pages_to_kb;
1142/* Fields are set to 0/NULL if failed to determine (or not requested) */ 1142/* Fields are set to 0/NULL if failed to determine (or not requested) */
1143 uint16_t argv_len;
1143 char *argv0; 1144 char *argv0;
1144 USE_SELINUX(char *context;) 1145 USE_SELINUX(char *context;)
1145 /* Everything below must contain no ptrs to malloc'ed data: 1146 /* Everything below must contain no ptrs to malloc'ed data:
@@ -1187,7 +1188,7 @@ enum {
1187 PSSCAN_UTIME = 1 << 13, 1188 PSSCAN_UTIME = 1 << 13,
1188 PSSCAN_TTY = 1 << 14, 1189 PSSCAN_TTY = 1 << 14,
1189 PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM, 1190 PSSCAN_SMAPS = (1 << 15) * ENABLE_FEATURE_TOPMEM,
1190 PSSCAN_ARGVN = (1 << 16) * (ENABLE_PGREP | ENABLE_PKILL), 1191 PSSCAN_ARGVN = (1 << 16) * (ENABLE_PGREP || ENABLE_PKILL || ENABLE_PIDOF),
1191 USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,) 1192 USE_SELINUX(PSSCAN_CONTEXT = 1 << 17,)
1192 PSSCAN_START_TIME = 1 << 18, 1193 PSSCAN_START_TIME = 1 << 18,
1193 /* These are all retrieved from proc/NN/stat in one go: */ 1194 /* These are all retrieved from proc/NN/stat in one go: */
diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c
index 8dcdb13bc..abfeefd74 100644
--- a/libbb/find_pid_by_name.c
+++ b/libbb/find_pid_by_name.c
@@ -38,6 +38,35 @@ execXXX("/proc/self/exe", applet_name, params....)
38and therefore comm field contains "exe". 38and therefore comm field contains "exe".
39*/ 39*/
40 40
41static int comm_match(procps_status_t *p, const char *procName)
42{
43 int argv1idx;
44
45 /* comm does not match */
46 if (strncmp(p->comm, procName, 15) != 0)
47 return 0;
48
49 /* in Linux, if comm is 15 chars, it may be a truncated */
50 if (p->comm[14] == '\0') /* comm is not truncated - match */
51 return 1;
52
53 /* comm is truncated, but first 15 chars match.
54 * This can be crazily_long_script_name.sh!
55 * The telltale sign is basename(argv[1]) == procName. */
56
57 if (!p->argv0)
58 return 0;
59
60 argv1idx = strlen(p->argv0) + 1;
61 if (argv1idx >= p->argv_len)
62 return 0;
63
64 if (strcmp(bb_basename(p->argv0 + argv1idx), procName) != 0)
65 return 0;
66
67 return 1;
68}
69
41/* find_pid_by_name() 70/* find_pid_by_name()
42 * 71 *
43 * Modified by Vladimir Oleynik for use with libbb/procps.c 72 * Modified by Vladimir Oleynik for use with libbb/procps.c
@@ -48,22 +77,18 @@ and therefore comm field contains "exe".
48 * Returns a list of all matching PIDs 77 * Returns a list of all matching PIDs
49 * It is the caller's duty to free the returned pidlist. 78 * It is the caller's duty to free the returned pidlist.
50 */ 79 */
51pid_t* find_pid_by_name(const char* procName) 80pid_t* find_pid_by_name(const char *procName)
52{ 81{
53 pid_t* pidList; 82 pid_t* pidList;
54 int i = 0; 83 int i = 0;
55 procps_status_t* p = NULL; 84 procps_status_t* p = NULL;
56 85
57 pidList = xmalloc(sizeof(*pidList)); 86 pidList = xzalloc(sizeof(*pidList));
58 while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_COMM|PSSCAN_ARGV0))) { 87 while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_COMM|PSSCAN_ARGVN))) {
59 if ( 88 if (comm_match(p, procName)
60 /* we require comm to match and to not be truncated */
61 /* in Linux, if comm is 15 chars, it may be a truncated
62 * name, so we don't allow that to match */
63 (!p->comm[sizeof(p->comm)-2] && strcmp(p->comm, procName) == 0)
64 /* or we require argv0 to match (essential for matching reexeced /proc/self/exe)*/ 89 /* or we require argv0 to match (essential for matching reexeced /proc/self/exe)*/
65 || (p->argv0 && strcmp(bb_basename(p->argv0), procName) == 0) 90 || (p->argv0 && strcmp(bb_basename(p->argv0), procName) == 0)
66 /* TOOD: we can also try /proc/NUM/exe link, do we want that? */ 91 /* TODO: we can also try /proc/NUM/exe link, do we want that? */
67 ) { 92 ) {
68 pidList = xrealloc(pidList, sizeof(*pidList) * (i+2)); 93 pidList = xrealloc(pidList, sizeof(*pidList) * (i+2));
69 pidList[i++] = p->pid; 94 pidList[i++] = p->pid;
@@ -74,7 +99,7 @@ pid_t* find_pid_by_name(const char* procName)
74 return pidList; 99 return pidList;
75} 100}
76 101
77pid_t *pidlist_reverse(pid_t *pidList) 102pid_t* pidlist_reverse(pid_t *pidList)
78{ 103{
79 int i = 0; 104 int i = 0;
80 while (pidList[i]) 105 while (pidList[i])
diff --git a/libbb/procps.c b/libbb/procps.c
index 8946917a2..6e6412bb1 100644
--- a/libbb/procps.c
+++ b/libbb/procps.c
@@ -385,16 +385,15 @@ procps_status_t *procps_scan(procps_status_t* sp, int flags)
385 n = read_to_buf(filename, buf); 385 n = read_to_buf(filename, buf);
386 if (n <= 0) 386 if (n <= 0)
387 break; 387 break;
388#if ENABLE_PGREP || ENABLE_PKILL
389 if (flags & PSSCAN_ARGVN) { 388 if (flags & PSSCAN_ARGVN) {
390 do { 389 sp->argv_len = n;
391 n--; 390 sp->argv0 = xmalloc(n + 1);
392 if (buf[n] == '\0') 391 memcpy(sp->argv0, buf, n + 1);
393 buf[n] = ' '; 392 /* sp->argv0[n] = '\0'; - buf has it */
394 } while (n); 393 } else {
394 sp->argv_len = 0;
395 sp->argv0 = xstrdup(buf);
395 } 396 }
396#endif
397 sp->argv0 = xstrdup(buf);
398 } 397 }
399#endif 398#endif
400 break; 399 break;
diff --git a/procps/pgrep.c b/procps/pgrep.c
index 336fa84ba..f08d6cc5f 100644
--- a/procps/pgrep.c
+++ b/procps/pgrep.c
@@ -111,8 +111,14 @@ int pgrep_main(int argc ATTRIBUTE_UNUSED, char **argv)
111 if (proc->pid == pid) 111 if (proc->pid == pid)
112 continue; 112 continue;
113 cmd = proc->argv0; 113 cmd = proc->argv0;
114 if (!cmd) 114 if (!cmd) {
115 cmd = proc->comm; 115 cmd = proc->comm;
116 } else {
117 int i = proc->argv_len;
118 while (i) {
119 if (!cmd[i]) cmd[i] = ' ';
120 i--;
121 }
116 /* NB: OPT_INVERT is always 0 or 1 */ 122 /* NB: OPT_INVERT is always 0 or 1 */
117 if ((regexec(&re_buffer, cmd, 1, re_match, 0) == 0 /* match found */ 123 if ((regexec(&re_buffer, cmd, 1, re_match, 0) == 0 /* match found */
118 && (!OPT_ANCHOR || (re_match[0].rm_so == 0 && re_match[0].rm_eo == (regoff_t)strlen(cmd)))) ^ OPT_INVERT 124 && (!OPT_ANCHOR || (re_match[0].rm_so == 0 && re_match[0].rm_eo == (regoff_t)strlen(cmd)))) ^ OPT_INVERT