Avoid inlining siphash globally to avoid hitting BPF instruction limits
[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 #include "siphash.h"
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 #define BE128BEHIGH64(val) ((uint64_t)((uint128_t)(val)))
100
101 #elif defined(__BIG_ENDIAN)
102
103 #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))
104 #define HTON128(a) ((uint128_t)(a))
105 #define BE16(a) ((uint16_t)(a))
106 #define BE128BEHIGH64(val) ((uint64_t)(((uint128_t)(val)) >> 64))
107
108 #else
109 #error "Need endian info"
110 #endif
111
112 #define MASK4(pfxlen) BIGEND32(~((((uint32_t)1) << (32 - pfxlen)) - 1))
113 #define MASK6(pfxlen) HTON128(~((((uint128_t)1) << (128 - pfxlen)) - 1))
114 #define MASK6_OFFS(offs, pfxlen) HTON128((~((((uint128_t)1) << (128 - pfxlen)) - 1)) & ((((uint128_t)1) << (128 - offs)) - 1))
115
116 // PARSE is used as a preprocessor flag to indicate parsing fields
117 #define PARSE 42
118 #include "rules.h"
119
120 #define unlikely(a) __builtin_expect(a, 0)
121 #define likely(a) __builtin_expect(a, 1)
122
123 static const uint32_t PKT_LEN_DROP = 0;
124 static const uint32_t VLAN_DROP = 1;
125 static const uint32_t IHL_DROP = 2;
126 static const uint32_t V6FRAG_DROP = 3;
127 #define STATIC_RULE_CNT 4
128
129 #define DO_RETURN(reason, ret) {\
130                 if (ret == XDP_DROP) { INCREMENT_MATCH(reason); } \
131                 return ret; \
132         }
133
134 // It seems (based on drop counts) that data_end points to the last byte, not one-past-the-end.
135 // This feels strange, but some documentation suggests > here as well, so we stick with that.
136 #define CHECK_LEN(start, struc) \
137         if (unlikely((void*)(start) + sizeof(struct struc) > data_end)) DO_RETURN(PKT_LEN_DROP, XDP_DROP);
138
139 #ifdef TEST
140 // 64 bit version of xdp_md for testing
141 struct xdp_md {
142         __u64 data;
143         __u64 data_end;
144         __u64 data_meta;
145         /* Below access go through struct xdp_rxq_info */
146         __u64 ingress_ifindex; /* rxq->dev->ifindex */
147         __u64 rx_queue_index;  /* rxq->queue_index  */
148
149         __u64 egress_ifindex;  /* txq->dev->ifindex */
150 };
151 static const int XDP_PASS = 0;
152 static const int XDP_DROP = 1;
153
154 static long drop_cnt_map[STATS_RULECNT + STATIC_RULE_CNT];
155 #define INCREMENT_MATCH(reason) { drop_cnt_map[reason] += 1; drop_cnt_map[reason] += data_end - pktdata; }
156
157 #else /* TEST */
158 #include <linux/bpf.h>
159 #include <bpf/bpf_helpers.h>
160
161 struct match_counter {
162         uint64_t bytes;
163         uint64_t packets;
164 };
165 struct {
166         __uint(type, BPF_MAP_TYPE_PERCPU_ARRAY);
167         __uint(max_entries, STATS_RULECNT + STATIC_RULE_CNT);
168         __u32 *key;
169         struct match_counter *value;
170 } drop_cnt_map SEC(".maps");
171
172 #define INCREMENT_MATCH(reason) { \
173         struct match_counter *value = bpf_map_lookup_elem(&drop_cnt_map, &reason); \
174         if (value) { \
175                 value->bytes += data_end - pktdata; \
176                 value->packets += 1; \
177         } \
178 }
179
180 // Rate limits are done in a static-sized leaky bucket with a decimal counter
181 // Bucket size is always exactly (1 << RATE_BUCKET_INTEGER_BITS)
182 #define RATE_BUCKET_DECIMAL_BITS 8
183 #define RATE_BUCKET_INTEGER_BITS 4
184
185 #define RATE_BUCKET_BITS (RATE_BUCKET_DECIMAL_BITS + RATE_BUCKET_INTEGER_BITS)
186 #define RATE_TIME_MASK ((1ULL << (64 - RATE_BUCKET_BITS)) - 1)
187
188 // Time going backwards 10ms+ or forward 32sec+ implies we should consider it
189 // an overflow, or at least stale enough that we should reset the entry.
190 #define RATE_MIN_TIME_OFFSET -10000000LL
191 #define RATE_MAX_TIME_OFFSET 32000000000LL
192
193 #ifdef RATE_CNT
194 struct ratelimit {
195         struct bpf_spin_lock lock;
196         uint64_t sent_time;
197 };
198 struct {
199         __uint(type, BPF_MAP_TYPE_ARRAY);
200         __uint(max_entries, RATE_CNT);
201         __u32 *key;
202         struct ratelimit *value;
203 } rate_map SEC(".maps");
204 #endif /* RATE_CNT */
205
206 // We implement a rather naive hashtable here instead of using a BPF map because
207 // (a) the BPF map hashtables are similarly naive (no rehashing, etc),
208 // (b) the BPF map LRU hashtables don't support locking.
209 //
210 // We first separate into a few top-level buckets with per-bucket locks, limiting
211 // us to 2^SRC_HASH_MAX_PARALLELISM parallel accessors.
212 //
213 // Then we build an array of MAX_ENTRIES/2**SRC_HASH_MAX_PARALLELISM_POW entries,
214 // which are split into buckets of size SRC_HASH_BUCKET_COUNT. An entry can appear
215 // in any of the SRC_HASH_BUCKET_COUNT buckets at it's hash value.
216 //
217 // Because we use buckets of size 16, see collision_prob.py, the number of
218 // elements we can hold with only a 1% probability of overflowing a bucket is:
219 //
220 // 128K-entry hash table (2MiB): ~33K sources
221 // 256K-entry hash table (4MiB): ~63K sources
222 // 512K-entry hash table (8MiB): ~119K sources
223 // 1M-entry hash table (16MiB): ~227K sources
224 #define SRC_HASH_MAX_PARALLELISM_POW 8
225 #define SRC_HASH_MAX_PARALLELISM (1 << SRC_HASH_MAX_PARALLELISM_POW)
226 #define SRC_HASH_BUCKET_COUNT_POW 4
227 #define SRC_HASH_BUCKET_COUNT (1 << SRC_HASH_BUCKET_COUNT_POW)
228
229 #define CREATE_PERSRC_LOOKUP(IPV, IP_TYPE) \
230 struct persrc_rate##IPV##_entry { \
231         uint64_t sent_time; \
232         IP_TYPE srcip; \
233 }; \
234  \
235 struct persrc_rate##IPV##_bucket { \
236         struct bpf_spin_lock lock; \
237         struct persrc_rate##IPV##_entry entries[]; \
238 }; \
239  \
240 struct persrc_rate##IPV##_ptr { \
241         struct persrc_rate##IPV##_entry *rate; \
242         struct bpf_spin_lock *lock; \
243 }; \
244  \
245 __attribute__((always_inline)) \
246 static inline struct persrc_rate##IPV##_ptr get_v##IPV##_persrc_ratelimit(IP_TYPE key, void *map, size_t map_limit, int64_t cur_time_masked) { \
247         struct persrc_rate##IPV##_ptr res = { .rate = NULL, .lock = NULL }; \
248         uint64_t hash = siphash_##IP_TYPE(key); \
249  \
250         const uint32_t map_key = hash % SRC_HASH_MAX_PARALLELISM; \
251         struct persrc_rate##IPV##_bucket *buckets = bpf_map_lookup_elem(map, &map_key); \
252         if (!buckets) return res; \
253  \
254         hash >>= SRC_HASH_MAX_PARALLELISM_POW; \
255         map_limit >>= SRC_HASH_MAX_PARALLELISM_POW; \
256  \
257         struct persrc_rate##IPV##_entry *first_bucket = &buckets->entries[(hash % map_limit) & (~(SRC_HASH_BUCKET_COUNT - 1))]; \
258         bpf_spin_lock(&buckets->lock); \
259  \
260         int min_sent_idx = 0; \
261         uint64_t min_sent_time = UINT64_MAX; \
262         for (int i = 0; i < SRC_HASH_BUCKET_COUNT; i++) { \
263                 if (first_bucket[i].srcip == key) { \
264                         res.rate = &first_bucket[i]; \
265                         res.lock = &buckets->lock; \
266                         return res; \
267                 } \
268                 int64_t time_offset = ((int64_t)cur_time_masked) - (first_bucket[i].sent_time & RATE_TIME_MASK); \
269                 if (time_offset < RATE_MIN_TIME_OFFSET || time_offset > RATE_MAX_TIME_OFFSET) { \
270                         min_sent_idx = i; \
271                         break; \
272                 } \
273                 if ((first_bucket[i].sent_time & RATE_TIME_MASK) < min_sent_time) { \
274                         min_sent_time = first_bucket[i].sent_time & RATE_TIME_MASK; \
275                         min_sent_idx = i; \
276                 } \
277         } \
278         res.rate = &first_bucket[min_sent_idx]; \
279         res.rate->srcip = key; \
280         res.rate->sent_time = 0; \
281         res.lock = &buckets->lock; \
282         return res; \
283 }
284
285 CREATE_PERSRC_LOOKUP(6, uint128_t)
286 CREATE_PERSRC_LOOKUP(5, uint64_t) // IPv6 matching no more than a /64
287 CREATE_PERSRC_LOOKUP(4, uint32_t)
288
289 #define SRC_RATE_DEFINE(IPV, n, limit) \
290 struct persrc_rate##IPV##_bucket_##n { \
291         struct bpf_spin_lock lock; \
292         struct persrc_rate##IPV##_entry entries[limit / SRC_HASH_MAX_PARALLELISM]; \
293 }; \
294 struct { \
295         __uint(type, BPF_MAP_TYPE_ARRAY); \
296         __uint(max_entries, SRC_HASH_MAX_PARALLELISM); \
297         uint32_t *key; \
298         struct persrc_rate##IPV##_bucket_##n *value; \
299 } v##IPV##_src_rate_##n SEC(".maps");
300
301 #include "maps.h"
302
303 #ifndef HAVE_WRAPPER // Set this to call xdp_drop externally
304 SEC("xdp_drop")
305 #endif /* HAVE_WRAPPER */
306 #endif /* not TEST */
307 int xdp_drop_prog(struct xdp_md *ctx)
308 {
309         const void *const data_end = (void *)(size_t)ctx->data_end;
310
311         const void * pktdata;
312         unsigned short eth_proto;
313
314         {
315                 // DO_RETURN in CHECK_LEN relies on pktdata being set to calculate packet length.
316                 // That said, we don't want to overflow, so just set packet length to 0 here.
317                 pktdata = data_end;
318                 CHECK_LEN((size_t)ctx->data, ethhdr);
319                 const struct ethhdr *const eth = (void*)(size_t)ctx->data;
320                 pktdata = (const void *)(long)ctx->data + sizeof(struct ethhdr);
321
322 #if PARSE_8021Q == PARSE
323                 if (likely(eth->h_proto == BE16(ETH_P_8021Q))) {
324                         CHECK_LEN((size_t)ctx->data, ethhdr_vlan);
325                         const struct ethhdr_vlan *const eth_vlan = (void*)(size_t)ctx->data;
326                         pktdata = (const void *)(long)ctx->data + sizeof(struct ethhdr_vlan);
327 #ifdef REQ_8021Q
328                         if (unlikely((eth_vlan->tci & BE16(0xfff)) != BE16(REQ_8021Q)))
329                                 DO_RETURN(VLAN_DROP, XDP_DROP);
330 #endif
331                         eth_proto = eth_vlan->h_proto;
332 #else
333                 if (unlikely(eth->h_proto == BE16(ETH_P_8021Q))) {
334                         pktdata = (const void *)(long)ctx->data + sizeof(struct ethhdr_vlan);
335                         DO_RETURN(VLAN_DROP, PARSE_8021Q);
336 #endif
337                 } else {
338 #ifdef REQ_8021Q
339                         DO_RETURN(VLAN_DROP, XDP_DROP);
340 #else
341                         eth_proto = eth->h_proto;
342 #endif
343                 }
344         }
345
346         const void *l4hdr = NULL;
347         const struct tcphdr *tcp = NULL;
348         int32_t sport = -1, dport = -1; // Host Endian! Only valid with tcp || udp
349
350 #ifdef NEED_V4_PARSE
351         if (eth_proto == BE16(ETH_P_IP)) {
352                 CHECK_LEN(pktdata, iphdr);
353                 struct iphdr *ip = (struct iphdr*) pktdata;
354
355 #if PARSE_IHL == PARSE
356                 if (unlikely(ip->ihl < 5)) DO_RETURN(IHL_DROP, XDP_DROP);
357                 l4hdr = pktdata + ip->ihl * 4;
358 #else
359                 if (ip->ihl != 5) DO_RETURN(IHL_DROP, PARSE_IHL);
360                 l4hdr = pktdata + 5*4;
361 #endif
362
363                 const struct icmphdr *icmp = NULL;
364                 if ((ip->frag_off & BE16(IP_OFFSET)) == 0) {
365                         if (ip->protocol == IP_PROTO_TCP) {
366                                 CHECK_LEN(l4hdr, tcphdr);
367                                 tcp = (struct tcphdr*) l4hdr;
368                                 sport = BE16(tcp->source);
369                                 dport = BE16(tcp->dest);
370                         } else if (ip->protocol == IP_PROTO_UDP) {
371                                 CHECK_LEN(l4hdr, udphdr);
372                                 const struct udphdr *udp = (struct udphdr*) l4hdr;
373                                 sport = BE16(udp->source);
374                                 dport = BE16(udp->dest);
375                         } else if (ip->protocol == IP_PROTO_ICMP) {
376                                 CHECK_LEN(l4hdr, icmphdr);
377                                 icmp = (struct icmphdr*) l4hdr;
378                         }
379                 }
380
381                 RULES4
382         }
383 #endif
384 #ifdef NEED_V6_PARSE
385         if (eth_proto == BE16(ETH_P_IPV6)) {
386                 CHECK_LEN(pktdata, ip6hdr);
387                 struct ip6hdr *ip6 = (struct ip6hdr*) pktdata;
388
389                 l4hdr = pktdata + 40;
390
391                 uint8_t v6nexthdr = ip6->nexthdr;
392                 const struct ip6_fraghdr *frag6 = NULL;
393 #ifdef PARSE_V6_FRAG
394 #if PARSE_V6_FRAG == PARSE
395                 if (ip6->nexthdr == IP6_PROTO_FRAG) {
396                         CHECK_LEN(l4hdr, ip6_fraghdr);
397                         frag6 = (struct ip6_fraghdr*) l4hdr;
398                         l4hdr = l4hdr + sizeof(struct ip6_fraghdr);
399                         v6nexthdr = frag6->nexthdr;
400 #else
401                 if (unlikely(ip6->nexthdr == IP6_PROTO_FRAG)) {
402                         DO_RETURN(V6FRAG_DROP, PARSE_V6_FRAG);
403 #endif
404                 }
405 #endif
406                 // TODO: Handle more options?
407
408                 const struct icmp6hdr *icmpv6 = NULL;
409                 if (frag6 == NULL || (frag6->frag_off & BE16(IP6_FRAGOFF)) == 0) {
410                         if (v6nexthdr == IP_PROTO_TCP) {
411                                 CHECK_LEN(l4hdr, tcphdr);
412                                 tcp = (struct tcphdr*) l4hdr;
413                                 sport = BE16(tcp->source);
414                                 dport = BE16(tcp->dest);
415                         } else if (v6nexthdr == IP_PROTO_UDP) {
416                                 CHECK_LEN(l4hdr, udphdr);
417                                 const struct udphdr *udp = (struct udphdr*) l4hdr;
418                                 sport = BE16(udp->source);
419                                 dport = BE16(udp->dest);
420                         } else if (v6nexthdr == IP6_PROTO_ICMPV6) {
421                                 CHECK_LEN(l4hdr, icmp6hdr);
422                                 icmpv6 = (struct icmp6hdr*) l4hdr;
423                         }
424                 }
425
426                 RULES6
427         }
428 #endif
429
430         return XDP_PASS;
431 }
432
433 #ifdef TEST
434 #include <assert.h>
435 #include <string.h>
436
437 char d[] = TEST;
438 int main() {
439         struct xdp_md test = {
440                 .data = (uint64_t)d,
441                 // -1 because sizeof includes a trailing null in the "string"
442                 .data_end = (uint64_t)(d + sizeof(d) - 1),
443         };
444         assert(xdp_drop_prog(&test) == TEST_EXP);
445 }
446 #endif