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
|
// SPDX-License-Identifier: GPL-2.0
#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
struct S {
int v;
};
struct S global_variable = {};
struct {
__uint(type, BPF_MAP_TYPE_ARRAY);
__uint(max_entries, 7);
__type(key, __u32);
__type(value, int);
} values SEC(".maps");
static void save_value(__u32 index, int value)
{
bpf_map_update_elem(&values, &index, &value, 0);
}
__noinline int foo(__u32 index, struct S *s)
{
if (s) {
save_value(index, s->v);
return ++s->v;
}
save_value(index, 0);
return 1;
}
__noinline int bar(__u32 index, volatile struct S *s)
{
if (s) {
save_value(index, s->v);
return ++s->v;
}
save_value(index, 0);
return 1;
}
__noinline int baz(struct S **s)
{
if (s)
*s = 0;
return 0;
}
SEC("cgroup_skb/ingress")
int test_cls(struct __sk_buff *skb)
{
__u32 index = 0;
{
const int v = foo(index++, 0);
save_value(index++, v);
}
{
struct S s = { .v = 100 };
foo(index++, &s);
save_value(index++, s.v);
}
{
global_variable.v = 42;
bar(index++, &global_variable);
save_value(index++, global_variable.v);
}
{
struct S v, *p = &v;
baz(&p);
save_value(index++, !p);
}
return 0;
}
char _license[] SEC("license") = "GPL";
|