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