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