]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - usr.bin/fstat/fstat.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / usr.bin / fstat / fstat.c
1 /*-
2  * Copyright (c) 1988, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 static const char copyright[] =
36 "@(#) Copyright (c) 1988, 1993\n\
37         The Regents of the University of California.  All rights reserved.\n";
38 #endif /* not lint */
39
40 #ifndef lint
41 #if 0
42 static char sccsid[] = "@(#)fstat.c     8.3 (Berkeley) 5/2/95";
43 #endif
44 #endif /* not lint */
45 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD$");
47
48 #include <sys/param.h>
49 #include <sys/time.h>
50 #include <sys/proc.h>
51 #include <sys/user.h>
52 #include <sys/stat.h>
53 #include <sys/vnode.h>
54 #include <sys/socket.h>
55 #include <sys/socketvar.h>
56 #include <sys/domain.h>
57 #include <sys/protosw.h>
58 #include <sys/un.h>
59 #include <sys/unpcb.h>
60 #include <sys/sysctl.h>
61 #include <sys/filedesc.h>
62 #include <sys/queue.h>
63 #define _KERNEL
64 #include <sys/pipe.h>
65 #include <sys/conf.h>
66 #include <sys/file.h>
67 #include <sys/mount.h>
68 #include <ufs/ufs/quota.h>
69 #include <ufs/ufs/inode.h>
70 #include <fs/devfs/devfs.h>
71 #include <fs/devfs/devfs_int.h>
72 #undef _KERNEL
73 #include <nfs/nfsproto.h>
74 #include <nfs/rpcv2.h>
75 #include <nfsclient/nfs.h>
76 #include <nfsclient/nfsnode.h>
77
78
79 #include <vm/vm.h>
80 #include <vm/vm_map.h>
81 #include <vm/vm_object.h>
82
83 #include <net/route.h>
84 #include <netinet/in.h>
85 #include <netinet/in_systm.h>
86 #include <netinet/ip.h>
87 #include <netinet/in_pcb.h>
88
89 #include <ctype.h>
90 #include <err.h>
91 #include <fcntl.h>
92 #include <kvm.h>
93 #include <limits.h>
94 #include <nlist.h>
95 #include <paths.h>
96 #include <pwd.h>
97 #include <stdio.h>
98 #include <stdlib.h>
99 #include <string.h>
100 #include <unistd.h>
101 #include <netdb.h>
102
103 #include "fstat.h"
104
105 #define TEXT    -1
106 #define CDIR    -2
107 #define RDIR    -3
108 #define TRACE   -4
109 #define MMAP    -5
110 #define JDIR    -6
111
112 DEVS *devs;
113
114 #ifdef notdef
115 struct nlist nl[] = {
116         { "" },
117 };
118 #endif
119
120 int     fsflg,  /* show files on same filesystem as file(s) argument */
121         pflg,   /* show files open by a particular pid */
122         uflg;   /* show files open by a particular (effective) user */
123 int     checkfile; /* true if restricting to particular files or filesystems */
124 int     nflg;   /* (numerical) display f.s. and rdev as dev_t */
125 int     vflg;   /* display errors in locating kernel data objects etc... */
126 int     mflg;   /* include memory-mapped files */
127
128
129 struct file **ofiles;   /* buffer of pointers to file structures */
130 int maxfiles;
131 #define ALLOC_OFILES(d) \
132         if ((d) > maxfiles) { \
133                 free(ofiles); \
134                 ofiles = malloc((d) * sizeof(struct file *)); \
135                 if (ofiles == NULL) { \
136                         err(1, NULL); \
137                 } \
138                 maxfiles = (d); \
139         }
140
141 char *memf, *nlistf;
142 kvm_t *kd;
143
144 static void fstat_kvm(int, int);
145 static void fstat_sysctl(int, int);
146 void dofiles(struct kinfo_proc *kp);
147 void dommap(struct kinfo_proc *kp);
148 void vtrans(struct vnode *vp, int i, int flag);
149 int  ufs_filestat(struct vnode *vp, struct filestat *fsp);
150 int  nfs_filestat(struct vnode *vp, struct filestat *fsp);
151 int  devfs_filestat(struct vnode *vp, struct filestat *fsp);
152 char *getmnton(struct mount *m);
153 void pipetrans(struct pipe *pi, int i, int flag);
154 void socktrans(struct socket *sock, int i);
155 void getinetproto(int number);
156 int  getfname(const char *filename);
157 void usage(void);
158 char *kdevtoname(struct cdev *dev);
159
160 int
161 main(int argc, char **argv)
162 {
163         struct passwd *passwd;
164         int arg, ch, what;
165
166         arg = 0;
167         what = KERN_PROC_PROC;
168         nlistf = memf = NULL;
169         while ((ch = getopt(argc, argv, "fmnp:u:vN:M:")) != -1)
170                 switch((char)ch) {
171                 case 'f':
172                         fsflg = 1;
173                         break;
174                 case 'M':
175                         memf = optarg;
176                         break;
177                 case 'N':
178                         nlistf = optarg;
179                         break;
180                 case 'm':
181                         mflg = 1;
182                         break;
183                 case 'n':
184                         nflg = 1;
185                         break;
186                 case 'p':
187                         if (pflg++)
188                                 usage();
189                         if (!isdigit(*optarg)) {
190                                 warnx("-p requires a process id");
191                                 usage();
192                         }
193                         what = KERN_PROC_PID;
194                         arg = atoi(optarg);
195                         break;
196                 case 'u':
197                         if (uflg++)
198                                 usage();
199                         if (!(passwd = getpwnam(optarg)))
200                                 errx(1, "%s: unknown uid", optarg);
201                         what = KERN_PROC_UID;
202                         arg = passwd->pw_uid;
203                         break;
204                 case 'v':
205                         vflg = 1;
206                         break;
207                 case '?':
208                 default:
209                         usage();
210                 }
211
212         if (*(argv += optind)) {
213                 for (; *argv; ++argv) {
214                         if (getfname(*argv))
215                                 checkfile = 1;
216                 }
217                 if (!checkfile) /* file(s) specified, but none accessable */
218                         exit(1);
219         }
220
221         if (fsflg && !checkfile) {
222                 /* -f with no files means use wd */
223                 if (getfname(".") == 0)
224                         exit(1);
225                 checkfile = 1;
226         }
227
228         if (memf != NULL)
229                 fstat_kvm(what, arg);
230         else
231                 fstat_sysctl(what, arg);
232         exit(0);
233 }
234
235 static void
236 print_header(void)
237 {
238
239         if (nflg)
240                 printf("%s",
241 "USER     CMD          PID   FD  DEV    INUM       MODE SZ|DV R/W");
242         else
243                 printf("%s",
244 "USER     CMD          PID   FD MOUNT      INUM MODE         SZ|DV R/W");
245         if (checkfile && fsflg == 0)
246                 printf(" NAME\n");
247         else
248                 putchar('\n');
249 }
250
251 static void
252 fstat_kvm(int what, int arg)
253 {
254         struct kinfo_proc *p, *plast;
255         char buf[_POSIX2_LINE_MAX];
256         int cnt;
257
258         ALLOC_OFILES(256);      /* reserve space for file pointers */
259
260         /*
261          * Discard setgid privileges if not the running kernel so that bad
262          * guys can't print interesting stuff from kernel memory.
263          */
264         if (nlistf != NULL || memf != NULL)
265                 setgid(getgid());
266
267         if ((kd = kvm_openfiles(nlistf, memf, NULL, O_RDONLY, buf)) == NULL)
268                 errx(1, "%s", buf);
269         setgid(getgid());
270 #ifdef notdef
271         if (kvm_nlist(kd, nl) != 0)
272                 errx(1, "no namelist: %s", kvm_geterr(kd));
273 #endif
274         if ((p = kvm_getprocs(kd, what, arg, &cnt)) == NULL)
275                 errx(1, "%s", kvm_geterr(kd));
276         print_header();
277         for (plast = &p[cnt]; p < plast; ++p) {
278                 if (p->ki_stat == SZOMB)
279                         continue;
280                 dofiles(p);
281                 if (mflg)
282                         dommap(p);
283         }
284 }
285
286 static void
287 fstat_sysctl(int what, int arg)
288 {
289
290         /* not yet implemented */
291         fstat_kvm(what, arg);
292 }
293
294 const char      *Uname, *Comm;
295 int     Pid;
296
297 #define PREFIX(i) printf("%-8.8s %-10s %5d", Uname, Comm, Pid); \
298         switch(i) { \
299         case TEXT: \
300                 printf(" text"); \
301                 break; \
302         case CDIR: \
303                 printf("   wd"); \
304                 break; \
305         case RDIR: \
306                 printf(" root"); \
307                 break; \
308         case TRACE: \
309                 printf("   tr"); \
310                 break; \
311         case MMAP: \
312                 printf(" mmap"); \
313                 break; \
314         case JDIR: \
315                 printf(" jail"); \
316                 break; \
317         default: \
318                 printf(" %4d", i); \
319                 break; \
320         }
321
322 /*
323  * print open files attributed to this process
324  */
325 void
326 dofiles(struct kinfo_proc *kp)
327 {
328         int i;
329         struct file file;
330         struct filedesc filed;
331
332         Uname = user_from_uid(kp->ki_uid, 0);
333         Pid = kp->ki_pid;
334         Comm = kp->ki_comm;
335
336         if (kp->ki_fd == NULL)
337                 return;
338         if (!KVM_READ(kp->ki_fd, &filed, sizeof (filed))) {
339                 dprintf(stderr, "can't read filedesc at %p for pid %d\n",
340                     (void *)kp->ki_fd, Pid);
341                 return;
342         }
343         /*
344          * root directory vnode, if one
345          */
346         if (filed.fd_rdir)
347                 vtrans(filed.fd_rdir, RDIR, FREAD);
348         /*
349          * current working directory vnode
350          */
351         if (filed.fd_cdir)
352                 vtrans(filed.fd_cdir, CDIR, FREAD);
353         /*
354          * jail root, if any.
355          */
356         if (filed.fd_jdir)
357                 vtrans(filed.fd_jdir, JDIR, FREAD);
358         /*
359          * ktrace vnode, if one
360          */
361         if (kp->ki_tracep)
362                 vtrans(kp->ki_tracep, TRACE, FREAD|FWRITE);
363         /*
364          * text vnode, if one
365          */
366         if (kp->ki_textvp)
367                 vtrans(kp->ki_textvp, TEXT, FREAD);
368         /*
369          * open files
370          */
371 #define FPSIZE  (sizeof (struct file *))
372 #define MAX_LASTFILE    (0x1000000)
373
374         /* Sanity check on filed.fd_lastfile */
375         if (filed.fd_lastfile <= -1 || filed.fd_lastfile > MAX_LASTFILE)
376                 return;
377
378         ALLOC_OFILES(filed.fd_lastfile+1);
379         if (!KVM_READ(filed.fd_ofiles, ofiles,
380             (filed.fd_lastfile+1) * FPSIZE)) {
381                 dprintf(stderr,
382                     "can't read file structures at %p for pid %d\n",
383                     (void *)filed.fd_ofiles, Pid);
384                 return;
385         }
386         for (i = 0; i <= filed.fd_lastfile; i++) {
387                 if (ofiles[i] == NULL)
388                         continue;
389                 if (!KVM_READ(ofiles[i], &file, sizeof (struct file))) {
390                         dprintf(stderr, "can't read file %d at %p for pid %d\n",
391                             i, (void *)ofiles[i], Pid);
392                         continue;
393                 }
394                 if (file.f_type == DTYPE_VNODE)
395                         vtrans(file.f_vnode, i, file.f_flag);
396                 else if (file.f_type == DTYPE_SOCKET) {
397                         if (checkfile == 0)
398                                 socktrans(file.f_data, i);
399                 }
400 #ifdef DTYPE_PIPE
401                 else if (file.f_type == DTYPE_PIPE) {
402                         if (checkfile == 0)
403                                 pipetrans(file.f_data, i, file.f_flag);
404                 }
405 #endif
406 #ifdef DTYPE_FIFO
407                 else if (file.f_type == DTYPE_FIFO) {
408                         if (checkfile == 0)
409                                 vtrans(file.f_vnode, i, file.f_flag);
410                 }
411 #endif
412                 else {
413                         dprintf(stderr,
414                             "unknown file type %d for file %d of pid %d\n",
415                             file.f_type, i, Pid);
416                 }
417         }
418 }
419
420 void
421 dommap(struct kinfo_proc *kp)
422 {
423         vm_map_t map;
424         struct vmspace vmspace;
425         struct vm_map_entry entry;
426         vm_map_entry_t entryp;
427         struct vm_object object;
428         vm_object_t objp;
429         int prot, fflags;
430
431         if (!KVM_READ(kp->ki_vmspace, &vmspace, sizeof(vmspace))) {
432                 dprintf(stderr,
433                     "can't read vmspace at %p for pid %d\n",
434                     (void *)kp->ki_vmspace, Pid);
435                 return;
436         }
437         map = &vmspace.vm_map;
438
439         for (entryp = map->header.next;
440             entryp != &kp->ki_vmspace->vm_map.header; entryp = entry.next) {
441                 if (!KVM_READ(entryp, &entry, sizeof(entry))) {
442                         dprintf(stderr,
443                             "can't read vm_map_entry at %p for pid %d\n",
444                             (void *)entryp, Pid);
445                         return;
446                 }
447
448                 if (entry.eflags & MAP_ENTRY_IS_SUB_MAP)
449                         continue;
450
451                 if ((objp = entry.object.vm_object) == NULL)
452                         continue;
453
454                 for (; objp; objp = object.backing_object) {
455                         if (!KVM_READ(objp, &object, sizeof(object))) {
456                                 dprintf(stderr,
457                                     "can't read vm_object at %p for pid %d\n",
458                                     (void *)objp, Pid);
459                                 return;
460                         }
461                 }
462
463                 prot = entry.protection;
464                 fflags = (prot & VM_PROT_READ ? FREAD : 0) |
465                     (prot & VM_PROT_WRITE ? FWRITE : 0);
466
467                 switch (object.type) {
468                 case OBJT_VNODE:
469                         vtrans((struct vnode *)object.handle, MMAP, fflags);
470                         break;
471                 default:
472                         break;
473                 }
474         }
475 }
476
477 char *
478 kdevtoname(struct cdev *dev)
479 {
480         struct cdev si;
481
482         if (!KVM_READ(dev, &si, sizeof si))
483                 return (NULL);
484         return (strdup(si.__si_namebuf));
485 }
486
487 void
488 vtrans(struct vnode *vp, int i, int flag)
489 {
490         struct vnode vn;
491         struct filestat fst;
492         char rw[3], mode[15], tagstr[12], *tagptr;
493         const char *badtype, *filename;
494
495         filename = badtype = NULL;
496         if (!KVM_READ(vp, &vn, sizeof (struct vnode))) {
497                 dprintf(stderr, "can't read vnode at %p for pid %d\n",
498                     (void *)vp, Pid);
499                 return;
500         }
501         if (!KVM_READ(&vp->v_tag, &tagptr, sizeof tagptr) ||
502             !KVM_READ(tagptr, tagstr, sizeof tagstr)) {
503                 dprintf(stderr, "can't read v_tag at %p for pid %d\n",
504                     (void *)vp, Pid);
505                 return;
506         }
507         tagstr[sizeof(tagstr) - 1] = '\0';
508         if (vn.v_type == VNON)
509                 badtype = "none";
510         else if (vn.v_type == VBAD)
511                 badtype = "bad";
512         else {
513                 if (!strcmp("ufs", tagstr)) {
514                         if (!ufs_filestat(&vn, &fst))
515                                 badtype = "error";
516                 } else if (!strcmp("devfs", tagstr)) {
517                         if (!devfs_filestat(&vn, &fst))
518                                 badtype = "error";
519                 } else if (!strcmp("nfs", tagstr)) {
520                         if (!nfs_filestat(&vn, &fst))
521                                 badtype = "error";
522                 } else if (!strcmp("msdosfs", tagstr)) {
523                         if (!msdosfs_filestat(&vn, &fst))
524                                 badtype = "error";
525                 } else if (!strcmp("isofs", tagstr)) {
526                         if (!isofs_filestat(&vn, &fst))
527                                 badtype = "error";
528                 } else {
529                         static char unknown[32];
530                         snprintf(unknown, sizeof unknown, "?(%s)", tagstr);
531                         badtype = unknown;
532                 }
533         }
534         if (checkfile) {
535                 int fsmatch = 0;
536                 DEVS *d;
537
538                 if (badtype)
539                         return;
540                 for (d = devs; d != NULL; d = d->next)
541                         if (d->fsid == fst.fsid) {
542                                 fsmatch = 1;
543                                 if (d->ino == fst.fileid) {
544                                         filename = d->name;
545                                         break;
546                                 }
547                         }
548                 if (fsmatch == 0 || (filename == NULL && fsflg == 0))
549                         return;
550         }
551         PREFIX(i);
552         if (badtype) {
553                 (void)printf(" -         -  %10s    -\n", badtype);
554                 return;
555         }
556         if (nflg)
557                 (void)printf(" %2d,%-2d", major(fst.fsid), minor(fst.fsid));
558         else
559                 (void)printf(" %-8s", getmnton(vn.v_mount));
560         if (nflg)
561                 (void)sprintf(mode, "%o", fst.mode);
562         else
563                 strmode(fst.mode, mode);
564         (void)printf(" %6ld %10s", fst.fileid, mode);
565         switch (vn.v_type) {
566         case VBLK:
567         case VCHR: {
568                 char *name;
569
570                 name = kdevtoname(vn.v_rdev);
571                 if (nflg || !name)
572                         printf("  %2d,%-2d", major(fst.rdev), minor(fst.rdev));
573                 else {
574                         printf(" %6s", name);
575                         free(name);
576                 }
577                 break;
578         }
579         default:
580                 printf(" %6lu", fst.size);
581         }
582         rw[0] = '\0';
583         if (flag & FREAD)
584                 strcat(rw, "r");
585         if (flag & FWRITE)
586                 strcat(rw, "w");
587         printf(" %2s", rw);
588         if (filename && !fsflg)
589                 printf("  %s", filename);
590         putchar('\n');
591 }
592
593 int
594 ufs_filestat(struct vnode *vp, struct filestat *fsp)
595 {
596         struct inode inode;
597
598         if (!KVM_READ(VTOI(vp), &inode, sizeof (inode))) {
599                 dprintf(stderr, "can't read inode at %p for pid %d\n",
600                     (void *)VTOI(vp), Pid);
601                 return 0;
602         }
603         /*
604          * The st_dev from stat(2) is a dev_t. These kernel structures
605          * contain cdev pointers. We need to convert to dev_t to make
606          * comparisons
607          */
608         fsp->fsid = dev2udev(inode.i_dev);
609         fsp->fileid = (long)inode.i_number;
610         fsp->mode = (mode_t)inode.i_mode;
611         fsp->size = (u_long)inode.i_size;
612 #if should_be_but_is_hard
613         /* XXX - need to load i_ump and i_din[12] from kernel memory */
614         if (inode.i_ump->um_fstype == UFS1)
615                 fsp->rdev = inode.i_din1->di_rdev;
616         else
617                 fsp->rdev = inode.i_din2->di_rdev;
618 #else
619         fsp->rdev = 0;
620 #endif
621
622         return 1;
623 }
624
625 int
626 devfs_filestat(struct vnode *vp, struct filestat *fsp)
627 {
628         struct devfs_dirent devfs_dirent;
629         struct mount mount;
630         struct vnode vnode;
631
632         if (!KVM_READ(vp->v_data, &devfs_dirent, sizeof (devfs_dirent))) {
633                 dprintf(stderr, "can't read devfs_dirent at %p for pid %d\n",
634                     (void *)vp->v_data, Pid);
635                 return 0;
636         }
637         if (!KVM_READ(vp->v_mount, &mount, sizeof (mount))) {
638                 dprintf(stderr, "can't read mount at %p for pid %d\n",
639                     (void *)vp->v_mount, Pid);
640                 return 0;
641         }
642         if (!KVM_READ(devfs_dirent.de_vnode, &vnode, sizeof (vnode))) {
643                 dprintf(stderr, "can't read vnode at %p for pid %d\n",
644                     (void *)devfs_dirent.de_vnode, Pid);
645                 return 0;
646         }
647         fsp->fsid = (long)mount.mnt_stat.f_fsid.val[0];
648         fsp->fileid = devfs_dirent.de_inode;
649         fsp->mode = (devfs_dirent.de_mode & ~S_IFMT) | S_IFCHR;
650         fsp->size = 0;
651         fsp->rdev = dev2udev(vnode.v_rdev);
652
653         return 1;
654 }
655
656 int
657 nfs_filestat(struct vnode *vp, struct filestat *fsp)
658 {
659         struct nfsnode nfsnode;
660         mode_t mode;
661
662         if (!KVM_READ(VTONFS(vp), &nfsnode, sizeof (nfsnode))) {
663                 dprintf(stderr, "can't read nfsnode at %p for pid %d\n",
664                     (void *)VTONFS(vp), Pid);
665                 return 0;
666         }
667         fsp->fsid = nfsnode.n_vattr.va_fsid;
668         fsp->fileid = nfsnode.n_vattr.va_fileid;
669         fsp->size = nfsnode.n_size;
670         fsp->rdev = nfsnode.n_vattr.va_rdev;
671         mode = (mode_t)nfsnode.n_vattr.va_mode;
672         switch (vp->v_type) {
673         case VREG:
674                 mode |= S_IFREG;
675                 break;
676         case VDIR:
677                 mode |= S_IFDIR;
678                 break;
679         case VBLK:
680                 mode |= S_IFBLK;
681                 break;
682         case VCHR:
683                 mode |= S_IFCHR;
684                 break;
685         case VLNK:
686                 mode |= S_IFLNK;
687                 break;
688         case VSOCK:
689                 mode |= S_IFSOCK;
690                 break;
691         case VFIFO:
692                 mode |= S_IFIFO;
693                 break;
694         case VNON:
695         case VBAD:
696         case VMARKER:
697                 return 0;
698         };
699         fsp->mode = mode;
700
701         return 1;
702 }
703
704
705 char *
706 getmnton(struct mount *m)
707 {
708         static struct mount mount;
709         static struct mtab {
710                 struct mtab *next;
711                 struct mount *m;
712                 char mntonname[MNAMELEN];
713         } *mhead = NULL;
714         struct mtab *mt;
715
716         for (mt = mhead; mt != NULL; mt = mt->next)
717                 if (m == mt->m)
718                         return (mt->mntonname);
719         if (!KVM_READ(m, &mount, sizeof(struct mount))) {
720                 warnx("can't read mount table at %p", (void *)m);
721                 return (NULL);
722         }
723         if ((mt = malloc(sizeof (struct mtab))) == NULL)
724                 err(1, NULL);
725         mt->m = m;
726         bcopy(&mount.mnt_stat.f_mntonname[0], &mt->mntonname[0], MNAMELEN);
727         mt->next = mhead;
728         mhead = mt;
729         return (mt->mntonname);
730 }
731
732 void
733 pipetrans(struct pipe *pi, int i, int flag)
734 {
735         struct pipe pip;
736         char rw[3];
737
738         PREFIX(i);
739
740         /* fill in socket */
741         if (!KVM_READ(pi, &pip, sizeof(struct pipe))) {
742                 dprintf(stderr, "can't read pipe at %p\n", (void *)pi);
743                 goto bad;
744         }
745
746         printf("* pipe %8lx <-> %8lx", (u_long)pi, (u_long)pip.pipe_peer);
747         printf(" %6d", (int)pip.pipe_buffer.cnt);
748         rw[0] = '\0';
749         if (flag & FREAD)
750                 strcat(rw, "r");
751         if (flag & FWRITE)
752                 strcat(rw, "w");
753         printf(" %2s", rw);
754         putchar('\n');
755         return;
756
757 bad:
758         printf("* error\n");
759 }
760
761 void
762 socktrans(struct socket *sock, int i)
763 {
764         static const char *stypename[] = {
765                 "unused",       /* 0 */
766                 "stream",       /* 1 */
767                 "dgram",        /* 2 */
768                 "raw",          /* 3 */
769                 "rdm",          /* 4 */
770                 "seqpak"        /* 5 */
771         };
772 #define STYPEMAX 5
773         struct socket   so;
774         struct protosw  proto;
775         struct domain   dom;
776         struct inpcb    inpcb;
777         struct unpcb    unpcb;
778         int len;
779         char dname[32];
780
781         PREFIX(i);
782
783         /* fill in socket */
784         if (!KVM_READ(sock, &so, sizeof(struct socket))) {
785                 dprintf(stderr, "can't read sock at %p\n", (void *)sock);
786                 goto bad;
787         }
788
789         /* fill in protosw entry */
790         if (!KVM_READ(so.so_proto, &proto, sizeof(struct protosw))) {
791                 dprintf(stderr, "can't read protosw at %p",
792                     (void *)so.so_proto);
793                 goto bad;
794         }
795
796         /* fill in domain */
797         if (!KVM_READ(proto.pr_domain, &dom, sizeof(struct domain))) {
798                 dprintf(stderr, "can't read domain at %p\n",
799                     (void *)proto.pr_domain);
800                 goto bad;
801         }
802
803         if ((len = kvm_read(kd, (u_long)dom.dom_name, dname,
804             sizeof(dname) - 1)) < 0) {
805                 dprintf(stderr, "can't read domain name at %p\n",
806                     (void *)dom.dom_name);
807                 dname[0] = '\0';
808         }
809         else
810                 dname[len] = '\0';
811
812         if ((u_short)so.so_type > STYPEMAX)
813                 printf("* %s ?%d", dname, so.so_type);
814         else
815                 printf("* %s %s", dname, stypename[so.so_type]);
816
817         /*
818          * protocol specific formatting
819          *
820          * Try to find interesting things to print.  For tcp, the interesting
821          * thing is the address of the tcpcb, for udp and others, just the
822          * inpcb (socket pcb).  For unix domain, its the address of the socket
823          * pcb and the address of the connected pcb (if connected).  Otherwise
824          * just print the protocol number and address of the socket itself.
825          * The idea is not to duplicate netstat, but to make available enough
826          * information for further analysis.
827          */
828         switch(dom.dom_family) {
829         case AF_INET:
830         case AF_INET6:
831                 getinetproto(proto.pr_protocol);
832                 if (proto.pr_protocol == IPPROTO_TCP ) {
833                         if (so.so_pcb) {
834                                 if (kvm_read(kd, (u_long)so.so_pcb,
835                                     (char *)&inpcb, sizeof(struct inpcb))
836                                     != sizeof(struct inpcb)) {
837                                         dprintf(stderr,
838                                             "can't read inpcb at %p\n",
839                                             (void *)so.so_pcb);
840                                         goto bad;
841                                 }
842                                 printf(" %lx", (u_long)inpcb.inp_ppcb);
843                         }
844                 }
845                 else if (so.so_pcb)
846                         printf(" %lx", (u_long)so.so_pcb);
847                 break;
848         case AF_UNIX:
849                 /* print address of pcb and connected pcb */
850                 if (so.so_pcb) {
851                         printf(" %lx", (u_long)so.so_pcb);
852                         if (kvm_read(kd, (u_long)so.so_pcb, (char *)&unpcb,
853                             sizeof(struct unpcb)) != sizeof(struct unpcb)){
854                                 dprintf(stderr, "can't read unpcb at %p\n",
855                                     (void *)so.so_pcb);
856                                 goto bad;
857                         }
858                         if (unpcb.unp_conn) {
859                                 char shoconn[4], *cp;
860
861                                 cp = shoconn;
862                                 if (!(so.so_rcv.sb_state & SBS_CANTRCVMORE))
863                                         *cp++ = '<';
864                                 *cp++ = '-';
865                                 if (!(so.so_snd.sb_state & SBS_CANTSENDMORE))
866                                         *cp++ = '>';
867                                 *cp = '\0';
868                                 printf(" %s %lx", shoconn,
869                                     (u_long)unpcb.unp_conn);
870                         }
871                 }
872                 break;
873         default:
874                 /* print protocol number and socket address */
875                 printf(" %d %lx", proto.pr_protocol, (u_long)sock);
876         }
877         printf("\n");
878         return;
879 bad:
880         printf("* error\n");
881 }
882
883
884 /*
885  * Read the cdev structure in the kernel in order to work out the
886  * associated dev_t
887  */
888 dev_t
889 dev2udev(struct cdev *dev)
890 {
891         struct cdev_priv priv;
892         struct cdev si;
893
894         if (KVM_READ(dev, &si, sizeof si) &&
895             KVM_READ(si.si_priv, &priv, sizeof priv)) {
896                 return ((dev_t)priv.cdp_inode);
897         } else {
898                 dprintf(stderr, "can't convert cdev *%p to a dev_t\n", dev);
899                 return -1;
900         }
901 }
902
903 /*
904  * getinetproto --
905  *      print name of protocol number
906  */
907 void
908 getinetproto(int number)
909 {
910         static int isopen;
911         struct protoent *pe;
912
913         if (!isopen)
914                 setprotoent(++isopen);
915         if ((pe = getprotobynumber(number)) != NULL)
916                 printf(" %s", pe->p_name);
917         else
918                 printf(" %d", number);
919 }
920
921 int
922 getfname(const char *filename)
923 {
924         struct stat statbuf;
925         DEVS *cur;
926
927         if (stat(filename, &statbuf)) {
928                 warn("%s", filename);
929                 return(0);
930         }
931         if ((cur = malloc(sizeof(DEVS))) == NULL)
932                 err(1, NULL);
933         cur->next = devs;
934         devs = cur;
935
936         cur->ino = statbuf.st_ino;
937         cur->fsid = statbuf.st_dev;
938         cur->name = filename;
939         return(1);
940 }
941
942 void
943 usage(void)
944 {
945         (void)fprintf(stderr,
946  "usage: fstat [-fmnv] [-M core] [-N system] [-p pid] [-u user] [file ...]\n");
947         exit(1);
948 }