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.
18 #include <netinet/in.h>
22 #include <sys/fsuid.h>
29 #include "conntrack.h"
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];
53 struct flow_entry
*next
;
59 struct flow_entry
*head
;
63 #ifndef ATTR_TIMESTAMP_START
64 # define ATTR_TIMESTAMP_START 63
66 #ifndef ATTR_TIMESTAMP_STOP
67 # define ATTR_TIMESTAMP_STOP 64
70 #define SCROLL_MAX 1000
72 #define INCLUDE_IPV4 (1 << 0)
73 #define INCLUDE_IPV6 (1 << 1)
74 #define INCLUDE_UDP (1 << 2)
75 #define INCLUDE_TCP (1 << 3)
76 #define INCLUDE_DCCP (1 << 4)
77 #define INCLUDE_ICMP (1 << 5)
78 #define INCLUDE_SCTP (1 << 6)
80 static volatile sig_atomic_t sigint
= 0;
81 static int what
= INCLUDE_IPV4
| INCLUDE_IPV6
| INCLUDE_TCP
, show_src
= 0;
82 static struct flow_list flow_list
;
83 static struct condlock collector_ready
;
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'},
101 static const char *copyright
= "Please report bugs to <bugs@netsniff-ng.org>\n"
102 "Copyright (C) 2011-2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>\n"
103 "Copyright (C) 2011-2012 Emmanuel Roullit <emmanuel.roullit@gmail.com>\n"
104 "Swiss federal institute of technology (ETH Zurich)\n"
105 "License: GNU GPL version 2.0\n"
106 "This is free software: you are free to change and redistribute it.\n"
107 "There is NO WARRANTY, to the extent permitted by law.";
109 static const char *const l3proto2str
[AF_MAX
] = {
114 static const char *const l4proto2str
[IPPROTO_MAX
] = {
115 [IPPROTO_TCP
] = "tcp",
116 [IPPROTO_UDP
] = "udp",
117 [IPPROTO_UDPLITE
] = "udplite",
118 [IPPROTO_ICMP
] = "icmp",
119 [IPPROTO_ICMPV6
] = "icmpv6",
120 [IPPROTO_SCTP
] = "sctp",
121 [IPPROTO_GRE
] = "gre",
122 [IPPROTO_DCCP
] = "dccp",
123 [IPPROTO_IGMP
] = "igmp",
124 [IPPROTO_IPIP
] = "ipip",
125 [IPPROTO_EGP
] = "egp",
126 [IPPROTO_PUP
] = "pup",
127 [IPPROTO_IDP
] = "idp",
128 [IPPROTO_RSVP
] = "rsvp",
129 [IPPROTO_IPV6
] = "ip6tun",
130 [IPPROTO_ESP
] = "esp",
132 [IPPROTO_PIM
] = "pim",
133 [IPPROTO_COMP
] = "comp",
136 static const char *const tcp_state2str
[TCP_CONNTRACK_MAX
] = {
137 [TCP_CONNTRACK_NONE
] = "NOSTATE",
138 [TCP_CONNTRACK_SYN_SENT
] = "SYN_SENT",
139 [TCP_CONNTRACK_SYN_RECV
] = "SYN_RECV",
140 [TCP_CONNTRACK_ESTABLISHED
] = "ESTABLISHED",
141 [TCP_CONNTRACK_FIN_WAIT
] = "FIN_WAIT",
142 [TCP_CONNTRACK_CLOSE_WAIT
] = "CLOSE_WAIT",
143 [TCP_CONNTRACK_LAST_ACK
] = "LAST_ACK",
144 [TCP_CONNTRACK_TIME_WAIT
] = "TIME_WAIT",
145 [TCP_CONNTRACK_CLOSE
] = "CLOSE",
146 [TCP_CONNTRACK_SYN_SENT2
] = "SYN_SENT2",
149 static const uint8_t tcp_states
[] = {
150 TCP_CONNTRACK_SYN_SENT
,
151 TCP_CONNTRACK_SYN_RECV
,
152 TCP_CONNTRACK_ESTABLISHED
,
153 TCP_CONNTRACK_FIN_WAIT
,
154 TCP_CONNTRACK_CLOSE_WAIT
,
155 TCP_CONNTRACK_LAST_ACK
,
156 TCP_CONNTRACK_TIME_WAIT
,
158 TCP_CONNTRACK_SYN_SENT2
,
162 static const char *const dccp_state2str
[DCCP_CONNTRACK_MAX
] = {
163 [DCCP_CONNTRACK_NONE
] = "NOSTATE",
164 [DCCP_CONNTRACK_REQUEST
] = "REQUEST",
165 [DCCP_CONNTRACK_RESPOND
] = "RESPOND",
166 [DCCP_CONNTRACK_PARTOPEN
] = "PARTOPEN",
167 [DCCP_CONNTRACK_OPEN
] = "OPEN",
168 [DCCP_CONNTRACK_CLOSEREQ
] = "CLOSEREQ",
169 [DCCP_CONNTRACK_CLOSING
] = "CLOSING",
170 [DCCP_CONNTRACK_TIMEWAIT
] = "TIMEWAIT",
171 [DCCP_CONNTRACK_IGNORE
] = "IGNORE",
172 [DCCP_CONNTRACK_INVALID
] = "INVALID",
175 static const uint8_t dccp_states
[] = {
177 DCCP_CONNTRACK_REQUEST
,
178 DCCP_CONNTRACK_RESPOND
,
179 DCCP_CONNTRACK_PARTOPEN
,
181 DCCP_CONNTRACK_CLOSEREQ
,
182 DCCP_CONNTRACK_CLOSING
,
183 DCCP_CONNTRACK_TIMEWAIT
,
184 DCCP_CONNTRACK_IGNORE
,
185 DCCP_CONNTRACK_INVALID
,
188 static const char *const sctp_state2str
[SCTP_CONNTRACK_MAX
] = {
189 [SCTP_CONNTRACK_NONE
] = "NOSTATE",
190 [SCTP_CONNTRACK_CLOSED
] = "CLOSED",
191 [SCTP_CONNTRACK_COOKIE_WAIT
] = "COOKIE_WAIT",
192 [SCTP_CONNTRACK_COOKIE_ECHOED
] = "COOKIE_ECHOED",
193 [SCTP_CONNTRACK_ESTABLISHED
] = "ESTABLISHED",
194 [SCTP_CONNTRACK_SHUTDOWN_SENT
] = "SHUTDOWN_SENT",
195 [SCTP_CONNTRACK_SHUTDOWN_RECD
] = "SHUTDOWN_RECD",
196 [SCTP_CONNTRACK_SHUTDOWN_ACK_SENT
] = "SHUTDOWN_ACK_SENT",
199 static const uint8_t sctp_states
[] = {
201 SCTP_CONNTRACK_CLOSED
,
202 SCTP_CONNTRACK_COOKIE_WAIT
,
203 SCTP_CONNTRACK_COOKIE_ECHOED
,
204 SCTP_CONNTRACK_ESTABLISHED
,
205 SCTP_CONNTRACK_SHUTDOWN_SENT
,
206 SCTP_CONNTRACK_SHUTDOWN_RECD
,
207 SCTP_CONNTRACK_SHUTDOWN_ACK_SENT
,
210 static const struct nfct_filter_ipv4 filter_ipv4
= {
211 .addr
= __constant_htonl(INADDR_LOOPBACK
),
215 static const struct nfct_filter_ipv6 filter_ipv6
= {
216 .addr
= { 0x0, 0x0, 0x0, 0x1 },
217 .mask
= { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff },
220 static void signal_handler(int number
)
234 static void flow_entry_from_ct(struct flow_entry
*n
, struct nf_conntrack
*ct
);
235 static void flow_entry_get_extended(struct flow_entry
*n
);
237 static void help(void)
239 printf("flowtop %s, top-like netfilter TCP/UDP/SCTP/.. flow tracking\n",
241 puts("http://www.netsniff-ng.org\n\n"
242 "Usage: flowtop [options]\n"
244 " -4|--ipv4 Show only IPv4 flows (default)\n"
245 " -6|--ipv6 Show only IPv6 flows (default)\n"
246 " -T|--tcp Show only TCP flows (default)\n"
247 " -U|--udp Show only UDP flows\n"
248 " -D|--dccp Show only DCCP flows\n"
249 " -I|--icmp Show only ICMP/ICMPv6 flows\n"
250 " -S|--sctp Show only SCTP flows\n"
251 " -s|--show-src Also show source, not only dest\n"
252 " -u|--update Update GeoIP databases\n"
253 " -v|--version Print version and exit\n"
254 " -h|--help Print this help and exit\n\n"
257 " flowtop -46UTDISs\n\n"
259 " If netfilter is not running, you can activate it with e.g.:\n"
260 " iptables -A INPUT -p tcp -m state --state ESTABLISHED -j ACCEPT\n"
261 " iptables -A OUTPUT -p tcp -m state --state NEW,ESTABLISHED -j ACCEPT\n");
266 static void version(void)
268 printf("flowtop %s, Git id: %s\n", VERSION_LONG
, GITVERSION
);
269 puts("top-like netfilter TCP/UDP/SCTP/.. flow tracking\n"
270 "http://www.netsniff-ng.org\n");
275 static inline struct flow_entry
*flow_entry_xalloc(void)
277 return xzmalloc(sizeof(struct flow_entry
));
280 static inline void flow_entry_xfree(struct flow_entry
*n
)
285 static inline void flow_list_init(struct flow_list
*fl
)
288 spinlock_init(&fl
->lock
);
291 static void flow_list_new_entry(struct flow_list
*fl
, struct nf_conntrack
*ct
)
293 struct flow_entry
*n
= flow_entry_xalloc();
295 flow_entry_from_ct(n
, ct
);
296 flow_entry_get_extended(n
);
298 rcu_assign_pointer(n
->next
, fl
->head
);
299 rcu_assign_pointer(fl
->head
, n
);
302 static struct flow_entry
*flow_list_find_id(struct flow_list
*fl
,
305 struct flow_entry
*n
= rcu_dereference(fl
->head
);
308 if (n
->flow_id
== id
)
311 n
= rcu_dereference(n
->next
);
317 static struct flow_entry
*flow_list_find_prev_id(struct flow_list
*fl
,
320 struct flow_entry
*n
= rcu_dereference(fl
->head
), *tmp
;
322 if (n
->flow_id
== id
)
325 while ((tmp
= rcu_dereference(n
->next
)) != NULL
) {
326 if (tmp
->flow_id
== id
)
335 static void flow_list_update_entry(struct flow_list
*fl
,
336 struct nf_conntrack
*ct
)
339 struct flow_entry
*n
;
341 n
= flow_list_find_id(fl
, nfct_get_attr_u32(ct
, ATTR_ID
));
343 n
= flow_entry_xalloc();
347 flow_entry_from_ct(n
, ct
);
349 flow_entry_get_extended(n
);
351 rcu_assign_pointer(n
->next
, fl
->head
);
352 rcu_assign_pointer(fl
->head
, n
);
356 static void flow_list_destroy_entry(struct flow_list
*fl
,
357 struct nf_conntrack
*ct
)
359 struct flow_entry
*n1
, *n2
;
360 uint32_t id
= nfct_get_attr_u32(ct
, ATTR_ID
);
362 n1
= flow_list_find_id(fl
, id
);
364 n2
= flow_list_find_prev_id(fl
, id
);
366 rcu_assign_pointer(n2
->next
, n1
->next
);
369 flow_entry_xfree(n1
);
371 flow_entry_xfree(fl
->head
);
377 static void flow_list_destroy(struct flow_list
*fl
)
379 struct flow_entry
*n
;
381 while (fl
->head
!= NULL
) {
382 n
= rcu_dereference(fl
->head
->next
);
383 fl
->head
->next
= NULL
;
385 flow_entry_xfree(fl
->head
);
386 rcu_assign_pointer(fl
->head
, n
);
390 spinlock_destroy(&fl
->lock
);
393 static int walk_process(unsigned int pid
, struct flow_entry
*n
)
400 if (snprintf(path
, sizeof(path
), "/proc/%u/fd", pid
) == -1)
401 panic("giant process name! %u\n", pid
);
407 while ((ent
= readdir(dir
))) {
410 if (snprintf(path
, sizeof(path
), "/proc/%u/fd/%s",
411 pid
, ent
->d_name
) < 0)
414 if (stat(path
, &statbuf
) < 0)
417 if (S_ISSOCK(statbuf
.st_mode
) && (ino_t
) n
->inode
== statbuf
.st_ino
) {
418 memset(n
->cmdline
, 0, sizeof(n
->cmdline
));
420 snprintf(path
, sizeof(path
), "/proc/%u/exe", pid
);
422 ret
= readlink(path
, n
->cmdline
,
423 sizeof(n
->cmdline
) - 1);
425 panic("readlink error: %s\n", strerror(errno
));
437 static void walk_processes(struct flow_entry
*n
)
443 /* n->inode must be set */
445 memset(n
->cmdline
, 0, sizeof(n
->cmdline
));
449 dir
= opendir("/proc");
451 panic("Cannot open /proc: %s\n", strerror(errno
));
453 while ((ent
= readdir(dir
))) {
454 const char *name
= ent
->d_name
;
456 unsigned int pid
= strtoul(name
, &end
, 10);
459 if (pid
== 0 && end
== name
)
462 ret
= walk_process(pid
, n
);
470 static int get_port_inode(uint16_t port
, int proto
, int is_ip6
)
473 char path
[128], buff
[1024];
476 memset(path
, 0, sizeof(path
));
477 snprintf(path
, sizeof(path
), "/proc/net/%s%s",
478 l4proto2str
[proto
], is_ip6
? "6" : "");
480 proc
= fopen(path
, "r");
484 memset(buff
, 0, sizeof(buff
));
486 while (fgets(buff
, sizeof(buff
), proc
) != NULL
) {
488 unsigned int lport
= 0;
490 buff
[sizeof(buff
) - 1] = 0;
491 if (sscanf(buff
, "%*u: %*X:%X %*X:%*X %*X %*X:%*X %*X:%*X "
492 "%*X %*u %*u %u", &lport
, &inode
) == 2) {
493 if ((uint16_t) lport
== port
) {
499 memset(buff
, 0, sizeof(buff
));
506 #define CP_NFCT(elem, attr, x) \
507 do { n->elem = nfct_get_attr_u##x(ct,(attr)); } while (0)
508 #define CP_NFCT_BUFF(elem, attr) do { \
509 const uint8_t *buff = nfct_get_attr(ct,(attr)); \
511 memcpy(n->elem, buff, sizeof(n->elem)); \
514 static void flow_entry_from_ct(struct flow_entry
*n
, struct nf_conntrack
*ct
)
516 CP_NFCT(l3_proto
, ATTR_ORIG_L3PROTO
, 8);
517 CP_NFCT(l4_proto
, ATTR_ORIG_L4PROTO
, 8);
519 CP_NFCT(ip4_src_addr
, ATTR_ORIG_IPV4_SRC
, 32);
520 CP_NFCT(ip4_dst_addr
, ATTR_ORIG_IPV4_DST
, 32);
522 CP_NFCT(port_src
, ATTR_ORIG_PORT_SRC
, 16);
523 CP_NFCT(port_dst
, ATTR_ORIG_PORT_DST
, 16);
525 CP_NFCT(status
, ATTR_STATUS
, 32);
527 CP_NFCT(tcp_state
, ATTR_TCP_STATE
, 8);
528 CP_NFCT(tcp_flags
, ATTR_TCP_FLAGS_ORIG
, 8);
529 CP_NFCT(sctp_state
, ATTR_SCTP_STATE
, 8);
530 CP_NFCT(dccp_state
, ATTR_DCCP_STATE
, 8);
532 CP_NFCT(counter_pkts
, ATTR_ORIG_COUNTER_PACKETS
, 64);
533 CP_NFCT(counter_bytes
, ATTR_ORIG_COUNTER_BYTES
, 64);
535 CP_NFCT(timestamp_start
, ATTR_TIMESTAMP_START
, 64);
536 CP_NFCT(timestamp_stop
, ATTR_TIMESTAMP_STOP
, 64);
538 CP_NFCT(flow_id
, ATTR_ID
, 32);
539 CP_NFCT(use
, ATTR_USE
, 32);
541 CP_NFCT_BUFF(ip6_src_addr
, ATTR_ORIG_IPV6_SRC
);
542 CP_NFCT_BUFF(ip6_dst_addr
, ATTR_ORIG_IPV6_DST
);
544 n
->port_src
= ntohs(n
->port_src
);
545 n
->port_dst
= ntohs(n
->port_dst
);
547 n
->ip4_src_addr
= ntohl(n
->ip4_src_addr
);
548 n
->ip4_dst_addr
= ntohl(n
->ip4_dst_addr
);
551 enum flow_entry_direction
{
556 static inline int flow_entry_get_extended_is_dns(struct flow_entry
*n
)
558 /* We don't want to analyze / display DNS itself, since we
559 * use it to resolve reverse dns.
561 return n
->port_src
== 53 || n
->port_dst
== 53;
564 #define SELFLD(dir,src_member,dst_member) \
565 (((dir) == flow_entry_src) ? n->src_member : n->dst_member)
567 static void flow_entry_get_sain4_obj(struct flow_entry
*n
,
568 enum flow_entry_direction dir
,
569 struct sockaddr_in
*sa
)
571 memset(sa
, 0, sizeof(*sa
));
572 sa
->sin_family
= PF_INET
;
573 sa
->sin_addr
.s_addr
= htonl(SELFLD(dir
, ip4_src_addr
, ip4_dst_addr
));
576 static void flow_entry_get_sain6_obj(struct flow_entry
*n
,
577 enum flow_entry_direction dir
,
578 struct sockaddr_in6
*sa
)
580 memset(sa
, 0, sizeof(*sa
));
581 sa
->sin6_family
= PF_INET6
;
583 memcpy(&sa
->sin6_addr
, SELFLD(dir
, ip6_src_addr
, ip6_dst_addr
),
584 sizeof(sa
->sin6_addr
));
588 flow_entry_geo_city_lookup_generic(struct flow_entry
*n
,
589 enum flow_entry_direction dir
)
591 struct sockaddr_in sa4
;
592 struct sockaddr_in6 sa6
;
593 const char *city
= NULL
;
595 switch (n
->l3_proto
) {
600 flow_entry_get_sain4_obj(n
, dir
, &sa4
);
601 city
= geoip4_city_name(&sa4
);
605 flow_entry_get_sain6_obj(n
, dir
, &sa6
);
606 city
= geoip6_city_name(&sa6
);
610 bug_on(sizeof(n
->city_src
) != sizeof(n
->city_dst
));
613 memcpy(SELFLD(dir
, city_src
, city_dst
), city
,
614 min(sizeof(n
->city_src
), strlen(city
)));
616 memset(SELFLD(dir
, city_src
, city_dst
), 0,
617 sizeof(n
->city_src
));
622 flow_entry_geo_country_lookup_generic(struct flow_entry
*n
,
623 enum flow_entry_direction dir
)
625 struct sockaddr_in sa4
;
626 struct sockaddr_in6 sa6
;
627 const char *country
= NULL
;
629 switch (n
->l3_proto
) {
634 flow_entry_get_sain4_obj(n
, dir
, &sa4
);
635 country
= geoip4_country_name(&sa4
);
639 flow_entry_get_sain6_obj(n
, dir
, &sa6
);
640 country
= geoip6_country_name(&sa6
);
644 bug_on(sizeof(n
->country_src
) != sizeof(n
->country_dst
));
647 memcpy(SELFLD(dir
, country_src
, country_dst
), country
,
648 min(sizeof(n
->country_src
), strlen(country
)));
650 memset(SELFLD(dir
, country_src
, country_dst
), 0,
651 sizeof(n
->country_src
));
655 static void flow_entry_get_extended_geo(struct flow_entry
*n
,
656 enum flow_entry_direction dir
)
658 flow_entry_geo_city_lookup_generic(n
, dir
);
659 flow_entry_geo_country_lookup_generic(n
, dir
);
662 static void flow_entry_get_extended_revdns(struct flow_entry
*n
,
663 enum flow_entry_direction dir
)
666 struct sockaddr_in sa4
;
667 struct sockaddr_in6 sa6
;
669 struct hostent
*hent
;
671 switch (n
->l3_proto
) {
676 flow_entry_get_sain4_obj(n
, dir
, &sa4
);
677 sa
= (struct sockaddr
*) &sa4
;
678 sa_len
= sizeof(sa4
);
679 hent
= gethostbyaddr(&sa4
.sin_addr
, sizeof(sa4
.sin_addr
), AF_INET
);
683 flow_entry_get_sain6_obj(n
, dir
, &sa6
);
684 sa
= (struct sockaddr
*) &sa6
;
685 sa_len
= sizeof(sa6
);
686 hent
= gethostbyaddr(&sa6
.sin6_addr
, sizeof(sa6
.sin6_addr
), AF_INET6
);
690 bug_on(sizeof(n
->rev_dns_src
) != sizeof(n
->rev_dns_dst
));
691 getnameinfo(sa
, sa_len
, SELFLD(dir
, rev_dns_src
, rev_dns_dst
),
692 sizeof(n
->rev_dns_src
), NULL
, 0, NI_NUMERICHOST
);
695 memset(n
->rev_dns_dst
, 0, sizeof(n
->rev_dns_dst
));
696 memcpy(SELFLD(dir
, rev_dns_src
, rev_dns_dst
),
697 hent
->h_name
, min(sizeof(n
->rev_dns_src
),
698 strlen(hent
->h_name
)));
702 static void flow_entry_get_extended(struct flow_entry
*n
)
704 if (n
->flow_id
== 0 || flow_entry_get_extended_is_dns(n
))
707 flow_entry_get_extended_revdns(n
, flow_entry_src
);
708 flow_entry_get_extended_geo(n
, flow_entry_src
);
710 flow_entry_get_extended_revdns(n
, flow_entry_dst
);
711 flow_entry_get_extended_geo(n
, flow_entry_dst
);
713 /* Lookup application */
714 n
->inode
= get_port_inode(n
->port_src
, n
->l4_proto
,
715 n
->l3_proto
== AF_INET6
);
720 static uint16_t presenter_get_port(uint16_t src
, uint16_t dst
, int tcp
)
722 if (src
< dst
&& src
< 1024) {
724 } else if (dst
< src
&& dst
< 1024) {
727 const char *tmp1
, *tmp2
;
729 tmp1
= lookup_port_tcp(src
);
730 tmp2
= lookup_port_tcp(dst
);
732 tmp1
= lookup_port_udp(src
);
733 tmp2
= lookup_port_udp(dst
);
737 } else if (!tmp1
&& tmp2
) {
748 static void presenter_screen_do_line(WINDOW
*screen
, struct flow_entry
*n
,
751 char tmp
[128], *pname
= NULL
;
754 mvwprintw(screen
, *line
, 2, "");
756 /* PID, application name */
757 if (n
->procnum
> 0) {
758 slprintf(tmp
, sizeof(tmp
), "%s(%d)", basename(n
->cmdline
),
762 attron(COLOR_PAIR(3));
764 attroff(COLOR_PAIR(3));
768 /* L3 protocol, L4 protocol, states */
769 printw("%s:%s", l3proto2str
[n
->l3_proto
], l4proto2str
[n
->l4_proto
]);
771 attron(COLOR_PAIR(3));
772 switch (n
->l4_proto
) {
774 printw("%s", tcp_state2str
[n
->tcp_state
]);
777 printw("%s", sctp_state2str
[n
->sctp_state
]);
780 printw("%s", dccp_state2str
[n
->dccp_state
]);
783 case IPPROTO_UDPLITE
:
789 attroff(COLOR_PAIR(3));
792 /* Guess application port */
793 switch (n
->l4_proto
) {
795 port
= presenter_get_port(n
->port_src
, n
->port_dst
, 1);
796 pname
= lookup_port_tcp(port
);
799 case IPPROTO_UDPLITE
:
800 port
= presenter_get_port(n
->port_src
, n
->port_dst
, 0);
801 pname
= lookup_port_udp(port
);
806 printw(":%s", pname
);
811 /* Number packets, bytes */
812 if (n
->counter_pkts
> 0 && n
->counter_bytes
> 0)
813 printw(" (%"PRIu64
" pkts, %"PRIu64
" bytes) ->",
814 n
->counter_pkts
, n
->counter_bytes
);
816 /* Show source information: reverse DNS, port, country, city */
818 attron(COLOR_PAIR(1));
819 mvwprintw(screen
, ++(*line
), 8, "src: %s", n
->rev_dns_src
);
820 attroff(COLOR_PAIR(1));
822 printw(":%"PRIu16
, n
->port_src
);
824 if (n
->country_src
[0]) {
827 attron(COLOR_PAIR(4));
828 printw("%s", n
->country_src
);
829 attroff(COLOR_PAIR(4));
832 printw(", %s", n
->city_src
);
840 /* Show dest information: reverse DNS, port, country, city */
841 attron(COLOR_PAIR(2));
842 mvwprintw(screen
, ++(*line
), 8, "dst: %s", n
->rev_dns_dst
);
843 attroff(COLOR_PAIR(2));
845 printw(":%"PRIu16
, n
->port_dst
);
847 if (n
->country_dst
[0]) {
850 attron(COLOR_PAIR(4));
851 printw("%s", n
->country_dst
);
852 attroff(COLOR_PAIR(4));
855 printw(", %s", n
->city_dst
);
861 static inline int presenter_flow_wrong_state(struct flow_entry
*n
, int state
)
865 switch (n
->l4_proto
) {
867 if (n
->tcp_state
== state
)
871 if (n
->sctp_state
== state
)
875 if (n
->dccp_state
== state
)
879 case IPPROTO_UDPLITE
:
889 static void presenter_screen_update(WINDOW
*screen
, struct flow_list
*fl
,
894 unsigned int line
= 3;
895 struct flow_entry
*n
;
896 uint8_t protocols
[] = {
905 size_t protocol_state_size
[] = {
906 [IPPROTO_TCP
] = array_size(tcp_states
),
907 [IPPROTO_DCCP
] = array_size(dccp_states
),
908 [IPPROTO_SCTP
] = array_size(sctp_states
),
910 [IPPROTO_UDPLITE
] = 1,
912 [IPPROTO_ICMPV6
] = 1,
917 maxy
= getmaxy(screen
);
921 init_pair(1, COLOR_RED
, COLOR_BLACK
);
922 init_pair(2, COLOR_BLUE
, COLOR_BLACK
);
923 init_pair(3, COLOR_YELLOW
, COLOR_BLACK
);
924 init_pair(4, COLOR_GREEN
, COLOR_BLACK
);
929 mvwprintw(screen
, 1, 2, "Kernel netfilter flows for %s%s%s%s%s%s"
930 "[+%d]", what
& INCLUDE_TCP
? "TCP, " : "" ,
931 what
& INCLUDE_UDP
? "UDP, " : "",
932 what
& INCLUDE_SCTP
? "SCTP, " : "",
933 what
& INCLUDE_DCCP
? "DCCP, " : "",
934 what
& INCLUDE_ICMP
&& what
& INCLUDE_IPV4
? "ICMP, " : "",
935 what
& INCLUDE_ICMP
&& what
& INCLUDE_IPV6
? "ICMP6, " : "",
940 if (rcu_dereference(fl
->head
) == NULL
)
941 mvwprintw(screen
, line
, 2, "(No active sessions! "
942 "Is netfilter running?)");
944 for (i
= 0; i
< array_size(protocols
); i
++) {
945 for (j
= 0; j
< protocol_state_size
[protocols
[i
]]; j
++) {
946 n
= rcu_dereference(fl
->head
);
947 while (n
&& maxy
> 0) {
948 if (n
->l4_proto
!= protocols
[i
] ||
949 presenter_flow_wrong_state(n
, j
) ||
950 presenter_get_port(n
->port_src
,
951 n
->port_dst
, 0) == 53) {
953 n
= rcu_dereference(n
->next
);
956 if (skip_lines
> 0) {
957 n
= rcu_dereference(n
->next
);
962 presenter_screen_do_line(screen
, n
, &line
);
965 maxy
-= (2 + 1 * show_src
);
966 n
= rcu_dereference(n
->next
);
977 static void presenter(void)
982 condlock_wait(&collector_ready
);
984 lookup_init_ports(PORTS_TCP
);
985 lookup_init_ports(PORTS_UDP
);
986 screen
= screen_init(false);
988 rcu_register_thread();
1005 if (skip_lines
> SCROLL_MAX
)
1006 skip_lines
= SCROLL_MAX
;
1013 presenter_screen_update(screen
, &flow_list
, skip_lines
);
1016 rcu_unregister_thread();
1019 lookup_cleanup_ports(PORTS_UDP
);
1020 lookup_cleanup_ports(PORTS_TCP
);
1023 static int collector_cb(enum nf_conntrack_msg_type type
,
1024 struct nf_conntrack
*ct
, void *data __maybe_unused
)
1027 return NFCT_CB_STOP
;
1030 spinlock_lock(&flow_list
.lock
);
1034 flow_list_new_entry(&flow_list
, ct
);
1037 flow_list_update_entry(&flow_list
, ct
);
1039 case NFCT_T_DESTROY
:
1040 flow_list_destroy_entry(&flow_list
, ct
);
1046 spinlock_unlock(&flow_list
.lock
);
1048 return NFCT_CB_CONTINUE
;
1051 static inline void collector_flush(struct nfct_handle
*handle
, uint8_t family
)
1053 nfct_query(handle
, NFCT_Q_FLUSH
, &family
);
1056 static void *collector(void *null __maybe_unused
)
1059 struct nfct_handle
*handle
;
1060 struct nfct_filter
*filter
;
1062 handle
= nfct_open(CONNTRACK
, NF_NETLINK_CONNTRACK_NEW
|
1063 NF_NETLINK_CONNTRACK_UPDATE
|
1064 NF_NETLINK_CONNTRACK_DESTROY
);
1066 panic("Cannot create a nfct handle: %s\n", strerror(errno
));
1068 collector_flush(handle
, AF_INET
);
1069 collector_flush(handle
, AF_INET6
);
1071 filter
= nfct_filter_create();
1073 panic("Cannot create a nfct filter: %s\n", strerror(errno
));
1075 ret
= nfct_filter_attach(nfct_fd(handle
), filter
);
1077 panic("Cannot attach filter to handle: %s\n", strerror(errno
));
1079 if (what
& INCLUDE_UDP
) {
1080 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_UDP
);
1081 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_UDPLITE
);
1083 if (what
& INCLUDE_TCP
)
1084 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_TCP
);
1085 if (what
& INCLUDE_DCCP
)
1086 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_DCCP
);
1087 if (what
& INCLUDE_SCTP
)
1088 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_SCTP
);
1089 if (what
& INCLUDE_ICMP
&& what
& INCLUDE_IPV4
)
1090 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_ICMP
);
1091 if (what
& INCLUDE_ICMP
&& what
& INCLUDE_IPV6
)
1092 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_ICMPV6
);
1093 if (what
& INCLUDE_IPV4
) {
1094 nfct_filter_set_logic(filter
, NFCT_FILTER_SRC_IPV4
, NFCT_FILTER_LOGIC_NEGATIVE
);
1095 nfct_filter_add_attr(filter
, NFCT_FILTER_SRC_IPV4
, &filter_ipv4
);
1097 if (what
& INCLUDE_IPV6
) {
1098 nfct_filter_set_logic(filter
, NFCT_FILTER_SRC_IPV6
, NFCT_FILTER_LOGIC_NEGATIVE
);
1099 nfct_filter_add_attr(filter
, NFCT_FILTER_SRC_IPV6
, &filter_ipv6
);
1102 ret
= nfct_filter_attach(nfct_fd(handle
), filter
);
1104 panic("Cannot attach filter to handle: %s\n", strerror(errno
));
1106 nfct_callback_register(handle
, NFCT_T_ALL
, collector_cb
, NULL
);
1107 nfct_filter_destroy(filter
);
1108 flow_list_init(&flow_list
);
1110 condlock_signal(&collector_ready
);
1112 rcu_register_thread();
1114 while (!sigint
&& ret
>= 0)
1115 ret
= nfct_catch(handle
);
1117 rcu_unregister_thread();
1119 flow_list_destroy(&flow_list
);
1125 int main(int argc
, char **argv
)
1128 int ret
, c
, opt_index
, what_cmd
= 0;
1133 while ((c
= getopt_long(argc
, argv
, short_options
, long_options
,
1134 &opt_index
)) != EOF
) {
1137 what_cmd
|= INCLUDE_IPV4
;
1140 what_cmd
|= INCLUDE_IPV6
;
1143 what_cmd
|= INCLUDE_TCP
;
1146 what_cmd
|= INCLUDE_UDP
;
1149 what_cmd
|= INCLUDE_DCCP
;
1152 what_cmd
|= INCLUDE_ICMP
;
1155 what_cmd
|= INCLUDE_SCTP
;
1180 register_signal(SIGINT
, signal_handler
);
1181 register_signal(SIGQUIT
, signal_handler
);
1182 register_signal(SIGTERM
, signal_handler
);
1183 register_signal(SIGHUP
, signal_handler
);
1187 condlock_init(&collector_ready
);
1189 ret
= pthread_create(&tid
, NULL
, collector
, NULL
);
1191 panic("Cannot create phthread!\n");
1195 condlock_destroy(&collector_ready
);