2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>
4 * Copyright 2011 - 2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>,
5 * Swiss federal institute of technology (ETH Zurich)
6 * Subject to the GPL, version 2.
8 * A high-performance network traffic generator that uses the zero-copy
9 * kernelspace TX_RING for network I/O. On comodity Gigabit hardware up
10 * to 1,488,095 pps 64 Byte pps have been achieved with 2 trafgen instances
11 * bound to different CPUs from the userspace and turned off pause frames,
12 * ask Ronald from NST (Network Security Toolkit) for more details. ;-)
13 * So, this line-rate result is the very same as pktgen from kernelspace!
15 * Who can now hold the fords when the King of the Nine Riders comes? And
16 * other armies will come. I am too late. All is lost. I tarried on the
17 * way. All is lost. Even if my errand is performed, no one will ever
18 * know. There will be no one I can tell. It will be in vain.
20 * -- The Lord of the Rings, Frodo thinking,
21 * Chapter 'The Stairs of Cirith Ungol'.
29 #include <sys/socket.h>
30 #include <sys/types.h>
31 #include <sys/fsuid.h>
36 #include <net/ethernet.h>
37 #include <netinet/in.h>
38 #include <netinet/ip.h>
39 #include <linux/icmp.h>
40 #include <arpa/inet.h>
57 #include "trafgen_conf.h"
63 bool rand
, rfraw
, jumbo_support
, verbose
, smoke_test
, enforce
;
64 unsigned long kpull
, num
, gap
, reserve_size
, cpus
;
65 uid_t uid
; gid_t gid
; char *device
, *device_trans
, *rhost
;
66 struct sockaddr_in dest
;
70 unsigned long tv_sec
, tv_usec
;
71 unsigned long long tx_packets
, tx_bytes
;
72 unsigned long long cf_packets
, cf_bytes
;
73 unsigned long long cd_packets
;
77 sig_atomic_t sigint
= 0;
79 struct packet
*packets
= NULL
;
82 struct packet_dyn
*packet_dyn
= NULL
;
85 static const char *short_options
= "d:c:n:t:vJhS:rk:i:o:VRsP:eE:pu:g:";
86 static const struct option long_options
[] = {
87 {"dev", required_argument
, NULL
, 'd'},
88 {"out", required_argument
, NULL
, 'o'},
89 {"in", required_argument
, NULL
, 'i'},
90 {"conf", required_argument
, NULL
, 'c'},
91 {"num", required_argument
, NULL
, 'n'},
92 {"gap", required_argument
, NULL
, 't'},
93 {"cpus", required_argument
, NULL
, 'P'},
94 {"ring-size", required_argument
, NULL
, 'S'},
95 {"kernel-pull", required_argument
, NULL
, 'k'},
96 {"smoke-test", required_argument
, NULL
, 's'},
97 {"seed", required_argument
, NULL
, 'E'},
98 {"user", required_argument
, NULL
, 'u'},
99 {"group", required_argument
, NULL
, 'g'},
100 {"jumbo-support", no_argument
, NULL
, 'J'},
101 {"cpp", no_argument
, NULL
, 'p'},
102 {"rfraw", no_argument
, NULL
, 'R'},
103 {"rand", no_argument
, NULL
, 'r'},
104 {"verbose", no_argument
, NULL
, 'V'},
105 {"version", no_argument
, NULL
, 'v'},
106 {"example", no_argument
, NULL
, 'e'},
107 {"help", no_argument
, NULL
, 'h'},
113 static struct itimerval itimer
;
115 static unsigned long interval
= TX_KERNEL_PULL_INT
;
117 static struct cpu_stats
*stats
;
121 #define CPU_STATS_STATE_CFG 1
122 #define CPU_STATS_STATE_CHK 2
123 #define CPU_STATS_STATE_RES 4
125 #define set_system_socket_memory(vals) \
127 if ((vals[0] = get_system_socket_mem(sock_rmem_max)) < SMEM_SUG_MAX) \
128 set_system_socket_mem(sock_rmem_max, SMEM_SUG_MAX); \
129 if ((vals[1] = get_system_socket_mem(sock_rmem_def)) < SMEM_SUG_DEF) \
130 set_system_socket_mem(sock_rmem_def, SMEM_SUG_DEF); \
131 if ((vals[2] = get_system_socket_mem(sock_wmem_max)) < SMEM_SUG_MAX) \
132 set_system_socket_mem(sock_wmem_max, SMEM_SUG_MAX); \
133 if ((vals[3] = get_system_socket_mem(sock_wmem_def)) < SMEM_SUG_DEF) \
134 set_system_socket_mem(sock_wmem_def, SMEM_SUG_DEF); \
137 #define reset_system_socket_memory(vals) \
139 set_system_socket_mem(sock_rmem_max, vals[0]); \
140 set_system_socket_mem(sock_rmem_def, vals[1]); \
141 set_system_socket_mem(sock_wmem_max, vals[2]); \
142 set_system_socket_mem(sock_wmem_def, vals[3]); \
146 # define ICMP_FILTER 1
153 static void signal_handler(int number
)
164 static void timer_elapsed(int number
)
166 itimer
.it_interval
.tv_sec
= 0;
167 itimer
.it_interval
.tv_usec
= interval
;
169 itimer
.it_value
.tv_sec
= 0;
170 itimer
.it_value
.tv_usec
= interval
;
172 pull_and_flush_tx_ring(sock
);
173 setitimer(ITIMER_REAL
, &itimer
, NULL
);
176 static void header(void)
178 printf("%s%s%s\n", colorize_start(bold
), "trafgen " VERSION_STRING
, colorize_end());
181 static void help(void)
183 printf("\ntrafgen %s, multithreaded zero-copy network packet generator\n", VERSION_STRING
);
184 puts("http://www.netsniff-ng.org\n\n"
185 "Usage: trafgen [options]\n"
187 " -o|-d|--out|--dev <netdev> Networking device i.e., eth0\n"
188 " -i|-c|--in|--conf <cfg-file/-> Packet configuration file/stdin\n"
189 " -p|--cpp Run packet config through C preprocessor\n"
190 " -J|--jumbo-support Support 64KB super jumbo frames (def: 2048B)\n"
191 " -R|--rfraw Inject raw 802.11 frames\n"
192 " -s|--smoke-test <ipv4-receiver> Probe if machine survived fuzz-tested packet\n"
193 " -n|--num <uint> Number of packets until exit (def: 0)\n"
194 " -r|--rand Randomize packet selection (def: round robin)\n"
195 " -P|--cpus <uint> Specify number of forks(<= CPUs) (def: #CPUs)\n"
196 " -t|--gap <uint> Interpacket gap in us (approx)\n"
197 " -S|--ring-size <size> Manually set mmap size (KB/MB/GB): e.g.\'10MB\'\n"
198 " -k|--kernel-pull <uint> Kernel batch interval in us (def: 10us)\n"
199 " -E|--seed <uint> Manually set srand(3) seed\n"
200 " -u|--user <userid> Drop privileges and change to userid\n"
201 " -g|--group <groupid> Drop privileges and change to groupid\n"
202 " -V|--verbose Be more verbose\n"
203 " -v|--version Show version\n"
204 " -e|--example Show built-in packet config example\n"
205 " -h|--help Guess what?!\n\n"
207 " See trafgen.txf for configuration file examples.\n"
208 " trafgen --dev eth0 --conf trafgen.cfg\n"
209 " trafgen -e | trafgen -i - -o eth0 --cpp -n 1\n"
210 " trafgen --dev eth0 --conf trafgen.cfg --smoke-test 10.0.0.1\n"
211 " trafgen --dev wlan0 --rfraw --conf beacon-test.txf -V --cpus 2\n"
212 " trafgen --dev eth0 --conf trafgen.cfg --rand --gap 1000\n"
213 " trafgen --dev eth0 --conf trafgen.cfg --rand --num 1400000 -k1000\n"
214 " trafgen --dev eth0 --conf trafgen.cfg -u `id -u bob` -g `id -g bob`\n\n"
215 "Arbitrary packet config examples (e.g. trafgen -e > trafgen.cfg):\n"
216 " Run packet on all CPUs: { fill(0xff, 64) csum16(0, 64) }\n"
217 " Run packet only on CPU1: cpu(1): { rnd(64), 0b11001100, 0xaa }\n"
218 " Run packet only on CPU1-2: cpu(1:2): { drnd(64),'a',csum16(1, 8),'b',42 }\n\n"
220 " Smoke/fuzz test example: machine A, 10.0.0.2 (trafgen) is directly\n"
221 " connected to machine B (test kernel), 10.0.0.1. If ICMP reply fails\n"
222 " we assume the kernel crashed, thus we print the packet and quit.\n"
223 " In case you find a ping-of-death, please mention trafgen in your\n"
224 " commit message of the fix!\n\n"
225 " For introducing bit errors, delays with random variation and more,\n"
226 " make use of tc(8) with its difference disciplines (e.g. netem).\n\n"
227 " For generating different package distributions, you can use some\n"
228 " scripting to generate a trafgen config file with packet ratios as:\n\n"
229 " IMIX 64:7, 570:4, 1518:1\n"
230 " Tolly 64:55, 78:5, 576:17, 1518:23\n"
231 " Cisco 64:7, 594:4, 1518:1\n"
232 " RPR Trimodal 64:60, 512:20, 1518:20\n"
233 " RPR Quadrimodal 64:50, 512:15, 1518:15, 9218:20\n\n"
234 "Please report bugs to <bugs@netsniff-ng.org>\n"
235 "Copyright (C) 2011-2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>,\n"
236 "Swiss federal institute of technology (ETH Zurich)\n"
237 "License: GNU GPL version 2.0\n"
238 "This is free software: you are free to change and redistribute it.\n"
239 "There is NO WARRANTY, to the extent permitted by law.\n");
243 static void example(void)
246 "/* Note: dynamic elements make trafgen slower! */\n\n"
247 "#define ETH_P_IP 0x0800\n\n"
248 "#define SYN (1 << 1)\n"
249 "#define ECN (1 << 6)\n\n"
251 " /* MAC Destination */\n"
253 " /* MAC Source */\n"
254 " 0x00, 0x02, 0xb3, drnd(3),\n"
255 " /* IPv4 Protocol */\n"
257 " /* IPv4 Version, IHL, TOS */\n"
259 " /* IPv4 Total Len */\n"
261 " /* IPv4 Ident */\n"
263 " /* IPv4 Flags, Frag Off */\n"
269 " /* IPv4 Checksum (IP header from, to) */\n"
275 " /* TCP Source Port */\n"
277 " /* TCP Dest Port */\n"
279 " /* TCP Sequence Number */\n"
281 " /* TCP Ackn. Number */\n"
283 " /* TCP Header length + TCP SYN/ECN Flag */\n"
284 " c16((0x8 << 12) | SYN | ECN)\n"
285 " /* Window Size */\n"
287 " /* TCP Checksum (offset IP, offset TCP) */\n"
288 " csumtcp(14, 34),\n"
289 " /* TCP Options */\n"
290 " 0x00, 0x00, 0x01, 0x01, 0x08, 0x0a, 0x06,\n"
291 " 0x91, 0x68, 0x7d, 0x06, 0x91, 0x68, 0x6f,\n"
299 static void version(void)
301 printf("\ntrafgen %s, multithreaded zero-copy network packet generator\n", VERSION_STRING
);
302 puts("http://www.netsniff-ng.org\n\n"
303 "Please report bugs to <bugs@netsniff-ng.org>\n"
304 "Copyright (C) 2011-2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>,\n"
305 "Swiss federal institute of technology (ETH Zurich)\n"
306 "License: GNU GPL version 2.0\n"
307 "This is free software: you are free to change and redistribute it.\n"
308 "There is NO WARRANTY, to the extent permitted by law.\n");
312 static void apply_counter(int counter_id
)
314 int j
, i
= counter_id
;
315 size_t counter_max
= packet_dyn
[i
].clen
;
317 for (j
= 0; j
< counter_max
; ++j
) {
319 struct counter
*counter
= &packet_dyn
[i
].cnt
[j
];
321 val
= counter
->val
- counter
->min
;
323 switch (counter
->type
) {
325 val
= (val
+ counter
->inc
) % (counter
->max
- counter
->min
+ 1);
328 val
= (val
- counter
->inc
) % (counter
->min
- counter
->max
+ 1);
334 counter
->val
= val
+ counter
->min
;
335 packets
[i
].payload
[counter
->off
] = val
;
339 static void apply_randomizer(int rand_id
)
342 size_t rand_max
= packet_dyn
[i
].rlen
;
344 for (j
= 0; j
< rand_max
; ++j
) {
345 uint8_t val
= (uint8_t) rand();
346 struct randomizer
*randomizer
= &packet_dyn
[i
].rnd
[j
];
348 packets
[i
].payload
[randomizer
->off
] = val
;
352 /* Taken and modified from tcpdump, Copyright belongs to them! */
359 #define ADDCARRY(x) \
360 do { if ((x) > 65535) \
367 sum = l_util.s[0] + l_util.s[1]; \
371 static u16
__in_cksum(const struct cksum_vec
*vec
, int veclen
)
373 register const u16
*w
;
374 register int sum
= 0, mlen
= 0;
375 int byte_swapped
= 0;
385 for (; veclen
!= 0; vec
++, veclen
--) {
389 w
= (const u16
*) (void *) vec
->ptr
;
392 s_util
.c
[1] = *(const u8
*) w
;
394 w
= (const u16
*) (void *) ((const u8
*) w
+ 1);
399 if ((1 & (unsigned long) w
) && (mlen
> 0)) {
402 s_util
.c
[0] = *(const u8
*) w
;
403 w
= (const u16
*) (void *) ((const u8
*) w
+ 1);
408 while ((mlen
-= 32) >= 0) {
409 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
410 sum
+= w
[4]; sum
+= w
[5]; sum
+= w
[6]; sum
+= w
[7];
411 sum
+= w
[8]; sum
+= w
[9]; sum
+= w
[10]; sum
+= w
[11];
412 sum
+= w
[12]; sum
+= w
[13]; sum
+= w
[14]; sum
+= w
[15];
418 while ((mlen
-= 8) >= 0) {
419 sum
+= w
[0]; sum
+= w
[1]; sum
+= w
[2]; sum
+= w
[3];
425 if (mlen
== 0 && byte_swapped
== 0)
430 while ((mlen
-= 2) >= 0) {
440 s_util
.c
[1] = *(const u8
*) w
;
445 } else if (mlen
== -1)
446 s_util
.c
[0] = *(const u8
*) w
;
456 return (~sum
& 0xffff);
459 static u16
p4_csum(const struct ip
*ip
, const u8
*data
, u16 len
,
462 struct cksum_vec vec
[2];
471 memset(&ph
, 0, sizeof(ph
));
474 ph
.proto
= next_proto
;
475 ph
.src
= ip
->ip_src
.s_addr
;
476 ph
.dst
= ip
->ip_dst
.s_addr
;
478 vec
[0].ptr
= (const u8
*) (void *) &ph
;
479 vec
[0].len
= sizeof(ph
);
484 return __in_cksum(vec
, 2);
487 static void apply_csum16(int csum_id
)
490 size_t csum_max
= packet_dyn
[i
].slen
;
492 for (j
= 0; j
< csum_max
; ++j
) {
494 struct csum16
*csum
= &packet_dyn
[i
].csum
[j
];
496 fmemset(&packets
[i
].payload
[csum
->off
], 0, sizeof(sum
));
498 switch (csum
->which
) {
500 if (csum
->to
>= packets
[i
].len
)
501 csum
->to
= packets
[i
].len
- 1;
502 sum
= calc_csum(packets
[i
].payload
+ csum
->from
,
503 csum
->to
- csum
->from
+ 1, 0);
506 sum
= p4_csum((void *) packets
[i
].payload
+ csum
->from
,
507 packets
[i
].payload
+ csum
->to
,
508 (packets
[i
].len
- csum
->to
),
512 sum
= p4_csum((void *) packets
[i
].payload
+ csum
->from
,
513 packets
[i
].payload
+ csum
->to
,
514 (packets
[i
].len
- csum
->to
),
519 fmemcpy(&packets
[i
].payload
[csum
->off
], &sum
, sizeof(sum
));
523 static struct cpu_stats
*setup_shared_var(unsigned long cpus
)
526 char zbuff
[cpus
* sizeof(struct cpu_stats
)], file
[256];
527 struct cpu_stats
*buff
;
529 fmemset(zbuff
, 0, sizeof(zbuff
));
530 slprintf(file
, sizeof(file
), ".tmp_mmap.%u", (unsigned int) rand());
532 fd
= creat(file
, S_IRUSR
| S_IWUSR
);
536 fd
= open_or_die_m(file
, O_RDWR
| O_CREAT
| O_TRUNC
,
538 write_or_die(fd
, zbuff
, sizeof(zbuff
));
540 buff
= (void *) mmap(0, sizeof(zbuff
), PROT_READ
| PROT_WRITE
,
542 if (buff
== (void *) -1)
543 panic("Cannot setup shared variable!\n");
548 memset(buff
, 0, sizeof(zbuff
));
553 static void destroy_shared_var(void *buff
, unsigned long cpus
)
555 munmap(buff
, cpus
* sizeof(struct cpu_stats
));
558 static void dump_trafgen_snippet(uint8_t *payload
, size_t len
)
563 for (i
= 0; i
< len
; ++i
) {
566 printf("0x%02x, ", payload
[i
]);
572 static inline unsigned short csum(unsigned short *buf
, int nwords
)
576 for (sum
= 0; nwords
> 0; nwords
--)
578 sum
= (sum
>> 16) + (sum
& 0xffff);
584 static int xmit_smoke_setup(struct ctx
*ctx
)
586 int icmp_sock
, ret
, ttl
= 64;
587 struct icmp_filter filter
;
589 icmp_sock
= socket(AF_INET
, SOCK_RAW
, IPPROTO_ICMP
);
591 panic("Cannot get a ICMP socket: %s!\n", strerror(errno
));
593 filter
.data
= ~(1 << ICMP_ECHOREPLY
);
595 ret
= setsockopt(icmp_sock
, SOL_RAW
, ICMP_FILTER
, &filter
, sizeof(filter
));
597 panic("Cannot install filter!\n");
599 ret
= setsockopt(icmp_sock
, SOL_IP
, IP_TTL
, &ttl
, sizeof(ttl
));
601 panic("Cannot set TTL!\n");
603 memset(&ctx
->dest
, 0, sizeof(ctx
->dest
));
604 ctx
->dest
.sin_family
= AF_INET
;
605 ctx
->dest
.sin_port
= 0;
607 ret
= inet_aton(ctx
->rhost
, &ctx
->dest
.sin_addr
);
609 panic("Cannot resolv address!\n");
614 static int xmit_smoke_probe(int icmp_sock
, struct ctx
*ctx
)
616 int ret
, i
, probes
= 5;
617 short ident
, cnt
= 1;
618 uint8_t outpack
[512], *data
;
619 struct icmphdr
*icmp
;
621 size_t len
= sizeof(*icmp
) + 56;
622 struct sockaddr_in from
;
624 struct pollfd fds
= {
629 while (probes
-- > 0) {
630 ident
= htons((short) rand());
632 memset(outpack
, 0, sizeof(outpack
));
633 icmp
= (void *) outpack
;
634 icmp
->type
= ICMP_ECHO
;
637 icmp
->un
.echo
.id
= ident
;
638 icmp
->un
.echo
.sequence
= htons(cnt
++);
640 data
= ((uint8_t *) outpack
+ sizeof(*icmp
));
641 for (i
= 0; i
< 56; ++i
)
642 data
[i
] = (uint8_t) rand();
644 icmp
->checksum
= csum((unsigned short *) outpack
,
645 len
/ sizeof(unsigned short));
647 ret
= sendto(icmp_sock
, outpack
, len
, MSG_DONTWAIT
,
648 (struct sockaddr
*) &ctx
->dest
, sizeof(ctx
->dest
));
649 if (unlikely(ret
!= len
))
650 panic("Cannot send out probe: %s!\n", strerror(errno
));
652 ret
= poll(&fds
, 1, 500);
654 panic("Poll failed!\n");
656 if (fds
.revents
& POLLIN
) {
657 ret
= recvfrom(icmp_sock
, outpack
, sizeof(outpack
), 0,
658 (struct sockaddr
*) &from
, &from_len
);
659 if (unlikely(ret
<= 0))
660 panic("Probe receive failed!\n");
661 if (unlikely(from_len
!= sizeof(ctx
->dest
)))
663 if (unlikely(memcmp(&from
, &ctx
->dest
, sizeof(ctx
->dest
))))
665 if (unlikely(ret
< sizeof(*ip
) + sizeof(*icmp
)))
667 ip
= (void *) outpack
;
668 if (unlikely(ip
->ihl
* 4 + sizeof(*icmp
) > ret
))
670 icmp
= (void *) outpack
+ ip
->ihl
* 4;
671 if (unlikely(icmp
->un
.echo
.id
!= ident
))
681 static void xmit_slowpath_or_die(struct ctx
*ctx
, int cpu
)
683 int ret
, icmp_sock
= -1;
684 unsigned long num
= 1, i
= 0;
685 struct timeval start
, end
, diff
;
686 unsigned long long tx_bytes
= 0, tx_packets
= 0;
687 struct packet_dyn
*pktd
;
688 struct sockaddr_ll saddr
= {
689 .sll_family
= PF_PACKET
,
690 .sll_halen
= ETH_ALEN
,
691 .sll_ifindex
= device_ifindex(ctx
->device
),
698 icmp_sock
= xmit_smoke_setup(ctx
);
700 drop_privileges(ctx
->enforce
, ctx
->uid
, ctx
->gid
);
702 bug_on(gettimeofday(&start
, NULL
));
704 while (likely(sigint
== 0) && likely(num
> 0)) {
705 pktd
= &packet_dyn
[i
];
706 if (pktd
->clen
+ pktd
->rlen
+ pktd
->slen
) {
712 ret
= sendto(sock
, packets
[i
].payload
, packets
[i
].len
, 0,
713 (struct sockaddr
*) &saddr
, sizeof(saddr
));
714 if (unlikely(ret
< 0)) {
715 if (errno
== ENOBUFS
) {
720 panic("Sendto error: %s!\n", strerror(errno
));
723 tx_bytes
+= packets
[i
].len
;
726 if (ctx
->smoke_test
) {
727 ret
= xmit_smoke_probe(icmp_sock
, ctx
);
728 if (unlikely(ret
< 0)) {
729 printf("%sSmoke test alert:%s\n", colorize_start(bold
), colorize_end());
730 printf(" Remote host seems to be unresponsive to ICMP pings!\n");
731 printf(" Last instance was packet%lu, seed:%u, trafgen snippet:\n\n",
734 dump_trafgen_snippet(packets
[i
].payload
, packets
[i
].len
);
753 bug_on(gettimeofday(&end
, NULL
));
754 diff
= tv_subtract(end
, start
);
759 stats
[cpu
].tx_packets
= tx_packets
;
760 stats
[cpu
].tx_bytes
= tx_bytes
;
761 stats
[cpu
].tv_sec
= diff
.tv_sec
;
762 stats
[cpu
].tv_usec
= diff
.tv_usec
;
764 stats
[cpu
].state
|= CPU_STATS_STATE_RES
;
767 static void xmit_fastpath_or_die(struct ctx
*ctx
, int cpu
)
769 int ifindex
= device_ifindex(ctx
->device
);
772 unsigned long num
= 1, i
= 0, size
;
774 struct frame_map
*hdr
;
775 struct timeval start
, end
, diff
;
776 struct packet_dyn
*pktd
;
777 unsigned long long tx_bytes
= 0, tx_packets
= 0;
779 fmemset(&tx_ring
, 0, sizeof(tx_ring
));
781 size
= ring_size(ctx
->device
, ctx
->reserve_size
);
783 set_sock_prio(sock
, 512);
784 set_packet_loss_discard(sock
);
786 setup_tx_ring_layout(sock
, &tx_ring
, size
, ctx
->jumbo_support
);
787 create_tx_ring(sock
, &tx_ring
, ctx
->verbose
);
788 mmap_tx_ring(sock
, &tx_ring
);
789 alloc_tx_ring_frames(&tx_ring
);
790 bind_tx_ring(sock
, &tx_ring
, ifindex
);
792 drop_privileges(ctx
->enforce
, ctx
->uid
, ctx
->gid
);
795 interval
= ctx
->kpull
;
799 itimer
.it_interval
.tv_sec
= 0;
800 itimer
.it_interval
.tv_usec
= interval
;
802 itimer
.it_value
.tv_sec
= 0;
803 itimer
.it_value
.tv_usec
= interval
;
805 setitimer(ITIMER_REAL
, &itimer
, NULL
);
807 bug_on(gettimeofday(&start
, NULL
));
809 while (likely(sigint
== 0) && likely(num
> 0)) {
810 while (user_may_pull_from_tx(tx_ring
.frames
[it
].iov_base
) && likely(num
> 0)) {
811 hdr
= tx_ring
.frames
[it
].iov_base
;
813 /* Kernel assumes: data = ph.raw + po->tp_hdrlen -
814 * sizeof(struct sockaddr_ll); */
815 out
= ((uint8_t *) hdr
) + TPACKET2_HDRLEN
- sizeof(struct sockaddr_ll
);
817 hdr
->tp_h
.tp_snaplen
= packets
[i
].len
;
818 hdr
->tp_h
.tp_len
= packets
[i
].len
;
820 pktd
= &packet_dyn
[i
];
821 if (pktd
->clen
+ pktd
->rlen
+ pktd
->slen
) {
827 fmemcpy(out
, packets
[i
].payload
, packets
[i
].len
);
829 tx_bytes
+= packets
[i
].len
;
839 kernel_may_pull_from_tx(&hdr
->tp_h
);
842 if (it
>= tx_ring
.layout
.tp_frame_nr
)
848 if (unlikely(sigint
== 1))
853 bug_on(gettimeofday(&end
, NULL
));
854 diff
= tv_subtract(end
, start
);
856 destroy_tx_ring(sock
, &tx_ring
);
858 stats
[cpu
].tx_packets
= tx_packets
;
859 stats
[cpu
].tx_bytes
= tx_bytes
;
860 stats
[cpu
].tv_sec
= diff
.tv_sec
;
861 stats
[cpu
].tv_usec
= diff
.tv_usec
;
863 stats
[cpu
].state
|= CPU_STATS_STATE_RES
;
866 static inline void __set_state(int cpu
, sig_atomic_t s
)
868 stats
[cpu
].state
= s
;
871 static inline sig_atomic_t __get_state(int cpu
)
873 return stats
[cpu
].state
;
876 static unsigned long __wait_and_sum_others(struct ctx
*ctx
, int cpu
)
881 for (i
= 0, total
= plen
; i
< ctx
->cpus
; i
++) {
885 while ((__get_state(i
) & CPU_STATS_STATE_CFG
) == 0 &&
889 total
+= stats
[i
].cf_packets
;
895 static void __correct_global_delta(struct ctx
*ctx
, int cpu
, unsigned long orig
)
899 long long delta_correction
= 0;
901 for (i
= 0, total
= ctx
->num
; i
< ctx
->cpus
; i
++) {
905 while ((__get_state(i
) & CPU_STATS_STATE_CHK
) == 0 &&
909 total
+= stats
[i
].cd_packets
;
913 delta_correction
= -1 * ((long long) total
- orig
);
915 delta_correction
= +1 * ((long long) orig
- total
);
917 for (cpu_sel
= -1, i
= 0; i
< ctx
->cpus
; i
++) {
918 if (stats
[i
].cd_packets
> 0) {
919 if ((long long) stats
[i
].cd_packets
+
920 delta_correction
> 0) {
928 ctx
->num
+= delta_correction
;
931 static void __set_state_cf(int cpu
, unsigned long p
, unsigned long b
,
934 stats
[cpu
].cf_packets
= p
;
935 stats
[cpu
].cf_bytes
= b
;
936 stats
[cpu
].state
= s
;
939 static void __set_state_cd(int cpu
, unsigned long p
, sig_atomic_t s
)
941 stats
[cpu
].cd_packets
= p
;
942 stats
[cpu
].state
= s
;
945 static int xmit_packet_precheck(struct ctx
*ctx
, int cpu
)
948 unsigned long plen_total
, orig
= ctx
->num
;
949 size_t mtu
, total_len
= 0;
951 bug_on(plen
!= dlen
);
953 for (i
= 0; i
< plen
; ++i
)
954 total_len
+= packets
[i
].len
;
956 __set_state_cf(cpu
, plen
, total_len
, CPU_STATS_STATE_CFG
);
957 plen_total
= __wait_and_sum_others(ctx
, cpu
);
960 ctx
->num
= (unsigned long) nearbyint((1.0 * plen
/ plen_total
) * orig
);
962 __set_state_cd(cpu
, ctx
->num
, CPU_STATS_STATE_CHK
|
963 CPU_STATS_STATE_CFG
);
964 __correct_global_delta(ctx
, cpu
, orig
);
968 __set_state(cpu
, CPU_STATS_STATE_RES
);
972 for (mtu
= device_mtu(ctx
->device
), i
= 0; i
< plen
; ++i
) {
973 if (packets
[i
].len
> mtu
+ 14)
974 panic("Device MTU < than packet%d's size!\n", i
);
975 if (packets
[i
].len
<= 14)
976 panic("Packet%d's size too short!\n", i
);
982 static void main_loop(struct ctx
*ctx
, char *confname
, bool slow
,
983 int cpu
, bool invoke_cpp
)
985 compile_packets(confname
, ctx
->verbose
, cpu
, invoke_cpp
);
986 if (xmit_packet_precheck(ctx
, cpu
) < 0)
991 size_t total_len
= 0, total_pkts
= 0;
993 for (i
= 0; i
< ctx
->cpus
; ++i
) {
994 total_len
+= stats
[i
].cf_bytes
;
995 total_pkts
+= stats
[i
].cf_packets
;
998 printf("%6zu packets to schedule\n", total_pkts
);
999 printf("%6zu bytes in total\n", total_len
);
1000 printf("Running! Hang up with ^C!\n\n");
1007 xmit_slowpath_or_die(ctx
, cpu
);
1009 xmit_fastpath_or_die(ctx
, cpu
);
1016 static unsigned int generate_srand_seed(void)
1021 fd
= open("/dev/random", O_RDONLY
);
1025 read_or_die(fd
, &seed
, sizeof(seed
));
1031 int main(int argc
, char **argv
)
1033 bool slow
= false, invoke_cpp
= false, reseed
= true;
1034 int c
, opt_index
, i
, j
, vals
[4] = {0}, irq
;
1035 char *confname
= NULL
, *ptr
;
1036 unsigned long cpus_tmp
;
1037 unsigned long long tx_packets
, tx_bytes
;
1040 fmemset(&ctx
, 0, sizeof(ctx
));
1041 ctx
.cpus
= get_number_cpus_online();
1045 while ((c
= getopt_long(argc
, argv
, short_options
, long_options
,
1046 &opt_index
)) != EOF
) {
1064 cpus_tmp
= strtoul(optarg
, NULL
, 0);
1065 if (cpus_tmp
> 0 && cpus_tmp
< ctx
.cpus
)
1066 ctx
.cpus
= cpus_tmp
;
1070 ctx
.device
= xstrndup(optarg
, IFNAMSIZ
);
1078 ctx
.smoke_test
= true;
1079 ctx
.rhost
= xstrdup(optarg
);
1085 ctx
.jumbo_support
= true;
1089 confname
= xstrdup(optarg
);
1090 if (!strncmp("-", confname
, strlen("-")))
1094 ctx
.uid
= strtoul(optarg
, NULL
, 0);
1098 ctx
.gid
= strtoul(optarg
, NULL
, 0);
1102 ctx
.kpull
= strtoul(optarg
, NULL
, 0);
1105 seed
= strtoul(optarg
, NULL
, 0);
1109 ctx
.num
= strtoul(optarg
, NULL
, 0);
1113 ctx
.gap
= strtoul(optarg
, NULL
, 0);
1115 /* Fall back to single core to not
1116 * mess up correct timing. We are slow
1123 ctx
.reserve_size
= 0;
1125 for (j
= i
= strlen(optarg
); i
> 0; --i
) {
1126 if (!isdigit(optarg
[j
- i
]))
1131 if (!strncmp(ptr
, "KB", strlen("KB")))
1132 ctx
.reserve_size
= 1 << 10;
1133 else if (!strncmp(ptr
, "MB", strlen("MB")))
1134 ctx
.reserve_size
= 1 << 20;
1135 else if (!strncmp(ptr
, "GB", strlen("GB")))
1136 ctx
.reserve_size
= 1 << 30;
1138 panic("Syntax error in ring size param!\n");
1141 ctx
.reserve_size
*= strtol(optarg
, NULL
, 0);
1158 panic("Option -%c requires an argument!\n",
1161 if (isprint(optopt
))
1162 whine("Unknown option character "
1163 "`0x%X\'!\n", optopt
);
1173 if (ctx
.device
== NULL
)
1174 panic("No networking device given!\n");
1175 if (confname
== NULL
)
1176 panic("No configuration file given!\n");
1177 if (device_mtu(ctx
.device
) == 0)
1178 panic("This is no networking device!\n");
1179 if (!ctx
.rfraw
&& device_up_and_running(ctx
.device
) == 0)
1180 panic("Networking device not running!\n");
1182 register_signal(SIGINT
, signal_handler
);
1183 register_signal(SIGHUP
, signal_handler
);
1184 register_signal_f(SIGALRM
, timer_elapsed
, SA_SIGINFO
);
1188 set_system_socket_memory(vals
);
1192 ctx
.device_trans
= xstrdup(ctx
.device
);
1195 enter_rfmon_mac80211(ctx
.device_trans
, &ctx
.device
);
1199 irq
= device_irq_number(ctx
.device
);
1200 device_set_irq_affinity_list(irq
, 0, ctx
.cpus
- 1);
1202 if (ctx
.num
> 0 && ctx
.num
<= ctx
.cpus
)
1205 stats
= setup_shared_var(ctx
.cpus
);
1207 for (i
= 0; i
< ctx
.cpus
; i
++) {
1213 seed
= generate_srand_seed();
1217 main_loop(&ctx
, confname
, slow
, i
, invoke_cpp
);
1221 panic("Cannot fork processes!\n");
1225 for (i
= 0; i
< ctx
.cpus
; i
++) {
1229 if (WEXITSTATUS(status
) == EXIT_FAILURE
)
1234 leave_rfmon_mac80211(ctx
.device_trans
, ctx
.device
);
1236 reset_system_socket_memory(vals
);
1238 for (i
= 0, tx_packets
= tx_bytes
= 0; i
< ctx
.cpus
; i
++) {
1239 while ((__get_state(i
) & CPU_STATS_STATE_RES
) == 0)
1242 tx_packets
+= stats
[i
].tx_packets
;
1243 tx_bytes
+= stats
[i
].tx_bytes
;
1248 printf("\r%12llu packets outgoing\n", tx_packets
);
1249 printf("\r%12llu bytes outgoing\n", tx_bytes
);
1250 for (i
= 0; i
< ctx
.cpus
; i
++) {
1251 printf("\r%12lu sec, %lu usec on CPU%d (%llu packets)\n",
1252 stats
[i
].tv_sec
, stats
[i
].tv_usec
, i
,
1253 stats
[i
].tx_packets
);
1258 destroy_shared_var(stats
, ctx
.cpus
);
1261 free(ctx
.device_trans
);