diff options
author | Mark Brown <broonie@kernel.org> | 2020-03-23 18:01:19 +0100 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2020-03-25 10:56:10 +0100 |
commit | 5d1b631c773ffbbadcbb3176a2ae0ea9d1c114c7 (patch) | |
tree | e0ced25f06a7d2d1a2507e80f2fa7760fb3c185b /arch/arm64/kernel | |
parent | arm64: elf: Fix allnoconfig kernel build with !ARCH_USE_GNU_PROPERTY (diff) | |
download | linux-5d1b631c773ffbbadcbb3176a2ae0ea9d1c114c7.tar.xz linux-5d1b631c773ffbbadcbb3176a2ae0ea9d1c114c7.zip |
arm64: bti: Document behaviour for dynamically linked binaries
For dynamically linked binaries the interpreter is responsible for setting
PROT_BTI on everything except itself. The dynamic linker needs to be aware
of PROT_BTI, for example in order to avoid dropping that when marking
executable pages read only after doing relocations, and doing everything
in userspace ensures that we don't get any issues due to divergences in
behaviour between the kernel and dynamic linker within a single executable.
Add a comment indicating that this is intentional to the code to help
people trying to understand what's going on.
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/kernel')
-rw-r--r-- | arch/arm64/kernel/process.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c index 24af13d7bde6..127aee478433 100644 --- a/arch/arm64/kernel/process.c +++ b/arch/arm64/kernel/process.c @@ -674,6 +674,11 @@ asmlinkage void __sched arm64_preempt_schedule_irq(void) int arch_elf_adjust_prot(int prot, const struct arch_elf_state *state, bool has_interp, bool is_interp) { + /* + * For dynamically linked executables the interpreter is + * responsible for setting PROT_BTI on everything except + * itself. + */ if (is_interp != has_interp) return prot; |