88 lines
2.1 KiB
Text
88 lines
2.1 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2020-2021 Mikhail Morfikov
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/openbox
|
|
profile openbox @{exec_path} {
|
|
include <abstractions/base>
|
|
include <abstractions/fonts>
|
|
include <abstractions/fontconfig-cache-read>
|
|
include <abstractions/freedesktop.org>
|
|
include <abstractions/nameservice-strict>
|
|
|
|
signal (send) set=(term, kill),
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{lib}/@{multiarch}/openbox-autostart rCx -> autostart,
|
|
|
|
# Apps allowed to run
|
|
@{bin}/* rPUx,
|
|
@{lib}/@{multiarch}/*/** rPUx,
|
|
@{lib}/* rPUx,
|
|
/usr/local/bin/* rPUx,
|
|
|
|
/usr/share/themes/*/openbox-3/themerc r,
|
|
|
|
/etc/xdg/openbox/* r,
|
|
|
|
owner @{HOME}/ r,
|
|
owner @{user_config_dirs}/openbox/ r,
|
|
owner @{user_config_dirs}/openbox/* r,
|
|
|
|
owner @{user_config_dirs}/obmenu-generator/icons/@{hex}.png r,
|
|
|
|
owner @{user_cache_dirs}/ rw,
|
|
owner @{user_cache_dirs}/openbox/ rw,
|
|
owner @{user_cache_dirs}/openbox/openbox.log rw,
|
|
owner @{user_cache_dirs}/openbox/sessions/ rw,
|
|
|
|
owner @{HOME}/.Xauthority r,
|
|
|
|
owner @{PROC}/@{pid}/fd/ r,
|
|
|
|
# file_inherit
|
|
owner /dev/tty@{int} rw,
|
|
owner @{HOME}/.xsession-errors w,
|
|
|
|
|
|
profile autostart {
|
|
include <abstractions/base>
|
|
|
|
@{lib}/@{multiarch}/openbox-autostart mr,
|
|
@{lib}/@{multiarch}/openbox-xdg-autostart rix,
|
|
|
|
@{bin}/{,ba,da}sh rix,
|
|
@{bin}/which{,.debianutils} rix,
|
|
|
|
# Apps allowed to run
|
|
@{bin}/* rPUx,
|
|
/usr/local/bin/* rPUx,
|
|
@{lib}/* rPUx,
|
|
@{lib}/@{multiarch}/*/** rPUx,
|
|
|
|
/usr/local/lib/python*/dist-packages/ r,
|
|
|
|
owner @{HOME}/ r,
|
|
owner @{user_config_dirs}/openbox/autostart r,
|
|
owner @{user_config_dirs}/autostart/{,*} r,
|
|
/etc/xdg/openbox/autostart r,
|
|
/etc/xdg/autostart/{,*} r,
|
|
|
|
# Silencer
|
|
deny @{lib}/python3/** w,
|
|
deny owner @{user_lib_dirs}/python*/site-packages/ r,
|
|
|
|
# file_inherit
|
|
owner @{HOME}/.xsession-errors w,
|
|
owner /dev/tty@{int} rw,
|
|
|
|
include if exists <local/openbox_autostart>
|
|
}
|
|
|
|
include if exists <local/openbox>
|
|
}
|