As the number of abstraction is increasing, it is valuable to separate "base" abstractions to programs specific ones.
35 lines
868 B
Text
35 lines
868 B
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2023-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# Default profile for user sandboxed application
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
profile bwrap-app flags=(attach_disconnected,mediate_deleted) {
|
|
include <abstractions/base>
|
|
include <abstractions/common/app>
|
|
include <abstractions/fontconfig-cache-write>
|
|
|
|
network inet dgram,
|
|
network inet6 dgram,
|
|
network inet stream,
|
|
network inet6 stream,
|
|
network netlink raw,
|
|
|
|
ptrace peer=bwrap//&bwrap-app,
|
|
|
|
signal peer=bwrap//&bwrap-app,
|
|
|
|
@{bin}/** rmix,
|
|
@{lib}/** rmix,
|
|
/opt/*/** rmix,
|
|
/usr/share/*/* rmix,
|
|
|
|
owner /var/cache/ w,
|
|
|
|
include if exists <usr/bwrap-app.d>
|
|
include if exists <local/bwrap-app>
|
|
}
|