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