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