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