1 /* Copyright (c) 2016 Facebook
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
7 #define KBUILD_MODNAME "foo"
9 #include <linux/ipv6.h>
11 #include <linux/tcp.h>
12 #include <linux/udp.h>
13 #include <uapi/linux/bpf.h>
15 #include <bpf/bpf_helpers.h>
17 #define DEFAULT_PKTGEN_UDP_PORT 9
19 /* copy of 'struct ethhdr' without __packed */
21 unsigned char h_dest[ETH_ALEN];
22 unsigned char h_source[ETH_ALEN];
23 unsigned short h_proto;
27 int handle_ingress(struct __sk_buff *skb)
29 void *data = (void *)(long)skb->data;
30 struct eth_hdr *eth = data;
31 struct iphdr *iph = data + sizeof(*eth);
32 struct udphdr *udp = data + sizeof(*eth) + sizeof(*iph);
33 void *data_end = (void *)(long)skb->data_end;
35 /* single length check */
36 if (data + sizeof(*eth) + sizeof(*iph) + sizeof(*udp) > data_end)
39 if (eth->h_proto != htons(ETH_P_IP))
41 if (iph->protocol != IPPROTO_UDP || iph->ihl != 5)
43 if (ip_is_fragment(iph))
45 if (udp->dest == htons(DEFAULT_PKTGEN_UDP_PORT))
49 char _license[] SEC("license") = "GPL";