Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Utility routines. |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 6 | * |
Bernhard Reutner-Fischer | 7fee0c4 | 2006-09-13 16:39:19 +0000 | [diff] [blame] | 7 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 10 | #include "libbb.h" |
| 11 | |
Denis Vlasenko | 198bada | 2007-06-23 14:56:43 +0000 | [diff] [blame] | 12 | /* |
| 13 | In Linux we have three ways to determine "process name": |
| 14 | 1. /proc/PID/stat has "...(name)...", among other things. It's so-called "comm" field. |
| 15 | 2. /proc/PID/cmdline's first NUL-terminated string. It's argv[0] from exec syscall. |
| 16 | 3. /proc/PID/exe symlink. Points to the running executable file. |
| 17 | |
| 18 | kernel threads: |
| 19 | comm: thread name |
| 20 | cmdline: empty |
| 21 | exe: <readlink fails> |
| 22 | |
| 23 | executable |
| 24 | comm: first 15 chars of base name |
| 25 | (if executable is a symlink, then first 15 chars of symlink name are used) |
| 26 | cmdline: argv[0] from exec syscall |
| 27 | exe: points to executable (resolves symlink, unlike comm) |
| 28 | |
| 29 | script (an executable with #!/path/to/interpreter): |
| 30 | comm: first 15 chars of script's base name (symlinks are not resolved) |
| 31 | cmdline: /path/to/interpreter (symlinks are not resolved) |
| 32 | (script name is in argv[1], args are pushed into argv[2] etc) |
| 33 | exe: points to interpreter's executable (symlinks are resolved) |
| 34 | |
| 35 | If FEATURE_PREFER_APPLETS=y (and more so if FEATURE_SH_STANDALONE=y), |
| 36 | some commands started from busybox shell, xargs or find are started by |
| 37 | execXXX("/proc/self/exe", applet_name, params....) |
| 38 | and therefore comm field contains "exe". |
| 39 | */ |
| 40 | |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 41 | static int comm_match(procps_status_t *p, const char *procName) |
| 42 | { |
| 43 | int argv1idx; |
Alexander Shishkin | e766f62 | 2009-07-29 01:35:13 +0200 | [diff] [blame] | 44 | const char *argv1; |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 45 | |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 46 | if (strncmp(p->comm, procName, 15) != 0) |
Alexander Shishkin | e766f62 | 2009-07-29 01:35:13 +0200 | [diff] [blame] | 47 | return 0; /* comm does not match */ |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 48 | |
Alexander Shishkin | e766f62 | 2009-07-29 01:35:13 +0200 | [diff] [blame] | 49 | /* In Linux, if comm is 15 chars, it is truncated. |
| 50 | * (or maybe the name was exactly 15 chars, but there is |
| 51 | * no way to know that) */ |
| 52 | if (p->comm[14] == '\0') |
| 53 | return 1; /* comm is not truncated - matches */ |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 54 | |
| 55 | /* comm is truncated, but first 15 chars match. |
| 56 | * This can be crazily_long_script_name.sh! |
Alexander Shishkin | e766f62 | 2009-07-29 01:35:13 +0200 | [diff] [blame] | 57 | * The telltale sign is basename(argv[1]) == procName */ |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 58 | |
| 59 | if (!p->argv0) |
| 60 | return 0; |
| 61 | |
| 62 | argv1idx = strlen(p->argv0) + 1; |
| 63 | if (argv1idx >= p->argv_len) |
| 64 | return 0; |
Alexander Shishkin | e766f62 | 2009-07-29 01:35:13 +0200 | [diff] [blame] | 65 | argv1 = p->argv0 + argv1idx; |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 66 | |
Alexander Shishkin | e766f62 | 2009-07-29 01:35:13 +0200 | [diff] [blame] | 67 | if (strcmp(bb_basename(argv1), procName) != 0) |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 68 | return 0; |
| 69 | |
| 70 | return 1; |
| 71 | } |
| 72 | |
Denis Vlasenko | 9f00e05 | 2009-02-14 01:36:11 +0000 | [diff] [blame] | 73 | /* This finds the pid of the specified process. |
| 74 | * Currently, it's implemented by rummaging through |
| 75 | * the proc filesystem. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 76 | * |
Denis Vlasenko | 9f00e05 | 2009-02-14 01:36:11 +0000 | [diff] [blame] | 77 | * Returns a list of all matching PIDs |
| 78 | * It is the caller's duty to free the returned pidlist. |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 79 | * |
Denis Vlasenko | 9f00e05 | 2009-02-14 01:36:11 +0000 | [diff] [blame] | 80 | * Modified by Vladimir Oleynik for use with libbb/procps.c |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 81 | */ |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 82 | pid_t* FAST_FUNC find_pid_by_name(const char *procName) |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 83 | { |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 84 | pid_t* pidList; |
Denis Vlasenko | be905d5 | 2006-09-27 14:17:31 +0000 | [diff] [blame] | 85 | int i = 0; |
Denis Vlasenko | 459e4d6 | 2006-11-05 00:43:51 +0000 | [diff] [blame] | 86 | procps_status_t* p = NULL; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 87 | |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 88 | pidList = xzalloc(sizeof(*pidList)); |
Alexander Shishkin | e766f62 | 2009-07-29 01:35:13 +0200 | [diff] [blame] | 89 | while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_COMM|PSSCAN_ARGVN|PSSCAN_EXE))) { |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 90 | if (comm_match(p, procName) |
Denis Vlasenko | f7d07b1 | 2007-06-30 08:03:26 +0000 | [diff] [blame] | 91 | /* or we require argv0 to match (essential for matching reexeced /proc/self/exe)*/ |
| 92 | || (p->argv0 && strcmp(bb_basename(p->argv0), procName) == 0) |
Alexander Shishkin | e766f62 | 2009-07-29 01:35:13 +0200 | [diff] [blame] | 93 | /* or we require /proc/PID/exe link to match */ |
| 94 | || (p->exe && strcmp(bb_basename(p->exe), procName) == 0) |
Denis Vlasenko | f7d07b1 | 2007-06-30 08:03:26 +0000 | [diff] [blame] | 95 | ) { |
Denis Vlasenko | 3b3ca11 | 2008-07-17 18:39:36 +0000 | [diff] [blame] | 96 | pidList = xrealloc_vector(pidList, 2, i); |
Denis Vlasenko | be905d5 | 2006-09-27 14:17:31 +0000 | [diff] [blame] | 97 | pidList[i++] = p->pid; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 98 | } |
| 99 | } |
| 100 | |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 101 | pidList[i] = 0; |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 102 | return pidList; |
| 103 | } |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 104 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 105 | pid_t* FAST_FUNC pidlist_reverse(pid_t *pidList) |
Bernhard Reutner-Fischer | 56b2171 | 2005-10-06 12:10:48 +0000 | [diff] [blame] | 106 | { |
Denis Vlasenko | be905d5 | 2006-09-27 14:17:31 +0000 | [diff] [blame] | 107 | int i = 0; |
Denis Vlasenko | 35fb512 | 2006-11-01 09:16:49 +0000 | [diff] [blame] | 108 | while (pidList[i]) |
| 109 | i++; |
| 110 | if (--i >= 0) { |
| 111 | pid_t k; |
Bernhard Reutner-Fischer | 56b2171 | 2005-10-06 12:10:48 +0000 | [diff] [blame] | 112 | int j; |
| 113 | for (j = 0; i > j; i--, j++) { |
| 114 | k = pidList[i]; |
| 115 | pidList[i] = pidList[j]; |
| 116 | pidList[j] = k; |
| 117 | } |
| 118 | } |
| 119 | return pidList; |
| 120 | } |