2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2006-09-13 16:39:19 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
/* find_pid_by_name()
|
2004-03-15 08:29:22 +00:00
|
|
|
*
|
2002-10-22 12:21:15 +00:00
|
|
|
* Modified by Vladimir Oleynik for use with libbb/procps.c
|
2001-03-16 22:47:14 +00:00
|
|
|
* This finds the pid of the specified process.
|
2004-03-15 08:29:22 +00:00
|
|
|
* Currently, it's implemented by rummaging through
|
2001-03-16 22:47:14 +00:00
|
|
|
* the proc filesystem.
|
|
|
|
*
|
|
|
|
* Returns a list of all matching PIDs
|
2005-10-06 12:10:48 +00:00
|
|
|
* It is the caller's duty to free the returned pidlist.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
2006-11-01 09:16:49 +00:00
|
|
|
pid_t* find_pid_by_name(const char* procName)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
2006-11-01 09:16:49 +00:00
|
|
|
pid_t* pidList;
|
2006-09-27 14:17:31 +00:00
|
|
|
int i = 0;
|
2006-11-05 00:43:51 +00:00
|
|
|
procps_status_t* p = NULL;
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2006-11-01 09:16:49 +00:00
|
|
|
pidList = xmalloc(sizeof(*pidList));
|
2006-11-05 00:43:51 +00:00
|
|
|
while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_COMM))) {
|
|
|
|
if (strncmp(p->comm, procName, sizeof(p->comm)-1) == 0) {
|
2006-11-01 09:16:49 +00:00
|
|
|
pidList = xrealloc(pidList, sizeof(*pidList) * (i+2));
|
2006-09-27 14:17:31 +00:00
|
|
|
pidList[i++] = p->pid;
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-01 09:16:49 +00:00
|
|
|
pidList[i] = 0;
|
2001-03-16 22:47:14 +00:00
|
|
|
return pidList;
|
|
|
|
}
|
|
|
|
|
2006-11-01 09:16:49 +00:00
|
|
|
pid_t *pidlist_reverse(pid_t *pidList)
|
2005-10-06 12:10:48 +00:00
|
|
|
{
|
2006-09-27 14:17:31 +00:00
|
|
|
int i = 0;
|
2006-11-01 09:16:49 +00:00
|
|
|
while (pidList[i])
|
|
|
|
i++;
|
|
|
|
if (--i >= 0) {
|
|
|
|
pid_t k;
|
2005-10-06 12:10:48 +00:00
|
|
|
int j;
|
|
|
|
for (j = 0; i > j; i--, j++) {
|
|
|
|
k = pidList[i];
|
|
|
|
pidList[i] = pidList[j];
|
|
|
|
pidList[j] = k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pidList;
|
|
|
|
}
|