60 lines
1.3 KiB
Text
60 lines
1.3 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2019-2021 Mikhail Morfikov
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
# vim:syntax=apparmor
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/gpodder
|
|
profile gpodder @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/desktop>
|
|
include <abstractions/fontconfig-cache-read>
|
|
include <abstractions/nameservice-strict>
|
|
include <abstractions/python>
|
|
include <abstractions/ssl_certs>
|
|
include <abstractions/user-download-strict>
|
|
|
|
network inet dgram,
|
|
network inet6 dgram,
|
|
network inet stream,
|
|
network inet6 stream,
|
|
network netlink raw,
|
|
|
|
@{exec_path} r,
|
|
@{bin}/python3.@{int} r,
|
|
|
|
@{bin}/ r,
|
|
@{sh_path} rix,
|
|
@{bin}/uname rix,
|
|
|
|
@{bin}/xdg-settings rPx,
|
|
@{open_path} rPx -> child-open,
|
|
|
|
# A/V players
|
|
@{bin}/smplayer rPUx,
|
|
@{bin}/vlc rPUx,
|
|
@{bin}/mpv rPUx,
|
|
|
|
/usr/share/gpodder/{,**} r,
|
|
|
|
/etc/fstab r,
|
|
/etc/mime.types r,
|
|
|
|
owner @{HOME}/ r,
|
|
owner @{HOME}/gPodder/ rw,
|
|
owner @{HOME}/gPodder/** rwk,
|
|
|
|
owner /var/tmp/etilqs_@{hex16} rw,
|
|
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
owner @{PROC}/@{pid}/mounts r,
|
|
owner @{PROC}/@{pid}/mountinfo r,
|
|
|
|
owner /dev/tty@{int} rw,
|
|
|
|
include if exists <local/gpodder>
|
|
}
|