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