Skip to content

Commit c04167c

Browse files
borkmanndavem330
authored andcommitted
ebpf: add helper for obtaining current processor id
This patch adds the possibility to obtain raw_smp_processor_id() in eBPF. Currently, this is only possible in classic BPF where commit da2033c ("filter: add SKF_AD_RXHASH and SKF_AD_CPU") has added facilities for this. Perhaps most importantly, this would also allow us to track per CPU statistics with eBPF maps, or to implement a poor-man's per CPU data structure through eBPF maps. Example function proto-type looks like: u32 (*smp_processor_id)(void) = (void *)BPF_FUNC_get_smp_processor_id; Signed-off-by: Daniel Borkmann <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 03e69b5 commit c04167c

File tree

5 files changed

+17
-0
lines changed

5 files changed

+17
-0
lines changed

include/linux/bpf.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,5 +155,6 @@ extern const struct bpf_func_proto bpf_map_update_elem_proto;
155155
extern const struct bpf_func_proto bpf_map_delete_elem_proto;
156156

157157
extern const struct bpf_func_proto bpf_get_prandom_u32_proto;
158+
extern const struct bpf_func_proto bpf_get_smp_processor_id_proto;
158159

159160
#endif /* _LINUX_BPF_H */

include/uapi/linux/bpf.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ enum bpf_func_id {
166166
BPF_FUNC_map_update_elem, /* int map_update_elem(&map, &key, &value, flags) */
167167
BPF_FUNC_map_delete_elem, /* int map_delete_elem(&map, &key) */
168168
BPF_FUNC_get_prandom_u32, /* u32 prandom_u32(void) */
169+
BPF_FUNC_get_smp_processor_id, /* u32 raw_smp_processor_id(void) */
169170
__BPF_FUNC_MAX_ID,
170171
};
171172

kernel/bpf/core.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -662,6 +662,7 @@ const struct bpf_func_proto bpf_map_update_elem_proto __weak;
662662
const struct bpf_func_proto bpf_map_delete_elem_proto __weak;
663663

664664
const struct bpf_func_proto bpf_get_prandom_u32_proto __weak;
665+
const struct bpf_func_proto bpf_get_smp_processor_id_proto __weak;
665666

666667
/* To execute LD_ABS/LD_IND instructions __bpf_prog_run() may call
667668
* skb_copy_bits(), so provide a weak definition of it for NET-less config.

kernel/bpf/helpers.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <linux/bpf.h>
1313
#include <linux/rcupdate.h>
1414
#include <linux/random.h>
15+
#include <linux/smp.h>
1516

1617
/* If kernel subsystem is allowing eBPF programs to call this function,
1718
* inside its own verifier_ops->get_func_proto() callback it should return
@@ -99,3 +100,14 @@ const struct bpf_func_proto bpf_get_prandom_u32_proto = {
99100
.gpl_only = false,
100101
.ret_type = RET_INTEGER,
101102
};
103+
104+
static u64 bpf_get_smp_processor_id(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
105+
{
106+
return raw_smp_processor_id();
107+
}
108+
109+
const struct bpf_func_proto bpf_get_smp_processor_id_proto = {
110+
.func = bpf_get_smp_processor_id,
111+
.gpl_only = false,
112+
.ret_type = RET_INTEGER,
113+
};

net/core/filter.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,6 +1141,8 @@ sk_filter_func_proto(enum bpf_func_id func_id)
11411141
return &bpf_map_delete_elem_proto;
11421142
case BPF_FUNC_get_prandom_u32:
11431143
return &bpf_get_prandom_u32_proto;
1144+
case BPF_FUNC_get_smp_processor_id:
1145+
return &bpf_get_smp_processor_id_proto;
11441146
default:
11451147
return NULL;
11461148
}

0 commit comments

Comments
 (0)