# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2021-2022 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} = @{lib}/{,gvfs/}gvfsd-mtp
@{att} = ""
profile gvfsd-mtp /{,usr/}lib{,exec,32,64}/{,gvfs/}gvfsd-mtp flags=(complain) {
  include <abstractions/base-strict>
  include <abstractions/bus-session>
  include <abstractions/gvfs-backend>
  include <abstractions/dconf-write>
  include <abstractions/deny-sensitive-home>
  include <abstractions/devices-usb>
  include <abstractions/freedesktop.org>
  include <abstractions/private-files-strict>
  include <abstractions/user-download-strict>

  network netlink raw,

  @{exec_path} mr,

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

  owner @{run}/user/@{uid}/gvfsd/socket-@{rand8} rw,

  include if exists <local/gvfsd-mtp>
}

# vim:syntax=apparmor
