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