42 lines
903 B
Text
42 lines
903 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# 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}/arch-audit
|
|
profile arch-audit @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/ssl_certs>
|
|
|
|
capability dac_read_search,
|
|
|
|
network inet dgram,
|
|
network inet6 dgram,
|
|
network inet stream,
|
|
network inet6 stream,
|
|
network netlink raw,
|
|
|
|
@{exec_path} mr,
|
|
|
|
/etc/arch-audit/settings.toml r,
|
|
|
|
/usr/share/terminfo/** r,
|
|
|
|
/var/lib/pacman/local/{,**} r,
|
|
|
|
@{sys}/cgroup/cpu,cpuacct/user.slice/cpu.cfs_quota_us r,
|
|
@{sys}/fs/cgroup/cpu,cpuacct/cpu.cfs_quota_us r,
|
|
|
|
owner @{PROC}/@{pid}/cgroup r,
|
|
owner @{PROC}/@{pid}/mountinfo r,
|
|
|
|
/dev/pts/@{int} rw,
|
|
|
|
include if exists <local/arch-audit>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|