Re: [PATCH 3/7] objtool: Add support for intra-function calls

From: Julien Thierry
Date: Fri Apr 03 2020 - 04:01:49 EST




On 4/2/20 4:49 PM, Josh Poimboeuf wrote:
On Thu, Apr 02, 2020 at 01:53:49PM +0100, Julien Thierry wrote:
Hi Alexandre,

I ran into the limitation of intra-function call for the arm64 support but
didn't take the time to make a clean patch to support them properly.

Can you give an example of where arm64 uses intra-function calls? It
sounds sketchy to me :-) Is it really needed/useful?


So the most notable/necessary one(s) is the one in tramp_ventry [1]. This macro is used as the begining of exception handlers for exceptions coming from userland. It was added as part of the mitigations of spectre (v1???).

To give some context, x30 is the register that "ret" instruction will use as return address, "bl" is the equivalent of x86 "call" and sets x30 before jumping to the target address. (However, it doesn't have a special semantic for exception returns)

Note: I believe the comment about the return "stack" is about processor internal state (speculative thingies and all) rather than the actual stack, since the stack is untouched by that code. But I don't know the actual details.


There are also some in arch/arm64/crypto/crct10dif-ce-core.o , which is probably full of fast, smart and optimized code I don't understand :) . So I wouldn't feel confident commenting on whether those intra-function calls are needed or not.


Last I found is in qcom_link_stack_sanitization() [2], but that's just a workaround for a very specific hardware. In my local tree I just put the function as STACK_FRAME_NON_STANDARD. But the code just saves the return address, has 16 call instructions that just call the instruction after them, restores the return address and lets the C-function return normally (and it somehow fixes something for that hardware).


Those are the ones I stumbled on. So yes, it a bit sketchy, corner case code, but it's there and unlikely to go away.


[1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/arm64/kernel/entry.S?h=v5.6#n803

[2] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/arm64/kernel/cpu_errata.c?h=v5.6#n195

Cheers,

--
Julien Thierry