blob: 98008aaf1ef6d2086a74e2bb6d224ff5d5b2e93a [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 *
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +00007 * Licensed under the GPL v2, see the file LICENSE in this tarball.
Eric Andersen221b2ea2001-07-31 19:06:07 +00008 */
9
10
11#include <stdio.h>
12#include <stdlib.h>
13#include <errno.h>
14#include <unistd.h>
15#include <signal.h>
16#include <ctype.h>
17#include <string.h>
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000018#include <sys/types.h>
Eric Andersen221b2ea2001-07-31 19:06:07 +000019#include <unistd.h>
20#include "busybox.h"
21
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000022#if ENABLE_FEATURE_PIDOF_SINGLE
23#define _SINGLE_COMPL(a) a
24#define SINGLE (1<<0)
25#else
26#define _SINGLE_COMPL(a)
27#define SINGLE (0)
28#endif
29
30#if ENABLE_FEATURE_PIDOF_OMIT
31#define _OMIT_COMPL(a) a
32#define _OMIT(a) ,a
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000033#if ENABLE_FEATURE_PIDOF_SINGLE
34#define OMIT (1<<1)
35#else
36#define OMIT (1<<0)
37#endif
38#else
39#define _OMIT_COMPL(a) ""
40#define _OMIT(a)
41#define OMIT (0)
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000042#define omitted (0)
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000043#endif
Eric Andersen221b2ea2001-07-31 19:06:07 +000044
Rob Landleydfba7412006-03-06 20:47:33 +000045int pidof_main(int argc, char **argv)
Eric Andersen221b2ea2001-07-31 19:06:07 +000046{
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000047 unsigned n = 0;
48 unsigned fail = 1;
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000049 unsigned long int opt;
50#if ENABLE_FEATURE_PIDOF_OMIT
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000051 llist_t *omits = NULL; /* list of pids to omit */
"Vladimir N. Oleynik"f704b272005-10-14 09:56:52 +000052 bb_opt_complementally = _OMIT_COMPL("o::");
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000053#endif
Eric Andersen221b2ea2001-07-31 19:06:07 +000054
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000055 /* do unconditional option parsing */
56 opt = bb_getopt_ulflags(argc, argv,
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000057 _SINGLE_COMPL("s") _OMIT_COMPL("o:")
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000058 _OMIT(&omits));
Eric Andersen221b2ea2001-07-31 19:06:07 +000059
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000060#if ENABLE_FEATURE_PIDOF_OMIT
61 /* fill omit list. */
62 {
"Vladimir N. Oleynik"a2eec602005-10-15 13:45:32 +000063 char getppid_str[32];
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000064 llist_t * omits_p = omits;
65 while (omits_p) {
66 /* are we asked to exclude the parent's process ID? */
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000067 if (!strncmp(omits_p->data, "%PPID", 5)) {
Rob Landleya6b5b602006-05-08 19:03:07 +000068 llist_pop(&omits_p);
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000069 snprintf(getppid_str, sizeof(getppid_str), "%d", getppid());
70 omits_p = llist_add_to(omits_p, getppid_str);
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000071#if 0
72 } else {
73 bb_error_msg_and_die("illegal omit pid value (%s)!\n",
74 omits_p->data);
75#endif
76 }
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000077 omits_p = omits_p->link;
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000078 }
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000079 }
80#endif
81 /* Looks like everything is set to go. */
Eric Andersen221b2ea2001-07-31 19:06:07 +000082 while(optind < argc) {
Glenn L McGrathbb2e9d42002-11-25 22:12:28 +000083 long *pidList;
84 long *pl;
Eric Andersen221b2ea2001-07-31 19:06:07 +000085
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000086 /* reverse the pidlist like GNU pidof does. */
87 pidList = pidlist_reverse(find_pid_by_name(argv[optind]));
Glenn L McGrathbb2e9d42002-11-25 22:12:28 +000088 for(pl = pidList; *pl > 0; pl++) {
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000089#if ENABLE_FEATURE_PIDOF_OMIT
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +000090 unsigned omitted = 0;
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000091 if (opt & OMIT) {
92 llist_t *omits_p = omits;
93 while (omits_p)
94 if (strtol(omits_p->data, NULL, 10) == *pl) {
95 omitted = 1; break;
96 } else
97 omits_p = omits_p->link;
98 }
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +000099#endif
Bernhard Reutner-Fischerab52db82005-10-07 15:44:37 +0000100 if (!omitted) {
101 if (n) {
102 putchar(' ');
103 } else {
104 n = 1;
105 }
106 printf("%ld", *pl);
107 }
108 fail = (!ENABLE_FEATURE_PIDOF_OMIT && omitted);
109
110 if (ENABLE_FEATURE_PIDOF_SINGLE && (opt & SINGLE))
Robert Griebld11edf92002-05-22 23:38:12 +0000111 break;
Eric Andersen221b2ea2001-07-31 19:06:07 +0000112 }
Eric Andersen44608e92002-10-22 12:21:15 +0000113 free(pidList);
Eric Andersen221b2ea2001-07-31 19:06:07 +0000114 optind++;
115 }
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000116 putchar('\n');
Eric Andersen221b2ea2001-07-31 19:06:07 +0000117
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000118#if ENABLE_FEATURE_PIDOF_OMIT
119 if (ENABLE_FEATURE_CLEAN_UP)
Rob Landleya6b5b602006-05-08 19:03:07 +0000120 llist_free(omits, NULL);
Bernhard Reutner-Fischer81c3a512005-10-06 15:37:02 +0000121#endif
Robert Griebld11edf92002-05-22 23:38:12 +0000122 return fail ? EXIT_FAILURE : EXIT_SUCCESS;
Eric Andersen221b2ea2001-07-31 19:06:07 +0000123}