1 /* vi: set sw=4 ts=4: */
3 * Mini ps implementation(s) for busybox
5 * Copyright (C) 1999,2000,2001 by Lineo, inc.
6 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
9 * This contains _two_ implementations of ps for Linux. One uses the
10 * traditional /proc virtual filesystem, and the other use the devps kernel
11 * driver (written by Erik Andersen to avoid using /proc thereby saving 100k+).
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the Free
17 * Software Foundation; either version 2 of the License, or (at your option)
20 * This program is distributed in the hope that it will be useful, but WITHOUT
21 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
25 * You should have received a copy of the GNU General Public License along with
26 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
27 * Place, Suite 330, Boston, MA 02111-1307 USA
40 #include <sys/ioctl.h>
43 static const int TERMINAL_WIDTH = 79; /* not 80 in case terminal has linefold bug */
47 #if ! defined BB_FEATURE_USE_DEVPS_PATCH
49 /* The following is the first ps implementation --
50 * the one using the /proc virtual filesystem.
53 typedef struct proc_s {
55 cmd[16]; /* basename of executable file in call to exec(2) */
57 ruid, /* real only (sorry) */
59 ppid; /* pid of parent process */
61 state; /* single-char code for process state (S=sleeping) */
66 static int file2str(char *filename, char *ret, int cap)
70 if ((fd = open(filename, O_RDONLY, 0)) == -1)
72 if ((num_read = read(fd, ret, cap - 1)) <= 0)
80 static void parse_proc_status(char *S, proc_t * P)
84 memset(P->cmd, 0, sizeof P->cmd);
85 sscanf(S, "Name:\t%15c", P->cmd);
86 tmp = strchr(P->cmd, '\n');
89 tmp = strstr(S, "State");
90 sscanf(tmp, "State:\t%c", &P->state);
92 tmp = strstr(S, "Pid:");
94 sscanf(tmp, "Pid:\t%d\n" "PPid:\t%d\n", &P->pid, &P->ppid);
96 error_msg("Internal error!");
98 /* For busybox, ignoring effective, saved, etc. */
99 tmp = strstr(S, "Uid:");
101 sscanf(tmp, "Uid:\t%d", &P->ruid);
103 error_msg("Internal error!");
108 extern int ps_main(int argc, char **argv)
113 struct dirent *entry;
114 char path[32], sbuf[512];
117 #ifdef BB_FEATURE_AUTOWIDTH
118 struct winsize win = { 0, 0, 0, 0 };
119 int terminal_width = TERMINAL_WIDTH;
121 #define terminal_width TERMINAL_WIDTH
126 dir = opendir("/proc");
128 error_msg_and_die("Can't open /proc");
130 #ifdef BB_FEATURE_AUTOWIDTH
131 ioctl(fileno(stdout), TIOCGWINSZ, &win);
133 terminal_width = win.ws_col - 1;
136 printf(" PID Uid Stat Command\n");
137 while ((entry = readdir(dir)) != NULL) {
138 if (!isdigit(*entry->d_name))
140 sprintf(path, "/proc/%s/status", entry->d_name);
141 if ((file2str(path, sbuf, sizeof sbuf)) != -1) {
142 parse_proc_status(sbuf, &p);
145 /* Make some adjustments as needed */
146 my_getpwuid(uidName, p.ruid);
147 if (*uidName == '\0')
148 sprintf(uidName, "%d", p.ruid);
150 sprintf(path, "/proc/%s/cmdline", entry->d_name);
151 file = fopen(path, "r");
155 len = printf("%5d %-8s %c ", p.pid, uidName, p.state);
156 while (((c = getc(file)) != EOF) && (i < (terminal_width-len))) {
164 printf("[%s]", p.cmd);
172 #else /* BB_FEATURE_USE_DEVPS_PATCH */
175 /* The following is the second ps implementation --
176 * this one uses the nifty new devps kernel device.
179 #include <linux/devps.h> /* For Erik's nifty devps device driver */
182 extern int ps_main(int argc, char **argv)
184 char device[] = "/dev/ps";
187 pid_t* pid_array = NULL;
188 struct pid_info info;
190 #ifdef BB_FEATURE_AUTOWIDTH
191 struct winsize win = { 0, 0, 0, 0 };
192 int terminal_width = TERMINAL_WIDTH;
194 #define terminal_width TERMINAL_WIDTH
197 if (argc > 1 && **(argv + 1) == '-')
201 fd = open(device, O_RDONLY);
203 perror_msg_and_die( "open failed for `%s'", device);
205 /* Find out how many processes there are */
206 if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0)
207 perror_msg_and_die( "\nDEVPS_GET_PID_LIST");
209 /* Allocate some memory -- grab a few extras just in case
210 * some new processes start up while we wait. The kernel will
211 * just ignore any extras if we give it too many, and will trunc.
212 * the list if we give it too few. */
213 pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t));
214 pid_array[0] = num_pids+10;
216 /* Now grab the pid list */
217 if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<0)
218 perror_msg_and_die("\nDEVPS_GET_PID_LIST");
220 #ifdef BB_FEATURE_AUTOWIDTH
221 ioctl(fileno(stdout), TIOCGWINSZ, &win);
223 terminal_width = win.ws_col - 1;
226 /* Print up a ps listing */
227 printf(" PID Uid Stat Command\n");
229 for (i=1; i<pid_array[0] ; i++) {
230 info.pid = pid_array[i];
232 if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
233 perror_msg_and_die("\nDEVPS_GET_PID_INFO");
235 /* Make some adjustments as needed */
236 my_getpwuid(uidName, info.euid);
237 if (*uidName == '\0')
238 sprintf(uidName, "%ld", info.euid);
240 len = printf("%5d %-8s %c ", info.pid, uidName, info.state);
242 if (strlen(info.command_line) > 1) {
243 for( j=0; j<(sizeof(info.command_line)-1) && j < (terminal_width-len); j++) {
244 if (*(info.command_line+j) == '\0' && *(info.command_line+j+1) != '\0') {
245 *(info.command_line+j) = ' ';
248 *(info.command_line+j) = '\0';
249 puts(info.command_line);
251 printf("[%s]\n", info.name);
260 perror_msg_and_die("close failed for `%s'", device);
265 #endif /* BB_FEATURE_USE_DEVPS_PATCH */