2 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
5 #include <linux/stacktrace.h>
6 #include <linux/kallsyms.h>
7 #include <linux/seq_file.h>
8 #include <linux/spinlock.h>
9 #include <linux/uaccess.h>
10 #include <linux/ftrace.h>
11 #include <linux/module.h>
12 #include <linux/sysctl.h>
13 #include <linux/init.h>
15 #include <asm/setup.h>
19 #define STACK_TRACE_ENTRIES 500
21 #ifdef CC_USING_FENTRY
27 static unsigned long stack_dump_trace
[STACK_TRACE_ENTRIES
+1] =
28 { [0 ... (STACK_TRACE_ENTRIES
)] = ULONG_MAX
};
29 static unsigned stack_dump_index
[STACK_TRACE_ENTRIES
];
32 * Reserve one entry for the passed in ip. This will allow
33 * us to remove most or all of the stack size overhead
34 * added by the stack tracer itself.
36 static struct stack_trace max_stack_trace
= {
37 .max_entries
= STACK_TRACE_ENTRIES
- 1,
38 .entries
= &stack_dump_trace
[1],
41 static unsigned long max_stack_size
;
42 static arch_spinlock_t max_stack_lock
=
43 (arch_spinlock_t
)__ARCH_SPIN_LOCK_UNLOCKED
;
45 static DEFINE_PER_CPU(int, trace_active
);
46 static DEFINE_MUTEX(stack_sysctl_mutex
);
48 int stack_tracer_enabled
;
49 static int last_stack_tracer_enabled
;
51 static inline void print_max_stack(void)
56 pr_emerg(" Depth Size Location (%d entries)\n"
57 " ----- ---- --------\n",
58 max_stack_trace
.nr_entries
- 1);
60 for (i
= 0; i
< max_stack_trace
.nr_entries
; i
++) {
61 if (stack_dump_trace
[i
] == ULONG_MAX
)
63 if (i
+1 == max_stack_trace
.nr_entries
||
64 stack_dump_trace
[i
+1] == ULONG_MAX
)
65 size
= stack_dump_index
[i
];
67 size
= stack_dump_index
[i
] - stack_dump_index
[i
+1];
69 pr_emerg("%3ld) %8d %5d %pS\n", i
, stack_dump_index
[i
],
70 size
, (void *)stack_dump_trace
[i
]);
75 check_stack(unsigned long ip
, unsigned long *stack
)
77 unsigned long this_size
, flags
; unsigned long *p
, *top
, *start
;
78 static int tracer_frame
;
79 int frame_size
= ACCESS_ONCE(tracer_frame
);
82 this_size
= ((unsigned long)stack
) & (THREAD_SIZE
-1);
83 this_size
= THREAD_SIZE
- this_size
;
84 /* Remove the frame of the tracer */
85 this_size
-= frame_size
;
87 if (this_size
<= max_stack_size
)
90 /* we do not handle interrupt stacks yet */
91 if (!object_is_on_stack(stack
))
94 local_irq_save(flags
);
95 arch_spin_lock(&max_stack_lock
);
97 /* In case another CPU set the tracer_frame on us */
98 if (unlikely(!frame_size
))
99 this_size
-= tracer_frame
;
101 /* a race could have already updated it */
102 if (this_size
<= max_stack_size
)
105 max_stack_size
= this_size
;
107 max_stack_trace
.nr_entries
= 0;
109 if (using_ftrace_ops_list_func())
110 max_stack_trace
.skip
= 4;
112 max_stack_trace
.skip
= 3;
114 save_stack_trace(&max_stack_trace
);
117 * Add the passed in ip from the function tracer.
118 * Searching for this on the stack will skip over
119 * most of the overhead from the stack tracer itself.
121 stack_dump_trace
[0] = ip
;
122 max_stack_trace
.nr_entries
++;
125 * Now find where in the stack these are.
129 top
= (unsigned long *)
130 (((unsigned long)start
& ~(THREAD_SIZE
-1)) + THREAD_SIZE
);
133 * Loop through all the entries. One of the entries may
134 * for some reason be missed on the stack, so we may
135 * have to account for them. If they are all there, this
136 * loop will only happen once. This code only takes place
137 * on a new max, so it is far from a fast path.
139 while (i
< max_stack_trace
.nr_entries
) {
142 stack_dump_index
[i
] = this_size
;
145 for (; p
< top
&& i
< max_stack_trace
.nr_entries
; p
++) {
146 if (*p
== stack_dump_trace
[i
]) {
147 this_size
= stack_dump_index
[i
++] =
148 (top
- p
) * sizeof(unsigned long);
150 /* Start the search from here */
153 * We do not want to show the overhead
154 * of the stack tracer stack in the
155 * max stack. If we haven't figured
156 * out what that is, then figure it out
159 if (unlikely(!tracer_frame
) && i
== 1) {
160 tracer_frame
= (p
- stack
) *
161 sizeof(unsigned long);
162 max_stack_size
-= tracer_frame
;
171 if (task_stack_end_corrupted(current
)) {
177 arch_spin_unlock(&max_stack_lock
);
178 local_irq_restore(flags
);
182 stack_trace_call(unsigned long ip
, unsigned long parent_ip
,
183 struct ftrace_ops
*op
, struct pt_regs
*pt_regs
)
188 preempt_disable_notrace();
190 cpu
= raw_smp_processor_id();
191 /* no atomic needed, we only modify this variable by this cpu */
192 if (per_cpu(trace_active
, cpu
)++ != 0)
196 * When fentry is used, the traced function does not get
197 * its stack frame set up, and we lose the parent.
198 * The ip is pretty useless because the function tracer
199 * was called before that function set up its stack frame.
200 * In this case, we use the parent ip.
202 * By adding the return address of either the parent ip
203 * or the current ip we can disregard most of the stack usage
204 * caused by the stack tracer itself.
206 * The function tracer always reports the address of where the
207 * mcount call was, but the stack will hold the return address.
212 ip
+= MCOUNT_INSN_SIZE
;
214 check_stack(ip
, &stack
);
217 per_cpu(trace_active
, cpu
)--;
218 /* prevent recursion in schedule */
219 preempt_enable_notrace();
222 static struct ftrace_ops trace_ops __read_mostly
=
224 .func
= stack_trace_call
,
225 .flags
= FTRACE_OPS_FL_RECURSION_SAFE
,
229 stack_max_size_read(struct file
*filp
, char __user
*ubuf
,
230 size_t count
, loff_t
*ppos
)
232 unsigned long *ptr
= filp
->private_data
;
236 r
= snprintf(buf
, sizeof(buf
), "%ld\n", *ptr
);
239 return simple_read_from_buffer(ubuf
, count
, ppos
, buf
, r
);
243 stack_max_size_write(struct file
*filp
, const char __user
*ubuf
,
244 size_t count
, loff_t
*ppos
)
246 long *ptr
= filp
->private_data
;
247 unsigned long val
, flags
;
251 ret
= kstrtoul_from_user(ubuf
, count
, 10, &val
);
255 local_irq_save(flags
);
258 * In case we trace inside arch_spin_lock() or after (NMI),
259 * we will cause circular lock, so we also need to increase
260 * the percpu trace_active here.
262 cpu
= smp_processor_id();
263 per_cpu(trace_active
, cpu
)++;
265 arch_spin_lock(&max_stack_lock
);
267 arch_spin_unlock(&max_stack_lock
);
269 per_cpu(trace_active
, cpu
)--;
270 local_irq_restore(flags
);
275 static const struct file_operations stack_max_size_fops
= {
276 .open
= tracing_open_generic
,
277 .read
= stack_max_size_read
,
278 .write
= stack_max_size_write
,
279 .llseek
= default_llseek
,
283 __next(struct seq_file
*m
, loff_t
*pos
)
287 if (n
>= max_stack_trace
.nr_entries
|| stack_dump_trace
[n
] == ULONG_MAX
)
290 m
->private = (void *)n
;
295 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
298 return __next(m
, pos
);
301 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
307 cpu
= smp_processor_id();
308 per_cpu(trace_active
, cpu
)++;
310 arch_spin_lock(&max_stack_lock
);
313 return SEQ_START_TOKEN
;
315 return __next(m
, pos
);
318 static void t_stop(struct seq_file
*m
, void *p
)
322 arch_spin_unlock(&max_stack_lock
);
324 cpu
= smp_processor_id();
325 per_cpu(trace_active
, cpu
)--;
330 static void trace_lookup_stack(struct seq_file
*m
, long i
)
332 unsigned long addr
= stack_dump_trace
[i
];
334 seq_printf(m
, "%pS\n", (void *)addr
);
337 static void print_disabled(struct seq_file
*m
)
340 "# Stack tracer disabled\n"
342 "# To enable the stack tracer, either add 'stacktrace' to the\n"
343 "# kernel command line\n"
344 "# or 'echo 1 > /proc/sys/kernel/stack_tracer_enabled'\n"
348 static int t_show(struct seq_file
*m
, void *v
)
353 if (v
== SEQ_START_TOKEN
) {
354 seq_printf(m
, " Depth Size Location"
356 " ----- ---- --------\n",
357 max_stack_trace
.nr_entries
- 1);
359 if (!stack_tracer_enabled
&& !max_stack_size
)
367 if (i
>= max_stack_trace
.nr_entries
||
368 stack_dump_trace
[i
] == ULONG_MAX
)
371 if (i
+1 == max_stack_trace
.nr_entries
||
372 stack_dump_trace
[i
+1] == ULONG_MAX
)
373 size
= stack_dump_index
[i
];
375 size
= stack_dump_index
[i
] - stack_dump_index
[i
+1];
377 seq_printf(m
, "%3ld) %8d %5d ", i
, stack_dump_index
[i
], size
);
379 trace_lookup_stack(m
, i
);
384 static const struct seq_operations stack_trace_seq_ops
= {
391 static int stack_trace_open(struct inode
*inode
, struct file
*file
)
393 return seq_open(file
, &stack_trace_seq_ops
);
396 static const struct file_operations stack_trace_fops
= {
397 .open
= stack_trace_open
,
400 .release
= seq_release
,
404 stack_trace_filter_open(struct inode
*inode
, struct file
*file
)
406 return ftrace_regex_open(&trace_ops
, FTRACE_ITER_FILTER
,
410 static const struct file_operations stack_trace_filter_fops
= {
411 .open
= stack_trace_filter_open
,
413 .write
= ftrace_filter_write
,
414 .llseek
= tracing_lseek
,
415 .release
= ftrace_regex_release
,
419 stack_trace_sysctl(struct ctl_table
*table
, int write
,
420 void __user
*buffer
, size_t *lenp
,
425 mutex_lock(&stack_sysctl_mutex
);
427 ret
= proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
430 (last_stack_tracer_enabled
== !!stack_tracer_enabled
))
433 last_stack_tracer_enabled
= !!stack_tracer_enabled
;
435 if (stack_tracer_enabled
)
436 register_ftrace_function(&trace_ops
);
438 unregister_ftrace_function(&trace_ops
);
441 mutex_unlock(&stack_sysctl_mutex
);
445 static char stack_trace_filter_buf
[COMMAND_LINE_SIZE
+1] __initdata
;
447 static __init
int enable_stacktrace(char *str
)
449 if (strncmp(str
, "_filter=", 8) == 0)
450 strncpy(stack_trace_filter_buf
, str
+8, COMMAND_LINE_SIZE
);
452 stack_tracer_enabled
= 1;
453 last_stack_tracer_enabled
= 1;
456 __setup("stacktrace", enable_stacktrace
);
458 static __init
int stack_trace_init(void)
460 struct dentry
*d_tracer
;
462 d_tracer
= tracing_init_dentry();
463 if (IS_ERR(d_tracer
))
466 trace_create_file("stack_max_size", 0644, d_tracer
,
467 &max_stack_size
, &stack_max_size_fops
);
469 trace_create_file("stack_trace", 0444, d_tracer
,
470 NULL
, &stack_trace_fops
);
472 trace_create_file("stack_trace_filter", 0444, d_tracer
,
473 NULL
, &stack_trace_filter_fops
);
475 if (stack_trace_filter_buf
[0])
476 ftrace_set_early_filter(&trace_ops
, stack_trace_filter_buf
, 1);
478 if (stack_tracer_enabled
)
479 register_ftrace_function(&trace_ops
);
484 device_initcall(stack_trace_init
);