Home | History | Annotate | Line # | Download | only in systat
main.c revision 1.51
      1  1.51       mrg /*	$NetBSD: main.c,v 1.51 2016/12/03 03:26:27 mrg Exp $	*/
      2   1.2       jtc 
      3   1.1       jtc /*-
      4   1.1       jtc  * Copyright (c) 1980, 1992, 1993
      5   1.1       jtc  *	The Regents of the University of California.  All rights reserved.
      6   1.1       jtc  *
      7   1.1       jtc  * Redistribution and use in source and binary forms, with or without
      8   1.1       jtc  * modification, are permitted provided that the following conditions
      9   1.1       jtc  * are met:
     10   1.1       jtc  * 1. Redistributions of source code must retain the above copyright
     11   1.1       jtc  *    notice, this list of conditions and the following disclaimer.
     12   1.1       jtc  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       jtc  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       jtc  *    documentation and/or other materials provided with the distribution.
     15  1.35       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       jtc  *    may be used to endorse or promote products derived from this software
     17   1.1       jtc  *    without specific prior written permission.
     18   1.1       jtc  *
     19   1.1       jtc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       jtc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       jtc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       jtc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       jtc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       jtc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       jtc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       jtc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       jtc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       jtc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       jtc  * SUCH DAMAGE.
     30   1.1       jtc  */
     31   1.1       jtc 
     32  1.11       mrg #include <sys/cdefs.h>
     33   1.1       jtc #ifndef lint
     34  1.43     lukem __COPYRIGHT("@(#) Copyright (c) 1980, 1992, 1993\
     35  1.43     lukem  The Regents of the University of California.  All rights reserved.");
     36   1.2       jtc #if 0
     37   1.1       jtc static char sccsid[] = "@(#)main.c	8.1 (Berkeley) 6/6/93";
     38   1.2       jtc #endif
     39  1.51       mrg __RCSID("$NetBSD: main.c,v 1.51 2016/12/03 03:26:27 mrg Exp $");
     40   1.1       jtc #endif /* not lint */
     41   1.1       jtc 
     42   1.1       jtc #include <sys/param.h>
     43  1.47  christos #include <sys/sysctl.h>
     44  1.47  christos #include <sys/ioctl.h>
     45   1.1       jtc 
     46  1.28    simonb #include <ctype.h>
     47   1.4   mycroft #include <err.h>
     48  1.47  christos #include <errno.h>
     49  1.10  explorer #include <limits.h>
     50   1.1       jtc #include <signal.h>
     51  1.28    simonb #include <stdarg.h>
     52   1.1       jtc #include <stdio.h>
     53  1.28    simonb #include <stdlib.h>
     54   1.5       cgd #include <string.h>
     55   1.8   thorpej #include <unistd.h>
     56  1.31       dsl #include <termios.h>
     57   1.4   mycroft 
     58   1.1       jtc #include "systat.h"
     59   1.1       jtc #include "extern.h"
     60   1.1       jtc 
     61   1.1       jtc static int     dellave;
     62   1.1       jtc 
     63   1.1       jtc kvm_t *kd;
     64   1.8   thorpej char	*memf = NULL;
     65   1.8   thorpej char	*nlistf = NULL;
     66   1.1       jtc sig_t	sigtstpdfl;
     67   1.1       jtc double avenrun[3];
     68   1.1       jtc int     col;
     69  1.50  christos double	naptime = 5;
     70   1.1       jtc int     verbose = 1;                    /* to report kvm read errs */
     71  1.29      matt int     hz, stathz, maxslp;
     72   1.1       jtc char    c;
     73   1.1       jtc char    *namp;
     74  1.13       mrg char    hostname[MAXHOSTNAMELEN + 1];
     75   1.1       jtc WINDOW  *wnd;
     76   1.1       jtc int     CMDLINE;
     77  1.27   hubertf int     turns = 2;	/* stay how many refresh-turns in 'all' mode? */
     78  1.27   hubertf int     allflag;
     79  1.27   hubertf int     allcounter;
     80  1.41  christos sig_atomic_t needsredraw = 0;
     81   1.1       jtc 
     82   1.1       jtc static	WINDOW *wload;			/* one line window for load average */
     83   1.1       jtc 
     84  1.31       dsl static void (*sv_stop_handler)(int);
     85  1.31       dsl 
     86  1.31       dsl static void stop(int);
     87  1.46     joerg __dead static void usage(void);
     88   1.8   thorpej 
     89  1.15  drochner gid_t egid; /* XXX needed by initiostat() and initkre() */
     90  1.15  drochner 
     91   1.7       jtc int
     92  1.26        ad main(int argc, char **argv)
     93   1.1       jtc {
     94   1.8   thorpej 	int ch;
     95  1.10  explorer 	char errbuf[_POSIX2_LINE_MAX];
     96  1.44       apb 	const char *all;
     97  1.47  christos 	struct clockinfo clk;
     98  1.47  christos 	size_t len;
     99  1.51       mrg 	int bflag = 0;
    100   1.1       jtc 
    101  1.44       apb 	all = "all";
    102  1.15  drochner 	egid = getegid();
    103  1.13       mrg 	(void)setegid(getgid());
    104  1.21     jwise 
    105  1.27   hubertf 	while ((ch = getopt(argc, argv, "M:N:nw:t:")) != -1)
    106   1.8   thorpej 		switch(ch) {
    107   1.9    scottr 		case 'M':
    108   1.9    scottr 			memf = optarg;
    109   1.9    scottr 			break;
    110   1.9    scottr 		case 'N':
    111   1.9    scottr 			nlistf = optarg;
    112   1.9    scottr 			break;
    113  1.23    itojun 		case 'n':
    114  1.23    itojun 			nflag = !nflag;
    115  1.23    itojun 			break;
    116   1.9    scottr 		case 'w':
    117  1.50  christos 			if ((naptime = strtod(optarg, NULL)) <= 0)
    118   1.9    scottr 				errx(1, "interval <= 0.");
    119   1.9    scottr 			break;
    120  1.27   hubertf 		case 't':
    121  1.27   hubertf 			if ((turns = atoi(optarg)) <= 0)
    122  1.27   hubertf 				errx(1, "turns <= 0.");
    123  1.27   hubertf 			break;
    124  1.51       mrg 		case 'b':
    125  1.51       mrg 			bflag = !bflag;
    126  1.51       mrg 			break;
    127   1.9    scottr 		case '?':
    128   1.9    scottr 		default:
    129   1.9    scottr 			usage();
    130   1.9    scottr 		}
    131   1.9    scottr 	argc -= optind;
    132   1.9    scottr 	argv += optind;
    133   1.8   thorpej 
    134  1.19     jwise 
    135  1.19     jwise 	for ( ; argc > 0; argc--, argv++) {
    136  1.19     jwise 		struct mode *p;
    137  1.20     jwise 		int modefound = 0;
    138  1.19     jwise 
    139  1.38       dsl 		if (isdigit((unsigned char)argv[0][0])) {
    140  1.50  christos 			naptime = strtod(argv[0], NULL);
    141   1.8   thorpej 			if (naptime <= 0)
    142   1.8   thorpej 				naptime = 5;
    143  1.19     jwise 			continue;
    144  1.19     jwise 		}
    145   1.1       jtc 
    146  1.19     jwise 		for (p = modes; p->c_name ; p++) {
    147  1.24     jwise 			if (strstr(p->c_name, argv[0]) == p->c_name) {
    148  1.19     jwise 				curmode = p;
    149  1.20     jwise 				modefound++;
    150  1.19     jwise 				break;
    151  1.19     jwise 			}
    152  1.27   hubertf 
    153  1.44       apb 			if (strstr(all, argv[0]) == all) {
    154  1.27   hubertf 				allcounter=0;
    155  1.27   hubertf 				allflag=1;
    156  1.27   hubertf 			}
    157   1.1       jtc 		}
    158  1.19     jwise 
    159  1.27   hubertf 
    160  1.27   hubertf 		if (!modefound && !allflag)
    161  1.19     jwise 			error("%s: Unknown command.", argv[0]);
    162   1.1       jtc 	}
    163  1.13       mrg 
    164  1.15  drochner 	/*
    165  1.15  drochner 	 * Discard setgid privileges.  If not the running kernel, we toss
    166  1.15  drochner 	 * them away totally so that bad guys can't print interesting stuff
    167  1.15  drochner 	 * from kernel memory, otherwise switch back to kmem for the
    168  1.15  drochner 	 * duration of the kvm_openfiles() call.
    169  1.15  drochner 	 */
    170  1.15  drochner 	if (nlistf != NULL || memf != NULL)
    171  1.15  drochner 		(void)setgid(getgid());
    172  1.15  drochner 	else
    173  1.15  drochner 		(void)setegid(egid);
    174  1.15  drochner 
    175   1.8   thorpej 	kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
    176   1.1       jtc 	if (kd == NULL) {
    177   1.1       jtc 		error("%s", errbuf);
    178   1.1       jtc 		exit(1);
    179   1.1       jtc 	}
    180  1.15  drochner 
    181  1.15  drochner 	/* Get rid of privs for now. */
    182  1.13       mrg 	if (nlistf == NULL && memf == NULL)
    183  1.15  drochner 		(void)setegid(getgid());
    184  1.15  drochner 
    185   1.1       jtc 	signal(SIGINT, die);
    186   1.1       jtc 	signal(SIGQUIT, die);
    187   1.1       jtc 	signal(SIGTERM, die);
    188  1.31       dsl 	sv_stop_handler = signal(SIGTSTP, stop);
    189   1.1       jtc 
    190   1.1       jtc 	/*
    191   1.1       jtc 	 * Initialize display.  Load average appears in a one line
    192   1.1       jtc 	 * window of its own.  Current command's display appears in
    193   1.1       jtc 	 * an overlapping sub-window of stdscr configured by the display
    194   1.1       jtc 	 * routines to minimize update work by curses.
    195   1.1       jtc 	 */
    196   1.6       jtc 	if (initscr() == NULL)
    197   1.6       jtc 	{
    198   1.6       jtc 		warnx("couldn't initialize screen");
    199   1.6       jtc 		exit(0);
    200   1.6       jtc 	}
    201   1.6       jtc 
    202   1.1       jtc 	CMDLINE = LINES - 1;
    203  1.18     jwise 	wnd = (*curmode->c_open)();
    204   1.1       jtc 	if (wnd == NULL) {
    205   1.4   mycroft 		warnx("couldn't initialize display");
    206   1.1       jtc 		die(0);
    207   1.1       jtc 	}
    208   1.1       jtc 	wload = newwin(1, 0, 3, 20);
    209   1.1       jtc 	if (wload == NULL) {
    210   1.4   mycroft 		warnx("couldn't set up load average window");
    211   1.1       jtc 		die(0);
    212   1.1       jtc 	}
    213   1.1       jtc 	gethostname(hostname, sizeof (hostname));
    214  1.13       mrg 	hostname[sizeof(hostname) - 1] = '\0';
    215  1.47  christos 
    216  1.47  christos 	len = sizeof(clk);
    217  1.47  christos 	if (sysctlbyname("kern.clockrate", &clk, &len, NULL, 0))
    218  1.47  christos 		error("can't get \"kern.clockrate\": %s", strerror(errno));
    219  1.47  christos 	hz = clk.hz;
    220  1.47  christos 	stathz = clk.stathz;
    221  1.47  christos 
    222  1.47  christos 	len = sizeof(maxslp);
    223  1.47  christos 	if (sysctlbyname("vm.maxslp", &maxslp, &len, NULL, 0))
    224  1.47  christos 		error("can't get \"vm.maxslp\": %s", strerror(errno));
    225  1.47  christos 
    226  1.18     jwise 	(*curmode->c_init)();
    227  1.18     jwise 	curmode->c_flags |= CF_INIT;
    228   1.1       jtc 	labels();
    229   1.1       jtc 
    230   1.1       jtc 	dellave = 0.0;
    231   1.1       jtc 
    232   1.1       jtc 	display(0);
    233  1.51       mrg 	if (!bflag) {
    234  1.51       mrg 		noecho();
    235  1.51       mrg 		cbreak();
    236  1.51       mrg 		keyboard();
    237  1.51       mrg 	} else
    238  1.51       mrg 		die(0);
    239   1.1       jtc 	/*NOTREACHED*/
    240   1.1       jtc }
    241   1.8   thorpej 
    242   1.8   thorpej static void
    243  1.26        ad usage(void)
    244   1.8   thorpej {
    245  1.23    itojun 	fprintf(stderr, "usage: systat [-n] [-M core] [-N system] [-w wait] "
    246  1.27   hubertf 		"[-t turns]\n\t\t[display] [refresh-interval]\n");
    247   1.8   thorpej 	exit(1);
    248   1.8   thorpej }
    249   1.8   thorpej 
    250   1.1       jtc 
    251   1.1       jtc void
    252  1.26        ad labels(void)
    253   1.1       jtc {
    254  1.18     jwise 	if (curmode->c_flags & CF_LOADAV) {
    255   1.1       jtc 		mvaddstr(2, 20,
    256   1.1       jtc 		    "/0   /1   /2   /3   /4   /5   /6   /7   /8   /9   /10");
    257   1.1       jtc 		mvaddstr(3, 5, "Load Average");
    258   1.1       jtc 	}
    259  1.18     jwise 	(*curmode->c_label)();
    260   1.1       jtc #ifdef notdef
    261   1.1       jtc 	mvprintw(21, 25, "CPU usage on %s", hostname);
    262   1.1       jtc #endif
    263   1.1       jtc 	refresh();
    264   1.1       jtc }
    265   1.1       jtc 
    266   1.1       jtc void
    267  1.26        ad display(int signo)
    268   1.1       jtc {
    269  1.45       dsl 	static int skip;
    270  1.25   mycroft 	int j;
    271  1.27   hubertf 	struct mode *p;
    272  1.45       dsl 	int ms_delay;
    273  1.45       dsl 
    274  1.45       dsl 	if (signo == SIGALRM && skip-- > 0)
    275  1.45       dsl 		/* Don't display on this timeout */
    276  1.45       dsl 		return;
    277  1.22     jwise 
    278   1.1       jtc 	/* Get the load average over the last minute. */
    279  1.14       mrg 	(void)getloadavg(avenrun, sizeof(avenrun) / sizeof(avenrun[0]));
    280  1.18     jwise 	(*curmode->c_fetch)();
    281  1.18     jwise 	if (curmode->c_flags & CF_LOADAV) {
    282   1.1       jtc 		j = 5.0*avenrun[0] + 0.5;
    283   1.1       jtc 		dellave -= avenrun[0];
    284   1.1       jtc 		if (dellave >= 0.0)
    285   1.1       jtc 			c = '<';
    286   1.1       jtc 		else {
    287   1.1       jtc 			c = '>';
    288   1.1       jtc 			dellave = -dellave;
    289   1.1       jtc 		}
    290   1.1       jtc 		if (dellave < 0.1)
    291   1.1       jtc 			c = '|';
    292   1.1       jtc 		dellave = avenrun[0];
    293  1.25   mycroft 		wmove(wload, 0, 0);
    294  1.25   mycroft 		wclrtoeol(wload);
    295  1.25   mycroft 		whline(wload, c, (j > 50) ? 50 : j);
    296   1.1       jtc 		if (j > 50)
    297   1.1       jtc 			wprintw(wload, " %4.1f", avenrun[0]);
    298   1.1       jtc 	}
    299  1.18     jwise 	(*curmode->c_refresh)();
    300  1.18     jwise 	if (curmode->c_flags & CF_LOADAV)
    301   1.1       jtc 		wrefresh(wload);
    302   1.1       jtc 	wrefresh(wnd);
    303   1.1       jtc 	move(CMDLINE, col);
    304   1.1       jtc 	refresh();
    305  1.27   hubertf 
    306  1.27   hubertf 	if (allflag && signo==SIGALRM) {
    307  1.27   hubertf 		if (allcounter >= turns){
    308  1.27   hubertf 			p = curmode;
    309  1.27   hubertf 			p++;
    310  1.27   hubertf 			if (p->c_name == NULL)
    311  1.27   hubertf 				p = modes;
    312  1.27   hubertf 			switch_mode(p);
    313  1.27   hubertf 			allcounter=0;
    314  1.27   hubertf 		} else
    315  1.27   hubertf 			allcounter++;
    316  1.45       dsl 	}
    317  1.27   hubertf 
    318  1.45       dsl 	/* curses timeout() uses VTIME, limited to 255 1/10th secs */
    319  1.45       dsl 	ms_delay = naptime * 1000;
    320  1.45       dsl 	if (ms_delay < 25500) {
    321  1.45       dsl 		timeout(ms_delay);
    322  1.45       dsl 		skip = 0;
    323  1.45       dsl 	} else {
    324  1.45       dsl 		skip = ms_delay / 25500;
    325  1.45       dsl 		timeout(ms_delay / (skip + 1));
    326  1.45       dsl 	}
    327   1.9    scottr }
    328   1.9    scottr 
    329   1.9    scottr void
    330  1.41  christos redraw(void)
    331   1.9    scottr {
    332  1.36   mycroft 	resizeterm(LINES, COLS);
    333  1.36   mycroft 	CMDLINE = LINES - 1;
    334  1.36   mycroft 	labels();
    335  1.31       dsl 
    336  1.31       dsl 	display(0);
    337  1.41  christos 	needsredraw = 0;
    338  1.31       dsl }
    339  1.31       dsl 
    340  1.31       dsl static void
    341  1.31       dsl stop(int signo)
    342  1.31       dsl {
    343  1.31       dsl 	sigset_t set;
    344  1.31       dsl 
    345  1.31       dsl 	signal(SIGTSTP, sv_stop_handler);
    346  1.31       dsl 	/* unblock SIGTSTP */
    347  1.31       dsl 	sigemptyset(&set);
    348  1.31       dsl 	sigaddset(&set, SIGTSTP);
    349   1.9    scottr 	sigprocmask(SIG_UNBLOCK, &set, NULL);
    350  1.31       dsl 	/* stop ourselves */
    351  1.31       dsl 	kill(0, SIGTSTP);
    352  1.31       dsl 	/* must have been restarted */
    353  1.32       dsl 	signal(SIGTSTP, stop);
    354  1.41  christos 	needsredraw = signo;
    355   1.1       jtc }
    356   1.1       jtc 
    357   1.1       jtc void
    358  1.26        ad die(int signo)
    359   1.1       jtc {
    360   1.1       jtc 	move(CMDLINE, 0);
    361   1.1       jtc 	clrtoeol();
    362   1.1       jtc 	refresh();
    363   1.1       jtc 	endwin();
    364   1.1       jtc 	exit(0);
    365   1.1       jtc }
    366   1.1       jtc 
    367   1.1       jtc void
    368   1.1       jtc error(const char *fmt, ...)
    369   1.1       jtc {
    370   1.1       jtc 	va_list ap;
    371   1.1       jtc 	char buf[255];
    372   1.1       jtc 	int oy, ox;
    373  1.26        ad 
    374   1.1       jtc 	va_start(ap, fmt);
    375   1.1       jtc 
    376   1.1       jtc 	if (wnd) {
    377   1.1       jtc 		getyx(stdscr, oy, ox);
    378  1.21     jwise 		(void) vsnprintf(buf, sizeof(buf), fmt, ap);
    379   1.1       jtc 		clrtoeol();
    380   1.1       jtc 		standout();
    381   1.1       jtc 		mvaddstr(CMDLINE, 0, buf);
    382   1.1       jtc 		standend();
    383   1.1       jtc 		move(oy, ox);
    384   1.1       jtc 		refresh();
    385   1.1       jtc 	} else {
    386   1.1       jtc 		(void) vfprintf(stderr, fmt, ap);
    387   1.1       jtc 		fprintf(stderr, "\n");
    388   1.1       jtc 	}
    389   1.1       jtc 	va_end(ap);
    390   1.1       jtc }
    391   1.1       jtc 
    392   1.1       jtc void
    393  1.49       mrg clearerror(void)
    394  1.49       mrg {
    395  1.49       mrg 
    396  1.49       mrg 	error("%s", "");
    397  1.49       mrg }
    398  1.49       mrg 
    399  1.49       mrg void
    400  1.39       dsl nlisterr(struct nlist name_list[])
    401   1.1       jtc {
    402   1.1       jtc 	int i, n;
    403   1.1       jtc 
    404   1.1       jtc 	n = 0;
    405   1.1       jtc 	clear();
    406   1.1       jtc 	mvprintw(2, 10, "systat: nlist: can't find following symbols:");
    407   1.1       jtc 	for (i = 0;
    408  1.39       dsl 	    name_list[i].n_name != NULL && *name_list[i].n_name != '\0'; i++)
    409  1.39       dsl 		if (name_list[i].n_value == 0)
    410  1.39       dsl 			mvprintw(2 + ++n, 10, "%s", name_list[i].n_name);
    411   1.1       jtc 	move(CMDLINE, 0);
    412   1.1       jtc 	clrtoeol();
    413   1.1       jtc 	refresh();
    414  1.34  jdolecek 	sleep(5);
    415   1.1       jtc 	endwin();
    416   1.1       jtc 	exit(1);
    417   1.1       jtc }
    418