make ps(1) use ProcFS
This commit is contained in:
parent
d7b10963c2
commit
40c8a7062c
3 changed files with 249 additions and 355 deletions
|
@ -2,8 +2,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PROG= ps
|
PROG= ps
|
||||||
CPPFLAGS+= -I${MINIXSRCDIR} -I${MINIXSRCDIR}/servers
|
|
||||||
BINMODE= 4755
|
|
||||||
MAN=
|
MAN=
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
|
592
commands/ps/ps.c
592
commands/ps/ps.c
|
@ -1,4 +1,5 @@
|
||||||
/* ps - print status Author: Peter Valkenburg */
|
/* ps - print status Author: Peter Valkenburg */
|
||||||
|
/* Modified for ProcFS by Alen Stojanov and David van Moolenbroek */
|
||||||
|
|
||||||
/* Ps.c, Peter Valkenburg (valke@psy.vu.nl), january 1990.
|
/* Ps.c, Peter Valkenburg (valke@psy.vu.nl), january 1990.
|
||||||
*
|
*
|
||||||
|
@ -32,19 +33,16 @@
|
||||||
* Most fields are similar to V7 ps(1), except for CPU, NICE, PRI which are
|
* Most fields are similar to V7 ps(1), except for CPU, NICE, PRI which are
|
||||||
* absent, RECV which replaces WCHAN, and PGRP that is an extra.
|
* absent, RECV which replaces WCHAN, and PGRP that is an extra.
|
||||||
* The info is obtained from the following fields of proc, mproc and fproc:
|
* The info is obtained from the following fields of proc, mproc and fproc:
|
||||||
* F - kernel status field, p_rts_flags
|
* ST - kernel status field, p_rts_flags; pm status field, mp_flags (R if
|
||||||
* S - kernel status field, p_rts_flags; mm status field, mp_flags (R if p_rts_flags
|
* p_rts_flags is 0; Z if mp_flags == ZOMBIE; T if mp_flags == STOPPED;
|
||||||
* is 0; Z if mp_flags == ZOMBIE; T if mp_flags == STOPPED; else W).
|
* else W).
|
||||||
* UID - mm eff uid field, mp_effuid
|
* UID - pm eff uid field, mp_effuid
|
||||||
* PID - mm pid field, mp_pid
|
* PID - pm pid field, mp_pid
|
||||||
* PPID - mm parent process index field, mp_parent (used as index in proc).
|
* PPID - pm parent process index field, mp_parent (used as index in proc).
|
||||||
* PGRP - mm process group field, mp_procgrp
|
* PGRP - pm process group field, mp_procgrp
|
||||||
* SZ - kernel text size + physical stack address - physical data address
|
* SZ - memory size, including common and shared memory
|
||||||
* + stack size
|
|
||||||
* p_memmap[T].mem_len + p_memmap[S].mem_phys - p_memmap[D].mem_phys
|
|
||||||
* + p_memmap[S].mem_len
|
|
||||||
* RECV - kernel process index field for message receiving, p_getfrom
|
* RECV - kernel process index field for message receiving, p_getfrom
|
||||||
* If sleeping, mm's mp_flags, or fs's fp_task are used for more info.
|
* If sleeping, pm's mp_flags, or fs's fp_task are used for more info.
|
||||||
* TTY - fs controlling tty device field, fp_tty.
|
* TTY - fs controlling tty device field, fp_tty.
|
||||||
* TIME - kernel user + system times fields, user_time + sys_time
|
* TIME - kernel user + system times fields, user_time + sys_time
|
||||||
* CMD - system process index (converted to mnemonic name by using the p_name
|
* CMD - system process index (converted to mnemonic name by using the p_name
|
||||||
|
@ -54,50 +52,28 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <minix/config.h>
|
#include <minix/config.h>
|
||||||
#include <minix/com.h>
|
|
||||||
#include <minix/sysinfo.h>
|
|
||||||
#include <minix/endpoint.h>
|
#include <minix/endpoint.h>
|
||||||
|
#include <minix/paths.h>
|
||||||
|
#include <minix/procfs.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <timers.h>
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include <minix/const.h>
|
#include <minix/const.h>
|
||||||
#include <minix/type.h>
|
#include <minix/type.h>
|
||||||
#include <minix/ipc.h>
|
#include <minix/dmap.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <minix/com.h>
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <a.out.h>
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/ioctl.h>
|
|
||||||
#include <signal.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <ttyent.h>
|
#include <ttyent.h>
|
||||||
|
|
||||||
#include <machine/archtypes.h>
|
|
||||||
#include "kernel/const.h"
|
|
||||||
#include "kernel/type.h"
|
|
||||||
#include "kernel/proc.h"
|
|
||||||
|
|
||||||
#include "pm/mproc.h"
|
|
||||||
#include "pm/const.h"
|
|
||||||
#include "vfs/fproc.h"
|
|
||||||
#include "vfs/const.h"
|
|
||||||
#include "mfs/const.h"
|
|
||||||
|
|
||||||
|
|
||||||
/*----- ps's local stuff below this line ------*/
|
/*----- ps's local stuff below this line ------*/
|
||||||
|
|
||||||
|
|
||||||
#define mindev(dev) (((dev)>>MINOR) & 0377) /* yield minor device */
|
|
||||||
#define majdev(dev) (((dev)>>MAJOR) & 0377) /* yield major device */
|
|
||||||
|
|
||||||
#define TTY_MAJ 4 /* major device of console */
|
|
||||||
|
|
||||||
/* Structure for tty name info. */
|
/* Structure for tty name info. */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char tty_name[NAME_MAX + 1]; /* file name in /dev */
|
char tty_name[NAME_MAX + 1]; /* file name in /dev */
|
||||||
|
@ -107,81 +83,57 @@ typedef struct {
|
||||||
ttyinfo_t *ttyinfo; /* ttyinfo holds actual tty info */
|
ttyinfo_t *ttyinfo; /* ttyinfo holds actual tty info */
|
||||||
size_t n_ttyinfo; /* Number of tty info slots */
|
size_t n_ttyinfo; /* Number of tty info slots */
|
||||||
|
|
||||||
|
u32_t system_hz; /* system clock frequency */
|
||||||
|
unsigned int nr_procs; /* maximum number of processes */
|
||||||
|
unsigned int nr_tasks; /* maximum number of tasks */
|
||||||
|
|
||||||
|
struct pstat *ptable; /* table with process information */
|
||||||
|
|
||||||
|
/* Macro to convert endpoints to slots into ptable */
|
||||||
|
#define SLOT_NR(e) (_ENDPOINT_P(e) + nr_tasks)
|
||||||
|
|
||||||
/* Macro to convert memory offsets to rounded kilo-units */
|
/* Macro to convert memory offsets to rounded kilo-units */
|
||||||
#define off_to_k(off) ((unsigned) (((off) + 512) / 1024))
|
#define off_to_k(off) ((unsigned) (((off) + 512) / 1024))
|
||||||
|
|
||||||
|
|
||||||
/* Number of tasks and processes and addresses of the main process tables. */
|
|
||||||
int nr_tasks, nr_procs;
|
|
||||||
extern int errno;
|
|
||||||
|
|
||||||
/* Process tables of the kernel, PM, and VFS. */
|
|
||||||
struct proc *ps_proc;
|
|
||||||
struct mproc *ps_mproc;
|
|
||||||
struct fproc *ps_fproc;
|
|
||||||
|
|
||||||
/* Where is INIT? */
|
|
||||||
int init_proc_nr;
|
|
||||||
#define low_user init_proc_nr
|
|
||||||
|
|
||||||
#define KMEM_PATH "/dev/kmem" /* opened for kernel proc table */
|
|
||||||
#define MEM_PATH "/dev/mem" /* opened for pm/fs + user processes */
|
|
||||||
|
|
||||||
int kmemfd, memfd; /* file descriptors of [k]mem */
|
|
||||||
|
|
||||||
/* Short and long listing formats:
|
/* Short and long listing formats:
|
||||||
*
|
*
|
||||||
* PID TTY TIME CMD
|
* PID TTY TIME CMD
|
||||||
* ppppp tttmmm:ss cccccccccc...
|
* ppppp tttmmm:ss cccccccccc...
|
||||||
*
|
*
|
||||||
* F S UID PID PPID PGRP SZ RECV TTY TIME CMD
|
* ST UID PID PPID PGRP SZ RECV TTY TIME CMD
|
||||||
* fff s uuu ppppp ppppp ppppp ssss rrrrrrrrrr tttmmm:ss cccccccc...
|
* s uuu ppppp ppppp ppppp ssss rrrrrrrrrr tttmmm:ss cccccccc...
|
||||||
*/
|
*/
|
||||||
#define S_HEADER " PID TTY TIME CMD\n"
|
#define S_HEADER " PID TTY TIME CMD\n"
|
||||||
#define S_FORMAT "%5s %3s %s %s\n"
|
#define S_FORMAT "%5s %3s %s %s\n"
|
||||||
#define L_HEADER " F S UID PID PPID PGRP SZ RECV TTY TIME CMD\n"
|
#define L_HEADER "ST UID PID PPID PGRP SZ RECV TTY TIME CMD\n"
|
||||||
#define L_FORMAT "%3o %c %3d %5s %5d %5d %6d %12s %3s %s %s\n"
|
#define L_FORMAT " %c %3d %5s %5d %5d %6d %12s %3s %s %s\n"
|
||||||
|
|
||||||
|
|
||||||
struct pstat { /* structure filled by pstat() */
|
struct pstat { /* structure filled by pstat() */
|
||||||
|
struct pstat *ps_next; /* next in process list */
|
||||||
|
int ps_task; /* is this process a task or not? */
|
||||||
|
int ps_endpt; /* process endpoint (NONE means unused slot) */
|
||||||
dev_t ps_dev; /* major/minor of controlling tty */
|
dev_t ps_dev; /* major/minor of controlling tty */
|
||||||
uid_t ps_ruid; /* real uid */
|
uid_t ps_ruid; /* real uid */
|
||||||
uid_t ps_euid; /* effective uid */
|
uid_t ps_euid; /* effective uid */
|
||||||
pid_t ps_pid; /* process id */
|
pid_t ps_pid; /* process id */
|
||||||
pid_t ps_ppid; /* parent process id */
|
pid_t ps_ppid; /* parent process id */
|
||||||
int ps_pgrp; /* process group id */
|
int ps_pgrp; /* process group id */
|
||||||
int ps_flags; /* kernel flags */
|
|
||||||
int ps_mflags; /* mm flags */
|
|
||||||
int ps_ftask; /* fs suspend task */
|
|
||||||
int ps_blocked_on; /* what is the process blocked on */
|
|
||||||
char ps_state; /* process state */
|
char ps_state; /* process state */
|
||||||
vir_bytes ps_tsize; /* text size (in bytes) */
|
char ps_pstate; /* sleep state */
|
||||||
vir_bytes ps_dsize; /* data size (in bytes) */
|
char ps_fstate; /* VFS block state */
|
||||||
vir_bytes ps_ssize; /* stack size (in bytes) */
|
int ps_ftask; /* VFS suspend task (endpoint) */
|
||||||
phys_bytes ps_vtext; /* virtual text offset */
|
vir_bytes ps_memory; /* memory usage */
|
||||||
phys_bytes ps_vdata; /* virtual data offset */
|
int ps_recv; /* process number to receive from (endpoint) */
|
||||||
phys_bytes ps_vstack; /* virtual stack offset */
|
|
||||||
phys_bytes ps_text; /* physical text offset */
|
|
||||||
phys_bytes ps_data; /* physical data offset */
|
|
||||||
phys_bytes ps_stack; /* physical stack offset */
|
|
||||||
int ps_recv; /* process number to receive from */
|
|
||||||
time_t ps_utime; /* accumulated user time */
|
time_t ps_utime; /* accumulated user time */
|
||||||
time_t ps_stime; /* accumulated system time */
|
time_t ps_stime; /* accumulated system time */
|
||||||
|
char ps_name[PROC_NAME_LEN+1];/* process name */
|
||||||
char *ps_args; /* concatenated argument string */
|
char *ps_args; /* concatenated argument string */
|
||||||
vir_bytes ps_procargs; /* initial stack frame from PM */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Ps_state field values in pstat struct above */
|
|
||||||
#define Z_STATE 'Z' /* Zombie */
|
|
||||||
#define W_STATE 'W' /* Waiting */
|
|
||||||
#define S_STATE 'S' /* Sleeping */
|
|
||||||
#define R_STATE 'R' /* Runnable */
|
|
||||||
#define T_STATE 'T' /* stopped (Trace) */
|
|
||||||
|
|
||||||
_PROTOTYPE(void disaster, (int sig ));
|
|
||||||
_PROTOTYPE(int main, (int argc, char *argv []));
|
_PROTOTYPE(int main, (int argc, char *argv []));
|
||||||
_PROTOTYPE(char *get_args, (struct pstat *bufp ));
|
_PROTOTYPE(void plist, (void));
|
||||||
_PROTOTYPE(int pstat, (int p_nr, struct pstat *bufp, int Eflag ));
|
|
||||||
_PROTOTYPE(int addrread, (int fd, phys_clicks base, vir_bytes addr,
|
_PROTOTYPE(int addrread, (int fd, phys_clicks base, vir_bytes addr,
|
||||||
char *buf, int nbytes ));
|
char *buf, int nbytes ));
|
||||||
_PROTOTYPE(void usage, (const char *pname ));
|
_PROTOTYPE(void usage, (const char *pname ));
|
||||||
|
@ -197,9 +149,9 @@ _PROTOTYPE(int gettynames, (void));
|
||||||
*/
|
*/
|
||||||
PRIVATE char *tname(dev_t dev_nr)
|
PRIVATE char *tname(dev_t dev_nr)
|
||||||
{
|
{
|
||||||
int i;
|
unsigned int i;
|
||||||
|
|
||||||
if (majdev(dev_nr) == TTY_MAJ && mindev(dev_nr) == 0) return "co";
|
if (major(dev_nr) == TTY_MAJOR && minor(dev_nr) == 0) return "co";
|
||||||
|
|
||||||
for (i = 0; i < n_ttyinfo && ttyinfo[i].tty_name[0] != '\0'; i++)
|
for (i = 0; i < n_ttyinfo && ttyinfo[i].tty_name[0] != '\0'; i++)
|
||||||
if (ttyinfo[i].tty_dev == dev_nr)
|
if (ttyinfo[i].tty_dev == dev_nr)
|
||||||
|
@ -208,109 +160,101 @@ PRIVATE char *tname(dev_t dev_nr)
|
||||||
return "?";
|
return "?";
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return canonical task name of task p_nr; overwritten on each call (yucch) */
|
/* Find a task by its endpoint. */
|
||||||
PRIVATE char *taskname(int p_nr)
|
PRIVATE struct pstat *findtask(endpoint_t endpt)
|
||||||
{
|
{
|
||||||
int n;
|
struct pstat *ps;
|
||||||
n = _ENDPOINT_P(p_nr) + nr_tasks;
|
unsigned int slot;
|
||||||
if(n < 0 || n >= nr_tasks + nr_procs) {
|
|
||||||
return "OUTOFRANGE";
|
slot = SLOT_NR(endpt);
|
||||||
}
|
|
||||||
return ps_proc[n].p_name;
|
if (slot >= nr_tasks + nr_procs)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
ps = &ptable[slot];
|
||||||
|
|
||||||
|
if (ps != NULL && ps->ps_endpt == (int) endpt)
|
||||||
|
return ps;
|
||||||
|
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Prrecv prints the RECV field for process with pstat buffer pointer bufp.
|
/* Return canonical task name of the given endpoint. */
|
||||||
|
PRIVATE char *taskname(endpoint_t endpt)
|
||||||
|
{
|
||||||
|
struct pstat *ps;
|
||||||
|
|
||||||
|
ps = findtask(endpt);
|
||||||
|
|
||||||
|
return ps ? ps->ps_name : "???";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Prrecv prints the RECV field for process with pstat buffer pointer ps.
|
||||||
* This is either "ANY", "taskname", or "(blockreason) taskname".
|
* This is either "ANY", "taskname", or "(blockreason) taskname".
|
||||||
*/
|
*/
|
||||||
PRIVATE char *prrecv(struct pstat *bufp)
|
PRIVATE char *prrecv(struct pstat *ps)
|
||||||
{
|
{
|
||||||
char *blkstr, *task; /* reason for blocking and task */
|
char *blkstr, *task; /* reason for blocking and task */
|
||||||
static char recvstr[20];
|
static char recvstr[20];
|
||||||
|
|
||||||
if (bufp->ps_recv == ANY) return "ANY";
|
if (ps->ps_recv == ANY) return "ANY";
|
||||||
|
|
||||||
task = taskname(bufp->ps_recv);
|
task = taskname(ps->ps_recv);
|
||||||
if (bufp->ps_state != S_STATE) return task;
|
if (ps->ps_state != STATE_SLEEP) return task;
|
||||||
|
|
||||||
blkstr = "?";
|
blkstr = "?";
|
||||||
if (bufp->ps_recv == PM_PROC_NR) {
|
if (ps->ps_recv == PM_PROC_NR) {
|
||||||
if (bufp->ps_mflags & PAUSED)
|
switch (ps->ps_pstate) {
|
||||||
blkstr = "pause";
|
case PSTATE_PAUSED: blkstr = "pause"; break;
|
||||||
else if (bufp->ps_mflags & WAITING)
|
case PSTATE_WAITING: blkstr = "wait"; break;
|
||||||
blkstr = "wait";
|
case PSTATE_SIGSUSP: blkstr = "sigsusp"; break;
|
||||||
else if (bufp->ps_mflags & SIGSUSPENDED)
|
}
|
||||||
blkstr = "sigsusp";
|
} else if (ps->ps_recv == VFS_PROC_NR) {
|
||||||
} else if (bufp->ps_recv == VFS_PROC_NR) {
|
switch (ps->ps_fstate) {
|
||||||
switch(bufp->ps_blocked_on) {
|
case FSTATE_PIPE: blkstr = "pipe"; break;
|
||||||
case FP_BLOCKED_ON_PIPE:
|
case FSTATE_LOCK: blkstr = "flock"; break;
|
||||||
blkstr = "pipe";
|
case FSTATE_POPEN: blkstr = "popen"; break;
|
||||||
break;
|
case FSTATE_SELECT: blkstr = "select"; break;
|
||||||
case FP_BLOCKED_ON_POPEN:
|
case FSTATE_DOPEN: blkstr = "dopen"; break;
|
||||||
blkstr = "popen";
|
case FSTATE_TASK: blkstr = taskname(ps->ps_ftask); break;
|
||||||
break;
|
default: blkstr = "??"; break;
|
||||||
case FP_BLOCKED_ON_DOPEN:
|
}
|
||||||
blkstr = "dopen";
|
|
||||||
break;
|
|
||||||
case FP_BLOCKED_ON_LOCK:
|
|
||||||
blkstr = "flock";
|
|
||||||
break;
|
|
||||||
case FP_BLOCKED_ON_SELECT:
|
|
||||||
blkstr = "select";
|
|
||||||
break;
|
|
||||||
case FP_BLOCKED_ON_OTHER:
|
|
||||||
blkstr = taskname(bufp->ps_ftask);
|
|
||||||
break;
|
|
||||||
case FP_BLOCKED_ON_NONE:
|
|
||||||
blkstr = "??";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
(void) sprintf(recvstr, "(%s) %s", blkstr, task);
|
(void) sprintf(recvstr, "(%s) %s", blkstr, task);
|
||||||
return recvstr;
|
return recvstr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If disaster is called some of the system parameters imported into ps are
|
PRIVATE void getkinfo(void)
|
||||||
* probably wrong. This tends to result in memory faults.
|
|
||||||
*/
|
|
||||||
void disaster(sig)
|
|
||||||
int sig;
|
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Ooops, got signal %d\n", sig);
|
FILE *fp;
|
||||||
fprintf(stderr, "Was ps recompiled since the last kernel change?\n");
|
|
||||||
exit(3);
|
if ((fp = fopen("kinfo", "r")) == NULL)
|
||||||
|
err("Unable to open " _PATH_PROC "/kinfo");
|
||||||
|
|
||||||
|
if (fscanf(fp, "%u %u", &nr_procs, &nr_tasks) != 2)
|
||||||
|
err("Unable to read from " _PATH_PROC "/kinfo");
|
||||||
|
|
||||||
|
fclose(fp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Main interprets arguments, gets system addresses, opens [k]mem, reads in
|
/* Main interprets arguments, gathers information, and prints a process list.
|
||||||
* process tables from kernel/pm/fs and calls pstat() for relevant entries.
|
|
||||||
*/
|
*/
|
||||||
int main(argc, argv)
|
int main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char *argv[];
|
char *argv[];
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
struct pstat buf;
|
unsigned int n;
|
||||||
int db_fd;
|
struct pstat *ps;
|
||||||
int uid = getuid(); /* real uid of caller */
|
int uid = getuid(); /* real uid of caller */
|
||||||
char *opt;
|
char *opt;
|
||||||
int opt_all = FALSE; /* -a */
|
int opt_all = FALSE; /* -a */
|
||||||
int opt_long = FALSE; /* -l */
|
int opt_long = FALSE; /* -l */
|
||||||
int opt_notty = FALSE; /* -x */
|
int opt_notty = FALSE; /* -x */
|
||||||
int opt_endpoint = FALSE; /* -E */
|
int opt_endpoint = FALSE; /* -E */
|
||||||
char *ke_path; /* paths of kernel, */
|
|
||||||
char *mm_path; /* mm, */
|
|
||||||
char *fs_path; /* and fs used in ps -U */
|
|
||||||
char pid[2 + sizeof(pid_t) * 3];
|
char pid[2 + sizeof(pid_t) * 3];
|
||||||
unsigned long ustime;
|
unsigned long ustime;
|
||||||
char cpu[sizeof(clock_t) * 3 + 1 + 2];
|
char cpu[sizeof(clock_t) * 3 + 1 + 2];
|
||||||
struct kinfo kinfo;
|
|
||||||
int s;
|
|
||||||
u32_t system_hz;
|
|
||||||
|
|
||||||
if(getsysinfo_up(PM_PROC_NR, SIU_SYSTEMHZ, sizeof(system_hz), &system_hz) < 0) {
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
(void) signal(SIGSEGV, disaster); /* catch a common crash */
|
|
||||||
|
|
||||||
/* Parse arguments; a '-' need not be present (V7/BSD compatability) */
|
/* Parse arguments; a '-' need not be present (V7/BSD compatability) */
|
||||||
for (i = 1; i < argc; i++) {
|
for (i = 1; i < argc; i++) {
|
||||||
|
@ -327,57 +271,34 @@ char *argv[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Open memory devices and get PS info from the kernel */
|
|
||||||
if ((kmemfd = open(KMEM_PATH, O_RDONLY)) == -1) err(KMEM_PATH);
|
|
||||||
if ((memfd = open(MEM_PATH, O_RDONLY)) == -1) err(MEM_PATH);
|
|
||||||
if (gettynames() == -1) err("Can't get tty names");
|
if (gettynames() == -1) err("Can't get tty names");
|
||||||
|
|
||||||
getsysinfo(PM_PROC_NR, SI_KINFO, &kinfo);
|
if (chdir(_PATH_PROC) != 0) err("Can't chdir to /proc");
|
||||||
|
|
||||||
nr_tasks = kinfo.nr_tasks;
|
/* Get information from the proc file system */
|
||||||
nr_procs = kinfo.nr_procs;
|
system_hz = (u32_t) sysconf(_SC_CLK_TCK);
|
||||||
|
|
||||||
/* Allocate memory for process tables */
|
getkinfo();
|
||||||
ps_proc = (struct proc *) malloc((nr_tasks + nr_procs) * sizeof(ps_proc[0]));
|
|
||||||
ps_mproc = (struct mproc *) malloc(nr_procs * sizeof(ps_mproc[0]));
|
|
||||||
ps_fproc = (struct fproc *) malloc(nr_procs * sizeof(ps_fproc[0]));
|
|
||||||
if (ps_proc == NULL || ps_mproc == NULL || ps_fproc == NULL)
|
|
||||||
err("Out of memory");
|
|
||||||
|
|
||||||
if(minix_getkproctab(ps_proc, nr_tasks + nr_procs, 1) < 0) {
|
plist();
|
||||||
fprintf(stderr, "minix_getkproctab failed.\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(getsysinfo(PM_PROC_NR, SI_PROC_TAB, ps_mproc) < 0) {
|
|
||||||
fprintf(stderr, "getsysinfo() for PM SI_PROC_TAB failed.\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(getsysinfo(VFS_PROC_NR, SI_PROC_TAB, ps_fproc) < 0) {
|
|
||||||
fprintf(stderr, "getsysinfo() for VFS SI_PROC_TAB failed.\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* We need to know where INIT hangs out. */
|
|
||||||
for (i = VFS_PROC_NR; i < nr_procs; i++) {
|
|
||||||
if (strcmp(ps_proc[nr_tasks + i].p_name, "init") == 0) break;
|
|
||||||
}
|
|
||||||
init_proc_nr = i;
|
|
||||||
|
|
||||||
/* Now loop through process table and handle each entry */
|
/* Now loop through process table and handle each entry */
|
||||||
printf("%s", opt_long ? L_HEADER : S_HEADER);
|
printf("%s", opt_long ? L_HEADER : S_HEADER);
|
||||||
for (i = -nr_tasks; i < nr_procs; i++) {
|
for (n = 0; n < nr_procs + nr_tasks; n++) {
|
||||||
if (pstat(i, &buf, opt_endpoint) != -1 &&
|
ps = &ptable[n];
|
||||||
(opt_all || buf.ps_euid == uid || buf.ps_ruid == uid) &&
|
if (ps->ps_endpt == NONE)
|
||||||
(opt_notty || majdev(buf.ps_dev) == TTY_MAJ)) {
|
continue;
|
||||||
if (buf.ps_pid == 0 && i != PM_PROC_NR) {
|
|
||||||
sprintf(pid, "(%d)", i);
|
if ((opt_all || ps->ps_euid == uid || ps->ps_ruid == uid) &&
|
||||||
|
(opt_notty || major(ps->ps_dev) == TTY_MAJOR)) {
|
||||||
|
if (ps->ps_task) {
|
||||||
|
sprintf(pid, "(%d)", ps->ps_pid);
|
||||||
} else {
|
} else {
|
||||||
sprintf(pid, "%d", buf.ps_pid);
|
sprintf(pid, "%d",
|
||||||
|
opt_endpoint ? ps->ps_endpt : ps->ps_pid);
|
||||||
}
|
}
|
||||||
|
|
||||||
ustime = (buf.ps_utime + buf.ps_stime) / system_hz;
|
ustime = (ps->ps_utime + ps->ps_stime) / system_hz;
|
||||||
if (ustime < 60 * 60) {
|
if (ustime < 60 * 60) {
|
||||||
sprintf(cpu, "%2lu:%02lu", ustime / 60, ustime % 60);
|
sprintf(cpu, "%2lu:%02lu", ustime / 60, ustime % 60);
|
||||||
} else
|
} else
|
||||||
|
@ -389,196 +310,181 @@ char *argv[];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (opt_long) printf(L_FORMAT,
|
if (opt_long) printf(L_FORMAT,
|
||||||
buf.ps_flags, buf.ps_state,
|
ps->ps_state,
|
||||||
buf.ps_euid, pid, buf.ps_ppid,
|
ps->ps_euid, pid, ps->ps_ppid,
|
||||||
buf.ps_pgrp,
|
ps->ps_pgrp,
|
||||||
#if 0
|
off_to_k(ps->ps_memory),
|
||||||
off_to_k((buf.ps_tsize
|
(ps->ps_recv != NONE ? prrecv(ps) : ""),
|
||||||
+ buf.ps_stack - buf.ps_data
|
tname((dev_t) ps->ps_dev),
|
||||||
+ buf.ps_ssize)),
|
|
||||||
#else
|
|
||||||
0,
|
|
||||||
#endif
|
|
||||||
(buf.ps_flags & RTS_RECEIVING ?
|
|
||||||
prrecv(&buf) :
|
|
||||||
""),
|
|
||||||
tname((dev_t) buf.ps_dev),
|
|
||||||
cpu,
|
cpu,
|
||||||
i <= init_proc_nr || buf.ps_args == NULL
|
ps->ps_args != NULL ? ps->ps_args : ps->ps_name
|
||||||
? taskname(i) : buf.ps_args);
|
);
|
||||||
else
|
else
|
||||||
printf(S_FORMAT,
|
printf(S_FORMAT,
|
||||||
pid, tname((dev_t) buf.ps_dev),
|
pid, tname((dev_t) ps->ps_dev),
|
||||||
cpu,
|
cpu,
|
||||||
i <= init_proc_nr || buf.ps_args == NULL
|
ps->ps_args != NULL ? ps->ps_args : ps->ps_name
|
||||||
? taskname(i) : buf.ps_args);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
char *get_args(bufp)
|
/* Get_args obtains the command line of a process. */
|
||||||
struct pstat *bufp;
|
char *get_args(struct pstat *ps)
|
||||||
{
|
{
|
||||||
int nargv;
|
char path[PATH_MAX], buf[4096];
|
||||||
int cnt; /* # of bytes read from stack frame */
|
ssize_t i, n;
|
||||||
int neos; /* # of '\0's seen in argv string space */
|
int fd;
|
||||||
phys_bytes iframe;
|
|
||||||
long l;
|
|
||||||
char *cp, *args;
|
|
||||||
static union stack {
|
|
||||||
vir_bytes stk_i;
|
|
||||||
char *stk_cp;
|
|
||||||
char stk_c;
|
|
||||||
} stk[ARG_MAX / sizeof(char *)];
|
|
||||||
union stack *sp;
|
|
||||||
|
|
||||||
/* Phys address of the original stack frame. */
|
/* Get a reasonable subset of the contents of the 'cmdline' file from procfs.
|
||||||
iframe = bufp->ps_procargs - bufp->ps_vstack + bufp->ps_stack;
|
* It contains all arguments, separated and terminated by null characters.
|
||||||
|
*/
|
||||||
|
sprintf(path, "%d/cmdline", ps->ps_pid);
|
||||||
|
|
||||||
/* Calculate the number of bytes to read from user stack */
|
fd = open(path, O_RDONLY);
|
||||||
l = (phys_bytes) bufp->ps_ssize - (iframe - bufp->ps_stack);
|
if (fd < 0) return NULL;
|
||||||
if (l > ARG_MAX) l = ARG_MAX;
|
|
||||||
cnt = l;
|
n = read(fd, buf, sizeof(buf));
|
||||||
|
if (n <= 0) {
|
||||||
|
close(fd);
|
||||||
|
|
||||||
/* Get cnt bytes from user initial stack to local stack buffer */
|
|
||||||
if (lseek(memfd, (off_t) iframe, 0) < 0)
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if ( read(memfd, (char *)stk, cnt) != cnt )
|
close(fd);
|
||||||
return NULL;
|
|
||||||
|
|
||||||
sp = stk;
|
/* Replace all argument separating null characters with spaces. */
|
||||||
nargv = (int) sp[0].stk_i; /* number of argv arguments */
|
for (i = 0; i < n-1; i++)
|
||||||
|
if (buf[i] == '\0')
|
||||||
|
buf[i] = ' ';
|
||||||
|
|
||||||
/* See if argv[0] is with the bytes we read in */
|
/* The last character should already be null, except if it got cut off. */
|
||||||
l = (long) sp[1].stk_cp - (long) bufp->ps_procargs;
|
buf[n-1] = '\0';
|
||||||
|
|
||||||
if ( ( l < 0 ) || ( l > cnt ) )
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
/* l is the offset of the argv[0] argument */
|
|
||||||
/* change for concatenation the '\0' to space, for nargv elements */
|
|
||||||
|
|
||||||
args = &((char *) stk)[(int)l];
|
|
||||||
neos = 0;
|
|
||||||
for (cp = args; cp < &((char *) stk)[cnt]; cp++)
|
|
||||||
if (*cp == '\0')
|
|
||||||
if (++neos >= nargv)
|
|
||||||
break;
|
|
||||||
else
|
|
||||||
*cp = ' ';
|
|
||||||
if (cp == args) return NULL;
|
|
||||||
*cp = '\0';
|
|
||||||
|
|
||||||
return args;
|
|
||||||
|
|
||||||
|
return strdup(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pstat collects info on process number p_nr and returns it in buf.
|
/* Pstat obtains the actual information for the given process, and stores it
|
||||||
* It is assumed that tasks do not have entries in fproc/mproc.
|
* in the pstat structure. The outside world may change while we are doing
|
||||||
|
* this, so nothing is reported in case any of the calls fail.
|
||||||
*/
|
*/
|
||||||
int pstat(int p_nr, struct pstat *bufp, int endpoints)
|
int pstat(struct pstat *ps, pid_t pid)
|
||||||
{
|
{
|
||||||
int p_ki = p_nr + nr_tasks; /* kernel proc index */
|
FILE *fp;
|
||||||
|
int version, ruid, euid, dev;
|
||||||
|
char type, path[PATH_MAX], name[256];
|
||||||
|
|
||||||
if (p_nr < -nr_tasks || p_nr >= nr_procs) {
|
ps->ps_pid = pid;
|
||||||
fprintf(stderr, "pstat: %d out of range\n", p_nr);
|
ps->ps_next = NULL;
|
||||||
|
|
||||||
|
sprintf(path, "%d/psinfo", pid);
|
||||||
|
|
||||||
|
if ((fp = fopen(path, "r")) == NULL)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if (fscanf(fp, "%d", &version) != 1) {
|
||||||
|
fclose(fp);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isemptyp(&ps_proc[p_ki])
|
/* The psinfo file's version must match what we expect. */
|
||||||
&& !(ps_mproc[p_nr].mp_flags & IN_USE)) {
|
if (version != PSINFO_VERSION) {
|
||||||
|
fputs("procfs version mismatch!\n", stderr);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (fscanf(fp, " %c %d %255s %c %d %*d %lu %lu %*u %*u",
|
||||||
|
&type, &ps->ps_endpt, name, &ps->ps_state,
|
||||||
|
&ps->ps_recv, &ps->ps_utime, &ps->ps_stime) != 7) {
|
||||||
|
|
||||||
|
fclose(fp);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
bufp->ps_flags = ps_proc[p_ki].p_rts_flags;
|
strncpy(ps->ps_name, name, sizeof(ps->ps_name)-1);
|
||||||
|
ps->ps_name[sizeof(ps->ps_name)-1] = 0;
|
||||||
|
|
||||||
if (p_nr >= low_user) {
|
ps->ps_task = type == TYPE_TASK;
|
||||||
bufp->ps_dev = ps_fproc[p_nr].fp_tty;
|
|
||||||
bufp->ps_ftask = ps_fproc[p_nr].fp_task;
|
|
||||||
bufp->ps_blocked_on = ps_fproc[p_nr].fp_blocked_on;
|
|
||||||
} else {
|
|
||||||
bufp->ps_dev = 0;
|
|
||||||
bufp->ps_ftask = 0;
|
|
||||||
bufp->ps_blocked_on = FP_BLOCKED_ON_NONE;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (p_nr >= 0) {
|
if (!ps->ps_task) {
|
||||||
bufp->ps_ruid = ps_mproc[p_nr].mp_realuid;
|
if (fscanf(fp, " %lu %*u %*u %c %d %u %u %u %*d %c %d %u",
|
||||||
bufp->ps_euid = ps_mproc[p_nr].mp_effuid;
|
&ps->ps_memory, &ps->ps_pstate, &ps->ps_ppid,
|
||||||
if(endpoints) bufp->ps_pid = ps_proc[p_ki].p_endpoint;
|
&ruid, &euid, &ps->ps_pgrp, &ps->ps_fstate,
|
||||||
else bufp->ps_pid = ps_mproc[p_nr].mp_pid;
|
&ps->ps_ftask, &dev) != 9) {
|
||||||
bufp->ps_ppid = ps_mproc[ps_mproc[p_nr].mp_parent].mp_pid;
|
|
||||||
/* Assume no parent when the parent and the child share the same pid.
|
fclose(fp);
|
||||||
* This is what PM currently assumes.
|
return -1;
|
||||||
*/
|
|
||||||
if(bufp->ps_ppid == bufp->ps_pid) {
|
|
||||||
bufp->ps_ppid = NO_PID;
|
|
||||||
}
|
}
|
||||||
bufp->ps_pgrp = ps_mproc[p_nr].mp_procgrp;
|
|
||||||
bufp->ps_mflags = ps_mproc[p_nr].mp_flags;
|
ps->ps_ruid = ruid;
|
||||||
|
ps->ps_euid = euid;
|
||||||
|
ps->ps_dev = dev;
|
||||||
} else {
|
} else {
|
||||||
if(endpoints) bufp->ps_pid = ps_proc[p_ki].p_endpoint;
|
ps->ps_memory = 0L;
|
||||||
else bufp->ps_pid = NO_PID;
|
ps->ps_pstate = PSTATE_NONE;
|
||||||
bufp->ps_ppid = NO_PID;
|
ps->ps_ppid = 0;
|
||||||
bufp->ps_ruid = bufp->ps_euid = 0;
|
ps->ps_ruid = 0;
|
||||||
bufp->ps_pgrp = 0;
|
ps->ps_euid = 0;
|
||||||
bufp->ps_mflags = 0;
|
ps->ps_pgrp = 0;
|
||||||
|
ps->ps_fstate = FSTATE_NONE;
|
||||||
|
ps->ps_ftask = NONE;
|
||||||
|
ps->ps_dev = NO_DEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* State is interpretation of combined kernel/mm flags for non-tasks */
|
fclose(fp);
|
||||||
if (p_nr >= low_user) { /* non-tasks */
|
|
||||||
if (ps_mproc[p_nr].mp_flags & ZOMBIE)
|
|
||||||
bufp->ps_state = Z_STATE; /* zombie */
|
|
||||||
else if (ps_mproc[p_nr].mp_flags & STOPPED)
|
|
||||||
bufp->ps_state = T_STATE; /* stopped (traced) */
|
|
||||||
else if (ps_proc[p_ki].p_rts_flags == 0)
|
|
||||||
bufp->ps_state = R_STATE; /* in run-queue */
|
|
||||||
else if (ps_mproc[p_nr].mp_flags & (WAITING | PAUSED | SIGSUSPENDED) ||
|
|
||||||
fp_is_blocked(&ps_fproc[p_nr]))
|
|
||||||
bufp->ps_state = S_STATE; /* sleeping */
|
|
||||||
else
|
|
||||||
bufp->ps_state = W_STATE; /* a short wait */
|
|
||||||
} else { /* tasks are simple */
|
|
||||||
if (ps_proc[p_ki].p_rts_flags == 0)
|
|
||||||
bufp->ps_state = R_STATE; /* in run-queue */
|
|
||||||
else
|
|
||||||
bufp->ps_state = W_STATE; /* other i.e. waiting */
|
|
||||||
}
|
|
||||||
|
|
||||||
bufp->ps_tsize = (size_t) ps_proc[p_ki].p_memmap[T].mem_len << CLICK_SHIFT;
|
if (ps->ps_state == STATE_ZOMBIE)
|
||||||
bufp->ps_dsize = (size_t) ps_proc[p_ki].p_memmap[D].mem_len << CLICK_SHIFT;
|
ps->ps_args = "<defunct>";
|
||||||
bufp->ps_ssize = (size_t) ps_proc[p_ki].p_memmap[S].mem_len << CLICK_SHIFT;
|
else if (!ps->ps_task)
|
||||||
bufp->ps_vtext = (off_t) ps_proc[p_ki].p_memmap[T].mem_vir << CLICK_SHIFT;
|
ps->ps_args = get_args(ps);
|
||||||
bufp->ps_vdata = (off_t) ps_proc[p_ki].p_memmap[D].mem_vir << CLICK_SHIFT;
|
else
|
||||||
bufp->ps_vstack = (off_t) ps_proc[p_ki].p_memmap[S].mem_vir << CLICK_SHIFT;
|
ps->ps_args = NULL;
|
||||||
bufp->ps_text = (off_t) ps_proc[p_ki].p_memmap[T].mem_phys << CLICK_SHIFT;
|
|
||||||
bufp->ps_data = (off_t) ps_proc[p_ki].p_memmap[D].mem_phys << CLICK_SHIFT;
|
|
||||||
bufp->ps_stack = (off_t) ps_proc[p_ki].p_memmap[S].mem_phys << CLICK_SHIFT;
|
|
||||||
|
|
||||||
bufp->ps_recv = _ENDPOINT_P(ps_proc[p_ki].p_getfrom_e);
|
|
||||||
|
|
||||||
bufp->ps_utime = ps_proc[p_ki].p_user_time;
|
|
||||||
bufp->ps_stime = ps_proc[p_ki].p_sys_time;
|
|
||||||
|
|
||||||
bufp->ps_procargs = ps_mproc[p_nr].mp_frame_addr;
|
|
||||||
|
|
||||||
if (bufp->ps_state == Z_STATE)
|
|
||||||
bufp->ps_args = "<defunct>";
|
|
||||||
else if (p_nr > init_proc_nr)
|
|
||||||
bufp->ps_args = get_args(bufp);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Addrread reads nbytes from offset addr to click base of fd into buf. */
|
/* Plist creates a list of processes with status information. */
|
||||||
int addrread(int fd, phys_clicks base, vir_bytes addr, char *buf, int nbytes)
|
void plist(void)
|
||||||
{
|
{
|
||||||
if (lseek(fd, ((off_t) base << CLICK_SHIFT) + addr, 0) < 0)
|
DIR *p_dir;
|
||||||
return -1;
|
struct dirent *p_ent;
|
||||||
|
struct pstat pbuf;
|
||||||
|
pid_t pid;
|
||||||
|
char *end;
|
||||||
|
unsigned int slot;
|
||||||
|
|
||||||
return read(fd, buf, nbytes);
|
/* Allocate a table for process information. Initialize all slots' endpoints
|
||||||
|
* to NONE, indicating those slots are not used.
|
||||||
|
*/
|
||||||
|
if ((ptable = malloc((nr_tasks + nr_procs) * sizeof(struct pstat))) == NULL)
|
||||||
|
err("Out of memory!");
|
||||||
|
|
||||||
|
for (slot = 0; slot < nr_tasks + nr_procs; slot++)
|
||||||
|
ptable[slot].ps_endpt = NONE;
|
||||||
|
|
||||||
|
/* Fill in the table slots for all existing processes, by retrieving all PID
|
||||||
|
* entries from the /proc directory.
|
||||||
|
*/
|
||||||
|
p_dir = opendir(".");
|
||||||
|
|
||||||
|
if (p_dir == NULL) err("Can't open " _PATH_PROC);
|
||||||
|
|
||||||
|
p_ent = readdir(p_dir);
|
||||||
|
while (p_ent != NULL) {
|
||||||
|
pid = strtol(p_ent->d_name, &end, 10);
|
||||||
|
|
||||||
|
if (!end[0] && pid != 0 && !pstat(&pbuf, pid)) {
|
||||||
|
slot = SLOT_NR(pbuf.ps_endpt);
|
||||||
|
|
||||||
|
if (slot < nr_tasks + nr_procs)
|
||||||
|
memcpy(&ptable[slot], &pbuf, sizeof(pbuf));
|
||||||
|
}
|
||||||
|
|
||||||
|
p_ent = readdir(p_dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
closedir(p_dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
void usage(const char *pname)
|
void usage(const char *pname)
|
||||||
|
@ -605,7 +511,7 @@ int gettynames(void)
|
||||||
static char dev_path[] = "/dev/";
|
static char dev_path[] = "/dev/";
|
||||||
struct stat statbuf;
|
struct stat statbuf;
|
||||||
static char path[sizeof(dev_path) + NAME_MAX];
|
static char path[sizeof(dev_path) + NAME_MAX];
|
||||||
int index;
|
unsigned int index;
|
||||||
struct ttyent *ttyp;
|
struct ttyent *ttyp;
|
||||||
|
|
||||||
index = 0;
|
index = 0;
|
||||||
|
|
|
@ -29,17 +29,7 @@ ps \- process status
|
||||||
processes are listed in short format (the PID, TTY, TIME and CMD fields as
|
processes are listed in short format (the PID, TTY, TIME and CMD fields as
|
||||||
explained below). The long listing contains:
|
explained below). The long listing contains:
|
||||||
.PP
|
.PP
|
||||||
.ta 0.5i 1.0i
|
ST
|
||||||
F Kernel flags:
|
|
||||||
001: free slot
|
|
||||||
002: no memory map
|
|
||||||
004: sending;
|
|
||||||
010: receiving
|
|
||||||
020: inform on pending signals
|
|
||||||
040: pending signals
|
|
||||||
100: being traced.
|
|
||||||
.PP
|
|
||||||
S
|
|
||||||
State:
|
State:
|
||||||
R: runnable
|
R: runnable
|
||||||
W: waiting (on a message)
|
W: waiting (on a message)
|
||||||
|
|
Loading…
Reference in a new issue