x86/callthunks: Handle %rip-relative relocations in call thunk template
authorUros Bizjak <ubizjak@gmail.com>
Sun, 5 Nov 2023 21:34:36 +0000 (22:34 +0100)
committerIngo Molnar <mingo@kernel.org>
Thu, 30 Nov 2023 19:06:17 +0000 (20:06 +0100)
commit17bce3b2ae2d52e8c5c12274ce4c3a631ce9e66b
tree64fed2ccae63192f4ff0dd193e9fbbc8b2d9a4fc
parent43bda69ed9e3b86d0ba5ff9256e437d50074d7d5
x86/callthunks: Handle %rip-relative relocations in call thunk template

Contrary to alternatives, relocations are currently not supported in
call thunk templates.  Re-use the existing infrastructure from
alternative.c to allow %rip-relative relocations when copying call
thunk template from its storage location.

The patch allows unification of ASM_INCREMENT_CALL_DEPTH, which already
uses PER_CPU_VAR macro, with INCREMENT_CALL_DEPTH, used in call thunk
template, which is currently limited to use absolute address.

Reuse existing relocation infrastructure from alternative.c.,
as suggested by Peter Zijlstra.

Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20231105213731.1878100-3-ubizjak@gmail.com
arch/x86/include/asm/text-patching.h
arch/x86/kernel/alternative.c
arch/x86/kernel/callthunks.c