# 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/gtk-update-icon-cache
@{att} = /att/pacman-hook-gtk/
profile pacman-hook-gtk /usr/share/libalpm/scripts/gtk-update-icon-cache flags=(attach_disconnected,attach_disconnected.path=@{att}) {
  include <abstractions/attached/base>

  capability dac_read_search,

  @{exec_path} mr,

  @{sh_path}   rix,
  @{bin}/rm    rix,
  @{bin}/rmdir rix,

  @{bin}/gtk-update-icon-cache rpx,
  @{bin}/gtk4-update-icon-cache rpx,

  /usr/share/icons/{,**} rw,

        /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-gtk>
}

# vim:syntax=apparmor
