x86: Prepare inline-asm for straight-line-speculation
authorPeter Zijlstra <peterz@infradead.org>
Sat, 4 Dec 2021 13:43:41 +0000 (14:43 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 15 May 2022 18:18:50 +0000 (20:18 +0200)
[ Upstream commit b17c2baa305cccbd16bafa289fd743cc2db77966 ]

Replace all ret/retq instructions with ASM_RET in preparation of
making it more than a single instruction.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lore.kernel.org/r/20211204134907.964635458@infradead.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/x86/include/asm/linkage.h
arch/x86/include/asm/paravirt.h
arch/x86/include/asm/qspinlock_paravirt.h
arch/x86/kernel/alternative.c
arch/x86/kernel/kprobes/core.c
arch/x86/kernel/paravirt.c
arch/x86/kvm/emulate.c
arch/x86/lib/error-inject.c
samples/ftrace/ftrace-direct-modify.c
samples/ftrace/ftrace-direct-too.c
samples/ftrace/ftrace-direct.c

index 3651117..ebddec2 100644 (file)
 #define __ALIGN_STR    __stringify(__ALIGN)
 #endif
 
+#else /* __ASSEMBLY__ */
+
+#define ASM_RET        "ret\n\t"
+
 #endif /* __ASSEMBLY__ */
 
 #endif /* _ASM_X86_LINKAGE_H */
index da3a1ac..4d8b273 100644 (file)
@@ -665,7 +665,7 @@ bool __raw_callee_save___native_vcpu_is_preempted(long cpu);
            "call " #func ";"                                           \
            PV_RESTORE_ALL_CALLER_REGS                                  \
            FRAME_END                                                   \
-           "ret;"                                                      \
+           ASM_RET                                                     \
            ".size " PV_THUNK_NAME(func) ", .-" PV_THUNK_NAME(func) ";" \
            ".popsection")
 
index 159622e..1474cf9 100644 (file)
@@ -48,7 +48,7 @@ asm    (".pushsection .text;"
        "jne   .slowpath;"
        "pop   %rdx;"
        FRAME_END
-       "ret;"
+       ASM_RET
        ".slowpath: "
        "push   %rsi;"
        "movzbl %al,%esi;"
@@ -56,7 +56,7 @@ asm    (".pushsection .text;"
        "pop    %rsi;"
        "pop    %rdx;"
        FRAME_END
-       "ret;"
+       ASM_RET
        ".size " PV_UNLOCK ", .-" PV_UNLOCK ";"
        ".popsection");
 
index e9da3dc..4a116db 100644 (file)
@@ -537,7 +537,7 @@ asm (
 "      .type           int3_magic, @function\n"
 "int3_magic:\n"
 "      movl    $1, (%" _ASM_ARG1 ")\n"
-"      ret\n"
+       ASM_RET
 "      .size           int3_magic, .-int3_magic\n"
 "      .popsection\n"
 );
index b6e046e..f6727c6 100644 (file)
@@ -1044,7 +1044,7 @@ asm(
        RESTORE_REGS_STRING
        "       popfl\n"
 #endif
-       "       ret\n"
+       ASM_RET
        ".size kretprobe_trampoline, .-kretprobe_trampoline\n"
 );
 NOKPROBE_SYMBOL(kretprobe_trampoline);
index 04cafc0..f1cdb88 100644 (file)
@@ -41,7 +41,7 @@ extern void _paravirt_nop(void);
 asm (".pushsection .entry.text, \"ax\"\n"
      ".global _paravirt_nop\n"
      "_paravirt_nop:\n\t"
-     "ret\n\t"
+     ASM_RET
      ".size _paravirt_nop, . - _paravirt_nop\n\t"
      ".type _paravirt_nop, @function\n\t"
      ".popsection");
index 3747a75..9a18e5b 100644 (file)
@@ -315,7 +315,7 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
        __FOP_FUNC(#name)
 
 #define __FOP_RET(name) \
-       "ret \n\t" \
+       ASM_RET \
        ".size " name ", .-" name "\n\t"
 
 #define FOP_RET(name) \
@@ -435,7 +435,7 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
        __FOP_RET(#op)
 
 asm(".pushsection .fixup, \"ax\"\n"
-    "kvm_fastop_exception: xor %esi, %esi; ret\n"
+    "kvm_fastop_exception: xor %esi, %esi; " ASM_RET
     ".popsection");
 
 FOP_START(setcc)
index be5b5fb..5208970 100644 (file)
@@ -1,5 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0
 
+#include <linux/linkage.h>
 #include <linux/error-injection.h>
 #include <linux/kprobes.h>
 
@@ -10,7 +11,7 @@ asm(
        ".type just_return_func, @function\n"
        ".globl just_return_func\n"
        "just_return_func:\n"
-       "       ret\n"
+               ASM_RET
        ".size just_return_func, .-just_return_func\n"
 );
 
index 89e6bf2..d620f3d 100644 (file)
@@ -31,7 +31,7 @@ asm (
 "      call my_direct_func1\n"
 "      leave\n"
 "      .size           my_tramp1, .-my_tramp1\n"
-"      ret\n"
+       ASM_RET
 "      .type           my_tramp2, @function\n"
 "      .globl          my_tramp2\n"
 "   my_tramp2:"
@@ -39,7 +39,7 @@ asm (
 "      movq %rsp, %rbp\n"
 "      call my_direct_func2\n"
 "      leave\n"
-"      ret\n"
+       ASM_RET
 "      .size           my_tramp2, .-my_tramp2\n"
 "      .popsection\n"
 );
index 11b9932..3927cb8 100644 (file)
@@ -31,7 +31,7 @@ asm (
 "      popq %rsi\n"
 "      popq %rdi\n"
 "      leave\n"
-"      ret\n"
+       ASM_RET
 "      .size           my_tramp, .-my_tramp\n"
 "      .popsection\n"
 );
index 642c50b..1e901bb 100644 (file)
@@ -24,7 +24,7 @@ asm (
 "      call my_direct_func\n"
 "      popq %rdi\n"
 "      leave\n"
-"      ret\n"
+       ASM_RET
 "      .size           my_tramp, .-my_tramp\n"
 "      .popsection\n"
 );