Home | History | Annotate | Line # | Download | only in fstat
fstat.c revision 1.100
      1  1.100  christos /*	$NetBSD: fstat.c,v 1.100 2012/11/25 00:36:23 christos Exp $	*/
      2   1.17       tls 
      3    1.1       cgd /*-
      4    1.8       cgd  * Copyright (c) 1988, 1993
      5    1.8       cgd  *	The Regents of the University of California.  All rights reserved.
      6    1.1       cgd  *
      7    1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8    1.1       cgd  * modification, are permitted provided that the following conditions
      9    1.1       cgd  * are met:
     10    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.64       agc  * 3. Neither the name of the University nor the names of its contributors
     16    1.1       cgd  *    may be used to endorse or promote products derived from this software
     17    1.1       cgd  *    without specific prior written permission.
     18    1.1       cgd  *
     19    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20    1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21    1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22    1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23    1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24    1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25    1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26    1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27    1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28    1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29    1.1       cgd  * SUCH DAMAGE.
     30    1.1       cgd  */
     31    1.1       cgd 
     32   1.23     lukem #include <sys/cdefs.h>
     33    1.1       cgd #ifndef lint
     34   1.85     lukem __COPYRIGHT("@(#) Copyright (c) 1988, 1993\
     35   1.85     lukem  The Regents of the University of California.  All rights reserved.");
     36    1.1       cgd #endif /* not lint */
     37    1.1       cgd 
     38    1.1       cgd #ifndef lint
     39   1.21       mrg #if 0
     40   1.21       mrg static char sccsid[] = "@(#)fstat.c	8.3 (Berkeley) 5/2/95";
     41   1.21       mrg #else
     42  1.100  christos __RCSID("$NetBSD: fstat.c,v 1.100 2012/11/25 00:36:23 christos Exp $");
     43   1.21       mrg #endif
     44    1.1       cgd #endif /* not lint */
     45    1.1       cgd 
     46   1.78        ad #include <sys/types.h>
     47    1.1       cgd #include <sys/param.h>
     48    1.1       cgd #include <sys/time.h>
     49    1.1       cgd #include <sys/proc.h>
     50    1.1       cgd #include <sys/stat.h>
     51    1.1       cgd #include <sys/vnode.h>
     52    1.1       cgd #include <sys/socket.h>
     53    1.1       cgd #include <sys/socketvar.h>
     54    1.1       cgd #include <sys/domain.h>
     55    1.1       cgd #include <sys/protosw.h>
     56    1.1       cgd #include <sys/unpcb.h>
     57    1.8       cgd #include <sys/sysctl.h>
     58    1.1       cgd #include <sys/filedesc.h>
     59   1.47  jdolecek #include <sys/pipe.h>
     60   1.95       chs #define _KERNEL
     61   1.95       chs #include <sys/mount.h>
     62   1.95       chs #undef _KERNEL
     63   1.14       jtc #define	_KERNEL
     64    1.1       cgd #include <sys/file.h>
     65   1.10       cgd #include <ufs/ufs/inode.h>
     66   1.95       chs #include <ufs/ufs/ufsmount.h>
     67   1.41  jdolecek #undef _KERNEL
     68    1.8       cgd #define NFS
     69   1.15      fvdl #include <nfs/nfsproto.h>
     70    1.8       cgd #include <nfs/rpcv2.h>
     71    1.1       cgd #include <nfs/nfs.h>
     72    1.1       cgd #include <nfs/nfsnode.h>
     73    1.8       cgd #undef NFS
     74   1.41  jdolecek #include <msdosfs/denode.h>
     75   1.41  jdolecek #include <msdosfs/bpb.h>
     76   1.41  jdolecek #define	_KERNEL
     77   1.41  jdolecek #include <msdosfs/msdosfsmount.h>
     78   1.41  jdolecek #undef _KERNEL
     79   1.43     enami #define	_KERNEL
     80   1.43     enami #include <miscfs/genfs/layer.h>
     81   1.43     enami #undef _KERNEL
     82    1.1       cgd 
     83    1.1       cgd #include <net/route.h>
     84    1.1       cgd #include <netinet/in.h>
     85    1.1       cgd #include <netinet/in_systm.h>
     86    1.1       cgd #include <netinet/ip.h>
     87    1.1       cgd #include <netinet/in_pcb.h>
     88    1.1       cgd 
     89   1.38    itojun #ifdef INET6
     90   1.38    itojun #include <netinet/ip6.h>
     91   1.38    itojun #include <netinet6/ip6_var.h>
     92   1.38    itojun #include <netinet6/in6_pcb.h>
     93   1.38    itojun #endif
     94   1.38    itojun 
     95   1.93  christos #include <netatalk/at.h>
     96   1.93  christos #include <netatalk/ddp_var.h>
     97   1.93  christos 
     98   1.38    itojun #include <netdb.h>
     99   1.34     lukem #include <arpa/inet.h>
    100   1.34     lukem 
    101    1.8       cgd #include <ctype.h>
    102    1.1       cgd #include <errno.h>
    103    1.8       cgd #include <kvm.h>
    104   1.15      fvdl #include <limits.h>
    105    1.1       cgd #include <nlist.h>
    106    1.8       cgd #include <paths.h>
    107    1.1       cgd #include <pwd.h>
    108    1.1       cgd #include <stdio.h>
    109    1.1       cgd #include <stdlib.h>
    110    1.1       cgd #include <string.h>
    111   1.23     lukem #include <unistd.h>
    112   1.27      fair #include <err.h>
    113   1.92  christos #include <util.h>
    114    1.1       cgd 
    115   1.34     lukem #include "fstat.h"
    116   1.34     lukem 
    117    1.1       cgd #define	TEXT	-1
    118    1.1       cgd #define	CDIR	-2
    119    1.1       cgd #define	RDIR	-3
    120    1.1       cgd #define	TRACE	-4
    121    1.1       cgd 
    122    1.1       cgd typedef struct devs {
    123    1.1       cgd 	struct	devs *next;
    124    1.1       cgd 	long	fsid;
    125    1.1       cgd 	ino_t	ino;
    126   1.72  christos 	const char *name;
    127    1.1       cgd } DEVS;
    128   1.72  christos static DEVS *devs;
    129    1.1       cgd 
    130   1.72  christos static int 	fsflg,	/* show files on same filesystem as file(s) argument */
    131    1.1       cgd 	pflg,	/* show files open by a particular pid */
    132    1.1       cgd 	uflg;	/* show files open by a particular (effective) user */
    133   1.72  christos static int 	checkfile; /* true if restricting to particular files or filesystems */
    134   1.72  christos static int	nflg;	/* (numerical) display f.s. and rdev as dev_t */
    135    1.1       cgd int	vflg;	/* display errors in locating kernel data objects etc... */
    136    1.1       cgd 
    137   1.80  christos static fdfile_t **ofiles; /* buffer of pointers to file structures */
    138   1.74       mrg static int fstat_maxfiles;
    139    1.1       cgd #define ALLOC_OFILES(d)	\
    140   1.74       mrg 	if ((d) > fstat_maxfiles) { \
    141   1.80  christos 		size_t len = (d) * sizeof(fdfile_t *); \
    142    1.1       cgd 		free(ofiles); \
    143   1.80  christos 		ofiles = malloc(len); \
    144    1.1       cgd 		if (ofiles == NULL) { \
    145   1.80  christos 			err(1, "malloc(%zu)", len);	\
    146    1.1       cgd 		} \
    147   1.74       mrg 		fstat_maxfiles = (d); \
    148    1.1       cgd 	}
    149    1.1       cgd 
    150    1.8       cgd kvm_t *kd;
    151    1.1       cgd 
    152   1.81  christos static const char *const dtypes[] = {
    153   1.81  christos 	DTYPE_NAMES
    154   1.81  christos };
    155   1.81  christos 
    156   1.72  christos static void	dofiles(struct kinfo_proc2 *);
    157   1.72  christos static int	ext2fs_filestat(struct vnode *, struct filestat *);
    158   1.72  christos static int	getfname(const char *);
    159   1.72  christos static void	getinetproto(int);
    160   1.93  christos static void	getatproto(int);
    161   1.72  christos static char   *getmnton(struct mount *);
    162   1.72  christos static const char   *layer_filestat(struct vnode *, struct filestat *);
    163   1.72  christos static int	msdosfs_filestat(struct vnode *, struct filestat *);
    164   1.72  christos static int	nfs_filestat(struct vnode *, struct filestat *);
    165   1.93  christos static const char *inet_addrstr(char *, size_t, const struct in_addr *,
    166   1.93  christos     uint16_t);
    167   1.38    itojun #ifdef INET6
    168   1.93  christos static const char *inet6_addrstr(char *, size_t, const struct in6_addr *,
    169   1.93  christos     uint16_t);
    170   1.38    itojun #endif
    171   1.93  christos static const char *at_addrstr(char *, size_t, const struct sockaddr_at *);
    172   1.72  christos static void	socktrans(struct socket *, int);
    173  1.100  christos static void	misctrans(struct file *, int);
    174   1.72  christos static int	ufs_filestat(struct vnode *, struct filestat *);
    175   1.77     perry static void	usage(void) __dead;
    176   1.72  christos static const char   *vfilestat(struct vnode *, struct filestat *);
    177   1.72  christos static void	vtrans(struct vnode *, int, int);
    178   1.80  christos static void	ftrans(fdfile_t *, int);
    179   1.72  christos static void	ptrans(struct file *, struct pipe *, int);
    180   1.99  christos static void	kdriver_init(void);
    181    1.1       cgd 
    182   1.23     lukem int
    183   1.72  christos main(int argc, char **argv)
    184    1.1       cgd {
    185   1.23     lukem 	struct passwd *passwd;
    186   1.58       dsl 	struct kinfo_proc2 *p, *plast;
    187    1.1       cgd 	int arg, ch, what;
    188    1.8       cgd 	char *memf, *nlistf;
    189   1.15      fvdl 	char buf[_POSIX2_LINE_MAX];
    190    1.8       cgd 	int cnt;
    191   1.26       mrg 	gid_t egid = getegid();
    192    1.1       cgd 
    193   1.26       mrg 	(void)setegid(getgid());
    194    1.1       cgd 	arg = 0;
    195    1.8       cgd 	what = KERN_PROC_ALL;
    196    1.8       cgd 	nlistf = memf = NULL;
    197   1.22     lukem 	while ((ch = getopt(argc, argv, "fnp:u:vN:M:")) != -1)
    198    1.1       cgd 		switch((char)ch) {
    199    1.1       cgd 		case 'f':
    200    1.1       cgd 			fsflg = 1;
    201    1.1       cgd 			break;
    202    1.8       cgd 		case 'M':
    203    1.8       cgd 			memf = optarg;
    204    1.8       cgd 			break;
    205    1.8       cgd 		case 'N':
    206    1.8       cgd 			nlistf = optarg;
    207    1.8       cgd 			break;
    208    1.1       cgd 		case 'n':
    209    1.1       cgd 			nflg = 1;
    210    1.1       cgd 			break;
    211    1.1       cgd 		case 'p':
    212    1.1       cgd 			if (pflg++)
    213    1.1       cgd 				usage();
    214   1.68       dsl 			if (!isdigit((unsigned char)*optarg)) {
    215   1.34     lukem 				warnx("-p requires a process id");
    216    1.1       cgd 				usage();
    217    1.1       cgd 			}
    218    1.8       cgd 			what = KERN_PROC_PID;
    219    1.1       cgd 			arg = atoi(optarg);
    220    1.1       cgd 			break;
    221    1.1       cgd 		case 'u':
    222    1.1       cgd 			if (uflg++)
    223    1.1       cgd 				usage();
    224    1.1       cgd 			if (!(passwd = getpwnam(optarg))) {
    225   1.34     lukem 				errx(1, "%s: unknown uid", optarg);
    226    1.1       cgd 			}
    227    1.8       cgd 			what = KERN_PROC_UID;
    228    1.1       cgd 			arg = passwd->pw_uid;
    229    1.1       cgd 			break;
    230    1.1       cgd 		case 'v':
    231    1.1       cgd 			vflg = 1;
    232    1.1       cgd 			break;
    233    1.1       cgd 		case '?':
    234    1.1       cgd 		default:
    235    1.1       cgd 			usage();
    236    1.1       cgd 		}
    237    1.1       cgd 
    238   1.99  christos 	kdriver_init();
    239   1.99  christos 
    240    1.1       cgd 	if (*(argv += optind)) {
    241    1.1       cgd 		for (; *argv; ++argv) {
    242    1.1       cgd 			if (getfname(*argv))
    243    1.1       cgd 				checkfile = 1;
    244    1.1       cgd 		}
    245   1.49       wiz 		if (!checkfile)	/* file(s) specified, but none accessible */
    246    1.1       cgd 			exit(1);
    247    1.1       cgd 	}
    248    1.1       cgd 
    249    1.1       cgd 	ALLOC_OFILES(256);	/* reserve space for file pointers */
    250    1.1       cgd 
    251    1.1       cgd 	if (fsflg && !checkfile) {
    252    1.1       cgd 		/* -f with no files means use wd */
    253    1.1       cgd 		if (getfname(".") == 0)
    254    1.1       cgd 			exit(1);
    255    1.1       cgd 		checkfile = 1;
    256    1.1       cgd 	}
    257    1.1       cgd 
    258    1.8       cgd 	/*
    259   1.26       mrg 	 * Discard setgid privileges.  If not the running kernel, we toss
    260   1.26       mrg 	 * them away totally so that bad guys can't print interesting stuff
    261   1.26       mrg 	 * from kernel memory, otherwise switch back to kmem for the
    262   1.26       mrg 	 * duration of the kvm_openfiles() call.
    263    1.8       cgd 	 */
    264    1.8       cgd 	if (nlistf != NULL || memf != NULL)
    265   1.26       mrg 		(void)setgid(getgid());
    266   1.26       mrg 	else
    267   1.26       mrg 		(void)setegid(egid);
    268   1.26       mrg 
    269   1.26       mrg 	if ((kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, buf)) == NULL)
    270   1.26       mrg 		errx(1, "%s", buf);
    271   1.26       mrg 
    272   1.26       mrg 	/* get rid of it now anyway */
    273   1.26       mrg 	if (nlistf == NULL && memf == NULL)
    274   1.26       mrg 		(void)setgid(getgid());
    275    1.8       cgd 
    276   1.58       dsl 	if ((p = kvm_getproc2(kd, what, arg, sizeof *p, &cnt)) == NULL) {
    277   1.34     lukem 		errx(1, "%s", kvm_geterr(kd));
    278    1.1       cgd 	}
    279    1.1       cgd 	if (nflg)
    280   1.72  christos 		(void)printf("%s",
    281   1.55    simonb "USER     CMD          PID   FD  DEV     INUM  MODE  SZ|DV R/W");
    282    1.1       cgd 	else
    283   1.72  christos 		(void)printf("%s",
    284   1.55    simonb "USER     CMD          PID   FD MOUNT       INUM MODE         SZ|DV R/W");
    285    1.1       cgd 	if (checkfile && fsflg == 0)
    286   1.72  christos 		(void)printf(" NAME\n");
    287    1.1       cgd 	else
    288   1.72  christos 		(void)putchar('\n');
    289    1.1       cgd 
    290    1.8       cgd 	for (plast = &p[cnt]; p < plast; ++p) {
    291   1.58       dsl 		if (p->p_stat == SZOMB)
    292    1.1       cgd 			continue;
    293    1.1       cgd 		dofiles(p);
    294    1.1       cgd 	}
    295   1.72  christos 	return 0;
    296    1.1       cgd }
    297    1.1       cgd 
    298   1.72  christos static const	char *Uname, *Comm;
    299   1.34     lukem pid_t	Pid;
    300    1.1       cgd 
    301   1.72  christos #define PREFIX(i) (void)printf("%-8.8s %-10s %5d", Uname, Comm, Pid); \
    302    1.1       cgd 	switch(i) { \
    303    1.1       cgd 	case TEXT: \
    304   1.72  christos 		(void)printf(" text"); \
    305    1.1       cgd 		break; \
    306    1.1       cgd 	case CDIR: \
    307   1.72  christos 		(void)printf("   wd"); \
    308    1.1       cgd 		break; \
    309    1.1       cgd 	case RDIR: \
    310   1.72  christos 		(void)printf(" root"); \
    311    1.1       cgd 		break; \
    312    1.1       cgd 	case TRACE: \
    313   1.72  christos 		(void)printf("   tr"); \
    314    1.1       cgd 		break; \
    315    1.1       cgd 	default: \
    316   1.72  christos 		(void)printf(" %4d", i); \
    317    1.1       cgd 		break; \
    318    1.1       cgd 	}
    319    1.1       cgd 
    320   1.99  christos static struct kinfo_drivers *kdriver;
    321   1.99  christos static size_t kdriverlen;
    322   1.99  christos 
    323   1.99  christos static int
    324   1.99  christos kdriver_comp(const void *a, const void *b)
    325   1.99  christos {
    326   1.99  christos 	const struct kinfo_drivers *ka = a;
    327   1.99  christos 	const struct kinfo_drivers *kb = b;
    328   1.99  christos 	int kac = ka->d_cmajor == -1 ? 0 : ka->d_cmajor;
    329   1.99  christos 	int kbc = kb->d_cmajor == -1 ? 0 : kb->d_cmajor;
    330   1.99  christos 	int kab = ka->d_bmajor == -1 ? 0 : ka->d_bmajor;
    331   1.99  christos 	int kbb = kb->d_bmajor == -1 ? 0 : kb->d_bmajor;
    332   1.99  christos 	int c = kac - kbc;
    333   1.99  christos 	if (c == 0)
    334   1.99  christos 		return kab - kbb;
    335   1.99  christos 	else
    336   1.99  christos 		return c;
    337   1.99  christos }
    338   1.99  christos 
    339   1.99  christos static const char *
    340   1.99  christos kdriver_search(int type, dev_t num)
    341   1.99  christos {
    342   1.99  christos 	struct kinfo_drivers k, *kp;
    343   1.99  christos 	static char buf[64];
    344   1.99  christos 
    345   1.99  christos 	if (nflg)
    346   1.99  christos 		goto out;
    347   1.99  christos 
    348   1.99  christos 	if (type == VBLK) {
    349   1.99  christos 		k.d_bmajor = num;
    350   1.99  christos 		k.d_cmajor = -1;
    351   1.99  christos 	} else {
    352   1.99  christos 		k.d_bmajor = -1;
    353   1.99  christos 		k.d_cmajor = num;
    354   1.99  christos 	}
    355   1.99  christos 	kp = bsearch(&k, kdriver, kdriverlen, sizeof(*kdriver), kdriver_comp);
    356   1.99  christos 	if (kp)
    357   1.99  christos 		return kp->d_name;
    358   1.99  christos out:
    359   1.99  christos 	snprintf(buf, sizeof(buf), "%llu", (unsigned long long)num);
    360   1.99  christos 	return buf;
    361   1.99  christos }
    362   1.99  christos 
    363   1.99  christos 
    364   1.99  christos static void
    365   1.99  christos kdriver_init(void)
    366   1.99  christos {
    367   1.99  christos 	size_t sz;
    368   1.99  christos 	int error;
    369   1.99  christos 	static const int name[2] = { CTL_KERN, KERN_DRIVERS };
    370   1.99  christos 
    371   1.99  christos 	error = sysctl(name, __arraycount(name), NULL, &sz, NULL, 0);
    372   1.99  christos 	if (error == -1) {
    373   1.99  christos 		warn("sysctl kern.drivers");
    374   1.99  christos 		return;
    375   1.99  christos 	}
    376   1.99  christos 
    377   1.99  christos 	if (sz % sizeof(*kdriver)) {
    378   1.99  christos 		warnx("bad size %zu for kern.drivers", sz);
    379   1.99  christos 		return;
    380   1.99  christos 	}
    381   1.99  christos 
    382   1.99  christos 	kdriver = malloc(sz);
    383   1.99  christos 	if (kdriver == NULL) {
    384   1.99  christos 		warn("malloc");
    385   1.99  christos 		return;
    386   1.99  christos 	}
    387   1.99  christos 
    388   1.99  christos 	error = sysctl(name, __arraycount(name), kdriver, &sz, NULL, 0);
    389   1.99  christos 	if (error == -1) {
    390   1.99  christos 		warn("sysctl kern.drivers");
    391   1.99  christos 		return;
    392   1.99  christos 	}
    393   1.99  christos 
    394   1.99  christos 	kdriverlen = sz / sizeof(*kdriver);
    395   1.99  christos 	qsort(kdriver, kdriverlen, sizeof(*kdriver), kdriver_comp);
    396   1.99  christos #ifdef DEBUG
    397   1.99  christos 	for (size_t i = 0; i < kdriverlen; i++)
    398   1.99  christos 		printf("%d %d %s\n", kdriver[i].d_cmajor, kdriver[i].d_bmajor,
    399   1.99  christos 		    kdriver[i].d_name);
    400   1.99  christos #endif
    401   1.99  christos }
    402   1.99  christos 
    403    1.1       cgd /*
    404    1.1       cgd  * print open files attributed to this process
    405    1.1       cgd  */
    406   1.72  christos static void
    407   1.72  christos dofiles(struct kinfo_proc2 *p)
    408    1.1       cgd {
    409   1.23     lukem 	int i;
    410   1.78        ad 	struct filedesc filed;
    411   1.35   thorpej 	struct cwdinfo cwdi;
    412   1.89        ad 	struct fdtab dt;
    413    1.1       cgd 
    414   1.58       dsl 	Uname = user_from_uid(p->p_uid, 0);
    415    1.1       cgd 	Pid = p->p_pid;
    416    1.1       cgd 	Comm = p->p_comm;
    417    1.1       cgd 
    418   1.65      fvdl 	if (p->p_fd == 0 || p->p_cwdi == 0)
    419    1.1       cgd 		return;
    420   1.78        ad 	if (!KVM_READ(p->p_fd, &filed, sizeof (filed))) {
    421   1.91  christos 		warnx("can't read filedesc at %p for pid %d",
    422   1.91  christos 		    (void *)(uintptr_t)p->p_fd, Pid);
    423   1.13   mycroft 		return;
    424   1.13   mycroft 	}
    425   1.91  christos 	if (filed.fd_lastfile == -1)
    426   1.91  christos 		return;
    427   1.35   thorpej 	if (!KVM_READ(p->p_cwdi, &cwdi, sizeof(cwdi))) {
    428   1.91  christos 		warnx("can't read cwdinfo at %p for pid %d",
    429   1.91  christos 		    (void *)(uintptr_t)p->p_cwdi, Pid);
    430   1.35   thorpej 		return;
    431   1.35   thorpej 	}
    432   1.89        ad 	if (!KVM_READ(filed.fd_dt, &dt, sizeof(dt))) {
    433   1.89        ad 		warnx("can't read dtab at %p for pid %d", filed.fd_dt, Pid);
    434   1.89        ad 		return;
    435   1.89        ad 	}
    436   1.89        ad 	if ((unsigned)filed.fd_lastfile >= dt.dt_nfiles ||
    437   1.13   mycroft 	    filed.fd_freefile > filed.fd_lastfile + 1) {
    438   1.91  christos 		dprintf("filedesc corrupted at %p for pid %d",
    439   1.91  christos 		    (void *)(uintptr_t)p->p_fd, Pid);
    440    1.1       cgd 		return;
    441    1.1       cgd 	}
    442    1.1       cgd 	/*
    443    1.1       cgd 	 * root directory vnode, if one
    444    1.1       cgd 	 */
    445   1.35   thorpej 	if (cwdi.cwdi_rdir)
    446   1.35   thorpej 		vtrans(cwdi.cwdi_rdir, RDIR, FREAD);
    447    1.1       cgd 	/*
    448    1.1       cgd 	 * current working directory vnode
    449    1.1       cgd 	 */
    450   1.35   thorpej 	vtrans(cwdi.cwdi_cdir, CDIR, FREAD);
    451   1.80  christos #if 0
    452    1.1       cgd 	/*
    453   1.80  christos 	 * Disable for now, since p->p_tracep appears to point to a ktr_desc *
    454    1.1       cgd 	 * ktrace vnode, if one
    455    1.1       cgd 	 */
    456    1.1       cgd 	if (p->p_tracep)
    457   1.92  christos 		ftrans(p->p_tracep, TRACE);
    458   1.80  christos #endif
    459    1.1       cgd 	/*
    460    1.1       cgd 	 * open files
    461    1.1       cgd 	 */
    462   1.80  christos #define FPSIZE	(sizeof (fdfile_t *))
    463    1.8       cgd 	ALLOC_OFILES(filed.fd_lastfile+1);
    464   1.89        ad 	if (!KVM_READ(&filed.fd_dt->dt_ff, ofiles,
    465   1.76    dyoung 	    (filed.fd_lastfile+1) * FPSIZE)) {
    466   1.76    dyoung 		dprintf("can't read file structures at %p for pid %d",
    467   1.89        ad 		    &filed.fd_dt->dt_ff, Pid);
    468   1.76    dyoung 		return;
    469   1.76    dyoung 	}
    470    1.1       cgd 	for (i = 0; i <= filed.fd_lastfile; i++) {
    471    1.1       cgd 		if (ofiles[i] == NULL)
    472    1.1       cgd 			continue;
    473   1.42  sommerfe 		ftrans(ofiles[i], i);
    474   1.42  sommerfe 	}
    475   1.42  sommerfe }
    476   1.42  sommerfe 
    477   1.72  christos static void
    478   1.80  christos ftrans(fdfile_t *fp, int i)
    479   1.42  sommerfe {
    480   1.42  sommerfe 	struct file file;
    481   1.80  christos 	fdfile_t fdfile;
    482   1.42  sommerfe 
    483   1.80  christos 	if (!KVM_READ(fp, &fdfile, sizeof(fdfile))) {
    484   1.42  sommerfe 		dprintf("can't read file %d at %p for pid %d",
    485   1.42  sommerfe 		    i, fp, Pid);
    486   1.42  sommerfe 		return;
    487   1.42  sommerfe 	}
    488  1.100  christos 	if (fdfile.ff_file == NULL) {
    489  1.100  christos 		dprintf("null ff_file for %d at %p for pid %d",
    490  1.100  christos 		    i, fp, Pid);
    491   1.82  christos 		return;
    492  1.100  christos 	}
    493   1.80  christos 	if (!KVM_READ(fdfile.ff_file, &file, sizeof(file))) {
    494   1.80  christos 		dprintf("can't read file %d at %p for pid %d",
    495   1.80  christos 		    i, fdfile.ff_file, Pid);
    496   1.80  christos 		return;
    497   1.80  christos 	}
    498   1.48     lukem 	switch (file.f_type) {
    499   1.48     lukem 	case DTYPE_VNODE:
    500   1.92  christos 		vtrans(file.f_data, i, file.f_flag);
    501   1.48     lukem 		break;
    502   1.48     lukem 	case DTYPE_SOCKET:
    503   1.42  sommerfe 		if (checkfile == 0)
    504   1.92  christos 			socktrans(file.f_data, i);
    505   1.48     lukem 		break;
    506   1.48     lukem 	case DTYPE_PIPE:
    507   1.47  jdolecek 		if (checkfile == 0)
    508   1.92  christos 			ptrans(&file, file.f_data, i);
    509   1.48     lukem 		break;
    510   1.84  christos 	case DTYPE_MISC:
    511   1.56  jdolecek 	case DTYPE_KQUEUE:
    512   1.81  christos 	case DTYPE_CRYPTO:
    513   1.81  christos 	case DTYPE_MQUEUE:
    514   1.90     rmind 	case DTYPE_SEM:
    515   1.56  jdolecek 		if (checkfile == 0)
    516  1.100  christos 			misctrans(&file, i);
    517   1.56  jdolecek 		break;
    518   1.48     lukem 	default:
    519   1.42  sommerfe 		dprintf("unknown file type %d for file %d of pid %d",
    520   1.42  sommerfe 		    file.f_type, i, Pid);
    521   1.48     lukem 		break;
    522    1.1       cgd 	}
    523    1.1       cgd }
    524    1.1       cgd 
    525   1.92  christos static const char dead[] = "dead";
    526   1.92  christos 
    527   1.72  christos static const char *
    528   1.72  christos vfilestat(struct vnode *vp, struct filestat *fsp)
    529    1.1       cgd {
    530   1.72  christos 	const char *badtype = NULL;
    531    1.1       cgd 
    532   1.92  christos 	if (vp->v_type == VNON)
    533    1.1       cgd 		badtype = "none";
    534   1.44     enami 	else if (vp->v_type == VBAD)
    535    1.1       cgd 		badtype = "bad";
    536    1.1       cgd 	else
    537   1.44     enami 		switch (vp->v_tag) {
    538   1.92  christos 		case VT_NON:
    539   1.92  christos 			badtype = dead;
    540   1.92  christos 			break;
    541    1.1       cgd 		case VT_UFS:
    542   1.57      yamt 		case VT_LFS:
    543    1.1       cgd 		case VT_MFS:
    544   1.44     enami 			if (!ufs_filestat(vp, fsp))
    545    1.8       cgd 				badtype = "error";
    546    1.1       cgd 			break;
    547   1.41  jdolecek 		case VT_MSDOSFS:
    548   1.44     enami 			if (!msdosfs_filestat(vp, fsp))
    549   1.41  jdolecek 				badtype = "error";
    550   1.41  jdolecek 			break;
    551    1.1       cgd 		case VT_NFS:
    552   1.44     enami 			if (!nfs_filestat(vp, fsp))
    553    1.8       cgd 				badtype = "error";
    554    1.1       cgd 			break;
    555   1.20    bouyer 		case VT_EXT2FS:
    556   1.44     enami 			if (!ext2fs_filestat(vp, fsp))
    557   1.20    bouyer 				badtype = "error";
    558   1.20    bouyer 			break;
    559   1.34     lukem 		case VT_ISOFS:
    560   1.44     enami 			if (!isofs_filestat(vp, fsp))
    561   1.37  jdolecek 				badtype = "error";
    562   1.37  jdolecek 			break;
    563   1.37  jdolecek 		case VT_NTFS:
    564   1.44     enami 			if (!ntfs_filestat(vp, fsp))
    565   1.34     lukem 				badtype = "error";
    566   1.34     lukem 			break;
    567   1.70  christos 		case VT_PTYFS:
    568   1.70  christos 			if (!ptyfs_filestat(vp, fsp))
    569   1.70  christos 				badtype = "error";
    570   1.70  christos 			break;
    571   1.73  christos 		case VT_TMPFS:
    572   1.73  christos 			if (!tmpfs_filestat(vp, fsp))
    573   1.73  christos 				badtype = "error";
    574   1.73  christos 			break;
    575   1.43     enami 		case VT_NULL:
    576   1.43     enami 		case VT_OVERLAY:
    577   1.43     enami 		case VT_UMAP:
    578   1.44     enami 			badtype = layer_filestat(vp, fsp);
    579   1.43     enami 			break;
    580    1.1       cgd 		default: {
    581    1.1       cgd 			static char unknown[10];
    582   1.72  christos 			(void)snprintf(unknown, sizeof unknown,
    583   1.44     enami 			    "?(%x)", vp->v_tag);
    584   1.72  christos 			badtype = unknown;
    585   1.44     enami 			break;
    586    1.1       cgd 		}
    587    1.1       cgd 	}
    588   1.91  christos 	return badtype;
    589   1.44     enami }
    590   1.44     enami 
    591   1.72  christos static void
    592   1.72  christos vtrans(struct vnode *vp, int i, int flag)
    593   1.44     enami {
    594   1.44     enami 	struct vnode vn;
    595   1.44     enami 	struct filestat fst;
    596   1.44     enami 	char mode[15], rw[3];
    597   1.72  christos 	const char *badtype, *filename;
    598   1.44     enami 
    599   1.44     enami 	filename = NULL;
    600   1.44     enami 	if (!KVM_READ(vp, &vn, sizeof(struct vnode))) {
    601   1.44     enami 		dprintf("can't read vnode at %p for pid %d", vp, Pid);
    602   1.44     enami 		return;
    603   1.44     enami 	}
    604   1.44     enami 	badtype = vfilestat(&vn, &fst);
    605    1.1       cgd 	if (checkfile) {
    606    1.1       cgd 		int fsmatch = 0;
    607   1.23     lukem 		DEVS *d;
    608    1.1       cgd 
    609   1.92  christos 		if (badtype && badtype != dead)
    610    1.1       cgd 			return;
    611    1.1       cgd 		for (d = devs; d != NULL; d = d->next)
    612    1.1       cgd 			if (d->fsid == fst.fsid) {
    613    1.1       cgd 				fsmatch = 1;
    614    1.1       cgd 				if (d->ino == fst.fileid) {
    615    1.1       cgd 					filename = d->name;
    616    1.1       cgd 					break;
    617    1.1       cgd 				}
    618    1.1       cgd 			}
    619    1.1       cgd 		if (fsmatch == 0 || (filename == NULL && fsflg == 0))
    620    1.1       cgd 			return;
    621    1.1       cgd 	}
    622    1.1       cgd 	PREFIX(i);
    623   1.92  christos 	if (badtype == dead) {
    624   1.92  christos 		char buf[1024];
    625   1.92  christos 		(void)snprintb(buf, sizeof(buf), VNODE_FLAGBITS,
    626   1.92  christos 		    vn.v_iflag | vn.v_vflag | vn.v_uflag);
    627   1.92  christos 		(void)printf(" flags %s\n", buf);
    628   1.92  christos 		return;
    629   1.92  christos 	} else if (badtype) {
    630    1.1       cgd 		(void)printf(" -         -  %10s    -\n", badtype);
    631    1.1       cgd 		return;
    632    1.1       cgd 	}
    633    1.1       cgd 	if (nflg)
    634   1.87  christos 		(void)printf(" %2llu,%-2llu",
    635   1.87  christos 		    (unsigned long long)major(fst.fsid),
    636   1.87  christos 		    (unsigned long long)minor(fst.fsid));
    637    1.1       cgd 	else
    638    1.1       cgd 		(void)printf(" %-8s", getmnton(vn.v_mount));
    639    1.1       cgd 	if (nflg)
    640   1.18       mrg 		(void)snprintf(mode, sizeof mode, "%o", fst.mode);
    641    1.1       cgd 	else
    642    1.1       cgd 		strmode(fst.mode, mode);
    643   1.88     lukem 	(void)printf(" %7"PRIu64" %*s", fst.fileid, nflg ? 5 : 10, mode);
    644    1.1       cgd 	switch (vn.v_type) {
    645    1.1       cgd 	case VBLK:
    646    1.1       cgd 	case VCHR: {
    647    1.1       cgd 		char *name;
    648    1.1       cgd 
    649    1.1       cgd 		if (nflg || ((name = devname(fst.rdev, vn.v_type == VCHR ?
    650    1.1       cgd 		    S_IFCHR : S_IFBLK)) == NULL))
    651   1.99  christos 			(void)printf("  %s,%-2llu",
    652   1.99  christos 			    kdriver_search(vn.v_type, major(fst.rdev)),
    653   1.87  christos 			    (unsigned long long)minor(fst.rdev));
    654    1.1       cgd 		else
    655   1.72  christos 			(void)printf(" %6s", name);
    656    1.1       cgd 		break;
    657    1.1       cgd 	}
    658    1.1       cgd 	default:
    659   1.72  christos 		(void)printf(" %6lld", (long long)fst.size);
    660    1.1       cgd 	}
    661   1.34     lukem 	rw[0] = '\0';
    662    1.8       cgd 	if (flag & FREAD)
    663   1.72  christos 		(void)strlcat(rw, "r", sizeof(rw));
    664    1.8       cgd 	if (flag & FWRITE)
    665   1.72  christos 		(void)strlcat(rw, "w", sizeof(rw));
    666   1.72  christos 	(void)printf(" %-2s", rw);
    667    1.1       cgd 	if (filename && !fsflg)
    668   1.72  christos 		(void)printf("  %s", filename);
    669   1.72  christos 	(void)putchar('\n');
    670    1.1       cgd }
    671    1.1       cgd 
    672   1.72  christos static int
    673   1.72  christos ufs_filestat(struct vnode *vp, struct filestat *fsp)
    674    1.1       cgd {
    675    1.8       cgd 	struct inode inode;
    676   1.95       chs 	struct ufsmount ufsmount;
    677   1.62      fvdl 	union dinode {
    678   1.62      fvdl 		struct ufs1_dinode dp1;
    679   1.62      fvdl 		struct ufs2_dinode dp2;
    680   1.62      fvdl 	} dip;
    681    1.8       cgd 
    682    1.8       cgd 	if (!KVM_READ(VTOI(vp), &inode, sizeof (inode))) {
    683   1.34     lukem 		dprintf("can't read inode at %p for pid %d", VTOI(vp), Pid);
    684    1.8       cgd 		return 0;
    685    1.8       cgd 	}
    686   1.62      fvdl 
    687   1.95       chs 	if (!KVM_READ(inode.i_ump, &ufsmount, sizeof (struct ufsmount))) {
    688   1.95       chs 		dprintf("can't read ufsmount at %p for pid %d", inode.i_ump, Pid);
    689   1.62      fvdl 		return 0;
    690   1.62      fvdl 	}
    691   1.95       chs 
    692   1.95       chs 	switch (ufsmount.um_fstype) {
    693   1.95       chs 	case UFS1:
    694   1.95       chs 		if (!KVM_READ(inode.i_din.ffs1_din, &dip,
    695   1.95       chs 		    sizeof(struct ufs1_dinode))) {
    696   1.95       chs 			dprintf("can't read dinode at %p for pid %d",
    697   1.95       chs 				inode.i_din.ffs1_din, Pid);
    698   1.95       chs 			return 0;
    699   1.95       chs 		}
    700   1.62      fvdl 		fsp->rdev = dip.dp1.di_rdev;
    701   1.95       chs 		break;
    702   1.95       chs 	case UFS2:
    703   1.95       chs 		if (!KVM_READ(inode.i_din.ffs2_din, &dip,
    704   1.62      fvdl 		    sizeof(struct ufs2_dinode))) {
    705   1.62      fvdl 			dprintf("can't read dinode at %p for pid %d",
    706   1.95       chs 			    inode.i_din.ffs2_din, Pid);
    707   1.62      fvdl 			return 0;
    708   1.62      fvdl 		}
    709   1.62      fvdl 		fsp->rdev = dip.dp2.di_rdev;
    710   1.95       chs 		break;
    711   1.95       chs 	default:
    712   1.95       chs 		dprintf("unknown ufs type %ld for pid %d",
    713   1.95       chs 			ufsmount.um_fstype, Pid);
    714   1.95       chs 		break;
    715   1.62      fvdl 	}
    716    1.8       cgd 	fsp->fsid = inode.i_dev & 0xffff;
    717   1.88     lukem 	fsp->fileid = inode.i_number;
    718   1.62      fvdl 	fsp->mode = (mode_t)inode.i_mode;
    719   1.62      fvdl 	fsp->size = inode.i_size;
    720   1.20    bouyer 
    721   1.20    bouyer 	return 1;
    722   1.20    bouyer }
    723   1.20    bouyer 
    724   1.72  christos static int
    725   1.72  christos ext2fs_filestat(struct vnode *vp, struct filestat *fsp)
    726   1.20    bouyer {
    727   1.20    bouyer 	struct inode inode;
    728   1.95       chs 	struct ext2fs_dinode dinode;
    729    1.1       cgd 
    730   1.20    bouyer 	if (!KVM_READ(VTOI(vp), &inode, sizeof (inode))) {
    731   1.34     lukem 		dprintf("can't read inode at %p for pid %d", VTOI(vp), Pid);
    732   1.20    bouyer 		return 0;
    733   1.20    bouyer 	}
    734   1.20    bouyer 	fsp->fsid = inode.i_dev & 0xffff;
    735   1.88     lukem 	fsp->fileid = inode.i_number;
    736   1.66   aymeric 
    737   1.95       chs 	if (!KVM_READ(inode.i_din.e2fs_din, &dinode, sizeof dinode)) {
    738   1.95       chs 		dprintf("can't read ext2fs_dinode at %p for pid %d",
    739   1.95       chs 			inode.i_din.e2fs_din, Pid);
    740   1.66   aymeric 		return 0;
    741   1.66   aymeric 	}
    742   1.95       chs 	fsp->mode = dinode.e2di_mode;
    743   1.95       chs 	fsp->size = dinode.e2di_size;
    744   1.95       chs 	fsp->rdev = dinode.e2di_rdev;
    745   1.66   aymeric 
    746    1.8       cgd 	return 1;
    747    1.1       cgd }
    748    1.1       cgd 
    749   1.72  christos static int
    750   1.72  christos nfs_filestat(struct vnode *vp, struct filestat *fsp)
    751    1.1       cgd {
    752    1.8       cgd 	struct nfsnode nfsnode;
    753   1.24   thorpej 	struct vattr va;
    754    1.1       cgd 
    755    1.8       cgd 	if (!KVM_READ(VTONFS(vp), &nfsnode, sizeof (nfsnode))) {
    756   1.34     lukem 		dprintf("can't read nfsnode at %p for pid %d", VTONFS(vp),
    757   1.34     lukem 		    Pid);
    758    1.8       cgd 		return 0;
    759    1.8       cgd 	}
    760   1.24   thorpej 	if (!KVM_READ(nfsnode.n_vattr, &va, sizeof(va))) {
    761   1.34     lukem 		dprintf("can't read vnode attributes at %p for pid %d",
    762   1.34     lukem 		    nfsnode.n_vattr, Pid);
    763   1.24   thorpej 		return 0;
    764   1.24   thorpej 	}
    765   1.24   thorpej 	fsp->fsid = va.va_fsid;
    766   1.24   thorpej 	fsp->fileid = va.va_fileid;
    767    1.8       cgd 	fsp->size = nfsnode.n_size;
    768   1.24   thorpej 	fsp->rdev = va.va_rdev;
    769   1.40  jdolecek 	fsp->mode = (mode_t)va.va_mode | getftype(vp->v_type);
    770    1.8       cgd 
    771    1.8       cgd 	return 1;
    772    1.1       cgd }
    773    1.1       cgd 
    774   1.72  christos static int
    775   1.72  christos msdosfs_filestat(struct vnode *vp, struct filestat *fsp)
    776   1.41  jdolecek {
    777   1.41  jdolecek 	struct denode de;
    778   1.41  jdolecek 	struct msdosfsmount mp;
    779   1.41  jdolecek 
    780   1.41  jdolecek 	if (!KVM_READ(VTONFS(vp), &de, sizeof(de))) {
    781   1.41  jdolecek 		dprintf("can't read denode at %p for pid %d", VTONFS(vp),
    782   1.41  jdolecek 		    Pid);
    783   1.41  jdolecek 		return 0;
    784   1.41  jdolecek 	}
    785   1.41  jdolecek 	if (!KVM_READ(de.de_pmp, &mp, sizeof(mp))) {
    786   1.41  jdolecek 		dprintf("can't read mount struct at %p for pid %d", de.de_pmp,
    787   1.41  jdolecek 		    Pid);
    788   1.41  jdolecek 		return 0;
    789   1.41  jdolecek 	}
    790   1.41  jdolecek 
    791   1.41  jdolecek 	fsp->fsid = de.de_dev & 0xffff;
    792   1.41  jdolecek 	fsp->fileid = 0; /* XXX see msdosfs_vptofh() for more info */
    793   1.41  jdolecek 	fsp->size = de.de_FileSize;
    794   1.41  jdolecek 	fsp->rdev = 0;	/* msdosfs doesn't support device files */
    795   1.41  jdolecek 	fsp->mode = (0777 & mp.pm_mask) | getftype(vp->v_type);
    796   1.41  jdolecek 	return 1;
    797   1.43     enami }
    798   1.43     enami 
    799   1.72  christos static const char *
    800   1.72  christos layer_filestat(struct vnode *vp, struct filestat *fsp)
    801   1.43     enami {
    802   1.43     enami 	struct layer_node layer_node;
    803   1.44     enami 	struct mount mount;
    804   1.44     enami 	struct vnode vn;
    805   1.72  christos 	const char *badtype;
    806   1.43     enami 
    807   1.43     enami 	if (!KVM_READ(VTOLAYER(vp), &layer_node, sizeof(layer_node))) {
    808   1.43     enami 		dprintf("can't read layer_node at %p for pid %d",
    809   1.43     enami 		    VTOLAYER(vp), Pid);
    810   1.91  christos 		return "error";
    811   1.44     enami 	}
    812   1.44     enami 	if (!KVM_READ(vp->v_mount, &mount, sizeof(struct mount))) {
    813   1.44     enami 		dprintf("can't read mount struct at %p for pid %d",
    814   1.44     enami 		    vp->v_mount, Pid);
    815   1.91  christos 		return "error";
    816   1.44     enami 	}
    817   1.44     enami 	vp = layer_node.layer_lowervp;
    818   1.44     enami 	if (!KVM_READ(vp, &vn, sizeof(struct vnode))) {
    819   1.44     enami 		dprintf("can't read vnode at %p for pid %d", vp, Pid);
    820   1.91  christos 		return "error";
    821   1.43     enami 	}
    822   1.44     enami 	if ((badtype = vfilestat(&vn, fsp)) == NULL)
    823   1.67  christos 		fsp->fsid = mount.mnt_stat.f_fsidx.__fsid_val[0];
    824   1.91  christos 	return badtype;
    825   1.41  jdolecek }
    826    1.1       cgd 
    827   1.72  christos static char *
    828   1.72  christos getmnton(struct mount *m)
    829    1.1       cgd {
    830    1.1       cgd 	static struct mount mount;
    831    1.1       cgd 	static struct mtab {
    832    1.1       cgd 		struct mtab *next;
    833    1.1       cgd 		struct mount *m;
    834    1.1       cgd 		char mntonname[MNAMELEN];
    835    1.1       cgd 	} *mhead = NULL;
    836   1.23     lukem 	struct mtab *mt;
    837    1.1       cgd 
    838    1.1       cgd 	for (mt = mhead; mt != NULL; mt = mt->next)
    839    1.1       cgd 		if (m == mt->m)
    840   1.91  christos 			return mt->mntonname;
    841    1.1       cgd 	if (!KVM_READ(m, &mount, sizeof(struct mount))) {
    842   1.34     lukem 		warnx("can't read mount table at %p", m);
    843   1.91  christos 		return NULL;
    844    1.1       cgd 	}
    845    1.1       cgd 	if ((mt = malloc(sizeof (struct mtab))) == NULL) {
    846   1.30      ross 		err(1, "malloc(%u)", (unsigned int)sizeof(struct mtab));
    847    1.1       cgd 	}
    848    1.1       cgd 	mt->m = m;
    849   1.72  christos 	(void)memmove(&mt->mntonname[0], &mount.mnt_stat.f_mntonname[0],
    850   1.72  christos 	    MNAMELEN);
    851    1.1       cgd 	mt->next = mhead;
    852    1.1       cgd 	mhead = mt;
    853   1.91  christos 	return mt->mntonname;
    854    1.1       cgd }
    855    1.1       cgd 
    856   1.93  christos static const char *
    857   1.93  christos inet_addrstr(char *buf, size_t len, const struct in_addr *a, uint16_t p)
    858   1.93  christos {
    859   1.97  christos 	char addr[256], serv[256];
    860   1.97  christos 	struct sockaddr_in sin;
    861   1.97  christos 	const int niflags = nflg ? (NI_NUMERICHOST|NI_NUMERICSERV) : 0;
    862   1.97  christos 
    863   1.97  christos 	(void)memset(&sin, 0, sizeof(sin));
    864   1.97  christos 	sin.sin_family = AF_INET;
    865   1.97  christos 	sin.sin_len = sizeof(sin);
    866   1.97  christos 	sin.sin_addr = *a;
    867   1.97  christos 	sin.sin_port = htons(p);
    868   1.97  christos 
    869   1.97  christos 	serv[0] = '\0';
    870   1.97  christos 
    871   1.97  christos 	if (getnameinfo((struct sockaddr *)&sin, sin.sin_len,
    872   1.97  christos 	    addr, sizeof(addr), serv, sizeof(serv), niflags)) {
    873   1.97  christos 		if (inet_ntop(AF_INET, a, addr, sizeof(addr)) == NULL)
    874   1.97  christos 			strlcpy(addr, "invalid", sizeof(addr));
    875   1.97  christos 	}
    876   1.97  christos 
    877   1.97  christos 	if (serv[0] == '\0')
    878   1.97  christos 		snprintf(serv, sizeof(serv), "%u", p);
    879   1.93  christos 
    880   1.93  christos 	if (a->s_addr == INADDR_ANY) {
    881   1.93  christos 		if (p == 0)
    882   1.97  christos 			buf[0] = '\0';
    883   1.93  christos 		else
    884   1.97  christos 			snprintf(buf, len, "*:%s", serv);
    885   1.97  christos 		return buf;
    886   1.93  christos 	}
    887   1.97  christos 
    888   1.97  christos 	snprintf(buf, len, "%s:%s", addr, serv);
    889   1.93  christos 	return buf;
    890   1.93  christos }
    891   1.93  christos 
    892   1.38    itojun #ifdef INET6
    893   1.38    itojun static const char *
    894   1.93  christos inet6_addrstr(char *buf, size_t len, const struct in6_addr *a, uint16_t p)
    895   1.38    itojun {
    896   1.97  christos 	char addr[256], serv[256];
    897   1.97  christos 	struct sockaddr_in6 sin6;
    898   1.97  christos 	const int niflags = nflg ? (NI_NUMERICHOST|NI_NUMERICSERV) : 0;
    899   1.97  christos 
    900   1.97  christos 	(void)memset(&sin6, 0, sizeof(sin6));
    901   1.97  christos 	sin6.sin6_family = AF_INET6;
    902   1.97  christos 	sin6.sin6_len = sizeof(sin6);
    903   1.97  christos 	sin6.sin6_addr = *a;
    904   1.97  christos 	sin6.sin6_port = htons(p);
    905   1.97  christos 
    906   1.97  christos 	if (IN6_IS_ADDR_LINKLOCAL(a) &&
    907   1.97  christos 	    *(u_int16_t *)&sin6.sin6_addr.s6_addr[2] != 0) {
    908   1.97  christos 		sin6.sin6_scope_id =
    909   1.97  christos 			ntohs(*(uint16_t *)&sin6.sin6_addr.s6_addr[2]);
    910   1.97  christos 		sin6.sin6_addr.s6_addr[2] = 0;
    911   1.97  christos 		sin6.sin6_addr.s6_addr[3] = 0;
    912   1.97  christos 	}
    913   1.97  christos 
    914   1.97  christos 	serv[0] = '\0';
    915   1.97  christos 
    916   1.97  christos 	if (getnameinfo((struct sockaddr *)&sin6, sin6.sin6_len,
    917   1.97  christos 	    addr, sizeof(addr), serv, sizeof(serv), niflags)) {
    918   1.97  christos 		if (inet_ntop(AF_INET6, a, addr, sizeof(addr)) == NULL)
    919   1.97  christos 			strlcpy(addr, "invalid", sizeof(addr));
    920   1.97  christos 	}
    921   1.97  christos 
    922   1.97  christos 	if (serv[0] == '\0')
    923   1.97  christos 		snprintf(serv, sizeof(serv), "%u", p);
    924   1.38    itojun 
    925   1.93  christos 	if (IN6_IS_ADDR_UNSPECIFIED(a)) {
    926   1.93  christos 		if (p == 0)
    927   1.97  christos 			buf[0] = '\0';
    928   1.93  christos 		else
    929   1.97  christos 			snprintf(buf, len, "*:%s", serv);
    930   1.97  christos 		return buf;
    931   1.97  christos 	}
    932   1.93  christos 
    933   1.97  christos 	if (strchr(addr, ':') == NULL)
    934   1.97  christos 		snprintf(buf, len, "%s:%s", addr, serv);
    935   1.93  christos 	else
    936   1.97  christos 		snprintf(buf, len, "[%s]:%s", addr, serv);
    937   1.93  christos 
    938   1.93  christos 	return buf;
    939   1.38    itojun }
    940   1.38    itojun #endif
    941   1.38    itojun 
    942   1.93  christos static const char *
    943   1.93  christos at_addrstr(char *buf, size_t len, const struct sockaddr_at *sat)
    944   1.93  christos {
    945   1.93  christos 	const struct netrange *nr = &sat->sat_range.r_netrange;
    946   1.93  christos 	const struct at_addr *at = &sat->sat_addr;
    947   1.93  christos 	char addr[64], phase[64], range[64];
    948   1.93  christos 
    949   1.93  christos 	if (sat->sat_port || at->s_net || at->s_node) {
    950   1.93  christos 		if (at->s_net || at->s_node)
    951   1.93  christos 			snprintf(addr, sizeof(addr), "%u.%u:%u",
    952   1.93  christos 			    ntohs(at->s_net), at->s_node, sat->sat_port);
    953   1.93  christos 		else
    954   1.93  christos 			snprintf(addr, sizeof(addr), "*:%u", sat->sat_port);
    955   1.93  christos 	} else
    956   1.93  christos 		addr[0] = '\0';
    957   1.93  christos 
    958   1.93  christos 	if (nr->nr_phase)
    959   1.93  christos 		snprintf(phase, sizeof(phase), " phase %u", nr->nr_phase);
    960   1.93  christos 	else
    961   1.93  christos 		phase[0] = '\0';
    962   1.93  christos 
    963   1.93  christos 	if (nr->nr_firstnet || nr->nr_lastnet)
    964   1.93  christos 		snprintf(range, sizeof(range), " range [%u-%u]",
    965   1.93  christos 		    ntohs(nr->nr_firstnet), ntohs(nr->nr_lastnet));
    966   1.93  christos 	else
    967   1.93  christos 		range[0] = '\0';
    968   1.93  christos 
    969   1.93  christos 	snprintf(buf, len, "%s%s%s", addr, phase, range);
    970   1.93  christos 	return buf;
    971   1.93  christos }
    972   1.93  christos 
    973   1.72  christos static void
    974   1.72  christos socktrans(struct socket *sock, int i)
    975    1.1       cgd {
    976   1.72  christos 	static const char *stypename[] = {
    977    1.1       cgd 		"unused",	/* 0 */
    978    1.1       cgd 		"stream", 	/* 1 */
    979    1.1       cgd 		"dgram",	/* 2 */
    980    1.1       cgd 		"raw",		/* 3 */
    981    1.1       cgd 		"rdm",		/* 4 */
    982    1.1       cgd 		"seqpak"	/* 5 */
    983    1.1       cgd 	};
    984    1.1       cgd #define	STYPEMAX 5
    985    1.1       cgd 	struct socket	so;
    986    1.1       cgd 	struct protosw	proto;
    987    1.1       cgd 	struct domain	dom;
    988    1.1       cgd 	struct inpcb	inpcb;
    989   1.38    itojun #ifdef INET6
    990   1.38    itojun 	struct in6pcb	in6pcb;
    991   1.38    itojun #endif
    992    1.1       cgd 	struct unpcb	unpcb;
    993   1.93  christos 	struct ddpcb	ddpcb;
    994    1.1       cgd 	int len;
    995   1.18       mrg 	char dname[32];
    996   1.93  christos 	char lbuf[512], fbuf[512];
    997    1.1       cgd 	PREFIX(i);
    998    1.1       cgd 
    999    1.1       cgd 	/* fill in socket */
   1000    1.1       cgd 	if (!KVM_READ(sock, &so, sizeof(struct socket))) {
   1001   1.34     lukem 		dprintf("can't read sock at %p", sock);
   1002    1.1       cgd 		goto bad;
   1003    1.1       cgd 	}
   1004    1.1       cgd 
   1005    1.1       cgd 	/* fill in protosw entry */
   1006    1.1       cgd 	if (!KVM_READ(so.so_proto, &proto, sizeof(struct protosw))) {
   1007   1.34     lukem 		dprintf("can't read protosw at %p", so.so_proto);
   1008    1.1       cgd 		goto bad;
   1009    1.1       cgd 	}
   1010    1.1       cgd 
   1011    1.1       cgd 	/* fill in domain */
   1012    1.1       cgd 	if (!KVM_READ(proto.pr_domain, &dom, sizeof(struct domain))) {
   1013   1.34     lukem 		dprintf("can't read domain at %p", proto.pr_domain);
   1014    1.1       cgd 		goto bad;
   1015    1.1       cgd 	}
   1016    1.1       cgd 
   1017    1.8       cgd 	if ((len = kvm_read(kd, (u_long)dom.dom_name, dname,
   1018   1.25   msaitoh 	    sizeof(dname) - 1)) != sizeof(dname) -1) {
   1019   1.34     lukem 		dprintf("can't read domain name at %p", dom.dom_name);
   1020    1.1       cgd 		dname[0] = '\0';
   1021    1.1       cgd 	}
   1022    1.1       cgd 	else
   1023    1.1       cgd 		dname[len] = '\0';
   1024    1.1       cgd 
   1025    1.1       cgd 	if ((u_short)so.so_type > STYPEMAX)
   1026   1.72  christos 		(void)printf("* %s ?%d", dname, so.so_type);
   1027    1.1       cgd 	else
   1028   1.72  christos 		(void)printf("* %s %s", dname, stypename[so.so_type]);
   1029    1.1       cgd 
   1030    1.1       cgd 	/*
   1031    1.1       cgd 	 * protocol specific formatting
   1032    1.1       cgd 	 *
   1033   1.34     lukem 	 * Try to find interesting things to print.  For TCP, the interesting
   1034   1.34     lukem 	 * thing is the address of the tcpcb, for UDP and others, just the
   1035   1.34     lukem 	 * inpcb (socket pcb).  For UNIX domain, its the address of the socket
   1036    1.1       cgd 	 * pcb and the address of the connected pcb (if connected).  Otherwise
   1037    1.1       cgd 	 * just print the protocol number and address of the socket itself.
   1038    1.1       cgd 	 * The idea is not to duplicate netstat, but to make available enough
   1039    1.1       cgd 	 * information for further analysis.
   1040    1.1       cgd 	 */
   1041   1.93  christos 	fbuf[0] = '\0';
   1042   1.93  christos 	lbuf[0] = '\0';
   1043    1.1       cgd 	switch(dom.dom_family) {
   1044    1.1       cgd 	case AF_INET:
   1045    1.1       cgd 		getinetproto(proto.pr_protocol);
   1046   1.93  christos 		switch (proto.pr_protocol) {
   1047   1.93  christos 		case IPPROTO_TCP:
   1048   1.93  christos 		case IPPROTO_UDP:
   1049   1.34     lukem 			if (so.so_pcb == NULL)
   1050   1.34     lukem 				break;
   1051   1.34     lukem 			if (kvm_read(kd, (u_long)so.so_pcb, (char *)&inpcb,
   1052   1.93  christos 			    sizeof(inpcb)) != sizeof(inpcb)) {
   1053   1.34     lukem 				dprintf("can't read inpcb at %p", so.so_pcb);
   1054   1.34     lukem 				goto bad;
   1055   1.34     lukem 			}
   1056   1.93  christos 			inet_addrstr(lbuf, sizeof(lbuf), &inpcb.inp_laddr,
   1057   1.93  christos 			    ntohs(inpcb.inp_lport));
   1058   1.93  christos 			inet_addrstr(fbuf, sizeof(fbuf), &inpcb.inp_faddr,
   1059   1.93  christos 			    ntohs(inpcb.inp_fport));
   1060   1.93  christos 			break;
   1061   1.93  christos 		default:
   1062   1.93  christos 			break;
   1063   1.93  christos 		}
   1064    1.1       cgd 		break;
   1065   1.38    itojun #ifdef INET6
   1066   1.38    itojun 	case AF_INET6:
   1067   1.38    itojun 		getinetproto(proto.pr_protocol);
   1068   1.93  christos 		switch (proto.pr_protocol) {
   1069   1.93  christos 		case IPPROTO_TCP:
   1070   1.93  christos 		case IPPROTO_UDP:
   1071   1.38    itojun 			if (so.so_pcb == NULL)
   1072   1.38    itojun 				break;
   1073   1.38    itojun 			if (kvm_read(kd, (u_long)so.so_pcb, (char *)&in6pcb,
   1074   1.93  christos 			    sizeof(in6pcb)) != sizeof(in6pcb)) {
   1075   1.38    itojun 				dprintf("can't read in6pcb at %p", so.so_pcb);
   1076   1.38    itojun 				goto bad;
   1077   1.38    itojun 			}
   1078   1.93  christos 			inet6_addrstr(lbuf, sizeof(lbuf), &in6pcb.in6p_laddr,
   1079   1.96  christos 			    ntohs(in6pcb.in6p_lport));
   1080   1.93  christos 			inet6_addrstr(fbuf, sizeof(fbuf), &in6pcb.in6p_faddr,
   1081   1.96  christos 			    ntohs(in6pcb.in6p_fport));
   1082   1.93  christos 			break;
   1083   1.93  christos 		default:
   1084   1.93  christos 			break;
   1085   1.93  christos 		}
   1086   1.38    itojun 		break;
   1087   1.38    itojun #endif
   1088   1.31     lukem 	case AF_LOCAL:
   1089    1.1       cgd 		/* print address of pcb and connected pcb */
   1090    1.1       cgd 		if (so.so_pcb) {
   1091   1.91  christos 			char shoconn[4], *cp;
   1092   1.98  christos 			void *pcb[2];
   1093   1.98  christos 			size_t p = 0;
   1094   1.91  christos 
   1095   1.98  christos 			pcb[0] = so.so_pcb;
   1096   1.91  christos 
   1097   1.91  christos 			cp = shoconn;
   1098   1.91  christos 			if (!(so.so_state & SS_CANTRCVMORE))
   1099   1.91  christos 				*cp++ = '<';
   1100   1.91  christos 			*cp++ = '-';
   1101   1.91  christos 			if (!(so.so_state & SS_CANTSENDMORE))
   1102   1.91  christos 				*cp++ = '>';
   1103   1.91  christos 			*cp = '\0';
   1104   1.98  christos again:
   1105   1.98  christos 			if (kvm_read(kd, (u_long)pcb[p], (char *)&unpcb,
   1106   1.98  christos 			    sizeof(struct unpcb)) != sizeof(struct unpcb)){
   1107   1.98  christos 				dprintf("can't read unpcb at %p", so.so_pcb);
   1108   1.98  christos 				goto bad;
   1109   1.98  christos 			}
   1110   1.98  christos 
   1111   1.91  christos 			if (unpcb.unp_addr) {
   1112   1.91  christos 				struct sockaddr_un *sun =
   1113   1.91  christos 					malloc(unpcb.unp_addrlen);
   1114   1.91  christos 				if (sun == NULL)
   1115   1.91  christos 				    err(1, "malloc(%zu)",
   1116   1.91  christos 					unpcb.unp_addrlen);
   1117   1.91  christos 				if (kvm_read(kd, (u_long)unpcb.unp_addr,
   1118   1.91  christos 				    sun, unpcb.unp_addrlen) !=
   1119   1.91  christos 				    (ssize_t)unpcb.unp_addrlen) {
   1120   1.91  christos 					dprintf("can't read sun at %p",
   1121   1.91  christos 					    unpcb.unp_addr);
   1122   1.91  christos 					free(sun);
   1123   1.91  christos 				} else {
   1124   1.98  christos 					snprintf(fbuf, sizeof(fbuf), " %s %s %s",
   1125   1.98  christos 					    shoconn, sun->sun_path,
   1126   1.98  christos 					    p == 0 ? "[creat]" : "[using]");
   1127   1.91  christos 					free(sun);
   1128   1.91  christos 					break;
   1129   1.91  christos 				}
   1130   1.91  christos 			}
   1131   1.98  christos 			if (unpcb.unp_conn) {
   1132   1.98  christos 				if (p == 0) {
   1133   1.98  christos 					pcb[++p] = unpcb.unp_conn;
   1134   1.98  christos 					goto again;
   1135   1.98  christos 				} else
   1136   1.98  christos 					snprintf(fbuf, sizeof(fbuf),
   1137   1.98  christos 					    " %p %s %p", pcb[0], shoconn,
   1138   1.98  christos 					    pcb[1]);
   1139   1.98  christos 			}
   1140   1.93  christos 		}
   1141   1.93  christos 		break;
   1142   1.93  christos 	case AF_APPLETALK:
   1143   1.93  christos 		getatproto(proto.pr_protocol);
   1144   1.93  christos 		if (so.so_pcb) {
   1145   1.93  christos 			if (kvm_read(kd, (u_long)so.so_pcb, (char *)&ddpcb,
   1146   1.93  christos 			    sizeof(ddpcb)) != sizeof(ddpcb)){
   1147   1.93  christos 				dprintf("can't read ddpcb at %p", so.so_pcb);
   1148   1.93  christos 				goto bad;
   1149    1.1       cgd 			}
   1150   1.93  christos 			at_addrstr(fbuf, sizeof(fbuf), &ddpcb.ddp_fsat);
   1151   1.93  christos 			at_addrstr(lbuf, sizeof(lbuf), &ddpcb.ddp_lsat);
   1152    1.1       cgd 		}
   1153    1.1       cgd 		break;
   1154    1.1       cgd 	default:
   1155    1.1       cgd 		/* print protocol number and socket address */
   1156   1.93  christos 		snprintf(fbuf, sizeof(fbuf), " %d %jx", proto.pr_protocol,
   1157   1.94       mrg 		    (uintmax_t)(uintptr_t)sock);
   1158   1.93  christos 		break;
   1159    1.1       cgd 	}
   1160   1.93  christos 	if (fbuf[0] || lbuf[0])
   1161   1.93  christos 		printf(" %s%s%s", fbuf, (fbuf[0] && lbuf[0]) ? " <-> " : "",
   1162   1.93  christos 		    lbuf);
   1163   1.93  christos 	else if (so.so_pcb)
   1164   1.94       mrg 		printf(" %jx", (uintmax_t)(uintptr_t)so.so_pcb);
   1165   1.72  christos 	(void)printf("\n");
   1166   1.47  jdolecek 	return;
   1167   1.47  jdolecek bad:
   1168   1.72  christos 	(void)printf("* error\n");
   1169   1.47  jdolecek }
   1170   1.47  jdolecek 
   1171   1.72  christos static void
   1172   1.72  christos ptrans(struct file *fp, struct pipe *cpipe, int i)
   1173   1.47  jdolecek {
   1174   1.47  jdolecek 	struct pipe cp;
   1175   1.47  jdolecek 
   1176   1.47  jdolecek 	PREFIX(i);
   1177   1.47  jdolecek 
   1178   1.50  jdolecek 	/* fill in pipe */
   1179   1.47  jdolecek 	if (!KVM_READ(cpipe, &cp, sizeof(struct pipe))) {
   1180   1.47  jdolecek 		dprintf("can't read pipe at %p", cpipe);
   1181   1.47  jdolecek 		goto bad;
   1182   1.47  jdolecek 	}
   1183   1.47  jdolecek 
   1184   1.52  jdolecek 	/* pipe descriptor is either read or write, never both */
   1185   1.72  christos 	(void)printf("* pipe %p %s %p %s%s%s", cpipe,
   1186   1.51  jdolecek 		(fp->f_flag & FWRITE) ? "->" : "<-",
   1187   1.52  jdolecek 		cp.pipe_peer,
   1188   1.54  jdolecek 		(fp->f_flag & FWRITE) ? "w" : "r",
   1189   1.54  jdolecek 		(fp->f_flag & FNONBLOCK) ? "n" : "",
   1190   1.54  jdolecek 		(cp.pipe_state & PIPE_ASYNC) ? "a" : "");
   1191   1.72  christos 	(void)printf("\n");
   1192    1.1       cgd 	return;
   1193    1.1       cgd bad:
   1194   1.72  christos 	(void)printf("* error\n");
   1195   1.56  jdolecek }
   1196   1.56  jdolecek 
   1197   1.72  christos static void
   1198  1.100  christos misctrans(struct file *file, int i)
   1199   1.56  jdolecek {
   1200   1.56  jdolecek 
   1201  1.100  christos 	PREFIX(i);
   1202   1.84  christos 	pmisc(file, dtypes[file->f_type]);
   1203    1.1       cgd }
   1204    1.1       cgd 
   1205    1.1       cgd /*
   1206    1.1       cgd  * getinetproto --
   1207    1.1       cgd  *	print name of protocol number
   1208    1.1       cgd  */
   1209   1.72  christos static void
   1210   1.72  christos getinetproto(int number)
   1211    1.1       cgd {
   1212   1.72  christos 	const char *cp;
   1213    1.1       cgd 
   1214   1.26       mrg 	switch (number) {
   1215    1.1       cgd 	case IPPROTO_IP:
   1216    1.1       cgd 		cp = "ip"; break;
   1217    1.1       cgd 	case IPPROTO_ICMP:
   1218    1.1       cgd 		cp ="icmp"; break;
   1219    1.1       cgd 	case IPPROTO_GGP:
   1220    1.1       cgd 		cp ="ggp"; break;
   1221    1.1       cgd 	case IPPROTO_TCP:
   1222    1.1       cgd 		cp ="tcp"; break;
   1223    1.1       cgd 	case IPPROTO_EGP:
   1224    1.1       cgd 		cp ="egp"; break;
   1225    1.1       cgd 	case IPPROTO_PUP:
   1226    1.1       cgd 		cp ="pup"; break;
   1227    1.1       cgd 	case IPPROTO_UDP:
   1228    1.1       cgd 		cp ="udp"; break;
   1229    1.1       cgd 	case IPPROTO_IDP:
   1230    1.1       cgd 		cp ="idp"; break;
   1231    1.1       cgd 	case IPPROTO_RAW:
   1232    1.1       cgd 		cp ="raw"; break;
   1233   1.38    itojun 	case IPPROTO_ICMPV6:
   1234   1.38    itojun 		cp ="icmp6"; break;
   1235    1.1       cgd 	default:
   1236   1.72  christos 		(void)printf(" %d", number);
   1237    1.1       cgd 		return;
   1238    1.1       cgd 	}
   1239   1.72  christos 	(void)printf(" %s", cp);
   1240    1.1       cgd }
   1241    1.1       cgd 
   1242   1.93  christos /*
   1243   1.93  christos  * getatproto --
   1244   1.93  christos  *	print name of protocol number
   1245   1.93  christos  */
   1246   1.93  christos static void
   1247   1.93  christos getatproto(int number)
   1248   1.93  christos {
   1249   1.93  christos 	const char *cp;
   1250   1.93  christos 
   1251   1.93  christos 	switch (number) {
   1252   1.93  christos 	case ATPROTO_DDP:
   1253   1.93  christos 		cp = "ddp"; break;
   1254   1.93  christos 	case ATPROTO_AARP:
   1255   1.93  christos 		cp ="aarp"; break;
   1256   1.93  christos 	default:
   1257   1.93  christos 		(void)printf(" %d", number);
   1258   1.93  christos 		return;
   1259   1.93  christos 	}
   1260   1.93  christos 	(void)printf(" %s", cp);
   1261   1.93  christos }
   1262   1.93  christos 
   1263   1.72  christos static int
   1264   1.72  christos getfname(const char *filename)
   1265    1.1       cgd {
   1266    1.1       cgd 	struct stat statbuf;
   1267    1.1       cgd 	DEVS *cur;
   1268    1.1       cgd 
   1269    1.1       cgd 	if (stat(filename, &statbuf)) {
   1270   1.28      fair 		warn("stat(%s)", filename);
   1271   1.72  christos 		return 0;
   1272    1.1       cgd 	}
   1273   1.91  christos 	if ((cur = malloc(sizeof(*cur))) == NULL) {
   1274   1.91  christos 		err(1, "malloc(%zu)", sizeof(*cur));
   1275    1.1       cgd 	}
   1276    1.1       cgd 	cur->next = devs;
   1277    1.1       cgd 	devs = cur;
   1278    1.1       cgd 
   1279    1.1       cgd 	cur->ino = statbuf.st_ino;
   1280    1.1       cgd 	cur->fsid = statbuf.st_dev & 0xffff;
   1281    1.1       cgd 	cur->name = filename;
   1282   1.72  christos 	return 1;
   1283   1.40  jdolecek }
   1284   1.40  jdolecek 
   1285   1.40  jdolecek mode_t
   1286   1.72  christos getftype(enum vtype v_type)
   1287   1.40  jdolecek {
   1288   1.40  jdolecek 	mode_t ftype;
   1289   1.40  jdolecek 
   1290   1.40  jdolecek 	switch (v_type) {
   1291   1.40  jdolecek 	case VREG:
   1292   1.40  jdolecek 		ftype = S_IFREG;
   1293   1.40  jdolecek 		break;
   1294   1.40  jdolecek 	case VDIR:
   1295   1.40  jdolecek 		ftype = S_IFDIR;
   1296   1.40  jdolecek 		break;
   1297   1.40  jdolecek 	case VBLK:
   1298   1.40  jdolecek 		ftype = S_IFBLK;
   1299   1.40  jdolecek 		break;
   1300   1.40  jdolecek 	case VCHR:
   1301   1.40  jdolecek 		ftype = S_IFCHR;
   1302   1.40  jdolecek 		break;
   1303   1.40  jdolecek 	case VLNK:
   1304   1.40  jdolecek 		ftype = S_IFLNK;
   1305   1.40  jdolecek 		break;
   1306   1.40  jdolecek 	case VSOCK:
   1307   1.40  jdolecek 		ftype = S_IFSOCK;
   1308   1.40  jdolecek 		break;
   1309   1.40  jdolecek 	case VFIFO:
   1310   1.40  jdolecek 		ftype = S_IFIFO;
   1311   1.40  jdolecek 		break;
   1312   1.40  jdolecek 	default:
   1313   1.40  jdolecek 		ftype = 0;
   1314   1.40  jdolecek 		break;
   1315   1.40  jdolecek 	};
   1316   1.40  jdolecek 
   1317   1.40  jdolecek 	return ftype;
   1318    1.1       cgd }
   1319    1.1       cgd 
   1320   1.72  christos static void
   1321   1.70  christos usage(void)
   1322    1.1       cgd {
   1323   1.70  christos 	(void)fprintf(stderr, "Usage: %s [-fnv] [-p pid] [-u user] "
   1324   1.70  christos 	    "[-N system] [-M core] [file ...]\n", getprogname());
   1325   1.70  christos 	exit(1);
   1326    1.1       cgd }
   1327