mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-18 17:08:09 +01:00
Add profiles for grub-mkconfig, grub-mkrelpath, grub-probe, grub-script-check and update-grub.
This commit is contained in:
parent
c0356e92e5
commit
169a730d3f
5 changed files with 163 additions and 0 deletions
78
apparmor.d/groups/grub/grub-mkconfig
Normal file
78
apparmor.d/groups/grub/grub-mkconfig
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
# apparmor.d - Full set of apparmor profiles
|
||||||
|
# Copyright (C) 2022 Jeroen Rijken
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
abi <abi/3.0>,
|
||||||
|
|
||||||
|
include <tunables/global>
|
||||||
|
|
||||||
|
@{exec_path} = /{usr/,}{s,}bin/grub-mkconfig
|
||||||
|
profile grub-mkconfig @{exec_path} flags=(complain) {
|
||||||
|
include <abstractions/base>
|
||||||
|
include <abstractions/consoles>
|
||||||
|
|
||||||
|
capability dac_read_search,
|
||||||
|
|
||||||
|
@{exec_path} rm,
|
||||||
|
/etc/grub.d/{**,} rix,
|
||||||
|
/{usr/,}bin/{m,g,}awk rix,
|
||||||
|
/{usr/,}bin/basename rix,
|
||||||
|
/{usr/,}bin/cat rix,
|
||||||
|
/{usr/,}bin/chmod rix,
|
||||||
|
/{usr/,}bin/cut rix,
|
||||||
|
/{usr/,}bin/date rix,
|
||||||
|
/{usr/,}bin/dirname rix,
|
||||||
|
/{usr/,}bin/dpkg rPx,
|
||||||
|
/{usr/,}bin/find rix,
|
||||||
|
/{usr/,}bin/findmnt rPx,
|
||||||
|
/{usr/,}bin/gettext rix,
|
||||||
|
/{usr/,}bin/{e,f,}grep rix,
|
||||||
|
/{usr/,}bin/lsb_release rPx -> lsb_release,
|
||||||
|
/{usr/,}bin/grub-mkrelpath rPx,
|
||||||
|
/{usr/,}bin/grub-script-check rPx,
|
||||||
|
/{usr/,}bin/head rix,
|
||||||
|
/{usr/,}bin/id rPx,
|
||||||
|
/{usr/,}bin/ls rix,
|
||||||
|
/{usr/,}bin/mktemp rix,
|
||||||
|
/{usr/,}bin/mount rPx,
|
||||||
|
/{usr/,}bin/mountpoint rix,
|
||||||
|
/{usr/,}bin/paste rix,
|
||||||
|
/{usr/,}bin/readlink rix,
|
||||||
|
/{usr/,}bin/rm rix,
|
||||||
|
/{usr/,}bin/rmdir rix,
|
||||||
|
/{usr/,}bin/sed rix,
|
||||||
|
/{usr/,}bin/{,ba,da}sh rix,
|
||||||
|
/{usr/,}bin/sort rix,
|
||||||
|
/{usr/,}bin/stat rix,
|
||||||
|
/{usr/,}bin/tail rix,
|
||||||
|
/{usr/,}bin/tr rix,
|
||||||
|
/{usr/,}bin/umount rPx,
|
||||||
|
/{usr/,}bin/uname rix,
|
||||||
|
/{usr/,}bin/which{.debianutils,} rix,
|
||||||
|
/{usr/,}{s,}bin/dmsetup rPUx,
|
||||||
|
/{usr/,}{s,}bin/grub-probe rPx,
|
||||||
|
/{usr/,}{local/,}{s,}bin/zfs rPx,
|
||||||
|
/{usr/,}{local/,}{s,}bin/zpool rPx,
|
||||||
|
|
||||||
|
/boot/{**,} r,
|
||||||
|
/boot/grub/{**,} rw,
|
||||||
|
|
||||||
|
/etc/default/grub r,
|
||||||
|
/etc/default/grub.d/{*,} r,
|
||||||
|
|
||||||
|
/usr/share/grub/{**,} r,
|
||||||
|
|
||||||
|
/.zfs/snapshot/*/etc/{machine-id,} r,
|
||||||
|
/.zfs/snapshot/*/{usr/,}lib/os-release r,
|
||||||
|
|
||||||
|
/ r,
|
||||||
|
|
||||||
|
owner /tmp/** rw,
|
||||||
|
|
||||||
|
@{PROC}/@{pids}/mountinfo r,
|
||||||
|
@{PROC}/@{pids}/mounts r,
|
||||||
|
|
||||||
|
@{sys}/firmware/efi/efivars/OsIndicationsSupported-@{uuid} r,
|
||||||
|
|
||||||
|
include if exists <local/grub-mkconfig>
|
||||||
|
}
|
20
apparmor.d/groups/grub/grub-mkrelpath
Normal file
20
apparmor.d/groups/grub/grub-mkrelpath
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# apparmor.d - Full set of apparmor profiles
|
||||||
|
# Copyright (C) 2022 Jeroen Rijken
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
abi <abi/3.0>,
|
||||||
|
|
||||||
|
include <tunables/global>
|
||||||
|
|
||||||
|
@{exec_path} = /{usr/,}{s,}bin/grub-mkrelpath
|
||||||
|
profile grub-mkrelpath @{exec_path} flags=(complain) {
|
||||||
|
include <abstractions/base>
|
||||||
|
include <abstractions/consoles>
|
||||||
|
|
||||||
|
@{exec_path} rm,
|
||||||
|
/{usr/,}{local/,}{s,}bin/zpool rPx,
|
||||||
|
|
||||||
|
@{PROC}/@{pids}/mountinfo r,
|
||||||
|
|
||||||
|
include if exists <local/grub-mkrelpath>
|
||||||
|
}
|
28
apparmor.d/groups/grub/grub-probe
Normal file
28
apparmor.d/groups/grub/grub-probe
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# apparmor.d - Full set of apparmor profiles
|
||||||
|
# Copyright (C) 2022 Jeroen Rijken
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
abi <abi/3.0>,
|
||||||
|
|
||||||
|
include <tunables/global>
|
||||||
|
|
||||||
|
@{exec_path} = /{usr/,}{s,}bin/grub-probe
|
||||||
|
profile grub-probe @{exec_path} flags=(complain) {
|
||||||
|
include <abstractions/base>
|
||||||
|
include <abstractions/consoles>
|
||||||
|
include <abstractions/disks-read>
|
||||||
|
|
||||||
|
capability sys_admin,
|
||||||
|
|
||||||
|
@{exec_path} rm,
|
||||||
|
/{usr/,}bin/lsb_release rPx -> lsb_release,
|
||||||
|
/{usr/,}bin/udevadm rPx,
|
||||||
|
/{usr/,}{local/,}{s,}bin/zpool rPx,
|
||||||
|
|
||||||
|
@{PROC}/@{pids}/mountinfo r,
|
||||||
|
@{PROC}/devices r,
|
||||||
|
|
||||||
|
/dev/mapper/control rw,
|
||||||
|
|
||||||
|
include if exists <local/grub-probe>
|
||||||
|
}
|
19
apparmor.d/groups/grub/grub-script-check
Normal file
19
apparmor.d/groups/grub/grub-script-check
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# apparmor.d - Full set of apparmor profiles
|
||||||
|
# Copyright (C) 2022 Jeroen Rijken
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
abi <abi/3.0>,
|
||||||
|
|
||||||
|
include <tunables/global>
|
||||||
|
|
||||||
|
@{exec_path} = /{usr/,}bin/grub-script-check
|
||||||
|
profile grub-script-check @{exec_path} flags=(complain) {
|
||||||
|
include <abstractions/base>
|
||||||
|
include <abstractions/consoles>
|
||||||
|
|
||||||
|
@{exec_path} rm,
|
||||||
|
|
||||||
|
/boot/grub/grub.cfg{.new,} rw,
|
||||||
|
|
||||||
|
include if exists <local/grub-script-check>
|
||||||
|
}
|
18
apparmor.d/groups/ubuntu/update-grub
Normal file
18
apparmor.d/groups/ubuntu/update-grub
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# apparmor.d - Full set of apparmor profiles
|
||||||
|
# Copyright (C) 2022 Jeroen Rijken
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
abi <abi/3.0>,
|
||||||
|
|
||||||
|
include <tunables/global>
|
||||||
|
|
||||||
|
@{exec_path} = /{usr/,}{s,}bin/update-grub{2,}
|
||||||
|
profile update-grub @{exec_path} flags=(complain) {
|
||||||
|
include <abstractions/base>
|
||||||
|
|
||||||
|
@{exec_path} rm,
|
||||||
|
/{usr/,}bin/{,ba,da}sh rix,
|
||||||
|
/{usr/,}{s,}bin/grub-mkconfig rPx,
|
||||||
|
|
||||||
|
include if exists <local/update-grub>
|
||||||
|
}
|
Loading…
Reference in a new issue