mirror of https://gitee.com/openkylin/libvirt.git
apparmor: QEMU bridge helper policy updates
This patch provides AppArmor policy updates for the QEMU bridge helper. The QEMU bridge helper is a SUID executable exec'd by QEMU that drops capabilities to CAP_NET_ADMIN and adds a tap device to a network bridge. Signed-off-by: Richa Marwaha <rmarwah@linux.vnet.ibm.com> Signed-off-by: Corey Bryant<coreyb@linux.vnet.ibm.com>
This commit is contained in:
parent
e060f86495
commit
b0e478986f
|
@ -1,4 +1,4 @@
|
||||||
# Last Modified: Mon Apr 5 15:11:27 2010
|
# Last Modified: Fri Mar 9 14:43:22 2012
|
||||||
|
|
||||||
#include <abstractions/base>
|
#include <abstractions/base>
|
||||||
#include <abstractions/consoles>
|
#include <abstractions/consoles>
|
||||||
|
@ -108,3 +108,22 @@
|
||||||
/bin/dash rmix,
|
/bin/dash rmix,
|
||||||
/bin/dd rmix,
|
/bin/dd rmix,
|
||||||
/bin/cat rmix,
|
/bin/cat rmix,
|
||||||
|
|
||||||
|
/usr/libexec/qemu-bridge-helper Cx,
|
||||||
|
# child profile for bridge helper process
|
||||||
|
profile /usr/libexec/qemu-bridge-helper {
|
||||||
|
#include <abstractions/base>
|
||||||
|
|
||||||
|
capability setuid,
|
||||||
|
capability setgid,
|
||||||
|
capability setpcap,
|
||||||
|
capability net_admin,
|
||||||
|
|
||||||
|
network inet stream,
|
||||||
|
|
||||||
|
/dev/net/tun rw,
|
||||||
|
/etc/qemu/** r,
|
||||||
|
owner @{PROC}/*/status r,
|
||||||
|
|
||||||
|
/usr/libexec/qemu-bridge-helper rmix,
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue