alpha: Implement "current_stack_pointer"
authorKees Cook <keescook@chromium.org>
Thu, 24 Feb 2022 06:05:58 +0000 (22:05 -0800)
committerMatt Turner <mattst88@gmail.com>
Tue, 14 Feb 2023 17:36:22 +0000 (12:36 -0500)
To follow the existing per-arch conventions replace open-coded use
of asm "$30" as "current_stack_pointer". This will let it be used in
non-arch places (like HARDENED_USERCOPY).

Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Mike Rapoport <rppt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: "Peter Zijlstra (Intel)" <peterz@infradead.org>
Cc: Kefeng Wang <wangkefeng.wang@huawei.com>
Cc: "Alexander A. Klimov" <grandmaster@al2klimov.de>
Cc: linux-alpha@vger.kernel.org
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Matt Turner <mattst88@gmail.com>
arch/alpha/Kconfig
arch/alpha/include/asm/thread_info.h
arch/alpha/lib/stacktrace.c

index 97fce73..780d467 100644 (file)
@@ -3,6 +3,7 @@ config ALPHA
        bool
        default y
        select ARCH_32BIT_USTAT_F_TINODE
+       select ARCH_HAS_CURRENT_STACK_POINTER
        select ARCH_MIGHT_HAVE_PC_PARPORT
        select ARCH_MIGHT_HAVE_PC_SERIO
        select ARCH_NO_PREEMPT
index 0826314..354247d 100644 (file)
@@ -41,6 +41,8 @@ struct thread_info {
 register struct thread_info *__current_thread_info __asm__("$8");
 #define current_thread_info()  __current_thread_info
 
+register unsigned long *current_stack_pointer __asm__ ("$30");
+
 #endif /* __ASSEMBLY__ */
 
 /* Thread information allocation.  */
index 62454a7..2b1176d 100644 (file)
@@ -92,7 +92,7 @@ stacktrace(void)
 {
        instr * ret_pc;
        instr * prologue = (instr *)stacktrace;
-       register unsigned char * sp __asm__ ("$30");
+       unsigned char *sp = (unsigned char *)current_stack_pointer;
 
        printk("\tstack trace:\n");
        do {