17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 52caf0dcdSrshoaib * Common Development and Distribution License (the "License"). 62caf0dcdSrshoaib * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 212caf0dcdSrshoaib 227c478bd9Sstevel@tonic-gate /* 232caf0dcdSrshoaib * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate #include <stdio.h> 307c478bd9Sstevel@tonic-gate #include <stdlib.h> 317c478bd9Sstevel@tonic-gate #include <unistd.h> 327c478bd9Sstevel@tonic-gate #include <fcntl.h> 337c478bd9Sstevel@tonic-gate #include <ctype.h> 347c478bd9Sstevel@tonic-gate #include <string.h> 357c478bd9Sstevel@tonic-gate #include <signal.h> 367c478bd9Sstevel@tonic-gate #include <errno.h> 377c478bd9Sstevel@tonic-gate #include <dirent.h> 387c478bd9Sstevel@tonic-gate #include <limits.h> 397c478bd9Sstevel@tonic-gate #include <door.h> 407c478bd9Sstevel@tonic-gate #include <sys/types.h> 4143d18f1cSpriyanka #include <sys/socket.h> 427c478bd9Sstevel@tonic-gate #include <sys/stat.h> 437c478bd9Sstevel@tonic-gate #include <sys/mman.h> 447c478bd9Sstevel@tonic-gate #include <sys/mkdev.h> 457c478bd9Sstevel@tonic-gate #include <sys/un.h> 467c478bd9Sstevel@tonic-gate #include <netdb.h> 477c478bd9Sstevel@tonic-gate #include <libproc.h> 4843d18f1cSpriyanka #include <netinet/in.h> 497c478bd9Sstevel@tonic-gate #include <arpa/inet.h> 507c478bd9Sstevel@tonic-gate #include <netdb.h> 517c478bd9Sstevel@tonic-gate 527c478bd9Sstevel@tonic-gate static char *command; 537c478bd9Sstevel@tonic-gate static volatile int interrupt; 547c478bd9Sstevel@tonic-gate static int Fflag; 557c478bd9Sstevel@tonic-gate static boolean_t nflag = B_FALSE; 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate static void intr(int); 587c478bd9Sstevel@tonic-gate static void dofcntl(struct ps_prochandle *, int, int, int); 597c478bd9Sstevel@tonic-gate static void dosocket(struct ps_prochandle *, int); 607c478bd9Sstevel@tonic-gate static void show_files(struct ps_prochandle *); 617c478bd9Sstevel@tonic-gate static void show_fileflags(int); 627c478bd9Sstevel@tonic-gate static void show_door(struct ps_prochandle *, int); 637c478bd9Sstevel@tonic-gate 647c478bd9Sstevel@tonic-gate int 657c478bd9Sstevel@tonic-gate main(int argc, char **argv) 667c478bd9Sstevel@tonic-gate { 677c478bd9Sstevel@tonic-gate int retc = 0; 687c478bd9Sstevel@tonic-gate int opt; 697c478bd9Sstevel@tonic-gate int errflg = 0; 707c478bd9Sstevel@tonic-gate struct ps_prochandle *Pr; 717c478bd9Sstevel@tonic-gate 727c478bd9Sstevel@tonic-gate if ((command = strrchr(argv[0], '/')) != NULL) 737c478bd9Sstevel@tonic-gate command++; 747c478bd9Sstevel@tonic-gate else 757c478bd9Sstevel@tonic-gate command = argv[0]; 767c478bd9Sstevel@tonic-gate 777c478bd9Sstevel@tonic-gate /* options */ 787c478bd9Sstevel@tonic-gate while ((opt = getopt(argc, argv, "Fn")) != EOF) { 797c478bd9Sstevel@tonic-gate switch (opt) { 807c478bd9Sstevel@tonic-gate case 'F': /* force grabbing (no O_EXCL) */ 817c478bd9Sstevel@tonic-gate Fflag = PGRAB_FORCE; 827c478bd9Sstevel@tonic-gate break; 837c478bd9Sstevel@tonic-gate case 'n': 847c478bd9Sstevel@tonic-gate nflag = B_TRUE; 857c478bd9Sstevel@tonic-gate break; 867c478bd9Sstevel@tonic-gate default: 877c478bd9Sstevel@tonic-gate errflg = 1; 887c478bd9Sstevel@tonic-gate break; 897c478bd9Sstevel@tonic-gate } 907c478bd9Sstevel@tonic-gate } 917c478bd9Sstevel@tonic-gate 927c478bd9Sstevel@tonic-gate argc -= optind; 937c478bd9Sstevel@tonic-gate argv += optind; 947c478bd9Sstevel@tonic-gate 957c478bd9Sstevel@tonic-gate if (errflg || argc <= 0) { 967c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "usage:\t%s [-F] pid ...\n", 977c478bd9Sstevel@tonic-gate command); 987c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 997c478bd9Sstevel@tonic-gate " (report open files of each process)\n"); 1007c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 1017c478bd9Sstevel@tonic-gate " -F: force grabbing of the target process\n"); 1027c478bd9Sstevel@tonic-gate exit(2); 1037c478bd9Sstevel@tonic-gate } 1047c478bd9Sstevel@tonic-gate 1057c478bd9Sstevel@tonic-gate /* catch signals from terminal */ 1067c478bd9Sstevel@tonic-gate if (sigset(SIGHUP, SIG_IGN) == SIG_DFL) 1077c478bd9Sstevel@tonic-gate (void) sigset(SIGHUP, intr); 1087c478bd9Sstevel@tonic-gate if (sigset(SIGINT, SIG_IGN) == SIG_DFL) 1097c478bd9Sstevel@tonic-gate (void) sigset(SIGINT, intr); 1107c478bd9Sstevel@tonic-gate if (sigset(SIGQUIT, SIG_IGN) == SIG_DFL) 1117c478bd9Sstevel@tonic-gate (void) sigset(SIGQUIT, intr); 1127c478bd9Sstevel@tonic-gate (void) sigset(SIGPIPE, intr); 1137c478bd9Sstevel@tonic-gate (void) sigset(SIGTERM, intr); 1147c478bd9Sstevel@tonic-gate 1157c478bd9Sstevel@tonic-gate (void) proc_initstdio(); 1167c478bd9Sstevel@tonic-gate 1177c478bd9Sstevel@tonic-gate 1187c478bd9Sstevel@tonic-gate while (--argc >= 0 && !interrupt) { 1197c478bd9Sstevel@tonic-gate char *arg; 1207c478bd9Sstevel@tonic-gate psinfo_t psinfo; 1217c478bd9Sstevel@tonic-gate pid_t pid; 1227c478bd9Sstevel@tonic-gate int gret; 1237c478bd9Sstevel@tonic-gate 1247c478bd9Sstevel@tonic-gate (void) proc_flushstdio(); 1257c478bd9Sstevel@tonic-gate 1267c478bd9Sstevel@tonic-gate /* get the specified pid and the psinfo struct */ 1277c478bd9Sstevel@tonic-gate if ((pid = proc_arg_psinfo(arg = *argv++, PR_ARG_PIDS, 1287c478bd9Sstevel@tonic-gate &psinfo, &gret)) == -1) { 1297c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: cannot examine %s: %s\n", 1307c478bd9Sstevel@tonic-gate command, arg, Pgrab_error(gret)); 1317c478bd9Sstevel@tonic-gate retc++; 1327c478bd9Sstevel@tonic-gate } else if ((Pr = Pgrab(pid, Fflag, &gret)) != NULL) { 1337c478bd9Sstevel@tonic-gate if (Pcreate_agent(Pr) == 0) { 1347c478bd9Sstevel@tonic-gate proc_unctrl_psinfo(&psinfo); 1357c478bd9Sstevel@tonic-gate (void) printf("%d:\t%.70s\n", 1367c478bd9Sstevel@tonic-gate (int)pid, psinfo.pr_psargs); 1377c478bd9Sstevel@tonic-gate show_files(Pr); 1387c478bd9Sstevel@tonic-gate Pdestroy_agent(Pr); 1397c478bd9Sstevel@tonic-gate } else { 1407c478bd9Sstevel@tonic-gate (void) fprintf(stderr, 1417c478bd9Sstevel@tonic-gate "%s: cannot control process %d\n", 1427c478bd9Sstevel@tonic-gate command, (int)pid); 1437c478bd9Sstevel@tonic-gate retc++; 1447c478bd9Sstevel@tonic-gate } 1457c478bd9Sstevel@tonic-gate Prelease(Pr, 0); 1467c478bd9Sstevel@tonic-gate Pr = NULL; 1477c478bd9Sstevel@tonic-gate } else { 1487c478bd9Sstevel@tonic-gate switch (gret) { 1497c478bd9Sstevel@tonic-gate case G_SYS: 1507c478bd9Sstevel@tonic-gate case G_SELF: 1517c478bd9Sstevel@tonic-gate proc_unctrl_psinfo(&psinfo); 1527c478bd9Sstevel@tonic-gate (void) printf("%d:\t%.70s\n", (int)pid, 1537c478bd9Sstevel@tonic-gate psinfo.pr_psargs); 1547c478bd9Sstevel@tonic-gate if (gret == G_SYS) 1557c478bd9Sstevel@tonic-gate (void) printf(" [system process]\n"); 1567c478bd9Sstevel@tonic-gate else 1577c478bd9Sstevel@tonic-gate show_files(NULL); 1587c478bd9Sstevel@tonic-gate break; 1597c478bd9Sstevel@tonic-gate default: 1607c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: %s: %d\n", 1617c478bd9Sstevel@tonic-gate command, Pgrab_error(gret), (int)pid); 1627c478bd9Sstevel@tonic-gate retc++; 1637c478bd9Sstevel@tonic-gate break; 1647c478bd9Sstevel@tonic-gate } 1657c478bd9Sstevel@tonic-gate } 1667c478bd9Sstevel@tonic-gate 1677c478bd9Sstevel@tonic-gate 1687c478bd9Sstevel@tonic-gate } 1697c478bd9Sstevel@tonic-gate 1707c478bd9Sstevel@tonic-gate (void) proc_finistdio(); 1717c478bd9Sstevel@tonic-gate 1727c478bd9Sstevel@tonic-gate if (interrupt && retc == 0) 1737c478bd9Sstevel@tonic-gate retc++; 1747c478bd9Sstevel@tonic-gate return (retc); 1757c478bd9Sstevel@tonic-gate } 1767c478bd9Sstevel@tonic-gate 1777c478bd9Sstevel@tonic-gate /* ARGSUSED */ 1787c478bd9Sstevel@tonic-gate static void 1797c478bd9Sstevel@tonic-gate intr(int sig) 1807c478bd9Sstevel@tonic-gate { 1817c478bd9Sstevel@tonic-gate interrupt = 1; 1827c478bd9Sstevel@tonic-gate } 1837c478bd9Sstevel@tonic-gate 1847c478bd9Sstevel@tonic-gate /* ------ begin specific code ------ */ 1857c478bd9Sstevel@tonic-gate 1867c478bd9Sstevel@tonic-gate static void 1877c478bd9Sstevel@tonic-gate show_files(struct ps_prochandle *Pr) 1887c478bd9Sstevel@tonic-gate { 1897c478bd9Sstevel@tonic-gate DIR *dirp; 1907c478bd9Sstevel@tonic-gate struct dirent *dentp; 1917c478bd9Sstevel@tonic-gate char pname[100]; 1927c478bd9Sstevel@tonic-gate char fname[PATH_MAX]; 1937c478bd9Sstevel@tonic-gate struct stat64 statb; 1947c478bd9Sstevel@tonic-gate struct rlimit rlim; 1957c478bd9Sstevel@tonic-gate pid_t pid; 1967c478bd9Sstevel@tonic-gate int fd; 1977c478bd9Sstevel@tonic-gate char *s; 1987c478bd9Sstevel@tonic-gate int ret; 1997c478bd9Sstevel@tonic-gate 2007c478bd9Sstevel@tonic-gate if (pr_getrlimit(Pr, RLIMIT_NOFILE, &rlim) == 0) { 2017c478bd9Sstevel@tonic-gate ulong_t nfd = rlim.rlim_cur; 2027c478bd9Sstevel@tonic-gate if (nfd == RLIM_INFINITY) 2037c478bd9Sstevel@tonic-gate (void) printf( 2047c478bd9Sstevel@tonic-gate " Current rlimit: unlimited file descriptors\n"); 2057c478bd9Sstevel@tonic-gate else 2067c478bd9Sstevel@tonic-gate (void) printf( 2077c478bd9Sstevel@tonic-gate " Current rlimit: %lu file descriptors\n", nfd); 2087c478bd9Sstevel@tonic-gate } 2097c478bd9Sstevel@tonic-gate 2107c478bd9Sstevel@tonic-gate /* in case we are doing this to ourself */ 2117c478bd9Sstevel@tonic-gate pid = (Pr == NULL)? getpid() : Pstatus(Pr)->pr_pid; 2127c478bd9Sstevel@tonic-gate 2137c478bd9Sstevel@tonic-gate (void) sprintf(pname, "/proc/%d/fd", (int)pid); 2147c478bd9Sstevel@tonic-gate if ((dirp = opendir(pname)) == NULL) { 2157c478bd9Sstevel@tonic-gate (void) fprintf(stderr, "%s: cannot open directory %s\n", 2167c478bd9Sstevel@tonic-gate command, pname); 2177c478bd9Sstevel@tonic-gate return; 2187c478bd9Sstevel@tonic-gate } 2197c478bd9Sstevel@tonic-gate 2207c478bd9Sstevel@tonic-gate /* for each open file --- */ 2217c478bd9Sstevel@tonic-gate while ((dentp = readdir(dirp)) != NULL && !interrupt) { 2227c478bd9Sstevel@tonic-gate char unknown[12]; 2237c478bd9Sstevel@tonic-gate dev_t rdev; 2247c478bd9Sstevel@tonic-gate 2257c478bd9Sstevel@tonic-gate /* skip '.' and '..' */ 2267c478bd9Sstevel@tonic-gate if (!isdigit(dentp->d_name[0])) 2277c478bd9Sstevel@tonic-gate continue; 2287c478bd9Sstevel@tonic-gate 2297c478bd9Sstevel@tonic-gate fd = atoi(dentp->d_name); 2307c478bd9Sstevel@tonic-gate if (pr_fstat64(Pr, fd, &statb) == -1) { 2317c478bd9Sstevel@tonic-gate s = unknown; 2327c478bd9Sstevel@tonic-gate (void) sprintf(s, "%4d", fd); 2337c478bd9Sstevel@tonic-gate perror(s); 2347c478bd9Sstevel@tonic-gate continue; 2357c478bd9Sstevel@tonic-gate } 2367c478bd9Sstevel@tonic-gate 2377c478bd9Sstevel@tonic-gate rdev = NODEV; 2387c478bd9Sstevel@tonic-gate switch (statb.st_mode & S_IFMT) { 2397c478bd9Sstevel@tonic-gate case S_IFCHR: s = "S_IFCHR"; rdev = statb.st_rdev; break; 2407c478bd9Sstevel@tonic-gate case S_IFBLK: s = "S_IFBLK"; rdev = statb.st_rdev; break; 2417c478bd9Sstevel@tonic-gate case S_IFIFO: s = "S_IFIFO"; break; 2427c478bd9Sstevel@tonic-gate case S_IFDIR: s = "S_IFDIR"; break; 2437c478bd9Sstevel@tonic-gate case S_IFREG: s = "S_IFREG"; break; 2447c478bd9Sstevel@tonic-gate case S_IFLNK: s = "S_IFLNK"; break; 2457c478bd9Sstevel@tonic-gate case S_IFSOCK: s = "S_IFSOCK"; break; 2467c478bd9Sstevel@tonic-gate case S_IFDOOR: s = "S_IFDOOR"; break; 2477c478bd9Sstevel@tonic-gate case S_IFPORT: s = "S_IFPORT"; break; 2487c478bd9Sstevel@tonic-gate default: 2497c478bd9Sstevel@tonic-gate s = unknown; 2507c478bd9Sstevel@tonic-gate (void) sprintf(s, "0x%.4x ", 2517c478bd9Sstevel@tonic-gate (int)statb.st_mode & S_IFMT); 2527c478bd9Sstevel@tonic-gate break; 2537c478bd9Sstevel@tonic-gate } 2547c478bd9Sstevel@tonic-gate 2557c478bd9Sstevel@tonic-gate (void) printf("%4d: %s mode:0%.3o", 2567c478bd9Sstevel@tonic-gate fd, 2577c478bd9Sstevel@tonic-gate s, 2587c478bd9Sstevel@tonic-gate (int)statb.st_mode & ~S_IFMT); 2597c478bd9Sstevel@tonic-gate 2607c478bd9Sstevel@tonic-gate if (major(statb.st_dev) != (major_t)NODEV && 2617c478bd9Sstevel@tonic-gate minor(statb.st_dev) != (minor_t)NODEV) 2627c478bd9Sstevel@tonic-gate (void) printf(" dev:%lu,%lu", 2637c478bd9Sstevel@tonic-gate (ulong_t)major(statb.st_dev), 2647c478bd9Sstevel@tonic-gate (ulong_t)minor(statb.st_dev)); 2657c478bd9Sstevel@tonic-gate else 2667c478bd9Sstevel@tonic-gate (void) printf(" dev:0x%.8lX", (long)statb.st_dev); 2677c478bd9Sstevel@tonic-gate 2687c478bd9Sstevel@tonic-gate if ((statb.st_mode & S_IFMT) == S_IFPORT) { 2697c478bd9Sstevel@tonic-gate (void) printf(" uid:%d gid:%d", 2707c478bd9Sstevel@tonic-gate (int)statb.st_uid, 2717c478bd9Sstevel@tonic-gate (int)statb.st_gid); 2727c478bd9Sstevel@tonic-gate (void) printf(" size:%lld\n", 2737c478bd9Sstevel@tonic-gate (longlong_t)statb.st_size); 2747c478bd9Sstevel@tonic-gate continue; 2757c478bd9Sstevel@tonic-gate } 2767c478bd9Sstevel@tonic-gate 2777c478bd9Sstevel@tonic-gate (void) printf(" ino:%llu uid:%d gid:%d", 2787c478bd9Sstevel@tonic-gate (u_longlong_t)statb.st_ino, 2797c478bd9Sstevel@tonic-gate (int)statb.st_uid, 2807c478bd9Sstevel@tonic-gate (int)statb.st_gid); 2817c478bd9Sstevel@tonic-gate 2827c478bd9Sstevel@tonic-gate if (rdev == NODEV) 2837c478bd9Sstevel@tonic-gate (void) printf(" size:%lld\n", 2847c478bd9Sstevel@tonic-gate (longlong_t)statb.st_size); 2857c478bd9Sstevel@tonic-gate else if (major(rdev) != (major_t)NODEV && 2867c478bd9Sstevel@tonic-gate minor(rdev) != (minor_t)NODEV) 2877c478bd9Sstevel@tonic-gate (void) printf(" rdev:%lu,%lu\n", 2887c478bd9Sstevel@tonic-gate (ulong_t)major(rdev), 2897c478bd9Sstevel@tonic-gate (ulong_t)minor(rdev)); 2907c478bd9Sstevel@tonic-gate else 2917c478bd9Sstevel@tonic-gate (void) printf(" rdev:0x%.8lX\n", (long)rdev); 2927c478bd9Sstevel@tonic-gate 2937c478bd9Sstevel@tonic-gate if (!nflag) { 2947c478bd9Sstevel@tonic-gate dofcntl(Pr, fd, 2957c478bd9Sstevel@tonic-gate (statb.st_mode & (S_IFMT|S_ENFMT|S_IXGRP)) 2967c478bd9Sstevel@tonic-gate == (S_IFREG|S_ENFMT), 2977c478bd9Sstevel@tonic-gate (statb.st_mode & S_IFMT) == S_IFDOOR); 2987c478bd9Sstevel@tonic-gate 2997c478bd9Sstevel@tonic-gate if ((statb.st_mode & S_IFMT) == S_IFSOCK) 3007c478bd9Sstevel@tonic-gate dosocket(Pr, fd); 3017c478bd9Sstevel@tonic-gate 3027c478bd9Sstevel@tonic-gate (void) sprintf(pname, "/proc/%d/path/%d", (int)pid, fd); 3037c478bd9Sstevel@tonic-gate 3047c478bd9Sstevel@tonic-gate if ((ret = readlink(pname, fname, PATH_MAX - 1)) > 0) { 3057c478bd9Sstevel@tonic-gate fname[ret] = '\0'; 3067c478bd9Sstevel@tonic-gate (void) printf(" %s\n", fname); 3077c478bd9Sstevel@tonic-gate } 3087c478bd9Sstevel@tonic-gate } 3097c478bd9Sstevel@tonic-gate } 3107c478bd9Sstevel@tonic-gate 3117c478bd9Sstevel@tonic-gate (void) closedir(dirp); 3127c478bd9Sstevel@tonic-gate } 3137c478bd9Sstevel@tonic-gate 3147c478bd9Sstevel@tonic-gate /* examine open file with fcntl() */ 3157c478bd9Sstevel@tonic-gate static void 3167c478bd9Sstevel@tonic-gate dofcntl(struct ps_prochandle *Pr, int fd, int manditory, int isdoor) 3177c478bd9Sstevel@tonic-gate { 3187c478bd9Sstevel@tonic-gate struct flock flock; 3197c478bd9Sstevel@tonic-gate int fileflags; 3207c478bd9Sstevel@tonic-gate int fdflags; 3217c478bd9Sstevel@tonic-gate 3227c478bd9Sstevel@tonic-gate fileflags = pr_fcntl(Pr, fd, F_GETXFL, 0); 3237c478bd9Sstevel@tonic-gate fdflags = pr_fcntl(Pr, fd, F_GETFD, 0); 3247c478bd9Sstevel@tonic-gate 3257c478bd9Sstevel@tonic-gate if (fileflags != -1 || fdflags != -1) { 3267c478bd9Sstevel@tonic-gate (void) printf(" "); 3277c478bd9Sstevel@tonic-gate if (fileflags != -1) 3287c478bd9Sstevel@tonic-gate show_fileflags(fileflags); 3297c478bd9Sstevel@tonic-gate if (fdflags != -1 && (fdflags & FD_CLOEXEC)) 3307c478bd9Sstevel@tonic-gate (void) printf(" FD_CLOEXEC"); 3317c478bd9Sstevel@tonic-gate if (isdoor) 3327c478bd9Sstevel@tonic-gate show_door(Pr, fd); 3337c478bd9Sstevel@tonic-gate (void) fputc('\n', stdout); 3347c478bd9Sstevel@tonic-gate } else if (isdoor) { 3357c478bd9Sstevel@tonic-gate (void) printf(" "); 3367c478bd9Sstevel@tonic-gate show_door(Pr, fd); 3377c478bd9Sstevel@tonic-gate (void) fputc('\n', stdout); 3387c478bd9Sstevel@tonic-gate } 3397c478bd9Sstevel@tonic-gate 3407c478bd9Sstevel@tonic-gate flock.l_type = F_WRLCK; 3417c478bd9Sstevel@tonic-gate flock.l_whence = 0; 3427c478bd9Sstevel@tonic-gate flock.l_start = 0; 3437c478bd9Sstevel@tonic-gate flock.l_len = 0; 3447c478bd9Sstevel@tonic-gate flock.l_sysid = 0; 3457c478bd9Sstevel@tonic-gate flock.l_pid = 0; 3467c478bd9Sstevel@tonic-gate if (pr_fcntl(Pr, fd, F_GETLK, &flock) != -1) { 3477c478bd9Sstevel@tonic-gate if (flock.l_type != F_UNLCK && (flock.l_sysid || flock.l_pid)) { 3487c478bd9Sstevel@tonic-gate unsigned long sysid = flock.l_sysid; 3497c478bd9Sstevel@tonic-gate 3507c478bd9Sstevel@tonic-gate (void) printf(" %s %s lock set by", 3517c478bd9Sstevel@tonic-gate manditory? "manditory" : "advisory", 3527c478bd9Sstevel@tonic-gate flock.l_type == F_RDLCK? "read" : "write"); 3537c478bd9Sstevel@tonic-gate if (sysid) 3547c478bd9Sstevel@tonic-gate (void) printf(" system 0x%lX", sysid); 3557c478bd9Sstevel@tonic-gate if (flock.l_pid) 3567c478bd9Sstevel@tonic-gate (void) printf(" process %d", (int)flock.l_pid); 3577c478bd9Sstevel@tonic-gate (void) fputc('\n', stdout); 3587c478bd9Sstevel@tonic-gate } 3597c478bd9Sstevel@tonic-gate } 3607c478bd9Sstevel@tonic-gate } 3617c478bd9Sstevel@tonic-gate 3627c478bd9Sstevel@tonic-gate #ifdef O_PRIV 3637c478bd9Sstevel@tonic-gate #define ALL_O_FLAGS O_ACCMODE | O_NDELAY | O_NONBLOCK | O_APPEND | \ 3647c478bd9Sstevel@tonic-gate O_PRIV | O_SYNC | O_DSYNC | O_RSYNC | O_XATTR | \ 3657c478bd9Sstevel@tonic-gate O_CREAT | O_TRUNC | O_EXCL | O_NOCTTY | O_LARGEFILE 3667c478bd9Sstevel@tonic-gate #else 3677c478bd9Sstevel@tonic-gate #define ALL_O_FLAGS O_ACCMODE | O_NDELAY | O_NONBLOCK | O_APPEND | \ 3687c478bd9Sstevel@tonic-gate O_SYNC | O_DSYNC | O_RSYNC | O_XATTR | \ 3697c478bd9Sstevel@tonic-gate O_CREAT | O_TRUNC | O_EXCL | O_NOCTTY | O_LARGEFILE 3707c478bd9Sstevel@tonic-gate #endif 3717c478bd9Sstevel@tonic-gate 3727c478bd9Sstevel@tonic-gate static void 3737c478bd9Sstevel@tonic-gate show_fileflags(int flags) 3747c478bd9Sstevel@tonic-gate { 3757c478bd9Sstevel@tonic-gate char buffer[136]; 3767c478bd9Sstevel@tonic-gate char *str = buffer; 3777c478bd9Sstevel@tonic-gate 3787c478bd9Sstevel@tonic-gate switch (flags & O_ACCMODE) { 3797c478bd9Sstevel@tonic-gate case O_RDONLY: 3807c478bd9Sstevel@tonic-gate (void) strcpy(str, "O_RDONLY"); 3817c478bd9Sstevel@tonic-gate break; 3827c478bd9Sstevel@tonic-gate case O_WRONLY: 3837c478bd9Sstevel@tonic-gate (void) strcpy(str, "O_WRONLY"); 3847c478bd9Sstevel@tonic-gate break; 3857c478bd9Sstevel@tonic-gate case O_RDWR: 3867c478bd9Sstevel@tonic-gate (void) strcpy(str, "O_RDWR"); 3877c478bd9Sstevel@tonic-gate break; 3887c478bd9Sstevel@tonic-gate default: 3897c478bd9Sstevel@tonic-gate (void) sprintf(str, "0x%x", flags & O_ACCMODE); 3907c478bd9Sstevel@tonic-gate break; 3917c478bd9Sstevel@tonic-gate } 3927c478bd9Sstevel@tonic-gate 3937c478bd9Sstevel@tonic-gate if (flags & O_NDELAY) 3947c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_NDELAY"); 3957c478bd9Sstevel@tonic-gate if (flags & O_NONBLOCK) 3967c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_NONBLOCK"); 3977c478bd9Sstevel@tonic-gate if (flags & O_APPEND) 3987c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_APPEND"); 3997c478bd9Sstevel@tonic-gate #ifdef O_PRIV 4007c478bd9Sstevel@tonic-gate if (flags & O_PRIV) 4017c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_PRIV"); 4027c478bd9Sstevel@tonic-gate #endif 4037c478bd9Sstevel@tonic-gate if (flags & O_SYNC) 4047c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_SYNC"); 4057c478bd9Sstevel@tonic-gate if (flags & O_DSYNC) 4067c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_DSYNC"); 4077c478bd9Sstevel@tonic-gate if (flags & O_RSYNC) 4087c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_RSYNC"); 4097c478bd9Sstevel@tonic-gate if (flags & O_CREAT) 4107c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_CREAT"); 4117c478bd9Sstevel@tonic-gate if (flags & O_TRUNC) 4127c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_TRUNC"); 4137c478bd9Sstevel@tonic-gate if (flags & O_EXCL) 4147c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_EXCL"); 4157c478bd9Sstevel@tonic-gate if (flags & O_NOCTTY) 4167c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_NOCTTY"); 4177c478bd9Sstevel@tonic-gate if (flags & O_LARGEFILE) 4187c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_LARGEFILE"); 4197c478bd9Sstevel@tonic-gate if (flags & O_XATTR) 4207c478bd9Sstevel@tonic-gate (void) strcat(str, "|O_XATTR"); 4217c478bd9Sstevel@tonic-gate if (flags & ~(ALL_O_FLAGS)) 4227c478bd9Sstevel@tonic-gate (void) sprintf(str + strlen(str), "|0x%x", 4237c478bd9Sstevel@tonic-gate flags & ~(ALL_O_FLAGS)); 4247c478bd9Sstevel@tonic-gate 4257c478bd9Sstevel@tonic-gate (void) printf("%s", str); 4267c478bd9Sstevel@tonic-gate } 4277c478bd9Sstevel@tonic-gate 4287c478bd9Sstevel@tonic-gate /* show door info */ 4297c478bd9Sstevel@tonic-gate static void 4307c478bd9Sstevel@tonic-gate show_door(struct ps_prochandle *Pr, int fd) 4317c478bd9Sstevel@tonic-gate { 4327c478bd9Sstevel@tonic-gate door_info_t door_info; 4337c478bd9Sstevel@tonic-gate psinfo_t psinfo; 4347c478bd9Sstevel@tonic-gate 4357c478bd9Sstevel@tonic-gate if (pr_door_info(Pr, fd, &door_info) != 0) 4367c478bd9Sstevel@tonic-gate return; 4377c478bd9Sstevel@tonic-gate 4387c478bd9Sstevel@tonic-gate if (proc_get_psinfo(door_info.di_target, &psinfo) != 0) 4397c478bd9Sstevel@tonic-gate psinfo.pr_fname[0] = '\0'; 4407c478bd9Sstevel@tonic-gate 4417c478bd9Sstevel@tonic-gate (void) printf(" door to "); 4427c478bd9Sstevel@tonic-gate if (psinfo.pr_fname[0] != '\0') 4437c478bd9Sstevel@tonic-gate (void) printf("%s[%d]", psinfo.pr_fname, 4447c478bd9Sstevel@tonic-gate (int)door_info.di_target); 4457c478bd9Sstevel@tonic-gate else 4467c478bd9Sstevel@tonic-gate (void) printf("pid %d", (int)door_info.di_target); 4477c478bd9Sstevel@tonic-gate } 4487c478bd9Sstevel@tonic-gate 4497c478bd9Sstevel@tonic-gate static void 4507c478bd9Sstevel@tonic-gate show_sockaddr(const char *str, struct sockaddr *sa, socklen_t len) 4517c478bd9Sstevel@tonic-gate { 4527c478bd9Sstevel@tonic-gate /* LINTED pointer assignment */ 4537c478bd9Sstevel@tonic-gate struct sockaddr_in *so_in = (struct sockaddr_in *)sa; 4547c478bd9Sstevel@tonic-gate /* LINTED pointer assignment */ 4557c478bd9Sstevel@tonic-gate struct sockaddr_in6 *so_in6 = (struct sockaddr_in6 *)sa; 4567c478bd9Sstevel@tonic-gate struct sockaddr_un *so_un = (struct sockaddr_un *)sa; 4577c478bd9Sstevel@tonic-gate char abuf[INET6_ADDRSTRLEN]; 4587c478bd9Sstevel@tonic-gate const char *p; 4597c478bd9Sstevel@tonic-gate 4607c478bd9Sstevel@tonic-gate switch (sa->sa_family) { 4617c478bd9Sstevel@tonic-gate default: 4627c478bd9Sstevel@tonic-gate return; 4637c478bd9Sstevel@tonic-gate case AF_INET: 4642caf0dcdSrshoaib (void) printf("\t%s: AF_INET %s port: %u\n", 4657c478bd9Sstevel@tonic-gate str, 4667c478bd9Sstevel@tonic-gate inet_ntop(AF_INET, &so_in->sin_addr, abuf, sizeof (abuf)), 4677c478bd9Sstevel@tonic-gate ntohs(so_in->sin_port)); 4687c478bd9Sstevel@tonic-gate return; 4697c478bd9Sstevel@tonic-gate case AF_INET6: 4707c478bd9Sstevel@tonic-gate (void) printf("\t%s: AF_INET6 %s port: %u\n", 4717c478bd9Sstevel@tonic-gate str, 4727c478bd9Sstevel@tonic-gate inet_ntop(AF_INET6, &so_in6->sin6_addr, 4737c478bd9Sstevel@tonic-gate abuf, sizeof (abuf)), 4747c478bd9Sstevel@tonic-gate ntohs(so_in->sin_port)); 4757c478bd9Sstevel@tonic-gate return; 4767c478bd9Sstevel@tonic-gate case AF_UNIX: 4777c478bd9Sstevel@tonic-gate if (len >= sizeof (so_un->sun_family)) { 4787c478bd9Sstevel@tonic-gate /* Null terminate */ 4797c478bd9Sstevel@tonic-gate len -= sizeof (so_un->sun_family); 4807c478bd9Sstevel@tonic-gate so_un->sun_path[len] = NULL; 4817c478bd9Sstevel@tonic-gate (void) printf("\t%s: AF_UNIX %s\n", 4827c478bd9Sstevel@tonic-gate str, so_un->sun_path); 4837c478bd9Sstevel@tonic-gate } 4847c478bd9Sstevel@tonic-gate return; 4857c478bd9Sstevel@tonic-gate case AF_IMPLINK: p = "AF_IMPLINK"; break; 4867c478bd9Sstevel@tonic-gate case AF_PUP: p = "AF_PUP"; break; 4877c478bd9Sstevel@tonic-gate case AF_CHAOS: p = "AF_CHAOS"; break; 4887c478bd9Sstevel@tonic-gate case AF_NS: p = "AF_NS"; break; 4897c478bd9Sstevel@tonic-gate case AF_NBS: p = "AF_NBS"; break; 4907c478bd9Sstevel@tonic-gate case AF_ECMA: p = "AF_ECMA"; break; 4917c478bd9Sstevel@tonic-gate case AF_DATAKIT: p = "AF_DATAKIT"; break; 4927c478bd9Sstevel@tonic-gate case AF_CCITT: p = "AF_CCITT"; break; 4937c478bd9Sstevel@tonic-gate case AF_SNA: p = "AF_SNA"; break; 4947c478bd9Sstevel@tonic-gate case AF_DECnet: p = "AF_DECnet"; break; 4957c478bd9Sstevel@tonic-gate case AF_DLI: p = "AF_DLI"; break; 4967c478bd9Sstevel@tonic-gate case AF_LAT: p = "AF_LAT"; break; 4977c478bd9Sstevel@tonic-gate case AF_HYLINK: p = "AF_HYLINK"; break; 4987c478bd9Sstevel@tonic-gate case AF_APPLETALK: p = "AF_APPLETALK"; break; 4997c478bd9Sstevel@tonic-gate case AF_NIT: p = "AF_NIT"; break; 5007c478bd9Sstevel@tonic-gate case AF_802: p = "AF_802"; break; 5017c478bd9Sstevel@tonic-gate case AF_OSI: p = "AF_OSI"; break; 5027c478bd9Sstevel@tonic-gate case AF_X25: p = "AF_X25"; break; 5037c478bd9Sstevel@tonic-gate case AF_OSINET: p = "AF_OSINET"; break; 5047c478bd9Sstevel@tonic-gate case AF_GOSIP: p = "AF_GOSIP"; break; 5057c478bd9Sstevel@tonic-gate case AF_IPX: p = "AF_IPX"; break; 5067c478bd9Sstevel@tonic-gate case AF_ROUTE: p = "AF_ROUTE"; break; 5077c478bd9Sstevel@tonic-gate case AF_LINK: p = "AF_LINK"; break; 5087c478bd9Sstevel@tonic-gate } 5097c478bd9Sstevel@tonic-gate 5107c478bd9Sstevel@tonic-gate (void) printf("\t%s: %s\n", str, p); 5117c478bd9Sstevel@tonic-gate } 5127c478bd9Sstevel@tonic-gate 5137c478bd9Sstevel@tonic-gate static void 5147c478bd9Sstevel@tonic-gate show_socktype(uint_t type) 5157c478bd9Sstevel@tonic-gate { 5167c478bd9Sstevel@tonic-gate static const char *types[] = { 5177c478bd9Sstevel@tonic-gate NULL, "DGRAM", "STREAM", NULL, "RAW", "RDM", "SEQPACKET" 5187c478bd9Sstevel@tonic-gate }; 5197c478bd9Sstevel@tonic-gate 5207c478bd9Sstevel@tonic-gate if (type < sizeof (types) / sizeof (*types) && types[type] != NULL) 5217c478bd9Sstevel@tonic-gate (void) printf("\tSOCK_%s\n", types[type]); 5227c478bd9Sstevel@tonic-gate else 5237c478bd9Sstevel@tonic-gate (void) printf("\tunknown socket type %u\n", type); 5247c478bd9Sstevel@tonic-gate } 5257c478bd9Sstevel@tonic-gate 52643d18f1cSpriyanka #define BUFSIZE 200 5277c478bd9Sstevel@tonic-gate static void 5287c478bd9Sstevel@tonic-gate show_sockopts(struct ps_prochandle *Pr, int fd) 5297c478bd9Sstevel@tonic-gate { 5307c478bd9Sstevel@tonic-gate int val, vlen; 53143d18f1cSpriyanka char buf[BUFSIZE]; 5327c478bd9Sstevel@tonic-gate char buf1[32]; 53343d18f1cSpriyanka char ipaddr[INET_ADDRSTRLEN]; 5347c478bd9Sstevel@tonic-gate int i; 53543d18f1cSpriyanka in_addr_t nexthop_val; 5367c478bd9Sstevel@tonic-gate struct boolopt { 5377c478bd9Sstevel@tonic-gate int opt; 5387c478bd9Sstevel@tonic-gate const char *name; 5397c478bd9Sstevel@tonic-gate }; 5407c478bd9Sstevel@tonic-gate static struct boolopt boolopts[] = { 5417c478bd9Sstevel@tonic-gate { SO_DEBUG, "SO_DEBUG," }, 5427c478bd9Sstevel@tonic-gate { SO_REUSEADDR, "SO_REUSEADDR," }, 5437c478bd9Sstevel@tonic-gate { SO_KEEPALIVE, "SO_KEEPALIVE," }, 5447c478bd9Sstevel@tonic-gate { SO_DONTROUTE, "SO_DONTROUTE," }, 5457c478bd9Sstevel@tonic-gate { SO_BROADCAST, "SO_BROADCAST," }, 5467c478bd9Sstevel@tonic-gate { SO_OOBINLINE, "SO_OOBINLINE," }, 5477c478bd9Sstevel@tonic-gate { SO_DGRAM_ERRIND, "SO_DGRAM_ERRIND,"} 5487c478bd9Sstevel@tonic-gate }; 5497c478bd9Sstevel@tonic-gate struct linger l; 5507c478bd9Sstevel@tonic-gate 5517c478bd9Sstevel@tonic-gate buf[0] = ','; 5527c478bd9Sstevel@tonic-gate buf[1] = '\0'; 5537c478bd9Sstevel@tonic-gate 5547c478bd9Sstevel@tonic-gate for (i = 0; i < sizeof (boolopts) / sizeof (boolopts[0]); i++) { 5557c478bd9Sstevel@tonic-gate vlen = sizeof (val); 5567c478bd9Sstevel@tonic-gate if (pr_getsockopt(Pr, fd, SOL_SOCKET, boolopts[i].opt, &val, 5577c478bd9Sstevel@tonic-gate &vlen) == 0 && val != 0) 5587c478bd9Sstevel@tonic-gate (void) strlcat(buf, boolopts[i].name, sizeof (buf)); 5597c478bd9Sstevel@tonic-gate } 5607c478bd9Sstevel@tonic-gate 5617c478bd9Sstevel@tonic-gate vlen = sizeof (l); 5627c478bd9Sstevel@tonic-gate if (pr_getsockopt(Pr, fd, SOL_SOCKET, SO_LINGER, &l, &vlen) == 0 && 5637c478bd9Sstevel@tonic-gate l.l_onoff != 0) { 5647c478bd9Sstevel@tonic-gate (void) snprintf(buf1, sizeof (buf1), "SO_LINGER(%d),", 5657c478bd9Sstevel@tonic-gate l.l_linger); 5667c478bd9Sstevel@tonic-gate (void) strlcat(buf, buf1, sizeof (buf)); 5677c478bd9Sstevel@tonic-gate } 5687c478bd9Sstevel@tonic-gate 5697c478bd9Sstevel@tonic-gate vlen = sizeof (val); 5707c478bd9Sstevel@tonic-gate if (pr_getsockopt(Pr, fd, SOL_SOCKET, SO_SNDBUF, &val, &vlen) == 0) { 5717c478bd9Sstevel@tonic-gate (void) snprintf(buf1, sizeof (buf1), "SO_SNDBUF(%d),", val); 5727c478bd9Sstevel@tonic-gate (void) strlcat(buf, buf1, sizeof (buf)); 5737c478bd9Sstevel@tonic-gate } 5747c478bd9Sstevel@tonic-gate vlen = sizeof (val); 5757c478bd9Sstevel@tonic-gate if (pr_getsockopt(Pr, fd, SOL_SOCKET, SO_RCVBUF, &val, &vlen) == 0) { 5767c478bd9Sstevel@tonic-gate (void) snprintf(buf1, sizeof (buf1), "SO_RCVBUF(%d),", val); 5777c478bd9Sstevel@tonic-gate (void) strlcat(buf, buf1, sizeof (buf)); 5787c478bd9Sstevel@tonic-gate } 57943d18f1cSpriyanka vlen = sizeof (nexthop_val); 58043d18f1cSpriyanka if (pr_getsockopt(Pr, fd, IPPROTO_IP, IP_NEXTHOP, &nexthop_val, 58143d18f1cSpriyanka &vlen) == 0) { 582*29e362daSpriyanka if (vlen > 0) { 583*29e362daSpriyanka (void) inet_ntop(AF_INET, (void *) &nexthop_val, 584*29e362daSpriyanka ipaddr, sizeof (ipaddr)); 58543d18f1cSpriyanka (void) snprintf(buf1, sizeof (buf1), "IP_NEXTHOP(%s),", 58643d18f1cSpriyanka ipaddr); 58743d18f1cSpriyanka (void) strlcat(buf, buf1, sizeof (buf)); 58843d18f1cSpriyanka } 589*29e362daSpriyanka } 5907c478bd9Sstevel@tonic-gate 5917c478bd9Sstevel@tonic-gate buf[strlen(buf) - 1] = '\0'; 5927c478bd9Sstevel@tonic-gate if (buf[1] != '\0') 5937c478bd9Sstevel@tonic-gate (void) printf("\t%s\n", buf+1); 5947c478bd9Sstevel@tonic-gate } 5957c478bd9Sstevel@tonic-gate 5967c478bd9Sstevel@tonic-gate /* the file is a socket */ 5977c478bd9Sstevel@tonic-gate static void 5987c478bd9Sstevel@tonic-gate dosocket(struct ps_prochandle *Pr, int fd) 5997c478bd9Sstevel@tonic-gate { 6007c478bd9Sstevel@tonic-gate /* A buffer large enough for PATH_MAX size AF_UNIX address */ 6017c478bd9Sstevel@tonic-gate long buf[(sizeof (short) + PATH_MAX + sizeof (long) - 1) 6027c478bd9Sstevel@tonic-gate / sizeof (long)]; 6037c478bd9Sstevel@tonic-gate struct sockaddr *sa = (struct sockaddr *)buf; 6047c478bd9Sstevel@tonic-gate socklen_t len; 6057c478bd9Sstevel@tonic-gate int type, tlen; 6067c478bd9Sstevel@tonic-gate 6077c478bd9Sstevel@tonic-gate tlen = sizeof (type); 6087c478bd9Sstevel@tonic-gate if (pr_getsockopt(Pr, fd, SOL_SOCKET, SO_TYPE, &type, &tlen) 6097c478bd9Sstevel@tonic-gate == 0) 6107c478bd9Sstevel@tonic-gate show_socktype((uint_t)type); 6117c478bd9Sstevel@tonic-gate 6127c478bd9Sstevel@tonic-gate show_sockopts(Pr, fd); 6137c478bd9Sstevel@tonic-gate 6147c478bd9Sstevel@tonic-gate len = sizeof (buf); 6157c478bd9Sstevel@tonic-gate if (pr_getsockname(Pr, fd, sa, &len) == 0) 6167c478bd9Sstevel@tonic-gate show_sockaddr("sockname", sa, len); 6177c478bd9Sstevel@tonic-gate 6187c478bd9Sstevel@tonic-gate len = sizeof (buf); 6197c478bd9Sstevel@tonic-gate if (pr_getpeername(Pr, fd, sa, &len) == 0) 6207c478bd9Sstevel@tonic-gate show_sockaddr("peername", sa, len); 6217c478bd9Sstevel@tonic-gate } 622