diff options
author | Erik Andersen | 2000-03-07 23:32:17 +0000 |
---|---|---|
committer | Erik Andersen | 2000-03-07 23:32:17 +0000 |
commit | 2ac2fae728cca8a535b29bdd2fa6899e6f4992f2 (patch) | |
tree | 76eb5871ac3cde7d58048aadba75c7f40fab93b7 /utility.c | |
parent | cbd0d625c7466af80f141e0ae24186e15987bf3e (diff) | |
download | busybox-2ac2fae728cca8a535b29bdd2fa6899e6f4992f2.zip busybox-2ac2fae728cca8a535b29bdd2fa6899e6f4992f2.tar.gz |
Fix bugs related to finding PIDs.
-Erik
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 28 |
1 files changed, 19 insertions, 9 deletions
@@ -1247,7 +1247,7 @@ extern int device_open(char *device, int mode) #endif /* BB_INIT BB_SYSLOGD */ -#if defined BB_INIT || defined BB_HALT || defined BB_REBOOT || defined BB_KILLALL +#if defined BB_KILLALL || defined BB_FEATURE_LINUXRC && ( defined BB_HALT || defined BB_REBOOT || defined BB_POWEROFF ) #ifdef BB_FEATURE_USE_DEVPS_N_DEVMTAB #include <linux/devps.h> @@ -1318,6 +1318,7 @@ extern pid_t findPidByName( char* pidName) #if ! defined BB_FEATURE_USE_PROCFS #error Sorry, I depend on the /proc filesystem right now. #endif + /* findPidByName() * * This finds the pid of the specified process. @@ -1330,15 +1331,24 @@ extern pid_t findPidByName( char* pidName) */ extern pid_t findPidByName( char* pidName) { - pid_t thePid; - char filename[256]; - char buffer[256]; + DIR *dir; + struct dirent *next; - /* no need to opendir ;) */ - for (thePid = 1; thePid < 65536; thePid++) { + dir = opendir("/proc"); + if (!dir) + fatalError( "Cannot open /proc: %s\n", strerror (errno)); + + while ((next = readdir(dir)) != NULL) { FILE *status; + char filename[256]; + char buffer[256]; + + /* If it isn't a number, we don't want it */ + if (!isdigit(*next->d_name)) + continue; - sprintf(filename, "/proc/%d/cmdline", thePid); + /* Now open the command line file */ + sprintf(filename, "/proc/%s/status", next->d_name); status = fopen(filename, "r"); if (!status) { continue; @@ -1347,13 +1357,13 @@ extern pid_t findPidByName( char* pidName) fclose(status); if ((strstr(buffer, pidName) != NULL)) { - return thePid; + return strtol(next->d_name, NULL, 0); } } return 0; } #endif /* BB_FEATURE_USE_DEVPS_N_DEVMTAB */ -#endif /* BB_INIT || BB_HALT || BB_REBOOT || KILLALL */ +#endif /* BB_INIT || BB_HALT || BB_REBOOT || BB_KILLALL || BB_POWEROFF */ #if defined BB_GUNZIP \ || defined BB_GZIP \ |