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

abi <abi/4.0>,

include <tunables/global>

@{exec_path} = @{bin}/xfce4-terminal
profile xfce-terminal /{,usr/}{,s}bin/xfce4-terminal flags=(complain) {
  include <abstractions/base>
  include <abstractions/consoles>
  include <abstractions/dconf-write>
  include <abstractions/nameservice-strict>
  include <abstractions/xfce>

  @{exec_path} mr,

  @{open_path} rpx -> child-open-help,

  # The shell is not confined on purpose.
  @{bin}/@{shells}            rux,

  # Some CLI program can be launched directly from Gnome Shell
  @{bin}/htop                 rpx,
  @{bin}/micro               rpux,
  @{bin}/nvtop                rpx,

  /usr/share/ r,
  /usr/share/xfce4/ r,
  /usr/share/xfce4/terminal/{,**} r,

  /etc/fstab r,
  /etc/xdg/ r,
  /etc/xdg/xfce4/ r,

  owner @{user_config_dirs}/xfce4/terminal/{,**} r,

  owner @{tmp}/#@{int} rw,

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

  /dev/ptmx rw,

  include if exists <local/xfce-terminal>
}

# vim:syntax=apparmor
