blob: 4eaee03e32a72cc1e4ae8f6aa5c47a3c4dcb191b [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersenaad1a882001-03-16 22:47:14 +000020 */
21
22#include <stdio.h>
23#include <ctype.h>
24#include <string.h>
25#include <dirent.h>
26#include <stdlib.h>
27#include "libbb.h"
28
Eric Andersen8a6dbf62001-03-17 00:05:42 +000029#define READ_BUF_SIZE 50
30
Eric Andersenaad1a882001-03-16 22:47:14 +000031
32/* For Erik's nifty devps device driver */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000033#ifdef CONFIG_FEATURE_USE_DEVPS_PATCH
Eric Andersenaad1a882001-03-16 22:47:14 +000034#include <linux/devps.h>
35
36/* find_pid_by_name()
37 *
38 * This finds the pid of the specified process,
39 * by using the /dev/ps device driver.
40 *
41 * Returns a list of all matching PIDs
42 */
Eric Andersenb24d6562001-12-06 14:52:32 +000043extern long* find_pid_by_name( char* pidName)
Eric Andersenaad1a882001-03-16 22:47:14 +000044{
45 int fd, i, j;
46 char device[] = "/dev/ps";
47 pid_t num_pids;
48 pid_t* pid_array = NULL;
Eric Andersenb24d6562001-12-06 14:52:32 +000049 long* pidList=NULL;
Eric Andersenaad1a882001-03-16 22:47:14 +000050
51 /* open device */
52 fd = open(device, O_RDONLY);
53 if (fd < 0)
54 perror_msg_and_die("open failed for `%s'", device);
55
56 /* Find out how many processes there are */
57 if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0)
58 perror_msg_and_die("\nDEVPS_GET_PID_LIST");
59
60 /* Allocate some memory -- grab a few extras just in case
61 * some new processes start up while we wait. The kernel will
62 * just ignore any extras if we give it too many, and will trunc.
63 * the list if we give it too few. */
64 pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t));
65 pid_array[0] = num_pids+10;
66
67 /* Now grab the pid list */
68 if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<0)
69 perror_msg_and_die("\nDEVPS_GET_PID_LIST");
70
71 /* Now search for a match */
72 for (i=1, j=0; i<pid_array[0] ; i++) {
73 char* p;
74 struct pid_info info;
75
76 info.pid = pid_array[i];
77 if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
78 perror_msg_and_die("\nDEVPS_GET_PID_INFO");
79
80 /* Make sure we only match on the process name */
81 p=info.command_line+1;
82 while ((*p != 0) && !isspace(*(p)) && (*(p-1) != '\\')) {
83 (p)++;
84 }
85 if (isspace(*(p)))
86 *p='\0';
87
88 if ((strstr(info.command_line, pidName) != NULL)
89 && (strlen(pidName) == strlen(info.command_line))) {
Eric Andersenb24d6562001-12-06 14:52:32 +000090 pidList=xrealloc( pidList, sizeof(long) * (j+2));
Eric Andersenaad1a882001-03-16 22:47:14 +000091 pidList[j++]=info.pid;
92 }
93 }
Eric Andersend50a6192001-07-05 15:56:36 +000094 if (pidList) {
Eric Andersenaad1a882001-03-16 22:47:14 +000095 pidList[j]=0;
Eric Andersend50a6192001-07-05 15:56:36 +000096 } else {
Eric Andersenb24d6562001-12-06 14:52:32 +000097 pidList=xrealloc( pidList, sizeof(long));
Eric Andersend50a6192001-07-05 15:56:36 +000098 pidList[0]=-1;
99 }
Eric Andersenaad1a882001-03-16 22:47:14 +0000100
101 /* Free memory */
102 free( pid_array);
103
104 /* close device */
105 if (close (fd) != 0)
106 perror_msg_and_die("close failed for `%s'", device);
107
108 return pidList;
109}
110
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000111#else /* CONFIG_FEATURE_USE_DEVPS_PATCH */
Eric Andersenaad1a882001-03-16 22:47:14 +0000112
113/* find_pid_by_name()
114 *
115 * This finds the pid of the specified process.
116 * Currently, it's implemented by rummaging through
117 * the proc filesystem.
118 *
119 * Returns a list of all matching PIDs
120 */
Eric Andersenb24d6562001-12-06 14:52:32 +0000121extern long* find_pid_by_name( char* pidName)
Eric Andersenaad1a882001-03-16 22:47:14 +0000122{
123 DIR *dir;
124 struct dirent *next;
Eric Andersenb24d6562001-12-06 14:52:32 +0000125 long* pidList=NULL;
Eric Andersenaad1a882001-03-16 22:47:14 +0000126 int i=0;
127
128 dir = opendir("/proc");
129 if (!dir)
130 perror_msg_and_die("Cannot open /proc");
131
132 while ((next = readdir(dir)) != NULL) {
133 FILE *status;
Eric Andersen8a6dbf62001-03-17 00:05:42 +0000134 char filename[READ_BUF_SIZE];
135 char buffer[READ_BUF_SIZE];
136 char name[READ_BUF_SIZE];
Eric Andersenaad1a882001-03-16 22:47:14 +0000137
Eric Andersen91a63182001-06-26 22:44:09 +0000138 /* Must skip ".." since that is outside /proc */
139 if (strcmp(next->d_name, "..") == 0)
140 continue;
141
Eric Andersenaad1a882001-03-16 22:47:14 +0000142 /* If it isn't a number, we don't want it */
143 if (!isdigit(*next->d_name))
144 continue;
145
Eric Andersen8a6dbf62001-03-17 00:05:42 +0000146 sprintf(filename, "/proc/%s/status", next->d_name);
147 if (! (status = fopen(filename, "r")) ) {
Eric Andersenaad1a882001-03-16 22:47:14 +0000148 continue;
149 }
Eric Andersen8a6dbf62001-03-17 00:05:42 +0000150 if (fgets(buffer, READ_BUF_SIZE-1, status) == NULL) {
151 fclose(status);
152 continue;
153 }
Eric Andersenaad1a882001-03-16 22:47:14 +0000154 fclose(status);
155
Eric Andersen8a6dbf62001-03-17 00:05:42 +0000156 /* Buffer should contain a string like "Name: binary_name" */
157 sscanf(buffer, "%*s %s", name);
158 if (strcmp(name, pidName) == 0) {
Eric Andersenb24d6562001-12-06 14:52:32 +0000159 pidList=xrealloc( pidList, sizeof(long) * (i+2));
Eric Andersenaad1a882001-03-16 22:47:14 +0000160 pidList[i++]=strtol(next->d_name, NULL, 0);
161 }
162 }
163
Eric Andersenb24d6562001-12-06 14:52:32 +0000164 if (pidList) {
Eric Andersenaad1a882001-03-16 22:47:14 +0000165 pidList[i]=0;
Eric Andersend50a6192001-07-05 15:56:36 +0000166 } else {
Eric Andersenb24d6562001-12-06 14:52:32 +0000167 pidList=xrealloc( pidList, sizeof(long));
Eric Andersend50a6192001-07-05 15:56:36 +0000168 pidList[0]=-1;
Eric Andersen91a63182001-06-26 22:44:09 +0000169 }
Eric Andersenaad1a882001-03-16 22:47:14 +0000170 return pidList;
171}
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000172#endif /* CONFIG_FEATURE_USE_DEVPS_PATCH */
Eric Andersenaad1a882001-03-16 22:47:14 +0000173
174/* END CODE */
175/*
176Local Variables:
177c-file-style: "linux"
178c-basic-offset: 4
179tab-width: 4
180End:
181*/