35 lines
942 B
Text
35 lines
942 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/spice-vdagentd
|
|
profile spice-vdagentd @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/dbus-strict>
|
|
|
|
capability sys_nice,
|
|
|
|
dbus receive bus=system path=/org/freedesktop/login[0-9]/session/_[0-9]*
|
|
interface=org.freedesktop.login[0-9].Session
|
|
member=Unlock,
|
|
|
|
@{exec_path} mr,
|
|
|
|
owner @{run}/spice-vdagentd/spice-vdagent-sock r,
|
|
owner @{run}/spice-vdagentd/spice-vdagentd.pid rw,
|
|
@{run}/systemd/journal/dev-log w,
|
|
@{run}/systemd/seats/seat[0-9]* r,
|
|
@{run}/systemd/sessions/* r,
|
|
@{run}/systemd/users/@{uid} r,
|
|
|
|
@{PROC}/@{pids}/cgroup r,
|
|
|
|
/dev/uinput rw,
|
|
/dev/vport[0-9]*p[0-9]* rw,
|
|
|
|
include if exists <local/spice-vdagentd>
|
|
}
|