Skip to content

Commit ead64b2

Browse files
cgzonesAndreas Gruenbacher
authored andcommitted
gfs2: reorder capability check last
capable() calls refer to enabled LSMs whether to permit or deny the request. This is relevant in connection with SELinux, where a capability check results in a policy decision and by default a denial message on insufficient permission is issued. It can lead to three undesired cases: 1. A denial message is generated, even in case the operation was an unprivileged one and thus the syscall succeeded, creating noise. 2. To avoid the noise from 1. the policy writer adds a rule to ignore those denial messages, hiding future syscalls, where the task performs an actual privileged operation, leading to hidden limited functionality of that task. 3. To avoid the noise from 1. the policy writer adds a rule to permit the task the requested capability, while it does not need it, violating the principle of least privilege. Signed-off-by: Christian Göttsche <[email protected]> Signed-off-by: Andreas Gruenbacher <[email protected]>
1 parent ff2a7a0 commit ead64b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fs/gfs2/quota.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ static inline int gfs2_quota_lock_check(struct gfs2_inode *ip,
4444
int ret;
4545

4646
ap->allowed = UINT_MAX; /* Assume we are permitted a whole lot */
47-
if (capable(CAP_SYS_RESOURCE) ||
48-
sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
47+
if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF ||
48+
capable(CAP_SYS_RESOURCE))
4949
return 0;
5050
ret = gfs2_quota_lock(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
5151
if (ret)

0 commit comments

Comments
 (0)