1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Intel Corporation
7 * Accepts pointer to first segment packet data as an input parameter.
8 * analog of tcpdump -s 1 -d 'dst 1.2.3.4 && udp && dst port 5000'
10 * (001) jeq #0x800 jt 2 jf 12
12 * (003) jeq #0x1020304 jt 4 jf 12
14 * (005) jeq #0x11 jt 6 jf 12
16 * (007) jset #0x1fff jt 12 jf 8
17 * (008) ldxb 4*([14]&0xf)
19 * (010) jeq #0x1388 jt 11 jf 12
24 * clang -O2 -U __GNUC__ -target bpf -c t1.c
27 * clang -O2 -I/usr/include/aarch64-linux-gnu/ -target bpf -c t1.c
31 #include <net/ethernet.h>
32 #include <netinet/ip.h>
33 #include <netinet/udp.h>
34 #include <arpa/inet.h>
39 struct ether_header *ether_header = (void *)pkt;
41 if (ether_header->ether_type != htons(0x0800))
44 struct iphdr *iphdr = (void *)(ether_header + 1);
45 if (iphdr->protocol != 17 || (iphdr->frag_off & 0x1ffff) != 0 ||
46 iphdr->daddr != htonl(0x1020304))
49 int hlen = iphdr->ihl * 4;
50 struct udphdr *udphdr = (void *)iphdr + hlen;
52 if (udphdr->dest != htons(5000))