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