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