blob: b81709a8125ce394a0321f72ebb2c6d5f895c407 [file] [log] [blame]
Eric Andersen221b2ea2001-07-31 19:06:07 +00001/* vi: set sw=4 ts=4: */
2/*
3 * pidof implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen221b2ea2001-07-31 19:06:07 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersen221b2ea2001-07-31 19:06:07 +00008 */
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +01009//config:config PIDOF
Denys Vlasenkob097a842018-12-28 03:20:17 +010010//config: bool "pidof (6.3 kb)"
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010011//config: default y
12//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: Pidof finds the process id's (pids) of the named programs. It prints
14//config: those id's on the standard output.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010015//config:
16//config:config FEATURE_PIDOF_SINGLE
Denys Vlasenkof5604222017-01-10 14:58:54 +010017//config: bool "Enable single shot (-s)"
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010018//config: default y
19//config: depends on PIDOF
20//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020021//config: Support '-s' for returning only the first pid found.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010022//config:
23//config:config FEATURE_PIDOF_OMIT
Denys Vlasenkof5604222017-01-10 14:58:54 +010024//config: bool "Enable omitting pids (-o PID)"
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010025//config: default y
26//config: depends on PIDOF
27//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020028//config: Support '-o PID' for omitting the given pid(s) in output.
29//config: The special pid %PPID can be used to name the parent process
30//config: of the pidof, in other words the calling shell or shell script.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010031
32//applet:IF_PIDOF(APPLET(pidof, BB_DIR_BIN, BB_SUID_DROP))
Denys Vlasenko248a67f2017-08-07 18:18:09 +020033/* can't be noexec: can find _itself_ under wrong name, since after fork only,
34 * /proc/PID/cmdline and comm are wrong! Can fix comm (prctl(PR_SET_NAME)),
35 * but cmdline?
36 */
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010037
38//kbuild:lib-$(CONFIG_PIDOF) += pidof.o
Eric Andersen221b2ea2001-07-31 19:06:07 +000039
Pere Orga5bc8c002011-04-11 03:29:49 +020040//usage:#if (ENABLE_FEATURE_PIDOF_SINGLE || ENABLE_FEATURE_PIDOF_OMIT)
41//usage:#define pidof_trivial_usage
Denys Vlasenko84d5edd2020-12-13 22:34:05 +010042//usage: IF_FEATURE_PIDOF_SINGLE("[-s] ")IF_FEATURE_PIDOF_OMIT("[-o PID] ")"[NAME]..."
Denys Vlasenko66426762011-06-05 03:58:28 +020043//usage:#define USAGE_PIDOF "\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020044//usage:#else
45//usage:#define pidof_trivial_usage
46//usage: "[NAME]..."
47//usage:#define USAGE_PIDOF /* none */
48//usage:#endif
49//usage:#define pidof_full_usage "\n\n"
50//usage: "List PIDs of all processes with names that match NAMEs"
51//usage: USAGE_PIDOF
52//usage: IF_FEATURE_PIDOF_SINGLE(
53//usage: "\n -s Show only one PID"
54//usage: )
55//usage: IF_FEATURE_PIDOF_OMIT(
56//usage: "\n -o PID Omit given pid"
57//usage: "\n Use %PPID to omit pid of pidof's parent"
58//usage: )
59//usage:
60//usage:#define pidof_example_usage
61//usage: "$ pidof init\n"
62//usage: "1\n"
63//usage: IF_FEATURE_PIDOF_OMIT(
64//usage: "$ pidof /bin/sh\n20351 5973 5950\n")
65//usage: IF_FEATURE_PIDOF_OMIT(
66//usage: "$ pidof /bin/sh -o %PPID\n20351 5950")
67
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000068#include "libbb.h"
Eric Andersen221b2ea2001-07-31 19:06:07 +000069
Denis Vlasenko048c93c2006-11-01 09:17:47 +000070enum {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000071 IF_FEATURE_PIDOF_SINGLE(OPTBIT_SINGLE,)
72 IF_FEATURE_PIDOF_OMIT( OPTBIT_OMIT ,)
73 OPT_SINGLE = IF_FEATURE_PIDOF_SINGLE((1<<OPTBIT_SINGLE)) + 0,
74 OPT_OMIT = IF_FEATURE_PIDOF_OMIT( (1<<OPTBIT_OMIT )) + 0,
Denis Vlasenko048c93c2006-11-01 09:17:47 +000075};
Eric Andersen221b2ea2001-07-31 19:06:07 +000076
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000077int pidof_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000078int pidof_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen221b2ea2001-07-31 19:06:07 +000079{
Denis Vlasenko048c93c2006-11-01 09:17:47 +000080 unsigned first = 1;
Denis Vlasenko048c93c2006-11-01 09:17:47 +000081 unsigned opt;
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000082#if ENABLE_FEATURE_PIDOF_OMIT
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000083 llist_t *omits = NULL; /* list of pids to omit */
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000084#endif
Eric Andersen221b2ea2001-07-31 19:06:07 +000085
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000086 /* do unconditional option parsing */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000087 opt = getopt32(argv, ""
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000088 IF_FEATURE_PIDOF_SINGLE ("s")
Denys Vlasenko237bedd2016-07-06 21:58:02 +020089 IF_FEATURE_PIDOF_OMIT("o:*", &omits));
Eric Andersen221b2ea2001-07-31 19:06:07 +000090
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000091#if ENABLE_FEATURE_PIDOF_OMIT
92 /* fill omit list. */
93 {
Denis Vlasenko198bada2007-06-23 14:56:43 +000094 llist_t *omits_p = omits;
Denis Vlasenko0b791d92009-04-13 20:52:00 +000095 while (1) {
96 omits_p = llist_find_str(omits_p, "%PPID");
97 if (!omits_p)
98 break;
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000099 /* are we asked to exclude the parent's process ID? */
Denis Vlasenko0b791d92009-04-13 20:52:00 +0000100 omits_p->data = utoa((unsigned)getppid());
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000101 }
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000102 }
103#endif
104 /* Looks like everything is set to go. */
Denis Vlasenko6446c2d2007-11-25 04:54:13 +0000105 argv += optind;
106 while (*argv) {
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000107 pid_t *pidList;
108 pid_t *pl;
Eric Andersen221b2ea2001-07-31 19:06:07 +0000109
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000110 /* reverse the pidlist like GNU pidof does. */
Denis Vlasenko6446c2d2007-11-25 04:54:13 +0000111 pidList = pidlist_reverse(find_pid_by_name(*argv));
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000112 for (pl = pidList; *pl; pl++) {
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000113#if ENABLE_FEATURE_PIDOF_OMIT
Denis Vlasenko048c93c2006-11-01 09:17:47 +0000114 if (opt & OPT_OMIT) {
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000115 llist_t *omits_p = omits;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000116 while (omits_p) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000117 if (xatoul(omits_p->data) == (unsigned long)(*pl)) {
Denis Vlasenko198bada2007-06-23 14:56:43 +0000118 goto omitting;
119 }
120 omits_p = omits_p->link;
Denis Vlasenko35fb5122006-11-01 09:16:49 +0000121 }
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000122 }
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000123#endif
Denis Vlasenko198bada2007-06-23 14:56:43 +0000124 printf(" %u" + first, (unsigned)*pl);
125 first = 0;
Denis Vlasenko048c93c2006-11-01 09:17:47 +0000126 if (ENABLE_FEATURE_PIDOF_SINGLE && (opt & OPT_SINGLE))
Robert Griebld11edf92002-05-22 23:38:12 +0000127 break;
Denis Vlasenko198bada2007-06-23 14:56:43 +0000128#if ENABLE_FEATURE_PIDOF_OMIT
129 omitting: ;
130#endif
Eric Andersen221b2ea2001-07-31 19:06:07 +0000131 }
Eric Andersen44608e92002-10-22 12:21:15 +0000132 free(pidList);
Denis Vlasenko6446c2d2007-11-25 04:54:13 +0000133 argv++;
Eric Andersen221b2ea2001-07-31 19:06:07 +0000134 }
Denis Vlasenko6446c2d2007-11-25 04:54:13 +0000135 if (!first)
136 bb_putchar('\n');
Eric Andersen221b2ea2001-07-31 19:06:07 +0000137
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000138#if ENABLE_FEATURE_PIDOF_OMIT
139 if (ENABLE_FEATURE_CLEAN_UP)
Rob Landleya6b5b602006-05-08 19:03:07 +0000140 llist_free(omits, NULL);
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000141#endif
Denis Vlasenko198bada2007-06-23 14:56:43 +0000142 return first; /* 1 (failure) - no processes found */
Eric Andersen221b2ea2001-07-31 19:06:07 +0000143}