Initial public busybox upstream commit
[busybox4maemo] / procps / pidof.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * pidof implementation for busybox
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Licensed under the GPL version 2, see the file LICENSE in this tarball.
8  */
9
10 #include "libbb.h"
11
12 enum {
13         USE_FEATURE_PIDOF_SINGLE(OPTBIT_SINGLE,)
14         USE_FEATURE_PIDOF_OMIT(  OPTBIT_OMIT  ,)
15         OPT_SINGLE = USE_FEATURE_PIDOF_SINGLE((1<<OPTBIT_SINGLE)) + 0,
16         OPT_OMIT   = USE_FEATURE_PIDOF_OMIT(  (1<<OPTBIT_OMIT  )) + 0,
17 };
18
19 int pidof_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
20 int pidof_main(int argc ATTRIBUTE_UNUSED, char **argv)
21 {
22         unsigned first = 1;
23         unsigned opt;
24 #if ENABLE_FEATURE_PIDOF_OMIT
25         char ppid_str[sizeof(int)*3 + 1];
26         llist_t *omits = NULL; /* list of pids to omit */
27         opt_complementary = "o::";
28 #endif
29
30         /* do unconditional option parsing */
31         opt = getopt32(argv, ""
32                         USE_FEATURE_PIDOF_SINGLE ("s")
33                         USE_FEATURE_PIDOF_OMIT("o:", &omits));
34
35 #if ENABLE_FEATURE_PIDOF_OMIT
36         /* fill omit list.  */
37         {
38                 llist_t *omits_p = omits;
39                 while (omits_p) {
40                         /* are we asked to exclude the parent's process ID?  */
41                         if (strcmp(omits_p->data, "%PPID") == 0) {
42                                 sprintf(ppid_str, "%u", (unsigned)getppid());
43                                 omits_p->data = ppid_str;
44                         }
45                         omits_p = omits_p->link;
46                 }
47         }
48 #endif
49         /* Looks like everything is set to go.  */
50         argv += optind;
51         while (*argv) {
52                 pid_t *pidList;
53                 pid_t *pl;
54
55                 /* reverse the pidlist like GNU pidof does.  */
56                 pidList = pidlist_reverse(find_pid_by_name(*argv));
57                 for (pl = pidList; *pl; pl++) {
58 #if ENABLE_FEATURE_PIDOF_OMIT
59                         if (opt & OPT_OMIT) {
60                                 llist_t *omits_p = omits;
61                                 while (omits_p) {
62                                         if (xatoul(omits_p->data) == *pl) {
63                                                 goto omitting;
64                                         }
65                                         omits_p = omits_p->link;
66                                 }
67                         }
68 #endif
69                         printf(" %u" + first, (unsigned)*pl);
70                         first = 0;
71                         if (ENABLE_FEATURE_PIDOF_SINGLE && (opt & OPT_SINGLE))
72                                 break;
73 #if ENABLE_FEATURE_PIDOF_OMIT
74  omitting: ;
75 #endif
76                 }
77                 free(pidList);
78                 argv++;
79         }
80         if (!first)
81                 bb_putchar('\n');
82
83 #if ENABLE_FEATURE_PIDOF_OMIT
84         if (ENABLE_FEATURE_CLEAN_UP)
85                 llist_free(omits, NULL);
86 #endif
87         return first; /* 1 (failure) - no processes found */
88 }