summaryrefslogtreecommitdiff
path: root/trafgen.8
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-05-27 10:50:46 +0200
committerDaniel Borkmann <dborkman@redhat.com>2013-05-27 10:50:46 +0200
commitd6355aa7002d8d3a449196da3d25cc3f85c7680f (patch)
tree559e97267bad67bf12055a2b2872e70cde9d2bb6 /trafgen.8
parentc997421289035c0ff0256611a1583a04c3283db3 (diff)
man: minor: trafgen: add .PPs and modify BUGS section
Minor change in BUGS section to bring it up to date. Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'trafgen.8')
-rw-r--r--trafgen.8163
1 files changed, 82 insertions, 81 deletions
diff --git a/trafgen.8 b/trafgen.8
index e7f1359..2ec2b4d 100644
--- a/trafgen.8
+++ b/trafgen.8
@@ -1,17 +1,17 @@
.\" netsniff-ng - the packet sniffing beast
.\" Copyright 2013 Daniel Borkmann.
.\" Subject to the GPL, version 2.
-
+.PP
.TH TRAFGEN 8 "03 March 2013" "Linux" "netsniff-ng toolkit"
.SH NAME
trafgen \- a fast, multithreaded network packet generator
-
+.PP
.SH SYNOPSIS
-
+.PP
\fB trafgen\fR [\fIoptions\fR]
-
+.PP
.SH DESCRIPTION
-
+.PP
trafgen is a fast, zero-copy network traffic generator for debugging,
performance evaluation, and fuzz-testing. trafgen utilizes the packet(7)
socket interface of Linux which postpones complete control over packet data
@@ -21,13 +21,13 @@ Thus, trafgen can be used for many purposes. Its only limitation is that it
cannot mimic full streams resp. sessions. However, it is very useful for
various kinds of load testing in order to analyze and subsequently improve
systems behaviour under DoS attack scenarios, for instance.
-
+.PP
trafgen is Linux specific, meaning there is no support for other operating
systems, same as netsniff-ng(8), thus we can keep the code footprint quite
minimal and to the point. trafgen makes use of packet(7) socket's TX_RING
interface of the Linux kernel, which is a mmap(2)'ed ring buffer shared between
user and kernel space.
-
+.PP
By default, trafgen starts as many processes as available CPUs, pins each
of them to their respective CPU and sets up the ring buffer each in their own
process space after having compiled a list of packets to transmit. Thus, this is
@@ -38,7 +38,7 @@ pktgen, the built-in Linux kernel traffic generator, except that trafgen is more
flexible in terms of packet configuration possibilities. On 10-Gigabit-per-second
Ethernet, trafgen might be slower than pktgen due to the user/kernel space
overhead but still has a fairly high performance for out of the box kernels.
-
+.PP
trafgen has the potential to do fuzz testing, meaning a packet configuration can
be built with random numbers on all or certain packet offsets that are freshly
generated each time a packet is sent out. With a built-in IPv4 ping, trafgen can
@@ -49,7 +49,7 @@ and the last sent packet is printed together with the random seed that was used
by trafgen. You might not really get lucky fuzz-testing the Linux kernel, but
presumably there are buggy closed-source embedded systems or network driver's
firmware files that are prone to bugs, where trafgen could help in finding them.
-
+.PP
trafgen's configuration language is quite powerful, also due to the fact, that
it supports C preprocessor macros. A stddef.h is being shipped with trafgen for
this purpose, so that well known defines from Linux kernel or network programming
@@ -64,35 +64,35 @@ compile-time random number or run-time random number (as mentioned with fuzz
testing). Also, netsniff-ng(8) is able to convert a pcap file into a trafgen
configuration file, thus such a configuration can then be further tweaked for a
given scenario.
-
+.PP
.SH OPTIONS
-
+.PP
.SS -i <cfg|->, -c <cfg|i>, --in <cfg|->, --conf <cfg|->
Defines the input configuration file that can either be passed as a normal plain
text file or via stdin (``-''). Note that currently, if a configuration is
passed through stdin, only 1 CPU will be used.
-
+.PP
.SS -o <dev>, -d <dev>, --out <dev>, --dev <dev>
Defines the outgoing networking device such as eth0, wlan0 and others.
-
+.PP
.SS -p, --cpp
Pass the packet configuration to the C preprocessor before reading it into
trafgen. This allows #define and #include directives (e.g. to include
definitions from system headers) to be used in the trafgen configuration file.
-
+.PP
.SS -J, --jumbo-support
By default trafgen's ring buffer frames are of a fixed size of 2048 bytes.
This means that if you're expecting jumbo frames or even super jumbo frames to
pass your line, then you will need to enable support for that with the help of
this option. However, this has the disadvantage of a performance regression and
a bigger memory footprint for the ring buffer.
-
+.PP
.SS -R, --rfraw
In case the output networking device is a wireless device, it is possible with
trafgen to turn this into monitor mode and create a mon<X> device that trafgen
will be transmitting on instead of wlan<X>, for instance. This enables trafgen
to inject raw 802.11 frames.
-
+.PP
.SS -s <ipv4>, --smoke-test <ipv4>
In case this option is enabled, trafgen will perform a smoke test. In other
words, it will probe the remote end, specified by an <ipv4> address, that is
@@ -105,23 +105,23 @@ packet configuration and the random seed that has been used in order to
reproduce a possible bug. This might be useful when testing proprietary embedded
devices. It is recommended to have a direct link between the host running
trafgen and the host being attacked by trafgen.
-
+.PP
.SS -n <0|uint>, --num <0|uint>
Process a number of packets and then exit. If the number of packets is 0, then
this is equivalent to infinite packets resp. processing until interrupted.
Otherwise, a number given as an unsigned integer will limit processing.
-
+.PP
.SS -r, --rand
Randomize the packet selection of the configuration file. By default, if more
than one packet is defined in a packet configuration, packets are scheduled for
transmission in a round robin fashion. With this option, they are selected
randomly instread.
-
+.PP
.SS -P <uint>, --cpus <uint>
Specify the number of processes trafgen shall fork(2) off. By default trafgen
will start as many processes as CPUs that are online and pin them to each,
respectively. Allowed value must be within interval [1,CPUs].
-
+.PP
.SS -t <uint>, --gap <uint>
Specify a static inter-packet timegap in micro-seconds. If this option is given,
then instead of packet(7)'s TX_RING interface, trafgen will use sendto(2) I/O
@@ -130,67 +130,68 @@ a couple of reasons: i) comparison between sendto(2) and TX_RING performance,
ii) low-traffic packet probing for a given interval, iii) ping-like debugging
with specific payload patterns. Furthermore, the TX_RING interface does not cope
with interpacket gaps.
-
+.PP
.SS -S <size>, --ring-size <size>
Manually define the TX_RING resp. TX_RING size in ``<num>KiB/MiB/GiB''. On
default the size is being determined based on the network connectivity rate.
-
+.PP
.SS -k <uint>, --kernel-pull <uint>
Manually define the interval in micro-seconds where the kernel should be triggered
to batch process the ring buffer frames. By default, it is every 10us, but it can
manually be prolonged, for instance..
-
+.PP
.SS -E <uint>, --seed <uint>
Manually set the seed for pseudo random number generator (PRNG) in trafgen. By
default, a random seed from /dev/urandom is used to feed glibc's PRNG. If that
fails, it falls back to the unix timestamp. It can be useful to set the seed
manually in order to be able to reproduce a trafgen session, e.g. after fuzz
testing.
-
+.PP
.SS -u <uid>, --user <uid> resp. -g <gid>, --group <gid>
After ring setup, drop privileges to a non-root user/group combination.
-
+.PP
.SS -V, --verbose
Let trafgen be more talkative and let it print the parsed configuration and
some ring buffer statistics.
-
+.PP
.SS -e, --example
Show a built-in packet configuration example. This might be a good starting
point for an initial packet configuration scenario.
-
+.PP
.SS -v, --version
Show version information and exit.
-
+.PP
.SS -h, --help
Show user help and exit.
-
+.PP
.SH SYNTAX
+.PP
trafgen's packet configuration syntax is fairly simple. The very basic things
one needs to know is that a configuration file is a simple plain text file
where packets are defined. It can contain one or more packets. Packets are
enclosed by opening '{' and closing '}' braces, for example:
-
+.PP
{ /* packet 1 content goes here ... */ }
{ /* packet 2 content goes here ... */ }
-
+.PP
When trafgen is started using multiple CPUs (default), then each of those packets
will be scheduled for transmission on all CPUs by default. However, it is possible
to tell trafgen to schedule a packet only on a particular CPU:
-
+.PP
cpu(1): { /* packet 1 content goes here ... */ }
cpu(2-3): { /* packet 2 content goes here ... */ }
-
+.PP
Thus, in case we have a 4 core machine with CPU0-CPU3, packet 1 will be scheduled
only on CPU1, packet 2 on CPU2 and CPU3. When using trafgen with --num option,
then these constraints will still be valid and the packet is fairly distributed
among those CPUs.
-
+.PP
Packet content is delimited either by a comma or whitespace, or both:
-
+.PP
{ 0xca, 0xfe, 0xba 0xbe }
-
+.PP
Packet content can be of the following:
-
+.PP
hex bytes: 0xca, xff
decimal: 42
binary: 0b11110000, b11110000
@@ -198,18 +199,18 @@ Packet content can be of the following:
character: 'a'
string: "hello world"
shellcode: "\\x31\\xdb\\x8d\\x43\\x17\\x99\\xcd\\x80\\x31\\xc9"
-
+.PP
Thus, a quite useless packet packet configuration might look like this (one can
verify this when running this with trafgen in combination with -V):
-
+.PP
{ 0xca, 42, 0b11110000, 011, 'a', "hello world",
"\\x31\\xdb\\x8d\\x43\\x17\\x99\\xcd\\x80\\x31\\xc9" }
-
+.PP
There are a couple of helper functions in trafgen's language to make life easier
to write configurations:
-
+.PP
i) Fill with garbage functions:
-
+.PP
byte fill function: fill(<content>, <times>): fill(0xca, 128)
compile-time random: rnd(<times>): rnd(128), rnd()
runtime random numbers: drnd(<times>): drnd(128), drnd()
@@ -217,32 +218,32 @@ i) Fill with garbage functions:
seqdec(<start-val>, <decrement>, <times>)
runtime counter (1byte): dinc(<min-val>, <max-val>, <increment>)
ddec(<min-val>, <max-val>, <decrement>)
-
+.PP
ii) Checksum helper functions (packet offsets start with 0):
-
+.PP
IP/ICMP checksum: csumip/csumicmp(<off-from>, <off-to>)
UDP checksum: csumudp(<off-iphdr>, <off-udpdr>)
TCP checksum: csumtcp(<off-iphdr>, <off-tcphdr>)
-
+.PP
iii) Multibyte functions, compile-time expression evaluation:
-
+.PP
const8(<content>), c8(<content>), const16(<content>), c16(<content>),
const32(<content>), c32(<content>), const64(<content>), c64(<content>)
-
+.PP
These functions write their result in network byte order into the packet
configuration, e.g. const16(0xaa) will result in ``00 aa''. Within c*()
functions, it is possible to do some arithmetics: -,+,*,/,%,&,|,<<,>>,^
E.g. const16((((1<<8)+0x32)|0b110)*2) will be evaluated to ``02 6c''.
-
+.PP
Furthermore, there are two types of comments in trafgen configuration files:
-
+.PP
1. Multi-line C-style comments: /* put comment here */
2. Single-line Shell-style comments: # put comment here
-
+.PP
Next to all of this, a configuration can be passed through the C preprocessor
before the trafgen compiler gets to see it with option --cpp. To give you a
taste of a more advanced example, run ``trafgen -e'', fields are commented:
-
+.PP
/* Note: dynamic elements make trafgen slower! */
#include <stddef.h>
@@ -291,9 +292,9 @@ taste of a more advanced example, run ``trafgen -e'', fields are commented:
/* Data blob */
"gotcha!",
}
-
+.PP
Another real-world example by Jesper Dangaard Brouer [1]:
-
+.PP
{
# --- ethernet header ---
0x00, 0x1b, 0x21, 0x3c, 0x9d, 0xf8, # mac destination
@@ -326,87 +327,88 @@ Another real-world example by Jesper Dangaard Brouer [1]:
# payload
'A', fill(0x41, 11),
}
-
+.PP
[1] http://thread.gmane.org/gmane.linux.network/257155
-
+.PP
.SH USAGE EXAMPLE
-
+.PP
.SS trafgen --dev eth0 --conf trafgen.cfg
This is the most simple and, probably, the most common use of trafgen. It
will generate traffic defined in the configuration file ``trafgen.cfg'' and
transmit this via the ``eth0'' networking device. All online CPUs are used.
-
+.PP
.SS trafgen -e | trafgen -i - -o lo --cpp -n 1
This is an example where we send one packet of the built-in example through
the loopback device. The example configuration is passed via stdin and also
through the C preprocessor before trafgen's packet compiler will see it.
-
+.PP
.SS trafgen --dev eth0 --conf fuzzing.cfg --smoke-test 10.0.0.1
Read the ``fuzzing.cfg'' packet configuration file (which contains drnd()
calls) and send out the generated packets to the ``eth0'' device. After each
sent packet, ping probe the attacked host with address 10.0.0.1 to check if
it's still alive. This also means, that we utilize 1 CPU only, and do not
use the TX_RING, but sendto(2) packet I/O due to ``slow mode''.
-
+.PP
.SS trafgen --dev wlan0 --rfraw --conf beacon-test.txf -V --cpus 2
As an output device ``wlan0'' is used and put into monitoring mode, thus we
are going to transmit raw 802.11 frames through the air. Use the
``beacon-test.txf'' configuration file, set trafgen into verbose mode and
use only 2 CPUs.
-
+.PP
.SS trafgen --dev em1 --conf frag_dos.cfg --rand --gap 1000
Use trafgen in sendto(2) mode instead of TX_RING mode and sleep after each
sent packet a static timegap for 1000us. Generate packets from ``frag_dos.cfg''
and select next packets to send randomly instead of a round-robin fashion.
The output device for packets is ``em1''.
-
+.PP
.SS trafgen --dev eth0 --conf icmp.cfg --rand --num 1400000 -k1000
Send only 1400000 packets using the ``icmp.cfg'' configuration file and then
exit trafgen. Select packets randomly from that file for transmission and
send them out via ``eth0''. Also, trigger the kernel every 1000us for batching
the ring frames from user space (default is 10us).
-
+.PP
.SS trafgen --dev eth0 --conf tcp_syn.cfg -u `id -u bob` -g `id -g bob`
Send out packets generated from the configuration file ``tcp_syn.cfg'' via
the ``eth0'' networking device. After setting up the ring for transmission,
drop credentials to the non-root user/group bob/bob.
-
+.PP
.SH NOTE
+.PP
trafgen can saturate a Gigabit Ethernet link without problems. As always,
of course, this depends on your hardware as well. Not everywhere where it
says Gigabit Ethernet on the box, will you reach almost physical line rate!
Please also read the netsniff-ng(8) man page, section NOTE for further
details about tuning your system e.g. with tuned(8).
-
+.PP
If you intend to use trafgen on a 10-Gbit/s Ethernet NIC, make sure you
are using a multiqueue tc(8) discipline, and make sure that the packets
you generate with trafgen will have a good distribution among tx_hashes
so that you'll actually make use of multiqueues.
-
+.PP
For introducing bit errors, delays with random variation and more, there
is no built-in option in trafgen. Rather, one should reuse existing methods
for that which integrate nicely with trafgen, such as tc(8) with its
different disciplines, i.e. netem.
-
+.PP
For more complex packet configurations, it is recommended to use high-level
scripting for generating trafgen packet configurations in a more automated
way, i.e. also to create different traffic distributions that are common for
industrial benchmarking:
-
+.PP
Traffic model Distribution
-
+.PP
IMIX 64:7, 570:4, 1518:1
Tolly 64:55, 78:5, 576:17, 1518:23
Cisco 64:7, 594:4, 1518:1
RPR Trimodal 64:60, 512:20, 1518:20
RPR Quadrimodal 64:50, 512:15, 1518:15, 9218:20
-
+.PP
The low-level nature of trafgen makes trafgen rather protocol independent
and therefore useful in many scenarios when stress testing is needed, for
instance. However, if a traffic generator with higher level packet
descriptions is desired, netsniff-ng's mausezahn(8) can be of good use as
well.
-
+.PP
For smoke/fuzz testing with trafgen, it is recommended to have a direct
link between the host you want to analyze (``victim'' machine) and the host
you run trafgen on (``attacker'' machine). If the ICMP reply from the victim
@@ -417,24 +419,23 @@ be a good chance to find it on some proprietary (e.g. embedded) systems or
buggy driver firmwares that are in the wild. Also, fuzz testing can be done
on raw 802.11 frames, of course. In case you find a ping-of-death, please
mention that you were using trafgen in your commit message of the fix!
-
+.PP
.SH BUGS
-When I start trafgen, my kernel crashes: we have fixed this bug in the
-mainline and stable kernels under commit 7f5c3e3a8 (``af_packet: remove
-BUG statement in tpacket_destruct_skb''). Either update your kernel to
-the latest version, e.g. clone and build it from git.kernel.org, to a
-stable kernel, or don't start multiple trafgen instances at once resp.
-start trafgen with flag -A to disable temporary socket memory adaptation!
-
+For old trafgen versions only, there could occur kernel crashes: we have fixed
+this bug in the mainline and stable kernels under commit 7f5c3e3a8 (``af_packet:
+remove BUG statement in tpacket_destruct_skb'') and also in trafgen.
+.PP
+Probably the best is if you upgrade trafgen to the latest version.
+.PP
.SH LEGAL
trafgen is licensed under the GNU GPL version 2.0.
-
+.PP
.SH HISTORY
.B trafgen
was originally written for the netsniff-ng toolkit by Daniel Borkmann. It
is currently maintained by Tobias Klauser <tklauser@distanz.ch> and Daniel
Borkmann <dborkma@tik.ee.ethz.ch>.
-
+.PP
.SH SEE ALSO
.BR netsniff-ng (8),
.BR mausezahn (8),
@@ -443,6 +444,6 @@ Borkmann <dborkma@tik.ee.ethz.ch>.
.BR flowtop (8),
.BR astraceroute (8),
.BR curvetun (8)
-
+.PP
.SH AUTHOR
Manpage was written by Daniel Borkmann.