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