Linux 4.1.18
[linux/fpc-iii.git] / kernel / trace / trace_stack.c
blob3f34496244e936c876184131d322ea58e597e563
1 /*
2 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
4 */
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>
17 #include "trace.h"
19 #define STACK_TRACE_ENTRIES 500
21 #ifdef CC_USING_FENTRY
22 # define fentry 1
23 #else
24 # define fentry 0
25 #endif
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)
53 long i;
54 int size;
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)
62 break;
63 if (i+1 == max_stack_trace.nr_entries ||
64 stack_dump_trace[i+1] == ULONG_MAX)
65 size = stack_dump_index[i];
66 else
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]);
74 static inline void
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);
80 int i;
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)
88 return;
90 /* we do not handle interrupt stacks yet */
91 if (!object_is_on_stack(stack))
92 return;
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)
103 goto out;
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;
111 else
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.
127 i = 0;
128 start = stack;
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) {
140 int found = 0;
142 stack_dump_index[i] = this_size;
143 p = start;
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);
149 found = 1;
150 /* Start the search from here */
151 start = p + 1;
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
157 * now.
159 if (unlikely(!tracer_frame) && i == 1) {
160 tracer_frame = (p - stack) *
161 sizeof(unsigned long);
162 max_stack_size -= tracer_frame;
167 if (!found)
168 i++;
171 if (task_stack_end_corrupted(current)) {
172 print_max_stack();
173 BUG();
176 out:
177 arch_spin_unlock(&max_stack_lock);
178 local_irq_restore(flags);
181 static void
182 stack_trace_call(unsigned long ip, unsigned long parent_ip,
183 struct ftrace_ops *op, struct pt_regs *pt_regs)
185 unsigned long stack;
186 int cpu;
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)
193 goto out;
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.
209 if (fentry)
210 ip = parent_ip;
211 else
212 ip += MCOUNT_INSN_SIZE;
214 check_stack(ip, &stack);
216 out:
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,
228 static ssize_t
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;
233 char buf[64];
234 int r;
236 r = snprintf(buf, sizeof(buf), "%ld\n", *ptr);
237 if (r > sizeof(buf))
238 r = sizeof(buf);
239 return simple_read_from_buffer(ubuf, count, ppos, buf, r);
242 static ssize_t
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;
248 int ret;
249 int cpu;
251 ret = kstrtoul_from_user(ubuf, count, 10, &val);
252 if (ret)
253 return ret;
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);
266 *ptr = val;
267 arch_spin_unlock(&max_stack_lock);
269 per_cpu(trace_active, cpu)--;
270 local_irq_restore(flags);
272 return count;
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,
282 static void *
283 __next(struct seq_file *m, loff_t *pos)
285 long n = *pos - 1;
287 if (n >= max_stack_trace.nr_entries || stack_dump_trace[n] == ULONG_MAX)
288 return NULL;
290 m->private = (void *)n;
291 return &m->private;
294 static void *
295 t_next(struct seq_file *m, void *v, loff_t *pos)
297 (*pos)++;
298 return __next(m, pos);
301 static void *t_start(struct seq_file *m, loff_t *pos)
303 int cpu;
305 local_irq_disable();
307 cpu = smp_processor_id();
308 per_cpu(trace_active, cpu)++;
310 arch_spin_lock(&max_stack_lock);
312 if (*pos == 0)
313 return SEQ_START_TOKEN;
315 return __next(m, pos);
318 static void t_stop(struct seq_file *m, void *p)
320 int cpu;
322 arch_spin_unlock(&max_stack_lock);
324 cpu = smp_processor_id();
325 per_cpu(trace_active, cpu)--;
327 local_irq_enable();
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)
339 seq_puts(m, "#\n"
340 "# Stack tracer disabled\n"
341 "#\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"
345 "#\n");
348 static int t_show(struct seq_file *m, void *v)
350 long i;
351 int size;
353 if (v == SEQ_START_TOKEN) {
354 seq_printf(m, " Depth Size Location"
355 " (%d entries)\n"
356 " ----- ---- --------\n",
357 max_stack_trace.nr_entries - 1);
359 if (!stack_tracer_enabled && !max_stack_size)
360 print_disabled(m);
362 return 0;
365 i = *(long *)v;
367 if (i >= max_stack_trace.nr_entries ||
368 stack_dump_trace[i] == ULONG_MAX)
369 return 0;
371 if (i+1 == max_stack_trace.nr_entries ||
372 stack_dump_trace[i+1] == ULONG_MAX)
373 size = stack_dump_index[i];
374 else
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);
381 return 0;
384 static const struct seq_operations stack_trace_seq_ops = {
385 .start = t_start,
386 .next = t_next,
387 .stop = t_stop,
388 .show = t_show,
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,
398 .read = seq_read,
399 .llseek = seq_lseek,
400 .release = seq_release,
403 static int
404 stack_trace_filter_open(struct inode *inode, struct file *file)
406 return ftrace_regex_open(&trace_ops, FTRACE_ITER_FILTER,
407 inode, file);
410 static const struct file_operations stack_trace_filter_fops = {
411 .open = stack_trace_filter_open,
412 .read = seq_read,
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,
421 loff_t *ppos)
423 int ret;
425 mutex_lock(&stack_sysctl_mutex);
427 ret = proc_dointvec(table, write, buffer, lenp, ppos);
429 if (ret || !write ||
430 (last_stack_tracer_enabled == !!stack_tracer_enabled))
431 goto out;
433 last_stack_tracer_enabled = !!stack_tracer_enabled;
435 if (stack_tracer_enabled)
436 register_ftrace_function(&trace_ops);
437 else
438 unregister_ftrace_function(&trace_ops);
440 out:
441 mutex_unlock(&stack_sysctl_mutex);
442 return ret;
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;
454 return 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))
464 return 0;
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);
481 return 0;
484 device_initcall(stack_trace_init);