116 lines
3 KiB
Text
116 lines
3 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2022-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{bin_dirs} = @{bin}/ /snap/{snapd,core}/@{int}@{bin}
|
|
@{lib_dirs} = @{lib}/ /snap/{snapd,core}/@{int}@{lib}
|
|
|
|
@{exec_path} = @{bin_dirs}/snap
|
|
profile snap @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/bus-session>
|
|
include <abstractions/bus-system>
|
|
include <abstractions/consoles>
|
|
include <abstractions/disks-read>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
capability dac_read_search,
|
|
capability setuid,
|
|
capability sys_admin,
|
|
|
|
unix (send, receive) type=stream peer=(label=apt),
|
|
|
|
mount options=(ro, silent) -> /tmp/snapd-auto-import-mount-@{int}/,
|
|
|
|
dbus send bus=session path=/org/freedesktop/systemd1
|
|
interface=org.freedesktop.systemd1.Manager
|
|
member=StartTransientUnit
|
|
peer=(name=org.freedesktop.systemd1, label="@{systemd_user}"),
|
|
|
|
dbus receive bus=session path=/org/freedesktop/systemd1
|
|
interface=org.freedesktop.systemd1.Manager
|
|
member=JobRemoved
|
|
peer=(name=:*, label="@{systemd_user}"),
|
|
|
|
dbus send bus=session path=/org/freedesktop/portal/documents
|
|
interface=org.freedesktop.portal.Documents
|
|
member=GetMountPoint
|
|
peer=(name=org.freedesktop.portal.Documents, label="{xdg-document-portal,unconfined}"),
|
|
|
|
@{exec_path} mrix,
|
|
|
|
@{bin}/mount rix,
|
|
|
|
@{bin}/gpg{,2} rCx -> gpg,
|
|
@{bin}/systemctl rCx -> systemctl,
|
|
|
|
@{lib_dirs}/snapd/snap-confine rPx,
|
|
@{lib_dirs}/snapd/snap-seccomp rPx,
|
|
@{lib_dirs}/snapd/snapd rPx,
|
|
|
|
/etc/fstab r,
|
|
|
|
/var/lib/snapd/{,**} rwk,
|
|
/var/cache/snapd/commands.db rwk,
|
|
/var/cache/snapd/names r,
|
|
|
|
@{HOME}/snap/{,**} rw,
|
|
/snap/{,**} rw,
|
|
/var/lib/gdm{,3}/snap/{,**} rw,
|
|
|
|
owner /tmp/snapd-auto-import-mount-@{int}/ rw,
|
|
|
|
@{run}/user/@{uid}/bus rw,
|
|
owner @{run}/user/@{uid}/.mutter-Xwaylandauth.@{rand6} r,
|
|
owner @{run}/user/@{uid}/gdm/Xauthority r,
|
|
owner @{run}/user/@{uid}/snapd-session-agent.socket rw,
|
|
owner @{run}/user/@{uid}/systemd/notify rw,
|
|
|
|
@{run}/mount/utab r,
|
|
@{run}/snapd.socket rw,
|
|
|
|
@{sys}/kernel/mm/transparent_hugepage/hpage_pmd_size r,
|
|
@{sys}/kernel/security/apparmor/features/ r,
|
|
|
|
@{PROC}/@{pids}/cgroup r,
|
|
@{PROC}/@{pids}/mountinfo r,
|
|
@{PROC}/cgroups r,
|
|
@{PROC}/cmdline r,
|
|
@{PROC}/sys/kernel/random/boot_id r,
|
|
@{PROC}/sys/kernel/random/uuid r,
|
|
@{PROC}/sys/kernel/seccomp/actions_avail r,
|
|
@{PROC}/version r,
|
|
|
|
/dev/tty@{int} rw,
|
|
/dev/ttyS@{int} rw,
|
|
|
|
deny @{user_share_dirs}/gvfs-metadata/* r,
|
|
|
|
profile gpg {
|
|
include <abstractions/base>
|
|
|
|
@{bin}/gpg{,2} mr,
|
|
|
|
@{bin}/dirmngr rix,
|
|
@{bin}/gpg-agent rix,
|
|
@{bin}/gpg-connect-agent rix,
|
|
|
|
owner @{HOME}/.snap/gnupg/ rw,
|
|
owner @{HOME}/.snap/gnupg/** rwkl,
|
|
|
|
include if exists <local/snap_gpg>
|
|
}
|
|
|
|
profile systemctl {
|
|
include <abstractions/base>
|
|
include <abstractions/systemctl>
|
|
|
|
include if exists <local/snap_systemctl>
|
|
}
|
|
|
|
include if exists <local/snap>
|
|
}
|