blob: 2d49d4e19a3619c0be2c7d17a892b8aea582048f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file backtrace.c
3 *
4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
6 *
7 * @author John Levon
8 * @author David Smith
9 */
10
11#include <linux/oprofile.h>
12#include <linux/sched.h>
13#include <linux/mm.h>
14#include <asm/ptrace.h>
Hugh Dickinsc34d1b42005-10-29 18:16:32 -070015#include <asm/uaccess.h>
Jan Blunck574a6042007-10-19 20:35:03 +020016#include <asm/stacktrace.h>
Jiri Olsaf6dedec2010-09-29 10:46:47 -040017#include <linux/compat.h>
Jan Blunck574a6042007-10-19 20:35:03 +020018
19static void backtrace_warning_symbol(void *data, char *msg,
20 unsigned long symbol)
21{
22 /* Ignore warnings */
23}
24
25static void backtrace_warning(void *data, char *msg)
26{
27 /* Ignore warnings */
28}
29
30static int backtrace_stack(void *data, char *name)
31{
32 /* Yes, we want all stacks */
33 return 0;
34}
35
Arjan van de Venbc850d62008-01-30 13:33:07 +010036static void backtrace_address(void *data, unsigned long addr, int reliable)
Jan Blunck574a6042007-10-19 20:35:03 +020037{
38 unsigned int *depth = data;
39
40 if ((*depth)--)
41 oprofile_add_trace(addr);
42}
43
44static struct stacktrace_ops backtrace_ops = {
Frederic Weisbecker61c19172009-12-17 05:40:33 +010045 .warning = backtrace_warning,
46 .warning_symbol = backtrace_warning_symbol,
47 .stack = backtrace_stack,
48 .address = backtrace_address,
49 .walk_stack = print_context_stack,
Jan Blunck574a6042007-10-19 20:35:03 +020050};
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Jiri Olsaf6dedec2010-09-29 10:46:47 -040052#ifdef CONFIG_COMPAT
53static struct stack_frame_ia32 *
54dump_user_backtrace_32(struct stack_frame_ia32 *head)
55{
56 struct stack_frame_ia32 bufhead[2];
57 struct stack_frame_ia32 *fp;
58
59 /* Also check accessibility of one struct frame_head beyond */
60 if (!access_ok(VERIFY_READ, head, sizeof(bufhead)))
61 return NULL;
62 if (__copy_from_user_inatomic(bufhead, head, sizeof(bufhead)))
63 return NULL;
64
65 fp = (struct stack_frame_ia32 *) compat_ptr(bufhead[0].next_frame);
66
67 oprofile_add_trace(bufhead[0].return_address);
68
69 /* frame pointers should strictly progress back up the stack
70 * (towards higher addresses) */
71 if (head >= fp)
72 return NULL;
73
74 return fp;
75}
76
77static inline int
78x86_backtrace_32(struct pt_regs * const regs, unsigned int depth)
79{
80 struct stack_frame_ia32 *head;
81
82 /* User process is 32-bit */
83 if (!current || !test_thread_flag(TIF_IA32))
84 return 0;
85
86 head = (struct stack_frame_ia32 *) regs->bp;
87 while (depth-- && head)
88 head = dump_user_backtrace_32(head);
89
90 return 1;
91}
92
93#else
94static inline int
95x86_backtrace_32(struct pt_regs * const regs, unsigned int depth)
96{
97 return 0;
98}
99#endif /* CONFIG_COMPAT */
100
Jiri Olsa40c6b3c2010-09-29 10:46:46 -0400101static struct stack_frame *dump_user_backtrace(struct stack_frame *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Jiri Olsa40c6b3c2010-09-29 10:46:46 -0400103 struct stack_frame bufhead[2];
Hugh Dickinsc34d1b42005-10-29 18:16:32 -0700104
Jiri Olsa40c6b3c2010-09-29 10:46:46 -0400105 /* Also check accessibility of one struct stack_frame beyond */
Hugh Dickinsc34d1b42005-10-29 18:16:32 -0700106 if (!access_ok(VERIFY_READ, head, sizeof(bufhead)))
107 return NULL;
108 if (__copy_from_user_inatomic(bufhead, head, sizeof(bufhead)))
109 return NULL;
110
Jiri Olsa40c6b3c2010-09-29 10:46:46 -0400111 oprofile_add_trace(bufhead[0].return_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 /* frame pointers should strictly progress back up the stack
114 * (towards higher addresses) */
Jiri Olsa40c6b3c2010-09-29 10:46:46 -0400115 if (head >= bufhead[0].next_frame)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return NULL;
117
Jiri Olsa40c6b3c2010-09-29 10:46:46 -0400118 return bufhead[0].next_frame;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121void
122x86_backtrace(struct pt_regs * const regs, unsigned int depth)
123{
Jiri Olsa40c6b3c2010-09-29 10:46:46 -0400124 struct stack_frame *head = (struct stack_frame *)frame_pointer(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Vincent Hanquezfa1e1bd2005-06-23 00:08:44 -0700126 if (!user_mode_vm(regs)) {
Masami Hiramatsu7b6c6c72009-05-11 17:03:00 -0400127 unsigned long stack = kernel_stack_pointer(regs);
Jan Blunck574a6042007-10-19 20:35:03 +0200128 if (depth)
Arjan van de Ven5bc27dc2008-01-30 13:33:07 +0100129 dump_trace(NULL, regs, (unsigned long *)stack, 0,
Jan Blunck574a6042007-10-19 20:35:03 +0200130 &backtrace_ops, &depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return;
132 }
133
Jiri Olsaf6dedec2010-09-29 10:46:47 -0400134 if (x86_backtrace_32(regs, depth))
135 return;
136
Hugh Dickinsc34d1b42005-10-29 18:16:32 -0700137 while (depth-- && head)
Gerald Britton30379442006-02-14 10:19:04 -0500138 head = dump_user_backtrace(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}