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