# 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} = /usr/share/libalpm/scripts/detect-old-perl-modules.sh
@{att} = /att/pacman-hook-perl/
profile pacman-hook-perl /usr/share/libalpm/scripts/detect-old-perl-modules.sh  flags=(attach_disconnected,attach_disconnected.path=@{att},complain) {
  include <abstractions/attached/base>
  include <abstractions/perl>

  capability dac_read_search,
  capability mknod,

  @{exec_path} mr,

  @{sh_path}     rix,
  @{bin}/find    rix,
  @{bin}/pacman  rpx,
  @{bin}/sed     rix,
  @{bin}/wc      rix,

        /dev/tty rw,
        /dev/tty@{u8} rw,
  owner /dev/pts/@{u16} rw,

  # Inherit silencer
  deny network inet6 stream,
  deny network inet stream,

  include if exists <local/pacman-hook-perl>
}

# vim:syntax=apparmor
