blob: aa408604ac8e35a5f6119ae83b65062f19f33286 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenef8b6c71999-10-20 08:05:35 +00002/*
Erik Andersen246cc6d2000-03-07 07:41:42 +00003 * Mini ps implementation(s) for busybox
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Eric Andersenef8b6c71999-10-20 08:05:35 +00007 *
Erik Andersen246cc6d2000-03-07 07:41:42 +00008 * 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
Eric Andersenbdfd0d72001-10-24 05:00:29 +000021 */
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+).
Eric Andersenef8b6c71999-10-20 08:05:35 +000027 */
28
Erik Andersen246cc6d2000-03-07 07:41:42 +000029#include <stdio.h>
Eric Andersened3ef502001-01-27 08:24:39 +000030#include <stdlib.h>
Eric Andersenef8b6c71999-10-20 08:05:35 +000031#include <unistd.h>
32#include <dirent.h>
Erik Andersen246cc6d2000-03-07 07:41:42 +000033#include <errno.h>
Eric Andersend23f9ba1999-10-20 19:18:15 +000034#include <fcntl.h>
35#include <ctype.h>
Eric Andersened3ef502001-01-27 08:24:39 +000036#include <string.h>
Eric Andersen8d79ce82001-07-22 23:00:15 +000037#include <termios.h>
Erik Andersen2ac2fae2000-03-07 23:32:17 +000038#include <sys/ioctl.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000039#include "busybox.h"
Erik Andersen2ac2fae2000-03-07 23:32:17 +000040
Mark Whitley59ab0252001-01-23 22:30:04 +000041static const int TERMINAL_WIDTH = 79; /* not 80 in case terminal has linefold bug */
Eric Andersen86ab8a32000-06-02 03:21:42 +000042
43
Eric Andersend23f9ba1999-10-20 19:18:15 +000044
Eric Andersenbdfd0d72001-10-24 05:00:29 +000045#if ! defined CONFIG_FEATURE_USE_DEVPS_PATCH
Erik Andersen246cc6d2000-03-07 07:41:42 +000046
47/* The following is the first ps implementation --
48 * the one using the /proc virtual filesystem.
49 */
50
Eric Andersend23f9ba1999-10-20 19:18:15 +000051typedef struct proc_s {
Eric Andersen13727802002-04-27 06:06:11 +000052 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 */
Eric Andersend23f9ba1999-10-20 19:18:15 +000058} proc_t;
59
60
61
Erik Andersene49d5ec2000-02-08 19:58:47 +000062static int file2str(char *filename, char *ret, int cap)
Eric Andersend23f9ba1999-10-20 19:18:15 +000063{
Erik Andersene49d5ec2000-02-08 19:58:47 +000064 int fd, num_read;
Eric Andersend23f9ba1999-10-20 19:18:15 +000065
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 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;
Eric Andersend23f9ba1999-10-20 19:18:15 +000073}
74
75
Erik Andersene49d5ec2000-02-08 19:58:47 +000076static void parse_proc_status(char *S, proc_t * P)
Eric Andersend23f9ba1999-10-20 19:18:15 +000077{
Erik Andersene49d5ec2000-02-08 19:58:47 +000078 char *tmp;
Eric Andersend23f9ba1999-10-20 19:18:15 +000079
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 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);
Eric Andersend23f9ba1999-10-20 19:18:15 +000087
Eric Andersen13727802002-04-27 06:06:11 +000088 P->pid = 0;
89 P->ppid = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000090 tmp = strstr(S, "Pid:");
91 if (tmp)
92 sscanf(tmp, "Pid:\t%d\n" "PPid:\t%d\n", &P->pid, &P->ppid);
93 else
Matt Kraaidd19c692001-01-31 19:00:21 +000094 error_msg("Internal error!");
Eric Andersend23f9ba1999-10-20 19:18:15 +000095
Eric Andersen77d92682001-05-23 20:32:09 +000096 /* For busybox, ignoring effective, saved, etc. */
Eric Andersen13727802002-04-27 06:06:11 +000097 P->ruid = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +000098 tmp = strstr(S, "Uid:");
99 if (tmp)
100 sscanf(tmp, "Uid:\t%d", &P->ruid);
101 else
Matt Kraaidd19c692001-01-31 19:00:21 +0000102 error_msg("Internal error!");
Eric Andersen13727802002-04-27 06:06:11 +0000103
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
Eric Andersend23f9ba1999-10-20 19:18:15 +0000112}
Eric Andersenef8b6c71999-10-20 08:05:35 +0000113
Eric Andersenef8b6c71999-10-20 08:05:35 +0000114extern int ps_main(int argc, char **argv)
115{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000116 proc_t p;
117 DIR *dir;
118 FILE *file;
119 struct dirent *entry;
120 char path[32], sbuf[512];
Eric Andersenbd193a42000-12-13 01:52:39 +0000121 char uidName[9];
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000122 int len, i, c;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000123#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersenfad04fd2000-07-14 06:49:52 +0000124 struct winsize win = { 0, 0, 0, 0 };
Eric Andersen86ab8a32000-06-02 03:21:42 +0000125 int terminal_width = TERMINAL_WIDTH;
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000126#else
Eric Andersen86ab8a32000-06-02 03:21:42 +0000127#define terminal_width TERMINAL_WIDTH
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000128#endif
129
130
Eric Andersenef8b6c71999-10-20 08:05:35 +0000131
Erik Andersene49d5ec2000-02-08 19:58:47 +0000132 dir = opendir("/proc");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000133 if (!dir)
Matt Kraaidd19c692001-01-31 19:00:21 +0000134 error_msg_and_die("Can't open /proc");
Eric Andersend23f9ba1999-10-20 19:18:15 +0000135
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000136#ifdef CONFIG_FEATURE_AUTOWIDTH
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000137 ioctl(fileno(stdout), TIOCGWINSZ, &win);
138 if (win.ws_col > 0)
139 terminal_width = win.ws_col - 1;
140#endif
141
Eric Andersen13727802002-04-27 06:06:11 +0000142 printf(" PID Uid VmSize Stat Command\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143 while ((entry = readdir(dir)) != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144 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);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000153 if (*uidName == '\0')
154 sprintf(uidName, "%d", p.ruid);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156 sprintf(path, "/proc/%s/cmdline", entry->d_name);
157 file = fopen(path, "r");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000158 if (file == NULL)
Erik Andersen227a59b2000-04-25 23:24:55 +0000159 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000160 i = 0;
Eric Andersen13727802002-04-27 06:06:11 +0000161 if(p.vmsize == 0)
162 len = printf("%5d %-8s %c ", p.pid, uidName, p.state);
163 else
164 len = printf("%5d %-8s %6d %c ", p.pid, uidName, p.vmsize, p.state);
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000165 while (((c = getc(file)) != EOF) && (i < (terminal_width-len))) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166 i++;
167 if (c == '\0')
168 c = ' ';
169 putc(c, stdout);
170 }
Matt Kraai44e38402000-09-07 04:34:17 +0000171 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172 if (i == 0)
Matt Kraai12f417e2001-01-18 02:57:08 +0000173 printf("[%s]", p.cmd);
174 putchar('\n');
Eric Andersend23f9ba1999-10-20 19:18:15 +0000175 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000176 closedir(dir);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000177 return EXIT_SUCCESS;
Eric Andersenef8b6c71999-10-20 08:05:35 +0000178}
Erik Andersen246cc6d2000-03-07 07:41:42 +0000179
180
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000181#else /* CONFIG_FEATURE_USE_DEVPS_PATCH */
Erik Andersen246cc6d2000-03-07 07:41:42 +0000182
183
184/* The following is the second ps implementation --
185 * this one uses the nifty new devps kernel device.
186 */
187
Eric Andersenc674d702000-07-10 22:57:14 +0000188#include <linux/devps.h> /* For Erik's nifty devps device driver */
Erik Andersen246cc6d2000-03-07 07:41:42 +0000189
190
191extern int ps_main(int argc, char **argv)
192{
193 char device[] = "/dev/ps";
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000194 int i, j, len, fd;
Erik Andersen246cc6d2000-03-07 07:41:42 +0000195 pid_t num_pids;
196 pid_t* pid_array = NULL;
197 struct pid_info info;
Eric Andersenbd193a42000-12-13 01:52:39 +0000198 char uidName[9];
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000199#ifdef CONFIG_FEATURE_AUTOWIDTH
Pavel Roskinf626dcb2000-07-14 15:55:41 +0000200 struct winsize win = { 0, 0, 0, 0 };
Eric Andersen86ab8a32000-06-02 03:21:42 +0000201 int terminal_width = TERMINAL_WIDTH;
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000202#else
Eric Andersen86ab8a32000-06-02 03:21:42 +0000203#define terminal_width TERMINAL_WIDTH
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000204#endif
Erik Andersen246cc6d2000-03-07 07:41:42 +0000205
206 if (argc > 1 && **(argv + 1) == '-')
Eric Andersen67991cf2001-02-14 21:23:06 +0000207 show_usage();
Erik Andersen246cc6d2000-03-07 07:41:42 +0000208
209 /* open device */
210 fd = open(device, O_RDONLY);
211 if (fd < 0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000212 perror_msg_and_die( "open failed for `%s'", device);
Erik Andersen246cc6d2000-03-07 07:41:42 +0000213
214 /* Find out how many processes there are */
215 if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000216 perror_msg_and_die( "\nDEVPS_GET_PID_LIST");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000217
218 /* Allocate some memory -- grab a few extras just in case
219 * some new processes start up while we wait. The kernel will
220 * just ignore any extras if we give it too many, and will trunc.
221 * the list if we give it too few. */
Matt Kraai322ae932000-09-13 02:46:14 +0000222 pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t));
Erik Andersen246cc6d2000-03-07 07:41:42 +0000223 pid_array[0] = num_pids+10;
224
225 /* Now grab the pid list */
226 if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000227 perror_msg_and_die("\nDEVPS_GET_PID_LIST");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000228
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000229#ifdef CONFIG_FEATURE_AUTOWIDTH
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000230 ioctl(fileno(stdout), TIOCGWINSZ, &win);
231 if (win.ws_col > 0)
232 terminal_width = win.ws_col - 1;
233#endif
234
Erik Andersen246cc6d2000-03-07 07:41:42 +0000235 /* Print up a ps listing */
Eric Andersen0392b862001-06-26 23:11:44 +0000236 printf(" PID Uid Stat Command\n");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000237
238 for (i=1; i<pid_array[0] ; i++) {
Erik Andersen246cc6d2000-03-07 07:41:42 +0000239 info.pid = pid_array[i];
240
241 if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000242 perror_msg_and_die("\nDEVPS_GET_PID_INFO");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000243
244 /* Make some adjustments as needed */
245 my_getpwuid(uidName, info.euid);
246 if (*uidName == '\0')
247 sprintf(uidName, "%ld", info.euid);
Erik Andersen246cc6d2000-03-07 07:41:42 +0000248
Eric Andersen13727802002-04-27 06:06:11 +0000249 if(p.vmsize == 0)
250 len = printf("%5d %-8s %c ", p.pid, uidName, p.state);
251 else
252 len = printf("%5d %-8s %6d %c ", p.pid, uidName, p.vmsize, p.state);
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000253 if (strlen(info.command_line) > 1) {
254 for( j=0; j<(sizeof(info.command_line)-1) && j < (terminal_width-len); j++) {
255 if (*(info.command_line+j) == '\0' && *(info.command_line+j+1) != '\0') {
256 *(info.command_line+j) = ' ';
257 }
258 }
259 *(info.command_line+j) = '\0';
Matt Kraai12f417e2001-01-18 02:57:08 +0000260 puts(info.command_line);
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000261 } else {
Matt Kraai12f417e2001-01-18 02:57:08 +0000262 printf("[%s]\n", info.name);
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000263 }
Erik Andersen246cc6d2000-03-07 07:41:42 +0000264 }
265
266 /* Free memory */
267 free( pid_array);
268
269 /* close device */
270 if (close (fd) != 0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000271 perror_msg_and_die("close failed for `%s'", device);
Erik Andersen246cc6d2000-03-07 07:41:42 +0000272
273 exit (0);
274}
275
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000276#endif /* CONFIG_FEATURE_USE_DEVPS_PATCH */
Erik Andersen246cc6d2000-03-07 07:41:42 +0000277