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