blob: fcb605a6e135ab83aa16f34cbb1b20a9c48bc680 [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 {
Erik Andersene49d5ec2000-02-08 19:58:47 +000052 char
53 cmd[16]; /* basename of executable file in call to exec(2) */
54 int
Eric Andersend98337a2001-06-26 22:55:45 +000055 ruid, /* real only (sorry) */
Erik Andersene49d5ec2000-02-08 19:58:47 +000056 pid, /* process id */
57 ppid; /* pid of parent process */
58 char
59 state; /* single-char code for process state (S=sleeping) */
Eric Andersend23f9ba1999-10-20 19:18:15 +000060} proc_t;
61
62
63
Erik Andersene49d5ec2000-02-08 19:58:47 +000064static int file2str(char *filename, char *ret, int cap)
Eric Andersend23f9ba1999-10-20 19:18:15 +000065{
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 int fd, num_read;
Eric Andersend23f9ba1999-10-20 19:18:15 +000067
Erik Andersene49d5ec2000-02-08 19:58:47 +000068 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;
Eric Andersend23f9ba1999-10-20 19:18:15 +000075}
76
77
Erik Andersene49d5ec2000-02-08 19:58:47 +000078static void parse_proc_status(char *S, proc_t * P)
Eric Andersend23f9ba1999-10-20 19:18:15 +000079{
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 char *tmp;
Eric Andersend23f9ba1999-10-20 19:18:15 +000081
Erik Andersene49d5ec2000-02-08 19:58:47 +000082 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);
Eric Andersend23f9ba1999-10-20 19:18:15 +000089
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. */
Erik Andersene49d5ec2000-02-08 19:58:47 +000097 tmp = strstr(S, "Uid:");
98 if (tmp)
99 sscanf(tmp, "Uid:\t%d", &P->ruid);
100 else
Matt Kraaidd19c692001-01-31 19:00:21 +0000101 error_msg("Internal error!");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000102
Eric Andersend23f9ba1999-10-20 19:18:15 +0000103
104}
Eric Andersenef8b6c71999-10-20 08:05:35 +0000105
Eric Andersenef8b6c71999-10-20 08:05:35 +0000106extern int ps_main(int argc, char **argv)
107{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000108 proc_t p;
109 DIR *dir;
110 FILE *file;
111 struct dirent *entry;
112 char path[32], sbuf[512];
Eric Andersenbd193a42000-12-13 01:52:39 +0000113 char uidName[9];
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000114 int len, i, c;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000115#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersenfad04fd2000-07-14 06:49:52 +0000116 struct winsize win = { 0, 0, 0, 0 };
Eric Andersen86ab8a32000-06-02 03:21:42 +0000117 int terminal_width = TERMINAL_WIDTH;
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000118#else
Eric Andersen86ab8a32000-06-02 03:21:42 +0000119#define terminal_width TERMINAL_WIDTH
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000120#endif
121
122
Eric Andersenef8b6c71999-10-20 08:05:35 +0000123
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124 dir = opendir("/proc");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000125 if (!dir)
Matt Kraaidd19c692001-01-31 19:00:21 +0000126 error_msg_and_die("Can't open /proc");
Eric Andersend23f9ba1999-10-20 19:18:15 +0000127
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000128#ifdef CONFIG_FEATURE_AUTOWIDTH
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000129 ioctl(fileno(stdout), TIOCGWINSZ, &win);
130 if (win.ws_col > 0)
131 terminal_width = win.ws_col - 1;
132#endif
133
Eric Andersen0392b862001-06-26 23:11:44 +0000134 printf(" PID Uid Stat Command\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135 while ((entry = readdir(dir)) != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136 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);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145 if (*uidName == '\0')
146 sprintf(uidName, "%d", p.ruid);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147
Erik Andersene49d5ec2000-02-08 19:58:47 +0000148 sprintf(path, "/proc/%s/cmdline", entry->d_name);
149 file = fopen(path, "r");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000150 if (file == NULL)
Erik Andersen227a59b2000-04-25 23:24:55 +0000151 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000152 i = 0;
Eric Andersen0392b862001-06-26 23:11:44 +0000153 len = printf("%5d %-8s %c ", p.pid, uidName, p.state);
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000154 while (((c = getc(file)) != EOF) && (i < (terminal_width-len))) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155 i++;
156 if (c == '\0')
157 c = ' ';
158 putc(c, stdout);
159 }
Matt Kraai44e38402000-09-07 04:34:17 +0000160 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000161 if (i == 0)
Matt Kraai12f417e2001-01-18 02:57:08 +0000162 printf("[%s]", p.cmd);
163 putchar('\n');
Eric Andersend23f9ba1999-10-20 19:18:15 +0000164 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000165 closedir(dir);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000166 return EXIT_SUCCESS;
Eric Andersenef8b6c71999-10-20 08:05:35 +0000167}
Erik Andersen246cc6d2000-03-07 07:41:42 +0000168
169
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000170#else /* CONFIG_FEATURE_USE_DEVPS_PATCH */
Erik Andersen246cc6d2000-03-07 07:41:42 +0000171
172
173/* The following is the second ps implementation --
174 * this one uses the nifty new devps kernel device.
175 */
176
Eric Andersenc674d702000-07-10 22:57:14 +0000177#include <linux/devps.h> /* For Erik's nifty devps device driver */
Erik Andersen246cc6d2000-03-07 07:41:42 +0000178
179
180extern int ps_main(int argc, char **argv)
181{
182 char device[] = "/dev/ps";
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000183 int i, j, len, fd;
Erik Andersen246cc6d2000-03-07 07:41:42 +0000184 pid_t num_pids;
185 pid_t* pid_array = NULL;
186 struct pid_info info;
Eric Andersenbd193a42000-12-13 01:52:39 +0000187 char uidName[9];
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000188#ifdef CONFIG_FEATURE_AUTOWIDTH
Pavel Roskinf626dcb2000-07-14 15:55:41 +0000189 struct winsize win = { 0, 0, 0, 0 };
Eric Andersen86ab8a32000-06-02 03:21:42 +0000190 int terminal_width = TERMINAL_WIDTH;
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000191#else
Eric Andersen86ab8a32000-06-02 03:21:42 +0000192#define terminal_width TERMINAL_WIDTH
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000193#endif
Erik Andersen246cc6d2000-03-07 07:41:42 +0000194
195 if (argc > 1 && **(argv + 1) == '-')
Eric Andersen67991cf2001-02-14 21:23:06 +0000196 show_usage();
Erik Andersen246cc6d2000-03-07 07:41:42 +0000197
198 /* open device */
199 fd = open(device, O_RDONLY);
200 if (fd < 0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000201 perror_msg_and_die( "open failed for `%s'", device);
Erik Andersen246cc6d2000-03-07 07:41:42 +0000202
203 /* Find out how many processes there are */
204 if (ioctl (fd, DEVPS_GET_NUM_PIDS, &num_pids)<0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000205 perror_msg_and_die( "\nDEVPS_GET_PID_LIST");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000206
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. */
Matt Kraai322ae932000-09-13 02:46:14 +0000211 pid_array = (pid_t*) xcalloc( num_pids+10, sizeof(pid_t));
Erik Andersen246cc6d2000-03-07 07:41:42 +0000212 pid_array[0] = num_pids+10;
213
214 /* Now grab the pid list */
215 if (ioctl (fd, DEVPS_GET_PID_LIST, pid_array)<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
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000218#ifdef CONFIG_FEATURE_AUTOWIDTH
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000219 ioctl(fileno(stdout), TIOCGWINSZ, &win);
220 if (win.ws_col > 0)
221 terminal_width = win.ws_col - 1;
222#endif
223
Erik Andersen246cc6d2000-03-07 07:41:42 +0000224 /* Print up a ps listing */
Eric Andersen0392b862001-06-26 23:11:44 +0000225 printf(" PID Uid Stat Command\n");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000226
227 for (i=1; i<pid_array[0] ; i++) {
Erik Andersen246cc6d2000-03-07 07:41:42 +0000228 info.pid = pid_array[i];
229
230 if (ioctl (fd, DEVPS_GET_PID_INFO, &info)<0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000231 perror_msg_and_die("\nDEVPS_GET_PID_INFO");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000232
233 /* Make some adjustments as needed */
234 my_getpwuid(uidName, info.euid);
235 if (*uidName == '\0')
236 sprintf(uidName, "%ld", info.euid);
Erik Andersen246cc6d2000-03-07 07:41:42 +0000237
Eric Andersen0392b862001-06-26 23:11:44 +0000238 len = printf("%5d %-8s %c ", info.pid, uidName, info.state);
Erik Andersen246cc6d2000-03-07 07:41:42 +0000239
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000240 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';
Matt Kraai12f417e2001-01-18 02:57:08 +0000247 puts(info.command_line);
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000248 } else {
Matt Kraai12f417e2001-01-18 02:57:08 +0000249 printf("[%s]\n", info.name);
Erik Andersen2ac2fae2000-03-07 23:32:17 +0000250 }
Erik Andersen246cc6d2000-03-07 07:41:42 +0000251 }
252
253 /* Free memory */
254 free( pid_array);
255
256 /* close device */
257 if (close (fd) != 0)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000258 perror_msg_and_die("close failed for `%s'", device);
Erik Andersen246cc6d2000-03-07 07:41:42 +0000259
260 exit (0);
261}
262
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000263#endif /* CONFIG_FEATURE_USE_DEVPS_PATCH */
Erik Andersen246cc6d2000-03-07 07:41:42 +0000264