netsniff-ng trafgen: check return value of pull_and_flush_ring
[netsniff-ng.git] / flowtop.c
blobbaa0964956b6a1dcce27725977fc6734420c667b
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 "xio.h"
33 #include "geoip.h"
34 #include "xutils.h"
35 #include "built_in.h"
36 #include "locking.h"
37 #include "dissector_eth.h"
38 #include "pkt_buff.h"
40 struct flow_entry {
41 uint32_t flow_id, use, status;
42 uint8_t l3_proto, l4_proto;
43 uint32_t ip4_src_addr, ip4_dst_addr;
44 uint32_t ip6_src_addr[4], ip6_dst_addr[4];
45 uint16_t port_src, port_dst;
46 uint8_t tcp_state, tcp_flags, sctp_state, dccp_state;
47 uint64_t counter_pkts, counter_bytes;
48 uint64_t timestamp_start, timestamp_stop;
49 char country_src[128], country_dst[128];
50 char city_src[128], city_dst[128];
51 char rev_dns_src[256], rev_dns_dst[256];
52 char cmdline[256];
53 struct flow_entry *next;
54 int procnum, inode;
57 struct flow_list {
58 struct flow_entry *head;
59 struct spinlock lock;
62 #ifndef ATTR_TIMESTAMP_START
63 # define ATTR_TIMESTAMP_START 63
64 #endif
65 #ifndef ATTR_TIMESTAMP_STOP
66 # define ATTR_TIMESTAMP_STOP 64
67 #endif
69 #define SCROLL_MAX 1000
71 #define INCLUDE_IPV4 (1 << 0)
72 #define INCLUDE_IPV6 (1 << 1)
73 #define INCLUDE_UDP (1 << 2)
74 #define INCLUDE_TCP (1 << 3)
75 #define INCLUDE_DCCP (1 << 4)
76 #define INCLUDE_ICMP (1 << 5)
77 #define INCLUDE_SCTP (1 << 6)
79 volatile sig_atomic_t sigint = 0;
81 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\n"
244 " -h|--help Print this help\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_STRING);
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 rcu_assign_pointer(n1->next, NULL);
371 flow_entry_xfree(n1);
372 } else {
373 flow_entry_xfree(fl->head);
375 rcu_assign_pointer(fl->head, NULL);
380 static void flow_list_destroy(struct flow_list *fl)
382 struct flow_entry *n;
384 while (fl->head != NULL) {
385 n = rcu_dereference(fl->head->next);
386 rcu_assign_pointer(fl->head->next, NULL);
388 flow_entry_xfree(fl->head);
389 rcu_assign_pointer(fl->head, n);
392 synchronize_rcu();
393 spinlock_destroy(&fl->lock);
396 static int walk_process(char *process, struct flow_entry *n)
398 int ret;
399 DIR *dir;
400 struct dirent *ent;
401 char path[1024];
403 if (snprintf(path, sizeof(path), "/proc/%s/fd", process) == -1)
404 panic("giant process name! %s\n", process);
406 dir = opendir(path);
407 if (!dir)
408 return 0;
410 while ((ent = readdir(dir))) {
411 struct stat statbuf;
413 if (snprintf(path, sizeof(path), "/proc/%s/fd/%s",
414 process, ent->d_name) < 0)
415 continue;
417 if (stat(path, &statbuf) < 0)
418 continue;
420 if (S_ISSOCK(statbuf.st_mode) && n->inode == statbuf.st_ino) {
421 memset(n->cmdline, 0, sizeof(n->cmdline));
423 snprintf(path, sizeof(path), "/proc/%s/exe", process);
425 ret = readlink(path, n->cmdline,
426 sizeof(n->cmdline) - 1);
427 if (ret < 0)
428 panic("readlink error: %s\n", strerror(errno));
430 n->procnum = atoi(process);
431 closedir(dir);
432 return 1;
436 closedir(dir);
437 return 0;
440 static void walk_processes(struct flow_entry *n)
442 int ret;
443 DIR *dir;
444 struct dirent *ent;
446 /* n->inode must be set */
447 if (n->inode <= 0) {
448 memset(n->cmdline, 0, sizeof(n->cmdline));
449 return;
452 dir = opendir("/proc");
453 if (!dir)
454 panic("Cannot open /proc!\n");
456 while ((ent = readdir(dir))) {
457 if (strspn(ent->d_name, "0123456789") == strlen(ent->d_name)) {
458 ret = walk_process(ent->d_name, n);
459 if (ret > 0)
460 break;
464 closedir(dir);
467 static int get_port_inode(uint16_t port, int proto, int is_ip6)
469 int ret = -ENOENT;
470 char path[128], buff[1024];
471 FILE *proc;
473 memset(path, 0, sizeof(path));
474 snprintf(path, sizeof(path), "/proc/net/%s%s",
475 l4proto2str[proto], is_ip6 ? "6" : "");
477 proc = fopen(path, "r");
478 if (!proc)
479 return -EIO;
481 memset(buff, 0, sizeof(buff));
483 while (fgets(buff, sizeof(buff), proc) != NULL) {
484 int inode = 0;
485 unsigned int lport = 0;
487 buff[sizeof(buff) - 1] = 0;
488 if (sscanf(buff, "%*u: %*X:%X %*X:%*X %*X %*X:%*X %*X:%*X "
489 "%*X %*u %*u %u", &lport, &inode) == 2) {
490 if ((uint16_t) lport == port) {
491 ret = inode;
492 break;
496 memset(buff, 0, sizeof(buff));
499 fclose(proc);
500 return ret;
503 #define CP_NFCT(elem, attr, x) \
504 do { n->elem = nfct_get_attr_u##x(ct,(attr)); } while (0)
505 #define CP_NFCT_BUFF(elem, attr) do { \
506 const uint8_t *buff = nfct_get_attr(ct,(attr)); \
507 if (buff != NULL) \
508 memcpy(n->elem, buff, sizeof(n->elem)); \
509 } while (0)
511 static void flow_entry_from_ct(struct flow_entry *n, struct nf_conntrack *ct)
513 CP_NFCT(l3_proto, ATTR_ORIG_L3PROTO, 8);
514 CP_NFCT(l4_proto, ATTR_ORIG_L4PROTO, 8);
516 CP_NFCT(ip4_src_addr, ATTR_ORIG_IPV4_SRC, 32);
517 CP_NFCT(ip4_dst_addr, ATTR_ORIG_IPV4_DST, 32);
519 CP_NFCT(port_src, ATTR_ORIG_PORT_SRC, 16);
520 CP_NFCT(port_dst, ATTR_ORIG_PORT_DST, 16);
522 CP_NFCT(status, ATTR_STATUS, 32);
524 CP_NFCT(tcp_state, ATTR_TCP_STATE, 8);
525 CP_NFCT(tcp_flags, ATTR_TCP_FLAGS_ORIG, 8);
526 CP_NFCT(sctp_state, ATTR_SCTP_STATE, 8);
527 CP_NFCT(dccp_state, ATTR_DCCP_STATE, 8);
529 CP_NFCT(counter_pkts, ATTR_ORIG_COUNTER_PACKETS, 64);
530 CP_NFCT(counter_bytes, ATTR_ORIG_COUNTER_BYTES, 64);
532 CP_NFCT(timestamp_start, ATTR_TIMESTAMP_START, 64);
533 CP_NFCT(timestamp_stop, ATTR_TIMESTAMP_STOP, 64);
535 CP_NFCT(flow_id, ATTR_ID, 32);
536 CP_NFCT(use, ATTR_USE, 32);
538 CP_NFCT_BUFF(ip6_src_addr, ATTR_ORIG_IPV6_SRC);
539 CP_NFCT_BUFF(ip6_dst_addr, ATTR_ORIG_IPV6_DST);
541 n->port_src = ntohs(n->port_src);
542 n->port_dst = ntohs(n->port_dst);
544 n->ip4_src_addr = ntohl(n->ip4_src_addr);
545 n->ip4_dst_addr = ntohl(n->ip4_dst_addr);
548 enum flow_entry_direction {
549 flow_entry_src,
550 flow_entry_dst,
553 static inline int flow_entry_get_extended_is_dns(struct flow_entry *n)
555 /* We don't want to analyze / display DNS itself, since we
556 * use it to resolve reverse dns.
558 return n->port_src == 53 || n->port_dst == 53;
561 #define SELFLD(dir,src_member,dst_member) \
562 (((dir) == flow_entry_src) ? n->src_member : n->dst_member)
564 static struct sockaddr_in *
565 flow_entry_get_sain4_obj(struct flow_entry *n, enum flow_entry_direction dir,
566 struct sockaddr_in *sa)
568 memset(sa, 0, sizeof(*sa));
569 sa->sin_family = PF_INET;
570 sa->sin_addr.s_addr = htonl(SELFLD(dir, ip4_src_addr, ip4_dst_addr));
572 return sa;
575 static struct sockaddr_in6 *
576 flow_entry_get_sain6_obj(struct flow_entry *n, enum flow_entry_direction dir,
577 struct sockaddr_in6 *sa)
579 memset(sa, 0, sizeof(*sa));
580 sa->sin6_family = PF_INET6;
582 memcpy(&sa->sin6_addr, SELFLD(dir, ip6_src_addr, ip6_dst_addr),
583 sizeof(SELFLD(dir, ip6_src_addr, ip6_dst_addr)));
585 return sa;
588 static void
589 flow_entry_geo_city_lookup_generic(struct flow_entry *n,
590 enum flow_entry_direction dir)
592 struct sockaddr_in sa4;
593 struct sockaddr_in6 sa6;
594 const char *city = NULL;
596 switch (n->l3_proto) {
597 default:
598 bug();
600 case AF_INET:
601 flow_entry_get_sain4_obj(n, dir, &sa4);
602 city = geoip4_city_name(sa4);
603 break;
605 case AF_INET6:
606 flow_entry_get_sain6_obj(n, dir, &sa6);
607 city = geoip6_city_name(sa6);
608 break;
611 bug_on(sizeof(n->city_src) != sizeof(n->city_dst));
613 if (city) {
614 memcpy(SELFLD(dir, city_src, city_dst), city,
615 min(sizeof(n->city_src), strlen(city)));
616 } else {
617 memset(SELFLD(dir, city_src, city_dst), 0,
618 sizeof(n->city_src));
622 static void
623 flow_entry_geo_country_lookup_generic(struct flow_entry *n,
624 enum flow_entry_direction dir)
626 struct sockaddr_in sa4;
627 struct sockaddr_in6 sa6;
628 const char *country = NULL;
630 switch (n->l3_proto) {
631 default:
632 bug();
634 case AF_INET:
635 flow_entry_get_sain4_obj(n, dir, &sa4);
636 country = geoip4_country_name(sa4);
637 break;
639 case AF_INET6:
640 flow_entry_get_sain6_obj(n, dir, &sa6);
641 country = geoip6_country_name(sa6);
642 break;
645 bug_on(sizeof(n->country_src) != sizeof(n->country_dst));
647 if (country) {
648 memcpy(SELFLD(dir, country_src, country_dst), country,
649 min(sizeof(n->country_src), strlen(country)));
650 } else {
651 memset(SELFLD(dir, country_src, country_dst), 0,
652 sizeof(n->country_src));
656 static void flow_entry_get_extended_geo(struct flow_entry *n,
657 enum flow_entry_direction dir)
659 flow_entry_geo_city_lookup_generic(n, dir);
660 flow_entry_geo_country_lookup_generic(n, dir);
663 static void flow_entry_get_extended_revdns(struct flow_entry *n,
664 enum flow_entry_direction dir)
666 size_t sa_len;
667 struct sockaddr_in sa4;
668 struct sockaddr_in6 sa6;
669 struct sockaddr *sa;
670 struct hostent *hent;
672 switch (n->l3_proto) {
673 default:
674 bug();
676 case AF_INET:
677 flow_entry_get_sain4_obj(n, dir, &sa4);
678 sa = (struct sockaddr *) &sa4;
679 sa_len = sizeof(sa4);
680 hent = gethostbyaddr(&sa4.sin_addr, sizeof(sa4.sin_addr), AF_INET);
681 break;
683 case AF_INET6:
684 flow_entry_get_sain6_obj(n, dir, &sa6);
685 sa = (struct sockaddr *) &sa6;
686 sa_len = sizeof(sa6);
687 hent = gethostbyaddr(&sa6.sin6_addr, sizeof(sa6.sin6_addr), AF_INET6);
688 break;
691 bug_on(sizeof(n->rev_dns_src) != sizeof(n->rev_dns_dst));
692 getnameinfo(sa, sa_len, SELFLD(dir, rev_dns_src, rev_dns_dst),
693 sizeof(n->rev_dns_src), NULL, 0, NI_NUMERICHOST);
695 if (hent) {
696 memset(n->rev_dns_dst, 0, sizeof(n->rev_dns_dst));
697 memcpy(SELFLD(dir, rev_dns_src, rev_dns_dst),
698 hent->h_name, min(sizeof(n->rev_dns_src),
699 strlen(hent->h_name)));
703 static void flow_entry_get_extended(struct flow_entry *n)
705 if (n->flow_id == 0 || flow_entry_get_extended_is_dns(n))
706 return;
708 flow_entry_get_extended_revdns(n, flow_entry_src);
709 flow_entry_get_extended_geo(n, flow_entry_src);
711 flow_entry_get_extended_revdns(n, flow_entry_dst);
712 flow_entry_get_extended_geo(n, flow_entry_dst);
714 /* Lookup application */
715 n->inode = get_port_inode(n->port_src, n->l4_proto,
716 n->l3_proto == AF_INET6);
717 if (n->inode > 0)
718 walk_processes(n);
721 static uint16_t presenter_get_port(uint16_t src, uint16_t dst, int tcp)
723 if (src < dst && src < 1024) {
724 return src;
725 } else if (dst < src && dst < 1024) {
726 return dst;
727 } else {
728 const char *tmp1, *tmp2;
729 if (tcp) {
730 tmp1 = lookup_port_tcp(src);
731 tmp2 = lookup_port_tcp(dst);
732 } else {
733 tmp1 = lookup_port_udp(src);
734 tmp2 = lookup_port_udp(dst);
736 if (tmp1 && !tmp2) {
737 return src;
738 } else if (!tmp1 && tmp2) {
739 return dst;
740 } else {
741 if (src < dst)
742 return src;
743 else
744 return dst;
749 static void presenter_screen_init(WINDOW **screen)
751 (*screen) = initscr();
752 noecho();
753 cbreak();
754 keypad(stdscr, TRUE);
755 nodelay(*screen, TRUE);
756 refresh();
757 wrefresh(*screen);
760 static void presenter_screen_do_line(WINDOW *screen, struct flow_entry *n,
761 unsigned int *line)
763 char tmp[128], *pname = NULL;
764 uint16_t port;
766 mvwprintw(screen, *line, 2, "");
768 /* PID, application name */
769 if (n->procnum > 0) {
770 slprintf(tmp, sizeof(tmp), "%s(%u)", basename(n->cmdline),
771 n->procnum);
773 printw("[");
774 attron(COLOR_PAIR(3));
775 printw("%s", tmp);
776 attroff(COLOR_PAIR(3));
777 printw("]:");
780 /* L3 protocol, L4 protocol, states */
781 printw("%s:%s", l3proto2str[n->l3_proto], l4proto2str[n->l4_proto]);
782 printw("[");
783 attron(COLOR_PAIR(3));
784 switch (n->l4_proto) {
785 case IPPROTO_TCP:
786 printw("%s", tcp_state2str[n->tcp_state]);
787 break;
788 case IPPROTO_SCTP:
789 printw("%s", sctp_state2str[n->sctp_state]);
790 break;
791 case IPPROTO_DCCP:
792 printw("%s", dccp_state2str[n->dccp_state]);
793 break;
794 case IPPROTO_UDP:
795 case IPPROTO_UDPLITE:
796 case IPPROTO_ICMP:
797 case IPPROTO_ICMPV6:
798 printw("NOSTATE");
799 break;
801 attroff(COLOR_PAIR(3));
802 printw("]");
804 /* Guess application port */
805 switch (n->l4_proto) {
806 case IPPROTO_TCP:
807 port = presenter_get_port(n->port_src, n->port_dst, 1);
808 pname = lookup_port_tcp(port);
809 break;
810 case IPPROTO_UDP:
811 case IPPROTO_UDPLITE:
812 port = presenter_get_port(n->port_src, n->port_dst, 0);
813 pname = lookup_port_udp(port);
814 break;
816 if (pname) {
817 attron(A_BOLD);
818 printw(":%s", pname);
819 attroff(A_BOLD);
821 printw(" ->");
823 /* Number packets, bytes */
824 if (n->counter_pkts > 0 && n->counter_bytes > 0)
825 printw(" (%llu pkts, %llu bytes) ->",
826 n->counter_pkts, n->counter_bytes);
828 /* Show source information: reverse DNS, port, country, city */
829 if (show_src) {
830 attron(COLOR_PAIR(1));
831 mvwprintw(screen, ++(*line), 8, "src: %s", n->rev_dns_src);
832 attroff(COLOR_PAIR(1));
834 printw(":%u", n->port_src);
836 if (n->country_src[0]) {
837 printw(" (");
839 attron(COLOR_PAIR(4));
840 printw("%s", n->country_src);
841 attroff(COLOR_PAIR(4));
843 if (n->city_src[0])
844 printw(", %s", n->city_src);
846 printw(")");
849 printw(" => ");
852 /* Show dest information: reverse DNS, port, country, city */
853 attron(COLOR_PAIR(2));
854 mvwprintw(screen, ++(*line), 8, "dst: %s", n->rev_dns_dst);
855 attroff(COLOR_PAIR(2));
857 printw(":%u", n->port_dst);
859 if (n->country_dst[0]) {
860 printw(" (");
862 attron(COLOR_PAIR(4));
863 printw("%s", n->country_dst);
864 attroff(COLOR_PAIR(4));
866 if (n->city_dst[0])
867 printw(", %s", n->city_dst);
869 printw(")");
873 static inline int presenter_flow_wrong_state(struct flow_entry *n, int state)
875 int ret = 1;
877 switch (n->l4_proto) {
878 case IPPROTO_TCP:
879 if (n->tcp_state == state)
880 ret = 0;
881 break;
882 case IPPROTO_SCTP:
883 if (n->sctp_state == state)
884 ret = 0;
885 break;
886 case IPPROTO_DCCP:
887 if (n->dccp_state == state)
888 ret = 0;
889 break;
890 case IPPROTO_UDP:
891 case IPPROTO_UDPLITE:
892 case IPPROTO_ICMP:
893 case IPPROTO_ICMPV6:
894 ret = 0;
895 break;
898 return ret;
901 static void presenter_screen_update(WINDOW *screen, struct flow_list *fl,
902 int skip_lines)
904 int i, j, maxy;
905 unsigned int line = 3;
906 struct flow_entry *n;
907 uint8_t protocols[] = {
908 IPPROTO_TCP,
909 IPPROTO_DCCP,
910 IPPROTO_SCTP,
911 IPPROTO_UDP,
912 IPPROTO_UDPLITE,
913 IPPROTO_ICMP,
914 IPPROTO_ICMPV6,
916 size_t protocol_state_size[] = {
917 [IPPROTO_TCP] = array_size(tcp_states),
918 [IPPROTO_DCCP] = array_size(dccp_states),
919 [IPPROTO_SCTP] = array_size(sctp_states),
920 [IPPROTO_UDP] = 1,
921 [IPPROTO_UDPLITE] = 1,
922 [IPPROTO_ICMP] = 1,
923 [IPPROTO_ICMPV6] = 1,
926 curs_set(0);
928 maxy = getmaxy(screen);
929 maxy -= 6;
931 start_color();
932 init_pair(1, COLOR_RED, COLOR_BLACK);
933 init_pair(2, COLOR_BLUE, COLOR_BLACK);
934 init_pair(3, COLOR_YELLOW, COLOR_BLACK);
935 init_pair(4, COLOR_GREEN, COLOR_BLACK);
937 wclear(screen);
938 clear();
940 mvwprintw(screen, 1, 2, "Kernel netfilter flows for %s%s%s%s%s%s"
941 "[+%d]", what & INCLUDE_TCP ? "TCP, " : "" ,
942 what & INCLUDE_UDP ? "UDP, " : "",
943 what & INCLUDE_SCTP ? "SCTP, " : "",
944 what & INCLUDE_DCCP ? "DCCP, " : "",
945 what & INCLUDE_ICMP && what & INCLUDE_IPV4 ? "ICMP, " : "",
946 what & INCLUDE_ICMP && what & INCLUDE_IPV6 ? "ICMP6, " : "",
947 skip_lines);
949 rcu_read_lock();
951 if (rcu_dereference(fl->head) == NULL)
952 mvwprintw(screen, line, 2, "(No active sessions! "
953 "Is netfilter running?)");
955 for (i = 0; i < array_size(protocols); i++) {
956 for (j = 0; j < protocol_state_size[protocols[i]]; j++) {
957 n = rcu_dereference(fl->head);
958 while (n && maxy > 0) {
959 int skip_entry = 0;
961 if (n->l4_proto != protocols[i])
962 skip_entry = 1;
963 if (presenter_flow_wrong_state(n, j))
964 skip_entry = 1;
965 if (presenter_get_port(n->port_src,
966 n->port_dst, 0) == 53)
967 skip_entry = 1;
968 if (skip_entry) {
969 n = rcu_dereference(n->next);
970 continue;
972 if (skip_lines > 0) {
973 n = rcu_dereference(n->next);
974 skip_lines--;
975 continue;
978 presenter_screen_do_line(screen, n, &line);
980 line++;
981 maxy -= (2 + 1 * show_src);
982 n = rcu_dereference(n->next);
987 rcu_read_unlock();
989 wrefresh(screen);
990 refresh();
993 static inline void presenter_screen_end(void)
995 endwin();
998 static void presenter(void)
1000 int skip_lines = 0;
1001 WINDOW *screen = NULL;
1003 dissector_init_ethernet(0);
1004 presenter_screen_init(&screen);
1006 rcu_register_thread();
1007 while (!sigint) {
1008 switch (getch()) {
1009 case 'q':
1010 sigint = 1;
1011 break;
1012 case KEY_UP:
1013 case 'u':
1014 case 'k':
1015 skip_lines--;
1016 if (skip_lines < 0)
1017 skip_lines = 0;
1018 break;
1019 case KEY_DOWN:
1020 case 'd':
1021 case 'j':
1022 skip_lines++;
1023 if (skip_lines > SCROLL_MAX)
1024 skip_lines = SCROLL_MAX;
1025 break;
1026 default:
1027 fflush(stdin);
1028 break;
1031 presenter_screen_update(screen, &flow_list, skip_lines);
1032 usleep(100000);
1034 rcu_unregister_thread();
1036 presenter_screen_end();
1037 dissector_cleanup_ethernet();
1040 static int collector_cb(enum nf_conntrack_msg_type type,
1041 struct nf_conntrack *ct, void *data)
1043 if (sigint)
1044 return NFCT_CB_STOP;
1046 synchronize_rcu();
1047 spinlock_lock(&flow_list.lock);
1049 switch (type) {
1050 case NFCT_T_NEW:
1051 flow_list_new_entry(&flow_list, ct);
1052 break;
1053 case NFCT_T_UPDATE:
1054 flow_list_update_entry(&flow_list, ct);
1055 break;
1056 case NFCT_T_DESTROY:
1057 flow_list_destroy_entry(&flow_list, ct);
1058 break;
1059 default:
1060 break;
1063 spinlock_unlock(&flow_list.lock);
1065 return NFCT_CB_CONTINUE;
1068 static inline void collector_flush(struct nfct_handle *handle, uint8_t family)
1070 nfct_query(handle, NFCT_Q_FLUSH, &family);
1073 static void *collector(void *null)
1075 int ret;
1076 struct nfct_handle *handle;
1077 struct nfct_filter *filter;
1079 handle = nfct_open(CONNTRACK, NF_NETLINK_CONNTRACK_NEW |
1080 NF_NETLINK_CONNTRACK_UPDATE |
1081 NF_NETLINK_CONNTRACK_DESTROY);
1082 if (!handle)
1083 panic("Cannot create a nfct handle!\n");
1085 collector_flush(handle, AF_INET);
1086 collector_flush(handle, AF_INET6);
1088 filter = nfct_filter_create();
1089 if (!filter)
1090 panic("Cannot create a nfct filter!\n");
1092 ret = nfct_filter_attach(nfct_fd(handle), filter);
1093 if (ret < 0)
1094 panic("Cannot attach filter to handle!\n");
1096 if (what & INCLUDE_UDP) {
1097 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_UDP);
1098 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_UDPLITE);
1100 if (what & INCLUDE_TCP)
1101 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_TCP);
1102 if (what & INCLUDE_DCCP)
1103 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_DCCP);
1104 if (what & INCLUDE_SCTP)
1105 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_SCTP);
1106 if (what & INCLUDE_ICMP && what & INCLUDE_IPV4)
1107 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_ICMP);
1108 if (what & INCLUDE_ICMP && what & INCLUDE_IPV6)
1109 nfct_filter_add_attr_u32(filter, NFCT_FILTER_L4PROTO, IPPROTO_ICMPV6);
1110 if (what & INCLUDE_IPV4) {
1111 nfct_filter_set_logic(filter, NFCT_FILTER_SRC_IPV4, NFCT_FILTER_LOGIC_NEGATIVE);
1112 nfct_filter_add_attr(filter, NFCT_FILTER_SRC_IPV4, &filter_ipv4);
1114 if (what & INCLUDE_IPV6) {
1115 nfct_filter_set_logic(filter, NFCT_FILTER_SRC_IPV6, NFCT_FILTER_LOGIC_NEGATIVE);
1116 nfct_filter_add_attr(filter, NFCT_FILTER_SRC_IPV6, &filter_ipv6);
1119 ret = nfct_filter_attach(nfct_fd(handle), filter);
1120 if (ret < 0)
1121 panic("Cannot attach filter to handle!\n");
1123 nfct_callback_register(handle, NFCT_T_ALL, collector_cb, NULL);
1124 nfct_filter_destroy(filter);
1125 flow_list_init(&flow_list);
1127 rcu_register_thread();
1129 while (!sigint && ret >= 0)
1130 ret = nfct_catch(handle);
1132 rcu_unregister_thread();
1134 flow_list_destroy(&flow_list);
1135 nfct_close(handle);
1137 pthread_exit(0);
1140 int main(int argc, char **argv)
1142 pthread_t tid;
1143 int ret, c, opt_index, what_cmd = 0;
1145 setfsuid(getuid());
1146 setfsgid(getgid());
1148 while ((c = getopt_long(argc, argv, short_options, long_options,
1149 &opt_index)) != EOF) {
1150 switch (c) {
1151 case '4':
1152 what_cmd |= INCLUDE_IPV4;
1153 break;
1154 case '6':
1155 what_cmd |= INCLUDE_IPV6;
1156 break;
1157 case 'T':
1158 what_cmd |= INCLUDE_TCP;
1159 break;
1160 case 'U':
1161 what_cmd |= INCLUDE_UDP;
1162 break;
1163 case 'D':
1164 what_cmd |= INCLUDE_DCCP;
1165 break;
1166 case 'I':
1167 what_cmd |= INCLUDE_ICMP;
1168 break;
1169 case 'S':
1170 what_cmd |= INCLUDE_SCTP;
1171 break;
1172 case 's':
1173 show_src = 1;
1174 break;
1175 case 'u':
1176 update_geoip();
1177 die();
1178 break;
1179 case 'h':
1180 help();
1181 break;
1182 case 'v':
1183 version();
1184 break;
1185 default:
1186 break;
1190 if (what_cmd > 0)
1191 what = what_cmd;
1193 rcu_init();
1195 register_signal(SIGINT, signal_handler);
1196 register_signal(SIGHUP, signal_handler);
1198 init_geoip(1);
1200 ret = pthread_create(&tid, NULL, collector, NULL);
1201 if (ret < 0)
1202 panic("Cannot create phthread!\n");
1204 presenter();
1206 destroy_geoip();
1208 return 0;