busybox/procps/pidof.c

87 lines
2.0 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* pidof implementation for busybox
*
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
*
* Licensed under the GPL version 2, see the file LICENSE in this tarball.
*/
#include "libbb.h"
2006-11-01 14:47:47 +05:30
enum {
USE_FEATURE_PIDOF_SINGLE(OPTBIT_SINGLE,)
USE_FEATURE_PIDOF_OMIT( OPTBIT_OMIT ,)
OPT_SINGLE = USE_FEATURE_PIDOF_SINGLE((1<<OPTBIT_SINGLE)) + 0,
OPT_OMIT = USE_FEATURE_PIDOF_OMIT( (1<<OPTBIT_OMIT )) + 0,
};
int pidof_main(int argc, char **argv);
int pidof_main(int argc, char **argv)
{
2006-11-01 14:47:47 +05:30
unsigned first = 1;
unsigned opt;
#if ENABLE_FEATURE_PIDOF_OMIT
2007-06-23 20:26:43 +05:30
char ppid_str[sizeof(int)*3 + 1];
llist_t *omits = NULL; /* list of pids to omit */
2006-11-01 14:47:47 +05:30
opt_complementary = "o::";
#endif
/* do unconditional option parsing */
opt = getopt32(argv, ""
2006-11-01 14:47:47 +05:30
USE_FEATURE_PIDOF_SINGLE ("s")
USE_FEATURE_PIDOF_OMIT("o:", &omits));
#if ENABLE_FEATURE_PIDOF_OMIT
/* fill omit list. */
{
2007-06-23 20:26:43 +05:30
llist_t *omits_p = omits;
while (omits_p) {
/* are we asked to exclude the parent's process ID? */
2007-06-23 20:26:43 +05:30
if (strcmp(omits_p->data, "%PPID") == 0) {
sprintf(ppid_str, "%u", (unsigned)getppid());
omits_p->data = ppid_str;
}
omits_p = omits_p->link;
}
}
#endif
/* Looks like everything is set to go. */
2006-10-08 18:19:22 +05:30
while (optind < argc) {
pid_t *pidList;
pid_t *pl;
/* reverse the pidlist like GNU pidof does. */
pidList = pidlist_reverse(find_pid_by_name(argv[optind]));
for (pl = pidList; *pl; pl++) {
#if ENABLE_FEATURE_PIDOF_OMIT
2006-11-01 14:47:47 +05:30
if (opt & OPT_OMIT) {
llist_t *omits_p = omits;
while (omits_p) {
2006-10-08 18:19:22 +05:30
if (xatoul(omits_p->data) == *pl) {
2007-06-23 20:26:43 +05:30
goto omitting;
}
omits_p = omits_p->link;
}
}
#endif
2007-06-23 20:26:43 +05:30
printf(" %u" + first, (unsigned)*pl);
first = 0;
2006-11-01 14:47:47 +05:30
if (ENABLE_FEATURE_PIDOF_SINGLE && (opt & OPT_SINGLE))
break;
2007-06-23 20:26:43 +05:30
#if ENABLE_FEATURE_PIDOF_OMIT
omitting: ;
#endif
}
free(pidList);
optind++;
}
bb_putchar('\n');
#if ENABLE_FEATURE_PIDOF_OMIT
if (ENABLE_FEATURE_CLEAN_UP)
llist_free(omits, NULL);
#endif
2007-06-23 20:26:43 +05:30
return first; /* 1 (failure) - no processes found */
}