# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2019-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}/changestool
@{att} = ""
profile changestool /{,usr/}bin/changestool flags=(complain) {
  include <abstractions/base-strict>

  @{exec_path} mr,

  @{bin}/gpg{,2}     rcx -> gpg,
  @{bin}/gpgconf     rcx -> gpg,
  @{bin}/gpgsm       rcx -> gpg,

  owner @{PROC}/@{pid}/fd/ r,

  # For package building
  owner @{user_build_dirs}/** rwkl -> @{user_build_dirs}/**,


  profile gpg flags=(complain) {
    include <abstractions/base-strict>

    @{bin}/gpg{,2}    mr,
    @{bin}/gpgconf    mr,
    @{bin}/gpgsm      mr,

    owner @{HOME}/@{XDG_GPG_DIR}/ r,
    owner @{HOME}/@{XDG_GPG_DIR}/** rwkl -> @{HOME}/@{XDG_GPG_DIR}/**,

    include if exists <local/changestool_gpg>
  }

  include if exists <local/changestool>
}

# vim:syntax=apparmor
