1dea673e9SRodney W. Grimes /*- 28a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 38a16b7a1SPedro F. Giffuni * 49c5cdfe0SPeter Wemm * Copyright (c) 1980, 1991, 1993, 1994 5dea673e9SRodney W. Grimes * The Regents of the University of California. All rights reserved. 65f9ab4b0SDag-Erling Smørgrav * Copyright (c) 2002 Networks Associates Technologies, Inc. 75f9ab4b0SDag-Erling Smørgrav * All rights reserved. 85f9ab4b0SDag-Erling Smørgrav * 95f9ab4b0SDag-Erling Smørgrav * Portions of this software were developed for the FreeBSD Project by 105f9ab4b0SDag-Erling Smørgrav * ThinkSec AS and NAI Labs, the Security Research Division of Network 115f9ab4b0SDag-Erling Smørgrav * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 125f9ab4b0SDag-Erling Smørgrav * ("CBOSS"), as part of the DARPA CHATS research program. 13dea673e9SRodney W. Grimes * 14dea673e9SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 15dea673e9SRodney W. Grimes * modification, are permitted provided that the following conditions 16dea673e9SRodney W. Grimes * are met: 17dea673e9SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 18dea673e9SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 19dea673e9SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 20dea673e9SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 21dea673e9SRodney W. Grimes * documentation and/or other materials provided with the distribution. 22fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors 23dea673e9SRodney W. Grimes * may be used to endorse or promote products derived from this software 24dea673e9SRodney W. Grimes * without specific prior written permission. 25dea673e9SRodney W. Grimes * 26dea673e9SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 27dea673e9SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 28dea673e9SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29dea673e9SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 30dea673e9SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 31dea673e9SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 32dea673e9SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 33dea673e9SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34dea673e9SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 35dea673e9SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 36dea673e9SRodney W. Grimes * SUCH DAMAGE. 37dea673e9SRodney W. Grimes */ 38dea673e9SRodney W. Grimes 39dea673e9SRodney W. Grimes #include <sys/param.h> 40dea673e9SRodney W. Grimes #include <sys/time.h> 41dea673e9SRodney W. Grimes #include <sys/file.h> 42dea673e9SRodney W. Grimes #include <sys/stat.h> 434418dbbdSDag-Erling Smørgrav #include <sys/stdint.h> 44dea673e9SRodney W. Grimes #include <sys/ioctl.h> 45dea673e9SRodney W. Grimes #include <sys/tty.h> 46eedc3436SMatthew Dillon #include <sys/blist.h> 47dea673e9SRodney W. Grimes 48dea673e9SRodney W. Grimes #include <sys/sysctl.h> 496004362eSDavid Schultz #include <vm/vm_param.h> 50dea673e9SRodney W. Grimes 51dea673e9SRodney W. Grimes #include <err.h> 526004362eSDavid Schultz #include <errno.h> 535d98ce75SBruce Evans #include <fcntl.h> 54dea673e9SRodney W. Grimes #include <kvm.h> 557257230fSGiorgos Keramidas #include <libutil.h> 56dea673e9SRodney W. Grimes #include <limits.h> 57dea673e9SRodney W. Grimes #include <nlist.h> 58dea673e9SRodney W. Grimes #include <stdio.h> 59dea673e9SRodney W. Grimes #include <stdlib.h> 60dea673e9SRodney W. Grimes #include <string.h> 61dea673e9SRodney W. Grimes #include <unistd.h> 62dea673e9SRodney W. Grimes 63182a90e4SDag-Erling Smørgrav enum { 64182a90e4SDag-Erling Smørgrav NL_CONSTTY, 65182a90e4SDag-Erling Smørgrav NL_MAXFILES, 66182a90e4SDag-Erling Smørgrav NL_NFILES, 6752074d38SStanislav Sedov NL_TTY_LIST, 6852074d38SStanislav Sedov NL_MARKER 69182a90e4SDag-Erling Smørgrav }; 70182a90e4SDag-Erling Smørgrav 7152074d38SStanislav Sedov static struct { 7252074d38SStanislav Sedov int order; 7352074d38SStanislav Sedov const char *name; 7452074d38SStanislav Sedov } namelist[] = { 7552074d38SStanislav Sedov { NL_CONSTTY, "_constty" }, 7652074d38SStanislav Sedov { NL_MAXFILES, "_maxfiles" }, 7752074d38SStanislav Sedov { NL_NFILES, "_openfiles" }, 7852074d38SStanislav Sedov { NL_TTY_LIST, "_tty_list" }, 7952074d38SStanislav Sedov { NL_MARKER, "" }, 80dea673e9SRodney W. Grimes }; 8152074d38SStanislav Sedov #define NNAMES (sizeof(namelist) / sizeof(*namelist)) 8252074d38SStanislav Sedov static struct nlist nl[NNAMES]; 83dea673e9SRodney W. Grimes 849a990500SChristian S.J. Peron #define SIZEHDR "Size" 859a990500SChristian S.J. Peron 867257230fSGiorgos Keramidas static int humanflag; 871dcc9c32SDag-Erling Smørgrav static int usenumflag; 881dcc9c32SDag-Erling Smørgrav static int totalflag; 891dcc9c32SDag-Erling Smørgrav static int swapflag; 90d88b2458SDag-Erling Smørgrav static char *nlistf; 91d88b2458SDag-Erling Smørgrav static char *memf; 921dcc9c32SDag-Erling Smørgrav static kvm_t *kd; 93dea673e9SRodney W. Grimes 94777e045cSEd Schouten static const char *usagestr; 9559392fe2SPoul-Henning Kamp 96c9624363SDag-Erling Smørgrav static void filemode(void); 9752074d38SStanislav Sedov static int getfiles(struct xfile **, size_t *); 98c9624363SDag-Erling Smørgrav static void swapmode(void); 99c9624363SDag-Erling Smørgrav static void ttymode(void); 100333eaaedSDag-Erling Smørgrav static void ttyprt(struct xtty *); 101c9624363SDag-Erling Smørgrav static void usage(void); 102dea673e9SRodney W. Grimes 103dea673e9SRodney W. Grimes int 104c9624363SDag-Erling Smørgrav main(int argc, char *argv[]) 105dea673e9SRodney W. Grimes { 10652074d38SStanislav Sedov int ch, quit, ret; 1070cbfd1a5SDag-Erling Smørgrav int fileflag, ttyflag; 10852074d38SStanislav Sedov unsigned int i; 109777e045cSEd Schouten char buf[_POSIX2_LINE_MAX]; 110777e045cSEd Schouten const char *opts; 111dea673e9SRodney W. Grimes 1120cbfd1a5SDag-Erling Smørgrav fileflag = swapflag = ttyflag = 0; 11359392fe2SPoul-Henning Kamp 11459392fe2SPoul-Henning Kamp /* We will behave like good old swapinfo if thus invoked */ 11559392fe2SPoul-Henning Kamp opts = strrchr(argv[0], '/'); 11659392fe2SPoul-Henning Kamp if (opts) 11759392fe2SPoul-Henning Kamp opts++; 11859392fe2SPoul-Henning Kamp else 11959392fe2SPoul-Henning Kamp opts = argv[0]; 12059392fe2SPoul-Henning Kamp if (!strcmp(opts, "swapinfo")) { 12159392fe2SPoul-Henning Kamp swapflag = 1; 1227e8409a7SMark Murray opts = "ghkmM:N:"; 1237e8409a7SMark Murray usagestr = "swapinfo [-ghkm] [-M core [-N system]]"; 12459392fe2SPoul-Henning Kamp } else { 125ae35e8adSRuslan Ermilov opts = "TM:N:fghkmnst"; 126ae35e8adSRuslan Ermilov usagestr = "pstat [-Tfghkmnst] [-M core [-N system]]"; 12759392fe2SPoul-Henning Kamp } 12859392fe2SPoul-Henning Kamp 1296c3f552aSWarner Losh while ((ch = getopt(argc, argv, opts)) != -1) 130dea673e9SRodney W. Grimes switch (ch) { 131dea673e9SRodney W. Grimes case 'f': 132dea673e9SRodney W. Grimes fileflag = 1; 133dea673e9SRodney W. Grimes break; 1347e8409a7SMark Murray case 'g': 1352966d28cSSean Farley setenv("BLOCKSIZE", "1G", 1); 1367e8409a7SMark Murray break; 1377257230fSGiorgos Keramidas case 'h': 1387257230fSGiorgos Keramidas humanflag = 1; 1397257230fSGiorgos Keramidas break; 14059392fe2SPoul-Henning Kamp case 'k': 1412966d28cSSean Farley setenv("BLOCKSIZE", "1K", 1); 14259392fe2SPoul-Henning Kamp break; 1437e8409a7SMark Murray case 'm': 1442966d28cSSean Farley setenv("BLOCKSIZE", "1M", 1); 1457e8409a7SMark Murray break; 146dea673e9SRodney W. Grimes case 'M': 147dea673e9SRodney W. Grimes memf = optarg; 148dea673e9SRodney W. Grimes break; 149dea673e9SRodney W. Grimes case 'N': 150dea673e9SRodney W. Grimes nlistf = optarg; 151dea673e9SRodney W. Grimes break; 152dea673e9SRodney W. Grimes case 'n': 153dea673e9SRodney W. Grimes usenumflag = 1; 154dea673e9SRodney W. Grimes break; 155dea673e9SRodney W. Grimes case 's': 156eedc3436SMatthew Dillon ++swapflag; 157dea673e9SRodney W. Grimes break; 158dea673e9SRodney W. Grimes case 'T': 159dea673e9SRodney W. Grimes totalflag = 1; 160dea673e9SRodney W. Grimes break; 161dea673e9SRodney W. Grimes case 't': 162dea673e9SRodney W. Grimes ttyflag = 1; 163dea673e9SRodney W. Grimes break; 164dea673e9SRodney W. Grimes default: 165d9961cfdSPhilippe Charnier usage(); 166dea673e9SRodney W. Grimes } 167dea673e9SRodney W. Grimes 16852074d38SStanislav Sedov /* 16952074d38SStanislav Sedov * Initialize symbol names list. 17052074d38SStanislav Sedov */ 17152074d38SStanislav Sedov for (i = 0; i < NNAMES; i++) 17252074d38SStanislav Sedov nl[namelist[i].order].n_name = strdup(namelist[i].name); 17352074d38SStanislav Sedov 1744418dbbdSDag-Erling Smørgrav if (memf != NULL) { 1754418dbbdSDag-Erling Smørgrav kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, buf); 1764418dbbdSDag-Erling Smørgrav if (kd == NULL) 177dea673e9SRodney W. Grimes errx(1, "kvm_openfiles: %s", buf); 178dea673e9SRodney W. Grimes if ((ret = kvm_nlist(kd, nl)) != 0) { 179dea673e9SRodney W. Grimes if (ret == -1) 180dea673e9SRodney W. Grimes errx(1, "kvm_nlist: %s", kvm_geterr(kd)); 1814418dbbdSDag-Erling Smørgrav quit = 0; 182182a90e4SDag-Erling Smørgrav for (i = 0; nl[i].n_name[0] != '\0'; ++i) 183182a90e4SDag-Erling Smørgrav if (nl[i].n_value == 0) { 184dea673e9SRodney W. Grimes quit = 1; 1854418dbbdSDag-Erling Smørgrav warnx("undefined symbol: %s", 1864418dbbdSDag-Erling Smørgrav nl[i].n_name); 187dea673e9SRodney W. Grimes } 188dea673e9SRodney W. Grimes if (quit) 189dea673e9SRodney W. Grimes exit(1); 190dea673e9SRodney W. Grimes } 1914418dbbdSDag-Erling Smørgrav } 1920cbfd1a5SDag-Erling Smørgrav if (!(fileflag | ttyflag | swapflag | totalflag)) 193d9961cfdSPhilippe Charnier usage(); 194dea673e9SRodney W. Grimes if (fileflag || totalflag) 195dea673e9SRodney W. Grimes filemode(); 196dea673e9SRodney W. Grimes if (ttyflag) 197dea673e9SRodney W. Grimes ttymode(); 198dea673e9SRodney W. Grimes if (swapflag || totalflag) 199dea673e9SRodney W. Grimes swapmode(); 200dea673e9SRodney W. Grimes exit (0); 201dea673e9SRodney W. Grimes } 202dea673e9SRodney W. Grimes 203d9961cfdSPhilippe Charnier static void 204c9624363SDag-Erling Smørgrav usage(void) 205d9961cfdSPhilippe Charnier { 206d9961cfdSPhilippe Charnier fprintf(stderr, "usage: %s\n", usagestr); 207d9961cfdSPhilippe Charnier exit (1); 208d9961cfdSPhilippe Charnier } 209d9961cfdSPhilippe Charnier 21046f7e0d2SRobert Drehmel static const char fhdr32[] = 21146f7e0d2SRobert Drehmel " LOC TYPE FLG CNT MSG DATA OFFSET\n"; 21246f7e0d2SRobert Drehmel /* c0000000 ------ RWAI 123 123 c0000000 1000000000000000 */ 21346f7e0d2SRobert Drehmel 21446f7e0d2SRobert Drehmel static const char fhdr64[] = 21546f7e0d2SRobert Drehmel " LOC TYPE FLG CNT MSG DATA OFFSET\n"; 21646f7e0d2SRobert Drehmel /* c000000000000000 ------ RWAI 123 123 c000000000000000 1000000000000000 */ 21746f7e0d2SRobert Drehmel 2181dcc9c32SDag-Erling Smørgrav static const char hdr[] = 219bc093719SEd Schouten " LINE INQ CAN LIN LOW OUTQ USE LOW COL SESS PGID STATE\n"; 220dea673e9SRodney W. Grimes 2211dcc9c32SDag-Erling Smørgrav static void 222182a90e4SDag-Erling Smørgrav ttymode_kvm(void) 223182a90e4SDag-Erling Smørgrav { 224203bcaf5SPoul-Henning Kamp TAILQ_HEAD(, tty) tl; 225182a90e4SDag-Erling Smørgrav struct tty *tp, tty; 226182a90e4SDag-Erling Smørgrav struct xtty xt; 227182a90e4SDag-Erling Smørgrav 228182a90e4SDag-Erling Smørgrav (void)printf("%s", hdr); 229182a90e4SDag-Erling Smørgrav bzero(&xt, sizeof xt); 230182a90e4SDag-Erling Smørgrav xt.xt_size = sizeof xt; 231182a90e4SDag-Erling Smørgrav if (kvm_read(kd, nl[NL_TTY_LIST].n_value, &tl, sizeof tl) != sizeof tl) 232182a90e4SDag-Erling Smørgrav errx(1, "kvm_read(): %s", kvm_geterr(kd)); 233203bcaf5SPoul-Henning Kamp tp = TAILQ_FIRST(&tl); 234182a90e4SDag-Erling Smørgrav while (tp != NULL) { 235182a90e4SDag-Erling Smørgrav if (kvm_read(kd, (u_long)tp, &tty, sizeof tty) != sizeof tty) 236182a90e4SDag-Erling Smørgrav errx(1, "kvm_read(): %s", kvm_geterr(kd)); 237bc093719SEd Schouten xt.xt_insize = tty.t_inq.ti_nblocks * TTYINQ_DATASIZE; 238bc093719SEd Schouten xt.xt_incc = tty.t_inq.ti_linestart - tty.t_inq.ti_begin; 239bc093719SEd Schouten xt.xt_inlc = tty.t_inq.ti_end - tty.t_inq.ti_linestart; 240bc093719SEd Schouten xt.xt_inlow = tty.t_inlow; 241bc093719SEd Schouten xt.xt_outsize = tty.t_outq.to_nblocks * TTYOUTQ_DATASIZE; 242bc093719SEd Schouten xt.xt_outcc = tty.t_outq.to_end - tty.t_outq.to_begin; 243bc093719SEd Schouten xt.xt_outlow = tty.t_outlow; 244bc093719SEd Schouten xt.xt_column = tty.t_column; 245bc093719SEd Schouten /* xt.xt_pgid = ... */ 246bc093719SEd Schouten /* xt.xt_sid = ... */ 247bc093719SEd Schouten xt.xt_flags = tty.t_flags; 24869921123SKonstantin Belousov xt.xt_dev = (uint32_t)NODEV; 249182a90e4SDag-Erling Smørgrav ttyprt(&xt); 250bc42e6c4SRemko Lodder tp = TAILQ_NEXT(&tty, t_list); 251182a90e4SDag-Erling Smørgrav } 252182a90e4SDag-Erling Smørgrav } 253182a90e4SDag-Erling Smørgrav 254182a90e4SDag-Erling Smørgrav static void 255182a90e4SDag-Erling Smørgrav ttymode_sysctl(void) 256dea673e9SRodney W. Grimes { 25752074d38SStanislav Sedov struct xtty *xttys; 258333eaaedSDag-Erling Smørgrav size_t len; 25952074d38SStanislav Sedov unsigned int i, n; 260dea673e9SRodney W. Grimes 261c01c5d5cSDima Dorfman (void)printf("%s", hdr); 26252074d38SStanislav Sedov if ((xttys = malloc(len = sizeof(*xttys))) == NULL) 263333eaaedSDag-Erling Smørgrav err(1, "malloc()"); 264333eaaedSDag-Erling Smørgrav while (sysctlbyname("kern.ttys", xttys, &len, 0, 0) == -1) { 265333eaaedSDag-Erling Smørgrav if (errno != ENOMEM) 266333eaaedSDag-Erling Smørgrav err(1, "sysctlbyname()"); 267333eaaedSDag-Erling Smørgrav len *= 2; 268333eaaedSDag-Erling Smørgrav if ((xttys = realloc(xttys, len)) == NULL) 269333eaaedSDag-Erling Smørgrav err(1, "realloc()"); 2701bc52887SPoul-Henning Kamp } 27152074d38SStanislav Sedov n = len / sizeof(*xttys); 27252074d38SStanislav Sedov for (i = 0; i < n; i++) 27352074d38SStanislav Sedov ttyprt(&xttys[i]); 274dea673e9SRodney W. Grimes } 275dea673e9SRodney W. Grimes 2761dcc9c32SDag-Erling Smørgrav static void 277182a90e4SDag-Erling Smørgrav ttymode(void) 278dea673e9SRodney W. Grimes { 279dea673e9SRodney W. Grimes 280182a90e4SDag-Erling Smørgrav if (kd != NULL) 281182a90e4SDag-Erling Smørgrav ttymode_kvm(); 282182a90e4SDag-Erling Smørgrav else 283182a90e4SDag-Erling Smørgrav ttymode_sysctl(); 284dea673e9SRodney W. Grimes } 285dea673e9SRodney W. Grimes 2861dcc9c32SDag-Erling Smørgrav static struct { 287dea673e9SRodney W. Grimes int flag; 288dea673e9SRodney W. Grimes char val; 289dea673e9SRodney W. Grimes } ttystates[] = { 290bc093719SEd Schouten #if 0 291bc093719SEd Schouten { TF_NOPREFIX, 'N' }, 29224f769b0SBruce Evans #endif 293bc093719SEd Schouten { TF_INITLOCK, 'I' }, 294bc093719SEd Schouten { TF_CALLOUT, 'C' }, 295bc093719SEd Schouten 296bc093719SEd Schouten /* Keep these together -> 'Oi' and 'Oo'. */ 297bc093719SEd Schouten { TF_OPENED, 'O' }, 298bc093719SEd Schouten { TF_OPENED_IN, 'i' }, 299bc093719SEd Schouten { TF_OPENED_OUT, 'o' }, 300c3328b2aSEd Schouten { TF_OPENED_CONS, 'c' }, 301bc093719SEd Schouten 302bc093719SEd Schouten { TF_GONE, 'G' }, 303bc093719SEd Schouten { TF_OPENCLOSE, 'B' }, 304bc093719SEd Schouten { TF_ASYNC, 'Y' }, 305bc093719SEd Schouten { TF_LITERAL, 'L' }, 306bc093719SEd Schouten 307bc093719SEd Schouten /* Keep these together -> 'Hi' and 'Ho'. */ 308bc093719SEd Schouten { TF_HIWAT, 'H' }, 309bc093719SEd Schouten { TF_HIWAT_IN, 'i' }, 310bc093719SEd Schouten { TF_HIWAT_OUT, 'o' }, 311bc093719SEd Schouten 312bc093719SEd Schouten { TF_STOPPED, 'S' }, 313bc093719SEd Schouten { TF_EXCLUDE, 'X' }, 314bc093719SEd Schouten { TF_BYPASS, 'l' }, 315bc093719SEd Schouten { TF_ZOMBIE, 'Z' }, 316a1215e37SEd Schouten { TF_HOOK, 's' }, 317bc093719SEd Schouten 318c0086bf2SEd Schouten /* Keep these together -> 'bi' and 'bo'. */ 319c0086bf2SEd Schouten { TF_BUSY, 'b' }, 320c0086bf2SEd Schouten { TF_BUSY_IN, 'i' }, 321c0086bf2SEd Schouten { TF_BUSY_OUT, 'o' }, 322c0086bf2SEd Schouten 323dea673e9SRodney W. Grimes { 0, '\0'}, 324dea673e9SRodney W. Grimes }; 325dea673e9SRodney W. Grimes 3261dcc9c32SDag-Erling Smørgrav static void 327333eaaedSDag-Erling Smørgrav ttyprt(struct xtty *xt) 328dea673e9SRodney W. Grimes { 3299c5cdfe0SPeter Wemm int i, j; 330ed09c2c1SXin LI const char *name; 331dea673e9SRodney W. Grimes 332333eaaedSDag-Erling Smørgrav if (xt->xt_size != sizeof *xt) 333333eaaedSDag-Erling Smørgrav errx(1, "struct xtty size mismatch"); 334333eaaedSDag-Erling Smørgrav if (usenumflag || xt->xt_dev == 0 || 335333eaaedSDag-Erling Smørgrav (name = devname(xt->xt_dev, S_IFCHR)) == NULL) 3369f365aa1SEd Schouten printf("%#10jx ", (uintmax_t)xt->xt_dev); 337dea673e9SRodney W. Grimes else 338bc093719SEd Schouten printf("%10s ", name); 339bc093719SEd Schouten printf("%5zu %4zu %4zu %4zu %5zu %4zu %4zu %5u %5d %5d ", 340bc093719SEd Schouten xt->xt_insize, xt->xt_incc, xt->xt_inlc, 341bc093719SEd Schouten (xt->xt_insize - xt->xt_inlow), xt->xt_outsize, 342bc093719SEd Schouten xt->xt_outcc, (xt->xt_outsize - xt->xt_outlow), 34337a9f582SEd Schouten MIN(xt->xt_column, 99999), xt->xt_sid, xt->xt_pgid); 344dea673e9SRodney W. Grimes for (i = j = 0; ttystates[i].flag; i++) 345bc093719SEd Schouten if (xt->xt_flags & ttystates[i].flag) { 346bc093719SEd Schouten putchar(ttystates[i].val); 347bc093719SEd Schouten j++; 348dea673e9SRodney W. Grimes } 349bc093719SEd Schouten if (j == 0) 350bc093719SEd Schouten putchar('-'); 351bc093719SEd Schouten putchar('\n'); 352dea673e9SRodney W. Grimes } 353dea673e9SRodney W. Grimes 3541dcc9c32SDag-Erling Smørgrav static void 355c9624363SDag-Erling Smørgrav filemode(void) 356dea673e9SRodney W. Grimes { 35752074d38SStanislav Sedov struct xfile *fp, *buf; 35852074d38SStanislav Sedov char flagbuf[16], *fbp; 3595f9ab4b0SDag-Erling Smørgrav int maxf, openf; 3604418dbbdSDag-Erling Smørgrav size_t len; 361493f0f17SEd Schouten static char const * const dtypes[] = { "???", "inode", "socket", 362777e045cSEd Schouten "pipe", "fifo", "kqueue", "crypto" }; 363eeebf53eSDag-Erling Smørgrav int i; 36446f7e0d2SRobert Drehmel int wid; 365dea673e9SRodney W. Grimes 3664418dbbdSDag-Erling Smørgrav if (kd != NULL) { 3675f9ab4b0SDag-Erling Smørgrav if (kvm_read(kd, nl[NL_MAXFILES].n_value, 3685f9ab4b0SDag-Erling Smørgrav &maxf, sizeof maxf) != sizeof maxf || 3695f9ab4b0SDag-Erling Smørgrav kvm_read(kd, nl[NL_NFILES].n_value, 3705f9ab4b0SDag-Erling Smørgrav &openf, sizeof openf) != sizeof openf) 3715f9ab4b0SDag-Erling Smørgrav errx(1, "kvm_read(): %s", kvm_geterr(kd)); 3724418dbbdSDag-Erling Smørgrav } else { 3735f9ab4b0SDag-Erling Smørgrav len = sizeof(int); 3745f9ab4b0SDag-Erling Smørgrav if (sysctlbyname("kern.maxfiles", &maxf, &len, 0, 0) == -1 || 3755f9ab4b0SDag-Erling Smørgrav sysctlbyname("kern.openfiles", &openf, &len, 0, 0) == -1) 3764418dbbdSDag-Erling Smørgrav err(1, "sysctlbyname()"); 3774418dbbdSDag-Erling Smørgrav } 3784418dbbdSDag-Erling Smørgrav 379dea673e9SRodney W. Grimes if (totalflag) { 3805f9ab4b0SDag-Erling Smørgrav (void)printf("%3d/%3d files\n", openf, maxf); 381dea673e9SRodney W. Grimes return; 382dea673e9SRodney W. Grimes } 383dea673e9SRodney W. Grimes if (getfiles(&buf, &len) == -1) 384dea673e9SRodney W. Grimes return; 385eeebf53eSDag-Erling Smørgrav openf = len / sizeof *fp; 38646f7e0d2SRobert Drehmel 3875f9ab4b0SDag-Erling Smørgrav (void)printf("%d/%d open files\n", openf, maxf); 38846f7e0d2SRobert Drehmel printf(sizeof(uintptr_t) == 4 ? fhdr32 : fhdr64); 38946f7e0d2SRobert Drehmel wid = (int)sizeof(uintptr_t) * 2; 390eeebf53eSDag-Erling Smørgrav for (fp = (struct xfile *)buf, i = 0; i < openf; ++fp, ++i) { 391*f93475cfSElyes Haouas if ((size_t)fp->xf_type >= nitems(dtypes)) 392dea673e9SRodney W. Grimes continue; 39346f7e0d2SRobert Drehmel (void)printf("%*jx", wid, (uintmax_t)(uintptr_t)fp->xf_file); 39446f7e0d2SRobert Drehmel (void)printf(" %-6.6s", dtypes[fp->xf_type]); 395dea673e9SRodney W. Grimes fbp = flagbuf; 396eeebf53eSDag-Erling Smørgrav if (fp->xf_flag & FREAD) 397dea673e9SRodney W. Grimes *fbp++ = 'R'; 398eeebf53eSDag-Erling Smørgrav if (fp->xf_flag & FWRITE) 399dea673e9SRodney W. Grimes *fbp++ = 'W'; 400eeebf53eSDag-Erling Smørgrav if (fp->xf_flag & FAPPEND) 401dea673e9SRodney W. Grimes *fbp++ = 'A'; 402eeebf53eSDag-Erling Smørgrav if (fp->xf_flag & FASYNC) 403dea673e9SRodney W. Grimes *fbp++ = 'I'; 404dea673e9SRodney W. Grimes *fbp = '\0'; 40546f7e0d2SRobert Drehmel (void)printf(" %4s %3d", flagbuf, fp->xf_count); 406eeebf53eSDag-Erling Smørgrav (void)printf(" %3d", fp->xf_msgcount); 40746f7e0d2SRobert Drehmel (void)printf(" %*jx", wid, (uintmax_t)(uintptr_t)fp->xf_data); 40846f7e0d2SRobert Drehmel (void)printf(" %*jx\n", (int)sizeof(fp->xf_offset) * 2, 40946f7e0d2SRobert Drehmel (uintmax_t)fp->xf_offset); 410dea673e9SRodney W. Grimes } 411dea673e9SRodney W. Grimes free(buf); 412dea673e9SRodney W. Grimes } 413dea673e9SRodney W. Grimes 4141dcc9c32SDag-Erling Smørgrav static int 41552074d38SStanislav Sedov getfiles(struct xfile **abuf, size_t *alen) 416dea673e9SRodney W. Grimes { 41752074d38SStanislav Sedov struct xfile *buf; 418dea673e9SRodney W. Grimes size_t len; 419dea673e9SRodney W. Grimes int mib[2]; 420dea673e9SRodney W. Grimes 421dea673e9SRodney W. Grimes /* 422dea673e9SRodney W. Grimes * XXX 423dea673e9SRodney W. Grimes * Add emulation of KINFO_FILE here. 424dea673e9SRodney W. Grimes */ 4254418dbbdSDag-Erling Smørgrav if (kd != NULL) 426d9961cfdSPhilippe Charnier errx(1, "files on dead kernel, not implemented"); 427dea673e9SRodney W. Grimes 428dea673e9SRodney W. Grimes mib[0] = CTL_KERN; 429dea673e9SRodney W. Grimes mib[1] = KERN_FILE; 430dea673e9SRodney W. Grimes if (sysctl(mib, 2, NULL, &len, NULL, 0) == -1) { 431dea673e9SRodney W. Grimes warn("sysctl: KERN_FILE"); 432dea673e9SRodney W. Grimes return (-1); 433dea673e9SRodney W. Grimes } 434dea673e9SRodney W. Grimes if ((buf = malloc(len)) == NULL) 435d9961cfdSPhilippe Charnier errx(1, "malloc"); 436dea673e9SRodney W. Grimes if (sysctl(mib, 2, buf, &len, NULL, 0) == -1) { 437dea673e9SRodney W. Grimes warn("sysctl: KERN_FILE"); 438dea673e9SRodney W. Grimes return (-1); 439dea673e9SRodney W. Grimes } 440dea673e9SRodney W. Grimes *abuf = buf; 441dea673e9SRodney W. Grimes *alen = len; 442dea673e9SRodney W. Grimes return (0); 443dea673e9SRodney W. Grimes } 444dea673e9SRodney W. Grimes 445dea673e9SRodney W. Grimes /* 446dea673e9SRodney W. Grimes * swapmode is based on a program called swapinfo written 447dea673e9SRodney W. Grimes * by Kevin Lahey <kml@rokkaku.atl.ga.us>. 448dea673e9SRodney W. Grimes */ 4494418dbbdSDag-Erling Smørgrav 4507257230fSGiorgos Keramidas #define CONVERT(v) ((int64_t)(v) * pagesize / blocksize) 45167c601d5SStanislav Sedov #define CONVERT_BLOCKS(v) ((int64_t)(v) * pagesize) 4524418dbbdSDag-Erling Smørgrav static struct kvm_swap swtot; 4534418dbbdSDag-Erling Smørgrav static int nswdev; 4544418dbbdSDag-Erling Smørgrav 4551dcc9c32SDag-Erling Smørgrav static void 4564418dbbdSDag-Erling Smørgrav print_swap_header(void) 457dea673e9SRodney W. Grimes { 458c48205f3SMike Barcroft int hlen; 459782f8687SMatthew Dillon long blocksize; 4604418dbbdSDag-Erling Smørgrav const char *header; 461dea673e9SRodney W. Grimes 4629a990500SChristian S.J. Peron if (humanflag) { 4639a990500SChristian S.J. Peron header = SIZEHDR; 4643cbfd581SPiotr Pawel Stefaniak hlen = 8; /* as the hardcoded field width of values */ 4659a990500SChristian S.J. Peron } else { 466dea673e9SRodney W. Grimes header = getbsize(&hlen, &blocksize); 4679a990500SChristian S.J. Peron } 4684418dbbdSDag-Erling Smørgrav if (totalflag == 0) 46946637267SPoul-Henning Kamp (void)printf("%-15s %*s %8s %8s %8s\n", 470c48205f3SMike Barcroft "Device", hlen, header, 47146637267SPoul-Henning Kamp "Used", "Avail", "Capacity"); 4724418dbbdSDag-Erling Smørgrav } 473eedc3436SMatthew Dillon 4744418dbbdSDag-Erling Smørgrav static void 475777e045cSEd Schouten print_swap_line(const char *swdevname, intmax_t nblks, intmax_t bused, 4767257230fSGiorgos Keramidas intmax_t bavail, float bpercent) 4774418dbbdSDag-Erling Smørgrav { 4787257230fSGiorgos Keramidas char usedbuf[5]; 4797257230fSGiorgos Keramidas char availbuf[5]; 4809a990500SChristian S.J. Peron char sizebuf[5]; 481c48205f3SMike Barcroft int hlen, pagesize; 4824418dbbdSDag-Erling Smørgrav long blocksize; 4834418dbbdSDag-Erling Smørgrav 4844418dbbdSDag-Erling Smørgrav pagesize = getpagesize(); 4854418dbbdSDag-Erling Smørgrav getbsize(&hlen, &blocksize); 4867257230fSGiorgos Keramidas 4879a990500SChristian S.J. Peron printf("%-15s ", swdevname); 4887257230fSGiorgos Keramidas if (humanflag) { 4899a990500SChristian S.J. Peron humanize_number(sizebuf, sizeof(sizebuf), 4909a990500SChristian S.J. Peron CONVERT_BLOCKS(nblks), "", 4919a990500SChristian S.J. Peron HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL); 4927257230fSGiorgos Keramidas humanize_number(usedbuf, sizeof(usedbuf), 49367c601d5SStanislav Sedov CONVERT_BLOCKS(bused), "", 4947257230fSGiorgos Keramidas HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL); 4957257230fSGiorgos Keramidas humanize_number(availbuf, sizeof(availbuf), 49667c601d5SStanislav Sedov CONVERT_BLOCKS(bavail), "", 4977257230fSGiorgos Keramidas HN_AUTOSCALE, HN_B | HN_NOSPACE | HN_DECIMAL); 4989a990500SChristian S.J. Peron printf("%8s %8s %8s %5.0f%%\n", sizebuf, 4999a990500SChristian S.J. Peron usedbuf, availbuf, bpercent); 5007257230fSGiorgos Keramidas } else { 5019a990500SChristian S.J. Peron printf("%*jd %8jd %8jd %5.0f%%\n", hlen, 5029a990500SChristian S.J. Peron (intmax_t)CONVERT(nblks), 5039a990500SChristian S.J. Peron (intmax_t)CONVERT(bused), 5047257230fSGiorgos Keramidas (intmax_t)CONVERT(bavail), bpercent); 5057257230fSGiorgos Keramidas } 5067257230fSGiorgos Keramidas } 5077257230fSGiorgos Keramidas 5087257230fSGiorgos Keramidas static void 5097257230fSGiorgos Keramidas print_swap(struct kvm_swap *ksw) 5107257230fSGiorgos Keramidas { 5117257230fSGiorgos Keramidas 5124418dbbdSDag-Erling Smørgrav swtot.ksw_total += ksw->ksw_total; 5134418dbbdSDag-Erling Smørgrav swtot.ksw_used += ksw->ksw_used; 5144418dbbdSDag-Erling Smørgrav ++nswdev; 5157257230fSGiorgos Keramidas if (totalflag == 0) 5167257230fSGiorgos Keramidas print_swap_line(ksw->ksw_devname, ksw->ksw_total, 517a2e59d80SRobert Watson ksw->ksw_used, ksw->ksw_total - ksw->ksw_used, 51846637267SPoul-Henning Kamp (ksw->ksw_used * 100.0) / ksw->ksw_total); 519eedc3436SMatthew Dillon } 520eedc3436SMatthew Dillon 5214418dbbdSDag-Erling Smørgrav static void 5224418dbbdSDag-Erling Smørgrav print_swap_total(void) 5234418dbbdSDag-Erling Smørgrav { 524c48205f3SMike Barcroft int hlen, pagesize; 5254418dbbdSDag-Erling Smørgrav long blocksize; 5264418dbbdSDag-Erling Smørgrav 5274418dbbdSDag-Erling Smørgrav pagesize = getpagesize(); 5284418dbbdSDag-Erling Smørgrav getbsize(&hlen, &blocksize); 529dea673e9SRodney W. Grimes if (totalflag) { 530782f8687SMatthew Dillon blocksize = 1024 * 1024; 5317257230fSGiorgos Keramidas (void)printf("%jdM/%jdM swap space\n", 5324418dbbdSDag-Erling Smørgrav CONVERT(swtot.ksw_used), CONVERT(swtot.ksw_total)); 5334418dbbdSDag-Erling Smørgrav } else if (nswdev > 1) { 5347257230fSGiorgos Keramidas print_swap_line("Total", swtot.ksw_total, swtot.ksw_used, 5357257230fSGiorgos Keramidas swtot.ksw_total - swtot.ksw_used, 5364418dbbdSDag-Erling Smørgrav (swtot.ksw_used * 100.0) / swtot.ksw_total); 537dea673e9SRodney W. Grimes } 538dea673e9SRodney W. Grimes } 5394418dbbdSDag-Erling Smørgrav 5404418dbbdSDag-Erling Smørgrav static void 5414418dbbdSDag-Erling Smørgrav swapmode_kvm(void) 5424418dbbdSDag-Erling Smørgrav { 5434418dbbdSDag-Erling Smørgrav struct kvm_swap kswap[16]; 5444418dbbdSDag-Erling Smørgrav int i, n; 5454418dbbdSDag-Erling Smørgrav 5464418dbbdSDag-Erling Smørgrav n = kvm_getswapinfo(kd, kswap, sizeof kswap / sizeof kswap[0], 547799aba96SPoul-Henning Kamp SWIF_DEV_PREFIX); 5484418dbbdSDag-Erling Smørgrav 5494418dbbdSDag-Erling Smørgrav print_swap_header(); 5504418dbbdSDag-Erling Smørgrav for (i = 0; i < n; ++i) 5514418dbbdSDag-Erling Smørgrav print_swap(&kswap[i]); 5524418dbbdSDag-Erling Smørgrav print_swap_total(); 5534418dbbdSDag-Erling Smørgrav } 5544418dbbdSDag-Erling Smørgrav 5554418dbbdSDag-Erling Smørgrav static void 5564418dbbdSDag-Erling Smørgrav swapmode_sysctl(void) 5574418dbbdSDag-Erling Smørgrav { 5584418dbbdSDag-Erling Smørgrav struct kvm_swap ksw; 5594418dbbdSDag-Erling Smørgrav struct xswdev xsw; 5604418dbbdSDag-Erling Smørgrav size_t mibsize, size; 5614418dbbdSDag-Erling Smørgrav int mib[16], n; 5624418dbbdSDag-Erling Smørgrav 5634418dbbdSDag-Erling Smørgrav print_swap_header(); 5644418dbbdSDag-Erling Smørgrav mibsize = sizeof mib / sizeof mib[0]; 5654418dbbdSDag-Erling Smørgrav if (sysctlnametomib("vm.swap_info", mib, &mibsize) == -1) 5664418dbbdSDag-Erling Smørgrav err(1, "sysctlnametomib()"); 5674418dbbdSDag-Erling Smørgrav for (n = 0; ; ++n) { 5684418dbbdSDag-Erling Smørgrav mib[mibsize] = n; 5694418dbbdSDag-Erling Smørgrav size = sizeof xsw; 57016fc3635SMark Murray if (sysctl(mib, mibsize + 1, &xsw, &size, NULL, 0) == -1) 5714418dbbdSDag-Erling Smørgrav break; 5724418dbbdSDag-Erling Smørgrav if (xsw.xsw_version != XSWDEV_VERSION) 5734418dbbdSDag-Erling Smørgrav errx(1, "xswdev version mismatch"); 5741afc333eSPoul-Henning Kamp if (xsw.xsw_dev == NODEV) 5751afc333eSPoul-Henning Kamp snprintf(ksw.ksw_devname, sizeof ksw.ksw_devname, 5761afc333eSPoul-Henning Kamp "<NFSfile>"); 5771afc333eSPoul-Henning Kamp else 5784418dbbdSDag-Erling Smørgrav snprintf(ksw.ksw_devname, sizeof ksw.ksw_devname, 5794418dbbdSDag-Erling Smørgrav "/dev/%s", devname(xsw.xsw_dev, S_IFCHR)); 5804418dbbdSDag-Erling Smørgrav ksw.ksw_used = xsw.xsw_used; 5814418dbbdSDag-Erling Smørgrav ksw.ksw_total = xsw.xsw_nblks; 5824418dbbdSDag-Erling Smørgrav ksw.ksw_flags = xsw.xsw_flags; 5834418dbbdSDag-Erling Smørgrav print_swap(&ksw); 5844418dbbdSDag-Erling Smørgrav } 5854418dbbdSDag-Erling Smørgrav if (errno != ENOENT) 5864418dbbdSDag-Erling Smørgrav err(1, "sysctl()"); 5874418dbbdSDag-Erling Smørgrav print_swap_total(); 5884418dbbdSDag-Erling Smørgrav } 5894418dbbdSDag-Erling Smørgrav 5904418dbbdSDag-Erling Smørgrav static void 5914418dbbdSDag-Erling Smørgrav swapmode(void) 5924418dbbdSDag-Erling Smørgrav { 5934418dbbdSDag-Erling Smørgrav if (kd != NULL) 5944418dbbdSDag-Erling Smørgrav swapmode_kvm(); 5954418dbbdSDag-Erling Smørgrav else 5964418dbbdSDag-Erling Smørgrav swapmode_sysctl(); 5974418dbbdSDag-Erling Smørgrav } 598