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

  # Needed to inform the system of newly created/removed partitions
  #  ioctl(3, BLKRRPART)              = -1 EACCES (Permission denied)
  #
  #  Warning: The kernel is still using the old partition table.
  #  The new table will be used at the next reboot or after you
  #  run partprobe(8) or kpartx(8)
  #  The operation has completed successfully.
  capability sys_admin,

  @{exec_path} mr,

  # For backups
  owner @{HOME}/**.{bak,back} rwk,
  owner @{MOUNTS}/**.{bak,back} rwk,

  # For disk images
  owner @{user_img_dirs}/{,**} rwk,

  include if exists <local/gdisk>
}

# vim:syntax=apparmor
