hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2020 Cloudflare
 
#include <errno.h>
#include <stdbool.h>
#include <linux/bpf.h>
 
#include <bpf/bpf_helpers.h>
 
struct {
   __uint(type, BPF_MAP_TYPE_SOCKMAP);
   __uint(max_entries, 2);
   __type(key, __u32);
   __type(value, __u64);
} sock_map SEC(".maps");
 
struct {
   __uint(type, BPF_MAP_TYPE_SOCKHASH);
   __uint(max_entries, 2);
   __type(key, __u32);
   __type(value, __u64);
} sock_hash SEC(".maps");
 
struct {
   __uint(type, BPF_MAP_TYPE_ARRAY);
   __uint(max_entries, 2);
   __type(key, int);
   __type(value, unsigned int);
} verdict_map SEC(".maps");
 
static volatile bool test_sockmap; /* toggled by user-space */
 
SEC("sk_skb/stream_parser")
int prog_skb_parser(struct __sk_buff *skb)
{
   return skb->len;
}
 
SEC("sk_skb/stream_verdict")
int prog_skb_verdict(struct __sk_buff *skb)
{
   unsigned int *count;
   __u32 zero = 0;
   int verdict;
 
   if (test_sockmap)
       verdict = bpf_sk_redirect_map(skb, &sock_map, zero, 0);
   else
       verdict = bpf_sk_redirect_hash(skb, &sock_hash, &zero, 0);
 
   count = bpf_map_lookup_elem(&verdict_map, &verdict);
   if (count)
       (*count)++;
 
   return verdict;
}
 
SEC("sk_msg")
int prog_msg_verdict(struct sk_msg_md *msg)
{
   unsigned int *count;
   __u32 zero = 0;
   int verdict;
 
   if (test_sockmap)
       verdict = bpf_msg_redirect_map(msg, &sock_map, zero, 0);
   else
       verdict = bpf_msg_redirect_hash(msg, &sock_hash, &zero, 0);
 
   count = bpf_map_lookup_elem(&verdict_map, &verdict);
   if (count)
       (*count)++;
 
   return verdict;
}
 
SEC("sk_reuseport")
int prog_reuseport(struct sk_reuseport_md *reuse)
{
   unsigned int *count;
   int err, verdict;
   __u32 zero = 0;
 
   if (test_sockmap)
       err = bpf_sk_select_reuseport(reuse, &sock_map, &zero, 0);
   else
       err = bpf_sk_select_reuseport(reuse, &sock_hash, &zero, 0);
   verdict = err ? SK_DROP : SK_PASS;
 
   count = bpf_map_lookup_elem(&verdict_map, &verdict);
   if (count)
       (*count)++;
 
   return verdict;
}
 
int _version SEC("version") = 1;
char _license[] SEC("license") = "GPL";