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