virt-aa-helper: Fix AppArmor profile
commitb1eb8b3e8fd1d4cb1da8e5e2b16f2c10837fd823
authorAndrea Bolognani <abologna@redhat.com>
Mon, 19 Aug 2019 08:23:42 +0000 (19 10:23 +0200)
committerAndrea Bolognani <abologna@redhat.com>
Mon, 19 Aug 2019 13:47:24 +0000 (19 15:47 +0200)
tree1e53108c34a0462d56ee59bf8ad02dd9ed08b8d1
parentb194c3d9c70c1d3b0a53b7fa792bf5b01504ddd9
virt-aa-helper: Fix AppArmor profile

Since

  commit 432faf259b696043ee5d7e8f657d855419a9a3fa
  Author: Michal Privoznik <mprivozn@redhat.com>
  Date:   Tue Jul 2 19:49:51 2019 +0200

    virCommand: use procfs to learn opened FDs

    When spawning a child process, between fork() and exec() we close
    all file descriptors and keep only those the caller wants us to
    pass onto the child. The problem is how we do that. Currently, we
    get the limit of opened files and then iterate through each one
    of them and either close() it or make it survive exec(). This
    approach is suboptimal (although, not that much in default
    configurations where the limit is pretty low - 1024). We have
    /proc where we can learn what FDs we hold open and thus we can
    selectively close only those.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
  v5.5.0-173-g432faf259b

programs using the virCommand APIs on Linux need read access to
/proc/self/fd, or they will fail like

  error : virCommandWait:2796 : internal error: Child process
  (LIBVIRT_LOG_OUTPUTS=3:stderr /usr/lib/libvirt/virt-aa-helper -c
   -u libvirt-b20e9a8e-091a-45e0-8823-537119e98bc6) unexpected exit
  status 1: libvirt:  error : cannot open directory '/proc/self/fd':
  Permission denied
  virt-aa-helper: error: apparmor_parser exited with error

Update the AppArmor profile for virt-aa-helper so that read access
to the relevant path is granted.

Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
src/security/apparmor/usr.lib.libvirt.virt-aa-helper