man: netsniff-ng: add section about netlink traffic debugging
[netsniff-ng.git] / flowtop.c
blobfa0cd21275b00b738a6dcb218bd6c12e3cdb52a3
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2011 - 2013 Daniel Borkmann.
4 * Copyright 2011 Emmanuel Roullit.
5 * Subject to the GPL, version 2.
6 */
8 #define _LGPL_SOURCE
9 #include <stdio.h>
10 #include <stdint.h>
11 #include <stdlib.h>
12 #include <signal.h>
13 #include <getopt.h>
14 #include <pthread.h>
15 #include <signal.h>
16 #include <netdb.h>
17 #include <ctype.h>
18 #include <libnetfilter_conntrack/libnetfilter_conntrack.h>
19 #include <libnetfilter_conntrack/libnetfilter_conntrack_tcp.h>
20 #include <libnetfilter_conntrack/libnetfilter_conntrack_dccp.h>
21 #include <libnetfilter_conntrack/libnetfilter_conntrack_sctp.h>
22 #include <netinet/in.h>
23 #include <curses.h>
24 #include <dirent.h>
25 #include <sys/stat.h>
26 #include <sys/fsuid.h>
27 #include <urcu.h>
28 #include <libgen.h>
30 #include "die.h"
31 #include "xmalloc.h"
32 #include "ioops.h"
33 #include "str.h"
34 #include "sig.h"
35 #include "geoip.h"
36 #include "built_in.h"
37 #include "locking.h"
38 #include "dissector_eth.h"
39 #include "pkt_buff.h"
40 #include "screen.h"
42 struct flow_entry {
43 uint32_t flow_id, use, status;
44 uint8_t l3_proto, l4_proto;
45 uint32_t ip4_src_addr, ip4_dst_addr;
46 uint32_t ip6_src_addr[4], ip6_dst_addr[4];
47 uint16_t port_src, port_dst;
48 uint8_t tcp_state, tcp_flags, sctp_state, dccp_state;
49 uint64_t counter_pkts, counter_bytes;
50 uint64_t timestamp_start, timestamp_stop;
51 char country_src[128], country_dst[128];
52 char city_src[128], city_dst[128];
53 char rev_dns_src[256], rev_dns_dst[256];
54 char cmdline[256];
55 struct flow_entry *next;
56 int procnum, inode;
59 struct flow_list {
60 struct flow_entry *head;
61 struct spinlock lock;
64 #ifndef ATTR_TIMESTAMP_START
65 # define ATTR_TIMESTAMP_START 63
66 #endif
67 #ifndef ATTR_TIMESTAMP_STOP
68 # define ATTR_TIMESTAMP_STOP 64
69 #endif
71 #define SCROLL_MAX 1000
73 #define INCLUDE_IPV4 (1 << 0)
74 #define INCLUDE_IPV6 (1 << 1)
75 #define INCLUDE_UDP (1 << 2)
76 #define INCLUDE_TCP (1 << 3)
77 #define INCLUDE_DCCP (1 << 4)
78 #define INCLUDE_ICMP (1 << 5)
79 #define INCLUDE_SCTP (1 << 6)
81 static volatile sig_atomic_t sigint = 0;
82 static int what = INCLUDE_IPV4 | INCLUDE_IPV6 | INCLUDE_TCP, show_src = 0;
83 static struct flow_list flow_list;
85 static const char *short_options = "vhTUsDIS46u";
86 static const struct option long_options[] = {
87 {"ipv4", no_argument, NULL, '4'},
88 {"ipv6", no_argument, NULL, '6'},
89 {"tcp", no_argument, NULL, 'T'},
90 {"udp", no_argument, NULL, 'U'},
91 {"dccp", no_argument, NULL, 'D'},
92 {"icmp", no_argument, NULL, 'I'},
93 {"sctp", no_argument, NULL, 'S'},
94 {"show-src", no_argument, NULL, 's'},
95 {"update", no_argument, NULL, 'u'},
96 {"version", no_argument, NULL, 'v'},
97 {"help", no_argument, NULL, 'h'},
98 {NULL, 0, NULL, 0}
101 static const char *const l3proto2str[AF_MAX] = {
102 [AF_INET] = "ipv4",
103 [AF_INET6] = "ipv6",
106 static const char *const l4proto2str[IPPROTO_MAX] = {
107 [IPPROTO_TCP] = "tcp",
108 [IPPROTO_UDP] = "udp",
109 [IPPROTO_UDPLITE] = "udplite",
110 [IPPROTO_ICMP] = "icmp",
111 [IPPROTO_ICMPV6] = "icmpv6",
112 [IPPROTO_SCTP] = "sctp",
113 [IPPROTO_GRE] = "gre",
114 [IPPROTO_DCCP] = "dccp",
115 [IPPROTO_IGMP] = "igmp",
116 [IPPROTO_IPIP] = "ipip",
117 [IPPROTO_EGP] = "egp",
118 [IPPROTO_PUP] = "pup",
119 [IPPROTO_IDP] = "idp",
120 [IPPROTO_RSVP] = "rsvp",
121 [IPPROTO_IPV6] = "ip6tun",
122 [IPPROTO_ESP] = "esp",
123 [IPPROTO_AH] = "ah",
124 [IPPROTO_PIM] = "pim",
125 [IPPROTO_COMP] = "comp",
128 static const char *const tcp_state2str[TCP_CONNTRACK_MAX] = {
129 [TCP_CONNTRACK_NONE] = "NOSTATE",
130 [TCP_CONNTRACK_SYN_SENT] = "SYN_SENT",
131 [TCP_CONNTRACK_SYN_RECV] = "SYN_RECV",
132 [TCP_CONNTRACK_ESTABLISHED] = "ESTABLISHED",
133 [TCP_CONNTRACK_FIN_WAIT] = "FIN_WAIT",
134 [TCP_CONNTRACK_CLOSE_WAIT] = "CLOSE_WAIT",
135 [TCP_CONNTRACK_LAST_ACK] = "LAST_ACK",
136 [TCP_CONNTRACK_TIME_WAIT] = "TIME_WAIT",
137 [TCP_CONNTRACK_CLOSE] = "CLOSE",
138 [TCP_CONNTRACK_SYN_SENT2] = "SYN_SENT2",
141 static const uint8_t tcp_states[] = {
142 TCP_CONNTRACK_SYN_SENT,
143 TCP_CONNTRACK_SYN_RECV,
144 TCP_CONNTRACK_ESTABLISHED,
145 TCP_CONNTRACK_FIN_WAIT,
146 TCP_CONNTRACK_CLOSE_WAIT,
147 TCP_CONNTRACK_LAST_ACK,
148 TCP_CONNTRACK_TIME_WAIT,
149 TCP_CONNTRACK_CLOSE,
150 TCP_CONNTRACK_SYN_SENT2,
151 TCP_CONNTRACK_NONE,
154 static const char *const dccp_state2str[DCCP_CONNTRACK_MAX] = {
155 [DCCP_CONNTRACK_NONE] = "NOSTATE",
156 [DCCP_CONNTRACK_REQUEST] = "REQUEST",
157 [DCCP_CONNTRACK_RESPOND] = "RESPOND",
158 [DCCP_CONNTRACK_PARTOPEN] = "PARTOPEN",
159 [DCCP_CONNTRACK_OPEN] = "OPEN",
160 [DCCP_CONNTRACK_CLOSEREQ] = "CLOSEREQ",
161 [DCCP_CONNTRACK_CLOSING] = "CLOSING",
162 [DCCP_CONNTRACK_TIMEWAIT] = "TIMEWAIT",
163 [DCCP_CONNTRACK_IGNORE] = "IGNORE",
164 [DCCP_CONNTRACK_INVALID] = "INVALID",
167 static const uint8_t dccp_states[] = {
168 DCCP_CONNTRACK_NONE,
169 DCCP_CONNTRACK_REQUEST,
170 DCCP_CONNTRACK_RESPOND,
171 DCCP_CONNTRACK_PARTOPEN,
172 DCCP_CONNTRACK_OPEN,
173 DCCP_CONNTRACK_CLOSEREQ,
174 DCCP_CONNTRACK_CLOSING,
175 DCCP_CONNTRACK_TIMEWAIT,
176 DCCP_CONNTRACK_IGNORE,
177 DCCP_CONNTRACK_INVALID,
180 static const char *const sctp_state2str[SCTP_CONNTRACK_MAX] = {
181 [SCTP_CONNTRACK_NONE] = "NOSTATE",
182 [SCTP_CONNTRACK_CLOSED] = "CLOSED",
183 [SCTP_CONNTRACK_COOKIE_WAIT] = "COOKIE_WAIT",
184 [SCTP_CONNTRACK_COOKIE_ECHOED] = "COOKIE_ECHOED",
185 [SCTP_CONNTRACK_ESTABLISHED] = "ESTABLISHED",
186 [SCTP_CONNTRACK_SHUTDOWN_SENT] = "SHUTDOWN_SENT",
187 [SCTP_CONNTRACK_SHUTDOWN_RECD] = "SHUTDOWN_RECD",
188 [SCTP_CONNTRACK_SHUTDOWN_ACK_SENT] = "SHUTDOWN_ACK_SENT",
191 static const uint8_t sctp_states[] = {
192 SCTP_CONNTRACK_NONE,
193 SCTP_CONNTRACK_CLOSED,
194 SCTP_CONNTRACK_COOKIE_WAIT,
195 SCTP_CONNTRACK_COOKIE_ECHOED,
196 SCTP_CONNTRACK_ESTABLISHED,
197 SCTP_CONNTRACK_SHUTDOWN_SENT,
198 SCTP_CONNTRACK_SHUTDOWN_RECD,
199 SCTP_CONNTRACK_SHUTDOWN_ACK_SENT,
202 static const struct nfct_filter_ipv4 filter_ipv4 = {
203 .addr = __constant_htonl(INADDR_LOOPBACK),
204 .mask = 0xffffffff,
207 static const struct nfct_filter_ipv6 filter_ipv6 = {
208 .addr = { 0x0, 0x0, 0x0, 0x1 },
209 .mask = { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff },
212 static void signal_handler(int number)
214 switch (number) {
215 case SIGINT:
216 sigint = 1;
217 break;
218 case SIGHUP:
219 default:
220 break;
224 static void flow_entry_from_ct(struct flow_entry *n, struct nf_conntrack *ct);
225 static void flow_entry_get_extended(struct flow_entry *n);
227 static void help(void)
229 printf("\nflowtop %s, top-like netfilter TCP/UDP flow tracking\n",
230 VERSION_STRING);
231 puts("http://www.netsniff-ng.org\n\n"
232 "Usage: flowtop [options]\n"
233 "Options:\n"
234 " -4|--ipv4 Show only IPv4 flows (default)\n"
235 " -6|--ipv6 Show only IPv6 flows (default)\n"
236 " -T|--tcp Show only TCP flows (default)\n"
237 " -U|--udp Show only UDP flows\n"
238 " -D|--dccp Show only DCCP flows\n"
239 " -I|--icmp Show only ICMP/ICMPv6 flows\n"
240 " -S|--sctp Show only SCTP flows\n"
241 " -s|--show-src Also show source, not only dest\n"
242 " -u|--update Update GeoIP databases\n"
243 " -v|--version Print version and exit\n"
244 " -h|--help Print this help and exit\n\n"
245 "Examples:\n"
246 " flowtop\n"
247 " flowtop -46UTDISs\n\n"
248 "Note:\n"
249 " If netfilter is not running, you can activate it with e.g.:\n"
250 " iptables -A INPUT -p tcp -m state --state ESTABLISHED -j ACCEPT\n"
251 " iptables -A OUTPUT -p tcp -m state --state NEW,ESTABLISHED -j ACCEPT\n\n"
252 "Please report bugs to <bugs@netsniff-ng.org>\n"
253 "Copyright (C) 2011-2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>\n"
254 "Copyright (C) 2011-2012 Emmanuel Roullit <emmanuel.roullit@gmail.com>\n"
255 "Swiss federal institute of technology (ETH Zurich)\n"
256 "License: GNU GPL version 2.0\n"
257 "This is free software: you are free to change and redistribute it.\n"
258 "There is NO WARRANTY, to the extent permitted by law.\n");
259 die();
262 static void version(void)
264 printf("\nflowtop %s, top-like netfilter TCP/UDP flow tracking\n",
265 VERSION_LONG);
266 puts("http://www.netsniff-ng.org\n\n"
267 "Please report bugs to <bugs@netsniff-ng.org>\n"
268 "Copyright (C) 2011-2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>\n"
269 "Copyright (C) 2011-2012 Emmanuel Roullit <emmanuel.roullit@gmail.com>\n"
270 "Swiss federal institute of technology (ETH Zurich)\n"
271 "License: GNU GPL version 2.0\n"
272 "This is free software: you are free to change and redistribute it.\n"
273 "There is NO WARRANTY, to the extent permitted by law.\n");
274 die();
277 static inline struct flow_entry *flow_entry_xalloc(void)
279 return xzmalloc(sizeof(struct flow_entry));
282 static inline void flow_entry_xfree(struct flow_entry *n)
284 xfree(n);
287 static inline void flow_list_init(struct flow_list *fl)
289 fl->head = NULL;
290 spinlock_init(&fl->lock);
293 static void flow_list_new_entry(struct flow_list *fl, struct nf_conntrack *ct)
295 struct flow_entry *n = flow_entry_xalloc();
297 flow_entry_from_ct(n, ct);
298 flow_entry_get_extended(n);
300 rcu_assign_pointer(n->next, fl->head);
301 rcu_assign_pointer(fl->head, n);
304 static struct flow_entry *flow_list_find_id(struct flow_list *fl,
305 uint32_t id)
307 struct flow_entry *n = rcu_dereference(fl->head);
309 while (n != NULL) {
310 if (n->flow_id == id)
311 return n;
313 n = rcu_dereference(n->next);
316 return NULL;
319 static struct flow_entry *flow_list_find_prev_id(struct flow_list *fl,
320 uint32_t id)
322 struct flow_entry *n = rcu_dereference(fl->head), *tmp;
324 if (n->flow_id == id)
325 return NULL;
327 while ((tmp = rcu_dereference(n->next)) != NULL) {
328 if (tmp->flow_id == id)
329 return n;
331 n = tmp;
334 return NULL;
337 static void flow_list_update_entry(struct flow_list *fl,
338 struct nf_conntrack *ct)
340 int do_ext = 0;
341 struct flow_entry *n;
343 n = flow_list_find_id(fl, nfct_get_attr_u32(ct, ATTR_ID));
344 if (n == NULL) {
345 n = flow_entry_xalloc();
346 do_ext = 1;
349 flow_entry_from_ct(n, ct);
350 if (do_ext) {
351 flow_entry_get_extended(n);
353 rcu_assign_pointer(n->next, fl->head);
354 rcu_assign_pointer(fl->head, n);
358 static void flow_list_destroy_entry(struct flow_list *fl,
359 struct nf_conntrack *ct)
361 struct flow_entry *n1, *n2;
362 uint32_t id = nfct_get_attr_u32(ct, ATTR_ID);
364 n1 = flow_list_find_id(fl, id);
365 if (n1) {
366 n2 = flow_list_find_prev_id(fl, id);
367 if (n2) {
368 rcu_assign_pointer(n2->next, n1->next);
369 n1->next = NULL;
371 flow_entry_xfree(n1);
372 } else {
373 flow_entry_xfree(fl->head);
374 fl->head = NULL;
379 static void flow_list_destroy(struct flow_list *fl)
381 struct flow_entry *n;
383 while (fl->head != NULL) {
384 n = rcu_dereference(fl->head->next);
385 fl->head->next = NULL;
387 flow_entry_xfree(fl->head);
388 rcu_assign_pointer(fl->head, n);
391 synchronize_rcu();
392 spinlock_destroy(&fl->lock);
395 static int walk_process(char *process, struct flow_entry *n)
397 int ret;
398 DIR *dir;
399 struct dirent *ent;
400 char path[1024];
402 if (snprintf(path, sizeof(path), "/proc/%s/fd", process) == -1)
403 panic("giant process name! %s\n", process);
405 dir = opendir(path);
406 if (!dir)
407 return 0;
409 while ((ent = readdir(dir))) {
410 struct stat statbuf;
412 if (snprintf(path, sizeof(path), "/proc/%s/fd/%s",
413 process, ent->d_name) < 0)
414 continue;
416 if (stat(path, &statbuf) < 0)
417 continue;
419 if (S_ISSOCK(statbuf.st_mode) && n->inode == statbuf.st_ino) {
420 memset(n->cmdline, 0, sizeof(n->cmdline));
422 snprintf(path, sizeof(path), "/proc/%s/exe", process);
424 ret = readlink(path, n->cmdline,
425 sizeof(n->cmdline) - 1);
426 if (ret < 0)
427 panic("readlink error: %s\n", strerror(errno));
429 n->procnum = atoi(process);
430 closedir(dir);
431 return 1;
435 closedir(dir);
436 return 0;
439 static void walk_processes(struct flow_entry *n)
441 int ret;
442 DIR *dir;
443 struct dirent *ent;
445 /* n->inode must be set */
446 if (n->inode <= 0) {
447 memset(n->cmdline, 0, sizeof(n->cmdline));
448 return;
451 dir = opendir("/proc");
452 if (!dir)
453 panic("Cannot open /proc!\n");
455 while ((ent = readdir(dir))) {
456 if (strspn(ent->d_name, "0123456789") == strlen(ent->d_name)) {
457 ret = walk_process(ent->d_name, n);
458 if (ret > 0)
459 break;
463 closedir(dir);
466 static int get_port_inode(uint16_t port, int proto, int is_ip6)
468 int ret = -ENOENT;
469 char path[128], buff[1024];
470 FILE *proc;
472 memset(path, 0, sizeof(path));
473 snprintf(path, sizeof(path), "/proc/net/%s%s",
474 l4proto2str[proto], is_ip6 ? "6" : "");
476 proc = fopen(path, "r");
477 if (!proc)
478 return -EIO;
480 memset(buff, 0, sizeof(buff));
482 while (fgets(buff, sizeof(buff), proc) != NULL) {
483 int inode = 0;
484 unsigned int lport = 0;
486 buff[sizeof(buff) - 1] = 0;
487 if (sscanf(buff, "%*u: %*X:%X %*X:%*X %*X %*X:%*X %*X:%*X "
488 "%*X %*u %*u %u", &lport, &inode) == 2) {
489 if ((uint16_t) lport == port) {
490 ret = inode;
491 break;
495 memset(buff, 0, sizeof(buff));
498 fclose(proc);
499 return ret;
502 #define CP_NFCT(elem, attr, x) \
503 do { n->elem = nfct_get_attr_u##x(ct,(attr)); } while (0)
504 #define CP_NFCT_BUFF(elem, attr) do { \
505 const uint8_t *buff = nfct_get_attr(ct,(attr)); \
506 if (buff != NULL) \
507 memcpy(n->elem, buff, sizeof(n->elem)); \
508 } while (0)
510 static void flow_entry_from_ct(struct flow_entry *n, struct nf_conntrack *ct)
512 CP_NFCT(l3_proto, ATTR_ORIG_L3PROTO, 8);
513 CP_NFCT(l4_proto, ATTR_ORIG_L4PROTO, 8);
515 CP_NFCT(ip4_src_addr, ATTR_ORIG_IPV4_SRC, 32);
516 CP_NFCT(ip4_dst_addr, ATTR_ORIG_IPV4_DST, 32);
518 CP_NFCT(port_src, ATTR_ORIG_PORT_SRC, 16);
519 CP_NFCT(port_dst, ATTR_ORIG_PORT_DST, 16);
521 CP_NFCT(status, ATTR_STATUS, 32);
523 CP_NFCT(tcp_state, ATTR_TCP_STATE, 8);
524 CP_NFCT(tcp_flags, ATTR_TCP_FLAGS_ORIG, 8);
525 CP_NFCT(sctp_state, ATTR_SCTP_STATE, 8);
526 CP_NFCT(dccp_state, ATTR_DCCP_STATE, 8);
528 CP_NFCT(counter_pkts, ATTR_ORIG_COUNTER_PACKETS, 64);
529 CP_NFCT(counter_bytes, ATTR_ORIG_COUNTER_BYTES, 64);
531 CP_NFCT(timestamp_start, ATTR_TIMESTAMP_START, 64);
532 CP_NFCT(timestamp_stop, ATTR_TIMESTAMP_STOP, 64);
534 CP_NFCT(flow_id, ATTR_ID, 32);
535 CP_NFCT(use, ATTR_USE, 32);
537 CP_NFCT_BUFF(ip6_src_addr, ATTR_ORIG_IPV6_SRC);
538 CP_NFCT_BUFF(ip6_dst_addr, ATTR_ORIG_IPV6_DST);
540 n->port_src = ntohs(n->port_src);
541 n->port_dst = ntohs(n->port_dst);
543 n->ip4_src_addr = ntohl(n->ip4_src_addr);
544 n->ip4_dst_addr = ntohl(n->ip4_dst_addr);
547 enum flow_entry_direction {
548 flow_entry_src,
549 flow_entry_dst,
552 static inline int flow_entry_get_extended_is_dns(struct flow_entry *n)
554 /* We don't want to analyze / display DNS itself, since we
555 * use it to resolve reverse dns.
557 return n->port_src == 53 || n->port_dst == 53;
560 #define SELFLD(dir,src_member,dst_member) \
561 (((dir) == flow_entry_src) ? n->src_member : n->dst_member)
563 static void flow_entry_get_sain4_obj(struct flow_entry *n,
564 enum flow_entry_direction dir,
565 struct sockaddr_in *sa)
567 memset(sa, 0, sizeof(*sa));
568 sa->sin_family = PF_INET;
569 sa->sin_addr.s_addr = htonl(SELFLD(dir, ip4_src_addr, ip4_dst_addr));
572 static void flow_entry_get_sain6_obj(struct flow_entry *n,
573 enum flow_entry_direction dir,
574 struct sockaddr_in6 *sa)
576 memset(sa, 0, sizeof(*sa));
577 sa->sin6_family = PF_INET6;
579 memcpy(&sa->sin6_addr, SELFLD(dir, ip6_src_addr, ip6_dst_addr),
580 sizeof(sa->sin6_addr));
583 static void
584 flow_entry_geo_city_lookup_generic(struct flow_entry *n,
585 enum flow_entry_direction dir)
587 struct sockaddr_in sa4;
588 struct sockaddr_in6 sa6;
589 const char *city = NULL;
591 switch (n->l3_proto) {
592 default:
593 bug();
595 case AF_INET:
596 flow_entry_get_sain4_obj(n, dir, &sa4);
597 city = geoip4_city_name(sa4);
598 break;
600 case AF_INET6:
601 flow_entry_get_sain6_obj(n, dir, &sa6);
602 city = geoip6_city_name(sa6);
603 break;
606 bug_on(sizeof(n->city_src) != sizeof(n->city_dst));
608 if (city) {
609 memcpy(SELFLD(dir, city_src, city_dst), city,
610 min(sizeof(n->city_src), strlen(city)));
611 } else {
612 memset(SELFLD(dir, city_src, city_dst), 0,
613 sizeof(n->city_src));
617 static void
618 flow_entry_geo_country_lookup_generic(struct flow_entry *n,
619 enum flow_entry_direction dir)
621 struct sockaddr_in sa4;
622 struct sockaddr_in6 sa6;
623 const char *country = NULL;
625 switch (n->l3_proto) {
626 default:
627 bug();
629 case AF_INET:
630 flow_entry_get_sain4_obj(n, dir, &sa4);
631 country = geoip4_country_name(sa4);
632 break;
634 case AF_INET6:
635 flow_entry_get_sain6_obj(n, dir, &sa6);
636 country = geoip6_country_name(sa6);
637 break;
640 bug_on(sizeof(n->country_src) != sizeof(n->country_dst));
642 if (country) {
643 memcpy(SELFLD(dir, country_src, country_dst), country,
644 min(sizeof(n->country_src), strlen(country)));
645 } else {
646 memset(SELFLD(dir, country_src, country_dst), 0,
647 sizeof(n->country_src));
651 static void flow_entry_get_extended_geo(struct flow_entry *n,
652 enum flow_entry_direction dir)
654 flow_entry_geo_city_lookup_generic(n, dir);
655 flow_entry_geo_country_lookup_generic(n, dir);
658 static void flow_entry_get_extended_revdns(struct flow_entry *n,
659 enum flow_entry_direction dir)
661 size_t sa_len;
662 struct sockaddr_in sa4;
663 struct sockaddr_in6 sa6;
664 struct sockaddr *sa;
665 struct hostent *hent;
667 switch (n->l3_proto) {
668 default:
669 bug();
671 case AF_INET:
672 flow_entry_get_sain4_obj(n, dir, &sa4);
673 sa = (struct sockaddr *) &sa4;
674 sa_len = sizeof(sa4);
675 hent = gethostbyaddr(&sa4.sin_addr, sizeof(sa4.sin_addr), AF_INET);
676 break;
678 case AF_INET6:
679 flow_entry_get_sain6_obj(n, dir, &sa6);
680 sa = (struct sockaddr *) &sa6;
681 sa_len = sizeof(sa6);
682 hent = gethostbyaddr(&sa6.sin6_addr, sizeof(sa6.sin6_addr), AF_INET6);
683 break;
686 bug_on(sizeof(n->rev_dns_src) != sizeof(n->rev_dns_dst));
687 getnameinfo(sa, sa_len, SELFLD(dir, rev_dns_src, rev_dns_dst),
688 sizeof(n->rev_dns_src), NULL, 0, NI_NUMERICHOST);
690 if (hent) {
691 memset(n->rev_dns_dst, 0, sizeof(n->rev_dns_dst));
692 memcpy(SELFLD(dir, rev_dns_src, rev_dns_dst),
693 hent->h_name, min(sizeof(n->rev_dns_src),
694 strlen(hent->h_name)));
698 static void flow_entry_get_extended(struct flow_entry *n)
700 if (n->flow_id == 0 || flow_entry_get_extended_is_dns(n))
701 return;
703 flow_entry_get_extended_revdns(n, flow_entry_src);
704 flow_entry_get_extended_geo(n, flow_entry_src);
706 flow_entry_get_extended_revdns(n, flow_entry_dst);
707 flow_entry_get_extended_geo(n, flow_entry_dst);
709 /* Lookup application */
710 n->inode = get_port_inode(n->port_src, n->l4_proto,
711 n->l3_proto == AF_INET6);
712 if (n->inode > 0)
713 walk_processes(n);
716 static uint16_t presenter_get_port(uint16_t src, uint16_t dst, int tcp)
718 if (src < dst && src < 1024) {
719 return src;
720 } else if (dst < src && dst < 1024) {
721 return dst;
722 } else {
723 const char *tmp1, *tmp2;
724 if (tcp) {
725 tmp1 = lookup_port_tcp(src);
726 tmp2 = lookup_port_tcp(dst);
727 } else {
728 tmp1 = lookup_port_udp(src);
729 tmp2 = lookup_port_udp(dst);
731 if (tmp1 && !tmp2) {
732 return src;
733 } else if (!tmp1 && tmp2) {
734 return dst;
735 } else {
736 if (src < dst)
737 return src;
738 else
739 return dst;
744 static void presenter_screen_do_line(WINDOW *screen, struct flow_entry *n,
745 unsigned int *line)
747 char tmp[128], *pname = NULL;
748 uint16_t port;
750 mvwprintw(screen, *line, 2, "");
752 /* PID, application name */
753 if (n->procnum > 0) {
754 slprintf(tmp, sizeof(tmp), "%s(%u)", basename(n->cmdline),
755 n->procnum);
757 printw("[");
758 attron(COLOR_PAIR(3));
759 printw("%s", tmp);
760 attroff(COLOR_PAIR(3));
761 printw("]:");
764 /* L3 protocol, L4 protocol, states */
765 printw("%s:%s", l3proto2str[n->l3_proto], l4proto2str[n->l4_proto]);
766 printw("[");
767 attron(COLOR_PAIR(3));
768 switch (n->l4_proto) {
769 case IPPROTO_TCP:
770 printw("%s", tcp_state2str[n->tcp_state]);
771 break;
772 case IPPROTO_SCTP:
773 printw("%s", sctp_state2str[n->sctp_state]);
774 break;
775 case IPPROTO_DCCP:
776 printw("%s", dccp_state2str[n->dccp_state]);
777 break;
778 case IPPROTO_UDP:
779 case IPPROTO_UDPLITE:
780 case IPPROTO_ICMP:
781 case IPPROTO_ICMPV6:
782 printw("NOSTATE");
783 break;
785 attroff(COLOR_PAIR(3));
786 printw("]");
788 /* Guess application port */
789 switch (n->l4_proto) {
790 case IPPROTO_TCP:
791 port = presenter_get_port(n->port_src, n->port_dst, 1);
792 pname = lookup_port_tcp(port);
793 break;
794 case IPPROTO_UDP:
795 case IPPROTO_UDPLITE:
796 port = presenter_get_port(n->port_src, n->port_dst, 0);
797 pname = lookup_port_udp(port);
798 break;
800 if (pname) {
801 attron(A_BOLD);
802 printw(":%s", pname);
803 attroff(A_BOLD);
805 printw(" ->");
807 /* Number packets, bytes */
808 if (n->counter_pkts > 0 && n->counter_bytes > 0)
809 printw(" (%llu pkts, %llu bytes) ->",
810 n->counter_pkts, n->counter_bytes);
812 /* Show source information: reverse DNS, port, country, city */
813 if (show_src) {
814 attron(COLOR_PAIR(1));
815 mvwprintw(screen, ++(*line), 8, "src: %s", n->rev_dns_src);
816 attroff(COLOR_PAIR(1));
818 printw(":%u", n->port_src);
820 if (n->country_src[0]) {
821 printw(" (");
823 attron(COLOR_PAIR(4));
824 printw("%s", n->country_src);
825 attroff(COLOR_PAIR(4));
827 if (n->city_src[0])
828 printw(", %s", n->city_src);
830 printw(")");
833 printw(" => ");
836 /* Show dest information: reverse DNS, port, country, city */
837 attron(COLOR_PAIR(2));
838 mvwprintw(screen, ++(*line), 8, "dst: %s", n->rev_dns_dst);
839 attroff(COLOR_PAIR(2));
841 printw(":%u", n->port_dst);
843 if (n->country_dst[0]) {
844 printw(" (");
846 attron(COLOR_PAIR(4));
847 printw("%s", n->country_dst);
848 attroff(COLOR_PAIR(4));
850 if (n->city_dst[0])
851 printw(", %s", n->city_dst);
853 printw(")");
857 static inline int presenter_flow_wrong_state(struct flow_entry *n, int state)
859 int ret = 1;
861 switch (n->l4_proto) {
862 case IPPROTO_TCP:
863 if (n->tcp_state == state)
864 ret = 0;
865 break;
866 case IPPROTO_SCTP:
867 if (n->sctp_state == state)
868 ret = 0;
869 break;
870 case IPPROTO_DCCP:
871 if (n->dccp_state == state)
872 ret = 0;
873 break;
874 case IPPROTO_UDP:
875 case IPPROTO_UDPLITE:
876 case IPPROTO_ICMP:
877 case IPPROTO_ICMPV6:
878 ret = 0;
879 break;
882 return ret;
885 static void presenter_screen_update(WINDOW *screen, struct flow_list *fl,
886 int skip_lines)
888 int i, j, maxy;
889 unsigned int line = 3;
890 struct flow_entry *n;
891 uint8_t protocols[] = {
892 IPPROTO_TCP,
893 IPPROTO_DCCP,
894 IPPROTO_SCTP,
895 IPPROTO_UDP,
896 IPPROTO_UDPLITE,
897 IPPROTO_ICMP,
898 IPPROTO_ICMPV6,
900 size_t protocol_state_size[] = {
901 [IPPROTO_TCP] = array_size(tcp_states),
902 [IPPROTO_DCCP] = array_size(dccp_states),
903 [IPPROTO_SCTP] = array_size(sctp_states),
904 [IPPROTO_UDP] = 1,
905 [IPPROTO_UDPLITE] = 1,
906 [IPPROTO_ICMP] = 1,
907 [IPPROTO_ICMPV6] = 1,
910 curs_set(0);
912 maxy = getmaxy(screen);
913 maxy -= 6;
915 start_color();
916 init_pair(1, COLOR_RED, COLOR_BLACK);
917 init_pair(2, COLOR_BLUE, COLOR_BLACK);
918 init_pair(3, COLOR_YELLOW, COLOR_BLACK);
919 init_pair(4, COLOR_GREEN, COLOR_BLACK);
921 wclear(screen);
922 clear();
924 mvwprintw(screen, 1, 2, "Kernel netfilter flows for %s%s%s%s%s%s"
925 "[+%d]", what & INCLUDE_TCP ? "TCP, " : "" ,
926 what & INCLUDE_UDP ? "UDP, " : "",
927 what & INCLUDE_SCTP ? "SCTP, " : "",
928 what & INCLUDE_DCCP ? "DCCP, " : "",
929 what & INCLUDE_ICMP && what & INCLUDE_IPV4 ? "ICMP, " : "",
930 what & INCLUDE_ICMP && what & INCLUDE_IPV6 ? "ICMP6, " : "",
931 skip_lines);
933 rcu_read_lock();
935 if (rcu_dereference(fl->head) == NULL)
936 mvwprintw(screen, line, 2, "(No active sessions! "
937 "Is netfilter running?)");
939 for (i = 0; i < array_size(protocols); i++) {
940 for (j = 0; j < protocol_state_size[protocols[i]]; j++) {
941 n = rcu_dereference(fl->head);
942 while (n && maxy > 0) {
943 int skip_entry = 0;
945 if (n->l4_proto != protocols[i])
946 skip_entry = 1;
947 if (presenter_flow_wrong_state(n, j))
948 skip_entry = 1;
949 if (presenter_get_port(n->port_src,
950 n->port_dst, 0) == 53)
951 skip_entry = 1;
952 if (skip_entry) {
953 n = rcu_dereference(n->next);
954 continue;
956 if (skip_lines > 0) {
957 n = rcu_dereference(n->next);
958 skip_lines--;
959 continue;
962 presenter_screen_do_line(screen, n, &line);
964 line++;
965 maxy -= (2 + 1 * show_src);
966 n = rcu_dereference(n->next);
971 rcu_read_unlock();
973 wrefresh(screen);
974 refresh();
977 static void presenter(void)
979 int skip_lines = 0;
980 WINDOW *screen;
982 dissector_init_ethernet(0);
983 screen = screen_init(false);
985 rcu_register_thread();
986 while (!sigint) {
987 switch (getch()) {
988 case 'q':
989 sigint = 1;
990 break;
991 case KEY_UP:
992 case 'u':
993 case 'k':
994 skip_lines--;
995 if (skip_lines < 0)
996 skip_lines = 0;
997 break;
998 case KEY_DOWN:
999 case 'd':
1000 case 'j':
1001 skip_lines++;
1002 if (skip_lines > SCROLL_MAX)
1003 skip_lines = SCROLL_MAX;
1004 break;
1005 default:
1006 fflush(stdin);
1007 break;
1010 presenter_screen_update(screen, &flow_list, skip_lines);
1011 usleep(100000);
1013 rcu_unregister_thread();
1015 screen_end();
1016 dissector_cleanup_ethernet();
1019 static int collector_cb(enum nf_conntrack_msg_type type,
1020 struct nf_conntrack *ct, void *data)
1022 if (sigint)
1023 return NFCT_CB_STOP;
1025 synchronize_rcu();
1026 spinlock_lock(&flow_list.lock);
1028 switch (type) {
1029 case NFCT_T_NEW:
1030 flow_list_new_entry(&flow_list, ct);
1031 break;
1032 case NFCT_T_UPDATE:
1033 flow_list_update_entry(&flow_list, ct);
1034 break;
1035 case NFCT_T_DESTROY:
1036 flow_list_destroy_entry(&flow_list, ct);
1037 break;
1038 default:
1039 break;
1042 spinlock_unlock(&flow_list.lock);
1044 return NFCT_CB_CONTINUE;
1047 static inline void collector_flush(struct nfct_handle *handle, uint8_t family)
1049 nfct_query(handle, NFCT_Q_FLUSH, &family);
1052 static void *collector(void *null)
1054 int ret;
1055 struct nfct_handle *handle;
1056 struct nfct_filter *filter;
1058 handle = nfct_open(CONNTRACK, NF_NETLINK_CONNTRACK_NEW |
1059 NF_NETLINK_CONNTRACK_UPDATE |
1060 NF_NETLINK_CONNTRACK_DESTROY);
1061 if (!handle)
1062 panic("Cannot create a nfct handle!\n");
1064 collector_flush(handle, AF_INET);
1065 collector_flush(handle, AF_INET6);
1067 filter = nfct_filter_create();
1068 if (!filter)
1069 panic("Cannot create a nfct filter!\n");
1071 ret = nfct_filter_attach(nfct_fd(handle), filter);
1072 if (ret < 0)
1073 panic("Cannot attach filter to handle!\n");
1075 if (what & INCLUDE_UDP) {
1076 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_UDP);
1077 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_UDPLITE);
1079 if (what & INCLUDE_TCP)
1080 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_TCP);
1081 if (what & INCLUDE_DCCP)
1082 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_DCCP);
1083 if (what & INCLUDE_SCTP)
1084 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_SCTP);
1085 if (what & INCLUDE_ICMP && what & INCLUDE_IPV4)
1086 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_ICMP);
1087 if (what & INCLUDE_ICMP && what & INCLUDE_IPV6)
1088 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_ICMPV6);
1089 if (what & INCLUDE_IPV4) {
1090 nfct_filter_set_logic(filter, NFCT_FILTER_SRC_IPV4, NFCT_FILTER_LOGIC_NEGATIVE);
1091 nfct_filter_add_attr(filter, NFCT_FILTER_SRC_IPV4, &filter_ipv4);
1093 if (what & INCLUDE_IPV6) {
1094 nfct_filter_set_logic(filter, NFCT_FILTER_SRC_IPV6, NFCT_FILTER_LOGIC_NEGATIVE);
1095 nfct_filter_add_attr(filter, NFCT_FILTER_SRC_IPV6, &filter_ipv6);
1098 ret = nfct_filter_attach(nfct_fd(handle), filter);
1099 if (ret < 0)
1100 panic("Cannot attach filter to handle!\n");
1102 nfct_callback_register(handle, NFCT_T_ALL, collector_cb, NULL);
1103 nfct_filter_destroy(filter);
1104 flow_list_init(&flow_list);
1106 rcu_register_thread();
1108 while (!sigint && ret >= 0)
1109 ret = nfct_catch(handle);
1111 rcu_unregister_thread();
1113 flow_list_destroy(&flow_list);
1114 nfct_close(handle);
1116 pthread_exit(0);
1119 int main(int argc, char **argv)
1121 pthread_t tid;
1122 int ret, c, opt_index, what_cmd = 0;
1124 setfsuid(getuid());
1125 setfsgid(getgid());
1127 while ((c = getopt_long(argc, argv, short_options, long_options,
1128 &opt_index)) != EOF) {
1129 switch (c) {
1130 case '4':
1131 what_cmd |= INCLUDE_IPV4;
1132 break;
1133 case '6':
1134 what_cmd |= INCLUDE_IPV6;
1135 break;
1136 case 'T':
1137 what_cmd |= INCLUDE_TCP;
1138 break;
1139 case 'U':
1140 what_cmd |= INCLUDE_UDP;
1141 break;
1142 case 'D':
1143 what_cmd |= INCLUDE_DCCP;
1144 break;
1145 case 'I':
1146 what_cmd |= INCLUDE_ICMP;
1147 break;
1148 case 'S':
1149 what_cmd |= INCLUDE_SCTP;
1150 break;
1151 case 's':
1152 show_src = 1;
1153 break;
1154 case 'u':
1155 update_geoip();
1156 die();
1157 break;
1158 case 'h':
1159 help();
1160 break;
1161 case 'v':
1162 version();
1163 break;
1164 default:
1165 break;
1169 if (what_cmd > 0)
1170 what = what_cmd;
1172 rcu_init();
1174 register_signal(SIGINT, signal_handler);
1175 register_signal(SIGHUP, signal_handler);
1177 init_geoip(1);
1179 ret = pthread_create(&tid, NULL, collector, NULL);
1180 if (ret < 0)
1181 panic("Cannot create phthread!\n");
1183 presenter();
1185 destroy_geoip();
1187 return 0;