Try to pull in PATH_MAX properly
[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
53          cmd[16];                                       /* basename of executable file in call to exec(2) */
54         int
55          ruid,                                          /* real only (sorry) */
56          pid,                                           /* process id */
57          ppid;                                          /* pid of parent process */
58         char
59          state;                                         /* single-char code for process state (S=sleeping) */
60 } proc_t;
61
62
63
64 static int file2str(char *filename, char *ret, int cap)
65 {
66         int fd, num_read;
67
68         if ((fd = open(filename, O_RDONLY, 0)) == -1)
69                 return -1;
70         if ((num_read = read(fd, ret, cap - 1)) <= 0)
71                 return -1;
72         ret[num_read] = 0;
73         close(fd);
74         return num_read;
75 }
76
77
78 static void parse_proc_status(char *S, proc_t * P)
79 {
80         char *tmp;
81
82         memset(P->cmd, 0, sizeof P->cmd);
83         sscanf(S, "Name:\t%15c", P->cmd);
84         tmp = strchr(P->cmd, '\n');
85         if (tmp)
86                 *tmp = '\0';
87         tmp = strstr(S, "State");
88         sscanf(tmp, "State:\t%c", &P->state);
89
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         tmp = strstr(S, "Uid:");
98         if (tmp)
99                 sscanf(tmp, "Uid:\t%d", &P->ruid);
100         else
101                 error_msg("Internal error!");
102
103
104 }
105
106 extern int ps_main(int argc, char **argv)
107 {
108         proc_t p;
109         DIR *dir;
110         FILE *file;
111         struct dirent *entry;
112         char path[32], sbuf[512];
113         char uidName[9];
114         int len, i, c;
115 #ifdef CONFIG_FEATURE_AUTOWIDTH
116         struct winsize win = { 0, 0, 0, 0 };
117         int terminal_width = TERMINAL_WIDTH;
118 #else
119 #define terminal_width  TERMINAL_WIDTH
120 #endif
121
122
123
124         dir = opendir("/proc");
125         if (!dir)
126                 error_msg_and_die("Can't open /proc");
127
128 #ifdef CONFIG_FEATURE_AUTOWIDTH
129                 ioctl(fileno(stdout), TIOCGWINSZ, &win);
130                 if (win.ws_col > 0)
131                         terminal_width = win.ws_col - 1;
132 #endif
133
134         printf("  PID  Uid     Stat Command\n");
135         while ((entry = readdir(dir)) != NULL) {
136                 if (!isdigit(*entry->d_name))
137                         continue;
138                 sprintf(path, "/proc/%s/status", entry->d_name);
139                 if ((file2str(path, sbuf, sizeof sbuf)) != -1) {
140                         parse_proc_status(sbuf, &p);
141                 }
142
143                 /* Make some adjustments as needed */
144                 my_getpwuid(uidName, p.ruid);
145                 if (*uidName == '\0')
146                         sprintf(uidName, "%d", p.ruid);
147
148                 sprintf(path, "/proc/%s/cmdline", entry->d_name);
149                 file = fopen(path, "r");
150                 if (file == NULL)
151                         continue;
152                 i = 0;
153                 len = printf("%5d %-8s %c    ", p.pid, uidName, p.state);
154                 while (((c = getc(file)) != EOF) && (i < (terminal_width-len))) {
155                         i++;
156                         if (c == '\0')
157                                 c = ' ';
158                         putc(c, stdout);
159                 }
160                 fclose(file);
161                 if (i == 0)
162                         printf("[%s]", p.cmd);
163                 putchar('\n');
164         }
165         closedir(dir);
166         return EXIT_SUCCESS;
167 }
168
169
170 #else /* CONFIG_FEATURE_USE_DEVPS_PATCH */
171
172
173 /* The following is the second ps implementation --
174  * this one uses the nifty new devps kernel device.
175  */
176
177 #include <linux/devps.h> /* For Erik's nifty devps device driver */
178
179
180 extern int ps_main(int argc, char **argv)
181 {
182         char device[] = "/dev/ps";
183         int i, j, len, fd;
184         pid_t num_pids;
185         pid_t* pid_array = NULL;
186         struct pid_info info;
187         char uidName[9];
188 #ifdef CONFIG_FEATURE_AUTOWIDTH
189         struct winsize win = { 0, 0, 0, 0 };
190         int terminal_width = TERMINAL_WIDTH;
191 #else
192 #define terminal_width  TERMINAL_WIDTH
193 #endif
194
195         if (argc > 1 && **(argv + 1) == '-') 
196                 show_usage();
197
198         /* open device */ 
199         fd = open(device, O_RDONLY);
200         if (fd < 0) 
201                 perror_msg_and_die( "open failed for `%s'", device);
202
203         /* Find out how many processes there are */
204         if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0) 
205                 perror_msg_and_die( "\nDEVPS_GET_PID_LIST");
206         
207         /* Allocate some memory -- grab a few extras just in case 
208          * some new processes start up while we wait. The kernel will
209          * just ignore any extras if we give it too many, and will trunc.
210          * the list if we give it too few.  */
211         pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t));
212         pid_array[0] = num_pids+10;
213
214         /* Now grab the pid list */
215         if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<0) 
216                 perror_msg_and_die("\nDEVPS_GET_PID_LIST");
217
218 #ifdef CONFIG_FEATURE_AUTOWIDTH
219                 ioctl(fileno(stdout), TIOCGWINSZ, &win);
220                 if (win.ws_col > 0)
221                         terminal_width = win.ws_col - 1;
222 #endif
223
224         /* Print up a ps listing */
225         printf("  PID  Uid     Stat Command\n");
226
227         for (i=1; i<pid_array[0] ; i++) {
228             info.pid = pid_array[i];
229
230             if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
231                         perror_msg_and_die("\nDEVPS_GET_PID_INFO");
232             
233                 /* Make some adjustments as needed */
234                 my_getpwuid(uidName, info.euid);
235                 if (*uidName == '\0')
236                         sprintf(uidName, "%ld", info.euid);
237
238                 len = printf("%5d %-8s %c    ", info.pid, uidName, info.state);
239
240                 if (strlen(info.command_line) > 1) {
241                         for( j=0; j<(sizeof(info.command_line)-1) && j < (terminal_width-len); j++) {
242                                 if (*(info.command_line+j) == '\0' && *(info.command_line+j+1) != '\0') {
243                                         *(info.command_line+j) = ' ';
244                                 }
245                         }
246                         *(info.command_line+j) = '\0';
247                         puts(info.command_line);
248                 } else {
249                         printf("[%s]\n", info.name);
250                 }
251         }
252
253         /* Free memory */
254         free( pid_array);
255
256         /* close device */
257         if (close (fd) != 0) 
258                 perror_msg_and_die("close failed for `%s'", device);
259  
260         exit (0);
261 }
262
263 #endif /* CONFIG_FEATURE_USE_DEVPS_PATCH */
264