Josh Poimboeuf c6cfcbd8ca x86/ibt: Convert IBT selftest to asm
The following warning is reported when frame pointers and kernel IBT are
enabled:

  vmlinux.o: warning: objtool: ibt_selftest+0x11: sibling call from callable instruction with modified stack frame

The problem is that objtool interprets the indirect branch in
ibt_selftest() as a sibling call, and GCC inserts a (partial) frame
pointer prologue before it:

  0000 000000000003f550 <ibt_selftest>:
  0000    3f550:	f3 0f 1e fa          	endbr64
  0004    3f554:	e8 00 00 00 00       	call   3f559 <ibt_selftest+0x9>	3f555: R_X86_64_PLT32	__fentry__-0x4
  0009    3f559:	55                   	push   %rbp
  000a    3f55a:	48 8d 05 02 00 00 00 	lea    0x2(%rip),%rax        # 3f563 <ibt_selftest_ip>
  0011    3f561:	ff e0                	jmp    *%rax

Note the inline asm is missing ASM_CALL_CONSTRAINT, so the 'push %rbp'
happens before the indirect branch and the 'mov %rsp, %rbp' happens
afterwards.

Simplify the generated code and make it easier to understand for both
tools and humans by moving the selftest to proper asm.

Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/99a7e16b97bda97bf0a04aa141d6241cd8a839a2.1680912949.git.jpoimboe@kernel.org
2023-08-17 17:07:09 +02:00
..
2023-08-17 17:07:09 +02:00
2023-02-23 13:03:08 -08:00
2023-06-27 14:14:30 -07:00
2023-06-27 15:05:41 -07:00
2023-08-17 17:07:09 +02:00
2022-09-26 10:13:16 -07:00
2022-04-19 17:14:09 -07:00
2023-06-26 13:59:56 -07:00
2022-12-15 11:12:21 -08:00
2023-06-19 16:19:10 -07:00
2023-08-17 17:07:09 +02:00
2023-08-02 15:01:51 -07:00
2021-12-01 00:06:43 +01:00
2022-12-10 10:33:11 -06:00
2023-01-06 04:22:34 +01:00
2023-06-27 16:03:20 -07:00
2022-02-25 09:36:05 +01:00
2023-07-11 14:12:19 -07:00
2022-09-26 19:46:16 -07:00
2021-10-25 23:02:36 -04:00
2023-06-27 14:03:21 -07:00
2023-06-27 15:05:41 -07:00
2022-04-14 14:09:43 +02:00