Removed trailing \n from error_msg{,_and_die} messages.
[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,2001 by Lineo, inc.  
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  *
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+).
12  *
13  *
14  *
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)
18  * any later version.
19  *
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
23  * more details.
24  *
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
28  *
29  */
30
31 #include "busybox.h"
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <unistd.h>
35 #include <dirent.h>
36 #include <errno.h>
37 #include <fcntl.h>
38 #include <ctype.h>
39 #include <string.h>
40 #include <sys/ioctl.h>
41 #define BB_DECLARE_EXTERN
42 #define bb_need_help
43 #include "messages.c"
44
45 static const int TERMINAL_WIDTH = 79;      /* not 80 in case terminal has linefold bug */
46
47
48
49 #if ! defined BB_FEATURE_USE_DEVPS_PATCH
50
51 /* The following is the first ps implementation --
52  * the one using the /proc virtual filesystem.
53  */
54
55 #if ! defined BB_FEATURE_USE_PROCFS
56 #error Sorry, I depend on the /proc filesystem right now.
57 #endif
58
59 typedef struct proc_s {
60         char
61          cmd[16];                                       /* basename of executable file in call to exec(2) */
62         int
63          ruid, rgid,                            /* real only (sorry) */
64          pid,                                           /* process id */
65          ppid;                                          /* pid of parent process */
66         char
67          state;                                         /* single-char code for process state (S=sleeping) */
68 } proc_t;
69
70
71
72 static int file2str(char *filename, char *ret, int cap)
73 {
74         int fd, num_read;
75
76         if ((fd = open(filename, O_RDONLY, 0)) == -1)
77                 return -1;
78         if ((num_read = read(fd, ret, cap - 1)) <= 0)
79                 return -1;
80         ret[num_read] = 0;
81         close(fd);
82         return num_read;
83 }
84
85
86 static void parse_proc_status(char *S, proc_t * P)
87 {
88         char *tmp;
89
90         memset(P->cmd, 0, sizeof P->cmd);
91         sscanf(S, "Name:\t%15c", P->cmd);
92         tmp = strchr(P->cmd, '\n');
93         if (tmp)
94                 *tmp = '\0';
95         tmp = strstr(S, "State");
96         sscanf(tmp, "State:\t%c", &P->state);
97
98         tmp = strstr(S, "Pid:");
99         if (tmp)
100                 sscanf(tmp, "Pid:\t%d\n" "PPid:\t%d\n", &P->pid, &P->ppid);
101         else
102                 error_msg("Internal error!");
103
104         /* For busybox, ignoring effective, saved, etc */
105         tmp = strstr(S, "Uid:");
106         if (tmp)
107                 sscanf(tmp, "Uid:\t%d", &P->ruid);
108         else
109                 error_msg("Internal error!");
110
111         tmp = strstr(S, "Gid:");
112         if (tmp)
113                 sscanf(tmp, "Gid:\t%d", &P->rgid);
114         else
115                 error_msg("Internal error!");
116
117 }
118
119 extern int ps_main(int argc, char **argv)
120 {
121         proc_t p;
122         DIR *dir;
123         FILE *file;
124         struct dirent *entry;
125         char path[32], sbuf[512];
126         char uidName[9];
127         char groupName[9];
128         int len, i, c;
129 #ifdef BB_FEATURE_AUTOWIDTH
130         struct winsize win = { 0, 0, 0, 0 };
131         int terminal_width = TERMINAL_WIDTH;
132 #else
133 #define terminal_width  TERMINAL_WIDTH
134 #endif
135
136
137
138         dir = opendir("/proc");
139         if (!dir)
140                 error_msg_and_die("Can't open /proc");
141
142 #ifdef BB_FEATURE_AUTOWIDTH
143                 ioctl(fileno(stdout), TIOCGWINSZ, &win);
144                 if (win.ws_col > 0)
145                         terminal_width = win.ws_col - 1;
146 #endif
147
148         printf("%5s  %-8s %-3s %5s %s\n", "PID", "Uid", "Gid", "State", "Command");
149         while ((entry = readdir(dir)) != NULL) {
150                 if (!isdigit(*entry->d_name))
151                         continue;
152                 sprintf(path, "/proc/%s/status", entry->d_name);
153                 if ((file2str(path, sbuf, sizeof sbuf)) != -1) {
154                         parse_proc_status(sbuf, &p);
155                 }
156
157                 /* Make some adjustments as needed */
158                 my_getpwuid(uidName, p.ruid);
159                 if (*uidName == '\0')
160                         sprintf(uidName, "%d", p.ruid);
161                 my_getgrgid(groupName, p.rgid);
162                 if (*groupName == '\0')
163                         sprintf(groupName, "%d", p.rgid);
164
165                 sprintf(path, "/proc/%s/cmdline", entry->d_name);
166                 file = fopen(path, "r");
167                 if (file == NULL)
168                         continue;
169                 i = 0;
170                 len = printf("%5d %-8s %-8s %c ", p.pid, uidName, groupName, p.state);
171                 while (((c = getc(file)) != EOF) && (i < (terminal_width-len))) {
172                         i++;
173                         if (c == '\0')
174                                 c = ' ';
175                         putc(c, stdout);
176                 }
177                 fclose(file);
178                 if (i == 0)
179                         printf("[%s]", p.cmd);
180                 putchar('\n');
181         }
182         closedir(dir);
183         return EXIT_SUCCESS;
184 }
185
186
187 #else /* BB_FEATURE_USE_DEVPS_PATCH */
188
189
190 /* The following is the second ps implementation --
191  * this one uses the nifty new devps kernel device.
192  */
193
194 #include <linux/devps.h> /* For Erik's nifty devps device driver */
195
196
197 extern int ps_main(int argc, char **argv)
198 {
199         char device[] = "/dev/ps";
200         int i, j, len, fd;
201         pid_t num_pids;
202         pid_t* pid_array = NULL;
203         struct pid_info info;
204         char uidName[9];
205         char groupName[9];
206 #ifdef BB_FEATURE_AUTOWIDTH
207         struct winsize win = { 0, 0, 0, 0 };
208         int terminal_width = TERMINAL_WIDTH;
209 #else
210 #define terminal_width  TERMINAL_WIDTH
211 #endif
212
213         if (argc > 1 && **(argv + 1) == '-') 
214                 usage(ps_usage);
215
216         /* open device */ 
217         fd = open(device, O_RDONLY);
218         if (fd < 0) 
219                 perror_msg_and_die( "open failed for `%s'", device);
220
221         /* Find out how many processes there are */
222         if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0) 
223                 perror_msg_and_die( "\nDEVPS_GET_PID_LIST");
224         
225         /* Allocate some memory -- grab a few extras just in case 
226          * some new processes start up while we wait. The kernel will
227          * just ignore any extras if we give it too many, and will trunc.
228          * the list if we give it too few.  */
229         pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t));
230         pid_array[0] = num_pids+10;
231
232         /* Now grab the pid list */
233         if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<0) 
234                 perror_msg_and_die("\nDEVPS_GET_PID_LIST");
235
236 #ifdef BB_FEATURE_AUTOWIDTH
237                 ioctl(fileno(stdout), TIOCGWINSZ, &win);
238                 if (win.ws_col > 0)
239                         terminal_width = win.ws_col - 1;
240 #endif
241
242         /* Print up a ps listing */
243         printf("%5s  %-8s %-3s %5s %s\n", "PID", "Uid", "Gid", "State", "Command");
244
245         for (i=1; i<pid_array[0] ; i++) {
246             info.pid = pid_array[i];
247
248             if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
249                         perror_msg_and_die("\nDEVPS_GET_PID_INFO");
250             
251                 /* Make some adjustments as needed */
252                 my_getpwuid(uidName, info.euid);
253                 if (*uidName == '\0')
254                         sprintf(uidName, "%ld", info.euid);
255                 my_getgrgid(groupName, info.egid);
256                 if (*groupName == '\0')
257                         sprintf(groupName, "%ld", info.egid);
258
259                 len = printf("%5d %-8s %-8s %c ", info.pid, uidName, groupName, info.state);
260
261                 if (strlen(info.command_line) > 1) {
262                         for( j=0; j<(sizeof(info.command_line)-1) && j < (terminal_width-len); j++) {
263                                 if (*(info.command_line+j) == '\0' && *(info.command_line+j+1) != '\0') {
264                                         *(info.command_line+j) = ' ';
265                                 }
266                         }
267                         *(info.command_line+j) = '\0';
268                         puts(info.command_line);
269                 } else {
270                         printf("[%s]\n", info.name);
271                 }
272         }
273
274         /* Free memory */
275         free( pid_array);
276
277         /* close device */
278         if (close (fd) != 0) 
279                 perror_msg_and_die("close failed for `%s'", device);
280  
281         exit (0);
282 }
283
284 #endif /* BB_FEATURE_USE_DEVPS_PATCH */
285