mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-11-15 07:54:17 +01:00
44 lines
921 B
Plaintext
44 lines
921 B
Plaintext
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = /{usr/,}bin/lspci
|
|
profile lspci @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/consoles>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
# Needed when run as root
|
|
capability sys_admin,
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{sys}/bus/pci/devices/ r,
|
|
@{sys}/bus/pci/slots/ r,
|
|
@{sys}/bus/pci/slots/[0-9]*/address r,
|
|
@{sys}/devices/pci[0-9]*/** r,
|
|
|
|
/usr/share/hwdata/pci.ids r,
|
|
/usr/share/misc/pci.ids r,
|
|
/usr/share/misc/pci.ids.gz r,
|
|
|
|
/etc/udev/hwdb.bin r,
|
|
|
|
/etc/modprobe.d/{,*.conf} r,
|
|
|
|
owner @{HOME}/.pciids-cache.tmp-*-@{pid} rw,
|
|
owner @{HOME}/.pciids-cache rw,
|
|
|
|
@{PROC}/cmdline r,
|
|
|
|
# file_inherit
|
|
@{PROC}/ioports r,
|
|
deny @{user_share_dirs}/gvfs-metadata/* r,
|
|
|
|
include if exists <local/lspci>
|
|
}
|