51 lines
1.4 KiB
Text
51 lines
1.4 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2018-2022 Mikhail Morfikov
|
|
# Copyright (C) 2021-2022 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}lib/at-spi2-core/at-spi-bus-launcher
|
|
@{exec_path} += @{libexec}/at-spi-bus-launcher
|
|
profile at-spi-bus-launcher @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/dbus-session>
|
|
include <abstractions/dconf-write>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
signal (receive) set=(term hup kill) peer=dbus-daemon,
|
|
signal (receive) set=(term hup kill) peer=gdm*,
|
|
signal (send) set=(term hup kill) peer=dbus-daemon,
|
|
|
|
network inet stream,
|
|
network inet6 stream,
|
|
|
|
@{exec_path} mr,
|
|
|
|
/{usr/,}bin/dbus-daemon rPx,
|
|
/{usr/,}bin/dbus-broker-launch rPUx,
|
|
|
|
/usr/share/gdm/greeter-dconf-defaults r,
|
|
/usr/share/dconf/profile/gdm r,
|
|
/usr/share/glib-2.0/schemas/gschemas.compiled r,
|
|
|
|
owner @{HOME}/.Xauthority r,
|
|
owner @{HOME}/.xsession-errors w,
|
|
|
|
owner @{run}/user/@{uid}/gdm/Xauthority r,
|
|
|
|
/var/lib/lightdm/.Xauthority r,
|
|
/var/lib/gdm/.config/dconf/user r,
|
|
|
|
/var/log/lightdm/seat[0-9]*-greeter.log w,
|
|
|
|
owner @{PROC}/@{pid}/cgroup r,
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
@{PROC}/1/cgroup r,
|
|
|
|
owner /dev/tty[0-9]* rw, # file_inherit
|
|
|
|
include if exists <local/at-spi-bus-launcher>
|
|
}
|