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

  # To be able to manage network interfaces.
  capability net_admin,

  # Needed?
  audit deny capability sys_module,

  network netlink raw,

  @{exec_path} mr,

  @{sys}/devices/@{pci}/ieee80211/phy@{int}/index r,

  # file_inherit
  owner /dev/tty@{int} rw,

  include if exists <local/iw>
}

# vim:syntax=apparmor
