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
|
|
|
*
|
2005-10-06 21:07:02 +05:30
|
|
|
* Licensed under the GPL v2, 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
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
2005-10-07 21:14:37 +05:30
|
|
|
#include <sys/types.h>
|
2001-08-01 00:36:07 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
|
2005-10-06 21:07:02 +05:30
|
|
|
#if ENABLE_FEATURE_PIDOF_SINGLE
|
|
|
|
#define _SINGLE_COMPL(a) a
|
|
|
|
#define SINGLE (1<<0)
|
|
|
|
#else
|
|
|
|
#define _SINGLE_COMPL(a)
|
|
|
|
#define SINGLE (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLE_FEATURE_PIDOF_OMIT
|
|
|
|
#define _OMIT_COMPL(a) a
|
|
|
|
#define _OMIT(a) ,a
|
|
|
|
#if ENABLE_FEATURE_PIDOF_SINGLE
|
|
|
|
#define OMIT (1<<1)
|
|
|
|
#else
|
|
|
|
#define OMIT (1<<0)
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define _OMIT_COMPL(a) ""
|
|
|
|
#define _OMIT(a)
|
|
|
|
#define OMIT (0)
|
2005-10-07 21:14:37 +05:30
|
|
|
#define omitted (0)
|
2005-10-06 21:07:02 +05:30
|
|
|
#endif
|
2001-08-01 00:36:07 +05:30
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
int pidof_main(int argc, char **argv)
|
2001-08-01 00:36:07 +05:30
|
|
|
{
|
2005-10-07 21:14:37 +05:30
|
|
|
unsigned n = 0;
|
|
|
|
unsigned fail = 1;
|
2005-10-06 21:07:02 +05:30
|
|
|
unsigned long int opt;
|
|
|
|
#if ENABLE_FEATURE_PIDOF_OMIT
|
2005-10-07 21:14:37 +05:30
|
|
|
llist_t *omits = NULL; /* list of pids to omit */
|
2005-10-14 15:26:52 +05:30
|
|
|
bb_opt_complementally = _OMIT_COMPL("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 */
|
|
|
|
opt = bb_getopt_ulflags(argc, argv,
|
2005-10-06 21:07:02 +05:30
|
|
|
_SINGLE_COMPL("s") _OMIT_COMPL("o:")
|
2005-10-07 21:14:37 +05:30
|
|
|
_OMIT(&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. */
|
|
|
|
{
|
2005-10-15 19:15:32 +05:30
|
|
|
char getppid_str[32];
|
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);
|
2005-10-07 21:14:37 +05:30
|
|
|
snprintf(getppid_str, sizeof(getppid_str), "%d", 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. */
|
2001-08-01 00:36:07 +05:30
|
|
|
while(optind < argc) {
|
2002-11-26 03:42:28 +05:30
|
|
|
long *pidList;
|
|
|
|
long *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]));
|
2002-11-26 03:42:28 +05:30
|
|
|
for(pl = pidList; *pl > 0; pl++) {
|
2005-10-06 21:07:02 +05:30
|
|
|
#if ENABLE_FEATURE_PIDOF_OMIT
|
2005-10-07 21:14:37 +05:30
|
|
|
unsigned omitted = 0;
|
2005-10-06 21:07:02 +05:30
|
|
|
if (opt & OMIT) {
|
|
|
|
llist_t *omits_p = omits;
|
|
|
|
while (omits_p)
|
|
|
|
if (strtol(omits_p->data, NULL, 10) == *pl) {
|
|
|
|
omitted = 1; break;
|
|
|
|
} else
|
|
|
|
omits_p = omits_p->link;
|
|
|
|
}
|
|
|
|
#endif
|
2005-10-07 21:14:37 +05:30
|
|
|
if (!omitted) {
|
|
|
|
if (n) {
|
|
|
|
putchar(' ');
|
|
|
|
} else {
|
|
|
|
n = 1;
|
|
|
|
}
|
|
|
|
printf("%ld", *pl);
|
|
|
|
}
|
|
|
|
fail = (!ENABLE_FEATURE_PIDOF_OMIT && omitted);
|
|
|
|
|
|
|
|
if (ENABLE_FEATURE_PIDOF_SINGLE && (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
|
|
|
}
|