stacktrace.c 4.6 KB
Newer Older
1
#include <linux/export.h>
2 3 4
#include <linux/sched.h>
#include <linux/stacktrace.h>

5
#include <asm/stacktrace.h>
6
#include <asm/traps.h>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

#if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND)
/*
 * Unwind the current stack frame and store the new register values in the
 * structure passed as argument. Unwinding is equivalent to a function return,
 * hence the new PC value rather than LR should be used for backtrace.
 *
 * With framepointer enabled, a simple function prologue looks like this:
 *	mov	ip, sp
 *	stmdb	sp!, {fp, ip, lr, pc}
 *	sub	fp, ip, #4
 *
 * A simple function epilogue looks like this:
 *	ldm	sp, {fp, sp, pc}
 *
 * Note that with framepointer enabled, even the leaf functions have the same
 * prologue and epilogue, therefore we can ignore the LR value in this case.
 */
25
int notrace unwind_frame(struct stackframe *frame)
26
{
27 28
	unsigned long high, low;
	unsigned long fp = frame->fp;
29

30 31
	/* only go to a higher address on the stack */
	low = frame->sp;
32
	high = ALIGN(low, THREAD_SIZE);
33

34
	/* check current frame pointer is within bounds */
35
	if (fp < low + 12 || fp > high - 4)
36
		return -EINVAL;
37

38 39 40 41
	/* restore the registers from the stack frame */
	frame->fp = *(unsigned long *)(fp - 12);
	frame->sp = *(unsigned long *)(fp - 8);
	frame->pc = *(unsigned long *)(fp - 4);
42 43 44

	return 0;
}
45 46
#endif

47
void notrace walk_stackframe(struct stackframe *frame,
48 49 50 51 52 53 54 55 56 57 58 59
		     int (*fn)(struct stackframe *, void *), void *data)
{
	while (1) {
		int ret;

		if (fn(frame, data))
			break;
		ret = unwind_frame(frame);
		if (ret < 0)
			break;
	}
}
60
EXPORT_SYMBOL(walk_stackframe);
61 62 63 64

#ifdef CONFIG_STACKTRACE
struct stack_trace_data {
	struct stack_trace *trace;
65
	unsigned long last_pc;
N
Nicolas Pitre 已提交
66
	unsigned int no_sched_functions;
67 68 69 70 71 72 73
	unsigned int skip;
};

static int save_trace(struct stackframe *frame, void *d)
{
	struct stack_trace_data *data = d;
	struct stack_trace *trace = data->trace;
74
	struct pt_regs *regs;
75
	unsigned long addr = frame->pc;
76

N
Nicolas Pitre 已提交
77 78
	if (data->no_sched_functions && in_sched_functions(addr))
		return 0;
79 80 81 82 83
	if (data->skip) {
		data->skip--;
		return 0;
	}

N
Nicolas Pitre 已提交
84
	trace->entries[trace->nr_entries++] = addr;
85

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
	if (trace->nr_entries >= trace->max_entries)
		return 1;

	/*
	 * in_exception_text() is designed to test if the PC is one of
	 * the functions which has an exception stack above it, but
	 * unfortunately what is in frame->pc is the return LR value,
	 * not the saved PC value.  So, we need to track the previous
	 * frame PC value when doing this.
	 */
	addr = data->last_pc;
	data->last_pc = frame->pc;
	if (!in_exception_text(addr))
		return 0;

	regs = (struct pt_regs *)frame->sp;

	trace->entries[trace->nr_entries++] = regs->ARM_pc;

105 106 107
	return trace->nr_entries >= trace->max_entries;
}

108 109 110
/* This must be noinline to so that our skip calculation works correctly */
static noinline void __save_stack_trace(struct task_struct *tsk,
	struct stack_trace *trace, unsigned int nosched)
111 112
{
	struct stack_trace_data data;
113
	struct stackframe frame;
114 115

	data.trace = trace;
116
	data.last_pc = ULONG_MAX;
117
	data.skip = trace->skip;
118
	data.no_sched_functions = nosched;
N
Nicolas Pitre 已提交
119 120 121 122

	if (tsk != current) {
#ifdef CONFIG_SMP
		/*
R
Russell King 已提交
123 124 125
		 * What guarantees do we have here that 'tsk' is not
		 * running on another CPU?  For now, ignore it as we
		 * can't guarantee we won't explode.
N
Nicolas Pitre 已提交
126
		 */
R
Russell King 已提交
127 128 129
		if (trace->nr_entries < trace->max_entries)
			trace->entries[trace->nr_entries++] = ULONG_MAX;
		return;
N
Nicolas Pitre 已提交
130
#else
131 132 133 134
		frame.fp = thread_saved_fp(tsk);
		frame.sp = thread_saved_sp(tsk);
		frame.lr = 0;		/* recovered from the stack */
		frame.pc = thread_saved_pc(tsk);
N
Nicolas Pitre 已提交
135 136
#endif
	} else {
137 138
		register unsigned long current_sp asm ("sp");

139 140
		/* We don't want this function nor the caller */
		data.skip += 2;
141 142 143
		frame.fp = (unsigned long)__builtin_frame_address(0);
		frame.sp = current_sp;
		frame.lr = (unsigned long)__builtin_return_address(0);
144
		frame.pc = (unsigned long)__save_stack_trace;
N
Nicolas Pitre 已提交
145
	}
146

147
	walk_stackframe(&frame, save_trace, &data);
N
Nicolas Pitre 已提交
148 149 150 151
	if (trace->nr_entries < trace->max_entries)
		trace->entries[trace->nr_entries++] = ULONG_MAX;
}

152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
void save_stack_trace_regs(struct pt_regs *regs, struct stack_trace *trace)
{
	struct stack_trace_data data;
	struct stackframe frame;

	data.trace = trace;
	data.skip = trace->skip;
	data.no_sched_functions = 0;

	frame.fp = regs->ARM_fp;
	frame.sp = regs->ARM_sp;
	frame.lr = regs->ARM_lr;
	frame.pc = regs->ARM_pc;

	walk_stackframe(&frame, save_trace, &data);
	if (trace->nr_entries < trace->max_entries)
		trace->entries[trace->nr_entries++] = ULONG_MAX;
}

171 172 173 174 175
void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
{
	__save_stack_trace(tsk, trace, 1);
}

N
Nicolas Pitre 已提交
176 177
void save_stack_trace(struct stack_trace *trace)
{
178
	__save_stack_trace(current, trace, 0);
179
}
180
EXPORT_SYMBOL_GPL(save_stack_trace);
181
#endif