# 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
profile passimd /{,usr/}lib{,exec,32,64}/passimd  flags=(attach_disconnected,complain) {
  include <abstractions/base>
  include <abstractions/bus-system>
  include <abstractions/nameservice-strict>

  capability dac_read_search,

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

  dbus bind bus=system name=org.freedesktop.Passim{,.*},
  dbus receive bus=system path=/org/freedesktop/Passim{,/**}
       interface=org.freedesktop.Passim{,.*}
       peer=(name=":1.@{int}"),
  dbus receive bus=system path=/org/freedesktop/Passim{,/**}
       interface=org.freedesktop.DBus.Properties
       peer=(name=":1.@{int}"),
  dbus receive bus=system path=/org/freedesktop/Passim{,/**}
       interface=org.freedesktop.DBus.ObjectManager
       peer=(name=":1.@{int}"),
  dbus send bus=system path=/org/freedesktop/Passim{,/**}
       interface=org.freedesktop.Passim{,.*}
       peer=(name="{:1.@{int},org.freedesktop.DBus}"),
  dbus send bus=system path=/org/freedesktop/Passim{,/**}
       interface=org.freedesktop.DBus.Properties
       peer=(name="{:1.@{int},org.freedesktop.DBus}"),
  dbus send bus=system path=/org/freedesktop/Passim{,/**}
       interface=org.freedesktop.DBus.ObjectManager
       peer=(name="{:1.@{int},org.freedesktop.DBus}"),
  dbus receive bus=system path=/org/freedesktop/Passim{,/**}
       interface=org.freedesktop.DBus.Introspectable
       member=Introspect
       peer=(name=":1.@{int}"),

  @{exec_path} mr,

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

  /etc/passim.conf r,

  /var/lib/passim/{,**} r,
  /var/lib/passim/data/{,**} rw,

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

  include if exists <local/passimd>
}