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 62 #include <vm/vm_param.h> 63 64 #include <ctype.h> 65 #include <devstat.h> 66 #include <err.h> 67 #include <errno.h> 68 #include <kvm.h> 69 #include <limits.h> 70 #include <memstat.h> 71 #include <nlist.h> 72 #include <paths.h> 73 #include <stdio.h> 74 #include <stdlib.h> 75 #include <string.h> 76 #include <sysexits.h> 77 #include <time.h> 78 #include <unistd.h> 79 80 static char da[] = "da"; 81 82 static struct nlist namelist[] = { 83 #define X_CPTIME 0 84 { "_cp_time" }, 85 #define X_SUM 1 86 { "_cnt" }, 87 #define X_BOOTTIME 2 88 { "_boottime" }, 89 #define X_HZ 3 90 { "_hz" }, 91 #define X_STATHZ 4 92 { "_stathz" }, 93 #define X_NCHSTATS 5 94 { "_nchstats" }, 95 #define X_INTRNAMES 6 96 { "_intrnames" }, 97 #define X_EINTRNAMES 7 98 { "_eintrnames" }, 99 #define X_INTRCNT 8 100 { "_intrcnt" }, 101 #define X_EINTRCNT 9 102 { "_eintrcnt" }, 103 #define X_KMEMSTATS 10 104 { "_kmemstatistics" }, 105 #define X_KMEMZONES 11 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 12 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 static int winlines = 20; 138 static int aflag; 139 static int nflag; 140 141 static kvm_t *kd; 142 143 #define FORKSTAT 0x01 144 #define INTRSTAT 0x02 145 #define MEMSTAT 0x04 146 #define SUMSTAT 0x08 147 #define TIMESTAT 0x10 148 #define VMSTAT 0x20 149 #define ZMEMSTAT 0x40 150 151 static void cpustats(void); 152 static void devstats(void); 153 static void doforkst(void); 154 static void dointr(void); 155 static void dosum(void); 156 static void dovmstat(unsigned int, int); 157 static void domemstat_malloc(void); 158 static void domemstat_zone(void); 159 static void kread(int, void *, size_t); 160 static void kreado(int, void *, size_t, size_t); 161 static char *kgetstr(const char *); 162 static void needhdr(int); 163 static void printhdr(void); 164 static void usage(void); 165 166 static long pct(long, long); 167 static long getuptime(void); 168 169 static char **getdrivedata(char **); 170 171 int 172 main(int argc, char *argv[]) 173 { 174 int c, todo; 175 unsigned int interval; 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 while ((c = getopt(argc, argv, "ac:fiM:mN:n:p:stw:z")) != -1) { 184 switch (c) { 185 case 'a': 186 aflag++; 187 break; 188 case 'c': 189 reps = atoi(optarg); 190 break; 191 case 'f': 192 todo |= FORKSTAT; 193 break; 194 case 'i': 195 todo |= INTRSTAT; 196 break; 197 case 'M': 198 memf = optarg; 199 break; 200 case 'm': 201 todo |= MEMSTAT; 202 break; 203 case 'N': 204 nlistf = optarg; 205 break; 206 case 'n': 207 nflag = 1; 208 maxshowdevs = atoi(optarg); 209 if (maxshowdevs < 0) 210 errx(1, "number of devices %d is < 0", 211 maxshowdevs); 212 break; 213 case 'p': 214 if (devstat_buildmatch(optarg, &matches, &num_matches) != 0) 215 errx(1, "%s", devstat_errbuf); 216 break; 217 case 's': 218 todo |= SUMSTAT; 219 break; 220 case 't': 221 #ifdef notyet 222 todo |= TIMESTAT; 223 #else 224 errx(EX_USAGE, "sorry, -t is not (re)implemented yet"); 225 #endif 226 break; 227 case 'w': 228 interval = atoi(optarg); 229 break; 230 case 'z': 231 todo |= ZMEMSTAT; 232 break; 233 case '?': 234 default: 235 usage(); 236 } 237 } 238 argc -= optind; 239 argv += optind; 240 241 if (todo == 0) 242 todo = VMSTAT; 243 244 if (memf != NULL) { 245 kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, errbuf); 246 if (kd == NULL) 247 errx(1, "kvm_openfiles: %s", errbuf); 248 } 249 250 if (kd != NULL && (c = kvm_nlist(kd, namelist)) != 0) { 251 if (c > 0) { 252 warnx("undefined symbols:"); 253 for (c = 0; 254 c < (int)(sizeof(namelist)/sizeof(namelist[0])); 255 c++) 256 if (namelist[c].n_type == 0) 257 (void)fprintf(stderr, " %s", 258 namelist[c].n_name); 259 (void)fputc('\n', stderr); 260 } else 261 warnx("kvm_nlist: %s", kvm_geterr(kd)); 262 exit(1); 263 } 264 265 if (todo & VMSTAT) { 266 struct winsize winsize; 267 268 /* 269 * Make sure that the userland devstat version matches the 270 * kernel devstat version. If not, exit and print a 271 * message informing the user of his mistake. 272 */ 273 if (devstat_checkversion(NULL) < 0) 274 errx(1, "%s", devstat_errbuf); 275 276 277 argv = getdrivedata(argv); 278 winsize.ws_row = 0; 279 (void) ioctl(STDOUT_FILENO, TIOCGWINSZ, (char *)&winsize); 280 if (winsize.ws_row > 0) 281 winlines = winsize.ws_row; 282 283 } 284 285 #define BACKWARD_COMPATIBILITY 286 #ifdef BACKWARD_COMPATIBILITY 287 if (*argv) { 288 interval = atoi(*argv); 289 if (*++argv) 290 reps = atoi(*argv); 291 } 292 #endif 293 294 if (interval) { 295 if (!reps) 296 reps = -1; 297 } else if (reps) 298 interval = 1; 299 300 if (todo & FORKSTAT) 301 doforkst(); 302 if (todo & MEMSTAT) 303 domemstat_malloc(); 304 if (todo & ZMEMSTAT) 305 domemstat_zone(); 306 if (todo & SUMSTAT) 307 dosum(); 308 #ifdef notyet 309 if (todo & TIMESTAT) 310 dotimes(); 311 #endif 312 if (todo & INTRSTAT) 313 dointr(); 314 if (todo & VMSTAT) 315 dovmstat(interval, reps); 316 exit(0); 317 } 318 319 static int 320 mysysctl(const char *name, void *oldp, size_t *oldlenp, 321 void *newp, size_t newlen) 322 { 323 int error; 324 325 error = sysctlbyname(name, oldp, oldlenp, newp, newlen); 326 if (error != 0 && errno != ENOMEM) 327 err(1, "sysctl(%s)", name); 328 return (error); 329 } 330 331 static char ** 332 getdrivedata(char **argv) 333 { 334 if ((num_devices = devstat_getnumdevs(NULL)) < 0) 335 errx(1, "%s", devstat_errbuf); 336 337 cur.dinfo = (struct devinfo *)malloc(sizeof(struct devinfo)); 338 last.dinfo = (struct devinfo *)malloc(sizeof(struct devinfo)); 339 bzero(cur.dinfo, sizeof(struct devinfo)); 340 bzero(last.dinfo, sizeof(struct devinfo)); 341 342 if (devstat_getdevs(NULL, &cur) == -1) 343 errx(1, "%s", devstat_errbuf); 344 345 num_devices = cur.dinfo->numdevs; 346 generation = cur.dinfo->generation; 347 348 specified_devices = (char **)malloc(sizeof(char *)); 349 for (num_devices_specified = 0; *argv; ++argv) { 350 if (isdigit(**argv)) 351 break; 352 num_devices_specified++; 353 specified_devices = (char **)realloc(specified_devices, 354 sizeof(char *) * 355 num_devices_specified); 356 specified_devices[num_devices_specified - 1] = *argv; 357 } 358 dev_select = NULL; 359 360 if (nflag == 0 && maxshowdevs < num_devices_specified) 361 maxshowdevs = num_devices_specified; 362 363 /* 364 * People are generally only interested in disk statistics when 365 * they're running vmstat. So, that's what we're going to give 366 * them if they don't specify anything by default. We'll also give 367 * them any other random devices in the system so that we get to 368 * maxshowdevs devices, if that many devices exist. If the user 369 * specifies devices on the command line, either through a pattern 370 * match or by naming them explicitly, we will give the user only 371 * those devices. 372 */ 373 if ((num_devices_specified == 0) && (num_matches == 0)) { 374 if (devstat_buildmatch(da, &matches, &num_matches) != 0) 375 errx(1, "%s", devstat_errbuf); 376 377 select_mode = DS_SELECT_ADD; 378 } else 379 select_mode = DS_SELECT_ONLY; 380 381 /* 382 * At this point, selectdevs will almost surely indicate that the 383 * device list has changed, so we don't look for return values of 0 384 * or 1. If we get back -1, though, there is an error. 385 */ 386 if (devstat_selectdevs(&dev_select, &num_selected, &num_selections, 387 &select_generation, generation, cur.dinfo->devices, 388 num_devices, matches, num_matches, specified_devices, 389 num_devices_specified, select_mode, 390 maxshowdevs, 0) == -1) 391 errx(1, "%s", devstat_errbuf); 392 393 return(argv); 394 } 395 396 static long 397 getuptime(void) 398 { 399 struct timespec sp; 400 time_t uptime; 401 402 (void)clock_gettime(CLOCK_MONOTONIC, &sp); 403 uptime = sp.tv_sec; 404 if (uptime <= 0 || uptime > 60*60*24*365*10) 405 errx(1, "time makes no sense; namelist must be wrong"); 406 407 return(uptime); 408 } 409 410 static void 411 fill_vmmeter(struct vmmeter *vmmp) 412 { 413 if (kd != NULL) { 414 kread(X_SUM, vmmp, sizeof(*vmmp)); 415 } else { 416 size_t size = sizeof(unsigned int); 417 #define GET_VM_STATS(cat, name) \ 418 mysysctl("vm.stats." #cat "." #name, &vmmp->name, &size, NULL, 0) 419 /* sys */ 420 GET_VM_STATS(sys, v_swtch); 421 GET_VM_STATS(sys, v_trap); 422 GET_VM_STATS(sys, v_syscall); 423 GET_VM_STATS(sys, v_intr); 424 GET_VM_STATS(sys, v_soft); 425 426 /* vm */ 427 GET_VM_STATS(vm, v_vm_faults); 428 GET_VM_STATS(vm, v_cow_faults); 429 GET_VM_STATS(vm, v_cow_optim); 430 GET_VM_STATS(vm, v_zfod); 431 GET_VM_STATS(vm, v_ozfod); 432 GET_VM_STATS(vm, v_swapin); 433 GET_VM_STATS(vm, v_swapout); 434 GET_VM_STATS(vm, v_swappgsin); 435 GET_VM_STATS(vm, v_swappgsout); 436 GET_VM_STATS(vm, v_vnodein); 437 GET_VM_STATS(vm, v_vnodeout); 438 GET_VM_STATS(vm, v_vnodepgsin); 439 GET_VM_STATS(vm, v_vnodepgsout); 440 GET_VM_STATS(vm, v_intrans); 441 GET_VM_STATS(vm, v_reactivated); 442 GET_VM_STATS(vm, v_pdwakeups); 443 GET_VM_STATS(vm, v_pdpages); 444 GET_VM_STATS(vm, v_tcached); 445 GET_VM_STATS(vm, v_dfree); 446 GET_VM_STATS(vm, v_pfree); 447 GET_VM_STATS(vm, v_tfree); 448 GET_VM_STATS(vm, v_page_size); 449 GET_VM_STATS(vm, v_page_count); 450 GET_VM_STATS(vm, v_free_reserved); 451 GET_VM_STATS(vm, v_free_target); 452 GET_VM_STATS(vm, v_free_min); 453 GET_VM_STATS(vm, v_free_count); 454 GET_VM_STATS(vm, v_wire_count); 455 GET_VM_STATS(vm, v_active_count); 456 GET_VM_STATS(vm, v_inactive_target); 457 GET_VM_STATS(vm, v_inactive_count); 458 GET_VM_STATS(vm, v_cache_count); 459 GET_VM_STATS(vm, v_cache_min); 460 GET_VM_STATS(vm, v_cache_max); 461 GET_VM_STATS(vm, v_pageout_free_min); 462 GET_VM_STATS(vm, v_interrupt_free_min); 463 /*GET_VM_STATS(vm, v_free_severe);*/ 464 GET_VM_STATS(vm, v_forks); 465 GET_VM_STATS(vm, v_vforks); 466 GET_VM_STATS(vm, v_rforks); 467 GET_VM_STATS(vm, v_kthreads); 468 GET_VM_STATS(vm, v_forkpages); 469 GET_VM_STATS(vm, v_vforkpages); 470 GET_VM_STATS(vm, v_rforkpages); 471 GET_VM_STATS(vm, v_kthreadpages); 472 #undef GET_VM_STATS 473 } 474 } 475 476 static void 477 fill_vmtotal(struct vmtotal *vmtp) 478 { 479 if (kd != NULL) { 480 /* XXX fill vmtp */ 481 errx(1, "not implemented"); 482 } else { 483 size_t size = sizeof(*vmtp); 484 mysysctl("vm.vmtotal", vmtp, &size, NULL, 0); 485 if (size != sizeof(*vmtp)) 486 errx(1, "vm.total size mismatch"); 487 } 488 } 489 490 static int hz, hdrcnt; 491 492 static void 493 dovmstat(unsigned int interval, int reps) 494 { 495 struct vmtotal total; 496 time_t uptime, halfuptime; 497 struct devinfo *tmp_dinfo; 498 size_t size; 499 500 uptime = getuptime(); 501 halfuptime = uptime / 2; 502 (void)signal(SIGCONT, needhdr); 503 504 if (kd != NULL) { 505 if (namelist[X_STATHZ].n_type != 0 && 506 namelist[X_STATHZ].n_value != 0) 507 kread(X_STATHZ, &hz, sizeof(hz)); 508 if (!hz) 509 kread(X_HZ, &hz, sizeof(hz)); 510 } else { 511 struct clockinfo clockrate; 512 513 size = sizeof(clockrate); 514 mysysctl("kern.clockrate", &clockrate, &size, NULL, 0); 515 if (size != sizeof(clockrate)) 516 errx(1, "clockrate size mismatch"); 517 hz = clockrate.hz; 518 } 519 520 for (hdrcnt = 1;;) { 521 if (!--hdrcnt) 522 printhdr(); 523 if (kd != NULL) { 524 kread(X_CPTIME, cur.cp_time, sizeof(cur.cp_time)); 525 } else { 526 size = sizeof(cur.cp_time); 527 mysysctl("kern.cp_time", &cur.cp_time, &size, NULL, 0); 528 if (size != sizeof(cur.cp_time)) 529 errx(1, "cp_time size mismatch"); 530 } 531 532 tmp_dinfo = last.dinfo; 533 last.dinfo = cur.dinfo; 534 cur.dinfo = tmp_dinfo; 535 last.snap_time = cur.snap_time; 536 537 /* 538 * Here what we want to do is refresh our device stats. 539 * getdevs() returns 1 when the device list has changed. 540 * If the device list has changed, we want to go through 541 * the selection process again, in case a device that we 542 * were previously displaying has gone away. 543 */ 544 switch (devstat_getdevs(NULL, &cur)) { 545 case -1: 546 errx(1, "%s", devstat_errbuf); 547 break; 548 case 1: { 549 int retval; 550 551 num_devices = cur.dinfo->numdevs; 552 generation = cur.dinfo->generation; 553 554 retval = devstat_selectdevs(&dev_select, &num_selected, 555 &num_selections, &select_generation, 556 generation, cur.dinfo->devices, 557 num_devices, matches, num_matches, 558 specified_devices, 559 num_devices_specified, select_mode, 560 maxshowdevs, 0); 561 switch (retval) { 562 case -1: 563 errx(1, "%s", devstat_errbuf); 564 break; 565 case 1: 566 printhdr(); 567 break; 568 default: 569 break; 570 } 571 } 572 default: 573 break; 574 } 575 576 fill_vmmeter(&sum); 577 fill_vmtotal(&total); 578 (void)printf("%2d %1d %1d", 579 total.t_rq - 1, total.t_dw + total.t_pw, total.t_sw); 580 #define vmstat_pgtok(a) ((a) * (sum.v_page_size >> 10)) 581 #define rate(x) (((x) + halfuptime) / uptime) /* round */ 582 (void)printf(" %7d %6d ", vmstat_pgtok(total.t_avm), 583 vmstat_pgtok(total.t_free)); 584 (void)printf("%5lu ", 585 (unsigned long)rate(sum.v_vm_faults - osum.v_vm_faults)); 586 (void)printf("%3lu ", 587 (unsigned long)rate(sum.v_reactivated - osum.v_reactivated)); 588 (void)printf("%3lu ", 589 (unsigned long)rate(sum.v_swapin + sum.v_vnodein - 590 (osum.v_swapin + osum.v_vnodein))); 591 (void)printf("%3lu ", 592 (unsigned long)rate(sum.v_swapout + sum.v_vnodeout - 593 (osum.v_swapout + osum.v_vnodeout))); 594 (void)printf("%5lu ", 595 (unsigned long)rate(sum.v_tfree - osum.v_tfree)); 596 (void)printf("%3lu ", 597 (unsigned long)rate(sum.v_pdpages - osum.v_pdpages)); 598 devstats(); 599 (void)printf("%4lu %4lu %4lu ", 600 (unsigned long)rate(sum.v_intr - osum.v_intr), 601 (unsigned long)rate(sum.v_syscall - osum.v_syscall), 602 (unsigned long)rate(sum.v_swtch - osum.v_swtch)); 603 cpustats(); 604 (void)printf("\n"); 605 (void)fflush(stdout); 606 if (reps >= 0 && --reps <= 0) 607 break; 608 osum = sum; 609 uptime = interval; 610 /* 611 * We round upward to avoid losing low-frequency events 612 * (i.e., >= 1 per interval but < 1 per second). 613 */ 614 if (interval != 1) 615 halfuptime = (uptime + 1) / 2; 616 else 617 halfuptime = 0; 618 (void)sleep(interval); 619 } 620 } 621 622 static void 623 printhdr(void) 624 { 625 int i, num_shown; 626 627 num_shown = (num_selected < maxshowdevs) ? num_selected : maxshowdevs; 628 (void)printf(" procs memory page%*s", 19, ""); 629 if (num_shown > 1) 630 (void)printf(" disks %*s", num_shown * 4 - 7, ""); 631 else if (num_shown == 1) 632 (void)printf("disk"); 633 (void)printf(" faults cpu\n"); 634 (void)printf(" r b w avm fre flt re pi po fr sr "); 635 for (i = 0; i < num_devices; i++) 636 if ((dev_select[i].selected) 637 && (dev_select[i].selected <= maxshowdevs)) 638 (void)printf("%c%c%d ", dev_select[i].device_name[0], 639 dev_select[i].device_name[1], 640 dev_select[i].unit_number); 641 (void)printf(" in sy cs us sy id\n"); 642 hdrcnt = winlines - 2; 643 } 644 645 /* 646 * Force a header to be prepended to the next output. 647 */ 648 static void 649 needhdr(int dummy __unused) 650 { 651 652 hdrcnt = 1; 653 } 654 655 #ifdef notyet 656 static void 657 dotimes(void) 658 { 659 unsigned int pgintime, rectime; 660 661 kread(X_REC, &rectime, sizeof(rectime)); 662 kread(X_PGIN, &pgintime, sizeof(pgintime)); 663 kread(X_SUM, &sum, sizeof(sum)); 664 (void)printf("%u reclaims, %u total time (usec)\n", 665 sum.v_pgrec, rectime); 666 (void)printf("average: %u usec / reclaim\n", rectime / sum.v_pgrec); 667 (void)printf("\n"); 668 (void)printf("%u page ins, %u total time (msec)\n", 669 sum.v_pgin, pgintime / 10); 670 (void)printf("average: %8.1f msec / page in\n", 671 pgintime / (sum.v_pgin * 10.0)); 672 } 673 #endif 674 675 static long 676 pct(long top, long bot) 677 { 678 long ans; 679 680 if (bot == 0) 681 return(0); 682 ans = (quad_t)top * 100 / bot; 683 return (ans); 684 } 685 686 #define PCT(top, bot) pct((long)(top), (long)(bot)) 687 688 static void 689 dosum(void) 690 { 691 struct nchstats lnchstats; 692 long nchtotal; 693 694 fill_vmmeter(&sum); 695 (void)printf("%9u cpu context switches\n", sum.v_swtch); 696 (void)printf("%9u device interrupts\n", sum.v_intr); 697 (void)printf("%9u software interrupts\n", sum.v_soft); 698 (void)printf("%9u traps\n", sum.v_trap); 699 (void)printf("%9u system calls\n", sum.v_syscall); 700 (void)printf("%9u kernel threads created\n", sum.v_kthreads); 701 (void)printf("%9u fork() calls\n", sum.v_forks); 702 (void)printf("%9u vfork() calls\n", sum.v_vforks); 703 (void)printf("%9u rfork() calls\n", sum.v_rforks); 704 (void)printf("%9u swap pager pageins\n", sum.v_swapin); 705 (void)printf("%9u swap pager pages paged in\n", sum.v_swappgsin); 706 (void)printf("%9u swap pager pageouts\n", sum.v_swapout); 707 (void)printf("%9u swap pager pages paged out\n", sum.v_swappgsout); 708 (void)printf("%9u vnode pager pageins\n", sum.v_vnodein); 709 (void)printf("%9u vnode pager pages paged in\n", sum.v_vnodepgsin); 710 (void)printf("%9u vnode pager pageouts\n", sum.v_vnodeout); 711 (void)printf("%9u vnode pager pages paged out\n", sum.v_vnodepgsout); 712 (void)printf("%9u page daemon wakeups\n", sum.v_pdwakeups); 713 (void)printf("%9u pages examined by the page daemon\n", sum.v_pdpages); 714 (void)printf("%9u pages reactivated\n", sum.v_reactivated); 715 (void)printf("%9u copy-on-write faults\n", sum.v_cow_faults); 716 (void)printf("%9u copy-on-write optimized faults\n", sum.v_cow_optim); 717 (void)printf("%9u zero fill pages zeroed\n", sum.v_zfod); 718 (void)printf("%9u zero fill pages prezeroed\n", sum.v_ozfod); 719 (void)printf("%9u intransit blocking page faults\n", sum.v_intrans); 720 (void)printf("%9u total VM faults taken\n", sum.v_vm_faults); 721 (void)printf("%9u pages affected by kernel thread creation\n", sum.v_kthreadpages); 722 (void)printf("%9u pages affected by fork()\n", sum.v_forkpages); 723 (void)printf("%9u pages affected by vfork()\n", sum.v_vforkpages); 724 (void)printf("%9u pages affected by rfork()\n", sum.v_rforkpages); 725 (void)printf("%9u pages cached\n", sum.v_tcached); 726 (void)printf("%9u pages freed\n", sum.v_tfree); 727 (void)printf("%9u pages freed by daemon\n", sum.v_dfree); 728 (void)printf("%9u pages freed by exiting processes\n", sum.v_pfree); 729 (void)printf("%9u pages active\n", sum.v_active_count); 730 (void)printf("%9u pages inactive\n", sum.v_inactive_count); 731 (void)printf("%9u pages in VM cache\n", sum.v_cache_count); 732 (void)printf("%9u pages wired down\n", sum.v_wire_count); 733 (void)printf("%9u pages free\n", sum.v_free_count); 734 (void)printf("%9u bytes per page\n", sum.v_page_size); 735 if (kd != NULL) { 736 kread(X_NCHSTATS, &lnchstats, sizeof(lnchstats)); 737 } else { 738 size_t size = sizeof(lnchstats); 739 mysysctl("vfs.cache.nchstats", &lnchstats, &size, NULL, 0); 740 if (size != sizeof(lnchstats)) 741 errx(1, "vfs.cache.nchstats size mismatch"); 742 } 743 nchtotal = lnchstats.ncs_goodhits + lnchstats.ncs_neghits + 744 lnchstats.ncs_badhits + lnchstats.ncs_falsehits + 745 lnchstats.ncs_miss + lnchstats.ncs_long; 746 (void)printf("%9ld total name lookups\n", nchtotal); 747 (void)printf( 748 "%9s cache hits (%ld%% pos + %ld%% neg) system %ld%% per-directory\n", 749 "", PCT(lnchstats.ncs_goodhits, nchtotal), 750 PCT(lnchstats.ncs_neghits, nchtotal), 751 PCT(lnchstats.ncs_pass2, nchtotal)); 752 (void)printf("%9s deletions %ld%%, falsehits %ld%%, toolong %ld%%\n", "", 753 PCT(lnchstats.ncs_badhits, nchtotal), 754 PCT(lnchstats.ncs_falsehits, nchtotal), 755 PCT(lnchstats.ncs_long, nchtotal)); 756 } 757 758 static void 759 doforkst(void) 760 { 761 fill_vmmeter(&sum); 762 (void)printf("%u forks, %u pages, average %.2f\n", 763 sum.v_forks, sum.v_forkpages, 764 sum.v_forks == 0 ? 0.0 : 765 (double)sum.v_forkpages / sum.v_forks); 766 (void)printf("%u vforks, %u pages, average %.2f\n", 767 sum.v_vforks, sum.v_vforkpages, 768 sum.v_vforks == 0 ? 0.0 : 769 (double)sum.v_vforkpages / sum.v_vforks); 770 (void)printf("%u rforks, %u pages, average %.2f\n", 771 sum.v_rforks, sum.v_rforkpages, 772 sum.v_rforks == 0 ? 0.0 : 773 (double)sum.v_rforkpages / sum.v_rforks); 774 } 775 776 static void 777 devstats(void) 778 { 779 int dn, state; 780 long double transfers_per_second; 781 long double busy_seconds; 782 long tmp; 783 784 for (state = 0; state < CPUSTATES; ++state) { 785 tmp = cur.cp_time[state]; 786 cur.cp_time[state] -= last.cp_time[state]; 787 last.cp_time[state] = tmp; 788 } 789 790 busy_seconds = cur.snap_time - last.snap_time; 791 792 for (dn = 0; dn < num_devices; dn++) { 793 int di; 794 795 if ((dev_select[dn].selected == 0) 796 || (dev_select[dn].selected > maxshowdevs)) 797 continue; 798 799 di = dev_select[dn].position; 800 801 if (devstat_compute_statistics(&cur.dinfo->devices[di], 802 &last.dinfo->devices[di], busy_seconds, 803 DSM_TRANSFERS_PER_SECOND, &transfers_per_second, 804 DSM_NONE) != 0) 805 errx(1, "%s", devstat_errbuf); 806 807 (void)printf("%3.0Lf ", transfers_per_second); 808 } 809 } 810 811 static void 812 cpustats(void) 813 { 814 int state; 815 double lpct, total; 816 817 total = 0; 818 for (state = 0; state < CPUSTATES; ++state) 819 total += cur.cp_time[state]; 820 if (total) 821 lpct = 100.0 / total; 822 else 823 lpct = 0.0; 824 (void)printf("%2.0f ", (cur.cp_time[CP_USER] + 825 cur.cp_time[CP_NICE]) * lpct); 826 (void)printf("%2.0f ", (cur.cp_time[CP_SYS] + 827 cur.cp_time[CP_INTR]) * lpct); 828 (void)printf("%2.0f", cur.cp_time[CP_IDLE] * lpct); 829 } 830 831 static void 832 dointr(void) 833 { 834 unsigned long *intrcnt, uptime; 835 uint64_t inttotal; 836 size_t clen, inamlen, intrcntlen, istrnamlen; 837 unsigned int i, nintr; 838 char *intrname, *tintrname; 839 840 uptime = getuptime(); 841 if (kd != NULL) { 842 intrcntlen = namelist[X_EINTRCNT].n_value - 843 namelist[X_INTRCNT].n_value; 844 inamlen = namelist[X_EINTRNAMES].n_value - 845 namelist[X_INTRNAMES].n_value; 846 if ((intrcnt = malloc(intrcntlen)) == NULL || 847 (intrname = malloc(inamlen)) == NULL) 848 err(1, "malloc()"); 849 kread(X_INTRCNT, intrcnt, intrcntlen); 850 kread(X_INTRNAMES, intrname, inamlen); 851 } else { 852 for (intrcnt = NULL, intrcntlen = 1024; ; intrcntlen *= 2) { 853 if ((intrcnt = reallocf(intrcnt, intrcntlen)) == NULL) 854 err(1, "reallocf()"); 855 if (mysysctl("hw.intrcnt", 856 intrcnt, &intrcntlen, NULL, 0) == 0) 857 break; 858 } 859 for (intrname = NULL, inamlen = 1024; ; inamlen *= 2) { 860 if ((intrname = reallocf(intrname, inamlen)) == NULL) 861 err(1, "reallocf()"); 862 if (mysysctl("hw.intrnames", 863 intrname, &inamlen, NULL, 0) == 0) 864 break; 865 } 866 } 867 nintr = intrcntlen / sizeof(unsigned long); 868 tintrname = intrname; 869 istrnamlen = strlen("interrupt"); 870 for (i = 0; i < nintr; i++) { 871 clen = strlen(tintrname); 872 if (clen > istrnamlen) 873 istrnamlen = clen; 874 tintrname += clen + 1; 875 } 876 (void)printf("%-*s %20s %10s\n", istrnamlen, "interrupt", "total", 877 "rate"); 878 inttotal = 0; 879 for (i = 0; i < nintr; i++) { 880 if (intrname[0] != '\0' && (*intrcnt != 0 || aflag)) 881 (void)printf("%-*s %20lu %10lu\n", istrnamlen, intrname, 882 *intrcnt, *intrcnt / uptime); 883 intrname += strlen(intrname) + 1; 884 inttotal += *intrcnt++; 885 } 886 (void)printf("%-*s %20llu %10llu\n", istrnamlen, "Total", 887 (long long)inttotal, (long long)(inttotal / uptime)); 888 } 889 890 static void 891 domemstat_malloc(void) 892 { 893 struct memory_type_list *mtlp; 894 struct memory_type *mtp; 895 int error, first, i; 896 897 mtlp = memstat_mtl_alloc(); 898 if (mtlp == NULL) { 899 warn("memstat_mtl_alloc"); 900 return; 901 } 902 if (kd == NULL) { 903 if (memstat_sysctl_malloc(mtlp, 0) < 0) { 904 warnx("memstat_sysctl_malloc: %s", 905 memstat_strerror(memstat_mtl_geterror(mtlp))); 906 return; 907 } 908 } else { 909 if (memstat_kvm_malloc(mtlp, kd) < 0) { 910 error = memstat_mtl_geterror(mtlp); 911 if (error == MEMSTAT_ERROR_KVM) 912 warnx("memstat_kvm_malloc: %s", 913 kvm_geterr(kd)); 914 else 915 warnx("memstat_kvm_malloc: %s", 916 memstat_strerror(error)); 917 } 918 } 919 printf("%13s %5s %6s %7s %8s Size(s)\n", "Type", "InUse", "MemUse", 920 "HighUse", "Requests"); 921 for (mtp = memstat_mtl_first(mtlp); mtp != NULL; 922 mtp = memstat_mtl_next(mtp)) { 923 if (memstat_get_numallocs(mtp) == 0 && 924 memstat_get_count(mtp) == 0) 925 continue; 926 printf("%13s %5lld %5lldK %7s %8lld ", 927 memstat_get_name(mtp), memstat_get_count(mtp), 928 ((int64_t)memstat_get_bytes(mtp) + 1023) / 1024, "-", 929 memstat_get_numallocs(mtp)); 930 first = 1; 931 for (i = 0; i < 32; i++) { 932 if (memstat_get_sizemask(mtp) & (1 << i)) { 933 if (!first) 934 printf(","); 935 printf("%d", 1 << (i + 4)); 936 first = 0; 937 } 938 } 939 printf("\n"); 940 } 941 memstat_mtl_free(mtlp); 942 } 943 944 static void 945 domemstat_zone(void) 946 { 947 struct memory_type_list *mtlp; 948 struct memory_type *mtp; 949 char name[MEMTYPE_MAXNAME + 1]; 950 int error; 951 952 mtlp = memstat_mtl_alloc(); 953 if (mtlp == NULL) { 954 warn("memstat_mtl_alloc"); 955 return; 956 } 957 if (kd == NULL) { 958 if (memstat_sysctl_uma(mtlp, 0) < 0) { 959 warnx("memstat_sysctl_uma: %s", 960 memstat_strerror(memstat_mtl_geterror(mtlp))); 961 return; 962 } 963 } else { 964 if (memstat_kvm_uma(mtlp, kd) < 0) { 965 error = memstat_mtl_geterror(mtlp); 966 if (error == MEMSTAT_ERROR_KVM) 967 warnx("memstat_kvm_uma: %s", 968 kvm_geterr(kd)); 969 else 970 warnx("memstat_kvm_uma: %s", 971 memstat_strerror(error)); 972 } 973 } 974 printf("%-20s %8s %8s %8s %8s %8s %8s\n\n", "ITEM", "SIZE", 975 "LIMIT", "USED", "FREE", "REQUESTS", "FAILURES"); 976 for (mtp = memstat_mtl_first(mtlp); mtp != NULL; 977 mtp = memstat_mtl_next(mtp)) { 978 strlcpy(name, memstat_get_name(mtp), MEMTYPE_MAXNAME); 979 strcat(name, ":"); 980 printf("%-20s %8llu, %8llu, %8llu, %8llu, %8llu, %8llu\n", name, 981 memstat_get_size(mtp), memstat_get_countlimit(mtp), 982 memstat_get_count(mtp), memstat_get_free(mtp), 983 memstat_get_numallocs(mtp), memstat_get_failures(mtp)); 984 } 985 memstat_mtl_free(mtlp); 986 printf("\n"); 987 } 988 989 /* 990 * kread reads something from the kernel, given its nlist index. 991 */ 992 static void 993 kreado(int nlx, void *addr, size_t size, size_t offset) 994 { 995 const char *sym; 996 997 if (namelist[nlx].n_type == 0 || namelist[nlx].n_value == 0) { 998 sym = namelist[nlx].n_name; 999 if (*sym == '_') 1000 ++sym; 1001 errx(1, "symbol %s not defined", sym); 1002 } 1003 if ((size_t)kvm_read(kd, namelist[nlx].n_value + offset, addr, 1004 size) != size) { 1005 sym = namelist[nlx].n_name; 1006 if (*sym == '_') 1007 ++sym; 1008 errx(1, "%s: %s", sym, kvm_geterr(kd)); 1009 } 1010 } 1011 1012 static void 1013 kread(int nlx, void *addr, size_t size) 1014 { 1015 kreado(nlx, addr, size, 0); 1016 } 1017 1018 static char * 1019 kgetstr(const char *strp) 1020 { 1021 int n = 0, size = 1; 1022 char *ret = NULL; 1023 1024 do { 1025 if (size == n + 1) { 1026 ret = realloc(ret, size); 1027 if (ret == NULL) 1028 err(1, "%s: realloc", __func__); 1029 size *= 2; 1030 } 1031 if (kvm_read(kd, (u_long)strp + n, &ret[n], 1) != 1) 1032 errx(1, "%s: %s", __func__, kvm_geterr(kd)); 1033 } while (ret[n++] != '\0'); 1034 return (ret); 1035 } 1036 1037 static void 1038 usage(void) 1039 { 1040 (void)fprintf(stderr, "%s%s", 1041 "usage: vmstat [-afimsz] [-c count] [-M core [-N system]] [-w wait]\n", 1042 " [-n devs] [-p type,if,pass] [disks]\n"); 1043 exit(1); 1044 } 1045