]> git.karo-electronics.de Git - karo-tx-linux.git/blob - kernel/trace/trace.c
tracing: Fix potential out-of-bounds in trace_get_user()
[karo-tx-linux.git] / kernel / trace / trace.c
1 /*
2  * ring buffer based function tracer
3  *
4  * Copyright (C) 2007-2012 Steven Rostedt <srostedt@redhat.com>
5  * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6  *
7  * Originally taken from the RT patch by:
8  *    Arnaldo Carvalho de Melo <acme@redhat.com>
9  *
10  * Based on code from the latency_tracer, that is:
11  *  Copyright (C) 2004-2006 Ingo Molnar
12  *  Copyright (C) 2004 Nadia Yvette Chambers
13  */
14 #include <linux/ring_buffer.h>
15 #include <generated/utsrelease.h>
16 #include <linux/stacktrace.h>
17 #include <linux/writeback.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/notifier.h>
21 #include <linux/irqflags.h>
22 #include <linux/debugfs.h>
23 #include <linux/pagemap.h>
24 #include <linux/hardirq.h>
25 #include <linux/linkage.h>
26 #include <linux/uaccess.h>
27 #include <linux/kprobes.h>
28 #include <linux/ftrace.h>
29 #include <linux/module.h>
30 #include <linux/percpu.h>
31 #include <linux/splice.h>
32 #include <linux/kdebug.h>
33 #include <linux/string.h>
34 #include <linux/rwsem.h>
35 #include <linux/slab.h>
36 #include <linux/ctype.h>
37 #include <linux/init.h>
38 #include <linux/poll.h>
39 #include <linux/nmi.h>
40 #include <linux/fs.h>
41 #include <linux/sched/rt.h>
42
43 #include "trace.h"
44 #include "trace_output.h"
45
46 /*
47  * On boot up, the ring buffer is set to the minimum size, so that
48  * we do not waste memory on systems that are not using tracing.
49  */
50 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 buffer_ftrace_now(struct trace_buffer *buf, int cpu)
247 {
248         u64 ts;
249
250         /* Early boot up does not have a buffer yet */
251         if (!buf->buffer)
252                 return trace_clock_local();
253
254         ts = ring_buffer_time_stamp(buf->buffer, cpu);
255         ring_buffer_normalize_time_stamp(buf->buffer, cpu, &ts);
256
257         return ts;
258 }
259
260 cycle_t ftrace_now(int cpu)
261 {
262         return buffer_ftrace_now(&global_trace.trace_buffer, cpu);
263 }
264
265 /**
266  * tracing_is_enabled - Show if global_trace has been disabled
267  *
268  * Shows if the global trace has been enabled or not. It uses the
269  * mirror flag "buffer_disabled" to be used in fast paths such as for
270  * the irqsoff tracer. But it may be inaccurate due to races. If you
271  * need to know the accurate state, use tracing_is_on() which is a little
272  * slower, but accurate.
273  */
274 int tracing_is_enabled(void)
275 {
276         /*
277          * For quick access (irqsoff uses this in fast path), just
278          * return the mirror variable of the state of the ring buffer.
279          * It's a little racy, but we don't really care.
280          */
281         smp_rmb();
282         return !global_trace.buffer_disabled;
283 }
284
285 /*
286  * trace_buf_size is the size in bytes that is allocated
287  * for a buffer. Note, the number of bytes is always rounded
288  * to page size.
289  *
290  * This number is purposely set to a low number of 16384.
291  * If the dump on oops happens, it will be much appreciated
292  * to not have to wait for all that output. Anyway this can be
293  * boot time and run time configurable.
294  */
295 #define TRACE_BUF_SIZE_DEFAULT  1441792UL /* 16384 * 88 (sizeof(entry)) */
296
297 static unsigned long            trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
298
299 /* trace_types holds a link list of available tracers. */
300 static struct tracer            *trace_types __read_mostly;
301
302 /*
303  * trace_types_lock is used to protect the trace_types list.
304  */
305 DEFINE_MUTEX(trace_types_lock);
306
307 /*
308  * serialize the access of the ring buffer
309  *
310  * ring buffer serializes readers, but it is low level protection.
311  * The validity of the events (which returns by ring_buffer_peek() ..etc)
312  * are not protected by ring buffer.
313  *
314  * The content of events may become garbage if we allow other process consumes
315  * these events concurrently:
316  *   A) the page of the consumed events may become a normal page
317  *      (not reader page) in ring buffer, and this page will be rewrited
318  *      by events producer.
319  *   B) The page of the consumed events may become a page for splice_read,
320  *      and this page will be returned to system.
321  *
322  * These primitives allow multi process access to different cpu ring buffer
323  * concurrently.
324  *
325  * These primitives don't distinguish read-only and read-consume access.
326  * Multi read-only access are also serialized.
327  */
328
329 #ifdef CONFIG_SMP
330 static DECLARE_RWSEM(all_cpu_access_lock);
331 static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
332
333 static inline void trace_access_lock(int cpu)
334 {
335         if (cpu == RING_BUFFER_ALL_CPUS) {
336                 /* gain it for accessing the whole ring buffer. */
337                 down_write(&all_cpu_access_lock);
338         } else {
339                 /* gain it for accessing a cpu ring buffer. */
340
341                 /* Firstly block other trace_access_lock(RING_BUFFER_ALL_CPUS). */
342                 down_read(&all_cpu_access_lock);
343
344                 /* Secondly block other access to this @cpu ring buffer. */
345                 mutex_lock(&per_cpu(cpu_access_lock, cpu));
346         }
347 }
348
349 static inline void trace_access_unlock(int cpu)
350 {
351         if (cpu == RING_BUFFER_ALL_CPUS) {
352                 up_write(&all_cpu_access_lock);
353         } else {
354                 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
355                 up_read(&all_cpu_access_lock);
356         }
357 }
358
359 static inline void trace_access_lock_init(void)
360 {
361         int cpu;
362
363         for_each_possible_cpu(cpu)
364                 mutex_init(&per_cpu(cpu_access_lock, cpu));
365 }
366
367 #else
368
369 static DEFINE_MUTEX(access_lock);
370
371 static inline void trace_access_lock(int cpu)
372 {
373         (void)cpu;
374         mutex_lock(&access_lock);
375 }
376
377 static inline void trace_access_unlock(int cpu)
378 {
379         (void)cpu;
380         mutex_unlock(&access_lock);
381 }
382
383 static inline void trace_access_lock_init(void)
384 {
385 }
386
387 #endif
388
389 /* trace_flags holds trace_options default values */
390 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
391         TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
392         TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE |
393         TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS | TRACE_ITER_FUNCTION;
394
395 static void tracer_tracing_on(struct trace_array *tr)
396 {
397         if (tr->trace_buffer.buffer)
398                 ring_buffer_record_on(tr->trace_buffer.buffer);
399         /*
400          * This flag is looked at when buffers haven't been allocated
401          * yet, or by some tracers (like irqsoff), that just want to
402          * know if the ring buffer has been disabled, but it can handle
403          * races of where it gets disabled but we still do a record.
404          * As the check is in the fast path of the tracers, it is more
405          * important to be fast than accurate.
406          */
407         tr->buffer_disabled = 0;
408         /* Make the flag seen by readers */
409         smp_wmb();
410 }
411
412 /**
413  * tracing_on - enable tracing buffers
414  *
415  * This function enables tracing buffers that may have been
416  * disabled with tracing_off.
417  */
418 void tracing_on(void)
419 {
420         tracer_tracing_on(&global_trace);
421 }
422 EXPORT_SYMBOL_GPL(tracing_on);
423
424 /**
425  * __trace_puts - write a constant string into the trace buffer.
426  * @ip:    The address of the caller
427  * @str:   The constant string to write
428  * @size:  The size of the string.
429  */
430 int __trace_puts(unsigned long ip, const char *str, int size)
431 {
432         struct ring_buffer_event *event;
433         struct ring_buffer *buffer;
434         struct print_entry *entry;
435         unsigned long irq_flags;
436         int alloc;
437
438         alloc = sizeof(*entry) + size + 2; /* possible \n added */
439
440         local_save_flags(irq_flags);
441         buffer = global_trace.trace_buffer.buffer;
442         event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, alloc, 
443                                           irq_flags, preempt_count());
444         if (!event)
445                 return 0;
446
447         entry = ring_buffer_event_data(event);
448         entry->ip = ip;
449
450         memcpy(&entry->buf, str, size);
451
452         /* Add a newline if necessary */
453         if (entry->buf[size - 1] != '\n') {
454                 entry->buf[size] = '\n';
455                 entry->buf[size + 1] = '\0';
456         } else
457                 entry->buf[size] = '\0';
458
459         __buffer_unlock_commit(buffer, event);
460
461         return size;
462 }
463 EXPORT_SYMBOL_GPL(__trace_puts);
464
465 /**
466  * __trace_bputs - write the pointer to a constant string into trace buffer
467  * @ip:    The address of the caller
468  * @str:   The constant string to write to the buffer to
469  */
470 int __trace_bputs(unsigned long ip, const char *str)
471 {
472         struct ring_buffer_event *event;
473         struct ring_buffer *buffer;
474         struct bputs_entry *entry;
475         unsigned long irq_flags;
476         int size = sizeof(struct bputs_entry);
477
478         local_save_flags(irq_flags);
479         buffer = global_trace.trace_buffer.buffer;
480         event = trace_buffer_lock_reserve(buffer, TRACE_BPUTS, size,
481                                           irq_flags, preempt_count());
482         if (!event)
483                 return 0;
484
485         entry = ring_buffer_event_data(event);
486         entry->ip                       = ip;
487         entry->str                      = str;
488
489         __buffer_unlock_commit(buffer, event);
490
491         return 1;
492 }
493 EXPORT_SYMBOL_GPL(__trace_bputs);
494
495 #ifdef CONFIG_TRACER_SNAPSHOT
496 /**
497  * trace_snapshot - take a snapshot of the current buffer.
498  *
499  * This causes a swap between the snapshot buffer and the current live
500  * tracing buffer. You can use this to take snapshots of the live
501  * trace when some condition is triggered, but continue to trace.
502  *
503  * Note, make sure to allocate the snapshot with either
504  * a tracing_snapshot_alloc(), or by doing it manually
505  * with: echo 1 > /sys/kernel/debug/tracing/snapshot
506  *
507  * If the snapshot buffer is not allocated, it will stop tracing.
508  * Basically making a permanent snapshot.
509  */
510 void tracing_snapshot(void)
511 {
512         struct trace_array *tr = &global_trace;
513         struct tracer *tracer = tr->current_trace;
514         unsigned long flags;
515
516         if (in_nmi()) {
517                 internal_trace_puts("*** SNAPSHOT CALLED FROM NMI CONTEXT ***\n");
518                 internal_trace_puts("*** snapshot is being ignored        ***\n");
519                 return;
520         }
521
522         if (!tr->allocated_snapshot) {
523                 internal_trace_puts("*** SNAPSHOT NOT ALLOCATED ***\n");
524                 internal_trace_puts("*** stopping trace here!   ***\n");
525                 tracing_off();
526                 return;
527         }
528
529         /* Note, snapshot can not be used when the tracer uses it */
530         if (tracer->use_max_tr) {
531                 internal_trace_puts("*** LATENCY TRACER ACTIVE ***\n");
532                 internal_trace_puts("*** Can not use snapshot (sorry) ***\n");
533                 return;
534         }
535
536         local_irq_save(flags);
537         update_max_tr(tr, current, smp_processor_id());
538         local_irq_restore(flags);
539 }
540 EXPORT_SYMBOL_GPL(tracing_snapshot);
541
542 static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf,
543                                         struct trace_buffer *size_buf, int cpu_id);
544 static void set_buffer_entries(struct trace_buffer *buf, unsigned long val);
545
546 static int alloc_snapshot(struct trace_array *tr)
547 {
548         int ret;
549
550         if (!tr->allocated_snapshot) {
551
552                 /* allocate spare buffer */
553                 ret = resize_buffer_duplicate_size(&tr->max_buffer,
554                                    &tr->trace_buffer, RING_BUFFER_ALL_CPUS);
555                 if (ret < 0)
556                         return ret;
557
558                 tr->allocated_snapshot = true;
559         }
560
561         return 0;
562 }
563
564 void free_snapshot(struct trace_array *tr)
565 {
566         /*
567          * We don't free the ring buffer. instead, resize it because
568          * The max_tr ring buffer has some state (e.g. ring->clock) and
569          * we want preserve it.
570          */
571         ring_buffer_resize(tr->max_buffer.buffer, 1, RING_BUFFER_ALL_CPUS);
572         set_buffer_entries(&tr->max_buffer, 1);
573         tracing_reset_online_cpus(&tr->max_buffer);
574         tr->allocated_snapshot = false;
575 }
576
577 /**
578  * trace_snapshot_alloc - allocate and take a snapshot of the current buffer.
579  *
580  * This is similar to trace_snapshot(), but it will allocate the
581  * snapshot buffer if it isn't already allocated. Use this only
582  * where it is safe to sleep, as the allocation may sleep.
583  *
584  * This causes a swap between the snapshot buffer and the current live
585  * tracing buffer. You can use this to take snapshots of the live
586  * trace when some condition is triggered, but continue to trace.
587  */
588 void tracing_snapshot_alloc(void)
589 {
590         struct trace_array *tr = &global_trace;
591         int ret;
592
593         ret = alloc_snapshot(tr);
594         if (WARN_ON(ret < 0))
595                 return;
596
597         tracing_snapshot();
598 }
599 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
600 #else
601 void tracing_snapshot(void)
602 {
603         WARN_ONCE(1, "Snapshot feature not enabled, but internal snapshot used");
604 }
605 EXPORT_SYMBOL_GPL(tracing_snapshot);
606 void tracing_snapshot_alloc(void)
607 {
608         /* Give warning */
609         tracing_snapshot();
610 }
611 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
612 #endif /* CONFIG_TRACER_SNAPSHOT */
613
614 static void tracer_tracing_off(struct trace_array *tr)
615 {
616         if (tr->trace_buffer.buffer)
617                 ring_buffer_record_off(tr->trace_buffer.buffer);
618         /*
619          * This flag is looked at when buffers haven't been allocated
620          * yet, or by some tracers (like irqsoff), that just want to
621          * know if the ring buffer has been disabled, but it can handle
622          * races of where it gets disabled but we still do a record.
623          * As the check is in the fast path of the tracers, it is more
624          * important to be fast than accurate.
625          */
626         tr->buffer_disabled = 1;
627         /* Make the flag seen by readers */
628         smp_wmb();
629 }
630
631 /**
632  * tracing_off - turn off tracing buffers
633  *
634  * This function stops the tracing buffers from recording data.
635  * It does not disable any overhead the tracers themselves may
636  * be causing. This function simply causes all recording to
637  * the ring buffers to fail.
638  */
639 void tracing_off(void)
640 {
641         tracer_tracing_off(&global_trace);
642 }
643 EXPORT_SYMBOL_GPL(tracing_off);
644
645 void disable_trace_on_warning(void)
646 {
647         if (__disable_trace_on_warning)
648                 tracing_off();
649 }
650
651 /**
652  * tracer_tracing_is_on - show real state of ring buffer enabled
653  * @tr : the trace array to know if ring buffer is enabled
654  *
655  * Shows real state of the ring buffer if it is enabled or not.
656  */
657 static int tracer_tracing_is_on(struct trace_array *tr)
658 {
659         if (tr->trace_buffer.buffer)
660                 return ring_buffer_record_is_on(tr->trace_buffer.buffer);
661         return !tr->buffer_disabled;
662 }
663
664 /**
665  * tracing_is_on - show state of ring buffers enabled
666  */
667 int tracing_is_on(void)
668 {
669         return tracer_tracing_is_on(&global_trace);
670 }
671 EXPORT_SYMBOL_GPL(tracing_is_on);
672
673 static int __init set_buf_size(char *str)
674 {
675         unsigned long buf_size;
676
677         if (!str)
678                 return 0;
679         buf_size = memparse(str, &str);
680         /* nr_entries can not be zero */
681         if (buf_size == 0)
682                 return 0;
683         trace_buf_size = buf_size;
684         return 1;
685 }
686 __setup("trace_buf_size=", set_buf_size);
687
688 static int __init set_tracing_thresh(char *str)
689 {
690         unsigned long threshold;
691         int ret;
692
693         if (!str)
694                 return 0;
695         ret = kstrtoul(str, 0, &threshold);
696         if (ret < 0)
697                 return 0;
698         tracing_thresh = threshold * 1000;
699         return 1;
700 }
701 __setup("tracing_thresh=", set_tracing_thresh);
702
703 unsigned long nsecs_to_usecs(unsigned long nsecs)
704 {
705         return nsecs / 1000;
706 }
707
708 /* These must match the bit postions in trace_iterator_flags */
709 static const char *trace_options[] = {
710         "print-parent",
711         "sym-offset",
712         "sym-addr",
713         "verbose",
714         "raw",
715         "hex",
716         "bin",
717         "block",
718         "stacktrace",
719         "trace_printk",
720         "ftrace_preempt",
721         "branch",
722         "annotate",
723         "userstacktrace",
724         "sym-userobj",
725         "printk-msg-only",
726         "context-info",
727         "latency-format",
728         "sleep-time",
729         "graph-time",
730         "record-cmd",
731         "overwrite",
732         "disable_on_free",
733         "irq-info",
734         "markers",
735         "function-trace",
736         NULL
737 };
738
739 static struct {
740         u64 (*func)(void);
741         const char *name;
742         int in_ns;              /* is this clock in nanoseconds? */
743 } trace_clocks[] = {
744         { trace_clock_local,    "local",        1 },
745         { trace_clock_global,   "global",       1 },
746         { trace_clock_counter,  "counter",      0 },
747         { trace_clock_jiffies,  "uptime",       1 },
748         { trace_clock,          "perf",         1 },
749         ARCH_TRACE_CLOCKS
750 };
751
752 /*
753  * trace_parser_get_init - gets the buffer for trace parser
754  */
755 int trace_parser_get_init(struct trace_parser *parser, int size)
756 {
757         memset(parser, 0, sizeof(*parser));
758
759         parser->buffer = kmalloc(size, GFP_KERNEL);
760         if (!parser->buffer)
761                 return 1;
762
763         parser->size = size;
764         return 0;
765 }
766
767 /*
768  * trace_parser_put - frees the buffer for trace parser
769  */
770 void trace_parser_put(struct trace_parser *parser)
771 {
772         kfree(parser->buffer);
773 }
774
775 /*
776  * trace_get_user - reads the user input string separated by  space
777  * (matched by isspace(ch))
778  *
779  * For each string found the 'struct trace_parser' is updated,
780  * and the function returns.
781  *
782  * Returns number of bytes read.
783  *
784  * See kernel/trace/trace.h for 'struct trace_parser' details.
785  */
786 int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
787         size_t cnt, loff_t *ppos)
788 {
789         char ch;
790         size_t read = 0;
791         ssize_t ret;
792
793         if (!*ppos)
794                 trace_parser_clear(parser);
795
796         ret = get_user(ch, ubuf++);
797         if (ret)
798                 goto out;
799
800         read++;
801         cnt--;
802
803         /*
804          * The parser is not finished with the last write,
805          * continue reading the user input without skipping spaces.
806          */
807         if (!parser->cont) {
808                 /* skip white space */
809                 while (cnt && isspace(ch)) {
810                         ret = get_user(ch, ubuf++);
811                         if (ret)
812                                 goto out;
813                         read++;
814                         cnt--;
815                 }
816
817                 /* only spaces were written */
818                 if (isspace(ch)) {
819                         *ppos += read;
820                         ret = read;
821                         goto out;
822                 }
823
824                 parser->idx = 0;
825         }
826
827         /* read the non-space input */
828         while (cnt && !isspace(ch)) {
829                 if (parser->idx < parser->size - 1)
830                         parser->buffer[parser->idx++] = ch;
831                 else {
832                         ret = -EINVAL;
833                         goto out;
834                 }
835                 ret = get_user(ch, ubuf++);
836                 if (ret)
837                         goto out;
838                 read++;
839                 cnt--;
840         }
841
842         /* We either got finished input or we have to wait for another call. */
843         if (isspace(ch)) {
844                 parser->buffer[parser->idx] = 0;
845                 parser->cont = false;
846         } else if (parser->idx < parser->size - 1) {
847                 parser->cont = true;
848                 parser->buffer[parser->idx++] = ch;
849         } else {
850                 ret = -EINVAL;
851                 goto out;
852         }
853
854         *ppos += read;
855         ret = read;
856
857 out:
858         return ret;
859 }
860
861 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
862 {
863         int len;
864         int ret;
865
866         if (!cnt)
867                 return 0;
868
869         if (s->len <= s->readpos)
870                 return -EBUSY;
871
872         len = s->len - s->readpos;
873         if (cnt > len)
874                 cnt = len;
875         ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
876         if (ret == cnt)
877                 return -EFAULT;
878
879         cnt -= ret;
880
881         s->readpos += cnt;
882         return cnt;
883 }
884
885 static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
886 {
887         int len;
888
889         if (s->len <= s->readpos)
890                 return -EBUSY;
891
892         len = s->len - s->readpos;
893         if (cnt > len)
894                 cnt = len;
895         memcpy(buf, s->buffer + s->readpos, cnt);
896
897         s->readpos += cnt;
898         return cnt;
899 }
900
901 /*
902  * ftrace_max_lock is used to protect the swapping of buffers
903  * when taking a max snapshot. The buffers themselves are
904  * protected by per_cpu spinlocks. But the action of the swap
905  * needs its own lock.
906  *
907  * This is defined as a arch_spinlock_t in order to help
908  * with performance when lockdep debugging is enabled.
909  *
910  * It is also used in other places outside the update_max_tr
911  * so it needs to be defined outside of the
912  * CONFIG_TRACER_MAX_TRACE.
913  */
914 static arch_spinlock_t ftrace_max_lock =
915         (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
916
917 unsigned long __read_mostly     tracing_thresh;
918
919 #ifdef CONFIG_TRACER_MAX_TRACE
920 unsigned long __read_mostly     tracing_max_latency;
921
922 /*
923  * Copy the new maximum trace into the separate maximum-trace
924  * structure. (this way the maximum trace is permanently saved,
925  * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
926  */
927 static void
928 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
929 {
930         struct trace_buffer *trace_buf = &tr->trace_buffer;
931         struct trace_buffer *max_buf = &tr->max_buffer;
932         struct trace_array_cpu *data = per_cpu_ptr(trace_buf->data, cpu);
933         struct trace_array_cpu *max_data = per_cpu_ptr(max_buf->data, cpu);
934
935         max_buf->cpu = cpu;
936         max_buf->time_start = data->preempt_timestamp;
937
938         max_data->saved_latency = tracing_max_latency;
939         max_data->critical_start = data->critical_start;
940         max_data->critical_end = data->critical_end;
941
942         memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
943         max_data->pid = tsk->pid;
944         /*
945          * If tsk == current, then use current_uid(), as that does not use
946          * RCU. The irq tracer can be called out of RCU scope.
947          */
948         if (tsk == current)
949                 max_data->uid = current_uid();
950         else
951                 max_data->uid = task_uid(tsk);
952
953         max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
954         max_data->policy = tsk->policy;
955         max_data->rt_priority = tsk->rt_priority;
956
957         /* record this tasks comm */
958         tracing_record_cmdline(tsk);
959 }
960
961 /**
962  * update_max_tr - snapshot all trace buffers from global_trace to max_tr
963  * @tr: tracer
964  * @tsk: the task with the latency
965  * @cpu: The cpu that initiated the trace.
966  *
967  * Flip the buffers between the @tr and the max_tr and record information
968  * about which task was the cause of this latency.
969  */
970 void
971 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
972 {
973         struct ring_buffer *buf;
974
975         if (tr->stop_count)
976                 return;
977
978         WARN_ON_ONCE(!irqs_disabled());
979
980         if (!tr->allocated_snapshot) {
981                 /* Only the nop tracer should hit this when disabling */
982                 WARN_ON_ONCE(tr->current_trace != &nop_trace);
983                 return;
984         }
985
986         arch_spin_lock(&ftrace_max_lock);
987
988         buf = tr->trace_buffer.buffer;
989         tr->trace_buffer.buffer = tr->max_buffer.buffer;
990         tr->max_buffer.buffer = buf;
991
992         __update_max_tr(tr, tsk, cpu);
993         arch_spin_unlock(&ftrace_max_lock);
994 }
995
996 /**
997  * update_max_tr_single - only copy one trace over, and reset the rest
998  * @tr - tracer
999  * @tsk - task with the latency
1000  * @cpu - the cpu of the buffer to copy.
1001  *
1002  * Flip the trace of a single CPU buffer between the @tr and the max_tr.
1003  */
1004 void
1005 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
1006 {
1007         int ret;
1008
1009         if (tr->stop_count)
1010                 return;
1011
1012         WARN_ON_ONCE(!irqs_disabled());
1013         if (!tr->allocated_snapshot) {
1014                 /* Only the nop tracer should hit this when disabling */
1015                 WARN_ON_ONCE(tr->current_trace != &nop_trace);
1016                 return;
1017         }
1018
1019         arch_spin_lock(&ftrace_max_lock);
1020
1021         ret = ring_buffer_swap_cpu(tr->max_buffer.buffer, tr->trace_buffer.buffer, cpu);
1022
1023         if (ret == -EBUSY) {
1024                 /*
1025                  * We failed to swap the buffer due to a commit taking
1026                  * place on this CPU. We fail to record, but we reset
1027                  * the max trace buffer (no one writes directly to it)
1028                  * and flag that it failed.
1029                  */
1030                 trace_array_printk_buf(tr->max_buffer.buffer, _THIS_IP_,
1031                         "Failed to swap buffers due to commit in progress\n");
1032         }
1033
1034         WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
1035
1036         __update_max_tr(tr, tsk, cpu);
1037         arch_spin_unlock(&ftrace_max_lock);
1038 }
1039 #endif /* CONFIG_TRACER_MAX_TRACE */
1040
1041 static void default_wait_pipe(struct trace_iterator *iter)
1042 {
1043         /* Iterators are static, they should be filled or empty */
1044         if (trace_buffer_iter(iter, iter->cpu_file))
1045                 return;
1046
1047         ring_buffer_wait(iter->trace_buffer->buffer, iter->cpu_file);
1048 }
1049
1050 #ifdef CONFIG_FTRACE_STARTUP_TEST
1051 static int run_tracer_selftest(struct tracer *type)
1052 {
1053         struct trace_array *tr = &global_trace;
1054         struct tracer *saved_tracer = tr->current_trace;
1055         int ret;
1056
1057         if (!type->selftest || tracing_selftest_disabled)
1058                 return 0;
1059
1060         /*
1061          * Run a selftest on this tracer.
1062          * Here we reset the trace buffer, and set the current
1063          * tracer to be this tracer. The tracer can then run some
1064          * internal tracing to verify that everything is in order.
1065          * If we fail, we do not register this tracer.
1066          */
1067         tracing_reset_online_cpus(&tr->trace_buffer);
1068
1069         tr->current_trace = type;
1070
1071 #ifdef CONFIG_TRACER_MAX_TRACE
1072         if (type->use_max_tr) {
1073                 /* If we expanded the buffers, make sure the max is expanded too */
1074                 if (ring_buffer_expanded)
1075                         ring_buffer_resize(tr->max_buffer.buffer, trace_buf_size,
1076                                            RING_BUFFER_ALL_CPUS);
1077                 tr->allocated_snapshot = true;
1078         }
1079 #endif
1080
1081         /* the test is responsible for initializing and enabling */
1082         pr_info("Testing tracer %s: ", type->name);
1083         ret = type->selftest(type, tr);
1084         /* the test is responsible for resetting too */
1085         tr->current_trace = saved_tracer;
1086         if (ret) {
1087                 printk(KERN_CONT "FAILED!\n");
1088                 /* Add the warning after printing 'FAILED' */
1089                 WARN_ON(1);
1090                 return -1;
1091         }
1092         /* Only reset on passing, to avoid touching corrupted buffers */
1093         tracing_reset_online_cpus(&tr->trace_buffer);
1094
1095 #ifdef CONFIG_TRACER_MAX_TRACE
1096         if (type->use_max_tr) {
1097                 tr->allocated_snapshot = false;
1098
1099                 /* Shrink the max buffer again */
1100                 if (ring_buffer_expanded)
1101                         ring_buffer_resize(tr->max_buffer.buffer, 1,
1102                                            RING_BUFFER_ALL_CPUS);
1103         }
1104 #endif
1105
1106         printk(KERN_CONT "PASSED\n");
1107         return 0;
1108 }
1109 #else
1110 static inline int run_tracer_selftest(struct tracer *type)
1111 {
1112         return 0;
1113 }
1114 #endif /* CONFIG_FTRACE_STARTUP_TEST */
1115
1116 /**
1117  * register_tracer - register a tracer with the ftrace system.
1118  * @type - the plugin for the tracer
1119  *
1120  * Register a new plugin tracer.
1121  */
1122 int register_tracer(struct tracer *type)
1123 {
1124         struct tracer *t;
1125         int ret = 0;
1126
1127         if (!type->name) {
1128                 pr_info("Tracer must have a name\n");
1129                 return -1;
1130         }
1131
1132         if (strlen(type->name) >= MAX_TRACER_SIZE) {
1133                 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
1134                 return -1;
1135         }
1136
1137         mutex_lock(&trace_types_lock);
1138
1139         tracing_selftest_running = true;
1140
1141         for (t = trace_types; t; t = t->next) {
1142                 if (strcmp(type->name, t->name) == 0) {
1143                         /* already found */
1144                         pr_info("Tracer %s already registered\n",
1145                                 type->name);
1146                         ret = -1;
1147                         goto out;
1148                 }
1149         }
1150
1151         if (!type->set_flag)
1152                 type->set_flag = &dummy_set_flag;
1153         if (!type->flags)
1154                 type->flags = &dummy_tracer_flags;
1155         else
1156                 if (!type->flags->opts)
1157                         type->flags->opts = dummy_tracer_opt;
1158         if (!type->wait_pipe)
1159                 type->wait_pipe = default_wait_pipe;
1160
1161         ret = run_tracer_selftest(type);
1162         if (ret < 0)
1163                 goto out;
1164
1165         type->next = trace_types;
1166         trace_types = type;
1167
1168  out:
1169         tracing_selftest_running = false;
1170         mutex_unlock(&trace_types_lock);
1171
1172         if (ret || !default_bootup_tracer)
1173                 goto out_unlock;
1174
1175         if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
1176                 goto out_unlock;
1177
1178         printk(KERN_INFO "Starting tracer '%s'\n", type->name);
1179         /* Do we want this tracer to start on bootup? */
1180         tracing_set_tracer(type->name);
1181         default_bootup_tracer = NULL;
1182         /* disable other selftests, since this will break it. */
1183         tracing_selftest_disabled = true;
1184 #ifdef CONFIG_FTRACE_STARTUP_TEST
1185         printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
1186                type->name);
1187 #endif
1188
1189  out_unlock:
1190         return ret;
1191 }
1192
1193 void tracing_reset(struct trace_buffer *buf, int cpu)
1194 {
1195         struct ring_buffer *buffer = buf->buffer;
1196
1197         if (!buffer)
1198                 return;
1199
1200         ring_buffer_record_disable(buffer);
1201
1202         /* Make sure all commits have finished */
1203         synchronize_sched();
1204         ring_buffer_reset_cpu(buffer, cpu);
1205
1206         ring_buffer_record_enable(buffer);
1207 }
1208
1209 void tracing_reset_online_cpus(struct trace_buffer *buf)
1210 {
1211         struct ring_buffer *buffer = buf->buffer;
1212         int cpu;
1213
1214         if (!buffer)
1215                 return;
1216
1217         ring_buffer_record_disable(buffer);
1218
1219         /* Make sure all commits have finished */
1220         synchronize_sched();
1221
1222         buf->time_start = buffer_ftrace_now(buf, buf->cpu);
1223
1224         for_each_online_cpu(cpu)
1225                 ring_buffer_reset_cpu(buffer, cpu);
1226
1227         ring_buffer_record_enable(buffer);
1228 }
1229
1230 /* Must have trace_types_lock held */
1231 void tracing_reset_all_online_cpus(void)
1232 {
1233         struct trace_array *tr;
1234
1235         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
1236                 tracing_reset_online_cpus(&tr->trace_buffer);
1237 #ifdef CONFIG_TRACER_MAX_TRACE
1238                 tracing_reset_online_cpus(&tr->max_buffer);
1239 #endif
1240         }
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 or free)\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 /*
2849  * Should be used after trace_array_get(), trace_types_lock
2850  * ensures that i_cdev was already initialized.
2851  */
2852 static inline int tracing_get_cpu(struct inode *inode)
2853 {
2854         if (inode->i_cdev) /* See trace_create_cpu_file() */
2855                 return (long)inode->i_cdev - 1;
2856         return RING_BUFFER_ALL_CPUS;
2857 }
2858
2859 static const struct seq_operations tracer_seq_ops = {
2860         .start          = s_start,
2861         .next           = s_next,
2862         .stop           = s_stop,
2863         .show           = s_show,
2864 };
2865
2866 static struct trace_iterator *
2867 __tracing_open(struct inode *inode, struct file *file, bool snapshot)
2868 {
2869         struct trace_array *tr = inode->i_private;
2870         struct trace_iterator *iter;
2871         int cpu;
2872
2873         if (tracing_disabled)
2874                 return ERR_PTR(-ENODEV);
2875
2876         iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter));
2877         if (!iter)
2878                 return ERR_PTR(-ENOMEM);
2879
2880         iter->buffer_iter = kzalloc(sizeof(*iter->buffer_iter) * num_possible_cpus(),
2881                                     GFP_KERNEL);
2882         if (!iter->buffer_iter)
2883                 goto release;
2884
2885         /*
2886          * We make a copy of the current tracer to avoid concurrent
2887          * changes on it while we are reading.
2888          */
2889         mutex_lock(&trace_types_lock);
2890         iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
2891         if (!iter->trace)
2892                 goto fail;
2893
2894         *iter->trace = *tr->current_trace;
2895
2896         if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
2897                 goto fail;
2898
2899         iter->tr = tr;
2900
2901 #ifdef CONFIG_TRACER_MAX_TRACE
2902         /* Currently only the top directory has a snapshot */
2903         if (tr->current_trace->print_max || snapshot)
2904                 iter->trace_buffer = &tr->max_buffer;
2905         else
2906 #endif
2907                 iter->trace_buffer = &tr->trace_buffer;
2908         iter->snapshot = snapshot;
2909         iter->pos = -1;
2910         iter->cpu_file = tracing_get_cpu(inode);
2911         mutex_init(&iter->mutex);
2912
2913         /* Notify the tracer early; before we stop tracing. */
2914         if (iter->trace && iter->trace->open)
2915                 iter->trace->open(iter);
2916
2917         /* Annotate start of buffers if we had overruns */
2918         if (ring_buffer_overruns(iter->trace_buffer->buffer))
2919                 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2920
2921         /* Output in nanoseconds only if we are using a clock in nanoseconds. */
2922         if (trace_clocks[tr->clock_id].in_ns)
2923                 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
2924
2925         /* stop the trace while dumping if we are not opening "snapshot" */
2926         if (!iter->snapshot)
2927                 tracing_stop_tr(tr);
2928
2929         if (iter->cpu_file == RING_BUFFER_ALL_CPUS) {
2930                 for_each_tracing_cpu(cpu) {
2931                         iter->buffer_iter[cpu] =
2932                                 ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu);
2933                 }
2934                 ring_buffer_read_prepare_sync();
2935                 for_each_tracing_cpu(cpu) {
2936                         ring_buffer_read_start(iter->buffer_iter[cpu]);
2937                         tracing_iter_reset(iter, cpu);
2938                 }
2939         } else {
2940                 cpu = iter->cpu_file;
2941                 iter->buffer_iter[cpu] =
2942                         ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu);
2943                 ring_buffer_read_prepare_sync();
2944                 ring_buffer_read_start(iter->buffer_iter[cpu]);
2945                 tracing_iter_reset(iter, cpu);
2946         }
2947
2948         mutex_unlock(&trace_types_lock);
2949
2950         return iter;
2951
2952  fail:
2953         mutex_unlock(&trace_types_lock);
2954         kfree(iter->trace);
2955         kfree(iter->buffer_iter);
2956 release:
2957         seq_release_private(inode, file);
2958         return ERR_PTR(-ENOMEM);
2959 }
2960
2961 int tracing_open_generic(struct inode *inode, struct file *filp)
2962 {
2963         if (tracing_disabled)
2964                 return -ENODEV;
2965
2966         filp->private_data = inode->i_private;
2967         return 0;
2968 }
2969
2970 /*
2971  * Open and update trace_array ref count.
2972  * Must have the current trace_array passed to it.
2973  */
2974 static int tracing_open_generic_tr(struct inode *inode, struct file *filp)
2975 {
2976         struct trace_array *tr = inode->i_private;
2977
2978         if (tracing_disabled)
2979                 return -ENODEV;
2980
2981         if (trace_array_get(tr) < 0)
2982                 return -ENODEV;
2983
2984         filp->private_data = inode->i_private;
2985
2986         return 0;
2987 }
2988
2989 static int tracing_release(struct inode *inode, struct file *file)
2990 {
2991         struct trace_array *tr = inode->i_private;
2992         struct seq_file *m = file->private_data;
2993         struct trace_iterator *iter;
2994         int cpu;
2995
2996         if (!(file->f_mode & FMODE_READ)) {
2997                 trace_array_put(tr);
2998                 return 0;
2999         }
3000
3001         /* Writes do not use seq_file */
3002         iter = m->private;
3003         mutex_lock(&trace_types_lock);
3004
3005         for_each_tracing_cpu(cpu) {
3006                 if (iter->buffer_iter[cpu])
3007                         ring_buffer_read_finish(iter->buffer_iter[cpu]);
3008         }
3009
3010         if (iter->trace && iter->trace->close)
3011                 iter->trace->close(iter);
3012
3013         if (!iter->snapshot)
3014                 /* reenable tracing if it was previously enabled */
3015                 tracing_start_tr(tr);
3016
3017         __trace_array_put(tr);
3018
3019         mutex_unlock(&trace_types_lock);
3020
3021         mutex_destroy(&iter->mutex);
3022         free_cpumask_var(iter->started);
3023         kfree(iter->trace);
3024         kfree(iter->buffer_iter);
3025         seq_release_private(inode, file);
3026
3027         return 0;
3028 }
3029
3030 static int tracing_release_generic_tr(struct inode *inode, struct file *file)
3031 {
3032         struct trace_array *tr = inode->i_private;
3033
3034         trace_array_put(tr);
3035         return 0;
3036 }
3037
3038 static int tracing_single_release_tr(struct inode *inode, struct file *file)
3039 {
3040         struct trace_array *tr = inode->i_private;
3041
3042         trace_array_put(tr);
3043
3044         return single_release(inode, file);
3045 }
3046
3047 static int tracing_open(struct inode *inode, struct file *file)
3048 {
3049         struct trace_array *tr = inode->i_private;
3050         struct trace_iterator *iter;
3051         int ret = 0;
3052
3053         if (trace_array_get(tr) < 0)
3054                 return -ENODEV;
3055
3056         /* If this file was open for write, then erase contents */
3057         if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
3058                 int cpu = tracing_get_cpu(inode);
3059
3060                 if (cpu == RING_BUFFER_ALL_CPUS)
3061                         tracing_reset_online_cpus(&tr->trace_buffer);
3062                 else
3063                         tracing_reset(&tr->trace_buffer, cpu);
3064         }
3065
3066         if (file->f_mode & FMODE_READ) {
3067                 iter = __tracing_open(inode, file, false);
3068                 if (IS_ERR(iter))
3069                         ret = PTR_ERR(iter);
3070                 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
3071                         iter->iter_flags |= TRACE_FILE_LAT_FMT;
3072         }
3073
3074         if (ret < 0)
3075                 trace_array_put(tr);
3076
3077         return ret;
3078 }
3079
3080 static void *
3081 t_next(struct seq_file *m, void *v, loff_t *pos)
3082 {
3083         struct tracer *t = v;
3084
3085         (*pos)++;
3086
3087         if (t)
3088                 t = t->next;
3089
3090         return t;
3091 }
3092
3093 static void *t_start(struct seq_file *m, loff_t *pos)
3094 {
3095         struct tracer *t;
3096         loff_t l = 0;
3097
3098         mutex_lock(&trace_types_lock);
3099         for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
3100                 ;
3101
3102         return t;
3103 }
3104
3105 static void t_stop(struct seq_file *m, void *p)
3106 {
3107         mutex_unlock(&trace_types_lock);
3108 }
3109
3110 static int t_show(struct seq_file *m, void *v)
3111 {
3112         struct tracer *t = v;
3113
3114         if (!t)
3115                 return 0;
3116
3117         seq_printf(m, "%s", t->name);
3118         if (t->next)
3119                 seq_putc(m, ' ');
3120         else
3121                 seq_putc(m, '\n');
3122
3123         return 0;
3124 }
3125
3126 static const struct seq_operations show_traces_seq_ops = {
3127         .start          = t_start,
3128         .next           = t_next,
3129         .stop           = t_stop,
3130         .show           = t_show,
3131 };
3132
3133 static int show_traces_open(struct inode *inode, struct file *file)
3134 {
3135         if (tracing_disabled)
3136                 return -ENODEV;
3137
3138         return seq_open(file, &show_traces_seq_ops);
3139 }
3140
3141 static ssize_t
3142 tracing_write_stub(struct file *filp, const char __user *ubuf,
3143                    size_t count, loff_t *ppos)
3144 {
3145         return count;
3146 }
3147
3148 static loff_t tracing_seek(struct file *file, loff_t offset, int origin)
3149 {
3150         if (file->f_mode & FMODE_READ)
3151                 return seq_lseek(file, offset, origin);
3152         else
3153                 return 0;
3154 }
3155
3156 static const struct file_operations tracing_fops = {
3157         .open           = tracing_open,
3158         .read           = seq_read,
3159         .write          = tracing_write_stub,
3160         .llseek         = tracing_seek,
3161         .release        = tracing_release,
3162 };
3163
3164 static const struct file_operations show_traces_fops = {
3165         .open           = show_traces_open,
3166         .read           = seq_read,
3167         .release        = seq_release,
3168         .llseek         = seq_lseek,
3169 };
3170
3171 /*
3172  * The tracer itself will not take this lock, but still we want
3173  * to provide a consistent cpumask to user-space:
3174  */
3175 static DEFINE_MUTEX(tracing_cpumask_update_lock);
3176
3177 /*
3178  * Temporary storage for the character representation of the
3179  * CPU bitmask (and one more byte for the newline):
3180  */
3181 static char mask_str[NR_CPUS + 1];
3182
3183 static ssize_t
3184 tracing_cpumask_read(struct file *filp, char __user *ubuf,
3185                      size_t count, loff_t *ppos)
3186 {
3187         struct trace_array *tr = file_inode(filp)->i_private;
3188         int len;
3189
3190         mutex_lock(&tracing_cpumask_update_lock);
3191
3192         len = cpumask_scnprintf(mask_str, count, tr->tracing_cpumask);
3193         if (count - len < 2) {
3194                 count = -EINVAL;
3195                 goto out_err;
3196         }
3197         len += sprintf(mask_str + len, "\n");
3198         count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
3199
3200 out_err:
3201         mutex_unlock(&tracing_cpumask_update_lock);
3202
3203         return count;
3204 }
3205
3206 static ssize_t
3207 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
3208                       size_t count, loff_t *ppos)
3209 {
3210         struct trace_array *tr = file_inode(filp)->i_private;
3211         cpumask_var_t tracing_cpumask_new;
3212         int err, cpu;
3213
3214         if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
3215                 return -ENOMEM;
3216
3217         err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
3218         if (err)
3219                 goto err_unlock;
3220
3221         mutex_lock(&tracing_cpumask_update_lock);
3222
3223         local_irq_disable();
3224         arch_spin_lock(&ftrace_max_lock);
3225         for_each_tracing_cpu(cpu) {
3226                 /*
3227                  * Increase/decrease the disabled counter if we are
3228                  * about to flip a bit in the cpumask:
3229                  */
3230                 if (cpumask_test_cpu(cpu, tr->tracing_cpumask) &&
3231                                 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
3232                         atomic_inc(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled);
3233                         ring_buffer_record_disable_cpu(tr->trace_buffer.buffer, cpu);
3234                 }
3235                 if (!cpumask_test_cpu(cpu, tr->tracing_cpumask) &&
3236                                 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
3237                         atomic_dec(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled);
3238                         ring_buffer_record_enable_cpu(tr->trace_buffer.buffer, cpu);
3239                 }
3240         }
3241         arch_spin_unlock(&ftrace_max_lock);
3242         local_irq_enable();
3243
3244         cpumask_copy(tr->tracing_cpumask, tracing_cpumask_new);
3245
3246         mutex_unlock(&tracing_cpumask_update_lock);
3247         free_cpumask_var(tracing_cpumask_new);
3248
3249         return count;
3250
3251 err_unlock:
3252         free_cpumask_var(tracing_cpumask_new);
3253
3254         return err;
3255 }
3256
3257 static const struct file_operations tracing_cpumask_fops = {
3258         .open           = tracing_open_generic_tr,
3259         .read           = tracing_cpumask_read,
3260         .write          = tracing_cpumask_write,
3261         .release        = tracing_release_generic_tr,
3262         .llseek         = generic_file_llseek,
3263 };
3264
3265 static int tracing_trace_options_show(struct seq_file *m, void *v)
3266 {
3267         struct tracer_opt *trace_opts;
3268         struct trace_array *tr = m->private;
3269         u32 tracer_flags;
3270         int i;
3271
3272         mutex_lock(&trace_types_lock);
3273         tracer_flags = tr->current_trace->flags->val;
3274         trace_opts = tr->current_trace->flags->opts;
3275
3276         for (i = 0; trace_options[i]; i++) {
3277                 if (trace_flags & (1 << i))
3278                         seq_printf(m, "%s\n", trace_options[i]);
3279                 else
3280                         seq_printf(m, "no%s\n", trace_options[i]);
3281         }
3282
3283         for (i = 0; trace_opts[i].name; i++) {
3284                 if (tracer_flags & trace_opts[i].bit)
3285                         seq_printf(m, "%s\n", trace_opts[i].name);
3286                 else
3287                         seq_printf(m, "no%s\n", trace_opts[i].name);
3288         }
3289         mutex_unlock(&trace_types_lock);
3290
3291         return 0;
3292 }
3293
3294 static int __set_tracer_option(struct tracer *trace,
3295                                struct tracer_flags *tracer_flags,
3296                                struct tracer_opt *opts, int neg)
3297 {
3298         int ret;
3299
3300         ret = trace->set_flag(tracer_flags->val, opts->bit, !neg);
3301         if (ret)
3302                 return ret;
3303
3304         if (neg)
3305                 tracer_flags->val &= ~opts->bit;
3306         else
3307                 tracer_flags->val |= opts->bit;
3308         return 0;
3309 }
3310
3311 /* Try to assign a tracer specific option */
3312 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
3313 {
3314         struct tracer_flags *tracer_flags = trace->flags;
3315         struct tracer_opt *opts = NULL;
3316         int i;
3317
3318         for (i = 0; tracer_flags->opts[i].name; i++) {
3319                 opts = &tracer_flags->opts[i];
3320
3321                 if (strcmp(cmp, opts->name) == 0)
3322                         return __set_tracer_option(trace, trace->flags,
3323                                                    opts, neg);
3324         }
3325
3326         return -EINVAL;
3327 }
3328
3329 /* Some tracers require overwrite to stay enabled */
3330 int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set)
3331 {
3332         if (tracer->enabled && (mask & TRACE_ITER_OVERWRITE) && !set)
3333                 return -1;
3334
3335         return 0;
3336 }
3337
3338 int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled)
3339 {
3340         /* do nothing if flag is already set */
3341         if (!!(trace_flags & mask) == !!enabled)
3342                 return 0;
3343
3344         /* Give the tracer a chance to approve the change */
3345         if (tr->current_trace->flag_changed)
3346                 if (tr->current_trace->flag_changed(tr->current_trace, mask, !!enabled))
3347                         return -EINVAL;
3348
3349         if (enabled)
3350                 trace_flags |= mask;
3351         else
3352                 trace_flags &= ~mask;
3353
3354         if (mask == TRACE_ITER_RECORD_CMD)
3355                 trace_event_enable_cmd_record(enabled);
3356
3357         if (mask == TRACE_ITER_OVERWRITE) {
3358                 ring_buffer_change_overwrite(tr->trace_buffer.buffer, enabled);
3359 #ifdef CONFIG_TRACER_MAX_TRACE
3360                 ring_buffer_change_overwrite(tr->max_buffer.buffer, enabled);
3361 #endif
3362         }
3363
3364         if (mask == TRACE_ITER_PRINTK)
3365                 trace_printk_start_stop_comm(enabled);
3366
3367         return 0;
3368 }
3369
3370 static int trace_set_options(struct trace_array *tr, char *option)
3371 {
3372         char *cmp;
3373         int neg = 0;
3374         int ret = -ENODEV;
3375         int i;
3376
3377         cmp = strstrip(option);
3378
3379         if (strncmp(cmp, "no", 2) == 0) {
3380                 neg = 1;
3381                 cmp += 2;
3382         }
3383
3384         mutex_lock(&trace_types_lock);
3385
3386         for (i = 0; trace_options[i]; i++) {
3387                 if (strcmp(cmp, trace_options[i]) == 0) {
3388                         ret = set_tracer_flag(tr, 1 << i, !neg);
3389                         break;
3390                 }
3391         }
3392
3393         /* If no option could be set, test the specific tracer options */
3394         if (!trace_options[i])
3395                 ret = set_tracer_option(tr->current_trace, cmp, neg);
3396
3397         mutex_unlock(&trace_types_lock);
3398
3399         return ret;
3400 }
3401
3402 static ssize_t
3403 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
3404                         size_t cnt, loff_t *ppos)
3405 {
3406         struct seq_file *m = filp->private_data;
3407         struct trace_array *tr = m->private;
3408         char buf[64];
3409         int ret;
3410
3411         if (cnt >= sizeof(buf))
3412                 return -EINVAL;
3413
3414         if (copy_from_user(&buf, ubuf, cnt))
3415                 return -EFAULT;
3416
3417         buf[cnt] = 0;
3418
3419         ret = trace_set_options(tr, buf);
3420         if (ret < 0)
3421                 return ret;
3422
3423         *ppos += cnt;
3424
3425         return cnt;
3426 }
3427
3428 static int tracing_trace_options_open(struct inode *inode, struct file *file)
3429 {
3430         struct trace_array *tr = inode->i_private;
3431         int ret;
3432
3433         if (tracing_disabled)
3434                 return -ENODEV;
3435
3436         if (trace_array_get(tr) < 0)
3437                 return -ENODEV;
3438
3439         ret = single_open(file, tracing_trace_options_show, inode->i_private);
3440         if (ret < 0)
3441                 trace_array_put(tr);
3442
3443         return ret;
3444 }
3445
3446 static const struct file_operations tracing_iter_fops = {
3447         .open           = tracing_trace_options_open,
3448         .read           = seq_read,
3449         .llseek         = seq_lseek,
3450         .release        = tracing_single_release_tr,
3451         .write          = tracing_trace_options_write,
3452 };
3453
3454 static const char readme_msg[] =
3455         "tracing mini-HOWTO:\n\n"
3456         "# echo 0 > tracing_on : quick way to disable tracing\n"
3457         "# echo 1 > tracing_on : quick way to re-enable tracing\n\n"
3458         " Important files:\n"
3459         "  trace\t\t\t- The static contents of the buffer\n"
3460         "\t\t\t  To clear the buffer write into this file: echo > trace\n"
3461         "  trace_pipe\t\t- A consuming read to see the contents of the buffer\n"
3462         "  current_tracer\t- function and latency tracers\n"
3463         "  available_tracers\t- list of configured tracers for current_tracer\n"
3464         "  buffer_size_kb\t- view and modify size of per cpu buffer\n"
3465         "  buffer_total_size_kb  - view total size of all cpu buffers\n\n"
3466         "  trace_clock\t\t-change the clock used to order events\n"
3467         "       local:   Per cpu clock but may not be synced across CPUs\n"
3468         "      global:   Synced across CPUs but slows tracing down.\n"
3469         "     counter:   Not a clock, but just an increment\n"
3470         "      uptime:   Jiffy counter from time of boot\n"
3471         "        perf:   Same clock that perf events use\n"
3472 #ifdef CONFIG_X86_64
3473         "     x86-tsc:   TSC cycle counter\n"
3474 #endif
3475         "\n  trace_marker\t\t- Writes into this file writes into the kernel buffer\n"
3476         "  tracing_cpumask\t- Limit which CPUs to trace\n"
3477         "  instances\t\t- Make sub-buffers with: mkdir instances/foo\n"
3478         "\t\t\t  Remove sub-buffer with rmdir\n"
3479         "  trace_options\t\t- Set format or modify how tracing happens\n"
3480         "\t\t\t  Disable an option by adding a suffix 'no' to the option name\n"
3481 #ifdef CONFIG_DYNAMIC_FTRACE
3482         "\n  available_filter_functions - list of functions that can be filtered on\n"
3483         "  set_ftrace_filter\t- echo function name in here to only trace these functions\n"
3484         "            accepts: func_full_name, *func_end, func_begin*, *func_middle*\n"
3485         "            modules: Can select a group via module\n"
3486         "             Format: :mod:<module-name>\n"
3487         "             example: echo :mod:ext3 > set_ftrace_filter\n"
3488         "            triggers: a command to perform when function is hit\n"
3489         "              Format: <function>:<trigger>[:count]\n"
3490         "             trigger: traceon, traceoff\n"
3491         "                      enable_event:<system>:<event>\n"
3492         "                      disable_event:<system>:<event>\n"
3493 #ifdef CONFIG_STACKTRACE
3494         "                      stacktrace\n"
3495 #endif
3496 #ifdef CONFIG_TRACER_SNAPSHOT
3497         "                      snapshot\n"
3498 #endif
3499         "             example: echo do_fault:traceoff > set_ftrace_filter\n"
3500         "                      echo do_trap:traceoff:3 > set_ftrace_filter\n"
3501         "             The first one will disable tracing every time do_fault is hit\n"
3502         "             The second will disable tracing at most 3 times when do_trap is hit\n"
3503         "               The first time do trap is hit and it disables tracing, the counter\n"
3504         "               will decrement to 2. If tracing is already disabled, the counter\n"
3505         "               will not decrement. It only decrements when the trigger did work\n"
3506         "             To remove trigger without count:\n"
3507         "               echo '!<function>:<trigger> > set_ftrace_filter\n"
3508         "             To remove trigger with a count:\n"
3509         "               echo '!<function>:<trigger>:0 > set_ftrace_filter\n"
3510         "  set_ftrace_notrace\t- echo function name in here to never trace.\n"
3511         "            accepts: func_full_name, *func_end, func_begin*, *func_middle*\n"
3512         "            modules: Can select a group via module command :mod:\n"
3513         "            Does not accept triggers\n"
3514 #endif /* CONFIG_DYNAMIC_FTRACE */
3515 #ifdef CONFIG_FUNCTION_TRACER
3516         "  set_ftrace_pid\t- Write pid(s) to only function trace those pids (function)\n"
3517 #endif
3518 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3519         "  set_graph_function\t- Trace the nested calls of a function (function_graph)\n"
3520         "  max_graph_depth\t- Trace a limited depth of nested calls (0 is unlimited)\n"
3521 #endif
3522 #ifdef CONFIG_TRACER_SNAPSHOT
3523         "\n  snapshot\t\t- Like 'trace' but shows the content of the static snapshot buffer\n"
3524         "\t\t\t  Read the contents for more information\n"
3525 #endif
3526 #ifdef CONFIG_STACK_TRACER
3527         "  stack_trace\t\t- Shows the max stack trace when active\n"
3528         "  stack_max_size\t- Shows current max stack size that was traced\n"
3529         "\t\t\t  Write into this file to reset the max size (trigger a new trace)\n"
3530 #ifdef CONFIG_DYNAMIC_FTRACE
3531         "  stack_trace_filter\t- Like set_ftrace_filter but limits what stack_trace traces\n"
3532 #endif
3533 #endif /* CONFIG_STACK_TRACER */
3534 ;
3535
3536 static ssize_t
3537 tracing_readme_read(struct file *filp, char __user *ubuf,
3538                        size_t cnt, loff_t *ppos)
3539 {
3540         return simple_read_from_buffer(ubuf, cnt, ppos,
3541                                         readme_msg, strlen(readme_msg));
3542 }
3543
3544 static const struct file_operations tracing_readme_fops = {
3545         .open           = tracing_open_generic,
3546         .read           = tracing_readme_read,
3547         .llseek         = generic_file_llseek,
3548 };
3549
3550 static ssize_t
3551 tracing_saved_cmdlines_read(struct file *file, char __user *ubuf,
3552                                 size_t cnt, loff_t *ppos)
3553 {
3554         char *buf_comm;
3555         char *file_buf;
3556         char *buf;
3557         int len = 0;
3558         int pid;
3559         int i;
3560
3561         file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL);
3562         if (!file_buf)
3563                 return -ENOMEM;
3564
3565         buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL);
3566         if (!buf_comm) {
3567                 kfree(file_buf);
3568                 return -ENOMEM;
3569         }
3570
3571         buf = file_buf;
3572
3573         for (i = 0; i < SAVED_CMDLINES; i++) {
3574                 int r;
3575
3576                 pid = map_cmdline_to_pid[i];
3577                 if (pid == -1 || pid == NO_CMDLINE_MAP)
3578                         continue;
3579
3580                 trace_find_cmdline(pid, buf_comm);
3581                 r = sprintf(buf, "%d %s\n", pid, buf_comm);
3582                 buf += r;
3583                 len += r;
3584         }
3585
3586         len = simple_read_from_buffer(ubuf, cnt, ppos,
3587                                       file_buf, len);
3588
3589         kfree(file_buf);
3590         kfree(buf_comm);
3591
3592         return len;
3593 }
3594
3595 static const struct file_operations tracing_saved_cmdlines_fops = {
3596     .open       = tracing_open_generic,
3597     .read       = tracing_saved_cmdlines_read,
3598     .llseek     = generic_file_llseek,
3599 };
3600
3601 static ssize_t
3602 tracing_set_trace_read(struct file *filp, char __user *ubuf,
3603                        size_t cnt, loff_t *ppos)
3604 {
3605         struct trace_array *tr = filp->private_data;
3606         char buf[MAX_TRACER_SIZE+2];
3607         int r;
3608
3609         mutex_lock(&trace_types_lock);
3610         r = sprintf(buf, "%s\n", tr->current_trace->name);
3611         mutex_unlock(&trace_types_lock);
3612
3613         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3614 }
3615
3616 int tracer_init(struct tracer *t, struct trace_array *tr)
3617 {
3618         tracing_reset_online_cpus(&tr->trace_buffer);
3619         return t->init(tr);
3620 }
3621
3622 static void set_buffer_entries(struct trace_buffer *buf, unsigned long val)
3623 {
3624         int cpu;
3625
3626         for_each_tracing_cpu(cpu)
3627                 per_cpu_ptr(buf->data, cpu)->entries = val;
3628 }
3629
3630 #ifdef CONFIG_TRACER_MAX_TRACE
3631 /* resize @tr's buffer to the size of @size_tr's entries */
3632 static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf,
3633                                         struct trace_buffer *size_buf, int cpu_id)
3634 {
3635         int cpu, ret = 0;
3636
3637         if (cpu_id == RING_BUFFER_ALL_CPUS) {
3638                 for_each_tracing_cpu(cpu) {
3639                         ret = ring_buffer_resize(trace_buf->buffer,
3640                                  per_cpu_ptr(size_buf->data, cpu)->entries, cpu);
3641                         if (ret < 0)
3642                                 break;
3643                         per_cpu_ptr(trace_buf->data, cpu)->entries =
3644                                 per_cpu_ptr(size_buf->data, cpu)->entries;
3645                 }
3646         } else {
3647                 ret = ring_buffer_resize(trace_buf->buffer,
3648                                  per_cpu_ptr(size_buf->data, cpu_id)->entries, cpu_id);
3649                 if (ret == 0)
3650                         per_cpu_ptr(trace_buf->data, cpu_id)->entries =
3651                                 per_cpu_ptr(size_buf->data, cpu_id)->entries;
3652         }
3653
3654         return ret;
3655 }
3656 #endif /* CONFIG_TRACER_MAX_TRACE */
3657
3658 static int __tracing_resize_ring_buffer(struct trace_array *tr,
3659                                         unsigned long size, int cpu)
3660 {
3661         int ret;
3662
3663         /*
3664          * If kernel or user changes the size of the ring buffer
3665          * we use the size that was given, and we can forget about
3666          * expanding it later.
3667          */
3668         ring_buffer_expanded = true;
3669
3670         /* May be called before buffers are initialized */
3671         if (!tr->trace_buffer.buffer)
3672                 return 0;
3673
3674         ret = ring_buffer_resize(tr->trace_buffer.buffer, size, cpu);
3675         if (ret < 0)
3676                 return ret;
3677
3678 #ifdef CONFIG_TRACER_MAX_TRACE
3679         if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL) ||
3680             !tr->current_trace->use_max_tr)
3681                 goto out;
3682
3683         ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu);
3684         if (ret < 0) {
3685                 int r = resize_buffer_duplicate_size(&tr->trace_buffer,
3686                                                      &tr->trace_buffer, cpu);
3687                 if (r < 0) {
3688                         /*
3689                          * AARGH! We are left with different
3690                          * size max buffer!!!!
3691                          * The max buffer is our "snapshot" buffer.
3692                          * When a tracer needs a snapshot (one of the
3693                          * latency tracers), it swaps the max buffer
3694                          * with the saved snap shot. We succeeded to
3695                          * update the size of the main buffer, but failed to
3696                          * update the size of the max buffer. But when we tried
3697                          * to reset the main buffer to the original size, we
3698                          * failed there too. This is very unlikely to
3699                          * happen, but if it does, warn and kill all
3700                          * tracing.
3701                          */
3702                         WARN_ON(1);
3703                         tracing_disabled = 1;
3704                 }
3705                 return ret;
3706         }
3707
3708         if (cpu == RING_BUFFER_ALL_CPUS)
3709                 set_buffer_entries(&tr->max_buffer, size);
3710         else
3711                 per_cpu_ptr(tr->max_buffer.data, cpu)->entries = size;
3712
3713  out:
3714 #endif /* CONFIG_TRACER_MAX_TRACE */
3715
3716         if (cpu == RING_BUFFER_ALL_CPUS)
3717                 set_buffer_entries(&tr->trace_buffer, size);
3718         else
3719                 per_cpu_ptr(tr->trace_buffer.data, cpu)->entries = size;
3720
3721         return ret;
3722 }
3723
3724 static ssize_t tracing_resize_ring_buffer(struct trace_array *tr,
3725                                           unsigned long size, int cpu_id)
3726 {
3727         int ret = size;
3728
3729         mutex_lock(&trace_types_lock);
3730
3731         if (cpu_id != RING_BUFFER_ALL_CPUS) {
3732                 /* make sure, this cpu is enabled in the mask */
3733                 if (!cpumask_test_cpu(cpu_id, tracing_buffer_mask)) {
3734                         ret = -EINVAL;
3735                         goto out;
3736                 }
3737         }
3738
3739         ret = __tracing_resize_ring_buffer(tr, size, cpu_id);
3740         if (ret < 0)
3741                 ret = -ENOMEM;
3742
3743 out:
3744         mutex_unlock(&trace_types_lock);
3745
3746         return ret;
3747 }
3748
3749
3750 /**
3751  * tracing_update_buffers - used by tracing facility to expand ring buffers
3752  *
3753  * To save on memory when the tracing is never used on a system with it
3754  * configured in. The ring buffers are set to a minimum size. But once
3755  * a user starts to use the tracing facility, then they need to grow
3756  * to their default size.
3757  *
3758  * This function is to be called when a tracer is about to be used.
3759  */
3760 int tracing_update_buffers(void)
3761 {
3762         int ret = 0;
3763
3764         mutex_lock(&trace_types_lock);
3765         if (!ring_buffer_expanded)
3766                 ret = __tracing_resize_ring_buffer(&global_trace, trace_buf_size,
3767                                                 RING_BUFFER_ALL_CPUS);
3768         mutex_unlock(&trace_types_lock);
3769
3770         return ret;
3771 }
3772
3773 struct trace_option_dentry;
3774
3775 static struct trace_option_dentry *
3776 create_trace_option_files(struct trace_array *tr, struct tracer *tracer);
3777
3778 static void
3779 destroy_trace_option_files(struct trace_option_dentry *topts);
3780
3781 static int tracing_set_tracer(const char *buf)
3782 {
3783         static struct trace_option_dentry *topts;
3784         struct trace_array *tr = &global_trace;
3785         struct tracer *t;
3786 #ifdef CONFIG_TRACER_MAX_TRACE
3787         bool had_max_tr;
3788 #endif
3789         int ret = 0;
3790
3791         mutex_lock(&trace_types_lock);
3792
3793         if (!ring_buffer_expanded) {
3794                 ret = __tracing_resize_ring_buffer(tr, trace_buf_size,
3795                                                 RING_BUFFER_ALL_CPUS);
3796                 if (ret < 0)
3797                         goto out;
3798                 ret = 0;
3799         }
3800
3801         for (t = trace_types; t; t = t->next) {
3802                 if (strcmp(t->name, buf) == 0)
3803                         break;
3804         }
3805         if (!t) {
3806                 ret = -EINVAL;
3807                 goto out;
3808         }
3809         if (t == tr->current_trace)
3810                 goto out;
3811
3812         trace_branch_disable();
3813
3814         tr->current_trace->enabled = false;
3815
3816         if (tr->current_trace->reset)
3817                 tr->current_trace->reset(tr);
3818
3819         /* Current trace needs to be nop_trace before synchronize_sched */
3820         tr->current_trace = &nop_trace;
3821
3822 #ifdef CONFIG_TRACER_MAX_TRACE
3823         had_max_tr = tr->allocated_snapshot;
3824
3825         if (had_max_tr && !t->use_max_tr) {
3826                 /*
3827                  * We need to make sure that the update_max_tr sees that
3828                  * current_trace changed to nop_trace to keep it from
3829                  * swapping the buffers after we resize it.
3830                  * The update_max_tr is called from interrupts disabled
3831                  * so a synchronized_sched() is sufficient.
3832                  */
3833                 synchronize_sched();
3834                 free_snapshot(tr);
3835         }
3836 #endif
3837         destroy_trace_option_files(topts);
3838
3839         topts = create_trace_option_files(tr, t);
3840
3841 #ifdef CONFIG_TRACER_MAX_TRACE
3842         if (t->use_max_tr && !had_max_tr) {
3843                 ret = alloc_snapshot(tr);
3844                 if (ret < 0)
3845                         goto out;
3846         }
3847 #endif
3848
3849         if (t->init) {
3850                 ret = tracer_init(t, tr);
3851                 if (ret)
3852                         goto out;
3853         }
3854
3855         tr->current_trace = t;
3856         tr->current_trace->enabled = true;
3857         trace_branch_enable(tr);
3858  out:
3859         mutex_unlock(&trace_types_lock);
3860
3861         return ret;
3862 }
3863
3864 static ssize_t
3865 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
3866                         size_t cnt, loff_t *ppos)
3867 {
3868         char buf[MAX_TRACER_SIZE+1];
3869         int i;
3870         size_t ret;
3871         int err;
3872
3873         ret = cnt;
3874
3875         if (cnt > MAX_TRACER_SIZE)
3876                 cnt = MAX_TRACER_SIZE;
3877
3878         if (copy_from_user(&buf, ubuf, cnt))
3879                 return -EFAULT;
3880
3881         buf[cnt] = 0;
3882
3883         /* strip ending whitespace. */
3884         for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
3885                 buf[i] = 0;
3886
3887         err = tracing_set_tracer(buf);
3888         if (err)
3889                 return err;
3890
3891         *ppos += ret;
3892
3893         return ret;
3894 }
3895
3896 static ssize_t
3897 tracing_max_lat_read(struct file *filp, char __user *ubuf,
3898                      size_t cnt, loff_t *ppos)
3899 {
3900         unsigned long *ptr = filp->private_data;
3901         char buf[64];
3902         int r;
3903
3904         r = snprintf(buf, sizeof(buf), "%ld\n",
3905                      *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
3906         if (r > sizeof(buf))
3907                 r = sizeof(buf);
3908         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3909 }
3910
3911 static ssize_t
3912 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
3913                       size_t cnt, loff_t *ppos)
3914 {
3915         unsigned long *ptr = filp->private_data;
3916         unsigned long val;
3917         int ret;
3918
3919         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
3920         if (ret)
3921                 return ret;
3922
3923         *ptr = val * 1000;
3924
3925         return cnt;
3926 }
3927
3928 static int tracing_open_pipe(struct inode *inode, struct file *filp)
3929 {
3930         struct trace_array *tr = inode->i_private;
3931         struct trace_iterator *iter;
3932         int ret = 0;
3933
3934         if (tracing_disabled)
3935                 return -ENODEV;
3936
3937         if (trace_array_get(tr) < 0)
3938                 return -ENODEV;
3939
3940         mutex_lock(&trace_types_lock);
3941
3942         /* create a buffer to store the information to pass to userspace */
3943         iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3944         if (!iter) {
3945                 ret = -ENOMEM;
3946                 __trace_array_put(tr);
3947                 goto out;
3948         }
3949
3950         /*
3951          * We make a copy of the current tracer to avoid concurrent
3952          * changes on it while we are reading.
3953          */
3954         iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
3955         if (!iter->trace) {
3956                 ret = -ENOMEM;
3957                 goto fail;
3958         }
3959         *iter->trace = *tr->current_trace;
3960
3961         if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
3962                 ret = -ENOMEM;
3963                 goto fail;
3964         }
3965
3966         /* trace pipe does not show start of buffer */
3967         cpumask_setall(iter->started);
3968
3969         if (trace_flags & TRACE_ITER_LATENCY_FMT)
3970                 iter->iter_flags |= TRACE_FILE_LAT_FMT;
3971
3972         /* Output in nanoseconds only if we are using a clock in nanoseconds. */
3973         if (trace_clocks[tr->clock_id].in_ns)
3974                 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
3975
3976         iter->tr = tr;
3977         iter->trace_buffer = &tr->trace_buffer;
3978         iter->cpu_file = tracing_get_cpu(inode);
3979         mutex_init(&iter->mutex);
3980         filp->private_data = iter;
3981
3982         if (iter->trace->pipe_open)
3983                 iter->trace->pipe_open(iter);
3984
3985         nonseekable_open(inode, filp);
3986 out:
3987         mutex_unlock(&trace_types_lock);
3988         return ret;
3989
3990 fail:
3991         kfree(iter->trace);
3992         kfree(iter);
3993         __trace_array_put(tr);
3994         mutex_unlock(&trace_types_lock);
3995         return ret;
3996 }
3997
3998 static int tracing_release_pipe(struct inode *inode, struct file *file)
3999 {
4000         struct trace_iterator *iter = file->private_data;
4001         struct trace_array *tr = inode->i_private;
4002
4003         mutex_lock(&trace_types_lock);
4004
4005         if (iter->trace->pipe_close)
4006                 iter->trace->pipe_close(iter);
4007
4008         mutex_unlock(&trace_types_lock);
4009
4010         free_cpumask_var(iter->started);
4011         mutex_destroy(&iter->mutex);
4012         kfree(iter->trace);
4013         kfree(iter);
4014
4015         trace_array_put(tr);
4016
4017         return 0;
4018 }
4019
4020 static unsigned int
4021 trace_poll(struct trace_iterator *iter, struct file *filp, poll_table *poll_table)
4022 {
4023         /* Iterators are static, they should be filled or empty */
4024         if (trace_buffer_iter(iter, iter->cpu_file))
4025                 return POLLIN | POLLRDNORM;
4026
4027         if (trace_flags & TRACE_ITER_BLOCK)
4028                 /*
4029                  * Always select as readable when in blocking mode
4030                  */
4031                 return POLLIN | POLLRDNORM;
4032         else
4033                 return ring_buffer_poll_wait(iter->trace_buffer->buffer, iter->cpu_file,
4034                                              filp, poll_table);
4035 }
4036
4037 static unsigned int
4038 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
4039 {
4040         struct trace_iterator *iter = filp->private_data;
4041
4042         return trace_poll(iter, filp, poll_table);
4043 }
4044
4045 /*
4046  * This is a make-shift waitqueue.
4047  * A tracer might use this callback on some rare cases:
4048  *
4049  *  1) the current tracer might hold the runqueue lock when it wakes up
4050  *     a reader, hence a deadlock (sched, function, and function graph tracers)
4051  *  2) the function tracers, trace all functions, we don't want
4052  *     the overhead of calling wake_up and friends
4053  *     (and tracing them too)
4054  *
4055  *     Anyway, this is really very primitive wakeup.
4056  */
4057 void poll_wait_pipe(struct trace_iterator *iter)
4058 {
4059         set_current_state(TASK_INTERRUPTIBLE);
4060         /* sleep for 100 msecs, and try again. */
4061         schedule_timeout(HZ / 10);
4062 }
4063
4064 /* Must be called with trace_types_lock mutex held. */
4065 static int tracing_wait_pipe(struct file *filp)
4066 {
4067         struct trace_iterator *iter = filp->private_data;
4068
4069         while (trace_empty(iter)) {
4070
4071                 if ((filp->f_flags & O_NONBLOCK)) {
4072                         return -EAGAIN;
4073                 }
4074
4075                 mutex_unlock(&iter->mutex);
4076
4077                 iter->trace->wait_pipe(iter);
4078
4079                 mutex_lock(&iter->mutex);
4080
4081                 if (signal_pending(current))
4082                         return -EINTR;
4083
4084                 /*
4085                  * We block until we read something and tracing is disabled.
4086                  * We still block if tracing is disabled, but we have never
4087                  * read anything. This allows a user to cat this file, and
4088                  * then enable tracing. But after we have read something,
4089                  * we give an EOF when tracing is again disabled.
4090                  *
4091                  * iter->pos will be 0 if we haven't read anything.
4092                  */
4093                 if (!tracing_is_on() && iter->pos)
4094                         break;
4095         }
4096
4097         return 1;
4098 }
4099
4100 /*
4101  * Consumer reader.
4102  */
4103 static ssize_t
4104 tracing_read_pipe(struct file *filp, char __user *ubuf,
4105                   size_t cnt, loff_t *ppos)
4106 {
4107         struct trace_iterator *iter = filp->private_data;
4108         struct trace_array *tr = iter->tr;
4109         ssize_t sret;
4110
4111         /* return any leftover data */
4112         sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
4113         if (sret != -EBUSY)
4114                 return sret;
4115
4116         trace_seq_init(&iter->seq);
4117
4118         /* copy the tracer to avoid using a global lock all around */
4119         mutex_lock(&trace_types_lock);
4120         if (unlikely(iter->trace->name != tr->current_trace->name))
4121                 *iter->trace = *tr->current_trace;
4122         mutex_unlock(&trace_types_lock);
4123
4124         /*
4125          * Avoid more than one consumer on a single file descriptor
4126          * This is just a matter of traces coherency, the ring buffer itself
4127          * is protected.
4128          */
4129         mutex_lock(&iter->mutex);
4130         if (iter->trace->read) {
4131                 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
4132                 if (sret)
4133                         goto out;
4134         }
4135
4136 waitagain:
4137         sret = tracing_wait_pipe(filp);
4138         if (sret <= 0)
4139                 goto out;
4140
4141         /* stop when tracing is finished */
4142         if (trace_empty(iter)) {
4143                 sret = 0;
4144                 goto out;
4145         }
4146
4147         if (cnt >= PAGE_SIZE)
4148                 cnt = PAGE_SIZE - 1;
4149
4150         /* reset all but tr, trace, and overruns */
4151         memset(&iter->seq, 0,
4152                sizeof(struct trace_iterator) -
4153                offsetof(struct trace_iterator, seq));
4154         cpumask_clear(iter->started);
4155         iter->pos = -1;
4156
4157         trace_event_read_lock();
4158         trace_access_lock(iter->cpu_file);
4159         while (trace_find_next_entry_inc(iter) != NULL) {
4160                 enum print_line_t ret;
4161                 int len = iter->seq.len;
4162
4163                 ret = print_trace_line(iter);
4164                 if (ret == TRACE_TYPE_PARTIAL_LINE) {
4165                         /* don't print partial lines */
4166                         iter->seq.len = len;
4167                         break;
4168                 }
4169                 if (ret != TRACE_TYPE_NO_CONSUME)
4170                         trace_consume(iter);
4171
4172                 if (iter->seq.len >= cnt)
4173                         break;
4174
4175                 /*
4176                  * Setting the full flag means we reached the trace_seq buffer
4177                  * size and we should leave by partial output condition above.
4178                  * One of the trace_seq_* functions is not used properly.
4179                  */
4180                 WARN_ONCE(iter->seq.full, "full flag set for trace type %d",
4181                           iter->ent->type);
4182         }
4183         trace_access_unlock(iter->cpu_file);
4184         trace_event_read_unlock();
4185
4186         /* Now copy what we have to the user */
4187         sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
4188         if (iter->seq.readpos >= iter->seq.len)
4189                 trace_seq_init(&iter->seq);
4190
4191         /*
4192          * If there was nothing to send to user, in spite of consuming trace
4193          * entries, go back to wait for more entries.
4194          */
4195         if (sret == -EBUSY)
4196                 goto waitagain;
4197
4198 out:
4199         mutex_unlock(&iter->mutex);
4200
4201         return sret;
4202 }
4203
4204 static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
4205                                      struct pipe_buffer *buf)
4206 {
4207         __free_page(buf->page);
4208 }
4209
4210 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
4211                                      unsigned int idx)
4212 {
4213         __free_page(spd->pages[idx]);
4214 }
4215
4216 static const struct pipe_buf_operations tracing_pipe_buf_ops = {
4217         .can_merge              = 0,
4218         .map                    = generic_pipe_buf_map,
4219         .unmap                  = generic_pipe_buf_unmap,
4220         .confirm                = generic_pipe_buf_confirm,
4221         .release                = tracing_pipe_buf_release,
4222         .steal                  = generic_pipe_buf_steal,
4223         .get                    = generic_pipe_buf_get,
4224 };
4225
4226 static size_t
4227 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
4228 {
4229         size_t count;
4230         int ret;
4231
4232         /* Seq buffer is page-sized, exactly what we need. */
4233         for (;;) {
4234                 count = iter->seq.len;
4235                 ret = print_trace_line(iter);
4236                 count = iter->seq.len - count;
4237                 if (rem < count) {
4238                         rem = 0;
4239                         iter->seq.len -= count;
4240                         break;
4241                 }
4242                 if (ret == TRACE_TYPE_PARTIAL_LINE) {
4243                         iter->seq.len -= count;
4244                         break;
4245                 }
4246
4247                 if (ret != TRACE_TYPE_NO_CONSUME)
4248                         trace_consume(iter);
4249                 rem -= count;
4250                 if (!trace_find_next_entry_inc(iter))   {
4251                         rem = 0;
4252                         iter->ent = NULL;
4253                         break;
4254                 }
4255         }
4256
4257         return rem;
4258 }
4259
4260 static ssize_t tracing_splice_read_pipe(struct file *filp,
4261                                         loff_t *ppos,
4262                                         struct pipe_inode_info *pipe,
4263                                         size_t len,
4264                                         unsigned int flags)
4265 {
4266         struct page *pages_def[PIPE_DEF_BUFFERS];
4267         struct partial_page partial_def[PIPE_DEF_BUFFERS];
4268         struct trace_iterator *iter = filp->private_data;
4269         struct splice_pipe_desc spd = {
4270                 .pages          = pages_def,
4271                 .partial        = partial_def,
4272                 .nr_pages       = 0, /* This gets updated below. */
4273                 .nr_pages_max   = PIPE_DEF_BUFFERS,
4274                 .flags          = flags,
4275                 .ops            = &tracing_pipe_buf_ops,
4276                 .spd_release    = tracing_spd_release_pipe,
4277         };
4278         struct trace_array *tr = iter->tr;
4279         ssize_t ret;
4280         size_t rem;
4281         unsigned int i;
4282
4283         if (splice_grow_spd(pipe, &spd))
4284                 return -ENOMEM;
4285
4286         /* copy the tracer to avoid using a global lock all around */
4287         mutex_lock(&trace_types_lock);
4288         if (unlikely(iter->trace->name != tr->current_trace->name))
4289                 *iter->trace = *tr->current_trace;
4290         mutex_unlock(&trace_types_lock);
4291
4292         mutex_lock(&iter->mutex);
4293
4294         if (iter->trace->splice_read) {
4295                 ret = iter->trace->splice_read(iter, filp,
4296                                                ppos, pipe, len, flags);
4297                 if (ret)
4298                         goto out_err;
4299         }
4300
4301         ret = tracing_wait_pipe(filp);
4302         if (ret <= 0)
4303                 goto out_err;
4304
4305         if (!iter->ent && !trace_find_next_entry_inc(iter)) {
4306                 ret = -EFAULT;
4307                 goto out_err;
4308         }
4309
4310         trace_event_read_lock();
4311         trace_access_lock(iter->cpu_file);
4312
4313         /* Fill as many pages as possible. */
4314         for (i = 0, rem = len; i < pipe->buffers && rem; i++) {
4315                 spd.pages[i] = alloc_page(GFP_KERNEL);
4316                 if (!spd.pages[i])
4317                         break;
4318
4319                 rem = tracing_fill_pipe_page(rem, iter);
4320
4321                 /* Copy the data into the page, so we can start over. */
4322                 ret = trace_seq_to_buffer(&iter->seq,
4323                                           page_address(spd.pages[i]),
4324                                           iter->seq.len);
4325                 if (ret < 0) {
4326                         __free_page(spd.pages[i]);
4327                         break;
4328                 }
4329                 spd.partial[i].offset = 0;
4330                 spd.partial[i].len = iter->seq.len;
4331
4332                 trace_seq_init(&iter->seq);
4333         }
4334
4335         trace_access_unlock(iter->cpu_file);
4336         trace_event_read_unlock();
4337         mutex_unlock(&iter->mutex);
4338
4339         spd.nr_pages = i;
4340
4341         ret = splice_to_pipe(pipe, &spd);
4342 out:
4343         splice_shrink_spd(&spd);
4344         return ret;
4345
4346 out_err:
4347         mutex_unlock(&iter->mutex);
4348         goto out;
4349 }
4350
4351 static ssize_t
4352 tracing_entries_read(struct file *filp, char __user *ubuf,
4353                      size_t cnt, loff_t *ppos)
4354 {
4355         struct inode *inode = file_inode(filp);
4356         struct trace_array *tr = inode->i_private;
4357         int cpu = tracing_get_cpu(inode);
4358         char buf[64];
4359         int r = 0;
4360         ssize_t ret;
4361
4362         mutex_lock(&trace_types_lock);
4363
4364         if (cpu == RING_BUFFER_ALL_CPUS) {
4365                 int cpu, buf_size_same;
4366                 unsigned long size;
4367
4368                 size = 0;
4369                 buf_size_same = 1;
4370                 /* check if all cpu sizes are same */
4371                 for_each_tracing_cpu(cpu) {
4372                         /* fill in the size from first enabled cpu */
4373                         if (size == 0)
4374                                 size = per_cpu_ptr(tr->trace_buffer.data, cpu)->entries;
4375                         if (size != per_cpu_ptr(tr->trace_buffer.data, cpu)->entries) {
4376                                 buf_size_same = 0;
4377                                 break;
4378                         }
4379                 }
4380
4381                 if (buf_size_same) {
4382                         if (!ring_buffer_expanded)
4383                                 r = sprintf(buf, "%lu (expanded: %lu)\n",
4384                                             size >> 10,
4385                                             trace_buf_size >> 10);
4386                         else
4387                                 r = sprintf(buf, "%lu\n", size >> 10);
4388                 } else
4389                         r = sprintf(buf, "X\n");
4390         } else
4391                 r = sprintf(buf, "%lu\n", per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10);
4392
4393         mutex_unlock(&trace_types_lock);
4394
4395         ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4396         return ret;
4397 }
4398
4399 static ssize_t
4400 tracing_entries_write(struct file *filp, const char __user *ubuf,
4401                       size_t cnt, loff_t *ppos)
4402 {
4403         struct inode *inode = file_inode(filp);
4404         struct trace_array *tr = inode->i_private;
4405         unsigned long val;
4406         int ret;
4407
4408         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4409         if (ret)
4410                 return ret;
4411
4412         /* must have at least 1 entry */
4413         if (!val)
4414                 return -EINVAL;
4415
4416         /* value is in KB */
4417         val <<= 10;
4418         ret = tracing_resize_ring_buffer(tr, val, tracing_get_cpu(inode));
4419         if (ret < 0)
4420                 return ret;
4421
4422         *ppos += cnt;
4423
4424         return cnt;
4425 }
4426
4427 static ssize_t
4428 tracing_total_entries_read(struct file *filp, char __user *ubuf,
4429                                 size_t cnt, loff_t *ppos)
4430 {
4431         struct trace_array *tr = filp->private_data;
4432         char buf[64];
4433         int r, cpu;
4434         unsigned long size = 0, expanded_size = 0;
4435
4436         mutex_lock(&trace_types_lock);
4437         for_each_tracing_cpu(cpu) {
4438                 size += per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10;
4439                 if (!ring_buffer_expanded)
4440                         expanded_size += trace_buf_size >> 10;
4441         }
4442         if (ring_buffer_expanded)
4443                 r = sprintf(buf, "%lu\n", size);
4444         else
4445                 r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size);
4446         mutex_unlock(&trace_types_lock);
4447
4448         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4449 }
4450
4451 static ssize_t
4452 tracing_free_buffer_write(struct file *filp, const char __user *ubuf,
4453                           size_t cnt, loff_t *ppos)
4454 {
4455         /*
4456          * There is no need to read what the user has written, this function
4457          * is just to make sure that there is no error when "echo" is used
4458          */
4459
4460         *ppos += cnt;
4461
4462         return cnt;
4463 }
4464
4465 static int
4466 tracing_free_buffer_release(struct inode *inode, struct file *filp)
4467 {
4468         struct trace_array *tr = inode->i_private;
4469
4470         /* disable tracing ? */
4471         if (trace_flags & TRACE_ITER_STOP_ON_FREE)
4472                 tracer_tracing_off(tr);
4473         /* resize the ring buffer to 0 */
4474         tracing_resize_ring_buffer(tr, 0, RING_BUFFER_ALL_CPUS);
4475
4476         trace_array_put(tr);
4477
4478         return 0;
4479 }
4480
4481 static ssize_t
4482 tracing_mark_write(struct file *filp, const char __user *ubuf,
4483                                         size_t cnt, loff_t *fpos)
4484 {
4485         unsigned long addr = (unsigned long)ubuf;
4486         struct trace_array *tr = filp->private_data;
4487         struct ring_buffer_event *event;
4488         struct ring_buffer *buffer;
4489         struct print_entry *entry;
4490         unsigned long irq_flags;
4491         struct page *pages[2];
4492         void *map_page[2];
4493         int nr_pages = 1;
4494         ssize_t written;
4495         int offset;
4496         int size;
4497         int len;
4498         int ret;
4499         int i;
4500
4501         if (tracing_disabled)
4502                 return -EINVAL;
4503
4504         if (!(trace_flags & TRACE_ITER_MARKERS))
4505                 return -EINVAL;
4506
4507         if (cnt > TRACE_BUF_SIZE)
4508                 cnt = TRACE_BUF_SIZE;
4509
4510         /*
4511          * Userspace is injecting traces into the kernel trace buffer.
4512          * We want to be as non intrusive as possible.
4513          * To do so, we do not want to allocate any special buffers
4514          * or take any locks, but instead write the userspace data
4515          * straight into the ring buffer.
4516          *
4517          * First we need to pin the userspace buffer into memory,
4518          * which, most likely it is, because it just referenced it.
4519          * But there's no guarantee that it is. By using get_user_pages_fast()
4520          * and kmap_atomic/kunmap_atomic() we can get access to the
4521          * pages directly. We then write the data directly into the
4522          * ring buffer.
4523          */
4524         BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);
4525
4526         /* check if we cross pages */
4527         if ((addr & PAGE_MASK) != ((addr + cnt) & PAGE_MASK))
4528                 nr_pages = 2;
4529
4530         offset = addr & (PAGE_SIZE - 1);
4531         addr &= PAGE_MASK;
4532
4533         ret = get_user_pages_fast(addr, nr_pages, 0, pages);
4534         if (ret < nr_pages) {
4535                 while (--ret >= 0)
4536                         put_page(pages[ret]);
4537                 written = -EFAULT;
4538                 goto out;
4539         }
4540
4541         for (i = 0; i < nr_pages; i++)
4542                 map_page[i] = kmap_atomic(pages[i]);
4543
4544         local_save_flags(irq_flags);
4545         size = sizeof(*entry) + cnt + 2; /* possible \n added */
4546         buffer = tr->trace_buffer.buffer;
4547         event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
4548                                           irq_flags, preempt_count());
4549         if (!event) {
4550                 /* Ring buffer disabled, return as if not open for write */
4551                 written = -EBADF;
4552                 goto out_unlock;
4553         }
4554
4555         entry = ring_buffer_event_data(event);
4556         entry->ip = _THIS_IP_;
4557
4558         if (nr_pages == 2) {
4559                 len = PAGE_SIZE - offset;
4560                 memcpy(&entry->buf, map_page[0] + offset, len);
4561                 memcpy(&entry->buf[len], map_page[1], cnt - len);
4562         } else
4563                 memcpy(&entry->buf, map_page[0] + offset, cnt);
4564
4565         if (entry->buf[cnt - 1] != '\n') {
4566                 entry->buf[cnt] = '\n';
4567                 entry->buf[cnt + 1] = '\0';
4568         } else
4569                 entry->buf[cnt] = '\0';
4570
4571         __buffer_unlock_commit(buffer, event);
4572
4573         written = cnt;
4574
4575         *fpos += written;
4576
4577  out_unlock:
4578         for (i = 0; i < nr_pages; i++){
4579                 kunmap_atomic(map_page[i]);
4580                 put_page(pages[i]);
4581         }
4582  out:
4583         return written;
4584 }
4585
4586 static int tracing_clock_show(struct seq_file *m, void *v)
4587 {
4588         struct trace_array *tr = m->private;
4589         int i;
4590
4591         for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
4592                 seq_printf(m,
4593                         "%s%s%s%s", i ? " " : "",
4594                         i == tr->clock_id ? "[" : "", trace_clocks[i].name,
4595                         i == tr->clock_id ? "]" : "");
4596         seq_putc(m, '\n');
4597
4598         return 0;
4599 }
4600
4601 static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
4602                                    size_t cnt, loff_t *fpos)
4603 {
4604         struct seq_file *m = filp->private_data;
4605         struct trace_array *tr = m->private;
4606         char buf[64];
4607         const char *clockstr;
4608         int i;
4609
4610         if (cnt >= sizeof(buf))
4611                 return -EINVAL;
4612
4613         if (copy_from_user(&buf, ubuf, cnt))
4614                 return -EFAULT;
4615
4616         buf[cnt] = 0;
4617
4618         clockstr = strstrip(buf);
4619
4620         for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
4621                 if (strcmp(trace_clocks[i].name, clockstr) == 0)
4622                         break;
4623         }
4624         if (i == ARRAY_SIZE(trace_clocks))
4625                 return -EINVAL;
4626
4627         mutex_lock(&trace_types_lock);
4628
4629         tr->clock_id = i;
4630
4631         ring_buffer_set_clock(tr->trace_buffer.buffer, trace_clocks[i].func);
4632
4633         /*
4634          * New clock may not be consistent with the previous clock.
4635          * Reset the buffer so that it doesn't have incomparable timestamps.
4636          */
4637         tracing_reset_online_cpus(&tr->trace_buffer);
4638
4639 #ifdef CONFIG_TRACER_MAX_TRACE
4640         if (tr->flags & TRACE_ARRAY_FL_GLOBAL && tr->max_buffer.buffer)
4641                 ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func);
4642         tracing_reset_online_cpus(&tr->max_buffer);
4643 #endif
4644
4645         mutex_unlock(&trace_types_lock);
4646
4647         *fpos += cnt;
4648
4649         return cnt;
4650 }
4651
4652 static int tracing_clock_open(struct inode *inode, struct file *file)
4653 {
4654         struct trace_array *tr = inode->i_private;
4655         int ret;
4656
4657         if (tracing_disabled)
4658                 return -ENODEV;
4659
4660         if (trace_array_get(tr))
4661                 return -ENODEV;
4662
4663         ret = single_open(file, tracing_clock_show, inode->i_private);
4664         if (ret < 0)
4665                 trace_array_put(tr);
4666
4667         return ret;
4668 }
4669
4670 struct ftrace_buffer_info {
4671         struct trace_iterator   iter;
4672         void                    *spare;
4673         unsigned int            read;
4674 };
4675
4676 #ifdef CONFIG_TRACER_SNAPSHOT
4677 static int tracing_snapshot_open(struct inode *inode, struct file *file)
4678 {
4679         struct trace_array *tr = inode->i_private;
4680         struct trace_iterator *iter;
4681         struct seq_file *m;
4682         int ret = 0;
4683
4684         if (trace_array_get(tr) < 0)
4685                 return -ENODEV;
4686
4687         if (file->f_mode & FMODE_READ) {
4688                 iter = __tracing_open(inode, file, true);
4689                 if (IS_ERR(iter))
4690                         ret = PTR_ERR(iter);
4691         } else {
4692                 /* Writes still need the seq_file to hold the private data */
4693                 ret = -ENOMEM;
4694                 m = kzalloc(sizeof(*m), GFP_KERNEL);
4695                 if (!m)
4696                         goto out;
4697                 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
4698                 if (!iter) {
4699                         kfree(m);
4700                         goto out;
4701                 }
4702                 ret = 0;
4703
4704                 iter->tr = tr;
4705                 iter->trace_buffer = &tr->max_buffer;
4706                 iter->cpu_file = tracing_get_cpu(inode);
4707                 m->private = iter;
4708                 file->private_data = m;
4709         }
4710 out:
4711         if (ret < 0)
4712                 trace_array_put(tr);
4713
4714         return ret;
4715 }
4716
4717 static ssize_t
4718 tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt,
4719                        loff_t *ppos)
4720 {
4721         struct seq_file *m = filp->private_data;
4722         struct trace_iterator *iter = m->private;
4723         struct trace_array *tr = iter->tr;
4724         unsigned long val;
4725         int ret;
4726
4727         ret = tracing_update_buffers();
4728         if (ret < 0)
4729                 return ret;
4730
4731         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4732         if (ret)
4733                 return ret;
4734
4735         mutex_lock(&trace_types_lock);
4736
4737         if (tr->current_trace->use_max_tr) {
4738                 ret = -EBUSY;
4739                 goto out;
4740         }
4741
4742         switch (val) {
4743         case 0:
4744                 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
4745                         ret = -EINVAL;
4746                         break;
4747                 }
4748                 if (tr->allocated_snapshot)
4749                         free_snapshot(tr);
4750                 break;
4751         case 1:
4752 /* Only allow per-cpu swap if the ring buffer supports it */
4753 #ifndef CONFIG_RING_BUFFER_ALLOW_SWAP
4754                 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
4755                         ret = -EINVAL;
4756                         break;
4757                 }
4758 #endif
4759                 if (!tr->allocated_snapshot) {
4760                         ret = alloc_snapshot(tr);
4761                         if (ret < 0)
4762                                 break;
4763                 }
4764                 local_irq_disable();
4765                 /* Now, we're going to swap */
4766                 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
4767                         update_max_tr(tr, current, smp_processor_id());
4768                 else
4769                         update_max_tr_single(tr, current, iter->cpu_file);
4770                 local_irq_enable();
4771                 break;
4772         default:
4773                 if (tr->allocated_snapshot) {
4774                         if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
4775                                 tracing_reset_online_cpus(&tr->max_buffer);
4776                         else
4777                                 tracing_reset(&tr->max_buffer, iter->cpu_file);
4778                 }
4779                 break;
4780         }
4781
4782         if (ret >= 0) {
4783                 *ppos += cnt;
4784                 ret = cnt;
4785         }
4786 out:
4787         mutex_unlock(&trace_types_lock);
4788         return ret;
4789 }
4790
4791 static int tracing_snapshot_release(struct inode *inode, struct file *file)
4792 {
4793         struct seq_file *m = file->private_data;
4794         int ret;
4795
4796         ret = tracing_release(inode, file);
4797
4798         if (file->f_mode & FMODE_READ)
4799                 return ret;
4800
4801         /* If write only, the seq_file is just a stub */
4802         if (m)
4803                 kfree(m->private);
4804         kfree(m);
4805
4806         return 0;
4807 }
4808
4809 static int tracing_buffers_open(struct inode *inode, struct file *filp);
4810 static ssize_t tracing_buffers_read(struct file *filp, char __user *ubuf,
4811                                     size_t count, loff_t *ppos);
4812 static int tracing_buffers_release(struct inode *inode, struct file *file);
4813 static ssize_t tracing_buffers_splice_read(struct file *file, loff_t *ppos,
4814                    struct pipe_inode_info *pipe, size_t len, unsigned int flags);
4815
4816 static int snapshot_raw_open(struct inode *inode, struct file *filp)
4817 {
4818         struct ftrace_buffer_info *info;
4819         int ret;
4820
4821         ret = tracing_buffers_open(inode, filp);
4822         if (ret < 0)
4823                 return ret;
4824
4825         info = filp->private_data;
4826
4827         if (info->iter.trace->use_max_tr) {
4828                 tracing_buffers_release(inode, filp);
4829                 return -EBUSY;
4830         }
4831
4832         info->iter.snapshot = true;
4833         info->iter.trace_buffer = &info->iter.tr->max_buffer;
4834
4835         return ret;
4836 }
4837
4838 #endif /* CONFIG_TRACER_SNAPSHOT */
4839
4840
4841 static const struct file_operations tracing_max_lat_fops = {
4842         .open           = tracing_open_generic,
4843         .read           = tracing_max_lat_read,
4844         .write          = tracing_max_lat_write,
4845         .llseek         = generic_file_llseek,
4846 };
4847
4848 static const struct file_operations set_tracer_fops = {
4849         .open           = tracing_open_generic,
4850         .read           = tracing_set_trace_read,
4851         .write          = tracing_set_trace_write,
4852         .llseek         = generic_file_llseek,
4853 };
4854
4855 static const struct file_operations tracing_pipe_fops = {
4856         .open           = tracing_open_pipe,
4857         .poll           = tracing_poll_pipe,
4858         .read           = tracing_read_pipe,
4859         .splice_read    = tracing_splice_read_pipe,
4860         .release        = tracing_release_pipe,
4861         .llseek         = no_llseek,
4862 };
4863
4864 static const struct file_operations tracing_entries_fops = {
4865         .open           = tracing_open_generic_tr,
4866         .read           = tracing_entries_read,
4867         .write          = tracing_entries_write,
4868         .llseek         = generic_file_llseek,
4869         .release        = tracing_release_generic_tr,
4870 };
4871
4872 static const struct file_operations tracing_total_entries_fops = {
4873         .open           = tracing_open_generic_tr,
4874         .read           = tracing_total_entries_read,
4875         .llseek         = generic_file_llseek,
4876         .release        = tracing_release_generic_tr,
4877 };
4878
4879 static const struct file_operations tracing_free_buffer_fops = {
4880         .open           = tracing_open_generic_tr,
4881         .write          = tracing_free_buffer_write,
4882         .release        = tracing_free_buffer_release,
4883 };
4884
4885 static const struct file_operations tracing_mark_fops = {
4886         .open           = tracing_open_generic_tr,
4887         .write          = tracing_mark_write,
4888         .llseek         = generic_file_llseek,
4889         .release        = tracing_release_generic_tr,
4890 };
4891
4892 static const struct file_operations trace_clock_fops = {
4893         .open           = tracing_clock_open,
4894         .read           = seq_read,
4895         .llseek         = seq_lseek,
4896         .release        = tracing_single_release_tr,
4897         .write          = tracing_clock_write,
4898 };
4899
4900 #ifdef CONFIG_TRACER_SNAPSHOT
4901 static const struct file_operations snapshot_fops = {
4902         .open           = tracing_snapshot_open,
4903         .read           = seq_read,
4904         .write          = tracing_snapshot_write,
4905         .llseek         = tracing_seek,
4906         .release        = tracing_snapshot_release,
4907 };
4908
4909 static const struct file_operations snapshot_raw_fops = {
4910         .open           = snapshot_raw_open,
4911         .read           = tracing_buffers_read,
4912         .release        = tracing_buffers_release,
4913         .splice_read    = tracing_buffers_splice_read,
4914         .llseek         = no_llseek,
4915 };
4916
4917 #endif /* CONFIG_TRACER_SNAPSHOT */
4918
4919 static int tracing_buffers_open(struct inode *inode, struct file *filp)
4920 {
4921         struct trace_array *tr = inode->i_private;
4922         struct ftrace_buffer_info *info;
4923         int ret;
4924
4925         if (tracing_disabled)
4926                 return -ENODEV;
4927
4928         if (trace_array_get(tr) < 0)
4929                 return -ENODEV;
4930
4931         info = kzalloc(sizeof(*info), GFP_KERNEL);
4932         if (!info) {
4933                 trace_array_put(tr);
4934                 return -ENOMEM;
4935         }
4936
4937         mutex_lock(&trace_types_lock);
4938
4939         info->iter.tr           = tr;
4940         info->iter.cpu_file     = tracing_get_cpu(inode);
4941         info->iter.trace        = tr->current_trace;
4942         info->iter.trace_buffer = &tr->trace_buffer;
4943         info->spare             = NULL;
4944         /* Force reading ring buffer for first read */
4945         info->read              = (unsigned int)-1;
4946
4947         filp->private_data = info;
4948
4949         mutex_unlock(&trace_types_lock);
4950
4951         ret = nonseekable_open(inode, filp);
4952         if (ret < 0)
4953                 trace_array_put(tr);
4954
4955         return ret;
4956 }
4957
4958 static unsigned int
4959 tracing_buffers_poll(struct file *filp, poll_table *poll_table)
4960 {
4961         struct ftrace_buffer_info *info = filp->private_data;
4962         struct trace_iterator *iter = &info->iter;
4963
4964         return trace_poll(iter, filp, poll_table);
4965 }
4966
4967 static ssize_t
4968 tracing_buffers_read(struct file *filp, char __user *ubuf,
4969                      size_t count, loff_t *ppos)
4970 {
4971         struct ftrace_buffer_info *info = filp->private_data;
4972         struct trace_iterator *iter = &info->iter;
4973         ssize_t ret;
4974         ssize_t size;
4975
4976         if (!count)
4977                 return 0;
4978
4979         mutex_lock(&trace_types_lock);
4980
4981 #ifdef CONFIG_TRACER_MAX_TRACE
4982         if (iter->snapshot && iter->tr->current_trace->use_max_tr) {
4983                 size = -EBUSY;
4984                 goto out_unlock;
4985         }
4986 #endif
4987
4988         if (!info->spare)
4989                 info->spare = ring_buffer_alloc_read_page(iter->trace_buffer->buffer,
4990                                                           iter->cpu_file);
4991         size = -ENOMEM;
4992         if (!info->spare)
4993                 goto out_unlock;
4994
4995         /* Do we have previous read data to read? */
4996         if (info->read < PAGE_SIZE)
4997                 goto read;
4998
4999  again:
5000         trace_access_lock(iter->cpu_file);
5001         ret = ring_buffer_read_page(iter->trace_buffer->buffer,
5002                                     &info->spare,
5003                                     count,
5004                                     iter->cpu_file, 0);
5005         trace_access_unlock(iter->cpu_file);
5006
5007         if (ret < 0) {
5008                 if (trace_empty(iter)) {
5009                         if ((filp->f_flags & O_NONBLOCK)) {
5010                                 size = -EAGAIN;
5011                                 goto out_unlock;
5012                         }
5013                         mutex_unlock(&trace_types_lock);
5014                         iter->trace->wait_pipe(iter);
5015                         mutex_lock(&trace_types_lock);
5016                         if (signal_pending(current)) {
5017                                 size = -EINTR;
5018                                 goto out_unlock;
5019                         }
5020                         goto again;
5021                 }
5022                 size = 0;
5023                 goto out_unlock;
5024         }
5025
5026         info->read = 0;
5027  read:
5028         size = PAGE_SIZE - info->read;
5029         if (size > count)
5030                 size = count;
5031
5032         ret = copy_to_user(ubuf, info->spare + info->read, size);
5033         if (ret == size) {
5034                 size = -EFAULT;
5035                 goto out_unlock;
5036         }
5037         size -= ret;
5038
5039         *ppos += size;
5040         info->read += size;
5041
5042  out_unlock:
5043         mutex_unlock(&trace_types_lock);
5044
5045         return size;
5046 }
5047
5048 static int tracing_buffers_release(struct inode *inode, struct file *file)
5049 {
5050         struct ftrace_buffer_info *info = file->private_data;
5051         struct trace_iterator *iter = &info->iter;
5052
5053         mutex_lock(&trace_types_lock);
5054
5055         __trace_array_put(iter->tr);
5056
5057         if (info->spare)
5058                 ring_buffer_free_read_page(iter->trace_buffer->buffer, info->spare);
5059         kfree(info);
5060
5061         mutex_unlock(&trace_types_lock);
5062
5063         return 0;
5064 }
5065
5066 struct buffer_ref {
5067         struct ring_buffer      *buffer;
5068         void                    *page;
5069         int                     ref;
5070 };
5071
5072 static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
5073                                     struct pipe_buffer *buf)
5074 {
5075         struct buffer_ref *ref = (struct buffer_ref *)buf->private;
5076
5077         if (--ref->ref)
5078                 return;
5079
5080         ring_buffer_free_read_page(ref->buffer, ref->page);
5081         kfree(ref);
5082         buf->private = 0;
5083 }
5084
5085 static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
5086                                 struct pipe_buffer *buf)
5087 {
5088         struct buffer_ref *ref = (struct buffer_ref *)buf->private;
5089
5090         ref->ref++;
5091 }
5092
5093 /* Pipe buffer operations for a buffer. */
5094 static const struct pipe_buf_operations buffer_pipe_buf_ops = {
5095         .can_merge              = 0,
5096         .map                    = generic_pipe_buf_map,
5097         .unmap                  = generic_pipe_buf_unmap,
5098         .confirm                = generic_pipe_buf_confirm,
5099         .release                = buffer_pipe_buf_release,
5100         .steal                  = generic_pipe_buf_steal,
5101         .get                    = buffer_pipe_buf_get,
5102 };
5103
5104 /*
5105  * Callback from splice_to_pipe(), if we need to release some pages
5106  * at the end of the spd in case we error'ed out in filling the pipe.
5107  */
5108 static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
5109 {
5110         struct buffer_ref *ref =
5111                 (struct buffer_ref *)spd->partial[i].private;
5112
5113         if (--ref->ref)
5114                 return;
5115
5116         ring_buffer_free_read_page(ref->buffer, ref->page);
5117         kfree(ref);
5118         spd->partial[i].private = 0;
5119 }
5120
5121 static ssize_t
5122 tracing_buffers_splice_read(struct file *file, loff_t *ppos,
5123                             struct pipe_inode_info *pipe, size_t len,
5124                             unsigned int flags)
5125 {
5126         struct ftrace_buffer_info *info = file->private_data;
5127         struct trace_iterator *iter = &info->iter;
5128         struct partial_page partial_def[PIPE_DEF_BUFFERS];
5129         struct page *pages_def[PIPE_DEF_BUFFERS];
5130         struct splice_pipe_desc spd = {
5131                 .pages          = pages_def,
5132                 .partial        = partial_def,
5133                 .nr_pages_max   = PIPE_DEF_BUFFERS,
5134                 .flags          = flags,
5135                 .ops            = &buffer_pipe_buf_ops,
5136                 .spd_release    = buffer_spd_release,
5137         };
5138         struct buffer_ref *ref;
5139         int entries, size, i;
5140         ssize_t ret;
5141
5142         mutex_lock(&trace_types_lock);
5143
5144 #ifdef CONFIG_TRACER_MAX_TRACE
5145         if (iter->snapshot && iter->tr->current_trace->use_max_tr) {
5146                 ret = -EBUSY;
5147                 goto out;
5148         }
5149 #endif
5150
5151         if (splice_grow_spd(pipe, &spd)) {
5152                 ret = -ENOMEM;
5153                 goto out;
5154         }
5155
5156         if (*ppos & (PAGE_SIZE - 1)) {
5157                 ret = -EINVAL;
5158                 goto out;
5159         }
5160
5161         if (len & (PAGE_SIZE - 1)) {
5162                 if (len < PAGE_SIZE) {
5163                         ret = -EINVAL;
5164                         goto out;
5165                 }
5166                 len &= PAGE_MASK;
5167         }
5168
5169  again:
5170         trace_access_lock(iter->cpu_file);
5171         entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file);
5172
5173         for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) {
5174                 struct page *page;
5175                 int r;
5176
5177                 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
5178                 if (!ref)
5179                         break;
5180
5181                 ref->ref = 1;
5182                 ref->buffer = iter->trace_buffer->buffer;
5183                 ref->page = ring_buffer_alloc_read_page(ref->buffer, iter->cpu_file);
5184                 if (!ref->page) {
5185                         kfree(ref);
5186                         break;
5187                 }
5188
5189                 r = ring_buffer_read_page(ref->buffer, &ref->page,
5190                                           len, iter->cpu_file, 1);
5191                 if (r < 0) {
5192                         ring_buffer_free_read_page(ref->buffer, ref->page);
5193                         kfree(ref);
5194                         break;
5195                 }
5196
5197                 /*
5198                  * zero out any left over data, this is going to
5199                  * user land.
5200                  */
5201                 size = ring_buffer_page_len(ref->page);
5202                 if (size < PAGE_SIZE)
5203                         memset(ref->page + size, 0, PAGE_SIZE - size);
5204
5205                 page = virt_to_page(ref->page);
5206
5207                 spd.pages[i] = page;
5208                 spd.partial[i].len = PAGE_SIZE;
5209                 spd.partial[i].offset = 0;
5210                 spd.partial[i].private = (unsigned long)ref;
5211                 spd.nr_pages++;
5212                 *ppos += PAGE_SIZE;
5213
5214                 entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file);
5215         }
5216
5217         trace_access_unlock(iter->cpu_file);
5218         spd.nr_pages = i;
5219
5220         /* did we read anything? */
5221         if (!spd.nr_pages) {
5222                 if ((file->f_flags & O_NONBLOCK) || (flags & SPLICE_F_NONBLOCK)) {
5223                         ret = -EAGAIN;
5224                         goto out;
5225                 }
5226                 mutex_unlock(&trace_types_lock);
5227                 iter->trace->wait_pipe(iter);
5228                 mutex_lock(&trace_types_lock);
5229                 if (signal_pending(current)) {
5230                         ret = -EINTR;
5231                         goto out;
5232                 }
5233                 goto again;
5234         }
5235
5236         ret = splice_to_pipe(pipe, &spd);
5237         splice_shrink_spd(&spd);
5238 out:
5239         mutex_unlock(&trace_types_lock);
5240
5241         return ret;
5242 }
5243
5244 static const struct file_operations tracing_buffers_fops = {
5245         .open           = tracing_buffers_open,
5246         .read           = tracing_buffers_read,
5247         .poll           = tracing_buffers_poll,
5248         .release        = tracing_buffers_release,
5249         .splice_read    = tracing_buffers_splice_read,
5250         .llseek         = no_llseek,
5251 };
5252
5253 static ssize_t
5254 tracing_stats_read(struct file *filp, char __user *ubuf,
5255                    size_t count, loff_t *ppos)
5256 {
5257         struct inode *inode = file_inode(filp);
5258         struct trace_array *tr = inode->i_private;
5259         struct trace_buffer *trace_buf = &tr->trace_buffer;
5260         int cpu = tracing_get_cpu(inode);
5261         struct trace_seq *s;
5262         unsigned long cnt;
5263         unsigned long long t;
5264         unsigned long usec_rem;
5265
5266         s = kmalloc(sizeof(*s), GFP_KERNEL);
5267         if (!s)
5268                 return -ENOMEM;
5269
5270         trace_seq_init(s);
5271
5272         cnt = ring_buffer_entries_cpu(trace_buf->buffer, cpu);
5273         trace_seq_printf(s, "entries: %ld\n", cnt);
5274
5275         cnt = ring_buffer_overrun_cpu(trace_buf->buffer, cpu);
5276         trace_seq_printf(s, "overrun: %ld\n", cnt);
5277
5278         cnt = ring_buffer_commit_overrun_cpu(trace_buf->buffer, cpu);
5279         trace_seq_printf(s, "commit overrun: %ld\n", cnt);
5280
5281         cnt = ring_buffer_bytes_cpu(trace_buf->buffer, cpu);
5282         trace_seq_printf(s, "bytes: %ld\n", cnt);
5283
5284         if (trace_clocks[tr->clock_id].in_ns) {
5285                 /* local or global for trace_clock */
5286                 t = ns2usecs(ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
5287                 usec_rem = do_div(t, USEC_PER_SEC);
5288                 trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n",
5289                                                                 t, usec_rem);
5290
5291                 t = ns2usecs(ring_buffer_time_stamp(trace_buf->buffer, cpu));
5292                 usec_rem = do_div(t, USEC_PER_SEC);
5293                 trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem);
5294         } else {
5295                 /* counter or tsc mode for trace_clock */
5296                 trace_seq_printf(s, "oldest event ts: %llu\n",
5297                                 ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
5298
5299                 trace_seq_printf(s, "now ts: %llu\n",
5300                                 ring_buffer_time_stamp(trace_buf->buffer, cpu));
5301         }
5302
5303         cnt = ring_buffer_dropped_events_cpu(trace_buf->buffer, cpu);
5304         trace_seq_printf(s, "dropped events: %ld\n", cnt);
5305
5306         cnt = ring_buffer_read_events_cpu(trace_buf->buffer, cpu);
5307         trace_seq_printf(s, "read events: %ld\n", cnt);
5308
5309         count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
5310
5311         kfree(s);
5312
5313         return count;
5314 }
5315
5316 static const struct file_operations tracing_stats_fops = {
5317         .open           = tracing_open_generic_tr,
5318         .read           = tracing_stats_read,
5319         .llseek         = generic_file_llseek,
5320         .release        = tracing_release_generic_tr,
5321 };
5322
5323 #ifdef CONFIG_DYNAMIC_FTRACE
5324
5325 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
5326 {
5327         return 0;
5328 }
5329
5330 static ssize_t
5331 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
5332                   size_t cnt, loff_t *ppos)
5333 {
5334         static char ftrace_dyn_info_buffer[1024];
5335         static DEFINE_MUTEX(dyn_info_mutex);
5336         unsigned long *p = filp->private_data;
5337         char *buf = ftrace_dyn_info_buffer;
5338         int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
5339         int r;
5340
5341         mutex_lock(&dyn_info_mutex);
5342         r = sprintf(buf, "%ld ", *p);
5343
5344         r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
5345         buf[r++] = '\n';
5346
5347         r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
5348
5349         mutex_unlock(&dyn_info_mutex);
5350
5351         return r;
5352 }
5353
5354 static const struct file_operations tracing_dyn_info_fops = {
5355         .open           = tracing_open_generic,
5356         .read           = tracing_read_dyn_info,
5357         .llseek         = generic_file_llseek,
5358 };
5359 #endif /* CONFIG_DYNAMIC_FTRACE */
5360
5361 #if defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE)
5362 static void
5363 ftrace_snapshot(unsigned long ip, unsigned long parent_ip, void **data)
5364 {
5365         tracing_snapshot();
5366 }
5367
5368 static void
5369 ftrace_count_snapshot(unsigned long ip, unsigned long parent_ip, void **data)
5370 {
5371         unsigned long *count = (long *)data;
5372
5373         if (!*count)
5374                 return;
5375
5376         if (*count != -1)
5377                 (*count)--;
5378
5379         tracing_snapshot();
5380 }
5381
5382 static int
5383 ftrace_snapshot_print(struct seq_file *m, unsigned long ip,
5384                       struct ftrace_probe_ops *ops, void *data)
5385 {
5386         long count = (long)data;
5387
5388         seq_printf(m, "%ps:", (void *)ip);
5389
5390         seq_printf(m, "snapshot");
5391
5392         if (count == -1)
5393                 seq_printf(m, ":unlimited\n");
5394         else
5395                 seq_printf(m, ":count=%ld\n", count);
5396
5397         return 0;
5398 }
5399
5400 static struct ftrace_probe_ops snapshot_probe_ops = {
5401         .func                   = ftrace_snapshot,
5402         .print                  = ftrace_snapshot_print,
5403 };
5404
5405 static struct ftrace_probe_ops snapshot_count_probe_ops = {
5406         .func                   = ftrace_count_snapshot,
5407         .print                  = ftrace_snapshot_print,
5408 };
5409
5410 static int
5411 ftrace_trace_snapshot_callback(struct ftrace_hash *hash,
5412                                char *glob, char *cmd, char *param, int enable)
5413 {
5414         struct ftrace_probe_ops *ops;
5415         void *count = (void *)-1;
5416         char *number;
5417         int ret;
5418
5419         /* hash funcs only work with set_ftrace_filter */
5420         if (!enable)
5421                 return -EINVAL;
5422
5423         ops = param ? &snapshot_count_probe_ops :  &snapshot_probe_ops;
5424
5425         if (glob[0] == '!') {
5426                 unregister_ftrace_function_probe_func(glob+1, ops);
5427                 return 0;
5428         }
5429
5430         if (!param)
5431                 goto out_reg;
5432
5433         number = strsep(&param, ":");
5434
5435         if (!strlen(number))
5436                 goto out_reg;
5437
5438         /*
5439          * We use the callback data field (which is a pointer)
5440          * as our counter.
5441          */
5442         ret = kstrtoul(number, 0, (unsigned long *)&count);
5443         if (ret)
5444                 return ret;
5445
5446  out_reg:
5447         ret = register_ftrace_function_probe(glob, ops, count);
5448
5449         if (ret >= 0)
5450                 alloc_snapshot(&global_trace);
5451
5452         return ret < 0 ? ret : 0;
5453 }
5454
5455 static struct ftrace_func_command ftrace_snapshot_cmd = {
5456         .name                   = "snapshot",
5457         .func                   = ftrace_trace_snapshot_callback,
5458 };
5459
5460 static int register_snapshot_cmd(void)
5461 {
5462         return register_ftrace_command(&ftrace_snapshot_cmd);
5463 }
5464 #else
5465 static inline int register_snapshot_cmd(void) { return 0; }
5466 #endif /* defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) */
5467
5468 struct dentry *tracing_init_dentry_tr(struct trace_array *tr)
5469 {
5470         if (tr->dir)
5471                 return tr->dir;
5472
5473         if (!debugfs_initialized())
5474                 return NULL;
5475
5476         if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
5477                 tr->dir = debugfs_create_dir("tracing", NULL);
5478
5479         if (!tr->dir)
5480                 pr_warn_once("Could not create debugfs directory 'tracing'\n");
5481
5482         return tr->dir;
5483 }
5484
5485 struct dentry *tracing_init_dentry(void)
5486 {
5487         return tracing_init_dentry_tr(&global_trace);
5488 }
5489
5490 static struct dentry *tracing_dentry_percpu(struct trace_array *tr, int cpu)
5491 {
5492         struct dentry *d_tracer;
5493
5494         if (tr->percpu_dir)
5495                 return tr->percpu_dir;
5496
5497         d_tracer = tracing_init_dentry_tr(tr);
5498         if (!d_tracer)
5499                 return NULL;
5500
5501         tr->percpu_dir = debugfs_create_dir("per_cpu", d_tracer);
5502
5503         WARN_ONCE(!tr->percpu_dir,
5504                   "Could not create debugfs directory 'per_cpu/%d'\n", cpu);
5505
5506         return tr->percpu_dir;
5507 }
5508
5509 static struct dentry *
5510 trace_create_cpu_file(const char *name, umode_t mode, struct dentry *parent,
5511                       void *data, long cpu, const struct file_operations *fops)
5512 {
5513         struct dentry *ret = trace_create_file(name, mode, parent, data, fops);
5514
5515         if (ret) /* See tracing_get_cpu() */
5516                 ret->d_inode->i_cdev = (void *)(cpu + 1);
5517         return ret;
5518 }
5519
5520 static void
5521 tracing_init_debugfs_percpu(struct trace_array *tr, long cpu)
5522 {
5523         struct dentry *d_percpu = tracing_dentry_percpu(tr, cpu);
5524         struct dentry *d_cpu;
5525         char cpu_dir[30]; /* 30 characters should be more than enough */
5526
5527         if (!d_percpu)
5528                 return;
5529
5530         snprintf(cpu_dir, 30, "cpu%ld", cpu);
5531         d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
5532         if (!d_cpu) {
5533                 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
5534                 return;
5535         }
5536
5537         /* per cpu trace_pipe */
5538         trace_create_cpu_file("trace_pipe", 0444, d_cpu,
5539                                 tr, cpu, &tracing_pipe_fops);
5540
5541         /* per cpu trace */
5542         trace_create_cpu_file("trace", 0644, d_cpu,
5543                                 tr, cpu, &tracing_fops);
5544
5545         trace_create_cpu_file("trace_pipe_raw", 0444, d_cpu,
5546                                 tr, cpu, &tracing_buffers_fops);
5547
5548         trace_create_cpu_file("stats", 0444, d_cpu,
5549                                 tr, cpu, &tracing_stats_fops);
5550
5551         trace_create_cpu_file("buffer_size_kb", 0444, d_cpu,
5552                                 tr, cpu, &tracing_entries_fops);
5553
5554 #ifdef CONFIG_TRACER_SNAPSHOT
5555         trace_create_cpu_file("snapshot", 0644, d_cpu,
5556                                 tr, cpu, &snapshot_fops);
5557
5558         trace_create_cpu_file("snapshot_raw", 0444, d_cpu,
5559                                 tr, cpu, &snapshot_raw_fops);
5560 #endif
5561 }
5562
5563 #ifdef CONFIG_FTRACE_SELFTEST
5564 /* Let selftest have access to static functions in this file */
5565 #include "trace_selftest.c"
5566 #endif
5567
5568 struct trace_option_dentry {
5569         struct tracer_opt               *opt;
5570         struct tracer_flags             *flags;
5571         struct trace_array              *tr;
5572         struct dentry                   *entry;
5573 };
5574
5575 static ssize_t
5576 trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
5577                         loff_t *ppos)
5578 {
5579         struct trace_option_dentry *topt = filp->private_data;
5580         char *buf;
5581
5582         if (topt->flags->val & topt->opt->bit)
5583                 buf = "1\n";
5584         else
5585                 buf = "0\n";
5586
5587         return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
5588 }
5589
5590 static ssize_t
5591 trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
5592                          loff_t *ppos)
5593 {
5594         struct trace_option_dentry *topt = filp->private_data;
5595         unsigned long val;
5596         int ret;
5597
5598         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5599         if (ret)
5600                 return ret;
5601
5602         if (val != 0 && val != 1)
5603                 return -EINVAL;
5604
5605         if (!!(topt->flags->val & topt->opt->bit) != val) {
5606                 mutex_lock(&trace_types_lock);
5607                 ret = __set_tracer_option(topt->tr->current_trace, topt->flags,
5608                                           topt->opt, !val);
5609                 mutex_unlock(&trace_types_lock);
5610                 if (ret)
5611                         return ret;
5612         }
5613
5614         *ppos += cnt;
5615
5616         return cnt;
5617 }
5618
5619
5620 static const struct file_operations trace_options_fops = {
5621         .open = tracing_open_generic,
5622         .read = trace_options_read,
5623         .write = trace_options_write,
5624         .llseek = generic_file_llseek,
5625 };
5626
5627 static ssize_t
5628 trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
5629                         loff_t *ppos)
5630 {
5631         long index = (long)filp->private_data;
5632         char *buf;
5633
5634         if (trace_flags & (1 << index))
5635                 buf = "1\n";
5636         else
5637                 buf = "0\n";
5638
5639         return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
5640 }
5641
5642 static ssize_t
5643 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
5644                          loff_t *ppos)
5645 {
5646         struct trace_array *tr = &global_trace;
5647         long index = (long)filp->private_data;
5648         unsigned long val;
5649         int ret;
5650
5651         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5652         if (ret)
5653                 return ret;
5654
5655         if (val != 0 && val != 1)
5656                 return -EINVAL;
5657
5658         mutex_lock(&trace_types_lock);
5659         ret = set_tracer_flag(tr, 1 << index, val);
5660         mutex_unlock(&trace_types_lock);
5661
5662         if (ret < 0)
5663                 return ret;
5664
5665         *ppos += cnt;
5666
5667         return cnt;
5668 }
5669
5670 static const struct file_operations trace_options_core_fops = {
5671         .open = tracing_open_generic,
5672         .read = trace_options_core_read,
5673         .write = trace_options_core_write,
5674         .llseek = generic_file_llseek,
5675 };
5676
5677 struct dentry *trace_create_file(const char *name,
5678                                  umode_t mode,
5679                                  struct dentry *parent,
5680                                  void *data,
5681                                  const struct file_operations *fops)
5682 {
5683         struct dentry *ret;
5684
5685         ret = debugfs_create_file(name, mode, parent, data, fops);
5686         if (!ret)
5687                 pr_warning("Could not create debugfs '%s' entry\n", name);
5688
5689         return ret;
5690 }
5691
5692
5693 static struct dentry *trace_options_init_dentry(struct trace_array *tr)
5694 {
5695         struct dentry *d_tracer;
5696
5697         if (tr->options)
5698                 return tr->options;
5699
5700         d_tracer = tracing_init_dentry_tr(tr);
5701         if (!d_tracer)
5702                 return NULL;
5703
5704         tr->options = debugfs_create_dir("options", d_tracer);
5705         if (!tr->options) {
5706                 pr_warning("Could not create debugfs directory 'options'\n");
5707                 return NULL;
5708         }
5709
5710         return tr->options;
5711 }
5712
5713 static void
5714 create_trace_option_file(struct trace_array *tr,
5715                          struct trace_option_dentry *topt,
5716                          struct tracer_flags *flags,
5717                          struct tracer_opt *opt)
5718 {
5719         struct dentry *t_options;
5720
5721         t_options = trace_options_init_dentry(tr);
5722         if (!t_options)
5723                 return;
5724
5725         topt->flags = flags;
5726         topt->opt = opt;
5727         topt->tr = tr;
5728
5729         topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
5730                                     &trace_options_fops);
5731
5732 }
5733
5734 static struct trace_option_dentry *
5735 create_trace_option_files(struct trace_array *tr, struct tracer *tracer)
5736 {
5737         struct trace_option_dentry *topts;
5738         struct tracer_flags *flags;
5739         struct tracer_opt *opts;
5740         int cnt;
5741
5742         if (!tracer)
5743                 return NULL;
5744
5745         flags = tracer->flags;
5746
5747         if (!flags || !flags->opts)
5748                 return NULL;
5749
5750         opts = flags->opts;
5751
5752         for (cnt = 0; opts[cnt].name; cnt++)
5753                 ;
5754
5755         topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
5756         if (!topts)
5757                 return NULL;
5758
5759         for (cnt = 0; opts[cnt].name; cnt++)
5760                 create_trace_option_file(tr, &topts[cnt], flags,
5761                                          &opts[cnt]);
5762
5763         return topts;
5764 }
5765
5766 static void
5767 destroy_trace_option_files(struct trace_option_dentry *topts)
5768 {
5769         int cnt;
5770
5771         if (!topts)
5772                 return;
5773
5774         for (cnt = 0; topts[cnt].opt; cnt++) {
5775                 if (topts[cnt].entry)
5776                         debugfs_remove(topts[cnt].entry);
5777         }
5778
5779         kfree(topts);
5780 }
5781
5782 static struct dentry *
5783 create_trace_option_core_file(struct trace_array *tr,
5784                               const char *option, long index)
5785 {
5786         struct dentry *t_options;
5787
5788         t_options = trace_options_init_dentry(tr);
5789         if (!t_options)
5790                 return NULL;
5791
5792         return trace_create_file(option, 0644, t_options, (void *)index,
5793                                     &trace_options_core_fops);
5794 }
5795
5796 static __init void create_trace_options_dir(struct trace_array *tr)
5797 {
5798         struct dentry *t_options;
5799         int i;
5800
5801         t_options = trace_options_init_dentry(tr);
5802         if (!t_options)
5803                 return;
5804
5805         for (i = 0; trace_options[i]; i++)
5806                 create_trace_option_core_file(tr, trace_options[i], i);
5807 }
5808
5809 static ssize_t
5810 rb_simple_read(struct file *filp, char __user *ubuf,
5811                size_t cnt, loff_t *ppos)
5812 {
5813         struct trace_array *tr = filp->private_data;
5814         char buf[64];
5815         int r;
5816
5817         r = tracer_tracing_is_on(tr);
5818         r = sprintf(buf, "%d\n", r);
5819
5820         return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
5821 }
5822
5823 static ssize_t
5824 rb_simple_write(struct file *filp, const char __user *ubuf,
5825                 size_t cnt, loff_t *ppos)
5826 {
5827         struct trace_array *tr = filp->private_data;
5828         struct ring_buffer *buffer = tr->trace_buffer.buffer;
5829         unsigned long val;
5830         int ret;
5831
5832         ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5833         if (ret)
5834                 return ret;
5835
5836         if (buffer) {
5837                 mutex_lock(&trace_types_lock);
5838                 if (val) {
5839                         tracer_tracing_on(tr);
5840                         if (tr->current_trace->start)
5841                                 tr->current_trace->start(tr);
5842                 } else {
5843                         tracer_tracing_off(tr);
5844                         if (tr->current_trace->stop)
5845                                 tr->current_trace->stop(tr);
5846                 }
5847                 mutex_unlock(&trace_types_lock);
5848         }
5849
5850         (*ppos)++;
5851
5852         return cnt;
5853 }
5854
5855 static const struct file_operations rb_simple_fops = {
5856         .open           = tracing_open_generic_tr,
5857         .read           = rb_simple_read,
5858         .write          = rb_simple_write,
5859         .release        = tracing_release_generic_tr,
5860         .llseek         = default_llseek,
5861 };
5862
5863 struct dentry *trace_instance_dir;
5864
5865 static void
5866 init_tracer_debugfs(struct trace_array *tr, struct dentry *d_tracer);
5867
5868 static int
5869 allocate_trace_buffer(struct trace_array *tr, struct trace_buffer *buf, int size)
5870 {
5871         enum ring_buffer_flags rb_flags;
5872
5873         rb_flags = trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
5874
5875         buf->buffer = ring_buffer_alloc(size, rb_flags);
5876         if (!buf->buffer)
5877                 return -ENOMEM;
5878
5879         buf->data = alloc_percpu(struct trace_array_cpu);
5880         if (!buf->data) {
5881                 ring_buffer_free(buf->buffer);
5882                 return -ENOMEM;
5883         }
5884
5885         /* Allocate the first page for all buffers */
5886         set_buffer_entries(&tr->trace_buffer,
5887                            ring_buffer_size(tr->trace_buffer.buffer, 0));
5888
5889         return 0;
5890 }
5891
5892 static int allocate_trace_buffers(struct trace_array *tr, int size)
5893 {
5894         int ret;
5895
5896         ret = allocate_trace_buffer(tr, &tr->trace_buffer, size);
5897         if (ret)
5898                 return ret;
5899
5900 #ifdef CONFIG_TRACER_MAX_TRACE
5901         ret = allocate_trace_buffer(tr, &tr->max_buffer,
5902                                     allocate_snapshot ? size : 1);
5903         if (WARN_ON(ret)) {
5904                 ring_buffer_free(tr->trace_buffer.buffer);
5905                 free_percpu(tr->trace_buffer.data);
5906                 return -ENOMEM;
5907         }
5908         tr->allocated_snapshot = allocate_snapshot;
5909
5910         /*
5911          * Only the top level trace array gets its snapshot allocated
5912          * from the kernel command line.
5913          */
5914         allocate_snapshot = false;
5915 #endif
5916         return 0;
5917 }
5918
5919 static int new_instance_create(const char *name)
5920 {
5921         struct trace_array *tr;
5922         int ret;
5923
5924         mutex_lock(&trace_types_lock);
5925
5926         ret = -EEXIST;
5927         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
5928                 if (tr->name && strcmp(tr->name, name) == 0)
5929                         goto out_unlock;
5930         }
5931
5932         ret = -ENOMEM;
5933         tr = kzalloc(sizeof(*tr), GFP_KERNEL);
5934         if (!tr)
5935                 goto out_unlock;
5936
5937         tr->name = kstrdup(name, GFP_KERNEL);
5938         if (!tr->name)
5939                 goto out_free_tr;
5940
5941         if (!alloc_cpumask_var(&tr->tracing_cpumask, GFP_KERNEL))
5942                 goto out_free_tr;
5943
5944         cpumask_copy(tr->tracing_cpumask, cpu_all_mask);
5945
5946         raw_spin_lock_init(&tr->start_lock);
5947
5948         tr->current_trace = &nop_trace;
5949
5950         INIT_LIST_HEAD(&tr->systems);
5951         INIT_LIST_HEAD(&tr->events);
5952
5953         if (allocate_trace_buffers(tr, trace_buf_size) < 0)
5954                 goto out_free_tr;
5955
5956         tr->dir = debugfs_create_dir(name, trace_instance_dir);
5957         if (!tr->dir)
5958                 goto out_free_tr;
5959
5960         ret = event_trace_add_tracer(tr->dir, tr);
5961         if (ret) {
5962                 debugfs_remove_recursive(tr->dir);
5963                 goto out_free_tr;
5964         }
5965
5966         init_tracer_debugfs(tr, tr->dir);
5967
5968         list_add(&tr->list, &ftrace_trace_arrays);
5969
5970         mutex_unlock(&trace_types_lock);
5971
5972         return 0;
5973
5974  out_free_tr:
5975         if (tr->trace_buffer.buffer)
5976                 ring_buffer_free(tr->trace_buffer.buffer);
5977         free_cpumask_var(tr->tracing_cpumask);
5978         kfree(tr->name);
5979         kfree(tr);
5980
5981  out_unlock:
5982         mutex_unlock(&trace_types_lock);
5983
5984         return ret;
5985
5986 }
5987
5988 static int instance_delete(const char *name)
5989 {
5990         struct trace_array *tr;
5991         int found = 0;
5992         int ret;
5993
5994         mutex_lock(&trace_types_lock);
5995
5996         ret = -ENODEV;
5997         list_for_each_entry(tr, &ftrace_trace_arrays, list) {
5998                 if (tr->name && strcmp(tr->name, name) == 0) {
5999                         found = 1;
6000                         break;
6001                 }
6002         }
6003         if (!found)
6004                 goto out_unlock;
6005
6006         ret = -EBUSY;
6007         if (tr->ref)
6008                 goto out_unlock;
6009
6010         list_del(&tr->list);
6011
6012         event_trace_del_tracer(tr);
6013         debugfs_remove_recursive(tr->dir);
6014         free_percpu(tr->trace_buffer.data);
6015         ring_buffer_free(tr->trace_buffer.buffer);
6016
6017         kfree(tr->name);
6018         kfree(tr);
6019
6020         ret = 0;
6021
6022  out_unlock:
6023         mutex_unlock(&trace_types_lock);
6024
6025         return ret;
6026 }
6027
6028 static int instance_mkdir (struct inode *inode, struct dentry *dentry, umode_t mode)
6029 {
6030         struct dentry *parent;
6031         int ret;
6032
6033         /* Paranoid: Make sure the parent is the "instances" directory */
6034         parent = hlist_entry(inode->i_dentry.first, struct dentry, d_alias);
6035         if (WARN_ON_ONCE(parent != trace_instance_dir))
6036                 return -ENOENT;
6037
6038         /*
6039          * The inode mutex is locked, but debugfs_create_dir() will also
6040          * take the mutex. As the instances directory can not be destroyed
6041          * or changed in any other way, it is safe to unlock it, and
6042          * let the dentry try. If two users try to make the same dir at
6043          * the same time, then the new_instance_create() will determine the
6044          * winner.
6045          */
6046         mutex_unlock(&inode->i_mutex);
6047
6048         ret = new_instance_create(dentry->d_iname);
6049
6050         mutex_lock(&inode->i_mutex);
6051
6052         return ret;
6053 }
6054
6055 static int instance_rmdir(struct inode *inode, struct dentry *dentry)
6056 {
6057         struct dentry *parent;
6058         int ret;
6059
6060         /* Paranoid: Make sure the parent is the "instances" directory */
6061         parent = hlist_entry(inode->i_dentry.first, struct dentry, d_alias);
6062         if (WARN_ON_ONCE(parent != trace_instance_dir))
6063                 return -ENOENT;
6064
6065         /* The caller did a dget() on dentry */
6066         mutex_unlock(&dentry->d_inode->i_mutex);
6067
6068         /*
6069          * The inode mutex is locked, but debugfs_create_dir() will also
6070          * take the mutex. As the instances directory can not be destroyed
6071          * or changed in any other way, it is safe to unlock it, and
6072          * let the dentry try. If two users try to make the same dir at
6073          * the same time, then the instance_delete() will determine the
6074          * winner.
6075          */
6076         mutex_unlock(&inode->i_mutex);
6077
6078         ret = instance_delete(dentry->d_iname);
6079
6080         mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
6081         mutex_lock(&dentry->d_inode->i_mutex);
6082
6083         return ret;
6084 }
6085
6086 static const struct inode_operations instance_dir_inode_operations = {
6087         .lookup         = simple_lookup,
6088         .mkdir          = instance_mkdir,
6089         .rmdir          = instance_rmdir,
6090 };
6091
6092 static __init void create_trace_instances(struct dentry *d_tracer)
6093 {
6094         trace_instance_dir = debugfs_create_dir("instances", d_tracer);
6095         if (WARN_ON(!trace_instance_dir))
6096                 return;
6097
6098         /* Hijack the dir inode operations, to allow mkdir */
6099         trace_instance_dir->d_inode->i_op = &instance_dir_inode_operations;
6100 }
6101
6102 static void
6103 init_tracer_debugfs(struct trace_array *tr, struct dentry *d_tracer)
6104 {
6105         int cpu;
6106
6107         trace_create_file("tracing_cpumask", 0644, d_tracer,
6108                           tr, &tracing_cpumask_fops);
6109
6110         trace_create_file("trace_options", 0644, d_tracer,
6111                           tr, &tracing_iter_fops);
6112
6113         trace_create_file("trace", 0644, d_tracer,
6114                           tr, &tracing_fops);
6115
6116         trace_create_file("trace_pipe", 0444, d_tracer,
6117                           tr, &tracing_pipe_fops);
6118
6119         trace_create_file("buffer_size_kb", 0644, d_tracer,
6120                           tr, &tracing_entries_fops);
6121
6122         trace_create_file("buffer_total_size_kb", 0444, d_tracer,
6123                           tr, &tracing_total_entries_fops);
6124
6125         trace_create_file("free_buffer", 0200, d_tracer,
6126                           tr, &tracing_free_buffer_fops);
6127
6128         trace_create_file("trace_marker", 0220, d_tracer,
6129                           tr, &tracing_mark_fops);
6130
6131         trace_create_file("trace_clock", 0644, d_tracer, tr,
6132                           &trace_clock_fops);
6133
6134         trace_create_file("tracing_on", 0644, d_tracer,
6135                           tr, &rb_simple_fops);
6136
6137 #ifdef CONFIG_TRACER_SNAPSHOT
6138         trace_create_file("snapshot", 0644, d_tracer,
6139                           tr, &snapshot_fops);
6140 #endif
6141
6142         for_each_tracing_cpu(cpu)
6143                 tracing_init_debugfs_percpu(tr, cpu);
6144
6145 }
6146
6147 static __init int tracer_init_debugfs(void)
6148 {
6149         struct dentry *d_tracer;
6150
6151         trace_access_lock_init();
6152
6153         d_tracer = tracing_init_dentry();
6154         if (!d_tracer)
6155                 return 0;
6156
6157         init_tracer_debugfs(&global_trace, d_tracer);
6158
6159         trace_create_file("available_tracers", 0444, d_tracer,
6160                         &global_trace, &show_traces_fops);
6161
6162         trace_create_file("current_tracer", 0644, d_tracer,
6163                         &global_trace, &set_tracer_fops);
6164
6165 #ifdef CONFIG_TRACER_MAX_TRACE
6166         trace_create_file("tracing_max_latency", 0644, d_tracer,
6167                         &tracing_max_latency, &tracing_max_lat_fops);
6168 #endif
6169
6170         trace_create_file("tracing_thresh", 0644, d_tracer,
6171                         &tracing_thresh, &tracing_max_lat_fops);
6172
6173         trace_create_file("README", 0444, d_tracer,
6174                         NULL, &tracing_readme_fops);
6175
6176         trace_create_file("saved_cmdlines", 0444, d_tracer,
6177                         NULL, &tracing_saved_cmdlines_fops);
6178
6179 #ifdef CONFIG_DYNAMIC_FTRACE
6180         trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
6181                         &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
6182 #endif
6183
6184         create_trace_instances(d_tracer);
6185
6186         create_trace_options_dir(&global_trace);
6187
6188         return 0;
6189 }
6190
6191 static int trace_panic_handler(struct notifier_block *this,
6192                                unsigned long event, void *unused)
6193 {
6194         if (ftrace_dump_on_oops)
6195                 ftrace_dump(ftrace_dump_on_oops);
6196         return NOTIFY_OK;
6197 }
6198
6199 static struct notifier_block trace_panic_notifier = {
6200         .notifier_call  = trace_panic_handler,
6201         .next           = NULL,
6202         .priority       = 150   /* priority: INT_MAX >= x >= 0 */
6203 };
6204
6205 static int trace_die_handler(struct notifier_block *self,
6206                              unsigned long val,
6207                              void *data)
6208 {
6209         switch (val) {
6210         case DIE_OOPS:
6211                 if (ftrace_dump_on_oops)
6212                         ftrace_dump(ftrace_dump_on_oops);
6213                 break;
6214         default:
6215                 break;
6216         }
6217         return NOTIFY_OK;
6218 }
6219
6220 static struct notifier_block trace_die_notifier = {
6221         .notifier_call = trace_die_handler,
6222         .priority = 200
6223 };
6224
6225 /*
6226  * printk is set to max of 1024, we really don't need it that big.
6227  * Nothing should be printing 1000 characters anyway.
6228  */
6229 #define TRACE_MAX_PRINT         1000
6230
6231 /*
6232  * Define here KERN_TRACE so that we have one place to modify
6233  * it if we decide to change what log level the ftrace dump
6234  * should be at.
6235  */
6236 #define KERN_TRACE              KERN_EMERG
6237
6238 void
6239 trace_printk_seq(struct trace_seq *s)
6240 {
6241         /* Probably should print a warning here. */
6242         if (s->len >= TRACE_MAX_PRINT)
6243                 s->len = TRACE_MAX_PRINT;
6244
6245         /* should be zero ended, but we are paranoid. */
6246         s->buffer[s->len] = 0;
6247
6248         printk(KERN_TRACE "%s", s->buffer);
6249
6250         trace_seq_init(s);
6251 }
6252
6253 void trace_init_global_iter(struct trace_iterator *iter)
6254 {
6255         iter->tr = &global_trace;
6256         iter->trace = iter->tr->current_trace;
6257         iter->cpu_file = RING_BUFFER_ALL_CPUS;
6258         iter->trace_buffer = &global_trace.trace_buffer;
6259 }
6260
6261 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
6262 {
6263         /* use static because iter can be a bit big for the stack */
6264         static struct trace_iterator iter;
6265         static atomic_t dump_running;
6266         unsigned int old_userobj;
6267         unsigned long flags;
6268         int cnt = 0, cpu;
6269
6270         /* Only allow one dump user at a time. */
6271         if (atomic_inc_return(&dump_running) != 1) {
6272                 atomic_dec(&dump_running);
6273                 return;
6274         }
6275
6276         /*
6277          * Always turn off tracing when we dump.
6278          * We don't need to show trace output of what happens
6279          * between multiple crashes.
6280          *
6281          * If the user does a sysrq-z, then they can re-enable
6282          * tracing with echo 1 > tracing_on.
6283          */
6284         tracing_off();
6285
6286         local_irq_save(flags);
6287
6288         /* Simulate the iterator */
6289         trace_init_global_iter(&iter);
6290
6291         for_each_tracing_cpu(cpu) {
6292                 atomic_inc(&per_cpu_ptr(iter.tr->trace_buffer.data, cpu)->disabled);
6293         }
6294
6295         old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
6296
6297         /* don't look at user memory in panic mode */
6298         trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
6299
6300         switch (oops_dump_mode) {
6301         case DUMP_ALL:
6302                 iter.cpu_file = RING_BUFFER_ALL_CPUS;
6303                 break;
6304         case DUMP_ORIG:
6305                 iter.cpu_file = raw_smp_processor_id();
6306                 break;
6307         case DUMP_NONE:
6308                 goto out_enable;
6309         default:
6310                 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
6311                 iter.cpu_file = RING_BUFFER_ALL_CPUS;
6312         }
6313
6314         printk(KERN_TRACE "Dumping ftrace buffer:\n");
6315
6316         /* Did function tracer already get disabled? */
6317         if (ftrace_is_dead()) {
6318                 printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n");
6319                 printk("#          MAY BE MISSING FUNCTION EVENTS\n");
6320         }
6321
6322         /*
6323          * We need to stop all tracing on all CPUS to read the
6324          * the next buffer. This is a bit expensive, but is
6325          * not done often. We fill all what we can read,
6326          * and then release the locks again.
6327          */
6328
6329         while (!trace_empty(&iter)) {
6330
6331                 if (!cnt)
6332                         printk(KERN_TRACE "---------------------------------\n");
6333
6334                 cnt++;
6335
6336                 /* reset all but tr, trace, and overruns */
6337                 memset(&iter.seq, 0,
6338                        sizeof(struct trace_iterator) -
6339                        offsetof(struct trace_iterator, seq));
6340                 iter.iter_flags |= TRACE_FILE_LAT_FMT;
6341                 iter.pos = -1;
6342
6343                 if (trace_find_next_entry_inc(&iter) != NULL) {
6344                         int ret;
6345
6346                         ret = print_trace_line(&iter);
6347                         if (ret != TRACE_TYPE_NO_CONSUME)
6348                                 trace_consume(&iter);
6349                 }
6350                 touch_nmi_watchdog();
6351
6352                 trace_printk_seq(&iter.seq);
6353         }
6354
6355         if (!cnt)
6356                 printk(KERN_TRACE "   (ftrace buffer empty)\n");
6357         else
6358                 printk(KERN_TRACE "---------------------------------\n");
6359
6360  out_enable:
6361         trace_flags |= old_userobj;
6362
6363         for_each_tracing_cpu(cpu) {
6364                 atomic_dec(&per_cpu_ptr(iter.trace_buffer->data, cpu)->disabled);
6365         }
6366         atomic_dec(&dump_running);
6367         local_irq_restore(flags);
6368 }
6369 EXPORT_SYMBOL_GPL(ftrace_dump);
6370
6371 __init static int tracer_alloc_buffers(void)
6372 {
6373         int ring_buf_size;
6374         int ret = -ENOMEM;
6375
6376
6377         if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
6378                 goto out;
6379
6380         if (!alloc_cpumask_var(&global_trace.tracing_cpumask, GFP_KERNEL))
6381                 goto out_free_buffer_mask;
6382
6383         /* Only allocate trace_printk buffers if a trace_printk exists */
6384         if (__stop___trace_bprintk_fmt != __start___trace_bprintk_fmt)
6385                 /* Must be called before global_trace.buffer is allocated */
6386                 trace_printk_init_buffers();
6387
6388         /* To save memory, keep the ring buffer size to its minimum */
6389         if (ring_buffer_expanded)
6390                 ring_buf_size = trace_buf_size;
6391         else
6392                 ring_buf_size = 1;
6393
6394         cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
6395         cpumask_copy(global_trace.tracing_cpumask, cpu_all_mask);
6396
6397         raw_spin_lock_init(&global_trace.start_lock);
6398
6399         /* TODO: make the number of buffers hot pluggable with CPUS */
6400         if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) {
6401                 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
6402                 WARN_ON(1);
6403                 goto out_free_cpumask;
6404         }
6405
6406         if (global_trace.buffer_disabled)
6407                 tracing_off();
6408
6409         trace_init_cmdlines();
6410
6411         /*
6412          * register_tracer() might reference current_trace, so it
6413          * needs to be set before we register anything. This is
6414          * just a bootstrap of current_trace anyway.
6415          */
6416         global_trace.current_trace = &nop_trace;
6417
6418         register_tracer(&nop_trace);
6419
6420         /* All seems OK, enable tracing */
6421         tracing_disabled = 0;
6422
6423         atomic_notifier_chain_register(&panic_notifier_list,
6424                                        &trace_panic_notifier);
6425
6426         register_die_notifier(&trace_die_notifier);
6427
6428         global_trace.flags = TRACE_ARRAY_FL_GLOBAL;
6429
6430         INIT_LIST_HEAD(&global_trace.systems);
6431         INIT_LIST_HEAD(&global_trace.events);
6432         list_add(&global_trace.list, &ftrace_trace_arrays);
6433
6434         while (trace_boot_options) {
6435                 char *option;
6436
6437                 option = strsep(&trace_boot_options, ",");
6438                 trace_set_options(&global_trace, option);
6439         }
6440
6441         register_snapshot_cmd();
6442
6443         return 0;
6444
6445 out_free_cpumask:
6446         free_percpu(global_trace.trace_buffer.data);
6447 #ifdef CONFIG_TRACER_MAX_TRACE
6448         free_percpu(global_trace.max_buffer.data);
6449 #endif
6450         free_cpumask_var(global_trace.tracing_cpumask);
6451 out_free_buffer_mask:
6452         free_cpumask_var(tracing_buffer_mask);
6453 out:
6454         return ret;
6455 }
6456
6457 __init static int clear_boot_tracer(void)
6458 {
6459         /*
6460          * The default tracer at boot buffer is an init section.
6461          * This function is called in lateinit. If we did not
6462          * find the boot tracer, then clear it out, to prevent
6463          * later registration from accessing the buffer that is
6464          * about to be freed.
6465          */
6466         if (!default_bootup_tracer)
6467                 return 0;
6468
6469         printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
6470                default_bootup_tracer);
6471         default_bootup_tracer = NULL;
6472
6473         return 0;
6474 }
6475
6476 early_initcall(tracer_alloc_buffers);
6477 fs_initcall(tracer_init_debugfs);
6478 late_initcall(clear_boot_tracer);