[BACK]Return to main.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / systat

Annotation of src/usr.bin/systat/main.c, Revision 1.64

1.64    ! benno       1: /* $Id: main.c,v 1.63 2015/04/18 18:28:38 deraadt Exp $         */
1.38      canacar     2: /*
                      3:  * Copyright (c) 2001, 2007 Can Erkin Acar
                      4:  * Copyright (c) 2001 Daniel Hartmeier
                      5:  * All rights reserved.
1.1       deraadt     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.38      canacar    11:  *    - Redistributions of source code must retain the above copyright
                     12:  *      notice, this list of conditions and the following disclaimer.
                     13:  *    - Redistributions in binary form must reproduce the above
                     14:  *      copyright notice, this list of conditions and the following
                     15:  *      disclaimer in the documentation and/or other materials provided
                     16:  *      with the distribution.
                     17:  *
                     18:  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
                     19:  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
                     20:  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
                     21:  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
                     22:  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
                     23:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
                     24:  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
                     25:  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
                     26:  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     27:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
                     28:  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
                     29:  * POSSIBILITY OF SUCH DAMAGE.
                     30:  *
1.1       deraadt    31:  */
                     32:
1.38      canacar    33: #include <sys/types.h>
1.21      deraadt    34: #include <sys/sysctl.h>
1.1       deraadt    35:
1.38      canacar    36:
                     37: #include <ctype.h>
                     38: #include <curses.h>
1.1       deraadt    39: #include <err.h>
1.38      canacar    40: #include <errno.h>
                     41: #include <fcntl.h>
                     42: #include <limits.h>
                     43: #include <netdb.h>
1.1       deraadt    44: #include <signal.h>
                     45: #include <stdio.h>
1.38      canacar    46: #include <stdlib.h>
1.1       deraadt    47: #include <string.h>
1.38      canacar    48: #include <stdarg.h>
1.3       deraadt    49: #include <unistd.h>
1.35      deraadt    50: #include <utmp.h>
1.1       deraadt    51:
1.38      canacar    52: #include "engine.h"
1.1       deraadt    53: #include "systat.h"
                     54:
1.58      lum        55: #define TIMEPOS 55
                     56:
1.21      deraadt    57: double dellave;
1.1       deraadt    58:
1.21      deraadt    59: kvm_t  *kd;
                     60: char   *nlistf = NULL;
1.20      pvalchev   61: char   *memf = NULL;
1.21      deraadt    62: double avenrun[3];
1.36      tedu       63: double naptime = 5.0;
1.21      deraadt    64: int    verbose = 1;            /* to report kvm read errs */
1.38      canacar    65: int    nflag = 1;
1.35      deraadt    66: int    ut, hz, stathz;
1.61      deraadt    67: char    hostname[HOST_NAME_MAX+1];
1.1       deraadt    68: WINDOW  *wnd;
1.32      deraadt    69: int    CMDLINE;
1.58      lum        70: char   timebuf[26];
                     71: char   uloadbuf[TIMEPOS];
1.1       deraadt    72:
1.38      canacar    73:
1.50      canacar    74: int  ucount(void);
                     75: void usage(void);
                     76:
1.38      canacar    77: /* command prompt */
                     78:
1.46      canacar    79: void cmd_delay(const char *);
                     80: void cmd_count(const char *);
                     81: void cmd_compat(const char *);
1.38      canacar    82:
                     83: struct command cm_compat = {"Command", cmd_compat};
                     84: struct command cm_delay = {"Seconds to delay", cmd_delay};
                     85: struct command cm_count = {"Number of lines to display", cmd_count};
1.1       deraadt    86:
1.38      canacar    87:
                     88: /* display functions */
