Skip to content

Commit a498cfe

Browse files
committed
Merge branch 'ebpf_helpers'
Daniel Borkmann says: ==================== eBPF updates Two small eBPF helper additions to better match up with ancillary classic BPF functionality. ==================== Signed-off-by: David S. Miller <[email protected]>
2 parents 1202882 + c04167c commit a498cfe

File tree

5 files changed

+36
-0
lines changed

5 files changed

+36
-0
lines changed

include/linux/bpf.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,7 @@ extern const struct bpf_func_proto bpf_map_lookup_elem_proto;
154154
extern const struct bpf_func_proto bpf_map_update_elem_proto;
155155
extern const struct bpf_func_proto bpf_map_delete_elem_proto;
156156

157+
extern const struct bpf_func_proto bpf_get_prandom_u32_proto;
158+
extern const struct bpf_func_proto bpf_get_smp_processor_id_proto;
159+
157160
#endif /* _LINUX_BPF_H */

include/uapi/linux/bpf.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ enum bpf_func_id {
165165
BPF_FUNC_map_lookup_elem, /* void *map_lookup_elem(&map, &key) */
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) */
168+
BPF_FUNC_get_prandom_u32, /* u32 prandom_u32(void) */
169+
BPF_FUNC_get_smp_processor_id, /* u32 raw_smp_processor_id(void) */
168170
__BPF_FUNC_MAX_ID,
169171
};
170172

kernel/bpf/core.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,9 @@ const struct bpf_func_proto bpf_map_lookup_elem_proto __weak;
661661
const struct bpf_func_proto bpf_map_update_elem_proto __weak;
662662
const struct bpf_func_proto bpf_map_delete_elem_proto __weak;
663663

664+
const struct bpf_func_proto bpf_get_prandom_u32_proto __weak;
665+
const struct bpf_func_proto bpf_get_smp_processor_id_proto __weak;
666+
664667
/* To execute LD_ABS/LD_IND instructions __bpf_prog_run() may call
665668
* skb_copy_bits(), so provide a weak definition of it for NET-less config.
666669
*/

kernel/bpf/helpers.c

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
*/
1212
#include <linux/bpf.h>
1313
#include <linux/rcupdate.h>
14+
#include <linux/random.h>
15+
#include <linux/smp.h>
1416

1517
/* If kernel subsystem is allowing eBPF programs to call this function,
1618
* inside its own verifier_ops->get_func_proto() callback it should return
@@ -87,3 +89,25 @@ const struct bpf_func_proto bpf_map_delete_elem_proto = {
8789
.arg1_type = ARG_CONST_MAP_PTR,
8890
.arg2_type = ARG_PTR_TO_MAP_KEY,
8991
};
92+
93+
static u64 bpf_get_prandom_u32(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
94+
{
95+
return prandom_u32();
96+
}
97+
98+
const struct bpf_func_proto bpf_get_prandom_u32_proto = {
99+
.func = bpf_get_prandom_u32,
100+
.gpl_only = false,
101+
.ret_type = RET_INTEGER,
102+
};
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1139,6 +1139,10 @@ sk_filter_func_proto(enum bpf_func_id func_id)
11391139
return &bpf_map_update_elem_proto;
11401140
case BPF_FUNC_map_delete_elem:
11411141
return &bpf_map_delete_elem_proto;
1142+
case BPF_FUNC_get_prandom_u32:
1143+
return &bpf_get_prandom_u32_proto;
1144+
case BPF_FUNC_get_smp_processor_id:
1145+
return &bpf_get_smp_processor_id_proto;
11421146
default:
11431147
return NULL;
11441148
}

0 commit comments

Comments
 (0)