65 lines
2.1 KiB
Text
65 lines
2.1 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} = @{lib}/systemd/systemd-hostnamed
|
|
profile systemd-hostnamed @{exec_path} flags=(attach_disconnected) {
|
|
include <abstractions/base>
|
|
include <abstractions/dbus-strict>
|
|
include <abstractions/systemd-common>
|
|
|
|
capability sys_admin, # To set a hostname
|
|
|
|
dbus bind bus=system name=org.freedesktop.hostname1,
|
|
|
|
dbus receive bus=system path=/org/freedesktop/hostname1
|
|
interface=org.freedesktop.hostname1
|
|
member=SetHostname
|
|
peer=(name=:*, label=systemd//&systemd-networkd),
|
|
|
|
dbus send bus=system path=/org/freedesktop/DBus
|
|
interface=org.freedesktop.DBus
|
|
member={RequestName,ReleaseName,GetConnectionUnixUser}
|
|
peer=(name=org.freedesktop.DBus),
|
|
|
|
dbus send bus=system path=/org/freedesktop/PolicyKit1/Authority
|
|
interface=org.freedesktop.PolicyKit1.Authority
|
|
member=CheckAuthorization
|
|
peer=(name=org.freedesktop.PolicyKit1),
|
|
|
|
dbus receive bus=system path=/org/freedesktop/hostname1
|
|
interface=org.freedesktop.DBus.Properties
|
|
member={Get,GetAll}
|
|
peer=(name=:*),
|
|
|
|
dbus receive bus=system path=/org/freedesktop/hostname1
|
|
interface=org.freedesktop.hostname1
|
|
member=Set*Hostname
|
|
peer=(name=:*, label=hostnamectl),
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{etc_rw}/.#hostname* rw,
|
|
@{etc_rw}/hostname rw,
|
|
/etc/.#machine-info@{rand6} rw,
|
|
/etc/machine-info rw,
|
|
|
|
@{run}/systemd/default-hostname rw,
|
|
@{run}/systemd/notify rw,
|
|
@{run}/udev/data/+dmi:id r,
|
|
|
|
@{sys}/devices/virtual/dmi/id/ r,
|
|
@{sys}/devices/virtual/dmi/id/{bios_vendor,bios_version,board_vendor,bios_date} r,
|
|
@{sys}/devices/virtual/dmi/id/{product_name,product_version,chassis_type} r,
|
|
@{sys}/devices/virtual/dmi/id/sys_vendor r,
|
|
@{sys}/devices/virtual/dmi/id/uevent r,
|
|
@{sys}/firmware/acpi/pm_profile r,
|
|
@{sys}/firmware/dmi/entries/*/raw r,
|
|
|
|
include if exists <local/systemd-hostnamed>
|
|
}
|