fd6e1b906b3c53fe91749b951f179c0a009b3f58
[deliverable/linux.git] / kernel / trace / trace.c
1 /*
2 * ring buffer based function tracer
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Originally taken from the RT patch by:
8 * Arnaldo Carvalho de Melo <acme@redhat.com>
9 *
10 * Based on code from the latency_tracer, that is:
11 * Copyright (C) 2004-2006 Ingo Molnar
12 * Copyright (C) 2004 William Lee Irwin III
13 */
14 #include <linux/ring_buffer.h>
15 #include <generated/utsrelease.h>
16 #include <linux/stacktrace.h>
17 #include <linux/writeback.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/notifier.h>
21 #include <linux/irqflags.h>
22 #include <linux/debugfs.h>
23 #include <linux/pagemap.h>
24 #include <linux/hardirq.h>
25 #include <linux/linkage.h>
26 #include <linux/uaccess.h>
27 #include <linux/kprobes.h>
28 #include <linux/ftrace.h>
29 #include <linux/module.h>
30 #include <linux/percpu.h>
31 #include <linux/splice.h>
32 #include <linux/kdebug.h>
33 #include <linux/string.h>
34 #include <linux/rwsem.h>
35 #include <linux/slab.h>
36 #include <linux/ctype.h>
37 #include <linux/init.h>
38 #include <linux/poll.h>
39 #include <linux/fs.h>
40
41 #include "trace.h"
42 #include "trace_output.h"
43
44 /*
45 * On boot up, the ring buffer is set to the minimum size, so that
46 * we do not waste memory on systems that are not using tracing.
47 */
48 int ring_buffer_expanded;
49
50 /*
51 * We need to change this state when a selftest is running.
52 * A selftest will lurk into the ring-buffer to count the
53 * entries inserted during the selftest although some concurrent
54 * insertions into the ring-buffer such as trace_printk could occurred
55 * at the same time, giving false positive or negative results.
56 */
57 static bool __read_mostly tracing_selftest_running;
58
59 /*
60 * If a tracer is running, we do not want to run SELFTEST.
61 */
62 bool __read_mostly tracing_selftest_disabled;
63
64 /* For tracers that don't implement custom flags */
65 static struct tracer_opt dummy_tracer_opt[] = {
66 { }
67 };
68
69 static struct tracer_flags dummy_tracer_flags = {
70 .val = 0,
71 .opts = dummy_tracer_opt
72 };
73
74 static int dummy_set_flag(u32 old_flags, u32 bit, int set)
75 {
76 return 0;
77 }
78
79 /*
80 * Kill all tracing for good (never come back).
81 * It is initialized to 1 but will turn to zero if the initialization
82 * of the tracer is successful. But that is the only place that sets
83 * this back to zero.
84 */
85 static int tracing_disabled = 1;
86
87 DEFINE_PER_CPU(int, ftrace_cpu_disabled);
88
89 static inline void ftrace_disable_cpu(void)
90 {
91 preempt_disable();
92 __this_cpu_inc(ftrace_cpu_disabled);
93 }
94
95 static inline void ftrace_enable_cpu(void)
96 {
97 __this_cpu_dec(ftrace_cpu_disabled);
98 preempt_enable();
99 }
100
101 cpumask_var_t __read_mostly tracing_buffer_mask;
102
103 /*
104 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
105 *
106 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
107 * is set, then ftrace_dump is called. This will output the contents
108 * of the ftrace buffers to the console. This is very useful for
109 * capturing traces that lead to crashes and outputing it to a
110 * serial console.
111 *
112 * It is default off, but you can enable it with either specifying
113 * "ftrace_dump_on_oops" in the kernel command line, or setting
114 * /proc/sys/kernel/ftrace_dump_on_oops
115 * Set 1 if you want to dump buffers of all CPUs
116 * Set 2 if you want to dump the buffer of the CPU that triggered oops
117 */
118
119 enum ftrace_dump_mode ftrace_dump_on_oops;
120
121 static int tracing_set_tracer(const char *buf);
122
123 #define MAX_TRACER_SIZE 100
124 static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
125 static char *default_bootup_tracer;
126
127 static int __init set_cmdline_ftrace(char *str)
128 {
129 strncpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
130 default_bootup_tracer = bootup_tracer_buf;
131 /* We are using ftrace early, expand it */
132 ring_buffer_expanded = 1;
133 return 1;
134 }
135 __setup("ftrace=", set_cmdline_ftrace);
136
137 static int __init set_ftrace_dump_on_oops(char *str)
138 {
139 if (*str++ != '=' || !*str) {
140 ftrace_dump_on_oops = DUMP_ALL;
141 return 1;
142 }
143
144 if (!strcmp("orig_cpu", str)) {
145 ftrace_dump_on_oops = DUMP_ORIG;
146 return 1;
147 }
148
149 return 0;
150 }
151 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
152
153 unsigned long long ns2usecs(cycle_t nsec)
154 {
155 nsec += 500;
156 do_div(nsec, 1000);
157 return nsec;
158 }
159
160 /*
161 * The global_trace is the descriptor that holds the tracing
162 * buffers for the live tracing. For each CPU, it contains
163 * a link list of pages that will store trace entries. The
164 * page descriptor of the pages in the memory is used to hold
165 * the link list by linking the lru item in the page descriptor
166 * to each of the pages in the buffer per CPU.
167 *
168 * For each active CPU there is a data field that holds the
169 * pages for the buffer for that CPU. Each CPU has the same number
170 * of pages allocated for its buffer.
171 */
172 static struct trace_array global_trace;
173
174 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
175
176 int filter_current_check_discard(struct ring_buffer *buffer,
177 struct ftrace_event_call *call, void *rec,
178 struct ring_buffer_event *event)
179 {
180 return filter_check_discard(call, rec, buffer, event);
181 }
182 EXPORT_SYMBOL_GPL(filter_current_check_discard);
183
184 cycle_t ftrace_now(int cpu)
185 {
186 u64 ts;
187
188 /* Early boot up does not have a buffer yet */
189 if (!global_trace.buffer)
190 return trace_clock_local();
191
192 ts = ring_buffer_time_stamp(global_trace.buffer, cpu);
193 ring_buffer_normalize_time_stamp(global_trace.buffer, cpu, &ts);
194
195 return ts;
196 }
197
198 /*
199 * The max_tr is used to snapshot the global_trace when a maximum
200 * latency is reached. Some tracers will use this to store a maximum
201 * trace while it continues examining live traces.
202 *
203 * The buffers for the max_tr are set up the same as the global_trace.
204 * When a snapshot is taken, the link list of the max_tr is swapped
205 * with the link list of the global_trace and the buffers are reset for
206 * the global_trace so the tracing can continue.
207 */
208 static struct trace_array max_tr;
209
210 static DEFINE_PER_CPU(struct trace_array_cpu, max_tr_data);
211
212 /* tracer_enabled is used to toggle activation of a tracer */
213 static int tracer_enabled = 1;
214
215 /**
216 * tracing_is_enabled - return tracer_enabled status
217 *
218 * This function is used by other tracers to know the status
219 * of the tracer_enabled flag. Tracers may use this function
220 * to know if it should enable their features when starting
221 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
222 */
223 int tracing_is_enabled(void)
224 {
225 return tracer_enabled;
226 }
227
228 /*
229 * trace_buf_size is the size in bytes that is allocated
230 * for a buffer. Note, the number of bytes is always rounded
231 * to page size.
232 *
233 * This number is purposely set to a low number of 16384.
234 * If the dump on oops happens, it will be much appreciated
235 * to not have to wait for all that output. Anyway this can be
236 * boot time and run time configurable.
237 */
238 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
239
240 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
241
242 /* trace_types holds a link list of available tracers. */
243 static struct tracer *trace_types __read_mostly;
244
245 /* current_trace points to the tracer that is currently active */
246 static struct tracer *current_trace __read_mostly;
247
248 /*
249 * trace_types_lock is used to protect the trace_types list.
250 */
251 static DEFINE_MUTEX(trace_types_lock);
252
253 /*
254 * serialize the access of the ring buffer
255 *
256 * ring buffer serializes readers, but it is low level protection.
257 * The validity of the events (which returns by ring_buffer_peek() ..etc)
258 * are not protected by ring buffer.
259 *
260 * The content of events may become garbage if we allow other process consumes
261 * these events concurrently:
262 * A) the page of the consumed events may become a normal page
263 * (not reader page) in ring buffer, and this page will be rewrited
264 * by events producer.
265 * B) The page of the consumed events may become a page for splice_read,
266 * and this page will be returned to system.
267 *
268 * These primitives allow multi process access to different cpu ring buffer
269 * concurrently.
270 *
271 * These primitives don't distinguish read-only and read-consume access.
272 * Multi read-only access are also serialized.
273 */
274
275 #ifdef CONFIG_SMP
276 static DECLARE_RWSEM(all_cpu_access_lock);
277 static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
278
279 static inline void trace_access_lock(int cpu)
280 {
281 if (cpu == TRACE_PIPE_ALL_CPU) {
282 /* gain it for accessing the whole ring buffer. */
283 down_write(&all_cpu_access_lock);
284 } else {
285 /* gain it for accessing a cpu ring buffer. */
286
287 /* Firstly block other trace_access_lock(TRACE_PIPE_ALL_CPU). */
288 down_read(&all_cpu_access_lock);
289
290 /* Secondly block other access to this @cpu ring buffer. */
291 mutex_lock(&per_cpu(cpu_access_lock, cpu));
292 }
293 }
294
295 static inline void trace_access_unlock(int cpu)
296 {
297 if (cpu == TRACE_PIPE_ALL_CPU) {
298 up_write(&all_cpu_access_lock);
299 } else {
300 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
301 up_read(&all_cpu_access_lock);
302 }
303 }
304
305 static inline void trace_access_lock_init(void)
306 {
307 int cpu;
308
309 for_each_possible_cpu(cpu)
310 mutex_init(&per_cpu(cpu_access_lock, cpu));
311 }
312
313 #else
314
315 static DEFINE_MUTEX(access_lock);
316
317 static inline void trace_access_lock(int cpu)
318 {
319 (void)cpu;
320 mutex_lock(&access_lock);
321 }
322
323 static inline void trace_access_unlock(int cpu)
324 {
325 (void)cpu;
326 mutex_unlock(&access_lock);
327 }
328
329 static inline void trace_access_lock_init(void)
330 {
331 }
332
333 #endif
334
335 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
336 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
337
338 /* trace_flags holds trace_options default values */
339 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
340 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
341 TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE;
342
343 static int trace_stop_count;
344 static DEFINE_SPINLOCK(tracing_start_lock);
345
346 /**
347 * trace_wake_up - wake up tasks waiting for trace input
348 *
349 * Simply wakes up any task that is blocked on the trace_wait
350 * queue. These is used with trace_poll for tasks polling the trace.
351 */
352 void trace_wake_up(void)
353 {
354 int cpu;
355
356 if (trace_flags & TRACE_ITER_BLOCK)
357 return;
358 /*
359 * The runqueue_is_locked() can fail, but this is the best we
360 * have for now:
361 */
362 cpu = get_cpu();
363 if (!runqueue_is_locked(cpu))
364 wake_up(&trace_wait);
365 put_cpu();
366 }
367
368 static int __init set_buf_size(char *str)
369 {
370 unsigned long buf_size;
371
372 if (!str)
373 return 0;
374 buf_size = memparse(str, &str);
375 /* nr_entries can not be zero */
376 if (buf_size == 0)
377 return 0;
378 trace_buf_size = buf_size;
379 return 1;
380 }
381 __setup("trace_buf_size=", set_buf_size);
382
383 static int __init set_tracing_thresh(char *str)
384 {
385 unsigned long threshhold;
386 int ret;
387
388 if (!str)
389 return 0;
390 ret = strict_strtoul(str, 0, &threshhold);
391 if (ret < 0)
392 return 0;
393 tracing_thresh = threshhold * 1000;
394 return 1;
395 }
396 __setup("tracing_thresh=", set_tracing_thresh);
397
398 unsigned long nsecs_to_usecs(unsigned long nsecs)
399 {
400 return nsecs / 1000;
401 }
402
403 /* These must match the bit postions in trace_iterator_flags */
404 static const char *trace_options[] = {
405 "print-parent",
406 "sym-offset",
407 "sym-addr",
408 "verbose",
409 "raw",
410 "hex",
411 "bin",
412 "block",
413 "stacktrace",
414 "trace_printk",
415 "ftrace_preempt",
416 "branch",
417 "annotate",
418 "userstacktrace",
419 "sym-userobj",
420 "printk-msg-only",
421 "context-info",
422 "latency-format",
423 "sleep-time",
424 "graph-time",
425 "record-cmd",
426 "overwrite",
427 NULL
428 };
429
430 static struct {
431 u64 (*func)(void);
432 const char *name;
433 } trace_clocks[] = {
434 { trace_clock_local, "local" },
435 { trace_clock_global, "global" },
436 };
437
438 int trace_clock_id;
439
440 /*
441 * trace_parser_get_init - gets the buffer for trace parser
442 */
443 int trace_parser_get_init(struct trace_parser *parser, int size)
444 {
445 memset(parser, 0, sizeof(*parser));
446
447 parser->buffer = kmalloc(size, GFP_KERNEL);
448 if (!parser->buffer)
449 return 1;
450
451 parser->size = size;
452 return 0;
453 }
454
455 /*
456 * trace_parser_put - frees the buffer for trace parser
457 */
458 void trace_parser_put(struct trace_parser *parser)
459 {
460 kfree(parser->buffer);
461 }
462
463 /*
464 * trace_get_user - reads the user input string separated by space
465 * (matched by isspace(ch))
466 *
467 * For each string found the 'struct trace_parser' is updated,
468 * and the function returns.
469 *
470 * Returns number of bytes read.
471 *
472 * See kernel/trace/trace.h for 'struct trace_parser' details.
473 */
474 int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
475 size_t cnt, loff_t *ppos)
476 {
477 char ch;
478 size_t read = 0;
479 ssize_t ret;
480
481 if (!*ppos)
482 trace_parser_clear(parser);
483
484 ret = get_user(ch, ubuf++);
485 if (ret)
486 goto out;
487
488 read++;
489 cnt--;
490
491 /*
492 * The parser is not finished with the last write,
493 * continue reading the user input without skipping spaces.
494 */
495 if (!parser->cont) {
496 /* skip white space */
497 while (cnt && isspace(ch)) {
498 ret = get_user(ch, ubuf++);
499 if (ret)
500 goto out;
501 read++;
502 cnt--;
503 }
504
505 /* only spaces were written */
506 if (isspace(ch)) {
507 *ppos += read;
508 ret = read;
509 goto out;
510 }
511
512 parser->idx = 0;
513 }
514
515 /* read the non-space input */
516 while (cnt && !isspace(ch)) {
517 if (parser->idx < parser->size - 1)
518 parser->buffer[parser->idx++] = ch;
519 else {
520 ret = -EINVAL;
521 goto out;
522 }
523 ret = get_user(ch, ubuf++);
524 if (ret)
525 goto out;
526 read++;
527 cnt--;
528 }
529
530 /* We either got finished input or we have to wait for another call. */
531 if (isspace(ch)) {
532 parser->buffer[parser->idx] = 0;
533 parser->cont = false;
534 } else {
535 parser->cont = true;
536 parser->buffer[parser->idx++] = ch;
537 }
538
539 *ppos += read;
540 ret = read;
541
542 out:
543 return ret;
544 }
545
546 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
547 {
548 int len;
549 int ret;
550
551 if (!cnt)
552 return 0;
553
554 if (s->len <= s->readpos)
555 return -EBUSY;
556
557 len = s->len - s->readpos;
558 if (cnt > len)
559 cnt = len;
560 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
561 if (ret == cnt)
562 return -EFAULT;
563
564 cnt -= ret;
565
566 s->readpos += cnt;
567 return cnt;
568 }
569
570 static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
571 {
572 int len;
573 void *ret;
574
575 if (s->len <= s->readpos)
576 return -EBUSY;
577
578 len = s->len - s->readpos;
579 if (cnt > len)
580 cnt = len;
581 ret = memcpy(buf, s->buffer + s->readpos, cnt);
582 if (!ret)
583 return -EFAULT;
584
585 s->readpos += cnt;
586 return cnt;
587 }
588
589 /*
590 * ftrace_max_lock is used to protect the swapping of buffers
591 * when taking a max snapshot. The buffers themselves are
592 * protected by per_cpu spinlocks. But the action of the swap
593 * needs its own lock.
594 *
595 * This is defined as a arch_spinlock_t in order to help
596 * with performance when lockdep debugging is enabled.
597 *
598 * It is also used in other places outside the update_max_tr
599 * so it needs to be defined outside of the
600 * CONFIG_TRACER_MAX_TRACE.
601 */
602 static arch_spinlock_t ftrace_max_lock =
603 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
604
605 unsigned long __read_mostly tracing_thresh;
606
607 #ifdef CONFIG_TRACER_MAX_TRACE
608 unsigned long __read_mostly tracing_max_latency;
609
610 /*
611 * Copy the new maximum trace into the separate maximum-trace
612 * structure. (this way the maximum trace is permanently saved,
613 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
614 */
615 static void
616 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
617 {
618 struct trace_array_cpu *data = tr->data[cpu];
619 struct trace_array_cpu *max_data;
620
621 max_tr.cpu = cpu;
622 max_tr.time_start = data->preempt_timestamp;
623
624 max_data = max_tr.data[cpu];
625 max_data->saved_latency = tracing_max_latency;
626 max_data->critical_start = data->critical_start;
627 max_data->critical_end = data->critical_end;
628
629 memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
630 max_data->pid = tsk->pid;
631 max_data->uid = task_uid(tsk);
632 max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
633 max_data->policy = tsk->policy;
634 max_data->rt_priority = tsk->rt_priority;
635
636 /* record this tasks comm */
637 tracing_record_cmdline(tsk);
638 }
639
640 /**
641 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
642 * @tr: tracer
643 * @tsk: the task with the latency
644 * @cpu: The cpu that initiated the trace.
645 *
646 * Flip the buffers between the @tr and the max_tr and record information
647 * about which task was the cause of this latency.
648 */
649 void
650 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
651 {
652 struct ring_buffer *buf = tr->buffer;
653
654 if (trace_stop_count)
655 return;
656
657 WARN_ON_ONCE(!irqs_disabled());
658 if (!current_trace->use_max_tr) {
659 WARN_ON_ONCE(1);
660 return;
661 }
662 arch_spin_lock(&ftrace_max_lock);
663
664 tr->buffer = max_tr.buffer;
665 max_tr.buffer = buf;
666
667 __update_max_tr(tr, tsk, cpu);
668 arch_spin_unlock(&ftrace_max_lock);
669 }
670
671 /**
672 * update_max_tr_single - only copy one trace over, and reset the rest
673 * @tr - tracer
674 * @tsk - task with the latency
675 * @cpu - the cpu of the buffer to copy.
676 *
677 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
678 */
679 void
680 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
681 {
682 int ret;
683
684 if (trace_stop_count)
685 return;
686
687 WARN_ON_ONCE(!irqs_disabled());
688 if (!current_trace->use_max_tr) {
689 WARN_ON_ONCE(1);
690 return;
691 }
692
693 arch_spin_lock(&ftrace_max_lock);
694
695 ftrace_disable_cpu();
696
697 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
698
699 if (ret == -EBUSY) {
700 /*
701 * We failed to swap the buffer due to a commit taking
702 * place on this CPU. We fail to record, but we reset
703 * the max trace buffer (no one writes directly to it)
704 * and flag that it failed.
705 */
706 trace_array_printk(&max_tr, _THIS_IP_,
707 "Failed to swap buffers due to commit in progress\n");
708 }
709
710 ftrace_enable_cpu();
711
712 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
713
714 __update_max_tr(tr, tsk, cpu);
715 arch_spin_unlock(&ftrace_max_lock);
716 }
717 #endif /* CONFIG_TRACER_MAX_TRACE */
718
719 /**
720 * register_tracer - register a tracer with the ftrace system.
721 * @type - the plugin for the tracer
722 *
723 * Register a new plugin tracer.
724 */
725 int register_tracer(struct tracer *type)
726 __releases(kernel_lock)
727 __acquires(kernel_lock)
728 {
729 struct tracer *t;
730 int ret = 0;
731
732 if (!type->name) {
733 pr_info("Tracer must have a name\n");
734 return -1;
735 }
736
737 if (strlen(type->name) >= MAX_TRACER_SIZE) {
738 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
739 return -1;
740 }
741
742 mutex_lock(&trace_types_lock);
743
744 tracing_selftest_running = true;
745
746 for (t = trace_types; t; t = t->next) {
747 if (strcmp(type->name, t->name) == 0) {
748 /* already found */
749 pr_info("Tracer %s already registered\n",
750 type->name);
751 ret = -1;
752 goto out;
753 }
754 }
755
756 if (!type->set_flag)
757 type->set_flag = &dummy_set_flag;
758 if (!type->flags)
759 type->flags = &dummy_tracer_flags;
760 else
761 if (!type->flags->opts)
762 type->flags->opts = dummy_tracer_opt;
763 if (!type->wait_pipe)
764 type->wait_pipe = default_wait_pipe;
765
766
767 #ifdef CONFIG_FTRACE_STARTUP_TEST
768 if (type->selftest && !tracing_selftest_disabled) {
769 struct tracer *saved_tracer = current_trace;
770 struct trace_array *tr = &global_trace;
771
772 /*
773 * Run a selftest on this tracer.
774 * Here we reset the trace buffer, and set the current
775 * tracer to be this tracer. The tracer can then run some
776 * internal tracing to verify that everything is in order.
777 * If we fail, we do not register this tracer.
778 */
779 tracing_reset_online_cpus(tr);
780
781 current_trace = type;
782 /* the test is responsible for initializing and enabling */
783 pr_info("Testing tracer %s: ", type->name);
784 ret = type->selftest(type, tr);
785 /* the test is responsible for resetting too */
786 current_trace = saved_tracer;
787 if (ret) {
788 printk(KERN_CONT "FAILED!\n");
789 goto out;
790 }
791 /* Only reset on passing, to avoid touching corrupted buffers */
792 tracing_reset_online_cpus(tr);
793
794 printk(KERN_CONT "PASSED\n");
795 }
796 #endif
797
798 type->next = trace_types;
799 trace_types = type;
800
801 out:
802 tracing_selftest_running = false;
803 mutex_unlock(&trace_types_lock);
804
805 if (ret || !default_bootup_tracer)
806 goto out_unlock;
807
808 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
809 goto out_unlock;
810
811 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
812 /* Do we want this tracer to start on bootup? */
813 tracing_set_tracer(type->name);
814 default_bootup_tracer = NULL;
815 /* disable other selftests, since this will break it. */
816 tracing_selftest_disabled = 1;
817 #ifdef CONFIG_FTRACE_STARTUP_TEST
818 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
819 type->name);
820 #endif
821
822 out_unlock:
823 return ret;
824 }
825
826 void unregister_tracer(struct tracer *type)
827 {
828 struct tracer **t;
829
830 mutex_lock(&trace_types_lock);
831 for (t = &trace_types; *t; t = &(*t)->next) {
832 if (*t == type)
833 goto found;
834 }
835 pr_info("Tracer %s not registered\n", type->name);
836 goto out;
837
838 found:
839 *t = (*t)->next;
840
841 if (type == current_trace && tracer_enabled) {
842 tracer_enabled = 0;
843 tracing_stop();
844 if (current_trace->stop)
845 current_trace->stop(&global_trace);
846 current_trace = &nop_trace;
847 }
848 out:
849 mutex_unlock(&trace_types_lock);
850 }
851
852 static void __tracing_reset(struct ring_buffer *buffer, int cpu)
853 {
854 ftrace_disable_cpu();
855 ring_buffer_reset_cpu(buffer, cpu);
856 ftrace_enable_cpu();
857 }
858
859 void tracing_reset(struct trace_array *tr, int cpu)
860 {
861 struct ring_buffer *buffer = tr->buffer;
862
863 ring_buffer_record_disable(buffer);
864
865 /* Make sure all commits have finished */
866 synchronize_sched();
867 __tracing_reset(buffer, cpu);
868
869 ring_buffer_record_enable(buffer);
870 }
871
872 void tracing_reset_online_cpus(struct trace_array *tr)
873 {
874 struct ring_buffer *buffer = tr->buffer;
875 int cpu;
876
877 ring_buffer_record_disable(buffer);
878
879 /* Make sure all commits have finished */
880 synchronize_sched();
881
882 tr->time_start = ftrace_now(tr->cpu);
883
884 for_each_online_cpu(cpu)
885 __tracing_reset(buffer, cpu);
886
887 ring_buffer_record_enable(buffer);
888 }
889
890 void tracing_reset_current(int cpu)
891 {
892 tracing_reset(&global_trace, cpu);
893 }
894
895 void tracing_reset_current_online_cpus(void)
896 {
897 tracing_reset_online_cpus(&global_trace);
898 }
899
900 #define SAVED_CMDLINES 128
901 #define NO_CMDLINE_MAP UINT_MAX
902 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
903 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
904 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
905 static int cmdline_idx;
906 static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
907
908 /* temporary disable recording */
909 static atomic_t trace_record_cmdline_disabled __read_mostly;
910
911 static void trace_init_cmdlines(void)
912 {
913 memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline));
914 memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid));
915 cmdline_idx = 0;
916 }
917
918 int is_tracing_stopped(void)
919 {
920 return trace_stop_count;
921 }
922
923 /**
924 * ftrace_off_permanent - disable all ftrace code permanently
925 *
926 * This should only be called when a serious anomally has
927 * been detected. This will turn off the function tracing,
928 * ring buffers, and other tracing utilites. It takes no
929 * locks and can be called from any context.
930 */
931 void ftrace_off_permanent(void)
932 {
933 tracing_disabled = 1;
934 ftrace_stop();
935 tracing_off_permanent();
936 }
937
938 /**
939 * tracing_start - quick start of the tracer
940 *
941 * If tracing is enabled but was stopped by tracing_stop,
942 * this will start the tracer back up.
943 */
944 void tracing_start(void)
945 {
946 struct ring_buffer *buffer;
947 unsigned long flags;
948
949 if (tracing_disabled)
950 return;
951
952 spin_lock_irqsave(&tracing_start_lock, flags);
953 if (--trace_stop_count) {
954 if (trace_stop_count < 0) {
955 /* Someone screwed up their debugging */
956 WARN_ON_ONCE(1);
957 trace_stop_count = 0;
958 }
959 goto out;
960 }
961
962 /* Prevent the buffers from switching */
963 arch_spin_lock(&ftrace_max_lock);
964
965 buffer = global_trace.buffer;
966 if (buffer)
967 ring_buffer_record_enable(buffer);
968
969 buffer = max_tr.buffer;
970 if (buffer)
971 ring_buffer_record_enable(buffer);
972
973 arch_spin_unlock(&ftrace_max_lock);
974
975 ftrace_start();
976 out:
977 spin_unlock_irqrestore(&tracing_start_lock, flags);
978 }
979
980 /**
981 * tracing_stop - quick stop of the tracer
982 *
983 * Light weight way to stop tracing. Use in conjunction with
984 * tracing_start.
985 */
986 void tracing_stop(void)
987 {
988 struct ring_buffer *buffer;
989 unsigned long flags;
990
991 ftrace_stop();
992 spin_lock_irqsave(&tracing_start_lock, flags);
993 if (trace_stop_count++)
994 goto out;
995
996 /* Prevent the buffers from switching */
997 arch_spin_lock(&ftrace_max_lock);
998
999 buffer = global_trace.buffer;
1000 if (buffer)
1001 ring_buffer_record_disable(buffer);
1002
1003 buffer = max_tr.buffer;
1004 if (buffer)
1005 ring_buffer_record_disable(buffer);
1006
1007 arch_spin_unlock(&ftrace_max_lock);
1008
1009 out:
1010 spin_unlock_irqrestore(&tracing_start_lock, flags);
1011 }
1012
1013 void trace_stop_cmdline_recording(void);
1014
1015 static void trace_save_cmdline(struct task_struct *tsk)
1016 {
1017 unsigned pid, idx;
1018
1019 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1020 return;
1021
1022 /*
1023 * It's not the end of the world if we don't get
1024 * the lock, but we also don't want to spin
1025 * nor do we want to disable interrupts,
1026 * so if we miss here, then better luck next time.
1027 */
1028 if (!arch_spin_trylock(&trace_cmdline_lock))
1029 return;
1030
1031 idx = map_pid_to_cmdline[tsk->pid];
1032 if (idx == NO_CMDLINE_MAP) {
1033 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
1034
1035 /*
1036 * Check whether the cmdline buffer at idx has a pid
1037 * mapped. We are going to overwrite that entry so we
1038 * need to clear the map_pid_to_cmdline. Otherwise we
1039 * would read the new comm for the old pid.
1040 */
1041 pid = map_cmdline_to_pid[idx];
1042 if (pid != NO_CMDLINE_MAP)
1043 map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
1044
1045 map_cmdline_to_pid[idx] = tsk->pid;
1046 map_pid_to_cmdline[tsk->pid] = idx;
1047
1048 cmdline_idx = idx;
1049 }
1050
1051 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
1052
1053 arch_spin_unlock(&trace_cmdline_lock);
1054 }
1055
1056 void trace_find_cmdline(int pid, char comm[])
1057 {
1058 unsigned map;
1059
1060 if (!pid) {
1061 strcpy(comm, "<idle>");
1062 return;
1063 }
1064
1065 if (WARN_ON_ONCE(pid < 0)) {
1066 strcpy(comm, "<XXX>");
1067 return;
1068 }
1069
1070 if (pid > PID_MAX_DEFAULT) {
1071 strcpy(comm, "<...>");
1072 return;
1073 }
1074
1075 preempt_disable();
1076 arch_spin_lock(&trace_cmdline_lock);
1077 map = map_pid_to_cmdline[pid];
1078 if (map != NO_CMDLINE_MAP)
1079 strcpy(comm, saved_cmdlines[map]);
1080 else
1081 strcpy(comm, "<...>");
1082
1083 arch_spin_unlock(&trace_cmdline_lock);
1084 preempt_enable();
1085 }
1086
1087 void tracing_record_cmdline(struct task_struct *tsk)
1088 {
1089 if (atomic_read(&trace_record_cmdline_disabled) || !tracer_enabled ||
1090 !tracing_is_on())
1091 return;
1092
1093 trace_save_cmdline(tsk);
1094 }
1095
1096 void
1097 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1098 int pc)
1099 {
1100 struct task_struct *tsk = current;
1101
1102 entry->preempt_count = pc & 0xff;
1103 entry->pid = (tsk) ? tsk->pid : 0;
1104 entry->flags =
1105 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
1106 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
1107 #else
1108 TRACE_FLAG_IRQS_NOSUPPORT |
1109 #endif
1110 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
1111 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
1112 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
1113 }
1114 EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
1115
1116 struct ring_buffer_event *
1117 trace_buffer_lock_reserve(struct ring_buffer *buffer,
1118 int type,
1119 unsigned long len,
1120 unsigned long flags, int pc)
1121 {
1122 struct ring_buffer_event *event;
1123
1124 event = ring_buffer_lock_reserve(buffer, len);
1125 if (event != NULL) {
1126 struct trace_entry *ent = ring_buffer_event_data(event);
1127
1128 tracing_generic_entry_update(ent, flags, pc);
1129 ent->type = type;
1130 }
1131
1132 return event;
1133 }
1134
1135 static inline void
1136 __trace_buffer_unlock_commit(struct ring_buffer *buffer,
1137 struct ring_buffer_event *event,
1138 unsigned long flags, int pc,
1139 int wake)
1140 {
1141 ring_buffer_unlock_commit(buffer, event);
1142
1143 ftrace_trace_stack(buffer, flags, 6, pc);
1144 ftrace_trace_userstack(buffer, flags, pc);
1145
1146 if (wake)
1147 trace_wake_up();
1148 }
1149
1150 void trace_buffer_unlock_commit(struct ring_buffer *buffer,
1151 struct ring_buffer_event *event,
1152 unsigned long flags, int pc)
1153 {
1154 __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
1155 }
1156
1157 struct ring_buffer_event *
1158 trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1159 int type, unsigned long len,
1160 unsigned long flags, int pc)
1161 {
1162 *current_rb = global_trace.buffer;
1163 return trace_buffer_lock_reserve(*current_rb,
1164 type, len, flags, pc);
1165 }
1166 EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
1167
1168 void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
1169 struct ring_buffer_event *event,
1170 unsigned long flags, int pc)
1171 {
1172 __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
1173 }
1174 EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
1175
1176 void trace_nowake_buffer_unlock_commit(struct ring_buffer *buffer,
1177 struct ring_buffer_event *event,
1178 unsigned long flags, int pc)
1179 {
1180 __trace_buffer_unlock_commit(buffer, event, flags, pc, 0);
1181 }
1182 EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit);
1183
1184 void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1185 struct ring_buffer_event *event)
1186 {
1187 ring_buffer_discard_commit(buffer, event);
1188 }
1189 EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
1190
1191 void
1192 trace_function(struct trace_array *tr,
1193 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1194 int pc)
1195 {
1196 struct ftrace_event_call *call = &event_function;
1197 struct ring_buffer *buffer = tr->buffer;
1198 struct ring_buffer_event *event;
1199 struct ftrace_entry *entry;
1200
1201 /* If we are reading the ring buffer, don't trace */
1202 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
1203 return;
1204
1205 event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
1206 flags, pc);
1207 if (!event)
1208 return;
1209 entry = ring_buffer_event_data(event);
1210 entry->ip = ip;
1211 entry->parent_ip = parent_ip;
1212
1213 if (!filter_check_discard(call, entry, buffer, event))
1214 ring_buffer_unlock_commit(buffer, event);
1215 }
1216
1217 void
1218 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
1219 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1220 int pc)
1221 {
1222 if (likely(!atomic_read(&data->disabled)))
1223 trace_function(tr, ip, parent_ip, flags, pc);
1224 }
1225
1226 #ifdef CONFIG_STACKTRACE
1227 static void __ftrace_trace_stack(struct ring_buffer *buffer,
1228 unsigned long flags,
1229 int skip, int pc)
1230 {
1231 struct ftrace_event_call *call = &event_kernel_stack;
1232 struct ring_buffer_event *event;
1233 struct stack_entry *entry;
1234 struct stack_trace trace;
1235
1236 event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
1237 sizeof(*entry), flags, pc);
1238 if (!event)
1239 return;
1240 entry = ring_buffer_event_data(event);
1241 memset(&entry->caller, 0, sizeof(entry->caller));
1242
1243 trace.nr_entries = 0;
1244 trace.max_entries = FTRACE_STACK_ENTRIES;
1245 trace.skip = skip;
1246 trace.entries = entry->caller;
1247
1248 save_stack_trace(&trace);
1249 if (!filter_check_discard(call, entry, buffer, event))
1250 ring_buffer_unlock_commit(buffer, event);
1251 }
1252
1253 void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags,
1254 int skip, int pc)
1255 {
1256 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1257 return;
1258
1259 __ftrace_trace_stack(buffer, flags, skip, pc);
1260 }
1261
1262 void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1263 int pc)
1264 {
1265 __ftrace_trace_stack(tr->buffer, flags, skip, pc);
1266 }
1267
1268 /**
1269 * trace_dump_stack - record a stack back trace in the trace buffer
1270 */
1271 void trace_dump_stack(void)
1272 {
1273 unsigned long flags;
1274
1275 if (tracing_disabled || tracing_selftest_running)
1276 return;
1277
1278 local_save_flags(flags);
1279
1280 /* skipping 3 traces, seems to get us at the caller of this function */
1281 __ftrace_trace_stack(global_trace.buffer, flags, 3, preempt_count());
1282 }
1283
1284 static DEFINE_PER_CPU(int, user_stack_count);
1285
1286 void
1287 ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
1288 {
1289 struct ftrace_event_call *call = &event_user_stack;
1290 struct ring_buffer_event *event;
1291 struct userstack_entry *entry;
1292 struct stack_trace trace;
1293
1294 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1295 return;
1296
1297 /*
1298 * NMIs can not handle page faults, even with fix ups.
1299 * The save user stack can (and often does) fault.
1300 */
1301 if (unlikely(in_nmi()))
1302 return;
1303
1304 /*
1305 * prevent recursion, since the user stack tracing may
1306 * trigger other kernel events.
1307 */
1308 preempt_disable();
1309 if (__this_cpu_read(user_stack_count))
1310 goto out;
1311
1312 __this_cpu_inc(user_stack_count);
1313
1314 event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
1315 sizeof(*entry), flags, pc);
1316 if (!event)
1317 goto out_drop_count;
1318 entry = ring_buffer_event_data(event);
1319
1320 entry->tgid = current->tgid;
1321 memset(&entry->caller, 0, sizeof(entry->caller));
1322
1323 trace.nr_entries = 0;
1324 trace.max_entries = FTRACE_STACK_ENTRIES;
1325 trace.skip = 0;
1326 trace.entries = entry->caller;
1327
1328 save_stack_trace_user(&trace);
1329 if (!filter_check_discard(call, entry, buffer, event))
1330 ring_buffer_unlock_commit(buffer, event);
1331
1332 out_drop_count:
1333 __this_cpu_dec(user_stack_count);
1334 out:
1335 preempt_enable();
1336 }
1337
1338 #ifdef UNUSED
1339 static void __trace_userstack(struct trace_array *tr, unsigned long flags)
1340 {
1341 ftrace_trace_userstack(tr, flags, preempt_count());
1342 }
1343 #endif /* UNUSED */
1344
1345 #endif /* CONFIG_STACKTRACE */
1346
1347 /**
1348 * trace_vbprintk - write binary msg to tracing buffer
1349 *
1350 */
1351 int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
1352 {
1353 static arch_spinlock_t trace_buf_lock =
1354 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
1355 static u32 trace_buf[TRACE_BUF_SIZE];
1356
1357 struct ftrace_event_call *call = &event_bprint;
1358 struct ring_buffer_event *event;
1359 struct ring_buffer *buffer;
1360 struct trace_array *tr = &global_trace;
1361 struct trace_array_cpu *data;
1362 struct bprint_entry *entry;
1363 unsigned long flags;
1364 int disable;
1365 int cpu, len = 0, size, pc;
1366
1367 if (unlikely(tracing_selftest_running || tracing_disabled))
1368 return 0;
1369
1370 /* Don't pollute graph traces with trace_vprintk internals */
1371 pause_graph_tracing();
1372
1373 pc = preempt_count();
1374 preempt_disable_notrace();
1375 cpu = raw_smp_processor_id();
1376 data = tr->data[cpu];
1377
1378 disable = atomic_inc_return(&data->disabled);
1379 if (unlikely(disable != 1))
1380 goto out;
1381
1382 /* Lockdep uses trace_printk for lock tracing */
1383 local_irq_save(flags);
1384 arch_spin_lock(&trace_buf_lock);
1385 len = vbin_printf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1386
1387 if (len > TRACE_BUF_SIZE || len < 0)
1388 goto out_unlock;
1389
1390 size = sizeof(*entry) + sizeof(u32) * len;
1391 buffer = tr->buffer;
1392 event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
1393 flags, pc);
1394 if (!event)
1395 goto out_unlock;
1396 entry = ring_buffer_event_data(event);
1397 entry->ip = ip;
1398 entry->fmt = fmt;
1399
1400 memcpy(entry->buf, trace_buf, sizeof(u32) * len);
1401 if (!filter_check_discard(call, entry, buffer, event)) {
1402 ring_buffer_unlock_commit(buffer, event);
1403 ftrace_trace_stack(buffer, flags, 6, pc);
1404 }
1405
1406 out_unlock:
1407 arch_spin_unlock(&trace_buf_lock);
1408 local_irq_restore(flags);
1409
1410 out:
1411 atomic_dec_return(&data->disabled);
1412 preempt_enable_notrace();
1413 unpause_graph_tracing();
1414
1415 return len;
1416 }
1417 EXPORT_SYMBOL_GPL(trace_vbprintk);
1418
1419 int trace_array_printk(struct trace_array *tr,
1420 unsigned long ip, const char *fmt, ...)
1421 {
1422 int ret;
1423 va_list ap;
1424
1425 if (!(trace_flags & TRACE_ITER_PRINTK))
1426 return 0;
1427
1428 va_start(ap, fmt);
1429 ret = trace_array_vprintk(tr, ip, fmt, ap);
1430 va_end(ap);
1431 return ret;
1432 }
1433
1434 int trace_array_vprintk(struct trace_array *tr,
1435 unsigned long ip, const char *fmt, va_list args)
1436 {
1437 static arch_spinlock_t trace_buf_lock = __ARCH_SPIN_LOCK_UNLOCKED;
1438 static char trace_buf[TRACE_BUF_SIZE];
1439
1440 struct ftrace_event_call *call = &event_print;
1441 struct ring_buffer_event *event;
1442 struct ring_buffer *buffer;
1443 struct trace_array_cpu *data;
1444 int cpu, len = 0, size, pc;
1445 struct print_entry *entry;
1446 unsigned long irq_flags;
1447 int disable;
1448
1449 if (tracing_disabled || tracing_selftest_running)
1450 return 0;
1451
1452 pc = preempt_count();
1453 preempt_disable_notrace();
1454 cpu = raw_smp_processor_id();
1455 data = tr->data[cpu];
1456
1457 disable = atomic_inc_return(&data->disabled);
1458 if (unlikely(disable != 1))
1459 goto out;
1460
1461 pause_graph_tracing();
1462 raw_local_irq_save(irq_flags);
1463 arch_spin_lock(&trace_buf_lock);
1464 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1465
1466 size = sizeof(*entry) + len + 1;
1467 buffer = tr->buffer;
1468 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
1469 irq_flags, pc);
1470 if (!event)
1471 goto out_unlock;
1472 entry = ring_buffer_event_data(event);
1473 entry->ip = ip;
1474
1475 memcpy(&entry->buf, trace_buf, len);
1476 entry->buf[len] = '\0';
1477 if (!filter_check_discard(call, entry, buffer, event)) {
1478 ring_buffer_unlock_commit(buffer, event);
1479 ftrace_trace_stack(buffer, irq_flags, 6, pc);
1480 }
1481
1482 out_unlock:
1483 arch_spin_unlock(&trace_buf_lock);
1484 raw_local_irq_restore(irq_flags);
1485 unpause_graph_tracing();
1486 out:
1487 atomic_dec_return(&data->disabled);
1488 preempt_enable_notrace();
1489
1490 return len;
1491 }
1492
1493 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
1494 {
1495 return trace_array_vprintk(&global_trace, ip, fmt, args);
1496 }
1497 EXPORT_SYMBOL_GPL(trace_vprintk);
1498
1499 static void trace_iterator_increment(struct trace_iterator *iter)
1500 {
1501 /* Don't allow ftrace to trace into the ring buffers */
1502 ftrace_disable_cpu();
1503
1504 iter->idx++;
1505 if (iter->buffer_iter[iter->cpu])
1506 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1507
1508 ftrace_enable_cpu();
1509 }
1510
1511 static struct trace_entry *
1512 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
1513 unsigned long *lost_events)
1514 {
1515 struct ring_buffer_event *event;
1516 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
1517
1518 /* Don't allow ftrace to trace into the ring buffers */
1519 ftrace_disable_cpu();
1520
1521 if (buf_iter)
1522 event = ring_buffer_iter_peek(buf_iter, ts);
1523 else
1524 event = ring_buffer_peek(iter->tr->buffer, cpu, ts,
1525 lost_events);
1526
1527 ftrace_enable_cpu();
1528
1529 return event ? ring_buffer_event_data(event) : NULL;
1530 }
1531
1532 static struct trace_entry *
1533 __find_next_entry(struct trace_iterator *iter, int *ent_cpu,
1534 unsigned long *missing_events, u64 *ent_ts)
1535 {
1536 struct ring_buffer *buffer = iter->tr->buffer;
1537 struct trace_entry *ent, *next = NULL;
1538 unsigned long lost_events = 0, next_lost = 0;
1539 int cpu_file = iter->cpu_file;
1540 u64 next_ts = 0, ts;
1541 int next_cpu = -1;
1542 int cpu;
1543
1544 /*
1545 * If we are in a per_cpu trace file, don't bother by iterating over
1546 * all cpu and peek directly.
1547 */
1548 if (cpu_file > TRACE_PIPE_ALL_CPU) {
1549 if (ring_buffer_empty_cpu(buffer, cpu_file))
1550 return NULL;
1551 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
1552 if (ent_cpu)
1553 *ent_cpu = cpu_file;
1554
1555 return ent;
1556 }
1557
1558 for_each_tracing_cpu(cpu) {
1559
1560 if (ring_buffer_empty_cpu(buffer, cpu))
1561 continue;
1562
1563 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
1564
1565 /*
1566 * Pick the entry with the smallest timestamp:
1567 */
1568 if (ent && (!next || ts < next_ts)) {
1569 next = ent;
1570 next_cpu = cpu;
1571 next_ts = ts;
1572 next_lost = lost_events;
1573 }
1574 }
1575
1576 if (ent_cpu)
1577 *ent_cpu = next_cpu;
1578
1579 if (ent_ts)
1580 *ent_ts = next_ts;
1581
1582 if (missing_events)
1583 *missing_events = next_lost;
1584
1585 return next;
1586 }
1587
1588 /* Find the next real entry, without updating the iterator itself */
1589 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
1590 int *ent_cpu, u64 *ent_ts)
1591 {
1592 return __find_next_entry(iter, ent_cpu, NULL, ent_ts);
1593 }
1594
1595 /* Find the next real entry, and increment the iterator to the next entry */
1596 void *trace_find_next_entry_inc(struct trace_iterator *iter)
1597 {
1598 iter->ent = __find_next_entry(iter, &iter->cpu,
1599 &iter->lost_events, &iter->ts);
1600
1601 if (iter->ent)
1602 trace_iterator_increment(iter);
1603
1604 return iter->ent ? iter : NULL;
1605 }
1606
1607 static void trace_consume(struct trace_iterator *iter)
1608 {
1609 /* Don't allow ftrace to trace into the ring buffers */
1610 ftrace_disable_cpu();
1611 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts,
1612 &iter->lost_events);
1613 ftrace_enable_cpu();
1614 }
1615
1616 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1617 {
1618 struct trace_iterator *iter = m->private;
1619 int i = (int)*pos;
1620 void *ent;
1621
1622 WARN_ON_ONCE(iter->leftover);
1623
1624 (*pos)++;
1625
1626 /* can't go backwards */
1627 if (iter->idx > i)
1628 return NULL;
1629
1630 if (iter->idx < 0)
1631 ent = trace_find_next_entry_inc(iter);
1632 else
1633 ent = iter;
1634
1635 while (ent && iter->idx < i)
1636 ent = trace_find_next_entry_inc(iter);
1637
1638 iter->pos = *pos;
1639
1640 return ent;
1641 }
1642
1643 void tracing_iter_reset(struct trace_iterator *iter, int cpu)
1644 {
1645 struct trace_array *tr = iter->tr;
1646 struct ring_buffer_event *event;
1647 struct ring_buffer_iter *buf_iter;
1648 unsigned long entries = 0;
1649 u64 ts;
1650
1651 tr->data[cpu]->skipped_entries = 0;
1652
1653 if (!iter->buffer_iter[cpu])
1654 return;
1655
1656 buf_iter = iter->buffer_iter[cpu];
1657 ring_buffer_iter_reset(buf_iter);
1658
1659 /*
1660 * We could have the case with the max latency tracers
1661 * that a reset never took place on a cpu. This is evident
1662 * by the timestamp being before the start of the buffer.
1663 */
1664 while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
1665 if (ts >= iter->tr->time_start)
1666 break;
1667 entries++;
1668 ring_buffer_read(buf_iter, NULL);
1669 }
1670
1671 tr->data[cpu]->skipped_entries = entries;
1672 }
1673
1674 /*
1675 * The current tracer is copied to avoid a global locking
1676 * all around.
1677 */
1678 static void *s_start(struct seq_file *m, loff_t *pos)
1679 {
1680 struct trace_iterator *iter = m->private;
1681 static struct tracer *old_tracer;
1682 int cpu_file = iter->cpu_file;
1683 void *p = NULL;
1684 loff_t l = 0;
1685 int cpu;
1686
1687 /* copy the tracer to avoid using a global lock all around */
1688 mutex_lock(&trace_types_lock);
1689 if (unlikely(old_tracer != current_trace && current_trace)) {
1690 old_tracer = current_trace;
1691 *iter->trace = *current_trace;
1692 }
1693 mutex_unlock(&trace_types_lock);
1694
1695 atomic_inc(&trace_record_cmdline_disabled);
1696
1697 if (*pos != iter->pos) {
1698 iter->ent = NULL;
1699 iter->cpu = 0;
1700 iter->idx = -1;
1701
1702 ftrace_disable_cpu();
1703
1704 if (cpu_file == TRACE_PIPE_ALL_CPU) {
1705 for_each_tracing_cpu(cpu)
1706 tracing_iter_reset(iter, cpu);
1707 } else
1708 tracing_iter_reset(iter, cpu_file);
1709
1710 ftrace_enable_cpu();
1711
1712 iter->leftover = 0;
1713 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1714 ;
1715
1716 } else {
1717 /*
1718 * If we overflowed the seq_file before, then we want
1719 * to just reuse the trace_seq buffer again.
1720 */
1721 if (iter->leftover)
1722 p = iter;
1723 else {
1724 l = *pos - 1;
1725 p = s_next(m, p, &l);
1726 }
1727 }
1728
1729 trace_event_read_lock();
1730 trace_access_lock(cpu_file);
1731 return p;
1732 }
1733
1734 static void s_stop(struct seq_file *m, void *p)
1735 {
1736 struct trace_iterator *iter = m->private;
1737
1738 atomic_dec(&trace_record_cmdline_disabled);
1739 trace_access_unlock(iter->cpu_file);
1740 trace_event_read_unlock();
1741 }
1742
1743 static void print_lat_help_header(struct seq_file *m)
1744 {
1745 seq_puts(m, "# _------=> CPU# \n");
1746 seq_puts(m, "# / _-----=> irqs-off \n");
1747 seq_puts(m, "# | / _----=> need-resched \n");
1748 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1749 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1750 seq_puts(m, "# |||| / delay \n");
1751 seq_puts(m, "# cmd pid ||||| time | caller \n");
1752 seq_puts(m, "# \\ / ||||| \\ | / \n");
1753 }
1754
1755 static void print_func_help_header(struct seq_file *m)
1756 {
1757 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1758 seq_puts(m, "# | | | | |\n");
1759 }
1760
1761
1762 void
1763 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1764 {
1765 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1766 struct trace_array *tr = iter->tr;
1767 struct trace_array_cpu *data = tr->data[tr->cpu];
1768 struct tracer *type = current_trace;
1769 unsigned long entries = 0;
1770 unsigned long total = 0;
1771 unsigned long count;
1772 const char *name = "preemption";
1773 int cpu;
1774
1775 if (type)
1776 name = type->name;
1777
1778
1779 for_each_tracing_cpu(cpu) {
1780 count = ring_buffer_entries_cpu(tr->buffer, cpu);
1781 /*
1782 * If this buffer has skipped entries, then we hold all
1783 * entries for the trace and we need to ignore the
1784 * ones before the time stamp.
1785 */
1786 if (tr->data[cpu]->skipped_entries) {
1787 count -= tr->data[cpu]->skipped_entries;
1788 /* total is the same as the entries */
1789 total += count;
1790 } else
1791 total += count +
1792 ring_buffer_overrun_cpu(tr->buffer, cpu);
1793 entries += count;
1794 }
1795
1796 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
1797 name, UTS_RELEASE);
1798 seq_puts(m, "# -----------------------------------"
1799 "---------------------------------\n");
1800 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
1801 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1802 nsecs_to_usecs(data->saved_latency),
1803 entries,
1804 total,
1805 tr->cpu,
1806 #if defined(CONFIG_PREEMPT_NONE)
1807 "server",
1808 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1809 "desktop",
1810 #elif defined(CONFIG_PREEMPT)
1811 "preempt",
1812 #else
1813 "unknown",
1814 #endif
1815 /* These are reserved for later use */
1816 0, 0, 0, 0);
1817 #ifdef CONFIG_SMP
1818 seq_printf(m, " #P:%d)\n", num_online_cpus());
1819 #else
1820 seq_puts(m, ")\n");
1821 #endif
1822 seq_puts(m, "# -----------------\n");
1823 seq_printf(m, "# | task: %.16s-%d "
1824 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1825 data->comm, data->pid, data->uid, data->nice,
1826 data->policy, data->rt_priority);
1827 seq_puts(m, "# -----------------\n");
1828
1829 if (data->critical_start) {
1830 seq_puts(m, "# => started at: ");
1831 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1832 trace_print_seq(m, &iter->seq);
1833 seq_puts(m, "\n# => ended at: ");
1834 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1835 trace_print_seq(m, &iter->seq);
1836 seq_puts(m, "\n#\n");
1837 }
1838
1839 seq_puts(m, "#\n");
1840 }
1841
1842 static void test_cpu_buff_start(struct trace_iterator *iter)
1843 {
1844 struct trace_seq *s = &iter->seq;
1845
1846 if (!(trace_flags & TRACE_ITER_ANNOTATE))
1847 return;
1848
1849 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1850 return;
1851
1852 if (cpumask_test_cpu(iter->cpu, iter->started))
1853 return;
1854
1855 if (iter->tr->data[iter->cpu]->skipped_entries)
1856 return;
1857
1858 cpumask_set_cpu(iter->cpu, iter->started);
1859
1860 /* Don't print started cpu buffer for the first entry of the trace */
1861 if (iter->idx > 1)
1862 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
1863 iter->cpu);
1864 }
1865
1866 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
1867 {
1868 struct trace_seq *s = &iter->seq;
1869 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1870 struct trace_entry *entry;
1871 struct trace_event *event;
1872
1873 entry = iter->ent;
1874
1875 test_cpu_buff_start(iter);
1876
1877 event = ftrace_find_event(entry->type);
1878
1879 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1880 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1881 if (!trace_print_lat_context(iter))
1882 goto partial;
1883 } else {
1884 if (!trace_print_context(iter))
1885 goto partial;
1886 }
1887 }
1888
1889 if (event)
1890 return event->funcs->trace(iter, sym_flags, event);
1891
1892 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
1893 goto partial;
1894
1895 return TRACE_TYPE_HANDLED;
1896 partial:
1897 return TRACE_TYPE_PARTIAL_LINE;
1898 }
1899
1900 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
1901 {
1902 struct trace_seq *s = &iter->seq;
1903 struct trace_entry *entry;
1904 struct trace_event *event;
1905
1906 entry = iter->ent;
1907
1908 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1909 if (!trace_seq_printf(s, "%d %d %llu ",
1910 entry->pid, iter->cpu, iter->ts))
1911 goto partial;
1912 }
1913
1914 event = ftrace_find_event(entry->type);
1915 if (event)
1916 return event->funcs->raw(iter, 0, event);
1917
1918 if (!trace_seq_printf(s, "%d ?\n", entry->type))
1919 goto partial;
1920
1921 return TRACE_TYPE_HANDLED;
1922 partial:
1923 return TRACE_TYPE_PARTIAL_LINE;
1924 }
1925
1926 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
1927 {
1928 struct trace_seq *s = &iter->seq;
1929 unsigned char newline = '\n';
1930 struct trace_entry *entry;
1931 struct trace_event *event;
1932
1933 entry = iter->ent;
1934
1935 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1936 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1937 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1938 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1939 }
1940
1941 event = ftrace_find_event(entry->type);
1942 if (event) {
1943 enum print_line_t ret = event->funcs->hex(iter, 0, event);
1944 if (ret != TRACE_TYPE_HANDLED)
1945 return ret;
1946 }
1947
1948 SEQ_PUT_FIELD_RET(s, newline);
1949
1950 return TRACE_TYPE_HANDLED;
1951 }
1952
1953 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
1954 {
1955 struct trace_seq *s = &iter->seq;
1956 struct trace_entry *entry;
1957 struct trace_event *event;
1958
1959 entry = iter->ent;
1960
1961 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1962 SEQ_PUT_FIELD_RET(s, entry->pid);
1963 SEQ_PUT_FIELD_RET(s, iter->cpu);
1964 SEQ_PUT_FIELD_RET(s, iter->ts);
1965 }
1966
1967 event = ftrace_find_event(entry->type);
1968 return event ? event->funcs->binary(iter, 0, event) :
1969 TRACE_TYPE_HANDLED;
1970 }
1971
1972 int trace_empty(struct trace_iterator *iter)
1973 {
1974 int cpu;
1975
1976 /* If we are looking at one CPU buffer, only check that one */
1977 if (iter->cpu_file != TRACE_PIPE_ALL_CPU) {
1978 cpu = iter->cpu_file;
1979 if (iter->buffer_iter[cpu]) {
1980 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
1981 return 0;
1982 } else {
1983 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
1984 return 0;
1985 }
1986 return 1;
1987 }
1988
1989 for_each_tracing_cpu(cpu) {
1990 if (iter->buffer_iter[cpu]) {
1991 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
1992 return 0;
1993 } else {
1994 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
1995 return 0;
1996 }
1997 }
1998
1999 return 1;
2000 }
2001
2002 /* Called with trace_event_read_lock() held. */
2003 enum print_line_t print_trace_line(struct trace_iterator *iter)
2004 {
2005 enum print_line_t ret;
2006
2007 if (iter->lost_events)
2008 trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
2009 iter->cpu, iter->lost_events);
2010
2011 if (iter->trace && iter->trace->print_line) {
2012 ret = iter->trace->print_line(iter);
2013 if (ret != TRACE_TYPE_UNHANDLED)
2014 return ret;
2015 }
2016
2017 if (iter->ent->type == TRACE_BPRINT &&
2018 trace_flags & TRACE_ITER_PRINTK &&
2019 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2020 return trace_print_bprintk_msg_only(iter);
2021
2022 if (iter->ent->type == TRACE_PRINT &&
2023 trace_flags & TRACE_ITER_PRINTK &&
2024 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2025 return trace_print_printk_msg_only(iter);
2026
2027 if (trace_flags & TRACE_ITER_BIN)
2028 return print_bin_fmt(iter);
2029
2030 if (trace_flags & TRACE_ITER_HEX)
2031 return print_hex_fmt(iter);
2032
2033 if (trace_flags & TRACE_ITER_RAW)
2034 return print_raw_fmt(iter);
2035
2036 return print_trace_fmt(iter);
2037 }
2038
2039 void trace_default_header(struct seq_file *m)
2040 {
2041 struct trace_iterator *iter = m->private;
2042
2043 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2044 /* print nothing if the buffers are empty */
2045 if (trace_empty(iter))
2046 return;
2047 print_trace_header(m, iter);
2048 if (!(trace_flags & TRACE_ITER_VERBOSE))
2049 print_lat_help_header(m);
2050 } else {
2051 if (!(trace_flags & TRACE_ITER_VERBOSE))
2052 print_func_help_header(m);
2053 }
2054 }
2055
2056 static int s_show(struct seq_file *m, void *v)
2057 {
2058 struct trace_iterator *iter = v;
2059 int ret;
2060
2061 if (iter->ent == NULL) {
2062 if (iter->tr) {
2063 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2064 seq_puts(m, "#\n");
2065 }
2066 if (iter->trace && iter->trace->print_header)
2067 iter->trace->print_header(m);
2068 else
2069 trace_default_header(m);
2070
2071 } else if (iter->leftover) {
2072 /*
2073 * If we filled the seq_file buffer earlier, we
2074 * want to just show it now.
2075 */
2076 ret = trace_print_seq(m, &iter->seq);
2077
2078 /* ret should this time be zero, but you never know */
2079 iter->leftover = ret;
2080
2081 } else {
2082 print_trace_line(iter);
2083 ret = trace_print_seq(m, &iter->seq);
2084 /*
2085 * If we overflow the seq_file buffer, then it will
2086 * ask us for this data again at start up.
2087 * Use that instead.
2088 * ret is 0 if seq_file write succeeded.
2089 * -1 otherwise.
2090 */
2091 iter->leftover = ret;
2092 }
2093
2094 return 0;
2095 }
2096
2097 static const struct seq_operations tracer_seq_ops = {
2098 .start = s_start,
2099 .next = s_next,
2100 .stop = s_stop,
2101 .show = s_show,
2102 };
2103
2104 static struct trace_iterator *
2105 __tracing_open(struct inode *inode, struct file *file)
2106 {
2107 long cpu_file = (long) inode->i_private;
2108 void *fail_ret = ERR_PTR(-ENOMEM);
2109 struct trace_iterator *iter;
2110 struct seq_file *m;
2111 int cpu, ret;
2112
2113 if (tracing_disabled)
2114 return ERR_PTR(-ENODEV);
2115
2116 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2117 if (!iter)
2118 return ERR_PTR(-ENOMEM);
2119
2120 /*
2121 * We make a copy of the current tracer to avoid concurrent
2122 * changes on it while we are reading.
2123 */
2124 mutex_lock(&trace_types_lock);
2125 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
2126 if (!iter->trace)
2127 goto fail;
2128
2129 if (current_trace)
2130 *iter->trace = *current_trace;
2131
2132 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
2133 goto fail;
2134
2135 if (current_trace && current_trace->print_max)
2136 iter->tr = &max_tr;
2137 else
2138 iter->tr = &global_trace;
2139 iter->pos = -1;
2140 mutex_init(&iter->mutex);
2141 iter->cpu_file = cpu_file;
2142
2143 /* Notify the tracer early; before we stop tracing. */
2144 if (iter->trace && iter->trace->open)
2145 iter->trace->open(iter);
2146
2147 /* Annotate start of buffers if we had overruns */
2148 if (ring_buffer_overruns(iter->tr->buffer))
2149 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2150
2151 /* stop the trace while dumping */
2152 tracing_stop();
2153
2154 if (iter->cpu_file == TRACE_PIPE_ALL_CPU) {
2155 for_each_tracing_cpu(cpu) {
2156 iter->buffer_iter[cpu] =
2157 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2158 }
2159 ring_buffer_read_prepare_sync();
2160 for_each_tracing_cpu(cpu) {
2161 ring_buffer_read_start(iter->buffer_iter[cpu]);
2162 tracing_iter_reset(iter, cpu);
2163 }
2164 } else {
2165 cpu = iter->cpu_file;
2166 iter->buffer_iter[cpu] =
2167 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2168 ring_buffer_read_prepare_sync();
2169 ring_buffer_read_start(iter->buffer_iter[cpu]);
2170 tracing_iter_reset(iter, cpu);
2171 }
2172
2173 ret = seq_open(file, &tracer_seq_ops);
2174 if (ret < 0) {
2175 fail_ret = ERR_PTR(ret);
2176 goto fail_buffer;
2177 }
2178
2179 m = file->private_data;
2180 m->private = iter;
2181
2182 mutex_unlock(&trace_types_lock);
2183
2184 return iter;
2185
2186 fail_buffer:
2187 for_each_tracing_cpu(cpu) {
2188 if (iter->buffer_iter[cpu])
2189 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2190 }
2191 free_cpumask_var(iter->started);
2192 tracing_start();
2193 fail:
2194 mutex_unlock(&trace_types_lock);
2195 kfree(iter->trace);
2196 kfree(iter);
2197
2198 return fail_ret;
2199 }
2200
2201 int tracing_open_generic(struct inode *inode, struct file *filp)
2202 {
2203 if (tracing_disabled)
2204 return -ENODEV;
2205
2206 filp->private_data = inode->i_private;
2207 return 0;
2208 }
2209
2210 static int tracing_release(struct inode *inode, struct file *file)
2211 {
2212 struct seq_file *m = file->private_data;
2213 struct trace_iterator *iter;
2214 int cpu;
2215
2216 if (!(file->f_mode & FMODE_READ))
2217 return 0;
2218
2219 iter = m->private;
2220
2221 mutex_lock(&trace_types_lock);
2222 for_each_tracing_cpu(cpu) {
2223 if (iter->buffer_iter[cpu])
2224 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2225 }
2226
2227 if (iter->trace && iter->trace->close)
2228 iter->trace->close(iter);
2229
2230 /* reenable tracing if it was previously enabled */
2231 tracing_start();
2232 mutex_unlock(&trace_types_lock);
2233
2234 seq_release(inode, file);
2235 mutex_destroy(&iter->mutex);
2236 free_cpumask_var(iter->started);
2237 kfree(iter->trace);
2238 kfree(iter);
2239 return 0;
2240 }
2241
2242 static int tracing_open(struct inode *inode, struct file *file)
2243 {
2244 struct trace_iterator *iter;
2245 int ret = 0;
2246
2247 /* If this file was open for write, then erase contents */
2248 if ((file->f_mode & FMODE_WRITE) &&
2249 (file->f_flags & O_TRUNC)) {
2250 long cpu = (long) inode->i_private;
2251
2252 if (cpu == TRACE_PIPE_ALL_CPU)
2253 tracing_reset_online_cpus(&global_trace);
2254 else
2255 tracing_reset(&global_trace, cpu);
2256 }
2257
2258 if (file->f_mode & FMODE_READ) {
2259 iter = __tracing_open(inode, file);
2260 if (IS_ERR(iter))
2261 ret = PTR_ERR(iter);
2262 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
2263 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2264 }
2265 return ret;
2266 }
2267
2268 static void *
2269 t_next(struct seq_file *m, void *v, loff_t *pos)
2270 {
2271 struct tracer *t = v;
2272
2273 (*pos)++;
2274
2275 if (t)
2276 t = t->next;
2277
2278 return t;
2279 }
2280
2281 static void *t_start(struct seq_file *m, loff_t *pos)
2282 {
2283 struct tracer *t;
2284 loff_t l = 0;
2285
2286 mutex_lock(&trace_types_lock);
2287 for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
2288 ;
2289
2290 return t;
2291 }
2292
2293 static void t_stop(struct seq_file *m, void *p)
2294 {
2295 mutex_unlock(&trace_types_lock);
2296 }
2297
2298 static int t_show(struct seq_file *m, void *v)
2299 {
2300 struct tracer *t = v;
2301
2302 if (!t)
2303 return 0;
2304
2305 seq_printf(m, "%s", t->name);
2306 if (t->next)
2307 seq_putc(m, ' ');
2308 else
2309 seq_putc(m, '\n');
2310
2311 return 0;
2312 }
2313
2314 static const struct seq_operations show_traces_seq_ops = {
2315 .start = t_start,
2316 .next = t_next,
2317 .stop = t_stop,
2318 .show = t_show,
2319 };
2320
2321 static int show_traces_open(struct inode *inode, struct file *file)
2322 {
2323 if (tracing_disabled)
2324 return -ENODEV;
2325
2326 return seq_open(file, &show_traces_seq_ops);
2327 }
2328
2329 static ssize_t
2330 tracing_write_stub(struct file *filp, const char __user *ubuf,
2331 size_t count, loff_t *ppos)
2332 {
2333 return count;
2334 }
2335
2336 static loff_t tracing_seek(struct file *file, loff_t offset, int origin)
2337 {
2338 if (file->f_mode & FMODE_READ)
2339 return seq_lseek(file, offset, origin);
2340 else
2341 return 0;
2342 }
2343
2344 static const struct file_operations tracing_fops = {
2345 .open = tracing_open,
2346 .read = seq_read,
2347 .write = tracing_write_stub,
2348 .llseek = tracing_seek,
2349 .release = tracing_release,
2350 };
2351
2352 static const struct file_operations show_traces_fops = {
2353 .open = show_traces_open,
2354 .read = seq_read,
2355 .release = seq_release,
2356 .llseek = seq_lseek,
2357 };
2358
2359 /*
2360 * Only trace on a CPU if the bitmask is set:
2361 */
2362 static cpumask_var_t tracing_cpumask;
2363
2364 /*
2365 * The tracer itself will not take this lock, but still we want
2366 * to provide a consistent cpumask to user-space:
2367 */
2368 static DEFINE_MUTEX(tracing_cpumask_update_lock);
2369
2370 /*
2371 * Temporary storage for the character representation of the
2372 * CPU bitmask (and one more byte for the newline):
2373 */
2374 static char mask_str[NR_CPUS + 1];
2375
2376 static ssize_t
2377 tracing_cpumask_read(struct file *filp, char __user *ubuf,
2378 size_t count, loff_t *ppos)
2379 {
2380 int len;
2381
2382 mutex_lock(&tracing_cpumask_update_lock);
2383
2384 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2385 if (count - len < 2) {
2386 count = -EINVAL;
2387 goto out_err;
2388 }
2389 len += sprintf(mask_str + len, "\n");
2390 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2391
2392 out_err:
2393 mutex_unlock(&tracing_cpumask_update_lock);
2394
2395 return count;
2396 }
2397
2398 static ssize_t
2399 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2400 size_t count, loff_t *ppos)
2401 {
2402 int err, cpu;
2403 cpumask_var_t tracing_cpumask_new;
2404
2405 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2406 return -ENOMEM;
2407
2408 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2409 if (err)
2410 goto err_unlock;
2411
2412 mutex_lock(&tracing_cpumask_update_lock);
2413
2414 local_irq_disable();
2415 arch_spin_lock(&ftrace_max_lock);
2416 for_each_tracing_cpu(cpu) {
2417 /*
2418 * Increase/decrease the disabled counter if we are
2419 * about to flip a bit in the cpumask:
2420 */
2421 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2422 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2423 atomic_inc(&global_trace.data[cpu]->disabled);
2424 }
2425 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2426 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2427 atomic_dec(&global_trace.data[cpu]->disabled);
2428 }
2429 }
2430 arch_spin_unlock(&ftrace_max_lock);
2431 local_irq_enable();
2432
2433 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
2434
2435 mutex_unlock(&tracing_cpumask_update_lock);
2436 free_cpumask_var(tracing_cpumask_new);
2437
2438 return count;
2439
2440 err_unlock:
2441 free_cpumask_var(tracing_cpumask_new);
2442
2443 return err;
2444 }
2445
2446 static const struct file_operations tracing_cpumask_fops = {
2447 .open = tracing_open_generic,
2448 .read = tracing_cpumask_read,
2449 .write = tracing_cpumask_write,
2450 .llseek = generic_file_llseek,
2451 };
2452
2453 static int tracing_trace_options_show(struct seq_file *m, void *v)
2454 {
2455 struct tracer_opt *trace_opts;
2456 u32 tracer_flags;
2457 int i;
2458
2459 mutex_lock(&trace_types_lock);
2460 tracer_flags = current_trace->flags->val;
2461 trace_opts = current_trace->flags->opts;
2462
2463 for (i = 0; trace_options[i]; i++) {
2464 if (trace_flags & (1 << i))
2465 seq_printf(m, "%s\n", trace_options[i]);
2466 else
2467 seq_printf(m, "no%s\n", trace_options[i]);
2468 }
2469
2470 for (i = 0; trace_opts[i].name; i++) {
2471 if (tracer_flags & trace_opts[i].bit)
2472 seq_printf(m, "%s\n", trace_opts[i].name);
2473 else
2474 seq_printf(m, "no%s\n", trace_opts[i].name);
2475 }
2476 mutex_unlock(&trace_types_lock);
2477
2478 return 0;
2479 }
2480
2481 static int __set_tracer_option(struct tracer *trace,
2482 struct tracer_flags *tracer_flags,
2483 struct tracer_opt *opts, int neg)
2484 {
2485 int ret;
2486
2487 ret = trace->set_flag(tracer_flags->val, opts->bit, !neg);
2488 if (ret)
2489 return ret;
2490
2491 if (neg)
2492 tracer_flags->val &= ~opts->bit;
2493 else
2494 tracer_flags->val |= opts->bit;
2495 return 0;
2496 }
2497
2498 /* Try to assign a tracer specific option */
2499 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2500 {
2501 struct tracer_flags *tracer_flags = trace->flags;
2502 struct tracer_opt *opts = NULL;
2503 int i;
2504
2505 for (i = 0; tracer_flags->opts[i].name; i++) {
2506 opts = &tracer_flags->opts[i];
2507
2508 if (strcmp(cmp, opts->name) == 0)
2509 return __set_tracer_option(trace, trace->flags,
2510 opts, neg);
2511 }
2512
2513 return -EINVAL;
2514 }
2515
2516 static void set_tracer_flags(unsigned int mask, int enabled)
2517 {
2518 /* do nothing if flag is already set */
2519 if (!!(trace_flags & mask) == !!enabled)
2520 return;
2521
2522 if (enabled)
2523 trace_flags |= mask;
2524 else
2525 trace_flags &= ~mask;
2526
2527 if (mask == TRACE_ITER_RECORD_CMD)
2528 trace_event_enable_cmd_record(enabled);
2529
2530 if (mask == TRACE_ITER_OVERWRITE)
2531 ring_buffer_change_overwrite(global_trace.buffer, enabled);
2532 }
2533
2534 static ssize_t
2535 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
2536 size_t cnt, loff_t *ppos)
2537 {
2538 char buf[64];
2539 char *cmp;
2540 int neg = 0;
2541 int ret;
2542 int i;
2543
2544 if (cnt >= sizeof(buf))
2545 return -EINVAL;
2546
2547 if (copy_from_user(&buf, ubuf, cnt))
2548 return -EFAULT;
2549
2550 buf[cnt] = 0;
2551 cmp = strstrip(buf);
2552
2553 if (strncmp(cmp, "no", 2) == 0) {
2554 neg = 1;
2555 cmp += 2;
2556 }
2557
2558 for (i = 0; trace_options[i]; i++) {
2559 if (strcmp(cmp, trace_options[i]) == 0) {
2560 set_tracer_flags(1 << i, !neg);
2561 break;
2562 }
2563 }
2564
2565 /* If no option could be set, test the specific tracer options */
2566 if (!trace_options[i]) {
2567 mutex_lock(&trace_types_lock);
2568 ret = set_tracer_option(current_trace, cmp, neg);
2569 mutex_unlock(&trace_types_lock);
2570 if (ret)
2571 return ret;
2572 }
2573
2574 *ppos += cnt;
2575
2576 return cnt;
2577 }
2578
2579 static int tracing_trace_options_open(struct inode *inode, struct file *file)
2580 {
2581 if (tracing_disabled)
2582 return -ENODEV;
2583 return single_open(file, tracing_trace_options_show, NULL);
2584 }
2585
2586 static const struct file_operations tracing_iter_fops = {
2587 .open = tracing_trace_options_open,
2588 .read = seq_read,
2589 .llseek = seq_lseek,
2590 .release = single_release,
2591 .write = tracing_trace_options_write,
2592 };
2593
2594 static const char readme_msg[] =
2595 "tracing mini-HOWTO:\n\n"
2596 "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2597 "# cat /sys/kernel/debug/tracing/available_tracers\n"
2598 "wakeup preemptirqsoff preemptoff irqsoff function sched_switch nop\n\n"
2599 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2600 "nop\n"
2601 "# echo sched_switch > /sys/kernel/debug/tracing/current_tracer\n"
2602 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2603 "sched_switch\n"
2604 "# cat /sys/kernel/debug/tracing/trace_options\n"
2605 "noprint-parent nosym-offset nosym-addr noverbose\n"
2606 "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
2607 "# echo 1 > /sys/kernel/debug/tracing/tracing_enabled\n"
2608 "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
2609 "# echo 0 > /sys/kernel/debug/tracing/tracing_enabled\n"
2610 ;
2611
2612 static ssize_t
2613 tracing_readme_read(struct file *filp, char __user *ubuf,
2614 size_t cnt, loff_t *ppos)
2615 {
2616 return simple_read_from_buffer(ubuf, cnt, ppos,
2617 readme_msg, strlen(readme_msg));
2618 }
2619
2620 static const struct file_operations tracing_readme_fops = {
2621 .open = tracing_open_generic,
2622 .read = tracing_readme_read,
2623 .llseek = generic_file_llseek,
2624 };
2625
2626 static ssize_t
2627 tracing_saved_cmdlines_read(struct file *file, char __user *ubuf,
2628 size_t cnt, loff_t *ppos)
2629 {
2630 char *buf_comm;
2631 char *file_buf;
2632 char *buf;
2633 int len = 0;
2634 int pid;
2635 int i;
2636
2637 file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL);
2638 if (!file_buf)
2639 return -ENOMEM;
2640
2641 buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL);
2642 if (!buf_comm) {
2643 kfree(file_buf);
2644 return -ENOMEM;
2645 }
2646
2647 buf = file_buf;
2648
2649 for (i = 0; i < SAVED_CMDLINES; i++) {
2650 int r;
2651
2652 pid = map_cmdline_to_pid[i];
2653 if (pid == -1 || pid == NO_CMDLINE_MAP)
2654 continue;
2655
2656 trace_find_cmdline(pid, buf_comm);
2657 r = sprintf(buf, "%d %s\n", pid, buf_comm);
2658 buf += r;
2659 len += r;
2660 }
2661
2662 len = simple_read_from_buffer(ubuf, cnt, ppos,
2663 file_buf, len);
2664
2665 kfree(file_buf);
2666 kfree(buf_comm);
2667
2668 return len;
2669 }
2670
2671 static const struct file_operations tracing_saved_cmdlines_fops = {
2672 .open = tracing_open_generic,
2673 .read = tracing_saved_cmdlines_read,
2674 .llseek = generic_file_llseek,
2675 };
2676
2677 static ssize_t
2678 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2679 size_t cnt, loff_t *ppos)
2680 {
2681 char buf[64];
2682 int r;
2683
2684 r = sprintf(buf, "%u\n", tracer_enabled);
2685 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2686 }
2687
2688 static ssize_t
2689 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2690 size_t cnt, loff_t *ppos)
2691 {
2692 struct trace_array *tr = filp->private_data;
2693 char buf[64];
2694 unsigned long val;
2695 int ret;
2696
2697 if (cnt >= sizeof(buf))
2698 return -EINVAL;
2699
2700 if (copy_from_user(&buf, ubuf, cnt))
2701 return -EFAULT;
2702
2703 buf[cnt] = 0;
2704
2705 ret = strict_strtoul(buf, 10, &val);
2706 if (ret < 0)
2707 return ret;
2708
2709 val = !!val;
2710
2711 mutex_lock(&trace_types_lock);
2712 if (tracer_enabled ^ val) {
2713
2714 /* Only need to warn if this is used to change the state */
2715 WARN_ONCE(1, "tracing_enabled is deprecated. Use tracing_on");
2716
2717 if (val) {
2718 tracer_enabled = 1;
2719 if (current_trace->start)
2720 current_trace->start(tr);
2721 tracing_start();
2722 } else {
2723 tracer_enabled = 0;
2724 tracing_stop();
2725 if (current_trace->stop)
2726 current_trace->stop(tr);
2727 }
2728 }
2729 mutex_unlock(&trace_types_lock);
2730
2731 *ppos += cnt;
2732
2733 return cnt;
2734 }
2735
2736 static ssize_t
2737 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2738 size_t cnt, loff_t *ppos)
2739 {
2740 char buf[MAX_TRACER_SIZE+2];
2741 int r;
2742
2743 mutex_lock(&trace_types_lock);
2744 if (current_trace)
2745 r = sprintf(buf, "%s\n", current_trace->name);
2746 else
2747 r = sprintf(buf, "\n");
2748 mutex_unlock(&trace_types_lock);
2749
2750 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2751 }
2752
2753 int tracer_init(struct tracer *t, struct trace_array *tr)
2754 {
2755 tracing_reset_online_cpus(tr);
2756 return t->init(tr);
2757 }
2758
2759 static int tracing_resize_ring_buffer(unsigned long size)
2760 {
2761 int ret;
2762
2763 /*
2764 * If kernel or user changes the size of the ring buffer
2765 * we use the size that was given, and we can forget about
2766 * expanding it later.
2767 */
2768 ring_buffer_expanded = 1;
2769
2770 ret = ring_buffer_resize(global_trace.buffer, size);
2771 if (ret < 0)
2772 return ret;
2773
2774 if (!current_trace->use_max_tr)
2775 goto out;
2776
2777 ret = ring_buffer_resize(max_tr.buffer, size);
2778 if (ret < 0) {
2779 int r;
2780
2781 r = ring_buffer_resize(global_trace.buffer,
2782 global_trace.entries);
2783 if (r < 0) {
2784 /*
2785 * AARGH! We are left with different
2786 * size max buffer!!!!
2787 * The max buffer is our "snapshot" buffer.
2788 * When a tracer needs a snapshot (one of the
2789 * latency tracers), it swaps the max buffer
2790 * with the saved snap shot. We succeeded to
2791 * update the size of the main buffer, but failed to
2792 * update the size of the max buffer. But when we tried
2793 * to reset the main buffer to the original size, we
2794 * failed there too. This is very unlikely to
2795 * happen, but if it does, warn and kill all
2796 * tracing.
2797 */
2798 WARN_ON(1);
2799 tracing_disabled = 1;
2800 }
2801 return ret;
2802 }
2803
2804 max_tr.entries = size;
2805 out:
2806 global_trace.entries = size;
2807
2808 return ret;
2809 }
2810
2811
2812 /**
2813 * tracing_update_buffers - used by tracing facility to expand ring buffers
2814 *
2815 * To save on memory when the tracing is never used on a system with it
2816 * configured in. The ring buffers are set to a minimum size. But once
2817 * a user starts to use the tracing facility, then they need to grow
2818 * to their default size.
2819 *
2820 * This function is to be called when a tracer is about to be used.
2821 */
2822 int tracing_update_buffers(void)
2823 {
2824 int ret = 0;
2825
2826 mutex_lock(&trace_types_lock);
2827 if (!ring_buffer_expanded)
2828 ret = tracing_resize_ring_buffer(trace_buf_size);
2829 mutex_unlock(&trace_types_lock);
2830
2831 return ret;
2832 }
2833
2834 struct trace_option_dentry;
2835
2836 static struct trace_option_dentry *
2837 create_trace_option_files(struct tracer *tracer);
2838
2839 static void
2840 destroy_trace_option_files(struct trace_option_dentry *topts);
2841
2842 static int tracing_set_tracer(const char *buf)
2843 {
2844 static struct trace_option_dentry *topts;
2845 struct trace_array *tr = &global_trace;
2846 struct tracer *t;
2847 int ret = 0;
2848
2849 mutex_lock(&trace_types_lock);
2850
2851 if (!ring_buffer_expanded) {
2852 ret = tracing_resize_ring_buffer(trace_buf_size);
2853 if (ret < 0)
2854 goto out;
2855 ret = 0;
2856 }
2857
2858 for (t = trace_types; t; t = t->next) {
2859 if (strcmp(t->name, buf) == 0)
2860 break;
2861 }
2862 if (!t) {
2863 ret = -EINVAL;
2864 goto out;
2865 }
2866 if (t == current_trace)
2867 goto out;
2868
2869 trace_branch_disable();
2870 if (current_trace && current_trace->reset)
2871 current_trace->reset(tr);
2872 if (current_trace && current_trace->use_max_tr) {
2873 /*
2874 * We don't free the ring buffer. instead, resize it because
2875 * The max_tr ring buffer has some state (e.g. ring->clock) and
2876 * we want preserve it.
2877 */
2878 ring_buffer_resize(max_tr.buffer, 1);
2879 max_tr.entries = 1;
2880 }
2881 destroy_trace_option_files(topts);
2882
2883 current_trace = t;
2884
2885 topts = create_trace_option_files(current_trace);
2886 if (current_trace->use_max_tr) {
2887 ret = ring_buffer_resize(max_tr.buffer, global_trace.entries);
2888 if (ret < 0)
2889 goto out;
2890 max_tr.entries = global_trace.entries;
2891 }
2892
2893 if (t->init) {
2894 ret = tracer_init(t, tr);
2895 if (ret)
2896 goto out;
2897 }
2898
2899 trace_branch_enable(tr);
2900 out:
2901 mutex_unlock(&trace_types_lock);
2902
2903 return ret;
2904 }
2905
2906 static ssize_t
2907 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2908 size_t cnt, loff_t *ppos)
2909 {
2910 char buf[MAX_TRACER_SIZE+1];
2911 int i;
2912 size_t ret;
2913 int err;
2914
2915 ret = cnt;
2916
2917 if (cnt > MAX_TRACER_SIZE)
2918 cnt = MAX_TRACER_SIZE;
2919
2920 if (copy_from_user(&buf, ubuf, cnt))
2921 return -EFAULT;
2922
2923 buf[cnt] = 0;
2924
2925 /* strip ending whitespace. */
2926 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2927 buf[i] = 0;
2928
2929 err = tracing_set_tracer(buf);
2930 if (err)
2931 return err;
2932
2933 *ppos += ret;
2934
2935 return ret;
2936 }
2937
2938 static ssize_t
2939 tracing_max_lat_read(struct file *filp, char __user *ubuf,
2940 size_t cnt, loff_t *ppos)
2941 {
2942 unsigned long *ptr = filp->private_data;
2943 char buf[64];
2944 int r;
2945
2946 r = snprintf(buf, sizeof(buf), "%ld\n",
2947 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2948 if (r > sizeof(buf))
2949 r = sizeof(buf);
2950 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2951 }
2952
2953 static ssize_t
2954 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2955 size_t cnt, loff_t *ppos)
2956 {
2957 unsigned long *ptr = filp->private_data;
2958 char buf[64];
2959 unsigned long val;
2960 int ret;
2961
2962 if (cnt >= sizeof(buf))
2963 return -EINVAL;
2964
2965 if (copy_from_user(&buf, ubuf, cnt))
2966 return -EFAULT;
2967
2968 buf[cnt] = 0;
2969
2970 ret = strict_strtoul(buf, 10, &val);
2971 if (ret < 0)
2972 return ret;
2973
2974 *ptr = val * 1000;
2975
2976 return cnt;
2977 }
2978
2979 static int tracing_open_pipe(struct inode *inode, struct file *filp)
2980 {
2981 long cpu_file = (long) inode->i_private;
2982 struct trace_iterator *iter;
2983 int ret = 0;
2984
2985 if (tracing_disabled)
2986 return -ENODEV;
2987
2988 mutex_lock(&trace_types_lock);
2989
2990 /* create a buffer to store the information to pass to userspace */
2991 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2992 if (!iter) {
2993 ret = -ENOMEM;
2994 goto out;
2995 }
2996
2997 /*
2998 * We make a copy of the current tracer to avoid concurrent
2999 * changes on it while we are reading.
3000 */
3001 iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
3002 if (!iter->trace) {
3003 ret = -ENOMEM;
3004 goto fail;
3005 }
3006 if (current_trace)
3007 *iter->trace = *current_trace;
3008
3009 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
3010 ret = -ENOMEM;
3011 goto fail;
3012 }
3013
3014 /* trace pipe does not show start of buffer */
3015 cpumask_setall(iter->started);
3016
3017 if (trace_flags & TRACE_ITER_LATENCY_FMT)
3018 iter->iter_flags |= TRACE_FILE_LAT_FMT;
3019
3020 iter->cpu_file = cpu_file;
3021 iter->tr = &global_trace;
3022 mutex_init(&iter->mutex);
3023 filp->private_data = iter;
3024
3025 if (iter->trace->pipe_open)
3026 iter->trace->pipe_open(iter);
3027
3028 nonseekable_open(inode, filp);
3029 out:
3030 mutex_unlock(&trace_types_lock);
3031 return ret;
3032
3033 fail:
3034 kfree(iter->trace);
3035 kfree(iter);
3036 mutex_unlock(&trace_types_lock);
3037 return ret;
3038 }
3039
3040 static int tracing_release_pipe(struct inode *inode, struct file *file)
3041 {
3042 struct trace_iterator *iter = file->private_data;
3043
3044 mutex_lock(&trace_types_lock);
3045
3046 if (iter->trace->pipe_close)
3047 iter->trace->pipe_close(iter);
3048
3049 mutex_unlock(&trace_types_lock);
3050
3051 free_cpumask_var(iter->started);
3052 mutex_destroy(&iter->mutex);
3053 kfree(iter->trace);
3054 kfree(iter);
3055
3056 return 0;
3057 }
3058
3059 static unsigned int
3060 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
3061 {
3062 struct trace_iterator *iter = filp->private_data;
3063
3064 if (trace_flags & TRACE_ITER_BLOCK) {
3065 /*
3066 * Always select as readable when in blocking mode
3067 */
3068 return POLLIN | POLLRDNORM;
3069 } else {
3070 if (!trace_empty(iter))
3071 return POLLIN | POLLRDNORM;
3072 poll_wait(filp, &trace_wait, poll_table);
3073 if (!trace_empty(iter))
3074 return POLLIN | POLLRDNORM;
3075
3076 return 0;
3077 }
3078 }
3079
3080
3081 void default_wait_pipe(struct trace_iterator *iter)
3082 {
3083 DEFINE_WAIT(wait);
3084
3085 prepare_to_wait(&trace_wait, &wait, TASK_INTERRUPTIBLE);
3086
3087 if (trace_empty(iter))
3088 schedule();
3089
3090 finish_wait(&trace_wait, &wait);
3091 }
3092
3093 /*
3094 * This is a make-shift waitqueue.
3095 * A tracer might use this callback on some rare cases:
3096 *
3097 * 1) the current tracer might hold the runqueue lock when it wakes up
3098 * a reader, hence a deadlock (sched, function, and function graph tracers)
3099 * 2) the function tracers, trace all functions, we don't want
3100 * the overhead of calling wake_up and friends
3101 * (and tracing them too)
3102 *
3103 * Anyway, this is really very primitive wakeup.
3104 */
3105 void poll_wait_pipe(struct trace_iterator *iter)
3106 {
3107 set_current_state(TASK_INTERRUPTIBLE);
3108 /* sleep for 100 msecs, and try again. */
3109 schedule_timeout(HZ / 10);
3110 }
3111
3112 /* Must be called with trace_types_lock mutex held. */
3113 static int tracing_wait_pipe(struct file *filp)
3114 {
3115 struct trace_iterator *iter = filp->private_data;
3116
3117 while (trace_empty(iter)) {
3118
3119 if ((filp->f_flags & O_NONBLOCK)) {
3120 return -EAGAIN;
3121 }
3122
3123 mutex_unlock(&iter->mutex);
3124
3125 iter->trace->wait_pipe(iter);
3126
3127 mutex_lock(&iter->mutex);
3128
3129 if (signal_pending(current))
3130 return -EINTR;
3131
3132 /*
3133 * We block until we read something and tracing is disabled.
3134 * We still block if tracing is disabled, but we have never
3135 * read anything. This allows a user to cat this file, and
3136 * then enable tracing. But after we have read something,
3137 * we give an EOF when tracing is again disabled.
3138 *
3139 * iter->pos will be 0 if we haven't read anything.
3140 */
3141 if (!tracer_enabled && iter->pos)
3142 break;
3143 }
3144
3145 return 1;
3146 }
3147
3148 /*
3149 * Consumer reader.
3150 */
3151 static ssize_t
3152 tracing_read_pipe(struct file *filp, char __user *ubuf,
3153 size_t cnt, loff_t *ppos)
3154 {
3155 struct trace_iterator *iter = filp->private_data;
3156 static struct tracer *old_tracer;
3157 ssize_t sret;
3158
3159 /* return any leftover data */
3160 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3161 if (sret != -EBUSY)
3162 return sret;
3163
3164 trace_seq_init(&iter->seq);
3165
3166 /* copy the tracer to avoid using a global lock all around */
3167 mutex_lock(&trace_types_lock);
3168 if (unlikely(old_tracer != current_trace && current_trace)) {
3169 old_tracer = current_trace;
3170 *iter->trace = *current_trace;
3171 }
3172 mutex_unlock(&trace_types_lock);
3173
3174 /*
3175 * Avoid more than one consumer on a single file descriptor
3176 * This is just a matter of traces coherency, the ring buffer itself
3177 * is protected.
3178 */
3179 mutex_lock(&iter->mutex);
3180 if (iter->trace->read) {
3181 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
3182 if (sret)
3183 goto out;
3184 }
3185
3186 waitagain:
3187 sret = tracing_wait_pipe(filp);
3188 if (sret <= 0)
3189 goto out;
3190
3191 /* stop when tracing is finished */
3192 if (trace_empty(iter)) {
3193 sret = 0;
3194 goto out;
3195 }
3196
3197 if (cnt >= PAGE_SIZE)
3198 cnt = PAGE_SIZE - 1;
3199
3200 /* reset all but tr, trace, and overruns */
3201 memset(&iter->seq, 0,
3202 sizeof(struct trace_iterator) -
3203 offsetof(struct trace_iterator, seq));
3204 iter->pos = -1;
3205
3206 trace_event_read_lock();
3207 trace_access_lock(iter->cpu_file);
3208 while (trace_find_next_entry_inc(iter) != NULL) {
3209 enum print_line_t ret;
3210 int len = iter->seq.len;
3211
3212 ret = print_trace_line(iter);
3213 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3214 /* don't print partial lines */
3215 iter->seq.len = len;
3216 break;
3217 }
3218 if (ret != TRACE_TYPE_NO_CONSUME)
3219 trace_consume(iter);
3220
3221 if (iter->seq.len >= cnt)
3222 break;
3223 }
3224 trace_access_unlock(iter->cpu_file);
3225 trace_event_read_unlock();
3226
3227 /* Now copy what we have to the user */
3228 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3229 if (iter->seq.readpos >= iter->seq.len)
3230 trace_seq_init(&iter->seq);
3231
3232 /*
3233 * If there was nothing to send to user, inspite of consuming trace
3234 * entries, go back to wait for more entries.
3235 */
3236 if (sret == -EBUSY)
3237 goto waitagain;
3238
3239 out:
3240 mutex_unlock(&iter->mutex);
3241
3242 return sret;
3243 }
3244
3245 static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
3246 struct pipe_buffer *buf)
3247 {
3248 __free_page(buf->page);
3249 }
3250
3251 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
3252 unsigned int idx)
3253 {
3254 __free_page(spd->pages[idx]);
3255 }
3256
3257 static const struct pipe_buf_operations tracing_pipe_buf_ops = {
3258 .can_merge = 0,
3259 .map = generic_pipe_buf_map,
3260 .unmap = generic_pipe_buf_unmap,
3261 .confirm = generic_pipe_buf_confirm,
3262 .release = tracing_pipe_buf_release,
3263 .steal = generic_pipe_buf_steal,
3264 .get = generic_pipe_buf_get,
3265 };
3266
3267 static size_t
3268 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
3269 {
3270 size_t count;
3271 int ret;
3272
3273 /* Seq buffer is page-sized, exactly what we need. */
3274 for (;;) {
3275 count = iter->seq.len;
3276 ret = print_trace_line(iter);
3277 count = iter->seq.len - count;
3278 if (rem < count) {
3279 rem = 0;
3280 iter->seq.len -= count;
3281 break;
3282 }
3283 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3284 iter->seq.len -= count;
3285 break;
3286 }
3287
3288 if (ret != TRACE_TYPE_NO_CONSUME)
3289 trace_consume(iter);
3290 rem -= count;
3291 if (!trace_find_next_entry_inc(iter)) {
3292 rem = 0;
3293 iter->ent = NULL;
3294 break;
3295 }
3296 }
3297
3298 return rem;
3299 }
3300
3301 static ssize_t tracing_splice_read_pipe(struct file *filp,
3302 loff_t *ppos,
3303 struct pipe_inode_info *pipe,
3304 size_t len,
3305 unsigned int flags)
3306 {
3307 struct page *pages_def[PIPE_DEF_BUFFERS];
3308 struct partial_page partial_def[PIPE_DEF_BUFFERS];
3309 struct trace_iterator *iter = filp->private_data;
3310 struct splice_pipe_desc spd = {
3311 .pages = pages_def,
3312 .partial = partial_def,
3313 .nr_pages = 0, /* This gets updated below. */
3314 .flags = flags,
3315 .ops = &tracing_pipe_buf_ops,
3316 .spd_release = tracing_spd_release_pipe,
3317 };
3318 static struct tracer *old_tracer;
3319 ssize_t ret;
3320 size_t rem;
3321 unsigned int i;
3322
3323 if (splice_grow_spd(pipe, &spd))
3324 return -ENOMEM;
3325
3326 /* copy the tracer to avoid using a global lock all around */
3327 mutex_lock(&trace_types_lock);
3328 if (unlikely(old_tracer != current_trace && current_trace)) {
3329 old_tracer = current_trace;
3330 *iter->trace = *current_trace;
3331 }
3332 mutex_unlock(&trace_types_lock);
3333
3334 mutex_lock(&iter->mutex);
3335
3336 if (iter->trace->splice_read) {
3337 ret = iter->trace->splice_read(iter, filp,
3338 ppos, pipe, len, flags);
3339 if (ret)
3340 goto out_err;
3341 }
3342
3343 ret = tracing_wait_pipe(filp);
3344 if (ret <= 0)
3345 goto out_err;
3346
3347 if (!iter->ent && !trace_find_next_entry_inc(iter)) {
3348 ret = -EFAULT;
3349 goto out_err;
3350 }
3351
3352 trace_event_read_lock();
3353 trace_access_lock(iter->cpu_file);
3354
3355 /* Fill as many pages as possible. */
3356 for (i = 0, rem = len; i < pipe->buffers && rem; i++) {
3357 spd.pages[i] = alloc_page(GFP_KERNEL);
3358 if (!spd.pages[i])
3359 break;
3360
3361 rem = tracing_fill_pipe_page(rem, iter);
3362
3363 /* Copy the data into the page, so we can start over. */
3364 ret = trace_seq_to_buffer(&iter->seq,
3365 page_address(spd.pages[i]),
3366 iter->seq.len);
3367 if (ret < 0) {
3368 __free_page(spd.pages[i]);
3369 break;
3370 }
3371 spd.partial[i].offset = 0;
3372 spd.partial[i].len = iter->seq.len;
3373
3374 trace_seq_init(&iter->seq);
3375 }
3376
3377 trace_access_unlock(iter->cpu_file);
3378 trace_event_read_unlock();
3379 mutex_unlock(&iter->mutex);
3380
3381 spd.nr_pages = i;
3382
3383 ret = splice_to_pipe(pipe, &spd);
3384 out:
3385 splice_shrink_spd(pipe, &spd);
3386 return ret;
3387
3388 out_err:
3389 mutex_unlock(&iter->mutex);
3390 goto out;
3391 }
3392
3393 static ssize_t
3394 tracing_entries_read(struct file *filp, char __user *ubuf,
3395 size_t cnt, loff_t *ppos)
3396 {
3397 struct trace_array *tr = filp->private_data;
3398 char buf[96];
3399 int r;
3400
3401 mutex_lock(&trace_types_lock);
3402 if (!ring_buffer_expanded)
3403 r = sprintf(buf, "%lu (expanded: %lu)\n",
3404 tr->entries >> 10,
3405 trace_buf_size >> 10);
3406 else
3407 r = sprintf(buf, "%lu\n", tr->entries >> 10);
3408 mutex_unlock(&trace_types_lock);
3409
3410 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3411 }
3412
3413 static ssize_t
3414 tracing_entries_write(struct file *filp, const char __user *ubuf,
3415 size_t cnt, loff_t *ppos)
3416 {
3417 unsigned long val;
3418 char buf[64];
3419 int ret, cpu;
3420
3421 if (cnt >= sizeof(buf))
3422 return -EINVAL;
3423
3424 if (copy_from_user(&buf, ubuf, cnt))
3425 return -EFAULT;
3426
3427 buf[cnt] = 0;
3428
3429 ret = strict_strtoul(buf, 10, &val);
3430 if (ret < 0)
3431 return ret;
3432
3433 /* must have at least 1 entry */
3434 if (!val)
3435 return -EINVAL;
3436
3437 mutex_lock(&trace_types_lock);
3438
3439 tracing_stop();
3440
3441 /* disable all cpu buffers */
3442 for_each_tracing_cpu(cpu) {
3443 if (global_trace.data[cpu])
3444 atomic_inc(&global_trace.data[cpu]->disabled);
3445 if (max_tr.data[cpu])
3446 atomic_inc(&max_tr.data[cpu]->disabled);
3447 }
3448
3449 /* value is in KB */
3450 val <<= 10;
3451
3452 if (val != global_trace.entries) {
3453 ret = tracing_resize_ring_buffer(val);
3454 if (ret < 0) {
3455 cnt = ret;
3456 goto out;
3457 }
3458 }
3459
3460 *ppos += cnt;
3461
3462 /* If check pages failed, return ENOMEM */
3463 if (tracing_disabled)
3464 cnt = -ENOMEM;
3465 out:
3466 for_each_tracing_cpu(cpu) {
3467 if (global_trace.data[cpu])
3468 atomic_dec(&global_trace.data[cpu]->disabled);
3469 if (max_tr.data[cpu])
3470 atomic_dec(&max_tr.data[cpu]->disabled);
3471 }
3472
3473 tracing_start();
3474 mutex_unlock(&trace_types_lock);
3475
3476 return cnt;
3477 }
3478
3479 static int mark_printk(const char *fmt, ...)
3480 {
3481 int ret;
3482 va_list args;
3483 va_start(args, fmt);
3484 ret = trace_vprintk(0, fmt, args);
3485 va_end(args);
3486 return ret;
3487 }
3488
3489 static ssize_t
3490 tracing_mark_write(struct file *filp, const char __user *ubuf,
3491 size_t cnt, loff_t *fpos)
3492 {
3493 char *buf;
3494 size_t written;
3495
3496 if (tracing_disabled)
3497 return -EINVAL;
3498
3499 if (cnt > TRACE_BUF_SIZE)
3500 cnt = TRACE_BUF_SIZE;
3501
3502 buf = kmalloc(cnt + 2, GFP_KERNEL);
3503 if (buf == NULL)
3504 return -ENOMEM;
3505
3506 if (copy_from_user(buf, ubuf, cnt)) {
3507 kfree(buf);
3508 return -EFAULT;
3509 }
3510 if (buf[cnt-1] != '\n') {
3511 buf[cnt] = '\n';
3512 buf[cnt+1] = '\0';
3513 } else
3514 buf[cnt] = '\0';
3515
3516 written = mark_printk("%s", buf);
3517 kfree(buf);
3518 *fpos += written;
3519
3520 /* don't tell userspace we wrote more - it might confuse them */
3521 if (written > cnt)
3522 written = cnt;
3523
3524 return written;
3525 }
3526
3527 static int tracing_clock_show(struct seq_file *m, void *v)
3528 {
3529 int i;
3530
3531 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
3532 seq_printf(m,
3533 "%s%s%s%s", i ? " " : "",
3534 i == trace_clock_id ? "[" : "", trace_clocks[i].name,
3535 i == trace_clock_id ? "]" : "");
3536 seq_putc(m, '\n');
3537
3538 return 0;
3539 }
3540
3541 static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
3542 size_t cnt, loff_t *fpos)
3543 {
3544 char buf[64];
3545 const char *clockstr;
3546 int i;
3547
3548 if (cnt >= sizeof(buf))
3549 return -EINVAL;
3550
3551 if (copy_from_user(&buf, ubuf, cnt))
3552 return -EFAULT;
3553
3554 buf[cnt] = 0;
3555
3556 clockstr = strstrip(buf);
3557
3558 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
3559 if (strcmp(trace_clocks[i].name, clockstr) == 0)
3560 break;
3561 }
3562 if (i == ARRAY_SIZE(trace_clocks))
3563 return -EINVAL;
3564
3565 trace_clock_id = i;
3566
3567 mutex_lock(&trace_types_lock);
3568
3569 ring_buffer_set_clock(global_trace.buffer, trace_clocks[i].func);
3570 if (max_tr.buffer)
3571 ring_buffer_set_clock(max_tr.buffer, trace_clocks[i].func);
3572
3573 mutex_unlock(&trace_types_lock);
3574
3575 *fpos += cnt;
3576
3577 return cnt;
3578 }
3579
3580 static int tracing_clock_open(struct inode *inode, struct file *file)
3581 {
3582 if (tracing_disabled)
3583 return -ENODEV;
3584 return single_open(file, tracing_clock_show, NULL);
3585 }
3586
3587 static const struct file_operations tracing_max_lat_fops = {
3588 .open = tracing_open_generic,
3589 .read = tracing_max_lat_read,
3590 .write = tracing_max_lat_write,
3591 .llseek = generic_file_llseek,
3592 };
3593
3594 static const struct file_operations tracing_ctrl_fops = {
3595 .open = tracing_open_generic,
3596 .read = tracing_ctrl_read,
3597 .write = tracing_ctrl_write,
3598 .llseek = generic_file_llseek,
3599 };
3600
3601 static const struct file_operations set_tracer_fops = {
3602 .open = tracing_open_generic,
3603 .read = tracing_set_trace_read,
3604 .write = tracing_set_trace_write,
3605 .llseek = generic_file_llseek,
3606 };
3607
3608 static const struct file_operations tracing_pipe_fops = {
3609 .open = tracing_open_pipe,
3610 .poll = tracing_poll_pipe,
3611 .read = tracing_read_pipe,
3612 .splice_read = tracing_splice_read_pipe,
3613 .release = tracing_release_pipe,
3614 .llseek = no_llseek,
3615 };
3616
3617 static const struct file_operations tracing_entries_fops = {
3618 .open = tracing_open_generic,
3619 .read = tracing_entries_read,
3620 .write = tracing_entries_write,
3621 .llseek = generic_file_llseek,
3622 };
3623
3624 static const struct file_operations tracing_mark_fops = {
3625 .open = tracing_open_generic,
3626 .write = tracing_mark_write,
3627 .llseek = generic_file_llseek,
3628 };
3629
3630 static const struct file_operations trace_clock_fops = {
3631 .open = tracing_clock_open,
3632 .read = seq_read,
3633 .llseek = seq_lseek,
3634 .release = single_release,
3635 .write = tracing_clock_write,
3636 };
3637
3638 struct ftrace_buffer_info {
3639 struct trace_array *tr;
3640 void *spare;
3641 int cpu;
3642 unsigned int read;
3643 };
3644
3645 static int tracing_buffers_open(struct inode *inode, struct file *filp)
3646 {
3647 int cpu = (int)(long)inode->i_private;
3648 struct ftrace_buffer_info *info;
3649
3650 if (tracing_disabled)
3651 return -ENODEV;
3652
3653 info = kzalloc(sizeof(*info), GFP_KERNEL);
3654 if (!info)
3655 return -ENOMEM;
3656
3657 info->tr = &global_trace;
3658 info->cpu = cpu;
3659 info->spare = NULL;
3660 /* Force reading ring buffer for first read */
3661 info->read = (unsigned int)-1;
3662
3663 filp->private_data = info;
3664
3665 return nonseekable_open(inode, filp);
3666 }
3667
3668 static ssize_t
3669 tracing_buffers_read(struct file *filp, char __user *ubuf,
3670 size_t count, loff_t *ppos)
3671 {
3672 struct ftrace_buffer_info *info = filp->private_data;
3673 ssize_t ret;
3674 size_t size;
3675
3676 if (!count)
3677 return 0;
3678
3679 if (!info->spare)
3680 info->spare = ring_buffer_alloc_read_page(info->tr->buffer);
3681 if (!info->spare)
3682 return -ENOMEM;
3683
3684 /* Do we have previous read data to read? */
3685 if (info->read < PAGE_SIZE)
3686 goto read;
3687
3688 info->read = 0;
3689
3690 trace_access_lock(info->cpu);
3691 ret = ring_buffer_read_page(info->tr->buffer,
3692 &info->spare,
3693 count,
3694 info->cpu, 0);
3695 trace_access_unlock(info->cpu);
3696 if (ret < 0)
3697 return 0;
3698
3699 read:
3700 size = PAGE_SIZE - info->read;
3701 if (size > count)
3702 size = count;
3703
3704 ret = copy_to_user(ubuf, info->spare + info->read, size);
3705 if (ret == size)
3706 return -EFAULT;
3707 size -= ret;
3708
3709 *ppos += size;
3710 info->read += size;
3711
3712 return size;
3713 }
3714
3715 static int tracing_buffers_release(struct inode *inode, struct file *file)
3716 {
3717 struct ftrace_buffer_info *info = file->private_data;
3718
3719 if (info->spare)
3720 ring_buffer_free_read_page(info->tr->buffer, info->spare);
3721 kfree(info);
3722
3723 return 0;
3724 }
3725
3726 struct buffer_ref {
3727 struct ring_buffer *buffer;
3728 void *page;
3729 int ref;
3730 };
3731
3732 static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
3733 struct pipe_buffer *buf)
3734 {
3735 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3736
3737 if (--ref->ref)
3738 return;
3739
3740 ring_buffer_free_read_page(ref->buffer, ref->page);
3741 kfree(ref);
3742 buf->private = 0;
3743 }
3744
3745 static int buffer_pipe_buf_steal(struct pipe_inode_info *pipe,
3746 struct pipe_buffer *buf)
3747 {
3748 return 1;
3749 }
3750
3751 static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
3752 struct pipe_buffer *buf)
3753 {
3754 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3755
3756 ref->ref++;
3757 }
3758
3759 /* Pipe buffer operations for a buffer. */
3760 static const struct pipe_buf_operations buffer_pipe_buf_ops = {
3761 .can_merge = 0,
3762 .map = generic_pipe_buf_map,
3763 .unmap = generic_pipe_buf_unmap,
3764 .confirm = generic_pipe_buf_confirm,
3765 .release = buffer_pipe_buf_release,
3766 .steal = buffer_pipe_buf_steal,
3767 .get = buffer_pipe_buf_get,
3768 };
3769
3770 /*
3771 * Callback from splice_to_pipe(), if we need to release some pages
3772 * at the end of the spd in case we error'ed out in filling the pipe.
3773 */
3774 static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
3775 {
3776 struct buffer_ref *ref =
3777 (struct buffer_ref *)spd->partial[i].private;
3778
3779 if (--ref->ref)
3780 return;
3781
3782 ring_buffer_free_read_page(ref->buffer, ref->page);
3783 kfree(ref);
3784 spd->partial[i].private = 0;
3785 }
3786
3787 static ssize_t
3788 tracing_buffers_splice_read(struct file *file, loff_t *ppos,
3789 struct pipe_inode_info *pipe, size_t len,
3790 unsigned int flags)
3791 {
3792 struct ftrace_buffer_info *info = file->private_data;
3793 struct partial_page partial_def[PIPE_DEF_BUFFERS];
3794 struct page *pages_def[PIPE_DEF_BUFFERS];
3795 struct splice_pipe_desc spd = {
3796 .pages = pages_def,
3797 .partial = partial_def,
3798 .flags = flags,
3799 .ops = &buffer_pipe_buf_ops,
3800 .spd_release = buffer_spd_release,
3801 };
3802 struct buffer_ref *ref;
3803 int entries, size, i;
3804 size_t ret;
3805
3806 if (splice_grow_spd(pipe, &spd))
3807 return -ENOMEM;
3808
3809 if (*ppos & (PAGE_SIZE - 1)) {
3810 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
3811 ret = -EINVAL;
3812 goto out;
3813 }
3814
3815 if (len & (PAGE_SIZE - 1)) {
3816 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
3817 if (len < PAGE_SIZE) {
3818 ret = -EINVAL;
3819 goto out;
3820 }
3821 len &= PAGE_MASK;
3822 }
3823
3824 trace_access_lock(info->cpu);
3825 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
3826
3827 for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) {
3828 struct page *page;
3829 int r;
3830
3831 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
3832 if (!ref)
3833 break;
3834
3835 ref->ref = 1;
3836 ref->buffer = info->tr->buffer;
3837 ref->page = ring_buffer_alloc_read_page(ref->buffer);
3838 if (!ref->page) {
3839 kfree(ref);
3840 break;
3841 }
3842
3843 r = ring_buffer_read_page(ref->buffer, &ref->page,
3844 len, info->cpu, 1);
3845 if (r < 0) {
3846 ring_buffer_free_read_page(ref->buffer,
3847 ref->page);
3848 kfree(ref);
3849 break;
3850 }
3851
3852 /*
3853 * zero out any left over data, this is going to
3854 * user land.
3855 */
3856 size = ring_buffer_page_len(ref->page);
3857 if (size < PAGE_SIZE)
3858 memset(ref->page + size, 0, PAGE_SIZE - size);
3859
3860 page = virt_to_page(ref->page);
3861
3862 spd.pages[i] = page;
3863 spd.partial[i].len = PAGE_SIZE;
3864 spd.partial[i].offset = 0;
3865 spd.partial[i].private = (unsigned long)ref;
3866 spd.nr_pages++;
3867 *ppos += PAGE_SIZE;
3868
3869 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
3870 }
3871
3872 trace_access_unlock(info->cpu);
3873 spd.nr_pages = i;
3874
3875 /* did we read anything? */
3876 if (!spd.nr_pages) {
3877 if (flags & SPLICE_F_NONBLOCK)
3878 ret = -EAGAIN;
3879 else
3880 ret = 0;
3881 /* TODO: block */
3882 goto out;
3883 }
3884
3885 ret = splice_to_pipe(pipe, &spd);
3886 splice_shrink_spd(pipe, &spd);
3887 out:
3888 return ret;
3889 }
3890
3891 static const struct file_operations tracing_buffers_fops = {
3892 .open = tracing_buffers_open,
3893 .read = tracing_buffers_read,
3894 .release = tracing_buffers_release,
3895 .splice_read = tracing_buffers_splice_read,
3896 .llseek = no_llseek,
3897 };
3898
3899 static ssize_t
3900 tracing_stats_read(struct file *filp, char __user *ubuf,
3901 size_t count, loff_t *ppos)
3902 {
3903 unsigned long cpu = (unsigned long)filp->private_data;
3904 struct trace_array *tr = &global_trace;
3905 struct trace_seq *s;
3906 unsigned long cnt;
3907
3908 s = kmalloc(sizeof(*s), GFP_KERNEL);
3909 if (!s)
3910 return -ENOMEM;
3911
3912 trace_seq_init(s);
3913
3914 cnt = ring_buffer_entries_cpu(tr->buffer, cpu);
3915 trace_seq_printf(s, "entries: %ld\n", cnt);
3916
3917 cnt = ring_buffer_overrun_cpu(tr->buffer, cpu);
3918 trace_seq_printf(s, "overrun: %ld\n", cnt);
3919
3920 cnt = ring_buffer_commit_overrun_cpu(tr->buffer, cpu);
3921 trace_seq_printf(s, "commit overrun: %ld\n", cnt);
3922
3923 count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
3924
3925 kfree(s);
3926
3927 return count;
3928 }
3929
3930 static const struct file_operations tracing_stats_fops = {
3931 .open = tracing_open_generic,
3932 .read = tracing_stats_read,
3933 .llseek = generic_file_llseek,
3934 };
3935
3936 #ifdef CONFIG_DYNAMIC_FTRACE
3937
3938 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
3939 {
3940 return 0;
3941 }
3942
3943 static ssize_t
3944 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
3945 size_t cnt, loff_t *ppos)
3946 {
3947 static char ftrace_dyn_info_buffer[1024];
3948 static DEFINE_MUTEX(dyn_info_mutex);
3949 unsigned long *p = filp->private_data;
3950 char *buf = ftrace_dyn_info_buffer;
3951 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
3952 int r;
3953
3954 mutex_lock(&dyn_info_mutex);
3955 r = sprintf(buf, "%ld ", *p);
3956
3957 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
3958 buf[r++] = '\n';
3959
3960 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3961
3962 mutex_unlock(&dyn_info_mutex);
3963
3964 return r;
3965 }
3966
3967 static const struct file_operations tracing_dyn_info_fops = {
3968 .open = tracing_open_generic,
3969 .read = tracing_read_dyn_info,
3970 .llseek = generic_file_llseek,
3971 };
3972 #endif
3973
3974 static struct dentry *d_tracer;
3975
3976 struct dentry *tracing_init_dentry(void)
3977 {
3978 static int once;
3979
3980 if (d_tracer)
3981 return d_tracer;
3982
3983 if (!debugfs_initialized())
3984 return NULL;
3985
3986 d_tracer = debugfs_create_dir("tracing", NULL);
3987
3988 if (!d_tracer && !once) {
3989 once = 1;
3990 pr_warning("Could not create debugfs directory 'tracing'\n");
3991 return NULL;
3992 }
3993
3994 return d_tracer;
3995 }
3996
3997 static struct dentry *d_percpu;
3998
3999 struct dentry *tracing_dentry_percpu(void)
4000 {
4001 static int once;
4002 struct dentry *d_tracer;
4003
4004 if (d_percpu)
4005 return d_percpu;
4006
4007 d_tracer = tracing_init_dentry();
4008
4009 if (!d_tracer)
4010 return NULL;
4011
4012 d_percpu = debugfs_create_dir("per_cpu", d_tracer);
4013
4014 if (!d_percpu && !once) {
4015 once = 1;
4016 pr_warning("Could not create debugfs directory 'per_cpu'\n");
4017 return NULL;
4018 }
4019
4020 return d_percpu;
4021 }
4022
4023 static void tracing_init_debugfs_percpu(long cpu)
4024 {
4025 struct dentry *d_percpu = tracing_dentry_percpu();
4026 struct dentry *d_cpu;
4027 char cpu_dir[30]; /* 30 characters should be more than enough */
4028
4029 snprintf(cpu_dir, 30, "cpu%ld", cpu);
4030 d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
4031 if (!d_cpu) {
4032 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
4033 return;
4034 }
4035
4036 /* per cpu trace_pipe */
4037 trace_create_file("trace_pipe", 0444, d_cpu,
4038 (void *) cpu, &tracing_pipe_fops);
4039
4040 /* per cpu trace */
4041 trace_create_file("trace", 0644, d_cpu,
4042 (void *) cpu, &tracing_fops);
4043
4044 trace_create_file("trace_pipe_raw", 0444, d_cpu,
4045 (void *) cpu, &tracing_buffers_fops);
4046
4047 trace_create_file("stats", 0444, d_cpu,
4048 (void *) cpu, &tracing_stats_fops);
4049 }
4050
4051 #ifdef CONFIG_FTRACE_SELFTEST
4052 /* Let selftest have access to static functions in this file */
4053 #include "trace_selftest.c"
4054 #endif
4055
4056 struct trace_option_dentry {
4057 struct tracer_opt *opt;
4058 struct tracer_flags *flags;
4059 struct dentry *entry;
4060 };
4061
4062 static ssize_t
4063 trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
4064 loff_t *ppos)
4065 {
4066 struct trace_option_dentry *topt = filp->private_data;
4067 char *buf;
4068
4069 if (topt->flags->val & topt->opt->bit)
4070 buf = "1\n";
4071 else
4072 buf = "0\n";
4073
4074 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4075 }
4076
4077 static ssize_t
4078 trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
4079 loff_t *ppos)
4080 {
4081 struct trace_option_dentry *topt = filp->private_data;
4082 unsigned long val;
4083 char buf[64];
4084 int ret;
4085
4086 if (cnt >= sizeof(buf))
4087 return -EINVAL;
4088
4089 if (copy_from_user(&buf, ubuf, cnt))
4090 return -EFAULT;
4091
4092 buf[cnt] = 0;
4093
4094 ret = strict_strtoul(buf, 10, &val);
4095 if (ret < 0)
4096 return ret;
4097
4098 if (val != 0 && val != 1)
4099 return -EINVAL;
4100
4101 if (!!(topt->flags->val & topt->opt->bit) != val) {
4102 mutex_lock(&trace_types_lock);
4103 ret = __set_tracer_option(current_trace, topt->flags,
4104 topt->opt, !val);
4105 mutex_unlock(&trace_types_lock);
4106 if (ret)
4107 return ret;
4108 }
4109
4110 *ppos += cnt;
4111
4112 return cnt;
4113 }
4114
4115
4116 static const struct file_operations trace_options_fops = {
4117 .open = tracing_open_generic,
4118 .read = trace_options_read,
4119 .write = trace_options_write,
4120 .llseek = generic_file_llseek,
4121 };
4122
4123 static ssize_t
4124 trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
4125 loff_t *ppos)
4126 {
4127 long index = (long)filp->private_data;
4128 char *buf;
4129
4130 if (trace_flags & (1 << index))
4131 buf = "1\n";
4132 else
4133 buf = "0\n";
4134
4135 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4136 }
4137
4138 static ssize_t
4139 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
4140 loff_t *ppos)
4141 {
4142 long index = (long)filp->private_data;
4143 char buf[64];
4144 unsigned long val;
4145 int ret;
4146
4147 if (cnt >= sizeof(buf))
4148 return -EINVAL;
4149
4150 if (copy_from_user(&buf, ubuf, cnt))
4151 return -EFAULT;
4152
4153 buf[cnt] = 0;
4154
4155 ret = strict_strtoul(buf, 10, &val);
4156 if (ret < 0)
4157 return ret;
4158
4159 if (val != 0 && val != 1)
4160 return -EINVAL;
4161 set_tracer_flags(1 << index, val);
4162
4163 *ppos += cnt;
4164
4165 return cnt;
4166 }
4167
4168 static const struct file_operations trace_options_core_fops = {
4169 .open = tracing_open_generic,
4170 .read = trace_options_core_read,
4171 .write = trace_options_core_write,
4172 .llseek = generic_file_llseek,
4173 };
4174
4175 struct dentry *trace_create_file(const char *name,
4176 mode_t mode,
4177 struct dentry *parent,
4178 void *data,
4179 const struct file_operations *fops)
4180 {
4181 struct dentry *ret;
4182
4183 ret = debugfs_create_file(name, mode, parent, data, fops);
4184 if (!ret)
4185 pr_warning("Could not create debugfs '%s' entry\n", name);
4186
4187 return ret;
4188 }
4189
4190
4191 static struct dentry *trace_options_init_dentry(void)
4192 {
4193 struct dentry *d_tracer;
4194 static struct dentry *t_options;
4195
4196 if (t_options)
4197 return t_options;
4198
4199 d_tracer = tracing_init_dentry();
4200 if (!d_tracer)
4201 return NULL;
4202
4203 t_options = debugfs_create_dir("options", d_tracer);
4204 if (!t_options) {
4205 pr_warning("Could not create debugfs directory 'options'\n");
4206 return NULL;
4207 }
4208
4209 return t_options;
4210 }
4211
4212 static void
4213 create_trace_option_file(struct trace_option_dentry *topt,
4214 struct tracer_flags *flags,
4215 struct tracer_opt *opt)
4216 {
4217 struct dentry *t_options;
4218
4219 t_options = trace_options_init_dentry();
4220 if (!t_options)
4221 return;
4222
4223 topt->flags = flags;
4224 topt->opt = opt;
4225
4226 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
4227 &trace_options_fops);
4228
4229 }
4230
4231 static struct trace_option_dentry *
4232 create_trace_option_files(struct tracer *tracer)
4233 {
4234 struct trace_option_dentry *topts;
4235 struct tracer_flags *flags;
4236 struct tracer_opt *opts;
4237 int cnt;
4238
4239 if (!tracer)
4240 return NULL;
4241
4242 flags = tracer->flags;
4243
4244 if (!flags || !flags->opts)
4245 return NULL;
4246
4247 opts = flags->opts;
4248
4249 for (cnt = 0; opts[cnt].name; cnt++)
4250 ;
4251
4252 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
4253 if (!topts)
4254 return NULL;
4255
4256 for (cnt = 0; opts[cnt].name; cnt++)
4257 create_trace_option_file(&topts[cnt], flags,
4258 &opts[cnt]);
4259
4260 return topts;
4261 }
4262
4263 static void
4264 destroy_trace_option_files(struct trace_option_dentry *topts)
4265 {
4266 int cnt;
4267
4268 if (!topts)
4269 return;
4270
4271 for (cnt = 0; topts[cnt].opt; cnt++) {
4272 if (topts[cnt].entry)
4273 debugfs_remove(topts[cnt].entry);
4274 }
4275
4276 kfree(topts);
4277 }
4278
4279 static struct dentry *
4280 create_trace_option_core_file(const char *option, long index)
4281 {
4282 struct dentry *t_options;
4283
4284 t_options = trace_options_init_dentry();
4285 if (!t_options)
4286 return NULL;
4287
4288 return trace_create_file(option, 0644, t_options, (void *)index,
4289 &trace_options_core_fops);
4290 }
4291
4292 static __init void create_trace_options_dir(void)
4293 {
4294 struct dentry *t_options;
4295 int i;
4296
4297 t_options = trace_options_init_dentry();
4298 if (!t_options)
4299 return;
4300
4301 for (i = 0; trace_options[i]; i++)
4302 create_trace_option_core_file(trace_options[i], i);
4303 }
4304
4305 static __init int tracer_init_debugfs(void)
4306 {
4307 struct dentry *d_tracer;
4308 int cpu;
4309
4310 trace_access_lock_init();
4311
4312 d_tracer = tracing_init_dentry();
4313
4314 trace_create_file("tracing_enabled", 0644, d_tracer,
4315 &global_trace, &tracing_ctrl_fops);
4316
4317 trace_create_file("trace_options", 0644, d_tracer,
4318 NULL, &tracing_iter_fops);
4319
4320 trace_create_file("tracing_cpumask", 0644, d_tracer,
4321 NULL, &tracing_cpumask_fops);
4322
4323 trace_create_file("trace", 0644, d_tracer,
4324 (void *) TRACE_PIPE_ALL_CPU, &tracing_fops);
4325
4326 trace_create_file("available_tracers", 0444, d_tracer,
4327 &global_trace, &show_traces_fops);
4328
4329 trace_create_file("current_tracer", 0644, d_tracer,
4330 &global_trace, &set_tracer_fops);
4331
4332 #ifdef CONFIG_TRACER_MAX_TRACE
4333 trace_create_file("tracing_max_latency", 0644, d_tracer,
4334 &tracing_max_latency, &tracing_max_lat_fops);
4335 #endif
4336
4337 trace_create_file("tracing_thresh", 0644, d_tracer,
4338 &tracing_thresh, &tracing_max_lat_fops);
4339
4340 trace_create_file("README", 0444, d_tracer,
4341 NULL, &tracing_readme_fops);
4342
4343 trace_create_file("trace_pipe", 0444, d_tracer,
4344 (void *) TRACE_PIPE_ALL_CPU, &tracing_pipe_fops);
4345
4346 trace_create_file("buffer_size_kb", 0644, d_tracer,
4347 &global_trace, &tracing_entries_fops);
4348
4349 trace_create_file("trace_marker", 0220, d_tracer,
4350 NULL, &tracing_mark_fops);
4351
4352 trace_create_file("saved_cmdlines", 0444, d_tracer,
4353 NULL, &tracing_saved_cmdlines_fops);
4354
4355 trace_create_file("trace_clock", 0644, d_tracer, NULL,
4356 &trace_clock_fops);
4357
4358 #ifdef CONFIG_DYNAMIC_FTRACE
4359 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
4360 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
4361 #endif
4362
4363 create_trace_options_dir();
4364
4365 for_each_tracing_cpu(cpu)
4366 tracing_init_debugfs_percpu(cpu);
4367
4368 return 0;
4369 }
4370
4371 static int trace_panic_handler(struct notifier_block *this,
4372 unsigned long event, void *unused)
4373 {
4374 if (ftrace_dump_on_oops)
4375 ftrace_dump(ftrace_dump_on_oops);
4376 return NOTIFY_OK;
4377 }
4378
4379 static struct notifier_block trace_panic_notifier = {
4380 .notifier_call = trace_panic_handler,
4381 .next = NULL,
4382 .priority = 150 /* priority: INT_MAX >= x >= 0 */
4383 };
4384
4385 static int trace_die_handler(struct notifier_block *self,
4386 unsigned long val,
4387 void *data)
4388 {
4389 switch (val) {
4390 case DIE_OOPS:
4391 if (ftrace_dump_on_oops)
4392 ftrace_dump(ftrace_dump_on_oops);
4393 break;
4394 default:
4395 break;
4396 }
4397 return NOTIFY_OK;
4398 }
4399
4400 static struct notifier_block trace_die_notifier = {
4401 .notifier_call = trace_die_handler,
4402 .priority = 200
4403 };
4404
4405 /*
4406 * printk is set to max of 1024, we really don't need it that big.
4407 * Nothing should be printing 1000 characters anyway.
4408 */
4409 #define TRACE_MAX_PRINT 1000
4410
4411 /*
4412 * Define here KERN_TRACE so that we have one place to modify
4413 * it if we decide to change what log level the ftrace dump
4414 * should be at.
4415 */
4416 #define KERN_TRACE KERN_EMERG
4417
4418 void
4419 trace_printk_seq(struct trace_seq *s)
4420 {
4421 /* Probably should print a warning here. */
4422 if (s->len >= 1000)
4423 s->len = 1000;
4424
4425 /* should be zero ended, but we are paranoid. */
4426 s->buffer[s->len] = 0;
4427
4428 printk(KERN_TRACE "%s", s->buffer);
4429
4430 trace_seq_init(s);
4431 }
4432
4433 void trace_init_global_iter(struct trace_iterator *iter)
4434 {
4435 iter->tr = &global_trace;
4436 iter->trace = current_trace;
4437 iter->cpu_file = TRACE_PIPE_ALL_CPU;
4438 }
4439
4440 static void
4441 __ftrace_dump(bool disable_tracing, enum ftrace_dump_mode oops_dump_mode)
4442 {
4443 static arch_spinlock_t ftrace_dump_lock =
4444 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
4445 /* use static because iter can be a bit big for the stack */
4446 static struct trace_iterator iter;
4447 unsigned int old_userobj;
4448 static int dump_ran;
4449 unsigned long flags;
4450 int cnt = 0, cpu;
4451
4452 /* only one dump */
4453 local_irq_save(flags);
4454 arch_spin_lock(&ftrace_dump_lock);
4455 if (dump_ran)
4456 goto out;
4457
4458 dump_ran = 1;
4459
4460 tracing_off();
4461
4462 if (disable_tracing)
4463 ftrace_kill();
4464
4465 trace_init_global_iter(&iter);
4466
4467 for_each_tracing_cpu(cpu) {
4468 atomic_inc(&iter.tr->data[cpu]->disabled);
4469 }
4470
4471 old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
4472
4473 /* don't look at user memory in panic mode */
4474 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
4475
4476 /* Simulate the iterator */
4477 iter.tr = &global_trace;
4478 iter.trace = current_trace;
4479
4480 switch (oops_dump_mode) {
4481 case DUMP_ALL:
4482 iter.cpu_file = TRACE_PIPE_ALL_CPU;
4483 break;
4484 case DUMP_ORIG:
4485 iter.cpu_file = raw_smp_processor_id();
4486 break;
4487 case DUMP_NONE:
4488 goto out_enable;
4489 default:
4490 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
4491 iter.cpu_file = TRACE_PIPE_ALL_CPU;
4492 }
4493
4494 printk(KERN_TRACE "Dumping ftrace buffer:\n");
4495
4496 /*
4497 * We need to stop all tracing on all CPUS to read the
4498 * the next buffer. This is a bit expensive, but is
4499 * not done often. We fill all what we can read,
4500 * and then release the locks again.
4501 */
4502
4503 while (!trace_empty(&iter)) {
4504
4505 if (!cnt)
4506 printk(KERN_TRACE "---------------------------------\n");
4507
4508 cnt++;
4509
4510 /* reset all but tr, trace, and overruns */
4511 memset(&iter.seq, 0,
4512 sizeof(struct trace_iterator) -
4513 offsetof(struct trace_iterator, seq));
4514 iter.iter_flags |= TRACE_FILE_LAT_FMT;
4515 iter.pos = -1;
4516
4517 if (trace_find_next_entry_inc(&iter) != NULL) {
4518 int ret;
4519
4520 ret = print_trace_line(&iter);
4521 if (ret != TRACE_TYPE_NO_CONSUME)
4522 trace_consume(&iter);
4523 }
4524
4525 trace_printk_seq(&iter.seq);
4526 }
4527
4528 if (!cnt)
4529 printk(KERN_TRACE " (ftrace buffer empty)\n");
4530 else
4531 printk(KERN_TRACE "---------------------------------\n");
4532
4533 out_enable:
4534 /* Re-enable tracing if requested */
4535 if (!disable_tracing) {
4536 trace_flags |= old_userobj;
4537
4538 for_each_tracing_cpu(cpu) {
4539 atomic_dec(&iter.tr->data[cpu]->disabled);
4540 }
4541 tracing_on();
4542 }
4543
4544 out:
4545 arch_spin_unlock(&ftrace_dump_lock);
4546 local_irq_restore(flags);
4547 }
4548
4549 /* By default: disable tracing after the dump */
4550 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
4551 {
4552 __ftrace_dump(true, oops_dump_mode);
4553 }
4554
4555 __init static int tracer_alloc_buffers(void)
4556 {
4557 int ring_buf_size;
4558 enum ring_buffer_flags rb_flags;
4559 int i;
4560 int ret = -ENOMEM;
4561
4562
4563 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
4564 goto out;
4565
4566 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
4567 goto out_free_buffer_mask;
4568
4569 /* To save memory, keep the ring buffer size to its minimum */
4570 if (ring_buffer_expanded)
4571 ring_buf_size = trace_buf_size;
4572 else
4573 ring_buf_size = 1;
4574
4575 rb_flags = trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
4576
4577 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
4578 cpumask_copy(tracing_cpumask, cpu_all_mask);
4579
4580 /* TODO: make the number of buffers hot pluggable with CPUS */
4581 global_trace.buffer = ring_buffer_alloc(ring_buf_size, rb_flags);
4582 if (!global_trace.buffer) {
4583 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
4584 WARN_ON(1);
4585 goto out_free_cpumask;
4586 }
4587 global_trace.entries = ring_buffer_size(global_trace.buffer);
4588
4589
4590 #ifdef CONFIG_TRACER_MAX_TRACE
4591 max_tr.buffer = ring_buffer_alloc(1, rb_flags);
4592 if (!max_tr.buffer) {
4593 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
4594 WARN_ON(1);
4595 ring_buffer_free(global_trace.buffer);
4596 goto out_free_cpumask;
4597 }
4598 max_tr.entries = 1;
4599 #endif
4600
4601 /* Allocate the first page for all buffers */
4602 for_each_tracing_cpu(i) {
4603 global_trace.data[i] = &per_cpu(global_trace_cpu, i);
4604 max_tr.data[i] = &per_cpu(max_tr_data, i);
4605 }
4606
4607 trace_init_cmdlines();
4608
4609 register_tracer(&nop_trace);
4610 current_trace = &nop_trace;
4611 /* All seems OK, enable tracing */
4612 tracing_disabled = 0;
4613
4614 atomic_notifier_chain_register(&panic_notifier_list,
4615 &trace_panic_notifier);
4616
4617 register_die_notifier(&trace_die_notifier);
4618
4619 return 0;
4620
4621 out_free_cpumask:
4622 free_cpumask_var(tracing_cpumask);
4623 out_free_buffer_mask:
4624 free_cpumask_var(tracing_buffer_mask);
4625 out:
4626 return ret;
4627 }
4628
4629 __init static int clear_boot_tracer(void)
4630 {
4631 /*
4632 * The default tracer at boot buffer is an init section.
4633 * This function is called in lateinit. If we did not
4634 * find the boot tracer, then clear it out, to prevent
4635 * later registration from accessing the buffer that is
4636 * about to be freed.
4637 */
4638 if (!default_bootup_tracer)
4639 return 0;
4640
4641 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
4642 default_bootup_tracer);
4643 default_bootup_tracer = NULL;
4644
4645 return 0;
4646 }
4647
4648 early_initcall(tracer_alloc_buffers);
4649 fs_initcall(tracer_init_debugfs);
4650 late_initcall(clear_boot_tracer);
This page took 0.119559 seconds and 4 git commands to generate.