# 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}/f3read
@{att} = ""
profile f3read /{,usr/}bin/f3read flags=(complain) {
  include <abstractions/base-strict>

  @{exec_path} mr,

  # USB drive mount locations
  @{MOUNTDIRS} r,
  @{MOUNTS}/ r,
  @{MOUNTS}/*/ r,

  # To be able to read h2w files
  owner @{MOUNTDIRS}/@{int}.h2w r,
  owner @{MOUNTS}/@{int}.h2w r,
  owner @{MOUNTS}/*/@{int}.h2w r,

  include if exists <local/f3read>
}


# vim:syntax=apparmor
