mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-12-25 06:27:49 +01:00
112 lines
2.9 KiB
Text
112 lines
2.9 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2020-2021 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/virt-manager
|
|
@{exec_path} += /usr/share/virt-manager/virt-manager
|
|
profile virt-manager @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/X>
|
|
include <abstractions/vulkan>
|
|
include <abstractions/gtk>
|
|
include <abstractions/fonts>
|
|
include <abstractions/fontconfig-cache-read>
|
|
include <abstractions/freedesktop.org>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/ssl_certs>
|
|
include <abstractions/openssl>
|
|
include <abstractions/audio>
|
|
include <abstractions/mesa>
|
|
include <abstractions/dri-enumerate>
|
|
include <abstractions/thumbnails-cache-read>
|
|
include <abstractions/user-download-strict>
|
|
include <abstractions/python>
|
|
include <abstractions/devices-usb>
|
|
include <abstractions/deny-dconf>
|
|
|
|
network inet stream,
|
|
network inet6 stream,
|
|
network netlink raw,
|
|
|
|
@{exec_path} rix,
|
|
/{usr/,}bin/{,ba,da}sh rix,
|
|
/{usr/,}bin/python3.[0-9]* r,
|
|
|
|
/{usr/,}bin/ r,
|
|
/{usr/,}bin/getfacl rix,
|
|
/{usr/,}bin/setfacl rix,
|
|
|
|
/{usr/,}sbin/libvirtd rPx,
|
|
|
|
/{usr/,}lib/@{multiarch}/gstreamer[0-9]*.[0-9]*/gstreamer-[0-9]*.[0-9]*/gst-plugin-scanner rPUx,
|
|
|
|
/usr/share/virt-manager/{,**} r,
|
|
|
|
owner @{HOME}/ r,
|
|
owner @{HOME}/.cache/ rw,
|
|
owner @{HOME}/.cache/virt-manager/ rw,
|
|
owner @{HOME}/.cache/virt-manager/** rw,
|
|
|
|
owner @{HOME}/.cache/gstreamer-[0-9]*/ rw,
|
|
owner @{HOME}/.cache/gstreamer-[0-9]*/registry.*.bin{,.tmp*} rw,
|
|
|
|
# For disk images
|
|
/media/ r,
|
|
/media/*/ r,
|
|
@{HOME}/**.{iso,img,bin,mdf,nrg} r,
|
|
/media/*/**.{iso,img,bin,mdf,nrg} r,
|
|
@{HOME}/**.{ISO,IMG,BIN,MDF,NRG} r,
|
|
/media/*/**.{ISO,IMG,BIN,MDF,NRG} r,
|
|
|
|
# System VM images
|
|
#owner /var/lib/libvirt/images/ r,
|
|
|
|
# User VM images
|
|
#owner @{HOME}/.local/share/libvirt/ rw,
|
|
#owner @{HOME}/.local/share/libvirt/images/ rw,
|
|
#owner @{HOME}/.local/share/libvirt/images/* rw,
|
|
|
|
#owner /media/*/VM/ r,
|
|
|
|
/usr/share/glib-2.0/schemas/gschemas.compiled r,
|
|
|
|
/usr/share/osinfo/{,**} r,
|
|
/usr/share/gtksourceview-4/{,**} r,
|
|
|
|
/usr/share/misc/pci.ids r,
|
|
/var/lib/usbutils/usb.ids r,
|
|
|
|
owner @{PROC}/@{pid}/mountinfo r,
|
|
owner @{PROC}/@{pid}/mounts r,
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
@{PROC}/@{pid}/net/route r,
|
|
|
|
@{sys}/devices/pci[0-9]*/**/drm/ r,
|
|
|
|
/etc/fstab r,
|
|
|
|
@{run}/mount/utab r,
|
|
|
|
owner @{run}/user/[0-9]*/libvirt/libvirtd.lock rwk,
|
|
|
|
@{sys}/devices/system/node/ r,
|
|
@{sys}/devices/system/node/node[0-9]*/meminfo r,
|
|
|
|
/var/lib/dbus/machine-id r,
|
|
/etc/machine-id r,
|
|
|
|
# The orcexec.* file is JIT compiled code for various GStreamer elements.
|
|
# If one is blocked the next is used instead.
|
|
owner @{run}/user/[0-9]*/orcexec.* mrw,
|
|
#owner @{HOME}/orcexec.* mrw,
|
|
#owner /tmp/orcexec.* mrw,
|
|
|
|
# Silecne the noise
|
|
deny /usr/share/virt-manager/{,**} w,
|
|
|
|
include if exists <local/virt-manager>
|
|
}
|