1.3       deraadt    89:
1.2       deraadt    90: int
1.38      canacar    91: print_header(void)
1.1       deraadt    92: {
1.50      canacar    93:        time_t now;
1.40      deraadt    94:        int start = dispstart + 1, end = dispstart + maxprint;
1.58      lum        95:        char tmpbuf[TIMEPOS];
                     96:        char header[MAX_LINE_BUF];
1.38      canacar    97:
                     98:        if (end > num_disp)
                     99:                end = num_disp;
                    100:
                    101:        tb_start();
1.35      deraadt   102:
1.58      lum       103:        if (!paused) {
                    104:                getloadavg(avenrun, sizeof(avenrun) / sizeof(avenrun[0]));
1.38      canacar   105:
1.58      lum       106:                snprintf(uloadbuf, sizeof(uloadbuf),
                    107:                    "%5d users    Load %.2f %.2f %.2f",
                    108:                    ucount(), avenrun[0], avenrun[1], avenrun[2]);
1.25      deraadt   109:
1.58      lum       110:                time(&now);
                    111:                strlcpy(timebuf, ctime(&now), sizeof(timebuf));
                    112:        }
1.25      deraadt   113:
1.58      lum       114:        if (num_disp && (start > 1 || end != num_disp))
                    115:                snprintf(tmpbuf, sizeof(tmpbuf),
                    116:                    "%s (%u-%u of %u) %s", uloadbuf, start, end, num_disp,
                    117:                    paused ? "PAUSED" : "");
                    118:        else
                    119:                snprintf(tmpbuf, sizeof(tmpbuf),
                    120:                    "%s %s", uloadbuf,
                    121:                    paused ? "PAUSED" : "");
                    122:
                    123:        snprintf(header, sizeof(header), "%-55s%s", tmpbuf, timebuf);
                    124:
                    125:        if (rawmode)
                    126:                printf("\n\n%s\n", header);
                    127:        else
                    128:                mvprintw(0, 0, "%s", header);
1.24      deraadt   129:
1.38      canacar   130:        return (1);
1.1       deraadt   131: }
1.3       deraadt   132:
1.38      canacar   133: /* compatibility functions, rearrange later */
1.21      deraadt   134: void
1.38      canacar   135: error(const char *fmt, ...)
1.21      deraadt   136: {
1.38      canacar   137:        va_list ap;
                    138:        char buf[MAX_LINE_BUF];
                    139:
                    140:        va_start(ap, fmt);
                    141:        vsnprintf(buf, sizeof buf, fmt, ap);
                    142:        va_end(ap);
1.21      deraadt   143:
1.38      canacar   144:        message_set(buf);
1.21      deraadt   145: }
                    146:
1.38      canacar   147: void
                    148: nlisterr(struct nlist namelist[])
1.3       deraadt   149: {
1.38      canacar   150:        int i, n;
                    151:
                    152:        n = 0;
                    153:        clear();
                    154:        mvprintw(2, 10, "systat: nlist: can't find following symbols:");
                    155:        for (i = 0;
                    156:            namelist[i].n_name != NULL && *namelist[i].n_name != '\0'; i++)
                    157:                if (namelist[i].n_value == 0)
                    158:                        mvprintw(2 + ++n, 10, "%s", namelist[i].n_name);
                    159:        move(CMDLINE, 0);
                    160:        clrtoeol();
                    161:        refresh();
                    162:        endwin();
1.3       deraadt   163:        exit(1);
                    164: }
                    165:
1.1       deraadt   166: void
1.38      canacar   167: die(void)
1.1       deraadt   168: {
1.38      canacar   169:        if (!rawmode)
                    170:                endwin();
                    171:        exit(0);
1.1       deraadt   172: }
                    173:
1.38      canacar   174:
                    175: int
                    176: prefix(char *s1, char *s2)
1.1       deraadt   177: {
1.38      canacar   178:
                    179:        while (*s1 == *s2) {
                    180:                if (*s1 == '\0')
                    181:                        return (1);
                    182:                s1++, s2++;
                    183:        }
                    184:        return (*s1 == '\0');
1.21      deraadt   185: }
                    186:
1.38      canacar   187: /* calculate number of users on the system */
                    188: int
                    189: ucount(void)
