]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
security: fix SELinux label generation logic
authorDaniel P. Berrangé <berrange@redhat.com>
Mon, 28 Jun 2021 12:09:04 +0000 (13:09 +0100)
committerDaniel P. Berrangé <berrange@redhat.com>
Wed, 30 Jun 2021 13:51:42 +0000 (14:51 +0100)
A process can access a file if the set of MCS categories
for the file is equal-to *or* a subset-of, the set of
MCS categories for the process.

If there are two VMs:

  a) svirt_t:s0:c117
  b) svirt_t:s0:c117,c720

Then VM (b) is able to access files labelled for VM (a).

IOW, we must discard case where the categories are equal
because that is a subset of many other valid category pairs.

Fixes: https://gitlab.com/libvirt/libvirt/-/issues/153
CVE-2021-3631
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
src/security/security_selinux.c

index b50f4463cc30989bc637c26d99996ba2795d95be..0c2cf1d1c7b53839b589c536de51bc1c8979c5dc 100644 (file)
@@ -383,7 +383,15 @@ virSecuritySELinuxMCSFind(virSecurityManager *mgr,
         VIR_DEBUG("Try cat %s:c%d,c%d", sens, c1 + catMin, c2 + catMin);
 
         if (c1 == c2) {
-            mcs = g_strdup_printf("%s:c%d", sens, catMin + c1);
+            /*
+             * A process can access a file if the set of MCS categories
+             * for the file is equal-to *or* a subset-of, the set of
+             * MCS categories for the process.
+             *
+             * IOW, we must discard case where the categories are equal
+             * because that is a subset of other category pairs.
+             */
+            continue;
         } else {
             if (c1 > c2) {
                 int t = c1;