* [PATCH v2] perf/bpf: Fix lockless access to parent_event->prog in perf_event_alloc()
@ 2026-08-25 4:45 Deepanshu Kartikey
2026-08-25 4:59 ` sashiko-bot
2026-08-30 6:24 ` Deepanshu Kartikey
0 siblings, 2 replies; 3+ messages in thread
From: Deepanshu Kartikey @ 2026-08-25 4:45 UTC (permalink / raw)
To: peterz, mingo, acme, namhyung, mark.rutland, alexander.shishkin,
jolsa, irogers, adrian.hunter, james.clark, daniel, andriin
Cc: linux-perf-users, linux-kernel, bpf, Deepanshu Kartikey
During fork(), perf_event_alloc() reads parent_event->prog locklessly
which can race with concurrent detach clearing and freeing the prog via
perf_event_free_bpf_handler() or perf_event_detach_bpf_prog(). This
can result in a NULL pointer dereference or use-after-free in
bpf_prog_inc().
Fix by using READ_ONCE() to atomically read parent_event->prog into a
local variable and bpf_prog_inc_not_zero() to safely increment the
reference count only if the program is still alive. This handles both
tracing and non-tracing event types without requiring any additional
locking.
Fixes: 85192dbf4de0 ("bpf: Convert bpf_prog refcnt to atomic64_t")
Signed-off-by: Deepanshu Kartikey <kartikey406@gmail.com>
---
v2:
- Drop bpf_event_mutex approach which was wrong for non-tracing events
as perf_event_free_bpf_handler() operates locklessly
- Use READ_ONCE() + bpf_prog_inc_not_zero() instead which handles both
tracing and non-tracing event types safely without any lock
- Remove extern bpf_event_mutex from perf_event.h (no longer needed)
- Remove static removal from bpf_trace.c (no longer needed)
---
kernel/events/core.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/kernel/events/core.c b/kernel/events/core.c
index ba5bd6a78fe7..39755bfacc55 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -13433,11 +13433,13 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,
overflow_handler = parent_event->overflow_handler;
context = parent_event->overflow_handler_context;
#if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
- if (parent_event->prog) {
- struct bpf_prog *prog = parent_event->prog;
-
- bpf_prog_inc(prog);
- event->prog = prog;
+ struct bpf_prog *prog;
+
+ prog = READ_ONCE(parent_event->prog);
+ if (prog) {
+ prog = bpf_prog_inc_not_zero(prog);
+ if (!IS_ERR(prog))
+ event->prog = prog;
}
#endif
}
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v2] perf/bpf: Fix lockless access to parent_event->prog in perf_event_alloc()
2026-08-25 4:45 [PATCH v2] perf/bpf: Fix lockless access to parent_event->prog in perf_event_alloc() Deepanshu Kartikey
@ 2026-08-25 4:59 ` sashiko-bot
2026-08-30 6:24 ` Deepanshu Kartikey
1 sibling, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-08-25 4:59 UTC (permalink / raw)
To: Deepanshu Kartikey; +Cc: bpf, linux-perf-users
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [Critical] Missing RCU read lock around the lockless read and increment of `parent_event->prog` allows a Use-After-Free.
- [High] The BPF program reference is leaked on error paths of `perf_event_alloc()`.
--
--- Patch [1]: [PATCH v2] perf/bpf: Fix lockless access to parent_event->prog in perf_event_alloc() ---
commit 14870f355d1ed182bbc1e31accf43918dde6051a
Author: Deepanshu Kartikey <kartikey406@gmail.com>
perf/bpf: Fix lockless access to parent_event->prog in perf_event_alloc()
This commit attempts to fix a race condition during fork() where
perf_event_alloc() locklessly reads parent_event->prog. It updates the code
to use READ_ONCE() and bpf_prog_inc_not_zero() to safely increment the
reference count without locks.
> diff --git a/kernel/events/core.c b/kernel/events/core.c
> index a6c8e38a31104..9d456b03c4969 100644
> --- a/kernel/events/core.c
> +++ b/kernel/events/core.c
> @@ -13465,11 +13465,13 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,
> overflow_handler = parent_event->overflow_handler;
> context = parent_event->overflow_handler_context;
> #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
> - if (parent_event->prog) {
> - struct bpf_prog *prog = parent_event->prog;
>
> - bpf_prog_inc(prog);
> - event->prog = prog;
> + struct bpf_prog *prog;
>
> + prog = READ_ONCE(parent_event->prog);
> + if (prog) {
> + prog = bpf_prog_inc_not_zero(prog);
[Severity: Critical]
This isn't a bug introduced by this patch, but since it aims to fix a race
here, does this code still leave a use-after-free window?
Because perf_event_alloc() executes in a sleepable context, the RCU grace
period could expire between reading parent_event->prog and calling
bpf_prog_inc_not_zero().
If a concurrent thread detaches the BPF program by closing the bpf_link fd,
it can locklessly release the program before the atomic increment happens.
Should this section be protected by an rcu_read_lock() and rcu_read_unlock()
block to ensure the memory isn't freed before the atomic increment
completes?
> + if (!IS_ERR(prog))
> + event->prog = prog;
[Severity: High]
This is a pre-existing issue, but does this increment leak the BPF program
reference if perf_event_alloc() fails later on?
If a subsequent initialization step like attach_perf_ctx_data() or
perf_cgroup_connect() fails, perf_event_alloc() returns an error pointer
and triggers the cleanup via __free_event().
Unlike _free_event() which calls perf_event_free_bpf_prog(), the
__free_event() error cleanup path doesn't appear to release the acquired
bpf_prog reference.
Could an unprivileged user systematically exhaust memory by forcing failures
during fork() on an inherited perf event?
> }
> #endif
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260825044507.15217-1-kartikey406@gmail.com?part=1
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v2] perf/bpf: Fix lockless access to parent_event->prog in perf_event_alloc()
2026-08-25 4:45 [PATCH v2] perf/bpf: Fix lockless access to parent_event->prog in perf_event_alloc() Deepanshu Kartikey
2026-08-25 4:59 ` sashiko-bot
@ 2026-08-30 6:24 ` Deepanshu Kartikey
1 sibling, 0 replies; 3+ messages in thread
From: Deepanshu Kartikey @ 2026-08-30 6:24 UTC (permalink / raw)
To: peterz, mingo, acme, namhyung, mark.rutland, alexander.shishkin,
jolsa, irogers, adrian.hunter, james.clark, daniel, andriin
Cc: linux-perf-users, linux-kernel, bpf
On Tue, Aug 25, 2026 at 10:15 AM Deepanshu Kartikey
<kartikey406@gmail.com> wrote:
>
> During fork(), perf_event_alloc() reads parent_event->prog locklessly
> which can race with concurrent detach clearing and freeing the prog via
> perf_event_free_bpf_handler() or perf_event_detach_bpf_prog(). This
> can result in a NULL pointer dereference or use-after-free in
> bpf_prog_inc().
>
> Fix by using READ_ONCE() to atomically read parent_event->prog into a
> local variable and bpf_prog_inc_not_zero() to safely increment the
> reference count only if the program is still alive. This handles both
> tracing and non-tracing event types without requiring any additional
> locking.
>
> Fixes: 85192dbf4de0 ("bpf: Convert bpf_prog refcnt to atomic64_t")
> Signed-off-by: Deepanshu Kartikey <kartikey406@gmail.com>
> ---
> v2:
> - Drop bpf_event_mutex approach which was wrong for non-tracing events
> as perf_event_free_bpf_handler() operates locklessly
> - Use READ_ONCE() + bpf_prog_inc_not_zero() instead which handles both
> tracing and non-tracing event types safely without any lock
> - Remove extern bpf_event_mutex from perf_event.h (no longer needed)
> - Remove static removal from bpf_trace.c (no longer needed)
> ---
> kernel/events/core.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/kernel/events/core.c b/kernel/events/core.c
> index ba5bd6a78fe7..39755bfacc55 100644
> --- a/kernel/events/core.c
> +++ b/kernel/events/core.c
> @@ -13433,11 +13433,13 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,
> overflow_handler = parent_event->overflow_handler;
> context = parent_event->overflow_handler_context;
> #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_EVENT_TRACING)
> - if (parent_event->prog) {
> - struct bpf_prog *prog = parent_event->prog;
> -
> - bpf_prog_inc(prog);
> - event->prog = prog;
> + struct bpf_prog *prog;
> +
> + prog = READ_ONCE(parent_event->prog);
> + if (prog) {
> + prog = bpf_prog_inc_not_zero(prog);
> + if (!IS_ERR(prog))
> + event->prog = prog;
> }
> #endif
> }
> --
> 2.43.0
>
Gentle Reminder. Please let me know the status of this patch.
Thanks
Deepanshu
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-30 6:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-25 4:45 [PATCH v2] perf/bpf: Fix lockless access to parent_event->prog in perf_event_alloc() Deepanshu Kartikey
2026-08-25 4:59 ` sashiko-bot
2026-08-30 6:24 ` Deepanshu Kartikey
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox