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_ALL; 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 vtrans(filed.fd_cdir, CDIR, FREAD); 352 /* 353 * jail root, if any. 354 */ 355 if (filed.fd_jdir) 356 vtrans(filed.fd_jdir, JDIR, FREAD); 357 /* 358 * ktrace vnode, if one 359 */ 360 if (kp->ki_tracep) 361 vtrans(kp->ki_tracep, TRACE, FREAD|FWRITE); 362 /* 363 * text vnode, if one 364 */ 365 if (kp->ki_textvp) 366 vtrans(kp->ki_textvp, TEXT, FREAD); 367 /* 368 * open files 369 */ 370 #define FPSIZE (sizeof (struct file *)) 371 #define MAX_LASTFILE (0x1000000) 372 373 /* Sanity check on filed.fd_lastfile */ 374 if (filed.fd_lastfile <= -1 || filed.fd_lastfile > MAX_LASTFILE) 375 return; 376 377 ALLOC_OFILES(filed.fd_lastfile+1); 378 if (!KVM_READ(filed.fd_ofiles, ofiles, 379 (filed.fd_lastfile+1) * FPSIZE)) { 380 dprintf(stderr, 381 "can't read file structures at %p for pid %d\n", 382 (void *)filed.fd_ofiles, Pid); 383 return; 384 } 385 for (i = 0; i <= filed.fd_lastfile; i++) { 386 if (ofiles[i] == NULL) 387 continue; 388 if (!KVM_READ(ofiles[i], &file, sizeof (struct file))) { 389 dprintf(stderr, "can't read file %d at %p for pid %d\n", 390 i, (void *)ofiles[i], Pid); 391 continue; 392 } 393 if (file.f_type == DTYPE_VNODE) 394 vtrans(file.f_vnode, i, file.f_flag); 395 else if (file.f_type == DTYPE_SOCKET) { 396 if (checkfile == 0) 397 socktrans(file.f_data, i); 398 } 399 #ifdef DTYPE_PIPE 400 else if (file.f_type == DTYPE_PIPE) { 401 if (checkfile == 0) 402 pipetrans(file.f_data, i, file.f_flag); 403 } 404 #endif 405 #ifdef DTYPE_FIFO 406 else if (file.f_type == DTYPE_FIFO) { 407 if (checkfile == 0) 408 vtrans(file.f_vnode, i, file.f_flag); 409 } 410 #endif 411 else { 412 dprintf(stderr, 413 "unknown file type %d for file %d of pid %d\n", 414 file.f_type, i, Pid); 415 } 416 } 417 } 418 419 void 420 dommap(struct kinfo_proc *kp) 421 { 422 vm_map_t map; 423 struct vmspace vmspace; 424 struct vm_map_entry entry; 425 vm_map_entry_t entryp; 426 struct vm_object object; 427 vm_object_t objp; 428 int prot, fflags; 429 430 if (!KVM_READ(kp->ki_vmspace, &vmspace, sizeof(vmspace))) { 431 dprintf(stderr, 432 "can't read vmspace at %p for pid %d\n", 433 (void *)kp->ki_vmspace, Pid); 434 return; 435 } 436 map = &vmspace.vm_map; 437 438 for (entryp = map->header.next; 439 entryp != &kp->ki_vmspace->vm_map.header; entryp = entry.next) { 440 if (!KVM_READ(entryp, &entry, sizeof(entry))) { 441 dprintf(stderr, 442 "can't read vm_map_entry at %p for pid %d\n", 443 (void *)entryp, Pid); 444 return; 445 } 446 447 if (entry.eflags & MAP_ENTRY_IS_SUB_MAP) 448 continue; 449 450 if ((objp = entry.object.vm_object) == NULL) 451 continue; 452 453 for (; objp; objp = object.backing_object) { 454 if (!KVM_READ(objp, &object, sizeof(object))) { 455 dprintf(stderr, 456 "can't read vm_object at %p for pid %d\n", 457 (void *)objp, Pid); 458 return; 459 } 460 } 461 462 prot = entry.protection; 463 fflags = (prot & VM_PROT_READ ? FREAD : 0) | 464 (prot & VM_PROT_WRITE ? FWRITE : 0); 465 466 switch (object.type) { 467 case OBJT_VNODE: 468 vtrans((struct vnode *)object.handle, MMAP, fflags); 469 break; 470 default: 471 break; 472 } 473 } 474 } 475 476 char * 477 kdevtoname(struct cdev *dev) 478 { 479 struct cdev si; 480 481 if (!KVM_READ(dev, &si, sizeof si)) 482 return (NULL); 483 return (strdup(si.__si_namebuf)); 484 } 485 486 void 487 vtrans(struct vnode *vp, int i, int flag) 488 { 489 struct vnode vn; 490 struct filestat fst; 491 char rw[3], mode[15], tagstr[12], *tagptr; 492 const char *badtype, *filename; 493 494 filename = badtype = NULL; 495 if (!KVM_READ(vp, &vn, sizeof (struct vnode))) { 496 dprintf(stderr, "can't read vnode at %p for pid %d\n", 497 (void *)vp, Pid); 498 return; 499 } 500 if (!KVM_READ(&vp->v_tag, &tagptr, sizeof tagptr) || 501 !KVM_READ(tagptr, tagstr, sizeof tagstr)) { 502 dprintf(stderr, "can't read v_tag at %p for pid %d\n", 503 (void *)vp, Pid); 504 return; 505 } 506 tagstr[sizeof(tagstr) - 1] = '\0'; 507 if (vn.v_type == VNON) 508 badtype = "none"; 509 else if (vn.v_type == VBAD) 510 badtype = "bad"; 511 else { 512 if (!strcmp("ufs", tagstr)) { 513 if (!ufs_filestat(&vn, &fst)) 514 badtype = "error"; 515 } else if (!strcmp("devfs", tagstr)) { 516 if (!devfs_filestat(&vn, &fst)) 517 badtype = "error"; 518 } else if (!strcmp("nfs", tagstr)) { 519 if (!nfs_filestat(&vn, &fst)) 520 badtype = "error"; 521 } else if (!strcmp("msdosfs", tagstr)) { 522 if (!msdosfs_filestat(&vn, &fst)) 523 badtype = "error"; 524 } else if (!strcmp("isofs", tagstr)) { 525 if (!isofs_filestat(&vn, &fst)) 526 badtype = "error"; 527 } else { 528 static char unknown[32]; 529 snprintf(unknown, sizeof unknown, "?(%s)", tagstr); 530 badtype = unknown; 531 } 532 } 533 if (checkfile) { 534 int fsmatch = 0; 535 DEVS *d; 536 537 if (badtype) 538 return; 539 for (d = devs; d != NULL; d = d->next) 540 if (d->fsid == fst.fsid) { 541 fsmatch = 1; 542 if (d->ino == fst.fileid) { 543 filename = d->name; 544 break; 545 } 546 } 547 if (fsmatch == 0 || (filename == NULL && fsflg == 0)) 548 return; 549 } 550 PREFIX(i); 551 if (badtype) { 552 (void)printf(" - - %10s -\n", badtype); 553 return; 554 } 555 if (nflg) 556 (void)printf(" %2d,%-2d", major(fst.fsid), minor(fst.fsid)); 557 else 558 (void)printf(" %-8s", getmnton(vn.v_mount)); 559 if (nflg) 560 (void)sprintf(mode, "%o", fst.mode); 561 else 562 strmode(fst.mode, mode); 563 (void)printf(" %6ld %10s", fst.fileid, mode); 564 switch (vn.v_type) { 565 case VBLK: 566 case VCHR: { 567 char *name; 568 569 name = kdevtoname(vn.v_rdev); 570 if (nflg || !name) 571 printf(" %2d,%-2d", major(fst.rdev), minor(fst.rdev)); 572 else { 573 printf(" %6s", name); 574 free(name); 575 } 576 break; 577 } 578 default: 579 printf(" %6lu", fst.size); 580 } 581 rw[0] = '\0'; 582 if (flag & FREAD) 583 strcat(rw, "r"); 584 if (flag & FWRITE) 585 strcat(rw, "w"); 586 printf(" %2s", rw); 587 if (filename && !fsflg) 588 printf(" %s", filename); 589 putchar('\n'); 590 } 591 592 int 593 ufs_filestat(struct vnode *vp, struct filestat *fsp) 594 { 595 struct inode inode; 596 597 if (!KVM_READ(VTOI(vp), &inode, sizeof (inode))) { 598 dprintf(stderr, "can't read inode at %p for pid %d\n", 599 (void *)VTOI(vp), Pid); 600 return 0; 601 } 602 /* 603 * The st_dev from stat(2) is a dev_t. These kernel structures 604 * contain cdev pointers. We need to convert to dev_t to make 605 * comparisons 606 */ 607 fsp->fsid = dev2udev(inode.i_dev); 608 fsp->fileid = (long)inode.i_number; 609 fsp->mode = (mode_t)inode.i_mode; 610 fsp->size = (u_long)inode.i_size; 611 #if should_be_but_is_hard 612 /* XXX - need to load i_ump and i_din[12] from kernel memory */ 613 if (inode.i_ump->um_fstype == UFS1) 614 fsp->rdev = inode.i_din1->di_rdev; 615 else 616 fsp->rdev = inode.i_din2->di_rdev; 617 #else 618 fsp->rdev = 0; 619 #endif 620 621 return 1; 622 } 623 624 int 625 devfs_filestat(struct vnode *vp, struct filestat *fsp) 626 { 627 struct devfs_dirent devfs_dirent; 628 struct mount mount; 629 struct vnode vnode; 630 631 if (!KVM_READ(vp->v_data, &devfs_dirent, sizeof (devfs_dirent))) { 632 dprintf(stderr, "can't read devfs_dirent at %p for pid %d\n", 633 (void *)vp->v_data, Pid); 634 return 0; 635 } 636 if (!KVM_READ(vp->v_mount, &mount, sizeof (mount))) { 637 dprintf(stderr, "can't read mount at %p for pid %d\n", 638 (void *)vp->v_mount, Pid); 639 return 0; 640 } 641 if (!KVM_READ(devfs_dirent.de_vnode, &vnode, sizeof (vnode))) { 642 dprintf(stderr, "can't read vnode at %p for pid %d\n", 643 (void *)devfs_dirent.de_vnode, Pid); 644 return 0; 645 } 646 fsp->fsid = (long)mount.mnt_stat.f_fsid.val[0]; 647 fsp->fileid = devfs_dirent.de_inode; 648 fsp->mode = (devfs_dirent.de_mode & ~S_IFMT) | S_IFCHR; 649 fsp->size = 0; 650 fsp->rdev = dev2udev(vnode.v_rdev); 651 652 return 1; 653 } 654 655 int 656 nfs_filestat(struct vnode *vp, struct filestat *fsp) 657 { 658 struct nfsnode nfsnode; 659 mode_t mode; 660 661 if (!KVM_READ(VTONFS(vp), &nfsnode, sizeof (nfsnode))) { 662 dprintf(stderr, "can't read nfsnode at %p for pid %d\n", 663 (void *)VTONFS(vp), Pid); 664 return 0; 665 } 666 fsp->fsid = nfsnode.n_vattr.va_fsid; 667 fsp->fileid = nfsnode.n_vattr.va_fileid; 668 fsp->size = nfsnode.n_size; 669 fsp->rdev = nfsnode.n_vattr.va_rdev; 670 mode = (mode_t)nfsnode.n_vattr.va_mode; 671 switch (vp->v_type) { 672 case VREG: 673 mode |= S_IFREG; 674 break; 675 case VDIR: 676 mode |= S_IFDIR; 677 break; 678 case VBLK: 679 mode |= S_IFBLK; 680 break; 681 case VCHR: 682 mode |= S_IFCHR; 683 break; 684 case VLNK: 685 mode |= S_IFLNK; 686 break; 687 case VSOCK: 688 mode |= S_IFSOCK; 689 break; 690 case VFIFO: 691 mode |= S_IFIFO; 692 break; 693 case VNON: 694 case VBAD: 695 case VMARKER: 696 return 0; 697 }; 698 fsp->mode = mode; 699 700 return 1; 701 } 702 703 704 char * 705 getmnton(struct mount *m) 706 { 707 static struct mount mount; 708 static struct mtab { 709 struct mtab *next; 710 struct mount *m; 711 char mntonname[MNAMELEN]; 712 } *mhead = NULL; 713 struct mtab *mt; 714 715 for (mt = mhead; mt != NULL; mt = mt->next) 716 if (m == mt->m) 717 return (mt->mntonname); 718 if (!KVM_READ(m, &mount, sizeof(struct mount))) { 719 warnx("can't read mount table at %p", (void *)m); 720 return (NULL); 721 } 722 if ((mt = malloc(sizeof (struct mtab))) == NULL) 723 err(1, NULL); 724 mt->m = m; 725 bcopy(&mount.mnt_stat.f_mntonname[0], &mt->mntonname[0], MNAMELEN); 726 mt->next = mhead; 727 mhead = mt; 728 return (mt->mntonname); 729 } 730 731 void 732 pipetrans(struct pipe *pi, int i, int flag) 733 { 734 struct pipe pip; 735 char rw[3]; 736 737 PREFIX(i); 738 739 /* fill in socket */ 740 if (!KVM_READ(pi, &pip, sizeof(struct pipe))) { 741 dprintf(stderr, "can't read pipe at %p\n", (void *)pi); 742 goto bad; 743 } 744 745 printf("* pipe %8lx <-> %8lx", (u_long)pi, (u_long)pip.pipe_peer); 746 printf(" %6d", (int)pip.pipe_buffer.cnt); 747 rw[0] = '\0'; 748 if (flag & FREAD) 749 strcat(rw, "r"); 750 if (flag & FWRITE) 751 strcat(rw, "w"); 752 printf(" %2s", rw); 753 putchar('\n'); 754 return; 755 756 bad: 757 printf("* error\n"); 758 } 759 760 void 761 socktrans(struct socket *sock, int i) 762 { 763 static const char *stypename[] = { 764 "unused", /* 0 */ 765 "stream", /* 1 */ 766 "dgram", /* 2 */ 767 "raw", /* 3 */ 768 "rdm", /* 4 */ 769 "seqpak" /* 5 */ 770 }; 771 #define STYPEMAX 5 772 struct socket so; 773 struct protosw proto; 774 struct domain dom; 775 struct inpcb inpcb; 776 struct unpcb unpcb; 777 int len; 778 char dname[32]; 779 780 PREFIX(i); 781 782 /* fill in socket */ 783 if (!KVM_READ(sock, &so, sizeof(struct socket))) { 784 dprintf(stderr, "can't read sock at %p\n", (void *)sock); 785 goto bad; 786 } 787 788 /* fill in protosw entry */ 789 if (!KVM_READ(so.so_proto, &proto, sizeof(struct protosw))) { 790 dprintf(stderr, "can't read protosw at %p", 791 (void *)so.so_proto); 792 goto bad; 793 } 794 795 /* fill in domain */ 796 if (!KVM_READ(proto.pr_domain, &dom, sizeof(struct domain))) { 797 dprintf(stderr, "can't read domain at %p\n", 798 (void *)proto.pr_domain); 799 goto bad; 800 } 801 802 if ((len = kvm_read(kd, (u_long)dom.dom_name, dname, 803 sizeof(dname) - 1)) < 0) { 804 dprintf(stderr, "can't read domain name at %p\n", 805 (void *)dom.dom_name); 806 dname[0] = '\0'; 807 } 808 else 809 dname[len] = '\0'; 810 811 if ((u_short)so.so_type > STYPEMAX) 812 printf("* %s ?%d", dname, so.so_type); 813 else 814 printf("* %s %s", dname, stypename[so.so_type]); 815 816 /* 817 * protocol specific formatting 818 * 819 * Try to find interesting things to print. For tcp, the interesting 820 * thing is the address of the tcpcb, for udp and others, just the 821 * inpcb (socket pcb). For unix domain, its the address of the socket 822 * pcb and the address of the connected pcb (if connected). Otherwise 823 * just print the protocol number and address of the socket itself. 824 * The idea is not to duplicate netstat, but to make available enough 825 * information for further analysis. 826 */ 827 switch(dom.dom_family) { 828 case AF_INET: 829 case AF_INET6: 830 getinetproto(proto.pr_protocol); 831 if (proto.pr_protocol == IPPROTO_TCP ) { 832 if (so.so_pcb) { 833 if (kvm_read(kd, (u_long)so.so_pcb, 834 (char *)&inpcb, sizeof(struct inpcb)) 835 != sizeof(struct inpcb)) { 836 dprintf(stderr, 837 "can't read inpcb at %p\n", 838 (void *)so.so_pcb); 839 goto bad; 840 } 841 printf(" %lx", (u_long)inpcb.inp_ppcb); 842 } 843 } 844 else if (so.so_pcb) 845 printf(" %lx", (u_long)so.so_pcb); 846 break; 847 case AF_UNIX: 848 /* print address of pcb and connected pcb */ 849 if (so.so_pcb) { 850 printf(" %lx", (u_long)so.so_pcb); 851 if (kvm_read(kd, (u_long)so.so_pcb, (char *)&unpcb, 852 sizeof(struct unpcb)) != sizeof(struct unpcb)){ 853 dprintf(stderr, "can't read unpcb at %p\n", 854 (void *)so.so_pcb); 855 goto bad; 856 } 857 if (unpcb.unp_conn) { 858 char shoconn[4], *cp; 859 860 cp = shoconn; 861 if (!(so.so_rcv.sb_state & SBS_CANTRCVMORE)) 862 *cp++ = '<'; 863 *cp++ = '-'; 864 if (!(so.so_snd.sb_state & SBS_CANTSENDMORE)) 865 *cp++ = '>'; 866 *cp = '\0'; 867 printf(" %s %lx", shoconn, 868 (u_long)unpcb.unp_conn); 869 } 870 } 871 break; 872 default: 873 /* print protocol number and socket address */ 874 printf(" %d %lx", proto.pr_protocol, (u_long)sock); 875 } 876 printf("\n"); 877 return; 878 bad: 879 printf("* error\n"); 880 } 881 882 883 /* 884 * Read the cdev structure in the kernel in order to work out the 885 * associated dev_t 886 */ 887 dev_t 888 dev2udev(struct cdev *dev) 889 { 890 struct cdev_priv priv; 891 struct cdev si; 892 893 if (KVM_READ(dev, &si, sizeof si) && 894 KVM_READ(si.si_priv, &priv, sizeof priv)) { 895 return ((dev_t)priv.cdp_inode); 896 } else { 897 dprintf(stderr, "can't convert cdev *%p to a dev_t\n", dev); 898 return -1; 899 } 900 } 901 902 /* 903 * getinetproto -- 904 * print name of protocol number 905 */ 906 void 907 getinetproto(int number) 908 { 909 static int isopen; 910 struct protoent *pe; 911 912 if (!isopen) 913 setprotoent(++isopen); 914 if ((pe = getprotobynumber(number)) != NULL) 915 printf(" %s", pe->p_name); 916 else 917 printf(" %d", number); 918 } 919 920 int 921 getfname(const char *filename) 922 { 923 struct stat statbuf; 924 DEVS *cur; 925 926 if (stat(filename, &statbuf)) { 927 warn("%s", filename); 928 return(0); 929 } 930 if ((cur = malloc(sizeof(DEVS))) == NULL) 931 err(1, NULL); 932 cur->next = devs; 933 devs = cur; 934 935 cur->ino = statbuf.st_ino; 936 cur->fsid = statbuf.st_dev; 937 cur->name = filename; 938 return(1); 939 } 940 941 void 942 usage(void) 943 { 944 (void)fprintf(stderr, 945 "usage: fstat [-fmnv] [-M core] [-N system] [-p pid] [-u user] [file ...]\n"); 946 exit(1); 947 } 948