2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-20 08:05:35 +00:00
|
|
|
/*
|
2000-03-07 07:41:42 +00:00
|
|
|
* Mini ps implementation(s) for busybox
|
1999-10-20 08:05:35 +00:00
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2000-03-07 07:41:42 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
|
|
* Place, Suite 330, Boston, MA 02111-1307 USA
|
2001-10-24 05:00:29 +00:00
|
|
|
*/
|
|
|
|
|
2000-03-07 07:41:42 +00:00
|
|
|
#include <stdio.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <stdlib.h>
|
1999-10-20 08:05:35 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
2000-03-07 07:41:42 +00:00
|
|
|
#include <errno.h>
|
1999-10-20 19:18:15 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ctype.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <string.h>
|
2001-07-22 23:00:15 +00:00
|
|
|
#include <termios.h>
|
2000-03-07 23:32:17 +00:00
|
|
|
#include <sys/ioctl.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
2003-07-03 10:07:04 +00:00
|
|
|
#ifdef CONFIG_SELINUX
|
2005-05-03 06:25:50 +00:00
|
|
|
#include <selinux/selinux.h> /* for is_selinux_enabled() */
|
2003-07-03 10:07:04 +00:00
|
|
|
#endif
|
2000-03-07 23:32:17 +00:00
|
|
|
|
2001-01-23 22:30:04 +00:00
|
|
|
static const int TERMINAL_WIDTH = 79; /* not 80 in case terminal has linefold bug */
|
2000-06-02 03:21:42 +00:00
|
|
|
|
|
|
|
|
1999-10-20 19:18:15 +00:00
|
|
|
|
1999-10-20 08:05:35 +00:00
|
|
|
extern int ps_main(int argc, char **argv)
|
|
|
|
{
|
2002-10-22 12:21:15 +00:00
|
|
|
procps_status_t * p;
|
|
|
|
int i, len;
|
2000-06-02 03:21:42 +00:00
|
|
|
int terminal_width = TERMINAL_WIDTH;
|
2000-03-07 23:32:17 +00:00
|
|
|
|
2003-07-03 10:07:04 +00:00
|
|
|
#ifdef CONFIG_SELINUX
|
|
|
|
int use_selinux = 0;
|
2005-05-03 06:25:50 +00:00
|
|
|
security_context_t sid=NULL;
|
|
|
|
if(is_selinux_enabled() && argv[1] && !strcmp(argv[1], "-c") )
|
2003-07-03 10:07:04 +00:00
|
|
|
use_selinux = 1;
|
|
|
|
#endif
|
|
|
|
|
2003-09-15 08:33:45 +00:00
|
|
|
get_terminal_width_height(0, &terminal_width, NULL);
|
|
|
|
/* Go one less... */
|
|
|
|
terminal_width--;
|
2000-03-07 23:32:17 +00:00
|
|
|
|
2003-07-03 10:07:04 +00:00
|
|
|
#ifdef CONFIG_SELINUX
|
2005-05-03 06:25:50 +00:00
|
|
|
if (use_selinux)
|
|
|
|
printf(" PID Context Stat Command\n");
|
2003-07-03 10:07:04 +00:00
|
|
|
else
|
|
|
|
#endif
|
2005-05-03 06:25:50 +00:00
|
|
|
printf(" PID Uid VmSize Stat Command\n");
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2005-05-03 06:25:50 +00:00
|
|
|
while ((p = procps_scan(1)) != 0) {
|
|
|
|
char *namecmd = p->cmd;
|
2003-07-03 10:07:04 +00:00
|
|
|
#ifdef CONFIG_SELINUX
|
2005-05-03 06:25:50 +00:00
|
|
|
if ( use_selinux )
|
|
|
|
{
|
2003-07-03 10:07:04 +00:00
|
|
|
char sbuf[128];
|
|
|
|
len = sizeof(sbuf);
|
|
|
|
|
2005-05-03 06:25:50 +00:00
|
|
|
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 10:07:04 +00:00
|
|
|
len = printf("%5d %-32s %s ", p->pid, sbuf, p->state);
|
2005-05-03 06:25:50 +00:00
|
|
|
}
|
2003-07-03 10:07:04 +00:00
|
|
|
else
|
|
|
|
#endif
|
2005-05-03 06:25:50 +00:00
|
|
|
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);
|
2002-10-22 12:21:15 +00:00
|
|
|
i = terminal_width-len;
|
2000-02-08 19:58:47 +00:00
|
|
|
|
2002-10-22 12:21:15 +00:00
|
|
|
if(namecmd != 0 && namecmd[0] != 0) {
|
|
|
|
if(i < 0)
|
2000-02-08 19:58:47 +00:00
|
|
|
i = 0;
|
2002-10-22 12:21:15 +00:00
|
|
|
if(strlen(namecmd) > i)
|
|
|
|
namecmd[i] = 0;
|
|
|
|
printf("%s\n", namecmd);
|
|
|
|
} else {
|
|
|
|
namecmd = p->short_cmd;
|
|
|
|
if(i < 2)
|
|
|
|
i = 2;
|
|
|
|
if(strlen(namecmd) > (i-2))
|
|
|
|
namecmd[i-2] = 0;
|
|
|
|
printf("[%s]\n", namecmd);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2002-10-22 12:21:15 +00:00
|
|
|
free(p->cmd);
|
1999-10-20 19:18:15 +00:00
|
|
|
}
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
1999-10-20 08:05:35 +00:00
|
|
|
}
|
2000-03-07 07:41:42 +00:00
|
|
|
|