Путеводитель по Руководству Linux

  User  |  Syst  |  Libr  |  Device  |  Files  |  Other  |  Admin  |  Head  |



   trafgen    ( 8 )

быстрый многопоточный генератор сетевых пакетов (a fast, multithreaded network packet generator)

  Name  |  Synopsis  |  Description  |  Options  |    Syntax    |  Usage example  |  Note  |  Bugs  |  History  |  See also  |

Синтаксис (Syntax)

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:

{ /* packet 1 content goes here ... */ } { /* packet 2 content goes here ... */ }

Alternatively, packets can also be specified directly on the command line, using the same syntax as used in the configuration files.

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:

cpu(1): { /* packet 1 content goes here ... */ } cpu(2-3): { /* packet 2 content goes here ... */ }

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.

Packet content is delimited either by a comma or whitespace, or both:

{ 0xca, 0xfe, 0xba 0xbe }

Packet content can be of the following:

hex bytes: 0xca, xff decimal: 42 binary: 0b11110000, b11110000 octal: 011 character: 'a' string: "hello world" shellcode: "\x31\xdb\x8d\x43\x17\x99\xcd\x80\x31\xc9"

Thus, a quite useless packet configuration might look like this (one can verify this when running this with trafgen in combination with -V):

{ 0xca, 42, 0b11110000, 011, 'a', "hello world", "\x31\xdb\x8d\x43\x17\x99\xcd\x80\x31\xc9" }

There are a couple of helper functions in trafgen's language to make life easier to write configurations:

i) Fill with garbage functions:

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() compile-time counter: seqinc(<start-val>, <increment>, <times>) seqdec(<start-val>, <decrement>, <times>) runtime counter (1byte): dinc(<min-val>, <max-val>, <increment>) ddec(<min-val>, <max-val>, <decrement>)

ii) Checksum helper functions (packet offsets start with 0):

IP/ICMP checksum: csumip/csumicmp(<off-from>, <off-to>) UDP checksum: csumudp(<off-iphdr>, <off-udpdr>) TCP checksum: csumtcp(<off-iphdr>, <off-tcphdr>) UDP checksum (IPv6): csumudp6(<off-ip6hdr>, <off-udpdr>) TCP checksum (IPv6): csumtcp6(<off-ip6hdr>, <off-tcphdr>)

iii) Multibyte functions, compile-time expression evaluation:

const8(<content>), c8(<content>), const16(<content>), c16(<content>), const32(<content>), c32(<content>), const64(<content>), c64(<content>)

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''.

iv) Protocol header functions: The protocol header functions allow to fill protocol header fields by using following generic syntax:

<proto>(<field>=<value>,<field2>=<value2>,...,<field3>,...)

If a field is not specified, then a default value will be used (usually 0). Protocol fields might be set in any order. However, the offset of the fields in the resulting packet is according to the respective protocol.

Each field might be set with a function which generates field value at runtime by increment or randomize it. For L3/L4 protocols the checksum is calculated automatically if the field was changed dynamically by specified function. The following field functions are supported:

dinc - increment field value at runtime. By default increment step is '1'. min and max parameters are used to increment field only in the specified range, by default original field value is used. If the field length is greater than 4 then last 4 bytes are incremented only (useful for MAC and IPv6 addresses):

<field> = dinc() | dinc(min, max) | dinc(min, max, step)

drnd - randomize field value at runtime. min and max parameters are used to randomize field only in the specified range:

<field> = drnd() | drnd(min, max)

Example of using dynamic functions:

{ eth(saddr=aa:bb:cc:dd:ee:ff, saddr=dinc()), ipv4(saddr=dinc()), udp(sport=dinc(1, 13, 2), dport=drnd(80, 100)) }

Fields might be further manipulated with a function at a specific offset:

<field>[<index>] | <field>[<index>:<length>]

<index> - relative field offset with range 0..<field.len> - 1

<length> - length/size of the value which will be set; either 1, 2 or 4 bytes (default: 1)

The <index> starts from the field's first byte in network order.

The syntax is similar to the one used in pcap filters (man pcap-filter) for matching header field at a specified offset.

Examples of using field offset (showing the effect in a shortenet output from netsniff-ng):

