6036ffc1e8127268cbc5ca14ffd9e0d30d0f5395
[oweals/busybox.git] / procps / ps.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini ps implementation(s) for busybox
4  *
5  * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen  
6  * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by the Free
10  * Software Foundation; either version 2 of the License, or (at your option)
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16  * more details.
17  *
18  * You should have received a copy of the GNU General Public License along with
19  * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
20  * Place, Suite 330, Boston, MA 02111-1307 USA
21  */
22
23 /*
24  * This contains _two_ implementations of ps for Linux.  One uses the
25  * traditional /proc virtual filesystem, and the other use the devps kernel
26  * driver (written by Erik Andersen to avoid using /proc thereby saving 100k+).
27  */
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <dirent.h>
33 #include <errno.h>
34 #include <fcntl.h>
35 #include <ctype.h>
36 #include <string.h>
37 #include <termios.h>
38 #include <sys/ioctl.h>
39 #include "busybox.h"
40
41 static const int TERMINAL_WIDTH = 79;      /* not 80 in case terminal has linefold bug */
42
43
44
45 #if ! defined CONFIG_FEATURE_USE_DEVPS_PATCH
46
47 /* The following is the first ps implementation --
48  * the one using the /proc virtual filesystem.
49  */
50
51 typedef struct proc_s {
52         char cmd[16];                                   /* basename of executable file in call to exec(2) */
53         int ruid;                                               /* real only (sorry) */
54         int pid;                                                /* process id */
55         int ppid;                                               /* pid of parent process */
56         char state;                                             /* single-char code for process state (S=sleeping) */
57         unsigned int vmsize;                    /* size of process as far as the vm is concerned */
58 } proc_t;
59
60
61
62 static int file2str(char *filename, char *ret, int cap)
63 {
64         int fd, num_read;
65
66         if ((fd = open(filename, O_RDONLY, 0)) == -1)
67                 return -1;
68         if ((num_read = read(fd, ret, cap - 1)) <= 0)
69                 return -1;
70         ret[num_read] = 0;
71         close(fd);
72         return num_read;
73 }
74
75
76 static void parse_proc_status(char *S, proc_t * P)
77 {
78         char *tmp;
79
80         memset(P->cmd, 0, sizeof P->cmd);
81         sscanf(S, "Name:\t%15c", P->cmd);
82         tmp = strchr(P->cmd, '\n');
83         if (tmp)
84                 *tmp = '\0';
85         tmp = strstr(S, "State");
86         sscanf(tmp, "State:\t%c", &P->state);
87
88         P->pid = 0;
89         P->ppid = 0;
90         tmp = strstr(S, "Pid:");
91         if (tmp)
92                 sscanf(tmp, "Pid:\t%d\n" "PPid:\t%d\n", &P->pid, &P->ppid);
93         else
94                 error_msg("Internal error!");
95
96         /* For busybox, ignoring effective, saved, etc. */
97         P->ruid = 0;
98         tmp = strstr(S, "Uid:");
99         if (tmp)
100                 sscanf(tmp, "Uid:\t%d", &P->ruid);
101         else
102                 error_msg("Internal error!");
103         
104         P->vmsize = 0;
105         tmp = strstr(S, "VmSize:");
106         if (tmp)
107                 sscanf(tmp, "VmSize:\t%d", &P->vmsize);
108 #if 0
109         else
110                 error_msg("Internal error!");
111 #endif
112 }
113
114 extern int ps_main(int argc, char **argv)
115 {
116         proc_t p;
117         DIR *dir;
118         FILE *file;
119         struct dirent *entry;
120         char path[32], sbuf[512];
121         char uidName[9];
122         int len, i, c;
123 #ifdef CONFIG_FEATURE_AUTOWIDTH
124         struct winsize win = { 0, 0, 0, 0 };
125         int terminal_width = TERMINAL_WIDTH;
126 #else
127 #define terminal_width  TERMINAL_WIDTH
128 #endif
129
130
131
132         dir = opendir("/proc");
133         if (!dir)
134                 error_msg_and_die("Can't open /proc");
135
136 #ifdef CONFIG_FEATURE_AUTOWIDTH
137                 ioctl(fileno(stdout), TIOCGWINSZ, &win);
138                 if (win.ws_col > 0)
139                         terminal_width = win.ws_col - 1;
140 #endif
141
142         printf("  PID  Uid     VmSize Stat Command\n");
143         while ((entry = readdir(dir)) != NULL) {
144                 if (!isdigit(*entry->d_name))
145                         continue;
146                 sprintf(path, "/proc/%s/status", entry->d_name);
147                 if ((file2str(path, sbuf, sizeof sbuf)) != -1) {
148                         parse_proc_status(sbuf, &p);
149                 }
150
151                 /* Make some adjustments as needed */
152                 my_getpwuid(uidName, p.ruid);
153
154                 sprintf(path, "/proc/%s/cmdline", entry->d_name);
155                 file = fopen(path, "r");
156                 if (file == NULL)
157                         continue;
158                 i = 0;
159                 if(p.vmsize == 0)
160                         len = printf("%5d %-8s        %c    ", p.pid, uidName, p.state);
161                 else
162                         len = printf("%5d %-8s %6d %c    ", p.pid, uidName, p.vmsize, p.state);
163                 while (((c = getc(file)) != EOF) && (i < (terminal_width-len))) {
164                         i++;
165                         if (c == '\0')
166                                 c = ' ';
167                         putc(c, stdout);
168                 }
169                 fclose(file);
170                 if (i == 0)
171                         printf("[%s]", p.cmd);
172                 putchar('\n');
173         }
174         closedir(dir);
175         return EXIT_SUCCESS;
176 }
177
178
179 #else /* CONFIG_FEATURE_USE_DEVPS_PATCH */
180
181
182 /* The following is the second ps implementation --
183  * this one uses the nifty new devps kernel device.
184  */
185
186 #include <linux/devps.h> /* For Erik's nifty devps device driver */
187
188
189 extern int ps_main(int argc, char **argv)
190 {
191         char device[] = "/dev/ps";
192         int i, j, len, fd;
193         pid_t num_pids;
194         pid_t* pid_array = NULL;
195         struct pid_info info;
196         char uidName[9];
197 #ifdef CONFIG_FEATURE_AUTOWIDTH
198         struct winsize win = { 0, 0, 0, 0 };
199         int terminal_width = TERMINAL_WIDTH;
200 #else
201 #define terminal_width  TERMINAL_WIDTH
202 #endif
203
204         if (argc > 1 && **(argv + 1) == '-') 
205                 show_usage();
206
207         /* open device */ 
208         fd = open(device, O_RDONLY);
209         if (fd < 0) 
210                 perror_msg_and_die( "open failed for `%s'", device);
211
212         /* Find out how many processes there are */
213         if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0) 
214                 perror_msg_and_die( "\nDEVPS_GET_PID_LIST");
215         
216         /* Allocate some memory -- grab a few extras just in case 
217          * some new processes start up while we wait. The kernel will
218          * just ignore any extras if we give it too many, and will trunc.
219          * the list if we give it too few.  */
220         pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t));
221         pid_array[0] = num_pids+10;
222
223         /* Now grab the pid list */
224         if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<0) 
225                 perror_msg_and_die("\nDEVPS_GET_PID_LIST");
226
227 #ifdef CONFIG_FEATURE_AUTOWIDTH
228                 ioctl(fileno(stdout), TIOCGWINSZ, &win);
229                 if (win.ws_col > 0)
230                         terminal_width = win.ws_col - 1;
231 #endif
232
233         /* Print up a ps listing */
234         printf("  PID  Uid     Stat Command\n");
235
236         for (i=1; i<pid_array[0] ; i++) {
237             info.pid = pid_array[i];
238
239             if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
240                         perror_msg_and_die("\nDEVPS_GET_PID_INFO");
241             
242                 /* Make some adjustments as needed */
243                 my_getpwuid(uidName, info.euid);
244
245                 if(p.vmsize == 0)
246                         len = printf("%5d %-8s        %c    ", p.pid, uidName, p.state);
247                 else
248                         len = printf("%5d %-8s %6d %c    ", p.pid, uidName, p.vmsize, p.state);
249                 if (strlen(info.command_line) > 1) {
250                         for( j=0; j<(sizeof(info.command_line)-1) && j < (terminal_width-len); j++) {
251                                 if (*(info.command_line+j) == '\0' && *(info.command_line+j+1) != '\0') {
252                                         *(info.command_line+j) = ' ';
253                                 }
254                         }
255                         *(info.command_line+j) = '\0';
256                         puts(info.command_line);
257                 } else {
258                         printf("[%s]\n", info.name);
259                 }
260         }
261
262         /* Free memory */
263         free( pid_array);
264
265         /* close device */
266         if (close (fd) != 0) 
267                 perror_msg_and_die("close failed for `%s'", device);
268  
269         exit (0);
270 }
271
272 #endif /* CONFIG_FEATURE_USE_DEVPS_PATCH */
273