Skip to content

Commit 0456ea1

Browse files
fomichevAlexei Starovoitov
authored and
Alexei Starovoitov
committed
bpf: Enable more helpers for BPF_PROG_TYPE_CGROUP_{DEVICE,SYSCTL,SOCKOPT}
Currently the following prog types don't fall back to bpf_base_func_proto() (instead they have cgroup_base_func_proto which has a limited set of helpers from bpf_base_func_proto): * BPF_PROG_TYPE_CGROUP_DEVICE * BPF_PROG_TYPE_CGROUP_SYSCTL * BPF_PROG_TYPE_CGROUP_SOCKOPT I don't see any specific reason why we shouldn't use bpf_base_func_proto(), every other type of program (except bpf-lirc and, understandably, tracing) use it, so let's fall back to bpf_base_func_proto for those prog types as well. This basically boils down to adding access to the following helpers: * BPF_FUNC_get_prandom_u32 * BPF_FUNC_get_smp_processor_id * BPF_FUNC_get_numa_node_id * BPF_FUNC_tail_call * BPF_FUNC_ktime_get_ns * BPF_FUNC_spin_lock (CAP_SYS_ADMIN) * BPF_FUNC_spin_unlock (CAP_SYS_ADMIN) * BPF_FUNC_jiffies64 (CAP_SYS_ADMIN) I've also added bpf_perf_event_output() because it's really handy for logging and debugging. Signed-off-by: Stanislav Fomichev <[email protected]> Signed-off-by: Alexei Starovoitov <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
1 parent 93e5168 commit 0456ea1

File tree

4 files changed

+29
-18
lines changed

4 files changed

+29
-18
lines changed

include/linux/bpf.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1523,6 +1523,7 @@ extern const struct bpf_func_proto bpf_strtoul_proto;
15231523
extern const struct bpf_func_proto bpf_tcp_sock_proto;
15241524
extern const struct bpf_func_proto bpf_jiffies64_proto;
15251525
extern const struct bpf_func_proto bpf_get_ns_current_pid_tgid_proto;
1526+
extern const struct bpf_func_proto bpf_event_output_data_proto;
15261527

15271528
const struct bpf_func_proto *bpf_tracing_func_proto(
15281529
enum bpf_func_id func_id, const struct bpf_prog *prog);

kernel/bpf/cgroup.c

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1060,30 +1060,16 @@ static const struct bpf_func_proto *
10601060
cgroup_base_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
10611061
{
10621062
switch (func_id) {
1063-
case BPF_FUNC_map_lookup_elem:
1064-
return &bpf_map_lookup_elem_proto;
1065-
case BPF_FUNC_map_update_elem:
1066-
return &bpf_map_update_elem_proto;
1067-
case BPF_FUNC_map_delete_elem:
1068-
return &bpf_map_delete_elem_proto;
1069-
case BPF_FUNC_map_push_elem:
1070-
return &bpf_map_push_elem_proto;
1071-
case BPF_FUNC_map_pop_elem:
1072-
return &bpf_map_pop_elem_proto;
1073-
case BPF_FUNC_map_peek_elem:
1074-
return &bpf_map_peek_elem_proto;
10751063
case BPF_FUNC_get_current_uid_gid:
10761064
return &bpf_get_current_uid_gid_proto;
10771065
case BPF_FUNC_get_local_storage:
10781066
return &bpf_get_local_storage_proto;
10791067
case BPF_FUNC_get_current_cgroup_id:
10801068
return &bpf_get_current_cgroup_id_proto;
1081-
case BPF_FUNC_trace_printk:
1082-
if (capable(CAP_SYS_ADMIN))
1083-
return bpf_get_trace_printk_proto();
1084-
/* fall through */
1069+
case BPF_FUNC_perf_event_output:
1070+
return &bpf_event_output_data_proto;
10851071
default:
1086-
return NULL;
1072+
return bpf_base_func_proto(func_id);
10871073
}
10881074
}
10891075

net/core/filter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4214,7 +4214,7 @@ BPF_CALL_5(bpf_event_output_data, void *, ctx, struct bpf_map *, map, u64, flags
42144214
return bpf_event_output(map, flags, data, size, NULL, 0, NULL);
42154215
}
42164216

4217-
static const struct bpf_func_proto bpf_event_output_data_proto = {
4217+
const struct bpf_func_proto bpf_event_output_data_proto = {
42184218
.func = bpf_event_output_data,
42194219
.gpl_only = true,
42204220
.ret_type = RET_INTEGER,

tools/testing/selftests/bpf/verifier/event_output.c

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,27 @@
9292
.result = ACCEPT,
9393
.retval = 1,
9494
},
95+
{
96+
"perfevent for cgroup dev",
97+
.insns = { __PERF_EVENT_INSNS__ },
98+
.prog_type = BPF_PROG_TYPE_CGROUP_DEVICE,
99+
.fixup_map_event_output = { 4 },
100+
.result = ACCEPT,
101+
.retval = 1,
102+
},
103+
{
104+
"perfevent for cgroup sysctl",
105+
.insns = { __PERF_EVENT_INSNS__ },
106+
.prog_type = BPF_PROG_TYPE_CGROUP_SYSCTL,
107+
.fixup_map_event_output = { 4 },
108+
.result = ACCEPT,
109+
.retval = 1,
110+
},
111+
{
112+
"perfevent for cgroup sockopt",
113+
.insns = { __PERF_EVENT_INSNS__ },
114+
.prog_type = BPF_PROG_TYPE_CGROUP_SOCKOPT,
115+
.fixup_map_event_output = { 4 },
116+
.result = ACCEPT,
117+
.retval = 1,
118+
},

0 commit comments

Comments
 (0)