blob: 600d4e1a8920c932e45528e7196824afd3c78209 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
Bernhard Reutner-Fischer7fee0c42006-09-13 16:39:19 +00007 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersenaad1a882001-03-16 22:47:14 +00008 */
9
Eric Andersenaad1a882001-03-16 22:47:14 +000010#include "libbb.h"
11
Denis Vlasenko198bada2007-06-23 14:56:43 +000012/*
13In Linux we have three ways to determine "process name":
141. /proc/PID/stat has "...(name)...", among other things. It's so-called "comm" field.
152. /proc/PID/cmdline's first NUL-terminated string. It's argv[0] from exec syscall.
163. /proc/PID/exe symlink. Points to the running executable file.
17
18kernel threads:
19 comm: thread name
20 cmdline: empty
21 exe: <readlink fails>
22
23executable
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
29script (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
35If FEATURE_PREFER_APPLETS=y (and more so if FEATURE_SH_STANDALONE=y),
36some commands started from busybox shell, xargs or find are started by
37execXXX("/proc/self/exe", applet_name, params....)
38and therefore comm field contains "exe".
39*/
40
Denis Vlasenko3b3ca112008-07-17 18:39:36 +000041static 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
Denis Vlasenko9f00e052009-02-14 01:36:11 +000070/* This finds the pid of the specified process.
71 * Currently, it's implemented by rummaging through
72 * the proc filesystem.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000073 *
Denis Vlasenko9f00e052009-02-14 01:36:11 +000074 * Returns a list of all matching PIDs
75 * It is the caller's duty to free the returned pidlist.
Eric Andersenaad1a882001-03-16 22:47:14 +000076 *
Denis Vlasenko9f00e052009-02-14 01:36:11 +000077 * Modified by Vladimir Oleynik for use with libbb/procps.c
Eric Andersenaad1a882001-03-16 22:47:14 +000078 */
Denis Vlasenko3b3ca112008-07-17 18:39:36 +000079pid_t* FAST_FUNC find_pid_by_name(const char *procName)
Eric Andersenaad1a882001-03-16 22:47:14 +000080{
Denis Vlasenko35fb5122006-11-01 09:16:49 +000081 pid_t* pidList;
Denis Vlasenkobe905d52006-09-27 14:17:31 +000082 int i = 0;
Denis Vlasenko459e4d62006-11-05 00:43:51 +000083 procps_status_t* p = NULL;
Eric Andersenaad1a882001-03-16 22:47:14 +000084
Denis Vlasenko3b3ca112008-07-17 18:39:36 +000085 pidList = xzalloc(sizeof(*pidList));
86 while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_COMM|PSSCAN_ARGVN))) {
87 if (comm_match(p, procName)
Denis Vlasenkof7d07b12007-06-30 08:03:26 +000088 /* or we require argv0 to match (essential for matching reexeced /proc/self/exe)*/
89 || (p->argv0 && strcmp(bb_basename(p->argv0), procName) == 0)
Bernhard Reutner-Fischer4acb1b02008-09-05 11:46:43 +000090 /* TODO: we can also try /proc/NUM/exe link, do we want that? */
Denis Vlasenkof7d07b12007-06-30 08:03:26 +000091 ) {
Denis Vlasenko3b3ca112008-07-17 18:39:36 +000092 pidList = xrealloc_vector(pidList, 2, i);
Denis Vlasenkobe905d52006-09-27 14:17:31 +000093 pidList[i++] = p->pid;
Eric Andersenaad1a882001-03-16 22:47:14 +000094 }
95 }
96
Denis Vlasenko35fb5122006-11-01 09:16:49 +000097 pidList[i] = 0;
Eric Andersenaad1a882001-03-16 22:47:14 +000098 return pidList;
99}
Eric Andersenaad1a882001-03-16 22:47:14 +0000100
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000101pid_t* FAST_FUNC pidlist_reverse(pid_t *pidList)
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +0000102{
Denis Vlasenkobe905d52006-09-27 14:17:31 +0000103 int i = 0;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000104 while (pidList[i])
105 i++;
106 if (--i >= 0) {
107 pid_t k;
Bernhard Reutner-Fischer56b21712005-10-06 12:10:48 +0000108 int j;
109 for (j = 0; i > j; i--, j++) {
110 k = pidList[i];
111 pidList[i] = pidList[j];
112 pidList[j] = k;
113 }
114 }
115 return pidList;
116}