# apparmor.d - Full set of apparmor profiles
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
# SPDX-License-Identifier: GPL-2.0-only

# This profile is designed to be used in a child profile to limit what
# confined application can invoke via open helper.

# This version of child-open only allow to open browsers.

# Note: This profile does not specify an attachment path because it is
# intended to be used only via "px -> child-open-browsers" exec transitions
# from other profiles.

abi <abi/4.0>,

include <tunables/global>

@{att} = /att/child-open-browsers/
profile child-open-browsers  flags=(attach_disconnected,attach_disconnected.path=@{att},mediate_deleted,complain) {
  include <abstractions/attached/base>
  include <abstractions/app/open>

  @{browsers_path}              px,
  @{bin}/flatpak                px,
  @{bin}/snap                   px,

  include if exists <usr/child-open-browsers.d>
  include if exists <local/child-open-browsers>
}

# vim:syntax=apparmor
