1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
|
/* $OpenBSD: fstat.c,v 1.70 2009/10/27 23:59:38 deraadt Exp $ */
/*
* Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/vnode.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/eventvar.h>
#include <sys/sysctl.h>
#define _KERNEL /* for DTYPE_* */
#include <sys/file.h>
#undef _KERNEL
#include <net/route.h>
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <sys/pipe.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <kvm.h>
#include <limits.h>
#include <nlist.h>
#include <pwd.h>
#include <signal.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <err.h>
#include "fstat.h"
struct fileargs fileargs = SLIST_HEAD_INITIALIZER(fileargs);
int fsflg; /* show files on same filesystem as file(s) argument */
int pflg; /* show files open by a particular pid */
int uflg; /* show files open by a particular (effective) user */
int checkfile; /* true if restricting to particular files or filesystems */
int nflg; /* (numerical) display f.s. and rdev as dev_t */
int oflg; /* display file offset */
int sflg; /* display file xfer/bytes counters */
int vflg; /* display errors in locating kernel data objects etc... */
int cflg; /* fuser only */
int fuser; /* 1 if we are fuser, 0 if we are fstat */
int signo; /* signal to send (fuser only) */
kvm_t *kd;
uid_t uid;
void fstat_dofile(struct kinfo_file2 *);
void fstat_header(void);
void fuser_dofile(struct kinfo_file2 *);
void getinetproto(int);
void usage(void);
int getfname(char *);
void cryptotrans(struct kinfo_file2 *);
void kqueuetrans(struct kinfo_file2 *);
void pipetrans(struct kinfo_file2 *);
void socktrans(struct kinfo_file2 *);
void systracetrans(struct kinfo_file2 *);
void vtrans(struct kinfo_file2 *);
const char *inet6_addrstr(struct in6_addr *);
int signame_to_signum(char *);
int
main(int argc, char *argv[])
{
struct passwd *passwd;
struct kinfo_file2 *kf, *kflast;
int arg, ch, what;
char *memf, *nlistf, *optstr;
char buf[_POSIX2_LINE_MAX];
const char *errstr;
int cnt, flags;
arg = -1;
what = KERN_FILE_BYPID;
nlistf = memf = NULL;
oflg = 0;
/* are we fstat(1) or fuser(1)? */
if (strcmp(__progname, "fuser") == 0) {
fuser = 1;
optstr = "cfks:uM:N:";
} else {
fuser = 0;
optstr = "fnop:su:vN:M:";
}
/*
* fuser and fstat share three flags: -f, -s and -u. In both cases
* -f is a boolean, but for -u fstat wants an argument while fuser
* does not and for -s fuser wants an argument whereas fstat does not.
*/
while ((ch = getopt(argc, argv, optstr)) != -1)
switch ((char)ch) {
case 'c':
if (fsflg)
usage();
cflg = 1;
break;
case 'f':
if (cflg)
usage();
fsflg = 1;
break;
case 'k':
sflg = 1;
signo = SIGKILL;
break;
case 'M':
memf = optarg;
break;
case 'N':
nlistf = optarg;
break;
case 'n':
nflg = 1;
break;
case 'o':
oflg = 1;
break;
case 'p':
if (pflg++)
usage();
arg = strtonum(optarg, 0, INT_MAX, &errstr);
if (errstr != NULL) {
warnx("-p requires a process id, %s: %s",
errstr, optarg);
usage();
}
what = KERN_FILE_BYPID;
break;
case 's':
sflg = 1;
if (fuser) {
signo = signame_to_signum(optarg);
if (signo == -1) {
warnx("invalid signal %s", optarg);
usage();
}
}
break;
case 'u':
if (uflg++)
usage();
if (!fuser) {
if (!(passwd = getpwnam(optarg))) {
arg = strtonum(optarg, 0, UID_MAX,
&errstr);
if (errstr != NULL) {
errx(1, "%s: unknown uid",
optarg);
}
} else
arg = passwd->pw_uid;
what = KERN_FILE_BYUID;
}
break;
case 'v':
vflg = 1;
break;
default:
usage();
}
/*
* get the uid, for oflg and sflg
*/
uid = getuid();
/*
* Use sysctl unless inspecting an alternate kernel.
*/
if (nlistf == NULL || memf == NULL)
flags = KVM_NO_FILES;
else
flags = O_RDONLY;
if ((kd = kvm_openfiles(nlistf, memf, NULL, flags, buf)) == NULL)
errx(1, "%s", buf);
if (*(argv += optind)) {
for (; *argv; ++argv) {
if (getfname(*argv))
checkfile = 1;
}
/* file(s) specified, but none accessible */
if (!checkfile)
exit(1);
} else if (fuser)
usage();
if (!fuser && fsflg && !checkfile) {
/* fstat -f with no files means use wd */
if (getfname(".") == 0)
exit(1);
checkfile = 1;
}
if ((kf = kvm_getfile2(kd, what, arg, sizeof(*kf), &cnt)) == NULL)
errx(1, "%s", kvm_geterr(kd));
if (!fuser)
fstat_header();
for (kflast = &kf[cnt]; kf < kflast; ++kf) {
if (fuser)
fuser_check(kf);
else
fstat_dofile(kf);
}
if (fuser)
fuser_run();
exit(0);
}
void
fstat_header(void)
{
if (nflg)
printf("%s",
"USER CMD PID FD DEV INUM MODE R/W SZ|DV");
else
printf("%s",
"USER CMD PID FD MOUNT INUM MODE R/W SZ|DV");
if (oflg)
printf("%s", ":OFFSET ");
if (checkfile && fsflg == 0)
printf(" NAME");
if (sflg)
printf(" XFERS KBYTES");
putchar('\n');
}
char *Uname, *Comm;
uid_t *procuid;
pid_t Pid;
#define PREFIX(i) do { \
printf("%-8.8s %-10s %5ld", Uname, Comm, (long)Pid); \
switch (i) { \
case KERN_FILE_TEXT: \
printf(" text"); \
break; \
case KERN_FILE_CDIR: \
printf(" wd"); \
break; \
case KERN_FILE_RDIR: \
printf(" root"); \
break; \
case KERN_FILE_TRACE: \
printf(" tr"); \
break; \
default: \
printf(" %4d", i); \
break; \
} \
} while (0)
/*
* print open files attributed to this process
*/
void
fstat_dofile(struct kinfo_file2 *kf)
{
Uname = user_from_uid(kf->p_uid, 0);
procuid = &kf->p_uid;
Pid = kf->p_pid;
Comm = kf->p_comm;
switch (kf->f_type) {
case DTYPE_VNODE:
vtrans(kf);
break;
case DTYPE_SOCKET:
if (checkfile == 0)
socktrans(kf);
break;
case DTYPE_PIPE:
if (checkfile == 0)
pipetrans(kf);
break;
case DTYPE_KQUEUE:
if (checkfile == 0)
kqueuetrans(kf);
break;
case DTYPE_CRYPTO:
if (checkfile == 0)
cryptotrans(kf);
break;
case DTYPE_SYSTRACE:
if (checkfile == 0)
systracetrans(kf);
break;
default:
if (vflg) {
warnx("unknown file type %d for file %d of pid %ld",
kf->f_type, kf->fd_fd, (long)Pid);
}
break;
}
}
void
vtrans(struct kinfo_file2 *kf)
{
const char *badtype = NULL;
char rw[3], mode[12];
char *filename = NULL;
if (kf->v_type == VNON)
badtype = "none";
else if (kf->v_type == VBAD)
badtype = "bad";
else if (kf->v_tag == VT_NON && !(kf->v_flag & VCLONE))
badtype = "none"; /* not a clone */
if (checkfile) {
int fsmatch = 0;
struct filearg *fa;
if (badtype)
return;
SLIST_FOREACH(fa, &fileargs, next) {
if (fa->dev == kf->va_fsid) {
fsmatch = 1;
if (fa->ino == kf->va_fileid) {
filename = fa->name;
break;
}
}
}
if (fsmatch == 0 || (filename == NULL && fsflg == 0))
return;
}
PREFIX(kf->fd_fd);
if (badtype) {
(void)printf(" - - %10s -\n", badtype);
return;
}
if (nflg)
(void)printf(" %2ld,%-2ld", (long)major(kf->va_fsid),
(long)minor(kf->va_fsid));
else if (!(kf->v_flag & VCLONE))
(void)printf(" %-8s", kf->f_mntonname);
else
(void)printf(" clone");
if (nflg)
(void)snprintf(mode, sizeof(mode), "%o", kf->va_mode);
else
strmode(kf->va_mode, mode);
printf(" %8llu %11s", kf->va_fileid, mode);
rw[0] = '\0';
if (kf->f_flag & FREAD)
strlcat(rw, "r", sizeof rw);
if (kf->f_flag & FWRITE)
strlcat(rw, "w", sizeof rw);
printf(" %2s", rw);
switch (kf->v_type) {
case VBLK:
case VCHR: {
char *name;
if (nflg || ((name = devname(kf->va_rdev,
kf->v_type == VCHR ? S_IFCHR : S_IFBLK)) == NULL))
printf(" %2d,%-3d", major(kf->va_rdev), minor(kf->va_rdev));
else
printf(" %7s", name);
if (oflg)
printf(" ");
break;
}
default:
printf(" %8llu", kf->va_size);
if (oflg) {
if (uid == 0 || uid == *procuid)
printf(":%-8llu", kf->f_offset);
else
printf(":%-8s", "*");
}
}
if (sflg) {
if (uid == 0 || uid == *procuid) {
printf(" %8llu %8llu",
(kf->f_rxfer + kf->f_rwfer),
(kf->f_rbytes + kf->f_wbytes) / 1024);
} else {
printf(" %8s %8s", "*", "*");
}
}
if (filename && !fsflg)
printf(" %s", filename);
putchar('\n');
}
void
pipetrans(struct kinfo_file2 *kf)
{
void *maxaddr;
PREFIX(kf->fd_fd);
printf(" ");
/*
* We don't have enough space to fit both peer and own address, so
* we select the higher address so both ends of the pipe have the
* same visible addr. (it's the higher address because when the other
* end closes, it becomes 0)
*/
maxaddr = (void *)(uintptr_t)MAX(kf->f_data, kf->pipe_peer);
printf("pipe %p state: %s%s%s", maxaddr,
(kf->pipe_state & PIPE_WANTR) ? "R" : "",
(kf->pipe_state & PIPE_WANTW) ? "W" : "",
(kf->pipe_state & PIPE_EOF) ? "E" : "");
if (sflg)
printf("\t%8llu %8llu",
(kf->f_rxfer + kf->f_rwfer),
(kf->f_rbytes + kf->f_wbytes) / 1024);
printf("\n");
return;
}
void
kqueuetrans(struct kinfo_file2 *kf)
{
PREFIX(kf->fd_fd);
printf(" ");
printf("kqueue %p %d state: %s%s\n", (void *)(uintptr_t)kf->f_data,
kf->kq_count,
(kf->kq_state & KQ_SEL) ? "S" : "",
(kf->kq_state & KQ_SLEEP) ? "W" : "");
return;
}
void
cryptotrans(struct kinfo_file2 *kf)
{
PREFIX(kf->fd_fd);
printf(" ");
printf("crypto %p\n", (void *)(uintptr_t)kf->f_data);
}
void
systracetrans(struct kinfo_file2 *kf)
{
PREFIX(kf->fd_fd);
printf(" ");
printf("systrace %p npol %d\n", (void *)(uintptr_t)kf->f_data,
kf->str_npolicies);
return;
}
#ifdef INET6
const char *
inet6_addrstr(struct in6_addr *p)
{
struct sockaddr_in6 sin6;
static char hbuf[NI_MAXHOST];
const int niflags = NI_NUMERICHOST;
memset(&sin6, 0, sizeof(sin6));
sin6.sin6_family = AF_INET6;
sin6.sin6_len = sizeof(struct sockaddr_in6);
sin6.sin6_addr = *p;
if (IN6_IS_ADDR_LINKLOCAL(p) &&
*(u_int16_t *)&sin6.sin6_addr.s6_addr[2] != 0) {
sin6.sin6_scope_id =
ntohs(*(u_int16_t *)&sin6.sin6_addr.s6_addr[2]);
sin6.sin6_addr.s6_addr[2] = sin6.sin6_addr.s6_addr[3] = 0;
}
if (getnameinfo((struct sockaddr *)&sin6, sin6.sin6_len,
hbuf, sizeof(hbuf), NULL, 0, niflags))
return "invalid";
return hbuf;
}
#endif
void
socktrans(struct kinfo_file2 *kf)
{
static char *stypename[] = {
"unused", /* 0 */
"stream", /* 1 */
"dgram", /* 2 */
"raw", /* 3 */
"rdm", /* 4 */
"seqpak" /* 5 */
};
#define STYPEMAX 5
char *stype, stypebuf[24];
struct in_addr laddr, faddr;
#ifdef INET6
char xaddrbuf[NI_MAXHOST + 2];
struct in6_addr laddr6, faddr6;
#endif
PREFIX(kf->fd_fd);
if (kf->so_type > STYPEMAX) {
snprintf(stypebuf, sizeof(stypebuf), "?%d", kf->so_type);
stype = stypebuf;
} else {
stype = stypename[kf->so_type];
}
/*
* protocol specific formatting
*
* Try to find interesting things to print. For tcp, the interesting
* thing is the address of the tcpcb, for udp and others, just the
* inpcb (socket pcb). For unix domain, its the address of the socket
* pcb and the address of the connected pcb (if connected). Otherwise
* just print the protocol number and address of the socket itself.
* The idea is not to duplicate netstat, but to make available enough
* information for further analysis.
*/
switch (kf->so_family) {
case AF_INET:
printf("* internet %s", stype);
memcpy(&laddr, kf->inp_laddru, sizeof(laddr));
memcpy(&faddr, kf->inp_faddru, sizeof(faddr));
getinetproto(kf->so_protocol);
if (kf->so_protocol == IPPROTO_TCP) {
printf(" %p", (void *)(uintptr_t)kf->inp_ppcb);
printf(" %s:%d", laddr.s_addr == INADDR_ANY ? "*" :
inet_ntoa(laddr), ntohs(kf->inp_lport));
if (kf->inp_fport) {
if (kf->so_state & SS_CONNECTOUT)
printf(" --> ");
else
printf(" <-- ");
printf("%s:%d",
faddr.s_addr == INADDR_ANY ? "*" :
inet_ntoa(faddr), ntohs(kf->inp_fport));
}
} else if (kf->so_protocol == IPPROTO_UDP) {
printf(" %s:%d", laddr.s_addr == INADDR_ANY ? "*" :
inet_ntoa(laddr), ntohs(kf->inp_lport));
if (kf->inp_fport) {
printf(" <-> %s:%d",
faddr.s_addr == INADDR_ANY ? "*" :
inet_ntoa(faddr), ntohs(kf->inp_fport));
}
} else if (kf->so_pcb)
printf(" %p", (void *)(uintptr_t)kf->so_pcb);
break;
#ifdef INET6
case AF_INET6:
printf("* internet6 %s", stype);
memcpy(&laddr6, kf->inp_laddru, sizeof(laddr6));
memcpy(&faddr6, kf->inp_faddru, sizeof(faddr6));
getinetproto(kf->so_protocol);
if (kf->so_protocol == IPPROTO_TCP) {
printf(" %p", (void *)(uintptr_t)kf->inp_ppcb);
snprintf(xaddrbuf, sizeof(xaddrbuf), "[%s]",
inet6_addrstr(&laddr6));
printf(" %s:%d",
IN6_IS_ADDR_UNSPECIFIED(&laddr6) ? "*" :
xaddrbuf, ntohs(kf->inp_lport));
if (kf->inp_fport) {
if (kf->so_state & SS_CONNECTOUT)
printf(" --> ");
else
printf(" <-- ");
snprintf(xaddrbuf, sizeof(xaddrbuf), "[%s]",
inet6_addrstr(&faddr6));
printf("%s:%d",
IN6_IS_ADDR_UNSPECIFIED(&faddr6) ? "*" :
xaddrbuf, ntohs(kf->inp_fport));
}
} else if (kf->so_protocol == IPPROTO_UDP) {
snprintf(xaddrbuf, sizeof(xaddrbuf), "[%s]",
inet6_addrstr(&laddr6));
printf(" %s:%d",
IN6_IS_ADDR_UNSPECIFIED(&laddr6) ? "*" :
xaddrbuf, ntohs(kf->inp_lport));
if (kf->inp_fport) {
snprintf(xaddrbuf, sizeof(xaddrbuf), "[%s]",
inet6_addrstr(&faddr6));
printf(" <-> %s:%d",
IN6_IS_ADDR_UNSPECIFIED(&faddr6) ? "*" :
xaddrbuf, ntohs(kf->inp_fport));
}
} else if (kf->so_pcb)
printf(" %p", (void *)(uintptr_t)kf->so_pcb);
break;
#endif
case AF_UNIX:
/* print address of pcb and connected pcb */
printf("* unix %s", stype);
if (kf->so_pcb) {
printf(" %p", (void *)(uintptr_t)kf->so_pcb);
if (kf->unp_conn) {
char shoconn[4], *cp;
cp = shoconn;
if (!(kf->so_state & SS_CANTRCVMORE))
*cp++ = '<';
*cp++ = '-';
if (!(kf->so_state & SS_CANTSENDMORE))
*cp++ = '>';
*cp = '\0';
printf(" %s %p", shoconn,
(void *)(uintptr_t)kf->unp_conn);
}
}
break;
case AF_MPLS:
/* print protocol number and socket address */
printf("* mpls %s", stype);
printf(" %d %p", kf->so_protocol,
(void *)(uintptr_t)kf->f_data);
break;
case AF_ROUTE:
/* print protocol number and socket address */
printf("* route %s", stype);
printf(" %d %p", kf->so_protocol,
(void *)(uintptr_t)kf->f_data);
break;
case AF_BLUETOOTH:
/* print protocol number and socket address */
printf("* bluetooth %s", stype);
printf(" %d %p", kf->so_protocol,
(void *)(uintptr_t)kf->f_data);
break;
case AF_NATM:
/* print protocol number and socket address */
printf("* natm %s", stype);
printf(" %d %p", kf->so_protocol,
(void *)(uintptr_t)kf->f_data);
break;
case AF_APPLETALK:
/* print protocol number and socket address */
printf("* appletalk %s", stype);
printf(" %d %p", kf->so_protocol,
(void *)(uintptr_t)kf->f_data);
break;
default:
/* print protocol number and socket address */
printf("* %d %s", kf->so_family, stype);
printf(" %d %p", kf->so_protocol,
(void *)(uintptr_t)kf->f_data);
}
if (sflg)
printf("\t%8llu %8llu",
(kf->f_rxfer + kf->f_rwfer),
(kf->f_rbytes + kf->f_wbytes) / 1024);
printf("\n");
}
/*
* getinetproto --
* print name of protocol number
*/
void
getinetproto(number)
int number;
{
static int isopen;
struct protoent *pe;
if (!isopen)
setprotoent(++isopen);
if ((pe = getprotobynumber(number)) != NULL)
printf(" %s", pe->p_name);
else
printf(" %d", number);
}
int
getfname(char *filename)
{
static struct statfs *mntbuf;
static int nmounts;
int i;
struct stat sb;
struct filearg *cur;
if (stat(filename, &sb)) {
warn("%s", filename);
return (0);
}
/*
* POSIX specifies "For block special devices, all processes using any
* file on that device are listed". However the -f flag description
* states "The report shall be only for the named files", so we only
* look up a block device if the -f flag has not be specified.
*/
if (fuser && !fsflg && S_ISBLK(sb.st_mode)) {
if (mntbuf == NULL) {
nmounts = getmntinfo(&mntbuf, MNT_NOWAIT);
if (nmounts == -1)
err(1, "getmntinfo");
}
for (i = 0; i < nmounts; i++) {
if (!strcmp(mntbuf[i].f_mntfromname, filename)) {
if (stat(mntbuf[i].f_mntonname, &sb) == -1) {
warn("%s", filename);
return (0);
}
cflg = 1;
break;
}
}
}
if ((cur = malloc(sizeof(*cur))) == NULL)
err(1, NULL);
cur->ino = sb.st_ino;
cur->dev = sb.st_dev & 0xffff;
cur->name = filename;
TAILQ_INIT(&cur->fusers);
SLIST_INSERT_HEAD(&fileargs, cur, next);
return (1);
}
int
signame_to_signum(char *sig)
{
int n;
const char *errstr = NULL;
if (isdigit((unsigned char)*sig)) {
n = strtonum(sig, 0, NSIG - 1, &errstr);
return (errstr ? -1 : n);
}
if (!strncasecmp(sig, "sig", 3))
sig += 3;
for (n = 1; n < NSIG; n++) {
if (!strcasecmp(sys_signame[n], sig))
return (n);
}
return (-1);
}
void
usage(void)
{
if (fuser) {
fprintf(stderr, "usage: fuser [-cfku] [-M core] "
"[-N system] [-s signal] file ...\n");
} else {
fprintf(stderr, "usage: fstat [-fnosv] [-M core] [-N system] "
"[-p pid] [-u user] [file ...]\n");
}
exit(1);
}
|