xref: /linux/arch/x86/kernel/unwind_frame.c (revision 3c88c692c28746473791276f8b42d2c989d6cbe6)
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 
77a8b7a923SJosh Poimboeuf 	if (addr >= __entry_text_start && addr < __entry_text_end)
78a8b7a923SJosh Poimboeuf 		return true;
79a8b7a923SJosh Poimboeuf 
80a8b7a923SJosh Poimboeuf 	if (addr >= __irqentry_text_start && addr < __irqentry_text_end)
81a8b7a923SJosh Poimboeuf 		return true;
82a8b7a923SJosh Poimboeuf 
83a8b7a923SJosh Poimboeuf 	return false;
84a8b7a923SJosh Poimboeuf }
85a8b7a923SJosh Poimboeuf 
86b0d50c7bSJosh Poimboeuf static inline unsigned long *last_frame(struct unwind_state *state)
87b0d50c7bSJosh Poimboeuf {
88b0d50c7bSJosh Poimboeuf 	return (unsigned long *)task_pt_regs(state->task) - 2;
89b0d50c7bSJosh Poimboeuf }
90b0d50c7bSJosh Poimboeuf 
91519fb5c3SJosh Poimboeuf static bool is_last_frame(struct unwind_state *state)
92519fb5c3SJosh Poimboeuf {
93519fb5c3SJosh Poimboeuf 	return state->bp == last_frame(state);
94519fb5c3SJosh Poimboeuf }
95519fb5c3SJosh Poimboeuf 
9687a6b297SJosh Poimboeuf #ifdef CONFIG_X86_32
9787a6b297SJosh Poimboeuf #define GCC_REALIGN_WORDS 3
9887a6b297SJosh Poimboeuf #else
9987a6b297SJosh Poimboeuf #define GCC_REALIGN_WORDS 1
10087a6b297SJosh Poimboeuf #endif
10187a6b297SJosh Poimboeuf 
102b0d50c7bSJosh Poimboeuf static inline unsigned long *last_aligned_frame(struct unwind_state *state)
103b0d50c7bSJosh Poimboeuf {
104b0d50c7bSJosh Poimboeuf 	return last_frame(state) - GCC_REALIGN_WORDS;
105b0d50c7bSJosh Poimboeuf }
106b0d50c7bSJosh Poimboeuf 
107519fb5c3SJosh Poimboeuf static bool is_last_aligned_frame(struct unwind_state *state)
108acb4608aSJosh Poimboeuf {
109b0d50c7bSJosh Poimboeuf 	unsigned long *last_bp = last_frame(state);
110b0d50c7bSJosh Poimboeuf 	unsigned long *aligned_bp = last_aligned_frame(state);
111acb4608aSJosh Poimboeuf 
1128023e0e2SJosh Poimboeuf 	/*
113519fb5c3SJosh Poimboeuf 	 * GCC can occasionally decide to realign the stack pointer and change
114519fb5c3SJosh Poimboeuf 	 * the offset of the stack frame in the prologue of a function called
115519fb5c3SJosh Poimboeuf 	 * by head/entry code.  Examples:
11687a6b297SJosh Poimboeuf 	 *
11787a6b297SJosh Poimboeuf 	 * <start_secondary>:
11887a6b297SJosh Poimboeuf 	 *      push   %edi
11987a6b297SJosh Poimboeuf 	 *      lea    0x8(%esp),%edi
12087a6b297SJosh Poimboeuf 	 *      and    $0xfffffff8,%esp
12187a6b297SJosh Poimboeuf 	 *      pushl  -0x4(%edi)
12287a6b297SJosh Poimboeuf 	 *      push   %ebp
12387a6b297SJosh Poimboeuf 	 *      mov    %esp,%ebp
12487a6b297SJosh Poimboeuf 	 *
12587a6b297SJosh Poimboeuf 	 * <x86_64_start_kernel>:
12687a6b297SJosh Poimboeuf 	 *      lea    0x8(%rsp),%r10
12787a6b297SJosh Poimboeuf 	 *      and    $0xfffffffffffffff0,%rsp
12887a6b297SJosh Poimboeuf 	 *      pushq  -0x8(%r10)
12987a6b297SJosh Poimboeuf 	 *      push   %rbp
13087a6b297SJosh Poimboeuf 	 *      mov    %rsp,%rbp
13187a6b297SJosh Poimboeuf 	 *
132519fb5c3SJosh Poimboeuf 	 * After aligning the stack, it pushes a duplicate copy of the return
133519fb5c3SJosh Poimboeuf 	 * address before pushing the frame pointer.
1348023e0e2SJosh Poimboeuf 	 */
135519fb5c3SJosh Poimboeuf 	return (state->bp == aligned_bp && *(aligned_bp + 1) == *(last_bp + 1));
136519fb5c3SJosh Poimboeuf }
137519fb5c3SJosh Poimboeuf 
138519fb5c3SJosh Poimboeuf static bool is_last_ftrace_frame(struct unwind_state *state)
139519fb5c3SJosh Poimboeuf {
140519fb5c3SJosh Poimboeuf 	unsigned long *last_bp = last_frame(state);
141519fb5c3SJosh Poimboeuf 	unsigned long *last_ftrace_bp = last_bp - 3;
142519fb5c3SJosh Poimboeuf 
143519fb5c3SJosh Poimboeuf 	/*
144519fb5c3SJosh Poimboeuf 	 * When unwinding from an ftrace handler of a function called by entry
145519fb5c3SJosh Poimboeuf 	 * code, the stack layout of the last frame is:
146519fb5c3SJosh Poimboeuf 	 *
147519fb5c3SJosh Poimboeuf 	 *   bp
148519fb5c3SJosh Poimboeuf 	 *   parent ret addr
149519fb5c3SJosh Poimboeuf 	 *   bp
150519fb5c3SJosh Poimboeuf 	 *   function ret addr
151519fb5c3SJosh Poimboeuf 	 *   parent ret addr
152519fb5c3SJosh Poimboeuf 	 *   pt_regs
153519fb5c3SJosh Poimboeuf 	 *   -----------------
154519fb5c3SJosh Poimboeuf 	 */
155519fb5c3SJosh Poimboeuf 	return (state->bp == last_ftrace_bp &&
156519fb5c3SJosh Poimboeuf 		*state->bp == *(state->bp + 2) &&
157519fb5c3SJosh Poimboeuf 		*(state->bp + 1) == *(state->bp + 4));
158519fb5c3SJosh Poimboeuf }
159519fb5c3SJosh Poimboeuf 
160519fb5c3SJosh Poimboeuf static bool is_last_task_frame(struct unwind_state *state)
161519fb5c3SJosh Poimboeuf {
162519fb5c3SJosh Poimboeuf 	return is_last_frame(state) || is_last_aligned_frame(state) ||
163519fb5c3SJosh Poimboeuf 	       is_last_ftrace_frame(state);
164acb4608aSJosh Poimboeuf }
165acb4608aSJosh Poimboeuf 
166946c1911SJosh Poimboeuf /*
167946c1911SJosh Poimboeuf  * This determines if the frame pointer actually contains an encoded pointer to
168946c1911SJosh Poimboeuf  * pt_regs on the stack.  See ENCODE_FRAME_POINTER.
169946c1911SJosh Poimboeuf  */
1705c99b692SJosh Poimboeuf #ifdef CONFIG_X86_64
171946c1911SJosh Poimboeuf static struct pt_regs *decode_frame_pointer(unsigned long *bp)
172946c1911SJosh Poimboeuf {
173946c1911SJosh Poimboeuf 	unsigned long regs = (unsigned long)bp;
174946c1911SJosh Poimboeuf 
175946c1911SJosh Poimboeuf 	if (!(regs & 0x1))
176946c1911SJosh Poimboeuf 		return NULL;
177946c1911SJosh Poimboeuf 
178946c1911SJosh Poimboeuf 	return (struct pt_regs *)(regs & ~0x1);
179946c1911SJosh Poimboeuf }
1805c99b692SJosh Poimboeuf #else
1815c99b692SJosh Poimboeuf static struct pt_regs *decode_frame_pointer(unsigned long *bp)
1825c99b692SJosh Poimboeuf {
1835c99b692SJosh Poimboeuf 	unsigned long regs = (unsigned long)bp;
1845c99b692SJosh Poimboeuf 
1855c99b692SJosh Poimboeuf 	if (regs & 0x80000000)
1865c99b692SJosh Poimboeuf 		return NULL;
1875c99b692SJosh Poimboeuf 
1885c99b692SJosh Poimboeuf 	return (struct pt_regs *)(regs | 0x80000000);
1895c99b692SJosh Poimboeuf }
1905c99b692SJosh Poimboeuf #endif
191946c1911SJosh Poimboeuf 
1925ed8d8bbSJosh Poimboeuf static bool update_stack_state(struct unwind_state *state,
1935ed8d8bbSJosh Poimboeuf 			       unsigned long *next_bp)
1947c7900f8SJosh Poimboeuf {
1957c7900f8SJosh Poimboeuf 	struct stack_info *info = &state->stack_info;
1965ed8d8bbSJosh Poimboeuf 	enum stack_type prev_type = info->type;
1975ed8d8bbSJosh Poimboeuf 	struct pt_regs *regs;
1986bcdf9d5SJosh Poimboeuf 	unsigned long *frame, *prev_frame_end, *addr_p, addr;
1995ed8d8bbSJosh Poimboeuf 	size_t len;
2005ed8d8bbSJosh Poimboeuf 
2015ed8d8bbSJosh Poimboeuf 	if (state->regs)
202*3c88c692SPeter Zijlstra 		prev_frame_end = (void *)state->regs + sizeof(*state->regs);
2035ed8d8bbSJosh Poimboeuf 	else
2045ed8d8bbSJosh Poimboeuf 		prev_frame_end = (void *)state->bp + FRAME_HEADER_SIZE;
2055ed8d8bbSJosh Poimboeuf 
2065ed8d8bbSJosh Poimboeuf 	/* Is the next frame pointer an encoded pointer to pt_regs? */
2075ed8d8bbSJosh Poimboeuf 	regs = decode_frame_pointer(next_bp);
2085ed8d8bbSJosh Poimboeuf 	if (regs) {
2095ed8d8bbSJosh Poimboeuf 		frame = (unsigned long *)regs;
210*3c88c692SPeter Zijlstra 		len = sizeof(*regs);
211a8b7a923SJosh Poimboeuf 		state->got_irq = true;
2125ed8d8bbSJosh Poimboeuf 	} else {
2135ed8d8bbSJosh Poimboeuf 		frame = next_bp;
2145ed8d8bbSJosh Poimboeuf 		len = FRAME_HEADER_SIZE;
2155ed8d8bbSJosh Poimboeuf 	}
2167c7900f8SJosh Poimboeuf 
2177c7900f8SJosh Poimboeuf 	/*
2185ed8d8bbSJosh Poimboeuf 	 * If the next bp isn't on the current stack, switch to the next one.
2197c7900f8SJosh Poimboeuf 	 *
2207c7900f8SJosh Poimboeuf 	 * We may have to traverse multiple stacks to deal with the possibility
2215ed8d8bbSJosh Poimboeuf 	 * that info->next_sp could point to an empty stack and the next bp
2225ed8d8bbSJosh Poimboeuf 	 * could be on a subsequent stack.
2237c7900f8SJosh Poimboeuf 	 */
2245ed8d8bbSJosh Poimboeuf 	while (!on_stack(info, frame, len))
2257c7900f8SJosh Poimboeuf 		if (get_stack_info(info->next_sp, state->task, info,
2267c7900f8SJosh Poimboeuf 				   &state->stack_mask))
2277c7900f8SJosh Poimboeuf 			return false;
2287c7900f8SJosh Poimboeuf 
2295ed8d8bbSJosh Poimboeuf 	/* Make sure it only unwinds up and doesn't overlap the prev frame: */
2305ed8d8bbSJosh Poimboeuf 	if (state->orig_sp && state->stack_info.type == prev_type &&
2315ed8d8bbSJosh Poimboeuf 	    frame < prev_frame_end)
2325ed8d8bbSJosh Poimboeuf 		return false;
2335ed8d8bbSJosh Poimboeuf 
2345ed8d8bbSJosh Poimboeuf 	/* Move state to the next frame: */
2355ed8d8bbSJosh Poimboeuf 	if (regs) {
2365ed8d8bbSJosh Poimboeuf 		state->regs = regs;
2375ed8d8bbSJosh Poimboeuf 		state->bp = NULL;
2385ed8d8bbSJosh Poimboeuf 	} else {
2395ed8d8bbSJosh Poimboeuf 		state->bp = next_bp;
2405ed8d8bbSJosh Poimboeuf 		state->regs = NULL;
2415ed8d8bbSJosh Poimboeuf 	}
2425ed8d8bbSJosh Poimboeuf 
2436bcdf9d5SJosh Poimboeuf 	/* Save the return address: */
2446bcdf9d5SJosh Poimboeuf 	if (state->regs && user_mode(state->regs))
2456bcdf9d5SJosh Poimboeuf 		state->ip = 0;
2466bcdf9d5SJosh Poimboeuf 	else {
2476bcdf9d5SJosh Poimboeuf 		addr_p = unwind_get_return_address_ptr(state);
2486bcdf9d5SJosh Poimboeuf 		addr = READ_ONCE_TASK_STACK(state->task, *addr_p);
2496bcdf9d5SJosh Poimboeuf 		state->ip = ftrace_graph_ret_addr(state->task, &state->graph_idx,
2506bcdf9d5SJosh Poimboeuf 						  addr, addr_p);
2516bcdf9d5SJosh Poimboeuf 	}
2526bcdf9d5SJosh Poimboeuf 
2535ed8d8bbSJosh Poimboeuf 	/* Save the original stack pointer for unwind_dump(): */
254262fa734SJosh Poimboeuf 	if (!state->orig_sp)
2555ed8d8bbSJosh Poimboeuf 		state->orig_sp = frame;
2568b5e99f0SJosh Poimboeuf 
2577c7900f8SJosh Poimboeuf 	return true;
2587c7900f8SJosh Poimboeuf }
2597c7900f8SJosh Poimboeuf 
2607c7900f8SJosh Poimboeuf bool unwind_next_frame(struct unwind_state *state)
2617c7900f8SJosh Poimboeuf {
262946c1911SJosh Poimboeuf 	struct pt_regs *regs;
2635ed8d8bbSJosh Poimboeuf 	unsigned long *next_bp;
2647c7900f8SJosh Poimboeuf 
2657c7900f8SJosh Poimboeuf 	if (unwind_done(state))
2667c7900f8SJosh Poimboeuf 		return false;
2677c7900f8SJosh Poimboeuf 
2685ed8d8bbSJosh Poimboeuf 	/* Have we reached the end? */
269946c1911SJosh Poimboeuf 	if (state->regs && user_mode(state->regs))
270946c1911SJosh Poimboeuf 		goto the_end;
271946c1911SJosh Poimboeuf 
272acb4608aSJosh Poimboeuf 	if (is_last_task_frame(state)) {
273acb4608aSJosh Poimboeuf 		regs = task_pt_regs(state->task);
274acb4608aSJosh Poimboeuf 
275acb4608aSJosh Poimboeuf 		/*
276acb4608aSJosh Poimboeuf 		 * kthreads (other than the boot CPU's idle thread) have some
277acb4608aSJosh Poimboeuf 		 * partial regs at the end of their stack which were placed
278acb4608aSJosh Poimboeuf 		 * there by copy_thread_tls().  But the regs don't have any
279acb4608aSJosh Poimboeuf 		 * useful information, so we can skip them.
280acb4608aSJosh Poimboeuf 		 *
281acb4608aSJosh Poimboeuf 		 * This user_mode() check is slightly broader than a PF_KTHREAD
282acb4608aSJosh Poimboeuf 		 * check because it also catches the awkward situation where a
283acb4608aSJosh Poimboeuf 		 * newly forked kthread transitions into a user task by calling
284acb4608aSJosh Poimboeuf 		 * do_execve(), which eventually clears PF_KTHREAD.
285acb4608aSJosh Poimboeuf 		 */
286acb4608aSJosh Poimboeuf 		if (!user_mode(regs))
287acb4608aSJosh Poimboeuf 			goto the_end;
288acb4608aSJosh Poimboeuf 
289acb4608aSJosh Poimboeuf 		/*
290acb4608aSJosh Poimboeuf 		 * We're almost at the end, but not quite: there's still the
291acb4608aSJosh Poimboeuf 		 * syscall regs frame.  Entry code doesn't encode the regs
292acb4608aSJosh Poimboeuf 		 * pointer for syscalls, so we have to set it manually.
293acb4608aSJosh Poimboeuf 		 */
294acb4608aSJosh Poimboeuf 		state->regs = regs;
295acb4608aSJosh Poimboeuf 		state->bp = NULL;
2966bcdf9d5SJosh Poimboeuf 		state->ip = 0;
297acb4608aSJosh Poimboeuf 		return true;
298acb4608aSJosh Poimboeuf 	}
299acb4608aSJosh Poimboeuf 
3005ed8d8bbSJosh Poimboeuf 	/* Get the next frame pointer: */
301f4f34e1bSJann Horn 	if (state->next_bp) {
302f4f34e1bSJann Horn 		next_bp = state->next_bp;
303f4f34e1bSJann Horn 		state->next_bp = NULL;
304f4f34e1bSJann Horn 	} else if (state->regs) {
305946c1911SJosh Poimboeuf 		next_bp = (unsigned long *)state->regs->bp;
306f4f34e1bSJann Horn 	} else {
30784936118SJosh Poimboeuf 		next_bp = (unsigned long *)READ_ONCE_TASK_STACK(state->task, *state->bp);
308f4f34e1bSJann Horn 	}
3097c7900f8SJosh Poimboeuf 
3105ed8d8bbSJosh Poimboeuf 	/* Move to the next frame if it's safe: */
311a8b7a923SJosh Poimboeuf 	if (!update_stack_state(state, next_bp))
312c32c47c6SJosh Poimboeuf 		goto bad_address;
313c32c47c6SJosh Poimboeuf 
3147c7900f8SJosh Poimboeuf 	return true;
315946c1911SJosh Poimboeuf 
316c32c47c6SJosh Poimboeuf bad_address:
317af085d90SJosh Poimboeuf 	state->error = true;
318af085d90SJosh Poimboeuf 
319900742d8SJosh Poimboeuf 	/*
320900742d8SJosh Poimboeuf 	 * When unwinding a non-current task, the task might actually be
321900742d8SJosh Poimboeuf 	 * running on another CPU, in which case it could be modifying its
322900742d8SJosh Poimboeuf 	 * stack while we're reading it.  This is generally not a problem and
323900742d8SJosh Poimboeuf 	 * can be ignored as long as the caller understands that unwinding
324900742d8SJosh Poimboeuf 	 * another task will not always succeed.
325900742d8SJosh Poimboeuf 	 */
326900742d8SJosh Poimboeuf 	if (state->task != current)
327900742d8SJosh Poimboeuf 		goto the_end;
328900742d8SJosh Poimboeuf 
329a8b7a923SJosh Poimboeuf 	/*
330a8b7a923SJosh Poimboeuf 	 * Don't warn if the unwinder got lost due to an interrupt in entry
331b0d50c7bSJosh Poimboeuf 	 * code or in the C handler before the first frame pointer got set up:
332a8b7a923SJosh Poimboeuf 	 */
333a8b7a923SJosh Poimboeuf 	if (state->got_irq && in_entry_code(state->ip))
334a8b7a923SJosh Poimboeuf 		goto the_end;
335b0d50c7bSJosh Poimboeuf 	if (state->regs &&
336b0d50c7bSJosh Poimboeuf 	    state->regs->sp >= (unsigned long)last_aligned_frame(state) &&
337b0d50c7bSJosh Poimboeuf 	    state->regs->sp < (unsigned long)task_pt_regs(state->task))
338b0d50c7bSJosh Poimboeuf 		goto the_end;
339a8b7a923SJosh Poimboeuf 
340d4a2d031SJosh Poimboeuf 	/*
341d4a2d031SJosh Poimboeuf 	 * There are some known frame pointer issues on 32-bit.  Disable
342d4a2d031SJosh Poimboeuf 	 * unwinder warnings on 32-bit until it gets objtool support.
343d4a2d031SJosh Poimboeuf 	 */
344d4a2d031SJosh Poimboeuf 	if (IS_ENABLED(CONFIG_X86_32))
345d4a2d031SJosh Poimboeuf 		goto the_end;
346d4a2d031SJosh Poimboeuf 
34724d86f59SJosh Poimboeuf 	if (state->regs) {
34824d86f59SJosh Poimboeuf 		printk_deferred_once(KERN_WARNING
34924d86f59SJosh Poimboeuf 			"WARNING: kernel stack regs at %p in %s:%d has bad 'bp' value %p\n",
35024d86f59SJosh Poimboeuf 			state->regs, state->task->comm,
3515ed8d8bbSJosh Poimboeuf 			state->task->pid, next_bp);
352aa4f8534SJosh Poimboeuf 		unwind_dump(state);
35324d86f59SJosh Poimboeuf 	} else {
354c32c47c6SJosh Poimboeuf 		printk_deferred_once(KERN_WARNING
355c32c47c6SJosh Poimboeuf 			"WARNING: kernel stack frame pointer at %p in %s:%d has bad value %p\n",
356c32c47c6SJosh Poimboeuf 			state->bp, state->task->comm,
3575ed8d8bbSJosh Poimboeuf 			state->task->pid, next_bp);
358aa4f8534SJosh Poimboeuf 		unwind_dump(state);
35924d86f59SJosh Poimboeuf 	}
360946c1911SJosh Poimboeuf the_end:
361946c1911SJosh Poimboeuf 	state->stack_info.type = STACK_TYPE_UNKNOWN;
362946c1911SJosh Poimboeuf 	return false;
3637c7900f8SJosh Poimboeuf }
3647c7900f8SJosh Poimboeuf EXPORT_SYMBOL_GPL(unwind_next_frame);
3657c7900f8SJosh Poimboeuf 
3667c7900f8SJosh Poimboeuf void __unwind_start(struct unwind_state *state, struct task_struct *task,
3677c7900f8SJosh Poimboeuf 		    struct pt_regs *regs, unsigned long *first_frame)
3687c7900f8SJosh Poimboeuf {
3695ed8d8bbSJosh Poimboeuf 	unsigned long *bp;
370946c1911SJosh Poimboeuf 
3717c7900f8SJosh Poimboeuf 	memset(state, 0, sizeof(*state));
3727c7900f8SJosh Poimboeuf 	state->task = task;
373a8b7a923SJosh Poimboeuf 	state->got_irq = (regs);
3747c7900f8SJosh Poimboeuf 
3755ed8d8bbSJosh Poimboeuf 	/* Don't even attempt to start from user mode regs: */
3767c7900f8SJosh Poimboeuf 	if (regs && user_mode(regs)) {
3777c7900f8SJosh Poimboeuf 		state->stack_info.type = STACK_TYPE_UNKNOWN;
3787c7900f8SJosh Poimboeuf 		return;
3797c7900f8SJosh Poimboeuf 	}
3807c7900f8SJosh Poimboeuf 
381946c1911SJosh Poimboeuf 	bp = get_frame_pointer(task, regs);
3827c7900f8SJosh Poimboeuf 
383f4f34e1bSJann Horn 	/*
384f4f34e1bSJann Horn 	 * If we crash with IP==0, the last successfully executed instruction
385f4f34e1bSJann Horn 	 * was probably an indirect function call with a NULL function pointer.
386f4f34e1bSJann Horn 	 * That means that SP points into the middle of an incomplete frame:
387f4f34e1bSJann Horn 	 * *SP is a return pointer, and *(SP-sizeof(unsigned long)) is where we
388f4f34e1bSJann Horn 	 * would have written a frame pointer if we hadn't crashed.
389f4f34e1bSJann Horn 	 * Pretend that the frame is complete and that BP points to it, but save
390f4f34e1bSJann Horn 	 * the real BP so that we can use it when looking for the next frame.
391f4f34e1bSJann Horn 	 */
392*3c88c692SPeter Zijlstra 	if (regs && regs->ip == 0 && (unsigned long *)regs->sp >= first_frame) {
393f4f34e1bSJann Horn 		state->next_bp = bp;
394*3c88c692SPeter Zijlstra 		bp = ((unsigned long *)regs->sp) - 1;
395f4f34e1bSJann Horn 	}
396f4f34e1bSJann Horn 
3975ed8d8bbSJosh Poimboeuf 	/* Initialize stack info and make sure the frame data is accessible: */
3985ed8d8bbSJosh Poimboeuf 	get_stack_info(bp, state->task, &state->stack_info,
3997c7900f8SJosh Poimboeuf 		       &state->stack_mask);
4005ed8d8bbSJosh Poimboeuf 	update_stack_state(state, bp);
4017c7900f8SJosh Poimboeuf 
4027c7900f8SJosh Poimboeuf 	/*
4037c7900f8SJosh Poimboeuf 	 * The caller can provide the address of the first frame directly
4047c7900f8SJosh Poimboeuf 	 * (first_frame) or indirectly (regs->sp) to indicate which stack frame
4057c7900f8SJosh Poimboeuf 	 * to start unwinding at.  Skip ahead until we reach it.
4067c7900f8SJosh Poimboeuf 	 */
4077c7900f8SJosh Poimboeuf 	while (!unwind_done(state) &&
4087c7900f8SJosh Poimboeuf 	       (!on_stack(&state->stack_info, first_frame, sizeof(long)) ||
409f4f34e1bSJann Horn 			(state->next_bp == NULL && state->bp < first_frame)))
4107c7900f8SJosh Poimboeuf 		unwind_next_frame(state);
4117c7900f8SJosh Poimboeuf }
4127c7900f8SJosh Poimboeuf EXPORT_SYMBOL_GPL(__unwind_start);
413