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