aboutsummaryrefslogtreecommitdiffstats
path: root/examples/bpf/bpf_tailcall.c
diff options
context:
space:
mode:
authorDaniel Borkmann <daniel@iogearbox.net>2015-12-02 00:25:36 +0100
committerStephen Hemminger <shemming@brocade.com>2015-12-10 08:56:45 -0800
commit41d6e33fc9e5b459b7f715acbd6d8dbeddf58576 (patch)
treeca00221ce2f1679caa2c7f6f664394d6a2634591 /examples/bpf/bpf_tailcall.c
parent6ad355ca9e76d7eea95c99ecaa2db8601973e551 (diff)
downloadplatform_external_iproute2-41d6e33fc9e5b459b7f715acbd6d8dbeddf58576.tar.gz
platform_external_iproute2-41d6e33fc9e5b459b7f715acbd6d8dbeddf58576.tar.bz2
platform_external_iproute2-41d6e33fc9e5b459b7f715acbd6d8dbeddf58576.zip
examples, bpf: further improve examples
Improve example files further and add a more generic set of possible helpers for them that can be used. Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'examples/bpf/bpf_tailcall.c')
-rw-r--r--examples/bpf/bpf_tailcall.c84
1 files changed, 34 insertions, 50 deletions
diff --git a/examples/bpf/bpf_tailcall.c b/examples/bpf/bpf_tailcall.c
index f186e575..040790d0 100644
--- a/examples/bpf/bpf_tailcall.c
+++ b/examples/bpf/bpf_tailcall.c
@@ -1,6 +1,4 @@
-#include <linux/bpf.h>
-
-#include "bpf_funcs.h"
+#include "../../include/bpf_api.h"
#define ENTRY_INIT 3
#define ENTRY_0 0
@@ -27,89 +25,75 @@
* program array can be atomically replaced during run-time, e.g. to change
* classifier behaviour.
*/
-struct bpf_elf_map __section("maps") map_sh = {
- .type = BPF_MAP_TYPE_ARRAY,
- .size_key = sizeof(int),
- .size_value = sizeof(int),
- .pinning = PIN_OBJECT_NS,
- .max_elem = 1,
-};
-
-struct bpf_elf_map __section("maps") jmp_tc = {
- .type = BPF_MAP_TYPE_PROG_ARRAY,
- .id = FOO,
- .size_key = sizeof(int),
- .size_value = sizeof(int),
- .pinning = PIN_OBJECT_NS,
- .max_elem = MAX_JMP_SIZE,
-};
-
-struct bpf_elf_map __section("maps") jmp_ex = {
- .type = BPF_MAP_TYPE_PROG_ARRAY,
- .id = BAR,
- .size_key = sizeof(int),
- .size_value = sizeof(int),
- .pinning = PIN_OBJECT_NS,
- .max_elem = 1,
-};
-
-__section_tail(FOO, ENTRY_0) int cls_case1(struct __sk_buff *skb)
+
+BPF_PROG_ARRAY(jmp_tc, FOO, PIN_OBJECT_NS, MAX_JMP_SIZE);
+BPF_PROG_ARRAY(jmp_ex, BAR, PIN_OBJECT_NS, 1);
+
+BPF_ARRAY4(map_sh, 0, PIN_OBJECT_NS, 1);
+
+__section_tail(FOO, ENTRY_0)
+int cls_case1(struct __sk_buff *skb)
{
char fmt[] = "case1: map-val: %d from:%u\n";
int key = 0, *val;
- val = bpf_map_lookup_elem(&map_sh, &key);
+ val = map_lookup_elem(&map_sh, &key);
if (val)
- bpf_printk(fmt, sizeof(fmt), *val, skb->cb[0]);
+ trace_printk(fmt, sizeof(fmt), *val, skb->cb[0]);
skb->cb[0] = ENTRY_0;
- bpf_tail_call(skb, &jmp_ex, ENTRY_0);
- return 0;
+ tail_call(skb, &jmp_ex, ENTRY_0);
+
+ return BPF_H_DEFAULT;
}
-__section_tail(FOO, ENTRY_1) int cls_case2(struct __sk_buff *skb)
+__section_tail(FOO, ENTRY_1)
+int cls_case2(struct __sk_buff *skb)
{
char fmt[] = "case2: map-val: %d from:%u\n";
int key = 0, *val;
- val = bpf_map_lookup_elem(&map_sh, &key);
+ val = map_lookup_elem(&map_sh, &key);
if (val)
- bpf_printk(fmt, sizeof(fmt), *val, skb->cb[0]);
+ trace_printk(fmt, sizeof(fmt), *val, skb->cb[0]);
skb->cb[0] = ENTRY_1;
- bpf_tail_call(skb, &jmp_tc, ENTRY_0);
- return 0;
+ tail_call(skb, &jmp_tc, ENTRY_0);
+
+ return BPF_H_DEFAULT;
}
-__section_tail(BAR, ENTRY_0) int cls_exit(struct __sk_buff *skb)
+__section_tail(BAR, ENTRY_0)
+int cls_exit(struct __sk_buff *skb)
{
char fmt[] = "exit: map-val: %d from:%u\n";
int key = 0, *val;
- val = bpf_map_lookup_elem(&map_sh, &key);
+ val = map_lookup_elem(&map_sh, &key);
if (val)
- bpf_printk(fmt, sizeof(fmt), *val, skb->cb[0]);
+ trace_printk(fmt, sizeof(fmt), *val, skb->cb[0]);
/* Termination point. */
- return -1;
+ return BPF_H_DEFAULT;
}
-__section("classifier") int cls_entry(struct __sk_buff *skb)
+__section_cls_entry
+int cls_entry(struct __sk_buff *skb)
{
char fmt[] = "fallthrough\n";
int key = 0, *val;
/* For transferring state, we can use skb->cb[0] ... skb->cb[4]. */
- val = bpf_map_lookup_elem(&map_sh, &key);
+ val = map_lookup_elem(&map_sh, &key);
if (val) {
- __sync_fetch_and_add(val, 1);
+ lock_xadd(val, 1);
skb->cb[0] = ENTRY_INIT;
- bpf_tail_call(skb, &jmp_tc, skb->hash & (MAX_JMP_SIZE - 1));
+ tail_call(skb, &jmp_tc, skb->hash & (MAX_JMP_SIZE - 1));
}
- bpf_printk(fmt, sizeof(fmt));
- return 0;
+ trace_printk(fmt, sizeof(fmt));
+ return BPF_H_DEFAULT;
}
-char __license[] __section("license") = "GPL";
+BPF_LICENSE("GPL");