69 lines
2 KiB
Text
69 lines
2 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/4.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{lib}/gnome-terminal-server
|
|
profile gnome-terminal-server @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/audio-client>
|
|
include <abstractions/bus-accessibility>
|
|
include <abstractions/bus-session>
|
|
include <abstractions/bus/org.a11y>
|
|
include <abstractions/bus/org.freedesktop.portal.Desktop>
|
|
include <abstractions/bus/org.gtk.vfs.MountTracker>
|
|
include <abstractions/consoles>
|
|
include <abstractions/dconf-write>
|
|
include <abstractions/gnome-strict>
|
|
|
|
signal send set=(hup) peer=htop,
|
|
signal send set=(term hup kill) peer=unconfined,
|
|
|
|
ptrace read peer=htop,
|
|
ptrace read peer=unconfined,
|
|
|
|
#aa:dbus own bus=session name=org.gnome.Terminal interface+=org.gtk.Actions
|
|
|
|
dbus receive bus=session path=/org/gnome/Terminal/SearchProvider
|
|
interface=org.gnome.Shell.SearchProvider2
|
|
peer=(name=:*, label=gnome-shell),
|
|
|
|
dbus send bus=session path=/org/freedesktop/systemd1
|
|
interface=org.freedesktop.systemd1.Manager
|
|
member=StartTransientUnit
|
|
peer=(name=org.freedesktop.systemd1, label="@{p_systemd_user}"),
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{lib}/gnome-terminal-preferences ix,
|
|
|
|
# The shell is not confined on purpose.
|
|
@{bin}/@{shells} Ux,
|
|
|
|
# Some CLI program can be launched directly from Gnome Shell
|
|
@{bin}/htop Px,
|
|
@{bin}/micro PUx,
|
|
@{bin}/nvtop Px,
|
|
|
|
@{open_path} Px -> child-open,
|
|
|
|
/etc/shells r,
|
|
|
|
owner @{user_config_dirs}/*xdg-terminals.list* rw,
|
|
owner @{user_config_dirs}/ibus/bus/ r,
|
|
owner @{user_config_dirs}/ibus/bus/@{hex32}-unix-{,wayland-}@{int} r,
|
|
|
|
owner @{tmp}/#@{int} rw,
|
|
|
|
@{PROC}/@{pids}/cmdline r,
|
|
@{PROC}/@{pids}/cgroup r,
|
|
|
|
/dev/ptmx rw,
|
|
|
|
include if exists <local/gnome-terminal-server>
|
|
}
|
|
|
|
# vim:syntax=apparmor
|