tracing: Add a method to pass in trace_array descriptor to option files
[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/tracefs.h>
24 #include <linux/pagemap.h>
25 #include <linux/hardirq.h>
26 #include <linux/linkage.h>
27 #include <linux/uaccess.h>
28 #include <linux/kprobes.h>
29 #include <linux/ftrace.h>
30 #include <linux/module.h>
31 #include <linux/percpu.h>
32 #include <linux/splice.h>
33 #include <linux/kdebug.h>
34 #include <linux/string.h>
35 #include <linux/mount.h>
36 #include <linux/rwsem.h>
37 #include <linux/slab.h>
38 #include <linux/ctype.h>
39 #include <linux/init.h>
40 #include <linux/poll.h>
41 #include <linux/nmi.h>
42 #include <linux/fs.h>
43 #include <linux/sched/rt.h>
44
45 #include "trace.h"
46 #include "trace_output.h"
47
48 /*
49 * On boot up, the ring buffer is set to the minimum size, so that
50 * we do not waste memory on systems that are not using tracing.
51 */
52 bool ring_buffer_expanded;
53
54 /*
55 * We need to change this state when a selftest is running.
56 * A selftest will lurk into the ring-buffer to count the
57 * entries inserted during the selftest although some concurrent
58 * insertions into the ring-buffer such as trace_printk could occurred
59 * at the same time, giving false positive or negative results.
60 */
61 static bool __read_mostly tracing_selftest_running;
62
63 /*
64 * If a tracer is running, we do not want to run SELFTEST.
65 */
66 bool __read_mostly tracing_selftest_disabled;
67
68 /* Pipe tracepoints to printk */
69 struct trace_iterator *tracepoint_print_iter;
70 int tracepoint_printk;
71
72 /* For tracers that don't implement custom flags */
73 static struct tracer_opt dummy_tracer_opt[] = {
74 { }
75 };
76
77 static struct tracer_flags dummy_tracer_flags = {
78 .val = 0,
79 .opts = dummy_tracer_opt
80 };
81
82 static int
83 dummy_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set)
84 {
85 return 0;
86 }
87
88 /*
89 * To prevent the comm cache from being overwritten when no
90 * tracing is active, only save the comm when a trace event
91 * occurred.
92 */
93 static DEFINE_PER_CPU(bool, trace_cmdline_save);
94
95 /*
96 * Kill all tracing for good (never come back).
97 * It is initialized to 1 but will turn to zero if the initialization
98 * of the tracer is successful. But that is the only place that sets
99 * this back to zero.
100 */
101 static int tracing_disabled = 1;
102
103 DEFINE_PER_CPU(int, ftrace_cpu_disabled);
104
105 cpumask_var_t __read_mostly tracing_buffer_mask;
106
107 /*
108 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
109 *
110 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
111 * is set, then ftrace_dump is called. This will output the contents
112 * of the ftrace buffers to the console. This is very useful for
113 * capturing traces that lead to crashes and outputing it to a
114 * serial console.
115 *
116 * It is default off, but you can enable it with either specifying
117 * "ftrace_dump_on_oops" in the kernel command line, or setting
118 * /proc/sys/kernel/ftrace_dump_on_oops
119 * Set 1 if you want to dump buffers of all CPUs
120 * Set 2 if you want to dump the buffer of the CPU that triggered oops
121 */
122
123 enum ftrace_dump_mode ftrace_dump_on_oops;
124
125 /* When set, tracing will stop when a WARN*() is hit */
126 int __disable_trace_on_warning;
127
128 #ifdef CONFIG_TRACE_ENUM_MAP_FILE
129 /* Map of enums to their values, for "enum_map" file */
130 struct trace_enum_map_head {
131 struct module *mod;
132 unsigned long length;
133 };
134
135 union trace_enum_map_item;
136
137 struct trace_enum_map_tail {
138 /*
139 * "end" is first and points to NULL as it must be different
140 * than "mod" or "enum_string"
141 */
142 union trace_enum_map_item *next;
143 const char *end; /* points to NULL */
144 };
145
146 static DEFINE_MUTEX(trace_enum_mutex);
147
148 /*
149 * The trace_enum_maps are saved in an array with two extra elements,
150 * one at the beginning, and one at the end. The beginning item contains
151 * the count of the saved maps (head.length), and the module they
152 * belong to if not built in (head.mod). The ending item contains a
153 * pointer to the next array of saved enum_map items.
154 */
155 union trace_enum_map_item {
156 struct trace_enum_map map;
157 struct trace_enum_map_head head;
158 struct trace_enum_map_tail tail;
159 };
160
161 static union trace_enum_map_item *trace_enum_maps;
162 #endif /* CONFIG_TRACE_ENUM_MAP_FILE */
163
164 static int tracing_set_tracer(struct trace_array *tr, const char *buf);
165
166 #define MAX_TRACER_SIZE 100
167 static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
168 static char *default_bootup_tracer;
169
170 static bool allocate_snapshot;
171
172 static int __init set_cmdline_ftrace(char *str)
173 {
174 strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
175 default_bootup_tracer = bootup_tracer_buf;
176 /* We are using ftrace early, expand it */
177 ring_buffer_expanded = true;
178 return 1;
179 }
180 __setup("ftrace=", set_cmdline_ftrace);
181
182 static int __init set_ftrace_dump_on_oops(char *str)
183 {
184 if (*str++ != '=' || !*str) {
185 ftrace_dump_on_oops = DUMP_ALL;
186 return 1;
187 }
188
189 if (!strcmp("orig_cpu", str)) {
190 ftrace_dump_on_oops = DUMP_ORIG;
191 return 1;
192 }
193
194 return 0;
195 }
196 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
197
198 static int __init stop_trace_on_warning(char *str)
199 {
200 if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0))
201 __disable_trace_on_warning = 1;
202 return 1;
203 }
204 __setup("traceoff_on_warning", stop_trace_on_warning);
205
206 static int __init boot_alloc_snapshot(char *str)
207 {
208 allocate_snapshot = true;
209 /* We also need the main ring buffer expanded */
210 ring_buffer_expanded = true;
211 return 1;
212 }
213 __setup("alloc_snapshot", boot_alloc_snapshot);
214
215
216 static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata;
217 static char *trace_boot_options __initdata;
218
219 static int __init set_trace_boot_options(char *str)
220 {
221 strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
222 trace_boot_options = trace_boot_options_buf;
223 return 0;
224 }
225 __setup("trace_options=", set_trace_boot_options);
226
227 static char trace_boot_clock_buf[MAX_TRACER_SIZE] __initdata;
228 static char *trace_boot_clock __initdata;
229
230 static int __init set_trace_boot_clock(char *str)
231 {
232 strlcpy(trace_boot_clock_buf, str, MAX_TRACER_SIZE);
233 trace_boot_clock = trace_boot_clock_buf;
234 return 0;
235 }
236 __setup("trace_clock=", set_trace_boot_clock);
237
238 static int __init set_tracepoint_printk(char *str)
239 {
240 if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0))
241 tracepoint_printk = 1;
242 return 1;
243 }
244 __setup("tp_printk", set_tracepoint_printk);
245
246 unsigned long long ns2usecs(cycle_t nsec)
247 {
248 nsec += 500;
249 do_div(nsec, 1000);
250 return nsec;
251 }
252
253 /* trace_flags holds trace_options default values */
254 #define TRACE_DEFAULT_FLAGS \
255 (FUNCTION_DEFAULT_FLAGS | \
256 TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK | \
257 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | \
258 TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE | \
259 TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS)
260
261 /*
262 * The global_trace is the descriptor that holds the tracing
263 * buffers for the live tracing. For each CPU, it contains
264 * a link list of pages that will store trace entries. The
265 * page descriptor of the pages in the memory is used to hold
266 * the link list by linking the lru item in the page descriptor
267 * to each of the pages in the buffer per CPU.
268 *
269 * For each active CPU there is a data field that holds the
270 * pages for the buffer for that CPU. Each CPU has the same number
271 * of pages allocated for its buffer.
272 */
273 static struct trace_array global_trace = {
274 .trace_flags = TRACE_DEFAULT_FLAGS,
275 };
276
277 LIST_HEAD(ftrace_trace_arrays);
278
279 int trace_array_get(struct trace_array *this_tr)
280 {
281 struct trace_array *tr;
282 int ret = -ENODEV;
283
284 mutex_lock(&trace_types_lock);
285 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
286 if (tr == this_tr) {
287 tr->ref++;
288 ret = 0;
289 break;
290 }
291 }
292 mutex_unlock(&trace_types_lock);
293
294 return ret;
295 }
296
297 static void __trace_array_put(struct trace_array *this_tr)
298 {
299 WARN_ON(!this_tr->ref);
300 this_tr->ref--;
301 }
302
303 void trace_array_put(struct trace_array *this_tr)
304 {
305 mutex_lock(&trace_types_lock);
306 __trace_array_put(this_tr);
307 mutex_unlock(&trace_types_lock);
308 }
309
310 int filter_check_discard(struct trace_event_file *file, void *rec,
311 struct ring_buffer *buffer,
312 struct ring_buffer_event *event)
313 {
314 if (unlikely(file->flags & EVENT_FILE_FL_FILTERED) &&
315 !filter_match_preds(file->filter, rec)) {
316 ring_buffer_discard_commit(buffer, event);
317 return 1;
318 }
319
320 return 0;
321 }
322 EXPORT_SYMBOL_GPL(filter_check_discard);
323
324 int call_filter_check_discard(struct trace_event_call *call, void *rec,
325 struct ring_buffer *buffer,
326 struct ring_buffer_event *event)
327 {
328 if (unlikely(call->flags & TRACE_EVENT_FL_FILTERED) &&
329 !filter_match_preds(call->filter, rec)) {
330 ring_buffer_discard_commit(buffer, event);
331 return 1;
332 }
333
334 return 0;
335 }
336 EXPORT_SYMBOL_GPL(call_filter_check_discard);
337
338 static cycle_t buffer_ftrace_now(struct trace_buffer *buf, int cpu)
339 {
340 u64 ts;
341
342 /* Early boot up does not have a buffer yet */
343 if (!buf->buffer)
344 return trace_clock_local();
345
346 ts = ring_buffer_time_stamp(buf->buffer, cpu);
347 ring_buffer_normalize_time_stamp(buf->buffer, cpu, &ts);
348
349 return ts;
350 }
351
352 cycle_t ftrace_now(int cpu)
353 {
354 return buffer_ftrace_now(&global_trace.trace_buffer, cpu);
355 }
356
357 /**
358 * tracing_is_enabled - Show if global_trace has been disabled
359 *
360 * Shows if the global trace has been enabled or not. It uses the
361 * mirror flag "buffer_disabled" to be used in fast paths such as for
362 * the irqsoff tracer. But it may be inaccurate due to races. If you
363 * need to know the accurate state, use tracing_is_on() which is a little
364 * slower, but accurate.
365 */
366 int tracing_is_enabled(void)
367 {
368 /*
369 * For quick access (irqsoff uses this in fast path), just
370 * return the mirror variable of the state of the ring buffer.
371 * It's a little racy, but we don't really care.
372 */
373 smp_rmb();
374 return !global_trace.buffer_disabled;
375 }
376
377 /*
378 * trace_buf_size is the size in bytes that is allocated
379 * for a buffer. Note, the number of bytes is always rounded
380 * to page size.
381 *
382 * This number is purposely set to a low number of 16384.
383 * If the dump on oops happens, it will be much appreciated
384 * to not have to wait for all that output. Anyway this can be
385 * boot time and run time configurable.
386 */
387 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
388
389 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
390
391 /* trace_types holds a link list of available tracers. */
392 static struct tracer *trace_types __read_mostly;
393
394 /*
395 * trace_types_lock is used to protect the trace_types list.
396 */
397 DEFINE_MUTEX(trace_types_lock);
398
399 /*
400 * serialize the access of the ring buffer
401 *
402 * ring buffer serializes readers, but it is low level protection.
403 * The validity of the events (which returns by ring_buffer_peek() ..etc)
404 * are not protected by ring buffer.
405 *
406 * The content of events may become garbage if we allow other process consumes
407 * these events concurrently:
408 * A) the page of the consumed events may become a normal page
409 * (not reader page) in ring buffer, and this page will be rewrited
410 * by events producer.
411 * B) The page of the consumed events may become a page for splice_read,
412 * and this page will be returned to system.
413 *
414 * These primitives allow multi process access to different cpu ring buffer
415 * concurrently.
416 *
417 * These primitives don't distinguish read-only and read-consume access.
418 * Multi read-only access are also serialized.
419 */
420
421 #ifdef CONFIG_SMP
422 static DECLARE_RWSEM(all_cpu_access_lock);
423 static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
424
425 static inline void trace_access_lock(int cpu)
426 {
427 if (cpu == RING_BUFFER_ALL_CPUS) {
428 /* gain it for accessing the whole ring buffer. */
429 down_write(&all_cpu_access_lock);
430 } else {
431 /* gain it for accessing a cpu ring buffer. */
432
433 /* Firstly block other trace_access_lock(RING_BUFFER_ALL_CPUS). */
434 down_read(&all_cpu_access_lock);
435
436 /* Secondly block other access to this @cpu ring buffer. */
437 mutex_lock(&per_cpu(cpu_access_lock, cpu));
438 }
439 }
440
441 static inline void trace_access_unlock(int cpu)
442 {
443 if (cpu == RING_BUFFER_ALL_CPUS) {
444 up_write(&all_cpu_access_lock);
445 } else {
446 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
447 up_read(&all_cpu_access_lock);
448 }
449 }
450
451 static inline void trace_access_lock_init(void)
452 {
453 int cpu;
454
455 for_each_possible_cpu(cpu)
456 mutex_init(&per_cpu(cpu_access_lock, cpu));
457 }
458
459 #else
460
461 static DEFINE_MUTEX(access_lock);
462
463 static inline void trace_access_lock(int cpu)
464 {
465 (void)cpu;
466 mutex_lock(&access_lock);
467 }
468
469 static inline void trace_access_unlock(int cpu)
470 {
471 (void)cpu;
472 mutex_unlock(&access_lock);
473 }
474
475 static inline void trace_access_lock_init(void)
476 {
477 }
478
479 #endif
480
481 #ifdef CONFIG_STACKTRACE
482 static void __ftrace_trace_stack(struct ring_buffer *buffer,
483 unsigned long flags,
484 int skip, int pc, struct pt_regs *regs);
485 static inline void ftrace_trace_stack(struct ring_buffer *buffer,
486 unsigned long flags,
487 int skip, int pc, struct pt_regs *regs);
488
489 #else
490 static inline void __ftrace_trace_stack(struct ring_buffer *buffer,
491 unsigned long flags,
492 int skip, int pc, struct pt_regs *regs)
493 {
494 }
495 static inline void ftrace_trace_stack(struct ring_buffer *buffer,
496 unsigned long flags,
497 int skip, int pc, struct pt_regs *regs)
498 {
499 }
500
501 #endif
502
503 static void tracer_tracing_on(struct trace_array *tr)
504 {
505 if (tr->trace_buffer.buffer)
506 ring_buffer_record_on(tr->trace_buffer.buffer);
507 /*
508 * This flag is looked at when buffers haven't been allocated
509 * yet, or by some tracers (like irqsoff), that just want to
510 * know if the ring buffer has been disabled, but it can handle
511 * races of where it gets disabled but we still do a record.
512 * As the check is in the fast path of the tracers, it is more
513 * important to be fast than accurate.
514 */
515 tr->buffer_disabled = 0;
516 /* Make the flag seen by readers */
517 smp_wmb();
518 }
519
520 /**
521 * tracing_on - enable tracing buffers
522 *
523 * This function enables tracing buffers that may have been
524 * disabled with tracing_off.
525 */
526 void tracing_on(void)
527 {
528 tracer_tracing_on(&global_trace);
529 }
530 EXPORT_SYMBOL_GPL(tracing_on);
531
532 /**
533 * __trace_puts - write a constant string into the trace buffer.
534 * @ip: The address of the caller
535 * @str: The constant string to write
536 * @size: The size of the string.
537 */
538 int __trace_puts(unsigned long ip, const char *str, int size)
539 {
540 struct ring_buffer_event *event;
541 struct ring_buffer *buffer;
542 struct print_entry *entry;
543 unsigned long irq_flags;
544 int alloc;
545 int pc;
546
547 if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
548 return 0;
549
550 pc = preempt_count();
551
552 if (unlikely(tracing_selftest_running || tracing_disabled))
553 return 0;
554
555 alloc = sizeof(*entry) + size + 2; /* possible \n added */
556
557 local_save_flags(irq_flags);
558 buffer = global_trace.trace_buffer.buffer;
559 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, alloc,
560 irq_flags, pc);
561 if (!event)
562 return 0;
563
564 entry = ring_buffer_event_data(event);
565 entry->ip = ip;
566
567 memcpy(&entry->buf, str, size);
568
569 /* Add a newline if necessary */
570 if (entry->buf[size - 1] != '\n') {
571 entry->buf[size] = '\n';
572 entry->buf[size + 1] = '\0';
573 } else
574 entry->buf[size] = '\0';
575
576 __buffer_unlock_commit(buffer, event);
577 ftrace_trace_stack(buffer, irq_flags, 4, pc, NULL);
578
579 return size;
580 }
581 EXPORT_SYMBOL_GPL(__trace_puts);
582
583 /**
584 * __trace_bputs - write the pointer to a constant string into trace buffer
585 * @ip: The address of the caller
586 * @str: The constant string to write to the buffer to
587 */
588 int __trace_bputs(unsigned long ip, const char *str)
589 {
590 struct ring_buffer_event *event;
591 struct ring_buffer *buffer;
592 struct bputs_entry *entry;
593 unsigned long irq_flags;
594 int size = sizeof(struct bputs_entry);
595 int pc;
596
597 if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
598 return 0;
599
600 pc = preempt_count();
601
602 if (unlikely(tracing_selftest_running || tracing_disabled))
603 return 0;
604
605 local_save_flags(irq_flags);
606 buffer = global_trace.trace_buffer.buffer;
607 event = trace_buffer_lock_reserve(buffer, TRACE_BPUTS, size,
608 irq_flags, pc);
609 if (!event)
610 return 0;
611
612 entry = ring_buffer_event_data(event);
613 entry->ip = ip;
614 entry->str = str;
615
616 __buffer_unlock_commit(buffer, event);
617 ftrace_trace_stack(buffer, irq_flags, 4, pc, NULL);
618
619 return 1;
620 }
621 EXPORT_SYMBOL_GPL(__trace_bputs);
622
623 #ifdef CONFIG_TRACER_SNAPSHOT
624 /**
625 * trace_snapshot - take a snapshot of the current buffer.
626 *
627 * This causes a swap between the snapshot buffer and the current live
628 * tracing buffer. You can use this to take snapshots of the live
629 * trace when some condition is triggered, but continue to trace.
630 *
631 * Note, make sure to allocate the snapshot with either
632 * a tracing_snapshot_alloc(), or by doing it manually
633 * with: echo 1 > /sys/kernel/debug/tracing/snapshot
634 *
635 * If the snapshot buffer is not allocated, it will stop tracing.
636 * Basically making a permanent snapshot.
637 */
638 void tracing_snapshot(void)
639 {
640 struct trace_array *tr = &global_trace;
641 struct tracer *tracer = tr->current_trace;
642 unsigned long flags;
643
644 if (in_nmi()) {
645 internal_trace_puts("*** SNAPSHOT CALLED FROM NMI CONTEXT ***\n");
646 internal_trace_puts("*** snapshot is being ignored ***\n");
647 return;
648 }
649
650 if (!tr->allocated_snapshot) {
651 internal_trace_puts("*** SNAPSHOT NOT ALLOCATED ***\n");
652 internal_trace_puts("*** stopping trace here! ***\n");
653 tracing_off();
654 return;
655 }
656
657 /* Note, snapshot can not be used when the tracer uses it */
658 if (tracer->use_max_tr) {
659 internal_trace_puts("*** LATENCY TRACER ACTIVE ***\n");
660 internal_trace_puts("*** Can not use snapshot (sorry) ***\n");
661 return;
662 }
663
664 local_irq_save(flags);
665 update_max_tr(tr, current, smp_processor_id());
666 local_irq_restore(flags);
667 }
668 EXPORT_SYMBOL_GPL(tracing_snapshot);
669
670 static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf,
671 struct trace_buffer *size_buf, int cpu_id);
672 static void set_buffer_entries(struct trace_buffer *buf, unsigned long val);
673
674 static int alloc_snapshot(struct trace_array *tr)
675 {
676 int ret;
677
678 if (!tr->allocated_snapshot) {
679
680 /* allocate spare buffer */
681 ret = resize_buffer_duplicate_size(&tr->max_buffer,
682 &tr->trace_buffer, RING_BUFFER_ALL_CPUS);
683 if (ret < 0)
684 return ret;
685
686 tr->allocated_snapshot = true;
687 }
688
689 return 0;
690 }
691
692 static void free_snapshot(struct trace_array *tr)
693 {
694 /*
695 * We don't free the ring buffer. instead, resize it because
696 * The max_tr ring buffer has some state (e.g. ring->clock) and
697 * we want preserve it.
698 */
699 ring_buffer_resize(tr->max_buffer.buffer, 1, RING_BUFFER_ALL_CPUS);
700 set_buffer_entries(&tr->max_buffer, 1);
701 tracing_reset_online_cpus(&tr->max_buffer);
702 tr->allocated_snapshot = false;
703 }
704
705 /**
706 * tracing_alloc_snapshot - allocate snapshot buffer.
707 *
708 * This only allocates the snapshot buffer if it isn't already
709 * allocated - it doesn't also take a snapshot.
710 *
711 * This is meant to be used in cases where the snapshot buffer needs
712 * to be set up for events that can't sleep but need to be able to
713 * trigger a snapshot.
714 */
715 int tracing_alloc_snapshot(void)
716 {
717 struct trace_array *tr = &global_trace;
718 int ret;
719
720 ret = alloc_snapshot(tr);
721 WARN_ON(ret < 0);
722
723 return ret;
724 }
725 EXPORT_SYMBOL_GPL(tracing_alloc_snapshot);
726
727 /**
728 * trace_snapshot_alloc - allocate and take a snapshot of the current buffer.
729 *
730 * This is similar to trace_snapshot(), but it will allocate the
731 * snapshot buffer if it isn't already allocated. Use this only
732 * where it is safe to sleep, as the allocation may sleep.
733 *
734 * This causes a swap between the snapshot buffer and the current live
735 * tracing buffer. You can use this to take snapshots of the live
736 * trace when some condition is triggered, but continue to trace.
737 */
738 void tracing_snapshot_alloc(void)
739 {
740 int ret;
741
742 ret = tracing_alloc_snapshot();
743 if (ret < 0)
744 return;
745
746 tracing_snapshot();
747 }
748 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
749 #else
750 void tracing_snapshot(void)
751 {
752 WARN_ONCE(1, "Snapshot feature not enabled, but internal snapshot used");
753 }
754 EXPORT_SYMBOL_GPL(tracing_snapshot);
755 int tracing_alloc_snapshot(void)
756 {
757 WARN_ONCE(1, "Snapshot feature not enabled, but snapshot allocation used");
758 return -ENODEV;
759 }
760 EXPORT_SYMBOL_GPL(tracing_alloc_snapshot);
761 void tracing_snapshot_alloc(void)
762 {
763 /* Give warning */
764 tracing_snapshot();
765 }
766 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
767 #endif /* CONFIG_TRACER_SNAPSHOT */
768
769 static void tracer_tracing_off(struct trace_array *tr)
770 {
771 if (tr->trace_buffer.buffer)
772 ring_buffer_record_off(tr->trace_buffer.buffer);
773 /*
774 * This flag is looked at when buffers haven't been allocated
775 * yet, or by some tracers (like irqsoff), that just want to
776 * know if the ring buffer has been disabled, but it can handle
777 * races of where it gets disabled but we still do a record.
778 * As the check is in the fast path of the tracers, it is more
779 * important to be fast than accurate.
780 */
781 tr->buffer_disabled = 1;
782 /* Make the flag seen by readers */
783 smp_wmb();
784 }
785
786 /**
787 * tracing_off - turn off tracing buffers
788 *
789 * This function stops the tracing buffers from recording data.
790 * It does not disable any overhead the tracers themselves may
791 * be causing. This function simply causes all recording to
792 * the ring buffers to fail.
793 */
794 void tracing_off(void)
795 {
796 tracer_tracing_off(&global_trace);
797 }
798 EXPORT_SYMBOL_GPL(tracing_off);
799
800 void disable_trace_on_warning(void)
801 {
802 if (__disable_trace_on_warning)
803 tracing_off();
804 }
805
806 /**
807 * tracer_tracing_is_on - show real state of ring buffer enabled
808 * @tr : the trace array to know if ring buffer is enabled
809 *
810 * Shows real state of the ring buffer if it is enabled or not.
811 */
812 static int tracer_tracing_is_on(struct trace_array *tr)
813 {
814 if (tr->trace_buffer.buffer)
815 return ring_buffer_record_is_on(tr->trace_buffer.buffer);
816 return !tr->buffer_disabled;
817 }
818
819 /**
820 * tracing_is_on - show state of ring buffers enabled
821 */
822 int tracing_is_on(void)
823 {
824 return tracer_tracing_is_on(&global_trace);
825 }
826 EXPORT_SYMBOL_GPL(tracing_is_on);
827
828 static int __init set_buf_size(char *str)
829 {
830 unsigned long buf_size;
831
832 if (!str)
833 return 0;
834 buf_size = memparse(str, &str);
835 /* nr_entries can not be zero */
836 if (buf_size == 0)
837 return 0;
838 trace_buf_size = buf_size;
839 return 1;
840 }
841 __setup("trace_buf_size=", set_buf_size);
842
843 static int __init set_tracing_thresh(char *str)
844 {
845 unsigned long threshold;
846 int ret;
847
848 if (!str)
849 return 0;
850 ret = kstrtoul(str, 0, &threshold);
851 if (ret < 0)
852 return 0;
853 tracing_thresh = threshold * 1000;
854 return 1;
855 }
856 __setup("tracing_thresh=", set_tracing_thresh);
857
858 unsigned long nsecs_to_usecs(unsigned long nsecs)
859 {
860 return nsecs / 1000;
861 }
862
863 /*
864 * TRACE_FLAGS is defined as a tuple matching bit masks with strings.
865 * It uses C(a, b) where 'a' is the enum name and 'b' is the string that
866 * matches it. By defining "C(a, b) b", TRACE_FLAGS becomes a list
867 * of strings in the order that the enums were defined.
868 */
869 #undef C
870 #define C(a, b) b
871
872 /* These must match the bit postions in trace_iterator_flags */
873 static const char *trace_options[] = {
874 TRACE_FLAGS
875 NULL
876 };
877
878 static struct {
879 u64 (*func)(void);
880 const char *name;
881 int in_ns; /* is this clock in nanoseconds? */
882 } trace_clocks[] = {
883 { trace_clock_local, "local", 1 },
884 { trace_clock_global, "global", 1 },
885 { trace_clock_counter, "counter", 0 },
886 { trace_clock_jiffies, "uptime", 0 },
887 { trace_clock, "perf", 1 },
888 { ktime_get_mono_fast_ns, "mono", 1 },
889 { ktime_get_raw_fast_ns, "mono_raw", 1 },
890 ARCH_TRACE_CLOCKS
891 };
892
893 /*
894 * trace_parser_get_init - gets the buffer for trace parser
895 */
896 int trace_parser_get_init(struct trace_parser *parser, int size)
897 {
898 memset(parser, 0, sizeof(*parser));
899
900 parser->buffer = kmalloc(size, GFP_KERNEL);
901 if (!parser->buffer)
902 return 1;
903
904 parser->size = size;
905 return 0;
906 }
907
908 /*
909 * trace_parser_put - frees the buffer for trace parser
910 */
911 void trace_parser_put(struct trace_parser *parser)
912 {
913 kfree(parser->buffer);
914 }
915
916 /*
917 * trace_get_user - reads the user input string separated by space
918 * (matched by isspace(ch))
919 *
920 * For each string found the 'struct trace_parser' is updated,
921 * and the function returns.
922 *
923 * Returns number of bytes read.
924 *
925 * See kernel/trace/trace.h for 'struct trace_parser' details.
926 */
927 int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
928 size_t cnt, loff_t *ppos)
929 {
930 char ch;
931 size_t read = 0;
932 ssize_t ret;
933
934 if (!*ppos)
935 trace_parser_clear(parser);
936
937 ret = get_user(ch, ubuf++);
938 if (ret)
939 goto out;
940
941 read++;
942 cnt--;
943
944 /*
945 * The parser is not finished with the last write,
946 * continue reading the user input without skipping spaces.
947 */
948 if (!parser->cont) {
949 /* skip white space */
950 while (cnt && isspace(ch)) {
951 ret = get_user(ch, ubuf++);
952 if (ret)
953 goto out;
954 read++;
955 cnt--;
956 }
957
958 /* only spaces were written */
959 if (isspace(ch)) {
960 *ppos += read;
961 ret = read;
962 goto out;
963 }
964
965 parser->idx = 0;
966 }
967
968 /* read the non-space input */
969 while (cnt && !isspace(ch)) {
970 if (parser->idx < parser->size - 1)
971 parser->buffer[parser->idx++] = ch;
972 else {
973 ret = -EINVAL;
974 goto out;
975 }
976 ret = get_user(ch, ubuf++);
977 if (ret)
978 goto out;
979 read++;
980 cnt--;
981 }
982
983 /* We either got finished input or we have to wait for another call. */
984 if (isspace(ch)) {
985 parser->buffer[parser->idx] = 0;
986 parser->cont = false;
987 } else if (parser->idx < parser->size - 1) {
988 parser->cont = true;
989 parser->buffer[parser->idx++] = ch;
990 } else {
991 ret = -EINVAL;
992 goto out;
993 }
994
995 *ppos += read;
996 ret = read;
997
998 out:
999 return ret;
1000 }
1001
1002 /* TODO add a seq_buf_to_buffer() */
1003 static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
1004 {
1005 int len;
1006
1007 if (trace_seq_used(s) <= s->seq.readpos)
1008 return -EBUSY;
1009
1010 len = trace_seq_used(s) - s->seq.readpos;
1011 if (cnt > len)
1012 cnt = len;
1013 memcpy(buf, s->buffer + s->seq.readpos, cnt);
1014
1015 s->seq.readpos += cnt;
1016 return cnt;
1017 }
1018
1019 unsigned long __read_mostly tracing_thresh;
1020
1021 #ifdef CONFIG_TRACER_MAX_TRACE
1022 /*
1023 * Copy the new maximum trace into the separate maximum-trace
1024 * structure. (this way the maximum trace is permanently saved,
1025 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
1026 */
1027 static void
1028 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
1029 {
1030 struct trace_buffer *trace_buf = &tr->trace_buffer;
1031 struct trace_buffer *max_buf = &tr->max_buffer;
1032 struct trace_array_cpu *data = per_cpu_ptr(trace_buf->data, cpu);
1033 struct trace_array_cpu *max_data = per_cpu_ptr(max_buf->data, cpu);
1034
1035 max_buf->cpu = cpu;
1036 max_buf->time_start = data->preempt_timestamp;
1037
1038 max_data->saved_latency = tr->max_latency;
1039 max_data->critical_start = data->critical_start;
1040 max_data->critical_end = data->critical_end;
1041
1042 memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
1043 max_data->pid = tsk->pid;
1044 /*
1045 * If tsk == current, then use current_uid(), as that does not use
1046 * RCU. The irq tracer can be called out of RCU scope.
1047 */
1048 if (tsk == current)
1049 max_data->uid = current_uid();
1050 else
1051 max_data->uid = task_uid(tsk);
1052
1053 max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
1054 max_data->policy = tsk->policy;
1055 max_data->rt_priority = tsk->rt_priority;
1056
1057 /* record this tasks comm */
1058 tracing_record_cmdline(tsk);
1059 }
1060
1061 /**
1062 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
1063 * @tr: tracer
1064 * @tsk: the task with the latency
1065 * @cpu: The cpu that initiated the trace.
1066 *
1067 * Flip the buffers between the @tr and the max_tr and record information
1068 * about which task was the cause of this latency.
1069 */
1070 void
1071 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
1072 {
1073 struct ring_buffer *buf;
1074
1075 if (tr->stop_count)
1076 return;
1077
1078 WARN_ON_ONCE(!irqs_disabled());
1079
1080 if (!tr->allocated_snapshot) {
1081 /* Only the nop tracer should hit this when disabling */
1082 WARN_ON_ONCE(tr->current_trace != &nop_trace);
1083 return;
1084 }
1085
1086 arch_spin_lock(&tr->max_lock);
1087
1088 buf = tr->trace_buffer.buffer;
1089 tr->trace_buffer.buffer = tr->max_buffer.buffer;
1090 tr->max_buffer.buffer = buf;
1091
1092 __update_max_tr(tr, tsk, cpu);
1093 arch_spin_unlock(&tr->max_lock);
1094 }
1095
1096 /**
1097 * update_max_tr_single - only copy one trace over, and reset the rest
1098 * @tr - tracer
1099 * @tsk - task with the latency
1100 * @cpu - the cpu of the buffer to copy.
1101 *
1102 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
1103 */
1104 void
1105 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
1106 {
1107 int ret;
1108
1109 if (tr->stop_count)
1110 return;
1111
1112 WARN_ON_ONCE(!irqs_disabled());
1113 if (!tr->allocated_snapshot) {
1114 /* Only the nop tracer should hit this when disabling */
1115 WARN_ON_ONCE(tr->current_trace != &nop_trace);
1116 return;
1117 }
1118
1119 arch_spin_lock(&tr->max_lock);
1120
1121 ret = ring_buffer_swap_cpu(tr->max_buffer.buffer, tr->trace_buffer.buffer, cpu);
1122
1123 if (ret == -EBUSY) {
1124 /*
1125 * We failed to swap the buffer due to a commit taking
1126 * place on this CPU. We fail to record, but we reset
1127 * the max trace buffer (no one writes directly to it)
1128 * and flag that it failed.
1129 */
1130 trace_array_printk_buf(tr->max_buffer.buffer, _THIS_IP_,
1131 "Failed to swap buffers due to commit in progress\n");
1132 }
1133
1134 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
1135
1136 __update_max_tr(tr, tsk, cpu);
1137 arch_spin_unlock(&tr->max_lock);
1138 }
1139 #endif /* CONFIG_TRACER_MAX_TRACE */
1140
1141 static int wait_on_pipe(struct trace_iterator *iter, bool full)
1142 {
1143 /* Iterators are static, they should be filled or empty */
1144 if (trace_buffer_iter(iter, iter->cpu_file))
1145 return 0;
1146
1147 return ring_buffer_wait(iter->trace_buffer->buffer, iter->cpu_file,
1148 full);
1149 }
1150
1151 #ifdef CONFIG_FTRACE_STARTUP_TEST
1152 static int run_tracer_selftest(struct tracer *type)
1153 {
1154 struct trace_array *tr = &global_trace;
1155 struct tracer *saved_tracer = tr->current_trace;
1156 int ret;
1157
1158 if (!type->selftest || tracing_selftest_disabled)
1159 return 0;
1160
1161 /*
1162 * Run a selftest on this tracer.
1163 * Here we reset the trace buffer, and set the current
1164 * tracer to be this tracer. The tracer can then run some
1165 * internal tracing to verify that everything is in order.
1166 * If we fail, we do not register this tracer.
1167 */
1168 tracing_reset_online_cpus(&tr->trace_buffer);
1169
1170 tr->current_trace = type;
1171
1172 #ifdef CONFIG_TRACER_MAX_TRACE
1173 if (type->use_max_tr) {
1174 /* If we expanded the buffers, make sure the max is expanded too */
1175 if (ring_buffer_expanded)
1176 ring_buffer_resize(tr->max_buffer.buffer, trace_buf_size,
1177 RING_BUFFER_ALL_CPUS);
1178 tr->allocated_snapshot = true;
1179 }
1180 #endif
1181
1182 /* the test is responsible for initializing and enabling */
1183 pr_info("Testing tracer %s: ", type->name);
1184 ret = type->selftest(type, tr);
1185 /* the test is responsible for resetting too */
1186 tr->current_trace = saved_tracer;
1187 if (ret) {
1188 printk(KERN_CONT "FAILED!\n");
1189 /* Add the warning after printing 'FAILED' */
1190 WARN_ON(1);
1191 return -1;
1192 }
1193 /* Only reset on passing, to avoid touching corrupted buffers */
1194 tracing_reset_online_cpus(&tr->trace_buffer);
1195
1196 #ifdef CONFIG_TRACER_MAX_TRACE
1197 if (type->use_max_tr) {
1198 tr->allocated_snapshot = false;
1199
1200 /* Shrink the max buffer again */
1201 if (ring_buffer_expanded)
1202 ring_buffer_resize(tr->max_buffer.buffer, 1,
1203 RING_BUFFER_ALL_CPUS);
1204 }
1205 #endif
1206
1207 printk(KERN_CONT "PASSED\n");
1208 return 0;
1209 }
1210 #else
1211 static inline int run_tracer_selftest(struct tracer *type)
1212 {
1213 return 0;
1214 }
1215 #endif /* CONFIG_FTRACE_STARTUP_TEST */
1216
1217 static void add_tracer_options(struct trace_array *tr, struct tracer *t);
1218
1219 /**
1220 * register_tracer - register a tracer with the ftrace system.
1221 * @type - the plugin for the tracer
1222 *
1223 * Register a new plugin tracer.
1224 */
1225 int register_tracer(struct tracer *type)
1226 {
1227 struct tracer *t;
1228 int ret = 0;
1229
1230 if (!type->name) {
1231 pr_info("Tracer must have a name\n");
1232 return -1;
1233 }
1234
1235 if (strlen(type->name) >= MAX_TRACER_SIZE) {
1236 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
1237 return -1;
1238 }
1239
1240 mutex_lock(&trace_types_lock);
1241
1242 tracing_selftest_running = true;
1243
1244 for (t = trace_types; t; t = t->next) {
1245 if (strcmp(type->name, t->name) == 0) {
1246 /* already found */
1247 pr_info("Tracer %s already registered\n",
1248 type->name);
1249 ret = -1;
1250 goto out;
1251 }
1252 }
1253
1254 if (!type->set_flag)
1255 type->set_flag = &dummy_set_flag;
1256 if (!type->flags)
1257 type->flags = &dummy_tracer_flags;
1258 else
1259 if (!type->flags->opts)
1260 type->flags->opts = dummy_tracer_opt;
1261
1262 ret = run_tracer_selftest(type);
1263 if (ret < 0)
1264 goto out;
1265
1266 type->next = trace_types;
1267 trace_types = type;
1268 add_tracer_options(&global_trace, type);
1269
1270 out:
1271 tracing_selftest_running = false;
1272 mutex_unlock(&trace_types_lock);
1273
1274 if (ret || !default_bootup_tracer)
1275 goto out_unlock;
1276
1277 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
1278 goto out_unlock;
1279
1280 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
1281 /* Do we want this tracer to start on bootup? */
1282 tracing_set_tracer(&global_trace, type->name);
1283 default_bootup_tracer = NULL;
1284 /* disable other selftests, since this will break it. */
1285 tracing_selftest_disabled = true;
1286 #ifdef CONFIG_FTRACE_STARTUP_TEST
1287 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
1288 type->name);
1289 #endif
1290
1291 out_unlock:
1292 return ret;
1293 }
1294
1295 void tracing_reset(struct trace_buffer *buf, int cpu)
1296 {
1297 struct ring_buffer *buffer = buf->buffer;
1298
1299 if (!buffer)
1300 return;
1301
1302 ring_buffer_record_disable(buffer);
1303
1304 /* Make sure all commits have finished */
1305 synchronize_sched();
1306 ring_buffer_reset_cpu(buffer, cpu);
1307
1308 ring_buffer_record_enable(buffer);
1309 }
1310
1311 void tracing_reset_online_cpus(struct trace_buffer *buf)
1312 {
1313 struct ring_buffer *buffer = buf->buffer;
1314 int cpu;
1315
1316 if (!buffer)
1317 return;
1318
1319 ring_buffer_record_disable(buffer);
1320
1321 /* Make sure all commits have finished */
1322 synchronize_sched();
1323
1324 buf->time_start = buffer_ftrace_now(buf, buf->cpu);
1325
1326 for_each_online_cpu(cpu)
1327 ring_buffer_reset_cpu(buffer, cpu);
1328
1329 ring_buffer_record_enable(buffer);
1330 }
1331
1332 /* Must have trace_types_lock held */
1333 void tracing_reset_all_online_cpus(void)
1334 {
1335 struct trace_array *tr;
1336
1337 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
1338 tracing_reset_online_cpus(&tr->trace_buffer);
1339 #ifdef CONFIG_TRACER_MAX_TRACE
1340 tracing_reset_online_cpus(&tr->max_buffer);
1341 #endif
1342 }
1343 }
1344
1345 #define SAVED_CMDLINES_DEFAULT 128
1346 #define NO_CMDLINE_MAP UINT_MAX
1347 static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
1348 struct saved_cmdlines_buffer {
1349 unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
1350 unsigned *map_cmdline_to_pid;
1351 unsigned cmdline_num;
1352 int cmdline_idx;
1353 char *saved_cmdlines;
1354 };
1355 static struct saved_cmdlines_buffer *savedcmd;
1356
1357 /* temporary disable recording */
1358 static atomic_t trace_record_cmdline_disabled __read_mostly;
1359
1360 static inline char *get_saved_cmdlines(int idx)
1361 {
1362 return &savedcmd->saved_cmdlines[idx * TASK_COMM_LEN];
1363 }
1364
1365 static inline void set_cmdline(int idx, const char *cmdline)
1366 {
1367 memcpy(get_saved_cmdlines(idx), cmdline, TASK_COMM_LEN);
1368 }
1369
1370 static int allocate_cmdlines_buffer(unsigned int val,
1371 struct saved_cmdlines_buffer *s)
1372 {
1373 s->map_cmdline_to_pid = kmalloc(val * sizeof(*s->map_cmdline_to_pid),
1374 GFP_KERNEL);
1375 if (!s->map_cmdline_to_pid)
1376 return -ENOMEM;
1377
1378 s->saved_cmdlines = kmalloc(val * TASK_COMM_LEN, GFP_KERNEL);
1379 if (!s->saved_cmdlines) {
1380 kfree(s->map_cmdline_to_pid);
1381 return -ENOMEM;
1382 }
1383
1384 s->cmdline_idx = 0;
1385 s->cmdline_num = val;
1386 memset(&s->map_pid_to_cmdline, NO_CMDLINE_MAP,
1387 sizeof(s->map_pid_to_cmdline));
1388 memset(s->map_cmdline_to_pid, NO_CMDLINE_MAP,
1389 val * sizeof(*s->map_cmdline_to_pid));
1390
1391 return 0;
1392 }
1393
1394 static int trace_create_savedcmd(void)
1395 {
1396 int ret;
1397
1398 savedcmd = kmalloc(sizeof(*savedcmd), GFP_KERNEL);
1399 if (!savedcmd)
1400 return -ENOMEM;
1401
1402 ret = allocate_cmdlines_buffer(SAVED_CMDLINES_DEFAULT, savedcmd);
1403 if (ret < 0) {
1404 kfree(savedcmd);
1405 savedcmd = NULL;
1406 return -ENOMEM;
1407 }
1408
1409 return 0;
1410 }
1411
1412 int is_tracing_stopped(void)
1413 {
1414 return global_trace.stop_count;
1415 }
1416
1417 /**
1418 * tracing_start - quick start of the tracer
1419 *
1420 * If tracing is enabled but was stopped by tracing_stop,
1421 * this will start the tracer back up.
1422 */
1423 void tracing_start(void)
1424 {
1425 struct ring_buffer *buffer;
1426 unsigned long flags;
1427
1428 if (tracing_disabled)
1429 return;
1430
1431 raw_spin_lock_irqsave(&global_trace.start_lock, flags);
1432 if (--global_trace.stop_count) {
1433 if (global_trace.stop_count < 0) {
1434 /* Someone screwed up their debugging */
1435 WARN_ON_ONCE(1);
1436 global_trace.stop_count = 0;
1437 }
1438 goto out;
1439 }
1440
1441 /* Prevent the buffers from switching */
1442 arch_spin_lock(&global_trace.max_lock);
1443
1444 buffer = global_trace.trace_buffer.buffer;
1445 if (buffer)
1446 ring_buffer_record_enable(buffer);
1447
1448 #ifdef CONFIG_TRACER_MAX_TRACE
1449 buffer = global_trace.max_buffer.buffer;
1450 if (buffer)
1451 ring_buffer_record_enable(buffer);
1452 #endif
1453
1454 arch_spin_unlock(&global_trace.max_lock);
1455
1456 out:
1457 raw_spin_unlock_irqrestore(&global_trace.start_lock, flags);
1458 }
1459
1460 static void tracing_start_tr(struct trace_array *tr)
1461 {
1462 struct ring_buffer *buffer;
1463 unsigned long flags;
1464
1465 if (tracing_disabled)
1466 return;
1467
1468 /* If global, we need to also start the max tracer */
1469 if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
1470 return tracing_start();
1471
1472 raw_spin_lock_irqsave(&tr->start_lock, flags);
1473
1474 if (--tr->stop_count) {
1475 if (tr->stop_count < 0) {
1476 /* Someone screwed up their debugging */
1477 WARN_ON_ONCE(1);
1478 tr->stop_count = 0;
1479 }
1480 goto out;
1481 }
1482
1483 buffer = tr->trace_buffer.buffer;
1484 if (buffer)
1485 ring_buffer_record_enable(buffer);
1486
1487 out:
1488 raw_spin_unlock_irqrestore(&tr->start_lock, flags);
1489 }
1490
1491 /**
1492 * tracing_stop - quick stop of the tracer
1493 *
1494 * Light weight way to stop tracing. Use in conjunction with
1495 * tracing_start.
1496 */
1497 void tracing_stop(void)
1498 {
1499 struct ring_buffer *buffer;
1500 unsigned long flags;
1501
1502 raw_spin_lock_irqsave(&global_trace.start_lock, flags);
1503 if (global_trace.stop_count++)
1504 goto out;
1505
1506 /* Prevent the buffers from switching */
1507 arch_spin_lock(&global_trace.max_lock);
1508
1509 buffer = global_trace.trace_buffer.buffer;
1510 if (buffer)
1511 ring_buffer_record_disable(buffer);
1512
1513 #ifdef CONFIG_TRACER_MAX_TRACE
1514 buffer = global_trace.max_buffer.buffer;
1515 if (buffer)
1516 ring_buffer_record_disable(buffer);
1517 #endif
1518
1519 arch_spin_unlock(&global_trace.max_lock);
1520
1521 out:
1522 raw_spin_unlock_irqrestore(&global_trace.start_lock, flags);
1523 }
1524
1525 static void tracing_stop_tr(struct trace_array *tr)
1526 {
1527 struct ring_buffer *buffer;
1528 unsigned long flags;
1529
1530 /* If global, we need to also stop the max tracer */
1531 if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
1532 return tracing_stop();
1533
1534 raw_spin_lock_irqsave(&tr->start_lock, flags);
1535 if (tr->stop_count++)
1536 goto out;
1537
1538 buffer = tr->trace_buffer.buffer;
1539 if (buffer)
1540 ring_buffer_record_disable(buffer);
1541
1542 out:
1543 raw_spin_unlock_irqrestore(&tr->start_lock, flags);
1544 }
1545
1546 void trace_stop_cmdline_recording(void);
1547
1548 static int trace_save_cmdline(struct task_struct *tsk)
1549 {
1550 unsigned pid, idx;
1551
1552 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1553 return 0;
1554
1555 /*
1556 * It's not the end of the world if we don't get
1557 * the lock, but we also don't want to spin
1558 * nor do we want to disable interrupts,
1559 * so if we miss here, then better luck next time.
1560 */
1561 if (!arch_spin_trylock(&trace_cmdline_lock))
1562 return 0;
1563
1564 idx = savedcmd->map_pid_to_cmdline[tsk->pid];
1565 if (idx == NO_CMDLINE_MAP) {
1566 idx = (savedcmd->cmdline_idx + 1) % savedcmd->cmdline_num;
1567
1568 /*
1569 * Check whether the cmdline buffer at idx has a pid
1570 * mapped. We are going to overwrite that entry so we
1571 * need to clear the map_pid_to_cmdline. Otherwise we
1572 * would read the new comm for the old pid.
1573 */
1574 pid = savedcmd->map_cmdline_to_pid[idx];
1575 if (pid != NO_CMDLINE_MAP)
1576 savedcmd->map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
1577
1578 savedcmd->map_cmdline_to_pid[idx] = tsk->pid;
1579 savedcmd->map_pid_to_cmdline[tsk->pid] = idx;
1580
1581 savedcmd->cmdline_idx = idx;
1582 }
1583
1584 set_cmdline(idx, tsk->comm);
1585
1586 arch_spin_unlock(&trace_cmdline_lock);
1587
1588 return 1;
1589 }
1590
1591 static void __trace_find_cmdline(int pid, char comm[])
1592 {
1593 unsigned map;
1594
1595 if (!pid) {
1596 strcpy(comm, "<idle>");
1597 return;
1598 }
1599
1600 if (WARN_ON_ONCE(pid < 0)) {
1601 strcpy(comm, "<XXX>");
1602 return;
1603 }
1604
1605 if (pid > PID_MAX_DEFAULT) {
1606 strcpy(comm, "<...>");
1607 return;
1608 }
1609
1610 map = savedcmd->map_pid_to_cmdline[pid];
1611 if (map != NO_CMDLINE_MAP)
1612 strcpy(comm, get_saved_cmdlines(map));
1613 else
1614 strcpy(comm, "<...>");
1615 }
1616
1617 void trace_find_cmdline(int pid, char comm[])
1618 {
1619 preempt_disable();
1620 arch_spin_lock(&trace_cmdline_lock);
1621
1622 __trace_find_cmdline(pid, comm);
1623
1624 arch_spin_unlock(&trace_cmdline_lock);
1625 preempt_enable();
1626 }
1627
1628 void tracing_record_cmdline(struct task_struct *tsk)
1629 {
1630 if (atomic_read(&trace_record_cmdline_disabled) || !tracing_is_on())
1631 return;
1632
1633 if (!__this_cpu_read(trace_cmdline_save))
1634 return;
1635
1636 if (trace_save_cmdline(tsk))
1637 __this_cpu_write(trace_cmdline_save, false);
1638 }
1639
1640 void
1641 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1642 int pc)
1643 {
1644 struct task_struct *tsk = current;
1645
1646 entry->preempt_count = pc & 0xff;
1647 entry->pid = (tsk) ? tsk->pid : 0;
1648 entry->flags =
1649 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
1650 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
1651 #else
1652 TRACE_FLAG_IRQS_NOSUPPORT |
1653 #endif
1654 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
1655 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
1656 (tif_need_resched() ? TRACE_FLAG_NEED_RESCHED : 0) |
1657 (test_preempt_need_resched() ? TRACE_FLAG_PREEMPT_RESCHED : 0);
1658 }
1659 EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
1660
1661 struct ring_buffer_event *
1662 trace_buffer_lock_reserve(struct ring_buffer *buffer,
1663 int type,
1664 unsigned long len,
1665 unsigned long flags, int pc)
1666 {
1667 struct ring_buffer_event *event;
1668
1669 event = ring_buffer_lock_reserve(buffer, len);
1670 if (event != NULL) {
1671 struct trace_entry *ent = ring_buffer_event_data(event);
1672
1673 tracing_generic_entry_update(ent, flags, pc);
1674 ent->type = type;
1675 }
1676
1677 return event;
1678 }
1679
1680 void
1681 __buffer_unlock_commit(struct ring_buffer *buffer, struct ring_buffer_event *event)
1682 {
1683 __this_cpu_write(trace_cmdline_save, true);
1684 ring_buffer_unlock_commit(buffer, event);
1685 }
1686
1687 void trace_buffer_unlock_commit(struct trace_array *tr,
1688 struct ring_buffer *buffer,
1689 struct ring_buffer_event *event,
1690 unsigned long flags, int pc)
1691 {
1692 __buffer_unlock_commit(buffer, event);
1693
1694 ftrace_trace_stack(buffer, flags, 6, pc, NULL);
1695 ftrace_trace_userstack(buffer, flags, pc);
1696 }
1697 EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit);
1698
1699 static struct ring_buffer *temp_buffer;
1700
1701 struct ring_buffer_event *
1702 trace_event_buffer_lock_reserve(struct ring_buffer **current_rb,
1703 struct trace_event_file *trace_file,
1704 int type, unsigned long len,
1705 unsigned long flags, int pc)
1706 {
1707 struct ring_buffer_event *entry;
1708
1709 *current_rb = trace_file->tr->trace_buffer.buffer;
1710 entry = trace_buffer_lock_reserve(*current_rb,
1711 type, len, flags, pc);
1712 /*
1713 * If tracing is off, but we have triggers enabled
1714 * we still need to look at the event data. Use the temp_buffer
1715 * to store the trace event for the tigger to use. It's recusive
1716 * safe and will not be recorded anywhere.
1717 */
1718 if (!entry && trace_file->flags & EVENT_FILE_FL_TRIGGER_COND) {
1719 *current_rb = temp_buffer;
1720 entry = trace_buffer_lock_reserve(*current_rb,
1721 type, len, flags, pc);
1722 }
1723 return entry;
1724 }
1725 EXPORT_SYMBOL_GPL(trace_event_buffer_lock_reserve);
1726
1727 struct ring_buffer_event *
1728 trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1729 int type, unsigned long len,
1730 unsigned long flags, int pc)
1731 {
1732 *current_rb = global_trace.trace_buffer.buffer;
1733 return trace_buffer_lock_reserve(*current_rb,
1734 type, len, flags, pc);
1735 }
1736 EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
1737
1738 void trace_buffer_unlock_commit_regs(struct trace_array *tr,
1739 struct ring_buffer *buffer,
1740 struct ring_buffer_event *event,
1741 unsigned long flags, int pc,
1742 struct pt_regs *regs)
1743 {
1744 __buffer_unlock_commit(buffer, event);
1745
1746 ftrace_trace_stack(buffer, flags, 6, pc, regs);
1747 ftrace_trace_userstack(buffer, flags, pc);
1748 }
1749 EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit_regs);
1750
1751 void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1752 struct ring_buffer_event *event)
1753 {
1754 ring_buffer_discard_commit(buffer, event);
1755 }
1756 EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
1757
1758 void
1759 trace_function(struct trace_array *tr,
1760 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1761 int pc)
1762 {
1763 struct trace_event_call *call = &event_function;
1764 struct ring_buffer *buffer = tr->trace_buffer.buffer;
1765 struct ring_buffer_event *event;
1766 struct ftrace_entry *entry;
1767
1768 /* If we are reading the ring buffer, don't trace */
1769 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
1770 return;
1771
1772 event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
1773 flags, pc);
1774 if (!event)
1775 return;
1776 entry = ring_buffer_event_data(event);
1777 entry->ip = ip;
1778 entry->parent_ip = parent_ip;
1779
1780 if (!call_filter_check_discard(call, entry, buffer, event))
1781 __buffer_unlock_commit(buffer, event);
1782 }
1783
1784 #ifdef CONFIG_STACKTRACE
1785
1786 #define FTRACE_STACK_MAX_ENTRIES (PAGE_SIZE / sizeof(unsigned long))
1787 struct ftrace_stack {
1788 unsigned long calls[FTRACE_STACK_MAX_ENTRIES];
1789 };
1790
1791 static DEFINE_PER_CPU(struct ftrace_stack, ftrace_stack);
1792 static DEFINE_PER_CPU(int, ftrace_stack_reserve);
1793
1794 static void __ftrace_trace_stack(struct ring_buffer *buffer,
1795 unsigned long flags,
1796 int skip, int pc, struct pt_regs *regs)
1797 {
1798 struct trace_event_call *call = &event_kernel_stack;
1799 struct ring_buffer_event *event;
1800 struct stack_entry *entry;
1801 struct stack_trace trace;
1802 int use_stack;
1803 int size = FTRACE_STACK_ENTRIES;
1804
1805 trace.nr_entries = 0;
1806 trace.skip = skip;
1807
1808 /*
1809 * Since events can happen in NMIs there's no safe way to
1810 * use the per cpu ftrace_stacks. We reserve it and if an interrupt
1811 * or NMI comes in, it will just have to use the default
1812 * FTRACE_STACK_SIZE.
1813 */
1814 preempt_disable_notrace();
1815
1816 use_stack = __this_cpu_inc_return(ftrace_stack_reserve);
1817 /*
1818 * We don't need any atomic variables, just a barrier.
1819 * If an interrupt comes in, we don't care, because it would
1820 * have exited and put the counter back to what we want.
1821 * We just need a barrier to keep gcc from moving things
1822 * around.
1823 */
1824 barrier();
1825 if (use_stack == 1) {
1826 trace.entries = this_cpu_ptr(ftrace_stack.calls);
1827 trace.max_entries = FTRACE_STACK_MAX_ENTRIES;
1828
1829 if (regs)
1830 save_stack_trace_regs(regs, &trace);
1831 else
1832 save_stack_trace(&trace);
1833
1834 if (trace.nr_entries > size)
1835 size = trace.nr_entries;
1836 } else
1837 /* From now on, use_stack is a boolean */
1838 use_stack = 0;
1839
1840 size *= sizeof(unsigned long);
1841
1842 event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
1843 sizeof(*entry) + size, flags, pc);
1844 if (!event)
1845 goto out;
1846 entry = ring_buffer_event_data(event);
1847
1848 memset(&entry->caller, 0, size);
1849
1850 if (use_stack)
1851 memcpy(&entry->caller, trace.entries,
1852 trace.nr_entries * sizeof(unsigned long));
1853 else {
1854 trace.max_entries = FTRACE_STACK_ENTRIES;
1855 trace.entries = entry->caller;
1856 if (regs)
1857 save_stack_trace_regs(regs, &trace);
1858 else
1859 save_stack_trace(&trace);
1860 }
1861
1862 entry->size = trace.nr_entries;
1863
1864 if (!call_filter_check_discard(call, entry, buffer, event))
1865 __buffer_unlock_commit(buffer, event);
1866
1867 out:
1868 /* Again, don't let gcc optimize things here */
1869 barrier();
1870 __this_cpu_dec(ftrace_stack_reserve);
1871 preempt_enable_notrace();
1872
1873 }
1874
1875 static inline void ftrace_trace_stack(struct ring_buffer *buffer,
1876 unsigned long flags,
1877 int skip, int pc, struct pt_regs *regs)
1878 {
1879 if (!(global_trace.trace_flags & TRACE_ITER_STACKTRACE))
1880 return;
1881
1882 __ftrace_trace_stack(buffer, flags, skip, pc, regs);
1883 }
1884
1885 void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1886 int pc)
1887 {
1888 __ftrace_trace_stack(tr->trace_buffer.buffer, flags, skip, pc, NULL);
1889 }
1890
1891 /**
1892 * trace_dump_stack - record a stack back trace in the trace buffer
1893 * @skip: Number of functions to skip (helper handlers)
1894 */
1895 void trace_dump_stack(int skip)
1896 {
1897 unsigned long flags;
1898
1899 if (tracing_disabled || tracing_selftest_running)
1900 return;
1901
1902 local_save_flags(flags);
1903
1904 /*
1905 * Skip 3 more, seems to get us at the caller of
1906 * this function.
1907 */
1908 skip += 3;
1909 __ftrace_trace_stack(global_trace.trace_buffer.buffer,
1910 flags, skip, preempt_count(), NULL);
1911 }
1912
1913 static DEFINE_PER_CPU(int, user_stack_count);
1914
1915 void
1916 ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
1917 {
1918 struct trace_event_call *call = &event_user_stack;
1919 struct ring_buffer_event *event;
1920 struct userstack_entry *entry;
1921 struct stack_trace trace;
1922
1923 if (!(global_trace.trace_flags & TRACE_ITER_USERSTACKTRACE))
1924 return;
1925
1926 /*
1927 * NMIs can not handle page faults, even with fix ups.
1928 * The save user stack can (and often does) fault.
1929 */
1930 if (unlikely(in_nmi()))
1931 return;
1932
1933 /*
1934 * prevent recursion, since the user stack tracing may
1935 * trigger other kernel events.
1936 */
1937 preempt_disable();
1938 if (__this_cpu_read(user_stack_count))
1939 goto out;
1940
1941 __this_cpu_inc(user_stack_count);
1942
1943 event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
1944 sizeof(*entry), flags, pc);
1945 if (!event)
1946 goto out_drop_count;
1947 entry = ring_buffer_event_data(event);
1948
1949 entry->tgid = current->tgid;
1950 memset(&entry->caller, 0, sizeof(entry->caller));
1951
1952 trace.nr_entries = 0;
1953 trace.max_entries = FTRACE_STACK_ENTRIES;
1954 trace.skip = 0;
1955 trace.entries = entry->caller;
1956
1957 save_stack_trace_user(&trace);
1958 if (!call_filter_check_discard(call, entry, buffer, event))
1959 __buffer_unlock_commit(buffer, event);
1960
1961 out_drop_count:
1962 __this_cpu_dec(user_stack_count);
1963 out:
1964 preempt_enable();
1965 }
1966
1967 #ifdef UNUSED
1968 static void __trace_userstack(struct trace_array *tr, unsigned long flags)
1969 {
1970 ftrace_trace_userstack(tr, flags, preempt_count());
1971 }
1972 #endif /* UNUSED */
1973
1974 #endif /* CONFIG_STACKTRACE */
1975
1976 /* created for use with alloc_percpu */
1977 struct trace_buffer_struct {
1978 char buffer[TRACE_BUF_SIZE];
1979 };
1980
1981 static struct trace_buffer_struct *trace_percpu_buffer;
1982 static struct trace_buffer_struct *trace_percpu_sirq_buffer;
1983 static struct trace_buffer_struct *trace_percpu_irq_buffer;
1984 static struct trace_buffer_struct *trace_percpu_nmi_buffer;
1985
1986 /*
1987 * The buffer used is dependent on the context. There is a per cpu
1988 * buffer for normal context, softirq contex, hard irq context and
1989 * for NMI context. Thise allows for lockless recording.
1990 *
1991 * Note, if the buffers failed to be allocated, then this returns NULL
1992 */
1993 static char *get_trace_buf(void)
1994 {
1995 struct trace_buffer_struct *percpu_buffer;
1996
1997 /*
1998 * If we have allocated per cpu buffers, then we do not
1999 * need to do any locking.
2000 */
2001 if (in_nmi())
2002 percpu_buffer = trace_percpu_nmi_buffer;
2003 else if (in_irq())
2004 percpu_buffer = trace_percpu_irq_buffer;
2005 else if (in_softirq())
2006 percpu_buffer = trace_percpu_sirq_buffer;
2007 else
2008 percpu_buffer = trace_percpu_buffer;
2009
2010 if (!percpu_buffer)
2011 return NULL;
2012
2013 return this_cpu_ptr(&percpu_buffer->buffer[0]);
2014 }
2015
2016 static int alloc_percpu_trace_buffer(void)
2017 {
2018 struct trace_buffer_struct *buffers;
2019 struct trace_buffer_struct *sirq_buffers;
2020 struct trace_buffer_struct *irq_buffers;
2021 struct trace_buffer_struct *nmi_buffers;
2022
2023 buffers = alloc_percpu(struct trace_buffer_struct);
2024 if (!buffers)
2025 goto err_warn;
2026
2027 sirq_buffers = alloc_percpu(struct trace_buffer_struct);
2028 if (!sirq_buffers)
2029 goto err_sirq;
2030
2031 irq_buffers = alloc_percpu(struct trace_buffer_struct);
2032 if (!irq_buffers)
2033 goto err_irq;
2034
2035 nmi_buffers = alloc_percpu(struct trace_buffer_struct);
2036 if (!nmi_buffers)
2037 goto err_nmi;
2038
2039 trace_percpu_buffer = buffers;
2040 trace_percpu_sirq_buffer = sirq_buffers;
2041 trace_percpu_irq_buffer = irq_buffers;
2042 trace_percpu_nmi_buffer = nmi_buffers;
2043
2044 return 0;
2045
2046 err_nmi:
2047 free_percpu(irq_buffers);
2048 err_irq:
2049 free_percpu(sirq_buffers);
2050 err_sirq:
2051 free_percpu(buffers);
2052 err_warn:
2053 WARN(1, "Could not allocate percpu trace_printk buffer");
2054 return -ENOMEM;
2055 }
2056
2057 static int buffers_allocated;
2058
2059 void trace_printk_init_buffers(void)
2060 {
2061 if (buffers_allocated)
2062 return;
2063
2064 if (alloc_percpu_trace_buffer())
2065 return;
2066
2067 /* trace_printk() is for debug use only. Don't use it in production. */
2068
2069 pr_warning("\n");
2070 pr_warning("**********************************************************\n");
2071 pr_warning("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
2072 pr_warning("** **\n");
2073 pr_warning("** trace_printk() being used. Allocating extra memory. **\n");
2074 pr_warning("** **\n");
2075 pr_warning("** This means that this is a DEBUG kernel and it is **\n");
2076 pr_warning("** unsafe for production use. **\n");
2077 pr_warning("** **\n");
2078 pr_warning("** If you see this message and you are not debugging **\n");
2079 pr_warning("** the kernel, report this immediately to your vendor! **\n");
2080 pr_warning("** **\n");
2081 pr_warning("** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **\n");
2082 pr_warning("**********************************************************\n");
2083
2084 /* Expand the buffers to set size */
2085 tracing_update_buffers();
2086
2087 buffers_allocated = 1;
2088
2089 /*
2090 * trace_printk_init_buffers() can be called by modules.
2091 * If that happens, then we need to start cmdline recording
2092 * directly here. If the global_trace.buffer is already
2093 * allocated here, then this was called by module code.
2094 */
2095 if (global_trace.trace_buffer.buffer)
2096 tracing_start_cmdline_record();
2097 }
2098
2099 void trace_printk_start_comm(void)
2100 {
2101 /* Start tracing comms if trace printk is set */
2102 if (!buffers_allocated)
2103 return;
2104 tracing_start_cmdline_record();
2105 }
2106
2107 static void trace_printk_start_stop_comm(int enabled)
2108 {
2109 if (!buffers_allocated)
2110 return;
2111
2112 if (enabled)
2113 tracing_start_cmdline_record();
2114 else
2115 tracing_stop_cmdline_record();
2116 }
2117
2118 /**
2119 * trace_vbprintk - write binary msg to tracing buffer
2120 *
2121 */
2122 int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
2123 {
2124 struct trace_event_call *call = &event_bprint;
2125 struct ring_buffer_event *event;
2126 struct ring_buffer *buffer;
2127 struct trace_array *tr = &global_trace;
2128 struct bprint_entry *entry;
2129 unsigned long flags;
2130 char *tbuffer;
2131 int len = 0, size, pc;
2132
2133 if (unlikely(tracing_selftest_running || tracing_disabled))
2134 return 0;
2135
2136 /* Don't pollute graph traces with trace_vprintk internals */
2137 pause_graph_tracing();
2138
2139 pc = preempt_count();
2140 preempt_disable_notrace();
2141
2142 tbuffer = get_trace_buf();
2143 if (!tbuffer) {
2144 len = 0;
2145 goto out;
2146 }
2147
2148 len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args);
2149
2150 if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0)
2151 goto out;
2152
2153 local_save_flags(flags);
2154 size = sizeof(*entry) + sizeof(u32) * len;
2155 buffer = tr->trace_buffer.buffer;
2156 event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
2157 flags, pc);
2158 if (!event)
2159 goto out;
2160 entry = ring_buffer_event_data(event);
2161 entry->ip = ip;
2162 entry->fmt = fmt;
2163
2164 memcpy(entry->buf, tbuffer, sizeof(u32) * len);
2165 if (!call_filter_check_discard(call, entry, buffer, event)) {
2166 __buffer_unlock_commit(buffer, event);
2167 ftrace_trace_stack(buffer, flags, 6, pc, NULL);
2168 }
2169
2170 out:
2171 preempt_enable_notrace();
2172 unpause_graph_tracing();
2173
2174 return len;
2175 }
2176 EXPORT_SYMBOL_GPL(trace_vbprintk);
2177
2178 static int
2179 __trace_array_vprintk(struct ring_buffer *buffer,
2180 unsigned long ip, const char *fmt, va_list args)
2181 {
2182 struct trace_event_call *call = &event_print;
2183 struct ring_buffer_event *event;
2184 int len = 0, size, pc;
2185 struct print_entry *entry;
2186 unsigned long flags;
2187 char *tbuffer;
2188
2189 if (tracing_disabled || tracing_selftest_running)
2190 return 0;
2191
2192 /* Don't pollute graph traces with trace_vprintk internals */
2193 pause_graph_tracing();
2194
2195 pc = preempt_count();
2196 preempt_disable_notrace();
2197
2198
2199 tbuffer = get_trace_buf();
2200 if (!tbuffer) {
2201 len = 0;
2202 goto out;
2203 }
2204
2205 len = vscnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args);
2206
2207 local_save_flags(flags);
2208 size = sizeof(*entry) + len + 1;
2209 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
2210 flags, pc);
2211 if (!event)
2212 goto out;
2213 entry = ring_buffer_event_data(event);
2214 entry->ip = ip;
2215
2216 memcpy(&entry->buf, tbuffer, len + 1);
2217 if (!call_filter_check_discard(call, entry, buffer, event)) {
2218 __buffer_unlock_commit(buffer, event);
2219 ftrace_trace_stack(buffer, flags, 6, pc, NULL);
2220 }
2221 out:
2222 preempt_enable_notrace();
2223 unpause_graph_tracing();
2224
2225 return len;
2226 }
2227
2228 int trace_array_vprintk(struct trace_array *tr,
2229 unsigned long ip, const char *fmt, va_list args)
2230 {
2231 return __trace_array_vprintk(tr->trace_buffer.buffer, ip, fmt, args);
2232 }
2233
2234 int trace_array_printk(struct trace_array *tr,
2235 unsigned long ip, const char *fmt, ...)
2236 {
2237 int ret;
2238 va_list ap;
2239
2240 if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
2241 return 0;
2242
2243 va_start(ap, fmt);
2244 ret = trace_array_vprintk(tr, ip, fmt, ap);
2245 va_end(ap);
2246 return ret;
2247 }
2248
2249 int trace_array_printk_buf(struct ring_buffer *buffer,
2250 unsigned long ip, const char *fmt, ...)
2251 {
2252 int ret;
2253 va_list ap;
2254
2255 if (!(global_trace.trace_flags & TRACE_ITER_PRINTK))
2256 return 0;
2257
2258 va_start(ap, fmt);
2259 ret = __trace_array_vprintk(buffer, ip, fmt, ap);
2260 va_end(ap);
2261 return ret;
2262 }
2263
2264 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
2265 {
2266 return trace_array_vprintk(&global_trace, ip, fmt, args);
2267 }
2268 EXPORT_SYMBOL_GPL(trace_vprintk);
2269
2270 static void trace_iterator_increment(struct trace_iterator *iter)
2271 {
2272 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, iter->cpu);
2273
2274 iter->idx++;
2275 if (buf_iter)
2276 ring_buffer_read(buf_iter, NULL);
2277 }
2278
2279 static struct trace_entry *
2280 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
2281 unsigned long *lost_events)
2282 {
2283 struct ring_buffer_event *event;
2284 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, cpu);
2285
2286 if (buf_iter)
2287 event = ring_buffer_iter_peek(buf_iter, ts);
2288 else
2289 event = ring_buffer_peek(iter->trace_buffer->buffer, cpu, ts,
2290 lost_events);
2291
2292 if (event) {
2293 iter->ent_size = ring_buffer_event_length(event);
2294 return ring_buffer_event_data(event);
2295 }
2296 iter->ent_size = 0;
2297 return NULL;
2298 }
2299
2300 static struct trace_entry *
2301 __find_next_entry(struct trace_iterator *iter, int *ent_cpu,
2302 unsigned long *missing_events, u64 *ent_ts)
2303 {
2304 struct ring_buffer *buffer = iter->trace_buffer->buffer;
2305 struct trace_entry *ent, *next = NULL;
2306 unsigned long lost_events = 0, next_lost = 0;
2307 int cpu_file = iter->cpu_file;
2308 u64 next_ts = 0, ts;
2309 int next_cpu = -1;
2310 int next_size = 0;
2311 int cpu;
2312
2313 /*
2314 * If we are in a per_cpu trace file, don't bother by iterating over
2315 * all cpu and peek directly.
2316 */
2317 if (cpu_file > RING_BUFFER_ALL_CPUS) {
2318 if (ring_buffer_empty_cpu(buffer, cpu_file))
2319 return NULL;
2320 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
2321 if (ent_cpu)
2322 *ent_cpu = cpu_file;
2323
2324 return ent;
2325 }
2326
2327 for_each_tracing_cpu(cpu) {
2328
2329 if (ring_buffer_empty_cpu(buffer, cpu))
2330 continue;
2331
2332 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
2333
2334 /*
2335 * Pick the entry with the smallest timestamp:
2336 */
2337 if (ent && (!next || ts < next_ts)) {
2338 next = ent;
2339 next_cpu = cpu;
2340 next_ts = ts;
2341 next_lost = lost_events;
2342 next_size = iter->ent_size;
2343 }
2344 }
2345
2346 iter->ent_size = next_size;
2347
2348 if (ent_cpu)
2349 *ent_cpu = next_cpu;
2350
2351 if (ent_ts)
2352 *ent_ts = next_ts;
2353
2354 if (missing_events)
2355 *missing_events = next_lost;
2356
2357 return next;
2358 }
2359
2360 /* Find the next real entry, without updating the iterator itself */
2361 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
2362 int *ent_cpu, u64 *ent_ts)
2363 {
2364 return __find_next_entry(iter, ent_cpu, NULL, ent_ts);
2365 }
2366
2367 /* Find the next real entry, and increment the iterator to the next entry */
2368 void *trace_find_next_entry_inc(struct trace_iterator *iter)
2369 {
2370 iter->ent = __find_next_entry(iter, &iter->cpu,
2371 &iter->lost_events, &iter->ts);
2372
2373 if (iter->ent)
2374 trace_iterator_increment(iter);
2375
2376 return iter->ent ? iter : NULL;
2377 }
2378
2379 static void trace_consume(struct trace_iterator *iter)
2380 {
2381 ring_buffer_consume(iter->trace_buffer->buffer, iter->cpu, &iter->ts,
2382 &iter->lost_events);
2383 }
2384
2385 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
2386 {
2387 struct trace_iterator *iter = m->private;
2388 int i = (int)*pos;
2389 void *ent;
2390
2391 WARN_ON_ONCE(iter->leftover);
2392
2393 (*pos)++;
2394
2395 /* can't go backwards */
2396 if (iter->idx > i)
2397 return NULL;
2398
2399 if (iter->idx < 0)
2400 ent = trace_find_next_entry_inc(iter);
2401 else
2402 ent = iter;
2403
2404 while (ent && iter->idx < i)
2405 ent = trace_find_next_entry_inc(iter);
2406
2407 iter->pos = *pos;
2408
2409 return ent;
2410 }
2411
2412 void tracing_iter_reset(struct trace_iterator *iter, int cpu)
2413 {
2414 struct ring_buffer_event *event;
2415 struct ring_buffer_iter *buf_iter;
2416 unsigned long entries = 0;
2417 u64 ts;
2418
2419 per_cpu_ptr(iter->trace_buffer->data, cpu)->skipped_entries = 0;
2420
2421 buf_iter = trace_buffer_iter(iter, cpu);
2422 if (!buf_iter)
2423 return;
2424
2425 ring_buffer_iter_reset(buf_iter);
2426
2427 /*
2428 * We could have the case with the max latency tracers
2429 * that a reset never took place on a cpu. This is evident
2430 * by the timestamp being before the start of the buffer.
2431 */
2432 while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
2433 if (ts >= iter->trace_buffer->time_start)
2434 break;
2435 entries++;
2436 ring_buffer_read(buf_iter, NULL);
2437 }
2438
2439 per_cpu_ptr(iter->trace_buffer->data, cpu)->skipped_entries = entries;
2440 }
2441
2442 /*
2443 * The current tracer is copied to avoid a global locking
2444 * all around.
2445 */
2446 static void *s_start(struct seq_file *m, loff_t *pos)
2447 {
2448 struct trace_iterator *iter = m->private;
2449 struct trace_array *tr = iter->tr;
2450 int cpu_file = iter->cpu_file;
2451 void *p = NULL;
2452 loff_t l = 0;
2453 int cpu;
2454
2455 /*
2456 * copy the tracer to avoid using a global lock all around.
2457 * iter->trace is a copy of current_trace, the pointer to the
2458 * name may be used instead of a strcmp(), as iter->trace->name
2459 * will point to the same string as current_trace->name.
2460 */
2461 mutex_lock(&trace_types_lock);
2462 if (unlikely(tr->current_trace && iter->trace->name != tr->current_trace->name))
2463 *iter->trace = *tr->current_trace;
2464 mutex_unlock(&trace_types_lock);
2465
2466 #ifdef CONFIG_TRACER_MAX_TRACE
2467 if (iter->snapshot && iter->trace->use_max_tr)
2468 return ERR_PTR(-EBUSY);
2469 #endif
2470
2471 if (!iter->snapshot)
2472 atomic_inc(&trace_record_cmdline_disabled);
2473
2474 if (*pos != iter->pos) {
2475 iter->ent = NULL;
2476 iter->cpu = 0;
2477 iter->idx = -1;
2478
2479 if (cpu_file == RING_BUFFER_ALL_CPUS) {
2480 for_each_tracing_cpu(cpu)
2481 tracing_iter_reset(iter, cpu);
2482 } else
2483 tracing_iter_reset(iter, cpu_file);
2484
2485 iter->leftover = 0;
2486 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
2487 ;
2488
2489 } else {
2490 /*
2491 * If we overflowed the seq_file before, then we want
2492 * to just reuse the trace_seq buffer again.
2493 */
2494 if (iter->leftover)
2495 p = iter;
2496 else {
2497 l = *pos - 1;
2498 p = s_next(m, p, &l);
2499 }
2500 }
2501
2502 trace_event_read_lock();
2503 trace_access_lock(cpu_file);
2504 return p;
2505 }
2506
2507 static void s_stop(struct seq_file *m, void *p)
2508 {
2509 struct trace_iterator *iter = m->private;
2510
2511 #ifdef CONFIG_TRACER_MAX_TRACE
2512 if (iter->snapshot && iter->trace->use_max_tr)
2513 return;
2514 #endif
2515
2516 if (!iter->snapshot)
2517 atomic_dec(&trace_record_cmdline_disabled);
2518
2519 trace_access_unlock(iter->cpu_file);
2520 trace_event_read_unlock();
2521 }
2522
2523 static void
2524 get_total_entries(struct trace_buffer *buf,
2525 unsigned long *total, unsigned long *entries)
2526 {
2527 unsigned long count;
2528 int cpu;
2529
2530 *total = 0;
2531 *entries = 0;
2532
2533 for_each_tracing_cpu(cpu) {
2534 count = ring_buffer_entries_cpu(buf->buffer, cpu);
2535 /*
2536 * If this buffer has skipped entries, then we hold all
2537 * entries for the trace and we need to ignore the
2538 * ones before the time stamp.
2539 */
2540 if (per_cpu_ptr(buf->data, cpu)->skipped_entries) {
2541 count -= per_cpu_ptr(buf->data, cpu)->skipped_entries;
2542 /* total is the same as the entries */
2543 *total += count;
2544 } else
2545 *total += count +
2546 ring_buffer_overrun_cpu(buf->buffer, cpu);
2547 *entries += count;
2548 }
2549 }
2550
2551 static void print_lat_help_header(struct seq_file *m)
2552 {
2553 seq_puts(m, "# _------=> CPU# \n"
2554 "# / _-----=> irqs-off \n"
2555 "# | / _----=> need-resched \n"
2556 "# || / _---=> hardirq/softirq \n"
2557 "# ||| / _--=> preempt-depth \n"
2558 "# |||| / delay \n"
2559 "# cmd pid ||||| time | caller \n"
2560 "# \\ / ||||| \\ | / \n");
2561 }
2562
2563 static void print_event_info(struct trace_buffer *buf, struct seq_file *m)
2564 {
2565 unsigned long total;
2566 unsigned long entries;
2567
2568 get_total_entries(buf, &total, &entries);
2569 seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n",
2570 entries, total, num_online_cpus());
2571 seq_puts(m, "#\n");
2572 }
2573
2574 static void print_func_help_header(struct trace_buffer *buf, struct seq_file *m)
2575 {
2576 print_event_info(buf, m);
2577 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n"
2578 "# | | | | |\n");
2579 }
2580
2581 static void print_func_help_header_irq(struct trace_buffer *buf, struct seq_file *m)
2582 {
2583 print_event_info(buf, m);
2584 seq_puts(m, "# _-----=> irqs-off\n"
2585 "# / _----=> need-resched\n"
2586 "# | / _---=> hardirq/softirq\n"
2587 "# || / _--=> preempt-depth\n"
2588 "# ||| / delay\n"
2589 "# TASK-PID CPU# |||| TIMESTAMP FUNCTION\n"
2590 "# | | | |||| | |\n");
2591 }
2592
2593 void
2594 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
2595 {
2596 unsigned long sym_flags = (global_trace.trace_flags & TRACE_ITER_SYM_MASK);
2597 struct trace_buffer *buf = iter->trace_buffer;
2598 struct trace_array_cpu *data = per_cpu_ptr(buf->data, buf->cpu);
2599 struct tracer *type = iter->trace;
2600 unsigned long entries;
2601 unsigned long total;
2602 const char *name = "preemption";
2603
2604 name = type->name;
2605
2606 get_total_entries(buf, &total, &entries);
2607
2608 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
2609 name, UTS_RELEASE);
2610 seq_puts(m, "# -----------------------------------"
2611 "---------------------------------\n");
2612 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
2613 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
2614 nsecs_to_usecs(data->saved_latency),
2615 entries,
2616 total,
2617 buf->cpu,
2618 #if defined(CONFIG_PREEMPT_NONE)
2619 "server",
2620 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
2621 "desktop",
2622 #elif defined(CONFIG_PREEMPT)
2623 "preempt",
2624 #else
2625 "unknown",
2626 #endif
2627 /* These are reserved for later use */
2628 0, 0, 0, 0);
2629 #ifdef CONFIG_SMP
2630 seq_printf(m, " #P:%d)\n", num_online_cpus());
2631 #else
2632 seq_puts(m, ")\n");
2633 #endif
2634 seq_puts(m, "# -----------------\n");
2635 seq_printf(m, "# | task: %.16s-%d "
2636 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
2637 data->comm, data->pid,
2638 from_kuid_munged(seq_user_ns(m), data->uid), data->nice,
2639 data->policy, data->rt_priority);
2640 seq_puts(m, "# -----------------\n");
2641
2642 if (data->critical_start) {
2643 seq_puts(m, "# => started at: ");
2644 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
2645 trace_print_seq(m, &iter->seq);
2646 seq_puts(m, "\n# => ended at: ");
2647 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
2648 trace_print_seq(m, &iter->seq);
2649 seq_puts(m, "\n#\n");
2650 }
2651
2652 seq_puts(m, "#\n");
2653 }
2654
2655 static void test_cpu_buff_start(struct trace_iterator *iter)
2656 {
2657 struct trace_seq *s = &iter->seq;
2658 struct trace_array *tr = iter->tr;
2659
2660 if (!(tr->trace_flags & TRACE_ITER_ANNOTATE))
2661 return;
2662
2663 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
2664 return;
2665
2666 if (cpumask_test_cpu(iter->cpu, iter->started))
2667 return;
2668
2669 if (per_cpu_ptr(iter->trace_buffer->data, iter->cpu)->skipped_entries)
2670 return;
2671
2672 cpumask_set_cpu(iter->cpu, iter->started);
2673
2674 /* Don't print started cpu buffer for the first entry of the trace */
2675 if (iter->idx > 1)
2676 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
2677 iter->cpu);
2678 }
2679
2680 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
2681 {
2682 struct trace_array *tr = iter->tr;
2683 struct trace_seq *s = &iter->seq;
2684 unsigned long sym_flags = (tr->trace_flags & TRACE_ITER_SYM_MASK);
2685 struct trace_entry *entry;
2686 struct trace_event *event;
2687
2688 entry = iter->ent;
2689
2690 test_cpu_buff_start(iter);
2691
2692 event = ftrace_find_event(entry->type);
2693
2694 if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
2695 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
2696 trace_print_lat_context(iter);
2697 else
2698 trace_print_context(iter);
2699 }
2700
2701 if (trace_seq_has_overflowed(s))
2702 return TRACE_TYPE_PARTIAL_LINE;
2703
2704 if (event)
2705 return event->funcs->trace(iter, sym_flags, event);
2706
2707 trace_seq_printf(s, "Unknown type %d\n", entry->type);
2708
2709 return trace_handle_return(s);
2710 }
2711
2712 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
2713 {
2714 struct trace_array *tr = iter->tr;
2715 struct trace_seq *s = &iter->seq;
2716 struct trace_entry *entry;
2717 struct trace_event *event;
2718
2719 entry = iter->ent;
2720
2721 if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO)
2722 trace_seq_printf(s, "%d %d %llu ",
2723 entry->pid, iter->cpu, iter->ts);
2724
2725 if (trace_seq_has_overflowed(s))
2726 return TRACE_TYPE_PARTIAL_LINE;
2727
2728 event = ftrace_find_event(entry->type);
2729 if (event)
2730 return event->funcs->raw(iter, 0, event);
2731
2732 trace_seq_printf(s, "%d ?\n", entry->type);
2733
2734 return trace_handle_return(s);
2735 }
2736
2737 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
2738 {
2739 struct trace_array *tr = iter->tr;
2740 struct trace_seq *s = &iter->seq;
2741 unsigned char newline = '\n';
2742 struct trace_entry *entry;
2743 struct trace_event *event;
2744
2745 entry = iter->ent;
2746
2747 if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
2748 SEQ_PUT_HEX_FIELD(s, entry->pid);
2749 SEQ_PUT_HEX_FIELD(s, iter->cpu);
2750 SEQ_PUT_HEX_FIELD(s, iter->ts);
2751 if (trace_seq_has_overflowed(s))
2752 return TRACE_TYPE_PARTIAL_LINE;
2753 }
2754
2755 event = ftrace_find_event(entry->type);
2756 if (event) {
2757 enum print_line_t ret = event->funcs->hex(iter, 0, event);
2758 if (ret != TRACE_TYPE_HANDLED)
2759 return ret;
2760 }
2761
2762 SEQ_PUT_FIELD(s, newline);
2763
2764 return trace_handle_return(s);
2765 }
2766
2767 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
2768 {
2769 struct trace_array *tr = iter->tr;
2770 struct trace_seq *s = &iter->seq;
2771 struct trace_entry *entry;
2772 struct trace_event *event;
2773
2774 entry = iter->ent;
2775
2776 if (tr->trace_flags & TRACE_ITER_CONTEXT_INFO) {
2777 SEQ_PUT_FIELD(s, entry->pid);
2778 SEQ_PUT_FIELD(s, iter->cpu);
2779 SEQ_PUT_FIELD(s, iter->ts);
2780 if (trace_seq_has_overflowed(s))
2781 return TRACE_TYPE_PARTIAL_LINE;
2782 }
2783
2784 event = ftrace_find_event(entry->type);
2785 return event ? event->funcs->binary(iter, 0, event) :
2786 TRACE_TYPE_HANDLED;
2787 }
2788
2789 int trace_empty(struct trace_iterator *iter)
2790 {
2791 struct ring_buffer_iter *buf_iter;
2792 int cpu;
2793
2794 /* If we are looking at one CPU buffer, only check that one */
2795 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
2796 cpu = iter->cpu_file;
2797 buf_iter = trace_buffer_iter(iter, cpu);
2798 if (buf_iter) {
2799 if (!ring_buffer_iter_empty(buf_iter))
2800 return 0;
2801 } else {
2802 if (!ring_buffer_empty_cpu(iter->trace_buffer->buffer, cpu))
2803 return 0;
2804 }
2805 return 1;
2806 }
2807
2808 for_each_tracing_cpu(cpu) {
2809 buf_iter = trace_buffer_iter(iter, cpu);
2810 if (buf_iter) {
2811 if (!ring_buffer_iter_empty(buf_iter))
2812 return 0;
2813 } else {
2814 if (!ring_buffer_empty_cpu(iter->trace_buffer->buffer, cpu))
2815 return 0;
2816 }
2817 }
2818
2819 return 1;
2820 }
2821
2822 /* Called with trace_event_read_lock() held. */
2823 enum print_line_t print_trace_line(struct trace_iterator *iter)
2824 {
2825 struct trace_array *tr = iter->tr;
2826 unsigned long trace_flags = tr->trace_flags;
2827 enum print_line_t ret;
2828
2829 if (iter->lost_events) {
2830 trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
2831 iter->cpu, iter->lost_events);
2832 if (trace_seq_has_overflowed(&iter->seq))
2833 return TRACE_TYPE_PARTIAL_LINE;
2834 }
2835
2836 if (iter->trace && iter->trace->print_line) {
2837 ret = iter->trace->print_line(iter);
2838 if (ret != TRACE_TYPE_UNHANDLED)
2839 return ret;
2840 }
2841
2842 if (iter->ent->type == TRACE_BPUTS &&
2843 trace_flags & TRACE_ITER_PRINTK &&
2844 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2845 return trace_print_bputs_msg_only(iter);
2846
2847 if (iter->ent->type == TRACE_BPRINT &&
2848 trace_flags & TRACE_ITER_PRINTK &&
2849 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2850 return trace_print_bprintk_msg_only(iter);
2851
2852 if (iter->ent->type == TRACE_PRINT &&
2853 trace_flags & TRACE_ITER_PRINTK &&
2854 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2855 return trace_print_printk_msg_only(iter);
2856
2857 if (trace_flags & TRACE_ITER_BIN)
2858 return print_bin_fmt(iter);
2859
2860 if (trace_flags & TRACE_ITER_HEX)
2861 return print_hex_fmt(iter);
2862
2863 if (trace_flags & TRACE_ITER_RAW)
2864 return print_raw_fmt(iter);
2865
2866 return print_trace_fmt(iter);
2867 }
2868
2869 void trace_latency_header(struct seq_file *m)
2870 {
2871 struct trace_iterator *iter = m->private;
2872 struct trace_array *tr = iter->tr;
2873
2874 /* print nothing if the buffers are empty */
2875 if (trace_empty(iter))
2876 return;
2877
2878 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
2879 print_trace_header(m, iter);
2880
2881 if (!(tr->trace_flags & TRACE_ITER_VERBOSE))
2882 print_lat_help_header(m);
2883 }
2884
2885 void trace_default_header(struct seq_file *m)
2886 {
2887 struct trace_iterator *iter = m->private;
2888 struct trace_array *tr = iter->tr;
2889 unsigned long trace_flags = tr->trace_flags;
2890
2891 if (!(trace_flags & TRACE_ITER_CONTEXT_INFO))
2892 return;
2893
2894 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2895 /* print nothing if the buffers are empty */
2896 if (trace_empty(iter))
2897 return;
2898 print_trace_header(m, iter);
2899 if (!(trace_flags & TRACE_ITER_VERBOSE))
2900 print_lat_help_header(m);
2901 } else {
2902 if (!(trace_flags & TRACE_ITER_VERBOSE)) {
2903 if (trace_flags & TRACE_ITER_IRQ_INFO)
2904 print_func_help_header_irq(iter->trace_buffer, m);
2905 else
2906 print_func_help_header(iter->trace_buffer, m);
2907 }
2908 }
2909 }
2910
2911 static void test_ftrace_alive(struct seq_file *m)
2912 {
2913 if (!ftrace_is_dead())
2914 return;
2915 seq_puts(m, "# WARNING: FUNCTION TRACING IS CORRUPTED\n"
2916 "# MAY BE MISSING FUNCTION EVENTS\n");
2917 }
2918
2919 #ifdef CONFIG_TRACER_MAX_TRACE
2920 static void show_snapshot_main_help(struct seq_file *m)
2921 {
2922 seq_puts(m, "# echo 0 > snapshot : Clears and frees snapshot buffer\n"
2923 "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n"
2924 "# Takes a snapshot of the main buffer.\n"
2925 "# echo 2 > snapshot : Clears snapshot buffer (but does not allocate or free)\n"
2926 "# (Doesn't have to be '2' works with any number that\n"
2927 "# is not a '0' or '1')\n");
2928 }
2929
2930 static void show_snapshot_percpu_help(struct seq_file *m)
2931 {
2932 seq_puts(m, "# echo 0 > snapshot : Invalid for per_cpu snapshot file.\n");
2933 #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
2934 seq_puts(m, "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n"
2935 "# Takes a snapshot of the main buffer for this cpu.\n");
2936 #else
2937 seq_puts(m, "# echo 1 > snapshot : Not supported with this kernel.\n"
2938 "# Must use main snapshot file to allocate.\n");
2939 #endif
2940 seq_puts(m, "# echo 2 > snapshot : Clears this cpu's snapshot buffer (but does not allocate)\n"
2941 "# (Doesn't have to be '2' works with any number that\n"
2942 "# is not a '0' or '1')\n");
2943 }
2944
2945 static void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter)
2946 {
2947 if (iter->tr->allocated_snapshot)
2948 seq_puts(m, "#\n# * Snapshot is allocated *\n#\n");
2949 else
2950 seq_puts(m, "#\n# * Snapshot is freed *\n#\n");
2951
2952 seq_puts(m, "# Snapshot commands:\n");
2953 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
2954 show_snapshot_main_help(m);
2955 else
2956 show_snapshot_percpu_help(m);
2957 }
2958 #else
2959 /* Should never be called */
2960 static inline void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) { }
2961 #endif
2962
2963 static int s_show(struct seq_file *m, void *v)
2964 {
2965 struct trace_iterator *iter = v;
2966 int ret;
2967
2968 if (iter->ent == NULL) {
2969 if (iter->tr) {
2970 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2971 seq_puts(m, "#\n");
2972 test_ftrace_alive(m);
2973 }
2974 if (iter->snapshot && trace_empty(iter))
2975 print_snapshot_help(m, iter);
2976 else if (iter->trace && iter->trace->print_header)
2977 iter->trace->print_header(m);
2978 else
2979 trace_default_header(m);
2980
2981 } else if (iter->leftover) {
2982 /*
2983 * If we filled the seq_file buffer earlier, we
2984 * want to just show it now.
2985 */
2986 ret = trace_print_seq(m, &iter->seq);
2987
2988 /* ret should this time be zero, but you never know */
2989 iter->leftover = ret;
2990
2991 } else {
2992 print_trace_line(iter);
2993 ret = trace_print_seq(m, &iter->seq);
2994 /*
2995 * If we overflow the seq_file buffer, then it will
2996 * ask us for this data again at start up.
2997 * Use that instead.
2998 * ret is 0 if seq_file write succeeded.
2999 * -1 otherwise.
3000 */
3001 iter->leftover = ret;
3002 }
3003
3004 return 0;
3005 }
3006
3007 /*
3008 * Should be used after trace_array_get(), trace_types_lock
3009 * ensures that i_cdev was already initialized.
3010 */
3011 static inline int tracing_get_cpu(struct inode *inode)
3012 {
3013 if (inode->i_cdev) /* See trace_create_cpu_file() */
3014 return (long)inode->i_cdev - 1;
3015 return RING_BUFFER_ALL_CPUS;
3016 }
3017
3018 static const struct seq_operations tracer_seq_ops = {
3019 .start = s_start,
3020 .next = s_next,
3021 .stop = s_stop,
3022 .show = s_show,
3023 };
3024
3025 static struct trace_iterator *
3026 __tracing_open(struct inode *inode, struct file *file, bool snapshot)
3027 {
3028 struct trace_array *tr = inode->i_private;
3029 struct trace_iterator *iter;
3030 int cpu;
3031
3032 if (tracing_disabled)
3033 return ERR_PTR(-ENODEV);
3034
3035 iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter));
3036 if (!iter)
3037 return ERR_PTR(-ENOMEM);
3038
3039 iter->buffer_iter = kcalloc(nr_cpu_ids, sizeof(*iter->buffer_iter),
3040 GFP_KERNEL);
3041 if (!iter->buffer_iter)
3042 goto release;
3043
3044 /*
3045 * We make a copy of the current tracer to avoid concurrent
3046 * changes on it while we are reading.
3047 */
3048 mutex_lock(&trace_types_lock);
3049 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
3050 if (!iter->trace)
3051 goto fail;
3052
3053 *iter->trace = *tr->current_trace;
3054
3055 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
3056 goto fail;
3057
3058 iter->tr = tr;
3059
3060 #ifdef CONFIG_TRACER_MAX_TRACE
3061 /* Currently only the top directory has a snapshot */
3062 if (tr->current_trace->print_max || snapshot)
3063 iter->trace_buffer = &tr->max_buffer;
3064 else
3065 #endif
3066 iter->trace_buffer = &tr->trace_buffer;
3067 iter->snapshot = snapshot;
3068 iter->pos = -1;
3069 iter->cpu_file = tracing_get_cpu(inode);
3070 mutex_init(&iter->mutex);
3071
3072 /* Notify the tracer early; before we stop tracing. */
3073 if (iter->trace && iter->trace->open)
3074 iter->trace->open(iter);
3075
3076 /* Annotate start of buffers if we had overruns */
3077 if (ring_buffer_overruns(iter->trace_buffer->buffer))
3078 iter->iter_flags |= TRACE_FILE_ANNOTATE;
3079
3080 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
3081 if (trace_clocks[tr->clock_id].in_ns)
3082 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
3083
3084 /* stop the trace while dumping if we are not opening "snapshot" */
3085 if (!iter->snapshot)
3086 tracing_stop_tr(tr);
3087
3088 if (iter->cpu_file == RING_BUFFER_ALL_CPUS) {
3089 for_each_tracing_cpu(cpu) {
3090 iter->buffer_iter[cpu] =
3091 ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu);
3092 }
3093 ring_buffer_read_prepare_sync();
3094 for_each_tracing_cpu(cpu) {
3095 ring_buffer_read_start(iter->buffer_iter[cpu]);
3096 tracing_iter_reset(iter, cpu);
3097 }
3098 } else {
3099 cpu = iter->cpu_file;
3100 iter->buffer_iter[cpu] =
3101 ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu);
3102 ring_buffer_read_prepare_sync();
3103 ring_buffer_read_start(iter->buffer_iter[cpu]);
3104 tracing_iter_reset(iter, cpu);
3105 }
3106
3107 mutex_unlock(&trace_types_lock);
3108
3109 return iter;
3110
3111 fail:
3112 mutex_unlock(&trace_types_lock);
3113 kfree(iter->trace);
3114 kfree(iter->buffer_iter);
3115 release:
3116 seq_release_private(inode, file);
3117 return ERR_PTR(-ENOMEM);
3118 }
3119
3120 int tracing_open_generic(struct inode *inode, struct file *filp)
3121 {
3122 if (tracing_disabled)
3123 return -ENODEV;
3124
3125 filp->private_data = inode->i_private;
3126 return 0;
3127 }
3128
3129 bool tracing_is_disabled(void)
3130 {
3131 return (tracing_disabled) ? true: false;
3132 }
3133
3134 /*
3135 * Open and update trace_array ref count.
3136 * Must have the current trace_array passed to it.
3137 */
3138 static int tracing_open_generic_tr(struct inode *inode, struct file *filp)
3139 {
3140 struct trace_array *tr = inode->i_private;
3141
3142 if (tracing_disabled)
3143 return -ENODEV;
3144
3145 if (trace_array_get(tr) < 0)
3146 return -ENODEV;
3147
3148 filp->private_data = inode->i_private;
3149
3150 return 0;
3151 }
3152
3153 static int tracing_release(struct inode *inode, struct file *file)
3154 {
3155 struct trace_array *tr = inode->i_private;
3156 struct seq_file *m = file->private_data;
3157 struct trace_iterator *iter;
3158 int cpu;
3159
3160 if (!(file->f_mode & FMODE_READ)) {
3161 trace_array_put(tr);
3162 return 0;
3163 }
3164
3165 /* Writes do not use seq_file */
3166 iter = m->private;
3167 mutex_lock(&trace_types_lock);
3168
3169 for_each_tracing_cpu(cpu) {
3170 if (iter->buffer_iter[cpu])
3171 ring_buffer_read_finish(iter->buffer_iter[cpu]);
3172 }
3173
3174 if (iter->trace && iter->trace->close)
3175 iter->trace->close(iter);
3176
3177 if (!iter->snapshot)
3178 /* reenable tracing if it was previously enabled */
3179 tracing_start_tr(tr);
3180
3181 __trace_array_put(tr);
3182
3183 mutex_unlock(&trace_types_lock);
3184
3185 mutex_destroy(&iter->mutex);
3186 free_cpumask_var(iter->started);
3187 kfree(iter->trace);
3188 kfree(iter->buffer_iter);
3189 seq_release_private(inode, file);
3190
3191 return 0;
3192 }
3193
3194 static int tracing_release_generic_tr(struct inode *inode, struct file *file)
3195 {
3196 struct trace_array *tr = inode->i_private;
3197
3198 trace_array_put(tr);
3199 return 0;
3200 }
3201
3202 static int tracing_single_release_tr(struct inode *inode, struct file *file)
3203 {
3204 struct trace_array *tr = inode->i_private;
3205
3206 trace_array_put(tr);
3207
3208 return single_release(inode, file);
3209 }
3210
3211 static int tracing_open(struct inode *inode, struct file *file)
3212 {
3213 struct trace_array *tr = inode->i_private;
3214 struct trace_iterator *iter;
3215 int ret = 0;
3216
3217 if (trace_array_get(tr) < 0)
3218 return -ENODEV;
3219
3220 /* If this file was open for write, then erase contents */
3221 if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
3222 int cpu = tracing_get_cpu(inode);
3223
3224 if (cpu == RING_BUFFER_ALL_CPUS)
3225 tracing_reset_online_cpus(&tr->trace_buffer);
3226 else
3227 tracing_reset(&tr->trace_buffer, cpu);
3228 }
3229
3230 if (file->f_mode & FMODE_READ) {
3231 iter = __tracing_open(inode, file, false);
3232 if (IS_ERR(iter))
3233 ret = PTR_ERR(iter);
3234 else if (tr->trace_flags & TRACE_ITER_LATENCY_FMT)
3235 iter->iter_flags |= TRACE_FILE_LAT_FMT;
3236 }
3237
3238 if (ret < 0)
3239 trace_array_put(tr);
3240
3241 return ret;
3242 }
3243
3244 /*
3245 * Some tracers are not suitable for instance buffers.
3246 * A tracer is always available for the global array (toplevel)
3247 * or if it explicitly states that it is.
3248 */
3249 static bool
3250 trace_ok_for_array(struct tracer *t, struct trace_array *tr)
3251 {
3252 return (tr->flags & TRACE_ARRAY_FL_GLOBAL) || t->allow_instances;
3253 }
3254
3255 /* Find the next tracer that this trace array may use */
3256 static struct tracer *
3257 get_tracer_for_array(struct trace_array *tr, struct tracer *t)
3258 {
3259 while (t && !trace_ok_for_array(t, tr))
3260 t = t->next;
3261
3262 return t;
3263 }
3264
3265 static void *
3266 t_next(struct seq_file *m, void *v, loff_t *pos)
3267 {
3268 struct trace_array *tr = m->private;
3269 struct tracer *t = v;
3270
3271 (*pos)++;
3272
3273 if (t)
3274 t = get_tracer_for_array(tr, t->next);
3275
3276 return t;
3277 }
3278
3279 static void *t_start(struct seq_file *m, loff_t *pos)
3280 {
3281 struct trace_array *tr = m->private;
3282 struct tracer *t;
3283 loff_t l = 0;
3284
3285 mutex_lock(&trace_types_lock);
3286
3287 t = get_tracer_for_array(tr, trace_types);
3288 for (; t && l < *pos; t = t_next(m, t, &l))
3289 ;
3290
3291 return t;
3292 }
3293
3294 static void t_stop(struct seq_file *m, void *p)
3295 {
3296 mutex_unlock(&trace_types_lock);
3297 }
3298
3299 static int t_show(struct seq_file *m, void *v)
3300 {
3301 struct tracer *t = v;
3302
3303 if (!t)
3304 return 0;
3305
3306 seq_puts(m, t->name);
3307 if (t->next)
3308 seq_putc(m, ' ');
3309 else
3310 seq_putc(m, '\n');
3311
3312 return 0;
3313 }
3314
3315 static const struct seq_operations show_traces_seq_ops = {
3316 .start = t_start,
3317 .next = t_next,
3318 .stop = t_stop,
3319 .show = t_show,
3320 };
3321
3322 static int show_traces_open(struct inode *inode, struct file *file)
3323 {
3324 struct trace_array *tr = inode->i_private;
3325 struct seq_file *m;
3326 int ret;
3327
3328 if (tracing_disabled)
3329 return -ENODEV;
3330
3331 ret = seq_open(file, &show_traces_seq_ops);
3332 if (ret)
3333 return ret;
3334
3335 m = file->private_data;
3336 m->private = tr;
3337
3338 return 0;
3339 }
3340
3341 static ssize_t
3342 tracing_write_stub(struct file *filp, const char __user *ubuf,
3343 size_t count, loff_t *ppos)
3344 {
3345 return count;
3346 }
3347
3348 loff_t tracing_lseek(struct file *file, loff_t offset, int whence)
3349 {
3350 int ret;
3351
3352 if (file->f_mode & FMODE_READ)
3353 ret = seq_lseek(file, offset, whence);
3354 else
3355 file->f_pos = ret = 0;
3356
3357 return ret;
3358 }
3359
3360 static const struct file_operations tracing_fops = {
3361 .open = tracing_open,
3362 .read = seq_read,
3363 .write = tracing_write_stub,
3364 .llseek = tracing_lseek,
3365 .release = tracing_release,
3366 };
3367
3368 static const struct file_operations show_traces_fops = {
3369 .open = show_traces_open,
3370 .read = seq_read,
3371 .release = seq_release,
3372 .llseek = seq_lseek,
3373 };
3374
3375 /*
3376 * The tracer itself will not take this lock, but still we want
3377 * to provide a consistent cpumask to user-space:
3378 */
3379 static DEFINE_MUTEX(tracing_cpumask_update_lock);
3380
3381 /*
3382 * Temporary storage for the character representation of the
3383 * CPU bitmask (and one more byte for the newline):
3384 */
3385 static char mask_str[NR_CPUS + 1];
3386
3387 static ssize_t
3388 tracing_cpumask_read(struct file *filp, char __user *ubuf,
3389 size_t count, loff_t *ppos)
3390 {
3391 struct trace_array *tr = file_inode(filp)->i_private;
3392 int len;
3393
3394 mutex_lock(&tracing_cpumask_update_lock);
3395
3396 len = snprintf(mask_str, count, "%*pb\n",
3397 cpumask_pr_args(tr->tracing_cpumask));
3398 if (len >= count) {
3399 count = -EINVAL;
3400 goto out_err;
3401 }
3402 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
3403
3404 out_err:
3405 mutex_unlock(&tracing_cpumask_update_lock);
3406
3407 return count;
3408 }
3409
3410 static ssize_t
3411 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
3412 size_t count, loff_t *ppos)
3413 {
3414 struct trace_array *tr = file_inode(filp)->i_private;
3415 cpumask_var_t tracing_cpumask_new;
3416 int err, cpu;
3417
3418 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
3419 return -ENOMEM;
3420
3421 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
3422 if (err)
3423 goto err_unlock;
3424
3425 mutex_lock(&tracing_cpumask_update_lock);
3426
3427 local_irq_disable();
3428 arch_spin_lock(&tr->max_lock);
3429 for_each_tracing_cpu(cpu) {
3430 /*
3431 * Increase/decrease the disabled counter if we are
3432 * about to flip a bit in the cpumask:
3433 */
3434 if (cpumask_test_cpu(cpu, tr->tracing_cpumask) &&
3435 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
3436 atomic_inc(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled);
3437 ring_buffer_record_disable_cpu(tr->trace_buffer.buffer, cpu);
3438 }
3439 if (!cpumask_test_cpu(cpu, tr->tracing_cpumask) &&
3440 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
3441 atomic_dec(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled);
3442 ring_buffer_record_enable_cpu(tr->trace_buffer.buffer, cpu);
3443 }
3444 }
3445 arch_spin_unlock(&tr->max_lock);
3446 local_irq_enable();
3447
3448 cpumask_copy(tr->tracing_cpumask, tracing_cpumask_new);
3449
3450 mutex_unlock(&tracing_cpumask_update_lock);
3451 free_cpumask_var(tracing_cpumask_new);
3452
3453 return count;
3454
3455 err_unlock:
3456 free_cpumask_var(tracing_cpumask_new);
3457
3458 return err;
3459 }
3460
3461 static const struct file_operations tracing_cpumask_fops = {
3462 .open = tracing_open_generic_tr,
3463 .read = tracing_cpumask_read,
3464 .write = tracing_cpumask_write,
3465 .release = tracing_release_generic_tr,
3466 .llseek = generic_file_llseek,
3467 };
3468
3469 static int tracing_trace_options_show(struct seq_file *m, void *v)
3470 {
3471 struct tracer_opt *trace_opts;
3472 struct trace_array *tr = m->private;
3473 u32 tracer_flags;
3474 int i;
3475
3476 mutex_lock(&trace_types_lock);
3477 tracer_flags = tr->current_trace->flags->val;
3478 trace_opts = tr->current_trace->flags->opts;
3479
3480 for (i = 0; trace_options[i]; i++) {
3481 if (tr->trace_flags & (1 << i))
3482 seq_printf(m, "%s\n", trace_options[i]);
3483 else
3484 seq_printf(m, "no%s\n", trace_options[i]);
3485 }
3486
3487 for (i = 0; trace_opts[i].name; i++) {
3488 if (tracer_flags & trace_opts[i].bit)
3489 seq_printf(m, "%s\n", trace_opts[i].name);
3490 else
3491 seq_printf(m, "no%s\n", trace_opts[i].name);
3492 }
3493 mutex_unlock(&trace_types_lock);
3494
3495 return 0;
3496 }
3497
3498 static int __set_tracer_option(struct trace_array *tr,
3499 struct tracer_flags *tracer_flags,
3500 struct tracer_opt *opts, int neg)
3501 {
3502 struct tracer *trace = tr->current_trace;
3503 int ret;
3504
3505 ret = trace->set_flag(tr, tracer_flags->val, opts->bit, !neg);
3506 if (ret)
3507 return ret;
3508
3509 if (neg)
3510 tracer_flags->val &= ~opts->bit;
3511 else
3512 tracer_flags->val |= opts->bit;
3513 return 0;
3514 }
3515
3516 /* Try to assign a tracer specific option */
3517 static int set_tracer_option(struct trace_array *tr, char *cmp, int neg)
3518 {
3519 struct tracer *trace = tr->current_trace;
3520 struct tracer_flags *tracer_flags = trace->flags;
3521 struct tracer_opt *opts = NULL;
3522 int i;
3523
3524 for (i = 0; tracer_flags->opts[i].name; i++) {
3525 opts = &tracer_flags->opts[i];
3526
3527 if (strcmp(cmp, opts->name) == 0)
3528 return __set_tracer_option(tr, trace->flags, opts, neg);
3529 }
3530
3531 return -EINVAL;
3532 }
3533
3534 /* Some tracers require overwrite to stay enabled */
3535 int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set)
3536 {
3537 if (tracer->enabled && (mask & TRACE_ITER_OVERWRITE) && !set)
3538 return -1;
3539
3540 return 0;
3541 }
3542
3543 int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled)
3544 {
3545 /* do nothing if flag is already set */
3546 if (!!(tr->trace_flags & mask) == !!enabled)
3547 return 0;
3548
3549 /* Give the tracer a chance to approve the change */
3550 if (tr->current_trace->flag_changed)
3551 if (tr->current_trace->flag_changed(tr, mask, !!enabled))
3552 return -EINVAL;
3553
3554 if (enabled)
3555 tr->trace_flags |= mask;
3556 else
3557 tr->trace_flags &= ~mask;
3558
3559 if (mask == TRACE_ITER_RECORD_CMD)
3560 trace_event_enable_cmd_record(enabled);
3561
3562 if (mask == TRACE_ITER_OVERWRITE) {
3563 ring_buffer_change_overwrite(tr->trace_buffer.buffer, enabled);
3564 #ifdef CONFIG_TRACER_MAX_TRACE
3565 ring_buffer_change_overwrite(tr->max_buffer.buffer, enabled);
3566 #endif
3567 }
3568
3569 if (mask == TRACE_ITER_PRINTK) {
3570 trace_printk_start_stop_comm(enabled);
3571 trace_printk_control(enabled);
3572 }
3573
3574 return 0;
3575 }
3576
3577 static int trace_set_options(struct trace_array *tr, char *option)
3578 {
3579 char *cmp;
3580 int neg = 0;
3581 int ret = -ENODEV;
3582 int i;
3583
3584 cmp = strstrip(option);
3585
3586 if (strncmp(cmp, "no", 2) == 0) {
3587 neg = 1;
3588 cmp += 2;
3589 }
3590
3591 mutex_lock(&trace_types_lock);
3592
3593 for (i = 0; trace_options[i]; i++) {
3594 if (strcmp(cmp, trace_options[i]) == 0) {
3595 ret = set_tracer_flag(tr, 1 << i, !neg);
3596 break;
3597 }
3598 }
3599
3600 /* If no option could be set, test the specific tracer options */
3601 if (!trace_options[i])
3602 ret = set_tracer_option(tr, cmp, neg);
3603
3604 mutex_unlock(&trace_types_lock);
3605
3606 return ret;
3607 }
3608
3609 static ssize_t
3610 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
3611 size_t cnt, loff_t *ppos)
3612 {
3613 struct seq_file *m = filp->private_data;
3614 struct trace_array *tr = m->private;
3615 char buf[64];
3616 int ret;
3617
3618 if (cnt >= sizeof(buf))
3619 return -EINVAL;
3620
3621 if (copy_from_user(&buf, ubuf, cnt))
3622 return -EFAULT;
3623
3624 buf[cnt] = 0;
3625
3626 ret = trace_set_options(tr, buf);
3627 if (ret < 0)
3628 return ret;
3629
3630 *ppos += cnt;
3631
3632 return cnt;
3633 }
3634
3635 static int tracing_trace_options_open(struct inode *inode, struct file *file)
3636 {
3637 struct trace_array *tr = inode->i_private;
3638 int ret;
3639
3640 if (tracing_disabled)
3641 return -ENODEV;
3642
3643 if (trace_array_get(tr) < 0)
3644 return -ENODEV;
3645
3646 ret = single_open(file, tracing_trace_options_show, inode->i_private);
3647 if (ret < 0)
3648 trace_array_put(tr);
3649
3650 return ret;
3651 }
3652
3653 static const struct file_operations tracing_iter_fops = {
3654 .open = tracing_trace_options_open,
3655 .read = seq_read,
3656 .llseek = seq_lseek,
3657 .release = tracing_single_release_tr,
3658 .write = tracing_trace_options_write,
3659 };
3660
3661 static const char readme_msg[] =
3662 "tracing mini-HOWTO:\n\n"
3663 "# echo 0 > tracing_on : quick way to disable tracing\n"
3664 "# echo 1 > tracing_on : quick way to re-enable tracing\n\n"
3665 " Important files:\n"
3666 " trace\t\t\t- The static contents of the buffer\n"
3667 "\t\t\t To clear the buffer write into this file: echo > trace\n"
3668 " trace_pipe\t\t- A consuming read to see the contents of the buffer\n"
3669 " current_tracer\t- function and latency tracers\n"
3670 " available_tracers\t- list of configured tracers for current_tracer\n"
3671 " buffer_size_kb\t- view and modify size of per cpu buffer\n"
3672 " buffer_total_size_kb - view total size of all cpu buffers\n\n"
3673 " trace_clock\t\t-change the clock used to order events\n"
3674 " local: Per cpu clock but may not be synced across CPUs\n"
3675 " global: Synced across CPUs but slows tracing down.\n"
3676 " counter: Not a clock, but just an increment\n"
3677 " uptime: Jiffy counter from time of boot\n"
3678 " perf: Same clock that perf events use\n"
3679 #ifdef CONFIG_X86_64
3680 " x86-tsc: TSC cycle counter\n"
3681 #endif
3682 "\n trace_marker\t\t- Writes into this file writes into the kernel buffer\n"
3683 " tracing_cpumask\t- Limit which CPUs to trace\n"
3684 " instances\t\t- Make sub-buffers with: mkdir instances/foo\n"
3685 "\t\t\t Remove sub-buffer with rmdir\n"
3686 " trace_options\t\t- Set format or modify how tracing happens\n"
3687 "\t\t\t Disable an option by adding a suffix 'no' to the\n"
3688 "\t\t\t option name\n"
3689 " saved_cmdlines_size\t- echo command number in here to store comm-pid list\n"
3690 #ifdef CONFIG_DYNAMIC_FTRACE
3691 "\n available_filter_functions - list of functions that can be filtered on\n"
3692 " set_ftrace_filter\t- echo function name in here to only trace these\n"
3693 "\t\t\t functions\n"
3694 "\t accepts: func_full_name, *func_end, func_begin*, *func_middle*\n"
3695 "\t modules: Can select a group via module\n"
3696 "\t Format: :mod:<module-name>\n"
3697 "\t example: echo :mod:ext3 > set_ftrace_filter\n"
3698 "\t triggers: a command to perform when function is hit\n"
3699 "\t Format: <function>:<trigger>[:count]\n"
3700 "\t trigger: traceon, traceoff\n"
3701 "\t\t enable_event:<system>:<event>\n"
3702 "\t\t disable_event:<system>:<event>\n"
3703 #ifdef CONFIG_STACKTRACE
3704 "\t\t stacktrace\n"
3705 #endif
3706 #ifdef CONFIG_TRACER_SNAPSHOT
3707 "\t\t snapshot\n"
3708 #endif
3709 "\t\t dump\n"
3710 "\t\t cpudump\n"
3711 "\t example: echo do_fault:traceoff > set_ftrace_filter\n"
3712 "\t echo do_trap:traceoff:3 > set_ftrace_filter\n"
3713 "\t The first one will disable tracing every time do_fault is hit\n"
3714 "\t The second will disable tracing at most 3 times when do_trap is hit\n"
3715 "\t The first time do trap is hit and it disables tracing, the\n"
3716 "\t counter will decrement to 2. If tracing is already disabled,\n"
3717 "\t the counter will not decrement. It only decrements when the\n"
3718 "\t trigger did work\n"
3719 "\t To remove trigger without count:\n"
3720 "\t echo '!<function>:<trigger> > set_ftrace_filter\n"
3721 "\t To remove trigger with a count:\n"
3722 "\t echo '!<function>:<trigger>:0 > set_ftrace_filter\n"
3723 " set_ftrace_notrace\t- echo function name in here to never trace.\n"
3724 "\t accepts: func_full_name, *func_end, func_begin*, *func_middle*\n"
3725 "\t modules: Can select a group via module command :mod:\n"
3726 "\t Does not accept triggers\n"
3727 #endif /* CONFIG_DYNAMIC_FTRACE */
3728 #ifdef CONFIG_FUNCTION_TRACER
3729 " set_ftrace_pid\t- Write pid(s) to only function trace those pids\n"
3730 "\t\t (function)\n"
3731 #endif
3732 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3733 " set_graph_function\t- Trace the nested calls of a function (function_graph)\n"
3734 " set_graph_notrace\t- Do not trace the nested calls of a function (function_graph)\n"
3735 " max_graph_depth\t- Trace a limited depth of nested calls (0 is unlimited)\n"
3736 #endif
3737 #ifdef CONFIG_TRACER_SNAPSHOT
3738 "\n snapshot\t\t- Like 'trace' but shows the content of the static\n"
3739 "\t\t\t snapshot buffer. Read the contents for more\n"
3740 "\t\t\t information\n"
3741 #endif
3742 #ifdef CONFIG_STACK_TRACER
3743 " stack_trace\t\t- Shows the max stack trace when active\n"
3744 " stack_max_size\t- Shows current max stack size that was traced\n"
3745 "\t\t\t Write into this file to reset the max size (trigger a\n"
3746 "\t\t\t new trace)\n"
3747 #ifdef CONFIG_DYNAMIC_FTRACE
3748 " stack_trace_filter\t- Like set_ftrace_filter but limits what stack_trace\n"
3749 "\t\t\t traces\n"
3750 #endif
3751 #endif /* CONFIG_STACK_TRACER */
3752 " events/\t\t- Directory containing all trace event subsystems:\n"
3753 " enable\t\t- Write 0/1 to enable/disable tracing of all events\n"
3754 " events/<system>/\t- Directory containing all trace events for <system>:\n"
3755 " enable\t\t- Write 0/1 to enable/disable tracing of all <system>\n"
3756 "\t\t\t events\n"
3757 " filter\t\t- If set, only events passing filter are traced\n"
3758 " events/<system>/<event>/\t- Directory containing control files for\n"
3759 "\t\t\t <event>:\n"
3760 " enable\t\t- Write 0/1 to enable/disable tracing of <event>\n"
3761 " filter\t\t- If set, only events passing filter are traced\n"
3762 " trigger\t\t- If set, a command to perform when event is hit\n"
3763 "\t Format: <trigger>[:count][if <filter>]\n"
3764 "\t trigger: traceon, traceoff\n"
3765 "\t enable_event:<system>:<event>\n"
3766 "\t disable_event:<system>:<event>\n"
3767 #ifdef CONFIG_STACKTRACE
3768 "\t\t stacktrace\n"
3769 #endif
3770 #ifdef CONFIG_TRACER_SNAPSHOT
3771 "\t\t snapshot\n"
3772 #endif
3773 "\t example: echo traceoff > events/block/block_unplug/trigger\n"
3774 "\t echo traceoff:3 > events/block/block_unplug/trigger\n"
3775 "\t echo 'enable_event:kmem:kmalloc:3 if nr_rq > 1' > \\\n"
3776 "\t events/block/block_unplug/trigger\n"
3777 "\t The first disables tracing every time block_unplug is hit.\n"
3778 "\t The second disables tracing the first 3 times block_unplug is hit.\n"
3779 "\t The third enables the kmalloc event the first 3 times block_unplug\n"
3780 "\t is hit and has value of greater than 1 for the 'nr_rq' event field.\n"
3781 "\t Like function triggers, the counter is only decremented if it\n"
3782 "\t enabled or disabled tracing.\n"
3783 "\t To remove a trigger without a count:\n"
3784 "\t echo '!<trigger> > <system>/<event>/trigger\n"
3785 "\t To remove a trigger with a count:\n"
3786 "\t echo '!<trigger>:0 > <system>/<event>/trigger\n"
3787 "\t Filters can be ignored when removing a trigger.\n"
3788 ;
3789
3790 static ssize_t
3791 tracing_readme_read(struct file *filp, char __user *ubuf,
3792 size_t cnt, loff_t *ppos)
3793 {
3794 return simple_read_from_buffer(ubuf, cnt, ppos,
3795 readme_msg, strlen(readme_msg));
3796 }
3797
3798 static const struct file_operations tracing_readme_fops = {
3799 .open = tracing_open_generic,
3800 .read = tracing_readme_read,
3801 .llseek = generic_file_llseek,
3802 };
3803
3804 static void *saved_cmdlines_next(struct seq_file *m, void *v, loff_t *pos)
3805 {
3806 unsigned int *ptr = v;
3807
3808 if (*pos || m->count)
3809 ptr++;
3810
3811 (*pos)++;
3812
3813 for (; ptr < &savedcmd->map_cmdline_to_pid[savedcmd->cmdline_num];
3814 ptr++) {
3815 if (*ptr == -1 || *ptr == NO_CMDLINE_MAP)
3816 continue;
3817
3818 return ptr;
3819 }
3820
3821 return NULL;
3822 }
3823
3824 static void *saved_cmdlines_start(struct seq_file *m, loff_t *pos)
3825 {
3826 void *v;
3827 loff_t l = 0;
3828
3829 preempt_disable();
3830 arch_spin_lock(&trace_cmdline_lock);
3831
3832 v = &savedcmd->map_cmdline_to_pid[0];
3833 while (l <= *pos) {
3834 v = saved_cmdlines_next(m, v, &l);
3835 if (!v)
3836 return NULL;
3837 }
3838
3839 return v;
3840 }
3841
3842 static void saved_cmdlines_stop(struct seq_file *m, void *v)
3843 {
3844 arch_spin_unlock(&trace_cmdline_lock);
3845 preempt_enable();
3846 }
3847
3848 static int saved_cmdlines_show(struct seq_file *m, void *v)
3849 {
3850 char buf[TASK_COMM_LEN];
3851 unsigned int *pid = v;
3852
3853 __trace_find_cmdline(*pid, buf);
3854 seq_printf(m, "%d %s\n", *pid, buf);
3855 return 0;
3856 }
3857
3858 static const struct seq_operations tracing_saved_cmdlines_seq_ops = {
3859 .start = saved_cmdlines_start,
3860 .next = saved_cmdlines_next,
3861 .stop = saved_cmdlines_stop,
3862 .show = saved_cmdlines_show,
3863 };
3864
3865 static int tracing_saved_cmdlines_open(struct inode *inode, struct file *filp)
3866 {
3867 if (tracing_disabled)
3868 return -ENODEV;
3869
3870 return seq_open(filp, &tracing_saved_cmdlines_seq_ops);
3871 }
3872
3873 static const struct file_operations tracing_saved_cmdlines_fops = {
3874 .open = tracing_saved_cmdlines_open,
3875 .read = seq_read,
3876 .llseek = seq_lseek,
3877 .release = seq_release,
3878 };
3879
3880 static ssize_t
3881 tracing_saved_cmdlines_size_read(struct file *filp, char __user *ubuf,
3882 size_t cnt, loff_t *ppos)
3883 {
3884 char buf[64];
3885 int r;
3886
3887 arch_spin_lock(&trace_cmdline_lock);
3888 r = scnprintf(buf, sizeof(buf), "%u\n", savedcmd->cmdline_num);
3889 arch_spin_unlock(&trace_cmdline_lock);
3890
3891 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3892 }
3893
3894 static void free_saved_cmdlines_buffer(struct saved_cmdlines_buffer *s)
3895 {
3896 kfree(s->saved_cmdlines);
3897 kfree(s->map_cmdline_to_pid);
3898 kfree(s);
3899 }
3900
3901 static int tracing_resize_saved_cmdlines(unsigned int val)
3902 {
3903 struct saved_cmdlines_buffer *s, *savedcmd_temp;
3904
3905 s = kmalloc(sizeof(*s), GFP_KERNEL);
3906 if (!s)
3907 return -ENOMEM;
3908
3909 if (allocate_cmdlines_buffer(val, s) < 0) {
3910 kfree(s);
3911 return -ENOMEM;
3912 }
3913
3914 arch_spin_lock(&trace_cmdline_lock);
3915 savedcmd_temp = savedcmd;
3916 savedcmd = s;
3917 arch_spin_unlock(&trace_cmdline_lock);
3918 free_saved_cmdlines_buffer(savedcmd_temp);
3919
3920 return 0;
3921 }
3922
3923 static ssize_t
3924 tracing_saved_cmdlines_size_write(struct file *filp, const char __user *ubuf,
3925 size_t cnt, loff_t *ppos)
3926 {
3927 unsigned long val;
3928 int ret;
3929
3930 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
3931 if (ret)
3932 return ret;
3933
3934 /* must have at least 1 entry or less than PID_MAX_DEFAULT */
3935 if (!val || val > PID_MAX_DEFAULT)
3936 return -EINVAL;
3937
3938 ret = tracing_resize_saved_cmdlines((unsigned int)val);
3939 if (ret < 0)
3940 return ret;
3941
3942 *ppos += cnt;
3943
3944 return cnt;
3945 }
3946
3947 static const struct file_operations tracing_saved_cmdlines_size_fops = {
3948 .open = tracing_open_generic,
3949 .read = tracing_saved_cmdlines_size_read,
3950 .write = tracing_saved_cmdlines_size_write,
3951 };
3952
3953 #ifdef CONFIG_TRACE_ENUM_MAP_FILE
3954 static union trace_enum_map_item *
3955 update_enum_map(union trace_enum_map_item *ptr)
3956 {
3957 if (!ptr->map.enum_string) {
3958 if (ptr->tail.next) {
3959 ptr = ptr->tail.next;
3960 /* Set ptr to the next real item (skip head) */
3961 ptr++;
3962 } else
3963 return NULL;
3964 }
3965 return ptr;
3966 }
3967
3968 static void *enum_map_next(struct seq_file *m, void *v, loff_t *pos)
3969 {
3970 union trace_enum_map_item *ptr = v;
3971
3972 /*
3973 * Paranoid! If ptr points to end, we don't want to increment past it.
3974 * This really should never happen.
3975 */
3976 ptr = update_enum_map(ptr);
3977 if (WARN_ON_ONCE(!ptr))
3978 return NULL;
3979
3980 ptr++;
3981
3982 (*pos)++;
3983
3984 ptr = update_enum_map(ptr);
3985
3986 return ptr;
3987 }
3988
3989 static void *enum_map_start(struct seq_file *m, loff_t *pos)
3990 {
3991 union trace_enum_map_item *v;
3992 loff_t l = 0;
3993
3994 mutex_lock(&trace_enum_mutex);
3995
3996 v = trace_enum_maps;
3997 if (v)
3998 v++;
3999
4000 while (v && l < *pos) {
4001 v = enum_map_next(m, v, &l);
4002 }
4003
4004 return v;
4005 }
4006
4007 static void enum_map_stop(struct seq_file *m, void *v)
4008 {
4009 mutex_unlock(&trace_enum_mutex);
4010 }
4011
4012 static int enum_map_show(struct seq_file *m, void *v)
4013 {
4014 union trace_enum_map_item *ptr = v;
4015
4016 seq_printf(m, "%s %ld (%s)\n",
4017 ptr->map.enum_string, ptr->map.enum_value,
4018 ptr->map.system);
4019
4020 return 0;
4021 }
4022
4023 static const struct seq_operations tracing_enum_map_seq_ops = {
4024 .start = enum_map_start,
4025 .next = enum_map_next,
4026 .stop = enum_map_stop,
4027 .show = enum_map_show,
4028 };
4029
4030 static int tracing_enum_map_open(struct inode *inode, struct file *filp)
4031 {
4032 if (tracing_disabled)
4033 return -ENODEV;
4034
4035 return seq_open(filp, &tracing_enum_map_seq_ops);
4036 }
4037
4038 static const struct file_operations tracing_enum_map_fops = {
4039 .open = tracing_enum_map_open,
4040 .read = seq_read,
4041 .llseek = seq_lseek,
4042 .release = seq_release,
4043 };
4044
4045 static inline union trace_enum_map_item *
4046 trace_enum_jmp_to_tail(union trace_enum_map_item *ptr)
4047 {
4048 /* Return tail of array given the head */
4049 return ptr + ptr->head.length + 1;
4050 }
4051
4052 static void
4053 trace_insert_enum_map_file(struct module *mod, struct trace_enum_map **start,
4054 int len)
4055 {
4056 struct trace_enum_map **stop;
4057 struct trace_enum_map **map;
4058 union trace_enum_map_item *map_array;
4059 union trace_enum_map_item *ptr;
4060
4061 stop = start + len;
4062
4063 /*
4064 * The trace_enum_maps contains the map plus a head and tail item,
4065 * where the head holds the module and length of array, and the
4066 * tail holds a pointer to the next list.
4067 */
4068 map_array = kmalloc(sizeof(*map_array) * (len + 2), GFP_KERNEL);
4069 if (!map_array) {
4070 pr_warning("Unable to allocate trace enum mapping\n");
4071 return;
4072 }
4073
4074 mutex_lock(&trace_enum_mutex);
4075
4076 if (!trace_enum_maps)
4077 trace_enum_maps = map_array;
4078 else {
4079 ptr = trace_enum_maps;
4080 for (;;) {
4081 ptr = trace_enum_jmp_to_tail(ptr);
4082 if (!ptr->tail.next)
4083 break;
4084 ptr = ptr->tail.next;
4085
4086 }
4087 ptr->tail.next = map_array;
4088 }
4089 map_array->head.mod = mod;
4090 map_array->head.length = len;
4091 map_array++;
4092
4093 for (map = start; (unsigned long)map < (unsigned long)stop; map++) {
4094 map_array->map = **map;
4095 map_array++;
4096 }
4097 memset(map_array, 0, sizeof(*map_array));
4098
4099 mutex_unlock(&trace_enum_mutex);
4100 }
4101
4102 static void trace_create_enum_file(struct dentry *d_tracer)
4103 {
4104 trace_create_file("enum_map", 0444, d_tracer,
4105 NULL, &tracing_enum_map_fops);
4106 }
4107
4108 #else /* CONFIG_TRACE_ENUM_MAP_FILE */
4109 static inline void trace_create_enum_file(struct dentry *d_tracer) { }
4110 static inline void trace_insert_enum_map_file(struct module *mod,
4111 struct trace_enum_map **start, int len) { }
4112 #endif /* !CONFIG_TRACE_ENUM_MAP_FILE */
4113
4114 static void trace_insert_enum_map(struct module *mod,
4115 struct trace_enum_map **start, int len)
4116 {
4117 struct trace_enum_map **map;
4118
4119 if (len <= 0)
4120 return;
4121
4122 map = start;
4123
4124 trace_event_enum_update(map, len);
4125
4126 trace_insert_enum_map_file(mod, start, len);
4127 }
4128
4129 static ssize_t
4130 tracing_set_trace_read(struct file *filp, char __user *ubuf,
4131 size_t cnt, loff_t *ppos)
4132 {
4133 struct trace_array *tr = filp->private_data;
4134 char buf[MAX_TRACER_SIZE+2];
4135 int r;
4136
4137 mutex_lock(&trace_types_lock);
4138 r = sprintf(buf, "%s\n", tr->current_trace->name);
4139 mutex_unlock(&trace_types_lock);
4140
4141 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4142 }
4143
4144 int tracer_init(struct tracer *t, struct trace_array *tr)
4145 {
4146 tracing_reset_online_cpus(&tr->trace_buffer);
4147 return t->init(tr);
4148 }
4149
4150 static void set_buffer_entries(struct trace_buffer *buf, unsigned long val)
4151 {
4152 int cpu;
4153
4154 for_each_tracing_cpu(cpu)
4155 per_cpu_ptr(buf->data, cpu)->entries = val;
4156 }
4157
4158 #ifdef CONFIG_TRACER_MAX_TRACE
4159 /* resize @tr's buffer to the size of @size_tr's entries */
4160 static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf,
4161 struct trace_buffer *size_buf, int cpu_id)
4162 {
4163 int cpu, ret = 0;
4164
4165 if (cpu_id == RING_BUFFER_ALL_CPUS) {
4166 for_each_tracing_cpu(cpu) {
4167 ret = ring_buffer_resize(trace_buf->buffer,
4168 per_cpu_ptr(size_buf->data, cpu)->entries, cpu);
4169 if (ret < 0)
4170 break;
4171 per_cpu_ptr(trace_buf->data, cpu)->entries =
4172 per_cpu_ptr(size_buf->data, cpu)->entries;
4173 }
4174 } else {
4175 ret = ring_buffer_resize(trace_buf->buffer,
4176 per_cpu_ptr(size_buf->data, cpu_id)->entries, cpu_id);
4177 if (ret == 0)
4178 per_cpu_ptr(trace_buf->data, cpu_id)->entries =
4179 per_cpu_ptr(size_buf->data, cpu_id)->entries;
4180 }
4181
4182 return ret;
4183 }
4184 #endif /* CONFIG_TRACER_MAX_TRACE */
4185
4186 static int __tracing_resize_ring_buffer(struct trace_array *tr,
4187 unsigned long size, int cpu)
4188 {
4189 int ret;
4190
4191 /*
4192 * If kernel or user changes the size of the ring buffer
4193 * we use the size that was given, and we can forget about
4194 * expanding it later.
4195 */
4196 ring_buffer_expanded = true;
4197
4198 /* May be called before buffers are initialized */
4199 if (!tr->trace_buffer.buffer)
4200 return 0;
4201
4202 ret = ring_buffer_resize(tr->trace_buffer.buffer, size, cpu);
4203 if (ret < 0)
4204 return ret;
4205
4206 #ifdef CONFIG_TRACER_MAX_TRACE
4207 if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL) ||
4208 !tr->current_trace->use_max_tr)
4209 goto out;
4210
4211 ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu);
4212 if (ret < 0) {
4213 int r = resize_buffer_duplicate_size(&tr->trace_buffer,
4214 &tr->trace_buffer, cpu);
4215 if (r < 0) {
4216 /*
4217 * AARGH! We are left with different
4218 * size max buffer!!!!
4219 * The max buffer is our "snapshot" buffer.
4220 * When a tracer needs a snapshot (one of the
4221 * latency tracers), it swaps the max buffer
4222 * with the saved snap shot. We succeeded to
4223 * update the size of the main buffer, but failed to
4224 * update the size of the max buffer. But when we tried
4225 * to reset the main buffer to the original size, we
4226 * failed there too. This is very unlikely to
4227 * happen, but if it does, warn and kill all
4228 * tracing.
4229 */
4230 WARN_ON(1);
4231 tracing_disabled = 1;
4232 }
4233 return ret;
4234 }
4235
4236 if (cpu == RING_BUFFER_ALL_CPUS)
4237 set_buffer_entries(&tr->max_buffer, size);
4238 else
4239 per_cpu_ptr(tr->max_buffer.data, cpu)->entries = size;
4240
4241 out:
4242 #endif /* CONFIG_TRACER_MAX_TRACE */
4243
4244 if (cpu == RING_BUFFER_ALL_CPUS)
4245 set_buffer_entries(&tr->trace_buffer, size);
4246 else
4247 per_cpu_ptr(tr->trace_buffer.data, cpu)->entries = size;
4248
4249 return ret;
4250 }
4251
4252 static ssize_t tracing_resize_ring_buffer(struct trace_array *tr,
4253 unsigned long size, int cpu_id)
4254 {
4255 int ret = size;
4256
4257 mutex_lock(&trace_types_lock);
4258
4259 if (cpu_id != RING_BUFFER_ALL_CPUS) {
4260 /* make sure, this cpu is enabled in the mask */
4261 if (!cpumask_test_cpu(cpu_id, tracing_buffer_mask)) {
4262 ret = -EINVAL;
4263 goto out;
4264 }
4265 }
4266
4267 ret = __tracing_resize_ring_buffer(tr, size, cpu_id);
4268 if (ret < 0)
4269 ret = -ENOMEM;
4270
4271 out:
4272 mutex_unlock(&trace_types_lock);
4273
4274 return ret;
4275 }
4276
4277
4278 /**
4279 * tracing_update_buffers - used by tracing facility to expand ring buffers
4280 *
4281 * To save on memory when the tracing is never used on a system with it
4282 * configured in. The ring buffers are set to a minimum size. But once
4283 * a user starts to use the tracing facility, then they need to grow
4284 * to their default size.
4285 *
4286 * This function is to be called when a tracer is about to be used.
4287 */
4288 int tracing_update_buffers(void)
4289 {
4290 int ret = 0;
4291
4292 mutex_lock(&trace_types_lock);
4293 if (!ring_buffer_expanded)
4294 ret = __tracing_resize_ring_buffer(&global_trace, trace_buf_size,
4295 RING_BUFFER_ALL_CPUS);
4296 mutex_unlock(&trace_types_lock);
4297
4298 return ret;
4299 }
4300
4301 struct trace_option_dentry;
4302
4303 static struct trace_option_dentry *
4304 create_trace_option_files(struct trace_array *tr, struct tracer *tracer);
4305
4306 /*
4307 * Used to clear out the tracer before deletion of an instance.
4308 * Must have trace_types_lock held.
4309 */
4310 static void tracing_set_nop(struct trace_array *tr)
4311 {
4312 if (tr->current_trace == &nop_trace)
4313 return;
4314
4315 tr->current_trace->enabled--;
4316
4317 if (tr->current_trace->reset)
4318 tr->current_trace->reset(tr);
4319
4320 tr->current_trace = &nop_trace;
4321 }
4322
4323 static void add_tracer_options(struct trace_array *tr, struct tracer *t)
4324 {
4325 /* Only enable if the directory has been created already. */
4326 if (!tr->dir)
4327 return;
4328
4329 /* Currently, only the top instance has options */
4330 if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL))
4331 return;
4332
4333 /* Ignore if they were already created */
4334 if (t->topts)
4335 return;
4336
4337 t->topts = create_trace_option_files(tr, t);
4338 }
4339
4340 static int tracing_set_tracer(struct trace_array *tr, const char *buf)
4341 {
4342 struct tracer *t;
4343 #ifdef CONFIG_TRACER_MAX_TRACE
4344 bool had_max_tr;
4345 #endif
4346 int ret = 0;
4347
4348 mutex_lock(&trace_types_lock);
4349
4350 if (!ring_buffer_expanded) {
4351 ret = __tracing_resize_ring_buffer(tr, trace_buf_size,
4352 RING_BUFFER_ALL_CPUS);
4353 if (ret < 0)
4354 goto out;
4355 ret = 0;
4356 }
4357
4358 for (t = trace_types; t; t = t->next) {
4359 if (strcmp(t->name, buf) == 0)
4360 break;
4361 }
4362 if (!t) {
4363 ret = -EINVAL;
4364 goto out;
4365 }
4366 if (t == tr->current_trace)
4367 goto out;
4368
4369 /* Some tracers are only allowed for the top level buffer */
4370 if (!trace_ok_for_array(t, tr)) {
4371 ret = -EINVAL;
4372 goto out;
4373 }
4374
4375 /* If trace pipe files are being read, we can't change the tracer */
4376 if (tr->current_trace->ref) {
4377 ret = -EBUSY;
4378 goto out;
4379 }
4380
4381 trace_branch_disable();
4382
4383 tr->current_trace->enabled--;
4384
4385 if (tr->current_trace->reset)
4386 tr->current_trace->reset(tr);
4387
4388 /* Current trace needs to be nop_trace before synchronize_sched */
4389 tr->current_trace = &nop_trace;
4390
4391 #ifdef CONFIG_TRACER_MAX_TRACE
4392 had_max_tr = tr->allocated_snapshot;
4393
4394 if (had_max_tr && !t->use_max_tr) {
4395 /*
4396 * We need to make sure that the update_max_tr sees that
4397 * current_trace changed to nop_trace to keep it from
4398 * swapping the buffers after we resize it.
4399 * The update_max_tr is called from interrupts disabled
4400 * so a synchronized_sched() is sufficient.
4401 */
4402 synchronize_sched();
4403 free_snapshot(tr);
4404 }
4405 #endif
4406
4407 #ifdef CONFIG_TRACER_MAX_TRACE
4408 if (t->use_max_tr && !had_max_tr) {
4409 ret = alloc_snapshot(tr);
4410 if (ret < 0)
4411 goto out;
4412 }
4413 #endif
4414
4415 if (t->init) {
4416 ret = tracer_init(t, tr);
4417 if (ret)
4418 goto out;
4419 }
4420
4421 tr->current_trace = t;
4422 tr->current_trace->enabled++;
4423 trace_branch_enable(tr);
4424 out:
4425 mutex_unlock(&trace_types_lock);
4426
4427 return ret;
4428 }
4429
4430 static ssize_t
4431 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
4432 size_t cnt, loff_t *ppos)
4433 {
4434 struct trace_array *tr = filp->private_data;
4435 char buf[MAX_TRACER_SIZE+1];
4436 int i;
4437 size_t ret;
4438 int err;
4439
4440 ret = cnt;
4441
4442 if (cnt > MAX_TRACER_SIZE)
4443 cnt = MAX_TRACER_SIZE;
4444
4445 if (copy_from_user(&buf, ubuf, cnt))
4446 return -EFAULT;
4447
4448 buf[cnt] = 0;
4449
4450 /* strip ending whitespace. */
4451 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
4452 buf[i] = 0;
4453
4454 err = tracing_set_tracer(tr, buf);
4455 if (err)
4456 return err;
4457
4458 *ppos += ret;
4459
4460 return ret;
4461 }
4462
4463 static ssize_t
4464 tracing_nsecs_read(unsigned long *ptr, char __user *ubuf,
4465 size_t cnt, loff_t *ppos)
4466 {
4467 char buf[64];
4468 int r;
4469
4470 r = snprintf(buf, sizeof(buf), "%ld\n",
4471 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
4472 if (r > sizeof(buf))
4473 r = sizeof(buf);
4474 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4475 }
4476
4477 static ssize_t
4478 tracing_nsecs_write(unsigned long *ptr, const char __user *ubuf,
4479 size_t cnt, loff_t *ppos)
4480 {
4481 unsigned long val;
4482 int ret;
4483
4484 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4485 if (ret)
4486 return ret;
4487
4488 *ptr = val * 1000;
4489
4490 return cnt;
4491 }
4492
4493 static ssize_t
4494 tracing_thresh_read(struct file *filp, char __user *ubuf,
4495 size_t cnt, loff_t *ppos)
4496 {
4497 return tracing_nsecs_read(&tracing_thresh, ubuf, cnt, ppos);
4498 }
4499
4500 static ssize_t
4501 tracing_thresh_write(struct file *filp, const char __user *ubuf,
4502 size_t cnt, loff_t *ppos)
4503 {
4504 struct trace_array *tr = filp->private_data;
4505 int ret;
4506
4507 mutex_lock(&trace_types_lock);
4508 ret = tracing_nsecs_write(&tracing_thresh, ubuf, cnt, ppos);
4509 if (ret < 0)
4510 goto out;
4511
4512 if (tr->current_trace->update_thresh) {
4513 ret = tr->current_trace->update_thresh(tr);
4514 if (ret < 0)
4515 goto out;
4516 }
4517
4518 ret = cnt;
4519 out:
4520 mutex_unlock(&trace_types_lock);
4521
4522 return ret;
4523 }
4524
4525 static ssize_t
4526 tracing_max_lat_read(struct file *filp, char __user *ubuf,
4527 size_t cnt, loff_t *ppos)
4528 {
4529 return tracing_nsecs_read(filp->private_data, ubuf, cnt, ppos);
4530 }
4531
4532 static ssize_t
4533 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
4534 size_t cnt, loff_t *ppos)
4535 {
4536 return tracing_nsecs_write(filp->private_data, ubuf, cnt, ppos);
4537 }
4538
4539 static int tracing_open_pipe(struct inode *inode, struct file *filp)
4540 {
4541 struct trace_array *tr = inode->i_private;
4542 struct trace_iterator *iter;
4543 int ret = 0;
4544
4545 if (tracing_disabled)
4546 return -ENODEV;
4547
4548 if (trace_array_get(tr) < 0)
4549 return -ENODEV;
4550
4551 mutex_lock(&trace_types_lock);
4552
4553 /* create a buffer to store the information to pass to userspace */
4554 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
4555 if (!iter) {
4556 ret = -ENOMEM;
4557 __trace_array_put(tr);
4558 goto out;
4559 }
4560
4561 trace_seq_init(&iter->seq);
4562 iter->trace = tr->current_trace;
4563
4564 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
4565 ret = -ENOMEM;
4566 goto fail;
4567 }
4568
4569 /* trace pipe does not show start of buffer */
4570 cpumask_setall(iter->started);
4571
4572 if (tr->trace_flags & TRACE_ITER_LATENCY_FMT)
4573 iter->iter_flags |= TRACE_FILE_LAT_FMT;
4574
4575 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
4576 if (trace_clocks[tr->clock_id].in_ns)
4577 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
4578
4579 iter->tr = tr;
4580 iter->trace_buffer = &tr->trace_buffer;
4581 iter->cpu_file = tracing_get_cpu(inode);
4582 mutex_init(&iter->mutex);
4583 filp->private_data = iter;
4584
4585 if (iter->trace->pipe_open)
4586 iter->trace->pipe_open(iter);
4587
4588 nonseekable_open(inode, filp);
4589
4590 tr->current_trace->ref++;
4591 out:
4592 mutex_unlock(&trace_types_lock);
4593 return ret;
4594
4595 fail:
4596 kfree(iter->trace);
4597 kfree(iter);
4598 __trace_array_put(tr);
4599 mutex_unlock(&trace_types_lock);
4600 return ret;
4601 }
4602
4603 static int tracing_release_pipe(struct inode *inode, struct file *file)
4604 {
4605 struct trace_iterator *iter = file->private_data;
4606 struct trace_array *tr = inode->i_private;
4607
4608 mutex_lock(&trace_types_lock);
4609
4610 tr->current_trace->ref--;
4611
4612 if (iter->trace->pipe_close)
4613 iter->trace->pipe_close(iter);
4614
4615 mutex_unlock(&trace_types_lock);
4616
4617 free_cpumask_var(iter->started);
4618 mutex_destroy(&iter->mutex);
4619 kfree(iter);
4620
4621 trace_array_put(tr);
4622
4623 return 0;
4624 }
4625
4626 static unsigned int
4627 trace_poll(struct trace_iterator *iter, struct file *filp, poll_table *poll_table)
4628 {
4629 struct trace_array *tr = iter->tr;
4630
4631 /* Iterators are static, they should be filled or empty */
4632 if (trace_buffer_iter(iter, iter->cpu_file))
4633 return POLLIN | POLLRDNORM;
4634
4635 if (tr->trace_flags & TRACE_ITER_BLOCK)
4636 /*
4637 * Always select as readable when in blocking mode
4638 */
4639 return POLLIN | POLLRDNORM;
4640 else
4641 return ring_buffer_poll_wait(iter->trace_buffer->buffer, iter->cpu_file,
4642 filp, poll_table);
4643 }
4644
4645 static unsigned int
4646 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
4647 {
4648 struct trace_iterator *iter = filp->private_data;
4649
4650 return trace_poll(iter, filp, poll_table);
4651 }
4652
4653 /* Must be called with iter->mutex held. */
4654 static int tracing_wait_pipe(struct file *filp)
4655 {
4656 struct trace_iterator *iter = filp->private_data;
4657 int ret;
4658
4659 while (trace_empty(iter)) {
4660
4661 if ((filp->f_flags & O_NONBLOCK)) {
4662 return -EAGAIN;
4663 }
4664
4665 /*
4666 * We block until we read something and tracing is disabled.
4667 * We still block if tracing is disabled, but we have never
4668 * read anything. This allows a user to cat this file, and
4669 * then enable tracing. But after we have read something,
4670 * we give an EOF when tracing is again disabled.
4671 *
4672 * iter->pos will be 0 if we haven't read anything.
4673 */
4674 if (!tracing_is_on() && iter->pos)
4675 break;
4676
4677 mutex_unlock(&iter->mutex);
4678
4679 ret = wait_on_pipe(iter, false);
4680
4681 mutex_lock(&iter->mutex);
4682
4683 if (ret)
4684 return ret;
4685 }
4686
4687 return 1;
4688 }
4689
4690 /*
4691 * Consumer reader.
4692 */
4693 static ssize_t
4694 tracing_read_pipe(struct file *filp, char __user *ubuf,
4695 size_t cnt, loff_t *ppos)
4696 {
4697 struct trace_iterator *iter = filp->private_data;
4698 ssize_t sret;
4699
4700 /* return any leftover data */
4701 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
4702 if (sret != -EBUSY)
4703 return sret;
4704
4705 trace_seq_init(&iter->seq);
4706
4707 /*
4708 * Avoid more than one consumer on a single file descriptor
4709 * This is just a matter of traces coherency, the ring buffer itself
4710 * is protected.
4711 */
4712 mutex_lock(&iter->mutex);
4713 if (iter->trace->read) {
4714 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
4715 if (sret)
4716 goto out;
4717 }
4718
4719 waitagain:
4720 sret = tracing_wait_pipe(filp);
4721 if (sret <= 0)
4722 goto out;
4723
4724 /* stop when tracing is finished */
4725 if (trace_empty(iter)) {
4726 sret = 0;
4727 goto out;
4728 }
4729
4730 if (cnt >= PAGE_SIZE)
4731 cnt = PAGE_SIZE - 1;
4732
4733 /* reset all but tr, trace, and overruns */
4734 memset(&iter->seq, 0,
4735 sizeof(struct trace_iterator) -
4736 offsetof(struct trace_iterator, seq));
4737 cpumask_clear(iter->started);
4738 iter->pos = -1;
4739
4740 trace_event_read_lock();
4741 trace_access_lock(iter->cpu_file);
4742 while (trace_find_next_entry_inc(iter) != NULL) {
4743 enum print_line_t ret;
4744 int save_len = iter->seq.seq.len;
4745
4746 ret = print_trace_line(iter);
4747 if (ret == TRACE_TYPE_PARTIAL_LINE) {
4748 /* don't print partial lines */
4749 iter->seq.seq.len = save_len;
4750 break;
4751 }
4752 if (ret != TRACE_TYPE_NO_CONSUME)
4753 trace_consume(iter);
4754
4755 if (trace_seq_used(&iter->seq) >= cnt)
4756 break;
4757
4758 /*
4759 * Setting the full flag means we reached the trace_seq buffer
4760 * size and we should leave by partial output condition above.
4761 * One of the trace_seq_* functions is not used properly.
4762 */
4763 WARN_ONCE(iter->seq.full, "full flag set for trace type %d",
4764 iter->ent->type);
4765 }
4766 trace_access_unlock(iter->cpu_file);
4767 trace_event_read_unlock();
4768
4769 /* Now copy what we have to the user */
4770 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
4771 if (iter->seq.seq.readpos >= trace_seq_used(&iter->seq))
4772 trace_seq_init(&iter->seq);
4773
4774 /*
4775 * If there was nothing to send to user, in spite of consuming trace
4776 * entries, go back to wait for more entries.
4777 */
4778 if (sret == -EBUSY)
4779 goto waitagain;
4780
4781 out:
4782 mutex_unlock(&iter->mutex);
4783
4784 return sret;
4785 }
4786
4787 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
4788 unsigned int idx)
4789 {
4790 __free_page(spd->pages[idx]);
4791 }
4792
4793 static const struct pipe_buf_operations tracing_pipe_buf_ops = {
4794 .can_merge = 0,
4795 .confirm = generic_pipe_buf_confirm,
4796 .release = generic_pipe_buf_release,
4797 .steal = generic_pipe_buf_steal,
4798 .get = generic_pipe_buf_get,
4799 };
4800
4801 static size_t
4802 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
4803 {
4804 size_t count;
4805 int save_len;
4806 int ret;
4807
4808 /* Seq buffer is page-sized, exactly what we need. */
4809 for (;;) {
4810 save_len = iter->seq.seq.len;
4811 ret = print_trace_line(iter);
4812
4813 if (trace_seq_has_overflowed(&iter->seq)) {
4814 iter->seq.seq.len = save_len;
4815 break;
4816 }
4817
4818 /*
4819 * This should not be hit, because it should only
4820 * be set if the iter->seq overflowed. But check it
4821 * anyway to be safe.
4822 */
4823 if (ret == TRACE_TYPE_PARTIAL_LINE) {
4824 iter->seq.seq.len = save_len;
4825 break;
4826 }
4827
4828 count = trace_seq_used(&iter->seq) - save_len;
4829 if (rem < count) {
4830 rem = 0;
4831 iter->seq.seq.len = save_len;
4832 break;
4833 }
4834
4835 if (ret != TRACE_TYPE_NO_CONSUME)
4836 trace_consume(iter);
4837 rem -= count;
4838 if (!trace_find_next_entry_inc(iter)) {
4839 rem = 0;
4840 iter->ent = NULL;
4841 break;
4842 }
4843 }
4844
4845 return rem;
4846 }
4847
4848 static ssize_t tracing_splice_read_pipe(struct file *filp,
4849 loff_t *ppos,
4850 struct pipe_inode_info *pipe,
4851 size_t len,
4852 unsigned int flags)
4853 {
4854 struct page *pages_def[PIPE_DEF_BUFFERS];
4855 struct partial_page partial_def[PIPE_DEF_BUFFERS];
4856 struct trace_iterator *iter = filp->private_data;
4857 struct splice_pipe_desc spd = {
4858 .pages = pages_def,
4859 .partial = partial_def,
4860 .nr_pages = 0, /* This gets updated below. */
4861 .nr_pages_max = PIPE_DEF_BUFFERS,
4862 .flags = flags,
4863 .ops = &tracing_pipe_buf_ops,
4864 .spd_release = tracing_spd_release_pipe,
4865 };
4866 ssize_t ret;
4867 size_t rem;
4868 unsigned int i;
4869
4870 if (splice_grow_spd(pipe, &spd))
4871 return -ENOMEM;
4872
4873 mutex_lock(&iter->mutex);
4874
4875 if (iter->trace->splice_read) {
4876 ret = iter->trace->splice_read(iter, filp,
4877 ppos, pipe, len, flags);
4878 if (ret)
4879 goto out_err;
4880 }
4881
4882 ret = tracing_wait_pipe(filp);
4883 if (ret <= 0)
4884 goto out_err;
4885
4886 if (!iter->ent && !trace_find_next_entry_inc(iter)) {
4887 ret = -EFAULT;
4888 goto out_err;
4889 }
4890
4891 trace_event_read_lock();
4892 trace_access_lock(iter->cpu_file);
4893
4894 /* Fill as many pages as possible. */
4895 for (i = 0, rem = len; i < spd.nr_pages_max && rem; i++) {
4896 spd.pages[i] = alloc_page(GFP_KERNEL);
4897 if (!spd.pages[i])
4898 break;
4899
4900 rem = tracing_fill_pipe_page(rem, iter);
4901
4902 /* Copy the data into the page, so we can start over. */
4903 ret = trace_seq_to_buffer(&iter->seq,
4904 page_address(spd.pages[i]),
4905 trace_seq_used(&iter->seq));
4906 if (ret < 0) {
4907 __free_page(spd.pages[i]);
4908 break;
4909 }
4910 spd.partial[i].offset = 0;
4911 spd.partial[i].len = trace_seq_used(&iter->seq);
4912
4913 trace_seq_init(&iter->seq);
4914 }
4915
4916 trace_access_unlock(iter->cpu_file);
4917 trace_event_read_unlock();
4918 mutex_unlock(&iter->mutex);
4919
4920 spd.nr_pages = i;
4921
4922 ret = splice_to_pipe(pipe, &spd);
4923 out:
4924 splice_shrink_spd(&spd);
4925 return ret;
4926
4927 out_err:
4928 mutex_unlock(&iter->mutex);
4929 goto out;
4930 }
4931
4932 static ssize_t
4933 tracing_entries_read(struct file *filp, char __user *ubuf,
4934 size_t cnt, loff_t *ppos)
4935 {
4936 struct inode *inode = file_inode(filp);
4937 struct trace_array *tr = inode->i_private;
4938 int cpu = tracing_get_cpu(inode);
4939 char buf[64];
4940 int r = 0;
4941 ssize_t ret;
4942
4943 mutex_lock(&trace_types_lock);
4944
4945 if (cpu == RING_BUFFER_ALL_CPUS) {
4946 int cpu, buf_size_same;
4947 unsigned long size;
4948
4949 size = 0;
4950 buf_size_same = 1;
4951 /* check if all cpu sizes are same */
4952 for_each_tracing_cpu(cpu) {
4953 /* fill in the size from first enabled cpu */
4954 if (size == 0)
4955 size = per_cpu_ptr(tr->trace_buffer.data, cpu)->entries;
4956 if (size != per_cpu_ptr(tr->trace_buffer.data, cpu)->entries) {
4957 buf_size_same = 0;
4958 break;
4959 }
4960 }
4961
4962 if (buf_size_same) {
4963 if (!ring_buffer_expanded)
4964 r = sprintf(buf, "%lu (expanded: %lu)\n",
4965 size >> 10,
4966 trace_buf_size >> 10);
4967 else
4968 r = sprintf(buf, "%lu\n", size >> 10);
4969 } else
4970 r = sprintf(buf, "X\n");
4971 } else
4972 r = sprintf(buf, "%lu\n", per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10);
4973
4974 mutex_unlock(&trace_types_lock);
4975
4976 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4977 return ret;
4978 }
4979
4980 static ssize_t
4981 tracing_entries_write(struct file *filp, const char __user *ubuf,
4982 size_t cnt, loff_t *ppos)
4983 {
4984 struct inode *inode = file_inode(filp);
4985 struct trace_array *tr = inode->i_private;
4986 unsigned long val;
4987 int ret;
4988
4989 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4990 if (ret)
4991 return ret;
4992
4993 /* must have at least 1 entry */
4994 if (!val)
4995 return -EINVAL;
4996
4997 /* value is in KB */
4998 val <<= 10;
4999 ret = tracing_resize_ring_buffer(tr, val, tracing_get_cpu(inode));
5000 if (ret < 0)
5001 return ret;
5002
5003 *ppos += cnt;
5004
5005 return cnt;
5006 }
5007
5008 static ssize_t
5009 tracing_total_entries_read(struct file *filp, char __user *ubuf,
5010 size_t cnt, loff_t *ppos)
5011 {
5012 struct trace_array *tr = filp->private_data;
5013 char buf[64];
5014 int r, cpu;
5015 unsigned long size = 0, expanded_size = 0;
5016
5017 mutex_lock(&trace_types_lock);
5018 for_each_tracing_cpu(cpu) {
5019 size += per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10;
5020 if (!ring_buffer_expanded)
5021 expanded_size += trace_buf_size >> 10;
5022 }
5023 if (ring_buffer_expanded)
5024 r = sprintf(buf, "%lu\n", size);
5025 else
5026 r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size);
5027 mutex_unlock(&trace_types_lock);
5028
5029 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
5030 }
5031
5032 static ssize_t
5033 tracing_free_buffer_write(struct file *filp, const char __user *ubuf,
5034 size_t cnt, loff_t *ppos)
5035 {
5036 /*
5037 * There is no need to read what the user has written, this function
5038 * is just to make sure that there is no error when "echo" is used
5039 */
5040
5041 *ppos += cnt;
5042
5043 return cnt;
5044 }
5045
5046 static int
5047 tracing_free_buffer_release(struct inode *inode, struct file *filp)
5048 {
5049 struct trace_array *tr = inode->i_private;
5050
5051 /* disable tracing ? */
5052 if (tr->trace_flags & TRACE_ITER_STOP_ON_FREE)
5053 tracer_tracing_off(tr);
5054 /* resize the ring buffer to 0 */
5055 tracing_resize_ring_buffer(tr, 0, RING_BUFFER_ALL_CPUS);
5056
5057 trace_array_put(tr);
5058
5059 return 0;
5060 }
5061
5062 static ssize_t
5063 tracing_mark_write(struct file *filp, const char __user *ubuf,
5064 size_t cnt, loff_t *fpos)
5065 {
5066 unsigned long addr = (unsigned long)ubuf;
5067 struct trace_array *tr = filp->private_data;
5068 struct ring_buffer_event *event;
5069 struct ring_buffer *buffer;
5070 struct print_entry *entry;
5071 unsigned long irq_flags;
5072 struct page *pages[2];
5073 void *map_page[2];
5074 int nr_pages = 1;
5075 ssize_t written;
5076 int offset;
5077 int size;
5078 int len;
5079 int ret;
5080 int i;
5081
5082 if (tracing_disabled)
5083 return -EINVAL;
5084
5085 if (!(tr->trace_flags & TRACE_ITER_MARKERS))
5086 return -EINVAL;
5087
5088 if (cnt > TRACE_BUF_SIZE)
5089 cnt = TRACE_BUF_SIZE;
5090
5091 /*
5092 * Userspace is injecting traces into the kernel trace buffer.
5093 * We want to be as non intrusive as possible.
5094 * To do so, we do not want to allocate any special buffers
5095 * or take any locks, but instead write the userspace data
5096 * straight into the ring buffer.
5097 *
5098 * First we need to pin the userspace buffer into memory,
5099 * which, most likely it is, because it just referenced it.
5100 * But there's no guarantee that it is. By using get_user_pages_fast()
5101 * and kmap_atomic/kunmap_atomic() we can get access to the
5102 * pages directly. We then write the data directly into the
5103 * ring buffer.
5104 */
5105 BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);
5106
5107 /* check if we cross pages */
5108 if ((addr & PAGE_MASK) != ((addr + cnt) & PAGE_MASK))
5109 nr_pages = 2;
5110
5111 offset = addr & (PAGE_SIZE - 1);
5112 addr &= PAGE_MASK;
5113
5114 ret = get_user_pages_fast(addr, nr_pages, 0, pages);
5115 if (ret < nr_pages) {
5116 while (--ret >= 0)
5117 put_page(pages[ret]);
5118 written = -EFAULT;
5119 goto out;
5120 }
5121
5122 for (i = 0; i < nr_pages; i++)
5123 map_page[i] = kmap_atomic(pages[i]);
5124
5125 local_save_flags(irq_flags);
5126 size = sizeof(*entry) + cnt + 2; /* possible \n added */
5127 buffer = tr->trace_buffer.buffer;
5128 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
5129 irq_flags, preempt_count());
5130 if (!event) {
5131 /* Ring buffer disabled, return as if not open for write */
5132 written = -EBADF;
5133 goto out_unlock;
5134 }
5135
5136 entry = ring_buffer_event_data(event);
5137 entry->ip = _THIS_IP_;
5138
5139 if (nr_pages == 2) {
5140 len = PAGE_SIZE - offset;
5141 memcpy(&entry->buf, map_page[0] + offset, len);
5142 memcpy(&entry->buf[len], map_page[1], cnt - len);
5143 } else
5144 memcpy(&entry->buf, map_page[0] + offset, cnt);
5145
5146 if (entry->buf[cnt - 1] != '\n') {
5147 entry->buf[cnt] = '\n';
5148 entry->buf[cnt + 1] = '\0';
5149 } else
5150 entry->buf[cnt] = '\0';
5151
5152 __buffer_unlock_commit(buffer, event);
5153
5154 written = cnt;
5155
5156 *fpos += written;
5157
5158 out_unlock:
5159 for (i = nr_pages - 1; i >= 0; i--) {
5160 kunmap_atomic(map_page[i]);
5161 put_page(pages[i]);
5162 }
5163 out:
5164 return written;
5165 }
5166
5167 static int tracing_clock_show(struct seq_file *m, void *v)
5168 {
5169 struct trace_array *tr = m->private;
5170 int i;
5171
5172 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
5173 seq_printf(m,
5174 "%s%s%s%s", i ? " " : "",
5175 i == tr->clock_id ? "[" : "", trace_clocks[i].name,
5176 i == tr->clock_id ? "]" : "");
5177 seq_putc(m, '\n');
5178
5179 return 0;
5180 }
5181
5182 static int tracing_set_clock(struct trace_array *tr, const char *clockstr)
5183 {
5184 int i;
5185
5186 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
5187 if (strcmp(trace_clocks[i].name, clockstr) == 0)
5188 break;
5189 }
5190 if (i == ARRAY_SIZE(trace_clocks))
5191 return -EINVAL;
5192
5193 mutex_lock(&trace_types_lock);
5194
5195 tr->clock_id = i;
5196
5197 ring_buffer_set_clock(tr->trace_buffer.buffer, trace_clocks[i].func);
5198
5199 /*
5200 * New clock may not be consistent with the previous clock.
5201 * Reset the buffer so that it doesn't have incomparable timestamps.
5202 */
5203 tracing_reset_online_cpus(&tr->trace_buffer);
5204
5205 #ifdef CONFIG_TRACER_MAX_TRACE
5206 if (tr->flags & TRACE_ARRAY_FL_GLOBAL && tr->max_buffer.buffer)
5207 ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func);
5208 tracing_reset_online_cpus(&tr->max_buffer);
5209 #endif
5210
5211 mutex_unlock(&trace_types_lock);
5212
5213 return 0;
5214 }
5215
5216 static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
5217 size_t cnt, loff_t *fpos)
5218 {
5219 struct seq_file *m = filp->private_data;
5220 struct trace_array *tr = m->private;
5221 char buf[64];
5222 const char *clockstr;
5223 int ret;
5224
5225 if (cnt >= sizeof(buf))
5226 return -EINVAL;
5227
5228 if (copy_from_user(&buf, ubuf, cnt))
5229 return -EFAULT;
5230
5231 buf[cnt] = 0;
5232
5233 clockstr = strstrip(buf);
5234
5235 ret = tracing_set_clock(tr, clockstr);
5236 if (ret)
5237 return ret;
5238
5239 *fpos += cnt;
5240
5241 return cnt;
5242 }
5243
5244 static int tracing_clock_open(struct inode *inode, struct file *file)
5245 {
5246 struct trace_array *tr = inode->i_private;
5247 int ret;
5248
5249 if (tracing_disabled)
5250 return -ENODEV;
5251
5252 if (trace_array_get(tr))
5253 return -ENODEV;
5254
5255 ret = single_open(file, tracing_clock_show, inode->i_private);
5256 if (ret < 0)
5257 trace_array_put(tr);
5258
5259 return ret;
5260 }
5261
5262 struct ftrace_buffer_info {
5263 struct trace_iterator iter;
5264 void *spare;
5265 unsigned int read;
5266 };
5267
5268 #ifdef CONFIG_TRACER_SNAPSHOT
5269 static int tracing_snapshot_open(struct inode *inode, struct file *file)
5270 {
5271 struct trace_array *tr = inode->i_private;
5272 struct trace_iterator *iter;
5273 struct seq_file *m;
5274 int ret = 0;
5275
5276 if (trace_array_get(tr) < 0)
5277 return -ENODEV;
5278
5279 if (file->f_mode & FMODE_READ) {
5280 iter = __tracing_open(inode, file, true);
5281 if (IS_ERR(iter))
5282 ret = PTR_ERR(iter);
5283 } else {
5284 /* Writes still need the seq_file to hold the private data */
5285 ret = -ENOMEM;
5286 m = kzalloc(sizeof(*m), GFP_KERNEL);
5287 if (!m)
5288 goto out;
5289 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
5290 if (!iter) {
5291 kfree(m);
5292 goto out;
5293 }
5294 ret = 0;
5295
5296 iter->tr = tr;
5297 iter->trace_buffer = &tr->max_buffer;
5298 iter->cpu_file = tracing_get_cpu(inode);
5299 m->private = iter;
5300 file->private_data = m;
5301 }
5302 out:
5303 if (ret < 0)
5304 trace_array_put(tr);
5305
5306 return ret;
5307 }
5308
5309 static ssize_t
5310 tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt,
5311 loff_t *ppos)
5312 {
5313 struct seq_file *m = filp->private_data;
5314 struct trace_iterator *iter = m->private;
5315 struct trace_array *tr = iter->tr;
5316 unsigned long val;
5317 int ret;
5318
5319 ret = tracing_update_buffers();
5320 if (ret < 0)
5321 return ret;
5322
5323 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5324 if (ret)
5325 return ret;
5326
5327 mutex_lock(&trace_types_lock);
5328
5329 if (tr->current_trace->use_max_tr) {
5330 ret = -EBUSY;
5331 goto out;
5332 }
5333
5334 switch (val) {
5335 case 0:
5336 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
5337 ret = -EINVAL;
5338 break;
5339 }
5340 if (tr->allocated_snapshot)
5341 free_snapshot(tr);
5342 break;
5343 case 1:
5344 /* Only allow per-cpu swap if the ring buffer supports it */
5345 #ifndef CONFIG_RING_BUFFER_ALLOW_SWAP
5346 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
5347 ret = -EINVAL;
5348 break;
5349 }
5350 #endif
5351 if (!tr->allocated_snapshot) {
5352 ret = alloc_snapshot(tr);
5353 if (ret < 0)
5354 break;
5355 }
5356 local_irq_disable();
5357 /* Now, we're going to swap */
5358 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
5359 update_max_tr(tr, current, smp_processor_id());
5360 else
5361 update_max_tr_single(tr, current, iter->cpu_file);
5362 local_irq_enable();
5363 break;
5364 default:
5365 if (tr->allocated_snapshot) {
5366 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
5367 tracing_reset_online_cpus(&tr->max_buffer);
5368 else
5369 tracing_reset(&tr->max_buffer, iter->cpu_file);
5370 }
5371 break;
5372 }
5373
5374 if (ret >= 0) {
5375 *ppos += cnt;
5376 ret = cnt;
5377 }
5378 out:
5379 mutex_unlock(&trace_types_lock);
5380 return ret;
5381 }
5382
5383 static int tracing_snapshot_release(struct inode *inode, struct file *file)
5384 {
5385 struct seq_file *m = file->private_data;
5386 int ret;
5387
5388 ret = tracing_release(inode, file);
5389
5390 if (file->f_mode & FMODE_READ)
5391 return ret;
5392
5393 /* If write only, the seq_file is just a stub */
5394 if (m)
5395 kfree(m->private);
5396 kfree(m);
5397
5398 return 0;
5399 }
5400
5401 static int tracing_buffers_open(struct inode *inode, struct file *filp);
5402 static ssize_t tracing_buffers_read(struct file *filp, char __user *ubuf,
5403 size_t count, loff_t *ppos);
5404 static int tracing_buffers_release(struct inode *inode, struct file *file);
5405 static ssize_t tracing_buffers_splice_read(struct file *file, loff_t *ppos,
5406 struct pipe_inode_info *pipe, size_t len, unsigned int flags);
5407
5408 static int snapshot_raw_open(struct inode *inode, struct file *filp)
5409 {
5410 struct ftrace_buffer_info *info;
5411 int ret;
5412
5413 ret = tracing_buffers_open(inode, filp);
5414 if (ret < 0)
5415 return ret;
5416
5417 info = filp->private_data;
5418
5419 if (info->iter.trace->use_max_tr) {
5420 tracing_buffers_release(inode, filp);
5421 return -EBUSY;
5422 }
5423
5424 info->iter.snapshot = true;
5425 info->iter.trace_buffer = &info->iter.tr->max_buffer;
5426
5427 return ret;
5428 }
5429
5430 #endif /* CONFIG_TRACER_SNAPSHOT */
5431
5432
5433 static const struct file_operations tracing_thresh_fops = {
5434 .open = tracing_open_generic,
5435 .read = tracing_thresh_read,
5436 .write = tracing_thresh_write,
5437 .llseek = generic_file_llseek,
5438 };
5439
5440 static const struct file_operations tracing_max_lat_fops = {
5441 .open = tracing_open_generic,
5442 .read = tracing_max_lat_read,
5443 .write = tracing_max_lat_write,
5444 .llseek = generic_file_llseek,
5445 };
5446
5447 static const struct file_operations set_tracer_fops = {
5448 .open = tracing_open_generic,
5449 .read = tracing_set_trace_read,
5450 .write = tracing_set_trace_write,
5451 .llseek = generic_file_llseek,
5452 };
5453
5454 static const struct file_operations tracing_pipe_fops = {
5455 .open = tracing_open_pipe,
5456 .poll = tracing_poll_pipe,
5457 .read = tracing_read_pipe,
5458 .splice_read = tracing_splice_read_pipe,
5459 .release = tracing_release_pipe,
5460 .llseek = no_llseek,
5461 };
5462
5463 static const struct file_operations tracing_entries_fops = {
5464 .open = tracing_open_generic_tr,
5465 .read = tracing_entries_read,
5466 .write = tracing_entries_write,
5467 .llseek = generic_file_llseek,
5468 .release = tracing_release_generic_tr,
5469 };
5470
5471 static const struct file_operations tracing_total_entries_fops = {
5472 .open = tracing_open_generic_tr,
5473 .read = tracing_total_entries_read,
5474 .llseek = generic_file_llseek,
5475 .release = tracing_release_generic_tr,
5476 };
5477
5478 static const struct file_operations tracing_free_buffer_fops = {
5479 .open = tracing_open_generic_tr,
5480 .write = tracing_free_buffer_write,
5481 .release = tracing_free_buffer_release,
5482 };
5483
5484 static const struct file_operations tracing_mark_fops = {
5485 .open = tracing_open_generic_tr,
5486 .write = tracing_mark_write,
5487 .llseek = generic_file_llseek,
5488 .release = tracing_release_generic_tr,
5489 };
5490
5491 static const struct file_operations trace_clock_fops = {
5492 .open = tracing_clock_open,
5493 .read = seq_read,
5494 .llseek = seq_lseek,
5495 .release = tracing_single_release_tr,
5496 .write = tracing_clock_write,
5497 };
5498
5499 #ifdef CONFIG_TRACER_SNAPSHOT
5500 static const struct file_operations snapshot_fops = {
5501 .open = tracing_snapshot_open,
5502 .read = seq_read,
5503 .write = tracing_snapshot_write,
5504 .llseek = tracing_lseek,
5505 .release = tracing_snapshot_release,
5506 };
5507
5508 static const struct file_operations snapshot_raw_fops = {
5509 .open = snapshot_raw_open,
5510 .read = tracing_buffers_read,
5511 .release = tracing_buffers_release,
5512 .splice_read = tracing_buffers_splice_read,
5513 .llseek = no_llseek,
5514 };
5515
5516 #endif /* CONFIG_TRACER_SNAPSHOT */
5517
5518 static int tracing_buffers_open(struct inode *inode, struct file *filp)
5519 {
5520 struct trace_array *tr = inode->i_private;
5521 struct ftrace_buffer_info *info;
5522 int ret;
5523
5524 if (tracing_disabled)
5525 return -ENODEV;
5526
5527 if (trace_array_get(tr) < 0)
5528 return -ENODEV;
5529
5530 info = kzalloc(sizeof(*info), GFP_KERNEL);
5531 if (!info) {
5532 trace_array_put(tr);
5533 return -ENOMEM;
5534 }
5535
5536 mutex_lock(&trace_types_lock);
5537
5538 info->iter.tr = tr;
5539 info->iter.cpu_file = tracing_get_cpu(inode);
5540 info->iter.trace = tr->current_trace;
5541 info->iter.trace_buffer = &tr->trace_buffer;
5542 info->spare = NULL;
5543 /* Force reading ring buffer for first read */
5544 info->read = (unsigned int)-1;
5545
5546 filp->private_data = info;
5547
5548 tr->current_trace->ref++;
5549
5550 mutex_unlock(&trace_types_lock);
5551
5552 ret = nonseekable_open(inode, filp);
5553 if (ret < 0)
5554 trace_array_put(tr);
5555
5556 return ret;
5557 }
5558
5559 static unsigned int
5560 tracing_buffers_poll(struct file *filp, poll_table *poll_table)
5561 {
5562 struct ftrace_buffer_info *info = filp->private_data;
5563 struct trace_iterator *iter = &info->iter;
5564
5565 return trace_poll(iter, filp, poll_table);
5566 }
5567
5568 static ssize_t
5569 tracing_buffers_read(struct file *filp, char __user *ubuf,
5570 size_t count, loff_t *ppos)
5571 {
5572 struct ftrace_buffer_info *info = filp->private_data;
5573 struct trace_iterator *iter = &info->iter;
5574 ssize_t ret;
5575 ssize_t size;
5576
5577 if (!count)
5578 return 0;
5579
5580 #ifdef CONFIG_TRACER_MAX_TRACE
5581 if (iter->snapshot && iter->tr->current_trace->use_max_tr)
5582 return -EBUSY;
5583 #endif
5584
5585 if (!info->spare)
5586 info->spare = ring_buffer_alloc_read_page(iter->trace_buffer->buffer,
5587 iter->cpu_file);
5588 if (!info->spare)
5589 return -ENOMEM;
5590
5591 /* Do we have previous read data to read? */
5592 if (info->read < PAGE_SIZE)
5593 goto read;
5594
5595 again:
5596 trace_access_lock(iter->cpu_file);
5597 ret = ring_buffer_read_page(iter->trace_buffer->buffer,
5598 &info->spare,
5599 count,
5600 iter->cpu_file, 0);
5601 trace_access_unlock(iter->cpu_file);
5602
5603 if (ret < 0) {
5604 if (trace_empty(iter)) {
5605 if ((filp->f_flags & O_NONBLOCK))
5606 return -EAGAIN;
5607
5608 ret = wait_on_pipe(iter, false);
5609 if (ret)
5610 return ret;
5611
5612 goto again;
5613 }
5614 return 0;
5615 }
5616
5617 info->read = 0;
5618 read:
5619 size = PAGE_SIZE - info->read;
5620 if (size > count)
5621 size = count;
5622
5623 ret = copy_to_user(ubuf, info->spare + info->read, size);
5624 if (ret == size)
5625 return -EFAULT;
5626
5627 size -= ret;
5628
5629 *ppos += size;
5630 info->read += size;
5631
5632 return size;
5633 }
5634
5635 static int tracing_buffers_release(struct inode *inode, struct file *file)
5636 {
5637 struct ftrace_buffer_info *info = file->private_data;
5638 struct trace_iterator *iter = &info->iter;
5639
5640 mutex_lock(&trace_types_lock);
5641
5642 iter->tr->current_trace->ref--;
5643
5644 __trace_array_put(iter->tr);
5645
5646 if (info->spare)
5647 ring_buffer_free_read_page(iter->trace_buffer->buffer, info->spare);
5648 kfree(info);
5649
5650 mutex_unlock(&trace_types_lock);
5651
5652 return 0;
5653 }
5654
5655 struct buffer_ref {
5656 struct ring_buffer *buffer;
5657 void *page;
5658 int ref;
5659 };
5660
5661 static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
5662 struct pipe_buffer *buf)
5663 {
5664 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
5665
5666 if (--ref->ref)
5667 return;
5668
5669 ring_buffer_free_read_page(ref->buffer, ref->page);
5670 kfree(ref);
5671 buf->private = 0;
5672 }
5673
5674 static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
5675 struct pipe_buffer *buf)
5676 {
5677 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
5678
5679 ref->ref++;
5680 }
5681
5682 /* Pipe buffer operations for a buffer. */
5683 static const struct pipe_buf_operations buffer_pipe_buf_ops = {
5684 .can_merge = 0,
5685 .confirm = generic_pipe_buf_confirm,
5686 .release = buffer_pipe_buf_release,
5687 .steal = generic_pipe_buf_steal,
5688 .get = buffer_pipe_buf_get,
5689 };
5690
5691 /*
5692 * Callback from splice_to_pipe(), if we need to release some pages
5693 * at the end of the spd in case we error'ed out in filling the pipe.
5694 */
5695 static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
5696 {
5697 struct buffer_ref *ref =
5698 (struct buffer_ref *)spd->partial[i].private;
5699
5700 if (--ref->ref)
5701 return;
5702
5703 ring_buffer_free_read_page(ref->buffer, ref->page);
5704 kfree(ref);
5705 spd->partial[i].private = 0;
5706 }
5707
5708 static ssize_t
5709 tracing_buffers_splice_read(struct file *file, loff_t *ppos,
5710 struct pipe_inode_info *pipe, size_t len,
5711 unsigned int flags)
5712 {
5713 struct ftrace_buffer_info *info = file->private_data;
5714 struct trace_iterator *iter = &info->iter;
5715 struct partial_page partial_def[PIPE_DEF_BUFFERS];
5716 struct page *pages_def[PIPE_DEF_BUFFERS];
5717 struct splice_pipe_desc spd = {
5718 .pages = pages_def,
5719 .partial = partial_def,
5720 .nr_pages_max = PIPE_DEF_BUFFERS,
5721 .flags = flags,
5722 .ops = &buffer_pipe_buf_ops,
5723 .spd_release = buffer_spd_release,
5724 };
5725 struct buffer_ref *ref;
5726 int entries, size, i;
5727 ssize_t ret = 0;
5728
5729 #ifdef CONFIG_TRACER_MAX_TRACE
5730 if (iter->snapshot && iter->tr->current_trace->use_max_tr)
5731 return -EBUSY;
5732 #endif
5733
5734 if (splice_grow_spd(pipe, &spd))
5735 return -ENOMEM;
5736
5737 if (*ppos & (PAGE_SIZE - 1))
5738 return -EINVAL;
5739
5740 if (len & (PAGE_SIZE - 1)) {
5741 if (len < PAGE_SIZE)
5742 return -EINVAL;
5743 len &= PAGE_MASK;
5744 }
5745
5746 again:
5747 trace_access_lock(iter->cpu_file);
5748 entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file);
5749
5750 for (i = 0; i < spd.nr_pages_max && len && entries; i++, len -= PAGE_SIZE) {
5751 struct page *page;
5752 int r;
5753
5754 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
5755 if (!ref) {
5756 ret = -ENOMEM;
5757 break;
5758 }
5759
5760 ref->ref = 1;
5761 ref->buffer = iter->trace_buffer->buffer;
5762 ref->page = ring_buffer_alloc_read_page(ref->buffer, iter->cpu_file);
5763 if (!ref->page) {
5764 ret = -ENOMEM;
5765 kfree(ref);
5766 break;
5767 }
5768
5769 r = ring_buffer_read_page(ref->buffer, &ref->page,
5770 len, iter->cpu_file, 1);
5771 if (r < 0) {
5772 ring_buffer_free_read_page(ref->buffer, ref->page);
5773 kfree(ref);
5774 break;
5775 }
5776
5777 /*
5778 * zero out any left over data, this is going to
5779 * user land.
5780 */
5781 size = ring_buffer_page_len(ref->page);
5782 if (size < PAGE_SIZE)
5783 memset(ref->page + size, 0, PAGE_SIZE - size);
5784
5785 page = virt_to_page(ref->page);
5786
5787 spd.pages[i] = page;
5788 spd.partial[i].len = PAGE_SIZE;
5789 spd.partial[i].offset = 0;
5790 spd.partial[i].private = (unsigned long)ref;
5791 spd.nr_pages++;
5792 *ppos += PAGE_SIZE;
5793
5794 entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file);
5795 }
5796
5797 trace_access_unlock(iter->cpu_file);
5798 spd.nr_pages = i;
5799
5800 /* did we read anything? */
5801 if (!spd.nr_pages) {
5802 if (ret)
5803 return ret;
5804
5805 if ((file->f_flags & O_NONBLOCK) || (flags & SPLICE_F_NONBLOCK))
5806 return -EAGAIN;
5807
5808 ret = wait_on_pipe(iter, true);
5809 if (ret)
5810 return ret;
5811
5812 goto again;
5813 }
5814
5815 ret = splice_to_pipe(pipe, &spd);
5816 splice_shrink_spd(&spd);
5817
5818 return ret;
5819 }
5820
5821 static const struct file_operations tracing_buffers_fops = {
5822 .open = tracing_buffers_open,
5823 .read = tracing_buffers_read,
5824 .poll = tracing_buffers_poll,
5825 .release = tracing_buffers_release,
5826 .splice_read = tracing_buffers_splice_read,
5827 .llseek = no_llseek,
5828 };
5829
5830 static ssize_t
5831 tracing_stats_read(struct file *filp, char __user *ubuf,
5832 size_t count, loff_t *ppos)
5833 {
5834 struct inode *inode = file_inode(filp);
5835 struct trace_array *tr = inode->i_private;
5836 struct trace_buffer *trace_buf = &tr->trace_buffer;
5837 int cpu = tracing_get_cpu(inode);
5838 struct trace_seq *s;
5839 unsigned long cnt;
5840 unsigned long long t;
5841 unsigned long usec_rem;
5842
5843 s = kmalloc(sizeof(*s), GFP_KERNEL);
5844 if (!s)
5845 return -ENOMEM;
5846
5847 trace_seq_init(s);
5848
5849 cnt = ring_buffer_entries_cpu(trace_buf->buffer, cpu);
5850 trace_seq_printf(s, "entries: %ld\n", cnt);
5851
5852 cnt = ring_buffer_overrun_cpu(trace_buf->buffer, cpu);
5853 trace_seq_printf(s, "overrun: %ld\n", cnt);
5854
5855 cnt = ring_buffer_commit_overrun_cpu(trace_buf->buffer, cpu);
5856 trace_seq_printf(s, "commit overrun: %ld\n", cnt);
5857
5858 cnt = ring_buffer_bytes_cpu(trace_buf->buffer, cpu);
5859 trace_seq_printf(s, "bytes: %ld\n", cnt);
5860
5861 if (trace_clocks[tr->clock_id].in_ns) {
5862 /* local or global for trace_clock */
5863 t = ns2usecs(ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
5864 usec_rem = do_div(t, USEC_PER_SEC);
5865 trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n",
5866 t, usec_rem);
5867
5868 t = ns2usecs(ring_buffer_time_stamp(trace_buf->buffer, cpu));
5869 usec_rem = do_div(t, USEC_PER_SEC);
5870 trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem);
5871 } else {
5872 /* counter or tsc mode for trace_clock */
5873 trace_seq_printf(s, "oldest event ts: %llu\n",
5874 ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
5875
5876 trace_seq_printf(s, "now ts: %llu\n",
5877 ring_buffer_time_stamp(trace_buf->buffer, cpu));
5878 }
5879
5880 cnt = ring_buffer_dropped_events_cpu(trace_buf->buffer, cpu);
5881 trace_seq_printf(s, "dropped events: %ld\n", cnt);
5882
5883 cnt = ring_buffer_read_events_cpu(trace_buf->buffer, cpu);
5884 trace_seq_printf(s, "read events: %ld\n", cnt);
5885
5886 count = simple_read_from_buffer(ubuf, count, ppos,
5887 s->buffer, trace_seq_used(s));
5888
5889 kfree(s);
5890
5891 return count;
5892 }
5893
5894 static const struct file_operations tracing_stats_fops = {
5895 .open = tracing_open_generic_tr,
5896 .read = tracing_stats_read,
5897 .llseek = generic_file_llseek,
5898 .release = tracing_release_generic_tr,
5899 };
5900
5901 #ifdef CONFIG_DYNAMIC_FTRACE
5902
5903 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
5904 {
5905 return 0;
5906 }
5907
5908 static ssize_t
5909 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
5910 size_t cnt, loff_t *ppos)
5911 {
5912 static char ftrace_dyn_info_buffer[1024];
5913 static DEFINE_MUTEX(dyn_info_mutex);
5914 unsigned long *p = filp->private_data;
5915 char *buf = ftrace_dyn_info_buffer;
5916 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
5917 int r;
5918
5919 mutex_lock(&dyn_info_mutex);
5920 r = sprintf(buf, "%ld ", *p);
5921
5922 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
5923 buf[r++] = '\n';
5924
5925 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
5926
5927 mutex_unlock(&dyn_info_mutex);
5928
5929 return r;
5930 }
5931
5932 static const struct file_operations tracing_dyn_info_fops = {
5933 .open = tracing_open_generic,
5934 .read = tracing_read_dyn_info,
5935 .llseek = generic_file_llseek,
5936 };
5937 #endif /* CONFIG_DYNAMIC_FTRACE */
5938
5939 #if defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE)
5940 static void
5941 ftrace_snapshot(unsigned long ip, unsigned long parent_ip, void **data)
5942 {
5943 tracing_snapshot();
5944 }
5945
5946 static void
5947 ftrace_count_snapshot(unsigned long ip, unsigned long parent_ip, void **data)
5948 {
5949 unsigned long *count = (long *)data;
5950
5951 if (!*count)
5952 return;
5953
5954 if (*count != -1)
5955 (*count)--;
5956
5957 tracing_snapshot();
5958 }
5959
5960 static int
5961 ftrace_snapshot_print(struct seq_file *m, unsigned long ip,
5962 struct ftrace_probe_ops *ops, void *data)
5963 {
5964 long count = (long)data;
5965
5966 seq_printf(m, "%ps:", (void *)ip);
5967
5968 seq_puts(m, "snapshot");
5969
5970 if (count == -1)
5971 seq_puts(m, ":unlimited\n");
5972 else
5973 seq_printf(m, ":count=%ld\n", count);
5974
5975 return 0;
5976 }
5977
5978 static struct ftrace_probe_ops snapshot_probe_ops = {
5979 .func = ftrace_snapshot,
5980 .print = ftrace_snapshot_print,
5981 };
5982
5983 static struct ftrace_probe_ops snapshot_count_probe_ops = {
5984 .func = ftrace_count_snapshot,
5985 .print = ftrace_snapshot_print,
5986 };
5987
5988 static int
5989 ftrace_trace_snapshot_callback(struct ftrace_hash *hash,
5990 char *glob, char *cmd, char *param, int enable)
5991 {
5992 struct ftrace_probe_ops *ops;
5993 void *count = (void *)-1;
5994 char *number;
5995 int ret;
5996
5997 /* hash funcs only work with set_ftrace_filter */
5998 if (!enable)
5999 return -EINVAL;
6000
6001 ops = param ? &snapshot_count_probe_ops : &snapshot_probe_ops;
6002
6003 if (glob[0] == '!') {
6004 unregister_ftrace_function_probe_func(glob+1, ops);
6005 return 0;
6006 }
6007
6008 if (!param)
6009 goto out_reg;
6010
6011 number = strsep(&param, ":");
6012
6013 if (!strlen(number))
6014 goto out_reg;
6015
6016 /*
6017 * We use the callback data field (which is a pointer)
6018 * as our counter.
6019 */
6020 ret = kstrtoul(number, 0, (unsigned long *)&count);
6021 if (ret)
6022 return ret;
6023
6024 out_reg:
6025 ret = register_ftrace_function_probe(glob, ops, count);
6026
6027 if (ret >= 0)
6028 alloc_snapshot(&global_trace);
6029
6030 return ret < 0 ? ret : 0;
6031 }
6032
6033 static struct ftrace_func_command ftrace_snapshot_cmd = {
6034 .name = "snapshot",
6035 .func = ftrace_trace_snapshot_callback,
6036 };
6037
6038 static __init int register_snapshot_cmd(void)
6039 {
6040 return register_ftrace_command(&ftrace_snapshot_cmd);
6041 }
6042 #else
6043 static inline __init int register_snapshot_cmd(void) { return 0; }
6044 #endif /* defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) */
6045
6046 static struct dentry *tracing_get_dentry(struct trace_array *tr)
6047 {
6048 if (WARN_ON(!tr->dir))
6049 return ERR_PTR(-ENODEV);
6050
6051 /* Top directory uses NULL as the parent */
6052 if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
6053 return NULL;
6054
6055 /* All sub buffers have a descriptor */
6056 return tr->dir;
6057 }
6058
6059 static struct dentry *tracing_dentry_percpu(struct trace_array *tr, int cpu)
6060 {
6061 struct dentry *d_tracer;
6062
6063 if (tr->percpu_dir)
6064 return tr->percpu_dir;
6065
6066 d_tracer = tracing_get_dentry(tr);
6067 if (IS_ERR(d_tracer))
6068 return NULL;
6069
6070 tr->percpu_dir = tracefs_create_dir("per_cpu", d_tracer);
6071
6072 WARN_ONCE(!tr->percpu_dir,
6073 "Could not create tracefs directory 'per_cpu/%d'\n", cpu);
6074
6075 return tr->percpu_dir;
6076 }
6077
6078 static struct dentry *
6079 trace_create_cpu_file(const char *name, umode_t mode, struct dentry *parent,
6080 void *data, long cpu, const struct file_operations *fops)
6081 {
6082 struct dentry *ret = trace_create_file(name, mode, parent, data, fops);
6083
6084 if (ret) /* See tracing_get_cpu() */
6085 d_inode(ret)->i_cdev = (void *)(cpu + 1);
6086 return ret;
6087 }
6088
6089 static void
6090 tracing_init_tracefs_percpu(struct trace_array *tr, long cpu)
6091 {
6092 struct dentry *d_percpu = tracing_dentry_percpu(tr, cpu);
6093 struct dentry *d_cpu;
6094 char cpu_dir[30]; /* 30 characters should be more than enough */
6095
6096 if (!d_percpu)
6097 return;
6098
6099 snprintf(cpu_dir, 30, "cpu%ld", cpu);
6100 d_cpu = tracefs_create_dir(cpu_dir, d_percpu);
6101 if (!d_cpu) {
6102 pr_warning("Could not create tracefs '%s' entry\n", cpu_dir);
6103 return;
6104 }
6105
6106 /* per cpu trace_pipe */
6107 trace_create_cpu_file("trace_pipe", 0444, d_cpu,
6108 tr, cpu, &tracing_pipe_fops);
6109
6110 /* per cpu trace */
6111 trace_create_cpu_file("trace", 0644, d_cpu,
6112 tr, cpu, &tracing_fops);
6113
6114 trace_create_cpu_file("trace_pipe_raw", 0444, d_cpu,
6115 tr, cpu, &tracing_buffers_fops);
6116
6117 trace_create_cpu_file("stats", 0444, d_cpu,
6118 tr, cpu, &tracing_stats_fops);
6119
6120 trace_create_cpu_file("buffer_size_kb", 0444, d_cpu,
6121 tr, cpu, &tracing_entries_fops);
6122
6123 #ifdef CONFIG_TRACER_SNAPSHOT
6124 trace_create_cpu_file("snapshot", 0644, d_cpu,
6125 tr, cpu, &snapshot_fops);
6126
6127 trace_create_cpu_file("snapshot_raw", 0444, d_cpu,
6128 tr, cpu, &snapshot_raw_fops);
6129 #endif
6130 }
6131
6132 #ifdef CONFIG_FTRACE_SELFTEST
6133 /* Let selftest have access to static functions in this file */
6134 #include "trace_selftest.c"
6135 #endif
6136
6137 static ssize_t
6138 trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
6139 loff_t *ppos)
6140 {
6141 struct trace_option_dentry *topt = filp->private_data;
6142 char *buf;
6143
6144 if (topt->flags->val & topt->opt->bit)
6145 buf = "1\n";
6146 else
6147 buf = "0\n";
6148
6149 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
6150 }
6151
6152 static ssize_t
6153 trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
6154 loff_t *ppos)
6155 {
6156 struct trace_option_dentry *topt = filp->private_data;
6157 unsigned long val;
6158 int ret;
6159
6160 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
6161 if (ret)
6162 return ret;
6163
6164 if (val != 0 && val != 1)
6165 return -EINVAL;
6166
6167 if (!!(topt->flags->val & topt->opt->bit) != val) {
6168 mutex_lock(&trace_types_lock);
6169 ret = __set_tracer_option(topt->tr, topt->flags,
6170 topt->opt, !val);
6171 mutex_unlock(&trace_types_lock);
6172 if (ret)
6173 return ret;
6174 }
6175
6176 *ppos += cnt;
6177
6178 return cnt;
6179 }
6180
6181
6182 static const struct file_operations trace_options_fops = {
6183 .open = tracing_open_generic,
6184 .read = trace_options_read,
6185 .write = trace_options_write,
6186 .llseek = generic_file_llseek,
6187 };
6188
6189 /*
6190 * In order to pass in both the trace_array descriptor as well as the index
6191 * to the flag that the trace option file represents, the trace_array
6192 * has a character array of trace_flags_index[], which holds the index
6193 * of the bit for the flag it represents. index[0] == 0, index[1] == 1, etc.
6194 * The address of this character array is passed to the flag option file
6195 * read/write callbacks.
6196 *
6197 * In order to extract both the index and the trace_array descriptor,
6198 * get_tr_index() uses the following algorithm.
6199 *
6200 * idx = *ptr;
6201 *
6202 * As the pointer itself contains the address of the index (remember
6203 * index[1] == 1).
6204 *
6205 * Then to get the trace_array descriptor, by subtracting that index
6206 * from the ptr, we get to the start of the index itself.
6207 *
6208 * ptr - idx == &index[0]
6209 *
6210 * Then a simple container_of() from that pointer gets us to the
6211 * trace_array descriptor.
6212 */
6213 static void get_tr_index(void *data, struct trace_array **ptr,
6214 unsigned int *pindex)
6215 {
6216 *pindex = *(unsigned char *)data;
6217
6218 *ptr = container_of(data - *pindex, struct trace_array,
6219 trace_flags_index);
6220 }
6221
6222 static ssize_t
6223 trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
6224 loff_t *ppos)
6225 {
6226 void *tr_index = filp->private_data;
6227 struct trace_array *tr;
6228 unsigned int index;
6229 char *buf;
6230
6231 get_tr_index(tr_index, &tr, &index);
6232
6233 if (tr->trace_flags & (1 << index))
6234 buf = "1\n";
6235 else
6236 buf = "0\n";
6237
6238 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
6239 }
6240
6241 static ssize_t
6242 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
6243 loff_t *ppos)
6244 {
6245 void *tr_index = filp->private_data;
6246 struct trace_array *tr;
6247 unsigned int index;
6248 unsigned long val;
6249 int ret;
6250
6251 get_tr_index(tr_index, &tr, &index);
6252
6253 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
6254 if (ret)
6255 return ret;
6256
6257 if (val != 0 && val != 1)
6258 return -EINVAL;
6259
6260 mutex_lock(&trace_types_lock);
6261 ret = set_tracer_flag(tr, 1 << index, val);
6262 mutex_unlock(&trace_types_lock);
6263
6264 if (ret < 0)
6265 return ret;
6266
6267 *ppos += cnt;
6268
6269 return cnt;
6270 }
6271
6272 static const struct file_operations trace_options_core_fops = {
6273 .open = tracing_open_generic,
6274 .read = trace_options_core_read,
6275 .write = trace_options_core_write,
6276 .llseek = generic_file_llseek,
6277 };
6278
6279 struct dentry *trace_create_file(const char *name,
6280 umode_t mode,
6281 struct dentry *parent,
6282 void *data,
6283 const struct file_operations *fops)
6284 {
6285 struct dentry *ret;
6286
6287 ret = tracefs_create_file(name, mode, parent, data, fops);
6288 if (!ret)
6289 pr_warning("Could not create tracefs '%s' entry\n", name);
6290
6291 return ret;
6292 }
6293
6294
6295 static struct dentry *trace_options_init_dentry(struct trace_array *tr)
6296 {
6297 struct dentry *d_tracer;
6298
6299 if (tr->options)
6300 return tr->options;
6301
6302 d_tracer = tracing_get_dentry(tr);
6303 if (IS_ERR(d_tracer))
6304 return NULL;
6305
6306 tr->options = tracefs_create_dir("options", d_tracer);
6307 if (!tr->options) {
6308 pr_warning("Could not create tracefs directory 'options'\n");
6309 return NULL;
6310 }
6311
6312 return tr->options;
6313 }
6314
6315 static void
6316 create_trace_option_file(struct trace_array *tr,
6317 struct trace_option_dentry *topt,
6318 struct tracer_flags *flags,
6319 struct tracer_opt *opt)
6320 {
6321 struct dentry *t_options;
6322
6323 t_options = trace_options_init_dentry(tr);
6324 if (!t_options)
6325 return;
6326
6327 topt->flags = flags;
6328 topt->opt = opt;
6329 topt->tr = tr;
6330
6331 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
6332 &trace_options_fops);
6333
6334 }
6335
6336 static struct trace_option_dentry *
6337 create_trace_option_files(struct trace_array *tr, struct tracer *tracer)
6338 {
6339 struct trace_option_dentry *topts;
6340 struct tracer_flags *flags;
6341 struct tracer_opt *opts;
6342 int cnt;
6343
6344 if (!tracer)
6345 return NULL;
6346
6347 flags = tracer->flags;
6348
6349 if (!flags || !flags->opts)
6350 return NULL;
6351
6352 opts = flags->opts;
6353
6354 for (cnt = 0; opts[cnt].name; cnt++)
6355 ;
6356
6357 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
6358 if (!topts)
6359 return NULL;
6360
6361 for (cnt = 0; opts[cnt].name; cnt++) {
6362 create_trace_option_file(tr, &topts[cnt], flags,
6363 &opts[cnt]);
6364 WARN_ONCE(topts[cnt].entry == NULL,
6365 "Failed to create trace option: %s",
6366 opts[cnt].name);
6367 }
6368
6369 return topts;
6370 }
6371
6372 static struct dentry *
6373 create_trace_option_core_file(struct trace_array *tr,
6374 const char *option, long index)
6375 {
6376 struct dentry *t_options;
6377
6378 t_options = trace_options_init_dentry(tr);
6379 if (!t_options)
6380 return NULL;
6381
6382 return trace_create_file(option, 0644, t_options,
6383 (void *)&tr->trace_flags_index[index],
6384 &trace_options_core_fops);
6385 }
6386
6387 static __init void create_trace_options_dir(struct trace_array *tr)
6388 {
6389 struct dentry *t_options;
6390 int i;
6391
6392 t_options = trace_options_init_dentry(tr);
6393 if (!t_options)
6394 return;
6395
6396 for (i = 0; trace_options[i]; i++)
6397 create_trace_option_core_file(tr, trace_options[i], i);
6398 }
6399
6400 static ssize_t
6401 rb_simple_read(struct file *filp, char __user *ubuf,
6402 size_t cnt, loff_t *ppos)
6403 {
6404 struct trace_array *tr = filp->private_data;
6405 char buf[64];
6406 int r;
6407
6408 r = tracer_tracing_is_on(tr);
6409 r = sprintf(buf, "%d\n", r);
6410
6411 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
6412 }
6413
6414 static ssize_t
6415 rb_simple_write(struct file *filp, const char __user *ubuf,
6416 size_t cnt, loff_t *ppos)
6417 {
6418 struct trace_array *tr = filp->private_data;
6419 struct ring_buffer *buffer = tr->trace_buffer.buffer;
6420 unsigned long val;
6421 int ret;
6422
6423 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
6424 if (ret)
6425 return ret;
6426
6427 if (buffer) {
6428 mutex_lock(&trace_types_lock);
6429 if (val) {
6430 tracer_tracing_on(tr);
6431 if (tr->current_trace->start)
6432 tr->current_trace->start(tr);
6433 } else {
6434 tracer_tracing_off(tr);
6435 if (tr->current_trace->stop)
6436 tr->current_trace->stop(tr);
6437 }
6438 mutex_unlock(&trace_types_lock);
6439 }
6440
6441 (*ppos)++;
6442
6443 return cnt;
6444 }
6445
6446 static const struct file_operations rb_simple_fops = {
6447 .open = tracing_open_generic_tr,
6448 .read = rb_simple_read,
6449 .write = rb_simple_write,
6450 .release = tracing_release_generic_tr,
6451 .llseek = default_llseek,
6452 };
6453
6454 struct dentry *trace_instance_dir;
6455
6456 static void
6457 init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer);
6458
6459 static int
6460 allocate_trace_buffer(struct trace_array *tr, struct trace_buffer *buf, int size)
6461 {
6462 enum ring_buffer_flags rb_flags;
6463
6464 rb_flags = tr->trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
6465
6466 buf->tr = tr;
6467
6468 buf->buffer = ring_buffer_alloc(size, rb_flags);
6469 if (!buf->buffer)
6470 return -ENOMEM;
6471
6472 buf->data = alloc_percpu(struct trace_array_cpu);
6473 if (!buf->data) {
6474 ring_buffer_free(buf->buffer);
6475 return -ENOMEM;
6476 }
6477
6478 /* Allocate the first page for all buffers */
6479 set_buffer_entries(&tr->trace_buffer,
6480 ring_buffer_size(tr->trace_buffer.buffer, 0));
6481
6482 return 0;
6483 }
6484
6485 static int allocate_trace_buffers(struct trace_array *tr, int size)
6486 {
6487 int ret;
6488
6489 ret = allocate_trace_buffer(tr, &tr->trace_buffer, size);
6490 if (ret)
6491 return ret;
6492
6493 #ifdef CONFIG_TRACER_MAX_TRACE
6494 ret = allocate_trace_buffer(tr, &tr->max_buffer,
6495 allocate_snapshot ? size : 1);
6496 if (WARN_ON(ret)) {
6497 ring_buffer_free(tr->trace_buffer.buffer);
6498 free_percpu(tr->trace_buffer.data);
6499 return -ENOMEM;
6500 }
6501 tr->allocated_snapshot = allocate_snapshot;
6502
6503 /*
6504 * Only the top level trace array gets its snapshot allocated
6505 * from the kernel command line.
6506 */
6507 allocate_snapshot = false;
6508 #endif
6509 return 0;
6510 }
6511
6512 static void free_trace_buffer(struct trace_buffer *buf)
6513 {
6514 if (buf->buffer) {
6515 ring_buffer_free(buf->buffer);
6516 buf->buffer = NULL;
6517 free_percpu(buf->data);
6518 buf->data = NULL;
6519 }
6520 }
6521
6522 static void free_trace_buffers(struct trace_array *tr)
6523 {
6524 if (!tr)
6525 return;
6526
6527 free_trace_buffer(&tr->trace_buffer);
6528
6529 #ifdef CONFIG_TRACER_MAX_TRACE
6530 free_trace_buffer(&tr->max_buffer);
6531 #endif
6532 }
6533
6534 static void init_trace_flags_index(struct trace_array *tr)
6535 {
6536 int i;
6537
6538 /* Used by the trace options files */
6539 for (i = 0; i < TRACE_FLAGS_MAX_SIZE; i++)
6540 tr->trace_flags_index[i] = i;
6541 }
6542
6543 static int instance_mkdir(const char *name)
6544 {
6545 struct trace_array *tr;
6546 int ret;
6547
6548 mutex_lock(&trace_types_lock);
6549
6550 ret = -EEXIST;
6551 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
6552 if (tr->name && strcmp(tr->name, name) == 0)
6553 goto out_unlock;
6554 }
6555
6556 ret = -ENOMEM;
6557 tr = kzalloc(sizeof(*tr), GFP_KERNEL);
6558 if (!tr)
6559 goto out_unlock;
6560
6561 tr->name = kstrdup(name, GFP_KERNEL);
6562 if (!tr->name)
6563 goto out_free_tr;
6564
6565 if (!alloc_cpumask_var(&tr->tracing_cpumask, GFP_KERNEL))
6566 goto out_free_tr;
6567
6568 tr->trace_flags = global_trace.trace_flags;
6569
6570 cpumask_copy(tr->tracing_cpumask, cpu_all_mask);
6571
6572 raw_spin_lock_init(&tr->start_lock);
6573
6574 tr->max_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
6575
6576 tr->current_trace = &nop_trace;
6577
6578 INIT_LIST_HEAD(&tr->systems);
6579 INIT_LIST_HEAD(&tr->events);
6580
6581 if (allocate_trace_buffers(tr, trace_buf_size) < 0)
6582 goto out_free_tr;
6583
6584 tr->dir = tracefs_create_dir(name, trace_instance_dir);
6585 if (!tr->dir)
6586 goto out_free_tr;
6587
6588 ret = event_trace_add_tracer(tr->dir, tr);
6589 if (ret) {
6590 tracefs_remove_recursive(tr->dir);
6591 goto out_free_tr;
6592 }
6593
6594 init_tracer_tracefs(tr, tr->dir);
6595 init_trace_flags_index(tr);
6596
6597 list_add(&tr->list, &ftrace_trace_arrays);
6598
6599 mutex_unlock(&trace_types_lock);
6600
6601 return 0;
6602
6603 out_free_tr:
6604 free_trace_buffers(tr);
6605 free_cpumask_var(tr->tracing_cpumask);
6606 kfree(tr->name);
6607 kfree(tr);
6608
6609 out_unlock:
6610 mutex_unlock(&trace_types_lock);
6611
6612 return ret;
6613
6614 }
6615
6616 static int instance_rmdir(const char *name)
6617 {
6618 struct trace_array *tr;
6619 int found = 0;
6620 int ret;
6621
6622 mutex_lock(&trace_types_lock);
6623
6624 ret = -ENODEV;
6625 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
6626 if (tr->name && strcmp(tr->name, name) == 0) {
6627 found = 1;
6628 break;
6629 }
6630 }
6631 if (!found)
6632 goto out_unlock;
6633
6634 ret = -EBUSY;
6635 if (tr->ref || (tr->current_trace && tr->current_trace->ref))
6636 goto out_unlock;
6637
6638 list_del(&tr->list);
6639
6640 tracing_set_nop(tr);
6641 event_trace_del_tracer(tr);
6642 ftrace_destroy_function_files(tr);
6643 debugfs_remove_recursive(tr->dir);
6644 free_trace_buffers(tr);
6645
6646 kfree(tr->name);
6647 kfree(tr);
6648
6649 ret = 0;
6650
6651 out_unlock:
6652 mutex_unlock(&trace_types_lock);
6653
6654 return ret;
6655 }
6656
6657 static __init void create_trace_instances(struct dentry *d_tracer)
6658 {
6659 trace_instance_dir = tracefs_create_instance_dir("instances", d_tracer,
6660 instance_mkdir,
6661 instance_rmdir);
6662 if (WARN_ON(!trace_instance_dir))
6663 return;
6664 }
6665
6666 static void
6667 init_tracer_tracefs(struct trace_array *tr, struct dentry *d_tracer)
6668 {
6669 int cpu;
6670
6671 trace_create_file("available_tracers", 0444, d_tracer,
6672 tr, &show_traces_fops);
6673
6674 trace_create_file("current_tracer", 0644, d_tracer,
6675 tr, &set_tracer_fops);
6676
6677 trace_create_file("tracing_cpumask", 0644, d_tracer,
6678 tr, &tracing_cpumask_fops);
6679
6680 trace_create_file("trace_options", 0644, d_tracer,
6681 tr, &tracing_iter_fops);
6682
6683 trace_create_file("trace", 0644, d_tracer,
6684 tr, &tracing_fops);
6685
6686 trace_create_file("trace_pipe", 0444, d_tracer,
6687 tr, &tracing_pipe_fops);
6688
6689 trace_create_file("buffer_size_kb", 0644, d_tracer,
6690 tr, &tracing_entries_fops);
6691
6692 trace_create_file("buffer_total_size_kb", 0444, d_tracer,
6693 tr, &tracing_total_entries_fops);
6694
6695 trace_create_file("free_buffer", 0200, d_tracer,
6696 tr, &tracing_free_buffer_fops);
6697
6698 trace_create_file("trace_marker", 0220, d_tracer,
6699 tr, &tracing_mark_fops);
6700
6701 trace_create_file("trace_clock", 0644, d_tracer, tr,
6702 &trace_clock_fops);
6703
6704 trace_create_file("tracing_on", 0644, d_tracer,
6705 tr, &rb_simple_fops);
6706
6707 #ifdef CONFIG_TRACER_MAX_TRACE
6708 trace_create_file("tracing_max_latency", 0644, d_tracer,
6709 &tr->max_latency, &tracing_max_lat_fops);
6710 #endif
6711
6712 if (ftrace_create_function_files(tr, d_tracer))
6713 WARN(1, "Could not allocate function filter files");
6714
6715 #ifdef CONFIG_TRACER_SNAPSHOT
6716 trace_create_file("snapshot", 0644, d_tracer,
6717 tr, &snapshot_fops);
6718 #endif
6719
6720 for_each_tracing_cpu(cpu)
6721 tracing_init_tracefs_percpu(tr, cpu);
6722
6723 }
6724
6725 static struct vfsmount *trace_automount(void *ingore)
6726 {
6727 struct vfsmount *mnt;
6728 struct file_system_type *type;
6729
6730 /*
6731 * To maintain backward compatibility for tools that mount
6732 * debugfs to get to the tracing facility, tracefs is automatically
6733 * mounted to the debugfs/tracing directory.
6734 */
6735 type = get_fs_type("tracefs");
6736 if (!type)
6737 return NULL;
6738 mnt = vfs_kern_mount(type, 0, "tracefs", NULL);
6739 put_filesystem(type);
6740 if (IS_ERR(mnt))
6741 return NULL;
6742 mntget(mnt);
6743
6744 return mnt;
6745 }
6746
6747 /**
6748 * tracing_init_dentry - initialize top level trace array
6749 *
6750 * This is called when creating files or directories in the tracing
6751 * directory. It is called via fs_initcall() by any of the boot up code
6752 * and expects to return the dentry of the top level tracing directory.
6753 */
6754 struct dentry *tracing_init_dentry(void)
6755 {
6756 struct trace_array *tr = &global_trace;
6757
6758 /* The top level trace array uses NULL as parent */
6759 if (tr->dir)
6760 return NULL;
6761
6762 if (WARN_ON(!debugfs_initialized()))
6763 return ERR_PTR(-ENODEV);
6764
6765 /*
6766 * As there may still be users that expect the tracing
6767 * files to exist in debugfs/tracing, we must automount
6768 * the tracefs file system there, so older tools still
6769 * work with the newer kerenl.
6770 */
6771 tr->dir = debugfs_create_automount("tracing", NULL,
6772 trace_automount, NULL);
6773 if (!tr->dir) {
6774 pr_warn_once("Could not create debugfs directory 'tracing'\n");
6775 return ERR_PTR(-ENOMEM);
6776 }
6777
6778 return NULL;
6779 }
6780
6781 extern struct trace_enum_map *__start_ftrace_enum_maps[];
6782 extern struct trace_enum_map *__stop_ftrace_enum_maps[];
6783
6784 static void __init trace_enum_init(void)
6785 {
6786 int len;
6787
6788 len = __stop_ftrace_enum_maps - __start_ftrace_enum_maps;
6789 trace_insert_enum_map(NULL, __start_ftrace_enum_maps, len);
6790 }
6791
6792 #ifdef CONFIG_MODULES
6793 static void trace_module_add_enums(struct module *mod)
6794 {
6795 if (!mod->num_trace_enums)
6796 return;
6797
6798 /*
6799 * Modules with bad taint do not have events created, do
6800 * not bother with enums either.
6801 */
6802 if (trace_module_has_bad_taint(mod))
6803 return;
6804
6805 trace_insert_enum_map(mod, mod->trace_enums, mod->num_trace_enums);
6806 }
6807
6808 #ifdef CONFIG_TRACE_ENUM_MAP_FILE
6809 static void trace_module_remove_enums(struct module *mod)
6810 {
6811 union trace_enum_map_item *map;
6812 union trace_enum_map_item **last = &trace_enum_maps;
6813
6814 if (!mod->num_trace_enums)
6815 return;
6816
6817 mutex_lock(&trace_enum_mutex);
6818
6819 map = trace_enum_maps;
6820
6821 while (map) {
6822 if (map->head.mod == mod)
6823 break;
6824 map = trace_enum_jmp_to_tail(map);
6825 last = &map->tail.next;
6826 map = map->tail.next;
6827 }
6828 if (!map)
6829 goto out;
6830
6831 *last = trace_enum_jmp_to_tail(map)->tail.next;
6832 kfree(map);
6833 out:
6834 mutex_unlock(&trace_enum_mutex);
6835 }
6836 #else
6837 static inline void trace_module_remove_enums(struct module *mod) { }
6838 #endif /* CONFIG_TRACE_ENUM_MAP_FILE */
6839
6840 static int trace_module_notify(struct notifier_block *self,
6841 unsigned long val, void *data)
6842 {
6843 struct module *mod = data;
6844
6845 switch (val) {
6846 case MODULE_STATE_COMING:
6847 trace_module_add_enums(mod);
6848 break;
6849 case MODULE_STATE_GOING:
6850 trace_module_remove_enums(mod);
6851 break;
6852 }
6853
6854 return 0;
6855 }
6856
6857 static struct notifier_block trace_module_nb = {
6858 .notifier_call = trace_module_notify,
6859 .priority = 0,
6860 };
6861 #endif /* CONFIG_MODULES */
6862
6863 static __init int tracer_init_tracefs(void)
6864 {
6865 struct dentry *d_tracer;
6866 struct tracer *t;
6867
6868 trace_access_lock_init();
6869
6870 d_tracer = tracing_init_dentry();
6871 if (IS_ERR(d_tracer))
6872 return 0;
6873
6874 init_tracer_tracefs(&global_trace, d_tracer);
6875
6876 trace_create_file("tracing_thresh", 0644, d_tracer,
6877 &global_trace, &tracing_thresh_fops);
6878
6879 trace_create_file("README", 0444, d_tracer,
6880 NULL, &tracing_readme_fops);
6881
6882 trace_create_file("saved_cmdlines", 0444, d_tracer,
6883 NULL, &tracing_saved_cmdlines_fops);
6884
6885 trace_create_file("saved_cmdlines_size", 0644, d_tracer,
6886 NULL, &tracing_saved_cmdlines_size_fops);
6887
6888 trace_enum_init();
6889
6890 trace_create_enum_file(d_tracer);
6891
6892 #ifdef CONFIG_MODULES
6893 register_module_notifier(&trace_module_nb);
6894 #endif
6895
6896 #ifdef CONFIG_DYNAMIC_FTRACE
6897 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
6898 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
6899 #endif
6900
6901 create_trace_instances(d_tracer);
6902
6903 create_trace_options_dir(&global_trace);
6904
6905 mutex_lock(&trace_types_lock);
6906 for (t = trace_types; t; t = t->next)
6907 add_tracer_options(&global_trace, t);
6908 mutex_unlock(&trace_types_lock);
6909
6910 return 0;
6911 }
6912
6913 static int trace_panic_handler(struct notifier_block *this,
6914 unsigned long event, void *unused)
6915 {
6916 if (ftrace_dump_on_oops)
6917 ftrace_dump(ftrace_dump_on_oops);
6918 return NOTIFY_OK;
6919 }
6920
6921 static struct notifier_block trace_panic_notifier = {
6922 .notifier_call = trace_panic_handler,
6923 .next = NULL,
6924 .priority = 150 /* priority: INT_MAX >= x >= 0 */
6925 };
6926
6927 static int trace_die_handler(struct notifier_block *self,
6928 unsigned long val,
6929 void *data)
6930 {
6931 switch (val) {
6932 case DIE_OOPS:
6933 if (ftrace_dump_on_oops)
6934 ftrace_dump(ftrace_dump_on_oops);
6935 break;
6936 default:
6937 break;
6938 }
6939 return NOTIFY_OK;
6940 }
6941
6942 static struct notifier_block trace_die_notifier = {
6943 .notifier_call = trace_die_handler,
6944 .priority = 200
6945 };
6946
6947 /*
6948 * printk is set to max of 1024, we really don't need it that big.
6949 * Nothing should be printing 1000 characters anyway.
6950 */
6951 #define TRACE_MAX_PRINT 1000
6952
6953 /*
6954 * Define here KERN_TRACE so that we have one place to modify
6955 * it if we decide to change what log level the ftrace dump
6956 * should be at.
6957 */
6958 #define KERN_TRACE KERN_EMERG
6959
6960 void
6961 trace_printk_seq(struct trace_seq *s)
6962 {
6963 /* Probably should print a warning here. */
6964 if (s->seq.len >= TRACE_MAX_PRINT)
6965 s->seq.len = TRACE_MAX_PRINT;
6966
6967 /*
6968 * More paranoid code. Although the buffer size is set to
6969 * PAGE_SIZE, and TRACE_MAX_PRINT is 1000, this is just
6970 * an extra layer of protection.
6971 */
6972 if (WARN_ON_ONCE(s->seq.len >= s->seq.size))
6973 s->seq.len = s->seq.size - 1;
6974
6975 /* should be zero ended, but we are paranoid. */
6976 s->buffer[s->seq.len] = 0;
6977
6978 printk(KERN_TRACE "%s", s->buffer);
6979
6980 trace_seq_init(s);
6981 }
6982
6983 void trace_init_global_iter(struct trace_iterator *iter)
6984 {
6985 iter->tr = &global_trace;
6986 iter->trace = iter->tr->current_trace;
6987 iter->cpu_file = RING_BUFFER_ALL_CPUS;
6988 iter->trace_buffer = &global_trace.trace_buffer;
6989
6990 if (iter->trace && iter->trace->open)
6991 iter->trace->open(iter);
6992
6993 /* Annotate start of buffers if we had overruns */
6994 if (ring_buffer_overruns(iter->trace_buffer->buffer))
6995 iter->iter_flags |= TRACE_FILE_ANNOTATE;
6996
6997 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
6998 if (trace_clocks[iter->tr->clock_id].in_ns)
6999 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
7000 }
7001
7002 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
7003 {
7004 /* use static because iter can be a bit big for the stack */
7005 static struct trace_iterator iter;
7006 static atomic_t dump_running;
7007 struct trace_array *tr = &global_trace;
7008 unsigned int old_userobj;
7009 unsigned long flags;
7010 int cnt = 0, cpu;
7011
7012 /* Only allow one dump user at a time. */
7013 if (atomic_inc_return(&dump_running) != 1) {
7014 atomic_dec(&dump_running);
7015 return;
7016 }
7017
7018 /*
7019 * Always turn off tracing when we dump.
7020 * We don't need to show trace output of what happens
7021 * between multiple crashes.
7022 *
7023 * If the user does a sysrq-z, then they can re-enable
7024 * tracing with echo 1 > tracing_on.
7025 */
7026 tracing_off();
7027
7028 local_irq_save(flags);
7029
7030 /* Simulate the iterator */
7031 trace_init_global_iter(&iter);
7032
7033 for_each_tracing_cpu(cpu) {
7034 atomic_inc(&per_cpu_ptr(iter.trace_buffer->data, cpu)->disabled);
7035 }
7036
7037 old_userobj = tr->trace_flags & TRACE_ITER_SYM_USEROBJ;
7038
7039 /* don't look at user memory in panic mode */
7040 tr->trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
7041
7042 switch (oops_dump_mode) {
7043 case DUMP_ALL:
7044 iter.cpu_file = RING_BUFFER_ALL_CPUS;
7045 break;
7046 case DUMP_ORIG:
7047 iter.cpu_file = raw_smp_processor_id();
7048 break;
7049 case DUMP_NONE:
7050 goto out_enable;
7051 default:
7052 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
7053 iter.cpu_file = RING_BUFFER_ALL_CPUS;
7054 }
7055
7056 printk(KERN_TRACE "Dumping ftrace buffer:\n");
7057
7058 /* Did function tracer already get disabled? */
7059 if (ftrace_is_dead()) {
7060 printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n");
7061 printk("# MAY BE MISSING FUNCTION EVENTS\n");
7062 }
7063
7064 /*
7065 * We need to stop all tracing on all CPUS to read the
7066 * the next buffer. This is a bit expensive, but is
7067 * not done often. We fill all what we can read,
7068 * and then release the locks again.
7069 */
7070
7071 while (!trace_empty(&iter)) {
7072
7073 if (!cnt)
7074 printk(KERN_TRACE "---------------------------------\n");
7075
7076 cnt++;
7077
7078 /* reset all but tr, trace, and overruns */
7079 memset(&iter.seq, 0,
7080 sizeof(struct trace_iterator) -
7081 offsetof(struct trace_iterator, seq));
7082 iter.iter_flags |= TRACE_FILE_LAT_FMT;
7083 iter.pos = -1;
7084
7085 if (trace_find_next_entry_inc(&iter) != NULL) {
7086 int ret;
7087
7088 ret = print_trace_line(&iter);
7089 if (ret != TRACE_TYPE_NO_CONSUME)
7090 trace_consume(&iter);
7091 }
7092 touch_nmi_watchdog();
7093
7094 trace_printk_seq(&iter.seq);
7095 }
7096
7097 if (!cnt)
7098 printk(KERN_TRACE " (ftrace buffer empty)\n");
7099 else
7100 printk(KERN_TRACE "---------------------------------\n");
7101
7102 out_enable:
7103 tr->trace_flags |= old_userobj;
7104
7105 for_each_tracing_cpu(cpu) {
7106 atomic_dec(&per_cpu_ptr(iter.trace_buffer->data, cpu)->disabled);
7107 }
7108 atomic_dec(&dump_running);
7109 local_irq_restore(flags);
7110 }
7111 EXPORT_SYMBOL_GPL(ftrace_dump);
7112
7113 __init static int tracer_alloc_buffers(void)
7114 {
7115 int ring_buf_size;
7116 int ret = -ENOMEM;
7117
7118 /*
7119 * Make sure we don't accidently add more trace options
7120 * than we have bits for.
7121 */
7122 BUILD_BUG_ON(TRACE_ITER_LAST_BIT > TRACE_FLAGS_MAX_SIZE);
7123
7124 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
7125 goto out;
7126
7127 if (!alloc_cpumask_var(&global_trace.tracing_cpumask, GFP_KERNEL))
7128 goto out_free_buffer_mask;
7129
7130 /* Only allocate trace_printk buffers if a trace_printk exists */
7131 if (__stop___trace_bprintk_fmt != __start___trace_bprintk_fmt)
7132 /* Must be called before global_trace.buffer is allocated */
7133 trace_printk_init_buffers();
7134
7135 /* To save memory, keep the ring buffer size to its minimum */
7136 if (ring_buffer_expanded)
7137 ring_buf_size = trace_buf_size;
7138 else
7139 ring_buf_size = 1;
7140
7141 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
7142 cpumask_copy(global_trace.tracing_cpumask, cpu_all_mask);
7143
7144 raw_spin_lock_init(&global_trace.start_lock);
7145
7146 /* Used for event triggers */
7147 temp_buffer = ring_buffer_alloc(PAGE_SIZE, RB_FL_OVERWRITE);
7148 if (!temp_buffer)
7149 goto out_free_cpumask;
7150
7151 if (trace_create_savedcmd() < 0)
7152 goto out_free_temp_buffer;
7153
7154 /* TODO: make the number of buffers hot pluggable with CPUS */
7155 if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) {
7156 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
7157 WARN_ON(1);
7158 goto out_free_savedcmd;
7159 }
7160
7161 if (global_trace.buffer_disabled)
7162 tracing_off();
7163
7164 if (trace_boot_clock) {
7165 ret = tracing_set_clock(&global_trace, trace_boot_clock);
7166 if (ret < 0)
7167 pr_warning("Trace clock %s not defined, going back to default\n",
7168 trace_boot_clock);
7169 }
7170
7171 /*
7172 * register_tracer() might reference current_trace, so it
7173 * needs to be set before we register anything. This is
7174 * just a bootstrap of current_trace anyway.
7175 */
7176 global_trace.current_trace = &nop_trace;
7177
7178 global_trace.max_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
7179
7180 ftrace_init_global_array_ops(&global_trace);
7181
7182 init_trace_flags_index(&global_trace);
7183
7184 register_tracer(&nop_trace);
7185
7186 /* All seems OK, enable tracing */
7187 tracing_disabled = 0;
7188
7189 atomic_notifier_chain_register(&panic_notifier_list,
7190 &trace_panic_notifier);
7191
7192 register_die_notifier(&trace_die_notifier);
7193
7194 global_trace.flags = TRACE_ARRAY_FL_GLOBAL;
7195
7196 INIT_LIST_HEAD(&global_trace.systems);
7197 INIT_LIST_HEAD(&global_trace.events);
7198 list_add(&global_trace.list, &ftrace_trace_arrays);
7199
7200 while (trace_boot_options) {
7201 char *option;
7202
7203 option = strsep(&trace_boot_options, ",");
7204 trace_set_options(&global_trace, option);
7205 }
7206
7207 register_snapshot_cmd();
7208
7209 return 0;
7210
7211 out_free_savedcmd:
7212 free_saved_cmdlines_buffer(savedcmd);
7213 out_free_temp_buffer:
7214 ring_buffer_free(temp_buffer);
7215 out_free_cpumask:
7216 free_cpumask_var(global_trace.tracing_cpumask);
7217 out_free_buffer_mask:
7218 free_cpumask_var(tracing_buffer_mask);
7219 out:
7220 return ret;
7221 }
7222
7223 void __init trace_init(void)
7224 {
7225 if (tracepoint_printk) {
7226 tracepoint_print_iter =
7227 kmalloc(sizeof(*tracepoint_print_iter), GFP_KERNEL);
7228 if (WARN_ON(!tracepoint_print_iter))
7229 tracepoint_printk = 0;
7230 }
7231 tracer_alloc_buffers();
7232 trace_event_init();
7233 }
7234
7235 __init static int clear_boot_tracer(void)
7236 {
7237 /*
7238 * The default tracer at boot buffer is an init section.
7239 * This function is called in lateinit. If we did not
7240 * find the boot tracer, then clear it out, to prevent
7241 * later registration from accessing the buffer that is
7242 * about to be freed.
7243 */
7244 if (!default_bootup_tracer)
7245 return 0;
7246
7247 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
7248 default_bootup_tracer);
7249 default_bootup_tracer = NULL;
7250
7251 return 0;
7252 }
7253
7254 fs_initcall(tracer_init_tracefs);
7255 late_initcall(clear_boot_tracer);
This page took 0.181723 seconds and 6 git commands to generate.