2023-09-06 20:55:22 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#
|
|
|
|
# PASST - Plug A Simple Socket Transport
|
|
|
|
# for qemu/UNIX domain socket mode
|
|
|
|
#
|
|
|
|
# PASTA - Pack A Subtle Tap Abstraction
|
|
|
|
# for network namespace/tap device mode
|
|
|
|
#
|
|
|
|
# contrib/apparmor/usr.bin.pasta - AppArmor profile for pasta(1)
|
|
|
|
#
|
|
|
|
# Copyright (c) 2022 Red Hat GmbH
|
|
|
|
# Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
|
|
|
|
abi <abi/3.0>,
|
|
|
|
|
|
|
|
include <tunables/global>
|
|
|
|
|
|
|
|
profile pasta /usr/bin/pasta{,.avx2} flags=(attach_disconnected) {
|
|
|
|
include <abstractions/pasta>
|
|
|
|
|
|
|
|
# Alternatively: include <abstractions/user-tmp>
|
2024-05-23 11:14:22 +00:00
|
|
|
/tmp/** rw, # tap_sock_unix_open(),
|
|
|
|
# tap_sock_unix_init(), pcap(),
|
|
|
|
# pidfile_open(),
|
|
|
|
# pidfile_write(),
|
2024-05-08 16:13:16 +00:00
|
|
|
# logfile_init(),
|
|
|
|
# pasta_open_ns()
|
2023-09-06 20:55:22 +00:00
|
|
|
|
2024-05-23 11:14:22 +00:00
|
|
|
owner @{HOME}/** w, # pcap(), pidfile_open(),
|
|
|
|
# pidfile_write()
|
2023-09-06 20:55:22 +00:00
|
|
|
}
|