mirror of
https://github.com/ukui/kernel.git
synced 2026-03-09 10:07:04 -07:00
e6f3b3c9c1
Clang 14 added support for the __builtin_function_start function, which allows us to implement the function_nocfi macro without architecture-specific inline assembly and in a way that also works with static initializers. Change CONFIG_CFI_CLANG to depend on Clang >= 14, define function_nocfi using __builtin_function_start, and remove the arm64 inline assembly implementation. Link: https://github.com/llvm/llvm-project/commit/ec2e26eaf63558934f5b73a6e530edc453cf9508 Link: https://github.com/ClangBuiltLinux/linux/issues/1353 Signed-off-by: Sami Tolvanen <samitolvanen@google.com> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Reviewed-by: Mark Rutland <mark.rutland@arm.com> Tested-by: Mark Rutland <mark.rutland@arm.com> Acked-by: Will Deacon <will@kernel.org> # arm64 Reviewed-by: Nathan Chancellor <nathan@kernel.org> Signed-off-by: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20220405221618.633743-1-samitolvanen@google.com
27 lines
850 B
C
27 lines
850 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_COMPILER_H
|
|
#define __ASM_COMPILER_H
|
|
|
|
#ifdef ARM64_ASM_ARCH
|
|
#define ARM64_ASM_PREAMBLE ".arch " ARM64_ASM_ARCH "\n"
|
|
#else
|
|
#define ARM64_ASM_PREAMBLE
|
|
#endif
|
|
|
|
/*
|
|
* The EL0/EL1 pointer bits used by a pointer authentication code.
|
|
* This is dependent on TBI0/TBI1 being enabled, or bits 63:56 would also apply.
|
|
*/
|
|
#define ptrauth_user_pac_mask() GENMASK_ULL(54, vabits_actual)
|
|
#define ptrauth_kernel_pac_mask() GENMASK_ULL(63, vabits_actual)
|
|
|
|
/* Valid for EL0 TTBR0 and EL1 TTBR1 instruction pointers */
|
|
#define ptrauth_clear_pac(ptr) \
|
|
((ptr & BIT_ULL(55)) ? (ptr | ptrauth_kernel_pac_mask()) : \
|
|
(ptr & ~ptrauth_user_pac_mask()))
|
|
|
|
#define __builtin_return_address(val) \
|
|
(void *)(ptrauth_clear_pac((unsigned long)__builtin_return_address(val)))
|
|
|
|
#endif /* __ASM_COMPILER_H */
|