aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-20 08:05:35 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-20 08:05:35 +0000
commitef8b6c757de9684f5d88eff4b014527e87121137 (patch)
tree49e5f39927e29db251956440dc4338572ecd75e3
parentce8f3b99339fb954204329971ed25efc950fed26 (diff)
downloadbusybox-w32-ef8b6c757de9684f5d88eff4b014527e87121137.tar.gz
busybox-w32-ef8b6c757de9684f5d88eff4b014527e87121137.tar.bz2
busybox-w32-ef8b6c757de9684f5d88eff4b014527e87121137.zip
Add a trivial ps command.
-rw-r--r--applets/busybox.c3
-rw-r--r--busybox.c3
-rw-r--r--busybox.def.h1
-rw-r--r--internal.h1
-rw-r--r--more.c2
-rw-r--r--procps/ps.c68
-rw-r--r--ps.c68
-rw-r--r--util-linux/more.c2
8 files changed, 146 insertions, 2 deletions
diff --git a/applets/busybox.c b/applets/busybox.c
index 4849ba0a4..d4313ef06 100644
--- a/applets/busybox.c
+++ b/applets/busybox.c
@@ -117,6 +117,9 @@ static const struct Applet applets[] = {
117#ifdef BB_PRINTF //usr/bin 117#ifdef BB_PRINTF //usr/bin
118 {"printf", printf_main}, 118 {"printf", printf_main},
119#endif 119#endif
120#ifdef BB_PS //bin
121 {"ps", ps_main},
122#endif
120#ifdef BB_PWD //bin 123#ifdef BB_PWD //bin
121 {"pwd", pwd_main}, 124 {"pwd", pwd_main},
122#endif 125#endif
diff --git a/busybox.c b/busybox.c
index 4849ba0a4..d4313ef06 100644
--- a/busybox.c
+++ b/busybox.c
@@ -117,6 +117,9 @@ static const struct Applet applets[] = {
117#ifdef BB_PRINTF //usr/bin 117#ifdef BB_PRINTF //usr/bin
118 {"printf", printf_main}, 118 {"printf", printf_main},
119#endif 119#endif
120#ifdef BB_PS //bin
121 {"ps", ps_main},
122#endif
120#ifdef BB_PWD //bin 123#ifdef BB_PWD //bin
121 {"pwd", pwd_main}, 124 {"pwd", pwd_main},
122#endif 125#endif
diff --git a/busybox.def.h b/busybox.def.h
index 85d3df177..eec662193 100644
--- a/busybox.def.h
+++ b/busybox.def.h
@@ -38,6 +38,7 @@
38#define BB_MT 38#define BB_MT
39#define BB_MV 39#define BB_MV
40//#define BB_PRINTF 40//#define BB_PRINTF
41#define BB_PS
41#define BB_PWD 42#define BB_PWD
42#define BB_REBOOT 43#define BB_REBOOT
43#define BB_RM 44#define BB_RM
diff --git a/internal.h b/internal.h
index dcddea05a..9b230a335 100644
--- a/internal.h
+++ b/internal.h
@@ -93,6 +93,7 @@ extern int mount_main(int argc, char** argv);
93extern int mt_main(int argc, char** argv); 93extern int mt_main(int argc, char** argv);
94extern int mv_main(int argc, char** argv); 94extern int mv_main(int argc, char** argv);
95extern int printf_main(int argc, char** argv); 95extern int printf_main(int argc, char** argv);
96extern int ps_main(int argc, char** argv);
96extern int pwd_main(int argc, char** argv); 97extern int pwd_main(int argc, char** argv);
97extern int reboot_main(int argc, char** argv); 98extern int reboot_main(int argc, char** argv);
98extern int rmdir_main(int argc, char **argv); 99extern int rmdir_main(int argc, char **argv);
diff --git a/more.c b/more.c
index 745ae2bc4..72d58a6f4 100644
--- a/more.c
+++ b/more.c
@@ -79,7 +79,7 @@ extern int more_main(int argc, char **argv)
79 file = fopen(*argv, "r"); 79 file = fopen(*argv, "r");
80 80
81 if (file == NULL) { 81 if (file == NULL) {
82 perror("Can't open file"); 82 perror(*argv);
83 exit(FALSE); 83 exit(FALSE);
84 } 84 }
85 fstat(fileno(file), &st); 85 fstat(fileno(file), &st);
diff --git a/procps/ps.c b/procps/ps.c
new file mode 100644
index 000000000..b8e4cd3a0
--- /dev/null
+++ b/procps/ps.c
@@ -0,0 +1,68 @@
1/*
2 * Mini ps implementation for busybox
3 *
4 * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include "internal.h"
23#include <unistd.h>
24#include <dirent.h>
25#include <stdio.h>
26
27
28extern int ps_main(int argc, char **argv)
29{
30 DIR *dir;
31 FILE *file;
32 struct dirent *entry;
33
34 if ( argc>1 && **(argv+1) == '-' ) {
35 usage ("ps\n");
36 }
37
38 dir = opendir("/proc");
39 if (!dir) {
40 perror("Can't open /proc");
41 exit(FALSE);
42 }
43
44 fprintf(stdout, "PID\tUid\tGid\tState\tName\n");
45 while ((entry = readdir(dir)) != NULL) {
46 char psStatus[NAME_MAX];
47 char psName[NAME_MAX]="";
48 char psState[NAME_MAX]="";
49 int psPID=0, psPPID=0, psUid=0, psGid=0;
50 //if (match(entry->d_name, "[0-9]") == FALSE)
51 // continue;
52 sprintf(psStatus, "/proc/%s/status", entry->d_name);
53 file = fopen( psStatus, "r");
54 if (file == NULL) {
55 continue;
56 //perror(psStatus);
57 //exit( FALSE);
58 }
59 fscanf(file, "Name:\t%s\nState:\t%s\nPid:\t%d\nPPid:\t%d\nUid:\t%d\nGid:\t%d",
60 psName, psState, &psPID, &psPPID, &psUid, &psGid);
61 fclose(file);
62
63 fprintf(stdout, "%d\t%d\t%d\t%s\t%s\n", psPID, psUid, psGid, psState, psName);
64 }
65 closedir(dir);
66 exit(TRUE);
67}
68
diff --git a/ps.c b/ps.c
new file mode 100644
index 000000000..b8e4cd3a0
--- /dev/null
+++ b/ps.c
@@ -0,0 +1,68 @@
1/*
2 * Mini ps implementation for busybox
3 *
4 * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include "internal.h"
23#include <unistd.h>
24#include <dirent.h>
25#include <stdio.h>
26
27
28extern int ps_main(int argc, char **argv)
29{
30 DIR *dir;
31 FILE *file;
32 struct dirent *entry;
33
34 if ( argc>1 && **(argv+1) == '-' ) {
35 usage ("ps\n");
36 }
37
38 dir = opendir("/proc");
39 if (!dir) {
40 perror("Can't open /proc");
41 exit(FALSE);
42 }
43
44 fprintf(stdout, "PID\tUid\tGid\tState\tName\n");
45 while ((entry = readdir(dir)) != NULL) {
46 char psStatus[NAME_MAX];
47 char psName[NAME_MAX]="";
48 char psState[NAME_MAX]="";
49 int psPID=0, psPPID=0, psUid=0, psGid=0;
50 //if (match(entry->d_name, "[0-9]") == FALSE)
51 // continue;
52 sprintf(psStatus, "/proc/%s/status", entry->d_name);
53 file = fopen( psStatus, "r");
54 if (file == NULL) {
55 continue;
56 //perror(psStatus);
57 //exit( FALSE);
58 }
59 fscanf(file, "Name:\t%s\nState:\t%s\nPid:\t%d\nPPid:\t%d\nUid:\t%d\nGid:\t%d",
60 psName, psState, &psPID, &psPPID, &psUid, &psGid);
61 fclose(file);
62
63 fprintf(stdout, "%d\t%d\t%d\t%s\t%s\n", psPID, psUid, psGid, psState, psName);
64 }
65 closedir(dir);
66 exit(TRUE);
67}
68
diff --git a/util-linux/more.c b/util-linux/more.c
index 745ae2bc4..72d58a6f4 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -79,7 +79,7 @@ extern int more_main(int argc, char **argv)
79 file = fopen(*argv, "r"); 79 file = fopen(*argv, "r");
80 80
81 if (file == NULL) { 81 if (file == NULL) {
82 perror("Can't open file"); 82 perror(*argv);
83 exit(FALSE); 83 exit(FALSE);
84 } 84 }
85 fstat(fileno(file), &st); 85 fstat(fileno(file), &st);