72884484b0
The podman CI on debian runs tests based on /tmp but pasta is failing there because it is unable to open the netns path as the open for read access is denied. Link: https://github.com/containers/podman/issues/22625 Signed-off-by: Paul Holzinger <pholzing@redhat.com> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
28 lines
730 B
Text
28 lines
730 B
Text
# 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>
|
|
owner /tmp/** rw, # tap_sock_unix_init(), pcap(),
|
|
# write_pidfile(),
|
|
# logfile_init(),
|
|
# pasta_open_ns()
|
|
|
|
owner @{HOME}/** w, # pcap(), write_pidfile()
|
|
}
|