]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/vmstat/vmstat.c
Use CLOCK_UPTIME to get the uptime instead of CLOCK_MONOTONIC.
[FreeBSD/FreeBSD.git] / usr.bin / vmstat / vmstat.c
1 /*
2  * Copyright (c) 1980, 1986, 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 4. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #ifndef lint
31 static const char copyright[] =
32 "@(#) Copyright (c) 1980, 1986, 1991, 1993\n\
33         The Regents of the University of California.  All rights reserved.\n";
34 #endif /* not lint */
35
36 #if 0
37 #ifndef lint
38 static char sccsid[] = "@(#)vmstat.c    8.1 (Berkeley) 6/6/93";
39 #endif /* not lint */
40 #endif
41
42 #include <sys/cdefs.h>
43 __FBSDID("$FreeBSD$");
44
45 #include <sys/param.h>
46 #include <sys/proc.h>
47 #include <sys/uio.h>
48 #include <sys/namei.h>
49 #include <sys/malloc.h>
50 #include <sys/signal.h>
51 #include <sys/fcntl.h>
52 #include <sys/ioctl.h>
53 #include <sys/resource.h>
54 #include <sys/sysctl.h>
55 #include <sys/time.h>
56 #include <sys/vmmeter.h>
57 #include <sys/pcpu.h>
58
59 #include <vm/vm_param.h>
60
61 #include <ctype.h>
62 #include <devstat.h>
63 #include <err.h>
64 #include <errno.h>
65 #include <inttypes.h>
66 #include <kvm.h>
67 #include <limits.h>
68 #include <memstat.h>
69 #include <nlist.h>
70 #include <paths.h>
71 #include <stdio.h>
72 #include <stdlib.h>
73 #include <string.h>
74 #include <sysexits.h>
75 #include <time.h>
76 #include <unistd.h>
77 #include <libutil.h>
78
79 static char da[] = "da";
80
81 static struct nlist namelist[] = {
82 #define X_SUM           0
83         { "_vm_cnt" },
84 #define X_HZ            1
85         { "_hz" },
86 #define X_STATHZ        2
87         { "_stathz" },
88 #define X_NCHSTATS      3
89         { "_nchstats" },
90 #define X_INTRNAMES     4
91         { "_intrnames" },
92 #define X_SINTRNAMES    5
93         { "_sintrnames" },
94 #define X_INTRCNT       6
95         { "_intrcnt" },
96 #define X_SINTRCNT      7
97         { "_sintrcnt" },
98 #ifdef notyet
99 #define X_DEFICIT       XXX
100         { "_deficit" },
101 #define X_REC           XXX
102         { "_rectime" },
103 #define X_PGIN          XXX
104         { "_pgintime" },
105 #define X_XSTATS        XXX
106         { "_xstats" },
107 #define X_END           XXX
108 #else
109 #define X_END           8
110 #endif
111         { "" },
112 };
113
114 static struct statinfo cur, last;
115 static int num_devices, maxshowdevs;
116 static long generation;
117 static struct device_selection *dev_select;
118 static int num_selected;
119 static struct devstat_match *matches;
120 static int num_matches = 0;
121 static int num_devices_specified, num_selections;
122 static long select_generation;
123 static char **specified_devices;
124 static devstat_select_mode select_mode;
125
126 static struct   vmmeter sum, osum;
127
128 #define VMSTAT_DEFAULT_LINES    20      /* Default number of `winlines'. */
129 volatile sig_atomic_t wresized;         /* Tty resized, when non-zero. */
130 static int winlines = VMSTAT_DEFAULT_LINES; /* Current number of tty rows. */
131
132 static int      aflag;
133 static int      nflag;
134 static int      Pflag;
135 static int      hflag;
136
137 static kvm_t   *kd;
138
139 #define FORKSTAT        0x01
140 #define INTRSTAT        0x02
141 #define MEMSTAT         0x04
142 #define SUMSTAT         0x08
143 #define TIMESTAT        0x10
144 #define VMSTAT          0x20
145 #define ZMEMSTAT        0x40
146
147 static void     cpustats(void);
148 static void     pcpustats(int, u_long, int);
149 static void     devstats(void);
150 static void     doforkst(void);
151 static void     dointr(unsigned int, int);
152 static void     dosum(void);
153 static void     dovmstat(unsigned int, int);
154 static void     domemstat_malloc(void);
155 static void     domemstat_zone(void);
156 static void     kread(int, void *, size_t);
157 static void     kreado(int, void *, size_t, size_t);
158 static char    *kgetstr(const char *);
159 static void     needhdr(int);
160 static void     needresize(int);
161 static void     doresize(void);
162 static void     printhdr(int, u_long);
163 static void     usage(void);
164
165 static long     pct(long, long);
166 static long     getuptime(void);
167
168 static char   **getdrivedata(char **);
169
170 int
171 main(int argc, char *argv[])
172 {
173         int c, todo;
174         unsigned int interval;
175         float f;
176         int reps;
177         char *memf, *nlistf;
178         char errbuf[_POSIX2_LINE_MAX];
179
180         memf = nlistf = NULL;
181         interval = reps = todo = 0;
182         maxshowdevs = 2;
183         hflag = isatty(1);
184         while ((c = getopt(argc, argv, "ac:fhHiM:mN:n:Pp:stw:z")) != -1) {
185                 switch (c) {
186                 case 'a':
187                         aflag++;
188                         break;
189                 case 'c':
190                         reps = atoi(optarg);
191                         break;
192                 case 'P':
193                         Pflag++;
194                         break;
195                 case 'f':
196                         todo |= FORKSTAT;
197                         break;
198                 case 'h':
199                         hflag = 1;
200                         break;
201                 case 'H':
202                         hflag = 0;
203                         break;
204                 case 'i':
205                         todo |= INTRSTAT;
206                         break;
207                 case 'M':
208                         memf = optarg;
209                         break;
210                 case 'm':
211                         todo |= MEMSTAT;
212                         break;
213                 case 'N':
214                         nlistf = optarg;
215                         break;
216                 case 'n':
217                         nflag = 1;
218                         maxshowdevs = atoi(optarg);
219                         if (maxshowdevs < 0)
220                                 errx(1, "number of devices %d is < 0",
221                                      maxshowdevs);
222                         break;
223                 case 'p':
224                         if (devstat_buildmatch(optarg, &matches, &num_matches) != 0)
225                                 errx(1, "%s", devstat_errbuf);
226                         break;
227                 case 's':
228                         todo |= SUMSTAT;
229                         break;
230                 case 't':
231 #ifdef notyet
232                         todo |= TIMESTAT;
233 #else
234                         errx(EX_USAGE, "sorry, -t is not (re)implemented yet");
235 #endif
236                         break;
237                 case 'w':
238                         /* Convert to milliseconds. */
239                         f = atof(optarg);
240                         interval = f * 1000;
241                         break;
242                 case 'z':
243                         todo |= ZMEMSTAT;
244                         break;
245                 case '?':
246                 default:
247                         usage();
248                 }
249         }
250         argc -= optind;
251         argv += optind;
252
253         if (todo == 0)
254                 todo = VMSTAT;
255
256         if (memf != NULL) {
257                 kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf);
258                 if (kd == NULL)
259                         errx(1, "kvm_openfiles: %s", errbuf);
260         }
261
262 retry_nlist:
263         if (kd != NULL && (c = kvm_nlist(kd, namelist)) != 0) {
264                 if (c > 0) {
265                         /*
266                          * 'cnt' was renamed to 'vm_cnt'. If 'vm_cnt' is not
267                          * found try looking up older 'cnt' symbol.
268                          * */
269                         if (namelist[X_SUM].n_type == 0 &&
270                             strcmp(namelist[X_SUM].n_name, "_vm_cnt") == 0) {
271                                 namelist[X_SUM].n_name = "_cnt";
272                                 goto retry_nlist;
273                         }
274                         warnx("undefined symbols:");
275                         for (c = 0;
276                              c < (int)(sizeof(namelist)/sizeof(namelist[0]));
277                              c++)
278                                 if (namelist[c].n_type == 0)
279                                         (void)fprintf(stderr, " %s",
280                                             namelist[c].n_name);
281                         (void)fputc('\n', stderr);
282                 } else
283                         warnx("kvm_nlist: %s", kvm_geterr(kd));
284                 exit(1);
285         }
286         if (kd && Pflag)
287                 errx(1, "Cannot use -P with crash dumps");
288
289         if (todo & VMSTAT) {
290                 /*
291                  * Make sure that the userland devstat version matches the
292                  * kernel devstat version.  If not, exit and print a
293                  * message informing the user of his mistake.
294                  */
295                 if (devstat_checkversion(NULL) < 0)
296                         errx(1, "%s", devstat_errbuf);
297
298
299                 argv = getdrivedata(argv);
300         }
301
302         if (*argv) {
303                 f = atof(*argv);
304                 interval = f * 1000;
305                 if (*++argv)
306                         reps = atoi(*argv);
307         }
308
309         if (interval) {
310                 if (!reps)
311                         reps = -1;
312         } else if (reps)
313                 interval = 1 * 1000;
314
315         if (todo & FORKSTAT)
316                 doforkst();
317         if (todo & MEMSTAT)
318                 domemstat_malloc();
319         if (todo & ZMEMSTAT)
320                 domemstat_zone();
321         if (todo & SUMSTAT)
322                 dosum();
323 #ifdef notyet
324         if (todo & TIMESTAT)
325                 dotimes();
326 #endif
327         if (todo & INTRSTAT)
328                 dointr(interval, reps);
329         if (todo & VMSTAT)
330                 dovmstat(interval, reps);
331         exit(0);
332 }
333
334 static int
335 mysysctl(const char *name, void *oldp, size_t *oldlenp,
336     void *newp, size_t newlen)
337 {
338         int error;
339
340         error = sysctlbyname(name, oldp, oldlenp, newp, newlen);
341         if (error != 0 && errno != ENOMEM)
342                 err(1, "sysctl(%s)", name);
343         return (error);
344 }
345
346 static char **
347 getdrivedata(char **argv)
348 {
349         if ((num_devices = devstat_getnumdevs(NULL)) < 0)
350                 errx(1, "%s", devstat_errbuf);
351
352         cur.dinfo = (struct devinfo *)calloc(1, sizeof(struct devinfo));
353         last.dinfo = (struct devinfo *)calloc(1, sizeof(struct devinfo));
354
355         if (devstat_getdevs(NULL, &cur) == -1)
356                 errx(1, "%s", devstat_errbuf);
357
358         num_devices = cur.dinfo->numdevs;
359         generation = cur.dinfo->generation;
360
361         specified_devices = (char **)malloc(sizeof(char *));
362         for (num_devices_specified = 0; *argv; ++argv) {
363                 if (isdigit(**argv))
364                         break;
365                 num_devices_specified++;
366                 specified_devices = (char **)realloc(specified_devices,
367                                                      sizeof(char *) *
368                                                      num_devices_specified);
369                 specified_devices[num_devices_specified - 1] = *argv;
370         }
371         dev_select = NULL;
372
373         if (nflag == 0 && maxshowdevs < num_devices_specified)
374                         maxshowdevs = num_devices_specified;
375
376         /*
377          * People are generally only interested in disk statistics when
378          * they're running vmstat.  So, that's what we're going to give
379          * them if they don't specify anything by default.  We'll also give
380          * them any other random devices in the system so that we get to
381          * maxshowdevs devices, if that many devices exist.  If the user
382          * specifies devices on the command line, either through a pattern
383          * match or by naming them explicitly, we will give the user only
384          * those devices.
385          */
386         if ((num_devices_specified == 0) && (num_matches == 0)) {
387                 if (devstat_buildmatch(da, &matches, &num_matches) != 0)
388                         errx(1, "%s", devstat_errbuf);
389
390                 select_mode = DS_SELECT_ADD;
391         } else
392                 select_mode = DS_SELECT_ONLY;
393
394         /*
395          * At this point, selectdevs will almost surely indicate that the
396          * device list has changed, so we don't look for return values of 0
397          * or 1.  If we get back -1, though, there is an error.
398          */
399         if (devstat_selectdevs(&dev_select, &num_selected, &num_selections,
400                        &select_generation, generation, cur.dinfo->devices,
401                        num_devices, matches, num_matches, specified_devices,
402                        num_devices_specified, select_mode,
403                        maxshowdevs, 0) == -1)
404                 errx(1, "%s", devstat_errbuf);
405
406         return(argv);
407 }
408
409 static long
410 getuptime(void)
411 {
412         struct timespec sp;
413
414         (void)clock_gettime(CLOCK_UPTIME, &sp);
415
416         return(sp.tv_sec);
417 }
418
419 static void
420 fill_pcpu(struct pcpu ***pcpup, int* maxcpup)
421 {
422         struct pcpu **pcpu;
423         
424         int maxcpu, i;
425
426         *pcpup = NULL;
427         
428         if (kd == NULL)
429                 return;
430
431         maxcpu = kvm_getmaxcpu(kd);
432         if (maxcpu < 0)
433                 errx(1, "kvm_getmaxcpu: %s", kvm_geterr(kd));
434
435         pcpu = calloc(maxcpu, sizeof(struct pcpu *));
436         if (pcpu == NULL)
437                 err(1, "calloc");
438
439         for (i = 0; i < maxcpu; i++) {
440                 pcpu[i] = kvm_getpcpu(kd, i);
441                 if (pcpu[i] == (struct pcpu *)-1)
442                         errx(1, "kvm_getpcpu: %s", kvm_geterr(kd));
443         }
444
445         *maxcpup = maxcpu;
446         *pcpup = pcpu;
447 }
448
449 static void
450 free_pcpu(struct pcpu **pcpu, int maxcpu)
451 {
452         int i;
453
454         for (i = 0; i < maxcpu; i++)
455                 free(pcpu[i]);
456         free(pcpu);
457 }
458
459 static void
460 fill_vmmeter(struct vmmeter *vmmp)
461 {
462         struct pcpu **pcpu;
463         int maxcpu, i;
464
465         if (kd != NULL) {
466                 kread(X_SUM, vmmp, sizeof(*vmmp));
467                 fill_pcpu(&pcpu, &maxcpu);
468                 for (i = 0; i < maxcpu; i++) {
469                         if (pcpu[i] == NULL)
470                                 continue;
471 #define ADD_FROM_PCPU(i, name) \
472                         vmmp->name += pcpu[i]->pc_cnt.name
473                         ADD_FROM_PCPU(i, v_swtch);
474                         ADD_FROM_PCPU(i, v_trap);
475                         ADD_FROM_PCPU(i, v_syscall);
476                         ADD_FROM_PCPU(i, v_intr);
477                         ADD_FROM_PCPU(i, v_soft);
478                         ADD_FROM_PCPU(i, v_vm_faults);
479                         ADD_FROM_PCPU(i, v_io_faults);
480                         ADD_FROM_PCPU(i, v_cow_faults);
481                         ADD_FROM_PCPU(i, v_cow_optim);
482                         ADD_FROM_PCPU(i, v_zfod);
483                         ADD_FROM_PCPU(i, v_ozfod);
484                         ADD_FROM_PCPU(i, v_swapin);
485                         ADD_FROM_PCPU(i, v_swapout);
486                         ADD_FROM_PCPU(i, v_swappgsin);
487                         ADD_FROM_PCPU(i, v_swappgsout);
488                         ADD_FROM_PCPU(i, v_vnodein);
489                         ADD_FROM_PCPU(i, v_vnodeout);
490                         ADD_FROM_PCPU(i, v_vnodepgsin);
491                         ADD_FROM_PCPU(i, v_vnodepgsout);
492                         ADD_FROM_PCPU(i, v_intrans);
493                         ADD_FROM_PCPU(i, v_tfree);
494                         ADD_FROM_PCPU(i, v_forks);
495                         ADD_FROM_PCPU(i, v_vforks);
496                         ADD_FROM_PCPU(i, v_rforks);
497                         ADD_FROM_PCPU(i, v_kthreads);
498                         ADD_FROM_PCPU(i, v_forkpages);
499                         ADD_FROM_PCPU(i, v_vforkpages);
500                         ADD_FROM_PCPU(i, v_rforkpages);
501                         ADD_FROM_PCPU(i, v_kthreadpages);
502 #undef ADD_FROM_PCPU
503                 }
504                 free_pcpu(pcpu, maxcpu);
505         } else {
506                 size_t size = sizeof(unsigned int);
507 #define GET_VM_STATS(cat, name) \
508         mysysctl("vm.stats." #cat "." #name, &vmmp->name, &size, NULL, 0)
509                 /* sys */
510                 GET_VM_STATS(sys, v_swtch);
511                 GET_VM_STATS(sys, v_trap);
512                 GET_VM_STATS(sys, v_syscall);
513                 GET_VM_STATS(sys, v_intr);
514                 GET_VM_STATS(sys, v_soft);
515
516                 /* vm */
517                 GET_VM_STATS(vm, v_vm_faults);
518                 GET_VM_STATS(vm, v_io_faults);
519                 GET_VM_STATS(vm, v_cow_faults);
520                 GET_VM_STATS(vm, v_cow_optim);
521                 GET_VM_STATS(vm, v_zfod);
522                 GET_VM_STATS(vm, v_ozfod);
523                 GET_VM_STATS(vm, v_swapin);
524                 GET_VM_STATS(vm, v_swapout);
525                 GET_VM_STATS(vm, v_swappgsin);
526                 GET_VM_STATS(vm, v_swappgsout);
527                 GET_VM_STATS(vm, v_vnodein);
528                 GET_VM_STATS(vm, v_vnodeout);
529                 GET_VM_STATS(vm, v_vnodepgsin);
530                 GET_VM_STATS(vm, v_vnodepgsout);
531                 GET_VM_STATS(vm, v_intrans);
532                 GET_VM_STATS(vm, v_reactivated);
533                 GET_VM_STATS(vm, v_pdwakeups);
534                 GET_VM_STATS(vm, v_pdpages);
535                 GET_VM_STATS(vm, v_tcached);
536                 GET_VM_STATS(vm, v_dfree);
537                 GET_VM_STATS(vm, v_pfree);
538                 GET_VM_STATS(vm, v_tfree);
539                 GET_VM_STATS(vm, v_page_size);
540                 GET_VM_STATS(vm, v_page_count);
541                 GET_VM_STATS(vm, v_free_reserved);
542                 GET_VM_STATS(vm, v_free_target);
543                 GET_VM_STATS(vm, v_free_min);
544                 GET_VM_STATS(vm, v_free_count);
545                 GET_VM_STATS(vm, v_wire_count);
546                 GET_VM_STATS(vm, v_active_count);
547                 GET_VM_STATS(vm, v_inactive_target);
548                 GET_VM_STATS(vm, v_inactive_count);
549                 GET_VM_STATS(vm, v_cache_count);
550                 GET_VM_STATS(vm, v_cache_min);
551                 GET_VM_STATS(vm, v_cache_max);
552                 GET_VM_STATS(vm, v_pageout_free_min);
553                 GET_VM_STATS(vm, v_interrupt_free_min);
554                 /*GET_VM_STATS(vm, v_free_severe);*/
555                 GET_VM_STATS(vm, v_forks);
556                 GET_VM_STATS(vm, v_vforks);
557                 GET_VM_STATS(vm, v_rforks);
558                 GET_VM_STATS(vm, v_kthreads);
559                 GET_VM_STATS(vm, v_forkpages);
560                 GET_VM_STATS(vm, v_vforkpages);
561                 GET_VM_STATS(vm, v_rforkpages);
562                 GET_VM_STATS(vm, v_kthreadpages);
563 #undef GET_VM_STATS
564         }
565 }
566
567 static void
568 fill_vmtotal(struct vmtotal *vmtp)
569 {
570         if (kd != NULL) {
571                 /* XXX fill vmtp */
572                 errx(1, "not implemented");
573         } else {
574                 size_t size = sizeof(*vmtp);
575                 mysysctl("vm.vmtotal", vmtp, &size, NULL, 0);
576                 if (size != sizeof(*vmtp))
577                         errx(1, "vm.total size mismatch");
578         }
579 }
580
581 /* Determine how many cpu columns, and what index they are in kern.cp_times */
582 static int
583 getcpuinfo(u_long *maskp, int *maxidp)
584 {
585         int maxcpu;
586         int maxid;
587         int ncpus;
588         int i, j;
589         int empty;
590         size_t size;
591         long *times;
592         u_long mask;
593
594         if (kd != NULL)
595                 errx(1, "not implemented");
596         mask = 0;
597         ncpus = 0;
598         size = sizeof(maxcpu);
599         mysysctl("kern.smp.maxcpus", &maxcpu, &size, NULL, 0);
600         if (size != sizeof(maxcpu))
601                 errx(1, "sysctl kern.smp.maxcpus");
602         size = sizeof(long) * maxcpu * CPUSTATES;
603         times = malloc(size);
604         if (times == NULL)
605                 err(1, "malloc %zd bytes", size);
606         mysysctl("kern.cp_times", times, &size, NULL, 0);
607         maxid = (size / CPUSTATES / sizeof(long)) - 1;
608         for (i = 0; i <= maxid; i++) {
609                 empty = 1;
610                 for (j = 0; empty && j < CPUSTATES; j++) {
611                         if (times[i * CPUSTATES + j] != 0)
612                                 empty = 0;
613                 }
614                 if (!empty) {
615                         mask |= (1ul << i);
616                         ncpus++;
617                 }
618         }
619         if (maskp)
620                 *maskp = mask;
621         if (maxidp)
622                 *maxidp = maxid;
623         return (ncpus);
624 }
625
626
627 static void
628 prthuman(u_int64_t val, int size)
629 {
630         char buf[10];
631         int flags;
632
633         if (size < 5 || size > 9)
634                 errx(1, "doofus");
635         flags = HN_B | HN_NOSPACE | HN_DECIMAL;
636         humanize_number(buf, size, val, "", HN_AUTOSCALE, flags);
637         printf("%*s", size, buf);
638 }
639
640 static int hz, hdrcnt;
641
642 static long *cur_cp_times;
643 static long *last_cp_times;
644 static size_t size_cp_times;
645
646 static void
647 dovmstat(unsigned int interval, int reps)
648 {
649         struct vmtotal total;
650         time_t uptime, halfuptime;
651         struct devinfo *tmp_dinfo;
652         size_t size;
653         int ncpus, maxid;
654         u_long cpumask;
655         int rate_adj;
656
657         uptime = getuptime();
658         halfuptime = uptime / 2;
659         rate_adj = 1;
660         ncpus = 1;
661         maxid = 0;
662
663         /*
664          * If the user stops the program (control-Z) and then resumes it,
665          * print out the header again.
666          */
667         (void)signal(SIGCONT, needhdr);
668
669         /*
670          * If our standard output is a tty, then install a SIGWINCH handler
671          * and set wresized so that our first iteration through the main
672          * vmstat loop will peek at the terminal's current rows to find out
673          * how many lines can fit in a screenful of output.
674          */
675         if (isatty(fileno(stdout)) != 0) {
676                 wresized = 1;
677                 (void)signal(SIGWINCH, needresize);
678         } else {
679                 wresized = 0;
680                 winlines = VMSTAT_DEFAULT_LINES;
681         }
682
683         if (kd != NULL) {
684                 if (namelist[X_STATHZ].n_type != 0 &&
685                     namelist[X_STATHZ].n_value != 0)
686                         kread(X_STATHZ, &hz, sizeof(hz));
687                 if (!hz)
688                         kread(X_HZ, &hz, sizeof(hz));
689         } else {
690                 struct clockinfo clockrate;
691
692                 size = sizeof(clockrate);
693                 mysysctl("kern.clockrate", &clockrate, &size, NULL, 0);
694                 if (size != sizeof(clockrate))
695                         errx(1, "clockrate size mismatch");
696                 hz = clockrate.hz;
697         }
698
699         if (Pflag) {
700                 ncpus = getcpuinfo(&cpumask, &maxid);
701                 size_cp_times = sizeof(long) * (maxid + 1) * CPUSTATES;
702                 cur_cp_times = calloc(1, size_cp_times);
703                 last_cp_times = calloc(1, size_cp_times);
704         }
705         for (hdrcnt = 1;;) {
706                 if (!--hdrcnt)
707                         printhdr(maxid, cpumask);
708                 if (kd != NULL) {
709                         if (kvm_getcptime(kd, cur.cp_time) < 0)
710                                 errx(1, "kvm_getcptime: %s", kvm_geterr(kd));
711                 } else {
712                         size = sizeof(cur.cp_time);
713                         mysysctl("kern.cp_time", &cur.cp_time, &size, NULL, 0);
714                         if (size != sizeof(cur.cp_time))
715                                 errx(1, "cp_time size mismatch");
716                 }
717                 if (Pflag) {
718                         size = size_cp_times;
719                         mysysctl("kern.cp_times", cur_cp_times, &size, NULL, 0);
720                         if (size != size_cp_times)
721                                 errx(1, "cp_times mismatch");
722                 }
723
724                 tmp_dinfo = last.dinfo;
725                 last.dinfo = cur.dinfo;
726                 cur.dinfo = tmp_dinfo;
727                 last.snap_time = cur.snap_time;
728
729                 /*
730                  * Here what we want to do is refresh our device stats.
731                  * getdevs() returns 1 when the device list has changed.
732                  * If the device list has changed, we want to go through
733                  * the selection process again, in case a device that we
734                  * were previously displaying has gone away.
735                  */
736                 switch (devstat_getdevs(NULL, &cur)) {
737                 case -1:
738                         errx(1, "%s", devstat_errbuf);
739                         break;
740                 case 1: {
741                         int retval;
742
743                         num_devices = cur.dinfo->numdevs;
744                         generation = cur.dinfo->generation;
745
746                         retval = devstat_selectdevs(&dev_select, &num_selected,
747                                             &num_selections, &select_generation,
748                                             generation, cur.dinfo->devices,
749                                             num_devices, matches, num_matches,
750                                             specified_devices,
751                                             num_devices_specified, select_mode,
752                                             maxshowdevs, 0);
753                         switch (retval) {
754                         case -1:
755                                 errx(1, "%s", devstat_errbuf);
756                                 break;
757                         case 1:
758                                 printhdr(maxid, cpumask);
759                                 break;
760                         default:
761                                 break;
762                         }
763                 }
764                 default:
765                         break;
766                 }
767
768                 fill_vmmeter(&sum);
769                 fill_vmtotal(&total);
770                 (void)printf("%1d %1d %1d",
771                     total.t_rq - 1, total.t_dw + total.t_pw, total.t_sw);
772 #define vmstat_pgtok(a) ((a) * (sum.v_page_size >> 10))
773 #define rate(x) (((x) * rate_adj + halfuptime) / uptime)        /* round */
774                 if (hflag) {
775                         printf("");
776                         prthuman(total.t_avm * (u_int64_t)sum.v_page_size, 5);
777                         printf(" ");
778                         prthuman(total.t_free * (u_int64_t)sum.v_page_size, 5);
779                         printf(" ");
780                         (void)printf("%5lu ",
781                             (unsigned long)rate(sum.v_vm_faults -
782                             osum.v_vm_faults));
783                 } else {
784                         printf(" %7d", vmstat_pgtok(total.t_avm));
785                         printf(" %7d ", vmstat_pgtok(total.t_free));
786                         (void)printf("%4lu ",
787                             (unsigned long)rate(sum.v_vm_faults -
788                             osum.v_vm_faults));
789                 }
790                 (void)printf("%3lu ",
791                     (unsigned long)rate(sum.v_reactivated - osum.v_reactivated));
792                 (void)printf("%3lu ",
793                     (unsigned long)rate(sum.v_swapin + sum.v_vnodein -
794                     (osum.v_swapin + osum.v_vnodein)));
795                 (void)printf("%3lu ",
796                     (unsigned long)rate(sum.v_swapout + sum.v_vnodeout -
797                     (osum.v_swapout + osum.v_vnodeout)));
798                 (void)printf("%5lu ",
799                     (unsigned long)rate(sum.v_tfree - osum.v_tfree));
800                 (void)printf("%4lu ",
801                     (unsigned long)rate(sum.v_pdpages - osum.v_pdpages));
802                 devstats();
803                 (void)printf("%4lu %5lu %5lu",
804                     (unsigned long)rate(sum.v_intr - osum.v_intr),
805                     (unsigned long)rate(sum.v_syscall - osum.v_syscall),
806                     (unsigned long)rate(sum.v_swtch - osum.v_swtch));
807                 if (Pflag)
808                         pcpustats(ncpus, cpumask, maxid);
809                 else
810                         cpustats();
811                 (void)printf("\n");
812                 (void)fflush(stdout);
813                 if (reps >= 0 && --reps <= 0)
814                         break;
815                 osum = sum;
816                 uptime = interval;
817                 rate_adj = 1000;
818                 /*
819                  * We round upward to avoid losing low-frequency events
820                  * (i.e., >= 1 per interval but < 1 per millisecond).
821                  */
822                 if (interval != 1)
823                         halfuptime = (uptime + 1) / 2;
824                 else
825                         halfuptime = 0;
826                 (void)usleep(interval * 1000);
827         }
828 }
829
830 static void
831 printhdr(int maxid, u_long cpumask)
832 {
833         int i, num_shown;
834
835         num_shown = (num_selected < maxshowdevs) ? num_selected : maxshowdevs;
836         if (hflag) {
837                 (void)printf("procs  memory      page%*s ", 19, "");
838         } else {
839                 (void)printf("procs     memory       page%*s ", 19, "");
840         }
841         if (num_shown > 1)
842                 (void)printf("   disks %*s", num_shown * 4 - 7, "");
843         else if (num_shown == 1)
844                 (void)printf("   disk");
845         (void)printf("   faults      ");
846         if (Pflag) {
847                 for (i = 0; i <= maxid; i++) {
848                         if (cpumask & (1ul << i))
849                                 printf("  cpu%d   ", i);
850                 }
851                 printf("\n");
852         } else
853                 printf("   cpu\n");
854         if (hflag) {
855                 (void)printf("r b w  avm   fre   flt  re  pi  po    fr   sr ");
856         } else {
857                 (void)printf("r b w     avm     fre  flt  re  pi  po    fr   sr ");
858         }
859         for (i = 0; i < num_devices; i++)
860                 if ((dev_select[i].selected)
861                  && (dev_select[i].selected <= maxshowdevs))
862                         (void)printf("%c%c%d ", dev_select[i].device_name[0],
863                                      dev_select[i].device_name[1],
864                                      dev_select[i].unit_number);
865         (void)printf("  in    sy    cs");
866         if (Pflag) {
867                 for (i = 0; i <= maxid; i++) {
868                         if (cpumask & (1ul << i))
869                                 printf(" us sy id");
870                 }
871                 printf("\n");
872         } else
873                 printf(" us sy id\n");
874         if (wresized != 0)
875                 doresize();
876         hdrcnt = winlines;
877 }
878
879 /*
880  * Force a header to be prepended to the next output.
881  */
882 static void
883 needhdr(int dummy __unused)
884 {
885
886         hdrcnt = 1;
887 }
888
889 /*
890  * When the terminal is resized, force an update of the maximum number of rows
891  * printed between each header repetition.  Then force a new header to be
892  * prepended to the next output.
893  */
894 void
895 needresize(int signo)
896 {
897
898         wresized = 1;
899         hdrcnt = 1;
900 }
901
902 /*
903  * Update the global `winlines' count of terminal rows.
904  */
905 void
906 doresize(void)
907 {
908         int status;
909         struct winsize w;
910
911         for (;;) {
912                 status = ioctl(fileno(stdout), TIOCGWINSZ, &w);
913                 if (status == -1 && errno == EINTR)
914                         continue;
915                 else if (status == -1)
916                         err(1, "ioctl");
917                 if (w.ws_row > 3)
918                         winlines = w.ws_row - 3;
919                 else
920                         winlines = VMSTAT_DEFAULT_LINES;
921                 break;
922         }
923
924         /*
925          * Inhibit doresize() calls until we are rescheduled by SIGWINCH.
926          */
927         wresized = 0;
928 }
929
930 #ifdef notyet
931 static void
932 dotimes(void)
933 {
934         unsigned int pgintime, rectime;
935
936         kread(X_REC, &rectime, sizeof(rectime));
937         kread(X_PGIN, &pgintime, sizeof(pgintime));
938         kread(X_SUM, &sum, sizeof(sum));
939         (void)printf("%u reclaims, %u total time (usec)\n",
940             sum.v_pgrec, rectime);
941         (void)printf("average: %u usec / reclaim\n", rectime / sum.v_pgrec);
942         (void)printf("\n");
943         (void)printf("%u page ins, %u total time (msec)\n",
944             sum.v_pgin, pgintime / 10);
945         (void)printf("average: %8.1f msec / page in\n",
946             pgintime / (sum.v_pgin * 10.0));
947 }
948 #endif
949
950 static long
951 pct(long top, long bot)
952 {
953         long ans;
954
955         if (bot == 0)
956                 return(0);
957         ans = (quad_t)top * 100 / bot;
958         return (ans);
959 }
960
961 #define PCT(top, bot) pct((long)(top), (long)(bot))
962
963 static void
964 dosum(void)
965 {
966         struct nchstats lnchstats;
967         long nchtotal;
968
969         fill_vmmeter(&sum);
970         (void)printf("%9u cpu context switches\n", sum.v_swtch);
971         (void)printf("%9u device interrupts\n", sum.v_intr);
972         (void)printf("%9u software interrupts\n", sum.v_soft);
973         (void)printf("%9u traps\n", sum.v_trap);
974         (void)printf("%9u system calls\n", sum.v_syscall);
975         (void)printf("%9u kernel threads created\n", sum.v_kthreads);
976         (void)printf("%9u  fork() calls\n", sum.v_forks);
977         (void)printf("%9u vfork() calls\n", sum.v_vforks);
978         (void)printf("%9u rfork() calls\n", sum.v_rforks);
979         (void)printf("%9u swap pager pageins\n", sum.v_swapin);
980         (void)printf("%9u swap pager pages paged in\n", sum.v_swappgsin);
981         (void)printf("%9u swap pager pageouts\n", sum.v_swapout);
982         (void)printf("%9u swap pager pages paged out\n", sum.v_swappgsout);
983         (void)printf("%9u vnode pager pageins\n", sum.v_vnodein);
984         (void)printf("%9u vnode pager pages paged in\n", sum.v_vnodepgsin);
985         (void)printf("%9u vnode pager pageouts\n", sum.v_vnodeout);
986         (void)printf("%9u vnode pager pages paged out\n", sum.v_vnodepgsout);
987         (void)printf("%9u page daemon wakeups\n", sum.v_pdwakeups);
988         (void)printf("%9u pages examined by the page daemon\n", sum.v_pdpages);
989         (void)printf("%9u pages reactivated\n", sum.v_reactivated);
990         (void)printf("%9u copy-on-write faults\n", sum.v_cow_faults);
991         (void)printf("%9u copy-on-write optimized faults\n", sum.v_cow_optim);
992         (void)printf("%9u zero fill pages zeroed\n", sum.v_zfod);
993         (void)printf("%9u zero fill pages prezeroed\n", sum.v_ozfod);
994         (void)printf("%9u intransit blocking page faults\n", sum.v_intrans);
995         (void)printf("%9u total VM faults taken\n", sum.v_vm_faults);
996         (void)printf("%9u page faults requiring I/O\n", sum.v_io_faults);
997         (void)printf("%9u pages affected by kernel thread creation\n",
998             sum.v_kthreadpages);
999         (void)printf("%9u pages affected by  fork()\n", sum.v_forkpages);
1000         (void)printf("%9u pages affected by vfork()\n", sum.v_vforkpages);
1001         (void)printf("%9u pages affected by rfork()\n", sum.v_rforkpages);
1002         (void)printf("%9u pages cached\n", sum.v_tcached);
1003         (void)printf("%9u pages freed\n", sum.v_tfree);
1004         (void)printf("%9u pages freed by daemon\n", sum.v_dfree);
1005         (void)printf("%9u pages freed by exiting processes\n", sum.v_pfree);
1006         (void)printf("%9u pages active\n", sum.v_active_count);
1007         (void)printf("%9u pages inactive\n", sum.v_inactive_count);
1008         (void)printf("%9u pages in VM cache\n", sum.v_cache_count);
1009         (void)printf("%9u pages wired down\n", sum.v_wire_count);
1010         (void)printf("%9u pages free\n", sum.v_free_count);
1011         (void)printf("%9u bytes per page\n", sum.v_page_size);
1012         if (kd != NULL) {
1013                 kread(X_NCHSTATS, &lnchstats, sizeof(lnchstats));
1014         } else {
1015                 size_t size = sizeof(lnchstats);
1016                 mysysctl("vfs.cache.nchstats", &lnchstats, &size, NULL, 0);
1017                 if (size != sizeof(lnchstats))
1018                         errx(1, "vfs.cache.nchstats size mismatch");
1019         }
1020         nchtotal = lnchstats.ncs_goodhits + lnchstats.ncs_neghits +
1021             lnchstats.ncs_badhits + lnchstats.ncs_falsehits +
1022             lnchstats.ncs_miss + lnchstats.ncs_long;
1023         (void)printf("%9ld total name lookups\n", nchtotal);
1024         (void)printf(
1025             "%9s cache hits (%ld%% pos + %ld%% neg) system %ld%% per-directory\n",
1026             "", PCT(lnchstats.ncs_goodhits, nchtotal),
1027             PCT(lnchstats.ncs_neghits, nchtotal),
1028             PCT(lnchstats.ncs_pass2, nchtotal));
1029         (void)printf("%9s deletions %ld%%, falsehits %ld%%, toolong %ld%%\n", "",
1030             PCT(lnchstats.ncs_badhits, nchtotal),
1031             PCT(lnchstats.ncs_falsehits, nchtotal),
1032             PCT(lnchstats.ncs_long, nchtotal));
1033 }
1034
1035 static void
1036 doforkst(void)
1037 {
1038         fill_vmmeter(&sum);
1039         (void)printf("%u forks, %u pages, average %.2f\n",
1040             sum.v_forks, sum.v_forkpages,
1041             sum.v_forks == 0 ? 0.0 :
1042             (double)sum.v_forkpages / sum.v_forks);
1043         (void)printf("%u vforks, %u pages, average %.2f\n",
1044             sum.v_vforks, sum.v_vforkpages,
1045             sum.v_vforks == 0 ? 0.0 :
1046             (double)sum.v_vforkpages / sum.v_vforks);
1047         (void)printf("%u rforks, %u pages, average %.2f\n",
1048             sum.v_rforks, sum.v_rforkpages,
1049             sum.v_rforks == 0 ? 0.0 :
1050             (double)sum.v_rforkpages / sum.v_rforks);
1051 }
1052
1053 static void
1054 devstats(void)
1055 {
1056         int dn, state;
1057         long double transfers_per_second;
1058         long double busy_seconds;
1059         long tmp;
1060
1061         for (state = 0; state < CPUSTATES; ++state) {
1062                 tmp = cur.cp_time[state];
1063                 cur.cp_time[state] -= last.cp_time[state];
1064                 last.cp_time[state] = tmp;
1065         }
1066
1067         busy_seconds = cur.snap_time - last.snap_time;
1068
1069         for (dn = 0; dn < num_devices; dn++) {
1070                 int di;
1071
1072                 if ((dev_select[dn].selected == 0)
1073                  || (dev_select[dn].selected > maxshowdevs))
1074                         continue;
1075
1076                 di = dev_select[dn].position;
1077
1078                 if (devstat_compute_statistics(&cur.dinfo->devices[di],
1079                     &last.dinfo->devices[di], busy_seconds,
1080                     DSM_TRANSFERS_PER_SECOND, &transfers_per_second,
1081                     DSM_NONE) != 0)
1082                         errx(1, "%s", devstat_errbuf);
1083
1084                 (void)printf("%3.0Lf ", transfers_per_second);
1085         }
1086 }
1087
1088 static void
1089 percent(double pct, int *over)
1090 {
1091         char buf[10];
1092         int l;
1093
1094         l = snprintf(buf, sizeof(buf), "%.0f", pct);
1095         if (l == 1 && *over) {
1096                 printf("%s",  buf);
1097                 (*over)--;
1098         } else
1099                 printf("%2s", buf);
1100         if (l > 2)
1101                 (*over)++;
1102 }
1103
1104 static void
1105 cpustats(void)
1106 {
1107         int state, over;
1108         double lpct, total;
1109
1110         total = 0;
1111         for (state = 0; state < CPUSTATES; ++state)
1112                 total += cur.cp_time[state];
1113         if (total)
1114                 lpct = 100.0 / total;
1115         else
1116                 lpct = 0.0;
1117         over = 0;
1118         printf(" ");
1119         percent((cur.cp_time[CP_USER] + cur.cp_time[CP_NICE]) * lpct, &over);
1120         printf(" ");
1121         percent((cur.cp_time[CP_SYS] + cur.cp_time[CP_INTR]) * lpct, &over);
1122         printf(" ");
1123         percent(cur.cp_time[CP_IDLE] * lpct, &over);
1124 }
1125
1126 static void
1127 pcpustats(int ncpus, u_long cpumask, int maxid)
1128 {
1129         int state, i;
1130         double lpct, total;
1131         long tmp;
1132         int over;
1133
1134         /* devstats does this for cp_time */
1135         for (i = 0; i <= maxid; i++) {
1136                 if ((cpumask & (1ul << i)) == 0)
1137                         continue;
1138                 for (state = 0; state < CPUSTATES; ++state) {
1139                         tmp = cur_cp_times[i * CPUSTATES + state];
1140                         cur_cp_times[i * CPUSTATES + state] -= last_cp_times[i *
1141                             CPUSTATES + state];
1142                         last_cp_times[i * CPUSTATES + state] = tmp;
1143                 }
1144         }
1145
1146         over = 0;
1147         for (i = 0; i <= maxid; i++) {
1148                 if ((cpumask & (1ul << i)) == 0)
1149                         continue;
1150                 total = 0;
1151                 for (state = 0; state < CPUSTATES; ++state)
1152                         total += cur_cp_times[i * CPUSTATES + state];
1153                 if (total)
1154                         lpct = 100.0 / total;
1155                 else
1156                         lpct = 0.0;
1157                 printf(" ");
1158                 percent((cur_cp_times[i * CPUSTATES + CP_USER] +
1159                          cur_cp_times[i * CPUSTATES + CP_NICE]) * lpct, &over);
1160                 printf(" ");
1161                 percent((cur_cp_times[i * CPUSTATES + CP_SYS] +
1162                          cur_cp_times[i * CPUSTATES + CP_INTR]) * lpct, &over);
1163                 printf(" ");
1164                 percent(cur_cp_times[i * CPUSTATES + CP_IDLE] * lpct, &over);
1165         }
1166 }
1167
1168 static unsigned int
1169 read_intrcnts(unsigned long **intrcnts)
1170 {
1171         size_t intrcntlen;
1172
1173         if (kd != NULL) {
1174                 kread(X_SINTRCNT, &intrcntlen, sizeof(intrcntlen));
1175                 if ((*intrcnts = malloc(intrcntlen)) == NULL)
1176                         err(1, "malloc()");
1177                 kread(X_INTRCNT, *intrcnts, intrcntlen);
1178         } else {
1179                 for (*intrcnts = NULL, intrcntlen = 1024; ; intrcntlen *= 2) {
1180                         *intrcnts = reallocf(*intrcnts, intrcntlen);
1181                         if (*intrcnts == NULL)
1182                                 err(1, "reallocf()");
1183                         if (mysysctl("hw.intrcnt",
1184                             *intrcnts, &intrcntlen, NULL, 0) == 0)
1185                                 break;
1186                 }
1187         }
1188
1189         return (intrcntlen / sizeof(unsigned long));
1190 }
1191
1192 static void
1193 print_intrcnts(unsigned long *intrcnts, unsigned long *old_intrcnts,
1194                 char *intrnames, unsigned int nintr,
1195                 size_t istrnamlen, unsigned long long period)
1196 {
1197         unsigned long *intrcnt, *old_intrcnt;
1198         uint64_t inttotal, old_inttotal, total_count, total_rate;
1199         char* intrname;
1200         unsigned int i;
1201
1202         inttotal = 0;
1203         old_inttotal = 0;
1204         intrname = intrnames;
1205         for (i = 0, intrcnt=intrcnts, old_intrcnt=old_intrcnts; i < nintr; i++) {
1206                 if (intrname[0] != '\0' && (*intrcnt != 0 || aflag)) {
1207                         unsigned long count, rate;
1208
1209                         count = *intrcnt - *old_intrcnt;
1210                         rate = (count * 1000 + period/2) / period;
1211                         (void)printf("%-*s %20lu %10lu\n", (int)istrnamlen,
1212                             intrname, count, rate);
1213                 }
1214                 intrname += strlen(intrname) + 1;
1215                 inttotal += *intrcnt++;
1216                 old_inttotal += *old_intrcnt++;
1217         }
1218         total_count = inttotal - old_inttotal;
1219         total_rate = (total_count * 1000 + period/2) / period;
1220         (void)printf("%-*s %20" PRIu64 " %10" PRIu64 "\n", (int)istrnamlen,
1221             "Total", total_count, total_rate);
1222 }
1223
1224 static void
1225 dointr(unsigned int interval, int reps)
1226 {
1227         unsigned long *intrcnts;
1228         unsigned long long uptime, period;
1229         unsigned long *old_intrcnts = NULL;
1230         size_t clen, inamlen, istrnamlen;
1231         unsigned int rep;
1232         char *intrnames, *intrname;
1233
1234         uptime = getuptime();
1235
1236         /* Get the names of each interrupt source */
1237         if (kd != NULL) {
1238                 kread(X_SINTRNAMES, &inamlen, sizeof(inamlen));
1239                 if ((intrnames = malloc(inamlen)) == NULL)
1240                         err(1, "malloc()");
1241                 kread(X_INTRNAMES, intrnames, inamlen);
1242         } else {
1243                 for (intrnames = NULL, inamlen = 1024; ; inamlen *= 2) {
1244                         if ((intrnames = reallocf(intrnames, inamlen)) == NULL)
1245                                 err(1, "reallocf()");
1246                         if (mysysctl("hw.intrnames",
1247                             intrnames, &inamlen, NULL, 0) == 0)
1248                                 break;
1249                 }
1250         }
1251
1252         /* Determine the length of the longest interrupt name */
1253         intrname = intrnames;
1254         istrnamlen = strlen("interrupt");
1255         while(*intrname != '\0') {
1256                 clen = strlen(intrname);
1257                 if (clen > istrnamlen)
1258                         istrnamlen = clen;
1259                 intrname += strlen(intrname) + 1;
1260         }
1261         (void)printf("%-*s %20s %10s\n", (int)istrnamlen, "interrupt", "total",
1262             "rate");
1263
1264         /* 
1265          * Loop reps times printing differential interrupt counts.  If reps is
1266          * zero, then run just once, printing total counts
1267          */
1268         period = uptime * 1000;
1269         while(1) {
1270                 char *intrname;
1271                 unsigned int nintr;
1272
1273                 nintr = read_intrcnts(&intrcnts);
1274                 /* 
1275                  * Initialize old_intrcnts to 0 for the first pass, so
1276                  * print_intrcnts will print total interrupts since boot
1277                  */
1278                 if (old_intrcnts == NULL) {
1279                         old_intrcnts = calloc(nintr, sizeof(unsigned long));
1280                         if (old_intrcnts == NULL)
1281                                 err(1, "calloc()");
1282                 }
1283
1284                 print_intrcnts(intrcnts, old_intrcnts, intrnames, nintr,
1285                     istrnamlen, period);
1286
1287                 free(old_intrcnts);
1288                 old_intrcnts = intrcnts;
1289                 if (reps >= 0 && --reps <= 0)
1290                         break;
1291                 usleep(interval * 1000);
1292                 period = interval;
1293         }
1294 }
1295
1296 static void
1297 domemstat_malloc(void)
1298 {
1299         struct memory_type_list *mtlp;
1300         struct memory_type *mtp;
1301         int error, first, i;
1302
1303         mtlp = memstat_mtl_alloc();
1304         if (mtlp == NULL) {
1305                 warn("memstat_mtl_alloc");
1306                 return;
1307         }
1308         if (kd == NULL) {
1309                 if (memstat_sysctl_malloc(mtlp, 0) < 0) {
1310                         warnx("memstat_sysctl_malloc: %s",
1311                             memstat_strerror(memstat_mtl_geterror(mtlp)));
1312                         return;
1313                 }
1314         } else {
1315                 if (memstat_kvm_malloc(mtlp, kd) < 0) {
1316                         error = memstat_mtl_geterror(mtlp);
1317                         if (error == MEMSTAT_ERROR_KVM)
1318                                 warnx("memstat_kvm_malloc: %s",
1319                                     kvm_geterr(kd));
1320                         else
1321                                 warnx("memstat_kvm_malloc: %s",
1322                                     memstat_strerror(error));
1323                 }
1324         }
1325         printf("%13s %5s %6s %7s %8s  Size(s)\n", "Type", "InUse", "MemUse",
1326             "HighUse", "Requests");
1327         for (mtp = memstat_mtl_first(mtlp); mtp != NULL;
1328             mtp = memstat_mtl_next(mtp)) {
1329                 if (memstat_get_numallocs(mtp) == 0 &&
1330                     memstat_get_count(mtp) == 0)
1331                         continue;
1332                 printf("%13s %5" PRIu64 " %5" PRIu64 "K %7s %8" PRIu64 "  ",
1333                     memstat_get_name(mtp), memstat_get_count(mtp),
1334                     (memstat_get_bytes(mtp) + 1023) / 1024, "-",
1335                     memstat_get_numallocs(mtp));
1336                 first = 1;
1337                 for (i = 0; i < 32; i++) {
1338                         if (memstat_get_sizemask(mtp) & (1 << i)) {
1339                                 if (!first)
1340                                         printf(",");
1341                                 printf("%d", 1 << (i + 4));
1342                                 first = 0;
1343                         }
1344                 }
1345                 printf("\n");
1346         }
1347         memstat_mtl_free(mtlp);
1348 }
1349
1350 static void
1351 domemstat_zone(void)
1352 {
1353         struct memory_type_list *mtlp;
1354         struct memory_type *mtp;
1355         char name[MEMTYPE_MAXNAME + 1];
1356         int error;
1357
1358         mtlp = memstat_mtl_alloc();
1359         if (mtlp == NULL) {
1360                 warn("memstat_mtl_alloc");
1361                 return;
1362         }
1363         if (kd == NULL) {
1364                 if (memstat_sysctl_uma(mtlp, 0) < 0) {
1365                         warnx("memstat_sysctl_uma: %s",
1366                             memstat_strerror(memstat_mtl_geterror(mtlp)));
1367                         return;
1368                 }
1369         } else {
1370                 if (memstat_kvm_uma(mtlp, kd) < 0) {
1371                         error = memstat_mtl_geterror(mtlp);
1372                         if (error == MEMSTAT_ERROR_KVM)
1373                                 warnx("memstat_kvm_uma: %s",
1374                                     kvm_geterr(kd));
1375                         else
1376                                 warnx("memstat_kvm_uma: %s",
1377                                     memstat_strerror(error));
1378                 }
1379         }
1380         printf("%-20s %6s %6s %8s %8s %8s %4s %4s\n\n", "ITEM", "SIZE",
1381             "LIMIT", "USED", "FREE", "REQ", "FAIL", "SLEEP");
1382         for (mtp = memstat_mtl_first(mtlp); mtp != NULL;
1383             mtp = memstat_mtl_next(mtp)) {
1384                 strlcpy(name, memstat_get_name(mtp), MEMTYPE_MAXNAME);
1385                 strcat(name, ":");
1386                 printf("%-20s %6" PRIu64 ", %6" PRIu64 ",%8" PRIu64 ",%8" PRIu64
1387                     ",%8" PRIu64 ",%4" PRIu64 ",%4" PRIu64 "\n", name,
1388                     memstat_get_size(mtp), memstat_get_countlimit(mtp),
1389                     memstat_get_count(mtp), memstat_get_free(mtp),
1390                     memstat_get_numallocs(mtp), memstat_get_failures(mtp),
1391                     memstat_get_sleeps(mtp));
1392         }
1393         memstat_mtl_free(mtlp);
1394         printf("\n");
1395 }
1396
1397 /*
1398  * kread reads something from the kernel, given its nlist index.
1399  */
1400 static void
1401 kreado(int nlx, void *addr, size_t size, size_t offset)
1402 {
1403         const char *sym;
1404
1405         if (namelist[nlx].n_type == 0 || namelist[nlx].n_value == 0) {
1406                 sym = namelist[nlx].n_name;
1407                 if (*sym == '_')
1408                         ++sym;
1409                 errx(1, "symbol %s not defined", sym);
1410         }
1411         if ((size_t)kvm_read(kd, namelist[nlx].n_value + offset, addr,
1412             size) != size) {
1413                 sym = namelist[nlx].n_name;
1414                 if (*sym == '_')
1415                         ++sym;
1416                 errx(1, "%s: %s", sym, kvm_geterr(kd));
1417         }
1418 }
1419
1420 static void
1421 kread(int nlx, void *addr, size_t size)
1422 {
1423         kreado(nlx, addr, size, 0);
1424 }
1425
1426 static char *
1427 kgetstr(const char *strp)
1428 {
1429         int n = 0, size = 1;
1430         char *ret = NULL;
1431
1432         do {
1433                 if (size == n + 1) {
1434                         ret = realloc(ret, size);
1435                         if (ret == NULL)
1436                                 err(1, "%s: realloc", __func__);
1437                         size *= 2;
1438                 }
1439                 if (kvm_read(kd, (u_long)strp + n, &ret[n], 1) != 1)
1440                         errx(1, "%s: %s", __func__, kvm_geterr(kd));
1441         } while (ret[n++] != '\0');
1442         return (ret);
1443 }
1444
1445 static void
1446 usage(void)
1447 {
1448         (void)fprintf(stderr, "%s%s",
1449                 "usage: vmstat [-afHhimPsz] [-M core [-N system]] [-c count] [-n devs]\n",
1450                 "              [-p type,if,pass] [-w wait] [disks] [wait [count]]\n");
1451         exit(1);
1452 }