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