From: Peter Krempa Date: Tue, 2 Jul 2013 16:34:58 +0000 (+0200) Subject: selinux: Always generate imagelabel X-Git-Tag: CVE-2013-2230~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ce63c161111c6d813130f850639d1548d80c3fe;p=thirdparty%2Flibvirt.git selinux: Always generate imagelabel The imagelabel SELinux label was only generated when relabeling was enabled. This prohibited labeling of files created by libvirt that need to be labeled even if relabeling is turned off. The only codepath this change has direct impact on is labeling of FDs passed to qemu which is always safe in current state. --- diff --git a/src/security/security_selinux.c b/src/security/security_selinux.c index ec4f764e4a..d7c978dbea 100644 --- a/src/security/security_selinux.c +++ b/src/security/security_selinux.c @@ -687,13 +687,12 @@ virSecuritySELinuxGenSecurityLabel(virSecurityManagerPtr mgr, goto cleanup; } - if (!seclabel->norelabel) { - seclabel->imagelabel = virSecuritySELinuxGenNewContext(data->file_context, - mcs, - true); - if (!seclabel->imagelabel) - goto cleanup; - } + /* always generate a image label, needed to label new objects */ + seclabel->imagelabel = virSecuritySELinuxGenNewContext(data->file_context, + mcs, + true); + if (!seclabel->imagelabel) + goto cleanup; if (!seclabel->model && VIR_STRDUP(seclabel->model, SECURITY_SELINUX_NAME) < 0)