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