]> www.infradead.org Git - users/jedix/linux-maple.git/commit
gfs2: reorder capability check last
authorChristian Göttsche <cgzones@googlemail.com>
Mon, 25 Nov 2024 10:40:00 +0000 (11:40 +0100)
committerAndreas Gruenbacher <agruenba@redhat.com>
Mon, 9 Dec 2024 09:44:35 +0000 (10:44 +0100)
commitead64b20f16e38443aded90dc8491d25f4f5bd39
treee002379efc368eacc96c6704722b41f5fd3af08e
parentff2a7a064a69069554564f52b6a84fc8a8c7d688
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 <cgzones@googlemail.com>
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/gfs2/quota.h