2001-08-01 00:36:07 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* pidof implementation for busybox
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-08-01 00:36:07 +05:30
|
|
|
*
|
2006-09-22 08:22:41 +05:30
|
|
|
* Licensed under the GPL version 2, see the file LICENSE in this tarball.
|
2001-08-01 00:36:07 +05:30
|
|
|
*/
|
|
|
|
|
2006-06-03 02:26:16 +05:30
|
|
|
#include "busybox.h"
|
2001-08-01 00:36:07 +05:30
|
|
|
|
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,
|
|
|
|
};
|
2001-08-01 00:36:07 +05:30
|
|
|
|
2007-02-03 22:58:39 +05:30
|
|
|
int pidof_main(int argc, char **argv);
|
2006-03-07 02:17:33 +05:30
|
|
|
int pidof_main(int argc, char **argv)
|
2001-08-01 00:36:07 +05:30
|
|
|
{
|
2006-11-01 14:47:47 +05:30
|
|
|
unsigned first = 1;
|
2005-10-07 21:14:37 +05:30
|
|
|
unsigned fail = 1;
|
2006-11-01 14:47:47 +05:30
|
|
|
unsigned opt;
|
2005-10-06 21:07:02 +05:30
|
|
|
#if ENABLE_FEATURE_PIDOF_OMIT
|
2005-10-07 21:14:37 +05:30
|
|
|
llist_t *omits = NULL; /* list of pids to omit */
|
2006-11-01 14:47:47 +05:30
|
|
|
opt_complementary = "o::";
|
2005-10-06 21:07:02 +05:30
|
|
|
#endif
|
2001-08-01 00:36:07 +05:30
|
|
|
|
2005-10-07 21:14:37 +05:30
|
|
|
/* do unconditional option parsing */
|
2006-11-01 14:47:47 +05:30
|
|
|
opt = getopt32(argc, argv, ""
|
|
|
|
USE_FEATURE_PIDOF_SINGLE ("s")
|
|
|
|
USE_FEATURE_PIDOF_OMIT("o:", &omits));
|
2001-08-01 00:36:07 +05:30
|
|
|
|
2005-10-06 21:07:02 +05:30
|
|
|
#if ENABLE_FEATURE_PIDOF_OMIT
|
|
|
|
/* fill omit list. */
|
|
|
|
{
|
2006-11-01 14:47:47 +05:30
|
|
|
char getppid_str[sizeof(int)*3 + 1];
|
2005-10-07 21:14:37 +05:30
|
|
|
llist_t * omits_p = omits;
|
|
|
|
while (omits_p) {
|
|
|
|
/* are we asked to exclude the parent's process ID? */
|
2005-10-06 21:07:02 +05:30
|
|
|
if (!strncmp(omits_p->data, "%PPID", 5)) {
|
2006-05-09 00:33:07 +05:30
|
|
|
llist_pop(&omits_p);
|
2006-11-01 14:47:47 +05:30
|
|
|
snprintf(getppid_str, sizeof(getppid_str), "%u", (unsigned)getppid());
|
2006-05-27 05:14:51 +05:30
|
|
|
llist_add_to(&omits_p, getppid_str);
|
2005-10-06 21:07:02 +05:30
|
|
|
}
|
2005-10-07 21:14:37 +05:30
|
|
|
omits_p = omits_p->link;
|
2005-10-06 21:07:02 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* Looks like everything is set to go. */
|
2006-10-08 18:19:22 +05:30
|
|
|
while (optind < argc) {
|
2006-11-01 14:46:49 +05:30
|
|
|
pid_t *pidList;
|
|
|
|
pid_t *pl;
|
2001-08-01 00:36:07 +05:30
|
|
|
|
2005-10-06 21:07:02 +05:30
|
|
|
/* reverse the pidlist like GNU pidof does. */
|
|
|
|
pidList = pidlist_reverse(find_pid_by_name(argv[optind]));
|
2006-11-01 14:46:49 +05:30
|
|
|
for (pl = pidList; *pl; pl++) {
|
2006-11-01 14:47:47 +05:30
|
|
|
SKIP_FEATURE_PIDOF_OMIT(const) unsigned omitted = 0;
|
2005-10-06 21:07:02 +05:30
|
|
|
#if ENABLE_FEATURE_PIDOF_OMIT
|
2006-11-01 14:47:47 +05:30
|
|
|
if (opt & OPT_OMIT) {
|
2005-10-06 21:07:02 +05:30
|
|
|
llist_t *omits_p = omits;
|
2006-11-01 14:46:49 +05:30
|
|
|
while (omits_p) {
|
2006-10-08 18:19:22 +05:30
|
|
|
if (xatoul(omits_p->data) == *pl) {
|
2006-11-01 14:46:49 +05:30
|
|
|
omitted = 1;
|
|
|
|
break;
|
2005-10-06 21:07:02 +05:30
|
|
|
} else
|
|
|
|
omits_p = omits_p->link;
|
2006-11-01 14:46:49 +05:30
|
|
|
}
|
2005-10-06 21:07:02 +05:30
|
|
|
}
|
|
|
|
#endif
|
2005-10-07 21:14:37 +05:30
|
|
|
if (!omitted) {
|
2006-11-01 14:47:47 +05:30
|
|
|
printf(" %u" + first, (unsigned)*pl);
|
|
|
|
first = 0;
|
2005-10-07 21:14:37 +05:30
|
|
|
}
|
|
|
|
fail = (!ENABLE_FEATURE_PIDOF_OMIT && omitted);
|
|
|
|
|
2006-11-01 14:47:47 +05:30
|
|
|
if (ENABLE_FEATURE_PIDOF_SINGLE && (opt & OPT_SINGLE))
|
2002-05-23 05:08:12 +05:30
|
|
|
break;
|
2001-08-01 00:36:07 +05:30
|
|
|
}
|
2002-10-22 17:51:15 +05:30
|
|
|
free(pidList);
|
2001-08-01 00:36:07 +05:30
|
|
|
optind++;
|
|
|
|
}
|
2005-10-06 21:07:02 +05:30
|
|
|
putchar('\n');
|
2001-08-01 00:36:07 +05:30
|
|
|
|
2005-10-06 21:07:02 +05:30
|
|
|
#if ENABLE_FEATURE_PIDOF_OMIT
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
2006-05-09 00:33:07 +05:30
|
|
|
llist_free(omits, NULL);
|
2005-10-06 21:07:02 +05:30
|
|
|
#endif
|
2002-05-23 05:08:12 +05:30
|
|
|
return fail ? EXIT_FAILURE : EXIT_SUCCESS;
|
2001-08-01 00:36:07 +05:30
|
|
|
}
|