]> git.proxmox.com Git - mirror_iproute2.git/blame - examples/bpf/bpf_graft.c
vdpa: add .gitignore
[mirror_iproute2.git] / examples / bpf / bpf_graft.c
CommitLineData
71c7c1fb
HL
1#include "../../include/bpf_api.h"
2
3/* This example demonstrates how classifier run-time behaviour
4 * can be altered with tail calls. We start out with an empty
5 * jmp_tc array, then add section aaa to the array slot 0, and
6 * later on atomically replace it with section bbb. Note that
7 * as shown in other examples, the tc loader can prepopulate
8 * tail called sections, here we start out with an empty one
9 * on purpose to show it can also be done this way.
10 *
11 * tc filter add dev foo parent ffff: bpf obj graft.o
12 * tc exec bpf dbg
13 * [...]
14 * Socket Thread-20229 [001] ..s. 138993.003923: : fallthrough
15 * <idle>-0 [001] ..s. 138993.202265: : fallthrough
16 * Socket Thread-20229 [001] ..s. 138994.004149: : fallthrough
17 * [...]
18 *
19 * tc exec bpf graft m:globals/jmp_tc key 0 obj graft.o sec aaa
20 * tc exec bpf dbg
21 * [...]
22 * Socket Thread-19818 [002] ..s. 139012.053587: : aaa
23 * <idle>-0 [002] ..s. 139012.172359: : aaa
24 * Socket Thread-19818 [001] ..s. 139012.173556: : aaa
25 * [...]
26 *
27 * tc exec bpf graft m:globals/jmp_tc key 0 obj graft.o sec bbb
28 * tc exec bpf dbg
29 * [...]
30 * Socket Thread-19818 [002] ..s. 139022.102967: : bbb
31 * <idle>-0 [002] ..s. 139022.155640: : bbb
32 * Socket Thread-19818 [001] ..s. 139022.156730: : bbb
33 * [...]
34 */
35
36struct {
37 __uint(type, BPF_MAP_TYPE_PROG_ARRAY);
38 __uint(key_size, sizeof(uint32_t));
39 __uint(value_size, sizeof(uint32_t));
40 __uint(max_entries, 1);
41 __uint(pinning, LIBBPF_PIN_BY_NAME);
42} jmp_tc __section(".maps");
43
44__section("aaa")
45int cls_aaa(struct __sk_buff *skb)
46{
47 printt("aaa\n");
48 return TC_H_MAKE(1, 42);
49}
50
51__section("bbb")
52int cls_bbb(struct __sk_buff *skb)
53{
54 printt("bbb\n");
55 return TC_H_MAKE(1, 43);
56}
57
58__section_cls_entry
59int cls_entry(struct __sk_buff *skb)
60{
61 tail_call(skb, &jmp_tc, 0);
62 printt("fallthrough\n");
63 return BPF_H_DEFAULT;
64}
65
66BPF_LICENSE("GPL");