1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0 21da177e4SLinus Torvalds /* 31da177e4SLinus Torvalds * Kernel unwinding support 41da177e4SLinus Torvalds * 51da177e4SLinus Torvalds * (c) 2002-2004 Randolph Chung <tausq@debian.org> 61da177e4SLinus Torvalds * 71da177e4SLinus Torvalds * Derived partially from the IA64 implementation. The PA-RISC 81da177e4SLinus Torvalds * Runtime Architecture Document is also a useful reference to 91da177e4SLinus Torvalds * understand what is happening here 101da177e4SLinus Torvalds */ 111da177e4SLinus Torvalds 121da177e4SLinus Torvalds #include <linux/kernel.h> 131da177e4SLinus Torvalds #include <linux/init.h> 14e6fc0449SMatthew Wilcox #include <linux/sched.h> 151da177e4SLinus Torvalds #include <linux/slab.h> 168f78df87SHelge Deller #include <linux/sort.h> 172214c0e7SHelge Deller #include <linux/sched/task_stack.h> 181da177e4SLinus Torvalds 197c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 201da177e4SLinus Torvalds #include <asm/assembly.h> 2105dc16d6SRandolph Chung #include <asm/asm-offsets.h> 2205dc16d6SRandolph Chung #include <asm/ptrace.h> 231da177e4SLinus Torvalds 241da177e4SLinus Torvalds #include <asm/unwind.h> 258e0ba125SSven Schnelle #include <asm/switch_to.h> 268e0ba125SSven Schnelle #include <asm/sections.h> 27*a7fde0bfSHelge Deller #include <asm/ftrace.h> 281da177e4SLinus Torvalds 291da177e4SLinus Torvalds /* #define DEBUG 1 */ 301da177e4SLinus Torvalds #ifdef DEBUG 3163ba82c0SHelge Deller #define dbg(x...) pr_debug(x) 321da177e4SLinus Torvalds #else 33*a7fde0bfSHelge Deller #define dbg(x...) do { } while (0) 341da177e4SLinus Torvalds #endif 351da177e4SLinus Torvalds 3633a932d1SHelge Deller #define KERNEL_START (KERNEL_BINARY_TEXT_START) 37e036306aSRandolph Chung 381da177e4SLinus Torvalds extern struct unwind_table_entry __start___unwind[]; 391da177e4SLinus Torvalds extern struct unwind_table_entry __stop___unwind[]; 401da177e4SLinus Torvalds 4176cffeb6SHelge Deller static DEFINE_SPINLOCK(unwind_lock); 421da177e4SLinus Torvalds /* 431da177e4SLinus Torvalds * the kernel unwind block is not dynamically allocated so that 441da177e4SLinus Torvalds * we can call unwind_init as early in the bootup process as 451da177e4SLinus Torvalds * possible (before the slab allocator is initialized) 461da177e4SLinus Torvalds */ 4747293774SHelge Deller static struct unwind_table kernel_unwind_table __ro_after_init; 481da177e4SLinus Torvalds static LIST_HEAD(unwind_tables); 491da177e4SLinus Torvalds 501da177e4SLinus Torvalds static inline const struct unwind_table_entry * 511da177e4SLinus Torvalds find_unwind_entry_in_table(const struct unwind_table *table, unsigned long addr) 521da177e4SLinus Torvalds { 531da177e4SLinus Torvalds const struct unwind_table_entry *e = NULL; 541da177e4SLinus Torvalds unsigned long lo, hi, mid; 551da177e4SLinus Torvalds 561da177e4SLinus Torvalds lo = 0; 571da177e4SLinus Torvalds hi = table->length - 1; 581da177e4SLinus Torvalds 591da177e4SLinus Torvalds while (lo <= hi) { 601da177e4SLinus Torvalds mid = (hi - lo) / 2 + lo; 611da177e4SLinus Torvalds e = &table->table[mid]; 621da177e4SLinus Torvalds if (addr < e->region_start) 631da177e4SLinus Torvalds hi = mid - 1; 641da177e4SLinus Torvalds else if (addr > e->region_end) 651da177e4SLinus Torvalds lo = mid + 1; 661da177e4SLinus Torvalds else 671da177e4SLinus Torvalds return e; 681da177e4SLinus Torvalds } 691da177e4SLinus Torvalds 701da177e4SLinus Torvalds return NULL; 711da177e4SLinus Torvalds } 721da177e4SLinus Torvalds 731da177e4SLinus Torvalds static const struct unwind_table_entry * 741da177e4SLinus Torvalds find_unwind_entry(unsigned long addr) 751da177e4SLinus Torvalds { 761da177e4SLinus Torvalds struct unwind_table *table; 771da177e4SLinus Torvalds const struct unwind_table_entry *e = NULL; 781da177e4SLinus Torvalds 791da177e4SLinus Torvalds if (addr >= kernel_unwind_table.start && 801da177e4SLinus Torvalds addr <= kernel_unwind_table.end) 811da177e4SLinus Torvalds e = find_unwind_entry_in_table(&kernel_unwind_table, addr); 82be24a897SMikulas Patocka else { 83be24a897SMikulas Patocka unsigned long flags; 84be24a897SMikulas Patocka 85be24a897SMikulas Patocka spin_lock_irqsave(&unwind_lock, flags); 861da177e4SLinus Torvalds list_for_each_entry(table, &unwind_tables, list) { 871da177e4SLinus Torvalds if (addr >= table->start && 881da177e4SLinus Torvalds addr <= table->end) 891da177e4SLinus Torvalds e = find_unwind_entry_in_table(table, addr); 90b1b1d4a6SPhil Carmody if (e) { 91b1b1d4a6SPhil Carmody /* Move-to-front to exploit common traces */ 92b1b1d4a6SPhil Carmody list_move(&table->list, &unwind_tables); 931da177e4SLinus Torvalds break; 941da177e4SLinus Torvalds } 95b1b1d4a6SPhil Carmody } 96be24a897SMikulas Patocka spin_unlock_irqrestore(&unwind_lock, flags); 97be24a897SMikulas Patocka } 981da177e4SLinus Torvalds 991da177e4SLinus Torvalds return e; 1001da177e4SLinus Torvalds } 1011da177e4SLinus Torvalds 1021da177e4SLinus Torvalds static void 1031da177e4SLinus Torvalds unwind_table_init(struct unwind_table *table, const char *name, 1041da177e4SLinus Torvalds unsigned long base_addr, unsigned long gp, 1051da177e4SLinus Torvalds void *table_start, void *table_end) 1061da177e4SLinus Torvalds { 1071da177e4SLinus Torvalds struct unwind_table_entry *start = table_start; 1081da177e4SLinus Torvalds struct unwind_table_entry *end = 1091da177e4SLinus Torvalds (struct unwind_table_entry *)table_end - 1; 1101da177e4SLinus Torvalds 1111da177e4SLinus Torvalds table->name = name; 1121da177e4SLinus Torvalds table->base_addr = base_addr; 1131da177e4SLinus Torvalds table->gp = gp; 1141da177e4SLinus Torvalds table->start = base_addr + start->region_start; 1151da177e4SLinus Torvalds table->end = base_addr + end->region_end; 1161da177e4SLinus Torvalds table->table = (struct unwind_table_entry *)table_start; 1171da177e4SLinus Torvalds table->length = end - start + 1; 1181da177e4SLinus Torvalds INIT_LIST_HEAD(&table->list); 1191da177e4SLinus Torvalds 1201da177e4SLinus Torvalds for (; start <= end; start++) { 1211da177e4SLinus Torvalds if (start < end && 1221da177e4SLinus Torvalds start->region_end > (start+1)->region_start) { 123c8921d72SHelge Deller pr_warn("Out of order unwind entry! %px and %px\n", 124c8921d72SHelge Deller start, start+1); 1251da177e4SLinus Torvalds } 1261da177e4SLinus Torvalds 1271da177e4SLinus Torvalds start->region_start += base_addr; 1281da177e4SLinus Torvalds start->region_end += base_addr; 1291da177e4SLinus Torvalds } 1301da177e4SLinus Torvalds } 1311da177e4SLinus Torvalds 1328f78df87SHelge Deller static int cmp_unwind_table_entry(const void *a, const void *b) 1338f78df87SHelge Deller { 1348f78df87SHelge Deller return ((const struct unwind_table_entry *)a)->region_start 1358f78df87SHelge Deller - ((const struct unwind_table_entry *)b)->region_start; 1368f78df87SHelge Deller } 1378f78df87SHelge Deller 1381da177e4SLinus Torvalds static void 1391da177e4SLinus Torvalds unwind_table_sort(struct unwind_table_entry *start, 1401da177e4SLinus Torvalds struct unwind_table_entry *finish) 1411da177e4SLinus Torvalds { 1428f78df87SHelge Deller sort(start, finish - start, sizeof(struct unwind_table_entry), 1438f78df87SHelge Deller cmp_unwind_table_entry, NULL); 1441da177e4SLinus Torvalds } 1451da177e4SLinus Torvalds 1461da177e4SLinus Torvalds struct unwind_table * 1471da177e4SLinus Torvalds unwind_table_add(const char *name, unsigned long base_addr, 1481da177e4SLinus Torvalds unsigned long gp, 1491da177e4SLinus Torvalds void *start, void *end) 1501da177e4SLinus Torvalds { 1511da177e4SLinus Torvalds struct unwind_table *table; 1521da177e4SLinus Torvalds unsigned long flags; 1531da177e4SLinus Torvalds struct unwind_table_entry *s = (struct unwind_table_entry *)start; 1541da177e4SLinus Torvalds struct unwind_table_entry *e = (struct unwind_table_entry *)end; 1551da177e4SLinus Torvalds 1561da177e4SLinus Torvalds unwind_table_sort(s, e); 1571da177e4SLinus Torvalds 1581da177e4SLinus Torvalds table = kmalloc(sizeof(struct unwind_table), GFP_USER); 1591da177e4SLinus Torvalds if (table == NULL) 1601da177e4SLinus Torvalds return NULL; 1611da177e4SLinus Torvalds unwind_table_init(table, name, base_addr, gp, start, end); 1621da177e4SLinus Torvalds spin_lock_irqsave(&unwind_lock, flags); 1631da177e4SLinus Torvalds list_add_tail(&table->list, &unwind_tables); 1641da177e4SLinus Torvalds spin_unlock_irqrestore(&unwind_lock, flags); 1651da177e4SLinus Torvalds 1661da177e4SLinus Torvalds return table; 1671da177e4SLinus Torvalds } 1681da177e4SLinus Torvalds 1691da177e4SLinus Torvalds void unwind_table_remove(struct unwind_table *table) 1701da177e4SLinus Torvalds { 1711da177e4SLinus Torvalds unsigned long flags; 1721da177e4SLinus Torvalds 1731da177e4SLinus Torvalds spin_lock_irqsave(&unwind_lock, flags); 1741da177e4SLinus Torvalds list_del(&table->list); 1751da177e4SLinus Torvalds spin_unlock_irqrestore(&unwind_lock, flags); 1761da177e4SLinus Torvalds 1771da177e4SLinus Torvalds kfree(table); 1781da177e4SLinus Torvalds } 1791da177e4SLinus Torvalds 1801da177e4SLinus Torvalds /* Called from setup_arch to import the kernel unwind info */ 181c790b41bSHelge Deller int __init unwind_init(void) 1821da177e4SLinus Torvalds { 183*a7fde0bfSHelge Deller long start __maybe_unused, stop __maybe_unused; 1841da177e4SLinus Torvalds register unsigned long gp __asm__ ("r27"); 1851da177e4SLinus Torvalds 1861da177e4SLinus Torvalds start = (long)&__start___unwind[0]; 1871da177e4SLinus Torvalds stop = (long)&__stop___unwind[0]; 1881da177e4SLinus Torvalds 18963ba82c0SHelge Deller dbg("unwind_init: start = 0x%lx, end = 0x%lx, entries = %lu\n", 1901da177e4SLinus Torvalds start, stop, 1911da177e4SLinus Torvalds (stop - start) / sizeof(struct unwind_table_entry)); 1921da177e4SLinus Torvalds 1931da177e4SLinus Torvalds unwind_table_init(&kernel_unwind_table, "kernel", KERNEL_START, 1941da177e4SLinus Torvalds gp, 1951da177e4SLinus Torvalds &__start___unwind[0], &__stop___unwind[0]); 1961da177e4SLinus Torvalds #if 0 1971da177e4SLinus Torvalds { 1981da177e4SLinus Torvalds int i; 1991da177e4SLinus Torvalds for (i = 0; i < 10; i++) 2001da177e4SLinus Torvalds { 2011da177e4SLinus Torvalds printk("region 0x%x-0x%x\n", 2021da177e4SLinus Torvalds __start___unwind[i].region_start, 2031da177e4SLinus Torvalds __start___unwind[i].region_end); 2041da177e4SLinus Torvalds } 2051da177e4SLinus Torvalds } 2061da177e4SLinus Torvalds #endif 2071da177e4SLinus Torvalds return 0; 2081da177e4SLinus Torvalds } 2091da177e4SLinus Torvalds 2108e0ba125SSven Schnelle static bool pc_is_kernel_fn(unsigned long pc, void *fn) 2118e0ba125SSven Schnelle { 2128e0ba125SSven Schnelle return (unsigned long)dereference_kernel_function_descriptor(fn) == pc; 2138e0ba125SSven Schnelle } 2148e0ba125SSven Schnelle 21505dc16d6SRandolph Chung static int unwind_special(struct unwind_frame_info *info, unsigned long pc, int frame_size) 21605dc16d6SRandolph Chung { 217c8921d72SHelge Deller /* 218c8921d72SHelge Deller * We have to use void * instead of a function pointer, because 219c8921d72SHelge Deller * function pointers aren't a pointer to the function on 64-bit. 220c8921d72SHelge Deller * Make them const so the compiler knows they live in .text 2218801ccb9SHelge Deller * Note: We could use dereference_kernel_function_descriptor() 2228801ccb9SHelge Deller * instead but we want to keep it simple here. 223c8921d72SHelge Deller */ 224c8921d72SHelge Deller extern void * const handle_interruption; 225c8921d72SHelge Deller extern void * const ret_from_kernel_thread; 226c8921d72SHelge Deller extern void * const syscall_exit; 227c8921d72SHelge Deller extern void * const intr_return; 228c8921d72SHelge Deller extern void * const _switch_to_ret; 229c8921d72SHelge Deller #ifdef CONFIG_IRQSTACKS 2308801ccb9SHelge Deller extern void * const _call_on_stack; 231c8921d72SHelge Deller #endif /* CONFIG_IRQSTACKS */ 23205dc16d6SRandolph Chung 2338e0ba125SSven Schnelle if (pc_is_kernel_fn(pc, handle_interruption)) { 23405dc16d6SRandolph Chung struct pt_regs *regs = (struct pt_regs *)(info->sp - frame_size - PT_SZ_ALGN); 23505dc16d6SRandolph Chung dbg("Unwinding through handle_interruption()\n"); 23605dc16d6SRandolph Chung info->prev_sp = regs->gr[30]; 23705dc16d6SRandolph Chung info->prev_ip = regs->iaoq[0]; 23805dc16d6SRandolph Chung return 1; 23905dc16d6SRandolph Chung } 24005dc16d6SRandolph Chung 2418e0ba125SSven Schnelle if (pc_is_kernel_fn(pc, ret_from_kernel_thread) || 2428e0ba125SSven Schnelle pc_is_kernel_fn(pc, syscall_exit)) { 243c8921d72SHelge Deller info->prev_sp = info->prev_ip = 0; 244c8921d72SHelge Deller return 1; 245c8921d72SHelge Deller } 246c8921d72SHelge Deller 2478e0ba125SSven Schnelle if (pc_is_kernel_fn(pc, intr_return)) { 248c8921d72SHelge Deller struct pt_regs *regs; 249c8921d72SHelge Deller 250c8921d72SHelge Deller dbg("Found intr_return()\n"); 251c8921d72SHelge Deller regs = (struct pt_regs *)(info->sp - PT_SZ_ALGN); 252c8921d72SHelge Deller info->prev_sp = regs->gr[30]; 253c8921d72SHelge Deller info->prev_ip = regs->iaoq[0]; 254c8921d72SHelge Deller info->rp = regs->gr[2]; 255c8921d72SHelge Deller return 1; 256c8921d72SHelge Deller } 257c8921d72SHelge Deller 2588e0ba125SSven Schnelle if (pc_is_kernel_fn(pc, _switch_to) || 2598e0ba125SSven Schnelle pc_is_kernel_fn(pc, _switch_to_ret)) { 260c8921d72SHelge Deller info->prev_sp = info->sp - CALLEE_SAVE_FRAME_SIZE; 261c8921d72SHelge Deller info->prev_ip = *(unsigned long *)(info->prev_sp - RP_OFFSET); 262c8921d72SHelge Deller return 1; 263c8921d72SHelge Deller } 264c8921d72SHelge Deller 265c8921d72SHelge Deller #ifdef CONFIG_IRQSTACKS 2668e0ba125SSven Schnelle if (pc_is_kernel_fn(pc, _call_on_stack)) { 267c8921d72SHelge Deller info->prev_sp = *(unsigned long *)(info->sp - FRAME_SIZE - REG_SZ); 268c8921d72SHelge Deller info->prev_ip = *(unsigned long *)(info->sp - FRAME_SIZE - RP_OFFSET); 269c8921d72SHelge Deller return 1; 270c8921d72SHelge Deller } 271c8921d72SHelge Deller #endif 27205dc16d6SRandolph Chung return 0; 27305dc16d6SRandolph Chung } 27405dc16d6SRandolph Chung 2751da177e4SLinus Torvalds static void unwind_frame_regs(struct unwind_frame_info *info) 2761da177e4SLinus Torvalds { 2771da177e4SLinus Torvalds const struct unwind_table_entry *e; 2781da177e4SLinus Torvalds unsigned long npc; 2791da177e4SLinus Torvalds unsigned int insn; 2801da177e4SLinus Torvalds long frame_size = 0; 2811da177e4SLinus Torvalds int looking_for_rp, rpoffset = 0; 2821da177e4SLinus Torvalds 2831da177e4SLinus Torvalds e = find_unwind_entry(info->ip); 2841da177e4SLinus Torvalds if (e == NULL) { 2851da177e4SLinus Torvalds unsigned long sp; 2861da177e4SLinus Torvalds 287c8921d72SHelge Deller dbg("Cannot find unwind entry for %pS; forced unwinding\n", 288c8921d72SHelge Deller (void *) info->ip); 2891da177e4SLinus Torvalds 2901da177e4SLinus Torvalds /* Since we are doing the unwinding blind, we don't know if 2911da177e4SLinus Torvalds we are adjusting the stack correctly or extracting the rp 2921da177e4SLinus Torvalds correctly. The rp is checked to see if it belongs to the 2931da177e4SLinus Torvalds kernel text section, if not we assume we don't have a 2941da177e4SLinus Torvalds correct stack frame and we continue to unwind the stack. 2951da177e4SLinus Torvalds This is not quite correct, and will fail for loadable 2961da177e4SLinus Torvalds modules. */ 2971da177e4SLinus Torvalds sp = info->sp & ~63; 2981da177e4SLinus Torvalds do { 2991da177e4SLinus Torvalds unsigned long tmp; 3001da177e4SLinus Torvalds 3011da177e4SLinus Torvalds info->prev_sp = sp - 64; 3021da177e4SLinus Torvalds info->prev_ip = 0; 303e77900abSHelge Deller 3042214c0e7SHelge Deller /* Check if stack is inside kernel stack area */ 3052214c0e7SHelge Deller if ((info->prev_sp - (unsigned long) task_stack_page(info->t)) 3062214c0e7SHelge Deller >= THREAD_SIZE) { 307e77900abSHelge Deller info->prev_sp = 0; 308e77900abSHelge Deller break; 309e77900abSHelge Deller } 310e77900abSHelge Deller 311cf2ec789SSven Schnelle if (copy_from_kernel_nofault(&tmp, 312cf2ec789SSven Schnelle (void *)info->prev_sp - RP_OFFSET, sizeof(tmp))) 3131da177e4SLinus Torvalds break; 3141da177e4SLinus Torvalds info->prev_ip = tmp; 3151da177e4SLinus Torvalds sp = info->prev_sp; 316c790b41bSHelge Deller } while (!kernel_text_address(info->prev_ip)); 3171da177e4SLinus Torvalds 3181da177e4SLinus Torvalds info->rp = 0; 3191da177e4SLinus Torvalds 3201da177e4SLinus Torvalds dbg("analyzing func @ %lx with no unwind info, setting " 3211da177e4SLinus Torvalds "prev_sp=%lx prev_ip=%lx\n", info->ip, 3221da177e4SLinus Torvalds info->prev_sp, info->prev_ip); 3231da177e4SLinus Torvalds } else { 3241da177e4SLinus Torvalds dbg("e->start = 0x%x, e->end = 0x%x, Save_SP = %d, " 3251da177e4SLinus Torvalds "Save_RP = %d, Millicode = %d size = %u\n", 3261da177e4SLinus Torvalds e->region_start, e->region_end, e->Save_SP, e->Save_RP, 3271da177e4SLinus Torvalds e->Millicode, e->Total_frame_size); 3281da177e4SLinus Torvalds 3291da177e4SLinus Torvalds looking_for_rp = e->Save_RP; 3301da177e4SLinus Torvalds 3311da177e4SLinus Torvalds for (npc = e->region_start; 3321da177e4SLinus Torvalds (frame_size < (e->Total_frame_size << 3) || 3331da177e4SLinus Torvalds looking_for_rp) && 3341da177e4SLinus Torvalds npc < info->ip; 3351da177e4SLinus Torvalds npc += 4) { 3361da177e4SLinus Torvalds 3371da177e4SLinus Torvalds insn = *(unsigned int *)npc; 3381da177e4SLinus Torvalds 339be24a897SMikulas Patocka if ((insn & 0xffffc001) == 0x37de0000 || 340be24a897SMikulas Patocka (insn & 0xffe00001) == 0x6fc00000) { 3411da177e4SLinus Torvalds /* ldo X(sp), sp, or stwm X,D(sp) */ 342be24a897SMikulas Patocka frame_size += (insn & 0x3fff) >> 1; 3431da177e4SLinus Torvalds dbg("analyzing func @ %lx, insn=%08x @ " 3441da177e4SLinus Torvalds "%lx, frame_size = %ld\n", info->ip, 3451da177e4SLinus Torvalds insn, npc, frame_size); 346be24a897SMikulas Patocka } else if ((insn & 0xffe00009) == 0x73c00008) { 3471da177e4SLinus Torvalds /* std,ma X,D(sp) */ 348be24a897SMikulas Patocka frame_size += ((insn >> 4) & 0x3ff) << 3; 3491da177e4SLinus Torvalds dbg("analyzing func @ %lx, insn=%08x @ " 3501da177e4SLinus Torvalds "%lx, frame_size = %ld\n", info->ip, 3511da177e4SLinus Torvalds insn, npc, frame_size); 3521da177e4SLinus Torvalds } else if (insn == 0x6bc23fd9) { 3531da177e4SLinus Torvalds /* stw rp,-20(sp) */ 3541da177e4SLinus Torvalds rpoffset = 20; 3551da177e4SLinus Torvalds looking_for_rp = 0; 3561da177e4SLinus Torvalds dbg("analyzing func @ %lx, insn=stw rp," 3571da177e4SLinus Torvalds "-20(sp) @ %lx\n", info->ip, npc); 3581da177e4SLinus Torvalds } else if (insn == 0x0fc212c1) { 3591da177e4SLinus Torvalds /* std rp,-16(sr0,sp) */ 3601da177e4SLinus Torvalds rpoffset = 16; 3611da177e4SLinus Torvalds looking_for_rp = 0; 3621da177e4SLinus Torvalds dbg("analyzing func @ %lx, insn=std rp," 3631da177e4SLinus Torvalds "-16(sp) @ %lx\n", info->ip, npc); 3641da177e4SLinus Torvalds } 3651da177e4SLinus Torvalds } 3661da177e4SLinus Torvalds 367be24a897SMikulas Patocka if (frame_size > e->Total_frame_size << 3) 368be24a897SMikulas Patocka frame_size = e->Total_frame_size << 3; 369be24a897SMikulas Patocka 37005dc16d6SRandolph Chung if (!unwind_special(info, e->region_start, frame_size)) { 3711da177e4SLinus Torvalds info->prev_sp = info->sp - frame_size; 3721da177e4SLinus Torvalds if (e->Millicode) 3731da177e4SLinus Torvalds info->rp = info->r31; 3741da177e4SLinus Torvalds else if (rpoffset) 3751da177e4SLinus Torvalds info->rp = *(unsigned long *)(info->prev_sp - rpoffset); 3761da177e4SLinus Torvalds info->prev_ip = info->rp; 3771da177e4SLinus Torvalds info->rp = 0; 37805dc16d6SRandolph Chung } 3791da177e4SLinus Torvalds 3801da177e4SLinus Torvalds dbg("analyzing func @ %lx, setting prev_sp=%lx " 3811da177e4SLinus Torvalds "prev_ip=%lx npc=%lx\n", info->ip, info->prev_sp, 3821da177e4SLinus Torvalds info->prev_ip, npc); 3831da177e4SLinus Torvalds } 3841da177e4SLinus Torvalds } 3851da177e4SLinus Torvalds 3861da177e4SLinus Torvalds void unwind_frame_init(struct unwind_frame_info *info, struct task_struct *t, 3871da177e4SLinus Torvalds struct pt_regs *regs) 3881da177e4SLinus Torvalds { 3891da177e4SLinus Torvalds memset(info, 0, sizeof(struct unwind_frame_info)); 3901da177e4SLinus Torvalds info->t = t; 3911da177e4SLinus Torvalds info->sp = regs->gr[30]; 3921da177e4SLinus Torvalds info->ip = regs->iaoq[0]; 3931da177e4SLinus Torvalds info->rp = regs->gr[2]; 3941da177e4SLinus Torvalds info->r31 = regs->gr[31]; 3951da177e4SLinus Torvalds 3961da177e4SLinus Torvalds dbg("(%d) Start unwind from sp=%08lx ip=%08lx\n", 3971da177e4SLinus Torvalds t ? (int)t->pid : -1, info->sp, info->ip); 3981da177e4SLinus Torvalds } 3991da177e4SLinus Torvalds 4001da177e4SLinus Torvalds void unwind_frame_init_from_blocked_task(struct unwind_frame_info *info, struct task_struct *t) 4011da177e4SLinus Torvalds { 4021da177e4SLinus Torvalds struct pt_regs *r = &t->thread.regs; 4031da177e4SLinus Torvalds struct pt_regs *r2; 4041da177e4SLinus Torvalds 405e0e7ed48SHelge Deller r2 = kmalloc(sizeof(struct pt_regs), GFP_ATOMIC); 4061da177e4SLinus Torvalds if (!r2) 4071da177e4SLinus Torvalds return; 4081da177e4SLinus Torvalds *r2 = *r; 4091da177e4SLinus Torvalds r2->gr[30] = r->ksp; 4101da177e4SLinus Torvalds r2->iaoq[0] = r->kpc; 4111da177e4SLinus Torvalds unwind_frame_init(info, t, r2); 4121da177e4SLinus Torvalds kfree(r2); 4131da177e4SLinus Torvalds } 4141da177e4SLinus Torvalds 4159e0d5c45SHelge Deller #define get_parisc_stackpointer() ({ \ 4169e0d5c45SHelge Deller unsigned long sp; \ 4179e0d5c45SHelge Deller __asm__("copy %%r30, %0" : "=r"(sp)); \ 4189e0d5c45SHelge Deller (sp); \ 4199e0d5c45SHelge Deller }) 4209e0d5c45SHelge Deller 4219e0d5c45SHelge Deller void unwind_frame_init_task(struct unwind_frame_info *info, 4229e0d5c45SHelge Deller struct task_struct *task, struct pt_regs *regs) 4231da177e4SLinus Torvalds { 4249e0d5c45SHelge Deller task = task ? task : current; 4259e0d5c45SHelge Deller 4269e0d5c45SHelge Deller if (task == current) { 4279e0d5c45SHelge Deller struct pt_regs r; 4289e0d5c45SHelge Deller 4299e0d5c45SHelge Deller if (!regs) { 4309e0d5c45SHelge Deller memset(&r, 0, sizeof(r)); 4319e0d5c45SHelge Deller r.iaoq[0] = _THIS_IP_; 4329e0d5c45SHelge Deller r.gr[2] = _RET_IP_; 4339e0d5c45SHelge Deller r.gr[30] = get_parisc_stackpointer(); 4349e0d5c45SHelge Deller regs = &r; 4359e0d5c45SHelge Deller } 436cf8afe5cSHelge Deller unwind_frame_init(info, task, regs); 4379e0d5c45SHelge Deller } else { 4389e0d5c45SHelge Deller unwind_frame_init_from_blocked_task(info, task); 4399e0d5c45SHelge Deller } 4401da177e4SLinus Torvalds } 4411da177e4SLinus Torvalds 4421da177e4SLinus Torvalds int unwind_once(struct unwind_frame_info *next_frame) 4431da177e4SLinus Torvalds { 4441da177e4SLinus Torvalds unwind_frame_regs(next_frame); 4451da177e4SLinus Torvalds 4461da177e4SLinus Torvalds if (next_frame->prev_sp == 0 || 4471da177e4SLinus Torvalds next_frame->prev_ip == 0) 4481da177e4SLinus Torvalds return -1; 4491da177e4SLinus Torvalds 4501da177e4SLinus Torvalds next_frame->sp = next_frame->prev_sp; 4511da177e4SLinus Torvalds next_frame->ip = next_frame->prev_ip; 4521da177e4SLinus Torvalds next_frame->prev_sp = 0; 4531da177e4SLinus Torvalds next_frame->prev_ip = 0; 4541da177e4SLinus Torvalds 4551da177e4SLinus Torvalds dbg("(%d) Continue unwind to sp=%08lx ip=%08lx\n", 4561da177e4SLinus Torvalds next_frame->t ? (int)next_frame->t->pid : -1, 4571da177e4SLinus Torvalds next_frame->sp, next_frame->ip); 4581da177e4SLinus Torvalds 4591da177e4SLinus Torvalds return 0; 4601da177e4SLinus Torvalds } 4611da177e4SLinus Torvalds 4621da177e4SLinus Torvalds int unwind_to_user(struct unwind_frame_info *info) 4631da177e4SLinus Torvalds { 4641da177e4SLinus Torvalds int ret; 4651da177e4SLinus Torvalds 4661da177e4SLinus Torvalds do { 4671da177e4SLinus Torvalds ret = unwind_once(info); 4681da177e4SLinus Torvalds } while (!ret && !(info->ip & 3)); 4691da177e4SLinus Torvalds 4701da177e4SLinus Torvalds return ret; 4711da177e4SLinus Torvalds } 47211e17809SHelge Deller 47311e17809SHelge Deller unsigned long return_address(unsigned int level) 47411e17809SHelge Deller { 47511e17809SHelge Deller struct unwind_frame_info info; 47611e17809SHelge Deller 47711e17809SHelge Deller /* initialize unwind info */ 4789e0d5c45SHelge Deller unwind_frame_init_task(&info, current, NULL); 47911e17809SHelge Deller 48011e17809SHelge Deller /* unwind stack */ 4819e0d5c45SHelge Deller level += 2; 48211e17809SHelge Deller do { 48311e17809SHelge Deller if (unwind_once(&info) < 0 || info.ip == 0) 48411e17809SHelge Deller return 0; 485c790b41bSHelge Deller if (!kernel_text_address(info.ip)) 48611e17809SHelge Deller return 0; 48711e17809SHelge Deller } while (info.ip && level--); 48811e17809SHelge Deller 48911e17809SHelge Deller return info.ip; 49011e17809SHelge Deller } 491