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 <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>
26 #include <sys/fsuid.h>
37 #include "dissector_eth.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
;
58 struct flow_entry
*head
;
62 #ifndef ATTR_TIMESTAMP_START
63 # define ATTR_TIMESTAMP_START 63
65 #ifndef ATTR_TIMESTAMP_STOP
66 # define ATTR_TIMESTAMP_STOP 64
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'},
101 static const char *const l3proto2str
[AF_MAX
] = {
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",
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
,
150 TCP_CONNTRACK_SYN_SENT2
,
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
[] = {
169 DCCP_CONNTRACK_REQUEST
,
170 DCCP_CONNTRACK_RESPOND
,
171 DCCP_CONNTRACK_PARTOPEN
,
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
[] = {
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
),
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
)
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",
231 puts("http://www.netsniff-ng.org\n\n"
232 "Usage: flowtop [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"
247 " flowtop -46UTDISs\n\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");
262 static void version(void)
264 printf("\nflowtop %s, top-like netfilter TCP/UDP flow tracking\n",
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");
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
)
287 static inline void flow_list_init(struct flow_list
*fl
)
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
,
307 struct flow_entry
*n
= rcu_dereference(fl
->head
);
310 if (n
->flow_id
== id
)
313 n
= rcu_dereference(n
->next
);
319 static struct flow_entry
*flow_list_find_prev_id(struct flow_list
*fl
,
322 struct flow_entry
*n
= rcu_dereference(fl
->head
), *tmp
;
324 if (n
->flow_id
== id
)
327 while ((tmp
= rcu_dereference(n
->next
)) != NULL
) {
328 if (tmp
->flow_id
== id
)
337 static void flow_list_update_entry(struct flow_list
*fl
,
338 struct nf_conntrack
*ct
)
341 struct flow_entry
*n
;
343 n
= flow_list_find_id(fl
, nfct_get_attr_u32(ct
, ATTR_ID
));
345 n
= flow_entry_xalloc();
349 flow_entry_from_ct(n
, ct
);
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
);
366 n2
= flow_list_find_prev_id(fl
, id
);
368 rcu_assign_pointer(n2
->next
, n1
->next
);
371 flow_entry_xfree(n1
);
373 flow_entry_xfree(fl
->head
);
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
);
392 spinlock_destroy(&fl
->lock
);
395 static int walk_process(char *process
, struct flow_entry
*n
)
402 if (snprintf(path
, sizeof(path
), "/proc/%s/fd", process
) == -1)
403 panic("giant process name! %s\n", process
);
409 while ((ent
= readdir(dir
))) {
412 if (snprintf(path
, sizeof(path
), "/proc/%s/fd/%s",
413 process
, ent
->d_name
) < 0)
416 if (stat(path
, &statbuf
) < 0)
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);
427 panic("readlink error: %s\n", strerror(errno
));
429 n
->procnum
= atoi(process
);
439 static void walk_processes(struct flow_entry
*n
)
445 /* n->inode must be set */
447 memset(n
->cmdline
, 0, sizeof(n
->cmdline
));
451 dir
= opendir("/proc");
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
);
466 static int get_port_inode(uint16_t port
, int proto
, int is_ip6
)
469 char path
[128], buff
[1024];
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");
480 memset(buff
, 0, sizeof(buff
));
482 while (fgets(buff
, sizeof(buff
), proc
) != NULL
) {
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
) {
495 memset(buff
, 0, sizeof(buff
));
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)); \
507 memcpy(n->elem, buff, sizeof(n->elem)); \
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
{
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(SELFLD(dir
, ip6_src_addr
, ip6_dst_addr
)));
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
) {
596 flow_entry_get_sain4_obj(n
, dir
, &sa4
);
597 city
= geoip4_city_name(sa4
);
601 flow_entry_get_sain6_obj(n
, dir
, &sa6
);
602 city
= geoip6_city_name(sa6
);
606 bug_on(sizeof(n
->city_src
) != sizeof(n
->city_dst
));
609 memcpy(SELFLD(dir
, city_src
, city_dst
), city
,
610 min(sizeof(n
->city_src
), strlen(city
)));
612 memset(SELFLD(dir
, city_src
, city_dst
), 0,
613 sizeof(n
->city_src
));
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
) {
630 flow_entry_get_sain4_obj(n
, dir
, &sa4
);
631 country
= geoip4_country_name(sa4
);
635 flow_entry_get_sain6_obj(n
, dir
, &sa6
);
636 country
= geoip6_country_name(sa6
);
640 bug_on(sizeof(n
->country_src
) != sizeof(n
->country_dst
));
643 memcpy(SELFLD(dir
, country_src
, country_dst
), country
,
644 min(sizeof(n
->country_src
), strlen(country
)));
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
)
662 struct sockaddr_in sa4
;
663 struct sockaddr_in6 sa6
;
665 struct hostent
*hent
;
667 switch (n
->l3_proto
) {
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
);
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
);
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
);
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
))
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
);
716 static uint16_t presenter_get_port(uint16_t src
, uint16_t dst
, int tcp
)
718 if (src
< dst
&& src
< 1024) {
720 } else if (dst
< src
&& dst
< 1024) {
723 const char *tmp1
, *tmp2
;
725 tmp1
= lookup_port_tcp(src
);
726 tmp2
= lookup_port_tcp(dst
);
728 tmp1
= lookup_port_udp(src
);
729 tmp2
= lookup_port_udp(dst
);
733 } else if (!tmp1
&& tmp2
) {
744 static void presenter_screen_init(WINDOW
**screen
)
746 (*screen
) = initscr();
749 keypad(stdscr
, TRUE
);
750 nodelay(*screen
, TRUE
);
755 static void presenter_screen_do_line(WINDOW
*screen
, struct flow_entry
*n
,
758 char tmp
[128], *pname
= NULL
;
761 mvwprintw(screen
, *line
, 2, "");
763 /* PID, application name */
764 if (n
->procnum
> 0) {
765 slprintf(tmp
, sizeof(tmp
), "%s(%u)", basename(n
->cmdline
),
769 attron(COLOR_PAIR(3));
771 attroff(COLOR_PAIR(3));
775 /* L3 protocol, L4 protocol, states */
776 printw("%s:%s", l3proto2str
[n
->l3_proto
], l4proto2str
[n
->l4_proto
]);
778 attron(COLOR_PAIR(3));
779 switch (n
->l4_proto
) {
781 printw("%s", tcp_state2str
[n
->tcp_state
]);
784 printw("%s", sctp_state2str
[n
->sctp_state
]);
787 printw("%s", dccp_state2str
[n
->dccp_state
]);
790 case IPPROTO_UDPLITE
:
796 attroff(COLOR_PAIR(3));
799 /* Guess application port */
800 switch (n
->l4_proto
) {
802 port
= presenter_get_port(n
->port_src
, n
->port_dst
, 1);
803 pname
= lookup_port_tcp(port
);
806 case IPPROTO_UDPLITE
:
807 port
= presenter_get_port(n
->port_src
, n
->port_dst
, 0);
808 pname
= lookup_port_udp(port
);
813 printw(":%s", pname
);
818 /* Number packets, bytes */
819 if (n
->counter_pkts
> 0 && n
->counter_bytes
> 0)
820 printw(" (%llu pkts, %llu bytes) ->",
821 n
->counter_pkts
, n
->counter_bytes
);
823 /* Show source information: reverse DNS, port, country, city */
825 attron(COLOR_PAIR(1));
826 mvwprintw(screen
, ++(*line
), 8, "src: %s", n
->rev_dns_src
);
827 attroff(COLOR_PAIR(1));
829 printw(":%u", n
->port_src
);
831 if (n
->country_src
[0]) {
834 attron(COLOR_PAIR(4));
835 printw("%s", n
->country_src
);
836 attroff(COLOR_PAIR(4));
839 printw(", %s", n
->city_src
);
847 /* Show dest information: reverse DNS, port, country, city */
848 attron(COLOR_PAIR(2));
849 mvwprintw(screen
, ++(*line
), 8, "dst: %s", n
->rev_dns_dst
);
850 attroff(COLOR_PAIR(2));
852 printw(":%u", n
->port_dst
);
854 if (n
->country_dst
[0]) {
857 attron(COLOR_PAIR(4));
858 printw("%s", n
->country_dst
);
859 attroff(COLOR_PAIR(4));
862 printw(", %s", n
->city_dst
);
868 static inline int presenter_flow_wrong_state(struct flow_entry
*n
, int state
)
872 switch (n
->l4_proto
) {
874 if (n
->tcp_state
== state
)
878 if (n
->sctp_state
== state
)
882 if (n
->dccp_state
== state
)
886 case IPPROTO_UDPLITE
:
896 static void presenter_screen_update(WINDOW
*screen
, struct flow_list
*fl
,
900 unsigned int line
= 3;
901 struct flow_entry
*n
;
902 uint8_t protocols
[] = {
911 size_t protocol_state_size
[] = {
912 [IPPROTO_TCP
] = array_size(tcp_states
),
913 [IPPROTO_DCCP
] = array_size(dccp_states
),
914 [IPPROTO_SCTP
] = array_size(sctp_states
),
916 [IPPROTO_UDPLITE
] = 1,
918 [IPPROTO_ICMPV6
] = 1,
923 maxy
= getmaxy(screen
);
927 init_pair(1, COLOR_RED
, COLOR_BLACK
);
928 init_pair(2, COLOR_BLUE
, COLOR_BLACK
);
929 init_pair(3, COLOR_YELLOW
, COLOR_BLACK
);
930 init_pair(4, COLOR_GREEN
, COLOR_BLACK
);
935 mvwprintw(screen
, 1, 2, "Kernel netfilter flows for %s%s%s%s%s%s"
936 "[+%d]", what
& INCLUDE_TCP
? "TCP, " : "" ,
937 what
& INCLUDE_UDP
? "UDP, " : "",
938 what
& INCLUDE_SCTP
? "SCTP, " : "",
939 what
& INCLUDE_DCCP
? "DCCP, " : "",
940 what
& INCLUDE_ICMP
&& what
& INCLUDE_IPV4
? "ICMP, " : "",
941 what
& INCLUDE_ICMP
&& what
& INCLUDE_IPV6
? "ICMP6, " : "",
946 if (rcu_dereference(fl
->head
) == NULL
)
947 mvwprintw(screen
, line
, 2, "(No active sessions! "
948 "Is netfilter running?)");
950 for (i
= 0; i
< array_size(protocols
); i
++) {
951 for (j
= 0; j
< protocol_state_size
[protocols
[i
]]; j
++) {
952 n
= rcu_dereference(fl
->head
);
953 while (n
&& maxy
> 0) {
956 if (n
->l4_proto
!= protocols
[i
])
958 if (presenter_flow_wrong_state(n
, j
))
960 if (presenter_get_port(n
->port_src
,
961 n
->port_dst
, 0) == 53)
964 n
= rcu_dereference(n
->next
);
967 if (skip_lines
> 0) {
968 n
= rcu_dereference(n
->next
);
973 presenter_screen_do_line(screen
, n
, &line
);
976 maxy
-= (2 + 1 * show_src
);
977 n
= rcu_dereference(n
->next
);
988 static inline void presenter_screen_end(void)
993 static void presenter(void)
996 WINDOW
*screen
= NULL
;
998 dissector_init_ethernet(0);
999 presenter_screen_init(&screen
);
1001 rcu_register_thread();
1018 if (skip_lines
> SCROLL_MAX
)
1019 skip_lines
= SCROLL_MAX
;
1026 presenter_screen_update(screen
, &flow_list
, skip_lines
);
1029 rcu_unregister_thread();
1031 presenter_screen_end();
1032 dissector_cleanup_ethernet();
1035 static int collector_cb(enum nf_conntrack_msg_type type
,
1036 struct nf_conntrack
*ct
, void *data
)
1039 return NFCT_CB_STOP
;
1042 spinlock_lock(&flow_list
.lock
);
1046 flow_list_new_entry(&flow_list
, ct
);
1049 flow_list_update_entry(&flow_list
, ct
);
1051 case NFCT_T_DESTROY
:
1052 flow_list_destroy_entry(&flow_list
, ct
);
1058 spinlock_unlock(&flow_list
.lock
);
1060 return NFCT_CB_CONTINUE
;
1063 static inline void collector_flush(struct nfct_handle
*handle
, uint8_t family
)
1065 nfct_query(handle
, NFCT_Q_FLUSH
, &family
);
1068 static void *collector(void *null
)
1071 struct nfct_handle
*handle
;
1072 struct nfct_filter
*filter
;
1074 handle
= nfct_open(CONNTRACK
, NF_NETLINK_CONNTRACK_NEW
|
1075 NF_NETLINK_CONNTRACK_UPDATE
|
1076 NF_NETLINK_CONNTRACK_DESTROY
);
1078 panic("Cannot create a nfct handle!\n");
1080 collector_flush(handle
, AF_INET
);
1081 collector_flush(handle
, AF_INET6
);
1083 filter
= nfct_filter_create();
1085 panic("Cannot create a nfct filter!\n");
1087 ret
= nfct_filter_attach(nfct_fd(handle
), filter
);
1089 panic("Cannot attach filter to handle!\n");
1091 if (what
& INCLUDE_UDP
) {
1092 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_UDP
);
1093 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_UDPLITE
);
1095 if (what
& INCLUDE_TCP
)
1096 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_TCP
);
1097 if (what
& INCLUDE_DCCP
)
1098 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_DCCP
);
1099 if (what
& INCLUDE_SCTP
)
1100 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_SCTP
);
1101 if (what
& INCLUDE_ICMP
&& what
& INCLUDE_IPV4
)
1102 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_ICMP
);
1103 if (what
& INCLUDE_ICMP
&& what
& INCLUDE_IPV6
)
1104 nfct_filter_add_attr_u32(filter
, NFCT_FILTER_L4PROTO
, IPPROTO_ICMPV6
);
1105 if (what
& INCLUDE_IPV4
) {
1106 nfct_filter_set_logic(filter
, NFCT_FILTER_SRC_IPV4
, NFCT_FILTER_LOGIC_NEGATIVE
);
1107 nfct_filter_add_attr(filter
, NFCT_FILTER_SRC_IPV4
, &filter_ipv4
);
1109 if (what
& INCLUDE_IPV6
) {
1110 nfct_filter_set_logic(filter
, NFCT_FILTER_SRC_IPV6
, NFCT_FILTER_LOGIC_NEGATIVE
);
1111 nfct_filter_add_attr(filter
, NFCT_FILTER_SRC_IPV6
, &filter_ipv6
);
1114 ret
= nfct_filter_attach(nfct_fd(handle
), filter
);
1116 panic("Cannot attach filter to handle!\n");
1118 nfct_callback_register(handle
, NFCT_T_ALL
, collector_cb
, NULL
);
1119 nfct_filter_destroy(filter
);
1120 flow_list_init(&flow_list
);
1122 rcu_register_thread();
1124 while (!sigint
&& ret
>= 0)
1125 ret
= nfct_catch(handle
);
1127 rcu_unregister_thread();
1129 flow_list_destroy(&flow_list
);
1135 int main(int argc
, char **argv
)
1138 int ret
, c
, opt_index
, what_cmd
= 0;
1143 while ((c
= getopt_long(argc
, argv
, short_options
, long_options
,
1144 &opt_index
)) != EOF
) {
1147 what_cmd
|= INCLUDE_IPV4
;
1150 what_cmd
|= INCLUDE_IPV6
;
1153 what_cmd
|= INCLUDE_TCP
;
1156 what_cmd
|= INCLUDE_UDP
;
1159 what_cmd
|= INCLUDE_DCCP
;
1162 what_cmd
|= INCLUDE_ICMP
;
1165 what_cmd
|= INCLUDE_SCTP
;
1190 register_signal(SIGINT
, signal_handler
);
1191 register_signal(SIGHUP
, signal_handler
);
1195 ret
= pthread_create(&tid
, NULL
, collector
, NULL
);
1197 panic("Cannot create phthread!\n");