blob: f183cc0bd9de3a43bb0559dc0a03b44a7cb06f2f [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 */
43extern pid_t* find_pid_by_name( char* pidName)
44{
45 int fd, i, j;
46 char device[] = "/dev/ps";
47 pid_t num_pids;
48 pid_t* pid_array = NULL;
49 pid_t* pidList=NULL;
50
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))) {
90 pidList=xrealloc( pidList, sizeof(pid_t) * (j+2));
91 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 if ( strcmp(pidName, "init")==0) {
97 /* If we found nothing and they were trying to kill "init",
98 * guess PID 1 and call it good... Perhaps we should simply
99 * exit if /proc isn't mounted, but this will do for now. */
100 pidList=xrealloc( pidList, sizeof(pid_t));
101 pidList[0]=1;
102 } else {
Eric Andersen8e75f6d2001-07-05 16:27:34 +0000103 pidList=xrealloc( pidList, sizeof(pid_t));
Eric Andersend50a6192001-07-05 15:56:36 +0000104 pidList[0]=-1;
105 }
Eric Andersenaad1a882001-03-16 22:47:14 +0000106
107 /* Free memory */
108 free( pid_array);
109
110 /* close device */
111 if (close (fd) != 0)
112 perror_msg_and_die("close failed for `%s'", device);
113
114 return pidList;
115}
116
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000117#else /* CONFIG_FEATURE_USE_DEVPS_PATCH */
Eric Andersenaad1a882001-03-16 22:47:14 +0000118
119/* find_pid_by_name()
120 *
121 * This finds the pid of the specified process.
122 * Currently, it's implemented by rummaging through
123 * the proc filesystem.
124 *
125 * Returns a list of all matching PIDs
126 */
127extern pid_t* find_pid_by_name( char* pidName)
128{
129 DIR *dir;
130 struct dirent *next;
131 pid_t* pidList=NULL;
132 int i=0;
133
134 dir = opendir("/proc");
135 if (!dir)
136 perror_msg_and_die("Cannot open /proc");
137
138 while ((next = readdir(dir)) != NULL) {
139 FILE *status;
Eric Andersen8a6dbf62001-03-17 00:05:42 +0000140 char filename[READ_BUF_SIZE];
141 char buffer[READ_BUF_SIZE];
142 char name[READ_BUF_SIZE];
Eric Andersenaad1a882001-03-16 22:47:14 +0000143
Eric Andersen91a63182001-06-26 22:44:09 +0000144 /* Must skip ".." since that is outside /proc */
145 if (strcmp(next->d_name, "..") == 0)
146 continue;
147
Eric Andersenaad1a882001-03-16 22:47:14 +0000148 /* If it isn't a number, we don't want it */
149 if (!isdigit(*next->d_name))
150 continue;
151
Eric Andersen8a6dbf62001-03-17 00:05:42 +0000152 sprintf(filename, "/proc/%s/status", next->d_name);
153 if (! (status = fopen(filename, "r")) ) {
Eric Andersenaad1a882001-03-16 22:47:14 +0000154 continue;
155 }
Eric Andersen8a6dbf62001-03-17 00:05:42 +0000156 if (fgets(buffer, READ_BUF_SIZE-1, status) == NULL) {
157 fclose(status);
158 continue;
159 }
Eric Andersenaad1a882001-03-16 22:47:14 +0000160 fclose(status);
161
Eric Andersen8a6dbf62001-03-17 00:05:42 +0000162 /* Buffer should contain a string like "Name: binary_name" */
163 sscanf(buffer, "%*s %s", name);
164 if (strcmp(name, pidName) == 0) {
Eric Andersenaad1a882001-03-16 22:47:14 +0000165 pidList=xrealloc( pidList, sizeof(pid_t) * (i+2));
166 pidList[i++]=strtol(next->d_name, NULL, 0);
167 }
168 }
169
170 if (pidList)
171 pidList[i]=0;
Eric Andersend50a6192001-07-05 15:56:36 +0000172 else if ( strcmp(pidName, "init")==0) {
173 /* If we found nothing and they were trying to kill "init",
174 * guess PID 1 and call it good... Perhaps we should simply
175 * exit if /proc isn't mounted, but this will do for now. */
Eric Andersen91a63182001-06-26 22:44:09 +0000176 pidList=xrealloc( pidList, sizeof(pid_t));
177 pidList[0]=1;
Eric Andersend50a6192001-07-05 15:56:36 +0000178 } else {
Eric Andersen8e75f6d2001-07-05 16:27:34 +0000179 pidList=xrealloc( pidList, sizeof(pid_t));
Eric Andersend50a6192001-07-05 15:56:36 +0000180 pidList[0]=-1;
Eric Andersen91a63182001-06-26 22:44:09 +0000181 }
Eric Andersenaad1a882001-03-16 22:47:14 +0000182 return pidList;
183}
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000184#endif /* CONFIG_FEATURE_USE_DEVPS_PATCH */
Eric Andersenaad1a882001-03-16 22:47:14 +0000185
186/* END CODE */
187/*
188Local Variables:
189c-file-style: "linux"
190c-basic-offset: 4
191tab-width: 4
192End:
193*/