4 * @remark Copyright 2002 OProfile authors
5 * @remark Read the file COPYING
11 #include <linux/oprofile.h>
12 #include <linux/sched.h>
14 #include <asm/ptrace.h>
15 #include <asm/uaccess.h>
16 #include <asm/stacktrace.h>
17 #include <linux/compat.h>
19 static void backtrace_warning_symbol(void *data
, char *msg
,
25 static void backtrace_warning(void *data
, char *msg
)
30 static int backtrace_stack(void *data
, char *name
)
32 /* Yes, we want all stacks */
36 static void backtrace_address(void *data
, unsigned long addr
, int reliable
)
38 unsigned int *depth
= data
;
41 oprofile_add_trace(addr
);
44 static struct stacktrace_ops backtrace_ops
= {
45 .warning
= backtrace_warning
,
46 .warning_symbol
= backtrace_warning_symbol
,
47 .stack
= backtrace_stack
,
48 .address
= backtrace_address
,
49 .walk_stack
= print_context_stack
,
53 static struct stack_frame_ia32
*
54 dump_user_backtrace_32(struct stack_frame_ia32
*head
)
56 struct stack_frame_ia32 bufhead
[2];
57 struct stack_frame_ia32
*fp
;
59 /* Also check accessibility of one struct frame_head beyond */
60 if (!access_ok(VERIFY_READ
, head
, sizeof(bufhead
)))
62 if (__copy_from_user_inatomic(bufhead
, head
, sizeof(bufhead
)))
65 fp
= (struct stack_frame_ia32
*) compat_ptr(bufhead
[0].next_frame
);
67 oprofile_add_trace(bufhead
[0].return_address
);
69 /* frame pointers should strictly progress back up the stack
70 * (towards higher addresses) */
78 x86_backtrace_32(struct pt_regs
* const regs
, unsigned int depth
)
80 struct stack_frame_ia32
*head
;
82 /* User process is 32-bit */
83 if (!current
|| !test_thread_flag(TIF_IA32
))
86 head
= (struct stack_frame_ia32
*) regs
->bp
;
87 while (depth
-- && head
)
88 head
= dump_user_backtrace_32(head
);
95 x86_backtrace_32(struct pt_regs
* const regs
, unsigned int depth
)
99 #endif /* CONFIG_COMPAT */
101 static struct stack_frame
*dump_user_backtrace(struct stack_frame
*head
)
103 struct stack_frame bufhead
[2];
105 /* Also check accessibility of one struct stack_frame beyond */
106 if (!access_ok(VERIFY_READ
, head
, sizeof(bufhead
)))
108 if (__copy_from_user_inatomic(bufhead
, head
, sizeof(bufhead
)))
111 oprofile_add_trace(bufhead
[0].return_address
);
113 /* frame pointers should strictly progress back up the stack
114 * (towards higher addresses) */
115 if (head
>= bufhead
[0].next_frame
)
118 return bufhead
[0].next_frame
;
122 x86_backtrace(struct pt_regs
* const regs
, unsigned int depth
)
124 struct stack_frame
*head
= (struct stack_frame
*)frame_pointer(regs
);
126 if (!user_mode_vm(regs
)) {
127 unsigned long stack
= kernel_stack_pointer(regs
);
129 dump_trace(NULL
, regs
, (unsigned long *)stack
, 0,
130 &backtrace_ops
, &depth
);
134 if (x86_backtrace_32(regs
, depth
))
137 while (depth
-- && head
)
138 head
= dump_user_backtrace(head
);