1.21      deraadt   190: {
1.38      canacar   191:        int nusers = 0;
                    192:        struct  utmp utmp;
1.35      deraadt   193:
1.38      canacar   194:        if (ut < 0)
                    195:                return (0);
                    196:        lseek(ut, (off_t)0, SEEK_SET);
                    197:        while (read(ut, &utmp, sizeof(utmp)))
                    198:                if (utmp.ut_name[0] != '\0')
                    199:                        nusers++;
1.35      deraadt   200:
1.38      canacar   201:        return (nusers);
1.1       deraadt   202: }
                    203:
1.38      canacar   204: /* main program functions */
                    205:
1.1       deraadt   206: void
1.50      canacar   207: usage(void)
1.1       deraadt   208: {
1.38      canacar   209:        extern char *__progname;
1.60      reyk      210:        fprintf(stderr, "usage: %s [-aBbiNn] [-d count] "
1.43      matthieu  211:            "[-s delay] [-w width] [view] [delay]\n", __progname);
1.38      canacar   212:        exit(1);
1.1       deraadt   213: }
                    214:
1.45      canacar   215: void
                    216: show_view(void)
                    217: {
                    218:        if (rawmode)
                    219:                return;
                    220:
                    221:        tb_start();
                    222:        tbprintf("%s %g", curr_view->name, naptime);
                    223:        tb_end();
                    224:        message_set(tmp_buf);
                    225: }
1.21      deraadt   226:
1.1       deraadt   227: void
1.38      canacar   228: add_view_tb(field_view *v)
1.1       deraadt   229: {
1.38      canacar   230:        if (curr_view == v)
                    231:                tbprintf("[%s] ", v->name);
                    232:        else
                    233:                tbprintf("%s ", v->name);
1.29      deraadt   234: }
                    235:
                    236: void
1.38      canacar   237: show_help(void)
1.29      deraadt   238: {
1.38      canacar   239:        if (rawmode)
                    240:                return;
                    241:
                    242:        tb_start();
                    243:        foreach_view(add_view_tb);
                    244:        tb_end();
                    245:        message_set(tmp_buf);
1.21      deraadt   246: }
                    247:
                    248: void
1.46      canacar   249: cmd_compat(const char *buf)
1.21      deraadt   250: {
1.46      canacar   251:        const char *s;
1.38      canacar   252:
1.46      canacar   253:        if (strcasecmp(buf, "help") == 0) {
1.38      canacar   254:                show_help();
                    255:                need_update = 1;
                    256:                return;
                    257:        }
1.46      canacar   258:        if (strcasecmp(buf, "quit") == 0 || strcasecmp(buf, "q") == 0) {
1.38      canacar   259:                gotsig_close = 1;
                    260:                return;
                    261:        }
1.46      canacar   262:        if (strcasecmp(buf, "stop") == 0) {
                    263:                paused = 1;
                    264:                gotsig_alarm = 1;
                    265:                return;
                    266:        }
                    267:        if (strncasecmp(buf, "start", 5) == 0) {
                    268:                paused = 0;
                    269:                gotsig_alarm = 1;
1.47      canacar   270:                cmd_delay(buf + 5);
1.46      canacar   271:                return;
                    272:        }
1.38      canacar   273:
1.46      canacar   274:        for (s = buf; *s && strchr("0123456789+-.eE", *s) != NULL; s++)
1.38      canacar   275:                ;
                    276:        if (*s) {
1.46      canacar   277:                if (set_view(buf))
1.49      espie     278:                        error("Invalid/ambiguous view: %s", buf);
1.38      canacar   279:        } else
1.46      canacar   280:                cmd_delay(buf);
1.38      canacar   281: }
                    282:
                    283: void
