]> xenbits.xensource.com Git - libvirt.git/commitdiff
selinux: Don't fail RestoreAll if file doesn't have a default label
authorCole Robinson <crobinso@redhat.com>
Sat, 20 Oct 2012 19:57:28 +0000 (15:57 -0400)
committerCole Robinson <crobinso@redhat.com>
Tue, 23 Oct 2012 15:45:24 +0000 (11:45 -0400)
When restoring selinux labels after a VM is stopped, any non-standard
path that doesn't have a default selinux label causes the process
to stop and exit early. This isn't really an error condition IMO.

Of course the selinux API could be erroring for some other reason
but hopefully that's rare enough to not need explicit handling.

Common example here is storing disk images in a non-standard location
like under /mnt.

src/security/security_selinux.c

index eee8d71790ccc5b7cba59926d78e26d4353094b1..7681f1b91c34745a95f67d81409192fb1306cdfc 100644 (file)
@@ -936,7 +936,11 @@ virSecuritySELinuxRestoreSecurityFileLabel(const char *path)
     }
 
     if (getContext(newpath, buf.st_mode, &fcon) < 0) {
+        /* Any user created path likely does not have a default label,
+         * which makes this an expected non error
+         */
         VIR_WARN("cannot lookup default selinux label for %s", newpath);
+        rc = 0;
     } else {
         rc = virSecuritySELinuxSetFilecon(newpath, fcon);
     }