1) trafgen -o lo --cpus 1 -n 3 '{ eth(da=11:22:33:44:55:66, da[0]=dinc()), tcp() }'

[ Eth MAC (00:00:00:00:00:00 => 11:22:33:44:55:66)

[ Eth MAC (00:00:00:00:00:00 => 12:22:33:44:55:66)

[ Eth MAC (00:00:00:00:00:00 => 13:22:33:44:55:66)

2) trafgen -o lo --cpus 1 -n 3 '{ ipv4(da=1.2.3.4, da[0]=dinc()), tcp() }'

[ IPv4 Addr (127.0.0.1 => 1.2.3.4)

[ IPv4 Addr (127.0.0.1 => 2.2.3.4)

[ IPv4 Addr (127.0.0.1 => 3.2.3.4)

All required lower layer headers will be filled automatically if they were not specified by the user. The headers will be filled in the order they were specified. Each header will be filled with some mimimum required set of fields.

Supported protocol headers:

Ethernet : eth(da=<mac>, sa=<mac>, type=<number>)

da|daddr - Destination MAC address (default: 00:00:00:00:00:00)

sa|saddr - Source MAC address (default: device MAC address)

etype|type|prot|proto - Ethernet type (default: 0)

PAUSE (IEEE 802.3X) : pause(code=<number>, time=<number>)

code - MAC Control opcode (default: 0x0001)

time - Pause time (default: 0)

By default Ethernet header is added with a fields:

Ethernet type - 0x8808

Destination MAC address - 01:80:C2:00:00:01

PFC : pfc(pri|prio(<number>)=<number>, time(<number>)=<number>)

code - MAC Control opcode (default: 0x0101)

pri|prio - Priority enable vector (default: 0)

pri|prio(<number>) - Enable/disable (0 - disable, 1 - enable) pause for priority <number> (default: 0)

time(<number>) - Set pause time for priority <number> (default: 0)

By default Ethernet header is added with a fields:

Ethernet type - 0x8808

Destination MAC address - 01:80:C2:00:00:01

VLAN : vlan(tpid=<number>, id=<number>, dei=<number>, tci=<number>, pcp=<number>, 1q, 1ad)

tpid|prot|proto - Tag Protocol Identifier (TPID) (default: 0x8100)

tci - Tag Control Information (TCI) field (VLAN Id + PCP + DEI) (default: 0)

dei|cfi - Drop Eligible Indicator (DEI), formerly Canonical Format Indicator (CFI) (default: 0)

pcp - Priority code point (PCP) (default: 0)

id - VLAN Identifier (default: 0)

1q - Set 802.1q header (TPID: 0x8100)

1ad - Set 802.1ad header (TPID: 0x88a8)

By default, if the lower level header is Ethernet, its EtherType is set to 0x8100 (802.1q).

MPLS : mpls(label=<number>, tc|exp=<number>, last=<number>, ttl=<number>)

label|lbl - MPLS label value (default: 0)

tclass|tc|exp - Traffic Class for QoS field (default: 0)

last - Bottom of stack S-flag (default: 1 for most last label)

ttl - Time To Live (TTL) (default: 0)

By default, if the lower level header is Ethernet, its EtherType is set to 0x8847 (MPLS Unicast). S-flag is set automatically to 1 for the last label and resets to 0 if the lower MPLS label was added after.

ARP : arp(htype=<number>, ptype=<number>, op=<request|reply|number>, request, reply, smac=<mac>, sip=<ip4_addr>, tmac=<mac>, tip=<ip4_addr>)

htype - ARP hardware type (default: 1 [Ethernet])

ptype - ARP protocol type (default: 0x0800 [IPv4])

op - ARP operation type (request/reply) (default: request)

req|request - ARP Request operation type

reply - ARP Reply operation type

smac|sha - Sender hardware (MAC) address (default: device MAC address)

sip|spa - Sender protocol (IPv4) address (default: device IPv4 address)

tmac|tha - Target hardware (MAC) address (default: 00:00:00:00:00:00)

tip|tpa - Target protocol (IPv4) address (default: device IPv4 address)

By default, the ARP operation field is set to request and the Ethernet destination MAC address is set to the broadcast address (ff:ff:ff:ff:ff:ff).

IPv4 : ip4|ipv4(ihl=<number>, ver=<number>, len=<number>, csum=<number>, ttl=<number>, tos=<number>, dscp=<number>, ecn=<number>, id=<number>, flags=<number>, frag=<number>, df, mf, da=<ip4_addr>, sa=<ip4_addr>, prot[o]=<number>)

ver|version - Version field (default: 4)

ihl - Header length in number of 32-bit words (default: 5)

tos - Type of Service (ToS) field (default: 0)

dscp - Differentiated Services Code Point (DSCP, DiffServ) field (default: 0)

ecn - Explicit Congestion Notification (ECN) field (default: 0)

len|length - Total length of header and payload (calculated by default)

id - IPv4 datagram identification (default: 0)

flags - IPv4 flags value (DF, MF) (default: 0)

df - Don't fragment (DF) flag (default: 0)

mf - More fragments (MF) flag (default: 0)

frag - Fragment offset field in number of 8 byte blocks (default: 0)

ttl - Time to live (TTL) field (default: 0)

csum - Header checksum (calculated by default)

sa|saddr - Source IPv4 address (default: device IPv4 address)

da|daddr - Destination IPv4 address (default: 0.0.0.0)

prot|proto - IPv4 protocol number (default: 0)

By default, if the lower level header is Ethernet, its EtherType field is set to 0x0800 (IPv4). If the lower level header is IPv4, its protocol field is set to 0x4 (IP-in-IP).

IPv6 : ip6|ipv6(ver=<number>, class=<number>, flow=<number> len=<number>, nexthdr=<number>, hoplimit=<number>, da=<ip6_addr>, sa=<ip6_addr>)

ver|version - Version field (default: 6)

tc|tclass - Traffic class (default: 0)

fl|flow - Flow label (default: 0)

len|length - Payload length (calculated by default)

nh|nexthdr - Type of next header, i.e. transport layer protocol number (default: 0)

hl|hoplimit|ttl - Hop limit, i.e. time to live (default: 0)

sa|saddr - Source IPv6 address (default: device IPv6 address)

da|daddr - Destination IPv6 address (default: 0:0:0:0:0:0:0:0)

By default, if the lower level header is Ethernet, its EtherType field is set to 0x86DD (IPv6).

ICMPv4 : icmp4|icmpv4(type=<number>, code=<number>, echorequest, echoreply, csum=<number>, mtu=<number>, seq=<number>, id=<number>, addr=<ip4_addr>)

type - Message type (default: 0 - Echo reply)

code - Message code (default: 0)

echorequest - ICMPv4 echo (ping) request (type: 8, code: 0)

echoreply - ICMPv4 echo (ping) reply (type: 0, code: 0)

csum - Checksum of ICMPv4 header and payload (calculated by default)

mtu - Next-hop MTU field used in 'Datagram is too big' message type (default; 0)

seq - Sequence number used in Echo/Timestamp/Address mask messages (default: 0)

id - Identifier used in Echo/Timestamp/Address mask messages (default: 0)

addr - IPv4 address used in Redirect messages (default: 0.0.0.0)

Example ICMP echo request (ping):

{ icmpv4(echorequest, seq=1, id=1326) }

ICMPv6 : icmp6|icmpv6(type=<number>, echorequest, echoreply, code=<number>, csum=<number>)

type - Message type (default: 0)

code - Code (default: 0)

echorequest - ICMPv6 echo (ping) request

echoreply - ICMPv6 echo (ping) reply

csum - Message checksum (calculated by default)

By default, if the lower level header is IPv6, its Next Header field is set to 58 (ICMPv6).

UDP : udp(sp=<number>, dp=<number>, len=<number>, csum=<number>)

sp|sport - Source port (default: 0)

dp|dport - Destination port (default: 0)

len|length - Length of UDP header and data (calculated by default)

csum - Checksum field over IPv4 pseudo header (calculated by default)

By default, if the lower level header is IPv4, its protocol field is set to 0x11 (UDP).

TCP : tcp(sp=<number>, dp=<number>, seq=<number>, aseq|ackseq=<number>, doff|hlen=<number>, cwr, ece|ecn, urg, ack, psh, rst, syn, fin, win|window=<number>, csum=<number>, urgptr=<number>)

sp|sport - Source port (default: 0)

dp|dport - Destination port (default: 0)

seq - Sequence number (default: 0)

aseq|ackseq - Acknowledgement number (default: 0)

doff|hlen - Header size (data offset) in number of 32-bit words (default: 5)

cwr - Congestion Window Reduced (CWR) flag (default: 0)

ece|ecn - ECN-Echo (ECE) flag (default: 0)

urg - Urgent flag (default: 0)

ack - Acknowledgement flag (default: 0)

psh - Push flag (default: 0)

rst - Reset flag (default: 0)

syn - Synchronize flag (default: 0)

fin - Finish flag (default: 0)

win|window - Receive window size (default: 0)

csum - Checksum field over IPv4 pseudo header (calculated by default)

urgptr - Urgent pointer (default: 0)

By default, if the lower level header is IPv4, its protocol field is set to 0x6 (TCP).

Simple example of a UDP Echo packet:

{ eth(da=11:22:33:44:55:66), ipv4(daddr=1.2.3.4) udp(dp=7), "Hello world" }

Furthermore, there are two types of comments in trafgen configuration files:

1. Multi-line C-style comments: /* put comment here */ 2. Single-line Shell-style comments: # put comment here

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:

/* Note: dynamic elements make trafgen slower! */ #include <stddef.h>

{ /* MAC Destination */ fill(0xff, ETH_ALEN), /* MAC Source */ 0x00, 0x02, 0xb3, drnd(3), /* IPv4 Protocol */ c16(ETH_P_IP), /* IPv4 Version, IHL, TOS */ 0b01000101, 0, /* IPv4 Total Len */ c16(59), /* IPv4 Ident */ drnd(2), /* IPv4 Flags, Frag Off */ 0b01000000, 0, /* IPv4 TTL */ 64, /* Proto TCP */ 0x06, /* IPv4 Checksum (IP header from, to) */ csumip(14, 33), /* Source IP */ drnd(4), /* Dest IP */ drnd(4), /* TCP Source Port */ drnd(2), /* TCP Dest Port */ c16(80), /* TCP Sequence Number */ drnd(4), /* TCP Ackn. Number */ c32(0), /* TCP Header length + TCP SYN/ECN Flag */ c16((8 << 12) | TCP_FLAG_SYN | TCP_FLAG_ECE) /* Window Size */ c16(16), /* TCP Checksum (offset IP, offset TCP) */ csumtcp(14, 34), /* TCP Options */ 0x00, 0x00, 0x01, 0x01, 0x08, 0x0a, 0x06, 0x91, 0x68, 0x7d, 0x06, 0x91, 0x68, 0x6f, /* Data blob */ "gotcha!", }

Another real-world example by Jesper Dangaard Brouer [1]:

{ # --- ethernet header --- 0x00, 0x1b, 0x21, 0x3c, 0x9d, 0xf8, # mac destination 0x90, 0xe2, 0xba, 0x0a, 0x56, 0xb4, # mac source const16(0x0800), # protocol # --- ip header --- # ipv4 version (4-bit) + ihl (4-bit), tos 0b01000101, 0, # ipv4 total len const16(40), # id (note: runtime dynamic random) drnd(2), # ipv4 3-bit flags + 13-bit fragment offset # 001 = more fragments 0b00100000, 0, 64, # ttl 17, # proto udp # dynamic ip checksum (note: offsets are zero indexed) csumip(14, 33), 192, 168, 51, 1, # source ip 192, 168, 51, 2, # dest ip # --- udp header --- # as this is a fragment the below stuff does not matter too much const16(48054), # src port const16(43514), # dst port const16(20), # udp length # udp checksum can be dyn calc via csumudp(offset ip, offset tcp) # which is csumudp(14, 34), but for udp its allowed to be zero const16(0), # payload 'A', fill(0x41, 11), }

[1] https://marc.info/?l=linux-netdev&m=135903630614184

The above example rewritten using the header generation functions:

{ # --- ethernet header --- eth(da=00:1b:21:3c:9d:f8, da=90:e2:ba:0a:56:b4) # --- ip header --- ipv4(id=drnd(), mf, ttl=64, sa=192.168.51.1, da=192.168.51.2) # --- udp header --- udp(sport=48054, dport=43514, csum=0) # payload 'A', fill(0x41, 11), }