1.46      canacar   284: cmd_delay(const char *buf)
1.38      canacar   285: {
                    286:        double del;
1.46      canacar   287:        del = atof(buf);
1.39      canacar   288:
1.38      canacar   289:        if (del > 0) {
                    290:                udelay = (useconds_t)(del * 1000000);
                    291:                gotsig_alarm = 1;
1.39      canacar   292:                naptime = del;
1.13      deraadt   293:        }
1.1       deraadt   294: }
1.14      kstailey  295:
                    296: void
1.46      canacar   297: cmd_count(const char *buf)
1.14      kstailey  298: {
1.63      deraadt   299:        const char *errstr;
1.38      canacar   300:
1.63      deraadt   301:        maxprint = strtonum(buf, 1, lines - HEADER_LINES, &errstr);
                    302:        if (errstr)
1.38      canacar   303:                maxprint = lines - HEADER_LINES;
1.14      kstailey  304: }
                    305:
1.38      canacar   306:
                    307: int
                    308: keyboard_callback(int ch)
1.1       deraadt   309: {
1.38      canacar   310:        switch (ch) {
                    311:        case '?':
                    312:                /* FALLTHROUGH */
                    313:        case 'h':
                    314:                show_help();
1.45      canacar   315:                need_update = 1;
                    316:                break;
                    317:        case CTRL_G:
                    318:                show_view();
1.38      canacar   319:                need_update = 1;
                    320:                break;
                    321:        case 'l':
                    322:                command_set(&cm_count, NULL);
                    323:                break;
                    324:        case 's':
                    325:                command_set(&cm_delay, NULL);
1.59      mpf       326:                break;
                    327:        case ',':
                    328:                separate_thousands = !separate_thousands;
                    329:                gotsig_alarm = 1;
1.38      canacar   330:                break;
                    331:        case ':':
                    332:                command_set(&cm_compat, NULL);
                    333:                break;
                    334:        default:
                    335:                return 0;
                    336:        };
                    337:
                    338:        return 1;
                    339: }
1.23      millert   340:
1.38      canacar   341: void
                    342: initialize(void)
                    343: {
                    344:        engine_initialize();
                    345:
                    346:        initvmstat();
                    347:        initpigs();
                    348:        initifstat();
                    349:        initiostat();
                    350:        initsensors();
                    351:        initmembufs();
                    352:        initnetstat();
                    353:        initswap();
                    354:        initpftop();
                    355:        initpf();
1.48      canacar   356:        initpool();
1.51      canacar   357:        initmalloc();
1.52      jasper    358:        initnfs();
1.60      reyk      359:        initcpu();
1.1       deraadt   360: }
                    361:
                    362: void
1.38      canacar   363: gethz(void)
1.1       deraadt   364: {
1.38      canacar   365:        struct clockinfo cinf;
                    366:        size_t  size = sizeof(cinf);
                    367:        int     mib[2];
1.1       deraadt   368:
1.38      canacar   369:        mib[0] = CTL_KERN;
                    370:        mib[1] = KERN_CLOCKRATE;
                    371:        if (sysctl(mib, 2, &cinf, &size, NULL, 0) == -1)
                    372:                return;
                    373:        stathz = cinf.stathz;
                    374:        hz = cinf.hz;
1.35      deraadt   375: }
                    376:
                    377: int
