2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-20 13:35:35 +05:30
|
|
|
/*
|
2000-03-07 13:11:42 +05:30
|
|
|
* Mini ps implementation(s) for busybox
|
1999-10-20 13:35:35 +05:30
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2000-03-07 13:11:42 +05:30
|
|
|
*
|
2005-10-04 20:01:18 +05:30
|
|
|
* Licensed under the GPL v2, see the file LICENSE in this tarball.
|
2001-10-24 10:30:29 +05:30
|
|
|
*/
|
|
|
|
|
2000-03-07 13:11:42 +05:30
|
|
|
#include <stdio.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
1999-10-20 13:35:35 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
2000-03-07 13:11:42 +05:30
|
|
|
#include <errno.h>
|
1999-10-21 00:48:15 +05:30
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ctype.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <string.h>
|
2001-07-23 04:30:15 +05:30
|
|
|
#include <termios.h>
|
2000-03-08 05:02:17 +05:30
|
|
|
#include <sys/ioctl.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2005-10-04 20:01:18 +05:30
|
|
|
#if ENABLE_SELINUX
|
2005-05-03 11:55:50 +05:30
|
|
|
#include <selinux/selinux.h> /* for is_selinux_enabled() */
|
2003-07-03 15:37:04 +05:30
|
|
|
#endif
|
2000-03-08 05:02:17 +05:30
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
int ps_main(int argc, char **argv)
|
1999-10-20 13:35:35 +05:30
|
|
|
{
|
2002-10-22 17:51:15 +05:30
|
|
|
procps_status_t * p;
|
2005-10-04 22:18:26 +05:30
|
|
|
int i, len;
|
2005-10-05 16:22:47 +05:30
|
|
|
|
2005-10-04 20:01:18 +05:30
|
|
|
#if ENABLE_SELINUX
|
2003-07-03 15:37:04 +05:30
|
|
|
int use_selinux = 0;
|
2005-05-03 11:55:50 +05:30
|
|
|
security_context_t sid=NULL;
|
2003-07-03 15:37:04 +05:30
|
|
|
#endif
|
2005-10-05 16:22:47 +05:30
|
|
|
|
2005-10-04 22:18:26 +05:30
|
|
|
#if ENABLE_FEATURE_PS_WIDE
|
|
|
|
int terminal_width;
|
|
|
|
int w_count = 0;
|
2005-10-05 16:22:47 +05:30
|
|
|
|
|
|
|
bb_opt_complementally="-:ww";
|
2005-10-04 22:18:26 +05:30
|
|
|
#else
|
2005-10-05 16:22:47 +05:30
|
|
|
# define terminal_width 79
|
2005-10-04 22:18:26 +05:30
|
|
|
#endif
|
2005-10-04 20:01:18 +05:30
|
|
|
|
|
|
|
#if ENABLE_FEATURE_PS_WIDE || ENABLE_SELINUX
|
|
|
|
/* handle arguments */
|
2005-10-04 22:18:26 +05:30
|
|
|
#if ENABLE_FEATURE_PS_WIDE && ENABLE_SELINUX
|
|
|
|
i = bb_getopt_ulflags(argc, argv, "wc", &w_count);
|
|
|
|
#elif ENABLE_FEATURE_PS_WIDE && !ENABLE_SELINUX
|
2005-10-05 16:22:47 +05:30
|
|
|
bb_getopt_ulflags(argc, argv, "w", &w_count);
|
2005-10-04 22:39:50 +05:30
|
|
|
#else /* !ENABLE_FEATURE_PS_WIDE && ENABLE_SELINUX */
|
2005-10-04 22:18:26 +05:30
|
|
|
i = bb_getopt_ulflags(argc, argv, "c");
|
2005-10-04 20:01:18 +05:30
|
|
|
#endif
|
2005-10-04 22:18:26 +05:30
|
|
|
#if ENABLE_FEATURE_PS_WIDE
|
|
|
|
/* if w is given once, GNU ps sets the width to 132,
|
|
|
|
* if w is given more than once, it is "unlimited"
|
|
|
|
*/
|
2005-10-05 16:22:47 +05:30
|
|
|
if(w_count) {
|
2005-10-04 22:18:26 +05:30
|
|
|
terminal_width = (w_count==1) ? 132 : INT_MAX;
|
|
|
|
} else {
|
2005-10-05 16:22:47 +05:30
|
|
|
get_terminal_width_height(1, &terminal_width, NULL);
|
2005-10-04 22:18:26 +05:30
|
|
|
/* Go one less... */
|
|
|
|
terminal_width--;
|
2005-10-04 20:01:18 +05:30
|
|
|
}
|
|
|
|
#endif
|
2005-10-04 22:18:26 +05:30
|
|
|
#if ENABLE_SELINUX
|
2005-10-04 22:39:50 +05:30
|
|
|
if ((i & (1+ENABLE_FEATURE_PS_WIDE)) && is_selinux_enabled())
|
2005-10-04 22:18:26 +05:30
|
|
|
use_selinux = 1;
|
|
|
|
#endif
|
|
|
|
#endif /* ENABLE_FEATURE_PS_WIDE || ENABLE_SELINUX */
|
2005-10-04 20:01:18 +05:30
|
|
|
|
|
|
|
#if ENABLE_SELINUX
|
2005-05-03 11:55:50 +05:30
|
|
|
if (use_selinux)
|
|
|
|
printf(" PID Context Stat Command\n");
|
2003-07-03 15:37:04 +05:30
|
|
|
else
|
|
|
|
#endif
|
2005-05-03 11:55:50 +05:30
|
|
|
printf(" PID Uid VmSize Stat Command\n");
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2005-05-03 11:55:50 +05:30
|
|
|
while ((p = procps_scan(1)) != 0) {
|
|
|
|
char *namecmd = p->cmd;
|
2005-10-04 20:01:18 +05:30
|
|
|
#if ENABLE_SELINUX
|
2005-10-04 22:18:26 +05:30
|
|
|
if (use_selinux)
|
2005-05-03 11:55:50 +05:30
|
|
|
{
|
2003-07-03 15:37:04 +05:30
|
|
|
char sbuf[128];
|
|
|
|
len = sizeof(sbuf);
|
|
|
|
|
2005-05-03 11:55:50 +05:30
|
|
|
if (is_selinux_enabled()) {
|
|
|
|
if (getpidcon(p->pid,&sid)<0)
|
|
|
|
sid=NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sid) {
|
|
|
|
/* I assume sid initilized with NULL */
|
|
|
|
len = strlen(sid)+1;
|
|
|
|
safe_strncpy(sbuf, sid, len);
|
|
|
|
freecon(sid);
|
|
|
|
sid=NULL;
|
|
|
|
}else {
|
|
|
|
safe_strncpy(sbuf, "unknown",7);
|
|
|
|
}
|
2003-07-03 15:37:04 +05:30
|
|
|
len = printf("%5d %-32s %s ", p->pid, sbuf, p->state);
|
2005-10-04 20:01:18 +05:30
|
|
|
}
|
2003-07-03 15:37:04 +05:30
|
|
|
else
|
|
|
|
#endif
|
2005-05-03 11:55:50 +05:30
|
|
|
if(p->rss == 0)
|
|
|
|
len = printf("%5d %-8s %s ", p->pid, p->user, p->state);
|
|
|
|
else
|
|
|
|
len = printf("%5d %-8s %6ld %s ", p->pid, p->user, p->rss, p->state);
|
2005-10-04 20:01:18 +05:30
|
|
|
|
2002-10-22 17:51:15 +05:30
|
|
|
i = terminal_width-len;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2005-10-04 20:01:18 +05:30
|
|
|
if(namecmd && namecmd[0]) {
|
2002-10-22 17:51:15 +05:30
|
|
|
if(i < 0)
|
2005-10-04 20:01:18 +05:30
|
|
|
i = 0;
|
2006-01-30 19:32:06 +05:30
|
|
|
if(strlen(namecmd) > (size_t)i)
|
2002-10-22 17:51:15 +05:30
|
|
|
namecmd[i] = 0;
|
|
|
|
printf("%s\n", namecmd);
|
|
|
|
} else {
|
|
|
|
namecmd = p->short_cmd;
|
|
|
|
if(i < 2)
|
|
|
|
i = 2;
|
2006-01-30 19:32:06 +05:30
|
|
|
if(strlen(namecmd) > ((size_t)i-2))
|
2002-10-22 17:51:15 +05:30
|
|
|
namecmd[i-2] = 0;
|
|
|
|
printf("[%s]\n", namecmd);
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
2005-10-04 20:01:18 +05:30
|
|
|
/* no check needed, but to make valgrind happy.. */
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && p->cmd)
|
|
|
|
free(p->cmd);
|
1999-10-21 00:48:15 +05:30
|
|
|
}
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-20 13:35:35 +05:30
|
|
|
}
|