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