]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
bpf,perf: Fix perf_event_detach_bpf_prog error handling
authorJiri Olsa <jolsa@kernel.org>
Wed, 23 Oct 2024 20:03:52 +0000 (22:03 +0200)
committerAndrii Nakryiko <andrii@kernel.org>
Wed, 23 Oct 2024 21:33:02 +0000 (14:33 -0700)
Peter reported that perf_event_detach_bpf_prog might skip to release
the bpf program for -ENOENT error from bpf_prog_array_copy.

This can't happen because bpf program is stored in perf event and is
detached and released only when perf event is freed.

Let's drop the -ENOENT check and make sure the bpf program is released
in any case.

Fixes: 170a7e3ea070 ("bpf: bpf_prog_array_copy() should return -ENOENT if exclude_prog not found")
Reported-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20241023200352.3488610-1-jolsa@kernel.org
Closes: https://lore.kernel.org/lkml/20241022111638.GC16066@noisy.programming.kicks-ass.net/
kernel/trace/bpf_trace.c

index 95b6b3b16bacc83d6982cdfe9934118b6479ba5f..630b763e52402f4c64bbf006ecdc8ecada6a04df 100644 (file)
@@ -2216,8 +2216,6 @@ void perf_event_detach_bpf_prog(struct perf_event *event)
 
        old_array = bpf_event_rcu_dereference(event->tp_event->prog_array);
        ret = bpf_prog_array_copy(old_array, event->prog, NULL, 0, &new_array);
-       if (ret == -ENOENT)
-               goto unlock;
        if (ret < 0) {
                bpf_prog_array_delete_safe(old_array, event->prog);
        } else {