* [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time
@ 2026-06-05 14:57 David Windsor
2026-06-05 18:15 ` Yonghong Song
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: David Windsor @ 2026-06-05 14:57 UTC (permalink / raw)
To: bpf, Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko
Cc: Martin KaFai Lau, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Song Liu, Yonghong Song, Jiri Olsa, John Fastabend,
Stanislav Fomichev, linux-kernel, David Windsor
The cgroup shim runs under rcu_read_lock_dont_migrate(), so we should
not attach any sleepable BPF programs there. Add support to the verifier
to explicitly reject attempts to load sleepable BPF programs destined
for LSM cgroup attachment.
Without this, we get the following splat from a BPF_LSM_CGROUP
program marked BPF_F_SLEEPABLE attached to file_open when it calls
bpf_get_dentry_xattr():
BUG: sleeping function called from invalid context at kernel/locking/rwsem.c:1567
in_atomic(): 0, irqs_disabled(): 0, non_block: 0, pid: 34317, name: load
preempt_count: 0, expected: 0
RCU nest depth: 2, expected: 0
Call Trace:
down_read+0x76/0x480
ext4_xattr_get+0x11f/0x700
__vfs_getxattr+0xf0/0x150
bpf_get_dentry_xattr+0xbb/0xf0
bpf_prog_e76a298dac9218c6_test_open+0x6a/0x85
__cgroup_bpf_run_lsm_current+0x326/0x840
bpf_trampoline_6442534646+0x62/0x14d
security_file_open+0x34/0x60
do_dentry_open+0x340/0x1260
vfs_open+0x7a/0x440
path_openat+0x1bac/0x30a0
libbpf provides a .s named section variant for every sleepable
program type except lsm_cgroup, reflecting that per-cgroup LSM programs
are intended to only run in a non-sleepable context.
The above splat was obtained by bypassing libbpf by using bpf(2)
directly.
Fixes: 69fd337a975c ("bpf: per-cgroup lsm flavor")
Signed-off-by: David Windsor <dwindsor@gmail.com>
---
kernel/bpf/verifier.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index 8ed484cb1a8a..821654bcbaa7 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -19099,8 +19099,10 @@ static bool can_be_sleepable(struct bpf_prog *prog)
return false;
}
}
- return prog->type == BPF_PROG_TYPE_LSM ||
- prog->type == BPF_PROG_TYPE_KPROBE /* only for uprobes */ ||
+ if (prog->type == BPF_PROG_TYPE_LSM)
+ return prog->expected_attach_type != BPF_LSM_CGROUP;
+
+ return prog->type == BPF_PROG_TYPE_KPROBE /* only for uprobes */ ||
prog->type == BPF_PROG_TYPE_STRUCT_OPS ||
prog->type == BPF_PROG_TYPE_RAW_TRACEPOINT ||
prog->type == BPF_PROG_TYPE_TRACEPOINT;
--
2.53.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time
2026-06-05 14:57 [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time David Windsor
@ 2026-06-05 18:15 ` Yonghong Song
2026-06-05 21:40 ` Song Liu
2026-06-07 8:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: Yonghong Song @ 2026-06-05 18:15 UTC (permalink / raw)
To: David Windsor, bpf, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko
Cc: Martin KaFai Lau, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Song Liu, Jiri Olsa, John Fastabend, Stanislav Fomichev,
linux-kernel
On 6/5/26 7:57 AM, David Windsor wrote:
> The cgroup shim runs under rcu_read_lock_dont_migrate(), so we should
> not attach any sleepable BPF programs there. Add support to the verifier
> to explicitly reject attempts to load sleepable BPF programs destined
> for LSM cgroup attachment.
>
> Without this, we get the following splat from a BPF_LSM_CGROUP
> program marked BPF_F_SLEEPABLE attached to file_open when it calls
> bpf_get_dentry_xattr():
>
> BUG: sleeping function called from invalid context at kernel/locking/rwsem.c:1567
> in_atomic(): 0, irqs_disabled(): 0, non_block: 0, pid: 34317, name: load
> preempt_count: 0, expected: 0
> RCU nest depth: 2, expected: 0
> Call Trace:
> down_read+0x76/0x480
> ext4_xattr_get+0x11f/0x700
> __vfs_getxattr+0xf0/0x150
> bpf_get_dentry_xattr+0xbb/0xf0
> bpf_prog_e76a298dac9218c6_test_open+0x6a/0x85
> __cgroup_bpf_run_lsm_current+0x326/0x840
> bpf_trampoline_6442534646+0x62/0x14d
> security_file_open+0x34/0x60
> do_dentry_open+0x340/0x1260
> vfs_open+0x7a/0x440
> path_openat+0x1bac/0x30a0
>
> libbpf provides a .s named section variant for every sleepable
> program type except lsm_cgroup, reflecting that per-cgroup LSM programs
> are intended to only run in a non-sleepable context.
>
> The above splat was obtained by bypassing libbpf by using bpf(2)
> directly.
>
> Fixes: 69fd337a975c ("bpf: per-cgroup lsm flavor")
> Signed-off-by: David Windsor <dwindsor@gmail.com>
Acked-by: Yonghong Song <yonghong.song@linux.dev>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time
2026-06-05 14:57 [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time David Windsor
2026-06-05 18:15 ` Yonghong Song
@ 2026-06-05 21:40 ` Song Liu
2026-06-07 8:27 ` Kumar Kartikeya Dwivedi
2026-06-07 8:20 ` patchwork-bot+netdevbpf
2 siblings, 1 reply; 6+ messages in thread
From: Song Liu @ 2026-06-05 21:40 UTC (permalink / raw)
To: David Windsor
Cc: bpf, Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Martin KaFai Lau, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Yonghong Song, Jiri Olsa, John Fastabend, Stanislav Fomichev,
linux-kernel
On Fri, Jun 5, 2026 at 7:57 AM David Windsor <dwindsor@gmail.com> wrote:
>
> The cgroup shim runs under rcu_read_lock_dont_migrate(), so we should
> not attach any sleepable BPF programs there. Add support to the verifier
> to explicitly reject attempts to load sleepable BPF programs destined
> for LSM cgroup attachment.
>
> Without this, we get the following splat from a BPF_LSM_CGROUP
> program marked BPF_F_SLEEPABLE attached to file_open when it calls
> bpf_get_dentry_xattr():
>
> BUG: sleeping function called from invalid context at kernel/locking/rwsem.c:1567
> in_atomic(): 0, irqs_disabled(): 0, non_block: 0, pid: 34317, name: load
> preempt_count: 0, expected: 0
> RCU nest depth: 2, expected: 0
> Call Trace:
> down_read+0x76/0x480
> ext4_xattr_get+0x11f/0x700
> __vfs_getxattr+0xf0/0x150
> bpf_get_dentry_xattr+0xbb/0xf0
> bpf_prog_e76a298dac9218c6_test_open+0x6a/0x85
> __cgroup_bpf_run_lsm_current+0x326/0x840
> bpf_trampoline_6442534646+0x62/0x14d
> security_file_open+0x34/0x60
> do_dentry_open+0x340/0x1260
> vfs_open+0x7a/0x440
> path_openat+0x1bac/0x30a0
>
> libbpf provides a .s named section variant for every sleepable
> program type except lsm_cgroup, reflecting that per-cgroup LSM programs
> are intended to only run in a non-sleepable context.
>
> The above splat was obtained by bypassing libbpf by using bpf(2)
> directly.
>
> Fixes: 69fd337a975c ("bpf: per-cgroup lsm flavor")
> Signed-off-by: David Windsor <dwindsor@gmail.com>
We should add a "__failure __msg(...)" selftest for the reject case.
Other than this:
Acked-by: Song Liu <song@kernel.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time
2026-06-05 14:57 [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time David Windsor
2026-06-05 18:15 ` Yonghong Song
2026-06-05 21:40 ` Song Liu
@ 2026-06-07 8:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-06-07 8:20 UTC (permalink / raw)
To: David Windsor
Cc: bpf, ast, daniel, andrii, martin.lau, eddyz87, memxor, song,
yonghong.song, jolsa, john.fastabend, sdf, linux-kernel
Hello:
This patch was applied to bpf/bpf-next.git (master)
by Kumar Kartikeya Dwivedi <memxor@gmail.com>:
On Fri, 5 Jun 2026 10:57:07 -0400 you wrote:
> The cgroup shim runs under rcu_read_lock_dont_migrate(), so we should
> not attach any sleepable BPF programs there. Add support to the verifier
> to explicitly reject attempts to load sleepable BPF programs destined
> for LSM cgroup attachment.
>
> Without this, we get the following splat from a BPF_LSM_CGROUP
> program marked BPF_F_SLEEPABLE attached to file_open when it calls
> bpf_get_dentry_xattr():
>
> [...]
Here is the summary with links:
- [bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time
https://git.kernel.org/bpf/bpf-next/c/5b038319be44
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time
2026-06-05 21:40 ` Song Liu
@ 2026-06-07 8:27 ` Kumar Kartikeya Dwivedi
2026-06-08 15:27 ` David Windsor
0 siblings, 1 reply; 6+ messages in thread
From: Kumar Kartikeya Dwivedi @ 2026-06-07 8:27 UTC (permalink / raw)
To: Song Liu, David Windsor
Cc: bpf, Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
Martin KaFai Lau, Eduard Zingerman, Kumar Kartikeya Dwivedi,
Yonghong Song, Jiri Olsa, John Fastabend, Stanislav Fomichev,
linux-kernel
On Fri Jun 5, 2026 at 11:40 PM CEST, Song Liu wrote:
> On Fri, Jun 5, 2026 at 7:57 AM David Windsor <dwindsor@gmail.com> wrote:
>>
>> The cgroup shim runs under rcu_read_lock_dont_migrate(), so we should
>> not attach any sleepable BPF programs there. Add support to the verifier
>> to explicitly reject attempts to load sleepable BPF programs destined
>> for LSM cgroup attachment.
>>
>> Without this, we get the following splat from a BPF_LSM_CGROUP
>> program marked BPF_F_SLEEPABLE attached to file_open when it calls
>> bpf_get_dentry_xattr():
>>
>> BUG: sleeping function called from invalid context at kernel/locking/rwsem.c:1567
>> in_atomic(): 0, irqs_disabled(): 0, non_block: 0, pid: 34317, name: load
>> preempt_count: 0, expected: 0
>> RCU nest depth: 2, expected: 0
>> Call Trace:
>> down_read+0x76/0x480
>> ext4_xattr_get+0x11f/0x700
>> __vfs_getxattr+0xf0/0x150
>> bpf_get_dentry_xattr+0xbb/0xf0
>> bpf_prog_e76a298dac9218c6_test_open+0x6a/0x85
>> __cgroup_bpf_run_lsm_current+0x326/0x840
>> bpf_trampoline_6442534646+0x62/0x14d
>> security_file_open+0x34/0x60
>> do_dentry_open+0x340/0x1260
>> vfs_open+0x7a/0x440
>> path_openat+0x1bac/0x30a0
>>
>> libbpf provides a .s named section variant for every sleepable
>> program type except lsm_cgroup, reflecting that per-cgroup LSM programs
>> are intended to only run in a non-sleepable context.
>>
>> The above splat was obtained by bypassing libbpf by using bpf(2)
>> directly.
>>
>> Fixes: 69fd337a975c ("bpf: per-cgroup lsm flavor")
>> Signed-off-by: David Windsor <dwindsor@gmail.com>
>
> We should add a "__failure __msg(...)" selftest for the reject case.
>
David,
Please follow up with selftest for the fix.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time
2026-06-07 8:27 ` Kumar Kartikeya Dwivedi
@ 2026-06-08 15:27 ` David Windsor
0 siblings, 0 replies; 6+ messages in thread
From: David Windsor @ 2026-06-08 15:27 UTC (permalink / raw)
To: Kumar Kartikeya Dwivedi
Cc: Song Liu, bpf, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman,
Yonghong Song, Jiri Olsa, John Fastabend, Stanislav Fomichev,
linux-kernel
On Sun, Jun 7, 2026 at 4:27 AM Kumar Kartikeya Dwivedi <memxor@gmail.com> wrote:
>
> On Fri Jun 5, 2026 at 11:40 PM CEST, Song Liu wrote:
> > On Fri, Jun 5, 2026 at 7:57 AM David Windsor <dwindsor@gmail.com> wrote:
> >>
> >> The cgroup shim runs under rcu_read_lock_dont_migrate(), so we should
> >> not attach any sleepable BPF programs there. Add support to the verifier
> >> to explicitly reject attempts to load sleepable BPF programs destined
> >> for LSM cgroup attachment.
> >>
> >> Without this, we get the following splat from a BPF_LSM_CGROUP
> >> program marked BPF_F_SLEEPABLE attached to file_open when it calls
> >> bpf_get_dentry_xattr():
> >>
> >> BUG: sleeping function called from invalid context at kernel/locking/rwsem.c:1567
> >> in_atomic(): 0, irqs_disabled(): 0, non_block: 0, pid: 34317, name: load
> >> preempt_count: 0, expected: 0
> >> RCU nest depth: 2, expected: 0
> >> Call Trace:
> >> down_read+0x76/0x480
> >> ext4_xattr_get+0x11f/0x700
> >> __vfs_getxattr+0xf0/0x150
> >> bpf_get_dentry_xattr+0xbb/0xf0
> >> bpf_prog_e76a298dac9218c6_test_open+0x6a/0x85
> >> __cgroup_bpf_run_lsm_current+0x326/0x840
> >> bpf_trampoline_6442534646+0x62/0x14d
> >> security_file_open+0x34/0x60
> >> do_dentry_open+0x340/0x1260
> >> vfs_open+0x7a/0x440
> >> path_openat+0x1bac/0x30a0
> >>
> >> libbpf provides a .s named section variant for every sleepable
> >> program type except lsm_cgroup, reflecting that per-cgroup LSM programs
> >> are intended to only run in a non-sleepable context.
> >>
> >> The above splat was obtained by bypassing libbpf by using bpf(2)
> >> directly.
> >>
> >> Fixes: 69fd337a975c ("bpf: per-cgroup lsm flavor")
> >> Signed-off-by: David Windsor <dwindsor@gmail.com>
> >
> > We should add a "__failure __msg(...)" selftest for the reject case.
> >
>
> David,
> Please follow up with selftest for the fix.
Thanks, will do.
If this gets selected for backporting, it'll fail on 6.1 and another
version; I can send the fixups if needed.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-06-08 15:27 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-05 14:57 [PATCH bpf-next] bpf: reject sleepable BPF_LSM_CGROUP programs at load time David Windsor
2026-06-05 18:15 ` Yonghong Song
2026-06-05 21:40 ` Song Liu
2026-06-07 8:27 ` Kumar Kartikeya Dwivedi
2026-06-08 15:27 ` David Windsor
2026-06-07 8:20 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox