]>
Commit | Line | Data |
---|---|---|
bc0c38d1 SR |
1 | /* |
2 | * ring buffer based function tracer | |
3 | * | |
4 | * Copyright (C) 2007-2008 Steven Rostedt <[email protected]> | |
5 | * Copyright (C) 2008 Ingo Molnar <[email protected]> | |
6 | * | |
7 | * Originally taken from the RT patch by: | |
8 | * Arnaldo Carvalho de Melo <[email protected]> | |
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/utsrelease.h> | |
15 | #include <linux/kallsyms.h> | |
16 | #include <linux/seq_file.h> | |
3f5a54e3 | 17 | #include <linux/notifier.h> |
bc0c38d1 | 18 | #include <linux/debugfs.h> |
4c11d7ae | 19 | #include <linux/pagemap.h> |
bc0c38d1 SR |
20 | #include <linux/hardirq.h> |
21 | #include <linux/linkage.h> | |
22 | #include <linux/uaccess.h> | |
23 | #include <linux/ftrace.h> | |
24 | #include <linux/module.h> | |
25 | #include <linux/percpu.h> | |
3f5a54e3 | 26 | #include <linux/kdebug.h> |
bc0c38d1 SR |
27 | #include <linux/ctype.h> |
28 | #include <linux/init.h> | |
2a2cc8f7 | 29 | #include <linux/poll.h> |
bc0c38d1 SR |
30 | #include <linux/gfp.h> |
31 | #include <linux/fs.h> | |
76094a2c | 32 | #include <linux/kprobes.h> |
b54d3de9 | 33 | #include <linux/seq_file.h> |
3eefae99 | 34 | #include <linux/writeback.h> |
bc0c38d1 | 35 | |
86387f7e | 36 | #include <linux/stacktrace.h> |
3928a8a2 | 37 | #include <linux/ring_buffer.h> |
21798a84 | 38 | #include <linux/irqflags.h> |
86387f7e | 39 | |
bc0c38d1 SR |
40 | #include "trace.h" |
41 | ||
3928a8a2 SR |
42 | #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE) |
43 | ||
bc0c38d1 SR |
44 | unsigned long __read_mostly tracing_max_latency = (cycle_t)ULONG_MAX; |
45 | unsigned long __read_mostly tracing_thresh; | |
46 | ||
adf9f195 FW |
47 | /* For tracers that don't implement custom flags */ |
48 | static struct tracer_opt dummy_tracer_opt[] = { | |
49 | { } | |
50 | }; | |
51 | ||
52 | static struct tracer_flags dummy_tracer_flags = { | |
53 | .val = 0, | |
54 | .opts = dummy_tracer_opt | |
55 | }; | |
56 | ||
57 | static int dummy_set_flag(u32 old_flags, u32 bit, int set) | |
58 | { | |
59 | return 0; | |
60 | } | |
0f048701 SR |
61 | |
62 | /* | |
63 | * Kill all tracing for good (never come back). | |
64 | * It is initialized to 1 but will turn to zero if the initialization | |
65 | * of the tracer is successful. But that is the only place that sets | |
66 | * this back to zero. | |
67 | */ | |
68 | int tracing_disabled = 1; | |
69 | ||
d769041f SR |
70 | static DEFINE_PER_CPU(local_t, ftrace_cpu_disabled); |
71 | ||
72 | static inline void ftrace_disable_cpu(void) | |
73 | { | |
74 | preempt_disable(); | |
75 | local_inc(&__get_cpu_var(ftrace_cpu_disabled)); | |
76 | } | |
77 | ||
78 | static inline void ftrace_enable_cpu(void) | |
79 | { | |
80 | local_dec(&__get_cpu_var(ftrace_cpu_disabled)); | |
81 | preempt_enable(); | |
82 | } | |
83 | ||
ab46428c SR |
84 | static cpumask_t __read_mostly tracing_buffer_mask; |
85 | ||
86 | #define for_each_tracing_cpu(cpu) \ | |
87 | for_each_cpu_mask(cpu, tracing_buffer_mask) | |
88 | ||
944ac425 SR |
89 | /* |
90 | * ftrace_dump_on_oops - variable to dump ftrace buffer on oops | |
91 | * | |
92 | * If there is an oops (or kernel panic) and the ftrace_dump_on_oops | |
93 | * is set, then ftrace_dump is called. This will output the contents | |
94 | * of the ftrace buffers to the console. This is very useful for | |
95 | * capturing traces that lead to crashes and outputing it to a | |
96 | * serial console. | |
97 | * | |
98 | * It is default off, but you can enable it with either specifying | |
99 | * "ftrace_dump_on_oops" in the kernel command line, or setting | |
100 | * /proc/sys/kernel/ftrace_dump_on_oops to true. | |
101 | */ | |
102 | int ftrace_dump_on_oops; | |
103 | ||
d9e54076 PZ |
104 | static int tracing_set_tracer(char *buf); |
105 | ||
106 | static int __init set_ftrace(char *str) | |
107 | { | |
108 | tracing_set_tracer(str); | |
109 | return 1; | |
110 | } | |
111 | __setup("ftrace", set_ftrace); | |
112 | ||
944ac425 SR |
113 | static int __init set_ftrace_dump_on_oops(char *str) |
114 | { | |
115 | ftrace_dump_on_oops = 1; | |
116 | return 1; | |
117 | } | |
118 | __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops); | |
119 | ||
72829bc3 | 120 | long |
bc0c38d1 SR |
121 | ns2usecs(cycle_t nsec) |
122 | { | |
123 | nsec += 500; | |
124 | do_div(nsec, 1000); | |
125 | return nsec; | |
126 | } | |
127 | ||
e309b41d | 128 | cycle_t ftrace_now(int cpu) |
750ed1a4 | 129 | { |
3928a8a2 SR |
130 | u64 ts = ring_buffer_time_stamp(cpu); |
131 | ring_buffer_normalize_time_stamp(cpu, &ts); | |
132 | return ts; | |
750ed1a4 IM |
133 | } |
134 | ||
4fcdae83 SR |
135 | /* |
136 | * The global_trace is the descriptor that holds the tracing | |
137 | * buffers for the live tracing. For each CPU, it contains | |
138 | * a link list of pages that will store trace entries. The | |
139 | * page descriptor of the pages in the memory is used to hold | |
140 | * the link list by linking the lru item in the page descriptor | |
141 | * to each of the pages in the buffer per CPU. | |
142 | * | |
143 | * For each active CPU there is a data field that holds the | |
144 | * pages for the buffer for that CPU. Each CPU has the same number | |
145 | * of pages allocated for its buffer. | |
146 | */ | |
bc0c38d1 SR |
147 | static struct trace_array global_trace; |
148 | ||
149 | static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu); | |
150 | ||
4fcdae83 SR |
151 | /* |
152 | * The max_tr is used to snapshot the global_trace when a maximum | |
153 | * latency is reached. Some tracers will use this to store a maximum | |
154 | * trace while it continues examining live traces. | |
155 | * | |
156 | * The buffers for the max_tr are set up the same as the global_trace. | |
157 | * When a snapshot is taken, the link list of the max_tr is swapped | |
158 | * with the link list of the global_trace and the buffers are reset for | |
159 | * the global_trace so the tracing can continue. | |
160 | */ | |
bc0c38d1 SR |
161 | static struct trace_array max_tr; |
162 | ||
163 | static DEFINE_PER_CPU(struct trace_array_cpu, max_data); | |
164 | ||
4fcdae83 | 165 | /* tracer_enabled is used to toggle activation of a tracer */ |
26994ead | 166 | static int tracer_enabled = 1; |
4fcdae83 | 167 | |
9036990d SR |
168 | /** |
169 | * tracing_is_enabled - return tracer_enabled status | |
170 | * | |
171 | * This function is used by other tracers to know the status | |
172 | * of the tracer_enabled flag. Tracers may use this function | |
173 | * to know if it should enable their features when starting | |
174 | * up. See irqsoff tracer for an example (start_irqsoff_tracer). | |
175 | */ | |
176 | int tracing_is_enabled(void) | |
177 | { | |
178 | return tracer_enabled; | |
179 | } | |
180 | ||
60bc0800 SR |
181 | /* function tracing enabled */ |
182 | int ftrace_function_enabled; | |
183 | ||
4fcdae83 | 184 | /* |
3928a8a2 SR |
185 | * trace_buf_size is the size in bytes that is allocated |
186 | * for a buffer. Note, the number of bytes is always rounded | |
187 | * to page size. | |
3f5a54e3 SR |
188 | * |
189 | * This number is purposely set to a low number of 16384. | |
190 | * If the dump on oops happens, it will be much appreciated | |
191 | * to not have to wait for all that output. Anyway this can be | |
192 | * boot time and run time configurable. | |
4fcdae83 | 193 | */ |
3928a8a2 | 194 | #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */ |
3f5a54e3 | 195 | |
3928a8a2 | 196 | static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT; |
bc0c38d1 | 197 | |
4fcdae83 | 198 | /* trace_types holds a link list of available tracers. */ |
bc0c38d1 | 199 | static struct tracer *trace_types __read_mostly; |
4fcdae83 SR |
200 | |
201 | /* current_trace points to the tracer that is currently active */ | |
bc0c38d1 | 202 | static struct tracer *current_trace __read_mostly; |
4fcdae83 SR |
203 | |
204 | /* | |
205 | * max_tracer_type_len is used to simplify the allocating of | |
206 | * buffers to read userspace tracer names. We keep track of | |
207 | * the longest tracer name registered. | |
208 | */ | |
bc0c38d1 SR |
209 | static int max_tracer_type_len; |
210 | ||
4fcdae83 SR |
211 | /* |
212 | * trace_types_lock is used to protect the trace_types list. | |
213 | * This lock is also used to keep user access serialized. | |
214 | * Accesses from userspace will grab this lock while userspace | |
215 | * activities happen inside the kernel. | |
216 | */ | |
bc0c38d1 | 217 | static DEFINE_MUTEX(trace_types_lock); |
4fcdae83 SR |
218 | |
219 | /* trace_wait is a waitqueue for tasks blocked on trace_poll */ | |
4e655519 IM |
220 | static DECLARE_WAIT_QUEUE_HEAD(trace_wait); |
221 | ||
ee6bce52 | 222 | /* trace_flags holds trace_options default values */ |
12ef7d44 SR |
223 | unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK | |
224 | TRACE_ITER_ANNOTATE; | |
4e655519 | 225 | |
4fcdae83 SR |
226 | /** |
227 | * trace_wake_up - wake up tasks waiting for trace input | |
228 | * | |
229 | * Simply wakes up any task that is blocked on the trace_wait | |
230 | * queue. These is used with trace_poll for tasks polling the trace. | |
231 | */ | |
4e655519 IM |
232 | void trace_wake_up(void) |
233 | { | |
017730c1 IM |
234 | /* |
235 | * The runqueue_is_locked() can fail, but this is the best we | |
236 | * have for now: | |
237 | */ | |
238 | if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked()) | |
4e655519 IM |
239 | wake_up(&trace_wait); |
240 | } | |
bc0c38d1 | 241 | |
3928a8a2 | 242 | static int __init set_buf_size(char *str) |
bc0c38d1 | 243 | { |
3928a8a2 | 244 | unsigned long buf_size; |
c6caeeb1 SR |
245 | int ret; |
246 | ||
bc0c38d1 SR |
247 | if (!str) |
248 | return 0; | |
3928a8a2 | 249 | ret = strict_strtoul(str, 0, &buf_size); |
c6caeeb1 | 250 | /* nr_entries can not be zero */ |
3928a8a2 | 251 | if (ret < 0 || buf_size == 0) |
c6caeeb1 | 252 | return 0; |
3928a8a2 | 253 | trace_buf_size = buf_size; |
bc0c38d1 SR |
254 | return 1; |
255 | } | |
3928a8a2 | 256 | __setup("trace_buf_size=", set_buf_size); |
bc0c38d1 | 257 | |
57f50be1 SR |
258 | unsigned long nsecs_to_usecs(unsigned long nsecs) |
259 | { | |
260 | return nsecs / 1000; | |
261 | } | |
262 | ||
4fcdae83 | 263 | /* These must match the bit postions in trace_iterator_flags */ |
bc0c38d1 SR |
264 | static const char *trace_options[] = { |
265 | "print-parent", | |
266 | "sym-offset", | |
267 | "sym-addr", | |
268 | "verbose", | |
f9896bf3 | 269 | "raw", |
5e3ca0ec | 270 | "hex", |
cb0f12aa | 271 | "bin", |
2a2cc8f7 | 272 | "block", |
86387f7e | 273 | "stacktrace", |
4ac3ba41 | 274 | "sched-tree", |
f09ce573 | 275 | "ftrace_printk", |
b2a866f9 | 276 | "ftrace_preempt", |
9f029e83 | 277 | "branch", |
12ef7d44 | 278 | "annotate", |
02b67518 | 279 | "userstacktrace", |
b54d3de9 | 280 | "sym-userobj", |
bc0c38d1 SR |
281 | NULL |
282 | }; | |
283 | ||
4fcdae83 SR |
284 | /* |
285 | * ftrace_max_lock is used to protect the swapping of buffers | |
286 | * when taking a max snapshot. The buffers themselves are | |
287 | * protected by per_cpu spinlocks. But the action of the swap | |
288 | * needs its own lock. | |
289 | * | |
290 | * This is defined as a raw_spinlock_t in order to help | |
291 | * with performance when lockdep debugging is enabled. | |
292 | */ | |
92205c23 SR |
293 | static raw_spinlock_t ftrace_max_lock = |
294 | (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED; | |
bc0c38d1 SR |
295 | |
296 | /* | |
297 | * Copy the new maximum trace into the separate maximum-trace | |
298 | * structure. (this way the maximum trace is permanently saved, | |
299 | * for later retrieval via /debugfs/tracing/latency_trace) | |
300 | */ | |
e309b41d | 301 | static void |
bc0c38d1 SR |
302 | __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu) |
303 | { | |
304 | struct trace_array_cpu *data = tr->data[cpu]; | |
305 | ||
306 | max_tr.cpu = cpu; | |
307 | max_tr.time_start = data->preempt_timestamp; | |
308 | ||
309 | data = max_tr.data[cpu]; | |
310 | data->saved_latency = tracing_max_latency; | |
311 | ||
312 | memcpy(data->comm, tsk->comm, TASK_COMM_LEN); | |
313 | data->pid = tsk->pid; | |
314 | data->uid = tsk->uid; | |
315 | data->nice = tsk->static_prio - 20 - MAX_RT_PRIO; | |
316 | data->policy = tsk->policy; | |
317 | data->rt_priority = tsk->rt_priority; | |
318 | ||
319 | /* record this tasks comm */ | |
320 | tracing_record_cmdline(current); | |
321 | } | |
322 | ||
4fcdae83 SR |
323 | /** |
324 | * trace_seq_printf - sequence printing of trace information | |
325 | * @s: trace sequence descriptor | |
326 | * @fmt: printf format string | |
327 | * | |
328 | * The tracer may use either sequence operations or its own | |
329 | * copy to user routines. To simplify formating of a trace | |
330 | * trace_seq_printf is used to store strings into a special | |
331 | * buffer (@s). Then the output may be either used by | |
332 | * the sequencer or pulled into another buffer. | |
333 | */ | |
72829bc3 | 334 | int |
214023c3 SR |
335 | trace_seq_printf(struct trace_seq *s, const char *fmt, ...) |
336 | { | |
337 | int len = (PAGE_SIZE - 1) - s->len; | |
338 | va_list ap; | |
b3806b43 | 339 | int ret; |
214023c3 SR |
340 | |
341 | if (!len) | |
342 | return 0; | |
343 | ||
344 | va_start(ap, fmt); | |
b3806b43 | 345 | ret = vsnprintf(s->buffer + s->len, len, fmt, ap); |
214023c3 SR |
346 | va_end(ap); |
347 | ||
b3806b43 | 348 | /* If we can't write it all, don't bother writing anything */ |
72829bc3 | 349 | if (ret >= len) |
b3806b43 SR |
350 | return 0; |
351 | ||
352 | s->len += ret; | |
214023c3 SR |
353 | |
354 | return len; | |
355 | } | |
356 | ||
4fcdae83 SR |
357 | /** |
358 | * trace_seq_puts - trace sequence printing of simple string | |
359 | * @s: trace sequence descriptor | |
360 | * @str: simple string to record | |
361 | * | |
362 | * The tracer may use either the sequence operations or its own | |
363 | * copy to user routines. This function records a simple string | |
364 | * into a special buffer (@s) for later retrieval by a sequencer | |
365 | * or other mechanism. | |
366 | */ | |
e309b41d | 367 | static int |
214023c3 SR |
368 | trace_seq_puts(struct trace_seq *s, const char *str) |
369 | { | |
370 | int len = strlen(str); | |
371 | ||
372 | if (len > ((PAGE_SIZE - 1) - s->len)) | |
b3806b43 | 373 | return 0; |
214023c3 SR |
374 | |
375 | memcpy(s->buffer + s->len, str, len); | |
376 | s->len += len; | |
377 | ||
378 | return len; | |
379 | } | |
380 | ||
e309b41d | 381 | static int |
214023c3 SR |
382 | trace_seq_putc(struct trace_seq *s, unsigned char c) |
383 | { | |
384 | if (s->len >= (PAGE_SIZE - 1)) | |
385 | return 0; | |
386 | ||
387 | s->buffer[s->len++] = c; | |
388 | ||
389 | return 1; | |
390 | } | |
391 | ||
e309b41d | 392 | static int |
cb0f12aa IM |
393 | trace_seq_putmem(struct trace_seq *s, void *mem, size_t len) |
394 | { | |
395 | if (len > ((PAGE_SIZE - 1) - s->len)) | |
396 | return 0; | |
397 | ||
398 | memcpy(s->buffer + s->len, mem, len); | |
399 | s->len += len; | |
400 | ||
401 | return len; | |
402 | } | |
403 | ||
ad0a3b68 HH |
404 | #define MAX_MEMHEX_BYTES 8 |
405 | #define HEX_CHARS (MAX_MEMHEX_BYTES*2 + 1) | |
5e3ca0ec | 406 | |
e309b41d | 407 | static int |
5e3ca0ec IM |
408 | trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len) |
409 | { | |
410 | unsigned char hex[HEX_CHARS]; | |
93dcc6ea | 411 | unsigned char *data = mem; |
5e3ca0ec IM |
412 | int i, j; |
413 | ||
5e3ca0ec IM |
414 | #ifdef __BIG_ENDIAN |
415 | for (i = 0, j = 0; i < len; i++) { | |
416 | #else | |
417 | for (i = len-1, j = 0; i >= 0; i--) { | |
418 | #endif | |
2fbc4749 HH |
419 | hex[j++] = hex_asc_hi(data[i]); |
420 | hex[j++] = hex_asc_lo(data[i]); | |
5e3ca0ec | 421 | } |
93dcc6ea | 422 | hex[j++] = ' '; |
5e3ca0ec IM |
423 | |
424 | return trace_seq_putmem(s, hex, j); | |
425 | } | |
426 | ||
b54d3de9 TE |
427 | static int |
428 | trace_seq_path(struct trace_seq *s, struct path *path) | |
429 | { | |
430 | unsigned char *p; | |
431 | ||
432 | if (s->len >= (PAGE_SIZE - 1)) | |
433 | return 0; | |
434 | p = d_path(path, s->buffer + s->len, PAGE_SIZE - s->len); | |
435 | if (!IS_ERR(p)) { | |
436 | p = mangle_path(s->buffer + s->len, p, "\n"); | |
437 | if (p) { | |
438 | s->len = p - s->buffer; | |
439 | return 1; | |
440 | } | |
441 | } else { | |
442 | s->buffer[s->len++] = '?'; | |
443 | return 1; | |
444 | } | |
445 | ||
446 | return 0; | |
447 | } | |
448 | ||
e309b41d | 449 | static void |
214023c3 SR |
450 | trace_seq_reset(struct trace_seq *s) |
451 | { | |
452 | s->len = 0; | |
6c6c2796 PP |
453 | s->readpos = 0; |
454 | } | |
455 | ||
456 | ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt) | |
457 | { | |
458 | int len; | |
459 | int ret; | |
460 | ||
461 | if (s->len <= s->readpos) | |
462 | return -EBUSY; | |
463 | ||
464 | len = s->len - s->readpos; | |
465 | if (cnt > len) | |
466 | cnt = len; | |
467 | ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt); | |
468 | if (ret) | |
469 | return -EFAULT; | |
470 | ||
471 | s->readpos += len; | |
472 | return cnt; | |
214023c3 SR |
473 | } |
474 | ||
e309b41d | 475 | static void |
214023c3 SR |
476 | trace_print_seq(struct seq_file *m, struct trace_seq *s) |
477 | { | |
478 | int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len; | |
479 | ||
480 | s->buffer[len] = 0; | |
481 | seq_puts(m, s->buffer); | |
482 | ||
483 | trace_seq_reset(s); | |
484 | } | |
485 | ||
4fcdae83 SR |
486 | /** |
487 | * update_max_tr - snapshot all trace buffers from global_trace to max_tr | |
488 | * @tr: tracer | |
489 | * @tsk: the task with the latency | |
490 | * @cpu: The cpu that initiated the trace. | |
491 | * | |
492 | * Flip the buffers between the @tr and the max_tr and record information | |
493 | * about which task was the cause of this latency. | |
494 | */ | |
e309b41d | 495 | void |
bc0c38d1 SR |
496 | update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu) |
497 | { | |
3928a8a2 | 498 | struct ring_buffer *buf = tr->buffer; |
bc0c38d1 | 499 | |
4c11d7ae | 500 | WARN_ON_ONCE(!irqs_disabled()); |
92205c23 | 501 | __raw_spin_lock(&ftrace_max_lock); |
3928a8a2 SR |
502 | |
503 | tr->buffer = max_tr.buffer; | |
504 | max_tr.buffer = buf; | |
505 | ||
d769041f | 506 | ftrace_disable_cpu(); |
3928a8a2 | 507 | ring_buffer_reset(tr->buffer); |
d769041f | 508 | ftrace_enable_cpu(); |
bc0c38d1 SR |
509 | |
510 | __update_max_tr(tr, tsk, cpu); | |
92205c23 | 511 | __raw_spin_unlock(&ftrace_max_lock); |
bc0c38d1 SR |
512 | } |
513 | ||
514 | /** | |
515 | * update_max_tr_single - only copy one trace over, and reset the rest | |
516 | * @tr - tracer | |
517 | * @tsk - task with the latency | |
518 | * @cpu - the cpu of the buffer to copy. | |
4fcdae83 SR |
519 | * |
520 | * Flip the trace of a single CPU buffer between the @tr and the max_tr. | |
bc0c38d1 | 521 | */ |
e309b41d | 522 | void |
bc0c38d1 SR |
523 | update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu) |
524 | { | |
3928a8a2 | 525 | int ret; |
bc0c38d1 | 526 | |
4c11d7ae | 527 | WARN_ON_ONCE(!irqs_disabled()); |
92205c23 | 528 | __raw_spin_lock(&ftrace_max_lock); |
bc0c38d1 | 529 | |
d769041f SR |
530 | ftrace_disable_cpu(); |
531 | ||
3928a8a2 SR |
532 | ring_buffer_reset(max_tr.buffer); |
533 | ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu); | |
534 | ||
d769041f SR |
535 | ftrace_enable_cpu(); |
536 | ||
3928a8a2 | 537 | WARN_ON_ONCE(ret); |
bc0c38d1 SR |
538 | |
539 | __update_max_tr(tr, tsk, cpu); | |
92205c23 | 540 | __raw_spin_unlock(&ftrace_max_lock); |
bc0c38d1 SR |
541 | } |
542 | ||
4fcdae83 SR |
543 | /** |
544 | * register_tracer - register a tracer with the ftrace system. | |
545 | * @type - the plugin for the tracer | |
546 | * | |
547 | * Register a new plugin tracer. | |
548 | */ | |
bc0c38d1 SR |
549 | int register_tracer(struct tracer *type) |
550 | { | |
551 | struct tracer *t; | |
552 | int len; | |
553 | int ret = 0; | |
554 | ||
555 | if (!type->name) { | |
556 | pr_info("Tracer must have a name\n"); | |
557 | return -1; | |
558 | } | |
559 | ||
86fa2f60 IM |
560 | /* |
561 | * When this gets called we hold the BKL which means that | |
562 | * preemption is disabled. Various trace selftests however | |
563 | * need to disable and enable preemption for successful tests. | |
564 | * So we drop the BKL here and grab it after the tests again. | |
565 | */ | |
566 | unlock_kernel(); | |
bc0c38d1 | 567 | mutex_lock(&trace_types_lock); |
86fa2f60 | 568 | |
bc0c38d1 SR |
569 | for (t = trace_types; t; t = t->next) { |
570 | if (strcmp(type->name, t->name) == 0) { | |
571 | /* already found */ | |
572 | pr_info("Trace %s already registered\n", | |
573 | type->name); | |
574 | ret = -1; | |
575 | goto out; | |
576 | } | |
577 | } | |
578 | ||
adf9f195 FW |
579 | if (!type->set_flag) |
580 | type->set_flag = &dummy_set_flag; | |
581 | if (!type->flags) | |
582 | type->flags = &dummy_tracer_flags; | |
583 | else | |
584 | if (!type->flags->opts) | |
585 | type->flags->opts = dummy_tracer_opt; | |
586 | ||
60a11774 SR |
587 | #ifdef CONFIG_FTRACE_STARTUP_TEST |
588 | if (type->selftest) { | |
589 | struct tracer *saved_tracer = current_trace; | |
60a11774 | 590 | struct trace_array *tr = &global_trace; |
60a11774 SR |
591 | int i; |
592 | /* | |
593 | * Run a selftest on this tracer. | |
594 | * Here we reset the trace buffer, and set the current | |
595 | * tracer to be this tracer. The tracer can then run some | |
596 | * internal tracing to verify that everything is in order. | |
597 | * If we fail, we do not register this tracer. | |
598 | */ | |
86fa2f60 | 599 | for_each_tracing_cpu(i) |
3928a8a2 | 600 | tracing_reset(tr, i); |
86fa2f60 | 601 | |
60a11774 | 602 | current_trace = type; |
60a11774 SR |
603 | /* the test is responsible for initializing and enabling */ |
604 | pr_info("Testing tracer %s: ", type->name); | |
605 | ret = type->selftest(type, tr); | |
606 | /* the test is responsible for resetting too */ | |
607 | current_trace = saved_tracer; | |
60a11774 SR |
608 | if (ret) { |
609 | printk(KERN_CONT "FAILED!\n"); | |
610 | goto out; | |
611 | } | |
1d4db00a | 612 | /* Only reset on passing, to avoid touching corrupted buffers */ |
86fa2f60 | 613 | for_each_tracing_cpu(i) |
3928a8a2 | 614 | tracing_reset(tr, i); |
86fa2f60 | 615 | |
60a11774 SR |
616 | printk(KERN_CONT "PASSED\n"); |
617 | } | |
618 | #endif | |
619 | ||
bc0c38d1 SR |
620 | type->next = trace_types; |
621 | trace_types = type; | |
622 | len = strlen(type->name); | |
623 | if (len > max_tracer_type_len) | |
624 | max_tracer_type_len = len; | |
60a11774 | 625 | |
bc0c38d1 SR |
626 | out: |
627 | mutex_unlock(&trace_types_lock); | |
86fa2f60 | 628 | lock_kernel(); |
bc0c38d1 SR |
629 | |
630 | return ret; | |
631 | } | |
632 | ||
633 | void unregister_tracer(struct tracer *type) | |
634 | { | |
635 | struct tracer **t; | |
636 | int len; | |
637 | ||
638 | mutex_lock(&trace_types_lock); | |
639 | for (t = &trace_types; *t; t = &(*t)->next) { | |
640 | if (*t == type) | |
641 | goto found; | |
642 | } | |
643 | pr_info("Trace %s not registered\n", type->name); | |
644 | goto out; | |
645 | ||
646 | found: | |
647 | *t = (*t)->next; | |
648 | if (strlen(type->name) != max_tracer_type_len) | |
649 | goto out; | |
650 | ||
651 | max_tracer_type_len = 0; | |
652 | for (t = &trace_types; *t; t = &(*t)->next) { | |
653 | len = strlen((*t)->name); | |
654 | if (len > max_tracer_type_len) | |
655 | max_tracer_type_len = len; | |
656 | } | |
657 | out: | |
658 | mutex_unlock(&trace_types_lock); | |
659 | } | |
660 | ||
3928a8a2 | 661 | void tracing_reset(struct trace_array *tr, int cpu) |
bc0c38d1 | 662 | { |
d769041f | 663 | ftrace_disable_cpu(); |
3928a8a2 | 664 | ring_buffer_reset_cpu(tr->buffer, cpu); |
d769041f | 665 | ftrace_enable_cpu(); |
bc0c38d1 SR |
666 | } |
667 | ||
bc0c38d1 SR |
668 | #define SAVED_CMDLINES 128 |
669 | static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1]; | |
670 | static unsigned map_cmdline_to_pid[SAVED_CMDLINES]; | |
671 | static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN]; | |
672 | static int cmdline_idx; | |
673 | static DEFINE_SPINLOCK(trace_cmdline_lock); | |
25b0b44a | 674 | |
25b0b44a SR |
675 | /* temporary disable recording */ |
676 | atomic_t trace_record_cmdline_disabled __read_mostly; | |
bc0c38d1 SR |
677 | |
678 | static void trace_init_cmdlines(void) | |
679 | { | |
680 | memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline)); | |
681 | memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid)); | |
682 | cmdline_idx = 0; | |
683 | } | |
684 | ||
0f048701 SR |
685 | static int trace_stop_count; |
686 | static DEFINE_SPINLOCK(tracing_start_lock); | |
687 | ||
69bb54ec SR |
688 | /** |
689 | * ftrace_off_permanent - disable all ftrace code permanently | |
690 | * | |
691 | * This should only be called when a serious anomally has | |
692 | * been detected. This will turn off the function tracing, | |
693 | * ring buffers, and other tracing utilites. It takes no | |
694 | * locks and can be called from any context. | |
695 | */ | |
696 | void ftrace_off_permanent(void) | |
697 | { | |
698 | tracing_disabled = 1; | |
699 | ftrace_stop(); | |
700 | tracing_off_permanent(); | |
701 | } | |
702 | ||
0f048701 SR |
703 | /** |
704 | * tracing_start - quick start of the tracer | |
705 | * | |
706 | * If tracing is enabled but was stopped by tracing_stop, | |
707 | * this will start the tracer back up. | |
708 | */ | |
709 | void tracing_start(void) | |
710 | { | |
711 | struct ring_buffer *buffer; | |
712 | unsigned long flags; | |
713 | ||
714 | if (tracing_disabled) | |
715 | return; | |
716 | ||
717 | spin_lock_irqsave(&tracing_start_lock, flags); | |
718 | if (--trace_stop_count) | |
719 | goto out; | |
720 | ||
721 | if (trace_stop_count < 0) { | |
722 | /* Someone screwed up their debugging */ | |
723 | WARN_ON_ONCE(1); | |
724 | trace_stop_count = 0; | |
725 | goto out; | |
726 | } | |
727 | ||
728 | ||
729 | buffer = global_trace.buffer; | |
730 | if (buffer) | |
731 | ring_buffer_record_enable(buffer); | |
732 | ||
733 | buffer = max_tr.buffer; | |
734 | if (buffer) | |
735 | ring_buffer_record_enable(buffer); | |
736 | ||
737 | ftrace_start(); | |
738 | out: | |
739 | spin_unlock_irqrestore(&tracing_start_lock, flags); | |
740 | } | |
741 | ||
742 | /** | |
743 | * tracing_stop - quick stop of the tracer | |
744 | * | |
745 | * Light weight way to stop tracing. Use in conjunction with | |
746 | * tracing_start. | |
747 | */ | |
748 | void tracing_stop(void) | |
749 | { | |
750 | struct ring_buffer *buffer; | |
751 | unsigned long flags; | |
752 | ||
753 | ftrace_stop(); | |
754 | spin_lock_irqsave(&tracing_start_lock, flags); | |
755 | if (trace_stop_count++) | |
756 | goto out; | |
757 | ||
758 | buffer = global_trace.buffer; | |
759 | if (buffer) | |
760 | ring_buffer_record_disable(buffer); | |
761 | ||
762 | buffer = max_tr.buffer; | |
763 | if (buffer) | |
764 | ring_buffer_record_disable(buffer); | |
765 | ||
766 | out: | |
767 | spin_unlock_irqrestore(&tracing_start_lock, flags); | |
768 | } | |
769 | ||
e309b41d | 770 | void trace_stop_cmdline_recording(void); |
bc0c38d1 | 771 | |
e309b41d | 772 | static void trace_save_cmdline(struct task_struct *tsk) |
bc0c38d1 SR |
773 | { |
774 | unsigned map; | |
775 | unsigned idx; | |
776 | ||
777 | if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT)) | |
778 | return; | |
779 | ||
780 | /* | |
781 | * It's not the end of the world if we don't get | |
782 | * the lock, but we also don't want to spin | |
783 | * nor do we want to disable interrupts, | |
784 | * so if we miss here, then better luck next time. | |
785 | */ | |
786 | if (!spin_trylock(&trace_cmdline_lock)) | |
787 | return; | |
788 | ||
789 | idx = map_pid_to_cmdline[tsk->pid]; | |
790 | if (idx >= SAVED_CMDLINES) { | |
791 | idx = (cmdline_idx + 1) % SAVED_CMDLINES; | |
792 | ||
793 | map = map_cmdline_to_pid[idx]; | |
794 | if (map <= PID_MAX_DEFAULT) | |
795 | map_pid_to_cmdline[map] = (unsigned)-1; | |
796 | ||
797 | map_pid_to_cmdline[tsk->pid] = idx; | |
798 | ||
799 | cmdline_idx = idx; | |
800 | } | |
801 | ||
802 | memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN); | |
803 | ||
804 | spin_unlock(&trace_cmdline_lock); | |
805 | } | |
806 | ||
660c7f9b | 807 | char *trace_find_cmdline(int pid) |
bc0c38d1 SR |
808 | { |
809 | char *cmdline = "<...>"; | |
810 | unsigned map; | |
811 | ||
812 | if (!pid) | |
813 | return "<idle>"; | |
814 | ||
815 | if (pid > PID_MAX_DEFAULT) | |
816 | goto out; | |
817 | ||
818 | map = map_pid_to_cmdline[pid]; | |
819 | if (map >= SAVED_CMDLINES) | |
820 | goto out; | |
821 | ||
822 | cmdline = saved_cmdlines[map]; | |
823 | ||
824 | out: | |
825 | return cmdline; | |
826 | } | |
827 | ||
e309b41d | 828 | void tracing_record_cmdline(struct task_struct *tsk) |
bc0c38d1 SR |
829 | { |
830 | if (atomic_read(&trace_record_cmdline_disabled)) | |
831 | return; | |
832 | ||
833 | trace_save_cmdline(tsk); | |
834 | } | |
835 | ||
45dcd8b8 | 836 | void |
38697053 SR |
837 | tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags, |
838 | int pc) | |
bc0c38d1 SR |
839 | { |
840 | struct task_struct *tsk = current; | |
bc0c38d1 | 841 | |
777e208d SR |
842 | entry->preempt_count = pc & 0xff; |
843 | entry->pid = (tsk) ? tsk->pid : 0; | |
b54d3de9 | 844 | entry->tgid = (tsk) ? tsk->tgid : 0; |
777e208d | 845 | entry->flags = |
9244489a | 846 | #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT |
2e2ca155 | 847 | (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) | |
9244489a SR |
848 | #else |
849 | TRACE_FLAG_IRQS_NOSUPPORT | | |
850 | #endif | |
bc0c38d1 SR |
851 | ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) | |
852 | ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) | | |
853 | (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0); | |
854 | } | |
855 | ||
e309b41d | 856 | void |
6fb44b71 | 857 | trace_function(struct trace_array *tr, struct trace_array_cpu *data, |
38697053 SR |
858 | unsigned long ip, unsigned long parent_ip, unsigned long flags, |
859 | int pc) | |
bc0c38d1 | 860 | { |
3928a8a2 | 861 | struct ring_buffer_event *event; |
777e208d | 862 | struct ftrace_entry *entry; |
dcb6308f | 863 | unsigned long irq_flags; |
bc0c38d1 | 864 | |
d769041f SR |
865 | /* If we are reading the ring buffer, don't trace */ |
866 | if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled)))) | |
867 | return; | |
868 | ||
3928a8a2 SR |
869 | event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry), |
870 | &irq_flags); | |
871 | if (!event) | |
872 | return; | |
873 | entry = ring_buffer_event_data(event); | |
38697053 | 874 | tracing_generic_entry_update(&entry->ent, flags, pc); |
777e208d SR |
875 | entry->ent.type = TRACE_FN; |
876 | entry->ip = ip; | |
877 | entry->parent_ip = parent_ip; | |
3928a8a2 | 878 | ring_buffer_unlock_commit(tr->buffer, event, irq_flags); |
bc0c38d1 SR |
879 | } |
880 | ||
fb52607a | 881 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
287b6e68 FW |
882 | static void __trace_graph_entry(struct trace_array *tr, |
883 | struct trace_array_cpu *data, | |
884 | struct ftrace_graph_ent *trace, | |
885 | unsigned long flags, | |
886 | int pc) | |
887 | { | |
888 | struct ring_buffer_event *event; | |
889 | struct ftrace_graph_ent_entry *entry; | |
890 | unsigned long irq_flags; | |
891 | ||
892 | if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled)))) | |
893 | return; | |
894 | ||
895 | event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry), | |
896 | &irq_flags); | |
897 | if (!event) | |
898 | return; | |
899 | entry = ring_buffer_event_data(event); | |
900 | tracing_generic_entry_update(&entry->ent, flags, pc); | |
901 | entry->ent.type = TRACE_GRAPH_ENT; | |
902 | entry->graph_ent = *trace; | |
903 | ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags); | |
904 | } | |
905 | ||
906 | static void __trace_graph_return(struct trace_array *tr, | |
15e6cb36 | 907 | struct trace_array_cpu *data, |
fb52607a | 908 | struct ftrace_graph_ret *trace, |
15e6cb36 FW |
909 | unsigned long flags, |
910 | int pc) | |
911 | { | |
912 | struct ring_buffer_event *event; | |
287b6e68 | 913 | struct ftrace_graph_ret_entry *entry; |
15e6cb36 FW |
914 | unsigned long irq_flags; |
915 | ||
916 | if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled)))) | |
917 | return; | |
918 | ||
919 | event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry), | |
920 | &irq_flags); | |
921 | if (!event) | |
922 | return; | |
923 | entry = ring_buffer_event_data(event); | |
924 | tracing_generic_entry_update(&entry->ent, flags, pc); | |
287b6e68 FW |
925 | entry->ent.type = TRACE_GRAPH_RET; |
926 | entry->ret = *trace; | |
15e6cb36 FW |
927 | ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags); |
928 | } | |
929 | #endif | |
930 | ||
e309b41d | 931 | void |
2e0f5761 | 932 | ftrace(struct trace_array *tr, struct trace_array_cpu *data, |
38697053 SR |
933 | unsigned long ip, unsigned long parent_ip, unsigned long flags, |
934 | int pc) | |
2e0f5761 IM |
935 | { |
936 | if (likely(!atomic_read(&data->disabled))) | |
38697053 | 937 | trace_function(tr, data, ip, parent_ip, flags, pc); |
2e0f5761 IM |
938 | } |
939 | ||
38697053 SR |
940 | static void ftrace_trace_stack(struct trace_array *tr, |
941 | struct trace_array_cpu *data, | |
942 | unsigned long flags, | |
943 | int skip, int pc) | |
86387f7e | 944 | { |
c2c80529 | 945 | #ifdef CONFIG_STACKTRACE |
3928a8a2 | 946 | struct ring_buffer_event *event; |
777e208d | 947 | struct stack_entry *entry; |
86387f7e | 948 | struct stack_trace trace; |
3928a8a2 | 949 | unsigned long irq_flags; |
86387f7e IM |
950 | |
951 | if (!(trace_flags & TRACE_ITER_STACKTRACE)) | |
952 | return; | |
953 | ||
3928a8a2 SR |
954 | event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry), |
955 | &irq_flags); | |
956 | if (!event) | |
957 | return; | |
958 | entry = ring_buffer_event_data(event); | |
38697053 | 959 | tracing_generic_entry_update(&entry->ent, flags, pc); |
777e208d | 960 | entry->ent.type = TRACE_STACK; |
86387f7e | 961 | |
777e208d | 962 | memset(&entry->caller, 0, sizeof(entry->caller)); |
86387f7e IM |
963 | |
964 | trace.nr_entries = 0; | |
965 | trace.max_entries = FTRACE_STACK_ENTRIES; | |
966 | trace.skip = skip; | |
777e208d | 967 | trace.entries = entry->caller; |
86387f7e IM |
968 | |
969 | save_stack_trace(&trace); | |
3928a8a2 | 970 | ring_buffer_unlock_commit(tr->buffer, event, irq_flags); |
c2c80529 | 971 | #endif |
f0a920d5 IM |
972 | } |
973 | ||
38697053 SR |
974 | void __trace_stack(struct trace_array *tr, |
975 | struct trace_array_cpu *data, | |
976 | unsigned long flags, | |
977 | int skip) | |
978 | { | |
979 | ftrace_trace_stack(tr, data, flags, skip, preempt_count()); | |
980 | } | |
981 | ||
02b67518 TE |
982 | static void ftrace_trace_userstack(struct trace_array *tr, |
983 | struct trace_array_cpu *data, | |
984 | unsigned long flags, int pc) | |
985 | { | |
c7425acb | 986 | #ifdef CONFIG_STACKTRACE |
8d7c6a96 | 987 | struct ring_buffer_event *event; |
02b67518 TE |
988 | struct userstack_entry *entry; |
989 | struct stack_trace trace; | |
02b67518 TE |
990 | unsigned long irq_flags; |
991 | ||
992 | if (!(trace_flags & TRACE_ITER_USERSTACKTRACE)) | |
993 | return; | |
994 | ||
995 | event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry), | |
996 | &irq_flags); | |
997 | if (!event) | |
998 | return; | |
999 | entry = ring_buffer_event_data(event); | |
1000 | tracing_generic_entry_update(&entry->ent, flags, pc); | |
1001 | entry->ent.type = TRACE_USER_STACK; | |
1002 | ||
1003 | memset(&entry->caller, 0, sizeof(entry->caller)); | |
1004 | ||
1005 | trace.nr_entries = 0; | |
1006 | trace.max_entries = FTRACE_STACK_ENTRIES; | |
1007 | trace.skip = 0; | |
1008 | trace.entries = entry->caller; | |
1009 | ||
1010 | save_stack_trace_user(&trace); | |
1011 | ring_buffer_unlock_commit(tr->buffer, event, irq_flags); | |
c7425acb | 1012 | #endif |
02b67518 TE |
1013 | } |
1014 | ||
1015 | void __trace_userstack(struct trace_array *tr, | |
1016 | struct trace_array_cpu *data, | |
1017 | unsigned long flags) | |
1018 | { | |
1019 | ftrace_trace_userstack(tr, data, flags, preempt_count()); | |
1020 | } | |
1021 | ||
38697053 SR |
1022 | static void |
1023 | ftrace_trace_special(void *__tr, void *__data, | |
1024 | unsigned long arg1, unsigned long arg2, unsigned long arg3, | |
1025 | int pc) | |
a4feb834 | 1026 | { |
3928a8a2 | 1027 | struct ring_buffer_event *event; |
a4feb834 IM |
1028 | struct trace_array_cpu *data = __data; |
1029 | struct trace_array *tr = __tr; | |
777e208d | 1030 | struct special_entry *entry; |
a4feb834 IM |
1031 | unsigned long irq_flags; |
1032 | ||
3928a8a2 SR |
1033 | event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry), |
1034 | &irq_flags); | |
1035 | if (!event) | |
1036 | return; | |
1037 | entry = ring_buffer_event_data(event); | |
38697053 | 1038 | tracing_generic_entry_update(&entry->ent, 0, pc); |
777e208d SR |
1039 | entry->ent.type = TRACE_SPECIAL; |
1040 | entry->arg1 = arg1; | |
1041 | entry->arg2 = arg2; | |
1042 | entry->arg3 = arg3; | |
3928a8a2 | 1043 | ring_buffer_unlock_commit(tr->buffer, event, irq_flags); |
38697053 | 1044 | ftrace_trace_stack(tr, data, irq_flags, 4, pc); |
02b67518 | 1045 | ftrace_trace_userstack(tr, data, irq_flags, pc); |
a4feb834 IM |
1046 | |
1047 | trace_wake_up(); | |
1048 | } | |
1049 | ||
38697053 SR |
1050 | void |
1051 | __trace_special(void *__tr, void *__data, | |
1052 | unsigned long arg1, unsigned long arg2, unsigned long arg3) | |
1053 | { | |
1054 | ftrace_trace_special(__tr, __data, arg1, arg2, arg3, preempt_count()); | |
1055 | } | |
1056 | ||
e309b41d | 1057 | void |
bc0c38d1 SR |
1058 | tracing_sched_switch_trace(struct trace_array *tr, |
1059 | struct trace_array_cpu *data, | |
86387f7e IM |
1060 | struct task_struct *prev, |
1061 | struct task_struct *next, | |
38697053 | 1062 | unsigned long flags, int pc) |
bc0c38d1 | 1063 | { |
3928a8a2 | 1064 | struct ring_buffer_event *event; |
777e208d | 1065 | struct ctx_switch_entry *entry; |
dcb6308f | 1066 | unsigned long irq_flags; |
bc0c38d1 | 1067 | |
3928a8a2 SR |
1068 | event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry), |
1069 | &irq_flags); | |
1070 | if (!event) | |
1071 | return; | |
1072 | entry = ring_buffer_event_data(event); | |
38697053 | 1073 | tracing_generic_entry_update(&entry->ent, flags, pc); |
777e208d SR |
1074 | entry->ent.type = TRACE_CTX; |
1075 | entry->prev_pid = prev->pid; | |
1076 | entry->prev_prio = prev->prio; | |
1077 | entry->prev_state = prev->state; | |
1078 | entry->next_pid = next->pid; | |
1079 | entry->next_prio = next->prio; | |
1080 | entry->next_state = next->state; | |
1081 | entry->next_cpu = task_cpu(next); | |
3928a8a2 | 1082 | ring_buffer_unlock_commit(tr->buffer, event, irq_flags); |
38697053 | 1083 | ftrace_trace_stack(tr, data, flags, 5, pc); |
02b67518 | 1084 | ftrace_trace_userstack(tr, data, flags, pc); |
bc0c38d1 SR |
1085 | } |
1086 | ||
57422797 IM |
1087 | void |
1088 | tracing_sched_wakeup_trace(struct trace_array *tr, | |
1089 | struct trace_array_cpu *data, | |
86387f7e IM |
1090 | struct task_struct *wakee, |
1091 | struct task_struct *curr, | |
38697053 | 1092 | unsigned long flags, int pc) |
57422797 | 1093 | { |
3928a8a2 | 1094 | struct ring_buffer_event *event; |
777e208d | 1095 | struct ctx_switch_entry *entry; |
57422797 IM |
1096 | unsigned long irq_flags; |
1097 | ||
3928a8a2 SR |
1098 | event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry), |
1099 | &irq_flags); | |
1100 | if (!event) | |
1101 | return; | |
1102 | entry = ring_buffer_event_data(event); | |
38697053 | 1103 | tracing_generic_entry_update(&entry->ent, flags, pc); |
777e208d SR |
1104 | entry->ent.type = TRACE_WAKE; |
1105 | entry->prev_pid = curr->pid; | |
1106 | entry->prev_prio = curr->prio; | |
1107 | entry->prev_state = curr->state; | |
1108 | entry->next_pid = wakee->pid; | |
1109 | entry->next_prio = wakee->prio; | |
1110 | entry->next_state = wakee->state; | |
1111 | entry->next_cpu = task_cpu(wakee); | |
3928a8a2 | 1112 | ring_buffer_unlock_commit(tr->buffer, event, irq_flags); |
38697053 | 1113 | ftrace_trace_stack(tr, data, flags, 6, pc); |
02b67518 | 1114 | ftrace_trace_userstack(tr, data, flags, pc); |
017730c1 IM |
1115 | |
1116 | trace_wake_up(); | |
57422797 IM |
1117 | } |
1118 | ||
4902f884 SR |
1119 | void |
1120 | ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) | |
1121 | { | |
1122 | struct trace_array *tr = &global_trace; | |
1123 | struct trace_array_cpu *data; | |
5aa1ba6a | 1124 | unsigned long flags; |
4902f884 | 1125 | int cpu; |
38697053 | 1126 | int pc; |
4902f884 | 1127 | |
c76f0694 | 1128 | if (tracing_disabled) |
4902f884 SR |
1129 | return; |
1130 | ||
38697053 | 1131 | pc = preempt_count(); |
5aa1ba6a | 1132 | local_irq_save(flags); |
4902f884 SR |
1133 | cpu = raw_smp_processor_id(); |
1134 | data = tr->data[cpu]; | |
4902f884 | 1135 | |
5aa1ba6a | 1136 | if (likely(atomic_inc_return(&data->disabled) == 1)) |
38697053 | 1137 | ftrace_trace_special(tr, data, arg1, arg2, arg3, pc); |
4902f884 | 1138 | |
5aa1ba6a SR |
1139 | atomic_dec(&data->disabled); |
1140 | local_irq_restore(flags); | |
4902f884 SR |
1141 | } |
1142 | ||
606576ce | 1143 | #ifdef CONFIG_FUNCTION_TRACER |
e309b41d | 1144 | static void |
b2a866f9 | 1145 | function_trace_call_preempt_only(unsigned long ip, unsigned long parent_ip) |
2e0f5761 IM |
1146 | { |
1147 | struct trace_array *tr = &global_trace; | |
1148 | struct trace_array_cpu *data; | |
1149 | unsigned long flags; | |
1150 | long disabled; | |
38697053 SR |
1151 | int cpu, resched; |
1152 | int pc; | |
2e0f5761 | 1153 | |
60bc0800 | 1154 | if (unlikely(!ftrace_function_enabled)) |
2e0f5761 IM |
1155 | return; |
1156 | ||
38697053 | 1157 | pc = preempt_count(); |
182e9f5f | 1158 | resched = ftrace_preempt_disable(); |
38697053 | 1159 | local_save_flags(flags); |
2e0f5761 IM |
1160 | cpu = raw_smp_processor_id(); |
1161 | data = tr->data[cpu]; | |
1162 | disabled = atomic_inc_return(&data->disabled); | |
1163 | ||
1164 | if (likely(disabled == 1)) | |
38697053 | 1165 | trace_function(tr, data, ip, parent_ip, flags, pc); |
2e0f5761 IM |
1166 | |
1167 | atomic_dec(&data->disabled); | |
182e9f5f | 1168 | ftrace_preempt_enable(resched); |
2e0f5761 IM |
1169 | } |
1170 | ||
b2a866f9 SR |
1171 | static void |
1172 | function_trace_call(unsigned long ip, unsigned long parent_ip) | |
1173 | { | |
1174 | struct trace_array *tr = &global_trace; | |
1175 | struct trace_array_cpu *data; | |
1176 | unsigned long flags; | |
1177 | long disabled; | |
1178 | int cpu; | |
1179 | int pc; | |
1180 | ||
1181 | if (unlikely(!ftrace_function_enabled)) | |
1182 | return; | |
1183 | ||
1184 | /* | |
1185 | * Need to use raw, since this must be called before the | |
1186 | * recursive protection is performed. | |
1187 | */ | |
d51ad7ac | 1188 | local_irq_save(flags); |
b2a866f9 SR |
1189 | cpu = raw_smp_processor_id(); |
1190 | data = tr->data[cpu]; | |
1191 | disabled = atomic_inc_return(&data->disabled); | |
1192 | ||
1193 | if (likely(disabled == 1)) { | |
1194 | pc = preempt_count(); | |
1195 | trace_function(tr, data, ip, parent_ip, flags, pc); | |
1196 | } | |
1197 | ||
1198 | atomic_dec(&data->disabled); | |
d51ad7ac | 1199 | local_irq_restore(flags); |
b2a866f9 SR |
1200 | } |
1201 | ||
fb52607a | 1202 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
e49dc19c | 1203 | int trace_graph_entry(struct ftrace_graph_ent *trace) |
15e6cb36 FW |
1204 | { |
1205 | struct trace_array *tr = &global_trace; | |
1206 | struct trace_array_cpu *data; | |
1207 | unsigned long flags; | |
1208 | long disabled; | |
1209 | int cpu; | |
1210 | int pc; | |
1211 | ||
a5e25883 | 1212 | local_irq_save(flags); |
15e6cb36 FW |
1213 | cpu = raw_smp_processor_id(); |
1214 | data = tr->data[cpu]; | |
1215 | disabled = atomic_inc_return(&data->disabled); | |
1216 | if (likely(disabled == 1)) { | |
1217 | pc = preempt_count(); | |
287b6e68 FW |
1218 | __trace_graph_entry(tr, data, trace, flags, pc); |
1219 | } | |
1220 | atomic_dec(&data->disabled); | |
a5e25883 | 1221 | local_irq_restore(flags); |
e49dc19c SR |
1222 | |
1223 | return 1; | |
287b6e68 FW |
1224 | } |
1225 | ||
1226 | void trace_graph_return(struct ftrace_graph_ret *trace) | |
1227 | { | |
1228 | struct trace_array *tr = &global_trace; | |
1229 | struct trace_array_cpu *data; | |
1230 | unsigned long flags; | |
1231 | long disabled; | |
1232 | int cpu; | |
1233 | int pc; | |
1234 | ||
a5e25883 | 1235 | local_irq_save(flags); |
287b6e68 FW |
1236 | cpu = raw_smp_processor_id(); |
1237 | data = tr->data[cpu]; | |
1238 | disabled = atomic_inc_return(&data->disabled); | |
1239 | if (likely(disabled == 1)) { | |
1240 | pc = preempt_count(); | |
1241 | __trace_graph_return(tr, data, trace, flags, pc); | |
15e6cb36 FW |
1242 | } |
1243 | atomic_dec(&data->disabled); | |
a5e25883 | 1244 | local_irq_restore(flags); |
15e6cb36 | 1245 | } |
fb52607a | 1246 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
15e6cb36 | 1247 | |
2e0f5761 IM |
1248 | static struct ftrace_ops trace_ops __read_mostly = |
1249 | { | |
1250 | .func = function_trace_call, | |
1251 | }; | |
1252 | ||
e309b41d | 1253 | void tracing_start_function_trace(void) |
2e0f5761 | 1254 | { |
60bc0800 | 1255 | ftrace_function_enabled = 0; |
b2a866f9 SR |
1256 | |
1257 | if (trace_flags & TRACE_ITER_PREEMPTONLY) | |
1258 | trace_ops.func = function_trace_call_preempt_only; | |
1259 | else | |
1260 | trace_ops.func = function_trace_call; | |
1261 | ||
2e0f5761 | 1262 | register_ftrace_function(&trace_ops); |
9036990d | 1263 | ftrace_function_enabled = 1; |
2e0f5761 IM |
1264 | } |
1265 | ||
e309b41d | 1266 | void tracing_stop_function_trace(void) |
2e0f5761 | 1267 | { |
60bc0800 | 1268 | ftrace_function_enabled = 0; |
2e0f5761 IM |
1269 | unregister_ftrace_function(&trace_ops); |
1270 | } | |
1271 | #endif | |
1272 | ||
bc0c38d1 SR |
1273 | enum trace_file_type { |
1274 | TRACE_FILE_LAT_FMT = 1, | |
12ef7d44 | 1275 | TRACE_FILE_ANNOTATE = 2, |
bc0c38d1 SR |
1276 | }; |
1277 | ||
5a90f577 SR |
1278 | static void trace_iterator_increment(struct trace_iterator *iter, int cpu) |
1279 | { | |
d769041f SR |
1280 | /* Don't allow ftrace to trace into the ring buffers */ |
1281 | ftrace_disable_cpu(); | |
1282 | ||
5a90f577 | 1283 | iter->idx++; |
d769041f SR |
1284 | if (iter->buffer_iter[iter->cpu]) |
1285 | ring_buffer_read(iter->buffer_iter[iter->cpu], NULL); | |
1286 | ||
1287 | ftrace_enable_cpu(); | |
5a90f577 SR |
1288 | } |
1289 | ||
e309b41d | 1290 | static struct trace_entry * |
3928a8a2 | 1291 | peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts) |
dd0e545f | 1292 | { |
3928a8a2 SR |
1293 | struct ring_buffer_event *event; |
1294 | struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu]; | |
dd0e545f | 1295 | |
d769041f SR |
1296 | /* Don't allow ftrace to trace into the ring buffers */ |
1297 | ftrace_disable_cpu(); | |
1298 | ||
1299 | if (buf_iter) | |
1300 | event = ring_buffer_iter_peek(buf_iter, ts); | |
1301 | else | |
1302 | event = ring_buffer_peek(iter->tr->buffer, cpu, ts); | |
1303 | ||
1304 | ftrace_enable_cpu(); | |
1305 | ||
3928a8a2 | 1306 | return event ? ring_buffer_event_data(event) : NULL; |
dd0e545f | 1307 | } |
d769041f | 1308 | |
dd0e545f | 1309 | static struct trace_entry * |
3928a8a2 | 1310 | __find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts) |
bc0c38d1 | 1311 | { |
3928a8a2 | 1312 | struct ring_buffer *buffer = iter->tr->buffer; |
bc0c38d1 | 1313 | struct trace_entry *ent, *next = NULL; |
3928a8a2 | 1314 | u64 next_ts = 0, ts; |
bc0c38d1 SR |
1315 | int next_cpu = -1; |
1316 | int cpu; | |
1317 | ||
ab46428c | 1318 | for_each_tracing_cpu(cpu) { |
dd0e545f | 1319 | |
3928a8a2 SR |
1320 | if (ring_buffer_empty_cpu(buffer, cpu)) |
1321 | continue; | |
dd0e545f | 1322 | |
3928a8a2 | 1323 | ent = peek_next_entry(iter, cpu, &ts); |
dd0e545f | 1324 | |
cdd31cd2 IM |
1325 | /* |
1326 | * Pick the entry with the smallest timestamp: | |
1327 | */ | |
3928a8a2 | 1328 | if (ent && (!next || ts < next_ts)) { |
bc0c38d1 SR |
1329 | next = ent; |
1330 | next_cpu = cpu; | |
3928a8a2 | 1331 | next_ts = ts; |
bc0c38d1 SR |
1332 | } |
1333 | } | |
1334 | ||
1335 | if (ent_cpu) | |
1336 | *ent_cpu = next_cpu; | |
1337 | ||
3928a8a2 SR |
1338 | if (ent_ts) |
1339 | *ent_ts = next_ts; | |
1340 | ||
bc0c38d1 SR |
1341 | return next; |
1342 | } | |
1343 | ||
dd0e545f SR |
1344 | /* Find the next real entry, without updating the iterator itself */ |
1345 | static struct trace_entry * | |
3928a8a2 | 1346 | find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts) |
bc0c38d1 | 1347 | { |
3928a8a2 | 1348 | return __find_next_entry(iter, ent_cpu, ent_ts); |
dd0e545f SR |
1349 | } |
1350 | ||
1351 | /* Find the next real entry, and increment the iterator to the next entry */ | |
1352 | static void *find_next_entry_inc(struct trace_iterator *iter) | |
1353 | { | |
3928a8a2 | 1354 | iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts); |
dd0e545f | 1355 | |
3928a8a2 | 1356 | if (iter->ent) |
dd0e545f SR |
1357 | trace_iterator_increment(iter, iter->cpu); |
1358 | ||
3928a8a2 | 1359 | return iter->ent ? iter : NULL; |
b3806b43 | 1360 | } |
bc0c38d1 | 1361 | |
e309b41d | 1362 | static void trace_consume(struct trace_iterator *iter) |
b3806b43 | 1363 | { |
d769041f SR |
1364 | /* Don't allow ftrace to trace into the ring buffers */ |
1365 | ftrace_disable_cpu(); | |
3928a8a2 | 1366 | ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts); |
d769041f | 1367 | ftrace_enable_cpu(); |
bc0c38d1 SR |
1368 | } |
1369 | ||
e309b41d | 1370 | static void *s_next(struct seq_file *m, void *v, loff_t *pos) |
bc0c38d1 SR |
1371 | { |
1372 | struct trace_iterator *iter = m->private; | |
bc0c38d1 | 1373 | int i = (int)*pos; |
4e3c3333 | 1374 | void *ent; |
bc0c38d1 SR |
1375 | |
1376 | (*pos)++; | |
1377 | ||
1378 | /* can't go backwards */ | |
1379 | if (iter->idx > i) | |
1380 | return NULL; | |
1381 | ||
1382 | if (iter->idx < 0) | |
1383 | ent = find_next_entry_inc(iter); | |
1384 | else | |
1385 | ent = iter; | |
1386 | ||
1387 | while (ent && iter->idx < i) | |
1388 | ent = find_next_entry_inc(iter); | |
1389 | ||
1390 | iter->pos = *pos; | |
1391 | ||
bc0c38d1 SR |
1392 | return ent; |
1393 | } | |
1394 | ||
1395 | static void *s_start(struct seq_file *m, loff_t *pos) | |
1396 | { | |
1397 | struct trace_iterator *iter = m->private; | |
1398 | void *p = NULL; | |
1399 | loff_t l = 0; | |
3928a8a2 | 1400 | int cpu; |
bc0c38d1 SR |
1401 | |
1402 | mutex_lock(&trace_types_lock); | |
1403 | ||
d15f57f2 SR |
1404 | if (!current_trace || current_trace != iter->trace) { |
1405 | mutex_unlock(&trace_types_lock); | |
bc0c38d1 | 1406 | return NULL; |
d15f57f2 | 1407 | } |
bc0c38d1 SR |
1408 | |
1409 | atomic_inc(&trace_record_cmdline_disabled); | |
1410 | ||
bc0c38d1 SR |
1411 | if (*pos != iter->pos) { |
1412 | iter->ent = NULL; | |
1413 | iter->cpu = 0; | |
1414 | iter->idx = -1; | |
1415 | ||
d769041f SR |
1416 | ftrace_disable_cpu(); |
1417 | ||
3928a8a2 SR |
1418 | for_each_tracing_cpu(cpu) { |
1419 | ring_buffer_iter_reset(iter->buffer_iter[cpu]); | |
4c11d7ae | 1420 | } |
bc0c38d1 | 1421 | |
d769041f SR |
1422 | ftrace_enable_cpu(); |
1423 | ||
bc0c38d1 SR |
1424 | for (p = iter; p && l < *pos; p = s_next(m, p, &l)) |
1425 | ; | |
1426 | ||
1427 | } else { | |
4c11d7ae | 1428 | l = *pos - 1; |
bc0c38d1 SR |
1429 | p = s_next(m, p, &l); |
1430 | } | |
1431 | ||
1432 | return p; | |
1433 | } | |
1434 | ||
1435 | static void s_stop(struct seq_file *m, void *p) | |
1436 | { | |
bc0c38d1 | 1437 | atomic_dec(&trace_record_cmdline_disabled); |
bc0c38d1 SR |
1438 | mutex_unlock(&trace_types_lock); |
1439 | } | |
1440 | ||
76094a2c | 1441 | #ifdef CONFIG_KRETPROBES |
b3aa5577 | 1442 | static inline const char *kretprobed(const char *name) |
76094a2c | 1443 | { |
b3aa5577 SR |
1444 | static const char tramp_name[] = "kretprobe_trampoline"; |
1445 | int size = sizeof(tramp_name); | |
1446 | ||
1447 | if (strncmp(tramp_name, name, size) == 0) | |
1448 | return "[unknown/kretprobe'd]"; | |
1449 | return name; | |
76094a2c AS |
1450 | } |
1451 | #else | |
b3aa5577 | 1452 | static inline const char *kretprobed(const char *name) |
76094a2c | 1453 | { |
b3aa5577 | 1454 | return name; |
76094a2c AS |
1455 | } |
1456 | #endif /* CONFIG_KRETPROBES */ | |
1457 | ||
b3806b43 | 1458 | static int |
214023c3 | 1459 | seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address) |
bc0c38d1 SR |
1460 | { |
1461 | #ifdef CONFIG_KALLSYMS | |
1462 | char str[KSYM_SYMBOL_LEN]; | |
b3aa5577 | 1463 | const char *name; |
bc0c38d1 SR |
1464 | |
1465 | kallsyms_lookup(address, NULL, NULL, NULL, str); | |
1466 | ||
b3aa5577 SR |
1467 | name = kretprobed(str); |
1468 | ||
1469 | return trace_seq_printf(s, fmt, name); | |
bc0c38d1 | 1470 | #endif |
b3806b43 | 1471 | return 1; |
bc0c38d1 SR |
1472 | } |
1473 | ||
b3806b43 | 1474 | static int |
214023c3 SR |
1475 | seq_print_sym_offset(struct trace_seq *s, const char *fmt, |
1476 | unsigned long address) | |
bc0c38d1 SR |
1477 | { |
1478 | #ifdef CONFIG_KALLSYMS | |
1479 | char str[KSYM_SYMBOL_LEN]; | |
b3aa5577 | 1480 | const char *name; |
bc0c38d1 SR |
1481 | |
1482 | sprint_symbol(str, address); | |
b3aa5577 SR |
1483 | name = kretprobed(str); |
1484 | ||
1485 | return trace_seq_printf(s, fmt, name); | |
bc0c38d1 | 1486 | #endif |
b3806b43 | 1487 | return 1; |
bc0c38d1 SR |
1488 | } |
1489 | ||
1490 | #ifndef CONFIG_64BIT | |
1491 | # define IP_FMT "%08lx" | |
1492 | #else | |
1493 | # define IP_FMT "%016lx" | |
1494 | #endif | |
1495 | ||
15e6cb36 | 1496 | int |
214023c3 | 1497 | seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags) |
bc0c38d1 | 1498 | { |
b3806b43 SR |
1499 | int ret; |
1500 | ||
1501 | if (!ip) | |
1502 | return trace_seq_printf(s, "0"); | |
bc0c38d1 SR |
1503 | |
1504 | if (sym_flags & TRACE_ITER_SYM_OFFSET) | |
b3806b43 | 1505 | ret = seq_print_sym_offset(s, "%s", ip); |
bc0c38d1 | 1506 | else |
b3806b43 SR |
1507 | ret = seq_print_sym_short(s, "%s", ip); |
1508 | ||
1509 | if (!ret) | |
1510 | return 0; | |
bc0c38d1 SR |
1511 | |
1512 | if (sym_flags & TRACE_ITER_SYM_ADDR) | |
b3806b43 SR |
1513 | ret = trace_seq_printf(s, " <" IP_FMT ">", ip); |
1514 | return ret; | |
bc0c38d1 SR |
1515 | } |
1516 | ||
b54d3de9 TE |
1517 | static inline int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm, |
1518 | unsigned long ip, unsigned long sym_flags) | |
1519 | { | |
1520 | struct file *file = NULL; | |
1521 | unsigned long vmstart = 0; | |
1522 | int ret = 1; | |
1523 | ||
1524 | if (mm) { | |
cffa10ae TE |
1525 | const struct vm_area_struct *vma; |
1526 | ||
1527 | down_read(&mm->mmap_sem); | |
1528 | vma = find_vma(mm, ip); | |
b54d3de9 TE |
1529 | if (vma) { |
1530 | file = vma->vm_file; | |
1531 | vmstart = vma->vm_start; | |
1532 | } | |
e38da592 TE |
1533 | if (file) { |
1534 | ret = trace_seq_path(s, &file->f_path); | |
1535 | if (ret) | |
1536 | ret = trace_seq_printf(s, "[+0x%lx]", ip - vmstart); | |
1537 | } | |
cffa10ae | 1538 | up_read(&mm->mmap_sem); |
b54d3de9 | 1539 | } |
b54d3de9 TE |
1540 | if (ret && ((sym_flags & TRACE_ITER_SYM_ADDR) || !file)) |
1541 | ret = trace_seq_printf(s, " <" IP_FMT ">", ip); | |
1542 | return ret; | |
1543 | } | |
1544 | ||
02b67518 TE |
1545 | static int |
1546 | seq_print_userip_objs(const struct userstack_entry *entry, struct trace_seq *s, | |
b54d3de9 | 1547 | unsigned long sym_flags) |
02b67518 | 1548 | { |
b54d3de9 | 1549 | struct mm_struct *mm = NULL; |
02b67518 | 1550 | int ret = 1; |
8d7c6a96 | 1551 | unsigned int i; |
02b67518 | 1552 | |
b54d3de9 TE |
1553 | if (trace_flags & TRACE_ITER_SYM_USEROBJ) { |
1554 | struct task_struct *task; | |
1555 | /* | |
1556 | * we do the lookup on the thread group leader, | |
1557 | * since individual threads might have already quit! | |
1558 | */ | |
1559 | rcu_read_lock(); | |
1560 | task = find_task_by_vpid(entry->ent.tgid); | |
b54d3de9 TE |
1561 | if (task) |
1562 | mm = get_task_mm(task); | |
cffa10ae | 1563 | rcu_read_unlock(); |
b54d3de9 TE |
1564 | } |
1565 | ||
02b67518 TE |
1566 | for (i = 0; i < FTRACE_STACK_ENTRIES; i++) { |
1567 | unsigned long ip = entry->caller[i]; | |
1568 | ||
1569 | if (ip == ULONG_MAX || !ret) | |
1570 | break; | |
b54d3de9 | 1571 | if (i && ret) |
02b67518 TE |
1572 | ret = trace_seq_puts(s, " <- "); |
1573 | if (!ip) { | |
b54d3de9 TE |
1574 | if (ret) |
1575 | ret = trace_seq_puts(s, "??"); | |
02b67518 TE |
1576 | continue; |
1577 | } | |
b54d3de9 TE |
1578 | if (!ret) |
1579 | break; | |
1580 | if (ret) | |
1581 | ret = seq_print_user_ip(s, mm, ip, sym_flags); | |
02b67518 TE |
1582 | } |
1583 | ||
b54d3de9 TE |
1584 | if (mm) |
1585 | mmput(mm); | |
02b67518 TE |
1586 | return ret; |
1587 | } | |
1588 | ||
e309b41d | 1589 | static void print_lat_help_header(struct seq_file *m) |
bc0c38d1 | 1590 | { |
a6168353 ME |
1591 | seq_puts(m, "# _------=> CPU# \n"); |
1592 | seq_puts(m, "# / _-----=> irqs-off \n"); | |
1593 | seq_puts(m, "# | / _----=> need-resched \n"); | |
1594 | seq_puts(m, "# || / _---=> hardirq/softirq \n"); | |
1595 | seq_puts(m, "# ||| / _--=> preempt-depth \n"); | |
1596 | seq_puts(m, "# |||| / \n"); | |
1597 | seq_puts(m, "# ||||| delay \n"); | |
1598 | seq_puts(m, "# cmd pid ||||| time | caller \n"); | |
1599 | seq_puts(m, "# \\ / ||||| \\ | / \n"); | |
bc0c38d1 SR |
1600 | } |
1601 | ||
e309b41d | 1602 | static void print_func_help_header(struct seq_file *m) |
bc0c38d1 | 1603 | { |
a6168353 ME |
1604 | seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n"); |
1605 | seq_puts(m, "# | | | | |\n"); | |
bc0c38d1 SR |
1606 | } |
1607 | ||
1608 | ||
e309b41d | 1609 | static void |
bc0c38d1 SR |
1610 | print_trace_header(struct seq_file *m, struct trace_iterator *iter) |
1611 | { | |
1612 | unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK); | |
1613 | struct trace_array *tr = iter->tr; | |
1614 | struct trace_array_cpu *data = tr->data[tr->cpu]; | |
1615 | struct tracer *type = current_trace; | |
3928a8a2 SR |
1616 | unsigned long total; |
1617 | unsigned long entries; | |
bc0c38d1 SR |
1618 | const char *name = "preemption"; |
1619 | ||
1620 | if (type) | |
1621 | name = type->name; | |
1622 | ||
3928a8a2 SR |
1623 | entries = ring_buffer_entries(iter->tr->buffer); |
1624 | total = entries + | |
1625 | ring_buffer_overruns(iter->tr->buffer); | |
bc0c38d1 SR |
1626 | |
1627 | seq_printf(m, "%s latency trace v1.1.5 on %s\n", | |
1628 | name, UTS_RELEASE); | |
1629 | seq_puts(m, "-----------------------------------" | |
1630 | "---------------------------------\n"); | |
1631 | seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |" | |
1632 | " (M:%s VP:%d, KP:%d, SP:%d HP:%d", | |
57f50be1 | 1633 | nsecs_to_usecs(data->saved_latency), |
bc0c38d1 | 1634 | entries, |
4c11d7ae | 1635 | total, |
bc0c38d1 SR |
1636 | tr->cpu, |
1637 | #if defined(CONFIG_PREEMPT_NONE) | |
1638 | "server", | |
1639 | #elif defined(CONFIG_PREEMPT_VOLUNTARY) | |
1640 | "desktop", | |
b5c21b45 | 1641 | #elif defined(CONFIG_PREEMPT) |
bc0c38d1 SR |
1642 | "preempt", |
1643 | #else | |
1644 | "unknown", | |
1645 | #endif | |
1646 | /* These are reserved for later use */ | |
1647 | 0, 0, 0, 0); | |
1648 | #ifdef CONFIG_SMP | |
1649 | seq_printf(m, " #P:%d)\n", num_online_cpus()); | |
1650 | #else | |
1651 | seq_puts(m, ")\n"); | |
1652 | #endif | |
1653 | seq_puts(m, " -----------------\n"); | |
1654 | seq_printf(m, " | task: %.16s-%d " | |
1655 | "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n", | |
1656 | data->comm, data->pid, data->uid, data->nice, | |
1657 | data->policy, data->rt_priority); | |
1658 | seq_puts(m, " -----------------\n"); | |
1659 | ||
1660 | if (data->critical_start) { | |
1661 | seq_puts(m, " => started at: "); | |
214023c3 SR |
1662 | seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags); |
1663 | trace_print_seq(m, &iter->seq); | |
bc0c38d1 | 1664 | seq_puts(m, "\n => ended at: "); |
214023c3 SR |
1665 | seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags); |
1666 | trace_print_seq(m, &iter->seq); | |
bc0c38d1 SR |
1667 | seq_puts(m, "\n"); |
1668 | } | |
1669 | ||
1670 | seq_puts(m, "\n"); | |
1671 | } | |
1672 | ||
e309b41d | 1673 | static void |
214023c3 | 1674 | lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu) |
bc0c38d1 SR |
1675 | { |
1676 | int hardirq, softirq; | |
1677 | char *comm; | |
1678 | ||
777e208d | 1679 | comm = trace_find_cmdline(entry->pid); |
bc0c38d1 | 1680 | |
777e208d | 1681 | trace_seq_printf(s, "%8.8s-%-5d ", comm, entry->pid); |
a6168353 | 1682 | trace_seq_printf(s, "%3d", cpu); |
214023c3 | 1683 | trace_seq_printf(s, "%c%c", |
9244489a SR |
1684 | (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' : |
1685 | (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ? 'X' : '.', | |
777e208d | 1686 | ((entry->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.')); |
bc0c38d1 | 1687 | |
777e208d SR |
1688 | hardirq = entry->flags & TRACE_FLAG_HARDIRQ; |
1689 | softirq = entry->flags & TRACE_FLAG_SOFTIRQ; | |
afc2abc0 | 1690 | if (hardirq && softirq) { |
214023c3 | 1691 | trace_seq_putc(s, 'H'); |
afc2abc0 IM |
1692 | } else { |
1693 | if (hardirq) { | |
214023c3 | 1694 | trace_seq_putc(s, 'h'); |
afc2abc0 | 1695 | } else { |
bc0c38d1 | 1696 | if (softirq) |
214023c3 | 1697 | trace_seq_putc(s, 's'); |
bc0c38d1 | 1698 | else |
214023c3 | 1699 | trace_seq_putc(s, '.'); |
bc0c38d1 SR |
1700 | } |
1701 | } | |
1702 | ||
777e208d SR |
1703 | if (entry->preempt_count) |
1704 | trace_seq_printf(s, "%x", entry->preempt_count); | |
bc0c38d1 | 1705 | else |
214023c3 | 1706 | trace_seq_puts(s, "."); |
bc0c38d1 SR |
1707 | } |
1708 | ||
1709 | unsigned long preempt_mark_thresh = 100; | |
1710 | ||
e309b41d | 1711 | static void |
3928a8a2 | 1712 | lat_print_timestamp(struct trace_seq *s, u64 abs_usecs, |
bc0c38d1 SR |
1713 | unsigned long rel_usecs) |
1714 | { | |
214023c3 | 1715 | trace_seq_printf(s, " %4lldus", abs_usecs); |
bc0c38d1 | 1716 | if (rel_usecs > preempt_mark_thresh) |
214023c3 | 1717 | trace_seq_puts(s, "!: "); |
bc0c38d1 | 1718 | else if (rel_usecs > 1) |
214023c3 | 1719 | trace_seq_puts(s, "+: "); |
bc0c38d1 | 1720 | else |
214023c3 | 1721 | trace_seq_puts(s, " : "); |
bc0c38d1 SR |
1722 | } |
1723 | ||
1724 | static const char state_to_char[] = TASK_STATE_TO_CHAR_STR; | |
1725 | ||
fc5e27ae PP |
1726 | /* |
1727 | * The message is supposed to contain an ending newline. | |
1728 | * If the printing stops prematurely, try to add a newline of our own. | |
1729 | */ | |
1730 | void trace_seq_print_cont(struct trace_seq *s, struct trace_iterator *iter) | |
dd0e545f | 1731 | { |
dd0e545f | 1732 | struct trace_entry *ent; |
777e208d | 1733 | struct trace_field_cont *cont; |
fc5e27ae | 1734 | bool ok = true; |
dd0e545f | 1735 | |
3928a8a2 | 1736 | ent = peek_next_entry(iter, iter->cpu, NULL); |
dd0e545f SR |
1737 | if (!ent || ent->type != TRACE_CONT) { |
1738 | trace_seq_putc(s, '\n'); | |
1739 | return; | |
1740 | } | |
1741 | ||
1742 | do { | |
777e208d | 1743 | cont = (struct trace_field_cont *)ent; |
fc5e27ae | 1744 | if (ok) |
777e208d | 1745 | ok = (trace_seq_printf(s, "%s", cont->buf) > 0); |
d769041f SR |
1746 | |
1747 | ftrace_disable_cpu(); | |
1748 | ||
1749 | if (iter->buffer_iter[iter->cpu]) | |
1750 | ring_buffer_read(iter->buffer_iter[iter->cpu], NULL); | |
1751 | else | |
1752 | ring_buffer_consume(iter->tr->buffer, iter->cpu, NULL); | |
1753 | ||
1754 | ftrace_enable_cpu(); | |
1755 | ||
3928a8a2 | 1756 | ent = peek_next_entry(iter, iter->cpu, NULL); |
dd0e545f | 1757 | } while (ent && ent->type == TRACE_CONT); |
fc5e27ae PP |
1758 | |
1759 | if (!ok) | |
1760 | trace_seq_putc(s, '\n'); | |
dd0e545f SR |
1761 | } |
1762 | ||
a309720c SR |
1763 | static void test_cpu_buff_start(struct trace_iterator *iter) |
1764 | { | |
1765 | struct trace_seq *s = &iter->seq; | |
1766 | ||
12ef7d44 SR |
1767 | if (!(trace_flags & TRACE_ITER_ANNOTATE)) |
1768 | return; | |
1769 | ||
1770 | if (!(iter->iter_flags & TRACE_FILE_ANNOTATE)) | |
1771 | return; | |
1772 | ||
a309720c SR |
1773 | if (cpu_isset(iter->cpu, iter->started)) |
1774 | return; | |
1775 | ||
1776 | cpu_set(iter->cpu, iter->started); | |
1777 | trace_seq_printf(s, "##### CPU %u buffer started ####\n", iter->cpu); | |
1778 | } | |
1779 | ||
2c4f035f | 1780 | static enum print_line_t |
214023c3 | 1781 | print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu) |
bc0c38d1 | 1782 | { |
214023c3 | 1783 | struct trace_seq *s = &iter->seq; |
bc0c38d1 | 1784 | unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK); |
3928a8a2 | 1785 | struct trace_entry *next_entry; |
bc0c38d1 SR |
1786 | unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE); |
1787 | struct trace_entry *entry = iter->ent; | |
1788 | unsigned long abs_usecs; | |
1789 | unsigned long rel_usecs; | |
3928a8a2 | 1790 | u64 next_ts; |
bc0c38d1 | 1791 | char *comm; |
bac524d3 | 1792 | int S, T; |
86387f7e | 1793 | int i; |
d17d9691 | 1794 | unsigned state; |
bc0c38d1 | 1795 | |
dd0e545f | 1796 | if (entry->type == TRACE_CONT) |
2c4f035f | 1797 | return TRACE_TYPE_HANDLED; |
dd0e545f | 1798 | |
a309720c SR |
1799 | test_cpu_buff_start(iter); |
1800 | ||
3928a8a2 SR |
1801 | next_entry = find_next_entry(iter, NULL, &next_ts); |
1802 | if (!next_entry) | |
1803 | next_ts = iter->ts; | |
1804 | rel_usecs = ns2usecs(next_ts - iter->ts); | |
1805 | abs_usecs = ns2usecs(iter->ts - iter->tr->time_start); | |
bc0c38d1 SR |
1806 | |
1807 | if (verbose) { | |
777e208d | 1808 | comm = trace_find_cmdline(entry->pid); |
a6168353 | 1809 | trace_seq_printf(s, "%16s %5d %3d %d %08x %08x [%08lx]" |
214023c3 SR |
1810 | " %ld.%03ldms (+%ld.%03ldms): ", |
1811 | comm, | |
777e208d SR |
1812 | entry->pid, cpu, entry->flags, |
1813 | entry->preempt_count, trace_idx, | |
3928a8a2 | 1814 | ns2usecs(iter->ts), |
214023c3 SR |
1815 | abs_usecs/1000, |
1816 | abs_usecs % 1000, rel_usecs/1000, | |
1817 | rel_usecs % 1000); | |
bc0c38d1 | 1818 | } else { |
f29c73fe IM |
1819 | lat_print_generic(s, entry, cpu); |
1820 | lat_print_timestamp(s, abs_usecs, rel_usecs); | |
bc0c38d1 SR |
1821 | } |
1822 | switch (entry->type) { | |
777e208d | 1823 | case TRACE_FN: { |
7104f300 SR |
1824 | struct ftrace_entry *field; |
1825 | ||
1826 | trace_assign_type(field, entry); | |
777e208d SR |
1827 | |
1828 | seq_print_ip_sym(s, field->ip, sym_flags); | |
214023c3 | 1829 | trace_seq_puts(s, " ("); |
b3aa5577 | 1830 | seq_print_ip_sym(s, field->parent_ip, sym_flags); |
214023c3 | 1831 | trace_seq_puts(s, ")\n"); |
bc0c38d1 | 1832 | break; |
777e208d | 1833 | } |
bc0c38d1 | 1834 | case TRACE_CTX: |
777e208d | 1835 | case TRACE_WAKE: { |
7104f300 SR |
1836 | struct ctx_switch_entry *field; |
1837 | ||
1838 | trace_assign_type(field, entry); | |
777e208d SR |
1839 | |
1840 | T = field->next_state < sizeof(state_to_char) ? | |
1841 | state_to_char[field->next_state] : 'X'; | |
bac524d3 | 1842 | |
777e208d SR |
1843 | state = field->prev_state ? |
1844 | __ffs(field->prev_state) + 1 : 0; | |
d17d9691 | 1845 | S = state < sizeof(state_to_char) - 1 ? state_to_char[state] : 'X'; |
777e208d | 1846 | comm = trace_find_cmdline(field->next_pid); |
80b5e940 | 1847 | trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n", |
777e208d SR |
1848 | field->prev_pid, |
1849 | field->prev_prio, | |
57422797 | 1850 | S, entry->type == TRACE_CTX ? "==>" : " +", |
777e208d SR |
1851 | field->next_cpu, |
1852 | field->next_pid, | |
1853 | field->next_prio, | |
bac524d3 | 1854 | T, comm); |
bc0c38d1 | 1855 | break; |
777e208d SR |
1856 | } |
1857 | case TRACE_SPECIAL: { | |
7104f300 SR |
1858 | struct special_entry *field; |
1859 | ||
1860 | trace_assign_type(field, entry); | |
777e208d | 1861 | |
88a4216c | 1862 | trace_seq_printf(s, "# %ld %ld %ld\n", |
777e208d SR |
1863 | field->arg1, |
1864 | field->arg2, | |
1865 | field->arg3); | |
f0a920d5 | 1866 | break; |
777e208d SR |
1867 | } |
1868 | case TRACE_STACK: { | |
7104f300 SR |
1869 | struct stack_entry *field; |
1870 | ||
1871 | trace_assign_type(field, entry); | |
777e208d | 1872 | |
86387f7e IM |
1873 | for (i = 0; i < FTRACE_STACK_ENTRIES; i++) { |
1874 | if (i) | |
1875 | trace_seq_puts(s, " <= "); | |
777e208d | 1876 | seq_print_ip_sym(s, field->caller[i], sym_flags); |
86387f7e IM |
1877 | } |
1878 | trace_seq_puts(s, "\n"); | |
1879 | break; | |
777e208d SR |
1880 | } |
1881 | case TRACE_PRINT: { | |
7104f300 SR |
1882 | struct print_entry *field; |
1883 | ||
1884 | trace_assign_type(field, entry); | |
777e208d SR |
1885 | |
1886 | seq_print_ip_sym(s, field->ip, sym_flags); | |
1887 | trace_seq_printf(s, ": %s", field->buf); | |
1888 | if (entry->flags & TRACE_FLAG_CONT) | |
dd0e545f SR |
1889 | trace_seq_print_cont(s, iter); |
1890 | break; | |
777e208d | 1891 | } |
9f029e83 SR |
1892 | case TRACE_BRANCH: { |
1893 | struct trace_branch *field; | |
52f232cb SR |
1894 | |
1895 | trace_assign_type(field, entry); | |
1896 | ||
1897 | trace_seq_printf(s, "[%s] %s:%s:%d\n", | |
68d119f0 | 1898 | field->correct ? " ok " : " MISS ", |
52f232cb SR |
1899 | field->func, |
1900 | field->file, | |
1901 | field->line); | |
1902 | break; | |
1903 | } | |
02b67518 TE |
1904 | case TRACE_USER_STACK: { |
1905 | struct userstack_entry *field; | |
1906 | ||
1907 | trace_assign_type(field, entry); | |
1908 | ||
1909 | seq_print_userip_objs(field, s, sym_flags); | |
b54d3de9 | 1910 | trace_seq_putc(s, '\n'); |
02b67518 TE |
1911 | break; |
1912 | } | |
89b2f978 | 1913 | default: |
214023c3 | 1914 | trace_seq_printf(s, "Unknown type %d\n", entry->type); |
bc0c38d1 | 1915 | } |
2c4f035f | 1916 | return TRACE_TYPE_HANDLED; |
bc0c38d1 SR |
1917 | } |
1918 | ||
2c4f035f | 1919 | static enum print_line_t print_trace_fmt(struct trace_iterator *iter) |
bc0c38d1 | 1920 | { |
214023c3 | 1921 | struct trace_seq *s = &iter->seq; |
bc0c38d1 | 1922 | unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK); |
4e3c3333 | 1923 | struct trace_entry *entry; |
bc0c38d1 SR |
1924 | unsigned long usec_rem; |
1925 | unsigned long long t; | |
1926 | unsigned long secs; | |
1927 | char *comm; | |
b3806b43 | 1928 | int ret; |
bac524d3 | 1929 | int S, T; |
86387f7e | 1930 | int i; |
bc0c38d1 | 1931 | |
4e3c3333 | 1932 | entry = iter->ent; |
dd0e545f SR |
1933 | |
1934 | if (entry->type == TRACE_CONT) | |
2c4f035f | 1935 | return TRACE_TYPE_HANDLED; |
dd0e545f | 1936 | |
a309720c SR |
1937 | test_cpu_buff_start(iter); |
1938 | ||
777e208d | 1939 | comm = trace_find_cmdline(iter->ent->pid); |
bc0c38d1 | 1940 | |
3928a8a2 | 1941 | t = ns2usecs(iter->ts); |
bc0c38d1 SR |
1942 | usec_rem = do_div(t, 1000000ULL); |
1943 | secs = (unsigned long)t; | |
1944 | ||
777e208d | 1945 | ret = trace_seq_printf(s, "%16s-%-5d ", comm, entry->pid); |
f29c73fe | 1946 | if (!ret) |
2c4f035f | 1947 | return TRACE_TYPE_PARTIAL_LINE; |
a6168353 | 1948 | ret = trace_seq_printf(s, "[%03d] ", iter->cpu); |
f29c73fe | 1949 | if (!ret) |
2c4f035f | 1950 | return TRACE_TYPE_PARTIAL_LINE; |
f29c73fe IM |
1951 | ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem); |
1952 | if (!ret) | |
2c4f035f | 1953 | return TRACE_TYPE_PARTIAL_LINE; |
bc0c38d1 SR |
1954 | |
1955 | switch (entry->type) { | |
777e208d | 1956 | case TRACE_FN: { |
7104f300 SR |
1957 | struct ftrace_entry *field; |
1958 | ||
1959 | trace_assign_type(field, entry); | |
777e208d SR |
1960 | |
1961 | ret = seq_print_ip_sym(s, field->ip, sym_flags); | |
b3806b43 | 1962 | if (!ret) |
2c4f035f | 1963 | return TRACE_TYPE_PARTIAL_LINE; |
bc0c38d1 | 1964 | if ((sym_flags & TRACE_ITER_PRINT_PARENT) && |
777e208d | 1965 | field->parent_ip) { |
b3806b43 SR |
1966 | ret = trace_seq_printf(s, " <-"); |
1967 | if (!ret) | |
2c4f035f | 1968 | return TRACE_TYPE_PARTIAL_LINE; |
b3aa5577 SR |
1969 | ret = seq_print_ip_sym(s, |
1970 | field->parent_ip, | |
1971 | sym_flags); | |
b3806b43 | 1972 | if (!ret) |
2c4f035f | 1973 | return TRACE_TYPE_PARTIAL_LINE; |
bc0c38d1 | 1974 | } |
b3806b43 SR |
1975 | ret = trace_seq_printf(s, "\n"); |
1976 | if (!ret) | |
2c4f035f | 1977 | return TRACE_TYPE_PARTIAL_LINE; |
bc0c38d1 | 1978 | break; |
777e208d | 1979 | } |
bc0c38d1 | 1980 | case TRACE_CTX: |
777e208d | 1981 | case TRACE_WAKE: { |
7104f300 SR |
1982 | struct ctx_switch_entry *field; |
1983 | ||
1984 | trace_assign_type(field, entry); | |
777e208d SR |
1985 | |
1986 | S = field->prev_state < sizeof(state_to_char) ? | |
1987 | state_to_char[field->prev_state] : 'X'; | |
1988 | T = field->next_state < sizeof(state_to_char) ? | |
1989 | state_to_char[field->next_state] : 'X'; | |
80b5e940 | 1990 | ret = trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c\n", |
777e208d SR |
1991 | field->prev_pid, |
1992 | field->prev_prio, | |
b3806b43 | 1993 | S, |
57422797 | 1994 | entry->type == TRACE_CTX ? "==>" : " +", |
777e208d SR |
1995 | field->next_cpu, |
1996 | field->next_pid, | |
1997 | field->next_prio, | |
bac524d3 | 1998 | T); |
b3806b43 | 1999 | if (!ret) |
2c4f035f | 2000 | return TRACE_TYPE_PARTIAL_LINE; |
bc0c38d1 | 2001 | break; |
777e208d SR |
2002 | } |
2003 | case TRACE_SPECIAL: { | |
7104f300 SR |
2004 | struct special_entry *field; |
2005 | ||
2006 | trace_assign_type(field, entry); | |
777e208d | 2007 | |
88a4216c | 2008 | ret = trace_seq_printf(s, "# %ld %ld %ld\n", |
777e208d SR |
2009 | field->arg1, |
2010 | field->arg2, | |
2011 | field->arg3); | |
f0a920d5 | 2012 | if (!ret) |
2c4f035f | 2013 | return TRACE_TYPE_PARTIAL_LINE; |
f0a920d5 | 2014 | break; |
777e208d SR |
2015 | } |
2016 | case TRACE_STACK: { | |
7104f300 SR |
2017 | struct stack_entry *field; |
2018 | ||
2019 | trace_assign_type(field, entry); | |
777e208d | 2020 | |
86387f7e IM |
2021 | for (i = 0; i < FTRACE_STACK_ENTRIES; i++) { |
2022 | if (i) { | |
2023 | ret = trace_seq_puts(s, " <= "); | |
2024 | if (!ret) | |
2c4f035f | 2025 | return TRACE_TYPE_PARTIAL_LINE; |
86387f7e | 2026 | } |
777e208d | 2027 | ret = seq_print_ip_sym(s, field->caller[i], |
86387f7e IM |
2028 | sym_flags); |
2029 | if (!ret) | |
2c4f035f | 2030 | return TRACE_TYPE_PARTIAL_LINE; |
86387f7e IM |
2031 | } |
2032 | ret = trace_seq_puts(s, "\n"); | |
2033 | if (!ret) | |
2c4f035f | 2034 | return TRACE_TYPE_PARTIAL_LINE; |
86387f7e | 2035 | break; |
777e208d SR |
2036 | } |
2037 | case TRACE_PRINT: { | |
7104f300 SR |
2038 | struct print_entry *field; |
2039 | ||
2040 | trace_assign_type(field, entry); | |
777e208d SR |
2041 | |
2042 | seq_print_ip_sym(s, field->ip, sym_flags); | |
2043 | trace_seq_printf(s, ": %s", field->buf); | |
2044 | if (entry->flags & TRACE_FLAG_CONT) | |
dd0e545f SR |
2045 | trace_seq_print_cont(s, iter); |
2046 | break; | |
bc0c38d1 | 2047 | } |
287b6e68 FW |
2048 | case TRACE_GRAPH_RET: { |
2049 | return print_graph_function(iter); | |
2050 | } | |
2051 | case TRACE_GRAPH_ENT: { | |
fb52607a | 2052 | return print_graph_function(iter); |
15e6cb36 | 2053 | } |
9f029e83 SR |
2054 | case TRACE_BRANCH: { |
2055 | struct trace_branch *field; | |
52f232cb SR |
2056 | |
2057 | trace_assign_type(field, entry); | |
2058 | ||
2059 | trace_seq_printf(s, "[%s] %s:%s:%d\n", | |
68d119f0 | 2060 | field->correct ? " ok " : " MISS ", |
52f232cb SR |
2061 | field->func, |
2062 | field->file, | |
2063 | field->line); | |
2064 | break; | |
2065 | } | |
02b67518 TE |
2066 | case TRACE_USER_STACK: { |
2067 | struct userstack_entry *field; | |
2068 | ||
2069 | trace_assign_type(field, entry); | |
2070 | ||
2071 | ret = seq_print_userip_objs(field, s, sym_flags); | |
2072 | if (!ret) | |
2073 | return TRACE_TYPE_PARTIAL_LINE; | |
2074 | ret = trace_seq_putc(s, '\n'); | |
2075 | if (!ret) | |
2076 | return TRACE_TYPE_PARTIAL_LINE; | |
2077 | break; | |
2078 | } | |
777e208d | 2079 | } |
2c4f035f | 2080 | return TRACE_TYPE_HANDLED; |
bc0c38d1 SR |
2081 | } |
2082 | ||
2c4f035f | 2083 | static enum print_line_t print_raw_fmt(struct trace_iterator *iter) |
f9896bf3 IM |
2084 | { |
2085 | struct trace_seq *s = &iter->seq; | |
2086 | struct trace_entry *entry; | |
2087 | int ret; | |
bac524d3 | 2088 | int S, T; |
f9896bf3 IM |
2089 | |
2090 | entry = iter->ent; | |
dd0e545f SR |
2091 | |
2092 | if (entry->type == TRACE_CONT) | |
2c4f035f | 2093 | return TRACE_TYPE_HANDLED; |
dd0e545f | 2094 | |
f9896bf3 | 2095 | ret = trace_seq_printf(s, "%d %d %llu ", |
777e208d | 2096 | entry->pid, iter->cpu, iter->ts); |
f9896bf3 | 2097 | if (!ret) |
2c4f035f | 2098 | return TRACE_TYPE_PARTIAL_LINE; |
f9896bf3 IM |
2099 | |
2100 | switch (entry->type) { | |
777e208d | 2101 | case TRACE_FN: { |
7104f300 SR |
2102 | struct ftrace_entry *field; |
2103 | ||
2104 | trace_assign_type(field, entry); | |
777e208d | 2105 | |
f9896bf3 | 2106 | ret = trace_seq_printf(s, "%x %x\n", |
777e208d SR |
2107 | field->ip, |
2108 | field->parent_ip); | |
f9896bf3 | 2109 | if (!ret) |
2c4f035f | 2110 | return TRACE_TYPE_PARTIAL_LINE; |
f9896bf3 | 2111 | break; |
777e208d | 2112 | } |
f9896bf3 | 2113 | case TRACE_CTX: |
777e208d | 2114 | case TRACE_WAKE: { |
7104f300 SR |
2115 | struct ctx_switch_entry *field; |
2116 | ||
2117 | trace_assign_type(field, entry); | |
777e208d SR |
2118 | |
2119 | S = field->prev_state < sizeof(state_to_char) ? | |
2120 | state_to_char[field->prev_state] : 'X'; | |
2121 | T = field->next_state < sizeof(state_to_char) ? | |
2122 | state_to_char[field->next_state] : 'X'; | |
57422797 IM |
2123 | if (entry->type == TRACE_WAKE) |
2124 | S = '+'; | |
80b5e940 | 2125 | ret = trace_seq_printf(s, "%d %d %c %d %d %d %c\n", |
777e208d SR |
2126 | field->prev_pid, |
2127 | field->prev_prio, | |
f9896bf3 | 2128 | S, |
777e208d SR |
2129 | field->next_cpu, |
2130 | field->next_pid, | |
2131 | field->next_prio, | |
bac524d3 | 2132 | T); |
f9896bf3 | 2133 | if (!ret) |
2c4f035f | 2134 | return TRACE_TYPE_PARTIAL_LINE; |
f9896bf3 | 2135 | break; |
777e208d | 2136 | } |
f0a920d5 | 2137 | case TRACE_SPECIAL: |
02b67518 | 2138 | case TRACE_USER_STACK: |
777e208d | 2139 | case TRACE_STACK: { |
7104f300 SR |
2140 | struct special_entry *field; |
2141 | ||
2142 | trace_assign_type(field, entry); | |
777e208d | 2143 | |
88a4216c | 2144 | ret = trace_seq_printf(s, "# %ld %ld %ld\n", |
777e208d SR |
2145 | field->arg1, |
2146 | field->arg2, | |
2147 | field->arg3); | |
f0a920d5 | 2148 | if (!ret) |
2c4f035f | 2149 | return TRACE_TYPE_PARTIAL_LINE; |
f0a920d5 | 2150 | break; |
777e208d SR |
2151 | } |
2152 | case TRACE_PRINT: { | |
7104f300 SR |
2153 | struct print_entry *field; |
2154 | ||
2155 | trace_assign_type(field, entry); | |
777e208d SR |
2156 | |
2157 | trace_seq_printf(s, "# %lx %s", field->ip, field->buf); | |
2158 | if (entry->flags & TRACE_FLAG_CONT) | |
dd0e545f SR |
2159 | trace_seq_print_cont(s, iter); |
2160 | break; | |
f9896bf3 | 2161 | } |
777e208d | 2162 | } |
2c4f035f | 2163 | return TRACE_TYPE_HANDLED; |
f9896bf3 IM |
2164 | } |
2165 | ||
cb0f12aa IM |
2166 | #define SEQ_PUT_FIELD_RET(s, x) \ |
2167 | do { \ | |
2168 | if (!trace_seq_putmem(s, &(x), sizeof(x))) \ | |
2169 | return 0; \ | |
2170 | } while (0) | |
2171 | ||
5e3ca0ec IM |
2172 | #define SEQ_PUT_HEX_FIELD_RET(s, x) \ |
2173 | do { \ | |
ad0a3b68 | 2174 | BUILD_BUG_ON(sizeof(x) > MAX_MEMHEX_BYTES); \ |
5e3ca0ec IM |
2175 | if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \ |
2176 | return 0; \ | |
2177 | } while (0) | |
2178 | ||
2c4f035f | 2179 | static enum print_line_t print_hex_fmt(struct trace_iterator *iter) |
5e3ca0ec IM |
2180 | { |
2181 | struct trace_seq *s = &iter->seq; | |
2182 | unsigned char newline = '\n'; | |
2183 | struct trace_entry *entry; | |
bac524d3 | 2184 | int S, T; |
5e3ca0ec IM |
2185 | |
2186 | entry = iter->ent; | |
dd0e545f SR |
2187 | |
2188 | if (entry->type == TRACE_CONT) | |
2c4f035f | 2189 | return TRACE_TYPE_HANDLED; |
dd0e545f | 2190 | |
777e208d | 2191 | SEQ_PUT_HEX_FIELD_RET(s, entry->pid); |
5e3ca0ec | 2192 | SEQ_PUT_HEX_FIELD_RET(s, iter->cpu); |
3928a8a2 | 2193 | SEQ_PUT_HEX_FIELD_RET(s, iter->ts); |
5e3ca0ec IM |
2194 | |
2195 | switch (entry->type) { | |
777e208d | 2196 | case TRACE_FN: { |
7104f300 SR |
2197 | struct ftrace_entry *field; |
2198 | ||
2199 | trace_assign_type(field, entry); | |
777e208d SR |
2200 | |
2201 | SEQ_PUT_HEX_FIELD_RET(s, field->ip); | |
2202 | SEQ_PUT_HEX_FIELD_RET(s, field->parent_ip); | |
5e3ca0ec | 2203 | break; |
777e208d | 2204 | } |
5e3ca0ec | 2205 | case TRACE_CTX: |
777e208d | 2206 | case TRACE_WAKE: { |
7104f300 SR |
2207 | struct ctx_switch_entry *field; |
2208 | ||
2209 | trace_assign_type(field, entry); | |
777e208d SR |
2210 | |
2211 | S = field->prev_state < sizeof(state_to_char) ? | |
2212 | state_to_char[field->prev_state] : 'X'; | |
2213 | T = field->next_state < sizeof(state_to_char) ? | |
2214 | state_to_char[field->next_state] : 'X'; | |
57422797 IM |
2215 | if (entry->type == TRACE_WAKE) |
2216 | S = '+'; | |
777e208d SR |
2217 | SEQ_PUT_HEX_FIELD_RET(s, field->prev_pid); |
2218 | SEQ_PUT_HEX_FIELD_RET(s, field->prev_prio); | |
5e3ca0ec | 2219 | SEQ_PUT_HEX_FIELD_RET(s, S); |
777e208d SR |
2220 | SEQ_PUT_HEX_FIELD_RET(s, field->next_cpu); |
2221 | SEQ_PUT_HEX_FIELD_RET(s, field->next_pid); | |
2222 | SEQ_PUT_HEX_FIELD_RET(s, field->next_prio); | |
bac524d3 | 2223 | SEQ_PUT_HEX_FIELD_RET(s, T); |
5e3ca0ec | 2224 | break; |
777e208d | 2225 | } |
5e3ca0ec | 2226 | case TRACE_SPECIAL: |
02b67518 | 2227 | case TRACE_USER_STACK: |
777e208d | 2228 | case TRACE_STACK: { |
7104f300 SR |
2229 | struct special_entry *field; |
2230 | ||
2231 | trace_assign_type(field, entry); | |
777e208d SR |
2232 | |
2233 | SEQ_PUT_HEX_FIELD_RET(s, field->arg1); | |
2234 | SEQ_PUT_HEX_FIELD_RET(s, field->arg2); | |
2235 | SEQ_PUT_HEX_FIELD_RET(s, field->arg3); | |
5e3ca0ec IM |
2236 | break; |
2237 | } | |
777e208d | 2238 | } |
5e3ca0ec IM |
2239 | SEQ_PUT_FIELD_RET(s, newline); |
2240 | ||
2c4f035f | 2241 | return TRACE_TYPE_HANDLED; |
5e3ca0ec IM |
2242 | } |
2243 | ||
2c4f035f | 2244 | static enum print_line_t print_bin_fmt(struct trace_iterator *iter) |
cb0f12aa IM |
2245 | { |
2246 | struct trace_seq *s = &iter->seq; | |
2247 | struct trace_entry *entry; | |
2248 | ||
2249 | entry = iter->ent; | |
dd0e545f SR |
2250 | |
2251 | if (entry->type == TRACE_CONT) | |
2c4f035f | 2252 | return TRACE_TYPE_HANDLED; |
dd0e545f | 2253 | |
777e208d | 2254 | SEQ_PUT_FIELD_RET(s, entry->pid); |
072ba498 | 2255 | SEQ_PUT_FIELD_RET(s, entry->cpu); |
3928a8a2 | 2256 | SEQ_PUT_FIELD_RET(s, iter->ts); |
cb0f12aa IM |
2257 | |
2258 | switch (entry->type) { | |
777e208d | 2259 | case TRACE_FN: { |
7104f300 SR |
2260 | struct ftrace_entry *field; |
2261 | ||
2262 | trace_assign_type(field, entry); | |
777e208d SR |
2263 | |
2264 | SEQ_PUT_FIELD_RET(s, field->ip); | |
2265 | SEQ_PUT_FIELD_RET(s, field->parent_ip); | |
cb0f12aa | 2266 | break; |
777e208d SR |
2267 | } |
2268 | case TRACE_CTX: { | |
7104f300 SR |
2269 | struct ctx_switch_entry *field; |
2270 | ||
2271 | trace_assign_type(field, entry); | |
777e208d SR |
2272 | |
2273 | SEQ_PUT_FIELD_RET(s, field->prev_pid); | |
2274 | SEQ_PUT_FIELD_RET(s, field->prev_prio); | |
2275 | SEQ_PUT_FIELD_RET(s, field->prev_state); | |
2276 | SEQ_PUT_FIELD_RET(s, field->next_pid); | |
2277 | SEQ_PUT_FIELD_RET(s, field->next_prio); | |
2278 | SEQ_PUT_FIELD_RET(s, field->next_state); | |
cb0f12aa | 2279 | break; |
777e208d | 2280 | } |
f0a920d5 | 2281 | case TRACE_SPECIAL: |
02b67518 | 2282 | case TRACE_USER_STACK: |
777e208d | 2283 | case TRACE_STACK: { |
7104f300 SR |
2284 | struct special_entry *field; |
2285 | ||
2286 | trace_assign_type(field, entry); | |
777e208d SR |
2287 | |
2288 | SEQ_PUT_FIELD_RET(s, field->arg1); | |
2289 | SEQ_PUT_FIELD_RET(s, field->arg2); | |
2290 | SEQ_PUT_FIELD_RET(s, field->arg3); | |
f0a920d5 | 2291 | break; |
cb0f12aa | 2292 | } |
777e208d | 2293 | } |
cb0f12aa IM |
2294 | return 1; |
2295 | } | |
2296 | ||
bc0c38d1 SR |
2297 | static int trace_empty(struct trace_iterator *iter) |
2298 | { | |
bc0c38d1 SR |
2299 | int cpu; |
2300 | ||
ab46428c | 2301 | for_each_tracing_cpu(cpu) { |
d769041f SR |
2302 | if (iter->buffer_iter[cpu]) { |
2303 | if (!ring_buffer_iter_empty(iter->buffer_iter[cpu])) | |
2304 | return 0; | |
2305 | } else { | |
2306 | if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu)) | |
2307 | return 0; | |
2308 | } | |
bc0c38d1 | 2309 | } |
d769041f | 2310 | |
797d3712 | 2311 | return 1; |
bc0c38d1 SR |
2312 | } |
2313 | ||
2c4f035f | 2314 | static enum print_line_t print_trace_line(struct trace_iterator *iter) |
f9896bf3 | 2315 | { |
2c4f035f FW |
2316 | enum print_line_t ret; |
2317 | ||
2318 | if (iter->trace && iter->trace->print_line) { | |
2319 | ret = iter->trace->print_line(iter); | |
2320 | if (ret != TRACE_TYPE_UNHANDLED) | |
2321 | return ret; | |
2322 | } | |
72829bc3 | 2323 | |
cb0f12aa IM |
2324 | if (trace_flags & TRACE_ITER_BIN) |
2325 | return print_bin_fmt(iter); | |
2326 | ||
5e3ca0ec IM |
2327 | if (trace_flags & TRACE_ITER_HEX) |
2328 | return print_hex_fmt(iter); | |
2329 | ||
f9896bf3 IM |
2330 | if (trace_flags & TRACE_ITER_RAW) |
2331 | return print_raw_fmt(iter); | |
2332 | ||
2333 | if (iter->iter_flags & TRACE_FILE_LAT_FMT) | |
2334 | return print_lat_fmt(iter, iter->idx, iter->cpu); | |
2335 | ||
2336 | return print_trace_fmt(iter); | |
2337 | } | |
2338 | ||
bc0c38d1 SR |
2339 | static int s_show(struct seq_file *m, void *v) |
2340 | { | |
2341 | struct trace_iterator *iter = v; | |
2342 | ||
2343 | if (iter->ent == NULL) { | |
2344 | if (iter->tr) { | |
2345 | seq_printf(m, "# tracer: %s\n", iter->trace->name); | |
2346 | seq_puts(m, "#\n"); | |
2347 | } | |
8bba1bf5 MM |
2348 | if (iter->trace && iter->trace->print_header) |
2349 | iter->trace->print_header(m); | |
2350 | else if (iter->iter_flags & TRACE_FILE_LAT_FMT) { | |
bc0c38d1 SR |
2351 | /* print nothing if the buffers are empty */ |
2352 | if (trace_empty(iter)) | |
2353 | return 0; | |
2354 | print_trace_header(m, iter); | |
2355 | if (!(trace_flags & TRACE_ITER_VERBOSE)) | |
2356 | print_lat_help_header(m); | |
2357 | } else { | |
2358 | if (!(trace_flags & TRACE_ITER_VERBOSE)) | |
2359 | print_func_help_header(m); | |
2360 | } | |
2361 | } else { | |
f9896bf3 | 2362 | print_trace_line(iter); |
214023c3 | 2363 | trace_print_seq(m, &iter->seq); |
bc0c38d1 SR |
2364 | } |
2365 | ||
2366 | return 0; | |
2367 | } | |
2368 | ||
2369 | static struct seq_operations tracer_seq_ops = { | |
4bf39a94 IM |
2370 | .start = s_start, |
2371 | .next = s_next, | |
2372 | .stop = s_stop, | |
2373 | .show = s_show, | |
bc0c38d1 SR |
2374 | }; |
2375 | ||
e309b41d | 2376 | static struct trace_iterator * |
bc0c38d1 SR |
2377 | __tracing_open(struct inode *inode, struct file *file, int *ret) |
2378 | { | |
2379 | struct trace_iterator *iter; | |
3928a8a2 SR |
2380 | struct seq_file *m; |
2381 | int cpu; | |
bc0c38d1 | 2382 | |
60a11774 SR |
2383 | if (tracing_disabled) { |
2384 | *ret = -ENODEV; | |
2385 | return NULL; | |
2386 | } | |
2387 | ||
bc0c38d1 SR |
2388 | iter = kzalloc(sizeof(*iter), GFP_KERNEL); |
2389 | if (!iter) { | |
2390 | *ret = -ENOMEM; | |
2391 | goto out; | |
2392 | } | |
2393 | ||
2394 | mutex_lock(&trace_types_lock); | |
2395 | if (current_trace && current_trace->print_max) | |
2396 | iter->tr = &max_tr; | |
2397 | else | |
2398 | iter->tr = inode->i_private; | |
2399 | iter->trace = current_trace; | |
2400 | iter->pos = -1; | |
2401 | ||
8bba1bf5 MM |
2402 | /* Notify the tracer early; before we stop tracing. */ |
2403 | if (iter->trace && iter->trace->open) | |
2404 | iter->trace->open(iter); | |
2405 | ||
12ef7d44 SR |
2406 | /* Annotate start of buffers if we had overruns */ |
2407 | if (ring_buffer_overruns(iter->tr->buffer)) | |
2408 | iter->iter_flags |= TRACE_FILE_ANNOTATE; | |
2409 | ||
2410 | ||
3928a8a2 | 2411 | for_each_tracing_cpu(cpu) { |
d769041f | 2412 | |
3928a8a2 SR |
2413 | iter->buffer_iter[cpu] = |
2414 | ring_buffer_read_start(iter->tr->buffer, cpu); | |
d769041f | 2415 | |
3928a8a2 SR |
2416 | if (!iter->buffer_iter[cpu]) |
2417 | goto fail_buffer; | |
2418 | } | |
2419 | ||
bc0c38d1 SR |
2420 | /* TODO stop tracer */ |
2421 | *ret = seq_open(file, &tracer_seq_ops); | |
3928a8a2 SR |
2422 | if (*ret) |
2423 | goto fail_buffer; | |
bc0c38d1 | 2424 | |
3928a8a2 SR |
2425 | m = file->private_data; |
2426 | m->private = iter; | |
bc0c38d1 | 2427 | |
3928a8a2 | 2428 | /* stop the trace while dumping */ |
9036990d | 2429 | tracing_stop(); |
3928a8a2 | 2430 | |
bc0c38d1 SR |
2431 | mutex_unlock(&trace_types_lock); |
2432 | ||
2433 | out: | |
2434 | return iter; | |
3928a8a2 SR |
2435 | |
2436 | fail_buffer: | |
2437 | for_each_tracing_cpu(cpu) { | |
2438 | if (iter->buffer_iter[cpu]) | |
2439 | ring_buffer_read_finish(iter->buffer_iter[cpu]); | |
2440 | } | |
2441 | mutex_unlock(&trace_types_lock); | |
0bb943c7 | 2442 | kfree(iter); |
3928a8a2 SR |
2443 | |
2444 | return ERR_PTR(-ENOMEM); | |
bc0c38d1 SR |
2445 | } |
2446 | ||
2447 | int tracing_open_generic(struct inode *inode, struct file *filp) | |
2448 | { | |
60a11774 SR |
2449 | if (tracing_disabled) |
2450 | return -ENODEV; | |
2451 | ||
bc0c38d1 SR |
2452 | filp->private_data = inode->i_private; |
2453 | return 0; | |
2454 | } | |
2455 | ||
2456 | int tracing_release(struct inode *inode, struct file *file) | |
2457 | { | |
2458 | struct seq_file *m = (struct seq_file *)file->private_data; | |
2459 | struct trace_iterator *iter = m->private; | |
3928a8a2 | 2460 | int cpu; |
bc0c38d1 SR |
2461 | |
2462 | mutex_lock(&trace_types_lock); | |
3928a8a2 SR |
2463 | for_each_tracing_cpu(cpu) { |
2464 | if (iter->buffer_iter[cpu]) | |
2465 | ring_buffer_read_finish(iter->buffer_iter[cpu]); | |
2466 | } | |
2467 | ||
bc0c38d1 SR |
2468 | if (iter->trace && iter->trace->close) |
2469 | iter->trace->close(iter); | |
2470 | ||
2471 | /* reenable tracing if it was previously enabled */ | |
9036990d | 2472 | tracing_start(); |
bc0c38d1 SR |
2473 | mutex_unlock(&trace_types_lock); |
2474 | ||
2475 | seq_release(inode, file); | |
2476 | kfree(iter); | |
2477 | return 0; | |
2478 | } | |
2479 | ||
2480 | static int tracing_open(struct inode *inode, struct file *file) | |
2481 | { | |
2482 | int ret; | |
2483 | ||
2484 | __tracing_open(inode, file, &ret); | |
2485 | ||
2486 | return ret; | |
2487 | } | |
2488 | ||
2489 | static int tracing_lt_open(struct inode *inode, struct file *file) | |
2490 | { | |
2491 | struct trace_iterator *iter; | |
2492 | int ret; | |
2493 | ||
2494 | iter = __tracing_open(inode, file, &ret); | |
2495 | ||
2496 | if (!ret) | |
2497 | iter->iter_flags |= TRACE_FILE_LAT_FMT; | |
2498 | ||
2499 | return ret; | |
2500 | } | |
2501 | ||
2502 | ||
e309b41d | 2503 | static void * |
bc0c38d1 SR |
2504 | t_next(struct seq_file *m, void *v, loff_t *pos) |
2505 | { | |
2506 | struct tracer *t = m->private; | |
2507 | ||
2508 | (*pos)++; | |
2509 | ||
2510 | if (t) | |
2511 | t = t->next; | |
2512 | ||
2513 | m->private = t; | |
2514 | ||
2515 | return t; | |
2516 | } | |
2517 | ||
2518 | static void *t_start(struct seq_file *m, loff_t *pos) | |
2519 | { | |
2520 | struct tracer *t = m->private; | |
2521 | loff_t l = 0; | |
2522 | ||
2523 | mutex_lock(&trace_types_lock); | |
2524 | for (; t && l < *pos; t = t_next(m, t, &l)) | |
2525 | ; | |
2526 | ||
2527 | return t; | |
2528 | } | |
2529 | ||
2530 | static void t_stop(struct seq_file *m, void *p) | |
2531 | { | |
2532 | mutex_unlock(&trace_types_lock); | |
2533 | } | |
2534 | ||
2535 | static int t_show(struct seq_file *m, void *v) | |
2536 | { | |
2537 | struct tracer *t = v; | |
2538 | ||
2539 | if (!t) | |
2540 | return 0; | |
2541 | ||
2542 | seq_printf(m, "%s", t->name); | |
2543 | if (t->next) | |
2544 | seq_putc(m, ' '); | |
2545 | else | |
2546 | seq_putc(m, '\n'); | |
2547 | ||
2548 | return 0; | |
2549 | } | |
2550 | ||
2551 | static struct seq_operations show_traces_seq_ops = { | |
4bf39a94 IM |
2552 | .start = t_start, |
2553 | .next = t_next, | |
2554 | .stop = t_stop, | |
2555 | .show = t_show, | |
bc0c38d1 SR |
2556 | }; |
2557 | ||
2558 | static int show_traces_open(struct inode *inode, struct file *file) | |
2559 | { | |
2560 | int ret; | |
2561 | ||
60a11774 SR |
2562 | if (tracing_disabled) |
2563 | return -ENODEV; | |
2564 | ||
bc0c38d1 SR |
2565 | ret = seq_open(file, &show_traces_seq_ops); |
2566 | if (!ret) { | |
2567 | struct seq_file *m = file->private_data; | |
2568 | m->private = trace_types; | |
2569 | } | |
2570 | ||
2571 | return ret; | |
2572 | } | |
2573 | ||
2574 | static struct file_operations tracing_fops = { | |
4bf39a94 IM |
2575 | .open = tracing_open, |
2576 | .read = seq_read, | |
2577 | .llseek = seq_lseek, | |
2578 | .release = tracing_release, | |
bc0c38d1 SR |
2579 | }; |
2580 | ||
2581 | static struct file_operations tracing_lt_fops = { | |
4bf39a94 IM |
2582 | .open = tracing_lt_open, |
2583 | .read = seq_read, | |
2584 | .llseek = seq_lseek, | |
2585 | .release = tracing_release, | |
bc0c38d1 SR |
2586 | }; |
2587 | ||
2588 | static struct file_operations show_traces_fops = { | |
c7078de1 IM |
2589 | .open = show_traces_open, |
2590 | .read = seq_read, | |
2591 | .release = seq_release, | |
2592 | }; | |
2593 | ||
36dfe925 IM |
2594 | /* |
2595 | * Only trace on a CPU if the bitmask is set: | |
2596 | */ | |
2597 | static cpumask_t tracing_cpumask = CPU_MASK_ALL; | |
2598 | ||
2599 | /* | |
2600 | * When tracing/tracing_cpu_mask is modified then this holds | |
2601 | * the new bitmask we are about to install: | |
2602 | */ | |
2603 | static cpumask_t tracing_cpumask_new; | |
2604 | ||
2605 | /* | |
2606 | * The tracer itself will not take this lock, but still we want | |
2607 | * to provide a consistent cpumask to user-space: | |
2608 | */ | |
2609 | static DEFINE_MUTEX(tracing_cpumask_update_lock); | |
2610 | ||
2611 | /* | |
2612 | * Temporary storage for the character representation of the | |
2613 | * CPU bitmask (and one more byte for the newline): | |
2614 | */ | |
2615 | static char mask_str[NR_CPUS + 1]; | |
2616 | ||
c7078de1 IM |
2617 | static ssize_t |
2618 | tracing_cpumask_read(struct file *filp, char __user *ubuf, | |
2619 | size_t count, loff_t *ppos) | |
2620 | { | |
36dfe925 | 2621 | int len; |
c7078de1 IM |
2622 | |
2623 | mutex_lock(&tracing_cpumask_update_lock); | |
36dfe925 IM |
2624 | |
2625 | len = cpumask_scnprintf(mask_str, count, tracing_cpumask); | |
2626 | if (count - len < 2) { | |
2627 | count = -EINVAL; | |
2628 | goto out_err; | |
2629 | } | |
2630 | len += sprintf(mask_str + len, "\n"); | |
2631 | count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1); | |
2632 | ||
2633 | out_err: | |
c7078de1 IM |
2634 | mutex_unlock(&tracing_cpumask_update_lock); |
2635 | ||
2636 | return count; | |
2637 | } | |
2638 | ||
2639 | static ssize_t | |
2640 | tracing_cpumask_write(struct file *filp, const char __user *ubuf, | |
2641 | size_t count, loff_t *ppos) | |
2642 | { | |
36dfe925 | 2643 | int err, cpu; |
c7078de1 IM |
2644 | |
2645 | mutex_lock(&tracing_cpumask_update_lock); | |
36dfe925 | 2646 | err = cpumask_parse_user(ubuf, count, tracing_cpumask_new); |
c7078de1 | 2647 | if (err) |
36dfe925 IM |
2648 | goto err_unlock; |
2649 | ||
a5e25883 | 2650 | local_irq_disable(); |
92205c23 | 2651 | __raw_spin_lock(&ftrace_max_lock); |
ab46428c | 2652 | for_each_tracing_cpu(cpu) { |
36dfe925 IM |
2653 | /* |
2654 | * Increase/decrease the disabled counter if we are | |
2655 | * about to flip a bit in the cpumask: | |
2656 | */ | |
2657 | if (cpu_isset(cpu, tracing_cpumask) && | |
2658 | !cpu_isset(cpu, tracing_cpumask_new)) { | |
2659 | atomic_inc(&global_trace.data[cpu]->disabled); | |
2660 | } | |
2661 | if (!cpu_isset(cpu, tracing_cpumask) && | |
2662 | cpu_isset(cpu, tracing_cpumask_new)) { | |
2663 | atomic_dec(&global_trace.data[cpu]->disabled); | |
2664 | } | |
2665 | } | |
92205c23 | 2666 | __raw_spin_unlock(&ftrace_max_lock); |
a5e25883 | 2667 | local_irq_enable(); |
36dfe925 IM |
2668 | |
2669 | tracing_cpumask = tracing_cpumask_new; | |
2670 | ||
2671 | mutex_unlock(&tracing_cpumask_update_lock); | |
c7078de1 IM |
2672 | |
2673 | return count; | |
36dfe925 IM |
2674 | |
2675 | err_unlock: | |
2676 | mutex_unlock(&tracing_cpumask_update_lock); | |
2677 | ||
2678 | return err; | |
c7078de1 IM |
2679 | } |
2680 | ||
2681 | static struct file_operations tracing_cpumask_fops = { | |
2682 | .open = tracing_open_generic, | |
2683 | .read = tracing_cpumask_read, | |
2684 | .write = tracing_cpumask_write, | |
bc0c38d1 SR |
2685 | }; |
2686 | ||
2687 | static ssize_t | |
ee6bce52 | 2688 | tracing_trace_options_read(struct file *filp, char __user *ubuf, |
bc0c38d1 SR |
2689 | size_t cnt, loff_t *ppos) |
2690 | { | |
adf9f195 | 2691 | int i; |
bc0c38d1 SR |
2692 | char *buf; |
2693 | int r = 0; | |
2694 | int len = 0; | |
adf9f195 FW |
2695 | u32 tracer_flags = current_trace->flags->val; |
2696 | struct tracer_opt *trace_opts = current_trace->flags->opts; | |
2697 | ||
bc0c38d1 SR |
2698 | |
2699 | /* calulate max size */ | |
2700 | for (i = 0; trace_options[i]; i++) { | |
2701 | len += strlen(trace_options[i]); | |
2702 | len += 3; /* "no" and space */ | |
2703 | } | |
2704 | ||
adf9f195 FW |
2705 | /* |
2706 | * Increase the size with names of options specific | |
2707 | * of the current tracer. | |
2708 | */ | |
2709 | for (i = 0; trace_opts[i].name; i++) { | |
2710 | len += strlen(trace_opts[i].name); | |
2711 | len += 3; /* "no" and space */ | |
2712 | } | |
2713 | ||
bc0c38d1 SR |
2714 | /* +2 for \n and \0 */ |
2715 | buf = kmalloc(len + 2, GFP_KERNEL); | |
2716 | if (!buf) | |
2717 | return -ENOMEM; | |
2718 | ||
2719 | for (i = 0; trace_options[i]; i++) { | |
2720 | if (trace_flags & (1 << i)) | |
2721 | r += sprintf(buf + r, "%s ", trace_options[i]); | |
2722 | else | |
2723 | r += sprintf(buf + r, "no%s ", trace_options[i]); | |
2724 | } | |
2725 | ||
adf9f195 FW |
2726 | for (i = 0; trace_opts[i].name; i++) { |
2727 | if (tracer_flags & trace_opts[i].bit) | |
2728 | r += sprintf(buf + r, "%s ", | |
2729 | trace_opts[i].name); | |
2730 | else | |
2731 | r += sprintf(buf + r, "no%s ", | |
2732 | trace_opts[i].name); | |
2733 | } | |
2734 | ||
bc0c38d1 SR |
2735 | r += sprintf(buf + r, "\n"); |
2736 | WARN_ON(r >= len + 2); | |
2737 | ||
36dfe925 | 2738 | r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
bc0c38d1 SR |
2739 | |
2740 | kfree(buf); | |
2741 | ||
2742 | return r; | |
2743 | } | |
2744 | ||
adf9f195 FW |
2745 | /* Try to assign a tracer specific option */ |
2746 | static int set_tracer_option(struct tracer *trace, char *cmp, int neg) | |
2747 | { | |
2748 | struct tracer_flags *trace_flags = trace->flags; | |
2749 | struct tracer_opt *opts = NULL; | |
2750 | int ret = 0, i = 0; | |
2751 | int len; | |
2752 | ||
2753 | for (i = 0; trace_flags->opts[i].name; i++) { | |
2754 | opts = &trace_flags->opts[i]; | |
2755 | len = strlen(opts->name); | |
2756 | ||
2757 | if (strncmp(cmp, opts->name, len) == 0) { | |
2758 | ret = trace->set_flag(trace_flags->val, | |
2759 | opts->bit, !neg); | |
2760 | break; | |
2761 | } | |
2762 | } | |
2763 | /* Not found */ | |
2764 | if (!trace_flags->opts[i].name) | |
2765 | return -EINVAL; | |
2766 | ||
2767 | /* Refused to handle */ | |
2768 | if (ret) | |
2769 | return ret; | |
2770 | ||
2771 | if (neg) | |
2772 | trace_flags->val &= ~opts->bit; | |
2773 | else | |
2774 | trace_flags->val |= opts->bit; | |
2775 | ||
2776 | return 0; | |
2777 | } | |
2778 | ||
bc0c38d1 | 2779 | static ssize_t |
ee6bce52 | 2780 | tracing_trace_options_write(struct file *filp, const char __user *ubuf, |
bc0c38d1 SR |
2781 | size_t cnt, loff_t *ppos) |
2782 | { | |
2783 | char buf[64]; | |
2784 | char *cmp = buf; | |
2785 | int neg = 0; | |
adf9f195 | 2786 | int ret; |
bc0c38d1 SR |
2787 | int i; |
2788 | ||
cffae437 SR |
2789 | if (cnt >= sizeof(buf)) |
2790 | return -EINVAL; | |
bc0c38d1 SR |
2791 | |
2792 | if (copy_from_user(&buf, ubuf, cnt)) | |
2793 | return -EFAULT; | |
2794 | ||
2795 | buf[cnt] = 0; | |
2796 | ||
2797 | if (strncmp(buf, "no", 2) == 0) { | |
2798 | neg = 1; | |
2799 | cmp += 2; | |
2800 | } | |
2801 | ||
2802 | for (i = 0; trace_options[i]; i++) { | |
2803 | int len = strlen(trace_options[i]); | |
2804 | ||
2805 | if (strncmp(cmp, trace_options[i], len) == 0) { | |
2806 | if (neg) | |
2807 | trace_flags &= ~(1 << i); | |
2808 | else | |
2809 | trace_flags |= (1 << i); | |
2810 | break; | |
2811 | } | |
2812 | } | |
adf9f195 FW |
2813 | |
2814 | /* If no option could be set, test the specific tracer options */ | |
2815 | if (!trace_options[i]) { | |
2816 | ret = set_tracer_option(current_trace, cmp, neg); | |
2817 | if (ret) | |
2818 | return ret; | |
2819 | } | |
bc0c38d1 SR |
2820 | |
2821 | filp->f_pos += cnt; | |
2822 | ||
2823 | return cnt; | |
2824 | } | |
2825 | ||
2826 | static struct file_operations tracing_iter_fops = { | |
c7078de1 | 2827 | .open = tracing_open_generic, |
ee6bce52 SR |
2828 | .read = tracing_trace_options_read, |
2829 | .write = tracing_trace_options_write, | |
bc0c38d1 SR |
2830 | }; |
2831 | ||
7bd2f24c IM |
2832 | static const char readme_msg[] = |
2833 | "tracing mini-HOWTO:\n\n" | |
2834 | "# mkdir /debug\n" | |
2835 | "# mount -t debugfs nodev /debug\n\n" | |
2836 | "# cat /debug/tracing/available_tracers\n" | |
2837 | "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n" | |
2838 | "# cat /debug/tracing/current_tracer\n" | |
2839 | "none\n" | |
2840 | "# echo sched_switch > /debug/tracing/current_tracer\n" | |
2841 | "# cat /debug/tracing/current_tracer\n" | |
2842 | "sched_switch\n" | |
ee6bce52 | 2843 | "# cat /debug/tracing/trace_options\n" |
7bd2f24c | 2844 | "noprint-parent nosym-offset nosym-addr noverbose\n" |
ee6bce52 | 2845 | "# echo print-parent > /debug/tracing/trace_options\n" |
7bd2f24c IM |
2846 | "# echo 1 > /debug/tracing/tracing_enabled\n" |
2847 | "# cat /debug/tracing/trace > /tmp/trace.txt\n" | |
2848 | "echo 0 > /debug/tracing/tracing_enabled\n" | |
2849 | ; | |
2850 | ||
2851 | static ssize_t | |
2852 | tracing_readme_read(struct file *filp, char __user *ubuf, | |
2853 | size_t cnt, loff_t *ppos) | |
2854 | { | |
2855 | return simple_read_from_buffer(ubuf, cnt, ppos, | |
2856 | readme_msg, strlen(readme_msg)); | |
2857 | } | |
2858 | ||
2859 | static struct file_operations tracing_readme_fops = { | |
c7078de1 IM |
2860 | .open = tracing_open_generic, |
2861 | .read = tracing_readme_read, | |
7bd2f24c IM |
2862 | }; |
2863 | ||
bc0c38d1 SR |
2864 | static ssize_t |
2865 | tracing_ctrl_read(struct file *filp, char __user *ubuf, | |
2866 | size_t cnt, loff_t *ppos) | |
2867 | { | |
bc0c38d1 SR |
2868 | char buf[64]; |
2869 | int r; | |
2870 | ||
9036990d | 2871 | r = sprintf(buf, "%u\n", tracer_enabled); |
4e3c3333 | 2872 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
bc0c38d1 SR |
2873 | } |
2874 | ||
2875 | static ssize_t | |
2876 | tracing_ctrl_write(struct file *filp, const char __user *ubuf, | |
2877 | size_t cnt, loff_t *ppos) | |
2878 | { | |
2879 | struct trace_array *tr = filp->private_data; | |
bc0c38d1 | 2880 | char buf[64]; |
c6caeeb1 SR |
2881 | long val; |
2882 | int ret; | |
bc0c38d1 | 2883 | |
cffae437 SR |
2884 | if (cnt >= sizeof(buf)) |
2885 | return -EINVAL; | |
bc0c38d1 SR |
2886 | |
2887 | if (copy_from_user(&buf, ubuf, cnt)) | |
2888 | return -EFAULT; | |
2889 | ||
2890 | buf[cnt] = 0; | |
2891 | ||
c6caeeb1 SR |
2892 | ret = strict_strtoul(buf, 10, &val); |
2893 | if (ret < 0) | |
2894 | return ret; | |
bc0c38d1 SR |
2895 | |
2896 | val = !!val; | |
2897 | ||
2898 | mutex_lock(&trace_types_lock); | |
9036990d SR |
2899 | if (tracer_enabled ^ val) { |
2900 | if (val) { | |
bc0c38d1 | 2901 | tracer_enabled = 1; |
9036990d SR |
2902 | if (current_trace->start) |
2903 | current_trace->start(tr); | |
2904 | tracing_start(); | |
2905 | } else { | |
bc0c38d1 | 2906 | tracer_enabled = 0; |
9036990d SR |
2907 | tracing_stop(); |
2908 | if (current_trace->stop) | |
2909 | current_trace->stop(tr); | |
2910 | } | |
bc0c38d1 SR |
2911 | } |
2912 | mutex_unlock(&trace_types_lock); | |
2913 | ||
2914 | filp->f_pos += cnt; | |
2915 | ||
2916 | return cnt; | |
2917 | } | |
2918 | ||
2919 | static ssize_t | |
2920 | tracing_set_trace_read(struct file *filp, char __user *ubuf, | |
2921 | size_t cnt, loff_t *ppos) | |
2922 | { | |
2923 | char buf[max_tracer_type_len+2]; | |
2924 | int r; | |
2925 | ||
2926 | mutex_lock(&trace_types_lock); | |
2927 | if (current_trace) | |
2928 | r = sprintf(buf, "%s\n", current_trace->name); | |
2929 | else | |
2930 | r = sprintf(buf, "\n"); | |
2931 | mutex_unlock(&trace_types_lock); | |
2932 | ||
4bf39a94 | 2933 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
bc0c38d1 SR |
2934 | } |
2935 | ||
d9e54076 | 2936 | static int tracing_set_tracer(char *buf) |
bc0c38d1 SR |
2937 | { |
2938 | struct trace_array *tr = &global_trace; | |
2939 | struct tracer *t; | |
d9e54076 | 2940 | int ret = 0; |
bc0c38d1 SR |
2941 | |
2942 | mutex_lock(&trace_types_lock); | |
2943 | for (t = trace_types; t; t = t->next) { | |
2944 | if (strcmp(t->name, buf) == 0) | |
2945 | break; | |
2946 | } | |
c2931e05 FW |
2947 | if (!t) { |
2948 | ret = -EINVAL; | |
2949 | goto out; | |
2950 | } | |
2951 | if (t == current_trace) | |
bc0c38d1 SR |
2952 | goto out; |
2953 | ||
9f029e83 | 2954 | trace_branch_disable(); |
bc0c38d1 SR |
2955 | if (current_trace && current_trace->reset) |
2956 | current_trace->reset(tr); | |
2957 | ||
2958 | current_trace = t; | |
1c80025a FW |
2959 | if (t->init) { |
2960 | ret = t->init(tr); | |
2961 | if (ret) | |
2962 | goto out; | |
2963 | } | |
bc0c38d1 | 2964 | |
9f029e83 | 2965 | trace_branch_enable(tr); |
bc0c38d1 SR |
2966 | out: |
2967 | mutex_unlock(&trace_types_lock); | |
2968 | ||
d9e54076 PZ |
2969 | return ret; |
2970 | } | |
2971 | ||
2972 | static ssize_t | |
2973 | tracing_set_trace_write(struct file *filp, const char __user *ubuf, | |
2974 | size_t cnt, loff_t *ppos) | |
2975 | { | |
2976 | char buf[max_tracer_type_len+1]; | |
2977 | int i; | |
2978 | size_t ret; | |
e6e7a65a FW |
2979 | int err; |
2980 | ||
2981 | ret = cnt; | |
d9e54076 PZ |
2982 | |
2983 | if (cnt > max_tracer_type_len) | |
2984 | cnt = max_tracer_type_len; | |
2985 | ||
2986 | if (copy_from_user(&buf, ubuf, cnt)) | |
2987 | return -EFAULT; | |
2988 | ||
2989 | buf[cnt] = 0; | |
2990 | ||
2991 | /* strip ending whitespace. */ | |
2992 | for (i = cnt - 1; i > 0 && isspace(buf[i]); i--) | |
2993 | buf[i] = 0; | |
2994 | ||
e6e7a65a FW |
2995 | err = tracing_set_tracer(buf); |
2996 | if (err) | |
2997 | return err; | |
d9e54076 | 2998 | |
e6e7a65a | 2999 | filp->f_pos += ret; |
bc0c38d1 | 3000 | |
c2931e05 | 3001 | return ret; |
bc0c38d1 SR |
3002 | } |
3003 | ||
3004 | static ssize_t | |
3005 | tracing_max_lat_read(struct file *filp, char __user *ubuf, | |
3006 | size_t cnt, loff_t *ppos) | |
3007 | { | |
3008 | unsigned long *ptr = filp->private_data; | |
3009 | char buf[64]; | |
3010 | int r; | |
3011 | ||
cffae437 | 3012 | r = snprintf(buf, sizeof(buf), "%ld\n", |
bc0c38d1 | 3013 | *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr)); |
cffae437 SR |
3014 | if (r > sizeof(buf)) |
3015 | r = sizeof(buf); | |
4bf39a94 | 3016 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
bc0c38d1 SR |
3017 | } |
3018 | ||
3019 | static ssize_t | |
3020 | tracing_max_lat_write(struct file *filp, const char __user *ubuf, | |
3021 | size_t cnt, loff_t *ppos) | |
3022 | { | |
3023 | long *ptr = filp->private_data; | |
bc0c38d1 | 3024 | char buf[64]; |
c6caeeb1 SR |
3025 | long val; |
3026 | int ret; | |
bc0c38d1 | 3027 | |
cffae437 SR |
3028 | if (cnt >= sizeof(buf)) |
3029 | return -EINVAL; | |
bc0c38d1 SR |
3030 | |
3031 | if (copy_from_user(&buf, ubuf, cnt)) | |
3032 | return -EFAULT; | |
3033 | ||
3034 | buf[cnt] = 0; | |
3035 | ||
c6caeeb1 SR |
3036 | ret = strict_strtoul(buf, 10, &val); |
3037 | if (ret < 0) | |
3038 | return ret; | |
bc0c38d1 SR |
3039 | |
3040 | *ptr = val * 1000; | |
3041 | ||
3042 | return cnt; | |
3043 | } | |
3044 | ||
b3806b43 SR |
3045 | static atomic_t tracing_reader; |
3046 | ||
3047 | static int tracing_open_pipe(struct inode *inode, struct file *filp) | |
3048 | { | |
3049 | struct trace_iterator *iter; | |
3050 | ||
3051 | if (tracing_disabled) | |
3052 | return -ENODEV; | |
3053 | ||
3054 | /* We only allow for reader of the pipe */ | |
3055 | if (atomic_inc_return(&tracing_reader) != 1) { | |
3056 | atomic_dec(&tracing_reader); | |
3057 | return -EBUSY; | |
3058 | } | |
3059 | ||
3060 | /* create a buffer to store the information to pass to userspace */ | |
3061 | iter = kzalloc(sizeof(*iter), GFP_KERNEL); | |
3062 | if (!iter) | |
3063 | return -ENOMEM; | |
3064 | ||
107bad8b | 3065 | mutex_lock(&trace_types_lock); |
a309720c SR |
3066 | |
3067 | /* trace pipe does not show start of buffer */ | |
3068 | cpus_setall(iter->started); | |
3069 | ||
b3806b43 | 3070 | iter->tr = &global_trace; |
72829bc3 | 3071 | iter->trace = current_trace; |
b3806b43 SR |
3072 | filp->private_data = iter; |
3073 | ||
107bad8b SR |
3074 | if (iter->trace->pipe_open) |
3075 | iter->trace->pipe_open(iter); | |
3076 | mutex_unlock(&trace_types_lock); | |
3077 | ||
b3806b43 SR |
3078 | return 0; |
3079 | } | |
3080 | ||
3081 | static int tracing_release_pipe(struct inode *inode, struct file *file) | |
3082 | { | |
3083 | struct trace_iterator *iter = file->private_data; | |
3084 | ||
3085 | kfree(iter); | |
3086 | atomic_dec(&tracing_reader); | |
3087 | ||
3088 | return 0; | |
3089 | } | |
3090 | ||
2a2cc8f7 SSP |
3091 | static unsigned int |
3092 | tracing_poll_pipe(struct file *filp, poll_table *poll_table) | |
3093 | { | |
3094 | struct trace_iterator *iter = filp->private_data; | |
3095 | ||
3096 | if (trace_flags & TRACE_ITER_BLOCK) { | |
3097 | /* | |
3098 | * Always select as readable when in blocking mode | |
3099 | */ | |
3100 | return POLLIN | POLLRDNORM; | |
afc2abc0 | 3101 | } else { |
2a2cc8f7 SSP |
3102 | if (!trace_empty(iter)) |
3103 | return POLLIN | POLLRDNORM; | |
3104 | poll_wait(filp, &trace_wait, poll_table); | |
3105 | if (!trace_empty(iter)) | |
3106 | return POLLIN | POLLRDNORM; | |
3107 | ||
3108 | return 0; | |
3109 | } | |
3110 | } | |
3111 | ||
b3806b43 SR |
3112 | /* |
3113 | * Consumer reader. | |
3114 | */ | |
3115 | static ssize_t | |
3116 | tracing_read_pipe(struct file *filp, char __user *ubuf, | |
3117 | size_t cnt, loff_t *ppos) | |
3118 | { | |
3119 | struct trace_iterator *iter = filp->private_data; | |
6c6c2796 | 3120 | ssize_t sret; |
b3806b43 SR |
3121 | |
3122 | /* return any leftover data */ | |
6c6c2796 PP |
3123 | sret = trace_seq_to_user(&iter->seq, ubuf, cnt); |
3124 | if (sret != -EBUSY) | |
3125 | return sret; | |
b3806b43 | 3126 | |
6c6c2796 | 3127 | trace_seq_reset(&iter->seq); |
b3806b43 | 3128 | |
107bad8b SR |
3129 | mutex_lock(&trace_types_lock); |
3130 | if (iter->trace->read) { | |
6c6c2796 PP |
3131 | sret = iter->trace->read(iter, filp, ubuf, cnt, ppos); |
3132 | if (sret) | |
107bad8b | 3133 | goto out; |
107bad8b SR |
3134 | } |
3135 | ||
9ff4b974 PP |
3136 | waitagain: |
3137 | sret = 0; | |
b3806b43 | 3138 | while (trace_empty(iter)) { |
2dc8f095 | 3139 | |
107bad8b | 3140 | if ((filp->f_flags & O_NONBLOCK)) { |
6c6c2796 | 3141 | sret = -EAGAIN; |
107bad8b SR |
3142 | goto out; |
3143 | } | |
2dc8f095 | 3144 | |
b3806b43 SR |
3145 | /* |
3146 | * This is a make-shift waitqueue. The reason we don't use | |
3147 | * an actual wait queue is because: | |
3148 | * 1) we only ever have one waiter | |
3149 | * 2) the tracing, traces all functions, we don't want | |
3150 | * the overhead of calling wake_up and friends | |
3151 | * (and tracing them too) | |
3152 | * Anyway, this is really very primitive wakeup. | |
3153 | */ | |
3154 | set_current_state(TASK_INTERRUPTIBLE); | |
3155 | iter->tr->waiter = current; | |
3156 | ||
107bad8b SR |
3157 | mutex_unlock(&trace_types_lock); |
3158 | ||
9fe068e9 IM |
3159 | /* sleep for 100 msecs, and try again. */ |
3160 | schedule_timeout(HZ/10); | |
b3806b43 | 3161 | |
107bad8b SR |
3162 | mutex_lock(&trace_types_lock); |
3163 | ||
b3806b43 SR |
3164 | iter->tr->waiter = NULL; |
3165 | ||
107bad8b | 3166 | if (signal_pending(current)) { |
6c6c2796 | 3167 | sret = -EINTR; |
107bad8b SR |
3168 | goto out; |
3169 | } | |
b3806b43 | 3170 | |
84527997 | 3171 | if (iter->trace != current_trace) |
107bad8b | 3172 | goto out; |
84527997 | 3173 | |
b3806b43 SR |
3174 | /* |
3175 | * We block until we read something and tracing is disabled. | |
3176 | * We still block if tracing is disabled, but we have never | |
3177 | * read anything. This allows a user to cat this file, and | |
3178 | * then enable tracing. But after we have read something, | |
3179 | * we give an EOF when tracing is again disabled. | |
3180 | * | |
3181 | * iter->pos will be 0 if we haven't read anything. | |
3182 | */ | |
3183 | if (!tracer_enabled && iter->pos) | |
3184 | break; | |
3185 | ||
3186 | continue; | |
3187 | } | |
3188 | ||
3189 | /* stop when tracing is finished */ | |
3190 | if (trace_empty(iter)) | |
107bad8b | 3191 | goto out; |
b3806b43 SR |
3192 | |
3193 | if (cnt >= PAGE_SIZE) | |
3194 | cnt = PAGE_SIZE - 1; | |
3195 | ||
53d0aa77 | 3196 | /* reset all but tr, trace, and overruns */ |
53d0aa77 SR |
3197 | memset(&iter->seq, 0, |
3198 | sizeof(struct trace_iterator) - | |
3199 | offsetof(struct trace_iterator, seq)); | |
4823ed7e | 3200 | iter->pos = -1; |
b3806b43 | 3201 | |
088b1e42 | 3202 | while (find_next_entry_inc(iter) != NULL) { |
2c4f035f | 3203 | enum print_line_t ret; |
088b1e42 SR |
3204 | int len = iter->seq.len; |
3205 | ||
f9896bf3 | 3206 | ret = print_trace_line(iter); |
2c4f035f | 3207 | if (ret == TRACE_TYPE_PARTIAL_LINE) { |
088b1e42 SR |
3208 | /* don't print partial lines */ |
3209 | iter->seq.len = len; | |
b3806b43 | 3210 | break; |
088b1e42 | 3211 | } |
b3806b43 SR |
3212 | |
3213 | trace_consume(iter); | |
3214 | ||
3215 | if (iter->seq.len >= cnt) | |
3216 | break; | |
b3806b43 SR |
3217 | } |
3218 | ||
b3806b43 | 3219 | /* Now copy what we have to the user */ |
6c6c2796 PP |
3220 | sret = trace_seq_to_user(&iter->seq, ubuf, cnt); |
3221 | if (iter->seq.readpos >= iter->seq.len) | |
b3806b43 | 3222 | trace_seq_reset(&iter->seq); |
9ff4b974 PP |
3223 | |
3224 | /* | |
3225 | * If there was nothing to send to user, inspite of consuming trace | |
3226 | * entries, go back to wait for more entries. | |
3227 | */ | |
6c6c2796 | 3228 | if (sret == -EBUSY) |
9ff4b974 | 3229 | goto waitagain; |
b3806b43 | 3230 | |
107bad8b SR |
3231 | out: |
3232 | mutex_unlock(&trace_types_lock); | |
3233 | ||
6c6c2796 | 3234 | return sret; |
b3806b43 SR |
3235 | } |
3236 | ||
a98a3c3f SR |
3237 | static ssize_t |
3238 | tracing_entries_read(struct file *filp, char __user *ubuf, | |
3239 | size_t cnt, loff_t *ppos) | |
3240 | { | |
3241 | struct trace_array *tr = filp->private_data; | |
3242 | char buf[64]; | |
3243 | int r; | |
3244 | ||
1696b2b0 | 3245 | r = sprintf(buf, "%lu\n", tr->entries >> 10); |
a98a3c3f SR |
3246 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
3247 | } | |
3248 | ||
3249 | static ssize_t | |
3250 | tracing_entries_write(struct file *filp, const char __user *ubuf, | |
3251 | size_t cnt, loff_t *ppos) | |
3252 | { | |
3253 | unsigned long val; | |
3254 | char buf[64]; | |
bf5e6519 | 3255 | int ret, cpu; |
a98a3c3f | 3256 | |
cffae437 SR |
3257 | if (cnt >= sizeof(buf)) |
3258 | return -EINVAL; | |
a98a3c3f SR |
3259 | |
3260 | if (copy_from_user(&buf, ubuf, cnt)) | |
3261 | return -EFAULT; | |
3262 | ||
3263 | buf[cnt] = 0; | |
3264 | ||
c6caeeb1 SR |
3265 | ret = strict_strtoul(buf, 10, &val); |
3266 | if (ret < 0) | |
3267 | return ret; | |
a98a3c3f SR |
3268 | |
3269 | /* must have at least 1 entry */ | |
3270 | if (!val) | |
3271 | return -EINVAL; | |
3272 | ||
3273 | mutex_lock(&trace_types_lock); | |
3274 | ||
c76f0694 | 3275 | tracing_stop(); |
a98a3c3f | 3276 | |
bf5e6519 SR |
3277 | /* disable all cpu buffers */ |
3278 | for_each_tracing_cpu(cpu) { | |
3279 | if (global_trace.data[cpu]) | |
3280 | atomic_inc(&global_trace.data[cpu]->disabled); | |
3281 | if (max_tr.data[cpu]) | |
3282 | atomic_inc(&max_tr.data[cpu]->disabled); | |
3283 | } | |
3284 | ||
1696b2b0 SR |
3285 | /* value is in KB */ |
3286 | val <<= 10; | |
3287 | ||
3928a8a2 SR |
3288 | if (val != global_trace.entries) { |
3289 | ret = ring_buffer_resize(global_trace.buffer, val); | |
3290 | if (ret < 0) { | |
3291 | cnt = ret; | |
3eefae99 SR |
3292 | goto out; |
3293 | } | |
3294 | ||
3928a8a2 SR |
3295 | ret = ring_buffer_resize(max_tr.buffer, val); |
3296 | if (ret < 0) { | |
3297 | int r; | |
3298 | cnt = ret; | |
3299 | r = ring_buffer_resize(global_trace.buffer, | |
3300 | global_trace.entries); | |
3301 | if (r < 0) { | |
3302 | /* AARGH! We are left with different | |
3303 | * size max buffer!!!! */ | |
3304 | WARN_ON(1); | |
3305 | tracing_disabled = 1; | |
a98a3c3f | 3306 | } |
3928a8a2 | 3307 | goto out; |
a98a3c3f | 3308 | } |
3eefae99 | 3309 | |
3928a8a2 | 3310 | global_trace.entries = val; |
a98a3c3f SR |
3311 | } |
3312 | ||
3313 | filp->f_pos += cnt; | |
3314 | ||
19384c03 SR |
3315 | /* If check pages failed, return ENOMEM */ |
3316 | if (tracing_disabled) | |
3317 | cnt = -ENOMEM; | |
a98a3c3f | 3318 | out: |
bf5e6519 SR |
3319 | for_each_tracing_cpu(cpu) { |
3320 | if (global_trace.data[cpu]) | |
3321 | atomic_dec(&global_trace.data[cpu]->disabled); | |
3322 | if (max_tr.data[cpu]) | |
3323 | atomic_dec(&max_tr.data[cpu]->disabled); | |
3324 | } | |
3325 | ||
c76f0694 | 3326 | tracing_start(); |
a98a3c3f SR |
3327 | max_tr.entries = global_trace.entries; |
3328 | mutex_unlock(&trace_types_lock); | |
3329 | ||
3330 | return cnt; | |
3331 | } | |
3332 | ||
5bf9a1ee PP |
3333 | static int mark_printk(const char *fmt, ...) |
3334 | { | |
3335 | int ret; | |
3336 | va_list args; | |
3337 | va_start(args, fmt); | |
3338 | ret = trace_vprintk(0, fmt, args); | |
3339 | va_end(args); | |
3340 | return ret; | |
3341 | } | |
3342 | ||
3343 | static ssize_t | |
3344 | tracing_mark_write(struct file *filp, const char __user *ubuf, | |
3345 | size_t cnt, loff_t *fpos) | |
3346 | { | |
3347 | char *buf; | |
3348 | char *end; | |
5bf9a1ee | 3349 | |
c76f0694 | 3350 | if (tracing_disabled) |
5bf9a1ee PP |
3351 | return -EINVAL; |
3352 | ||
3353 | if (cnt > TRACE_BUF_SIZE) | |
3354 | cnt = TRACE_BUF_SIZE; | |
3355 | ||
3356 | buf = kmalloc(cnt + 1, GFP_KERNEL); | |
3357 | if (buf == NULL) | |
3358 | return -ENOMEM; | |
3359 | ||
3360 | if (copy_from_user(buf, ubuf, cnt)) { | |
3361 | kfree(buf); | |
3362 | return -EFAULT; | |
3363 | } | |
3364 | ||
3365 | /* Cut from the first nil or newline. */ | |
3366 | buf[cnt] = '\0'; | |
3367 | end = strchr(buf, '\n'); | |
3368 | if (end) | |
3369 | *end = '\0'; | |
3370 | ||
3371 | cnt = mark_printk("%s\n", buf); | |
3372 | kfree(buf); | |
3373 | *fpos += cnt; | |
3374 | ||
3375 | return cnt; | |
3376 | } | |
3377 | ||
bc0c38d1 | 3378 | static struct file_operations tracing_max_lat_fops = { |
4bf39a94 IM |
3379 | .open = tracing_open_generic, |
3380 | .read = tracing_max_lat_read, | |
3381 | .write = tracing_max_lat_write, | |
bc0c38d1 SR |
3382 | }; |
3383 | ||
3384 | static struct file_operations tracing_ctrl_fops = { | |
4bf39a94 IM |
3385 | .open = tracing_open_generic, |
3386 | .read = tracing_ctrl_read, | |
3387 | .write = tracing_ctrl_write, | |
bc0c38d1 SR |
3388 | }; |
3389 | ||
3390 | static struct file_operations set_tracer_fops = { | |
4bf39a94 IM |
3391 | .open = tracing_open_generic, |
3392 | .read = tracing_set_trace_read, | |
3393 | .write = tracing_set_trace_write, | |
bc0c38d1 SR |
3394 | }; |
3395 | ||
b3806b43 | 3396 | static struct file_operations tracing_pipe_fops = { |
4bf39a94 | 3397 | .open = tracing_open_pipe, |
2a2cc8f7 | 3398 | .poll = tracing_poll_pipe, |
4bf39a94 IM |
3399 | .read = tracing_read_pipe, |
3400 | .release = tracing_release_pipe, | |
b3806b43 SR |
3401 | }; |
3402 | ||
a98a3c3f SR |
3403 | static struct file_operations tracing_entries_fops = { |
3404 | .open = tracing_open_generic, | |
3405 | .read = tracing_entries_read, | |
3406 | .write = tracing_entries_write, | |
3407 | }; | |
3408 | ||
5bf9a1ee | 3409 | static struct file_operations tracing_mark_fops = { |
43a15386 | 3410 | .open = tracing_open_generic, |
5bf9a1ee PP |
3411 | .write = tracing_mark_write, |
3412 | }; | |
3413 | ||
bc0c38d1 SR |
3414 | #ifdef CONFIG_DYNAMIC_FTRACE |
3415 | ||
b807c3d0 SR |
3416 | int __weak ftrace_arch_read_dyn_info(char *buf, int size) |
3417 | { | |
3418 | return 0; | |
3419 | } | |
3420 | ||
bc0c38d1 | 3421 | static ssize_t |
b807c3d0 | 3422 | tracing_read_dyn_info(struct file *filp, char __user *ubuf, |
bc0c38d1 SR |
3423 | size_t cnt, loff_t *ppos) |
3424 | { | |
a26a2a27 SR |
3425 | static char ftrace_dyn_info_buffer[1024]; |
3426 | static DEFINE_MUTEX(dyn_info_mutex); | |
bc0c38d1 | 3427 | unsigned long *p = filp->private_data; |
b807c3d0 | 3428 | char *buf = ftrace_dyn_info_buffer; |
a26a2a27 | 3429 | int size = ARRAY_SIZE(ftrace_dyn_info_buffer); |
bc0c38d1 SR |
3430 | int r; |
3431 | ||
b807c3d0 SR |
3432 | mutex_lock(&dyn_info_mutex); |
3433 | r = sprintf(buf, "%ld ", *p); | |
4bf39a94 | 3434 | |
a26a2a27 | 3435 | r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r); |
b807c3d0 SR |
3436 | buf[r++] = '\n'; |
3437 | ||
3438 | r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r); | |
3439 | ||
3440 | mutex_unlock(&dyn_info_mutex); | |
3441 | ||
3442 | return r; | |
bc0c38d1 SR |
3443 | } |
3444 | ||
b807c3d0 | 3445 | static struct file_operations tracing_dyn_info_fops = { |
4bf39a94 | 3446 | .open = tracing_open_generic, |
b807c3d0 | 3447 | .read = tracing_read_dyn_info, |
bc0c38d1 SR |
3448 | }; |
3449 | #endif | |
3450 | ||
3451 | static struct dentry *d_tracer; | |
3452 | ||
3453 | struct dentry *tracing_init_dentry(void) | |
3454 | { | |
3455 | static int once; | |
3456 | ||
3457 | if (d_tracer) | |
3458 | return d_tracer; | |
3459 | ||
3460 | d_tracer = debugfs_create_dir("tracing", NULL); | |
3461 | ||
3462 | if (!d_tracer && !once) { | |
3463 | once = 1; | |
3464 | pr_warning("Could not create debugfs directory 'tracing'\n"); | |
3465 | return NULL; | |
3466 | } | |
3467 | ||
3468 | return d_tracer; | |
3469 | } | |
3470 | ||
60a11774 SR |
3471 | #ifdef CONFIG_FTRACE_SELFTEST |
3472 | /* Let selftest have access to static functions in this file */ | |
3473 | #include "trace_selftest.c" | |
3474 | #endif | |
3475 | ||
b5ad384e | 3476 | static __init int tracer_init_debugfs(void) |
bc0c38d1 SR |
3477 | { |
3478 | struct dentry *d_tracer; | |
3479 | struct dentry *entry; | |
3480 | ||
3481 | d_tracer = tracing_init_dentry(); | |
3482 | ||
3483 | entry = debugfs_create_file("tracing_enabled", 0644, d_tracer, | |
3484 | &global_trace, &tracing_ctrl_fops); | |
3485 | if (!entry) | |
3486 | pr_warning("Could not create debugfs 'tracing_enabled' entry\n"); | |
3487 | ||
ee6bce52 | 3488 | entry = debugfs_create_file("trace_options", 0644, d_tracer, |
bc0c38d1 SR |
3489 | NULL, &tracing_iter_fops); |
3490 | if (!entry) | |
ee6bce52 | 3491 | pr_warning("Could not create debugfs 'trace_options' entry\n"); |
bc0c38d1 | 3492 | |
c7078de1 IM |
3493 | entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer, |
3494 | NULL, &tracing_cpumask_fops); | |
3495 | if (!entry) | |
3496 | pr_warning("Could not create debugfs 'tracing_cpumask' entry\n"); | |
3497 | ||
bc0c38d1 SR |
3498 | entry = debugfs_create_file("latency_trace", 0444, d_tracer, |
3499 | &global_trace, &tracing_lt_fops); | |
3500 | if (!entry) | |
3501 | pr_warning("Could not create debugfs 'latency_trace' entry\n"); | |
3502 | ||
3503 | entry = debugfs_create_file("trace", 0444, d_tracer, | |
3504 | &global_trace, &tracing_fops); | |
3505 | if (!entry) | |
3506 | pr_warning("Could not create debugfs 'trace' entry\n"); | |
3507 | ||
3508 | entry = debugfs_create_file("available_tracers", 0444, d_tracer, | |
3509 | &global_trace, &show_traces_fops); | |
3510 | if (!entry) | |
98a983aa | 3511 | pr_warning("Could not create debugfs 'available_tracers' entry\n"); |
bc0c38d1 SR |
3512 | |
3513 | entry = debugfs_create_file("current_tracer", 0444, d_tracer, | |
3514 | &global_trace, &set_tracer_fops); | |
3515 | if (!entry) | |
98a983aa | 3516 | pr_warning("Could not create debugfs 'current_tracer' entry\n"); |
bc0c38d1 SR |
3517 | |
3518 | entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer, | |
3519 | &tracing_max_latency, | |
3520 | &tracing_max_lat_fops); | |
3521 | if (!entry) | |
3522 | pr_warning("Could not create debugfs " | |
3523 | "'tracing_max_latency' entry\n"); | |
3524 | ||
3525 | entry = debugfs_create_file("tracing_thresh", 0644, d_tracer, | |
3526 | &tracing_thresh, &tracing_max_lat_fops); | |
3527 | if (!entry) | |
3528 | pr_warning("Could not create debugfs " | |
98a983aa | 3529 | "'tracing_thresh' entry\n"); |
7bd2f24c IM |
3530 | entry = debugfs_create_file("README", 0644, d_tracer, |
3531 | NULL, &tracing_readme_fops); | |
3532 | if (!entry) | |
3533 | pr_warning("Could not create debugfs 'README' entry\n"); | |
3534 | ||
b3806b43 SR |
3535 | entry = debugfs_create_file("trace_pipe", 0644, d_tracer, |
3536 | NULL, &tracing_pipe_fops); | |
3537 | if (!entry) | |
3538 | pr_warning("Could not create debugfs " | |
98a983aa | 3539 | "'trace_pipe' entry\n"); |
bc0c38d1 | 3540 | |
a94c80e7 | 3541 | entry = debugfs_create_file("buffer_size_kb", 0644, d_tracer, |
a98a3c3f SR |
3542 | &global_trace, &tracing_entries_fops); |
3543 | if (!entry) | |
3544 | pr_warning("Could not create debugfs " | |
a94c80e7 | 3545 | "'buffer_size_kb' entry\n"); |
a98a3c3f | 3546 | |
5bf9a1ee PP |
3547 | entry = debugfs_create_file("trace_marker", 0220, d_tracer, |
3548 | NULL, &tracing_mark_fops); | |
3549 | if (!entry) | |
3550 | pr_warning("Could not create debugfs " | |
3551 | "'trace_marker' entry\n"); | |
3552 | ||
bc0c38d1 SR |
3553 | #ifdef CONFIG_DYNAMIC_FTRACE |
3554 | entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer, | |
3555 | &ftrace_update_tot_cnt, | |
b807c3d0 | 3556 | &tracing_dyn_info_fops); |
bc0c38d1 SR |
3557 | if (!entry) |
3558 | pr_warning("Could not create debugfs " | |
3559 | "'dyn_ftrace_total_info' entry\n"); | |
3560 | #endif | |
d618b3e6 IM |
3561 | #ifdef CONFIG_SYSPROF_TRACER |
3562 | init_tracer_sysprof_debugfs(d_tracer); | |
3563 | #endif | |
b5ad384e | 3564 | return 0; |
bc0c38d1 SR |
3565 | } |
3566 | ||
801fe400 | 3567 | int trace_vprintk(unsigned long ip, const char *fmt, va_list args) |
dd0e545f | 3568 | { |
dd0e545f SR |
3569 | static DEFINE_SPINLOCK(trace_buf_lock); |
3570 | static char trace_buf[TRACE_BUF_SIZE]; | |
f09ce573 | 3571 | |
3928a8a2 | 3572 | struct ring_buffer_event *event; |
f09ce573 | 3573 | struct trace_array *tr = &global_trace; |
dd0e545f | 3574 | struct trace_array_cpu *data; |
777e208d | 3575 | struct print_entry *entry; |
3928a8a2 | 3576 | unsigned long flags, irq_flags; |
38697053 | 3577 | int cpu, len = 0, size, pc; |
dd0e545f | 3578 | |
c76f0694 | 3579 | if (tracing_disabled) |
dd0e545f SR |
3580 | return 0; |
3581 | ||
38697053 SR |
3582 | pc = preempt_count(); |
3583 | preempt_disable_notrace(); | |
dd0e545f SR |
3584 | cpu = raw_smp_processor_id(); |
3585 | data = tr->data[cpu]; | |
dd0e545f | 3586 | |
3ea2e6d7 | 3587 | if (unlikely(atomic_read(&data->disabled))) |
dd0e545f SR |
3588 | goto out; |
3589 | ||
38697053 | 3590 | spin_lock_irqsave(&trace_buf_lock, flags); |
801fe400 | 3591 | len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args); |
dd0e545f SR |
3592 | |
3593 | len = min(len, TRACE_BUF_SIZE-1); | |
3594 | trace_buf[len] = 0; | |
3595 | ||
777e208d SR |
3596 | size = sizeof(*entry) + len + 1; |
3597 | event = ring_buffer_lock_reserve(tr->buffer, size, &irq_flags); | |
3928a8a2 SR |
3598 | if (!event) |
3599 | goto out_unlock; | |
777e208d | 3600 | entry = ring_buffer_event_data(event); |
38697053 | 3601 | tracing_generic_entry_update(&entry->ent, flags, pc); |
777e208d SR |
3602 | entry->ent.type = TRACE_PRINT; |
3603 | entry->ip = ip; | |
dd0e545f | 3604 | |
777e208d SR |
3605 | memcpy(&entry->buf, trace_buf, len); |
3606 | entry->buf[len] = 0; | |
3928a8a2 | 3607 | ring_buffer_unlock_commit(tr->buffer, event, irq_flags); |
dd0e545f | 3608 | |
3928a8a2 | 3609 | out_unlock: |
38697053 | 3610 | spin_unlock_irqrestore(&trace_buf_lock, flags); |
dd0e545f SR |
3611 | |
3612 | out: | |
38697053 | 3613 | preempt_enable_notrace(); |
dd0e545f SR |
3614 | |
3615 | return len; | |
3616 | } | |
801fe400 PP |
3617 | EXPORT_SYMBOL_GPL(trace_vprintk); |
3618 | ||
3619 | int __ftrace_printk(unsigned long ip, const char *fmt, ...) | |
3620 | { | |
3621 | int ret; | |
3622 | va_list ap; | |
3623 | ||
3624 | if (!(trace_flags & TRACE_ITER_PRINTK)) | |
3625 | return 0; | |
3626 | ||
3627 | va_start(ap, fmt); | |
3628 | ret = trace_vprintk(ip, fmt, ap); | |
3629 | va_end(ap); | |
3630 | return ret; | |
3631 | } | |
dd0e545f SR |
3632 | EXPORT_SYMBOL_GPL(__ftrace_printk); |
3633 | ||
3f5a54e3 SR |
3634 | static int trace_panic_handler(struct notifier_block *this, |
3635 | unsigned long event, void *unused) | |
3636 | { | |
944ac425 SR |
3637 | if (ftrace_dump_on_oops) |
3638 | ftrace_dump(); | |
3f5a54e3 SR |
3639 | return NOTIFY_OK; |
3640 | } | |
3641 | ||
3642 | static struct notifier_block trace_panic_notifier = { | |
3643 | .notifier_call = trace_panic_handler, | |
3644 | .next = NULL, | |
3645 | .priority = 150 /* priority: INT_MAX >= x >= 0 */ | |
3646 | }; | |
3647 | ||
3648 | static int trace_die_handler(struct notifier_block *self, | |
3649 | unsigned long val, | |
3650 | void *data) | |
3651 | { | |
3652 | switch (val) { | |
3653 | case DIE_OOPS: | |
944ac425 SR |
3654 | if (ftrace_dump_on_oops) |
3655 | ftrace_dump(); | |
3f5a54e3 SR |
3656 | break; |
3657 | default: | |
3658 | break; | |
3659 | } | |
3660 | return NOTIFY_OK; | |
3661 | } | |
3662 | ||
3663 | static struct notifier_block trace_die_notifier = { | |
3664 | .notifier_call = trace_die_handler, | |
3665 | .priority = 200 | |
3666 | }; | |
3667 | ||
3668 | /* | |
3669 | * printk is set to max of 1024, we really don't need it that big. | |
3670 | * Nothing should be printing 1000 characters anyway. | |
3671 | */ | |
3672 | #define TRACE_MAX_PRINT 1000 | |
3673 | ||
3674 | /* | |
3675 | * Define here KERN_TRACE so that we have one place to modify | |
3676 | * it if we decide to change what log level the ftrace dump | |
3677 | * should be at. | |
3678 | */ | |
3679 | #define KERN_TRACE KERN_INFO | |
3680 | ||
3681 | static void | |
3682 | trace_printk_seq(struct trace_seq *s) | |
3683 | { | |
3684 | /* Probably should print a warning here. */ | |
3685 | if (s->len >= 1000) | |
3686 | s->len = 1000; | |
3687 | ||
3688 | /* should be zero ended, but we are paranoid. */ | |
3689 | s->buffer[s->len] = 0; | |
3690 | ||
3691 | printk(KERN_TRACE "%s", s->buffer); | |
3692 | ||
3693 | trace_seq_reset(s); | |
3694 | } | |
3695 | ||
3f5a54e3 SR |
3696 | void ftrace_dump(void) |
3697 | { | |
3698 | static DEFINE_SPINLOCK(ftrace_dump_lock); | |
3699 | /* use static because iter can be a bit big for the stack */ | |
3700 | static struct trace_iterator iter; | |
3f5a54e3 SR |
3701 | static cpumask_t mask; |
3702 | static int dump_ran; | |
d769041f SR |
3703 | unsigned long flags; |
3704 | int cnt = 0, cpu; | |
3f5a54e3 SR |
3705 | |
3706 | /* only one dump */ | |
3707 | spin_lock_irqsave(&ftrace_dump_lock, flags); | |
3708 | if (dump_ran) | |
3709 | goto out; | |
3710 | ||
3711 | dump_ran = 1; | |
3712 | ||
3713 | /* No turning back! */ | |
81adbdc0 | 3714 | ftrace_kill(); |
3f5a54e3 | 3715 | |
d769041f SR |
3716 | for_each_tracing_cpu(cpu) { |
3717 | atomic_inc(&global_trace.data[cpu]->disabled); | |
3718 | } | |
3719 | ||
b54d3de9 TE |
3720 | /* don't look at user memory in panic mode */ |
3721 | trace_flags &= ~TRACE_ITER_SYM_USEROBJ; | |
3722 | ||
3f5a54e3 SR |
3723 | printk(KERN_TRACE "Dumping ftrace buffer:\n"); |
3724 | ||
3725 | iter.tr = &global_trace; | |
3726 | iter.trace = current_trace; | |
3727 | ||
3728 | /* | |
3729 | * We need to stop all tracing on all CPUS to read the | |
3730 | * the next buffer. This is a bit expensive, but is | |
3731 | * not done often. We fill all what we can read, | |
3732 | * and then release the locks again. | |
3733 | */ | |
3734 | ||
3735 | cpus_clear(mask); | |
3736 | ||
3f5a54e3 SR |
3737 | while (!trace_empty(&iter)) { |
3738 | ||
3739 | if (!cnt) | |
3740 | printk(KERN_TRACE "---------------------------------\n"); | |
3741 | ||
3742 | cnt++; | |
3743 | ||
3744 | /* reset all but tr, trace, and overruns */ | |
3745 | memset(&iter.seq, 0, | |
3746 | sizeof(struct trace_iterator) - | |
3747 | offsetof(struct trace_iterator, seq)); | |
3748 | iter.iter_flags |= TRACE_FILE_LAT_FMT; | |
3749 | iter.pos = -1; | |
3750 | ||
3751 | if (find_next_entry_inc(&iter) != NULL) { | |
3752 | print_trace_line(&iter); | |
3753 | trace_consume(&iter); | |
3754 | } | |
3755 | ||
3756 | trace_printk_seq(&iter.seq); | |
3757 | } | |
3758 | ||
3759 | if (!cnt) | |
3760 | printk(KERN_TRACE " (ftrace buffer empty)\n"); | |
3761 | else | |
3762 | printk(KERN_TRACE "---------------------------------\n"); | |
3763 | ||
3f5a54e3 SR |
3764 | out: |
3765 | spin_unlock_irqrestore(&ftrace_dump_lock, flags); | |
3766 | } | |
3767 | ||
3928a8a2 | 3768 | __init static int tracer_alloc_buffers(void) |
bc0c38d1 | 3769 | { |
4c11d7ae | 3770 | struct trace_array_cpu *data; |
4c11d7ae SR |
3771 | int i; |
3772 | ||
3928a8a2 SR |
3773 | /* TODO: make the number of buffers hot pluggable with CPUS */ |
3774 | tracing_buffer_mask = cpu_possible_map; | |
4c11d7ae | 3775 | |
3928a8a2 SR |
3776 | global_trace.buffer = ring_buffer_alloc(trace_buf_size, |
3777 | TRACE_BUFFER_FLAGS); | |
3778 | if (!global_trace.buffer) { | |
3779 | printk(KERN_ERR "tracer: failed to allocate ring buffer!\n"); | |
3780 | WARN_ON(1); | |
3781 | return 0; | |
4c11d7ae | 3782 | } |
3928a8a2 | 3783 | global_trace.entries = ring_buffer_size(global_trace.buffer); |
4c11d7ae SR |
3784 | |
3785 | #ifdef CONFIG_TRACER_MAX_TRACE | |
3928a8a2 SR |
3786 | max_tr.buffer = ring_buffer_alloc(trace_buf_size, |
3787 | TRACE_BUFFER_FLAGS); | |
3788 | if (!max_tr.buffer) { | |
3789 | printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n"); | |
3790 | WARN_ON(1); | |
3791 | ring_buffer_free(global_trace.buffer); | |
3792 | return 0; | |
4c11d7ae | 3793 | } |
3928a8a2 SR |
3794 | max_tr.entries = ring_buffer_size(max_tr.buffer); |
3795 | WARN_ON(max_tr.entries != global_trace.entries); | |
a98a3c3f | 3796 | #endif |
ab46428c | 3797 | |
4c11d7ae | 3798 | /* Allocate the first page for all buffers */ |
ab46428c | 3799 | for_each_tracing_cpu(i) { |
4c11d7ae | 3800 | data = global_trace.data[i] = &per_cpu(global_trace_cpu, i); |
bc0c38d1 | 3801 | max_tr.data[i] = &per_cpu(max_data, i); |
4c11d7ae | 3802 | } |
bc0c38d1 | 3803 | |
bc0c38d1 SR |
3804 | trace_init_cmdlines(); |
3805 | ||
43a15386 | 3806 | register_tracer(&nop_trace); |
b5ad384e FW |
3807 | #ifdef CONFIG_BOOT_TRACER |
3808 | register_tracer(&boot_tracer); | |
3809 | current_trace = &boot_tracer; | |
3810 | current_trace->init(&global_trace); | |
3811 | #else | |
43a15386 | 3812 | current_trace = &nop_trace; |
b5ad384e | 3813 | #endif |
bc0c38d1 | 3814 | |
60a11774 SR |
3815 | /* All seems OK, enable tracing */ |
3816 | tracing_disabled = 0; | |
3928a8a2 | 3817 | |
3f5a54e3 SR |
3818 | atomic_notifier_chain_register(&panic_notifier_list, |
3819 | &trace_panic_notifier); | |
3820 | ||
3821 | register_die_notifier(&trace_die_notifier); | |
3822 | ||
bc0c38d1 | 3823 | return 0; |
bc0c38d1 | 3824 | } |
b5ad384e FW |
3825 | early_initcall(tracer_alloc_buffers); |
3826 | fs_initcall(tracer_init_debugfs); |