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