xref: /dragonfly/usr.sbin/pstat/pstat.c (revision 1bf4b486)
1 /*-
2  * Copyright (c) 1980, 1991, 1993, 1994
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  * @(#) Copyright (c) 1980, 1991, 1993, 1994 The Regents of the University of California.  All rights reserved.
34  * @(#)pstat.c	8.16 (Berkeley) 5/9/95
35  * $FreeBSD: src/usr.sbin/pstat/pstat.c,v 1.49.2.5 2002/07/12 09:12:49 des Exp $
36  * $DragonFly: src/usr.sbin/pstat/pstat.c,v 1.15 2005/03/17 17:28:44 dillon Exp $
37  */
38 
39 #define _KERNEL_STRUCTURES
40 
41 #include <sys/param.h>
42 #include <sys/time.h>
43 #include <sys/vnode.h>
44 #include <sys/ucred.h>
45 #include <sys/file.h>
46 #include <vfs/ufs/quota.h>
47 #include <vfs/ufs/inode.h>
48 #include <sys/mount.h>
49 #include <sys/uio.h>
50 #include <sys/namei.h>
51 #include <vfs/union/union.h>
52 #include <sys/stat.h>
53 #include <nfs/rpcv2.h>
54 #include <nfs/nfsproto.h>
55 #include <nfs/nfs.h>
56 #include <nfs/nfsnode.h>
57 #include <sys/ioctl.h>
58 #include <sys/ioctl_compat.h>	/* XXX NTTYDISC is too well hidden */
59 #include <sys/tty.h>
60 #include <sys/conf.h>
61 #include <sys/blist.h>
62 
63 #include <sys/kinfo.h>
64 #include <sys/user.h>
65 #include <sys/sysctl.h>
66 
67 #include <err.h>
68 #include <fcntl.h>
69 #include <kvm.h>
70 #include <limits.h>
71 #include <nlist.h>
72 #include <stdio.h>
73 #include <stdlib.h>
74 #include <string.h>
75 #include <unistd.h>
76 
77 #ifdef USE_KCORE
78 #  define KCORE_KINFO_WRAPPER
79 #  include <kcore.h>
80 #else
81 #  include <kinfo.h>
82 #endif
83 
84 enum {
85 	NL_MOUNTLIST,
86 	NL_NUMVNODES,
87 	NL_RC_TTY,
88 	NL_NRC_TTY,
89 	NL_CY_TTY,
90 	NL_NCY_TTY,
91 	NL_SI_TTY,
92 	NL_SI_NPORTS,
93 };
94 
95 const size_t NL_LAST_MANDATORY = NL_NUMVNODES;
96 
97 struct nlist nl[] = {
98 	{ "_mountlist", 0, 0, 0, 0 },	/* address of head of mount list. */
99 	{ "_numvnodes", 0, 0, 0, 0 },
100 	{ "_rc_tty", 0, 0, 0, 0 },
101 	{ "_nrc_tty", 0, 0, 0, 0 },
102 	{ "_cy_tty", 0, 0, 0, 0 },
103 	{ "_ncy_tty", 0, 0, 0, 0 },
104 	{ "_si__tty", 0, 0, 0, 0 },
105 	{ "_si_Nports", 0, 0, 0, 0 },
106 	{ "", 0, 0, 0, 0 }
107 };
108 
109 int	usenumflag;
110 int	totalflag;
111 int	swapflag;
112 char	*nlistf	= NULL;
113 char	*memf	= NULL;
114 kvm_t	*kd;
115 
116 const char	*usagestr;
117 
118 struct {
119 	int m_flag;
120 	const char *m_name;
121 } mnt_flags[] = {
122 	{ MNT_RDONLY, "rdonly" },
123 	{ MNT_SYNCHRONOUS, "sync" },
124 	{ MNT_NOEXEC, "noexec" },
125 	{ MNT_NOSUID, "nosuid" },
126 	{ MNT_NODEV, "nodev" },
127 	{ MNT_UNION, "union" },
128 	{ MNT_ASYNC, "async" },
129 	{ MNT_SUIDDIR, "suiddir" },
130 	{ MNT_SOFTDEP, "softdep" },
131 	{ MNT_NOSYMFOLLOW, "nosymfollow" },
132 	{ MNT_NOATIME, "noatime" },
133 	{ MNT_NOCLUSTERR, "noclusterread" },
134 	{ MNT_NOCLUSTERW, "noclusterwrite" },
135 	{ MNT_EXRDONLY, "exrdonly" },
136 	{ MNT_EXPORTED, "exported" },
137 	{ MNT_DEFEXPORTED, "defexported" },
138 	{ MNT_EXPORTANON, "exportanon" },
139 	{ MNT_EXKERB, "exkerb" },
140 	{ MNT_EXPUBLIC, "public" },
141 	{ MNT_LOCAL, "local" },
142 	{ MNT_QUOTA, "quota" },
143 	{ MNT_ROOTFS, "rootfs" },
144 	{ MNT_USER, "user" },
145 	{ MNT_IGNORE, "ignore" },
146 	{ MNT_UPDATE, "update" },
147 	{ MNT_DELEXPORT, "delexport" },
148 	{ MNT_RELOAD, "reload" },
149 	{ MNT_FORCE, "force" },
150 	{ 0, NULL }
151 };
152 
153 
154 #define	SVAR(var) __STRING(var)	/* to force expansion */
155 #define	KGET(idx, var)							\
156 	KGET1(idx, &var, sizeof(var), SVAR(var))
157 #define	KGET1(idx, p, s, msg)						\
158 	KGET2(nl[idx].n_value, p, s, msg)
159 #define	KGET2(addr, p, s, msg)						\
160 	if (kvm_read(kd, (u_long)(addr), p, s) != s)			\
161 		warnx("cannot read %s: %s", msg, kvm_geterr(kd))
162 #define	KGETN(idx, var)							\
163 	KGET1N(idx, &var, sizeof(var), SVAR(var))
164 #define	KGET1N(idx, p, s, msg)						\
165 	KGET2N(nl[idx].n_value, p, s, msg)
166 #define	KGET2N(addr, p, s, msg)						\
167 	((kvm_read(kd, (u_long)(addr), p, s) == s) ? 1 : 0)
168 #define	KGETRET(addr, p, s, msg)					\
169 	if (kvm_read(kd, (u_long)(addr), p, s) != s) {			\
170 		warnx("cannot read %s: %s", msg, kvm_geterr(kd));	\
171 		return (0);						\
172 	}
173 
174 void	filemode(void);
175 int	getfiles(char **, int *);
176 struct mount *
177 	getmnt(struct mount *);
178 struct e_vnode *
179 	kinfo_vnodes(int *);
180 struct e_vnode *
181 	loadvnodes(int *);
182 void	mount_print(struct mount *);
183 void	nfs_header(void);
184 int	nfs_print(struct vnode *);
185 void	swapmode(void);
186 void	ttymode(void);
187 void	ttyprt(struct tty *, int);
188 void	ttytype(struct tty *, const char *, int, int, int);
189 void	ufs_header(void);
190 int	ufs_print(struct vnode *);
191 void	union_header(void);
192 int	union_print(struct vnode *);
193 static void usage(void);
194 void	vnode_header(void);
195 void	vnode_print(struct vnode *, struct vnode *);
196 void	vnodemode(void);
197 
198 int
199 main(int argc, char **argv)
200 {
201 	int ch, ret;
202 	int fileflag, ttyflag, vnodeflag;
203 	char buf[_POSIX2_LINE_MAX];
204 	const char *opts;
205 
206 	fileflag = swapflag = ttyflag = vnodeflag = 0;
207 
208 	/* We will behave like good old swapinfo if thus invoked */
209 	opts = strrchr(argv[0],'/');
210 	if (opts)
211 		opts++;
212 	else
213 		opts = argv[0];
214 	if (!strcmp(opts,"swapinfo")) {
215 		swapflag = 1;
216 		opts = "kM:N:";
217 		usagestr = "swapinfo [-k] [-M core] [-N system]";
218 	} else {
219 		opts = "TM:N:fiknstv";
220 		usagestr = "pstat [-Tfknst] [-M core] [-N system]";
221 	}
222 
223 	while ((ch = getopt(argc, argv, opts)) != -1)
224 		switch (ch) {
225 		case 'f':
226 			fileflag = 1;
227 			break;
228 		case 'k':
229 			putenv("BLOCKSIZE=1K");
230 			break;
231 		case 'M':
232 			memf = optarg;
233 			break;
234 		case 'N':
235 			nlistf = optarg;
236 			break;
237 		case 'n':
238 			usenumflag = 1;
239 			break;
240 		case 's':
241 			++swapflag;
242 			break;
243 		case 'T':
244 			totalflag = 1;
245 			break;
246 		case 't':
247 			ttyflag = 1;
248 			break;
249 		case 'v':
250 		case 'i':		/* Backward compatibility. */
251 			errx(1, "vnode mode not supported");
252 #if 0
253 			vnodeflag = 1;
254 			break;
255 #endif
256 		default:
257 			usage();
258 		}
259 	argc -= optind;
260 	argv += optind;
261 
262 	/*
263 	 * Discard setgid privileges if not the running kernel so that bad
264 	 * guys can't print interesting stuff from kernel memory.
265 	 */
266 	if (nlistf != NULL || memf != NULL)
267 		setgid(getgid());
268 
269 	if ((kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, buf)) == 0)
270 		errx(1, "kvm_openfiles: %s", buf);
271 #ifdef USE_KCORE
272 	if (kcore_wrapper_open(nlistf, memf, buf))
273 		errx(1, "kcore_open: %s", buf);
274 #endif
275 	if ((ret = kvm_nlist(kd, nl)) != 0) {
276 		size_t i;
277 		int quit = 0;
278 
279 		if (ret == -1)
280 			errx(1, "kvm_nlist: %s", kvm_geterr(kd));
281 		for (i = 0; i < NL_LAST_MANDATORY; i++) {
282 			if (!nl[i].n_value) {
283 				quit = 1;
284 				warnx("undefined symbol: %s", nl[i].n_name);
285 			}
286 		}
287 		if (quit)
288 			exit(1);
289 	}
290 	if (!(fileflag | vnodeflag | ttyflag | swapflag | totalflag))
291 		usage();
292 	if (fileflag || totalflag)
293 		filemode();
294 	if (vnodeflag)
295 		vnodemode();
296 	if (ttyflag)
297 		ttymode();
298 	if (swapflag || totalflag)
299 		swapmode();
300 	exit (0);
301 }
302 
303 static void
304 usage(void)
305 {
306 	fprintf(stderr, "usage: %s\n", usagestr);
307 	exit (1);
308 }
309 
310 struct e_vnode {
311 	struct vnode *avnode;
312 	struct vnode vnode;
313 };
314 
315 void
316 vnodemode(void)
317 {
318 	struct e_vnode *e_vnodebase, *endvnode, *evp;
319 	struct vnode *vp;
320 	struct mount *maddr, *mp = NULL;
321 	int numvnodes;
322 
323 	e_vnodebase = loadvnodes(&numvnodes);
324 	if (totalflag) {
325 		printf("%7d vnodes\n", numvnodes);
326 		return;
327 	}
328 	endvnode = e_vnodebase + numvnodes;
329 	printf("%d active vnodes\n", numvnodes);
330 
331 
332 #define ST	mp->mnt_stat
333 	maddr = NULL;
334 	for (evp = e_vnodebase; evp < endvnode; evp++) {
335 		vp = &evp->vnode;
336 		if (vp->v_mount != maddr) {
337 			/*
338 			 * New filesystem
339 			 */
340 			if ((mp = getmnt(vp->v_mount)) == NULL)
341 				continue;
342 			maddr = vp->v_mount;
343 			mount_print(mp);
344 			vnode_header();
345 			if (!strcmp(ST.f_fstypename, "ufs") ||
346 			    !strcmp(ST.f_fstypename, "mfs"))
347 				ufs_header();
348 			else if (!strcmp(ST.f_fstypename, "nfs"))
349 				nfs_header();
350 			else if (!strcmp(ST.f_fstypename, "union"))
351 				union_header();
352 			printf("\n");
353 		}
354 		vnode_print(evp->avnode, vp);
355 		if (!strcmp(ST.f_fstypename, "ufs") ||
356 		    !strcmp(ST.f_fstypename, "mfs"))
357 			ufs_print(vp);
358 		else if (!strcmp(ST.f_fstypename, "nfs"))
359 			nfs_print(vp);
360 		else if (!strcmp(ST.f_fstypename, "union"))
361 			union_print(vp);
362 		printf("\n");
363 	}
364 	free(e_vnodebase);
365 }
366 
367 void
368 vnode_header(void)
369 {
370 	printf("ADDR     TYP VFLAG  USE HOLD");
371 }
372 
373 void
374 vnode_print(struct vnode *avnode, struct vnode *vp)
375 {
376 	const char *type;
377 	char flags[32];
378 	char *fp = flags;
379 	int flag;
380 
381 	/*
382 	 * set type
383 	 */
384 	switch (vp->v_type) {
385 	case VNON:
386 		type = "non"; break;
387 	case VREG:
388 		type = "reg"; break;
389 	case VDIR:
390 		type = "dir"; break;
391 	case VBLK:
392 		type = "blk"; break;
393 	case VCHR:
394 		type = "chr"; break;
395 	case VLNK:
396 		type = "lnk"; break;
397 	case VSOCK:
398 		type = "soc"; break;
399 	case VFIFO:
400 		type = "fif"; break;
401 	case VBAD:
402 		type = "bad"; break;
403 	default:
404 		type = "unk"; break;
405 	}
406 	/*
407 	 * gather flags
408 	 */
409 	flag = vp->v_flag;
410 	if (flag & VROOT)
411 		*fp++ = 'R';
412 	if (flag & VTEXT)
413 		*fp++ = 'T';
414 	if (flag & VSYSTEM)
415 		*fp++ = 'S';
416 	if (flag & VISTTY)
417 		*fp++ = 't';
418 #ifdef VXLOCK
419 	if (flag & VXLOCK)
420 		*fp++ = 'L';
421 	if (flag & VXWANT)
422 		*fp++ = 'W';
423 #endif
424 	if (flag & VBWAIT)
425 		*fp++ = 'B';
426 	if (flag & VOBJBUF)
427 		*fp++ = 'V';
428 	if (flag & VAGE)
429 		*fp++ = 'a';
430 	if (flag & VOLOCK)
431 		*fp++ = 'l';
432 	if (flag & VOWANT)
433 		*fp++ = 'w';
434 #ifdef VDOOMED
435 	if (flag & VDOOMED)
436 		*fp++ = 'D';
437 #endif
438 	if (flag & VFREE)
439 		*fp++ = 'F';
440 	if (flag & VONWORKLST)
441 		*fp++ = 'O';
442 	if (flag & VMOUNT)
443 		*fp++ = 'M';
444 #ifdef VRECLAIMED
445 	if (flag & VINACTIVE)
446 		*fp++ = 'I';
447 	if (flag & VRECLAIMED)
448 		*fp++ = 'X';
449 #endif
450 
451 	if (flag == 0)
452 		*fp++ = '-';
453 	*fp = '\0';
454 	printf("%8lx %s %5s %4d %4d",
455 	    (u_long)(void *)avnode, type, flags, vp->v_usecount, vp->v_holdcnt);
456 }
457 
458 void
459 ufs_header(void)
460 {
461 	printf(" FILEID IFLAG RDEV|SZ");
462 }
463 
464 int
465 ufs_print(struct vnode *vp)
466 {
467 	int flag;
468 	struct inode inode, *ip = &inode;
469 	char flagbuf[16], *flags = flagbuf;
470 	char *name;
471 	mode_t type;
472 
473 	KGETRET(VTOI(vp), &inode, sizeof(struct inode), "vnode's inode");
474 	flag = ip->i_flag;
475 	if (flag & IN_ACCESS)
476 		*flags++ = 'A';
477 	if (flag & IN_CHANGE)
478 		*flags++ = 'C';
479 	if (flag & IN_UPDATE)
480 		*flags++ = 'U';
481 	if (flag & IN_MODIFIED)
482 		*flags++ = 'M';
483 	if (flag & IN_RENAME)
484 		*flags++ = 'R';
485 	if (flag & IN_SHLOCK)
486 		*flags++ = 'S';
487 	if (flag & IN_EXLOCK)
488 		*flags++ = 'E';
489 	if (flag & IN_HASHED)
490 		*flags++ = 'H';
491 	if (flag & IN_LAZYMOD)
492 		*flags++ = 'L';
493 	if (flag == 0)
494 		*flags++ = '-';
495 	*flags = '\0';
496 
497 	printf(" %6d %5s", ip->i_number, flagbuf);
498 	type = ip->i_mode & S_IFMT;
499 	if (S_ISCHR(ip->i_mode) || S_ISBLK(ip->i_mode))
500 		if (usenumflag || ((name = devname(ip->i_rdev, type)) == NULL))
501 			printf("   %2d,%-2d",
502 			    major(ip->i_rdev), minor(ip->i_rdev));
503 		else
504 			printf(" %7s", name);
505 	else
506 		printf(" %7qd", ip->i_size);
507 	return (0);
508 }
509 
510 void
511 nfs_header(void)
512 {
513 	printf(" FILEID NFLAG RDEV|SZ");
514 }
515 
516 int
517 nfs_print(struct vnode *vp)
518 {
519 	struct nfsnode nfsnode, *np = &nfsnode;
520 	char flagbuf[16], *flags = flagbuf;
521 	int flag;
522 	char *name;
523 	mode_t type;
524 
525 	KGETRET(VTONFS(vp), &nfsnode, sizeof(nfsnode), "vnode's nfsnode");
526 	flag = np->n_flag;
527 	if (flag & NFLUSHWANT)
528 		*flags++ = 'W';
529 	if (flag & NFLUSHINPROG)
530 		*flags++ = 'P';
531 	if (flag & NLMODIFIED)
532 		*flags++ = 'M';
533 	if (flag & NRMODIFIED)
534 		*flags++ = 'R';
535 	if (flag & NWRITEERR)
536 		*flags++ = 'E';
537 	if (flag & NQNFSNONCACHE)
538 		*flags++ = 'X';
539 	if (flag & NQNFSWRITE)
540 		*flags++ = 'O';
541 	if (flag & NQNFSEVICTED)
542 		*flags++ = 'G';
543 	if (flag & NACC)
544 		*flags++ = 'A';
545 	if (flag & NUPD)
546 		*flags++ = 'U';
547 	if (flag & NCHG)
548 		*flags++ = 'C';
549 	if (flag & NLOCKED)
550 		*flags++ = 'L';
551 	if (flag & NWANTED)
552 		*flags++ = 'w';
553 	if (flag == 0)
554 		*flags++ = '-';
555 	*flags = '\0';
556 
557 #define VT	np->n_vattr
558 	printf(" %6ld %5s", VT.va_fileid, flagbuf);
559 	type = VT.va_mode & S_IFMT;
560 	if (S_ISCHR(VT.va_mode) || S_ISBLK(VT.va_mode))
561 		if (usenumflag || ((name = devname(VT.va_rdev, type)) == NULL))
562 			printf("   %2d,%-2d",
563 			    major(VT.va_rdev), minor(VT.va_rdev));
564 		else
565 			printf(" %7s", name);
566 	else
567 		printf(" %7qd", np->n_size);
568 	return (0);
569 }
570 
571 void
572 union_header(void)
573 {
574 	printf("    UPPER    LOWER");
575 }
576 
577 int
578 union_print(struct vnode *vp)
579 {
580 	struct union_node unode, *up = &unode;
581 
582 	KGETRET(VTOUNION(vp), &unode, sizeof(unode), "vnode's unode");
583 
584 	printf(" %8lx %8lx", (u_long)(void *)up->un_uppervp,
585 	    (u_long)(void *)up->un_lowervp);
586 	return (0);
587 }
588 
589 /*
590  * Given a pointer to a mount structure in kernel space,
591  * read it in and return a usable pointer to it.
592  */
593 struct mount *
594 getmnt(struct mount *maddr)
595 {
596 	static struct mtab {
597 		struct mtab *next;
598 		struct mount *maddr;
599 		struct mount mount;
600 	} *mhead = NULL;
601 	struct mtab *mt;
602 
603 	for (mt = mhead; mt != NULL; mt = mt->next)
604 		if (maddr == mt->maddr)
605 			return (&mt->mount);
606 	if ((mt = malloc(sizeof(struct mtab))) == NULL)
607 		errx(1, "malloc");
608 	KGETRET(maddr, &mt->mount, sizeof(struct mount), "mount table");
609 	mt->maddr = maddr;
610 	mt->next = mhead;
611 	mhead = mt;
612 	return (&mt->mount);
613 }
614 
615 void
616 mount_print(struct mount *mp)
617 {
618 	int flags;
619 
620 #define ST	mp->mnt_stat
621 	printf("*** MOUNT %s %s on %s", ST.f_fstypename,
622 	    ST.f_mntfromname, ST.f_mntonname);
623 	if ((flags = mp->mnt_flag)) {
624 		int i;
625 		const char *sep = " (";
626 
627 		for (i = 0; mnt_flags[i].m_flag; i++) {
628 			if (flags & mnt_flags[i].m_flag) {
629 				printf("%s%s", sep, mnt_flags[i].m_name);
630 				flags &= ~mnt_flags[i].m_flag;
631 				sep = ",";
632 			}
633 		}
634 		if (flags)
635 			printf("%sunknown_flags:%x", sep, flags);
636 		printf(")");
637 	}
638 	printf("\n");
639 #undef ST
640 }
641 
642 struct e_vnode *
643 loadvnodes(int *avnodes)
644 {
645 	int mib[2];
646 	size_t copysize;
647 	struct e_vnode *vnodebase;
648 
649 	if (memf != NULL) {
650 		/*
651 		 * do it by hand
652 		 */
653 		return (kinfo_vnodes(avnodes));
654 	}
655 	mib[0] = CTL_KERN;
656 	mib[1] = KERN_VNODE;
657 	if (sysctl(mib, 2, NULL, &copysize, NULL, 0) == -1)
658 		err(1, "sysctl: KERN_VNODE");
659 	if ((vnodebase = malloc(copysize)) == NULL)
660 		errx(1, "malloc");
661 	if (sysctl(mib, 2, vnodebase, &copysize, NULL, 0) == -1)
662 		err(1, "sysctl: KERN_VNODE");
663 	if (copysize % sizeof(struct e_vnode))
664 		errx(1, "vnode size mismatch");
665 	*avnodes = copysize / sizeof(struct e_vnode);
666 
667 	return (vnodebase);
668 }
669 
670 /*
671  * simulate what a running kernel does in in kinfo_vnode
672  */
673 struct e_vnode *
674 kinfo_vnodes(int *avnodes)
675 {
676 	struct mntlist mountlist;
677 	struct mount *mp, mounth, *mp_next;
678 	struct vnode *vp, vnode, *vp_next;
679 	char *vbuf, *evbuf, *bp;
680 	int num, numvnodes;
681 
682 #define VPTRSZ  sizeof(struct vnode *)
683 #define VNODESZ sizeof(struct vnode)
684 
685 	KGET(NL_NUMVNODES, numvnodes);
686 	if ((vbuf = malloc((numvnodes + 20) * (VPTRSZ + VNODESZ))) == NULL)
687 		errx(1, "malloc");
688 	bp = vbuf;
689 	evbuf = vbuf + (numvnodes + 20) * (VPTRSZ + VNODESZ);
690 	KGET(NL_MOUNTLIST, mountlist);
691 	for (num = 0, mp = TAILQ_FIRST(&mountlist); ; mp = mp_next) {
692 		KGET2(mp, &mounth, sizeof(mounth), "mount entry");
693 		mp_next = TAILQ_NEXT(&mounth, mnt_list);
694 		for (vp = TAILQ_FIRST(&mounth.mnt_nvnodelist);
695 		    vp != NULL; vp = vp_next) {
696 			KGET2(vp, &vnode, sizeof(vnode), "vnode");
697 			vp_next = TAILQ_NEXT(&vnode, v_nmntvnodes);
698 			if ((bp + VPTRSZ + VNODESZ) > evbuf)
699 				/* XXX - should realloc */
700 				errx(1, "no more room for vnodes");
701 			memmove(bp, &vp, VPTRSZ);
702 			bp += VPTRSZ;
703 			memmove(bp, &vnode, VNODESZ);
704 			bp += VNODESZ;
705 			num++;
706 		}
707 		if (mp == TAILQ_LAST(&mountlist, mntlist))
708 			break;
709 	}
710 	*avnodes = num;
711 	return ((struct e_vnode *)vbuf);
712 }
713 
714 char hdr[] =
715 "  LINE RAW CAN OUT IHIWT ILOWT OHWT LWT     COL STATE  SESS      PGID DISC\n";
716 int ttyspace = 128;
717 
718 void
719 ttymode(void)
720 {
721 	struct tty *tty;
722 	struct tty ttyb[1000];
723 	int error;
724 	size_t len, i;
725 
726 	printf(hdr);
727 	len = sizeof(ttyb);
728 	error = sysctlbyname("kern.ttys", &ttyb, &len, 0, 0);
729 	if (!error) {
730 		len /= sizeof(ttyb[0]);
731 		for (i = 0; i < len; i++) {
732 			ttyprt(&ttyb[i], 0);
733 		}
734 	}
735 	if ((tty = malloc(ttyspace * sizeof(*tty))) == NULL)
736 		errx(1, "malloc");
737 	if (nl[NL_NRC_TTY].n_type != 0)
738 		ttytype(tty, "rc", NL_RC_TTY, NL_NRC_TTY, 0);
739 	if (nl[NL_NCY_TTY].n_type != 0)
740 		ttytype(tty, "cy", NL_CY_TTY, NL_NCY_TTY, 0);
741 	if (nl[NL_SI_NPORTS].n_type != 0)
742 		ttytype(tty, "si", NL_SI_TTY, NL_SI_NPORTS, 1);
743 	free(tty);
744 }
745 
746 void
747 ttytype(struct tty *tty, const char *name, int type, int number, int indir)
748 {
749 	struct tty *tp;
750 	int ntty;
751 	struct tty **ttyaddr;
752 
753 	if (tty == NULL)
754 		return;
755 	KGET(number, ntty);
756 	printf("%d %s %s\n", ntty, name, (ntty == 1) ? "line" : "lines");
757 	if (ntty > ttyspace) {
758 		ttyspace = ntty;
759 		if ((tty = realloc(tty, ttyspace * sizeof(*tty))) == 0)
760 			errx(1, "realloc");
761 	}
762 	if (indir) {
763 		KGET(type, ttyaddr);
764 		KGET2(ttyaddr, tty, (ssize_t)(ntty * sizeof(struct tty)),
765 		      "tty structs");
766 	} else {
767 		KGET1(type, tty, (ssize_t)(ntty * sizeof(struct tty)),
768 		      "tty structs");
769 	}
770 	printf(hdr);
771 	for (tp = tty; tp < &tty[ntty]; tp++)
772 		ttyprt(tp, tp - tty);
773 }
774 
775 struct {
776 	int flag;
777 	char val;
778 } ttystates[] = {
779 #ifdef TS_WOPEN
780 	{ TS_WOPEN,	'W'},
781 #endif
782 	{ TS_ISOPEN,	'O'},
783 	{ TS_CARR_ON,	'C'},
784 #ifdef TS_CONNECTED
785 	{ TS_CONNECTED,	'c'},
786 #endif
787 	{ TS_TIMEOUT,	'T'},
788 	{ TS_FLUSH,	'F'},
789 	{ TS_BUSY,	'B'},
790 #ifdef TS_ASLEEP
791 	{ TS_ASLEEP,	'A'},
792 #endif
793 #ifdef TS_SO_OLOWAT
794 	{ TS_SO_OLOWAT,	'A'},
795 #endif
796 #ifdef TS_SO_OCOMPLETE
797 	{ TS_SO_OCOMPLETE, 'a'},
798 #endif
799 	{ TS_XCLUDE,	'X'},
800 	{ TS_TTSTOP,	'S'},
801 #ifdef TS_CAR_OFLOW
802 	{ TS_CAR_OFLOW,	'm'},
803 #endif
804 #ifdef TS_CTS_OFLOW
805 	{ TS_CTS_OFLOW,	'o'},
806 #endif
807 #ifdef TS_DSR_OFLOW
808 	{ TS_DSR_OFLOW,	'd'},
809 #endif
810 	{ TS_TBLOCK,	'K'},
811 	{ TS_ASYNC,	'Y'},
812 	{ TS_BKSL,	'D'},
813 	{ TS_ERASE,	'E'},
814 	{ TS_LNCH,	'L'},
815 	{ TS_TYPEN,	'P'},
816 	{ TS_CNTTB,	'N'},
817 #ifdef TS_CAN_BYPASS_L_RINT
818 	{ TS_CAN_BYPASS_L_RINT, 'l'},
819 #endif
820 #ifdef TS_SNOOP
821 	{ TS_SNOOP,     's'},
822 #endif
823 #ifdef TS_ZOMBIE
824 	{ TS_ZOMBIE,	'Z'},
825 #endif
826 	{ 0,	       '\0'},
827 };
828 
829 void
830 ttyprt(struct tty *tp, int line)
831 {
832 	int i, j;
833 	pid_t pgid;
834 	char *name, state[20];
835 
836 	if (usenumflag || tp->t_dev == 0 ||
837 	   (name = devname(tp->t_dev, S_IFCHR)) == NULL)
838 		printf("%7d ", line);
839 	else
840 		printf("%7s ", name);
841 	printf("%2d %3d ", tp->t_rawq.c_cc, tp->t_canq.c_cc);
842 	printf("%3d %5d %5d %4d %3d %7d ", tp->t_outq.c_cc,
843 		tp->t_ihiwat, tp->t_ilowat, tp->t_ohiwat, tp->t_olowat,
844 		tp->t_column);
845 	for (i = j = 0; ttystates[i].flag; i++)
846 		if (tp->t_state&ttystates[i].flag)
847 			state[j++] = ttystates[i].val;
848 	if (j == 0)
849 		state[j++] = '-';
850 	state[j] = '\0';
851 	printf("%-6s %8lx", state, (u_long)(void *)tp->t_session);
852 	pgid = 0;
853 	if (tp->t_pgrp != NULL)
854 		KGET2(&tp->t_pgrp->pg_id, &pgid, sizeof(pid_t), "pgid");
855 	printf("%6d ", pgid);
856 	switch (tp->t_line) {
857 	case TTYDISC:
858 		printf("term\n");
859 		break;
860 	case NTTYDISC:
861 		printf("ntty\n");
862 		break;
863 	case SLIPDISC:
864 		printf("slip\n");
865 		break;
866 	case PPPDISC:
867 		printf("ppp\n");
868 		break;
869 	default:
870 		printf("%d\n", tp->t_line);
871 		break;
872 	}
873 }
874 
875 void
876 filemode(void)
877 {
878 	struct kinfo_file *fp, *ofp;
879 	size_t len;
880 	char flagbuf[16], *fbp;
881 	int maxfile, nfile;
882 	static const char *dtypes[] = { "???", "inode", "socket" };
883 
884 	if (kinfo_get_maxfiles(&maxfile))
885 		err(1, "kinfo_get_maxfiles");
886 	if (totalflag) {
887 		if (kinfo_get_openfiles(&nfile))
888 			err(1, "kinfo_get_openfiles");
889 		printf("%3d/%3d files\n", nfile, maxfile);
890 		return;
891 	}
892 	if (kinfo_get_files(&fp, &len))
893 		err(1, "kinfo_get_files");
894 	ofp = fp;
895 
896 	printf("%d/%d open files\n", len, maxfile);
897 	printf("   LOC   TYPE    FLG     CNT  MSG    DATA    OFFSET\n");
898 	for (; len-- > 0; fp++) {
899 		if ((unsigned)fp->f_type > DTYPE_SOCKET)
900 			continue;
901 		printf("%p ", fp->f_file);
902 		printf("%-8.8s", dtypes[fp->f_type]);
903 		fbp = flagbuf;
904 		if (fp->f_flag & FREAD)
905 			*fbp++ = 'R';
906 		if (fp->f_flag & FWRITE)
907 			*fbp++ = 'W';
908 		if (fp->f_flag & FAPPEND)
909 			*fbp++ = 'A';
910 #ifdef FSHLOCK	/* currently gone */
911 		if (fp->f_flag & FSHLOCK)
912 			*fbp++ = 'S';
913 		if (fp->f_flag & FEXLOCK)
914 			*fbp++ = 'X';
915 #endif
916 		if (fp->f_flag & FASYNC)
917 			*fbp++ = 'I';
918 		*fbp = '\0';
919 		printf("%6s  %3d", flagbuf, fp->f_count);
920 		printf("  %3d", fp->f_msgcount);
921 		printf("  %8lx", (u_long)(void *)fp->f_data);
922 		if (fp->f_offset < 0)
923 			printf("  %qx\n", fp->f_offset);
924 		else
925 			printf("  %qd\n", fp->f_offset);
926 	}
927 	free(ofp);
928 }
929 
930 /*
931  * swapmode is based on a program called swapinfo written
932  * by Kevin Lahey <kml@rokkaku.atl.ga.us>.
933  */
934 void
935 swapmode(void)
936 {
937 	struct kvm_swap kswap[16];
938 	int i;
939 	int n;
940 	int pagesize = getpagesize();
941 	const char *header;
942 	int hlen;
943 	long blocksize;
944 
945 	n = kvm_getswapinfo(
946 	    kd,
947 	    kswap,
948 	    sizeof(kswap)/sizeof(kswap[0]),
949 	    ((swapflag > 1) ? SWIF_DUMP_TREE : 0) | SWIF_DEV_PREFIX
950 	);
951 
952 #define CONVERT(v)	((int)((quad_t)(v) * pagesize / blocksize))
953 
954 	header = getbsize(&hlen, &blocksize);
955 	if (totalflag == 0) {
956 		printf("%-15s %*s %8s %8s %8s  %s\n",
957 		    "Device", hlen, header,
958 		    "Used", "Avail", "Capacity", "Type");
959 
960 		for (i = 0; i < n; ++i) {
961 			printf(
962 			    "%-15s %*d ",
963 			    kswap[i].ksw_devname,
964 			    hlen,
965 			    CONVERT(kswap[i].ksw_total)
966 			);
967 			printf(
968 			    "%8d %8d %5.0f%%    %s\n",
969 			    CONVERT(kswap[i].ksw_used),
970 			    CONVERT(kswap[i].ksw_total - kswap[i].ksw_used),
971 			    (double)kswap[i].ksw_used * 100.0 /
972 				(double)kswap[i].ksw_total,
973 			    (kswap[i].ksw_flags & SW_SEQUENTIAL) ?
974 				"Sequential" : "Interleaved"
975 			);
976 		}
977 	}
978 
979 	if (totalflag) {
980 		blocksize = 1024 * 1024;
981 
982 		printf(
983 		    "%dM/%dM swap space\n",
984 		    CONVERT(kswap[n].ksw_used),
985 		    CONVERT(kswap[n].ksw_total)
986 		);
987 	} else if (n > 1) {
988 		printf(
989 		    "%-15s %*d %8d %8d %5.0f%%\n",
990 		    "Total",
991 		    hlen,
992 		    CONVERT(kswap[n].ksw_total),
993 		    CONVERT(kswap[n].ksw_used),
994 		    CONVERT(kswap[n].ksw_total - kswap[n].ksw_used),
995 		    (double)kswap[n].ksw_used * 100.0 /
996 			(double)kswap[n].ksw_total
997 		);
998 	}
999 }
1000