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