* [PATCH v2] selinux: preserve user SID across nested backing files
@ 2026-08-20 17:58 Karl Mehltretter
2026-08-20 19:12 ` Amir Goldstein
2026-08-27 19:39 ` Paul Moore
0 siblings, 2 replies; 7+ messages in thread
From: Karl Mehltretter @ 2026-08-20 17:58 UTC (permalink / raw)
To: selinux
Cc: Karl Mehltretter, Paul Moore, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, Amir Goldstein, Christian Brauner, 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>
---
Changes in v2:
- Add selinux_file_user_sid() helper instead of open-coding the lookup
(Amir).
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 | 9 ++++++++-
security/selinux/include/objsec.h | 2 +-
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index 1ead2eee1944..171b90412ff1 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -3843,13 +3843,20 @@ static int selinux_file_alloc_security(struct file *file)
return 0;
}
+static inline u32 selinux_file_user_sid(const struct file *file)
+{
+ if (unlikely(file->f_mode & FMODE_BACKING))
+ return selinux_backing_file(file)->uf_sid;
+ return selinux_file(file)->sid;
+}
+
static int selinux_backing_file_alloc(struct file *backing_file,
const struct file *user_file)
{
struct backing_file_security_struct *bfsec;
bfsec = selinux_backing_file(backing_file);
- bfsec->uf_sid = selinux_file(user_file)->sid;
+ bfsec->uf_sid = selinux_file_user_sid(user_file);
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 [flat|nested] 7+ messages in thread* Re: [PATCH v2] selinux: preserve user SID across nested backing files
2026-08-20 17:58 [PATCH v2] selinux: preserve user SID across nested backing files Karl Mehltretter
@ 2026-08-20 19:12 ` Amir Goldstein
2026-08-27 19:39 ` Paul Moore
1 sibling, 0 replies; 7+ messages in thread
From: Amir Goldstein @ 2026-08-20 19:12 UTC (permalink / raw)
To: Karl Mehltretter
Cc: selinux, Paul Moore, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, Christian Brauner, linux-fsdevel, linux-unionfs,
linux-kernel, stable
On Thu, Aug 20, 2026 at 7:58 PM 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>
Reviewed-by: Amir Goldstein <amir73il@gmail.com>
> ---
> Changes in v2:
> - Add selinux_file_user_sid() helper instead of open-coding the lookup
> (Amir).
>
> 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 | 9 ++++++++-
> security/selinux/include/objsec.h | 2 +-
> 2 files changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> index 1ead2eee1944..171b90412ff1 100644
> --- a/security/selinux/hooks.c
> +++ b/security/selinux/hooks.c
> @@ -3843,13 +3843,20 @@ static int selinux_file_alloc_security(struct file *file)
> return 0;
> }
>
> +static inline u32 selinux_file_user_sid(const struct file *file)
> +{
> + if (unlikely(file->f_mode & FMODE_BACKING))
> + return selinux_backing_file(file)->uf_sid;
> + return selinux_file(file)->sid;
> +}
> +
> static int selinux_backing_file_alloc(struct file *backing_file,
> const struct file *user_file)
> {
> struct backing_file_security_struct *bfsec;
>
> bfsec = selinux_backing_file(backing_file);
> - bfsec->uf_sid = selinux_file(user_file)->sid;
> + bfsec->uf_sid = selinux_file_user_sid(user_file);
>
> 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 [flat|nested] 7+ messages in thread* Re: [PATCH v2] selinux: preserve user SID across nested backing files
2026-08-20 17:58 [PATCH v2] selinux: preserve user SID across nested backing files Karl Mehltretter
2026-08-20 19:12 ` Amir Goldstein
@ 2026-08-27 19:39 ` Paul Moore
2026-08-28 9:05 ` Amir Goldstein
2026-08-29 19:39 ` Karl Mehltretter
1 sibling, 2 replies; 7+ messages in thread
From: Paul Moore @ 2026-08-27 19:39 UTC (permalink / raw)
To: Karl Mehltretter, selinux
Cc: Karl Mehltretter, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, Amir Goldstein, Christian Brauner, linux-fsdevel,
linux-unionfs, linux-kernel, stable
On Aug 20, 2026 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>
> Reviewed-by: Amir Goldstein <amir73il@gmail.com>
> ---
> Changes in v2:
> - Add selinux_file_user_sid() helper instead of open-coding the lookup
> (Amir).
>
> 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
If you could share the distro and some more details on the testing
methodology that would be helpful.
> 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).
Additional comments below, and while this patch is useful in fixing some
of the problems (thank you!), we obviously need to fix the others as
well. Is this something you think you will be able to work on?
> diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> index 1ead2eee1944..171b90412ff1 100644
> --- a/security/selinux/hooks.c
> +++ b/security/selinux/hooks.c
> @@ -3843,13 +3843,20 @@ static int selinux_file_alloc_security(struct file *file)
> return 0;
> }
>
> +static inline u32 selinux_file_user_sid(const struct file *file)
> +{
> + if (unlikely(file->f_mode & FMODE_BACKING))
> + return selinux_backing_file(file)->uf_sid;
> + return selinux_file(file)->sid;
> +}
I'm a little concerned that this only works for one additional level of
filesystem stacking. Yes, I know that OVL_MAX_NESTING and
FILESYSTEM_MAX_STACK_DEPTH are currently set at "2", but it's not an
unreasonable concern that at some point in the future that number will
increase without proper notification or testing and we will once again
have a problem.
At the absolute minimum we should have a BUILD_BUG_ON() for the stacking
depth. It would be good if we could watch both the overlayfs and vfs
constants, but the overlayfs constant isn't available outside
fs/overlayfs/inode.c (thankfully it is currently set to the vfs limit).
BUIILD_BUG_ON(FILESYSTEM_MAX_STACK_DEPTH > 2);
Ideally, the code would be written to keep diving down the stack until
it hit the true backing file. No one likes to see recursion, but at the
point where this function is called there should already be a reasonable
bound on the stacking depth and the work involved.
--
paul-moore.com
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH v2] selinux: preserve user SID across nested backing files
2026-08-27 19:39 ` Paul Moore
@ 2026-08-28 9:05 ` Amir Goldstein
2026-08-28 22:05 ` Paul Moore
2026-08-29 19:39 ` Karl Mehltretter
1 sibling, 1 reply; 7+ messages in thread
From: Amir Goldstein @ 2026-08-28 9:05 UTC (permalink / raw)
To: Paul Moore
Cc: Karl Mehltretter, selinux, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, Christian Brauner, linux-fsdevel, linux-unionfs,
linux-kernel, stable
On Thu, Aug 27, 2026 at 9:39 PM Paul Moore <paul@paul-moore.com> wrote:
>
> On Aug 20, 2026 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>
> > Reviewed-by: Amir Goldstein <amir73il@gmail.com>
> > ---
> > Changes in v2:
> > - Add selinux_file_user_sid() helper instead of open-coding the lookup
> > (Amir).
> >
> > 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
>
> If you could share the distro and some more details on the testing
> methodology that would be helpful.
>
> > 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).
>
> Additional comments below, and while this patch is useful in fixing some
> of the problems (thank you!), we obviously need to fix the others as
> well. Is this something you think you will be able to work on?
>
> > diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> > index 1ead2eee1944..171b90412ff1 100644
> > --- a/security/selinux/hooks.c
> > +++ b/security/selinux/hooks.c
> > @@ -3843,13 +3843,20 @@ static int selinux_file_alloc_security(struct file *file)
> > return 0;
> > }
> >
> > +static inline u32 selinux_file_user_sid(const struct file *file)
> > +{
> > + if (unlikely(file->f_mode & FMODE_BACKING))
> > + return selinux_backing_file(file)->uf_sid;
> > + return selinux_file(file)->sid;
> > +}
>
> I'm a little concerned that this only works for one additional level of
> filesystem stacking. Yes, I know that OVL_MAX_NESTING and
> FILESYSTEM_MAX_STACK_DEPTH are currently set at "2", but it's not an
> unreasonable concern that at some point in the future that number will
> increase without proper notification or testing and we will once again
> have a problem.
>
> At the absolute minimum we should have a BUILD_BUG_ON() for the stacking
> depth. It would be good if we could watch both the overlayfs and vfs
> constants, but the overlayfs constant isn't available outside
> fs/overlayfs/inode.c (thankfully it is currently set to the vfs limit).
>
> BUIILD_BUG_ON(FILESYSTEM_MAX_STACK_DEPTH > 2);
>
> Ideally, the code would be written to keep diving down the stack until
> it hit the true backing file. No one likes to see recursion, but at the
> point where this function is called there should already be a reasonable
> bound on the stacking depth and the work involved.
Unless I am missing something, stack depth should not matter.
file_user_path() should hold the user visible path, for all the backing files
in all the depths of the backing files stack.
This is the issue that was fixed with commit
f2381b546e7e6 fs: fix user path of nested backing files
This patch makes uf_sid behave the same way and also documents this:
struct backing_file_security_struct {
- u32 uf_sid; /* associated user file fsec->sid */
+ u32 uf_sid; /* top-level user file fsec->sid */
};
[*] For me the "user" visible file is always the "top-level" but if
this comnment
change helps others understand better it's fine by me.
Thanks,
Amir.
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH v2] selinux: preserve user SID across nested backing files
2026-08-28 9:05 ` Amir Goldstein
@ 2026-08-28 22:05 ` Paul Moore
2026-08-29 16:42 ` Amir Goldstein
0 siblings, 1 reply; 7+ messages in thread
From: Paul Moore @ 2026-08-28 22:05 UTC (permalink / raw)
To: Amir Goldstein
Cc: Karl Mehltretter, selinux, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, Christian Brauner, linux-fsdevel, linux-unionfs,
linux-kernel, stable
On Fri, Aug 28, 2026 at 5:05 AM Amir Goldstein <amir73il@gmail.com> wrote:
> On Thu, Aug 27, 2026 at 9:39 PM Paul Moore <paul@paul-moore.com> wrote:
> > On Aug 20, 2026 Karl Mehltretter <kmehltretter@gmail.com> wrote:
...
> > > diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> > > index 1ead2eee1944..171b90412ff1 100644
> > > --- a/security/selinux/hooks.c
> > > +++ b/security/selinux/hooks.c
> > > @@ -3843,13 +3843,20 @@ static int selinux_file_alloc_security(struct file *file)
> > > return 0;
> > > }
> > >
> > > +static inline u32 selinux_file_user_sid(const struct file *file)
> > > +{
> > > + if (unlikely(file->f_mode & FMODE_BACKING))
> > > + return selinux_backing_file(file)->uf_sid;
> > > + return selinux_file(file)->sid;
> > > +}
> >
> > I'm a little concerned that this only works for one additional level of
> > filesystem stacking. Yes, I know that OVL_MAX_NESTING and
> > FILESYSTEM_MAX_STACK_DEPTH are currently set at "2", but it's not an
> > unreasonable concern that at some point in the future that number will
> > increase without proper notification or testing and we will once again
> > have a problem.
> >
> > At the absolute minimum we should have a BUILD_BUG_ON() for the stacking
> > depth. It would be good if we could watch both the overlayfs and vfs
> > constants, but the overlayfs constant isn't available outside
> > fs/overlayfs/inode.c (thankfully it is currently set to the vfs limit).
> >
> > BUIILD_BUG_ON(FILESYSTEM_MAX_STACK_DEPTH > 2);
> >
> > Ideally, the code would be written to keep diving down the stack until
> > it hit the true backing file. No one likes to see recursion, but at the
> > point where this function is called there should already be a reasonable
> > bound on the stacking depth and the work involved.
>
> Unless I am missing something, stack depth should not matter.
> file_user_path() should hold the user visible path, for all the backing files
> in all the depths of the backing files stack.
>
> This is the issue that was fixed with commit
> f2381b546e7e6 fs: fix user path of nested backing files
>
> This patch makes uf_sid behave the same way and also documents this:
>
> struct backing_file_security_struct {
> - u32 uf_sid; /* associated user file fsec->sid */
> + u32 uf_sid; /* top-level user file fsec->sid */
> };
Perhaps I'm not understanding your comment correctly (it's the end of
a long week), but selinux_backing_file_alloc() and the newly created
selinux_file_user_sid() functions don't operate on the
file_user_path() path struct. In fact the path which is resolved in
backing_file_open() isn't even passed into the
security_backing_file_alloc() LSM hook.
Are you trying to explain that the way the backing files are allocated
in a stacked filesystem, regardless of the number of layers, is that
they will be allocated from the top down in such a way that the uf_sid
will trickle down to the bottommost backing file?
--
paul-moore.com
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH v2] selinux: preserve user SID across nested backing files
2026-08-28 22:05 ` Paul Moore
@ 2026-08-29 16:42 ` Amir Goldstein
0 siblings, 0 replies; 7+ messages in thread
From: Amir Goldstein @ 2026-08-29 16:42 UTC (permalink / raw)
To: Paul Moore
Cc: Karl Mehltretter, selinux, Stephen Smalley, Ondrej Mosnacek,
Miklos Szeredi, Christian Brauner, linux-fsdevel, linux-unionfs,
linux-kernel, stable
On Sat, Aug 29, 2026 at 12:05 AM Paul Moore <paul@paul-moore.com> wrote:
>
> On Fri, Aug 28, 2026 at 5:05 AM Amir Goldstein <amir73il@gmail.com> wrote:
> > On Thu, Aug 27, 2026 at 9:39 PM Paul Moore <paul@paul-moore.com> wrote:
> > > On Aug 20, 2026 Karl Mehltretter <kmehltretter@gmail.com> wrote:
>
> ...
>
> > > > diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
> > > > index 1ead2eee1944..171b90412ff1 100644
> > > > --- a/security/selinux/hooks.c
> > > > +++ b/security/selinux/hooks.c
> > > > @@ -3843,13 +3843,20 @@ static int selinux_file_alloc_security(struct file *file)
> > > > return 0;
> > > > }
> > > >
> > > > +static inline u32 selinux_file_user_sid(const struct file *file)
> > > > +{
> > > > + if (unlikely(file->f_mode & FMODE_BACKING))
> > > > + return selinux_backing_file(file)->uf_sid;
> > > > + return selinux_file(file)->sid;
> > > > +}
> > >
> > > I'm a little concerned that this only works for one additional level of
> > > filesystem stacking. Yes, I know that OVL_MAX_NESTING and
> > > FILESYSTEM_MAX_STACK_DEPTH are currently set at "2", but it's not an
> > > unreasonable concern that at some point in the future that number will
> > > increase without proper notification or testing and we will once again
> > > have a problem.
> > >
> > > At the absolute minimum we should have a BUILD_BUG_ON() for the stacking
> > > depth. It would be good if we could watch both the overlayfs and vfs
> > > constants, but the overlayfs constant isn't available outside
> > > fs/overlayfs/inode.c (thankfully it is currently set to the vfs limit).
> > >
> > > BUIILD_BUG_ON(FILESYSTEM_MAX_STACK_DEPTH > 2);
> > >
> > > Ideally, the code would be written to keep diving down the stack until
> > > it hit the true backing file. No one likes to see recursion, but at the
> > > point where this function is called there should already be a reasonable
> > > bound on the stacking depth and the work involved.
> >
> > Unless I am missing something, stack depth should not matter.
> > file_user_path() should hold the user visible path, for all the backing files
> > in all the depths of the backing files stack.
> >
> > This is the issue that was fixed with commit
> > f2381b546e7e6 fs: fix user path of nested backing files
> >
> > This patch makes uf_sid behave the same way and also documents this:
> >
> > struct backing_file_security_struct {
> > - u32 uf_sid; /* associated user file fsec->sid */
> > + u32 uf_sid; /* top-level user file fsec->sid */
> > };
>
> Perhaps I'm not understanding your comment correctly (it's the end of
> a long week), but selinux_backing_file_alloc() and the newly created
> selinux_file_user_sid() functions don't operate on the
> file_user_path() path struct. In fact the path which is resolved in
> backing_file_open() isn't even passed into the
> security_backing_file_alloc() LSM hook.
Right.
But the file that is passed into the hook has the top-level uf_sid
in selinux_file_user_sid().
>
> Are you trying to explain that the way the backing files are allocated
> in a stacked filesystem, regardless of the number of layers, is that
> they will be allocated from the top down in such a way that the uf_sid
> will trickle down to the bottommost backing file?
Yes, both selinux_file_user_sid() and file_user_path() should follow
the same pattern independently - they always stash the top-most user visible
path/creds.
Thanks,
Amir.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2] selinux: preserve user SID across nested backing files
2026-08-27 19:39 ` Paul Moore
2026-08-28 9:05 ` Amir Goldstein
@ 2026-08-29 19:39 ` Karl Mehltretter
1 sibling, 0 replies; 7+ messages in thread
From: Karl Mehltretter @ 2026-08-29 19:39 UTC (permalink / raw)
To: Paul Moore
Cc: selinux, Stephen Smalley, Ondrej Mosnacek, Miklos Szeredi,
Amir Goldstein, Christian Brauner, linux-fsdevel, linux-unionfs,
linux-kernel, stable
On Thu, Aug 27, 2026 at 03:39:10PM +0100, Paul Moore wrote:
> If you could share the distro and some more details on the testing
> methodology that would be helpful.
The original test used a small BusyBox initramfs.
I repeated it on arm64 QEMU with kernel v7.2-rc1-9-gfd6e2388a3ea, using
both BusyBox and Fedora Cloud Base 44 userspace. Both gave the same result
with SELinux enforcing:
unpatched: mprotect(PROT_READ) failed with EACCES and the expected
base_t -> mounter_t:fd { use } denial
patched: mprotect(PROT_READ) succeeded
The test mounted two nested overlays as mounter_t, changed back to base_t,
mapped the outer file, then called mprotect(). Both guests used the same
purpose-built policy, not the Fedora stock policy.
> Additional comments below, and while this patch is useful in fixing some
> of the problems (thank you!), we obviously need to fix the others as
> well. Is this something you think you will be able to work on?
I also tested current mainline commit cf72cbb39da84, which contains
f2381b546e7e ("fs: fix user path of nested backing files"). That fixes the
top path and inode, but exposed the remaining intermediate-mounter issue:
direct mmap(PROT_EXEC) was denied against middle_file_t, while
mmap(PROT_NONE) followed by mprotect(PROT_EXEC) succeeded.
I implemented a second patch which preserves and rechecks each intermediate
path, mounter SID, and file-description SID. With both patches, direct mmap
and deferred mprotect are denied against middle_file_t, and the original SID
propagation test still passes.
Together with f2381b546e7e, this covers the remaining issues. I will send v3
as a two-patch series.
Thanks,
Karl
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-08-29 19:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-20 17:58 [PATCH v2] selinux: preserve user SID across nested backing files Karl Mehltretter
2026-08-20 19:12 ` Amir Goldstein
2026-08-27 19:39 ` Paul Moore
2026-08-28 9:05 ` Amir Goldstein
2026-08-28 22:05 ` Paul Moore
2026-08-29 16:42 ` Amir Goldstein
2026-08-29 19:39 ` Karl Mehltretter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®