mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-15 08:47:48 +01:00
82 lines
2.5 KiB
Text
82 lines
2.5 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# Profile for session dbus, regardless of the dbus implementation used.
|
|
# It does not specify an attachment path as it would be the same than
|
|
# "dbus-system". It is intended to be used only via "Px ->" or via
|
|
# systemd drop-in AppArmorProfile= setting.
|
|
|
|
abi <abi/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/dbus-run-session @{bin}/dbus-update-activation-environment
|
|
@{exec_path} += @{bin}/dbus-broker @{bin}/dbus-broker-launch
|
|
@{exec_path} += @{bin}/dbus-daemon @{lib}/dbus-1{,.0}/dbus-daemon-launch-helper
|
|
profile dbus-session flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/bus-session>
|
|
include <abstractions/consoles>
|
|
include <abstractions/deny-sensitive-home>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
network unix stream,
|
|
|
|
unix (send receive) type=stream addr=none peer=(label=gnome-shell, addr=none),
|
|
|
|
signal (receive) set=(term hup) peer=gdm{,-*},
|
|
signal (send) set=(term hup kill) peer=dbus-accessibility,
|
|
signal (send) set=(term hup kill) peer=dconf-service,
|
|
signal (send) set=(term hup kill) peer=xdg-*,
|
|
|
|
#aa:dbus own bus=session name=org.freedesktop.DBus path=/{,org/freedesktop/{d,D}Bus}
|
|
|
|
@{exec_path} mrix,
|
|
|
|
@{bin}/{true,false} rix,
|
|
@{lib}/{,at-spi2{,-core}/}at-spi-bus-launcher rPx -> dbus-accessibility,
|
|
|
|
@{bin}/** PUx,
|
|
@{lib}/** PUx,
|
|
@{user_share_dirs}/*/** PUx,
|
|
/usr/share/*/** PUx,
|
|
|
|
/etc/dbus-1/{,**} r,
|
|
/usr/share/dbus-1/{,**} r,
|
|
/var/lib/snapd/dbus-1/{,**} r,
|
|
@{system_share_dirs}/dbus-1/{,**} r,
|
|
|
|
/etc/machine-id r,
|
|
/var/lib/dbus/machine-id r,
|
|
|
|
# Dbus can receive any user files
|
|
owner @{HOME}/** r,
|
|
|
|
owner @{HOME}/.var/app/*/**/.ref rw,
|
|
owner @{HOME}/.var/app/*/**/logs/* rw,
|
|
|
|
owner @{user_share_dirs}/dbus-1/services/{,**} r,
|
|
|
|
@{run}/systemd/users/@{uid} r,
|
|
owner @{run}/user/@{uid}/dbus-1/ rw,
|
|
owner @{run}/user/@{uid}/dbus-1/services/ rw,
|
|
owner @{run}/user/@{uid}/systemd/notify w,
|
|
|
|
@{sys}/kernel/security/apparmor/.access rw,
|
|
@{sys}/kernel/security/apparmor/features/dbus/mask r,
|
|
@{sys}/module/apparmor/parameters/enabled r,
|
|
|
|
@{PROC}/@{pid}/cmdline r,
|
|
owner @{PROC}/@{pid}/attr/apparmor/current r,
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
owner @{PROC}/@{pid}/oom_score_adj r,
|
|
owner @{PROC}/@{pid}/mounts r,
|
|
|
|
/dev/ptmx rw,
|
|
/dev/tty@{int} rw,
|
|
|
|
include if exists <local/dbus-session>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|