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

  @{exec_path} mr,

  @{bin}/fusermount{,3} rCx -> fusermount,

        /**.{tar,tar.gz,zip} r,
        /**.{TAR,TAR.GZ,ZIP} r,
  owner /**.{tar,tar.gz,zip} w,
  owner /**.{TAR,TAR.GZ,ZIP} w,

  owner @{HOME}/ r,
  owner @{HOME}/*/ r,
  owner @{HOME}/*/*/ r,

  mount fstype=fuse.archivemount -> @{HOME}/*/,
  mount fstype=fuse.archivemount -> @{HOME}/*/*/,

  /dev/fuse rw,


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

    # To mount anything:
    capability sys_admin,

    @{bin}/fusermount{,3} mr,

    mount fstype={fuse,fuse.archivemount} -> @{HOME}/*/,
    mount fstype={fuse,fuse.archivemount} -> @{HOME}/*/*/,

    /dev/fuse rw,

    /etc/fuse.conf r,

    owner @{HOME}/ r,
    /**.{tar,tar.gz,zip} r,
    /**.{TAR,TAR.GZ,ZIP} r,

    @{PROC}/@{pid}/mounts r,

  }

  include if exists <local/archivemount>
}
