* [PATCH] selinux: preserve user SID across nested backing files
@ 2026-08-20 6:13 Karl Mehltretter
2026-08-20 6:20 ` sashiko-bot
2026-08-20 14:32 ` Amir Goldstein
0 siblings, 2 replies; 4+ messages in thread
From: Karl Mehltretter @ 2026-08-20 6:13 UTC (permalink / raw)
To: selinux
Cc: Karl Mehltretter, Paul Moore, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, Amir Goldstein, linux-fsdevel, linux-unionfs,
linux-kernel, stable
SELinux saves the user file SID in a backing-file security blob so it
remains available after mmap() replaces vma->vm_file with a backing file.
For nested backing files (overlayfs over overlayfs, or FUSE passthrough
backed by overlayfs), user_file may itself be a backing file. Its
fsec->sid is the SID of the mounter that opened it, rather than the user
that opened the top-level file. mprotect() then checks fd { use } against
the mounter SID. This can incorrectly deny access without a domain
transition, or check the wrong target SID after one.
Copy the saved user SID when user_file is a backing file. Keep using the
regular file SID for the first backing layer.
With two nested overlayfs mounts and SELinux enforcing,
mprotect(PROT_READ) returns EACCES with an fd { use } denial against the
mounter SID. With this change, mprotect() succeeds.
Fixes: 82544d36b172 ("selinux: fix overlayfs mmap() and mprotect() access checks")
Cc: stable@vger.kernel.org
Assisted-by: Codex:gpt-5.6-sol
Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com>
---
Tested on arm64 QEMU at fd6e2388a3ea with SELinux enforcing and two
nested overlayfs mounts. The policy omitted only
base_t -> mounter_t:fd { use } among the relevant cross-domain allows:
baseline: mprotect(PROT_READ) returned EACCES with that denial
patched: mprotect(PROT_READ) succeeded; test exited 0
This patch fixes SID propagation only. backing_file_user_path() still
resolves to the middle layer for a nested mapping, so the audit path and
inode do not correspond to uf_sid, and that layer's mounter is not
re-checked. Preserving the full user path likely needs a VFS-side change,
such as having backing_file_open() store file_user_path(user_file).
security/selinux/hooks.c | 4 +++-
security/selinux/include/objsec.h | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index 1ead2eee1944..8b96934e9992 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -3849,7 +3849,9 @@ static int selinux_backing_file_alloc(struct file *backing_file,
struct backing_file_security_struct *bfsec;
bfsec = selinux_backing_file(backing_file);
- bfsec->uf_sid = selinux_file(user_file)->sid;
+ bfsec->uf_sid = (user_file->f_mode & FMODE_BACKING) ?
+ selinux_backing_file(user_file)->uf_sid :
+ selinux_file(user_file)->sid;
return 0;
}
diff --git a/security/selinux/include/objsec.h b/security/selinux/include/objsec.h
index 3c0a16ec978b..853f7266ed18 100644
--- a/security/selinux/include/objsec.h
+++ b/security/selinux/include/objsec.h
@@ -87,7 +87,7 @@ struct file_security_struct {
};
struct backing_file_security_struct {
- u32 uf_sid; /* associated user file fsec->sid */
+ u32 uf_sid; /* top-level user file fsec->sid */
};
struct superblock_security_struct {
base-commit: fd6e2388a3ea55e58cbbbef840c1d8aa2067dbb3
--
2.39.5 (Apple Git-154)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] selinux: preserve user SID across nested backing files
2026-08-20 6:13 [PATCH] selinux: preserve user SID across nested backing files Karl Mehltretter
@ 2026-08-20 6:20 ` sashiko-bot
2026-08-20 14:32 ` Amir Goldstein
1 sibling, 0 replies; 4+ messages in thread
From: sashiko-bot @ 2026-08-20 6:20 UTC (permalink / raw)
Cc: selinux
> SELinux saves the user file SID in a backing-file security blob so it
> remains available after mmap() replaces vma->vm_file with a backing file.
>
> For nested backing files (overlayfs over overlayfs, or FUSE passthrough
> backed by overlayfs), user_file may itself be a backing file. Its
> fsec->sid is the SID of the mounter that opened it, rather than the user
> that opened the top-level file. mprotect() then checks fd { use } against
> the mounter SID. This can incorrectly deny access without a domain
> transition, or check the wrong target SID after one.
>
> Copy the saved user SID when user_file is a backing file. Keep using the
> regular file SID for the first backing layer.
>
> With two nested overlayfs mounts and SELinux enforcing,
> mprotect(PROT_READ) returns EACCES with an fd { use } denial against the
> mounter SID. With this change, mprotect() succeeds.
>
> Fixes: 82544d36b172 ("selinux: fix overlayfs mmap() and mprotect() access checks")
> Cc: stable@vger.kernel.org
> Assisted-by: Codex:gpt-5.6-sol
> Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260820061349.10542-1-kmehltretter@gmail.com?part=1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] selinux: preserve user SID across nested backing files
2026-08-20 6:13 [PATCH] selinux: preserve user SID across nested backing files Karl Mehltretter
2026-08-20 6:20 ` sashiko-bot
@ 2026-08-20 14:32 ` Amir Goldstein
2026-08-20 17:50 ` Karl Mehltretter
1 sibling, 1 reply; 4+ messages in thread
From: Amir Goldstein @ 2026-08-20 14:32 UTC (permalink / raw)
To: Karl Mehltretter
Cc: selinux, Paul Moore, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, linux-fsdevel, linux-unionfs, linux-kernel,
stable, Christian Brauner
On Thu, Aug 20, 2026 at 8:13 AM Karl Mehltretter <kmehltretter@gmail.com> wrote:
>
> SELinux saves the user file SID in a backing-file security blob so it
> remains available after mmap() replaces vma->vm_file with a backing file.
>
> For nested backing files (overlayfs over overlayfs, or FUSE passthrough
> backed by overlayfs), user_file may itself be a backing file. Its
> fsec->sid is the SID of the mounter that opened it, rather than the user
> that opened the top-level file. mprotect() then checks fd { use } against
> the mounter SID. This can incorrectly deny access without a domain
> transition, or check the wrong target SID after one.
>
> Copy the saved user SID when user_file is a backing file. Keep using the
> regular file SID for the first backing layer.
>
> With two nested overlayfs mounts and SELinux enforcing,
> mprotect(PROT_READ) returns EACCES with an fd { use } denial against the
> mounter SID. With this change, mprotect() succeeds.
>
> Fixes: 82544d36b172 ("selinux: fix overlayfs mmap() and mprotect() access checks")
> Cc: stable@vger.kernel.org
> Assisted-by: Codex:gpt-5.6-sol
> Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com>
> ---
> Tested on arm64 QEMU at fd6e2388a3ea with SELinux enforcing and two
> nested overlayfs mounts. The policy omitted only
> base_t -> mounter_t:fd { use } among the relevant cross-domain allows:
>
> baseline: mprotect(PROT_READ) returned EACCES with that denial
> patched: mprotect(PROT_READ) succeeded; test exited 0
>
> This patch fixes SID propagation only. backing_file_user_path() still
> resolves to the middle layer for a nested mapping, so the audit path and
> inode do not correspond to uf_sid, and that layer's mounter is not
> re-checked. Preserving the full user path likely needs a VFS-side change,
> such as having backing_file_open() store file_user_path(user_file).
>
> security/selinux/hooks.c | 4 +++-
> security/selinux/include/objsec.h | 2 +-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> index 1ead2eee1944..8b96934e9992 100644
> --- a/security/selinux/hooks.c
> +++ b/security/selinux/hooks.c
> @@ -3849,7 +3849,9 @@ static int selinux_backing_file_alloc(struct file *backing_file,
> struct backing_file_security_struct *bfsec;
>
> bfsec = selinux_backing_file(backing_file);
> - bfsec->uf_sid = selinux_file(user_file)->sid;
> + bfsec->uf_sid = (user_file->f_mode & FMODE_BACKING) ?
> + selinux_backing_file(user_file)->uf_sid :
> + selinux_file(user_file)->sid;
>
> return 0;
> }
> diff --git a/security/selinux/include/objsec.h b/security/selinux/include/objsec.h
> index 3c0a16ec978b..853f7266ed18 100644
> --- a/security/selinux/include/objsec.h
> +++ b/security/selinux/include/objsec.h
> @@ -87,7 +87,7 @@ struct file_security_struct {
> };
>
> struct backing_file_security_struct {
> - u32 uf_sid; /* associated user file fsec->sid */
> + u32 uf_sid; /* top-level user file fsec->sid */
> };
>
Sigh, this is so confusing.
The fix looks correct to me but I would use a helper selinux_user_file() akin
to file_user_path() instead of open coding the condition above.
Thanks,
Amir.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] selinux: preserve user SID across nested backing files
2026-08-20 14:32 ` Amir Goldstein
@ 2026-08-20 17:50 ` Karl Mehltretter
0 siblings, 0 replies; 4+ messages in thread
From: Karl Mehltretter @ 2026-08-20 17:50 UTC (permalink / raw)
To: Amir Goldstein
Cc: selinux, Paul Moore, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, linux-fsdevel, linux-unionfs, linux-kernel,
stable, Christian Brauner
On Thu, Aug 20, 2026 at 04:32:28PM +0100, Amir Goldstein wrote:
> Sigh, this is so confusing.
>
> The fix looks correct to me but I would use a helper selinux_user_file() akin
> to file_user_path() instead of open coding the condition above.
>
Good idea. I initially had a helper and should have kept it.
I'll send a v2.
Thanks,
Karl
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-08-20 17:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-20 6:13 [PATCH] selinux: preserve user SID across nested backing files Karl Mehltretter
2026-08-20 6:20 ` sashiko-bot
2026-08-20 14:32 ` Amir Goldstein
2026-08-20 17:50 ` Karl Mehltretter
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.