# 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} = @{bin}/kgx
profile kgx /{,usr/}{,s}bin/kgx flags=(complain) {
  include <abstractions/base>
  include <abstractions/consoles>
  include <abstractions/dconf-write>
  include <abstractions/gnome-strict>
  include <abstractions/graphics>
  include <abstractions/nameservice-strict>

  capability sys_ptrace,

  ptrace (read),

  @{exec_path} mr,

  # 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,

  @{open_path}                rPx -> child-open,

  owner /tmp/#@{int} rw,

        @{PROC}/ r,
        @{PROC}/@{pids}/cmdline r,
        @{PROC}/@{pids}/stat r,
        @{PROC}/1/cgroup r,
  owner @{PROC}/@{pid}/cgroup r,

  /dev/ptmx rw,

  include if exists <local/kgx>
}