* [PATCH] xfs: fix capabily check in xfs_setattr_nonsize
@ 2026-06-24 10:14 cem
2026-06-24 13:40 ` Christoph Hellwig
0 siblings, 1 reply; 3+ messages in thread
From: cem @ 2026-06-24 10:14 UTC (permalink / raw)
To: linux-xfs
Cc: Carlos Maiolino, stable, Darrick J. Wong, Dave Chinner,
Eric Sandeen, Christoph Hellwig, Dr. Thomas Orgis
From: Carlos Maiolino <cem@kernel.org>
An user reported a bug where he managed to evade group's quota
by changing a file's gid to a different group id the same user
belonged to, even though quotas were enforced on both gids and the
file's size was big enough to exceed the quota's hardlimit.
Commit eba0549bc7d1 replaced a capable() call by a
has_capability_noaudit() to prevent unnecessary selinux audit messages.
Turns out that both calls have slightly different semantics even though
their documentation seems similar. Where in a nutshell:
capable() - Tests the task's effective credentials
has_ns_capability_noaudit() - Tests the task's real credentials
This most of the time has no practical difference but in some cases like
changing attrs (specifically group id in this case) through a NFS client
this will allow the quota code to use XFS_QMOPT_FORCE_RES, effectively
bypassing quota accounting checks.
Using instead ns_capable_noaudit() should fix this issue and prevent
selinux audit messages.
Fixes: eba0549bc7d1 ("xfs: don't generate selinux audit messages for capability testing")
Cc: <stable@vger.kernel.org> # v5.18
Cc: Darrick J. Wong <djwong@kernel.org>
Cc: Dave Chinner <david@fromorbit.com>
Cc: Eric Sandeen <sandeen@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Reported-by: Dr. Thomas Orgis <thomas.orgis@uni-hamburg.de>
Signed-off-by: Carlos Maiolino <cmaiolino@redhat.com>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
---
If people do agree with the fix I do plan to send a patch to
kernel/capability.c to ad a new capable_noaudit() helper which would
come in handy here, but I believe we should backport this all the way
back to 5.18 and replacing it by ns_capable_noaudit() is the easiest way
to do it. Then if capable_noaudit() is acceptable we could just call
this instead. This should also be a test in xfstests.
The patch is still running on my testing suite, I'm sending it ahead of
having the testing finished for discussion/review, so for now it fixes
the problem but I am not sure it doesn't break anything else :)
fs/xfs/xfs_iops.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c
index 325c2200c501..df0eba26dda3 100644
--- a/fs/xfs/xfs_iops.c
+++ b/fs/xfs/xfs_iops.c
@@ -792,6 +792,8 @@ xfs_setattr_nonsize(
kgid_t gid = GLOBAL_ROOT_GID;
struct xfs_dquot *udqp = NULL, *gdqp = NULL;
struct xfs_dquot *old_udqp = NULL, *old_gdqp = NULL;
+ bool force = ns_capable_noaudit(&init_user_ns,
+ CAP_FOWNER);
ASSERT((mask & ATTR_SIZE) == 0);
@@ -835,7 +837,7 @@ xfs_setattr_nonsize(
}
error = xfs_trans_alloc_ichange(ip, udqp, gdqp, NULL,
- has_capability_noaudit(current, CAP_FOWNER), &tp);
+ force, &tp);
if (error)
goto out_dqrele;
--
2.54.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] xfs: fix capabily check in xfs_setattr_nonsize
2026-06-24 10:14 [PATCH] xfs: fix capabily check in xfs_setattr_nonsize cem
@ 2026-06-24 13:40 ` Christoph Hellwig
2026-06-24 18:59 ` Carlos Maiolino
0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig @ 2026-06-24 13:40 UTC (permalink / raw)
To: cem
Cc: linux-xfs, stable, Darrick J. Wong, Dave Chinner, Eric Sandeen,
Christoph Hellwig, Dr. Thomas Orgis, Jan Kara, linux-fsdevel,
Christian Brauner
Adding Jan and Christian for quota and user_ns knowledge.
On Wed, Jun 24, 2026 at 12:14:29PM +0200, cem@kernel.org wrote:
> From: Carlos Maiolino <cem@kernel.org>
>
> An user reported a bug where he managed to evade group's quota
> by changing a file's gid to a different group id the same user
> belonged to, even though quotas were enforced on both gids and the
> file's size was big enough to exceed the quota's hardlimit.
>
> Commit eba0549bc7d1 replaced a capable() call by a
> has_capability_noaudit() to prevent unnecessary selinux audit messages.
> Turns out that both calls have slightly different semantics even though
> their documentation seems similar. Where in a nutshell:
>
> capable() - Tests the task's effective credentials
> has_ns_capability_noaudit() - Tests the task's real credentials
Eww..
> This most of the time has no practical difference but in some cases like
> changing attrs (specifically group id in this case) through a NFS client
> this will allow the quota code to use XFS_QMOPT_FORCE_RES, effectively
> bypassing quota accounting checks.
Yeah, this does look wrong. Do the other conversion in the above commit
have tthe same issue?
> Using instead ns_capable_noaudit() should fix this issue and prevent
> selinux audit messages.
The generic quota code manages to do without either has_capability_noaudit
or ns_capable_noaudit. I think this might be hidden behind
inode_owner_or_capable calls. Any idea why we're different?
> + bool force = ns_capable_noaudit(&init_user_ns,
> + CAP_FOWNER);
I'd do away with the local variable here.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] xfs: fix capabily check in xfs_setattr_nonsize
2026-06-24 13:40 ` Christoph Hellwig
@ 2026-06-24 18:59 ` Carlos Maiolino
0 siblings, 0 replies; 3+ messages in thread
From: Carlos Maiolino @ 2026-06-24 18:59 UTC (permalink / raw)
To: Christoph Hellwig
Cc: linux-xfs, stable, Darrick J. Wong, Dave Chinner, Eric Sandeen,
Dr. Thomas Orgis, Jan Kara, linux-fsdevel, Christian Brauner
On Wed, Jun 24, 2026 at 03:40:39PM +0200, Christoph Hellwig wrote:
> Adding Jan and Christian for quota and user_ns knowledge.
>
> On Wed, Jun 24, 2026 at 12:14:29PM +0200, cem@kernel.org wrote:
> > From: Carlos Maiolino <cem@kernel.org>
> >
> > An user reported a bug where he managed to evade group's quota
> > by changing a file's gid to a different group id the same user
> > belonged to, even though quotas were enforced on both gids and the
> > file's size was big enough to exceed the quota's hardlimit.
> >
> > Commit eba0549bc7d1 replaced a capable() call by a
> > has_capability_noaudit() to prevent unnecessary selinux audit messages.
> > Turns out that both calls have slightly different semantics even though
> > their documentation seems similar. Where in a nutshell:
> >
> > capable() - Tests the task's effective credentials
> > has_ns_capability_noaudit() - Tests the task's real credentials
>
> Eww..
>
> > This most of the time has no practical difference but in some cases like
> > changing attrs (specifically group id in this case) through a NFS client
> > this will allow the quota code to use XFS_QMOPT_FORCE_RES, effectively
> > bypassing quota accounting checks.
>
> Yeah, this does look wrong. Do the other conversion in the above commit
> have tthe same issue?
I don't know yet, but I do hope to be able to convert everything back to
a capable_noaudit() helper. I need some time to look at the other
conversions, but giving the different credentials likely the are all
victim of the same issue.
>
> > Using instead ns_capable_noaudit() should fix this issue and prevent
> > selinux audit messages.
>
> The generic quota code manages to do without either has_capability_noaudit
> or ns_capable_noaudit. I think this might be hidden behind
> inode_owner_or_capable calls. Any idea why we're different?
Yes, I looked into that to check the feasibility to use the generic
code. This specific path goes through __dquot_transfer() which uses
ignore_hardlimit() helper to decide between bypassing quota enforcement
or not.
The later though uses capable(CAP_SYS_RESOURCE) which would trigger
selinux audit messages too at least for our case.
This though made me wonder if we shouldn't be using CAP_SYS_RESOURCE in
lieu of CAP_FOWNER in this path which seems more appropriate to bypass
quota enforcement. Either way though, I think we should at least have an
initial simple to backport patch to older releases.
>
> > + bool force = ns_capable_noaudit(&init_user_ns,
> > + CAP_FOWNER);
>
> I'd do away with the local variable here.
Sounds find to me. I wanted to avoid the function call with two arguments
as an argument. But I honestly have no strong preference.
Cheers!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-24 19:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-24 10:14 [PATCH] xfs: fix capabily check in xfs_setattr_nonsize cem
2026-06-24 13:40 ` Christoph Hellwig
2026-06-24 18:59 ` Carlos Maiolino
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox