* [PATCH] bpf: add security_file_post_open() LSM hook to sleepable_lsm_hooks
@ 2024-06-18 19:29 Matt Bobrowski
2024-06-18 19:44 ` Paul Moore
2024-06-21 18:00 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 4+ messages in thread
From: Matt Bobrowski @ 2024-06-18 19:29 UTC (permalink / raw)
To: bpf, kpsingh
Cc: ast, daniel, andrii, martin.lau, eddyz87, song, yonghong.song,
linux-security-module, roberto.sassu, Matt Bobrowski
The new generic LSM hook security_file_post_open() was recently added
to the LSM framework in commit 8f46ff5767b0b ("security: Introduce
file_post_open hook"). Let's proactively add this generic LSM hook to
the sleepable_lsm_hooks BTF ID set, because I can't see there being
any strong reasons not to, and it's only a matter of time before
someone else comes around and asks for it to be there.
security_file_post_open() is inherently sleepable as it's purposely
situated in the kernel that allows LSMs to directly read out the
contents of the backing file if need be. Additionally, it's called
directly after securuty_file_open(), and that LSM hook in itself
already exists in the sleepable_lsm_hooks BTF ID set.
Signed-off-by: Matt Bobrowski <mattbobrowski@google.com>
---
kernel/bpf/bpf_lsm.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/kernel/bpf/bpf_lsm.c b/kernel/bpf/bpf_lsm.c
index 68240c3c6e7d..08a338e1f231 100644
--- a/kernel/bpf/bpf_lsm.c
+++ b/kernel/bpf/bpf_lsm.c
@@ -280,6 +280,7 @@ BTF_ID(func, bpf_lsm_cred_prepare)
BTF_ID(func, bpf_lsm_file_ioctl)
BTF_ID(func, bpf_lsm_file_lock)
BTF_ID(func, bpf_lsm_file_open)
+BTF_ID(func, bpf_lsm_file_post_open)
BTF_ID(func, bpf_lsm_file_receive)
BTF_ID(func, bpf_lsm_inode_create)
--
2.45.2.627.g7a2c4fd464-goog
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] bpf: add security_file_post_open() LSM hook to sleepable_lsm_hooks
2024-06-18 19:29 [PATCH] bpf: add security_file_post_open() LSM hook to sleepable_lsm_hooks Matt Bobrowski
@ 2024-06-18 19:44 ` Paul Moore
2024-06-21 17:58 ` Daniel Borkmann
2024-06-21 18:00 ` patchwork-bot+netdevbpf
1 sibling, 1 reply; 4+ messages in thread
From: Paul Moore @ 2024-06-18 19:44 UTC (permalink / raw)
To: Matt Bobrowski
Cc: bpf, kpsingh, ast, daniel, andrii, martin.lau, eddyz87, song,
yonghong.song, linux-security-module, roberto.sassu
On Tue, Jun 18, 2024 at 3:29 PM Matt Bobrowski <mattbobrowski@google.com> wrote:
>
> The new generic LSM hook security_file_post_open() was recently added
> to the LSM framework in commit 8f46ff5767b0b ("security: Introduce
> file_post_open hook"). Let's proactively add this generic LSM hook to
> the sleepable_lsm_hooks BTF ID set, because I can't see there being
> any strong reasons not to, and it's only a matter of time before
> someone else comes around and asks for it to be there.
>
> security_file_post_open() is inherently sleepable as it's purposely
> situated in the kernel that allows LSMs to directly read out the
> contents of the backing file if need be. Additionally, it's called
> directly after securuty_file_open(), and that LSM hook in itself
*cough*
"security_file_open()"
*cough*
> already exists in the sleepable_lsm_hooks BTF ID set.
>
> Signed-off-by: Matt Bobrowski <mattbobrowski@google.com>
> ---
> kernel/bpf/bpf_lsm.c | 1 +
> 1 file changed, 1 insertion(+)
--
paul-moore.com
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] bpf: add security_file_post_open() LSM hook to sleepable_lsm_hooks
2024-06-18 19:44 ` Paul Moore
@ 2024-06-21 17:58 ` Daniel Borkmann
0 siblings, 0 replies; 4+ messages in thread
From: Daniel Borkmann @ 2024-06-21 17:58 UTC (permalink / raw)
To: Paul Moore, Matt Bobrowski
Cc: bpf, kpsingh, ast, andrii, martin.lau, eddyz87, song,
yonghong.song, linux-security-module, roberto.sassu
On 6/18/24 9:44 PM, Paul Moore wrote:
> On Tue, Jun 18, 2024 at 3:29 PM Matt Bobrowski <mattbobrowski@google.com> wrote:
>>
>> The new generic LSM hook security_file_post_open() was recently added
>> to the LSM framework in commit 8f46ff5767b0b ("security: Introduce
>> file_post_open hook"). Let's proactively add this generic LSM hook to
>> the sleepable_lsm_hooks BTF ID set, because I can't see there being
>> any strong reasons not to, and it's only a matter of time before
>> someone else comes around and asks for it to be there.
>>
>> security_file_post_open() is inherently sleepable as it's purposely
>> situated in the kernel that allows LSMs to directly read out the
>> contents of the backing file if need be. Additionally, it's called
>> directly after securuty_file_open(), and that LSM hook in itself
>
> *cough*
>
> "security_file_open()"
Fixed up while applying, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] bpf: add security_file_post_open() LSM hook to sleepable_lsm_hooks
2024-06-18 19:29 [PATCH] bpf: add security_file_post_open() LSM hook to sleepable_lsm_hooks Matt Bobrowski
2024-06-18 19:44 ` Paul Moore
@ 2024-06-21 18:00 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-06-21 18:00 UTC (permalink / raw)
To: Matt Bobrowski
Cc: bpf, kpsingh, ast, daniel, andrii, martin.lau, eddyz87, song,
yonghong.song, linux-security-module, roberto.sassu
Hello:
This patch was applied to bpf/bpf-next.git (master)
by Daniel Borkmann <daniel@iogearbox.net>:
On Tue, 18 Jun 2024 19:29:22 +0000 you wrote:
> The new generic LSM hook security_file_post_open() was recently added
> to the LSM framework in commit 8f46ff5767b0b ("security: Introduce
> file_post_open hook"). Let's proactively add this generic LSM hook to
> the sleepable_lsm_hooks BTF ID set, because I can't see there being
> any strong reasons not to, and it's only a matter of time before
> someone else comes around and asks for it to be there.
>
> [...]
Here is the summary with links:
- bpf: add security_file_post_open() LSM hook to sleepable_lsm_hooks
https://git.kernel.org/bpf/bpf-next/c/6ddf3a9abd9f
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] 4+ messages in thread
end of thread, other threads:[~2024-06-21 18:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-18 19:29 [PATCH] bpf: add security_file_post_open() LSM hook to sleepable_lsm_hooks Matt Bobrowski
2024-06-18 19:44 ` Paul Moore
2024-06-21 17:58 ` Daniel Borkmann
2024-06-21 18:00 ` 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;
as well as URLs for NNTP newsgroup(s).