Drop ports_valid flag, it just wastes a register
[flowspec-xdp] / xdp.c
1 #include <stdint.h>
2 #include <endian.h>
3 #include <linux/if_ether.h>
4 #include <linux/ip.h>
5 #include <linux/udp.h>
6 #include <linux/icmp.h>
7 #include <linux/icmpv6.h>
8 #include <arpa/inet.h>
9
10 #define NULL (void*)0
11
12 /* IP flags. */
13 #define IP_CE           0x8000          /* Flag: "Congestion"           */
14 #define IP_DF           0x4000          /* Flag: "Don't Fragment"       */
15 #define IP_MF           0x2000          /* Flag: "More Fragments"       */
16 #define IP_OFFSET       0x1FFF          /* "Fragment Offset" part       */
17
18 #define IP_PROTO_TCP 6
19 #define IP_PROTO_UDP 17
20 #define IP_PROTO_ICMP 1
21 #define IP6_PROTO_ICMPV6 58
22 #define IP6_PROTO_FRAG 44
23
24 typedef __uint128_t uint128_t;
25
26 // Our own ipv6hdr that uses uint128_t
27 struct ip6hdr {
28 #if defined(__LITTLE_ENDIAN_BITFIELD)
29         __u8    priority:4,
30                 version:4;
31 #elif defined(__BIG_ENDIAN_BITFIELD)
32         __u8    version:4,
33                 priority:4;
34 #else
35 #error  "Please fix <asm/byteorder.h>"
36 #endif
37         __u8    flow_lbl[3];
38
39         __be16  payload_len;
40         __u8            nexthdr;
41         __u8            hop_limit;
42
43         uint128_t       saddr;
44         uint128_t       daddr;
45 } __attribute__((packed));
46
47 #define IP6_MF 1
48 #define IP6_FRAGOFF 0xfff8
49 struct ip6_fraghdr {
50         uint8_t nexthdr;
51         uint8_t _reserved;
52         uint16_t frag_off; // BE low 3 bits flags, last is "more frags"
53         uint32_t id;
54 } __attribute__((packed));
55
56 // Our own ethhdr with optional vlan tags
57 struct ethhdr_vlan {
58         unsigned char   h_dest[ETH_ALEN];       /* destination eth addr */
59         unsigned char   h_source[ETH_ALEN];     /* source ether addr    */
60         __be16          vlan_magic;             /* 0x8100 */
61         __be16          tci;            /* PCP (3 bits), DEI (1 bit), and VLAN (12 bits) */
62         __be16          h_proto;                /* packet type ID field */
63 } __attribute__((packed));
64
65 // Our own tcphdr without the flags blown up
66 struct tcphdr {
67         __be16  source;
68         __be16  dest;
69         __be32  seq;
70         __be32  ack_seq;
71         __u16   flags;
72         __be16  window;
73         __sum16 check;
74         __be16  urg_ptr;
75 } __attribute__((packed));
76
77 // Note that all operations on uint128s *stay* in Network byte order!
78
79 #if defined(__LITTLE_ENDIAN)
80 #define BIGEND32(v) (((((uint32_t)(v)) >> 3*8) & 0xff) | \
81                      ((((uint32_t)(v)) >> 1*8) & 0xff00) | \
82                      ((((uint32_t)(v)) << 1*8) & 0xff0000) | \
83                      ((((uint32_t)(v)) << 3*8) & 0xff000000))
84 #elif defined(__BIG_ENDIAN)
85 #define BIGEND32(v) ((uint32_t)(v))
86 #else
87 #error "Need endian info"
88 #endif
89
90 #if defined(__LITTLE_ENDIAN)
91 #define BIGEND128(a, b, c, d) ( \
92                 (((uint128_t)BIGEND32(d)) << 3*32) | \
93                 (((uint128_t)BIGEND32(c)) << 2*32) | \
94                 (((uint128_t)BIGEND32(b)) << 1*32) | \
95                 (((uint128_t)BIGEND32(a)) << 0*32))
96 #define HTON128(a) BIGEND128(a >> 3*32, a >> 2*32, a >> 1*32, a>> 0*32)
97 // Yes, somehow macro'ing this changes LLVM's view of htons...
98 #define BE16(a) (((((uint16_t)a) & 0xff00) >> 8) | ((((uint16_t)a) & 0xff) << 8))
99 #elif defined(__BIG_ENDIAN)
100 #define BIGEND128(a, b, c, d) ((((uint128_t)(a)) << 3*32) | (((uint128_t)(b)) << 2*32) | (((uint128_t)(c)) << 1*32) | (((uint128_t)(d)) << 0*32))
101 #define HTON128(a) ((uint128_t)(a))
102 #define BE16(a) ((uint16_t)(a))
103 #else
104 #error "Need endian info"
105 #endif
106
107 #define MASK4(pfxlen) BIGEND32(~((((uint32_t)1) << (32 - pfxlen)) - 1))
108 #define MASK6(pfxlen) HTON128(~((((uint128_t)1) << (128 - pfxlen)) - 1))
109 #define MASK6_OFFS(offs, pfxlen) HTON128((~((((uint128_t)1) << (128 - pfxlen)) - 1)) & ((((uint128_t)1) << (128 - offs)) - 1))
110
111 // PARSE is used as a preprocessor flag to indicate parsing fields
112 #define PARSE 42
113 #include "rules.h"
114
115 #define unlikely(a) __builtin_expect(a, 0)
116 #define likely(a) __builtin_expect(a, 1)
117
118 static const uint32_t PKT_LEN_DROP = 0;
119 static const uint32_t VLAN_DROP = 1;
120 static const uint32_t IHL_DROP = 2;
121 static const uint32_t V6FRAG_DROP = 3;
122 #define STATIC_RULE_CNT 4
123
124 #define DO_RETURN(reason, ret) {\
125                 if (ret == XDP_DROP) { INCREMENT_MATCH(reason); } \
126                 return ret; \
127         }
128
129 // It seems (based on drop counts) that data_end points to the last byte, not one-past-the-end.
130 // This feels strange, but some documentation suggests > here as well, so we stick with that.
131 #define CHECK_LEN(start, struc) \
132         if (unlikely((void*)(start) + sizeof(struct struc) > data_end)) DO_RETURN(PKT_LEN_DROP, XDP_DROP);
133
134 #ifdef TEST
135 // 64 bit version of xdp_md for testing
136 struct xdp_md {
137         __u64 data;
138         __u64 data_end;
139         __u64 data_meta;
140         /* Below access go through struct xdp_rxq_info */
141         __u64 ingress_ifindex; /* rxq->dev->ifindex */
142         __u64 rx_queue_index;  /* rxq->queue_index  */
143
144         __u64 egress_ifindex;  /* txq->dev->ifindex */
145 };
146 static const int XDP_PASS = 0;
147 static const int XDP_DROP = 1;
148
149 static long drop_cnt_map[RULECNT + STATIC_RULE_CNT];
150 #define INCREMENT_MATCH(reason) { drop_cnt_map[reason] += 1; drop_cnt_map[reason] += data_end - pktdata; }
151
152 #else /* TEST */
153 #include <linux/bpf.h>
154 #include <bpf/bpf_helpers.h>
155
156 struct match_counter {
157         uint64_t bytes;
158         uint64_t packets;
159 };
160 struct {
161         __uint(type, BPF_MAP_TYPE_PERCPU_ARRAY);
162         __uint(max_entries, RULECNT + STATIC_RULE_CNT);
163         __u32 *key;
164         struct match_counter *value;
165 } drop_cnt_map SEC(".maps");
166
167 #define INCREMENT_MATCH(reason) { \
168         struct match_counter *value = bpf_map_lookup_elem(&drop_cnt_map, &reason); \
169         if (value) { \
170                 value->bytes += data_end - pktdata; \
171                 value->packets += 1; \
172         } \
173 }
174
175 #ifdef RATE_CNT
176 struct ratelimit {
177         struct bpf_spin_lock lock;
178         union {
179                 int64_t sent_bytes;
180                 int64_t sent_packets;
181         } rate;
182         int64_t sent_time;
183 };
184 struct {
185         __uint(type, BPF_MAP_TYPE_ARRAY);
186         __uint(max_entries, RATE_CNT);
187         __u32 *key;
188         struct ratelimit *value;
189 } rate_map SEC(".maps");
190 #endif /* RATE_CNT */
191
192 // For per-source rate limiting, we have to use per-CPU hash maps as Linux
193 // doesn't support spinlocks inside of a LRU_HASH (see if block in
194 // map_check_btf as of Linux 5.10).
195 // This isn't exactly accurate, but at least its faster.
196 struct percpu_ratelimit {
197         union {
198                 int64_t sent_bytes;
199                 int64_t sent_packets;
200         } rate;
201         int64_t sent_time;
202 };
203
204 #define V6_SRC_RATE_DEFINE(n, limit) \
205 struct { \
206         __uint(type, BPF_MAP_TYPE_LRU_PERCPU_HASH); \
207         __uint(max_entries, limit); \
208         uint128_t *key; \
209         struct percpu_ratelimit *value; \
210 } v6_src_rate_##n SEC(".maps");
211
212 #define V4_SRC_RATE_DEFINE(n, limit) \
213 struct { \
214         __uint(type, BPF_MAP_TYPE_LRU_PERCPU_HASH); \
215         __uint(max_entries, limit); \
216         __u32 *key; \
217         struct percpu_ratelimit *value; \
218 } v4_src_rate_##n SEC(".maps");
219
220 #include "maps.h"
221
222 #ifndef HAVE_WRAPPER // Set this to call xdp_drop externally
223 SEC("xdp_drop")
224 #endif /* HAVE_WRAPPER */
225 #endif /* not TEST */
226 int xdp_drop_prog(struct xdp_md *ctx)
227 {
228         const void *const data_end = (void *)(size_t)ctx->data_end;
229
230         const void * pktdata;
231         unsigned short eth_proto;
232
233         {
234                 // DO_RETURN in CHECK_LEN relies on pktdata being set to calculate packet length.
235                 // That said, we don't want to overflow, so just set packet length to 0 here.
236                 pktdata = data_end;
237                 CHECK_LEN((size_t)ctx->data, ethhdr);
238                 const struct ethhdr *const eth = (void*)(size_t)ctx->data;
239                 pktdata = (const void *)(long)ctx->data + sizeof(struct ethhdr);
240
241 #if PARSE_8021Q == PARSE
242                 if (likely(eth->h_proto == BE16(ETH_P_8021Q))) {
243                         CHECK_LEN((size_t)ctx->data, ethhdr_vlan);
244                         const struct ethhdr_vlan *const eth_vlan = (void*)(size_t)ctx->data;
245                         pktdata = (const void *)(long)ctx->data + sizeof(struct ethhdr_vlan);
246 #ifdef REQ_8021Q
247                         if (unlikely((eth_vlan->tci & BE16(0xfff)) != BE16(REQ_8021Q)))
248                                 DO_RETURN(VLAN_DROP, XDP_DROP);
249 #endif
250                         eth_proto = eth_vlan->h_proto;
251 #else
252                 if (unlikely(eth->h_proto == BE16(ETH_P_8021Q))) {
253                         pktdata = (const void *)(long)ctx->data + sizeof(struct ethhdr_vlan);
254                         DO_RETURN(VLAN_DROP, PARSE_8021Q);
255 #endif
256                 } else {
257 #ifdef REQ_8021Q
258                         DO_RETURN(VLAN_DROP, XDP_DROP);
259 #else
260                         eth_proto = eth->h_proto;
261 #endif
262                 }
263         }
264
265         const void *l4hdr = NULL;
266         const struct tcphdr *tcp = NULL;
267         int32_t sport = -1, dport = -1; // Host Endian! Only valid with tcp || udp
268
269 #ifdef NEED_V4_PARSE
270         if (eth_proto == BE16(ETH_P_IP)) {
271                 CHECK_LEN(pktdata, iphdr);
272                 struct iphdr *ip = (struct iphdr*) pktdata;
273
274 #if PARSE_IHL == PARSE
275                 if (unlikely(ip->ihl < 5)) DO_RETURN(IHL_DROP, XDP_DROP);
276                 l4hdr = pktdata + ip->ihl * 4;
277 #else
278                 if (ip->ihl != 5) DO_RETURN(IHL_DROP, PARSE_IHL);
279                 l4hdr = pktdata + 5*4;
280 #endif
281
282                 const struct icmphdr *icmp = NULL;
283                 if ((ip->frag_off & BE16(IP_OFFSET)) == 0) {
284                         if (ip->protocol == IP_PROTO_TCP) {
285                                 CHECK_LEN(l4hdr, tcphdr);
286                                 tcp = (struct tcphdr*) l4hdr;
287                                 sport = BE16(tcp->source);
288                                 dport = BE16(tcp->dest);
289                         } else if (ip->protocol == IP_PROTO_UDP) {
290                                 CHECK_LEN(l4hdr, udphdr);
291                                 const struct udphdr *udp = (struct udphdr*) l4hdr;
292                                 sport = BE16(udp->source);
293                                 dport = BE16(udp->dest);
294                         } else if (ip->protocol == IP_PROTO_ICMP) {
295                                 CHECK_LEN(l4hdr, icmphdr);
296                                 icmp = (struct icmphdr*) l4hdr;
297                         }
298                 }
299
300                 RULES4
301         }
302 #endif
303 #ifdef NEED_V6_PARSE
304         if (eth_proto == BE16(ETH_P_IPV6)) {
305                 CHECK_LEN(pktdata, ip6hdr);
306                 struct ip6hdr *ip6 = (struct ip6hdr*) pktdata;
307
308                 l4hdr = pktdata + 40;
309
310                 uint8_t v6nexthdr = ip6->nexthdr;
311                 const struct ip6_fraghdr *frag6 = NULL;
312 #ifdef PARSE_V6_FRAG
313 #if PARSE_V6_FRAG == PARSE
314                 if (ip6->nexthdr == IP6_PROTO_FRAG) {
315                         CHECK_LEN(l4hdr, ip6_fraghdr);
316                         frag6 = (struct ip6_fraghdr*) l4hdr;
317                         l4hdr = l4hdr + sizeof(struct ip6_fraghdr);
318                         v6nexthdr = frag6->nexthdr;
319 #else
320                 if (unlikely(ip6->nexthdr == IP6_PROTO_FRAG)) {
321                         DO_RETURN(V6FRAG_DROP, PARSE_V6_FRAG);
322 #endif
323                 }
324 #endif
325                 // TODO: Handle more options?
326
327                 const struct icmp6hdr *icmpv6 = NULL;
328                 if (frag6 == NULL || (frag6->frag_off & BE16(IP6_FRAGOFF)) == 0) {
329                         if (v6nexthdr == IP_PROTO_TCP) {
330                                 CHECK_LEN(l4hdr, tcphdr);
331                                 tcp = (struct tcphdr*) l4hdr;
332                                 sport = BE16(tcp->source);
333                                 dport = BE16(tcp->dest);
334                         } else if (v6nexthdr == IP_PROTO_UDP) {
335                                 CHECK_LEN(l4hdr, udphdr);
336                                 const struct udphdr *udp = (struct udphdr*) l4hdr;
337                                 sport = BE16(udp->source);
338                                 dport = BE16(udp->dest);
339                         } else if (v6nexthdr == IP6_PROTO_ICMPV6) {
340                                 CHECK_LEN(l4hdr, icmp6hdr);
341                                 icmpv6 = (struct icmp6hdr*) l4hdr;
342                         }
343                 }
344
345                 RULES6
346         }
347 #endif
348
349         return XDP_PASS;
350 }
351
352 #ifdef TEST
353 #include <assert.h>
354 #include <string.h>
355
356 char d[] = TEST;
357 int main() {
358         struct xdp_md test = {
359                 .data = (uint64_t)d,
360                 // -1 because sizeof includes a trailing null in the "string"
361                 .data_end = (uint64_t)(d + sizeof(d) - 1),
362         };
363         assert(xdp_drop_prog(&test) == TEST_EXP);
364 }
365 #endif