]> git.baikalelectronics.ru Git - kernel.git/commit
samples/bpf: add 'pointer to packet' tests
authorAlexei Starovoitov <ast@fb.com>
Fri, 6 May 2016 02:49:14 +0000 (19:49 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 6 May 2016 20:01:54 +0000 (16:01 -0400)
commit5fc8dfb94afc8d9177cb04eb59356e2e62551822
tree200d4b5fa31fe985d21d4c27f6a5ebcc7c3b3ae7
parentd5f146caf168db6e7f2d7ec18dbffa80f9ee33df
samples/bpf: add 'pointer to packet' tests

parse_simple.c - packet parser exapmle with single length check that
filters out udp packets for port 9

parse_varlen.c - variable length parser that understand multiple vlan headers,
ipip, ipip6 and ip options to filter out udp or tcp packets on port 9.
The packet is parsed layer by layer with multitple length checks.

parse_ldabs.c - classic style of packet parsing using LD_ABS instruction.
Same functionality as parse_simple.

simple = 24.1Mpps per core
varlen = 22.7Mpps
ldabs  = 21.4Mpps

Parser with LD_ABS instructions is slower than full direct access parser
which does more packet accesses and checks.

These examples demonstrate the choice bpf program authors can make between
flexibility of the parser vs speed.

Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
samples/bpf/Makefile
samples/bpf/parse_ldabs.c [new file with mode: 0644]
samples/bpf/parse_simple.c [new file with mode: 0644]
samples/bpf/parse_varlen.c [new file with mode: 0644]
samples/bpf/test_cls_bpf.sh [new file with mode: 0755]