procps/ps/display.c

467 lines
13 KiB
C
Raw Normal View History

2002-02-02 04:17:29 +05:30
/*
2003-03-19 06:45:58 +05:30
* Copyright 1998-2003 by Albert Cahalan; all rights resered.
2002-02-02 04:17:29 +05:30
* This file may be used subject to the terms and conditions of the
* GNU Library General Public License Version 2, or any later version
* at your option, as published by the Free Software Foundation.
* 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 Library General Public License for more details.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
/* username lookups */
#include <sys/types.h>
#include <pwd.h>
#include <grp.h>
/* major/minor number */
#include <sys/sysmacros.h>
#include <signal.h> /* catch signals */
#include "common.h"
2002-12-09 12:30:07 +05:30
#include "../proc/wchan.h"
2002-02-02 04:17:29 +05:30
#include "../proc/version.h"
#include "../proc/readproc.h"
#include "../proc/sysinfo.h"
2003-07-03 10:50:19 +05:30
#include "../proc/sig.h"
2002-02-02 04:17:29 +05:30
#ifndef SIGCHLD
#define SIGCHLD SIGCLD
#endif
/* just reports a crash */
static void signal_handler(int signo){
if(signo==SIGPIPE) _exit(0); /* "ps | head" will cause this */
/* fprintf() is not reentrant, but we _exit() anyway */
fprintf(stderr,
"\n\n"
2003-03-18 05:12:00 +05:30
"Signal %d (%s) caught by ps (%s).\n"
"Please send bug reports to <feedback@lists.sf.net> or <albert@users.sf.net>\n",
2002-02-02 04:17:29 +05:30
signo,
2003-03-18 05:12:00 +05:30
signal_number_to_name(signo),
2002-02-02 04:17:29 +05:30
procps_version
);
_exit(signo+128);
}
2002-11-27 05:54:01 +05:30
/////////////////////////////////////////////////////////////////////////////////////
2002-02-02 04:17:29 +05:30
#undef DEBUG
#ifdef DEBUG
void init_stack_trace(char *prog_name);
#include <ctype.h>
void hex_dump(void *vp){
char *charlist;
int i = 0;
int line = 45;
char *cp = (char *)vp;
while(line--){
printf("%8lx ", (unsigned long)cp);
charlist = cp;
cp += 16;
for(i=0; i<16; i++){
if((charlist[i]>31) && (charlist[i]<127)){
printf("%c", charlist[i]);
}else{
printf(".");
}
}
printf(" ");
for(i=0; i<16; i++) printf(" %2x",(unsigned int)((unsigned char)(charlist[i])));
printf("\n");
i=0;
}
}
2003-09-20 13:59:55 +05:30
static void show_tgid(char *s, int n, sel_union *data){
2002-02-02 04:17:29 +05:30
printf("%s ", s);
while(--n){
2003-09-20 13:59:55 +05:30
printf("%d,", data[n].tgid);
2002-02-02 04:17:29 +05:30
}
2003-09-20 13:59:55 +05:30
printf("%d\n", data[0].tgid);
2002-02-02 04:17:29 +05:30
}
static void show_uid(char *s, int n, sel_union *data){
struct passwd *pw_data;
printf("%s ", s);
while(--n){
pw_data = getpwuid(data[n].uid);
if(pw_data) printf("%s,", pw_data->pw_name);
else printf("%d,", data[n].uid);
}
pw_data = getpwuid(data[n].uid);
if(pw_data) printf("%s\n", pw_data->pw_name);
else printf("%d\n", data[n].uid);
}
static void show_gid(char *s, int n, sel_union *data){
struct group *gr_data;
printf("%s ", s);
while(--n){
gr_data = getgrgid(data[n].gid);
if(gr_data) printf("%s,", gr_data->gr_name);
else printf("%d,", data[n].gid);
}
gr_data = getgrgid(data[n].gid);
if(gr_data) printf("%s\n", gr_data->gr_name);
else printf("%d\n", data[n].gid);
}
static void show_tty(char *s, int n, sel_union *data){
printf("%s ", s);
while(--n){
printf("%d:%d,", (int)major(data[n].tty), (int)minor(data[n].tty));
}
printf("%d:%d\n", (int)major(data[n].tty), (int)minor(data[n].tty));
}
static void show_cmd(char *s, int n, sel_union *data){
printf("%s ", s);
while(--n){
printf("%.8s,", data[n].cmd);
}
printf("%.8s\n", data[0].cmd);
}
static void arg_show(void){
selection_node *walk = selection_list;
while(walk){
switch(walk->typecode){
case SEL_RUID: show_uid("RUID", walk->n, walk->u); break;
case SEL_EUID: show_uid("EUID", walk->n, walk->u); break;
case SEL_SUID: show_uid("SUID", walk->n, walk->u); break;
case SEL_FUID: show_uid("FUID", walk->n, walk->u); break;
case SEL_RGID: show_gid("RGID", walk->n, walk->u); break;
case SEL_EGID: show_gid("EGID", walk->n, walk->u); break;
case SEL_SGID: show_gid("SGID", walk->n, walk->u); break;
case SEL_FGID: show_gid("FGID", walk->n, walk->u); break;
case SEL_PGRP: show_pid("PGRP", walk->n, walk->u); break;
case SEL_PID : show_pid("PID ", walk->n, walk->u); break;
2003-02-09 13:01:11 +05:30
case SEL_PPID: show_pid("PPID", walk->n, walk->u); break;
2002-02-02 04:17:29 +05:30
case SEL_TTY : show_tty("TTY ", walk->n, walk->u); break;
case SEL_SESS: show_pid("SESS", walk->n, walk->u); break;
case SEL_COMM: show_cmd("COMM", walk->n, walk->u); break;
default: printf("Garbage typecode value!\n");
}
walk = walk->next;
}
}
#endif
2002-11-27 05:54:01 +05:30
//////////////////////////////////////////////////////////////////////////
2002-02-02 04:17:29 +05:30
/***** check the header */
/* Unix98: must not print empty header */
static void check_headers(void){
format_node *walk = format_list;
int head_normal = 0;
if(header_type==HEAD_MULTI){
header_gap = screen_rows-1; /* true BSD */
return;
}
if(header_type==HEAD_NONE){
lines_to_next_header = -1; /* old Linux */
return;
}
while(walk){
if(!*(walk->name)){
walk = walk->next;
continue;
}
if(walk->pr){
head_normal++;
walk = walk->next;
continue;
}
walk = walk->next;
}
if(!head_normal) lines_to_next_header = -1; /* how UNIX does --noheader */
}
static unsigned needs_for_format;
static unsigned needs_for_sort;
/***** check needs */
/* see what files need to be read, etc. */
static void check_needs(void){
format_node *walk_pr = format_list;
sort_node *walk_sr = sort_list;
/* selection doesn't currently have expensive needs */
while(walk_pr){
needs_for_format |= walk_pr->need;
walk_pr = walk_pr->next;
}
if(bsd_e_option) needs_for_format |= PROC_FILLENV;
while(walk_sr){
needs_for_sort |= walk_sr->need;
walk_sr = walk_sr->next;
}
}
2002-02-02 04:17:29 +05:30
/***** fill in %CPU; not in libproc because of include_dead_children */
2002-10-10 05:10:30 +05:30
/* Note: for sorting, not display, so 0..0x7fffffff would be OK */
2002-02-02 04:17:29 +05:30
static void fill_pcpu(proc_t *buf){
2002-10-10 05:10:30 +05:30
unsigned long long used_jiffies;
2002-02-02 04:17:29 +05:30
unsigned long pcpu = 0;
2002-10-10 05:10:30 +05:30
unsigned long long avail_jiffies;
2002-02-02 04:17:29 +05:30
2002-10-10 05:10:30 +05:30
used_jiffies = buf->utime + buf->stime;
if(include_dead_children) used_jiffies += (buf->cutime + buf->cstime);
avail_jiffies = seconds_since_boot * Hertz - buf->start_time;
if(avail_jiffies) pcpu = (used_jiffies << 24) / avail_jiffies;
buf->pcpu = pcpu; // fits in an int, summing children on 128 CPUs
2002-02-02 04:17:29 +05:30
}
2002-10-09 03:18:19 +05:30
/***** figure out what we need */
static void compute_needs(void){
if(bsd_c_option){
needs_for_format &= ~PROC_FILLARG;
needs_for_sort &= ~PROC_FILLARG;
}
if(!unix_f_option){
needs_for_format &= ~PROC_FILLCOM;
needs_for_sort &= ~PROC_FILLCOM;
}
}
2002-02-02 04:17:29 +05:30
/***** just display */
static void simple_spew(void){
proc_t buf;
PROCTAB* ptp;
2003-09-18 03:28:32 +05:30
ptp = openproc(needs_for_format | needs_for_sort | needs_for_select);
2002-02-02 04:17:29 +05:30
if(!ptp) {
fprintf(stderr, "Error: can not access /proc.\n");
exit(1);
}
2003-09-20 13:59:55 +05:30
if(!thread_flags) thread_flags=TF_show_proc;
2002-10-02 19:05:39 +05:30
memset(&buf, '#', sizeof(proc_t));
2003-09-18 03:28:32 +05:30
while(readproc(ptp,&buf)){
2003-09-20 13:59:55 +05:30
if(want_this_proc(&buf)){
2003-09-28 22:53:29 +05:30
if(thread_flags & TF_show_proc) show_one_proc(&buf,format_list);
2003-09-20 13:59:55 +05:30
if(thread_flags & TF_show_task){
proc_t buf2;
// must still have the process allocated
2003-09-28 22:53:29 +05:30
while(readtask(ptp,&buf,&buf2)) show_one_proc(&buf2,format_list);
2003-09-20 13:59:55 +05:30
// must not attempt to free cmdline and environ
}
}
2002-10-02 19:05:39 +05:30
if(buf.cmdline) free((void*)*buf.cmdline); // ought to reuse
if(buf.environ) free((void*)*buf.environ); // ought to reuse
// memset(&buf, '#', sizeof(proc_t));
2002-02-02 04:17:29 +05:30
}
closeproc(ptp);
}
/***** forest output requires sorting by ppid; add start_time by default */
static void prep_forest_sort(void){
sort_node *tmp_list = sort_list;
const format_struct *incoming;
if(!sort_list) { /* assume start time order */
incoming = search_format_array("start_time");
if(!incoming) fprintf(stderr, "Could not find start_time!\n");
tmp_list = malloc(sizeof(sort_node));
tmp_list->reverse = 0;
tmp_list->typecode = '?'; /* what was this for? */
tmp_list->sr = incoming->sr;
2002-10-14 10:42:14 +05:30
tmp_list->need = incoming->need;
2002-02-02 04:17:29 +05:30
tmp_list->next = sort_list;
sort_list = tmp_list;
}
/* this is required for the forest option */
incoming = search_format_array("ppid");
if(!incoming) fprintf(stderr, "Could not find ppid!\n");
tmp_list = malloc(sizeof(sort_node));
tmp_list->reverse = 0;
tmp_list->typecode = '?'; /* what was this for? */
tmp_list->sr = incoming->sr;
2002-10-14 10:42:14 +05:30
tmp_list->need = incoming->need;
2002-02-02 04:17:29 +05:30
tmp_list->next = sort_list;
sort_list = tmp_list;
}
/* we rely on the POSIX requirement for zeroed memory */
2002-11-09 08:31:35 +05:30
static proc_t *processes[98*1024]; // FIXME
2002-02-02 04:17:29 +05:30
/***** compare function for qsort */
static int compare_two_procs(const void *a, const void *b){
sort_node *tmp_list = sort_list;
while(tmp_list){
int result;
2002-10-12 09:55:57 +05:30
result = (*tmp_list->sr)(*(const proc_t *const*)a, *(const proc_t *const*)b);
2002-02-02 04:17:29 +05:30
if(result) return (tmp_list->reverse) ? -result : result;
tmp_list = tmp_list->next;
}
return 0; /* no conclusion */
}
/***** show pre-sorted array of process pointers */
static void show_proc_array(int n){
proc_t **p = processes;
while(n--){
2003-09-28 22:53:29 +05:30
show_one_proc(*p,format_list);
2002-10-02 19:05:39 +05:30
/* no point freeing any of this -- won't need more mem */
// if((*p)->cmdline) free((void*)*(*p)->cmdline);
// if((*p)->environ) free((void*)*(*p)->environ);
// memset(*p, '%', sizeof(proc_t)); /* debug */
// free(*p);
2002-02-02 04:17:29 +05:30
p++;
}
}
/***** show tree */
/* this needs some optimization work */
#define ADOPTED(x) 1
static void show_tree(const int self, const int n, const int level, const int have_sibling){
int i = 0;
if(level){
/* add prefix of "+" or "L" */
if(have_sibling) forest_prefix[level-1] = '+';
else forest_prefix[level-1] = 'L';
forest_prefix[level] = '\0';
}
2003-09-28 22:53:29 +05:30
show_one_proc(processes[self],format_list); /* first show self */
2002-10-02 19:05:39 +05:30
/* no point freeing any of this -- won't need more mem */
// if(processes[self]->cmdline) free((void*)*processes[self]->cmdline);
// if(processes[self]->environ) free((void*)*processes[self]->environ);
2002-02-02 04:17:29 +05:30
for(;;){ /* look for children */
if(i >= n) return; /* no children */
2003-09-20 13:59:55 +05:30
if(processes[i]->ppid == processes[self]->XXXID) break;
2002-02-02 04:17:29 +05:30
i++;
}
if(level){
/* change our prefix to "|" or " " for the children */
if(have_sibling) forest_prefix[level-1] = '|';
else forest_prefix[level-1] = ' ';
forest_prefix[level] = '\0';
}
for(;;){
int self_pid;
int more_children = 1;
if(i >= n) break; /* over the edge */
2003-09-20 13:59:55 +05:30
self_pid=processes[self]->XXXID;
2002-02-02 04:17:29 +05:30
if(i+1 >= n)
more_children = 0;
else
if(processes[i+1]->ppid != self_pid) more_children = 0;
if(self_pid==1 && ADOPTED(processes[i]) && forest_type!='u')
show_tree(i++, n, level, more_children);
else
show_tree(i++, n, level+1, more_children);
if(!more_children) break;
}
/* chop prefix that children added -- do we need this? */
forest_prefix[level] = '\0';
2002-10-02 19:05:39 +05:30
// memset(processes[self], '$', sizeof(proc_t)); /* debug */
2002-02-02 04:17:29 +05:30
}
/***** show forest */
static void show_forest(const int n){
int i = n;
int j;
while(i--){ /* cover whole array looking for trees */
j = n;
while(j--){ /* search for parent: if none, i is a tree! */
2003-09-20 13:59:55 +05:30
if(processes[j]->XXXID == processes[i]->ppid) goto not_root;
2002-02-02 04:17:29 +05:30
}
show_tree(i,n,0,0);
not_root:
2002-10-02 06:03:56 +05:30
;
2002-02-02 04:17:29 +05:30
}
/* don't free the array because it takes time and ps will exit anyway */
}
/***** sorted or forest */
static void fancy_spew(void){
2002-05-28 07:40:28 +05:30
proc_t *retbuf = NULL;
2002-11-27 05:54:01 +05:30
PROCTAB *restrict ptp;
2002-02-02 04:17:29 +05:30
int n = 0; /* number of processes & index into array */
2003-09-20 13:59:55 +05:30
if(thread_flags){
fprintf(stderr, "can't have threads with sorting or forest output\n");
exit(49);
}
2003-09-18 03:28:32 +05:30
ptp = openproc(needs_for_format | needs_for_sort | needs_for_select);
2002-02-02 04:17:29 +05:30
if(!ptp) {
fprintf(stderr, "Error: can not access /proc.\n");
exit(1);
}
2003-09-18 03:28:32 +05:30
while((retbuf = readproc(ptp,retbuf))){
2002-05-28 07:40:28 +05:30
if(want_this_proc(retbuf)){
2002-10-10 05:10:30 +05:30
fill_pcpu(retbuf); // in case we might sort by %cpu
2002-05-28 07:40:28 +05:30
processes[n++] = retbuf;
2003-09-18 03:28:32 +05:30
retbuf = NULL; // NULL asks readproc to allocate
2002-05-28 07:40:28 +05:30
}
2002-02-02 04:17:29 +05:30
}
2002-05-28 07:40:28 +05:30
if(retbuf) free(retbuf);
2002-02-02 04:17:29 +05:30
closeproc(ptp);
if(!n) return; /* no processes */
if(forest_type) prep_forest_sort();
qsort(processes, n, sizeof(proc_t*), compare_two_procs);
if(forest_type) show_forest(n);
else show_proc_array(n);
}
/***** no comment */
int main(int argc, char *argv[]){
#ifdef DEBUG
init_stack_trace(argv[0]);
#else
do {
struct sigaction sa;
int i = 32;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = signal_handler;
sigfillset(&sa.sa_mask);
while(i--) switch(i){
default:
sigaction(i,&sa,NULL);
case 0:
case SIGINT: /* ^C */
case SIGQUIT: /* ^\ */
case SIGPROF: /* profiling */
case SIGKILL: /* can not catch */
case SIGSTOP: /* can not catch */
case SIGWINCH: /* don't care if window size changes */
2002-10-02 06:03:56 +05:30
;
2002-02-02 04:17:29 +05:30
}
} while (0);
#endif
reset_global(); /* must be before parser */
arg_parse(argc,argv);
/* arg_show(); */
trace("screen is %ux%u\n",screen_cols,screen_rows);
/* printf("sizeof(proc_t) is %d.\n", sizeof(proc_t)); */
trace("======= ps output follows =======\n");
init_output(); /* must be between parser and output */
check_headers();
2002-10-09 03:18:19 +05:30
check_needs();
/* filthy hack -- got to unify some stuff here */
if( ( (needs_for_format|needs_for_sort) & PROC_FILLWCHAN) && !wchan_is_number)
if (open_psdb(namelist_file)) wchan_is_number = 1;
2002-10-09 03:18:19 +05:30
compute_needs();
2002-02-02 04:17:29 +05:30
if(forest_type || sort_list) fancy_spew(); /* sort or forest */
else simple_spew(); /* no sort, no forest */
2003-09-28 22:53:29 +05:30
show_one_proc((proc_t *)-1,format_list); /* no output yet? */
2002-02-02 04:17:29 +05:30
return 0;
}