1.38      canacar   378: main(int argc, char *argv[])
1.35      deraadt   379: {
1.38      canacar   380:        char errbuf[_POSIX2_LINE_MAX];
1.63      deraadt   381:        const char *errstr;
1.38      canacar   382:        extern char *optarg;
                    383:        extern int optind;
                    384:        double delay = 5;
                    385:
                    386:        char *viewstr = NULL;
                    387:
                    388:        gid_t gid;
                    389:        int countmax = 0;
                    390:        int maxlines = 0;
                    391:
                    392:        int ch;
                    393:
                    394:        ut = open(_PATH_UTMP, O_RDONLY);
                    395:        if (ut < 0) {
                    396:                warn("No utmp");
                    397:        }
                    398:
1.62      claudio   399:        kd = kvm_openfiles(NULL, NULL, NULL, KVM_NO_FILES, errbuf);
1.38      canacar   400:
                    401:        gid = getgid();
                    402:        if (setresgid(gid, gid, gid) == -1)
                    403:                err(1, "setresgid");
                    404:
1.60      reyk      405:        while ((ch = getopt(argc, argv, "BNabd:ins:w:")) != -1) {
1.38      canacar   406:                switch (ch) {
                    407:                case 'a':
                    408:                        maxlines = -1;
                    409:                        break;
1.60      reyk      410:                case 'B':
                    411:                        averageonly = 1;
                    412:                        if (countmax < 2)
                    413:                                countmax = 2;
                    414:                        /* FALLTHROUGH */
1.38      canacar   415:                case 'b':
                    416:                        rawmode = 1;
                    417:                        interactive = 0;
                    418:                        break;
                    419:                case 'd':
1.63      deraadt   420:                        countmax = strtonum(optarg, 1, INT_MAX, &errstr);
                    421:                        if (errstr)
                    422:                                errx(1, "-d %s: %s", optarg, errstr);
1.38      canacar   423:                        break;
                    424:                case 'i':
                    425:                        interactive = 1;
                    426:                        break;
1.55      sthen     427:                case 'N':
                    428:                        nflag = 0;
                    429:                        break;
1.38      canacar   430:                case 'n':
1.55      sthen     431:                        /* this is a noop, -n is the default */
1.38      canacar   432:                        nflag = 1;
                    433:                        break;
                    434:                case 's':
                    435:                        delay = atof(optarg);
1.39      canacar   436:                        if (delay <= 0)
1.38      canacar   437:                                delay = 5;
                    438:                        break;
                    439:                case 'w':
1.63      deraadt   440:                        rawwidth = strtonum(optarg, 1, MAX_LINE_BUF-1, &errstr);
                    441:                        if (errstr)
                    442:                                errx(1, "-w %s: %s", optarg, errstr);
1.38      canacar   443:                        break;
                    444:                default:
                    445:                        usage();
                    446:                        /* NOTREACHED */
                    447:                }
                    448:        }
1.43      matthieu  449:
                    450:        if (kd == NULL)
                    451:                warnx("kvm_openfiles: %s", errbuf);
1.38      canacar   452:
                    453:        argc -= optind;
                    454:        argv += optind;
                    455:
                    456:        if (argc == 1) {
                    457:                double del = atof(argv[0]);
                    458:                if (del == 0)
                    459:                        viewstr = argv[0];
                    460:                else
                    461:                        delay = del;
                    462:        } else if (argc == 2) {
                    463:                viewstr = argv[0];
                    464:                delay = atof(argv[1]);
1.42      canacar   465:                if (delay <= 0)
                    466:                        delay = 5;
1.38      canacar   467:        }
                    468:
                    469:        udelay = (useconds_t)(delay * 1000000.0);
                    470:        if (udelay < 1)
                    471:                udelay = 1;
1.39      canacar   472:
                    473:        naptime = (double)udelay / 1000000.0;
1.38      canacar   474:
                    475:        gethostname(hostname, sizeof (hostname));
                    476:        gethz();
                    477:
                    478:        initialize();
                    479:
                    480:        set_order(NULL);
                    481:        if (viewstr && set_view(viewstr)) {
1.49      espie     482:                fprintf(stderr, "Unknown/ambiguous view name: %s\n", viewstr);
1.38      canacar   483:                return 1;
                    484:        }
                    485:
1.57      lum       486:        if (check_termcap()) {
1.38      canacar   487:                rawmode = 1;
                    488:                interactive = 0;
                    489:        }
                    490:
                    491:        setup_term(maxlines);
                    492:
                    493:        if (rawmode && countmax == 0)
                    494:                countmax = 1;
                    495:
                    496:        gotsig_alarm = 1;
1.35      deraadt   497:
1.38      canacar   498:        engine_loop(countmax);
1.35      deraadt   499:
1.38      canacar   500:        return 0;
1.1       deraadt   501: }