procps/vmstat.c

313 lines
8.9 KiB
C
Raw Normal View History

2002-02-02 04:17:29 +05:30
#define PROGNAME "vmstat"
/* Copyright 1994 by Henry Ware <al172@yfn.ysu.edu>. Copyleft same year. */
/* This attempts to display virtual memory statistics.
vmstat does not need to be run as root.
*/
/* TODO etc.
* Count the system calls. How? I don't even know where to start.
* add more items- aim at Posix 1003.2 (1003.7?) compliance, if relevant (I.
don't think it is, but let me know.)
* sometimes d(inter)<d(ticks)!! This is not possible: inter is a sum of
positive numbers including ticks. But it happens. This doesn't seem to
affect things much, however.
* It would be interesting to see when the buffers avert a block io:
Like SysV4's "sar -b"... it might fit better here, with Linux's variable
buffer size.
* Ideally, blocks in & out would be counted in 1k increments, rather than
by block: this only makes a difference for CDs and is a problematic fix.
*/
#include "proc/sysinfo.h"
#include "proc/version.h"
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <assert.h>
#include <fcntl.h>
#include <limits.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/dir.h>
#include <dirent.h>
#define NDEBUG !DEBUG
2002-10-01 03:47:42 +05:30
#define BUFFSIZE 8192
2002-02-02 04:17:29 +05:30
#define FALSE 0
#define TRUE 1
static char buff[BUFFSIZE]; /* used in the procedures */
2002-10-12 01:31:16 +05:30
typedef unsigned long long jiff;
2002-02-02 04:17:29 +05:30
2002-10-06 22:16:06 +05:30
static int a_option; /* "-a" means "show active/inactive" */
2002-02-02 04:17:29 +05:30
/****************************************************************/
static void usage(void) {
fprintf(stderr,"usage: %s [-V] [-n] [delay [count]]\n",PROGNAME);
fprintf(stderr," -V prints version.\n");
fprintf(stderr," -n causes the headers not to be reprinted regularly.\n");
2002-10-06 22:16:06 +05:30
fprintf(stderr," -a print inactive/active page stats.\n");
2002-02-02 04:17:29 +05:30
fprintf(stderr," delay is the delay between updates in seconds. \n");
fprintf(stderr," count is the number of updates.\n");
exit(EXIT_FAILURE);
}
2002-10-12 09:55:57 +05:30
static void crash(const char *filename) {
2002-02-02 04:17:29 +05:30
perror(filename);
exit(EXIT_FAILURE);
}
static int winhi(void) {
struct winsize win;
int rows = 24;
if (ioctl(1, TIOCGWINSZ, &win) != -1 && win.ws_row > 0)
rows = win.ws_row;
return rows;
}
static void showheader(void){
2002-10-06 22:16:06 +05:30
printf("%8s%28s%10s%12s%11s%9s\n",
2002-02-02 04:17:29 +05:30
"procs","memory","swap","io","system","cpu");
2002-10-06 22:16:06 +05:30
printf("%2s %2s %2s %6s %6s %6s %6s %4s %4s %5s %5s %4s %5s %2s %2s %2s\n",
"r","b","w","swpd","free",
a_option?"inact":"buff", a_option?"active":"cache",
"si","so","bi","bo",
2002-02-02 04:17:29 +05:30
"in","cs","us","sy","id");
}
2002-10-12 01:31:16 +05:30
static void getstat(jiff *cuse, jiff *cice, jiff *csys, jiff *cide, jiff *ciow,
2002-02-02 04:17:29 +05:30
unsigned *pin, unsigned *pout, unsigned *s_in, unsigned *sout,
unsigned *itot, unsigned *i1, unsigned *ct) {
static int Stat;
2002-10-06 22:43:29 +05:30
int need_extra_file = 0;
char* b;
buff[BUFFSIZE-1] = 0; /* ensure null termination in buffer */
if(Stat){
lseek(Stat, 0L, SEEK_SET);
}else{
Stat = open("/proc/stat", O_RDONLY, 0);
if(Stat == -1) crash("/proc/stat");
2002-02-02 04:17:29 +05:30
}
2002-10-06 22:43:29 +05:30
read(Stat,buff,BUFFSIZE-1);
*itot = 0;
*i1 = 1; /* ensure assert below will fail if the sscanf bombs */
*ciow = 0; /* not separated out until the 2.5.41 kernel */
b = strstr(buff, "cpu ");
2002-10-12 01:31:16 +05:30
if(b) sscanf(b, "cpu %Lu %Lu %Lu %Lu %Lu", cuse, cice, csys, cide, ciow);
2002-10-06 22:43:29 +05:30
b = strstr(buff, "page ");
if(b) sscanf(b, "page %u %u", pin, pout);
else need_extra_file = 1;
b = strstr(buff, "swap ");
if(b) sscanf(b, "swap %u %u", s_in, sout);
else need_extra_file = 1;
b = strstr(buff, "intr ");
if(b) sscanf(b, "intr %u %u", itot, i1);
b = strstr(buff, "ctxt ");
if(b) sscanf(b, "ctxt %u", ct);
if(need_extra_file){ /* 2.5.40-bk4 and above */
2002-10-06 22:16:06 +05:30
vminfo();
*pin = vm_pgpgin;
*pout = vm_pgpgout;
*s_in = vm_pswpin;
*sout = vm_pswpout;
2002-10-06 22:16:06 +05:30
}
2002-02-02 04:17:29 +05:30
}
static void getrunners(unsigned int *running, unsigned int *blocked,
unsigned int *swapped) {
static struct direct *ent;
static char filename[80];
static int fd;
static unsigned size;
static char c;
DIR *proc;
*running=0;
*blocked=0;
*swapped=0;
if ((proc=opendir("/proc"))==NULL) crash("/proc");
while((ent=readdir(proc))) {
if (isdigit(ent->d_name[0])) { /*just to weed out the obvious junk*/
sprintf(filename, "/proc/%s/stat", ent->d_name);
if ((fd = open(filename, O_RDONLY, 0)) != -1) { /*this weeds the rest*/
read(fd,buff,BUFFSIZE-1);
2002-10-06 22:16:06 +05:30
sscanf(
buff,
"%*d %*s %c "
"%*d %*d %*d %*d %*d %*u %*u"
" %*u %*u %*u %*d %*d %*d %*d %*d %*d %*u %*u %*d %*u %u"
/* " %*u %*u %*u %*u %*u %*u %*u %*u %*u %*u %*u\n" */ ,
&c,
&size
);
2002-02-02 04:17:29 +05:30
close(fd);
if (c=='R') {
if (size>0) (*running)++;
else (*swapped)++;
}
else if (c=='D') {
if (size>0) (*blocked)++;
else (*swapped)++;
}
}
}
}
closedir(proc);
#if 1
/* is this next line a good idea? It removes this thing which
uses (hopefully) little time, from the count of running processes */
(*running)--;
#endif
}
int main(int argc, char *argv[]) {
2002-10-06 22:16:06 +05:30
const char format[]="%2u %2u %2u %6u %6u %6u %6u %4u %4u %5u %5u %4u %5u %2u %2u %2u\n";
2002-02-02 04:17:29 +05:30
unsigned int height=22; /* window height, reset later if needed. */
#if 0
unsigned long int args[2]={0,0};
#endif
unsigned int moreheaders=TRUE;
unsigned int tog=0; /* toggle switch for cleaner code */
2002-10-27 16:05:13 +05:30
unsigned int i;
unsigned int hz = Hertz;
2002-02-02 04:17:29 +05:30
unsigned int running,blocked,swapped;
2002-10-06 22:16:06 +05:30
jiff cpu_use[2], cpu_nic[2], cpu_sys[2], cpu_idl[2], cpu_iow[2];
2002-02-02 04:17:29 +05:30
jiff duse,dsys,didl,Div,divo2;
unsigned int pgpgin[2], pgpgout[2], pswpin[2], pswpout[2];
unsigned int inter[2],ticks[2],ctxt[2];
unsigned int per=0, pero2;
unsigned long num=0;
unsigned int kb_per_page = sysconf(_SC_PAGESIZE) / 1024;
setlinebuf(stdout);
argc=0; /* redefined as number of integer arguments */
per=1;
num=0;
for (argv++;*argv;argv++) {
if ('-' ==(**argv)) {
switch (*(++(*argv))) {
2002-10-06 22:16:06 +05:30
case 'V':
2002-02-02 04:17:29 +05:30
display_version();
exit(0);
2002-10-06 22:16:06 +05:30
case 'a':
/* active/inactive mode */
a_option=1;
break;
2002-02-02 04:17:29 +05:30
case 'n':
/* print only one header */
moreheaders=FALSE;
2002-10-06 22:16:06 +05:30
break;
2002-02-02 04:17:29 +05:30
default:
/* no other aguments defined yet. */
usage();
}
} else {
argc++;
switch (argc) {
case 1:
if ((per = atoi(*argv)) == 0)
usage();
num = ULONG_MAX;
break;
case 2:
num = atol(*argv);
break;
default:
usage();
} /* switch */
}
}
if (moreheaders) {
int tmp=winhi()-3;
height=((tmp>0)?tmp:22);
}
pero2=(per/2);
showheader();
2002-10-12 01:31:16 +05:30
2002-02-02 04:17:29 +05:30
getrunners(&running,&blocked,&swapped);
meminfo();
2002-10-06 22:16:06 +05:30
getstat(cpu_use,cpu_nic,cpu_sys,cpu_idl,cpu_iow,
2002-02-02 04:17:29 +05:30
pgpgin,pgpgout,pswpin,pswpout,
inter,ticks,ctxt);
duse= *cpu_use + *cpu_nic;
2002-10-25 06:51:06 +05:30
dsys= *cpu_sys;
didl= *cpu_idl + *cpu_iow;
2002-02-02 04:17:29 +05:30
Div= duse+dsys+didl;
divo2= Div/2UL;
printf(format,
running,blocked,swapped,
2002-10-06 22:16:06 +05:30
kb_swap_used,kb_main_free,
a_option?kb_inactive:kb_main_buffers,
a_option?kb_active:kb_main_cached,
2002-10-12 01:31:16 +05:30
(unsigned)( (*pswpin * kb_per_page * hz + divo2) / Div ),
(unsigned)( (*pswpout * kb_per_page * hz + divo2) / Div ),
(unsigned)( (*pgpgin * hz + divo2) / Div ),
(unsigned)( (*pgpgout * hz + divo2) / Div ),
(unsigned)( (*inter * hz + divo2) / Div ),
(unsigned)( (*ctxt * hz + divo2) / Div ),
(unsigned)( (100*duse + divo2) / Div ),
(unsigned)( (100*dsys + divo2) / Div ),
(unsigned)( (100*didl + divo2) / Div )
2002-02-02 04:17:29 +05:30
);
for(i=1;i<num;i++) { /* \\\\\\\\\\\\\\\\\\\\ main loop ////////////////// */
sleep(per);
if (moreheaders && ((i%height)==0)) showheader();
tog= !tog;
2002-10-12 01:31:16 +05:30
2002-02-02 04:17:29 +05:30
getrunners(&running,&blocked,&swapped);
meminfo();
2002-10-06 22:16:06 +05:30
getstat(cpu_use+tog,cpu_nic+tog,cpu_sys+tog,cpu_idl+tog,cpu_iow+tog,
2002-02-02 04:17:29 +05:30
pgpgin+tog,pgpgout+tog,pswpin+tog,pswpout+tog,
inter+tog,ticks+tog,ctxt+tog);
duse= cpu_use[tog]-cpu_use[!tog] + cpu_nic[tog]-cpu_nic[!tog];
2002-10-25 06:51:06 +05:30
dsys= cpu_sys[tog]-cpu_sys[!tog];
didl= cpu_idl[tog]-cpu_idl[!tog] + cpu_iow[tog]-cpu_iow[!tog];
2002-02-02 04:17:29 +05:30
/* idle can run backwards for a moment -- kernel "feature" */
if(cpu_idl[tog]<cpu_idl[!tog]) didl=0;
Div= duse+dsys+didl;
divo2= Div/2UL;
printf(format,
running,blocked,swapped,
2002-10-12 01:31:16 +05:30
kb_swap_used,kb_main_free,
a_option?kb_inactive:kb_main_buffers,
a_option?kb_inactive:kb_main_cached,
(unsigned)( ( (pswpin [tog] - pswpin [!tog])*kb_per_page+pero2 )/per ),
(unsigned)( ( (pswpout[tog] - pswpout[!tog])*kb_per_page+pero2 )/per ),
(unsigned)( ( pgpgin [tog] - pgpgin [!tog] +pero2 )/per ),
(unsigned)( ( pgpgout[tog] - pgpgout[!tog] +pero2 )/per ),
(unsigned)( ( inter [tog] - inter [!tog] +pero2 )/per ),
(unsigned)( ( ctxt [tog] - ctxt [!tog] +pero2 )/per ),
(unsigned)( (100*duse+divo2)/Div ),
(unsigned)( (100*dsys+divo2)/Div ),
(unsigned)( (100*didl+divo2)/Div )
2002-02-02 04:17:29 +05:30
);
}
exit(EXIT_SUCCESS);
}