# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2017-2021 Mikhail Morfikov
# 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} = @{bin}/light-locker
@{att} = ""
profile light-locker /{,usr/}bin/light-locker flags=(complain) {
  include <abstractions/base-strict>
  include <abstractions/dconf-write>
  include <abstractions/desktop>
  include <abstractions/fontconfig-cache-read>
  include <abstractions/nameservice-strict>

  @{exec_path} mr,

  # when locking the screen and switching/closing sessions
  @{run}/systemd/sessions/* r,

  @{sys}/devices/@{pci}/uevent r,
  @{sys}/devices/@{pci}/vendor r,
  @{sys}/devices/@{pci}/device r,
  @{sys}/devices/@{pci}/subsystem_vendor r,
  @{sys}/devices/@{pci}/subsystem_device r,

        @{PROC}/1/cgroup r,
  owner @{PROC}/@{pid}/cgroup r,

  # file_inherit
  owner /dev/tty@{int} rw,

  include if exists <local/light-locker>
}

# vim:syntax=apparmor
