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

abi <abi/4.0>,

include <tunables/global>

@{exec_path} = @{lib}/passimd
@{att} = /att/passimd/
profile passimd /{,usr/}lib{,exec,32,64}/passimd  flags=(attach_disconnected,attach_disconnected.path=@{att},complain) {
  include <abstractions/attached/base>
  include <abstractions/bus-system>
  include <abstractions/nameservice-strict>

  capability dac_read_search,

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

  include <abstractions/bus/system/own>

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

  @{exec_path} mr,

  /usr/share/dbus-1/interfaces/org.freedesktop.Passim.xml r,

  /etc/passim.conf r,

  owner /var/lib/passim/{,**} rw,
  owner /var/log/passim/* rw,

  @{PROC}/@{pid}/cmdline r,

  include if exists <local/passimd>
}

# vim:syntax=apparmor
