]> Git Repo - linux.git/commitdiff
bpf: Move bpf_loop and bpf_for_each_map_elem under CAP_BPF
authorKumar Kartikeya Dwivedi <[email protected]>
Tue, 23 Aug 2022 01:31:17 +0000 (03:31 +0200)
committerAlexei Starovoitov <[email protected]>
Tue, 23 Aug 2022 23:21:59 +0000 (16:21 -0700)
They would require func_info which needs prog BTF anyway. Loading BTF
and setting the prog btf_fd while loading the prog indirectly requires
CAP_BPF, so just to reduce confusion, move both these helpers taking
callback under bpf_capable() protection as well, since they cannot be
used without CAP_BPF.

Signed-off-by: Kumar Kartikeya Dwivedi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Alexei Starovoitov <[email protected]>
kernel/bpf/helpers.c

index 2f470937874034d056c6e1f98ce86dcdae098f31..fc08035f14ed6eb8674268b4f4eefd48484aaade 100644 (file)
@@ -1613,10 +1613,6 @@ bpf_base_func_proto(enum bpf_func_id func_id)
                return &bpf_ringbuf_submit_dynptr_proto;
        case BPF_FUNC_ringbuf_discard_dynptr:
                return &bpf_ringbuf_discard_dynptr_proto;
-       case BPF_FUNC_for_each_map_elem:
-               return &bpf_for_each_map_elem_proto;
-       case BPF_FUNC_loop:
-               return &bpf_loop_proto;
        case BPF_FUNC_strncmp:
                return &bpf_strncmp_proto;
        case BPF_FUNC_strtol:
@@ -1659,6 +1655,10 @@ bpf_base_func_proto(enum bpf_func_id func_id)
                return &bpf_timer_cancel_proto;
        case BPF_FUNC_kptr_xchg:
                return &bpf_kptr_xchg_proto;
+       case BPF_FUNC_for_each_map_elem:
+               return &bpf_for_each_map_elem_proto;
+       case BPF_FUNC_loop:
+               return &bpf_loop_proto;
        default:
                break;
        }
This page took 0.052479 seconds and 4 git commands to generate.