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