main.c revision 1.20 1 /* $NetBSD: main.c,v 1.20 1999/12/20 03:45:02 jwise Exp $ */
2
3 /*-
4 * Copyright (c) 1980, 1992, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36 #include <sys/cdefs.h>
37 #ifndef lint
38 __COPYRIGHT("@(#) Copyright (c) 1980, 1992, 1993\n\
39 The Regents of the University of California. All rights reserved.\n");
40 #if 0
41 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93";
42 #endif
43 __RCSID("$NetBSD: main.c,v 1.20 1999/12/20 03:45:02 jwise Exp $");
44 #endif /* not lint */
45
46 #include <sys/param.h>
47
48 #include <err.h>
49 #include <limits.h>
50 #include <nlist.h>
51 #include <signal.h>
52 #include <stdio.h>
53 #include <string.h>
54 #include <unistd.h>
55 #include <stdlib.h>
56 #include <ctype.h>
57
58 #include "systat.h"
59 #include "extern.h"
60
61 static struct nlist namelist[] = {
62 #define X_FIRST 0
63 #define X_HZ 0
64 { "_hz" },
65 #define X_STATHZ 1
66 { "_stathz" },
67 { "" }
68 };
69 static int dellave;
70
71 kvm_t *kd;
72 char *memf = NULL;
73 char *nlistf = NULL;
74 sig_t sigtstpdfl;
75 double avenrun[3];
76 int col;
77 int naptime = 5;
78 int verbose = 1; /* to report kvm read errs */
79 int hz, stathz;
80 char c;
81 char *namp;
82 char hostname[MAXHOSTNAMELEN + 1];
83 WINDOW *wnd;
84 int CMDLINE;
85
86 static WINDOW *wload; /* one line window for load average */
87
88 static void usage __P((void));
89 int main __P((int, char **));
90
91 gid_t egid; /* XXX needed by initiostat() and initkre() */
92
93 int
94 main(argc, argv)
95 int argc;
96 char **argv;
97 {
98 int ch;
99 char errbuf[_POSIX2_LINE_MAX];
100
101 egid = getegid();
102 (void)setegid(getgid());
103 while ((ch = getopt(argc, argv, "M:N:w:")) != -1)
104 switch(ch) {
105 case 'M':
106 memf = optarg;
107 break;
108 case 'N':
109 nlistf = optarg;
110 break;
111 case 'w':
112 if ((naptime = atoi(optarg)) <= 0)
113 errx(1, "interval <= 0.");
114 break;
115 case '?':
116 default:
117 usage();
118 }
119 argc -= optind;
120 argv += optind;
121
122
123 for ( ; argc > 0; argc--, argv++) {
124 struct mode *p;
125 int modefound = 0;
126
127 if (isdigit(argv[0][0])) {
128 naptime = atoi(argv[0]);
129 if (naptime <= 0)
130 naptime = 5;
131 continue;
132 }
133
134 for (p = modes; p->c_name ; p++) {
135 if (strcmp(argv[0], p->c_name) == 0) {
136 curmode = p;
137 modefound++;
138 break;
139 }
140 }
141
142 if (!modefound)
143 error("%s: Unknown command.", argv[0]);
144 }
145
146 /*
147 * Discard setgid privileges. If not the running kernel, we toss
148 * them away totally so that bad guys can't print interesting stuff
149 * from kernel memory, otherwise switch back to kmem for the
150 * duration of the kvm_openfiles() call.
151 */
152 if (nlistf != NULL || memf != NULL)
153 (void)setgid(getgid());
154 else
155 (void)setegid(egid);
156
157 kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
158 if (kd == NULL) {
159 error("%s", errbuf);
160 exit(1);
161 }
162
163 /* Get rid of privs for now. */
164 if (nlistf == NULL && memf == NULL)
165 (void)setegid(getgid());
166
167 if (kvm_nlist(kd, namelist)) {
168 nlisterr(namelist);
169 exit(1);
170 }
171 if (namelist[X_FIRST].n_type == 0)
172 errx(1, "couldn't read namelist");
173 signal(SIGINT, die);
174 signal(SIGQUIT, die);
175 signal(SIGTERM, die);
176 signal(SIGWINCH, redraw);
177
178 /*
179 * Initialize display. Load average appears in a one line
180 * window of its own. Current command's display appears in
181 * an overlapping sub-window of stdscr configured by the display
182 * routines to minimize update work by curses.
183 */
184 if (initscr() == NULL)
185 {
186 warnx("couldn't initialize screen");
187 exit(0);
188 }
189
190 CMDLINE = LINES - 1;
191 wnd = (*curmode->c_open)();
192 if (wnd == NULL) {
193 warnx("couldn't initialize display");
194 die(0);
195 }
196 wload = newwin(1, 0, 3, 20);
197 if (wload == NULL) {
198 warnx("couldn't set up load average window");
199 die(0);
200 }
201 gethostname(hostname, sizeof (hostname));
202 hostname[sizeof(hostname) - 1] = '\0';
203 NREAD(X_HZ, &hz, sizeof hz);
204 NREAD(X_STATHZ, &stathz, sizeof stathz);
205 (*curmode->c_init)();
206 curmode->c_flags |= CF_INIT;
207 labels();
208
209 dellave = 0.0;
210
211 signal(SIGALRM, display);
212 display(0);
213 noecho();
214 crmode();
215 keyboard();
216 /*NOTREACHED*/
217 }
218
219 static void
220 usage()
221 {
222 fprintf(stderr, "usage: systat [-M core] [-N system] [-w wait] "
223 "[display] [refresh-interval]\n");
224 exit(1);
225 }
226
227
228 void
229 labels()
230 {
231 if (curmode->c_flags & CF_LOADAV) {
232 mvaddstr(2, 20,
233 "/0 /1 /2 /3 /4 /5 /6 /7 /8 /9 /10");
234 mvaddstr(3, 5, "Load Average");
235 }
236 (*curmode->c_label)();
237 #ifdef notdef
238 mvprintw(21, 25, "CPU usage on %s", hostname);
239 #endif
240 refresh();
241 }
242
243 void
244 display(signo)
245 int signo;
246 {
247 int i, j;
248
249 /* Get the load average over the last minute. */
250 (void)getloadavg(avenrun, sizeof(avenrun) / sizeof(avenrun[0]));
251 (*curmode->c_fetch)();
252 if (curmode->c_flags & CF_LOADAV) {
253 j = 5.0*avenrun[0] + 0.5;
254 dellave -= avenrun[0];
255 if (dellave >= 0.0)
256 c = '<';
257 else {
258 c = '>';
259 dellave = -dellave;
260 }
261 if (dellave < 0.1)
262 c = '|';
263 dellave = avenrun[0];
264 wmove(wload, 0, 0); wclrtoeol(wload);
265 for (i = (j > 50) ? 50 : j; i > 0; i--)
266 waddch(wload, c);
267 if (j > 50)
268 wprintw(wload, " %4.1f", avenrun[0]);
269 }
270 (*curmode->c_refresh)();
271 if (curmode->c_flags & CF_LOADAV)
272 wrefresh(wload);
273 wrefresh(wnd);
274 move(CMDLINE, col);
275 refresh();
276 alarm(naptime);
277 }
278
279 void
280 redraw(signo)
281 int signo;
282 {
283 sigset_t set;
284
285 sigemptyset(&set);
286 sigaddset(&set, SIGALRM);
287 sigprocmask(SIG_BLOCK, &set, NULL);
288 wrefresh(curscr);
289 refresh();
290 sigprocmask(SIG_UNBLOCK, &set, NULL);
291 }
292
293 void
294 die(signo)
295 int signo;
296 {
297 move(CMDLINE, 0);
298 clrtoeol();
299 refresh();
300 endwin();
301 exit(0);
302 }
303
304 #if __STDC__
305 #include <stdarg.h>
306 #else
307 #include <varargs.h>
308 #endif
309
310 #if __STDC__
311 void
312 error(const char *fmt, ...)
313 #else
314 void
315 error(fmt, va_alist)
316 char *fmt;
317 va_dcl
318 #endif
319 {
320 va_list ap;
321 char buf[255];
322 int oy, ox;
323 #if __STDC__
324 va_start(ap, fmt);
325 #else
326 va_start(ap);
327 #endif
328
329 if (wnd) {
330 getyx(stdscr, oy, ox);
331 (void) vsprintf(buf, fmt, ap);
332 clrtoeol();
333 standout();
334 mvaddstr(CMDLINE, 0, buf);
335 standend();
336 move(oy, ox);
337 refresh();
338 } else {
339 (void) vfprintf(stderr, fmt, ap);
340 fprintf(stderr, "\n");
341 }
342 va_end(ap);
343 }
344
345 void
346 nlisterr(namelist)
347 struct nlist namelist[];
348 {
349 int i, n;
350
351 n = 0;
352 clear();
353 mvprintw(2, 10, "systat: nlist: can't find following symbols:");
354 for (i = 0;
355 namelist[i].n_name != NULL && *namelist[i].n_name != '\0'; i++)
356 if (namelist[i].n_value == 0)
357 mvprintw(2 + ++n, 10, "%s", namelist[i].n_name);
358 move(CMDLINE, 0);
359 clrtoeol();
360 refresh();
361 endwin();
362 exit(1);
363 }
364