mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2025-01-30 23:05:11 +01:00
3f69b9fec4
It is only used with the owner statement.
51 lines
1.5 KiB
Text
51 lines
1.5 KiB
Text
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2021 Mikhail Morfikov
|
|
# Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
abi <abi/3.0>,
|
|
|
|
include <tunables/global>
|
|
|
|
@{exec_path} = @{bin}/arduino-builder
|
|
profile arduino-builder @{exec_path} {
|
|
include <abstractions/base>
|
|
|
|
@{exec_path} mr,
|
|
|
|
@{bin}/ r,
|
|
@{bin}/avr-g++ rix,
|
|
@{bin}/avr-gcc rix,
|
|
@{bin}/avr-gcc-ar rix,
|
|
@{bin}/avr-size rix,
|
|
@{bin}/avrdude rix,
|
|
@{lib}/gcc/avr/@{int}/cc1plus rix,
|
|
@{lib}/gcc/avr/@{int}/cc1 rix,
|
|
@{lib}/gcc/avr/@{int}/collect2 rix,
|
|
@{lib}/gcc/avr/@{int}/lto-wrapper rix,
|
|
@{lib}/gcc/avr/@{int}/lto1 rix,
|
|
@{lib}/llvm-[0-9]*/bin/clang rix,
|
|
@{lib}/avr/bin/as rix,
|
|
@{lib}/avr/bin/ar rix,
|
|
@{lib}/avr/bin/ld rix,
|
|
@{lib}/avr/bin/objcopy rix,
|
|
|
|
@{bin}/arduino-ctags rPx,
|
|
|
|
/usr/share/arduino/{,**} r,
|
|
/usr/share/arduino-builder/{,**} r,
|
|
|
|
/usr/share/doc/arduino/{,**} r,
|
|
|
|
owner @{HOME}/Arduino/{,**} r,
|
|
|
|
@{sys}/kernel/mm/transparent_hugepage/hpage_pmd_size r,
|
|
|
|
/tmp/ r,
|
|
owner @{tmp}/cc* rw,
|
|
owner @{tmp}/untitled[0-9]*.tmp/{,**} rw,
|
|
owner @{tmp}/arduino_{build,cache}_[0-9]*/{,**} rw,
|
|
owner @{tmp}/arduino_modified_sketch_[0-9]*/{,**} rw,
|
|
|
|
include if exists <local/arduino-builder>
|
|
}
|