# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
# SPDX-License-Identifier: GPL-2.0-only

abi <abi/4.0>,

include <tunables/global>

@{exec_path} = @{lib}/systemd/systemd-resolved
@{att} = /att/systemd-resolved/
profile systemd-resolved /{,usr/}lib{,exec,32,64}/systemd/systemd-resolved  flags=(attach_disconnected,attach_disconnected.path=@{att},complain) {
  include <abstractions/attached/base>
  include <abstractions/bus-system>
  include <abstractions/bus/system/org.freedesktop.login1>
  include <abstractions/nameservice-strict>
  include <abstractions/p11-kit>
  include <abstractions/ssl_certs>
  include <abstractions/common/systemd>

  capability net_bind_service,
  capability net_raw,
  capability setpcap,

  network unix stream,
  network unix dgram,

  network inet dgram,
  network inet stream,
  network inet6 dgram,
  network inet6 stream,
  network netlink raw,

  include <abstractions/bus/system/own>

  dbus bind bus=system name=org.freedesktop.resolve1{,.*},
  dbus receive bus=system path=/org/freedesktop/resolve1{,/**}
       interface=org.freedesktop.resolve1{,.*}
       peer=(name="@{busname}"),
  dbus send bus=system path=/org/freedesktop/resolve1{,/**}
       interface=org.freedesktop.resolve1{,.*}
       peer=(name="{@{busname},org.freedesktop.DBus}"),
  dbus (send receive) bus=system path=/org/freedesktop/resolve1{,/**}
       interface=org.freedesktop.DBus.Properties
       member={Get,GetAll,Set,PropertiesChanged}
       peer=(name="{@{busname},org.freedesktop.DBus}"),
  dbus receive bus=system path=/org/freedesktop/resolve1{,/**}
       interface=org.freedesktop.DBus.Introspectable
       member=Introspect
       peer=(name="@{busname}"),
  dbus receive bus=system path=/org/freedesktop/resolve1{,/**}
       interface=org.freedesktop.DBus.ObjectManager
       member=GetManagedObjects
       peer=(name="{@{busname},org.freedesktop.resolve1{,.*}}"),
  dbus send bus=system path=/org/freedesktop/resolve1{,/**}
       interface=org.freedesktop.DBus.ObjectManager
       member={InterfacesAdded,InterfacesRemoved}
       peer=(name="{@{busname},org.freedesktop.DBus}"),

  @{exec_path} mr,

  /etc/systemd/resolved.conf r,
  /etc/systemd/resolved.conf.d/{,*} r,

  @{att}@{run}/systemd/notify w,

  @{run}/systemd/netif/links/* r,
  @{run}/systemd/resolve/{,**} rw,

  @{PROC}/@{pid}/cgroup r,
  @{PROC}/pressure/* r,
  @{PROC}/sys/kernel/hostname r,
  @{PROC}/sys/net/ipv{4,6}/conf/all/disable_ipv{4,6} r,

  include if exists <local/systemd-resolved>
}

# vim:syntax=apparmor
