]> git.proxmox.com Git - mirror_iproute2.git/blame - misc/ss.c
ss: use rta_getattr_u32
[mirror_iproute2.git] / misc / ss.c
CommitLineData
b9de3ecf 1/*
aba5acdf
SH
2 * ss.c "sockstat", socket statistics
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 */
11
12#include <stdio.h>
13#include <stdlib.h>
14#include <unistd.h>
15#include <syslog.h>
16#include <fcntl.h>
17#include <sys/ioctl.h>
18#include <sys/socket.h>
19#include <sys/uio.h>
20#include <netinet/in.h>
21#include <string.h>
22#include <errno.h>
23#include <netdb.h>
24#include <arpa/inet.h>
aba5acdf
SH
25#include <dirent.h>
26#include <fnmatch.h>
ab61159a 27#include <getopt.h>
aba5acdf
SH
28
29#include "utils.h"
30#include "rt_names.h"
31#include "ll_map.h"
32#include "libnetlink.h"
aba5acdf
SH
33#include "SNAPSHOT.h"
34
77aa4d03 35#include <netinet/tcp.h>
f6062360 36#include <linux/sock_diag.h>
351efcde 37#include <linux/inet_diag.h>
dfbaa90d 38#include <linux/unix_diag.h>
aba5acdf
SH
39
40int resolve_hosts = 0;
41int resolve_services = 1;
42int preferred_family = AF_UNSPEC;
43int show_options = 0;
44int show_details = 0;
45int show_users = 0;
46int show_mem = 0;
47int show_tcpinfo = 0;
48
49int netid_width;
50int state_width;
51int addrp_width;
52int addr_width;
53int serv_width;
54int screen_width;
55
56static const char *TCP_PROTO = "tcp";
57static const char *UDP_PROTO = "udp";
58static const char *RAW_PROTO = "raw";
59static const char *dg_proto = NULL;
60
61enum
62{
63 TCP_DB,
351efcde 64 DCCP_DB,
aba5acdf
SH
65 UDP_DB,
66 RAW_DB,
67 UNIX_DG_DB,
68 UNIX_ST_DB,
69 PACKET_DG_DB,
70 PACKET_R_DB,
71 NETLINK_DB,
72 MAX_DB
73};
74
75#define PACKET_DBM ((1<<PACKET_DG_DB)|(1<<PACKET_R_DB))
76#define UNIX_DBM ((1<<UNIX_DG_DB)|(1<<UNIX_ST_DB))
77#define ALL_DB ((1<<MAX_DB)-1)
78
79enum {
7d105b56
SH
80 SS_UNKNOWN,
81 SS_ESTABLISHED,
82 SS_SYN_SENT,
83 SS_SYN_RECV,
84 SS_FIN_WAIT1,
85 SS_FIN_WAIT2,
86 SS_TIME_WAIT,
87 SS_CLOSE,
88 SS_CLOSE_WAIT,
89 SS_LAST_ACK,
90 SS_LISTEN,
91 SS_CLOSING,
92 SS_MAX
aba5acdf
SH
93};
94
95#define SS_ALL ((1<<SS_MAX)-1)
96
97#include "ssfilter.h"
98
99struct filter
100{
101 int dbs;
102 int states;
103 int families;
104 struct ssfilter *f;
105};
106
107struct filter default_filter = {
7de7e591 108 .dbs = ~0,
e7113c61
SH
109 .states = SS_ALL & ~((1<<SS_LISTEN)|(1<<SS_CLOSE)|(1<<SS_TIME_WAIT)|(1<<SS_SYN_RECV)),
110 .families= (1<<AF_INET)|(1<<AF_INET6),
aba5acdf
SH
111};
112
113struct filter current_filter;
114
ab01dbbb 115static FILE *generic_proc_open(const char *env, const char *name)
aba5acdf 116{
ab01dbbb 117 const char *p = getenv(env);
aba5acdf 118 char store[128];
ab01dbbb 119
aba5acdf
SH
120 if (!p) {
121 p = getenv("PROC_ROOT") ? : "/proc";
122 snprintf(store, sizeof(store)-1, "%s/%s", p, name);
123 p = store;
124 }
ab01dbbb
SH
125
126 return fopen(p, "r");
aba5acdf
SH
127}
128
ab01dbbb 129static FILE *net_tcp_open(void)
aba5acdf
SH
130{
131 return generic_proc_open("PROC_NET_TCP", "net/tcp");
132}
133
ab01dbbb 134static FILE *net_tcp6_open(void)
aba5acdf
SH
135{
136 return generic_proc_open("PROC_NET_TCP6", "net/tcp6");
137}
138
ab01dbbb 139static FILE *net_udp_open(void)
aba5acdf
SH
140{
141 return generic_proc_open("PROC_NET_UDP", "net/udp");
142}
143
ab01dbbb 144static FILE *net_udp6_open(void)
aba5acdf
SH
145{
146 return generic_proc_open("PROC_NET_UDP6", "net/udp6");
147}
148
ab01dbbb 149static FILE *net_raw_open(void)
aba5acdf
SH
150{
151 return generic_proc_open("PROC_NET_RAW", "net/raw");
152}
153
ab01dbbb 154static FILE *net_raw6_open(void)
aba5acdf
SH
155{
156 return generic_proc_open("PROC_NET_RAW6", "net/raw6");
157}
158
ab01dbbb 159static FILE *net_unix_open(void)
aba5acdf
SH
160{
161 return generic_proc_open("PROC_NET_UNIX", "net/unix");
162}
163
ab01dbbb 164static FILE *net_packet_open(void)
aba5acdf
SH
165{
166 return generic_proc_open("PROC_NET_PACKET", "net/packet");
167}
168
ab01dbbb 169static FILE *net_netlink_open(void)
aba5acdf
SH
170{
171 return generic_proc_open("PROC_NET_NETLINK", "net/netlink");
172}
173
ab01dbbb 174static FILE *slabinfo_open(void)
aba5acdf
SH
175{
176 return generic_proc_open("PROC_SLABINFO", "slabinfo");
177}
178
ab01dbbb 179static FILE *net_sockstat_open(void)
aba5acdf
SH
180{
181 return generic_proc_open("PROC_NET_SOCKSTAT", "net/sockstat");
182}
183
ab01dbbb 184static FILE *net_sockstat6_open(void)
aba5acdf
SH
185{
186 return generic_proc_open("PROC_NET_SOCKSTAT6", "net/sockstat6");
187}
188
ab01dbbb 189static FILE *net_snmp_open(void)
aba5acdf
SH
190{
191 return generic_proc_open("PROC_NET_SNMP", "net/snmp");
192}
193
ab01dbbb 194static FILE *ephemeral_ports_open(void)
aba5acdf
SH
195{
196 return generic_proc_open("PROC_IP_LOCAL_PORT_RANGE", "sys/net/ipv4/ip_local_port_range");
197}
198
fbc0f876
SF
199struct user_ent {
200 struct user_ent *next;
201 unsigned int ino;
202 int pid;
203 int fd;
204 char process[0];
205};
206
207#define USER_ENT_HASH_SIZE 256
208struct user_ent *user_ent_hash[USER_ENT_HASH_SIZE];
209
210static int user_ent_hashfn(unsigned int ino)
aba5acdf 211{
fbc0f876 212 int val = (ino >> 24) ^ (ino >> 16) ^ (ino >> 8) ^ ino;
aba5acdf 213
fbc0f876
SF
214 return val & (USER_ENT_HASH_SIZE - 1);
215}
216
217static void user_ent_add(unsigned int ino, const char *process, int pid, int fd)
218{
219 struct user_ent *p, **pp;
220 int str_len;
aba5acdf 221
fbc0f876
SF
222 str_len = strlen(process) + 1;
223 p = malloc(sizeof(struct user_ent) + str_len);
224 if (!p)
225 abort();
226 p->next = NULL;
227 p->ino = ino;
228 p->pid = pid;
229 p->fd = fd;
230 strcpy(p->process, process);
231
232 pp = &user_ent_hash[user_ent_hashfn(ino)];
233 p->next = *pp;
234 *pp = p;
235}
aba5acdf 236
fbc0f876
SF
237static void user_ent_hash_build(void)
238{
239 const char *root = getenv("PROC_ROOT") ? : "/proc/";
240 struct dirent *d;
241 char name[1024];
242 int nameoff;
243 DIR *dir;
244
245 strcpy(name, root);
246 if (strlen(name) == 0 || name[strlen(name)-1] != '/')
aba5acdf 247 strcat(name, "/");
fbc0f876 248
aba5acdf 249 nameoff = strlen(name);
fbc0f876
SF
250
251 dir = opendir(name);
252 if (!dir)
253 return;
aba5acdf
SH
254
255 while ((d = readdir(dir)) != NULL) {
aba5acdf 256 struct dirent *d1;
aba5acdf 257 char process[16];
fbc0f876
SF
258 int pid, pos;
259 DIR *dir1;
260 char crap;
aba5acdf
SH
261
262 if (sscanf(d->d_name, "%d%c", &pid, &crap) != 1)
263 continue;
264
fbc0f876 265 sprintf(name + nameoff, "%d/fd/", pid);
aba5acdf
SH
266 pos = strlen(name);
267 if ((dir1 = opendir(name)) == NULL)
268 continue;
269
fbc0f876 270 process[0] = '\0';
aba5acdf
SH
271
272 while ((d1 = readdir(dir1)) != NULL) {
fbc0f876
SF
273 const char *pattern = "socket:[";
274 unsigned int ino;
aba5acdf 275 char lnk[64];
18445b3e 276 int fd;
788731b3 277 ssize_t link_len;
aba5acdf
SH
278
279 if (sscanf(d1->d_name, "%d%c", &fd, &crap) != 1)
280 continue;
281
282 sprintf(name+pos, "%d", fd);
788731b3
TJ
283
284 link_len = readlink(name, lnk, sizeof(lnk)-1);
285 if (link_len == -1)
286 continue;
287 lnk[link_len] = '\0';
288
289 if (strncmp(lnk, pattern, strlen(pattern)))
aba5acdf
SH
290 continue;
291
fbc0f876 292 sscanf(lnk, "socket:[%u]", &ino);
aba5acdf 293
fbc0f876 294 if (process[0] == '\0') {
aba5acdf
SH
295 char tmp[1024];
296 FILE *fp;
fbc0f876
SF
297
298 snprintf(tmp, sizeof(tmp), "%s/%d/stat", root, pid);
aba5acdf
SH
299 if ((fp = fopen(tmp, "r")) != NULL) {
300 fscanf(fp, "%*d (%[^)])", process);
301 fclose(fp);
302 }
303 }
304
fbc0f876 305 user_ent_add(ino, process, pid, fd);
aba5acdf
SH
306 }
307 closedir(dir1);
308 }
309 closedir(dir);
fbc0f876
SF
310}
311
d1f28cf1 312static int find_users(unsigned ino, char *buf, int buflen)
fbc0f876
SF
313{
314 struct user_ent *p;
315 int cnt = 0;
316 char *ptr;
317
318 if (!ino)
319 return 0;
320
321 p = user_ent_hash[user_ent_hashfn(ino)];
322 ptr = buf;
323 while (p) {
324 if (p->ino != ino)
325 goto next;
326
327 if (ptr - buf >= buflen - 1)
328 break;
329
330 snprintf(ptr, buflen - (ptr - buf),
331 "(\"%s\",%d,%d),",
332 p->process, p->pid, p->fd);
333 ptr += strlen(ptr);
334 cnt++;
335
336 next:
337 p = p->next;
338 }
339
aba5acdf 340 if (ptr != buf)
fbc0f876
SF
341 ptr[-1] = '\0';
342
aba5acdf
SH
343 return cnt;
344}
345
aba5acdf
SH
346/* Get stats from slab */
347
348struct slabstat
349{
350 int socks;
351 int tcp_ports;
352 int tcp_tws;
353 int tcp_syns;
354 int skbs;
355};
356
357struct slabstat slabstat;
358
ae665a52 359static const char *slabstat_ids[] =
aba5acdf
SH
360{
361 "sock",
362 "tcp_bind_bucket",
363 "tcp_tw_bucket",
364 "tcp_open_request",
365 "skbuff_head_cache",
366};
367
d1f28cf1 368static int get_slabstat(struct slabstat *s)
aba5acdf
SH
369{
370 char buf[256];
371 FILE *fp;
372 int cnt;
373
374 memset(s, 0, sizeof(*s));
375
ab01dbbb
SH
376 fp = slabinfo_open();
377 if (!fp)
aba5acdf
SH
378 return -1;
379
380 cnt = sizeof(*s)/sizeof(int);
381
382 fgets(buf, sizeof(buf), fp);
383 while(fgets(buf, sizeof(buf), fp) != NULL) {
384 int i;
385 for (i=0; i<sizeof(slabstat_ids)/sizeof(slabstat_ids[0]); i++) {
386 if (memcmp(buf, slabstat_ids[i], strlen(slabstat_ids[i])) == 0) {
387 sscanf(buf, "%*s%d", ((int *)s) + i);
388 cnt--;
389 break;
390 }
391 }
392 if (cnt <= 0)
393 break;
394 }
395
396 fclose(fp);
397 return 0;
398}
399
7d105b56
SH
400static const char *sstate_name[] = {
401 "UNKNOWN",
402 [TCP_ESTABLISHED] = "ESTAB",
403 [TCP_SYN_SENT] = "SYN-SENT",
404 [TCP_SYN_RECV] = "SYN-RECV",
405 [TCP_FIN_WAIT1] = "FIN-WAIT-1",
406 [TCP_FIN_WAIT2] = "FIN-WAIT-2",
407 [TCP_TIME_WAIT] = "TIME-WAIT",
408 [TCP_CLOSE] = "UNCONN",
409 [TCP_CLOSE_WAIT] = "CLOSE-WAIT",
410 [TCP_LAST_ACK] = "LAST-ACK",
411 [TCP_LISTEN] = "LISTEN",
412 [TCP_CLOSING] = "CLOSING",
aba5acdf
SH
413};
414
7d105b56
SH
415static const char *sstate_namel[] = {
416 "UNKNOWN",
417 [TCP_ESTABLISHED] = "established",
418 [TCP_SYN_SENT] = "syn-sent",
419 [TCP_SYN_RECV] = "syn-recv",
420 [TCP_FIN_WAIT1] = "fin-wait-1",
421 [TCP_FIN_WAIT2] = "fin-wait-2",
422 [TCP_TIME_WAIT] = "time-wait",
423 [TCP_CLOSE] = "unconnected",
424 [TCP_CLOSE_WAIT] = "close-wait",
425 [TCP_LAST_ACK] = "last-ack",
426 [TCP_LISTEN] = "listening",
427 [TCP_CLOSING] = "closing",
aba5acdf
SH
428};
429
430struct tcpstat
431{
432 inet_prefix local;
433 inet_prefix remote;
434 int lport;
435 int rport;
436 int state;
437 int rq, wq;
438 int timer;
439 int timeout;
440 int retrs;
e7113c61 441 unsigned ino;
aba5acdf 442 int probes;
e7113c61 443 unsigned uid;
aba5acdf
SH
444 int refcnt;
445 unsigned long long sk;
446 int rto, ato, qack, cwnd, ssthresh;
447};
448
7d105b56 449static const char *tmr_name[] = {
aba5acdf
SH
450 "off",
451 "on",
452 "keepalive",
453 "timewait",
454 "persist",
455 "unknown"
456};
457
d1f28cf1 458static const char *print_ms_timer(int timeout)
aba5acdf
SH
459{
460 static char buf[64];
461 int secs, msecs, minutes;
462 if (timeout < 0)
463 timeout = 0;
464 secs = timeout/1000;
465 minutes = secs/60;
466 secs = secs%60;
467 msecs = timeout%1000;
468 buf[0] = 0;
469 if (minutes) {
470 msecs = 0;
471 snprintf(buf, sizeof(buf)-16, "%dmin", minutes);
472 if (minutes > 9)
473 secs = 0;
474 }
475 if (secs) {
476 if (secs > 9)
477 msecs = 0;
478 sprintf(buf+strlen(buf), "%d%s", secs, msecs ? "." : "sec");
479 }
480 if (msecs)
481 sprintf(buf+strlen(buf), "%03dms", msecs);
482 return buf;
e7113c61 483}
aba5acdf 484
d1f28cf1 485static const char *print_hz_timer(int timeout)
aba5acdf 486{
2d44be19 487 int hz = get_user_hz();
aba5acdf 488 return print_ms_timer(((timeout*1000) + hz-1)/hz);
e7113c61 489}
aba5acdf
SH
490
491struct scache
492{
493 struct scache *next;
494 int port;
495 char *name;
496 const char *proto;
497};
498
499struct scache *rlist;
500
d1f28cf1 501static void init_service_resolver(void)
aba5acdf
SH
502{
503 char buf[128];
504 FILE *fp = popen("/usr/sbin/rpcinfo -p 2>/dev/null", "r");
505 if (fp) {
506 fgets(buf, sizeof(buf), fp);
507 while (fgets(buf, sizeof(buf), fp) != NULL) {
508 unsigned int progn, port;
509 char proto[128], prog[128];
510 if (sscanf(buf, "%u %*d %s %u %s", &progn, proto,
511 &port, prog+4) == 4) {
512 struct scache *c = malloc(sizeof(*c));
513 if (c) {
514 c->port = port;
515 memcpy(prog, "rpc.", 4);
516 c->name = strdup(prog);
517 if (strcmp(proto, TCP_PROTO) == 0)
518 c->proto = TCP_PROTO;
519 else if (strcmp(proto, UDP_PROTO) == 0)
520 c->proto = UDP_PROTO;
521 else
522 c->proto = NULL;
523 c->next = rlist;
524 rlist = c;
525 }
526 }
527 }
2bcc3c16 528 pclose(fp);
aba5acdf
SH
529 }
530}
531
ab61159a
SH
532static int ip_local_port_min, ip_local_port_max;
533
534/* Even do not try default linux ephemeral port ranges:
535 * default /etc/services contains so much of useless crap
536 * wouldbe "allocated" to this area that resolution
537 * is really harmful. I shrug each time when seeing
538 * "socks" or "cfinger" in dumps.
539 */
540static int is_ephemeral(int port)
541{
542 if (!ip_local_port_min) {
ab01dbbb 543 FILE *f = ephemeral_ports_open();
ab61159a 544 if (f) {
ae665a52 545 fscanf(f, "%d %d",
ab61159a
SH
546 &ip_local_port_min, &ip_local_port_max);
547 fclose(f);
548 } else {
549 ip_local_port_min = 1024;
550 ip_local_port_max = 4999;
551 }
552 }
553
554 return (port >= ip_local_port_min && port<= ip_local_port_max);
555}
556
557
d1f28cf1 558static const char *__resolve_service(int port)
aba5acdf
SH
559{
560 struct scache *c;
561
562 for (c = rlist; c; c = c->next) {
563 if (c->port == port && c->proto == dg_proto)
564 return c->name;
565 }
566
ab61159a 567 if (!is_ephemeral(port)) {
aba5acdf
SH
568 static int notfirst;
569 struct servent *se;
570 if (!notfirst) {
571 setservent(1);
572 notfirst = 1;
ae665a52 573 }
aba5acdf
SH
574 se = getservbyport(htons(port), dg_proto);
575 if (se)
576 return se->s_name;
577 }
578
579 return NULL;
580}
581
582
d1f28cf1 583static const char *resolve_service(int port)
aba5acdf
SH
584{
585 static char buf[128];
586 static struct scache cache[256];
587
588 if (port == 0) {
589 buf[0] = '*';
590 buf[1] = 0;
591 return buf;
592 }
593
594 if (resolve_services) {
595 if (dg_proto == RAW_PROTO) {
596 return inet_proto_n2a(port, buf, sizeof(buf));
597 } else {
598 struct scache *c;
599 const char *res;
600 int hash = (port^(((unsigned long)dg_proto)>>2))&255;
601
ae665a52 602 for (c = &cache[hash]; c; c = c->next) {
aba5acdf
SH
603 if (c->port == port &&
604 c->proto == dg_proto) {
605 if (c->name)
606 return c->name;
607 goto do_numeric;
608 }
609 }
610
611 if ((res = __resolve_service(port)) != NULL) {
612 if ((c = malloc(sizeof(*c))) == NULL)
613 goto do_numeric;
614 } else {
615 c = &cache[hash];
616 if (c->name)
617 free(c->name);
618 }
619 c->port = port;
620 c->name = NULL;
621 c->proto = dg_proto;
622 if (res) {
623 c->name = strdup(res);
624 c->next = cache[hash].next;
625 cache[hash].next = c;
626 }
627 if (c->name)
628 return c->name;
629 }
630 }
631
632 do_numeric:
633 sprintf(buf, "%u", port);
634 return buf;
635}
636
d1f28cf1 637static void formatted_print(const inet_prefix *a, int port)
aba5acdf
SH
638{
639 char buf[1024];
640 const char *ap = buf;
641 int est_len;
642
643 est_len = addr_width;
644
645 if (a->family == AF_INET) {
646 if (a->data[0] == 0) {
647 buf[0] = '*';
648 buf[1] = 0;
649 } else {
650 ap = format_host(AF_INET, 4, a->data, buf, sizeof(buf));
651 }
652 } else {
653 ap = format_host(a->family, 16, a->data, buf, sizeof(buf));
654 est_len = strlen(ap);
655 if (est_len <= addr_width)
656 est_len = addr_width;
657 else
658 est_len = addr_width + ((est_len-addr_width+3)/4)*4;
659 }
660 printf("%*s:%-*s ", est_len, ap, serv_width, resolve_service(port));
661}
662
663struct aafilter
664{
665 inet_prefix addr;
666 int port;
667 struct aafilter *next;
668};
669
d1f28cf1
SH
670static int inet2_addr_match(const inet_prefix *a, const inet_prefix *p,
671 int plen)
aba5acdf
SH
672{
673 if (!inet_addr_match(a, p, plen))
674 return 0;
7d105b56 675
aba5acdf
SH
676 /* Cursed "v4 mapped" addresses: v4 mapped socket matches
677 * pure IPv4 rule, but v4-mapped rule selects only v4-mapped
678 * sockets. Fair? */
679 if (p->family == AF_INET && a->family == AF_INET6) {
680 if (a->data[0] == 0 && a->data[1] == 0 &&
681 a->data[2] == htonl(0xffff)) {
682 inet_prefix tmp = *a;
683 tmp.data[0] = a->data[3];
684 return inet_addr_match(&tmp, p, plen);
685 }
686 }
687 return 1;
688}
689
d1f28cf1 690static int unix_match(const inet_prefix *a, const inet_prefix *p)
aba5acdf
SH
691{
692 char *addr, *pattern;
693 memcpy(&addr, a->data, sizeof(addr));
694 memcpy(&pattern, p->data, sizeof(pattern));
695 if (pattern == NULL)
696 return 1;
697 if (addr == NULL)
698 addr = "";
699 return !fnmatch(pattern, addr, 0);
700}
701
d1f28cf1 702static int run_ssfilter(struct ssfilter *f, struct tcpstat *s)
aba5acdf
SH
703{
704 switch (f->type) {
705 case SSF_S_AUTO:
706 {
707 static int low, high=65535;
708
709 if (s->local.family == AF_UNIX) {
710 char *p;
711 memcpy(&p, s->local.data, sizeof(p));
712 return p == NULL || (p[0] == '@' && strlen(p) == 6 &&
ae665a52 713 strspn(p+1, "0123456789abcdef") == 5);
aba5acdf
SH
714 }
715 if (s->local.family == AF_PACKET)
716 return s->lport == 0 && s->local.data == 0;
717 if (s->local.family == AF_NETLINK)
718 return s->lport < 0;
719
720 if (!low) {
ab01dbbb 721 FILE *fp = ephemeral_ports_open();
aba5acdf
SH
722 if (fp) {
723 fscanf(fp, "%d%d", &low, &high);
724 fclose(fp);
725 }
726 }
727 return s->lport >= low && s->lport <= high;
728 }
729 case SSF_DCOND:
730 {
731 struct aafilter *a = (void*)f->pred;
732 if (a->addr.family == AF_UNIX)
733 return unix_match(&s->remote, &a->addr);
734 if (a->port != -1 && a->port != s->rport)
735 return 0;
736 if (a->addr.bitlen) {
737 do {
738 if (!inet2_addr_match(&s->remote, &a->addr, a->addr.bitlen))
739 return 1;
740 } while ((a = a->next) != NULL);
741 return 0;
742 }
743 return 1;
744 }
745 case SSF_SCOND:
746 {
747 struct aafilter *a = (void*)f->pred;
748 if (a->addr.family == AF_UNIX)
749 return unix_match(&s->local, &a->addr);
750 if (a->port != -1 && a->port != s->lport)
751 return 0;
752 if (a->addr.bitlen) {
753 do {
754 if (!inet2_addr_match(&s->local, &a->addr, a->addr.bitlen))
755 return 1;
ae665a52 756 } while ((a = a->next) != NULL);
aba5acdf
SH
757 return 0;
758 }
759 return 1;
760 }
761 case SSF_D_GE:
762 {
763 struct aafilter *a = (void*)f->pred;
764 return s->rport >= a->port;
765 }
766 case SSF_D_LE:
767 {
768 struct aafilter *a = (void*)f->pred;
769 return s->rport <= a->port;
770 }
771 case SSF_S_GE:
772 {
773 struct aafilter *a = (void*)f->pred;
774 return s->lport >= a->port;
775 }
776 case SSF_S_LE:
777 {
778 struct aafilter *a = (void*)f->pred;
779 return s->lport <= a->port;
780 }
781
782 /* Yup. It is recursion. Sorry. */
783 case SSF_AND:
784 return run_ssfilter(f->pred, s) && run_ssfilter(f->post, s);
785 case SSF_OR:
786 return run_ssfilter(f->pred, s) || run_ssfilter(f->post, s);
787 case SSF_NOT:
788 return !run_ssfilter(f->pred, s);
789 default:
790 abort();
791 }
792}
793
ae665a52 794/* Relocate external jumps by reloc. */
b4b0b7d5 795static void ssfilter_patch(char *a, int len, int reloc)
aba5acdf
SH
796{
797 while (len > 0) {
351efcde 798 struct inet_diag_bc_op *op = (struct inet_diag_bc_op*)a;
aba5acdf
SH
799 if (op->no == len+4)
800 op->no += reloc;
801 len -= op->yes;
802 a += op->yes;
803 }
804 if (len < 0)
805 abort();
806}
807
b4b0b7d5 808static int ssfilter_bytecompile(struct ssfilter *f, char **bytecode)
aba5acdf
SH
809{
810 switch (f->type) {
811 case SSF_S_AUTO:
812 {
813 if (!(*bytecode=malloc(4))) abort();
351efcde 814 ((struct inet_diag_bc_op*)*bytecode)[0] = (struct inet_diag_bc_op){ INET_DIAG_BC_AUTO, 4, 8 };
df39de8d 815 return 4;
aba5acdf
SH
816 }
817 case SSF_DCOND:
818 case SSF_SCOND:
819 {
820 struct aafilter *a = (void*)f->pred;
821 struct aafilter *b;
822 char *ptr;
351efcde 823 int code = (f->type == SSF_DCOND ? INET_DIAG_BC_D_COND : INET_DIAG_BC_S_COND);
aba5acdf
SH
824 int len = 0;
825
826 for (b=a; b; b=b->next) {
351efcde 827 len += 4 + sizeof(struct inet_diag_hostcond);
aba5acdf
SH
828 if (a->addr.family == AF_INET6)
829 len += 16;
830 else
831 len += 4;
832 if (b->next)
833 len += 4;
834 }
835 if (!(ptr = malloc(len))) abort();
836 *bytecode = ptr;
837 for (b=a; b; b=b->next) {
351efcde 838 struct inet_diag_bc_op *op = (struct inet_diag_bc_op *)ptr;
aba5acdf 839 int alen = (a->addr.family == AF_INET6 ? 16 : 4);
351efcde
SH
840 int oplen = alen + 4 + sizeof(struct inet_diag_hostcond);
841 struct inet_diag_hostcond *cond = (struct inet_diag_hostcond*)(ptr+4);
aba5acdf 842
351efcde 843 *op = (struct inet_diag_bc_op){ code, oplen, oplen+4 };
aba5acdf
SH
844 cond->family = a->addr.family;
845 cond->port = a->port;
846 cond->prefix_len = a->addr.bitlen;
847 memcpy(cond->addr, a->addr.data, alen);
848 ptr += oplen;
849 if (b->next) {
351efcde
SH
850 op = (struct inet_diag_bc_op *)ptr;
851 *op = (struct inet_diag_bc_op){ INET_DIAG_BC_JMP, 4, len - (ptr-*bytecode)};
aba5acdf
SH
852 ptr += 4;
853 }
854 }
855 return ptr - *bytecode;
856 }
857 case SSF_D_GE:
858 {
859 struct aafilter *x = (void*)f->pred;
860 if (!(*bytecode=malloc(8))) abort();
351efcde
SH
861 ((struct inet_diag_bc_op*)*bytecode)[0] = (struct inet_diag_bc_op){ INET_DIAG_BC_D_GE, 8, 12 };
862 ((struct inet_diag_bc_op*)*bytecode)[1] = (struct inet_diag_bc_op){ 0, 0, x->port };
aba5acdf
SH
863 return 8;
864 }
865 case SSF_D_LE:
866 {
867 struct aafilter *x = (void*)f->pred;
868 if (!(*bytecode=malloc(8))) abort();
351efcde
SH
869 ((struct inet_diag_bc_op*)*bytecode)[0] = (struct inet_diag_bc_op){ INET_DIAG_BC_D_LE, 8, 12 };
870 ((struct inet_diag_bc_op*)*bytecode)[1] = (struct inet_diag_bc_op){ 0, 0, x->port };
aba5acdf
SH
871 return 8;
872 }
873 case SSF_S_GE:
874 {
875 struct aafilter *x = (void*)f->pred;
876 if (!(*bytecode=malloc(8))) abort();
351efcde
SH
877 ((struct inet_diag_bc_op*)*bytecode)[0] = (struct inet_diag_bc_op){ INET_DIAG_BC_S_GE, 8, 12 };
878 ((struct inet_diag_bc_op*)*bytecode)[1] = (struct inet_diag_bc_op){ 0, 0, x->port };
aba5acdf
SH
879 return 8;
880 }
881 case SSF_S_LE:
882 {
883 struct aafilter *x = (void*)f->pred;
884 if (!(*bytecode=malloc(8))) abort();
351efcde
SH
885 ((struct inet_diag_bc_op*)*bytecode)[0] = (struct inet_diag_bc_op){ INET_DIAG_BC_S_LE, 8, 12 };
886 ((struct inet_diag_bc_op*)*bytecode)[1] = (struct inet_diag_bc_op){ 0, 0, x->port };
aba5acdf
SH
887 return 8;
888 }
889
890 case SSF_AND:
891 {
892 char *a1, *a2, *a, l1, l2;
893 l1 = ssfilter_bytecompile(f->pred, &a1);
894 l2 = ssfilter_bytecompile(f->post, &a2);
895 if (!(a = malloc(l1+l2))) abort();
896 memcpy(a, a1, l1);
897 memcpy(a+l1, a2, l2);
898 free(a1); free(a2);
899 ssfilter_patch(a, l1, l2);
900 *bytecode = a;
901 return l1+l2;
902 }
903 case SSF_OR:
904 {
905 char *a1, *a2, *a, l1, l2;
906 l1 = ssfilter_bytecompile(f->pred, &a1);
907 l2 = ssfilter_bytecompile(f->post, &a2);
908 if (!(a = malloc(l1+l2+4))) abort();
909 memcpy(a, a1, l1);
910 memcpy(a+l1+4, a2, l2);
911 free(a1); free(a2);
351efcde 912 *(struct inet_diag_bc_op*)(a+l1) = (struct inet_diag_bc_op){ INET_DIAG_BC_JMP, 4, l2+4 };
aba5acdf
SH
913 *bytecode = a;
914 return l1+l2+4;
915 }
916 case SSF_NOT:
917 {
918 char *a1, *a, l1;
919 l1 = ssfilter_bytecompile(f->pred, &a1);
920 if (!(a = malloc(l1+4))) abort();
921 memcpy(a, a1, l1);
922 free(a1);
351efcde 923 *(struct inet_diag_bc_op*)(a+l1) = (struct inet_diag_bc_op){ INET_DIAG_BC_JMP, 4, 8 };
aba5acdf
SH
924 *bytecode = a;
925 return l1+4;
926 }
927 default:
928 abort();
929 }
930}
931
b4b0b7d5 932static int remember_he(struct aafilter *a, struct hostent *he)
aba5acdf 933{
ae665a52 934 char **ptr = he->h_addr_list;
aba5acdf
SH
935 int cnt = 0;
936 int len;
937
938 if (he->h_addrtype == AF_INET)
939 len = 4;
940 else if (he->h_addrtype == AF_INET6)
941 len = 16;
942 else
943 return 0;
944
945 while (*ptr) {
946 struct aafilter *b = a;
947 if (a->addr.bitlen) {
948 if ((b = malloc(sizeof(*b))) == NULL)
949 return cnt;
950 *b = *a;
951 b->next = a->next;
952 a->next = b;
953 }
954 memcpy(b->addr.data, *ptr, len);
955 b->addr.bytelen = len;
956 b->addr.bitlen = len*8;
957 b->addr.family = he->h_addrtype;
958 ptr++;
959 cnt++;
960 }
961 return cnt;
962}
963
b4b0b7d5 964static int get_dns_host(struct aafilter *a, const char *addr, int fam)
aba5acdf
SH
965{
966 static int notfirst;
967 int cnt = 0;
968 struct hostent *he;
969
970 a->addr.bitlen = 0;
971 if (!notfirst) {
972 sethostent(1);
973 notfirst = 1;
974 }
975 he = gethostbyname2(addr, fam == AF_UNSPEC ? AF_INET : fam);
976 if (he)
977 cnt = remember_he(a, he);
978 if (fam == AF_UNSPEC) {
979 he = gethostbyname2(addr, AF_INET6);
980 if (he)
981 cnt += remember_he(a, he);
982 }
983 return !cnt;
984}
985
b4b0b7d5 986static int xll_initted = 0;
aba5acdf 987
b4b0b7d5 988static void xll_init(void)
aba5acdf
SH
989{
990 struct rtnl_handle rth;
991 rtnl_open(&rth, 0);
992 ll_init_map(&rth);
993 rtnl_close(&rth);
994 xll_initted = 1;
995}
996
b4b0b7d5 997static const char *xll_index_to_name(int index)
aba5acdf
SH
998{
999 if (!xll_initted)
1000 xll_init();
1001 return ll_index_to_name(index);
1002}
1003
b4b0b7d5 1004static int xll_name_to_index(const char *dev)
aba5acdf
SH
1005{
1006 if (!xll_initted)
1007 xll_init();
1008 return ll_name_to_index(dev);
1009}
1010
1011void *parse_hostcond(char *addr)
1012{
1013 char *port = NULL;
1014 struct aafilter a;
1015 struct aafilter *res;
1016 int fam = preferred_family;
1017
1018 memset(&a, 0, sizeof(a));
1019 a.port = -1;
1020
1021 if (fam == AF_UNIX || strncmp(addr, "unix:", 5) == 0) {
1022 char *p;
1023 a.addr.family = AF_UNIX;
1024 if (strncmp(addr, "unix:", 5) == 0)
1025 addr+=5;
1026 p = strdup(addr);
1027 a.addr.bitlen = 8*strlen(p);
1028 memcpy(a.addr.data, &p, sizeof(p));
1029 goto out;
1030 }
1031
1032 if (fam == AF_PACKET || strncmp(addr, "link:", 5) == 0) {
1033 a.addr.family = AF_PACKET;
1034 a.addr.bitlen = 0;
1035 if (strncmp(addr, "link:", 5) == 0)
1036 addr+=5;
1037 port = strchr(addr, ':');
1038 if (port) {
1039 *port = 0;
1040 if (port[1] && strcmp(port+1, "*")) {
1041 if (get_integer(&a.port, port+1, 0)) {
1042 if ((a.port = xll_name_to_index(port+1)) <= 0)
1043 return NULL;
1044 }
1045 }
1046 }
1047 if (addr[0] && strcmp(addr, "*")) {
1048 unsigned short tmp;
1049 a.addr.bitlen = 32;
1050 if (ll_proto_a2n(&tmp, addr))
1051 return NULL;
1052 a.addr.data[0] = ntohs(tmp);
1053 }
1054 goto out;
1055 }
1056
1057 if (fam == AF_NETLINK || strncmp(addr, "netlink:", 8) == 0) {
1058 a.addr.family = AF_NETLINK;
1059 a.addr.bitlen = 0;
1060 if (strncmp(addr, "netlink:", 8) == 0)
1061 addr+=8;
1062 port = strchr(addr, ':');
1063 if (port) {
1064 *port = 0;
1065 if (port[1] && strcmp(port+1, "*")) {
1066 if (get_integer(&a.port, port+1, 0)) {
1067 if (strcmp(port+1, "kernel") == 0)
1068 a.port = 0;
1069 else
1070 return NULL;
1071 }
1072 }
1073 }
1074 if (addr[0] && strcmp(addr, "*")) {
1075 a.addr.bitlen = 32;
1076 if (get_u32(a.addr.data, addr, 0)) {
1077 if (strcmp(addr, "rtnl") == 0)
1078 a.addr.data[0] = 0;
1079 else if (strcmp(addr, "fw") == 0)
1080 a.addr.data[0] = 3;
1081 else if (strcmp(addr, "tcpdiag") == 0)
1082 a.addr.data[0] = 4;
1083 else
1084 return NULL;
1085 }
1086 }
1087 goto out;
1088 }
1089
1090 if (strncmp(addr, "inet:", 5) == 0) {
1091 addr += 5;
1092 fam = AF_INET;
1093 } else if (strncmp(addr, "inet6:", 6) == 0) {
1094 addr += 6;
1095 fam = AF_INET6;
1096 }
1097
1098 /* URL-like literal [] */
1099 if (addr[0] == '[') {
1100 addr++;
1101 if ((port = strchr(addr, ']')) == NULL)
1102 return NULL;
1103 *port++ = 0;
1104 } else if (addr[0] == '*') {
1105 port = addr+1;
1106 } else {
1107 port = strrchr(strchr(addr, '/') ? : addr, ':');
1108 }
1109 if (port && *port) {
1110 if (*port != ':')
1111 return NULL;
1112 *port++ = 0;
1113 if (*port && *port != '*') {
1114 if (get_integer(&a.port, port, 0)) {
1115 struct servent *se1 = NULL;
1116 struct servent *se2 = NULL;
1117 if (current_filter.dbs&(1<<UDP_DB))
1118 se1 = getservbyname(port, UDP_PROTO);
1119 if (current_filter.dbs&(1<<TCP_DB))
1120 se2 = getservbyname(port, TCP_PROTO);
1121 if (se1 && se2 && se1->s_port != se2->s_port) {
1122 fprintf(stderr, "Error: ambiguous port \"%s\".\n", port);
1123 return NULL;
1124 }
1125 if (!se1)
1126 se1 = se2;
1127 if (se1) {
1128 a.port = ntohs(se1->s_port);
1129 } else {
1130 struct scache *s;
1131 for (s = rlist; s; s = s->next) {
1132 if ((s->proto == UDP_PROTO &&
1133 (current_filter.dbs&(1<<UDP_DB))) ||
1134 (s->proto == TCP_PROTO &&
1135 (current_filter.dbs&(1<<TCP_DB)))) {
1136 if (s->name && strcmp(s->name, port) == 0) {
1137 if (a.port > 0 && a.port != s->port) {
1138 fprintf(stderr, "Error: ambiguous port \"%s\".\n", port);
1139 return NULL;
1140 }
1141 a.port = s->port;
1142 }
1143 }
1144 }
1145 if (a.port <= 0) {
1146 fprintf(stderr, "Error: \"%s\" does not look like a port.\n", port);
1147 return NULL;
1148 }
1149 }
1150 }
1151 }
1152 }
1153 if (addr && *addr && *addr != '*') {
1154 if (get_prefix_1(&a.addr, addr, fam)) {
1155 if (get_dns_host(&a, addr, fam)) {
1156 fprintf(stderr, "Error: an inet prefix is expected rather than \"%s\".\n", addr);
1157 return NULL;
1158 }
1159 }
1160 }
1161
1162 out:
1163 res = malloc(sizeof(*res));
1164 if (res)
1165 memcpy(res, &a, sizeof(a));
1166 return res;
1167}
1168
ab01dbbb 1169static int tcp_show_line(char *line, const struct filter *f, int family)
aba5acdf
SH
1170{
1171 struct tcpstat s;
1172 char *loc, *rem, *data;
1173 char opt[256];
1174 int n;
1175 char *p;
ae665a52 1176
aba5acdf
SH
1177 if ((p = strchr(line, ':')) == NULL)
1178 return -1;
1179 loc = p+2;
ae665a52 1180
aba5acdf
SH
1181 if ((p = strchr(loc, ':')) == NULL)
1182 return -1;
1183 p[5] = 0;
1184 rem = p+6;
ae665a52 1185
aba5acdf
SH
1186 if ((p = strchr(rem, ':')) == NULL)
1187 return -1;
1188 p[5] = 0;
1189 data = p+6;
ae665a52 1190
aba5acdf
SH
1191 do {
1192 int state = (data[1] >= 'A') ? (data[1] - 'A' + 10) : (data[1] - '0');
1193
1194 if (!(f->states & (1<<state)))
1195 return 0;
1196 } while (0);
ae665a52 1197
aba5acdf
SH
1198 s.local.family = s.remote.family = family;
1199 if (family == AF_INET) {
1200 sscanf(loc, "%x:%x", s.local.data, (unsigned*)&s.lport);
1201 sscanf(rem, "%x:%x", s.remote.data, (unsigned*)&s.rport);
1202 s.local.bytelen = s.remote.bytelen = 4;
1203 } else {
1204 sscanf(loc, "%08x%08x%08x%08x:%x",
1205 s.local.data,
1206 s.local.data+1,
1207 s.local.data+2,
1208 s.local.data+3,
1209 &s.lport);
1210 sscanf(rem, "%08x%08x%08x%08x:%x",
1211 s.remote.data,
1212 s.remote.data+1,
1213 s.remote.data+2,
1214 s.remote.data+3,
1215 &s.rport);
1216 s.local.bytelen = s.remote.bytelen = 16;
1217 }
ae665a52 1218
aba5acdf
SH
1219 if (f->f && run_ssfilter(f->f, &s) == 0)
1220 return 0;
ae665a52 1221
aba5acdf 1222 opt[0] = 0;
e7113c61 1223 n = sscanf(data, "%x %x:%x %x:%x %x %d %d %u %d %llx %d %d %d %d %d %[^\n]\n",
aba5acdf
SH
1224 &s.state, &s.wq, &s.rq,
1225 &s.timer, &s.timeout, &s.retrs, &s.uid, &s.probes, &s.ino,
1226 &s.refcnt, &s.sk, &s.rto, &s.ato, &s.qack,
1227 &s.cwnd, &s.ssthresh, opt);
ae665a52 1228
aba5acdf
SH
1229 if (n < 17)
1230 opt[0] = 0;
ae665a52 1231
aba5acdf
SH
1232 if (n < 12) {
1233 s.rto = 0;
1234 s.cwnd = 2;
1235 s.ssthresh = -1;
1236 s.ato = s.qack = 0;
1237 }
ae665a52 1238
aba5acdf
SH
1239 if (netid_width)
1240 printf("%-*s ", netid_width, "tcp");
1241 if (state_width)
1242 printf("%-*s ", state_width, sstate_name[s.state]);
ae665a52 1243
aba5acdf 1244 printf("%-6d %-6d ", s.rq, s.wq);
ae665a52 1245
aba5acdf
SH
1246 formatted_print(&s.local, s.lport);
1247 formatted_print(&s.remote, s.rport);
ae665a52 1248
aba5acdf
SH
1249 if (show_options) {
1250 if (s.timer) {
1251 if (s.timer > 4)
1252 s.timer = 5;
1253 printf(" timer:(%s,%s,%d)",
1254 tmr_name[s.timer],
1255 print_hz_timer(s.timeout),
1256 s.timer != 1 ? s.probes : s.retrs);
1257 }
1258 }
1259 if (show_tcpinfo) {
4c1db131
SH
1260 int hz = get_user_hz();
1261 if (s.rto && s.rto != 3*hz)
1262 printf(" rto:%g", (double)s.rto/hz);
aba5acdf 1263 if (s.ato)
4c1db131 1264 printf(" ato:%g", (double)s.ato/hz);
aba5acdf
SH
1265 if (s.cwnd != 2)
1266 printf(" cwnd:%d", s.cwnd);
1267 if (s.ssthresh != -1)
1268 printf(" ssthresh:%d", s.ssthresh);
1269 if (s.qack/2)
1270 printf(" qack:%d", s.qack/2);
1271 if (s.qack&1)
1272 printf(" bidir");
1273 }
1274 if (show_users) {
1275 char ubuf[4096];
1276 if (find_users(s.ino, ubuf, sizeof(ubuf)) > 0)
1277 printf(" users:(%s)", ubuf);
1278 }
1279 if (show_details) {
1280 if (s.uid)
1281 printf(" uid:%u", (unsigned)s.uid);
e7113c61 1282 printf(" ino:%u", s.ino);
aba5acdf
SH
1283 printf(" sk:%llx", s.sk);
1284 if (opt[0])
1285 printf(" opt:\"%s\"", opt);
1286 }
1287 printf("\n");
1288
1289 return 0;
1290}
1291
ab01dbbb
SH
1292static int generic_record_read(FILE *fp,
1293 int (*worker)(char*, const struct filter *, int),
1294 const struct filter *f, int fam)
aba5acdf 1295{
ab01dbbb 1296 char line[256];
aba5acdf 1297
ab01dbbb
SH
1298 /* skip header */
1299 if (fgets(line, sizeof(line), fp) == NULL)
aba5acdf 1300 goto outerr;
ab01dbbb
SH
1301
1302 while (fgets(line, sizeof(line), fp) != NULL) {
1303 int n = strlen(line);
1304 if (n == 0 || line[n-1] != '\n') {
1305 errno = -EINVAL;
1306 return -1;
aba5acdf 1307 }
ab01dbbb 1308 line[n-1] = 0;
aba5acdf 1309
ab01dbbb
SH
1310 if (worker(line, f, fam) < 0)
1311 return 0;
1312 }
aba5acdf 1313outerr:
ab01dbbb
SH
1314
1315 return ferror(fp) ? -1 : 0;
aba5acdf 1316}
ae665a52 1317
b4b0b7d5
SH
1318static char *sprint_bw(char *buf, double bw)
1319{
ae665a52 1320 if (bw > 1000000.)
b4b0b7d5
SH
1321 sprintf(buf,"%.1fM", bw / 1000000.);
1322 else if (bw > 1000.)
1323 sprintf(buf,"%.1fK", bw / 1000.);
1324 else
1325 sprintf(buf, "%g", bw);
1326
1327 return buf;
1328}
aba5acdf 1329
351efcde 1330static void tcp_show_info(const struct nlmsghdr *nlh, struct inet_diag_msg *r)
7d105b56 1331{
351efcde 1332 struct rtattr * tb[INET_DIAG_MAX+1];
b4b0b7d5
SH
1333 char b1[64];
1334 double rtt = 0;
7d105b56 1335
351efcde 1336 parse_rtattr(tb, INET_DIAG_MAX, (struct rtattr*)(r+1),
7d105b56
SH
1337 nlh->nlmsg_len - NLMSG_LENGTH(sizeof(*r)));
1338
910b0397 1339 if (tb[INET_DIAG_SKMEMINFO]) {
c6d6c92c
ED
1340 const __u32 *skmeminfo = RTA_DATA(tb[INET_DIAG_SKMEMINFO]);
1341
1342 printf(" skmem:(r%u,rb%u,t%u,tb%u,f%u,w%u,o%u",
910b0397
SW
1343 skmeminfo[SK_MEMINFO_RMEM_ALLOC],
1344 skmeminfo[SK_MEMINFO_RCVBUF],
1345 skmeminfo[SK_MEMINFO_WMEM_ALLOC],
1346 skmeminfo[SK_MEMINFO_SNDBUF],
1347 skmeminfo[SK_MEMINFO_FWD_ALLOC],
1348 skmeminfo[SK_MEMINFO_WMEM_QUEUED],
1349 skmeminfo[SK_MEMINFO_OPTMEM]);
c6d6c92c
ED
1350
1351 if (RTA_PAYLOAD(tb[INET_DIAG_SKMEMINFO]) >=
1352 (SK_MEMINFO_BACKLOG + 1) * sizeof(__u32))
1353 printf(",bl%u", skmeminfo[SK_MEMINFO_BACKLOG]);
1354
1355 printf(")");
1356 } else if (tb[INET_DIAG_MEMINFO]) {
351efcde
SH
1357 const struct inet_diag_meminfo *minfo
1358 = RTA_DATA(tb[INET_DIAG_MEMINFO]);
7d105b56 1359 printf(" mem:(r%u,w%u,f%u,t%u)",
351efcde
SH
1360 minfo->idiag_rmem,
1361 minfo->idiag_wmem,
1362 minfo->idiag_fmem,
1363 minfo->idiag_tmem);
7d105b56
SH
1364 }
1365
351efcde 1366 if (tb[INET_DIAG_INFO]) {
05e18118 1367 struct tcp_info *info;
351efcde 1368 int len = RTA_PAYLOAD(tb[INET_DIAG_INFO]);
05e18118
SH
1369
1370 /* workaround for older kernels with less fields */
1371 if (len < sizeof(*info)) {
1372 info = alloca(sizeof(*info));
1373 memset(info, 0, sizeof(*info));
351efcde 1374 memcpy(info, RTA_DATA(tb[INET_DIAG_INFO]), len);
05e18118 1375 } else
351efcde 1376 info = RTA_DATA(tb[INET_DIAG_INFO]);
05e18118 1377
b4b0b7d5
SH
1378 if (show_options) {
1379 if (info->tcpi_options & TCPI_OPT_TIMESTAMPS)
1380 printf(" ts");
1381 if (info->tcpi_options & TCPI_OPT_SACK)
1382 printf(" sack");
1383 if (info->tcpi_options & TCPI_OPT_ECN)
1384 printf(" ecn");
719b958b
ED
1385 if (info->tcpi_options & TCPI_OPT_ECN_SEEN)
1386 printf(" ecnseen");
b4b0b7d5 1387 }
52d5ac3f 1388
351efcde 1389 if (tb[INET_DIAG_CONG])
ff24746c 1390 printf(" %s", rta_getattr_str(tb[INET_DIAG_CONG]));
ea8fc104 1391
ae665a52 1392 if (info->tcpi_options & TCPI_OPT_WSCALE)
05e18118
SH
1393 printf(" wscale:%d,%d", info->tcpi_snd_wscale,
1394 info->tcpi_rcv_wscale);
7d105b56
SH
1395 if (info->tcpi_rto && info->tcpi_rto != 3000000)
1396 printf(" rto:%g", (double)info->tcpi_rto/1000);
1397 if (info->tcpi_rtt)
1398 printf(" rtt:%g/%g", (double)info->tcpi_rtt/1000,
1399 (double)info->tcpi_rttvar/1000);
1400 if (info->tcpi_ato)
1401 printf(" ato:%g", (double)info->tcpi_ato/1000);
4d354347
BH
1402 if (info->tcpi_snd_mss)
1403 printf(" mss:%d", info->tcpi_snd_mss);
7d105b56
SH
1404 if (info->tcpi_snd_cwnd != 2)
1405 printf(" cwnd:%d", info->tcpi_snd_cwnd);
1406 if (info->tcpi_snd_ssthresh < 0xFFFF)
1407 printf(" ssthresh:%d", info->tcpi_snd_ssthresh);
52d5ac3f 1408
b4b0b7d5 1409 rtt = (double) info->tcpi_rtt;
351efcde 1410 if (tb[INET_DIAG_VEGASINFO]) {
05e18118 1411 const struct tcpvegas_info *vinfo
351efcde 1412 = RTA_DATA(tb[INET_DIAG_VEGASINFO]);
7d105b56 1413
ae665a52 1414 if (vinfo->tcpv_enabled &&
ea8fc104
SH
1415 vinfo->tcpv_rtt && vinfo->tcpv_rtt != 0x7fffffff)
1416 rtt = vinfo->tcpv_rtt;
b4b0b7d5
SH
1417 }
1418
1419 if (rtt > 0 && info->tcpi_snd_mss && info->tcpi_snd_cwnd) {
1420 printf(" send %sbps",
1421 sprint_bw(b1, (double) info->tcpi_snd_cwnd *
1422 (double) info->tcpi_snd_mss * 8000000.
1423 / rtt));
7d105b56 1424 }
b4b0b7d5
SH
1425
1426 if (info->tcpi_rcv_rtt)
1427 printf(" rcv_rtt:%g", (double) info->tcpi_rcv_rtt/1000);
1428 if (info->tcpi_rcv_space)
1429 printf(" rcv_space:%d", info->tcpi_rcv_space);
1430
7d105b56 1431 }
7d105b56 1432}
aba5acdf 1433
3fe5b534 1434static int inet_show_sock(struct nlmsghdr *nlh, struct filter *f)
aba5acdf 1435{
351efcde 1436 struct inet_diag_msg *r = NLMSG_DATA(nlh);
aba5acdf
SH
1437 struct tcpstat s;
1438
351efcde
SH
1439 s.state = r->idiag_state;
1440 s.local.family = s.remote.family = r->idiag_family;
1441 s.lport = ntohs(r->id.idiag_sport);
1442 s.rport = ntohs(r->id.idiag_dport);
aba5acdf
SH
1443 if (s.local.family == AF_INET) {
1444 s.local.bytelen = s.remote.bytelen = 4;
1445 } else {
1446 s.local.bytelen = s.remote.bytelen = 16;
1447 }
351efcde
SH
1448 memcpy(s.local.data, r->id.idiag_src, s.local.bytelen);
1449 memcpy(s.remote.data, r->id.idiag_dst, s.local.bytelen);
aba5acdf
SH
1450
1451 if (f && f->f && run_ssfilter(f->f, &s) == 0)
1452 return 0;
1453
1454 if (netid_width)
1455 printf("%-*s ", netid_width, "tcp");
1456 if (state_width)
1457 printf("%-*s ", state_width, sstate_name[s.state]);
1458
351efcde 1459 printf("%-6d %-6d ", r->idiag_rqueue, r->idiag_wqueue);
aba5acdf
SH
1460
1461 formatted_print(&s.local, s.lport);
1462 formatted_print(&s.remote, s.rport);
1463
1464 if (show_options) {
351efcde
SH
1465 if (r->idiag_timer) {
1466 if (r->idiag_timer > 4)
1467 r->idiag_timer = 5;
aba5acdf 1468 printf(" timer:(%s,%s,%d)",
351efcde
SH
1469 tmr_name[r->idiag_timer],
1470 print_ms_timer(r->idiag_expires),
1471 r->idiag_retrans);
aba5acdf
SH
1472 }
1473 }
1474 if (show_users) {
1475 char ubuf[4096];
351efcde 1476 if (find_users(r->idiag_inode, ubuf, sizeof(ubuf)) > 0)
aba5acdf
SH
1477 printf(" users:(%s)", ubuf);
1478 }
1479 if (show_details) {
351efcde
SH
1480 if (r->idiag_uid)
1481 printf(" uid:%u", (unsigned)r->idiag_uid);
e7113c61 1482 printf(" ino:%u", r->idiag_inode);
bbe32053 1483 printf(" sk:");
351efcde
SH
1484 if (r->id.idiag_cookie[1] != 0)
1485 printf("%08x", r->id.idiag_cookie[1]);
bbe32053 1486 printf("%08x", r->id.idiag_cookie[0]);
aba5acdf
SH
1487 }
1488 if (show_mem || show_tcpinfo) {
7d105b56
SH
1489 printf("\n\t");
1490 tcp_show_info(nlh, r);
aba5acdf 1491 }
7d105b56 1492
aba5acdf
SH
1493 printf("\n");
1494
1495 return 0;
aba5acdf
SH
1496}
1497
746a695f 1498static int tcpdiag_send(int fd, int protocol, struct filter *f)
aba5acdf 1499{
aba5acdf
SH
1500 struct sockaddr_nl nladdr;
1501 struct {
1502 struct nlmsghdr nlh;
351efcde 1503 struct inet_diag_req r;
aba5acdf
SH
1504 } req;
1505 char *bc = NULL;
1506 int bclen;
1507 struct msghdr msg;
1508 struct rtattr rta;
aba5acdf
SH
1509 struct iovec iov[3];
1510
346f8ca8
PE
1511 if (protocol == IPPROTO_UDP)
1512 return -1;
1513
aba5acdf
SH
1514 memset(&nladdr, 0, sizeof(nladdr));
1515 nladdr.nl_family = AF_NETLINK;
1516
1517 req.nlh.nlmsg_len = sizeof(req);
3fe5b534
PE
1518 if (protocol == IPPROTO_TCP)
1519 req.nlh.nlmsg_type = TCPDIAG_GETSOCK;
1520 else
1521 req.nlh.nlmsg_type = DCCPDIAG_GETSOCK;
aba5acdf
SH
1522 req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
1523 req.nlh.nlmsg_pid = 0;
1524 req.nlh.nlmsg_seq = 123456;
1525 memset(&req.r, 0, sizeof(req.r));
351efcde
SH
1526 req.r.idiag_family = AF_INET;
1527 req.r.idiag_states = f->states;
910b0397 1528 if (show_mem) {
ae665a52 1529 req.r.idiag_ext |= (1<<(INET_DIAG_MEMINFO-1));
910b0397
SW
1530 req.r.idiag_ext |= (1<<(INET_DIAG_SKMEMINFO-1));
1531 }
b4b0b7d5 1532
7d105b56 1533 if (show_tcpinfo) {
351efcde
SH
1534 req.r.idiag_ext |= (1<<(INET_DIAG_INFO-1));
1535 req.r.idiag_ext |= (1<<(INET_DIAG_VEGASINFO-1));
1536 req.r.idiag_ext |= (1<<(INET_DIAG_CONG-1));
7d105b56 1537 }
aba5acdf 1538
ae665a52
SH
1539 iov[0] = (struct iovec){
1540 .iov_base = &req,
1541 .iov_len = sizeof(req)
ea8fc104 1542 };
aba5acdf
SH
1543 if (f->f) {
1544 bclen = ssfilter_bytecompile(f->f, &bc);
351efcde 1545 rta.rta_type = INET_DIAG_REQ_BYTECODE;
aba5acdf
SH
1546 rta.rta_len = RTA_LENGTH(bclen);
1547 iov[1] = (struct iovec){ &rta, sizeof(rta) };
1548 iov[2] = (struct iovec){ bc, bclen };
1549 req.nlh.nlmsg_len += RTA_LENGTH(bclen);
1550 }
1551
1552 msg = (struct msghdr) {
ae665a52 1553 .msg_name = (void*)&nladdr,
ea8fc104 1554 .msg_namelen = sizeof(nladdr),
ae665a52 1555 .msg_iov = iov,
ea8fc104 1556 .msg_iovlen = f->f ? 3 : 1,
aba5acdf
SH
1557 };
1558
930a75f9
ED
1559 if (sendmsg(fd, &msg, 0) < 0) {
1560 close(fd);
aba5acdf 1561 return -1;
930a75f9 1562 }
aba5acdf 1563
746a695f
PE
1564 return 0;
1565}
1566
886d19d6
PE
1567static int sockdiag_send(int family, int fd, int protocol, struct filter *f)
1568{
1569 struct sockaddr_nl nladdr;
1570 struct {
1571 struct nlmsghdr nlh;
1572 struct inet_diag_req_v2 r;
1573 } req;
1574 char *bc = NULL;
1575 int bclen;
1576 struct msghdr msg;
1577 struct rtattr rta;
1578 struct iovec iov[3];
1579
1580 if (family == PF_UNSPEC)
1581 return tcpdiag_send(fd, protocol, f);
1582
1583 memset(&nladdr, 0, sizeof(nladdr));
1584 nladdr.nl_family = AF_NETLINK;
1585
1586 req.nlh.nlmsg_len = sizeof(req);
1587 req.nlh.nlmsg_type = SOCK_DIAG_BY_FAMILY;
1588 req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
1589 req.nlh.nlmsg_pid = 0;
1590 req.nlh.nlmsg_seq = 123456;
1591 memset(&req.r, 0, sizeof(req.r));
1592 req.r.sdiag_family = family;
1593 req.r.sdiag_protocol = protocol;
1594 req.r.idiag_states = f->states;
1595 if (show_mem) {
1596 req.r.idiag_ext |= (1<<(INET_DIAG_MEMINFO-1));
1597 req.r.idiag_ext |= (1<<(INET_DIAG_SKMEMINFO-1));
1598 }
1599
1600 if (show_tcpinfo) {
1601 req.r.idiag_ext |= (1<<(INET_DIAG_INFO-1));
1602 req.r.idiag_ext |= (1<<(INET_DIAG_VEGASINFO-1));
1603 req.r.idiag_ext |= (1<<(INET_DIAG_CONG-1));
1604 }
1605
1606 iov[0] = (struct iovec){
1607 .iov_base = &req,
1608 .iov_len = sizeof(req)
1609 };
1610 if (f->f) {
1611 bclen = ssfilter_bytecompile(f->f, &bc);
1612 rta.rta_type = INET_DIAG_REQ_BYTECODE;
1613 rta.rta_len = RTA_LENGTH(bclen);
1614 iov[1] = (struct iovec){ &rta, sizeof(rta) };
1615 iov[2] = (struct iovec){ bc, bclen };
1616 req.nlh.nlmsg_len += RTA_LENGTH(bclen);
1617 }
1618
1619 msg = (struct msghdr) {
1620 .msg_name = (void*)&nladdr,
1621 .msg_namelen = sizeof(nladdr),
1622 .msg_iov = iov,
1623 .msg_iovlen = f->f ? 3 : 1,
1624 };
1625
1626 if (sendmsg(fd, &msg, 0) < 0) {
1627 close(fd);
1628 return -1;
1629 }
1630
1631 return 0;
1632}
1633
746a695f
PE
1634static int inet_show_netlink(struct filter *f, FILE *dump_fp, int protocol)
1635{
886d19d6 1636 int fd, family;
746a695f
PE
1637 struct sockaddr_nl nladdr;
1638 struct msghdr msg;
1639 char buf[8192];
1640 struct iovec iov[3];
1641
1642 if ((fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_INET_DIAG)) < 0)
1643 return -1;
1644
886d19d6
PE
1645 family = PF_INET;
1646again:
1647 if (sockdiag_send(family, fd, protocol, f))
746a695f
PE
1648 return -1;
1649
1650 memset(&nladdr, 0, sizeof(nladdr));
1651 nladdr.nl_family = AF_NETLINK;
1652
ae665a52
SH
1653 iov[0] = (struct iovec){
1654 .iov_base = buf,
1655 .iov_len = sizeof(buf)
ea8fc104 1656 };
aba5acdf
SH
1657
1658 while (1) {
1659 int status;
1660 struct nlmsghdr *h;
1661
1662 msg = (struct msghdr) {
1663 (void*)&nladdr, sizeof(nladdr),
1664 iov, 1,
1665 NULL, 0,
1666 0
1667 };
1668
1669 status = recvmsg(fd, &msg, 0);
1670
1671 if (status < 0) {
1672 if (errno == EINTR)
1673 continue;
1674 perror("OVERRUN");
1675 continue;
1676 }
1677 if (status == 0) {
1678 fprintf(stderr, "EOF on netlink\n");
c51577cd 1679 close(fd);
aba5acdf
SH
1680 return 0;
1681 }
1682
1683 if (dump_fp)
1684 fwrite(buf, 1, NLMSG_ALIGN(status), dump_fp);
1685
1686 h = (struct nlmsghdr*)buf;
1687 while (NLMSG_OK(h, status)) {
1688 int err;
a37b01c1 1689 struct inet_diag_msg *r = NLMSG_DATA(h);
aba5acdf
SH
1690
1691 if (/*h->nlmsg_pid != rth->local.nl_pid ||*/
1692 h->nlmsg_seq != 123456)
1693 goto skip_it;
1694
886d19d6
PE
1695 if (h->nlmsg_type == NLMSG_DONE)
1696 goto done;
1697
aba5acdf
SH
1698 if (h->nlmsg_type == NLMSG_ERROR) {
1699 struct nlmsgerr *err = (struct nlmsgerr*)NLMSG_DATA(h);
1700 if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
1701 fprintf(stderr, "ERROR truncated\n");
1702 } else {
886d19d6
PE
1703 if (family != PF_UNSPEC) {
1704 family = PF_UNSPEC;
1705 goto again;
1706 }
1707
aba5acdf 1708 errno = -err->error;
930a75f9
ED
1709 if (errno == EOPNOTSUPP) {
1710 close(fd);
1711 return -1;
1712 }
aba5acdf
SH
1713 perror("TCPDIAG answers");
1714 }
886d19d6
PE
1715
1716 goto done;
aba5acdf
SH
1717 }
1718 if (!dump_fp) {
a37b01c1
LY
1719 if (!(f->families & (1<<r->idiag_family))) {
1720 h = NLMSG_NEXT(h, status);
1721 continue;
1722 }
3fe5b534 1723 err = inet_show_sock(h, NULL);
c51577cd
MT
1724 if (err < 0) {
1725 close(fd);
aba5acdf 1726 return err;
c51577cd 1727 }
aba5acdf
SH
1728 }
1729
1730skip_it:
1731 h = NLMSG_NEXT(h, status);
1732 }
1733 if (msg.msg_flags & MSG_TRUNC) {
1734 fprintf(stderr, "Message truncated\n");
1735 continue;
1736 }
1737 if (status) {
1738 fprintf(stderr, "!!!Remnant of size %d\n", status);
1739 exit(1);
1740 }
1741 }
886d19d6
PE
1742done:
1743 if (family == PF_INET) {
1744 family = PF_INET6;
1745 goto again;
1746 }
1747
c51577cd 1748 close(fd);
aba5acdf
SH
1749 return 0;
1750}
1751
ab01dbbb 1752static int tcp_show_netlink_file(struct filter *f)
aba5acdf
SH
1753{
1754 FILE *fp;
1755 char buf[8192];
1756
1757 if ((fp = fopen(getenv("TCPDIAG_FILE"), "r")) == NULL) {
1758 perror("fopen($TCPDIAG_FILE)");
1759 return -1;
1760 }
1761
1762 while (1) {
1763 int status, err;
1764 struct nlmsghdr *h = (struct nlmsghdr*)buf;
1765
1766 status = fread(buf, 1, sizeof(*h), fp);
1767 if (status < 0) {
1768 perror("Reading header from $TCPDIAG_FILE");
1769 return -1;
1770 }
1771 if (status != sizeof(*h)) {
1772 perror("Unexpected EOF reading $TCPDIAG_FILE");
1773 return -1;
1774 }
1775
1776 status = fread(h+1, 1, NLMSG_ALIGN(h->nlmsg_len-sizeof(*h)), fp);
1777
1778 if (status < 0) {
1779 perror("Reading $TCPDIAG_FILE");
1780 return -1;
1781 }
1782 if (status + sizeof(*h) < h->nlmsg_len) {
1783 perror("Unexpected EOF reading $TCPDIAG_FILE");
1784 return -1;
1785 }
1786
1787 /* The only legal exit point */
1788 if (h->nlmsg_type == NLMSG_DONE)
1789 return 0;
1790
1791 if (h->nlmsg_type == NLMSG_ERROR) {
1792 struct nlmsgerr *err = (struct nlmsgerr*)NLMSG_DATA(h);
1793 if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
1794 fprintf(stderr, "ERROR truncated\n");
1795 } else {
1796 errno = -err->error;
1797 perror("TCPDIAG answered");
1798 }
1799 return -1;
1800 }
1801
3fe5b534 1802 err = inet_show_sock(h, f);
aba5acdf
SH
1803 if (err < 0)
1804 return err;
1805 }
1806}
1807
ab01dbbb 1808static int tcp_show(struct filter *f, int socktype)
aba5acdf 1809{
ab01dbbb 1810 FILE *fp = NULL;
aba5acdf
SH
1811 char *buf = NULL;
1812 int bufsize = 64*1024;
1813
1814 dg_proto = TCP_PROTO;
1815
1816 if (getenv("TCPDIAG_FILE"))
1817 return tcp_show_netlink_file(f);
1818
1819 if (!getenv("PROC_NET_TCP") && !getenv("PROC_ROOT")
3fe5b534 1820 && inet_show_netlink(f, NULL, socktype) == 0)
aba5acdf
SH
1821 return 0;
1822
1823 /* Sigh... We have to parse /proc/net/tcp... */
1824
ab01dbbb 1825
aba5acdf
SH
1826 /* Estimate amount of sockets and try to allocate
1827 * huge buffer to read all the table at one read.
1828 * Limit it by 16MB though. The assumption is: as soon as
1829 * kernel was able to hold information about N connections,
1830 * it is able to give us some memory for snapshot.
1831 */
1832 if (1) {
1833 int guess = slabstat.socks+slabstat.tcp_syns;
1834 if (f->states&(1<<SS_TIME_WAIT))
1835 guess += slabstat.tcp_tws;
1836 if (guess > (16*1024*1024)/128)
1837 guess = (16*1024*1024)/128;
1838 guess *= 128;
1839 if (guess > bufsize)
1840 bufsize = guess;
1841 }
1842 while (bufsize >= 64*1024) {
1843 if ((buf = malloc(bufsize)) != NULL)
1844 break;
1845 bufsize /= 2;
1846 }
1847 if (buf == NULL) {
1848 errno = ENOMEM;
1849 return -1;
1850 }
1851
1852 if (f->families & (1<<AF_INET)) {
69cae645 1853 if ((fp = net_tcp_open()) == NULL)
aba5acdf 1854 goto outerr;
ab01dbbb
SH
1855
1856 setbuffer(fp, buf, bufsize);
1857 if (generic_record_read(fp, tcp_show_line, f, AF_INET))
aba5acdf 1858 goto outerr;
ab01dbbb 1859 fclose(fp);
aba5acdf
SH
1860 }
1861
1862 if ((f->families & (1<<AF_INET6)) &&
69cae645 1863 (fp = net_tcp6_open()) != NULL) {
ab01dbbb
SH
1864 setbuffer(fp, buf, bufsize);
1865 if (generic_record_read(fp, tcp_show_line, f, AF_INET6))
aba5acdf 1866 goto outerr;
ab01dbbb 1867 fclose(fp);
aba5acdf
SH
1868 }
1869
1870 free(buf);
1871 return 0;
1872
1873outerr:
1874 do {
1875 int saved_errno = errno;
1876 if (buf)
1877 free(buf);
ab01dbbb
SH
1878 if (fp)
1879 fclose(fp);
aba5acdf
SH
1880 errno = saved_errno;
1881 return -1;
1882 } while (0);
1883}
1884
1885
d1f28cf1 1886static int dgram_show_line(char *line, const struct filter *f, int family)
aba5acdf
SH
1887{
1888 struct tcpstat s;
1889 char *loc, *rem, *data;
1890 char opt[256];
1891 int n;
1892 char *p;
1893
1894 if ((p = strchr(line, ':')) == NULL)
1895 return -1;
1896 loc = p+2;
1897
1898 if ((p = strchr(loc, ':')) == NULL)
1899 return -1;
1900 p[5] = 0;
1901 rem = p+6;
1902
1903 if ((p = strchr(rem, ':')) == NULL)
1904 return -1;
1905 p[5] = 0;
1906 data = p+6;
1907
1908 do {
1909 int state = (data[1] >= 'A') ? (data[1] - 'A' + 10) : (data[1] - '0');
1910
1911 if (!(f->states & (1<<state)))
1912 return 0;
1913 } while (0);
1914
1915 s.local.family = s.remote.family = family;
1916 if (family == AF_INET) {
1917 sscanf(loc, "%x:%x", s.local.data, (unsigned*)&s.lport);
1918 sscanf(rem, "%x:%x", s.remote.data, (unsigned*)&s.rport);
1919 s.local.bytelen = s.remote.bytelen = 4;
1920 } else {
1921 sscanf(loc, "%08x%08x%08x%08x:%x",
1922 s.local.data,
1923 s.local.data+1,
1924 s.local.data+2,
1925 s.local.data+3,
1926 &s.lport);
1927 sscanf(rem, "%08x%08x%08x%08x:%x",
1928 s.remote.data,
1929 s.remote.data+1,
1930 s.remote.data+2,
1931 s.remote.data+3,
1932 &s.rport);
1933 s.local.bytelen = s.remote.bytelen = 16;
1934 }
1935
1936 if (f->f && run_ssfilter(f->f, &s) == 0)
1937 return 0;
1938
1939 opt[0] = 0;
e7113c61 1940 n = sscanf(data, "%x %x:%x %*x:%*x %*x %d %*d %u %d %llx %[^\n]\n",
aba5acdf
SH
1941 &s.state, &s.wq, &s.rq,
1942 &s.uid, &s.ino,
1943 &s.refcnt, &s.sk, opt);
1944
1945 if (n < 9)
1946 opt[0] = 0;
1947
1948 if (netid_width)
1949 printf("%-*s ", netid_width, dg_proto);
1950 if (state_width)
1951 printf("%-*s ", state_width, sstate_name[s.state]);
1952
1953 printf("%-6d %-6d ", s.rq, s.wq);
1954
1955 formatted_print(&s.local, s.lport);
1956 formatted_print(&s.remote, s.rport);
1957
1958 if (show_users) {
1959 char ubuf[4096];
1960 if (find_users(s.ino, ubuf, sizeof(ubuf)) > 0)
1961 printf(" users:(%s)", ubuf);
1962 }
1963
1964 if (show_details) {
1965 if (s.uid)
1966 printf(" uid=%u", (unsigned)s.uid);
e7113c61 1967 printf(" ino=%u", s.ino);
aba5acdf
SH
1968 printf(" sk=%llx", s.sk);
1969 if (opt[0])
1970 printf(" opt:\"%s\"", opt);
1971 }
1972 printf("\n");
1973
1974 return 0;
1975}
1976
1977
d1f28cf1 1978static int udp_show(struct filter *f)
aba5acdf 1979{
ab01dbbb 1980 FILE *fp = NULL;
aba5acdf 1981
346f8ca8
PE
1982 if (!getenv("PROC_NET_UDP") && !getenv("PROC_ROOT")
1983 && inet_show_netlink(f, NULL, IPPROTO_UDP) == 0)
1984 return 0;
1985
aba5acdf
SH
1986 dg_proto = UDP_PROTO;
1987
1988 if (f->families&(1<<AF_INET)) {
69cae645 1989 if ((fp = net_udp_open()) == NULL)
aba5acdf 1990 goto outerr;
ab01dbbb 1991 if (generic_record_read(fp, dgram_show_line, f, AF_INET))
aba5acdf 1992 goto outerr;
ab01dbbb 1993 fclose(fp);
aba5acdf
SH
1994 }
1995
1996 if ((f->families&(1<<AF_INET6)) &&
69cae645 1997 (fp = net_udp6_open()) != NULL) {
ab01dbbb 1998 if (generic_record_read(fp, dgram_show_line, f, AF_INET6))
aba5acdf 1999 goto outerr;
ab01dbbb 2000 fclose(fp);
aba5acdf
SH
2001 }
2002 return 0;
2003
2004outerr:
2005 do {
2006 int saved_errno = errno;
ab01dbbb
SH
2007 if (fp)
2008 fclose(fp);
aba5acdf
SH
2009 errno = saved_errno;
2010 return -1;
2011 } while (0);
2012}
2013
d1f28cf1 2014static int raw_show(struct filter *f)
aba5acdf 2015{
ab01dbbb 2016 FILE *fp = NULL;
aba5acdf
SH
2017
2018 dg_proto = RAW_PROTO;
2019
2020 if (f->families&(1<<AF_INET)) {
69cae645 2021 if ((fp = net_raw_open()) == NULL)
aba5acdf 2022 goto outerr;
ab01dbbb 2023 if (generic_record_read(fp, dgram_show_line, f, AF_INET))
aba5acdf 2024 goto outerr;
ab01dbbb 2025 fclose(fp);
aba5acdf
SH
2026 }
2027
2028 if ((f->families&(1<<AF_INET6)) &&
69cae645 2029 (fp = net_raw6_open()) != NULL) {
ab01dbbb 2030 if (generic_record_read(fp, dgram_show_line, f, AF_INET6))
aba5acdf 2031 goto outerr;
ab01dbbb 2032 fclose(fp);
aba5acdf
SH
2033 }
2034 return 0;
2035
2036outerr:
2037 do {
2038 int saved_errno = errno;
ab01dbbb
SH
2039 if (fp)
2040 fclose(fp);
aba5acdf
SH
2041 errno = saved_errno;
2042 return -1;
2043 } while (0);
2044}
2045
2046
2047struct unixstat
2048{
2049 struct unixstat *next;
2050 int ino;
2051 int peer;
2052 int rq;
2053 int wq;
2054 int state;
2055 int type;
2056 char *name;
2057};
2058
2059
2060
2061int unix_state_map[] = { SS_CLOSE, SS_SYN_SENT,
2062 SS_ESTABLISHED, SS_CLOSING };
2063
2064
2065#define MAX_UNIX_REMEMBER (1024*1024/sizeof(struct unixstat))
2066
d1f28cf1 2067static void unix_list_free(struct unixstat *list)
aba5acdf
SH
2068{
2069 while (list) {
2070 struct unixstat *s = list;
2071 list = list->next;
2072 if (s->name)
2073 free(s->name);
2074 free(s);
2075 }
2076}
2077
d1f28cf1 2078static void unix_list_print(struct unixstat *list, struct filter *f)
aba5acdf
SH
2079{
2080 struct unixstat *s;
2081 char *peer;
2082
2083 for (s = list; s; s = s->next) {
2084 if (!(f->states & (1<<s->state)))
2085 continue;
2086 if (s->type == SOCK_STREAM && !(f->dbs&(1<<UNIX_ST_DB)))
2087 continue;
2088 if (s->type == SOCK_DGRAM && !(f->dbs&(1<<UNIX_DG_DB)))
2089 continue;
2090
2091 peer = "*";
2092 if (s->peer) {
2093 struct unixstat *p;
2094 for (p = list; p; p = p->next) {
2095 if (s->peer == p->ino)
2096 break;
2097 }
2098 if (!p) {
2099 peer = "?";
2100 } else {
2101 peer = p->name ? : "*";
2102 }
2103 }
2104
2105 if (f->f) {
2106 struct tcpstat tst;
2107 tst.local.family = AF_UNIX;
2108 tst.remote.family = AF_UNIX;
2109 memcpy(tst.local.data, &s->name, sizeof(s->name));
2110 if (strcmp(peer, "*") == 0)
2111 memset(tst.remote.data, 0, sizeof(peer));
2112 else
ae665a52 2113 memcpy(tst.remote.data, &peer, sizeof(peer));
aba5acdf
SH
2114 if (run_ssfilter(f->f, &tst) == 0)
2115 continue;
2116 }
2117
2118 if (netid_width)
ae665a52 2119 printf("%-*s ", netid_width,
aba5acdf
SH
2120 s->type == SOCK_STREAM ? "u_str" : "u_dgr");
2121 if (state_width)
2122 printf("%-*s ", state_width, sstate_name[s->state]);
2123 printf("%-6d %-6d ", s->rq, s->wq);
2124 printf("%*s %-*d %*s %-*d",
2125 addr_width, s->name ? : "*", serv_width, s->ino,
2126 addr_width, peer, serv_width, s->peer);
2127 if (show_users) {
2128 char ubuf[4096];
2129 if (find_users(s->ino, ubuf, sizeof(ubuf)) > 0)
2130 printf(" users:(%s)", ubuf);
2131 }
2132 printf("\n");
2133 }
2134}
2135
dfbaa90d
PE
2136static int unix_show_sock(struct nlmsghdr *nlh, struct filter *f)
2137{
2138 struct unix_diag_msg *r = NLMSG_DATA(nlh);
2139 struct rtattr *tb[UNIX_DIAG_MAX+1];
2140 char name[128];
2141 int peer_ino;
defd61ca 2142 __u32 rqlen, wqlen;
dfbaa90d
PE
2143
2144 parse_rtattr(tb, UNIX_DIAG_MAX, (struct rtattr*)(r+1),
2145 nlh->nlmsg_len - NLMSG_LENGTH(sizeof(*r)));
2146
2147 if (netid_width)
2148 printf("%-*s ", netid_width,
2149 r->udiag_type == SOCK_STREAM ? "u_str" : "u_dgr");
2150 if (state_width)
2151 printf("%-*s ", state_width, sstate_name[r->udiag_state]);
2152
defd61ca
HFS
2153 if (tb[UNIX_DIAG_RQLEN]) {
2154 struct unix_diag_rqlen *rql = RTA_DATA(tb[UNIX_DIAG_RQLEN]);
2155 rqlen = rql->udiag_rqueue;
2156 wqlen = rql->udiag_wqueue;
2157 } else {
dfbaa90d 2158 rqlen = 0;
defd61ca
HFS
2159 wqlen = 0;
2160 }
dfbaa90d 2161
defd61ca 2162 printf("%-6u %-6u ", rqlen, wqlen);
dfbaa90d
PE
2163
2164 if (tb[UNIX_DIAG_NAME]) {
2165 int len = RTA_PAYLOAD(tb[UNIX_DIAG_NAME]);
2166
2167 memcpy(name, RTA_DATA(tb[UNIX_DIAG_NAME]), len);
2168 name[len] = '\0';
2169 if (name[0] == '\0')
2170 name[0] = '@';
2171 } else
2172 sprintf(name, "*");
2173
2174 if (tb[UNIX_DIAG_PEER])
5048f9a0 2175 peer_ino = rta_getattr_u32(tb[UNIX_DIAG_PEER]);
dfbaa90d
PE
2176 else
2177 peer_ino = 0;
2178
2179 printf("%*s %-*d %*s %-*d",
2180 addr_width, name,
2181 serv_width, r->udiag_ino,
2182 addr_width, "*", /* FIXME */
2183 serv_width, peer_ino);
2184
2185 if (show_users) {
2186 char ubuf[4096];
2187 if (find_users(r->udiag_ino, ubuf, sizeof(ubuf)) > 0)
2188 printf(" users:(%s)", ubuf);
2189 }
2190
2191 printf("\n");
2192
2193 return 0;
2194}
2195
2196static int unix_show_netlink(struct filter *f, FILE *dump_fp)
2197{
2198 int fd;
dfbaa90d
PE
2199 struct {
2200 struct nlmsghdr nlh;
2201 struct unix_diag_req r;
2202 } req;
dfbaa90d 2203 char buf[8192];
dfbaa90d
PE
2204
2205 if ((fd = socket(AF_NETLINK, SOCK_RAW, NETLINK_INET_DIAG)) < 0)
2206 return -1;
2207
2728f598 2208 memset(&req, 0, sizeof(req));
dfbaa90d
PE
2209 req.nlh.nlmsg_len = sizeof(req);
2210 req.nlh.nlmsg_type = SOCK_DIAG_BY_FAMILY;
2211 req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
dfbaa90d 2212 req.nlh.nlmsg_seq = 123456;
2728f598 2213
dfbaa90d 2214 req.r.sdiag_family = AF_UNIX;
dfbaa90d
PE
2215 req.r.udiag_states = f->states;
2216 req.r.udiag_show = UDIAG_SHOW_NAME | UDIAG_SHOW_PEER | UDIAG_SHOW_RQLEN;
2217
2728f598 2218 if (send(fd, &req, sizeof(req), 0) < 0) {
a3fd8e58 2219 close(fd);
dfbaa90d 2220 return -1;
a3fd8e58 2221 }
dfbaa90d 2222
dfbaa90d 2223 while (1) {
2728f598 2224 ssize_t status;
dfbaa90d 2225 struct nlmsghdr *h;
2728f598
SH
2226 struct sockaddr_nl nladdr;
2227 socklen_t slen = sizeof(nladdr);
dfbaa90d 2228
2728f598
SH
2229 status = recvfrom(fd, buf, sizeof(buf), 0,
2230 (struct sockaddr *) &nladdr, &slen);
dfbaa90d
PE
2231 if (status < 0) {
2232 if (errno == EINTR)
2233 continue;
2234 perror("OVERRUN");
2235 continue;
2236 }
2237 if (status == 0) {
2238 fprintf(stderr, "EOF on netlink\n");
2728f598 2239 goto close_it;
dfbaa90d
PE
2240 }
2241
2242 if (dump_fp)
2243 fwrite(buf, 1, NLMSG_ALIGN(status), dump_fp);
2244
2245 h = (struct nlmsghdr*)buf;
2246 while (NLMSG_OK(h, status)) {
2247 int err;
2248
2249 if (/*h->nlmsg_pid != rth->local.nl_pid ||*/
2250 h->nlmsg_seq != 123456)
2251 goto skip_it;
2252
2728f598
SH
2253 if (h->nlmsg_type == NLMSG_DONE)
2254 goto close_it;
2255
dfbaa90d
PE
2256 if (h->nlmsg_type == NLMSG_ERROR) {
2257 struct nlmsgerr *err = (struct nlmsgerr*)NLMSG_DATA(h);
2258 if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
2259 fprintf(stderr, "ERROR truncated\n");
2260 } else {
2261 errno = -err->error;
a3fd8e58
ED
2262 if (errno != ENOENT)
2263 fprintf(stderr, "UDIAG answers %d\n", errno);
dfbaa90d 2264 }
a3fd8e58
ED
2265 close(fd);
2266 return -1;
dfbaa90d
PE
2267 }
2268 if (!dump_fp) {
2269 err = unix_show_sock(h, f);
a3fd8e58
ED
2270 if (err < 0) {
2271 close(fd);
dfbaa90d 2272 return err;
a3fd8e58 2273 }
dfbaa90d
PE
2274 }
2275
2276skip_it:
2277 h = NLMSG_NEXT(h, status);
2278 }
2728f598 2279
dfbaa90d 2280 if (status) {
2728f598 2281 fprintf(stderr, "!!!Remnant of size %zd\n", status);
dfbaa90d
PE
2282 exit(1);
2283 }
2284 }
2728f598
SH
2285
2286close_it:
a3fd8e58 2287 close(fd);
dfbaa90d
PE
2288 return 0;
2289}
2290
d1f28cf1 2291static int unix_show(struct filter *f)
aba5acdf
SH
2292{
2293 FILE *fp;
2294 char buf[256];
2295 char name[128];
2296 int newformat = 0;
2297 int cnt;
2298 struct unixstat *list = NULL;
2299
dfbaa90d
PE
2300 if (!getenv("PROC_NET_UNIX") && !getenv("PROC_ROOT")
2301 && unix_show_netlink(f, NULL) == 0)
2302 return 0;
2303
ab01dbbb 2304 if ((fp = net_unix_open()) == NULL)
aba5acdf
SH
2305 return -1;
2306 fgets(buf, sizeof(buf)-1, fp);
2307
ae665a52 2308 if (memcmp(buf, "Peer", 4) == 0)
aba5acdf
SH
2309 newformat = 1;
2310 cnt = 0;
2311
2312 while (fgets(buf, sizeof(buf)-1, fp)) {
2313 struct unixstat *u, **insp;
2314 int flags;
2315
2316 if (!(u = malloc(sizeof(*u))))
2317 break;
2318 u->name = NULL;
2319
2320 if (sscanf(buf, "%x: %x %x %x %x %x %d %s",
2321 &u->peer, &u->rq, &u->wq, &flags, &u->type,
2322 &u->state, &u->ino, name) < 8)
2323 name[0] = 0;
2324
2325 if (flags&(1<<16)) {
2326 u->state = SS_LISTEN;
2327 } else {
2328 u->state = unix_state_map[u->state-1];
2329 if (u->type == SOCK_DGRAM &&
2330 u->state == SS_CLOSE &&
2331 u->peer)
2332 u->state = SS_ESTABLISHED;
2333 }
2334
2335 if (!newformat) {
2336 u->peer = 0;
2337 u->rq = 0;
2338 u->wq = 0;
2339 }
2340
2341 insp = &list;
2342 while (*insp) {
2343 if (u->type < (*insp)->type ||
2344 (u->type == (*insp)->type &&
2345 u->ino < (*insp)->ino))
2346 break;
2347 insp = &(*insp)->next;
2348 }
2349 u->next = *insp;
2350 *insp = u;
2351
2352 if (name[0]) {
2353 if ((u->name = malloc(strlen(name)+1)) == NULL)
2354 break;
2355 strcpy(u->name, name);
2356 }
2357 if (++cnt > MAX_UNIX_REMEMBER) {
2358 unix_list_print(list, f);
2359 unix_list_free(list);
2360 list = NULL;
2361 cnt = 0;
2362 }
2363 }
a3fd8e58 2364 fclose(fp);
aba5acdf
SH
2365 if (list) {
2366 unix_list_print(list, f);
2367 unix_list_free(list);
2368 list = NULL;
2369 cnt = 0;
2370 }
2371
2372 return 0;
2373}
2374
2375
d1f28cf1 2376static int packet_show(struct filter *f)
aba5acdf
SH
2377{
2378 FILE *fp;
2379 char buf[256];
2380 int type;
2381 int prot;
2382 int iface;
2383 int state;
2384 int rq;
2385 int uid;
2386 int ino;
2387 unsigned long long sk;
2388
2389 if (!(f->states & (1<<SS_CLOSE)))
2390 return 0;
2391
ab01dbbb 2392 if ((fp = net_packet_open()) == NULL)
aba5acdf
SH
2393 return -1;
2394 fgets(buf, sizeof(buf)-1, fp);
2395
2396 while (fgets(buf, sizeof(buf)-1, fp)) {
2397 sscanf(buf, "%llx %*d %d %x %d %d %u %u %u",
2398 &sk,
2399 &type, &prot, &iface, &state,
2400 &rq, &uid, &ino);
2401
2402 if (type == SOCK_RAW && !(f->dbs&(1<<PACKET_R_DB)))
2403 continue;
2404 if (type == SOCK_DGRAM && !(f->dbs&(1<<PACKET_DG_DB)))
2405 continue;
2406 if (f->f) {
2407 struct tcpstat tst;
2408 tst.local.family = AF_PACKET;
2409 tst.remote.family = AF_PACKET;
2410 tst.rport = 0;
2411 tst.lport = iface;
2412 tst.local.data[0] = prot;
2413 tst.remote.data[0] = 0;
2414 if (run_ssfilter(f->f, &tst) == 0)
2415 continue;
2416 }
2417
2418 if (netid_width)
ae665a52 2419 printf("%-*s ", netid_width,
aba5acdf
SH
2420 type == SOCK_RAW ? "p_raw" : "p_dgr");
2421 if (state_width)
2422 printf("%-*s ", state_width, "UNCONN");
2423 printf("%-6d %-6d ", rq, 0);
2424 if (prot == 3) {
2425 printf("%*s:", addr_width, "*");
2426 } else {
2427 char tb[16];
ae665a52 2428 printf("%*s:", addr_width,
aba5acdf
SH
2429 ll_proto_n2a(htons(prot), tb, sizeof(tb)));
2430 }
2431 if (iface == 0) {
2432 printf("%-*s ", serv_width, "*");
2433 } else {
2434 printf("%-*s ", serv_width, xll_index_to_name(iface));
2435 }
2436 printf("%*s*%-*s",
2437 addr_width, "", serv_width, "");
2438
2439 if (show_users) {
2440 char ubuf[4096];
2441 if (find_users(ino, ubuf, sizeof(ubuf)) > 0)
2442 printf(" users:(%s)", ubuf);
2443 }
2444 if (show_details) {
2445 printf(" ino=%u uid=%u sk=%llx", ino, uid, sk);
2446 }
2447 printf("\n");
2448 }
2449
2450 return 0;
2451}
2452
d1f28cf1 2453static int netlink_show(struct filter *f)
aba5acdf
SH
2454{
2455 FILE *fp;
2456 char buf[256];
2457 int prot, pid;
2458 unsigned groups;
2459 int rq, wq, rc;
2460 unsigned long long sk, cb;
2461
2462 if (!(f->states & (1<<SS_CLOSE)))
2463 return 0;
2464
ab01dbbb 2465 if ((fp = net_netlink_open()) == NULL)
aba5acdf
SH
2466 return -1;
2467 fgets(buf, sizeof(buf)-1, fp);
2468
2469 while (fgets(buf, sizeof(buf)-1, fp)) {
2470 sscanf(buf, "%llx %d %d %x %d %d %llx %d",
2471 &sk,
2472 &prot, &pid, &groups, &rq, &wq, &cb, &rc);
2473
2474 if (f->f) {
2475 struct tcpstat tst;
2476 tst.local.family = AF_NETLINK;
2477 tst.remote.family = AF_NETLINK;
2478 tst.rport = -1;
2479 tst.lport = pid;
2480 tst.local.data[0] = prot;
2481 tst.remote.data[0] = 0;
2482 if (run_ssfilter(f->f, &tst) == 0)
2483 continue;
2484 }
2485
2486 if (netid_width)
ae665a52 2487 printf("%-*s ", netid_width, "nl");
aba5acdf
SH
2488 if (state_width)
2489 printf("%-*s ", state_width, "UNCONN");
2490 printf("%-6d %-6d ", rq, wq);
2491 if (resolve_services && prot == 0)
2492 printf("%*s:", addr_width, "rtnl");
2493 else if (resolve_services && prot == 3)
2494 printf("%*s:", addr_width, "fw");
2495 else if (resolve_services && prot == 4)
2496 printf("%*s:", addr_width, "tcpdiag");
2497 else
2498 printf("%*d:", addr_width, prot);
2499 if (pid == -1) {
2500 printf("%-*s ", serv_width, "*");
2501 } else if (resolve_services) {
2502 int done = 0;
2503 if (!pid) {
2504 done = 1;
2505 printf("%-*s ", serv_width, "kernel");
2506 } else if (pid > 0) {
2507 char procname[64];
2508 FILE *fp;
2509 sprintf(procname, "%s/%d/stat",
2510 getenv("PROC_ROOT") ? : "/proc", pid);
2511 if ((fp = fopen(procname, "r")) != NULL) {
2512 if (fscanf(fp, "%*d (%[^)])", procname) == 1) {
ae665a52 2513 sprintf(procname+strlen(procname), "/%d", pid);
aba5acdf
SH
2514 printf("%-*s ", serv_width, procname);
2515 done = 1;
2516 }
2517 fclose(fp);
2518 }
2519 }
2520 if (!done)
2521 printf("%-*d ", serv_width, pid);
2522 } else {
2523 printf("%-*d ", serv_width, pid);
2524 }
2525 printf("%*s*%-*s",
2526 addr_width, "", serv_width, "");
2527
2528 if (show_details) {
2529 printf(" sk=%llx cb=%llx groups=0x%08x", sk, cb, groups);
2530 }
2531 printf("\n");
2532 }
2533
2534 return 0;
2535}
2536
2537struct snmpstat
2538{
2539 int tcp_estab;
2540};
2541
d1f28cf1 2542static int get_snmp_int(char *proto, char *key, int *result)
aba5acdf
SH
2543{
2544 char buf[1024];
2545 FILE *fp;
2546 int protolen = strlen(proto);
2547 int keylen = strlen(key);
2548
2549 *result = 0;
2550
ab01dbbb 2551 if ((fp = net_snmp_open()) == NULL)
aba5acdf
SH
2552 return -1;
2553
2554 while (fgets(buf, sizeof(buf), fp) != NULL) {
2555 char *p = buf;
2556 int pos = 0;
2557 if (memcmp(buf, proto, protolen))
2558 continue;
2559 while ((p = strchr(p, ' ')) != NULL) {
2560 pos++;
2561 p++;
2562 if (memcmp(p, key, keylen) == 0 &&
2563 (p[keylen] == ' ' || p[keylen] == '\n'))
2564 break;
2565 }
2566 if (fgets(buf, sizeof(buf), fp) == NULL)
2567 break;
2568 if (memcmp(buf, proto, protolen))
2569 break;
2570 p = buf;
2571 while ((p = strchr(p, ' ')) != NULL) {
2572 p++;
2573 if (--pos == 0) {
2574 sscanf(p, "%d", result);
2575 fclose(fp);
2576 return 0;
2577 }
2578 }
2579 }
2580
2581 fclose(fp);
2582 errno = ESRCH;
2583 return -1;
2584}
2585
2586
2587/* Get stats from sockstat */
2588
2589struct sockstat
2590{
2591 int socks;
2592 int tcp_mem;
2593 int tcp_total;
2594 int tcp_orphans;
2595 int tcp_tws;
2596 int tcp4_hashed;
2597 int udp4;
2598 int raw4;
2599 int frag4;
2600 int frag4_mem;
2601 int tcp6_hashed;
2602 int udp6;
2603 int raw6;
2604 int frag6;
2605 int frag6_mem;
2606};
2607
2608static void get_sockstat_line(char *line, struct sockstat *s)
2609{
2610 char id[256], rem[256];
2611
2612 if (sscanf(line, "%[^ ] %[^\n]\n", id, rem) != 2)
2613 return;
2614
2615 if (strcmp(id, "sockets:") == 0)
2616 sscanf(rem, "%*s%d", &s->socks);
2617 else if (strcmp(id, "UDP:") == 0)
2618 sscanf(rem, "%*s%d", &s->udp4);
2619 else if (strcmp(id, "UDP6:") == 0)
2620 sscanf(rem, "%*s%d", &s->udp6);
2621 else if (strcmp(id, "RAW:") == 0)
2622 sscanf(rem, "%*s%d", &s->raw4);
2623 else if (strcmp(id, "RAW6:") == 0)
2624 sscanf(rem, "%*s%d", &s->raw6);
2625 else if (strcmp(id, "TCP6:") == 0)
2626 sscanf(rem, "%*s%d", &s->tcp6_hashed);
2627 else if (strcmp(id, "FRAG:") == 0)
2628 sscanf(rem, "%*s%d%*s%d", &s->frag4, &s->frag4_mem);
2629 else if (strcmp(id, "FRAG6:") == 0)
2630 sscanf(rem, "%*s%d%*s%d", &s->frag6, &s->frag6_mem);
2631 else if (strcmp(id, "TCP:") == 0)
2632 sscanf(rem, "%*s%d%*s%d%*s%d%*s%d%*s%d",
2633 &s->tcp4_hashed,
2634 &s->tcp_orphans, &s->tcp_tws, &s->tcp_total, &s->tcp_mem);
2635}
2636
d1f28cf1 2637static int get_sockstat(struct sockstat *s)
aba5acdf
SH
2638{
2639 char buf[256];
2640 FILE *fp;
2641
2642 memset(s, 0, sizeof(*s));
2643
ab01dbbb 2644 if ((fp = net_sockstat_open()) == NULL)
aba5acdf
SH
2645 return -1;
2646 while(fgets(buf, sizeof(buf), fp) != NULL)
2647 get_sockstat_line(buf, s);
2648 fclose(fp);
2649
ab01dbbb 2650 if ((fp = net_sockstat6_open()) == NULL)
aba5acdf
SH
2651 return 0;
2652 while(fgets(buf, sizeof(buf), fp) != NULL)
2653 get_sockstat_line(buf, s);
2654 fclose(fp);
2655
2656 return 0;
2657}
2658
d1f28cf1 2659static int print_summary(void)
aba5acdf
SH
2660{
2661 struct sockstat s;
2662 struct snmpstat sn;
2663
2664 if (get_sockstat(&s) < 0)
2665 perror("ss: get_sockstat");
2666 if (get_snmp_int("Tcp:", "CurrEstab", &sn.tcp_estab) < 0)
2667 perror("ss: get_snmpstat");
2668
2669 printf("Total: %d (kernel %d)\n", s.socks, slabstat.socks);
2670
2671 printf("TCP: %d (estab %d, closed %d, orphaned %d, synrecv %d, timewait %d/%d), ports %d\n",
2672 s.tcp_total + slabstat.tcp_syns + s.tcp_tws,
2673 sn.tcp_estab,
2674 s.tcp_total - (s.tcp4_hashed+s.tcp6_hashed-s.tcp_tws),
2675 s.tcp_orphans,
2676 slabstat.tcp_syns,
2677 s.tcp_tws, slabstat.tcp_tws,
2678 slabstat.tcp_ports
2679 );
2680
2681 printf("\n");
2682 printf("Transport Total IP IPv6\n");
2683 printf("* %-9d %-9s %-9s\n", slabstat.socks, "-", "-");
2684 printf("RAW %-9d %-9d %-9d\n", s.raw4+s.raw6, s.raw4, s.raw6);
2685 printf("UDP %-9d %-9d %-9d\n", s.udp4+s.udp6, s.udp4, s.udp6);
2686 printf("TCP %-9d %-9d %-9d\n", s.tcp4_hashed+s.tcp6_hashed, s.tcp4_hashed, s.tcp6_hashed);
ae665a52 2687 printf("INET %-9d %-9d %-9d\n",
aba5acdf
SH
2688 s.raw4+s.udp4+s.tcp4_hashed+
2689 s.raw6+s.udp6+s.tcp6_hashed,
2690 s.raw4+s.udp4+s.tcp4_hashed,
2691 s.raw6+s.udp6+s.tcp6_hashed);
2692 printf("FRAG %-9d %-9d %-9d\n", s.frag4+s.frag6, s.frag4, s.frag6);
2693
2694 printf("\n");
2695
2696 return 0;
2697}
2698
7a96e199 2699static void _usage(FILE *dest)
aba5acdf 2700{
7a96e199 2701 fprintf(dest,
aba5acdf
SH
2702"Usage: ss [ OPTIONS ]\n"
2703" ss [ OPTIONS ] [ FILTER ]\n"
ab61159a
SH
2704" -h, --help this message\n"
2705" -V, --version output version information\n"
2706" -n, --numeric don't resolve service names\n"
2707" -r, --resolve resolve host names\n"
2708" -a, --all display all sockets\n"
2709" -l, --listening display listening sockets\n"
2710" -o, --options show timer information\n"
2711" -e, --extended show detailed socket information\n"
2712" -m, --memory show socket memory usage\n"
2713" -p, --processes show process using socket\n"
2714" -i, --info show internal TCP information\n"
2715" -s, --summary show socket usage summary\n"
2716"\n"
2717" -4, --ipv4 display only IP version 4 sockets\n"
2718" -6, --ipv6 display only IP version 6 sockets\n"
2719" -0, --packet display PACKET sockets\n"
2720" -t, --tcp display only TCP sockets\n"
2721" -u, --udp display only UDP sockets\n"
351efcde 2722" -d, --dccp display only DCCP sockets\n"
ab61159a
SH
2723" -w, --raw display only RAW sockets\n"
2724" -x, --unix display only Unix domain sockets\n"
2725" -f, --family=FAMILY display sockets of type FAMILY\n"
2726"\n"
583de149 2727" -A, --query=QUERY, --socket=QUERY\n"
aba5acdf 2728" QUERY := {all|inet|tcp|udp|raw|unix|packet|netlink}[,QUERY]\n"
ab61159a 2729"\n"
583de149 2730" -D, --diag=FILE Dump raw information about TCP sockets to FILE\n"
ab61159a 2731" -F, --filter=FILE read filter information from FILE\n"
aba5acdf 2732" FILTER := [ state TCP-STATE ] [ EXPRESSION ]\n"
ab61159a 2733 );
7a96e199
AH
2734}
2735
2736static void help(void) __attribute__((noreturn));
2737static void help(void)
2738{
2739 _usage(stdout);
2740 exit(0);
2741}
2742
2743static void usage(void) __attribute__((noreturn));
2744static void usage(void)
2745{
2746 _usage(stderr);
aba5acdf
SH
2747 exit(-1);
2748}
2749
2750
d1f28cf1 2751static int scan_state(const char *state)
aba5acdf
SH
2752{
2753 int i;
2754 if (strcasecmp(state, "close") == 0 ||
2755 strcasecmp(state, "closed") == 0)
2756 return (1<<SS_CLOSE);
2757 if (strcasecmp(state, "syn-rcv") == 0)
2758 return (1<<SS_SYN_RECV);
1a5bad5a 2759 if (strcasecmp(state, "established") == 0)
aba5acdf
SH
2760 return (1<<SS_ESTABLISHED);
2761 if (strcasecmp(state, "all") == 0)
2762 return SS_ALL;
2763 if (strcasecmp(state, "connected") == 0)
2764 return SS_ALL & ~((1<<SS_CLOSE)|(1<<SS_LISTEN));
1a5bad5a 2765 if (strcasecmp(state, "synchronized") == 0)
aba5acdf
SH
2766 return SS_ALL & ~((1<<SS_CLOSE)|(1<<SS_LISTEN)|(1<<SS_SYN_SENT));
2767 if (strcasecmp(state, "bucket") == 0)
2768 return (1<<SS_SYN_RECV)|(1<<SS_TIME_WAIT);
2769 if (strcasecmp(state, "big") == 0)
2770 return SS_ALL & ~((1<<SS_SYN_RECV)|(1<<SS_TIME_WAIT));
2771 for (i=0; i<SS_MAX; i++) {
1a5bad5a 2772 if (strcasecmp(state, sstate_namel[i]) == 0)
aba5acdf
SH
2773 return (1<<i);
2774 }
2775 return 0;
2776}
2777
ab61159a
SH
2778static const struct option long_opts[] = {
2779 { "numeric", 0, 0, 'n' },
2780 { "resolve", 0, 0, 'r' },
2781 { "options", 0, 0, 'o' },
2782 { "extended", 0, 0, 'e' },
2783 { "memory", 0, 0, 'm' },
2784 { "info", 0, 0, 'i' },
2785 { "processes", 0, 0, 'p' },
351efcde 2786 { "dccp", 0, 0, 'd' },
ab61159a
SH
2787 { "tcp", 0, 0, 't' },
2788 { "udp", 0, 0, 'u' },
2789 { "raw", 0, 0, 'w' },
2790 { "unix", 0, 0, 'x' },
2791 { "all", 0, 0, 'a' },
2792 { "listening", 0, 0, 'l' },
2793 { "ipv4", 0, 0, '4' },
2794 { "ipv6", 0, 0, '6' },
2795 { "packet", 0, 0, '0' },
2796 { "family", 1, 0, 'f' },
2797 { "socket", 1, 0, 'A' },
583de149 2798 { "query", 1, 0, 'A' },
c3f346b0 2799 { "summary", 0, 0, 's' },
583de149 2800 { "diag", 1, 0, 'D' },
ab61159a
SH
2801 { "filter", 1, 0, 'F' },
2802 { "version", 0, 0, 'V' },
2803 { "help", 0, 0, 'h' },
2804 { 0 }
ae665a52 2805
ab61159a
SH
2806};
2807
aba5acdf
SH
2808int main(int argc, char *argv[])
2809{
2810 int do_default = 1;
2811 int saw_states = 0;
2812 int saw_query = 0;
2813 int do_summary = 0;
7d105b56 2814 const char *dump_tcpdiag = NULL;
aba5acdf
SH
2815 FILE *filter_fp = NULL;
2816 int ch;
2817
2818 memset(&current_filter, 0, sizeof(current_filter));
2819
2820 current_filter.states = default_filter.states;
2821
351efcde 2822 while ((ch = getopt_long(argc, argv, "dhaletuwxnro460spf:miA:D:F:vV",
ab61159a 2823 long_opts, NULL)) != EOF) {
aba5acdf
SH
2824 switch(ch) {
2825 case 'n':
2826 resolve_services = 0;
2827 break;
2828 case 'r':
2829 resolve_hosts = 1;
2830 break;
2831 case 'o':
2832 show_options = 1;
2833 break;
2834 case 'e':
2835 show_options = 1;
2836 show_details++;
2837 break;
2838 case 'm':
2839 show_mem = 1;
2840 break;
2841 case 'i':
2842 show_tcpinfo = 1;
2843 break;
2844 case 'p':
2845 show_users++;
fbc0f876 2846 user_ent_hash_build();
aba5acdf 2847 break;
351efcde
SH
2848 case 'd':
2849 current_filter.dbs |= (1<<DCCP_DB);
2850 do_default = 0;
2851 break;
aba5acdf
SH
2852 case 't':
2853 current_filter.dbs |= (1<<TCP_DB);
2854 do_default = 0;
2855 break;
2856 case 'u':
2857 current_filter.dbs |= (1<<UDP_DB);
2858 do_default = 0;
2859 break;
2860 case 'w':
2861 current_filter.dbs |= (1<<RAW_DB);
2862 do_default = 0;
2863 break;
2864 case 'x':
2865 current_filter.dbs |= UNIX_DBM;
2866 do_default = 0;
2867 break;
2868 case 'a':
2869 current_filter.states = SS_ALL;
2870 break;
2871 case 'l':
16963ce6 2872 current_filter.states = (1<<SS_LISTEN) | (1<<SS_CLOSE);
aba5acdf
SH
2873 break;
2874 case '4':
2875 preferred_family = AF_INET;
2876 break;
2877 case '6':
2878 preferred_family = AF_INET6;
2879 break;
2880 case '0':
2881 preferred_family = AF_PACKET;
2882 break;
2883 case 'f':
2884 if (strcmp(optarg, "inet") == 0)
2885 preferred_family = AF_INET;
2886 else if (strcmp(optarg, "inet6") == 0)
2887 preferred_family = AF_INET6;
2888 else if (strcmp(optarg, "link") == 0)
2889 preferred_family = AF_PACKET;
2890 else if (strcmp(optarg, "unix") == 0)
2891 preferred_family = AF_UNIX;
2892 else if (strcmp(optarg, "netlink") == 0)
2893 preferred_family = AF_NETLINK;
2894 else if (strcmp(optarg, "help") == 0)
7a96e199 2895 help();
aba5acdf
SH
2896 else {
2897 fprintf(stderr, "ss: \"%s\" is invalid family\n", optarg);
2898 usage();
2899 }
2900 break;
2901 case 'A':
2902 {
2903 char *p, *p1;
2904 if (!saw_query) {
2905 current_filter.dbs = 0;
2906 saw_query = 1;
2907 do_default = 0;
2908 }
2909 p = p1 = optarg;
2910 do {
2911 if ((p1 = strchr(p, ',')) != NULL)
ae665a52 2912 *p1 = 0;
aba5acdf
SH
2913 if (strcmp(p, "all") == 0) {
2914 current_filter.dbs = ALL_DB;
2915 } else if (strcmp(p, "inet") == 0) {
351efcde 2916 current_filter.dbs |= (1<<TCP_DB)|(1<<DCCP_DB)|(1<<UDP_DB)|(1<<RAW_DB);
aba5acdf
SH
2917 } else if (strcmp(p, "udp") == 0) {
2918 current_filter.dbs |= (1<<UDP_DB);
351efcde
SH
2919 } else if (strcmp(p, "dccp") == 0) {
2920 current_filter.dbs |= (1<<DCCP_DB);
aba5acdf
SH
2921 } else if (strcmp(p, "tcp") == 0) {
2922 current_filter.dbs |= (1<<TCP_DB);
2923 } else if (strcmp(p, "raw") == 0) {
2924 current_filter.dbs |= (1<<RAW_DB);
2925 } else if (strcmp(p, "unix") == 0) {
2926 current_filter.dbs |= UNIX_DBM;
1a5bad5a 2927 } else if (strcasecmp(p, "unix_stream") == 0 ||
aba5acdf
SH
2928 strcmp(p, "u_str") == 0) {
2929 current_filter.dbs |= (1<<UNIX_ST_DB);
1a5bad5a 2930 } else if (strcasecmp(p, "unix_dgram") == 0 ||
aba5acdf
SH
2931 strcmp(p, "u_dgr") == 0) {
2932 current_filter.dbs |= (1<<UNIX_DG_DB);
2933 } else if (strcmp(p, "packet") == 0) {
2934 current_filter.dbs |= PACKET_DBM;
2935 } else if (strcmp(p, "packet_raw") == 0 ||
2936 strcmp(p, "p_raw") == 0) {
2937 current_filter.dbs |= (1<<PACKET_R_DB);
2938 } else if (strcmp(p, "packet_dgram") == 0 ||
2939 strcmp(p, "p_dgr") == 0) {
2940 current_filter.dbs |= (1<<PACKET_DG_DB);
2941 } else if (strcmp(p, "netlink") == 0) {
2942 current_filter.dbs |= (1<<NETLINK_DB);
2943 } else {
2944 fprintf(stderr, "ss: \"%s\" is illegal socket table id\n", p);
2945 usage();
2946 }
2947 p = p1 + 1;
2948 } while (p1);
2949 break;
2950 }
2951 case 's':
2952 do_summary = 1;
2953 break;
2954 case 'D':
2955 dump_tcpdiag = optarg;
2956 break;
2957 case 'F':
2958 if (filter_fp) {
2959 fprintf(stderr, "More than one filter file\n");
2960 exit(-1);
2961 }
2962 if (optarg[0] == '-')
2963 filter_fp = stdin;
2964 else
2965 filter_fp = fopen(optarg, "r");
2966 if (!filter_fp) {
2967 perror("fopen filter file");
2968 exit(-1);
2969 }
2970 break;
2971 case 'v':
2972 case 'V':
2973 printf("ss utility, iproute2-ss%s\n", SNAPSHOT);
2974 exit(0);
2975 case 'h':
2976 case '?':
7a96e199 2977 help();
aba5acdf
SH
2978 default:
2979 usage();
2980 }
2981 }
2982
2983 argc -= optind;
2984 argv += optind;
2985
2986 get_slabstat(&slabstat);
2987
2988 if (do_summary) {
2989 print_summary();
2990 if (do_default && argc == 0)
2991 exit(0);
2992 }
2993
2994 if (do_default)
2995 current_filter.dbs = default_filter.dbs;
2996
2997 if (preferred_family == AF_UNSPEC) {
2998 if (!(current_filter.dbs&~UNIX_DBM))
2999 preferred_family = AF_UNIX;
3000 else if (!(current_filter.dbs&~PACKET_DBM))
3001 preferred_family = AF_PACKET;
3002 else if (!(current_filter.dbs&~(1<<NETLINK_DB)))
3003 preferred_family = AF_NETLINK;
3004 }
3005
3006 if (preferred_family != AF_UNSPEC) {
3007 int mask2;
3008 if (preferred_family == AF_INET ||
3009 preferred_family == AF_INET6) {
f70d96a4 3010 mask2= current_filter.dbs;
aba5acdf
SH
3011 } else if (preferred_family == AF_PACKET) {
3012 mask2 = PACKET_DBM;
3013 } else if (preferred_family == AF_UNIX) {
3014 mask2 = UNIX_DBM;
3015 } else if (preferred_family == AF_NETLINK) {
3016 mask2 = (1<<NETLINK_DB);
3017 } else {
3018 mask2 = 0;
3019 }
3020
3021 if (do_default)
3022 current_filter.dbs = mask2;
3023 else
3024 current_filter.dbs &= mask2;
3025 current_filter.families = (1<<preferred_family);
3026 } else {
3027 if (!do_default)
3028 current_filter.families = ~0;
3029 else
3030 current_filter.families = default_filter.families;
3031 }
3032 if (current_filter.dbs == 0) {
3033 fprintf(stderr, "ss: no socket tables to show with such filter.\n");
3034 exit(0);
3035 }
3036 if (current_filter.families == 0) {
3037 fprintf(stderr, "ss: no families to show with such filter.\n");
3038 exit(0);
3039 }
3040
3041 if (resolve_services && resolve_hosts &&
351efcde 3042 (current_filter.dbs&(UNIX_DBM|(1<<TCP_DB)|(1<<UDP_DB)|(1<<DCCP_DB))))
aba5acdf
SH
3043 init_service_resolver();
3044
3045 /* Now parse filter... */
3046 if (argc == 0 && filter_fp) {
3047 if (ssfilter_parse(&current_filter.f, 0, NULL, filter_fp))
3048 usage();
3049 }
3050
3051 while (argc > 0) {
3052 if (strcmp(*argv, "state") == 0) {
3053 NEXT_ARG();
3054 if (!saw_states)
3055 current_filter.states = 0;
3056 current_filter.states |= scan_state(*argv);
3057 saw_states = 1;
3058 } else if (strcmp(*argv, "exclude") == 0 ||
3059 strcmp(*argv, "excl") == 0) {
3060 NEXT_ARG();
3061 if (!saw_states)
3062 current_filter.states = SS_ALL;
3063 current_filter.states &= ~scan_state(*argv);
3064 saw_states = 1;
3065 } else {
3066 if (ssfilter_parse(&current_filter.f, argc, argv, filter_fp))
3067 usage();
3068 break;
3069 }
3070 argc--; argv++;
3071 }
3072
3073 if (current_filter.states == 0) {
3074 fprintf(stderr, "ss: no socket states to show with such filter.\n");
3075 exit(0);
3076 }
3077
3078 if (dump_tcpdiag) {
3079 FILE *dump_fp = stdout;
3080 if (!(current_filter.dbs & (1<<TCP_DB))) {
3081 fprintf(stderr, "ss: tcpdiag dump requested and no tcp in filter.\n");
3082 exit(0);
3083 }
3084 if (dump_tcpdiag[0] != '-') {
3085 dump_fp = fopen(dump_tcpdiag, "w");
3086 if (!dump_tcpdiag) {
3087 perror("fopen dump file");
3088 exit(-1);
3089 }
3090 }
3fe5b534 3091 inet_show_netlink(&current_filter, dump_fp, IPPROTO_TCP);
aba5acdf
SH
3092 fflush(dump_fp);
3093 exit(0);
3094 }
3095
3096 netid_width = 0;
3097 if (current_filter.dbs&(current_filter.dbs-1))
3098 netid_width = 5;
3099
3100 state_width = 0;
3101 if (current_filter.states&(current_filter.states-1))
3102 state_width = 10;
3103
3104 screen_width = 80;
3105 if (isatty(STDOUT_FILENO)) {
3106 struct winsize w;
3107
3108 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) != -1) {
3109 if (w.ws_col > 0)
3110 screen_width = w.ws_col;
3111 }
3112 }
3113
3114 addrp_width = screen_width;
3115 addrp_width -= netid_width+1;
3116 addrp_width -= state_width+1;
3117 addrp_width -= 14;
3118
3119 if (addrp_width&1) {
3120 if (netid_width)
3121 netid_width++;
3122 else if (state_width)
3123 state_width++;
3124 }
3125
3126 addrp_width /= 2;
3127 addrp_width--;
3128
3129 serv_width = resolve_services ? 7 : 5;
3130
3131 if (addrp_width < 15+serv_width+1)
3132 addrp_width = 15+serv_width+1;
3133
ae665a52 3134 addr_width = addrp_width - serv_width - 1;
aba5acdf
SH
3135
3136 if (netid_width)
3137 printf("%-*s ", netid_width, "Netid");
3138 if (state_width)
3139 printf("%-*s ", state_width, "State");
3140 printf("%-6s %-6s ", "Recv-Q", "Send-Q");
3141
3142 printf("%*s:%-*s %*s:%-*s\n",
3143 addr_width, "Local Address", serv_width, "Port",
3144 addr_width, "Peer Address", serv_width, "Port");
3145
aba5acdf
SH
3146 fflush(stdout);
3147
3148 if (current_filter.dbs & (1<<NETLINK_DB))
3149 netlink_show(&current_filter);
3150 if (current_filter.dbs & PACKET_DBM)
3151 packet_show(&current_filter);
3152 if (current_filter.dbs & UNIX_DBM)
3153 unix_show(&current_filter);
3154 if (current_filter.dbs & (1<<RAW_DB))
3155 raw_show(&current_filter);
3156 if (current_filter.dbs & (1<<UDP_DB))
3157 udp_show(&current_filter);
3158 if (current_filter.dbs & (1<<TCP_DB))
3fe5b534 3159 tcp_show(&current_filter, IPPROTO_TCP);
351efcde 3160 if (current_filter.dbs & (1<<DCCP_DB))
3fe5b534 3161 tcp_show(&current_filter, IPPROTO_DCCP);
aba5acdf
SH
3162 return 0;
3163}