1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 27c7900f8SJosh Poimboeuf #include <linux/sched.h> 329930025SIngo Molnar #include <linux/sched/task.h> 468db0cf1SIngo Molnar #include <linux/sched/task_stack.h> 5a8b7a923SJosh Poimboeuf #include <linux/interrupt.h> 6a8b7a923SJosh Poimboeuf #include <asm/sections.h> 77c7900f8SJosh Poimboeuf #include <asm/ptrace.h> 87c7900f8SJosh Poimboeuf #include <asm/bitops.h> 97c7900f8SJosh Poimboeuf #include <asm/stacktrace.h> 107c7900f8SJosh Poimboeuf #include <asm/unwind.h> 117c7900f8SJosh Poimboeuf 127c7900f8SJosh Poimboeuf #define FRAME_HEADER_SIZE (sizeof(long) * 2) 137c7900f8SJosh Poimboeuf 14ee9f8fceSJosh Poimboeuf unsigned long unwind_get_return_address(struct unwind_state *state) 15ee9f8fceSJosh Poimboeuf { 16ee9f8fceSJosh Poimboeuf if (unwind_done(state)) 17ee9f8fceSJosh Poimboeuf return 0; 18ee9f8fceSJosh Poimboeuf 19ee9f8fceSJosh Poimboeuf return __kernel_text_address(state->ip) ? state->ip : 0; 20ee9f8fceSJosh Poimboeuf } 21ee9f8fceSJosh Poimboeuf EXPORT_SYMBOL_GPL(unwind_get_return_address); 22ee9f8fceSJosh Poimboeuf 23ee9f8fceSJosh Poimboeuf unsigned long *unwind_get_return_address_ptr(struct unwind_state *state) 24ee9f8fceSJosh Poimboeuf { 25ee9f8fceSJosh Poimboeuf if (unwind_done(state)) 26ee9f8fceSJosh Poimboeuf return NULL; 27ee9f8fceSJosh Poimboeuf 28ee9f8fceSJosh Poimboeuf return state->regs ? &state->regs->ip : state->bp + 1; 29ee9f8fceSJosh Poimboeuf } 3084936118SJosh Poimboeuf 31aa4f8534SJosh Poimboeuf static void unwind_dump(struct unwind_state *state) 328b5e99f0SJosh Poimboeuf { 338b5e99f0SJosh Poimboeuf static bool dumped_before = false; 348b5e99f0SJosh Poimboeuf bool prev_zero, zero = false; 35aa4f8534SJosh Poimboeuf unsigned long word, *sp; 36262fa734SJosh Poimboeuf struct stack_info stack_info = {0}; 37262fa734SJosh Poimboeuf unsigned long visit_mask = 0; 388b5e99f0SJosh Poimboeuf 398b5e99f0SJosh Poimboeuf if (dumped_before) 408b5e99f0SJosh Poimboeuf return; 418b5e99f0SJosh Poimboeuf 428b5e99f0SJosh Poimboeuf dumped_before = true; 438b5e99f0SJosh Poimboeuf 444ea3d741SJosh Poimboeuf printk_deferred("unwind stack type:%d next_sp:%p mask:0x%lx graph_idx:%d\n", 458b5e99f0SJosh Poimboeuf state->stack_info.type, state->stack_info.next_sp, 468b5e99f0SJosh Poimboeuf state->stack_mask, state->graph_idx); 478b5e99f0SJosh Poimboeuf 4899bd28a4SJosh Poimboeuf for (sp = PTR_ALIGN(state->orig_sp, sizeof(long)); sp; 4999bd28a4SJosh Poimboeuf sp = PTR_ALIGN(stack_info.next_sp, sizeof(long))) { 50262fa734SJosh Poimboeuf if (get_stack_info(sp, state->task, &stack_info, &visit_mask)) 51262fa734SJosh Poimboeuf break; 52262fa734SJosh Poimboeuf 53262fa734SJosh Poimboeuf for (; sp < stack_info.end; sp++) { 54262fa734SJosh Poimboeuf 558b5e99f0SJosh Poimboeuf word = READ_ONCE_NOCHECK(*sp); 568b5e99f0SJosh Poimboeuf 578b5e99f0SJosh Poimboeuf prev_zero = zero; 588b5e99f0SJosh Poimboeuf zero = word == 0; 598b5e99f0SJosh Poimboeuf 608b5e99f0SJosh Poimboeuf if (zero) { 618b5e99f0SJosh Poimboeuf if (!prev_zero) 629b135b23SJosh Poimboeuf printk_deferred("%p: %0*x ...\n", 639b135b23SJosh Poimboeuf sp, BITS_PER_LONG/4, 0); 648b5e99f0SJosh Poimboeuf continue; 658b5e99f0SJosh Poimboeuf } 668b5e99f0SJosh Poimboeuf 679b135b23SJosh Poimboeuf printk_deferred("%p: %0*lx (%pB)\n", 689b135b23SJosh Poimboeuf sp, BITS_PER_LONG/4, word, (void *)word); 698b5e99f0SJosh Poimboeuf } 708b5e99f0SJosh Poimboeuf } 71262fa734SJosh Poimboeuf } 728b5e99f0SJosh Poimboeuf 73a8b7a923SJosh Poimboeuf static bool in_entry_code(unsigned long ip) 74a8b7a923SJosh Poimboeuf { 75a8b7a923SJosh Poimboeuf char *addr = (char *)ip; 76a8b7a923SJosh Poimboeuf 77f0178fc0SThomas Gleixner return addr >= __entry_text_start && addr < __entry_text_end; 78a8b7a923SJosh Poimboeuf } 79a8b7a923SJosh Poimboeuf 80b0d50c7bSJosh Poimboeuf static inline unsigned long *last_frame(struct unwind_state *state) 81b0d50c7bSJosh Poimboeuf { 82b0d50c7bSJosh Poimboeuf return (unsigned long *)task_pt_regs(state->task) - 2; 83b0d50c7bSJosh Poimboeuf } 84b0d50c7bSJosh Poimboeuf 85519fb5c3SJosh Poimboeuf static bool is_last_frame(struct unwind_state *state) 86519fb5c3SJosh Poimboeuf { 87519fb5c3SJosh Poimboeuf return state->bp == last_frame(state); 88519fb5c3SJosh Poimboeuf } 89519fb5c3SJosh Poimboeuf 9087a6b297SJosh Poimboeuf #ifdef CONFIG_X86_32 9187a6b297SJosh Poimboeuf #define GCC_REALIGN_WORDS 3 9287a6b297SJosh Poimboeuf #else 9387a6b297SJosh Poimboeuf #define GCC_REALIGN_WORDS 1 9487a6b297SJosh Poimboeuf #endif 9587a6b297SJosh Poimboeuf 96b0d50c7bSJosh Poimboeuf static inline unsigned long *last_aligned_frame(struct unwind_state *state) 97b0d50c7bSJosh Poimboeuf { 98b0d50c7bSJosh Poimboeuf return last_frame(state) - GCC_REALIGN_WORDS; 99b0d50c7bSJosh Poimboeuf } 100b0d50c7bSJosh Poimboeuf 101519fb5c3SJosh Poimboeuf static bool is_last_aligned_frame(struct unwind_state *state) 102acb4608aSJosh Poimboeuf { 103b0d50c7bSJosh Poimboeuf unsigned long *last_bp = last_frame(state); 104b0d50c7bSJosh Poimboeuf unsigned long *aligned_bp = last_aligned_frame(state); 105acb4608aSJosh Poimboeuf 1068023e0e2SJosh Poimboeuf /* 107519fb5c3SJosh Poimboeuf * GCC can occasionally decide to realign the stack pointer and change 108519fb5c3SJosh Poimboeuf * the offset of the stack frame in the prologue of a function called 109519fb5c3SJosh Poimboeuf * by head/entry code. Examples: 11087a6b297SJosh Poimboeuf * 11187a6b297SJosh Poimboeuf * <start_secondary>: 11287a6b297SJosh Poimboeuf * push %edi 11387a6b297SJosh Poimboeuf * lea 0x8(%esp),%edi 11487a6b297SJosh Poimboeuf * and $0xfffffff8,%esp 11587a6b297SJosh Poimboeuf * pushl -0x4(%edi) 11687a6b297SJosh Poimboeuf * push %ebp 11787a6b297SJosh Poimboeuf * mov %esp,%ebp 11887a6b297SJosh Poimboeuf * 11987a6b297SJosh Poimboeuf * <x86_64_start_kernel>: 12087a6b297SJosh Poimboeuf * lea 0x8(%rsp),%r10 12187a6b297SJosh Poimboeuf * and $0xfffffffffffffff0,%rsp 12287a6b297SJosh Poimboeuf * pushq -0x8(%r10) 12387a6b297SJosh Poimboeuf * push %rbp 12487a6b297SJosh Poimboeuf * mov %rsp,%rbp 12587a6b297SJosh Poimboeuf * 126519fb5c3SJosh Poimboeuf * After aligning the stack, it pushes a duplicate copy of the return 127519fb5c3SJosh Poimboeuf * address before pushing the frame pointer. 1288023e0e2SJosh Poimboeuf */ 129519fb5c3SJosh Poimboeuf return (state->bp == aligned_bp && *(aligned_bp + 1) == *(last_bp + 1)); 130519fb5c3SJosh Poimboeuf } 131519fb5c3SJosh Poimboeuf 132519fb5c3SJosh Poimboeuf static bool is_last_ftrace_frame(struct unwind_state *state) 133519fb5c3SJosh Poimboeuf { 134519fb5c3SJosh Poimboeuf unsigned long *last_bp = last_frame(state); 135519fb5c3SJosh Poimboeuf unsigned long *last_ftrace_bp = last_bp - 3; 136519fb5c3SJosh Poimboeuf 137519fb5c3SJosh Poimboeuf /* 138519fb5c3SJosh Poimboeuf * When unwinding from an ftrace handler of a function called by entry 139519fb5c3SJosh Poimboeuf * code, the stack layout of the last frame is: 140519fb5c3SJosh Poimboeuf * 141519fb5c3SJosh Poimboeuf * bp 142519fb5c3SJosh Poimboeuf * parent ret addr 143519fb5c3SJosh Poimboeuf * bp 144519fb5c3SJosh Poimboeuf * function ret addr 145519fb5c3SJosh Poimboeuf * parent ret addr 146519fb5c3SJosh Poimboeuf * pt_regs 147519fb5c3SJosh Poimboeuf * ----------------- 148519fb5c3SJosh Poimboeuf */ 149519fb5c3SJosh Poimboeuf return (state->bp == last_ftrace_bp && 150519fb5c3SJosh Poimboeuf *state->bp == *(state->bp + 2) && 151519fb5c3SJosh Poimboeuf *(state->bp + 1) == *(state->bp + 4)); 152519fb5c3SJosh Poimboeuf } 153519fb5c3SJosh Poimboeuf 154519fb5c3SJosh Poimboeuf static bool is_last_task_frame(struct unwind_state *state) 155519fb5c3SJosh Poimboeuf { 156519fb5c3SJosh Poimboeuf return is_last_frame(state) || is_last_aligned_frame(state) || 157519fb5c3SJosh Poimboeuf is_last_ftrace_frame(state); 158acb4608aSJosh Poimboeuf } 159acb4608aSJosh Poimboeuf 160946c1911SJosh Poimboeuf /* 161946c1911SJosh Poimboeuf * This determines if the frame pointer actually contains an encoded pointer to 162946c1911SJosh Poimboeuf * pt_regs on the stack. See ENCODE_FRAME_POINTER. 163946c1911SJosh Poimboeuf */ 1645c99b692SJosh Poimboeuf #ifdef CONFIG_X86_64 165946c1911SJosh Poimboeuf static struct pt_regs *decode_frame_pointer(unsigned long *bp) 166946c1911SJosh Poimboeuf { 167946c1911SJosh Poimboeuf unsigned long regs = (unsigned long)bp; 168946c1911SJosh Poimboeuf 169946c1911SJosh Poimboeuf if (!(regs & 0x1)) 170946c1911SJosh Poimboeuf return NULL; 171946c1911SJosh Poimboeuf 172946c1911SJosh Poimboeuf return (struct pt_regs *)(regs & ~0x1); 173946c1911SJosh Poimboeuf } 1745c99b692SJosh Poimboeuf #else 1755c99b692SJosh Poimboeuf static struct pt_regs *decode_frame_pointer(unsigned long *bp) 1765c99b692SJosh Poimboeuf { 1775c99b692SJosh Poimboeuf unsigned long regs = (unsigned long)bp; 1785c99b692SJosh Poimboeuf 1795c99b692SJosh Poimboeuf if (regs & 0x80000000) 1805c99b692SJosh Poimboeuf return NULL; 1815c99b692SJosh Poimboeuf 1825c99b692SJosh Poimboeuf return (struct pt_regs *)(regs | 0x80000000); 1835c99b692SJosh Poimboeuf } 1845c99b692SJosh Poimboeuf #endif 185946c1911SJosh Poimboeuf 1865ed8d8bbSJosh Poimboeuf static bool update_stack_state(struct unwind_state *state, 1875ed8d8bbSJosh Poimboeuf unsigned long *next_bp) 1887c7900f8SJosh Poimboeuf { 1897c7900f8SJosh Poimboeuf struct stack_info *info = &state->stack_info; 1905ed8d8bbSJosh Poimboeuf enum stack_type prev_type = info->type; 1915ed8d8bbSJosh Poimboeuf struct pt_regs *regs; 1926bcdf9d5SJosh Poimboeuf unsigned long *frame, *prev_frame_end, *addr_p, addr; 1935ed8d8bbSJosh Poimboeuf size_t len; 1945ed8d8bbSJosh Poimboeuf 1955ed8d8bbSJosh Poimboeuf if (state->regs) 1963c88c692SPeter Zijlstra prev_frame_end = (void *)state->regs + sizeof(*state->regs); 1975ed8d8bbSJosh Poimboeuf else 1985ed8d8bbSJosh Poimboeuf prev_frame_end = (void *)state->bp + FRAME_HEADER_SIZE; 1995ed8d8bbSJosh Poimboeuf 2005ed8d8bbSJosh Poimboeuf /* Is the next frame pointer an encoded pointer to pt_regs? */ 2015ed8d8bbSJosh Poimboeuf regs = decode_frame_pointer(next_bp); 2025ed8d8bbSJosh Poimboeuf if (regs) { 2035ed8d8bbSJosh Poimboeuf frame = (unsigned long *)regs; 2043c88c692SPeter Zijlstra len = sizeof(*regs); 205a8b7a923SJosh Poimboeuf state->got_irq = true; 2065ed8d8bbSJosh Poimboeuf } else { 2075ed8d8bbSJosh Poimboeuf frame = next_bp; 2085ed8d8bbSJosh Poimboeuf len = FRAME_HEADER_SIZE; 2095ed8d8bbSJosh Poimboeuf } 2107c7900f8SJosh Poimboeuf 2117c7900f8SJosh Poimboeuf /* 2125ed8d8bbSJosh Poimboeuf * If the next bp isn't on the current stack, switch to the next one. 2137c7900f8SJosh Poimboeuf * 2147c7900f8SJosh Poimboeuf * We may have to traverse multiple stacks to deal with the possibility 2155ed8d8bbSJosh Poimboeuf * that info->next_sp could point to an empty stack and the next bp 2165ed8d8bbSJosh Poimboeuf * could be on a subsequent stack. 2177c7900f8SJosh Poimboeuf */ 2185ed8d8bbSJosh Poimboeuf while (!on_stack(info, frame, len)) 2197c7900f8SJosh Poimboeuf if (get_stack_info(info->next_sp, state->task, info, 2207c7900f8SJosh Poimboeuf &state->stack_mask)) 2217c7900f8SJosh Poimboeuf return false; 2227c7900f8SJosh Poimboeuf 2235ed8d8bbSJosh Poimboeuf /* Make sure it only unwinds up and doesn't overlap the prev frame: */ 2245ed8d8bbSJosh Poimboeuf if (state->orig_sp && state->stack_info.type == prev_type && 2255ed8d8bbSJosh Poimboeuf frame < prev_frame_end) 2265ed8d8bbSJosh Poimboeuf return false; 2275ed8d8bbSJosh Poimboeuf 2285ed8d8bbSJosh Poimboeuf /* Move state to the next frame: */ 2295ed8d8bbSJosh Poimboeuf if (regs) { 2305ed8d8bbSJosh Poimboeuf state->regs = regs; 2315ed8d8bbSJosh Poimboeuf state->bp = NULL; 2325ed8d8bbSJosh Poimboeuf } else { 2335ed8d8bbSJosh Poimboeuf state->bp = next_bp; 2345ed8d8bbSJosh Poimboeuf state->regs = NULL; 2355ed8d8bbSJosh Poimboeuf } 2365ed8d8bbSJosh Poimboeuf 2376bcdf9d5SJosh Poimboeuf /* Save the return address: */ 2386bcdf9d5SJosh Poimboeuf if (state->regs && user_mode(state->regs)) 2396bcdf9d5SJosh Poimboeuf state->ip = 0; 2406bcdf9d5SJosh Poimboeuf else { 2416bcdf9d5SJosh Poimboeuf addr_p = unwind_get_return_address_ptr(state); 2426bcdf9d5SJosh Poimboeuf addr = READ_ONCE_TASK_STACK(state->task, *addr_p); 2436bcdf9d5SJosh Poimboeuf state->ip = ftrace_graph_ret_addr(state->task, &state->graph_idx, 2446bcdf9d5SJosh Poimboeuf addr, addr_p); 2456bcdf9d5SJosh Poimboeuf } 2466bcdf9d5SJosh Poimboeuf 2475ed8d8bbSJosh Poimboeuf /* Save the original stack pointer for unwind_dump(): */ 248262fa734SJosh Poimboeuf if (!state->orig_sp) 2495ed8d8bbSJosh Poimboeuf state->orig_sp = frame; 2508b5e99f0SJosh Poimboeuf 2517c7900f8SJosh Poimboeuf return true; 2527c7900f8SJosh Poimboeuf } 2537c7900f8SJosh Poimboeuf 2547c7900f8SJosh Poimboeuf bool unwind_next_frame(struct unwind_state *state) 2557c7900f8SJosh Poimboeuf { 256946c1911SJosh Poimboeuf struct pt_regs *regs; 2575ed8d8bbSJosh Poimboeuf unsigned long *next_bp; 2587c7900f8SJosh Poimboeuf 2597c7900f8SJosh Poimboeuf if (unwind_done(state)) 2607c7900f8SJosh Poimboeuf return false; 2617c7900f8SJosh Poimboeuf 2625ed8d8bbSJosh Poimboeuf /* Have we reached the end? */ 263946c1911SJosh Poimboeuf if (state->regs && user_mode(state->regs)) 264946c1911SJosh Poimboeuf goto the_end; 265946c1911SJosh Poimboeuf 266acb4608aSJosh Poimboeuf if (is_last_task_frame(state)) { 267acb4608aSJosh Poimboeuf regs = task_pt_regs(state->task); 268acb4608aSJosh Poimboeuf 269acb4608aSJosh Poimboeuf /* 270acb4608aSJosh Poimboeuf * kthreads (other than the boot CPU's idle thread) have some 271acb4608aSJosh Poimboeuf * partial regs at the end of their stack which were placed 272*714acdbdSChristian Brauner * there by copy_thread(). But the regs don't have any 273acb4608aSJosh Poimboeuf * useful information, so we can skip them. 274acb4608aSJosh Poimboeuf * 275acb4608aSJosh Poimboeuf * This user_mode() check is slightly broader than a PF_KTHREAD 276acb4608aSJosh Poimboeuf * check because it also catches the awkward situation where a 277acb4608aSJosh Poimboeuf * newly forked kthread transitions into a user task by calling 278acb4608aSJosh Poimboeuf * do_execve(), which eventually clears PF_KTHREAD. 279acb4608aSJosh Poimboeuf */ 280acb4608aSJosh Poimboeuf if (!user_mode(regs)) 281acb4608aSJosh Poimboeuf goto the_end; 282acb4608aSJosh Poimboeuf 283acb4608aSJosh Poimboeuf /* 284acb4608aSJosh Poimboeuf * We're almost at the end, but not quite: there's still the 285acb4608aSJosh Poimboeuf * syscall regs frame. Entry code doesn't encode the regs 286acb4608aSJosh Poimboeuf * pointer for syscalls, so we have to set it manually. 287acb4608aSJosh Poimboeuf */ 288acb4608aSJosh Poimboeuf state->regs = regs; 289acb4608aSJosh Poimboeuf state->bp = NULL; 2906bcdf9d5SJosh Poimboeuf state->ip = 0; 291acb4608aSJosh Poimboeuf return true; 292acb4608aSJosh Poimboeuf } 293acb4608aSJosh Poimboeuf 2945ed8d8bbSJosh Poimboeuf /* Get the next frame pointer: */ 295f4f34e1bSJann Horn if (state->next_bp) { 296f4f34e1bSJann Horn next_bp = state->next_bp; 297f4f34e1bSJann Horn state->next_bp = NULL; 298f4f34e1bSJann Horn } else if (state->regs) { 299946c1911SJosh Poimboeuf next_bp = (unsigned long *)state->regs->bp; 300f4f34e1bSJann Horn } else { 30184936118SJosh Poimboeuf next_bp = (unsigned long *)READ_ONCE_TASK_STACK(state->task, *state->bp); 302f4f34e1bSJann Horn } 3037c7900f8SJosh Poimboeuf 3045ed8d8bbSJosh Poimboeuf /* Move to the next frame if it's safe: */ 305a8b7a923SJosh Poimboeuf if (!update_stack_state(state, next_bp)) 306c32c47c6SJosh Poimboeuf goto bad_address; 307c32c47c6SJosh Poimboeuf 3087c7900f8SJosh Poimboeuf return true; 309946c1911SJosh Poimboeuf 310c32c47c6SJosh Poimboeuf bad_address: 311af085d90SJosh Poimboeuf state->error = true; 312af085d90SJosh Poimboeuf 313900742d8SJosh Poimboeuf /* 314900742d8SJosh Poimboeuf * When unwinding a non-current task, the task might actually be 315900742d8SJosh Poimboeuf * running on another CPU, in which case it could be modifying its 316900742d8SJosh Poimboeuf * stack while we're reading it. This is generally not a problem and 317900742d8SJosh Poimboeuf * can be ignored as long as the caller understands that unwinding 318900742d8SJosh Poimboeuf * another task will not always succeed. 319900742d8SJosh Poimboeuf */ 320900742d8SJosh Poimboeuf if (state->task != current) 321900742d8SJosh Poimboeuf goto the_end; 322900742d8SJosh Poimboeuf 323a8b7a923SJosh Poimboeuf /* 324a8b7a923SJosh Poimboeuf * Don't warn if the unwinder got lost due to an interrupt in entry 325b0d50c7bSJosh Poimboeuf * code or in the C handler before the first frame pointer got set up: 326a8b7a923SJosh Poimboeuf */ 327a8b7a923SJosh Poimboeuf if (state->got_irq && in_entry_code(state->ip)) 328a8b7a923SJosh Poimboeuf goto the_end; 329b0d50c7bSJosh Poimboeuf if (state->regs && 330b0d50c7bSJosh Poimboeuf state->regs->sp >= (unsigned long)last_aligned_frame(state) && 331b0d50c7bSJosh Poimboeuf state->regs->sp < (unsigned long)task_pt_regs(state->task)) 332b0d50c7bSJosh Poimboeuf goto the_end; 333a8b7a923SJosh Poimboeuf 334d4a2d031SJosh Poimboeuf /* 335d4a2d031SJosh Poimboeuf * There are some known frame pointer issues on 32-bit. Disable 336d4a2d031SJosh Poimboeuf * unwinder warnings on 32-bit until it gets objtool support. 337d4a2d031SJosh Poimboeuf */ 338d4a2d031SJosh Poimboeuf if (IS_ENABLED(CONFIG_X86_32)) 339d4a2d031SJosh Poimboeuf goto the_end; 340d4a2d031SJosh Poimboeuf 341b08418b5SJosh Poimboeuf if (state->task != current) 342b08418b5SJosh Poimboeuf goto the_end; 343b08418b5SJosh Poimboeuf 34424d86f59SJosh Poimboeuf if (state->regs) { 34524d86f59SJosh Poimboeuf printk_deferred_once(KERN_WARNING 34624d86f59SJosh Poimboeuf "WARNING: kernel stack regs at %p in %s:%d has bad 'bp' value %p\n", 34724d86f59SJosh Poimboeuf state->regs, state->task->comm, 3485ed8d8bbSJosh Poimboeuf state->task->pid, next_bp); 349aa4f8534SJosh Poimboeuf unwind_dump(state); 35024d86f59SJosh Poimboeuf } else { 351c32c47c6SJosh Poimboeuf printk_deferred_once(KERN_WARNING 352c32c47c6SJosh Poimboeuf "WARNING: kernel stack frame pointer at %p in %s:%d has bad value %p\n", 353c32c47c6SJosh Poimboeuf state->bp, state->task->comm, 3545ed8d8bbSJosh Poimboeuf state->task->pid, next_bp); 355aa4f8534SJosh Poimboeuf unwind_dump(state); 35624d86f59SJosh Poimboeuf } 357946c1911SJosh Poimboeuf the_end: 358946c1911SJosh Poimboeuf state->stack_info.type = STACK_TYPE_UNKNOWN; 359946c1911SJosh Poimboeuf return false; 3607c7900f8SJosh Poimboeuf } 3617c7900f8SJosh Poimboeuf EXPORT_SYMBOL_GPL(unwind_next_frame); 3627c7900f8SJosh Poimboeuf 3637c7900f8SJosh Poimboeuf void __unwind_start(struct unwind_state *state, struct task_struct *task, 3647c7900f8SJosh Poimboeuf struct pt_regs *regs, unsigned long *first_frame) 3657c7900f8SJosh Poimboeuf { 3665ed8d8bbSJosh Poimboeuf unsigned long *bp; 367946c1911SJosh Poimboeuf 3687c7900f8SJosh Poimboeuf memset(state, 0, sizeof(*state)); 3697c7900f8SJosh Poimboeuf state->task = task; 370a8b7a923SJosh Poimboeuf state->got_irq = (regs); 3717c7900f8SJosh Poimboeuf 3725ed8d8bbSJosh Poimboeuf /* Don't even attempt to start from user mode regs: */ 3737c7900f8SJosh Poimboeuf if (regs && user_mode(regs)) { 3747c7900f8SJosh Poimboeuf state->stack_info.type = STACK_TYPE_UNKNOWN; 3757c7900f8SJosh Poimboeuf return; 3767c7900f8SJosh Poimboeuf } 3777c7900f8SJosh Poimboeuf 378946c1911SJosh Poimboeuf bp = get_frame_pointer(task, regs); 3797c7900f8SJosh Poimboeuf 380f4f34e1bSJann Horn /* 381f4f34e1bSJann Horn * If we crash with IP==0, the last successfully executed instruction 382f4f34e1bSJann Horn * was probably an indirect function call with a NULL function pointer. 383f4f34e1bSJann Horn * That means that SP points into the middle of an incomplete frame: 384f4f34e1bSJann Horn * *SP is a return pointer, and *(SP-sizeof(unsigned long)) is where we 385f4f34e1bSJann Horn * would have written a frame pointer if we hadn't crashed. 386f4f34e1bSJann Horn * Pretend that the frame is complete and that BP points to it, but save 387f4f34e1bSJann Horn * the real BP so that we can use it when looking for the next frame. 388f4f34e1bSJann Horn */ 3893c88c692SPeter Zijlstra if (regs && regs->ip == 0 && (unsigned long *)regs->sp >= first_frame) { 390f4f34e1bSJann Horn state->next_bp = bp; 3913c88c692SPeter Zijlstra bp = ((unsigned long *)regs->sp) - 1; 392f4f34e1bSJann Horn } 393f4f34e1bSJann Horn 3945ed8d8bbSJosh Poimboeuf /* Initialize stack info and make sure the frame data is accessible: */ 3955ed8d8bbSJosh Poimboeuf get_stack_info(bp, state->task, &state->stack_info, 3967c7900f8SJosh Poimboeuf &state->stack_mask); 3975ed8d8bbSJosh Poimboeuf update_stack_state(state, bp); 3987c7900f8SJosh Poimboeuf 3997c7900f8SJosh Poimboeuf /* 4007c7900f8SJosh Poimboeuf * The caller can provide the address of the first frame directly 4017c7900f8SJosh Poimboeuf * (first_frame) or indirectly (regs->sp) to indicate which stack frame 4027c7900f8SJosh Poimboeuf * to start unwinding at. Skip ahead until we reach it. 4037c7900f8SJosh Poimboeuf */ 4047c7900f8SJosh Poimboeuf while (!unwind_done(state) && 4057c7900f8SJosh Poimboeuf (!on_stack(&state->stack_info, first_frame, sizeof(long)) || 406f4f34e1bSJann Horn (state->next_bp == NULL && state->bp < first_frame))) 4077c7900f8SJosh Poimboeuf unwind_next_frame(state); 4087c7900f8SJosh Poimboeuf } 4097c7900f8SJosh Poimboeuf EXPORT_SYMBOL_GPL(__unwind_start); 410