Blame SOURCES/0010-Use-proper-label-for-nbdkit-sockets.patch

46b2f6
From 54b63460b7602ac5c68d6e58ab60e7f85877cefc Mon Sep 17 00:00:00 2001
46b2f6
From: Martin Kletzander <mkletzan@redhat.com>
46b2f6
Date: Mon, 27 May 2019 13:30:05 +0200
46b2f6
Subject: [PATCH] Use proper label for nbdkit sockets
46b2f6
46b2f6
While svirt_t can be used for sockets it does not always guarantee that it will
46b2f6
be accessible from a virtual machine.  The VM might be running under svirt_tcg_t
46b2f6
context which will need a svirt_tcg_t label on the socket in order to access it.
46b2f6
46b2f6
There is, however, another label, svirt_socket_t, which is accessible from
46b2f6
virt_domain:
46b2f6
46b2f6
  # sesearch -A -s svirt_t -c unix_stream_socket -p connectto
46b2f6
  ...
46b2f6
  allow virt_domain svirt_socket_t:unix_stream_socket { ... connectto ... };
46b2f6
  ...
46b2f6
46b2f6
And virt_domain is a type attribute of both svirt_t and svirt_tcg_t:
46b2f6
46b2f6
  # seinfo -x -a virt_domain
46b2f6
  Type Attributes: 1
46b2f6
     attribute virt_domain;
46b2f6
          svirt_t
46b2f6
          svirt_tcg_t
46b2f6
46b2f6
Resolves: https://bugzilla.redhat.com/1698437
46b2f6
46b2f6
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
46b2f6
(cherry picked from commit c2918b8b74506523a723b804d452816a059c5e50)
46b2f6
---
46b2f6
 v2v/input_libvirt_vddk.ml | 2 +-
46b2f6
 v2v/output_rhv_upload.ml  | 2 +-
46b2f6
 2 files changed, 2 insertions(+), 2 deletions(-)
46b2f6
46b2f6
diff --git a/v2v/input_libvirt_vddk.ml b/v2v/input_libvirt_vddk.ml
46b2f6
index 97c7cb532..567233d58 100644
46b2f6
--- a/v2v/input_libvirt_vddk.ml
46b2f6
+++ b/v2v/input_libvirt_vddk.ml
46b2f6
@@ -290,7 +290,7 @@ object
46b2f6
       add_arg "--newstyle";         (* use newstyle NBD protocol *)
46b2f6
       add_arg "--exportname"; add_arg "/";
46b2f6
       if have_selinux then (        (* label the socket so qemu can open it *)
46b2f6
-        add_arg "--selinux-label"; add_arg "system_u:object_r:svirt_t:s0"
46b2f6
+        add_arg "--selinux-label"; add_arg "system_u:object_r:svirt_socket_t:s0"
46b2f6
       );
46b2f6
 
46b2f6
       (* Name of the plugin.  Everything following is a plugin parameter. *)
46b2f6
diff --git a/v2v/output_rhv_upload.ml b/v2v/output_rhv_upload.ml
46b2f6
index 77c39107e..c2a5c72c7 100644
46b2f6
--- a/v2v/output_rhv_upload.ml
46b2f6
+++ b/v2v/output_rhv_upload.ml
46b2f6
@@ -217,7 +217,7 @@ See also the virt-v2v-output-rhv(1) manual.")
46b2f6
     let args =
46b2f6
       (* label the socket so qemu can open it *)
46b2f6
       if have_selinux then
46b2f6
-        args @ ["--selinux-label"; "system_u:object_r:svirt_t:s0"]
46b2f6
+        args @ ["--selinux-label"; "system_u:object_r:svirt_socket_t:s0"]
46b2f6
       else args in
46b2f6
     args in
46b2f6
 
46b2f6
-- 
b155d0
2.26.2
46b2f6