]>
Commit | Line | Data |
---|---|---|
bc0c38d1 SR |
1 | /* |
2 | * ring buffer based function tracer | |
3 | * | |
2b6080f2 | 4 | * Copyright (C) 2007-2012 Steven Rostedt <[email protected]> |
bc0c38d1 SR |
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 | |
6d49e352 | 12 | * Copyright (C) 2004 Nadia Yvette Chambers |
bc0c38d1 | 13 | */ |
2cadf913 | 14 | #include <linux/ring_buffer.h> |
273b281f | 15 | #include <generated/utsrelease.h> |
2cadf913 SR |
16 | #include <linux/stacktrace.h> |
17 | #include <linux/writeback.h> | |
bc0c38d1 SR |
18 | #include <linux/kallsyms.h> |
19 | #include <linux/seq_file.h> | |
3f5a54e3 | 20 | #include <linux/notifier.h> |
2cadf913 | 21 | #include <linux/irqflags.h> |
bc0c38d1 | 22 | #include <linux/debugfs.h> |
4c11d7ae | 23 | #include <linux/pagemap.h> |
bc0c38d1 SR |
24 | #include <linux/hardirq.h> |
25 | #include <linux/linkage.h> | |
26 | #include <linux/uaccess.h> | |
2cadf913 | 27 | #include <linux/kprobes.h> |
bc0c38d1 SR |
28 | #include <linux/ftrace.h> |
29 | #include <linux/module.h> | |
30 | #include <linux/percpu.h> | |
2cadf913 | 31 | #include <linux/splice.h> |
3f5a54e3 | 32 | #include <linux/kdebug.h> |
5f0c6c03 | 33 | #include <linux/string.h> |
7e53bd42 | 34 | #include <linux/rwsem.h> |
5a0e3ad6 | 35 | #include <linux/slab.h> |
bc0c38d1 SR |
36 | #include <linux/ctype.h> |
37 | #include <linux/init.h> | |
2a2cc8f7 | 38 | #include <linux/poll.h> |
b892e5c8 | 39 | #include <linux/nmi.h> |
bc0c38d1 | 40 | #include <linux/fs.h> |
8bd75c77 | 41 | #include <linux/sched/rt.h> |
86387f7e | 42 | |
bc0c38d1 | 43 | #include "trace.h" |
f0868d1e | 44 | #include "trace_output.h" |
bc0c38d1 | 45 | |
73c5162a SR |
46 | /* |
47 | * On boot up, the ring buffer is set to the minimum size, so that | |
48 | * we do not waste memory on systems that are not using tracing. | |
49 | */ | |
55034cd6 | 50 | bool ring_buffer_expanded; |
73c5162a | 51 | |
8e1b82e0 FW |
52 | /* |
53 | * We need to change this state when a selftest is running. | |
ff32504f FW |
54 | * A selftest will lurk into the ring-buffer to count the |
55 | * entries inserted during the selftest although some concurrent | |
5e1607a0 | 56 | * insertions into the ring-buffer such as trace_printk could occurred |
ff32504f FW |
57 | * at the same time, giving false positive or negative results. |
58 | */ | |
8e1b82e0 | 59 | static bool __read_mostly tracing_selftest_running; |
ff32504f | 60 | |
b2821ae6 SR |
61 | /* |
62 | * If a tracer is running, we do not want to run SELFTEST. | |
63 | */ | |
020e5f85 | 64 | bool __read_mostly tracing_selftest_disabled; |
b2821ae6 | 65 | |
adf9f195 FW |
66 | /* For tracers that don't implement custom flags */ |
67 | static struct tracer_opt dummy_tracer_opt[] = { | |
68 | { } | |
69 | }; | |
70 | ||
71 | static struct tracer_flags dummy_tracer_flags = { | |
72 | .val = 0, | |
73 | .opts = dummy_tracer_opt | |
74 | }; | |
75 | ||
76 | static int dummy_set_flag(u32 old_flags, u32 bit, int set) | |
77 | { | |
78 | return 0; | |
79 | } | |
0f048701 | 80 | |
7ffbd48d SR |
81 | /* |
82 | * To prevent the comm cache from being overwritten when no | |
83 | * tracing is active, only save the comm when a trace event | |
84 | * occurred. | |
85 | */ | |
86 | static DEFINE_PER_CPU(bool, trace_cmdline_save); | |
87 | ||
0f048701 SR |
88 | /* |
89 | * Kill all tracing for good (never come back). | |
90 | * It is initialized to 1 but will turn to zero if the initialization | |
91 | * of the tracer is successful. But that is the only place that sets | |
92 | * this back to zero. | |
93 | */ | |
4fd27358 | 94 | static int tracing_disabled = 1; |
0f048701 | 95 | |
9288f99a | 96 | DEFINE_PER_CPU(int, ftrace_cpu_disabled); |
d769041f | 97 | |
955b61e5 | 98 | cpumask_var_t __read_mostly tracing_buffer_mask; |
ab46428c | 99 | |
944ac425 SR |
100 | /* |
101 | * ftrace_dump_on_oops - variable to dump ftrace buffer on oops | |
102 | * | |
103 | * If there is an oops (or kernel panic) and the ftrace_dump_on_oops | |
104 | * is set, then ftrace_dump is called. This will output the contents | |
105 | * of the ftrace buffers to the console. This is very useful for | |
106 | * capturing traces that lead to crashes and outputing it to a | |
107 | * serial console. | |
108 | * | |
109 | * It is default off, but you can enable it with either specifying | |
110 | * "ftrace_dump_on_oops" in the kernel command line, or setting | |
cecbca96 FW |
111 | * /proc/sys/kernel/ftrace_dump_on_oops |
112 | * Set 1 if you want to dump buffers of all CPUs | |
113 | * Set 2 if you want to dump the buffer of the CPU that triggered oops | |
944ac425 | 114 | */ |
cecbca96 FW |
115 | |
116 | enum ftrace_dump_mode ftrace_dump_on_oops; | |
944ac425 | 117 | |
de7edd31 SRRH |
118 | /* When set, tracing will stop when a WARN*() is hit */ |
119 | int __disable_trace_on_warning; | |
120 | ||
b2821ae6 SR |
121 | static int tracing_set_tracer(const char *buf); |
122 | ||
ee6c2c1b LZ |
123 | #define MAX_TRACER_SIZE 100 |
124 | static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata; | |
b2821ae6 | 125 | static char *default_bootup_tracer; |
d9e54076 | 126 | |
55034cd6 SRRH |
127 | static bool allocate_snapshot; |
128 | ||
1beee96b | 129 | static int __init set_cmdline_ftrace(char *str) |
d9e54076 | 130 | { |
67012ab1 | 131 | strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE); |
b2821ae6 | 132 | default_bootup_tracer = bootup_tracer_buf; |
73c5162a | 133 | /* We are using ftrace early, expand it */ |
55034cd6 | 134 | ring_buffer_expanded = true; |
d9e54076 PZ |
135 | return 1; |
136 | } | |
1beee96b | 137 | __setup("ftrace=", set_cmdline_ftrace); |
d9e54076 | 138 | |
944ac425 SR |
139 | static int __init set_ftrace_dump_on_oops(char *str) |
140 | { | |
cecbca96 FW |
141 | if (*str++ != '=' || !*str) { |
142 | ftrace_dump_on_oops = DUMP_ALL; | |
143 | return 1; | |
144 | } | |
145 | ||
146 | if (!strcmp("orig_cpu", str)) { | |
147 | ftrace_dump_on_oops = DUMP_ORIG; | |
148 | return 1; | |
149 | } | |
150 | ||
151 | return 0; | |
944ac425 SR |
152 | } |
153 | __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops); | |
60a11774 | 154 | |
de7edd31 SRRH |
155 | static int __init stop_trace_on_warning(char *str) |
156 | { | |
157 | __disable_trace_on_warning = 1; | |
158 | return 1; | |
159 | } | |
160 | __setup("traceoff_on_warning=", stop_trace_on_warning); | |
161 | ||
3209cff4 | 162 | static int __init boot_alloc_snapshot(char *str) |
55034cd6 SRRH |
163 | { |
164 | allocate_snapshot = true; | |
165 | /* We also need the main ring buffer expanded */ | |
166 | ring_buffer_expanded = true; | |
167 | return 1; | |
168 | } | |
3209cff4 | 169 | __setup("alloc_snapshot", boot_alloc_snapshot); |
55034cd6 | 170 | |
7bcfaf54 SR |
171 | |
172 | static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata; | |
173 | static char *trace_boot_options __initdata; | |
174 | ||
175 | static int __init set_trace_boot_options(char *str) | |
176 | { | |
67012ab1 | 177 | strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE); |
7bcfaf54 SR |
178 | trace_boot_options = trace_boot_options_buf; |
179 | return 0; | |
180 | } | |
181 | __setup("trace_options=", set_trace_boot_options); | |
182 | ||
de7edd31 | 183 | |
cf8e3474 | 184 | unsigned long long ns2usecs(cycle_t nsec) |
bc0c38d1 SR |
185 | { |
186 | nsec += 500; | |
187 | do_div(nsec, 1000); | |
188 | return nsec; | |
189 | } | |
190 | ||
4fcdae83 SR |
191 | /* |
192 | * The global_trace is the descriptor that holds the tracing | |
193 | * buffers for the live tracing. For each CPU, it contains | |
194 | * a link list of pages that will store trace entries. The | |
195 | * page descriptor of the pages in the memory is used to hold | |
196 | * the link list by linking the lru item in the page descriptor | |
197 | * to each of the pages in the buffer per CPU. | |
198 | * | |
199 | * For each active CPU there is a data field that holds the | |
200 | * pages for the buffer for that CPU. Each CPU has the same number | |
201 | * of pages allocated for its buffer. | |
202 | */ | |
bc0c38d1 SR |
203 | static struct trace_array global_trace; |
204 | ||
ae63b31e | 205 | LIST_HEAD(ftrace_trace_arrays); |
bc0c38d1 | 206 | |
ff451961 SRRH |
207 | int trace_array_get(struct trace_array *this_tr) |
208 | { | |
209 | struct trace_array *tr; | |
210 | int ret = -ENODEV; | |
211 | ||
212 | mutex_lock(&trace_types_lock); | |
213 | list_for_each_entry(tr, &ftrace_trace_arrays, list) { | |
214 | if (tr == this_tr) { | |
215 | tr->ref++; | |
216 | ret = 0; | |
217 | break; | |
218 | } | |
219 | } | |
220 | mutex_unlock(&trace_types_lock); | |
221 | ||
222 | return ret; | |
223 | } | |
224 | ||
225 | static void __trace_array_put(struct trace_array *this_tr) | |
226 | { | |
227 | WARN_ON(!this_tr->ref); | |
228 | this_tr->ref--; | |
229 | } | |
230 | ||
231 | void trace_array_put(struct trace_array *this_tr) | |
232 | { | |
233 | mutex_lock(&trace_types_lock); | |
234 | __trace_array_put(this_tr); | |
235 | mutex_unlock(&trace_types_lock); | |
236 | } | |
237 | ||
f306cc82 TZ |
238 | int filter_check_discard(struct ftrace_event_file *file, void *rec, |
239 | struct ring_buffer *buffer, | |
240 | struct ring_buffer_event *event) | |
eb02ce01 | 241 | { |
f306cc82 TZ |
242 | if (unlikely(file->flags & FTRACE_EVENT_FL_FILTERED) && |
243 | !filter_match_preds(file->filter, rec)) { | |
244 | ring_buffer_discard_commit(buffer, event); | |
245 | return 1; | |
246 | } | |
247 | ||
248 | return 0; | |
249 | } | |
250 | EXPORT_SYMBOL_GPL(filter_check_discard); | |
251 | ||
252 | int call_filter_check_discard(struct ftrace_event_call *call, void *rec, | |
253 | struct ring_buffer *buffer, | |
254 | struct ring_buffer_event *event) | |
255 | { | |
256 | if (unlikely(call->flags & TRACE_EVENT_FL_FILTERED) && | |
257 | !filter_match_preds(call->filter, rec)) { | |
258 | ring_buffer_discard_commit(buffer, event); | |
259 | return 1; | |
260 | } | |
261 | ||
262 | return 0; | |
eb02ce01 | 263 | } |
f306cc82 | 264 | EXPORT_SYMBOL_GPL(call_filter_check_discard); |
eb02ce01 | 265 | |
9457158b | 266 | cycle_t buffer_ftrace_now(struct trace_buffer *buf, int cpu) |
37886f6a SR |
267 | { |
268 | u64 ts; | |
269 | ||
270 | /* Early boot up does not have a buffer yet */ | |
9457158b | 271 | if (!buf->buffer) |
37886f6a SR |
272 | return trace_clock_local(); |
273 | ||
9457158b AL |
274 | ts = ring_buffer_time_stamp(buf->buffer, cpu); |
275 | ring_buffer_normalize_time_stamp(buf->buffer, cpu, &ts); | |
37886f6a SR |
276 | |
277 | return ts; | |
278 | } | |
bc0c38d1 | 279 | |
9457158b AL |
280 | cycle_t ftrace_now(int cpu) |
281 | { | |
282 | return buffer_ftrace_now(&global_trace.trace_buffer, cpu); | |
283 | } | |
284 | ||
10246fa3 SRRH |
285 | /** |
286 | * tracing_is_enabled - Show if global_trace has been disabled | |
287 | * | |
288 | * Shows if the global trace has been enabled or not. It uses the | |
289 | * mirror flag "buffer_disabled" to be used in fast paths such as for | |
290 | * the irqsoff tracer. But it may be inaccurate due to races. If you | |
291 | * need to know the accurate state, use tracing_is_on() which is a little | |
292 | * slower, but accurate. | |
293 | */ | |
9036990d SR |
294 | int tracing_is_enabled(void) |
295 | { | |
10246fa3 SRRH |
296 | /* |
297 | * For quick access (irqsoff uses this in fast path), just | |
298 | * return the mirror variable of the state of the ring buffer. | |
299 | * It's a little racy, but we don't really care. | |
300 | */ | |
301 | smp_rmb(); | |
302 | return !global_trace.buffer_disabled; | |
9036990d SR |
303 | } |
304 | ||
4fcdae83 | 305 | /* |
3928a8a2 SR |
306 | * trace_buf_size is the size in bytes that is allocated |
307 | * for a buffer. Note, the number of bytes is always rounded | |
308 | * to page size. | |
3f5a54e3 SR |
309 | * |
310 | * This number is purposely set to a low number of 16384. | |
311 | * If the dump on oops happens, it will be much appreciated | |
312 | * to not have to wait for all that output. Anyway this can be | |
313 | * boot time and run time configurable. | |
4fcdae83 | 314 | */ |
3928a8a2 | 315 | #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */ |
3f5a54e3 | 316 | |
3928a8a2 | 317 | static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT; |
bc0c38d1 | 318 | |
4fcdae83 | 319 | /* trace_types holds a link list of available tracers. */ |
bc0c38d1 | 320 | static struct tracer *trace_types __read_mostly; |
4fcdae83 | 321 | |
4fcdae83 SR |
322 | /* |
323 | * trace_types_lock is used to protect the trace_types list. | |
4fcdae83 | 324 | */ |
a8227415 | 325 | DEFINE_MUTEX(trace_types_lock); |
4fcdae83 | 326 | |
7e53bd42 LJ |
327 | /* |
328 | * serialize the access of the ring buffer | |
329 | * | |
330 | * ring buffer serializes readers, but it is low level protection. | |
331 | * The validity of the events (which returns by ring_buffer_peek() ..etc) | |
332 | * are not protected by ring buffer. | |
333 | * | |
334 | * The content of events may become garbage if we allow other process consumes | |
335 | * these events concurrently: | |
336 | * A) the page of the consumed events may become a normal page | |
337 | * (not reader page) in ring buffer, and this page will be rewrited | |
338 | * by events producer. | |
339 | * B) The page of the consumed events may become a page for splice_read, | |
340 | * and this page will be returned to system. | |
341 | * | |
342 | * These primitives allow multi process access to different cpu ring buffer | |
343 | * concurrently. | |
344 | * | |
345 | * These primitives don't distinguish read-only and read-consume access. | |
346 | * Multi read-only access are also serialized. | |
347 | */ | |
348 | ||
349 | #ifdef CONFIG_SMP | |
350 | static DECLARE_RWSEM(all_cpu_access_lock); | |
351 | static DEFINE_PER_CPU(struct mutex, cpu_access_lock); | |
352 | ||
353 | static inline void trace_access_lock(int cpu) | |
354 | { | |
ae3b5093 | 355 | if (cpu == RING_BUFFER_ALL_CPUS) { |
7e53bd42 LJ |
356 | /* gain it for accessing the whole ring buffer. */ |
357 | down_write(&all_cpu_access_lock); | |
358 | } else { | |
359 | /* gain it for accessing a cpu ring buffer. */ | |
360 | ||
ae3b5093 | 361 | /* Firstly block other trace_access_lock(RING_BUFFER_ALL_CPUS). */ |
7e53bd42 LJ |
362 | down_read(&all_cpu_access_lock); |
363 | ||
364 | /* Secondly block other access to this @cpu ring buffer. */ | |
365 | mutex_lock(&per_cpu(cpu_access_lock, cpu)); | |
366 | } | |
367 | } | |
368 | ||
369 | static inline void trace_access_unlock(int cpu) | |
370 | { | |
ae3b5093 | 371 | if (cpu == RING_BUFFER_ALL_CPUS) { |
7e53bd42 LJ |
372 | up_write(&all_cpu_access_lock); |
373 | } else { | |
374 | mutex_unlock(&per_cpu(cpu_access_lock, cpu)); | |
375 | up_read(&all_cpu_access_lock); | |
376 | } | |
377 | } | |
378 | ||
379 | static inline void trace_access_lock_init(void) | |
380 | { | |
381 | int cpu; | |
382 | ||
383 | for_each_possible_cpu(cpu) | |
384 | mutex_init(&per_cpu(cpu_access_lock, cpu)); | |
385 | } | |
386 | ||
387 | #else | |
388 | ||
389 | static DEFINE_MUTEX(access_lock); | |
390 | ||
391 | static inline void trace_access_lock(int cpu) | |
392 | { | |
393 | (void)cpu; | |
394 | mutex_lock(&access_lock); | |
395 | } | |
396 | ||
397 | static inline void trace_access_unlock(int cpu) | |
398 | { | |
399 | (void)cpu; | |
400 | mutex_unlock(&access_lock); | |
401 | } | |
402 | ||
403 | static inline void trace_access_lock_init(void) | |
404 | { | |
405 | } | |
406 | ||
407 | #endif | |
408 | ||
ee6bce52 | 409 | /* trace_flags holds trace_options default values */ |
12ef7d44 | 410 | unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK | |
a2a16d6a | 411 | TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME | |
77271ce4 | 412 | TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE | |
328df475 | 413 | TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS | TRACE_ITER_FUNCTION; |
e7e2ee89 | 414 | |
5280bcef | 415 | static void tracer_tracing_on(struct trace_array *tr) |
10246fa3 SRRH |
416 | { |
417 | if (tr->trace_buffer.buffer) | |
418 | ring_buffer_record_on(tr->trace_buffer.buffer); | |
419 | /* | |
420 | * This flag is looked at when buffers haven't been allocated | |
421 | * yet, or by some tracers (like irqsoff), that just want to | |
422 | * know if the ring buffer has been disabled, but it can handle | |
423 | * races of where it gets disabled but we still do a record. | |
424 | * As the check is in the fast path of the tracers, it is more | |
425 | * important to be fast than accurate. | |
426 | */ | |
427 | tr->buffer_disabled = 0; | |
428 | /* Make the flag seen by readers */ | |
429 | smp_wmb(); | |
430 | } | |
431 | ||
499e5470 SR |
432 | /** |
433 | * tracing_on - enable tracing buffers | |
434 | * | |
435 | * This function enables tracing buffers that may have been | |
436 | * disabled with tracing_off. | |
437 | */ | |
438 | void tracing_on(void) | |
439 | { | |
10246fa3 | 440 | tracer_tracing_on(&global_trace); |
499e5470 SR |
441 | } |
442 | EXPORT_SYMBOL_GPL(tracing_on); | |
443 | ||
09ae7234 SRRH |
444 | /** |
445 | * __trace_puts - write a constant string into the trace buffer. | |
446 | * @ip: The address of the caller | |
447 | * @str: The constant string to write | |
448 | * @size: The size of the string. | |
449 | */ | |
450 | int __trace_puts(unsigned long ip, const char *str, int size) | |
451 | { | |
452 | struct ring_buffer_event *event; | |
453 | struct ring_buffer *buffer; | |
454 | struct print_entry *entry; | |
455 | unsigned long irq_flags; | |
456 | int alloc; | |
457 | ||
458 | alloc = sizeof(*entry) + size + 2; /* possible \n added */ | |
459 | ||
460 | local_save_flags(irq_flags); | |
461 | buffer = global_trace.trace_buffer.buffer; | |
462 | event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, alloc, | |
463 | irq_flags, preempt_count()); | |
464 | if (!event) | |
465 | return 0; | |
466 | ||
467 | entry = ring_buffer_event_data(event); | |
468 | entry->ip = ip; | |
469 | ||
470 | memcpy(&entry->buf, str, size); | |
471 | ||
472 | /* Add a newline if necessary */ | |
473 | if (entry->buf[size - 1] != '\n') { | |
474 | entry->buf[size] = '\n'; | |
475 | entry->buf[size + 1] = '\0'; | |
476 | } else | |
477 | entry->buf[size] = '\0'; | |
478 | ||
479 | __buffer_unlock_commit(buffer, event); | |
480 | ||
481 | return size; | |
482 | } | |
483 | EXPORT_SYMBOL_GPL(__trace_puts); | |
484 | ||
485 | /** | |
486 | * __trace_bputs - write the pointer to a constant string into trace buffer | |
487 | * @ip: The address of the caller | |
488 | * @str: The constant string to write to the buffer to | |
489 | */ | |
490 | int __trace_bputs(unsigned long ip, const char *str) | |
491 | { | |
492 | struct ring_buffer_event *event; | |
493 | struct ring_buffer *buffer; | |
494 | struct bputs_entry *entry; | |
495 | unsigned long irq_flags; | |
496 | int size = sizeof(struct bputs_entry); | |
497 | ||
498 | local_save_flags(irq_flags); | |
499 | buffer = global_trace.trace_buffer.buffer; | |
500 | event = trace_buffer_lock_reserve(buffer, TRACE_BPUTS, size, | |
501 | irq_flags, preempt_count()); | |
502 | if (!event) | |
503 | return 0; | |
504 | ||
505 | entry = ring_buffer_event_data(event); | |
506 | entry->ip = ip; | |
507 | entry->str = str; | |
508 | ||
509 | __buffer_unlock_commit(buffer, event); | |
510 | ||
511 | return 1; | |
512 | } | |
513 | EXPORT_SYMBOL_GPL(__trace_bputs); | |
514 | ||
ad909e21 SRRH |
515 | #ifdef CONFIG_TRACER_SNAPSHOT |
516 | /** | |
517 | * trace_snapshot - take a snapshot of the current buffer. | |
518 | * | |
519 | * This causes a swap between the snapshot buffer and the current live | |
520 | * tracing buffer. You can use this to take snapshots of the live | |
521 | * trace when some condition is triggered, but continue to trace. | |
522 | * | |
523 | * Note, make sure to allocate the snapshot with either | |
524 | * a tracing_snapshot_alloc(), or by doing it manually | |
525 | * with: echo 1 > /sys/kernel/debug/tracing/snapshot | |
526 | * | |
527 | * If the snapshot buffer is not allocated, it will stop tracing. | |
528 | * Basically making a permanent snapshot. | |
529 | */ | |
530 | void tracing_snapshot(void) | |
531 | { | |
532 | struct trace_array *tr = &global_trace; | |
533 | struct tracer *tracer = tr->current_trace; | |
534 | unsigned long flags; | |
535 | ||
1b22e382 SRRH |
536 | if (in_nmi()) { |
537 | internal_trace_puts("*** SNAPSHOT CALLED FROM NMI CONTEXT ***\n"); | |
538 | internal_trace_puts("*** snapshot is being ignored ***\n"); | |
539 | return; | |
540 | } | |
541 | ||
ad909e21 | 542 | if (!tr->allocated_snapshot) { |
ca268da6 SRRH |
543 | internal_trace_puts("*** SNAPSHOT NOT ALLOCATED ***\n"); |
544 | internal_trace_puts("*** stopping trace here! ***\n"); | |
ad909e21 SRRH |
545 | tracing_off(); |
546 | return; | |
547 | } | |
548 | ||
549 | /* Note, snapshot can not be used when the tracer uses it */ | |
550 | if (tracer->use_max_tr) { | |
ca268da6 SRRH |
551 | internal_trace_puts("*** LATENCY TRACER ACTIVE ***\n"); |
552 | internal_trace_puts("*** Can not use snapshot (sorry) ***\n"); | |
ad909e21 SRRH |
553 | return; |
554 | } | |
555 | ||
556 | local_irq_save(flags); | |
557 | update_max_tr(tr, current, smp_processor_id()); | |
558 | local_irq_restore(flags); | |
559 | } | |
1b22e382 | 560 | EXPORT_SYMBOL_GPL(tracing_snapshot); |
ad909e21 SRRH |
561 | |
562 | static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf, | |
563 | struct trace_buffer *size_buf, int cpu_id); | |
3209cff4 SRRH |
564 | static void set_buffer_entries(struct trace_buffer *buf, unsigned long val); |
565 | ||
566 | static int alloc_snapshot(struct trace_array *tr) | |
567 | { | |
568 | int ret; | |
569 | ||
570 | if (!tr->allocated_snapshot) { | |
571 | ||
572 | /* allocate spare buffer */ | |
573 | ret = resize_buffer_duplicate_size(&tr->max_buffer, | |
574 | &tr->trace_buffer, RING_BUFFER_ALL_CPUS); | |
575 | if (ret < 0) | |
576 | return ret; | |
577 | ||
578 | tr->allocated_snapshot = true; | |
579 | } | |
580 | ||
581 | return 0; | |
582 | } | |
583 | ||
584 | void free_snapshot(struct trace_array *tr) | |
585 | { | |
586 | /* | |
587 | * We don't free the ring buffer. instead, resize it because | |
588 | * The max_tr ring buffer has some state (e.g. ring->clock) and | |
589 | * we want preserve it. | |
590 | */ | |
591 | ring_buffer_resize(tr->max_buffer.buffer, 1, RING_BUFFER_ALL_CPUS); | |
592 | set_buffer_entries(&tr->max_buffer, 1); | |
593 | tracing_reset_online_cpus(&tr->max_buffer); | |
594 | tr->allocated_snapshot = false; | |
595 | } | |
ad909e21 SRRH |
596 | |
597 | /** | |
598 | * trace_snapshot_alloc - allocate and take a snapshot of the current buffer. | |
599 | * | |
600 | * This is similar to trace_snapshot(), but it will allocate the | |
601 | * snapshot buffer if it isn't already allocated. Use this only | |
602 | * where it is safe to sleep, as the allocation may sleep. | |
603 | * | |
604 | * This causes a swap between the snapshot buffer and the current live | |
605 | * tracing buffer. You can use this to take snapshots of the live | |
606 | * trace when some condition is triggered, but continue to trace. | |
607 | */ | |
608 | void tracing_snapshot_alloc(void) | |
609 | { | |
610 | struct trace_array *tr = &global_trace; | |
611 | int ret; | |
612 | ||
3209cff4 SRRH |
613 | ret = alloc_snapshot(tr); |
614 | if (WARN_ON(ret < 0)) | |
615 | return; | |
ad909e21 SRRH |
616 | |
617 | tracing_snapshot(); | |
618 | } | |
1b22e382 | 619 | EXPORT_SYMBOL_GPL(tracing_snapshot_alloc); |
ad909e21 SRRH |
620 | #else |
621 | void tracing_snapshot(void) | |
622 | { | |
623 | WARN_ONCE(1, "Snapshot feature not enabled, but internal snapshot used"); | |
624 | } | |
1b22e382 | 625 | EXPORT_SYMBOL_GPL(tracing_snapshot); |
ad909e21 SRRH |
626 | void tracing_snapshot_alloc(void) |
627 | { | |
628 | /* Give warning */ | |
629 | tracing_snapshot(); | |
630 | } | |
1b22e382 | 631 | EXPORT_SYMBOL_GPL(tracing_snapshot_alloc); |
ad909e21 SRRH |
632 | #endif /* CONFIG_TRACER_SNAPSHOT */ |
633 | ||
5280bcef | 634 | static void tracer_tracing_off(struct trace_array *tr) |
10246fa3 SRRH |
635 | { |
636 | if (tr->trace_buffer.buffer) | |
637 | ring_buffer_record_off(tr->trace_buffer.buffer); | |
638 | /* | |
639 | * This flag is looked at when buffers haven't been allocated | |
640 | * yet, or by some tracers (like irqsoff), that just want to | |
641 | * know if the ring buffer has been disabled, but it can handle | |
642 | * races of where it gets disabled but we still do a record. | |
643 | * As the check is in the fast path of the tracers, it is more | |
644 | * important to be fast than accurate. | |
645 | */ | |
646 | tr->buffer_disabled = 1; | |
647 | /* Make the flag seen by readers */ | |
648 | smp_wmb(); | |
649 | } | |
650 | ||
499e5470 SR |
651 | /** |
652 | * tracing_off - turn off tracing buffers | |
653 | * | |
654 | * This function stops the tracing buffers from recording data. | |
655 | * It does not disable any overhead the tracers themselves may | |
656 | * be causing. This function simply causes all recording to | |
657 | * the ring buffers to fail. | |
658 | */ | |
659 | void tracing_off(void) | |
660 | { | |
10246fa3 | 661 | tracer_tracing_off(&global_trace); |
499e5470 SR |
662 | } |
663 | EXPORT_SYMBOL_GPL(tracing_off); | |
664 | ||
de7edd31 SRRH |
665 | void disable_trace_on_warning(void) |
666 | { | |
667 | if (__disable_trace_on_warning) | |
668 | tracing_off(); | |
669 | } | |
670 | ||
10246fa3 SRRH |
671 | /** |
672 | * tracer_tracing_is_on - show real state of ring buffer enabled | |
673 | * @tr : the trace array to know if ring buffer is enabled | |
674 | * | |
675 | * Shows real state of the ring buffer if it is enabled or not. | |
676 | */ | |
5280bcef | 677 | static int tracer_tracing_is_on(struct trace_array *tr) |
10246fa3 SRRH |
678 | { |
679 | if (tr->trace_buffer.buffer) | |
680 | return ring_buffer_record_is_on(tr->trace_buffer.buffer); | |
681 | return !tr->buffer_disabled; | |
682 | } | |
683 | ||
499e5470 SR |
684 | /** |
685 | * tracing_is_on - show state of ring buffers enabled | |
686 | */ | |
687 | int tracing_is_on(void) | |
688 | { | |
10246fa3 | 689 | return tracer_tracing_is_on(&global_trace); |
499e5470 SR |
690 | } |
691 | EXPORT_SYMBOL_GPL(tracing_is_on); | |
692 | ||
3928a8a2 | 693 | static int __init set_buf_size(char *str) |
bc0c38d1 | 694 | { |
3928a8a2 | 695 | unsigned long buf_size; |
c6caeeb1 | 696 | |
bc0c38d1 SR |
697 | if (!str) |
698 | return 0; | |
9d612bef | 699 | buf_size = memparse(str, &str); |
c6caeeb1 | 700 | /* nr_entries can not be zero */ |
9d612bef | 701 | if (buf_size == 0) |
c6caeeb1 | 702 | return 0; |
3928a8a2 | 703 | trace_buf_size = buf_size; |
bc0c38d1 SR |
704 | return 1; |
705 | } | |
3928a8a2 | 706 | __setup("trace_buf_size=", set_buf_size); |
bc0c38d1 | 707 | |
0e950173 TB |
708 | static int __init set_tracing_thresh(char *str) |
709 | { | |
87abb3b1 | 710 | unsigned long threshold; |
0e950173 TB |
711 | int ret; |
712 | ||
713 | if (!str) | |
714 | return 0; | |
bcd83ea6 | 715 | ret = kstrtoul(str, 0, &threshold); |
0e950173 TB |
716 | if (ret < 0) |
717 | return 0; | |
87abb3b1 | 718 | tracing_thresh = threshold * 1000; |
0e950173 TB |
719 | return 1; |
720 | } | |
721 | __setup("tracing_thresh=", set_tracing_thresh); | |
722 | ||
57f50be1 SR |
723 | unsigned long nsecs_to_usecs(unsigned long nsecs) |
724 | { | |
725 | return nsecs / 1000; | |
726 | } | |
727 | ||
4fcdae83 | 728 | /* These must match the bit postions in trace_iterator_flags */ |
bc0c38d1 SR |
729 | static const char *trace_options[] = { |
730 | "print-parent", | |
731 | "sym-offset", | |
732 | "sym-addr", | |
733 | "verbose", | |
f9896bf3 | 734 | "raw", |
5e3ca0ec | 735 | "hex", |
cb0f12aa | 736 | "bin", |
2a2cc8f7 | 737 | "block", |
86387f7e | 738 | "stacktrace", |
5e1607a0 | 739 | "trace_printk", |
b2a866f9 | 740 | "ftrace_preempt", |
9f029e83 | 741 | "branch", |
12ef7d44 | 742 | "annotate", |
02b67518 | 743 | "userstacktrace", |
b54d3de9 | 744 | "sym-userobj", |
66896a85 | 745 | "printk-msg-only", |
c4a8e8be | 746 | "context-info", |
c032ef64 | 747 | "latency-format", |
be6f164a | 748 | "sleep-time", |
a2a16d6a | 749 | "graph-time", |
e870e9a1 | 750 | "record-cmd", |
750912fa | 751 | "overwrite", |
cf30cf67 | 752 | "disable_on_free", |
77271ce4 | 753 | "irq-info", |
5224c3a3 | 754 | "markers", |
328df475 | 755 | "function-trace", |
bc0c38d1 SR |
756 | NULL |
757 | }; | |
758 | ||
5079f326 Z |
759 | static struct { |
760 | u64 (*func)(void); | |
761 | const char *name; | |
8be0709f | 762 | int in_ns; /* is this clock in nanoseconds? */ |
5079f326 | 763 | } trace_clocks[] = { |
8be0709f DS |
764 | { trace_clock_local, "local", 1 }, |
765 | { trace_clock_global, "global", 1 }, | |
766 | { trace_clock_counter, "counter", 0 }, | |
8aacf017 | 767 | { trace_clock_jiffies, "uptime", 1 }, |
76f11917 | 768 | { trace_clock, "perf", 1 }, |
8cbd9cc6 | 769 | ARCH_TRACE_CLOCKS |
5079f326 Z |
770 | }; |
771 | ||
b63f39ea | 772 | /* |
773 | * trace_parser_get_init - gets the buffer for trace parser | |
774 | */ | |
775 | int trace_parser_get_init(struct trace_parser *parser, int size) | |
776 | { | |
777 | memset(parser, 0, sizeof(*parser)); | |
778 | ||
779 | parser->buffer = kmalloc(size, GFP_KERNEL); | |
780 | if (!parser->buffer) | |
781 | return 1; | |
782 | ||
783 | parser->size = size; | |
784 | return 0; | |
785 | } | |
786 | ||
787 | /* | |
788 | * trace_parser_put - frees the buffer for trace parser | |
789 | */ | |
790 | void trace_parser_put(struct trace_parser *parser) | |
791 | { | |
792 | kfree(parser->buffer); | |
793 | } | |
794 | ||
795 | /* | |
796 | * trace_get_user - reads the user input string separated by space | |
797 | * (matched by isspace(ch)) | |
798 | * | |
799 | * For each string found the 'struct trace_parser' is updated, | |
800 | * and the function returns. | |
801 | * | |
802 | * Returns number of bytes read. | |
803 | * | |
804 | * See kernel/trace/trace.h for 'struct trace_parser' details. | |
805 | */ | |
806 | int trace_get_user(struct trace_parser *parser, const char __user *ubuf, | |
807 | size_t cnt, loff_t *ppos) | |
808 | { | |
809 | char ch; | |
810 | size_t read = 0; | |
811 | ssize_t ret; | |
812 | ||
813 | if (!*ppos) | |
814 | trace_parser_clear(parser); | |
815 | ||
816 | ret = get_user(ch, ubuf++); | |
817 | if (ret) | |
818 | goto out; | |
819 | ||
820 | read++; | |
821 | cnt--; | |
822 | ||
823 | /* | |
824 | * The parser is not finished with the last write, | |
825 | * continue reading the user input without skipping spaces. | |
826 | */ | |
827 | if (!parser->cont) { | |
828 | /* skip white space */ | |
829 | while (cnt && isspace(ch)) { | |
830 | ret = get_user(ch, ubuf++); | |
831 | if (ret) | |
832 | goto out; | |
833 | read++; | |
834 | cnt--; | |
835 | } | |
836 | ||
837 | /* only spaces were written */ | |
838 | if (isspace(ch)) { | |
839 | *ppos += read; | |
840 | ret = read; | |
841 | goto out; | |
842 | } | |
843 | ||
844 | parser->idx = 0; | |
845 | } | |
846 | ||
847 | /* read the non-space input */ | |
848 | while (cnt && !isspace(ch)) { | |
3c235a33 | 849 | if (parser->idx < parser->size - 1) |
b63f39ea | 850 | parser->buffer[parser->idx++] = ch; |
851 | else { | |
852 | ret = -EINVAL; | |
853 | goto out; | |
854 | } | |
855 | ret = get_user(ch, ubuf++); | |
856 | if (ret) | |
857 | goto out; | |
858 | read++; | |
859 | cnt--; | |
860 | } | |
861 | ||
862 | /* We either got finished input or we have to wait for another call. */ | |
863 | if (isspace(ch)) { | |
864 | parser->buffer[parser->idx] = 0; | |
865 | parser->cont = false; | |
057db848 | 866 | } else if (parser->idx < parser->size - 1) { |
b63f39ea | 867 | parser->cont = true; |
868 | parser->buffer[parser->idx++] = ch; | |
057db848 SR |
869 | } else { |
870 | ret = -EINVAL; | |
871 | goto out; | |
b63f39ea | 872 | } |
873 | ||
874 | *ppos += read; | |
875 | ret = read; | |
876 | ||
877 | out: | |
878 | return ret; | |
879 | } | |
880 | ||
6c6c2796 PP |
881 | ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt) |
882 | { | |
883 | int len; | |
884 | int ret; | |
885 | ||
2dc5d12b SR |
886 | if (!cnt) |
887 | return 0; | |
888 | ||
6c6c2796 PP |
889 | if (s->len <= s->readpos) |
890 | return -EBUSY; | |
891 | ||
892 | len = s->len - s->readpos; | |
893 | if (cnt > len) | |
894 | cnt = len; | |
895 | ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt); | |
2dc5d12b | 896 | if (ret == cnt) |
6c6c2796 PP |
897 | return -EFAULT; |
898 | ||
2dc5d12b SR |
899 | cnt -= ret; |
900 | ||
e74da523 | 901 | s->readpos += cnt; |
6c6c2796 | 902 | return cnt; |
214023c3 SR |
903 | } |
904 | ||
b8b94265 | 905 | static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt) |
3c56819b EGM |
906 | { |
907 | int len; | |
3c56819b EGM |
908 | |
909 | if (s->len <= s->readpos) | |
910 | return -EBUSY; | |
911 | ||
912 | len = s->len - s->readpos; | |
913 | if (cnt > len) | |
914 | cnt = len; | |
5a26c8f0 | 915 | memcpy(buf, s->buffer + s->readpos, cnt); |
3c56819b | 916 | |
e74da523 | 917 | s->readpos += cnt; |
3c56819b EGM |
918 | return cnt; |
919 | } | |
920 | ||
5d4a9dba SR |
921 | /* |
922 | * ftrace_max_lock is used to protect the swapping of buffers | |
923 | * when taking a max snapshot. The buffers themselves are | |
924 | * protected by per_cpu spinlocks. But the action of the swap | |
925 | * needs its own lock. | |
926 | * | |
445c8951 | 927 | * This is defined as a arch_spinlock_t in order to help |
5d4a9dba SR |
928 | * with performance when lockdep debugging is enabled. |
929 | * | |
930 | * It is also used in other places outside the update_max_tr | |
931 | * so it needs to be defined outside of the | |
932 | * CONFIG_TRACER_MAX_TRACE. | |
933 | */ | |
445c8951 | 934 | static arch_spinlock_t ftrace_max_lock = |
edc35bd7 | 935 | (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED; |
5d4a9dba | 936 | |
0e950173 TB |
937 | unsigned long __read_mostly tracing_thresh; |
938 | ||
5d4a9dba SR |
939 | #ifdef CONFIG_TRACER_MAX_TRACE |
940 | unsigned long __read_mostly tracing_max_latency; | |
5d4a9dba SR |
941 | |
942 | /* | |
943 | * Copy the new maximum trace into the separate maximum-trace | |
944 | * structure. (this way the maximum trace is permanently saved, | |
945 | * for later retrieval via /sys/kernel/debug/tracing/latency_trace) | |
946 | */ | |
947 | static void | |
948 | __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu) | |
949 | { | |
12883efb SRRH |
950 | struct trace_buffer *trace_buf = &tr->trace_buffer; |
951 | struct trace_buffer *max_buf = &tr->max_buffer; | |
952 | struct trace_array_cpu *data = per_cpu_ptr(trace_buf->data, cpu); | |
953 | struct trace_array_cpu *max_data = per_cpu_ptr(max_buf->data, cpu); | |
5d4a9dba | 954 | |
12883efb SRRH |
955 | max_buf->cpu = cpu; |
956 | max_buf->time_start = data->preempt_timestamp; | |
5d4a9dba | 957 | |
8248ac05 SR |
958 | max_data->saved_latency = tracing_max_latency; |
959 | max_data->critical_start = data->critical_start; | |
960 | max_data->critical_end = data->critical_end; | |
5d4a9dba | 961 | |
1acaa1b2 | 962 | memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN); |
8248ac05 | 963 | max_data->pid = tsk->pid; |
f17a5194 SRRH |
964 | /* |
965 | * If tsk == current, then use current_uid(), as that does not use | |
966 | * RCU. The irq tracer can be called out of RCU scope. | |
967 | */ | |
968 | if (tsk == current) | |
969 | max_data->uid = current_uid(); | |
970 | else | |
971 | max_data->uid = task_uid(tsk); | |
972 | ||
8248ac05 SR |
973 | max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO; |
974 | max_data->policy = tsk->policy; | |
975 | max_data->rt_priority = tsk->rt_priority; | |
5d4a9dba SR |
976 | |
977 | /* record this tasks comm */ | |
978 | tracing_record_cmdline(tsk); | |
979 | } | |
980 | ||
4fcdae83 SR |
981 | /** |
982 | * update_max_tr - snapshot all trace buffers from global_trace to max_tr | |
983 | * @tr: tracer | |
984 | * @tsk: the task with the latency | |
985 | * @cpu: The cpu that initiated the trace. | |
986 | * | |
987 | * Flip the buffers between the @tr and the max_tr and record information | |
988 | * about which task was the cause of this latency. | |
989 | */ | |
e309b41d | 990 | void |
bc0c38d1 SR |
991 | update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu) |
992 | { | |
2721e72d | 993 | struct ring_buffer *buf; |
bc0c38d1 | 994 | |
2b6080f2 | 995 | if (tr->stop_count) |
b8de7bd1 SR |
996 | return; |
997 | ||
4c11d7ae | 998 | WARN_ON_ONCE(!irqs_disabled()); |
34600f0e | 999 | |
45ad21ca | 1000 | if (!tr->allocated_snapshot) { |
debdd57f | 1001 | /* Only the nop tracer should hit this when disabling */ |
2b6080f2 | 1002 | WARN_ON_ONCE(tr->current_trace != &nop_trace); |
34600f0e | 1003 | return; |
debdd57f | 1004 | } |
34600f0e | 1005 | |
0199c4e6 | 1006 | arch_spin_lock(&ftrace_max_lock); |
3928a8a2 | 1007 | |
12883efb SRRH |
1008 | buf = tr->trace_buffer.buffer; |
1009 | tr->trace_buffer.buffer = tr->max_buffer.buffer; | |
1010 | tr->max_buffer.buffer = buf; | |
3928a8a2 | 1011 | |
bc0c38d1 | 1012 | __update_max_tr(tr, tsk, cpu); |
0199c4e6 | 1013 | arch_spin_unlock(&ftrace_max_lock); |
bc0c38d1 SR |
1014 | } |
1015 | ||
1016 | /** | |
1017 | * update_max_tr_single - only copy one trace over, and reset the rest | |
1018 | * @tr - tracer | |
1019 | * @tsk - task with the latency | |
1020 | * @cpu - the cpu of the buffer to copy. | |
4fcdae83 SR |
1021 | * |
1022 | * Flip the trace of a single CPU buffer between the @tr and the max_tr. | |
bc0c38d1 | 1023 | */ |
e309b41d | 1024 | void |
bc0c38d1 SR |
1025 | update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu) |
1026 | { | |
3928a8a2 | 1027 | int ret; |
bc0c38d1 | 1028 | |
2b6080f2 | 1029 | if (tr->stop_count) |
b8de7bd1 SR |
1030 | return; |
1031 | ||
4c11d7ae | 1032 | WARN_ON_ONCE(!irqs_disabled()); |
6c24499f | 1033 | if (!tr->allocated_snapshot) { |
2930e04d | 1034 | /* Only the nop tracer should hit this when disabling */ |
9e8529af | 1035 | WARN_ON_ONCE(tr->current_trace != &nop_trace); |
ef710e10 | 1036 | return; |
2930e04d | 1037 | } |
ef710e10 | 1038 | |
0199c4e6 | 1039 | arch_spin_lock(&ftrace_max_lock); |
bc0c38d1 | 1040 | |
12883efb | 1041 | ret = ring_buffer_swap_cpu(tr->max_buffer.buffer, tr->trace_buffer.buffer, cpu); |
3928a8a2 | 1042 | |
e8165dbb SR |
1043 | if (ret == -EBUSY) { |
1044 | /* | |
1045 | * We failed to swap the buffer due to a commit taking | |
1046 | * place on this CPU. We fail to record, but we reset | |
1047 | * the max trace buffer (no one writes directly to it) | |
1048 | * and flag that it failed. | |
1049 | */ | |
12883efb | 1050 | trace_array_printk_buf(tr->max_buffer.buffer, _THIS_IP_, |
e8165dbb SR |
1051 | "Failed to swap buffers due to commit in progress\n"); |
1052 | } | |
1053 | ||
e8165dbb | 1054 | WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY); |
bc0c38d1 SR |
1055 | |
1056 | __update_max_tr(tr, tsk, cpu); | |
0199c4e6 | 1057 | arch_spin_unlock(&ftrace_max_lock); |
bc0c38d1 | 1058 | } |
5d4a9dba | 1059 | #endif /* CONFIG_TRACER_MAX_TRACE */ |
bc0c38d1 | 1060 | |
0d5c6e1c SR |
1061 | static void default_wait_pipe(struct trace_iterator *iter) |
1062 | { | |
15693458 SRRH |
1063 | /* Iterators are static, they should be filled or empty */ |
1064 | if (trace_buffer_iter(iter, iter->cpu_file)) | |
1065 | return; | |
0d5c6e1c | 1066 | |
12883efb | 1067 | ring_buffer_wait(iter->trace_buffer->buffer, iter->cpu_file); |
0d5c6e1c SR |
1068 | } |
1069 | ||
f4e781c0 SRRH |
1070 | #ifdef CONFIG_FTRACE_STARTUP_TEST |
1071 | static int run_tracer_selftest(struct tracer *type) | |
1072 | { | |
1073 | struct trace_array *tr = &global_trace; | |
1074 | struct tracer *saved_tracer = tr->current_trace; | |
1075 | int ret; | |
0d5c6e1c | 1076 | |
f4e781c0 SRRH |
1077 | if (!type->selftest || tracing_selftest_disabled) |
1078 | return 0; | |
0d5c6e1c SR |
1079 | |
1080 | /* | |
f4e781c0 SRRH |
1081 | * Run a selftest on this tracer. |
1082 | * Here we reset the trace buffer, and set the current | |
1083 | * tracer to be this tracer. The tracer can then run some | |
1084 | * internal tracing to verify that everything is in order. | |
1085 | * If we fail, we do not register this tracer. | |
0d5c6e1c | 1086 | */ |
f4e781c0 | 1087 | tracing_reset_online_cpus(&tr->trace_buffer); |
0d5c6e1c | 1088 | |
f4e781c0 SRRH |
1089 | tr->current_trace = type; |
1090 | ||
1091 | #ifdef CONFIG_TRACER_MAX_TRACE | |
1092 | if (type->use_max_tr) { | |
1093 | /* If we expanded the buffers, make sure the max is expanded too */ | |
1094 | if (ring_buffer_expanded) | |
1095 | ring_buffer_resize(tr->max_buffer.buffer, trace_buf_size, | |
1096 | RING_BUFFER_ALL_CPUS); | |
1097 | tr->allocated_snapshot = true; | |
1098 | } | |
1099 | #endif | |
1100 | ||
1101 | /* the test is responsible for initializing and enabling */ | |
1102 | pr_info("Testing tracer %s: ", type->name); | |
1103 | ret = type->selftest(type, tr); | |
1104 | /* the test is responsible for resetting too */ | |
1105 | tr->current_trace = saved_tracer; | |
1106 | if (ret) { | |
1107 | printk(KERN_CONT "FAILED!\n"); | |
1108 | /* Add the warning after printing 'FAILED' */ | |
1109 | WARN_ON(1); | |
1110 | return -1; | |
1111 | } | |
1112 | /* Only reset on passing, to avoid touching corrupted buffers */ | |
1113 | tracing_reset_online_cpus(&tr->trace_buffer); | |
1114 | ||
1115 | #ifdef CONFIG_TRACER_MAX_TRACE | |
1116 | if (type->use_max_tr) { | |
1117 | tr->allocated_snapshot = false; | |
0d5c6e1c | 1118 | |
f4e781c0 SRRH |
1119 | /* Shrink the max buffer again */ |
1120 | if (ring_buffer_expanded) | |
1121 | ring_buffer_resize(tr->max_buffer.buffer, 1, | |
1122 | RING_BUFFER_ALL_CPUS); | |
1123 | } | |
1124 | #endif | |
1125 | ||
1126 | printk(KERN_CONT "PASSED\n"); | |
1127 | return 0; | |
1128 | } | |
1129 | #else | |
1130 | static inline int run_tracer_selftest(struct tracer *type) | |
1131 | { | |
1132 | return 0; | |
0d5c6e1c | 1133 | } |
f4e781c0 | 1134 | #endif /* CONFIG_FTRACE_STARTUP_TEST */ |
0d5c6e1c | 1135 | |
4fcdae83 SR |
1136 | /** |
1137 | * register_tracer - register a tracer with the ftrace system. | |
1138 | * @type - the plugin for the tracer | |
1139 | * | |
1140 | * Register a new plugin tracer. | |
1141 | */ | |
bc0c38d1 SR |
1142 | int register_tracer(struct tracer *type) |
1143 | { | |
1144 | struct tracer *t; | |
bc0c38d1 SR |
1145 | int ret = 0; |
1146 | ||
1147 | if (!type->name) { | |
1148 | pr_info("Tracer must have a name\n"); | |
1149 | return -1; | |
1150 | } | |
1151 | ||
24a461d5 | 1152 | if (strlen(type->name) >= MAX_TRACER_SIZE) { |
ee6c2c1b LZ |
1153 | pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE); |
1154 | return -1; | |
1155 | } | |
1156 | ||
bc0c38d1 | 1157 | mutex_lock(&trace_types_lock); |
86fa2f60 | 1158 | |
8e1b82e0 FW |
1159 | tracing_selftest_running = true; |
1160 | ||
bc0c38d1 SR |
1161 | for (t = trace_types; t; t = t->next) { |
1162 | if (strcmp(type->name, t->name) == 0) { | |
1163 | /* already found */ | |
ee6c2c1b | 1164 | pr_info("Tracer %s already registered\n", |
bc0c38d1 SR |
1165 | type->name); |
1166 | ret = -1; | |
1167 | goto out; | |
1168 | } | |
1169 | } | |
1170 | ||
adf9f195 FW |
1171 | if (!type->set_flag) |
1172 | type->set_flag = &dummy_set_flag; | |
1173 | if (!type->flags) | |
1174 | type->flags = &dummy_tracer_flags; | |
1175 | else | |
1176 | if (!type->flags->opts) | |
1177 | type->flags->opts = dummy_tracer_opt; | |
6eaaa5d5 FW |
1178 | if (!type->wait_pipe) |
1179 | type->wait_pipe = default_wait_pipe; | |
1180 | ||
f4e781c0 SRRH |
1181 | ret = run_tracer_selftest(type); |
1182 | if (ret < 0) | |
1183 | goto out; | |
60a11774 | 1184 | |
bc0c38d1 SR |
1185 | type->next = trace_types; |
1186 | trace_types = type; | |
60a11774 | 1187 | |
bc0c38d1 | 1188 | out: |
8e1b82e0 | 1189 | tracing_selftest_running = false; |
bc0c38d1 SR |
1190 | mutex_unlock(&trace_types_lock); |
1191 | ||
dac74940 SR |
1192 | if (ret || !default_bootup_tracer) |
1193 | goto out_unlock; | |
1194 | ||
ee6c2c1b | 1195 | if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE)) |
dac74940 SR |
1196 | goto out_unlock; |
1197 | ||
1198 | printk(KERN_INFO "Starting tracer '%s'\n", type->name); | |
1199 | /* Do we want this tracer to start on bootup? */ | |
1200 | tracing_set_tracer(type->name); | |
1201 | default_bootup_tracer = NULL; | |
1202 | /* disable other selftests, since this will break it. */ | |
55034cd6 | 1203 | tracing_selftest_disabled = true; |
b2821ae6 | 1204 | #ifdef CONFIG_FTRACE_STARTUP_TEST |
dac74940 SR |
1205 | printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n", |
1206 | type->name); | |
b2821ae6 | 1207 | #endif |
b2821ae6 | 1208 | |
dac74940 | 1209 | out_unlock: |
bc0c38d1 SR |
1210 | return ret; |
1211 | } | |
1212 | ||
12883efb | 1213 | void tracing_reset(struct trace_buffer *buf, int cpu) |
f633903a | 1214 | { |
12883efb | 1215 | struct ring_buffer *buffer = buf->buffer; |
f633903a | 1216 | |
a5416411 HT |
1217 | if (!buffer) |
1218 | return; | |
1219 | ||
f633903a SR |
1220 | ring_buffer_record_disable(buffer); |
1221 | ||
1222 | /* Make sure all commits have finished */ | |
1223 | synchronize_sched(); | |
68179686 | 1224 | ring_buffer_reset_cpu(buffer, cpu); |
f633903a SR |
1225 | |
1226 | ring_buffer_record_enable(buffer); | |
1227 | } | |
1228 | ||
12883efb | 1229 | void tracing_reset_online_cpus(struct trace_buffer *buf) |
213cc060 | 1230 | { |
12883efb | 1231 | struct ring_buffer *buffer = buf->buffer; |
213cc060 PE |
1232 | int cpu; |
1233 | ||
a5416411 HT |
1234 | if (!buffer) |
1235 | return; | |
1236 | ||
621968cd SR |
1237 | ring_buffer_record_disable(buffer); |
1238 | ||
1239 | /* Make sure all commits have finished */ | |
1240 | synchronize_sched(); | |
1241 | ||
9457158b | 1242 | buf->time_start = buffer_ftrace_now(buf, buf->cpu); |
213cc060 PE |
1243 | |
1244 | for_each_online_cpu(cpu) | |
68179686 | 1245 | ring_buffer_reset_cpu(buffer, cpu); |
621968cd SR |
1246 | |
1247 | ring_buffer_record_enable(buffer); | |
213cc060 PE |
1248 | } |
1249 | ||
09d8091c | 1250 | /* Must have trace_types_lock held */ |
873c642f | 1251 | void tracing_reset_all_online_cpus(void) |
9456f0fa | 1252 | { |
873c642f SRRH |
1253 | struct trace_array *tr; |
1254 | ||
873c642f | 1255 | list_for_each_entry(tr, &ftrace_trace_arrays, list) { |
12883efb SRRH |
1256 | tracing_reset_online_cpus(&tr->trace_buffer); |
1257 | #ifdef CONFIG_TRACER_MAX_TRACE | |
1258 | tracing_reset_online_cpus(&tr->max_buffer); | |
1259 | #endif | |
873c642f | 1260 | } |
9456f0fa SR |
1261 | } |
1262 | ||
bc0c38d1 | 1263 | #define SAVED_CMDLINES 128 |
2c7eea4c | 1264 | #define NO_CMDLINE_MAP UINT_MAX |
bc0c38d1 SR |
1265 | static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1]; |
1266 | static unsigned map_cmdline_to_pid[SAVED_CMDLINES]; | |
1267 | static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN]; | |
1268 | static int cmdline_idx; | |
edc35bd7 | 1269 | static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED; |
25b0b44a | 1270 | |
25b0b44a | 1271 | /* temporary disable recording */ |
4fd27358 | 1272 | static atomic_t trace_record_cmdline_disabled __read_mostly; |
bc0c38d1 SR |
1273 | |
1274 | static void trace_init_cmdlines(void) | |
1275 | { | |
2c7eea4c TG |
1276 | memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline)); |
1277 | memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid)); | |
bc0c38d1 SR |
1278 | cmdline_idx = 0; |
1279 | } | |
1280 | ||
b5130b1e CE |
1281 | int is_tracing_stopped(void) |
1282 | { | |
2b6080f2 | 1283 | return global_trace.stop_count; |
b5130b1e CE |
1284 | } |
1285 | ||
0f048701 SR |
1286 | /** |
1287 | * tracing_start - quick start of the tracer | |
1288 | * | |
1289 | * If tracing is enabled but was stopped by tracing_stop, | |
1290 | * this will start the tracer back up. | |
1291 | */ | |
1292 | void tracing_start(void) | |
1293 | { | |
1294 | struct ring_buffer *buffer; | |
1295 | unsigned long flags; | |
1296 | ||
1297 | if (tracing_disabled) | |
1298 | return; | |
1299 | ||
2b6080f2 SR |
1300 | raw_spin_lock_irqsave(&global_trace.start_lock, flags); |
1301 | if (--global_trace.stop_count) { | |
1302 | if (global_trace.stop_count < 0) { | |
b06a8301 SR |
1303 | /* Someone screwed up their debugging */ |
1304 | WARN_ON_ONCE(1); | |
2b6080f2 | 1305 | global_trace.stop_count = 0; |
b06a8301 | 1306 | } |
0f048701 SR |
1307 | goto out; |
1308 | } | |
1309 | ||
a2f80714 SR |
1310 | /* Prevent the buffers from switching */ |
1311 | arch_spin_lock(&ftrace_max_lock); | |
0f048701 | 1312 | |
12883efb | 1313 | buffer = global_trace.trace_buffer.buffer; |
0f048701 SR |
1314 | if (buffer) |
1315 | ring_buffer_record_enable(buffer); | |
1316 | ||
12883efb SRRH |
1317 | #ifdef CONFIG_TRACER_MAX_TRACE |
1318 | buffer = global_trace.max_buffer.buffer; | |
0f048701 SR |
1319 | if (buffer) |
1320 | ring_buffer_record_enable(buffer); | |
12883efb | 1321 | #endif |
0f048701 | 1322 | |
a2f80714 SR |
1323 | arch_spin_unlock(&ftrace_max_lock); |
1324 | ||
0f048701 SR |
1325 | ftrace_start(); |
1326 | out: | |
2b6080f2 SR |
1327 | raw_spin_unlock_irqrestore(&global_trace.start_lock, flags); |
1328 | } | |
1329 | ||
1330 | static void tracing_start_tr(struct trace_array *tr) | |
1331 | { | |
1332 | struct ring_buffer *buffer; | |
1333 | unsigned long flags; | |
1334 | ||
1335 | if (tracing_disabled) | |
1336 | return; | |
1337 | ||
1338 | /* If global, we need to also start the max tracer */ | |
1339 | if (tr->flags & TRACE_ARRAY_FL_GLOBAL) | |
1340 | return tracing_start(); | |
1341 | ||
1342 | raw_spin_lock_irqsave(&tr->start_lock, flags); | |
1343 | ||
1344 | if (--tr->stop_count) { | |
1345 | if (tr->stop_count < 0) { | |
1346 | /* Someone screwed up their debugging */ | |
1347 | WARN_ON_ONCE(1); | |
1348 | tr->stop_count = 0; | |
1349 | } | |
1350 | goto out; | |
1351 | } | |
1352 | ||
12883efb | 1353 | buffer = tr->trace_buffer.buffer; |
2b6080f2 SR |
1354 | if (buffer) |
1355 | ring_buffer_record_enable(buffer); | |
1356 | ||
1357 | out: | |
1358 | raw_spin_unlock_irqrestore(&tr->start_lock, flags); | |
0f048701 SR |
1359 | } |
1360 | ||
1361 | /** | |
1362 | * tracing_stop - quick stop of the tracer | |
1363 | * | |
1364 | * Light weight way to stop tracing. Use in conjunction with | |
1365 | * tracing_start. | |
1366 | */ | |
1367 | void tracing_stop(void) | |
1368 | { | |
1369 | struct ring_buffer *buffer; | |
1370 | unsigned long flags; | |
1371 | ||
1372 | ftrace_stop(); | |
2b6080f2 SR |
1373 | raw_spin_lock_irqsave(&global_trace.start_lock, flags); |
1374 | if (global_trace.stop_count++) | |
0f048701 SR |
1375 | goto out; |
1376 | ||
a2f80714 SR |
1377 | /* Prevent the buffers from switching */ |
1378 | arch_spin_lock(&ftrace_max_lock); | |
1379 | ||
12883efb | 1380 | buffer = global_trace.trace_buffer.buffer; |
0f048701 SR |
1381 | if (buffer) |
1382 | ring_buffer_record_disable(buffer); | |
1383 | ||
12883efb SRRH |
1384 | #ifdef CONFIG_TRACER_MAX_TRACE |
1385 | buffer = global_trace.max_buffer.buffer; | |
0f048701 SR |
1386 | if (buffer) |
1387 | ring_buffer_record_disable(buffer); | |
12883efb | 1388 | #endif |
0f048701 | 1389 | |
a2f80714 SR |
1390 | arch_spin_unlock(&ftrace_max_lock); |
1391 | ||
0f048701 | 1392 | out: |
2b6080f2 SR |
1393 | raw_spin_unlock_irqrestore(&global_trace.start_lock, flags); |
1394 | } | |
1395 | ||
1396 | static void tracing_stop_tr(struct trace_array *tr) | |
1397 | { | |
1398 | struct ring_buffer *buffer; | |
1399 | unsigned long flags; | |
1400 | ||
1401 | /* If global, we need to also stop the max tracer */ | |
1402 | if (tr->flags & TRACE_ARRAY_FL_GLOBAL) | |
1403 | return tracing_stop(); | |
1404 | ||
1405 | raw_spin_lock_irqsave(&tr->start_lock, flags); | |
1406 | if (tr->stop_count++) | |
1407 | goto out; | |
1408 | ||
12883efb | 1409 | buffer = tr->trace_buffer.buffer; |
2b6080f2 SR |
1410 | if (buffer) |
1411 | ring_buffer_record_disable(buffer); | |
1412 | ||
1413 | out: | |
1414 | raw_spin_unlock_irqrestore(&tr->start_lock, flags); | |
0f048701 SR |
1415 | } |
1416 | ||
e309b41d | 1417 | void trace_stop_cmdline_recording(void); |
bc0c38d1 | 1418 | |
e309b41d | 1419 | static void trace_save_cmdline(struct task_struct *tsk) |
bc0c38d1 | 1420 | { |
a635cf04 | 1421 | unsigned pid, idx; |
bc0c38d1 SR |
1422 | |
1423 | if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT)) | |
1424 | return; | |
1425 | ||
1426 | /* | |
1427 | * It's not the end of the world if we don't get | |
1428 | * the lock, but we also don't want to spin | |
1429 | * nor do we want to disable interrupts, | |
1430 | * so if we miss here, then better luck next time. | |
1431 | */ | |
0199c4e6 | 1432 | if (!arch_spin_trylock(&trace_cmdline_lock)) |
bc0c38d1 SR |
1433 | return; |
1434 | ||
1435 | idx = map_pid_to_cmdline[tsk->pid]; | |
2c7eea4c | 1436 | if (idx == NO_CMDLINE_MAP) { |
bc0c38d1 SR |
1437 | idx = (cmdline_idx + 1) % SAVED_CMDLINES; |
1438 | ||
a635cf04 CE |
1439 | /* |
1440 | * Check whether the cmdline buffer at idx has a pid | |
1441 | * mapped. We are going to overwrite that entry so we | |
1442 | * need to clear the map_pid_to_cmdline. Otherwise we | |
1443 | * would read the new comm for the old pid. | |
1444 | */ | |
1445 | pid = map_cmdline_to_pid[idx]; | |
1446 | if (pid != NO_CMDLINE_MAP) | |
1447 | map_pid_to_cmdline[pid] = NO_CMDLINE_MAP; | |
bc0c38d1 | 1448 | |
a635cf04 | 1449 | map_cmdline_to_pid[idx] = tsk->pid; |
bc0c38d1 SR |
1450 | map_pid_to_cmdline[tsk->pid] = idx; |
1451 | ||
1452 | cmdline_idx = idx; | |
1453 | } | |
1454 | ||
1455 | memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN); | |
1456 | ||
0199c4e6 | 1457 | arch_spin_unlock(&trace_cmdline_lock); |
bc0c38d1 SR |
1458 | } |
1459 | ||
4ca53085 | 1460 | void trace_find_cmdline(int pid, char comm[]) |
bc0c38d1 | 1461 | { |
bc0c38d1 SR |
1462 | unsigned map; |
1463 | ||
4ca53085 SR |
1464 | if (!pid) { |
1465 | strcpy(comm, "<idle>"); | |
1466 | return; | |
1467 | } | |
bc0c38d1 | 1468 | |
74bf4076 SR |
1469 | if (WARN_ON_ONCE(pid < 0)) { |
1470 | strcpy(comm, "<XXX>"); | |
1471 | return; | |
1472 | } | |
1473 | ||
4ca53085 SR |
1474 | if (pid > PID_MAX_DEFAULT) { |
1475 | strcpy(comm, "<...>"); | |
1476 | return; | |
1477 | } | |
bc0c38d1 | 1478 | |
5b6045a9 | 1479 | preempt_disable(); |
0199c4e6 | 1480 | arch_spin_lock(&trace_cmdline_lock); |
bc0c38d1 | 1481 | map = map_pid_to_cmdline[pid]; |
50d88758 TG |
1482 | if (map != NO_CMDLINE_MAP) |
1483 | strcpy(comm, saved_cmdlines[map]); | |
1484 | else | |
1485 | strcpy(comm, "<...>"); | |
bc0c38d1 | 1486 | |
0199c4e6 | 1487 | arch_spin_unlock(&trace_cmdline_lock); |
5b6045a9 | 1488 | preempt_enable(); |
bc0c38d1 SR |
1489 | } |
1490 | ||
e309b41d | 1491 | void tracing_record_cmdline(struct task_struct *tsk) |
bc0c38d1 | 1492 | { |
0fb9656d | 1493 | if (atomic_read(&trace_record_cmdline_disabled) || !tracing_is_on()) |
bc0c38d1 SR |
1494 | return; |
1495 | ||
7ffbd48d SR |
1496 | if (!__this_cpu_read(trace_cmdline_save)) |
1497 | return; | |
1498 | ||
1499 | __this_cpu_write(trace_cmdline_save, false); | |
1500 | ||
bc0c38d1 SR |
1501 | trace_save_cmdline(tsk); |
1502 | } | |
1503 | ||
45dcd8b8 | 1504 | void |
38697053 SR |
1505 | tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags, |
1506 | int pc) | |
bc0c38d1 SR |
1507 | { |
1508 | struct task_struct *tsk = current; | |
bc0c38d1 | 1509 | |
777e208d SR |
1510 | entry->preempt_count = pc & 0xff; |
1511 | entry->pid = (tsk) ? tsk->pid : 0; | |
1512 | entry->flags = | |
9244489a | 1513 | #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT |
2e2ca155 | 1514 | (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) | |
9244489a SR |
1515 | #else |
1516 | TRACE_FLAG_IRQS_NOSUPPORT | | |
1517 | #endif | |
bc0c38d1 SR |
1518 | ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) | |
1519 | ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) | | |
e5137b50 PZ |
1520 | (tif_need_resched() ? TRACE_FLAG_NEED_RESCHED : 0) | |
1521 | (test_preempt_need_resched() ? TRACE_FLAG_PREEMPT_RESCHED : 0); | |
bc0c38d1 | 1522 | } |
f413cdb8 | 1523 | EXPORT_SYMBOL_GPL(tracing_generic_entry_update); |
bc0c38d1 | 1524 | |
e77405ad SR |
1525 | struct ring_buffer_event * |
1526 | trace_buffer_lock_reserve(struct ring_buffer *buffer, | |
1527 | int type, | |
1528 | unsigned long len, | |
1529 | unsigned long flags, int pc) | |
51a763dd ACM |
1530 | { |
1531 | struct ring_buffer_event *event; | |
1532 | ||
e77405ad | 1533 | event = ring_buffer_lock_reserve(buffer, len); |
51a763dd ACM |
1534 | if (event != NULL) { |
1535 | struct trace_entry *ent = ring_buffer_event_data(event); | |
1536 | ||
1537 | tracing_generic_entry_update(ent, flags, pc); | |
1538 | ent->type = type; | |
1539 | } | |
1540 | ||
1541 | return event; | |
1542 | } | |
51a763dd | 1543 | |
7ffbd48d SR |
1544 | void |
1545 | __buffer_unlock_commit(struct ring_buffer *buffer, struct ring_buffer_event *event) | |
1546 | { | |
1547 | __this_cpu_write(trace_cmdline_save, true); | |
1548 | ring_buffer_unlock_commit(buffer, event); | |
1549 | } | |
1550 | ||
e77405ad SR |
1551 | static inline void |
1552 | __trace_buffer_unlock_commit(struct ring_buffer *buffer, | |
1553 | struct ring_buffer_event *event, | |
0d5c6e1c | 1554 | unsigned long flags, int pc) |
51a763dd | 1555 | { |
7ffbd48d | 1556 | __buffer_unlock_commit(buffer, event); |
51a763dd | 1557 | |
e77405ad SR |
1558 | ftrace_trace_stack(buffer, flags, 6, pc); |
1559 | ftrace_trace_userstack(buffer, flags, pc); | |
07edf712 FW |
1560 | } |
1561 | ||
e77405ad SR |
1562 | void trace_buffer_unlock_commit(struct ring_buffer *buffer, |
1563 | struct ring_buffer_event *event, | |
1564 | unsigned long flags, int pc) | |
07edf712 | 1565 | { |
0d5c6e1c | 1566 | __trace_buffer_unlock_commit(buffer, event, flags, pc); |
51a763dd | 1567 | } |
0d5c6e1c | 1568 | EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit); |
51a763dd | 1569 | |
ccb469a1 SR |
1570 | struct ring_buffer_event * |
1571 | trace_event_buffer_lock_reserve(struct ring_buffer **current_rb, | |
1572 | struct ftrace_event_file *ftrace_file, | |
1573 | int type, unsigned long len, | |
1574 | unsigned long flags, int pc) | |
1575 | { | |
12883efb | 1576 | *current_rb = ftrace_file->tr->trace_buffer.buffer; |
ccb469a1 SR |
1577 | return trace_buffer_lock_reserve(*current_rb, |
1578 | type, len, flags, pc); | |
1579 | } | |
1580 | EXPORT_SYMBOL_GPL(trace_event_buffer_lock_reserve); | |
1581 | ||
ef5580d0 | 1582 | struct ring_buffer_event * |
e77405ad SR |
1583 | trace_current_buffer_lock_reserve(struct ring_buffer **current_rb, |
1584 | int type, unsigned long len, | |
ef5580d0 SR |
1585 | unsigned long flags, int pc) |
1586 | { | |
12883efb | 1587 | *current_rb = global_trace.trace_buffer.buffer; |
e77405ad | 1588 | return trace_buffer_lock_reserve(*current_rb, |
ef5580d0 SR |
1589 | type, len, flags, pc); |
1590 | } | |
94487d6d | 1591 | EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve); |
ef5580d0 | 1592 | |
e77405ad SR |
1593 | void trace_current_buffer_unlock_commit(struct ring_buffer *buffer, |
1594 | struct ring_buffer_event *event, | |
ef5580d0 SR |
1595 | unsigned long flags, int pc) |
1596 | { | |
0d5c6e1c | 1597 | __trace_buffer_unlock_commit(buffer, event, flags, pc); |
07edf712 | 1598 | } |
94487d6d | 1599 | EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit); |
07edf712 | 1600 | |
0d5c6e1c SR |
1601 | void trace_buffer_unlock_commit_regs(struct ring_buffer *buffer, |
1602 | struct ring_buffer_event *event, | |
1603 | unsigned long flags, int pc, | |
1604 | struct pt_regs *regs) | |
1fd8df2c | 1605 | { |
7ffbd48d | 1606 | __buffer_unlock_commit(buffer, event); |
1fd8df2c MH |
1607 | |
1608 | ftrace_trace_stack_regs(buffer, flags, 0, pc, regs); | |
1609 | ftrace_trace_userstack(buffer, flags, pc); | |
1610 | } | |
0d5c6e1c | 1611 | EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit_regs); |
1fd8df2c | 1612 | |
e77405ad SR |
1613 | void trace_current_buffer_discard_commit(struct ring_buffer *buffer, |
1614 | struct ring_buffer_event *event) | |
77d9f465 | 1615 | { |
e77405ad | 1616 | ring_buffer_discard_commit(buffer, event); |
ef5580d0 | 1617 | } |
12acd473 | 1618 | EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit); |
ef5580d0 | 1619 | |
e309b41d | 1620 | void |
7be42151 | 1621 | trace_function(struct trace_array *tr, |
38697053 SR |
1622 | unsigned long ip, unsigned long parent_ip, unsigned long flags, |
1623 | int pc) | |
bc0c38d1 | 1624 | { |
e1112b4d | 1625 | struct ftrace_event_call *call = &event_function; |
12883efb | 1626 | struct ring_buffer *buffer = tr->trace_buffer.buffer; |
3928a8a2 | 1627 | struct ring_buffer_event *event; |
777e208d | 1628 | struct ftrace_entry *entry; |
bc0c38d1 | 1629 | |
d769041f | 1630 | /* If we are reading the ring buffer, don't trace */ |
dd17c8f7 | 1631 | if (unlikely(__this_cpu_read(ftrace_cpu_disabled))) |
d769041f SR |
1632 | return; |
1633 | ||
e77405ad | 1634 | event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry), |
51a763dd | 1635 | flags, pc); |
3928a8a2 SR |
1636 | if (!event) |
1637 | return; | |
1638 | entry = ring_buffer_event_data(event); | |
777e208d SR |
1639 | entry->ip = ip; |
1640 | entry->parent_ip = parent_ip; | |
e1112b4d | 1641 | |
f306cc82 | 1642 | if (!call_filter_check_discard(call, entry, buffer, event)) |
7ffbd48d | 1643 | __buffer_unlock_commit(buffer, event); |
bc0c38d1 SR |
1644 | } |
1645 | ||
c0a0d0d3 | 1646 | #ifdef CONFIG_STACKTRACE |
4a9bd3f1 SR |
1647 | |
1648 | #define FTRACE_STACK_MAX_ENTRIES (PAGE_SIZE / sizeof(unsigned long)) | |
1649 | struct ftrace_stack { | |
1650 | unsigned long calls[FTRACE_STACK_MAX_ENTRIES]; | |
1651 | }; | |
1652 | ||
1653 | static DEFINE_PER_CPU(struct ftrace_stack, ftrace_stack); | |
1654 | static DEFINE_PER_CPU(int, ftrace_stack_reserve); | |
1655 | ||
e77405ad | 1656 | static void __ftrace_trace_stack(struct ring_buffer *buffer, |
53614991 | 1657 | unsigned long flags, |
1fd8df2c | 1658 | int skip, int pc, struct pt_regs *regs) |
86387f7e | 1659 | { |
e1112b4d | 1660 | struct ftrace_event_call *call = &event_kernel_stack; |
3928a8a2 | 1661 | struct ring_buffer_event *event; |
777e208d | 1662 | struct stack_entry *entry; |
86387f7e | 1663 | struct stack_trace trace; |
4a9bd3f1 SR |
1664 | int use_stack; |
1665 | int size = FTRACE_STACK_ENTRIES; | |
1666 | ||
1667 | trace.nr_entries = 0; | |
1668 | trace.skip = skip; | |
1669 | ||
1670 | /* | |
1671 | * Since events can happen in NMIs there's no safe way to | |
1672 | * use the per cpu ftrace_stacks. We reserve it and if an interrupt | |
1673 | * or NMI comes in, it will just have to use the default | |
1674 | * FTRACE_STACK_SIZE. | |
1675 | */ | |
1676 | preempt_disable_notrace(); | |
1677 | ||
82146529 | 1678 | use_stack = __this_cpu_inc_return(ftrace_stack_reserve); |
4a9bd3f1 SR |
1679 | /* |
1680 | * We don't need any atomic variables, just a barrier. | |
1681 | * If an interrupt comes in, we don't care, because it would | |
1682 | * have exited and put the counter back to what we want. | |
1683 | * We just need a barrier to keep gcc from moving things | |
1684 | * around. | |
1685 | */ | |
1686 | barrier(); | |
1687 | if (use_stack == 1) { | |
1688 | trace.entries = &__get_cpu_var(ftrace_stack).calls[0]; | |
1689 | trace.max_entries = FTRACE_STACK_MAX_ENTRIES; | |
1690 | ||
1691 | if (regs) | |
1692 | save_stack_trace_regs(regs, &trace); | |
1693 | else | |
1694 | save_stack_trace(&trace); | |
1695 | ||
1696 | if (trace.nr_entries > size) | |
1697 | size = trace.nr_entries; | |
1698 | } else | |
1699 | /* From now on, use_stack is a boolean */ | |
1700 | use_stack = 0; | |
1701 | ||
1702 | size *= sizeof(unsigned long); | |
86387f7e | 1703 | |
e77405ad | 1704 | event = trace_buffer_lock_reserve(buffer, TRACE_STACK, |
4a9bd3f1 | 1705 | sizeof(*entry) + size, flags, pc); |
3928a8a2 | 1706 | if (!event) |
4a9bd3f1 SR |
1707 | goto out; |
1708 | entry = ring_buffer_event_data(event); | |
86387f7e | 1709 | |
4a9bd3f1 SR |
1710 | memset(&entry->caller, 0, size); |
1711 | ||
1712 | if (use_stack) | |
1713 | memcpy(&entry->caller, trace.entries, | |
1714 | trace.nr_entries * sizeof(unsigned long)); | |
1715 | else { | |
1716 | trace.max_entries = FTRACE_STACK_ENTRIES; | |
1717 | trace.entries = entry->caller; | |
1718 | if (regs) | |
1719 | save_stack_trace_regs(regs, &trace); | |
1720 | else | |
1721 | save_stack_trace(&trace); | |
1722 | } | |
1723 | ||
1724 | entry->size = trace.nr_entries; | |
86387f7e | 1725 | |
f306cc82 | 1726 | if (!call_filter_check_discard(call, entry, buffer, event)) |
7ffbd48d | 1727 | __buffer_unlock_commit(buffer, event); |
4a9bd3f1 SR |
1728 | |
1729 | out: | |
1730 | /* Again, don't let gcc optimize things here */ | |
1731 | barrier(); | |
82146529 | 1732 | __this_cpu_dec(ftrace_stack_reserve); |
4a9bd3f1 SR |
1733 | preempt_enable_notrace(); |
1734 | ||
f0a920d5 IM |
1735 | } |
1736 | ||
1fd8df2c MH |
1737 | void ftrace_trace_stack_regs(struct ring_buffer *buffer, unsigned long flags, |
1738 | int skip, int pc, struct pt_regs *regs) | |
1739 | { | |
1740 | if (!(trace_flags & TRACE_ITER_STACKTRACE)) | |
1741 | return; | |
1742 | ||
1743 | __ftrace_trace_stack(buffer, flags, skip, pc, regs); | |
1744 | } | |
1745 | ||
e77405ad SR |
1746 | void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags, |
1747 | int skip, int pc) | |
53614991 SR |
1748 | { |
1749 | if (!(trace_flags & TRACE_ITER_STACKTRACE)) | |
1750 | return; | |
1751 | ||
1fd8df2c | 1752 | __ftrace_trace_stack(buffer, flags, skip, pc, NULL); |
53614991 SR |
1753 | } |
1754 | ||
c0a0d0d3 FW |
1755 | void __trace_stack(struct trace_array *tr, unsigned long flags, int skip, |
1756 | int pc) | |
38697053 | 1757 | { |
12883efb | 1758 | __ftrace_trace_stack(tr->trace_buffer.buffer, flags, skip, pc, NULL); |
38697053 SR |
1759 | } |
1760 | ||
03889384 SR |
1761 | /** |
1762 | * trace_dump_stack - record a stack back trace in the trace buffer | |
c142be8e | 1763 | * @skip: Number of functions to skip (helper handlers) |
03889384 | 1764 | */ |
c142be8e | 1765 | void trace_dump_stack(int skip) |
03889384 SR |
1766 | { |
1767 | unsigned long flags; | |
1768 | ||
1769 | if (tracing_disabled || tracing_selftest_running) | |
e36c5458 | 1770 | return; |
03889384 SR |
1771 | |
1772 | local_save_flags(flags); | |
1773 | ||
c142be8e SRRH |
1774 | /* |
1775 | * Skip 3 more, seems to get us at the caller of | |
1776 | * this function. | |
1777 | */ | |
1778 | skip += 3; | |
1779 | __ftrace_trace_stack(global_trace.trace_buffer.buffer, | |
1780 | flags, skip, preempt_count(), NULL); | |
03889384 SR |
1781 | } |
1782 | ||
91e86e56 SR |
1783 | static DEFINE_PER_CPU(int, user_stack_count); |
1784 | ||
e77405ad SR |
1785 | void |
1786 | ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc) | |
02b67518 | 1787 | { |
e1112b4d | 1788 | struct ftrace_event_call *call = &event_user_stack; |
8d7c6a96 | 1789 | struct ring_buffer_event *event; |
02b67518 TE |
1790 | struct userstack_entry *entry; |
1791 | struct stack_trace trace; | |
02b67518 TE |
1792 | |
1793 | if (!(trace_flags & TRACE_ITER_USERSTACKTRACE)) | |
1794 | return; | |
1795 | ||
b6345879 SR |
1796 | /* |
1797 | * NMIs can not handle page faults, even with fix ups. | |
1798 | * The save user stack can (and often does) fault. | |
1799 | */ | |
1800 | if (unlikely(in_nmi())) | |
1801 | return; | |
02b67518 | 1802 | |
91e86e56 SR |
1803 | /* |
1804 | * prevent recursion, since the user stack tracing may | |
1805 | * trigger other kernel events. | |
1806 | */ | |
1807 | preempt_disable(); | |
1808 | if (__this_cpu_read(user_stack_count)) | |
1809 | goto out; | |
1810 | ||
1811 | __this_cpu_inc(user_stack_count); | |
1812 | ||
e77405ad | 1813 | event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK, |
51a763dd | 1814 | sizeof(*entry), flags, pc); |
02b67518 | 1815 | if (!event) |
1dbd1951 | 1816 | goto out_drop_count; |
02b67518 | 1817 | entry = ring_buffer_event_data(event); |
02b67518 | 1818 | |
48659d31 | 1819 | entry->tgid = current->tgid; |
02b67518 TE |
1820 | memset(&entry->caller, 0, sizeof(entry->caller)); |
1821 | ||
1822 | trace.nr_entries = 0; | |
1823 | trace.max_entries = FTRACE_STACK_ENTRIES; | |
1824 | trace.skip = 0; | |
1825 | trace.entries = entry->caller; | |
1826 | ||
1827 | save_stack_trace_user(&trace); | |
f306cc82 | 1828 | if (!call_filter_check_discard(call, entry, buffer, event)) |
7ffbd48d | 1829 | __buffer_unlock_commit(buffer, event); |
91e86e56 | 1830 | |
1dbd1951 | 1831 | out_drop_count: |
91e86e56 | 1832 | __this_cpu_dec(user_stack_count); |
91e86e56 SR |
1833 | out: |
1834 | preempt_enable(); | |
02b67518 TE |
1835 | } |
1836 | ||
4fd27358 HE |
1837 | #ifdef UNUSED |
1838 | static void __trace_userstack(struct trace_array *tr, unsigned long flags) | |
02b67518 | 1839 | { |
7be42151 | 1840 | ftrace_trace_userstack(tr, flags, preempt_count()); |
02b67518 | 1841 | } |
4fd27358 | 1842 | #endif /* UNUSED */ |
02b67518 | 1843 | |
c0a0d0d3 FW |
1844 | #endif /* CONFIG_STACKTRACE */ |
1845 | ||
07d777fe SR |
1846 | /* created for use with alloc_percpu */ |
1847 | struct trace_buffer_struct { | |
1848 | char buffer[TRACE_BUF_SIZE]; | |
1849 | }; | |
1850 | ||
1851 | static struct trace_buffer_struct *trace_percpu_buffer; | |
1852 | static struct trace_buffer_struct *trace_percpu_sirq_buffer; | |
1853 | static struct trace_buffer_struct *trace_percpu_irq_buffer; | |
1854 | static struct trace_buffer_struct *trace_percpu_nmi_buffer; | |
1855 | ||
1856 | /* | |
1857 | * The buffer used is dependent on the context. There is a per cpu | |
1858 | * buffer for normal context, softirq contex, hard irq context and | |
1859 | * for NMI context. Thise allows for lockless recording. | |
1860 | * | |
1861 | * Note, if the buffers failed to be allocated, then this returns NULL | |
1862 | */ | |
1863 | static char *get_trace_buf(void) | |
1864 | { | |
1865 | struct trace_buffer_struct *percpu_buffer; | |
07d777fe SR |
1866 | |
1867 | /* | |
1868 | * If we have allocated per cpu buffers, then we do not | |
1869 | * need to do any locking. | |
1870 | */ | |
1871 | if (in_nmi()) | |
1872 | percpu_buffer = trace_percpu_nmi_buffer; | |
1873 | else if (in_irq()) | |
1874 | percpu_buffer = trace_percpu_irq_buffer; | |
1875 | else if (in_softirq()) | |
1876 | percpu_buffer = trace_percpu_sirq_buffer; | |
1877 | else | |
1878 | percpu_buffer = trace_percpu_buffer; | |
1879 | ||
1880 | if (!percpu_buffer) | |
1881 | return NULL; | |
1882 | ||
d8a0349c | 1883 | return this_cpu_ptr(&percpu_buffer->buffer[0]); |
07d777fe SR |
1884 | } |
1885 | ||
1886 | static int alloc_percpu_trace_buffer(void) | |
1887 | { | |
1888 | struct trace_buffer_struct *buffers; | |
1889 | struct trace_buffer_struct *sirq_buffers; | |
1890 | struct trace_buffer_struct *irq_buffers; | |
1891 | struct trace_buffer_struct *nmi_buffers; | |
1892 | ||
1893 | buffers = alloc_percpu(struct trace_buffer_struct); | |
1894 | if (!buffers) | |
1895 | goto err_warn; | |
1896 | ||
1897 | sirq_buffers = alloc_percpu(struct trace_buffer_struct); | |
1898 | if (!sirq_buffers) | |
1899 | goto err_sirq; | |
1900 | ||
1901 | irq_buffers = alloc_percpu(struct trace_buffer_struct); | |
1902 | if (!irq_buffers) | |
1903 | goto err_irq; | |
1904 | ||
1905 | nmi_buffers = alloc_percpu(struct trace_buffer_struct); | |
1906 | if (!nmi_buffers) | |
1907 | goto err_nmi; | |
1908 | ||
1909 | trace_percpu_buffer = buffers; | |
1910 | trace_percpu_sirq_buffer = sirq_buffers; | |
1911 | trace_percpu_irq_buffer = irq_buffers; | |
1912 | trace_percpu_nmi_buffer = nmi_buffers; | |
1913 | ||
1914 | return 0; | |
1915 | ||
1916 | err_nmi: | |
1917 | free_percpu(irq_buffers); | |
1918 | err_irq: | |
1919 | free_percpu(sirq_buffers); | |
1920 | err_sirq: | |
1921 | free_percpu(buffers); | |
1922 | err_warn: | |
1923 | WARN(1, "Could not allocate percpu trace_printk buffer"); | |
1924 | return -ENOMEM; | |
1925 | } | |
1926 | ||
81698831 SR |
1927 | static int buffers_allocated; |
1928 | ||
07d777fe SR |
1929 | void trace_printk_init_buffers(void) |
1930 | { | |
07d777fe SR |
1931 | if (buffers_allocated) |
1932 | return; | |
1933 | ||
1934 | if (alloc_percpu_trace_buffer()) | |
1935 | return; | |
1936 | ||
1937 | pr_info("ftrace: Allocated trace_printk buffers\n"); | |
1938 | ||
b382ede6 SR |
1939 | /* Expand the buffers to set size */ |
1940 | tracing_update_buffers(); | |
1941 | ||
07d777fe | 1942 | buffers_allocated = 1; |
81698831 SR |
1943 | |
1944 | /* | |
1945 | * trace_printk_init_buffers() can be called by modules. | |
1946 | * If that happens, then we need to start cmdline recording | |
1947 | * directly here. If the global_trace.buffer is already | |
1948 | * allocated here, then this was called by module code. | |
1949 | */ | |
12883efb | 1950 | if (global_trace.trace_buffer.buffer) |
81698831 SR |
1951 | tracing_start_cmdline_record(); |
1952 | } | |
1953 | ||
1954 | void trace_printk_start_comm(void) | |
1955 | { | |
1956 | /* Start tracing comms if trace printk is set */ | |
1957 | if (!buffers_allocated) | |
1958 | return; | |
1959 | tracing_start_cmdline_record(); | |
1960 | } | |
1961 | ||
1962 | static void trace_printk_start_stop_comm(int enabled) | |
1963 | { | |
1964 | if (!buffers_allocated) | |
1965 | return; | |
1966 | ||
1967 | if (enabled) | |
1968 | tracing_start_cmdline_record(); | |
1969 | else | |
1970 | tracing_stop_cmdline_record(); | |
07d777fe SR |
1971 | } |
1972 | ||
769b0441 | 1973 | /** |
48ead020 | 1974 | * trace_vbprintk - write binary msg to tracing buffer |
769b0441 FW |
1975 | * |
1976 | */ | |
40ce74f1 | 1977 | int trace_vbprintk(unsigned long ip, const char *fmt, va_list args) |
769b0441 | 1978 | { |
e1112b4d | 1979 | struct ftrace_event_call *call = &event_bprint; |
769b0441 | 1980 | struct ring_buffer_event *event; |
e77405ad | 1981 | struct ring_buffer *buffer; |
769b0441 | 1982 | struct trace_array *tr = &global_trace; |
48ead020 | 1983 | struct bprint_entry *entry; |
769b0441 | 1984 | unsigned long flags; |
07d777fe SR |
1985 | char *tbuffer; |
1986 | int len = 0, size, pc; | |
769b0441 FW |
1987 | |
1988 | if (unlikely(tracing_selftest_running || tracing_disabled)) | |
1989 | return 0; | |
1990 | ||
1991 | /* Don't pollute graph traces with trace_vprintk internals */ | |
1992 | pause_graph_tracing(); | |
1993 | ||
1994 | pc = preempt_count(); | |
5168ae50 | 1995 | preempt_disable_notrace(); |
769b0441 | 1996 | |
07d777fe SR |
1997 | tbuffer = get_trace_buf(); |
1998 | if (!tbuffer) { | |
1999 | len = 0; | |
769b0441 | 2000 | goto out; |
07d777fe | 2001 | } |
769b0441 | 2002 | |
07d777fe | 2003 | len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args); |
769b0441 | 2004 | |
07d777fe SR |
2005 | if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0) |
2006 | goto out; | |
769b0441 | 2007 | |
07d777fe | 2008 | local_save_flags(flags); |
769b0441 | 2009 | size = sizeof(*entry) + sizeof(u32) * len; |
12883efb | 2010 | buffer = tr->trace_buffer.buffer; |
e77405ad SR |
2011 | event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size, |
2012 | flags, pc); | |
769b0441 | 2013 | if (!event) |
07d777fe | 2014 | goto out; |
769b0441 FW |
2015 | entry = ring_buffer_event_data(event); |
2016 | entry->ip = ip; | |
769b0441 FW |
2017 | entry->fmt = fmt; |
2018 | ||
07d777fe | 2019 | memcpy(entry->buf, tbuffer, sizeof(u32) * len); |
f306cc82 | 2020 | if (!call_filter_check_discard(call, entry, buffer, event)) { |
7ffbd48d | 2021 | __buffer_unlock_commit(buffer, event); |
d931369b SR |
2022 | ftrace_trace_stack(buffer, flags, 6, pc); |
2023 | } | |
769b0441 | 2024 | |
769b0441 | 2025 | out: |
5168ae50 | 2026 | preempt_enable_notrace(); |
769b0441 FW |
2027 | unpause_graph_tracing(); |
2028 | ||
2029 | return len; | |
2030 | } | |
48ead020 FW |
2031 | EXPORT_SYMBOL_GPL(trace_vbprintk); |
2032 | ||
12883efb SRRH |
2033 | static int |
2034 | __trace_array_vprintk(struct ring_buffer *buffer, | |
2035 | unsigned long ip, const char *fmt, va_list args) | |
48ead020 | 2036 | { |
e1112b4d | 2037 | struct ftrace_event_call *call = &event_print; |
48ead020 | 2038 | struct ring_buffer_event *event; |
07d777fe | 2039 | int len = 0, size, pc; |
48ead020 | 2040 | struct print_entry *entry; |
07d777fe SR |
2041 | unsigned long flags; |
2042 | char *tbuffer; | |
48ead020 FW |
2043 | |
2044 | if (tracing_disabled || tracing_selftest_running) | |
2045 | return 0; | |
2046 | ||
07d777fe SR |
2047 | /* Don't pollute graph traces with trace_vprintk internals */ |
2048 | pause_graph_tracing(); | |
2049 | ||
48ead020 FW |
2050 | pc = preempt_count(); |
2051 | preempt_disable_notrace(); | |
48ead020 | 2052 | |
07d777fe SR |
2053 | |
2054 | tbuffer = get_trace_buf(); | |
2055 | if (!tbuffer) { | |
2056 | len = 0; | |
48ead020 | 2057 | goto out; |
07d777fe | 2058 | } |
48ead020 | 2059 | |
07d777fe SR |
2060 | len = vsnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args); |
2061 | if (len > TRACE_BUF_SIZE) | |
2062 | goto out; | |
48ead020 | 2063 | |
07d777fe | 2064 | local_save_flags(flags); |
48ead020 | 2065 | size = sizeof(*entry) + len + 1; |
e77405ad | 2066 | event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size, |
07d777fe | 2067 | flags, pc); |
48ead020 | 2068 | if (!event) |
07d777fe | 2069 | goto out; |
48ead020 | 2070 | entry = ring_buffer_event_data(event); |
c13d2f7c | 2071 | entry->ip = ip; |
48ead020 | 2072 | |
07d777fe | 2073 | memcpy(&entry->buf, tbuffer, len); |
c13d2f7c | 2074 | entry->buf[len] = '\0'; |
f306cc82 | 2075 | if (!call_filter_check_discard(call, entry, buffer, event)) { |
7ffbd48d | 2076 | __buffer_unlock_commit(buffer, event); |
07d777fe | 2077 | ftrace_trace_stack(buffer, flags, 6, pc); |
d931369b | 2078 | } |
48ead020 FW |
2079 | out: |
2080 | preempt_enable_notrace(); | |
07d777fe | 2081 | unpause_graph_tracing(); |
48ead020 FW |
2082 | |
2083 | return len; | |
2084 | } | |
659372d3 | 2085 | |
12883efb SRRH |
2086 | int trace_array_vprintk(struct trace_array *tr, |
2087 | unsigned long ip, const char *fmt, va_list args) | |
2088 | { | |
2089 | return __trace_array_vprintk(tr->trace_buffer.buffer, ip, fmt, args); | |
2090 | } | |
2091 | ||
2092 | int trace_array_printk(struct trace_array *tr, | |
2093 | unsigned long ip, const char *fmt, ...) | |
2094 | { | |
2095 | int ret; | |
2096 | va_list ap; | |
2097 | ||
2098 | if (!(trace_flags & TRACE_ITER_PRINTK)) | |
2099 | return 0; | |
2100 | ||
2101 | va_start(ap, fmt); | |
2102 | ret = trace_array_vprintk(tr, ip, fmt, ap); | |
2103 | va_end(ap); | |
2104 | return ret; | |
2105 | } | |
2106 | ||
2107 | int trace_array_printk_buf(struct ring_buffer *buffer, | |
2108 | unsigned long ip, const char *fmt, ...) | |
2109 | { | |
2110 | int ret; | |
2111 | va_list ap; | |
2112 | ||
2113 | if (!(trace_flags & TRACE_ITER_PRINTK)) | |
2114 | return 0; | |
2115 | ||
2116 | va_start(ap, fmt); | |
2117 | ret = __trace_array_vprintk(buffer, ip, fmt, ap); | |
2118 | va_end(ap); | |
2119 | return ret; | |
2120 | } | |
2121 | ||
659372d3 SR |
2122 | int trace_vprintk(unsigned long ip, const char *fmt, va_list args) |
2123 | { | |
a813a159 | 2124 | return trace_array_vprintk(&global_trace, ip, fmt, args); |
659372d3 | 2125 | } |
769b0441 FW |
2126 | EXPORT_SYMBOL_GPL(trace_vprintk); |
2127 | ||
e2ac8ef5 | 2128 | static void trace_iterator_increment(struct trace_iterator *iter) |
5a90f577 | 2129 | { |
6d158a81 SR |
2130 | struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, iter->cpu); |
2131 | ||
5a90f577 | 2132 | iter->idx++; |
6d158a81 SR |
2133 | if (buf_iter) |
2134 | ring_buffer_read(buf_iter, NULL); | |
5a90f577 SR |
2135 | } |
2136 | ||
e309b41d | 2137 | static struct trace_entry * |
bc21b478 SR |
2138 | peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts, |
2139 | unsigned long *lost_events) | |
dd0e545f | 2140 | { |
3928a8a2 | 2141 | struct ring_buffer_event *event; |
6d158a81 | 2142 | struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, cpu); |
dd0e545f | 2143 | |
d769041f SR |
2144 | if (buf_iter) |
2145 | event = ring_buffer_iter_peek(buf_iter, ts); | |
2146 | else | |
12883efb | 2147 | event = ring_buffer_peek(iter->trace_buffer->buffer, cpu, ts, |
bc21b478 | 2148 | lost_events); |
d769041f | 2149 | |
4a9bd3f1 SR |
2150 | if (event) { |
2151 | iter->ent_size = ring_buffer_event_length(event); | |
2152 | return ring_buffer_event_data(event); | |
2153 | } | |
2154 | iter->ent_size = 0; | |
2155 | return NULL; | |
dd0e545f | 2156 | } |
d769041f | 2157 | |
dd0e545f | 2158 | static struct trace_entry * |
bc21b478 SR |
2159 | __find_next_entry(struct trace_iterator *iter, int *ent_cpu, |
2160 | unsigned long *missing_events, u64 *ent_ts) | |
bc0c38d1 | 2161 | { |
12883efb | 2162 | struct ring_buffer *buffer = iter->trace_buffer->buffer; |
bc0c38d1 | 2163 | struct trace_entry *ent, *next = NULL; |
aa27497c | 2164 | unsigned long lost_events = 0, next_lost = 0; |
b04cc6b1 | 2165 | int cpu_file = iter->cpu_file; |
3928a8a2 | 2166 | u64 next_ts = 0, ts; |
bc0c38d1 | 2167 | int next_cpu = -1; |
12b5da34 | 2168 | int next_size = 0; |
bc0c38d1 SR |
2169 | int cpu; |
2170 | ||
b04cc6b1 FW |
2171 | /* |
2172 | * If we are in a per_cpu trace file, don't bother by iterating over | |
2173 | * all cpu and peek directly. | |
2174 | */ | |
ae3b5093 | 2175 | if (cpu_file > RING_BUFFER_ALL_CPUS) { |
b04cc6b1 FW |
2176 | if (ring_buffer_empty_cpu(buffer, cpu_file)) |
2177 | return NULL; | |
bc21b478 | 2178 | ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events); |
b04cc6b1 FW |
2179 | if (ent_cpu) |
2180 | *ent_cpu = cpu_file; | |
2181 | ||
2182 | return ent; | |
2183 | } | |
2184 | ||
ab46428c | 2185 | for_each_tracing_cpu(cpu) { |
dd0e545f | 2186 | |
3928a8a2 SR |
2187 | if (ring_buffer_empty_cpu(buffer, cpu)) |
2188 | continue; | |
dd0e545f | 2189 | |
bc21b478 | 2190 | ent = peek_next_entry(iter, cpu, &ts, &lost_events); |
dd0e545f | 2191 | |
cdd31cd2 IM |
2192 | /* |
2193 | * Pick the entry with the smallest timestamp: | |
2194 | */ | |
3928a8a2 | 2195 | if (ent && (!next || ts < next_ts)) { |
bc0c38d1 SR |
2196 | next = ent; |
2197 | next_cpu = cpu; | |
3928a8a2 | 2198 | next_ts = ts; |
bc21b478 | 2199 | next_lost = lost_events; |
12b5da34 | 2200 | next_size = iter->ent_size; |
bc0c38d1 SR |
2201 | } |
2202 | } | |
2203 | ||
12b5da34 SR |
2204 | iter->ent_size = next_size; |
2205 | ||
bc0c38d1 SR |
2206 | if (ent_cpu) |
2207 | *ent_cpu = next_cpu; | |
2208 | ||
3928a8a2 SR |
2209 | if (ent_ts) |
2210 | *ent_ts = next_ts; | |
2211 | ||
bc21b478 SR |
2212 | if (missing_events) |
2213 | *missing_events = next_lost; | |
2214 | ||
bc0c38d1 SR |
2215 | return next; |
2216 | } | |
2217 | ||
dd0e545f | 2218 | /* Find the next real entry, without updating the iterator itself */ |
c4a8e8be FW |
2219 | struct trace_entry *trace_find_next_entry(struct trace_iterator *iter, |
2220 | int *ent_cpu, u64 *ent_ts) | |
bc0c38d1 | 2221 | { |
bc21b478 | 2222 | return __find_next_entry(iter, ent_cpu, NULL, ent_ts); |
dd0e545f SR |
2223 | } |
2224 | ||
2225 | /* Find the next real entry, and increment the iterator to the next entry */ | |
955b61e5 | 2226 | void *trace_find_next_entry_inc(struct trace_iterator *iter) |
dd0e545f | 2227 | { |
bc21b478 SR |
2228 | iter->ent = __find_next_entry(iter, &iter->cpu, |
2229 | &iter->lost_events, &iter->ts); | |
dd0e545f | 2230 | |
3928a8a2 | 2231 | if (iter->ent) |
e2ac8ef5 | 2232 | trace_iterator_increment(iter); |
dd0e545f | 2233 | |
3928a8a2 | 2234 | return iter->ent ? iter : NULL; |
b3806b43 | 2235 | } |
bc0c38d1 | 2236 | |
e309b41d | 2237 | static void trace_consume(struct trace_iterator *iter) |
b3806b43 | 2238 | { |
12883efb | 2239 | ring_buffer_consume(iter->trace_buffer->buffer, iter->cpu, &iter->ts, |
bc21b478 | 2240 | &iter->lost_events); |
bc0c38d1 SR |
2241 | } |
2242 | ||
e309b41d | 2243 | static void *s_next(struct seq_file *m, void *v, loff_t *pos) |
bc0c38d1 SR |
2244 | { |
2245 | struct trace_iterator *iter = m->private; | |
bc0c38d1 | 2246 | int i = (int)*pos; |
4e3c3333 | 2247 | void *ent; |
bc0c38d1 | 2248 | |
a63ce5b3 SR |
2249 | WARN_ON_ONCE(iter->leftover); |
2250 | ||
bc0c38d1 SR |
2251 | (*pos)++; |
2252 | ||
2253 | /* can't go backwards */ | |
2254 | if (iter->idx > i) | |
2255 | return NULL; | |
2256 | ||
2257 | if (iter->idx < 0) | |
955b61e5 | 2258 | ent = trace_find_next_entry_inc(iter); |
bc0c38d1 SR |
2259 | else |
2260 | ent = iter; | |
2261 | ||
2262 | while (ent && iter->idx < i) | |
955b61e5 | 2263 | ent = trace_find_next_entry_inc(iter); |
bc0c38d1 SR |
2264 | |
2265 | iter->pos = *pos; | |
2266 | ||
bc0c38d1 SR |
2267 | return ent; |
2268 | } | |
2269 | ||
955b61e5 | 2270 | void tracing_iter_reset(struct trace_iterator *iter, int cpu) |
2f26ebd5 | 2271 | { |
2f26ebd5 SR |
2272 | struct ring_buffer_event *event; |
2273 | struct ring_buffer_iter *buf_iter; | |
2274 | unsigned long entries = 0; | |
2275 | u64 ts; | |
2276 | ||
12883efb | 2277 | per_cpu_ptr(iter->trace_buffer->data, cpu)->skipped_entries = 0; |
2f26ebd5 | 2278 | |
6d158a81 SR |
2279 | buf_iter = trace_buffer_iter(iter, cpu); |
2280 | if (!buf_iter) | |
2f26ebd5 SR |
2281 | return; |
2282 | ||
2f26ebd5 SR |
2283 | ring_buffer_iter_reset(buf_iter); |
2284 | ||
2285 | /* | |
2286 | * We could have the case with the max latency tracers | |
2287 | * that a reset never took place on a cpu. This is evident | |
2288 | * by the timestamp being before the start of the buffer. | |
2289 | */ | |
2290 | while ((event = ring_buffer_iter_peek(buf_iter, &ts))) { | |
12883efb | 2291 | if (ts >= iter->trace_buffer->time_start) |
2f26ebd5 SR |
2292 | break; |
2293 | entries++; | |
2294 | ring_buffer_read(buf_iter, NULL); | |
2295 | } | |
2296 | ||
12883efb | 2297 | per_cpu_ptr(iter->trace_buffer->data, cpu)->skipped_entries = entries; |
2f26ebd5 SR |
2298 | } |
2299 | ||
d7350c3f | 2300 | /* |
d7350c3f FW |
2301 | * The current tracer is copied to avoid a global locking |
2302 | * all around. | |
2303 | */ | |
bc0c38d1 SR |
2304 | static void *s_start(struct seq_file *m, loff_t *pos) |
2305 | { | |
2306 | struct trace_iterator *iter = m->private; | |
2b6080f2 | 2307 | struct trace_array *tr = iter->tr; |
b04cc6b1 | 2308 | int cpu_file = iter->cpu_file; |
bc0c38d1 SR |
2309 | void *p = NULL; |
2310 | loff_t l = 0; | |
3928a8a2 | 2311 | int cpu; |
bc0c38d1 | 2312 | |
2fd196ec HT |
2313 | /* |
2314 | * copy the tracer to avoid using a global lock all around. | |
2315 | * iter->trace is a copy of current_trace, the pointer to the | |
2316 | * name may be used instead of a strcmp(), as iter->trace->name | |
2317 | * will point to the same string as current_trace->name. | |
2318 | */ | |
bc0c38d1 | 2319 | mutex_lock(&trace_types_lock); |
2b6080f2 SR |
2320 | if (unlikely(tr->current_trace && iter->trace->name != tr->current_trace->name)) |
2321 | *iter->trace = *tr->current_trace; | |
d7350c3f | 2322 | mutex_unlock(&trace_types_lock); |
bc0c38d1 | 2323 | |
12883efb | 2324 | #ifdef CONFIG_TRACER_MAX_TRACE |
debdd57f HT |
2325 | if (iter->snapshot && iter->trace->use_max_tr) |
2326 | return ERR_PTR(-EBUSY); | |
12883efb | 2327 | #endif |
debdd57f HT |
2328 | |
2329 | if (!iter->snapshot) | |
2330 | atomic_inc(&trace_record_cmdline_disabled); | |
bc0c38d1 | 2331 | |
bc0c38d1 SR |
2332 | if (*pos != iter->pos) { |
2333 | iter->ent = NULL; | |
2334 | iter->cpu = 0; | |
2335 | iter->idx = -1; | |
2336 | ||
ae3b5093 | 2337 | if (cpu_file == RING_BUFFER_ALL_CPUS) { |
b04cc6b1 | 2338 | for_each_tracing_cpu(cpu) |
2f26ebd5 | 2339 | tracing_iter_reset(iter, cpu); |
b04cc6b1 | 2340 | } else |
2f26ebd5 | 2341 | tracing_iter_reset(iter, cpu_file); |
bc0c38d1 | 2342 | |
ac91d854 | 2343 | iter->leftover = 0; |
bc0c38d1 SR |
2344 | for (p = iter; p && l < *pos; p = s_next(m, p, &l)) |
2345 | ; | |
2346 | ||
2347 | } else { | |
a63ce5b3 SR |
2348 | /* |
2349 | * If we overflowed the seq_file before, then we want | |
2350 | * to just reuse the trace_seq buffer again. | |
2351 | */ | |
2352 | if (iter->leftover) | |
2353 | p = iter; | |
2354 | else { | |
2355 | l = *pos - 1; | |
2356 | p = s_next(m, p, &l); | |
2357 | } | |
bc0c38d1 SR |
2358 | } |
2359 | ||
4f535968 | 2360 | trace_event_read_lock(); |
7e53bd42 | 2361 | trace_access_lock(cpu_file); |
bc0c38d1 SR |
2362 | return p; |
2363 | } | |
2364 | ||
2365 | static void s_stop(struct seq_file *m, void *p) | |
2366 | { | |
7e53bd42 LJ |
2367 | struct trace_iterator *iter = m->private; |
2368 | ||
12883efb | 2369 | #ifdef CONFIG_TRACER_MAX_TRACE |
debdd57f HT |
2370 | if (iter->snapshot && iter->trace->use_max_tr) |
2371 | return; | |
12883efb | 2372 | #endif |
debdd57f HT |
2373 | |
2374 | if (!iter->snapshot) | |
2375 | atomic_dec(&trace_record_cmdline_disabled); | |
12883efb | 2376 | |
7e53bd42 | 2377 | trace_access_unlock(iter->cpu_file); |
4f535968 | 2378 | trace_event_read_unlock(); |
bc0c38d1 SR |
2379 | } |
2380 | ||
39eaf7ef | 2381 | static void |
12883efb SRRH |
2382 | get_total_entries(struct trace_buffer *buf, |
2383 | unsigned long *total, unsigned long *entries) | |
39eaf7ef SR |
2384 | { |
2385 | unsigned long count; | |
2386 | int cpu; | |
2387 | ||
2388 | *total = 0; | |
2389 | *entries = 0; | |
2390 | ||
2391 | for_each_tracing_cpu(cpu) { | |
12883efb | 2392 | count = ring_buffer_entries_cpu(buf->buffer, cpu); |
39eaf7ef SR |
2393 | /* |
2394 | * If this buffer has skipped entries, then we hold all | |
2395 | * entries for the trace and we need to ignore the | |
2396 | * ones before the time stamp. | |
2397 | */ | |
12883efb SRRH |
2398 | if (per_cpu_ptr(buf->data, cpu)->skipped_entries) { |
2399 | count -= per_cpu_ptr(buf->data, cpu)->skipped_entries; | |
39eaf7ef SR |
2400 | /* total is the same as the entries */ |
2401 | *total += count; | |
2402 | } else | |
2403 | *total += count + | |
12883efb | 2404 | ring_buffer_overrun_cpu(buf->buffer, cpu); |
39eaf7ef SR |
2405 | *entries += count; |
2406 | } | |
2407 | } | |
2408 | ||
e309b41d | 2409 | static void print_lat_help_header(struct seq_file *m) |
bc0c38d1 | 2410 | { |
a6168353 ME |
2411 | seq_puts(m, "# _------=> CPU# \n"); |
2412 | seq_puts(m, "# / _-----=> irqs-off \n"); | |
2413 | seq_puts(m, "# | / _----=> need-resched \n"); | |
2414 | seq_puts(m, "# || / _---=> hardirq/softirq \n"); | |
2415 | seq_puts(m, "# ||| / _--=> preempt-depth \n"); | |
e6e1e259 SR |
2416 | seq_puts(m, "# |||| / delay \n"); |
2417 | seq_puts(m, "# cmd pid ||||| time | caller \n"); | |
2418 | seq_puts(m, "# \\ / ||||| \\ | / \n"); | |
bc0c38d1 SR |
2419 | } |
2420 | ||
12883efb | 2421 | static void print_event_info(struct trace_buffer *buf, struct seq_file *m) |
bc0c38d1 | 2422 | { |
39eaf7ef SR |
2423 | unsigned long total; |
2424 | unsigned long entries; | |
2425 | ||
12883efb | 2426 | get_total_entries(buf, &total, &entries); |
39eaf7ef SR |
2427 | seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n", |
2428 | entries, total, num_online_cpus()); | |
2429 | seq_puts(m, "#\n"); | |
2430 | } | |
2431 | ||
12883efb | 2432 | static void print_func_help_header(struct trace_buffer *buf, struct seq_file *m) |
39eaf7ef | 2433 | { |
12883efb | 2434 | print_event_info(buf, m); |
77271ce4 | 2435 | seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n"); |
a6168353 | 2436 | seq_puts(m, "# | | | | |\n"); |
bc0c38d1 SR |
2437 | } |
2438 | ||
12883efb | 2439 | static void print_func_help_header_irq(struct trace_buffer *buf, struct seq_file *m) |
77271ce4 | 2440 | { |
12883efb | 2441 | print_event_info(buf, m); |
77271ce4 SR |
2442 | seq_puts(m, "# _-----=> irqs-off\n"); |
2443 | seq_puts(m, "# / _----=> need-resched\n"); | |
2444 | seq_puts(m, "# | / _---=> hardirq/softirq\n"); | |
2445 | seq_puts(m, "# || / _--=> preempt-depth\n"); | |
2446 | seq_puts(m, "# ||| / delay\n"); | |
2447 | seq_puts(m, "# TASK-PID CPU# |||| TIMESTAMP FUNCTION\n"); | |
2448 | seq_puts(m, "# | | | |||| | |\n"); | |
2449 | } | |
bc0c38d1 | 2450 | |
62b915f1 | 2451 | void |
bc0c38d1 SR |
2452 | print_trace_header(struct seq_file *m, struct trace_iterator *iter) |
2453 | { | |
2454 | unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK); | |
12883efb SRRH |
2455 | struct trace_buffer *buf = iter->trace_buffer; |
2456 | struct trace_array_cpu *data = per_cpu_ptr(buf->data, buf->cpu); | |
2b6080f2 | 2457 | struct tracer *type = iter->trace; |
39eaf7ef SR |
2458 | unsigned long entries; |
2459 | unsigned long total; | |
bc0c38d1 SR |
2460 | const char *name = "preemption"; |
2461 | ||
d840f718 | 2462 | name = type->name; |
bc0c38d1 | 2463 | |
12883efb | 2464 | get_total_entries(buf, &total, &entries); |
bc0c38d1 | 2465 | |
888b55dc | 2466 | seq_printf(m, "# %s latency trace v1.1.5 on %s\n", |
bc0c38d1 | 2467 | name, UTS_RELEASE); |
888b55dc | 2468 | seq_puts(m, "# -----------------------------------" |
bc0c38d1 | 2469 | "---------------------------------\n"); |
888b55dc | 2470 | seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |" |
bc0c38d1 | 2471 | " (M:%s VP:%d, KP:%d, SP:%d HP:%d", |
57f50be1 | 2472 | nsecs_to_usecs(data->saved_latency), |
bc0c38d1 | 2473 | entries, |
4c11d7ae | 2474 | total, |
12883efb | 2475 | buf->cpu, |
bc0c38d1 SR |
2476 | #if defined(CONFIG_PREEMPT_NONE) |
2477 | "server", | |
2478 | #elif defined(CONFIG_PREEMPT_VOLUNTARY) | |
2479 | "desktop", | |
b5c21b45 | 2480 | #elif defined(CONFIG_PREEMPT) |
bc0c38d1 SR |
2481 | "preempt", |
2482 | #else | |
2483 | "unknown", | |
2484 | #endif | |
2485 | /* These are reserved for later use */ | |
2486 | 0, 0, 0, 0); | |
2487 | #ifdef CONFIG_SMP | |
2488 | seq_printf(m, " #P:%d)\n", num_online_cpus()); | |
2489 | #else | |
2490 | seq_puts(m, ")\n"); | |
2491 | #endif | |
888b55dc KM |
2492 | seq_puts(m, "# -----------------\n"); |
2493 | seq_printf(m, "# | task: %.16s-%d " | |
bc0c38d1 | 2494 | "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n", |
d20b92ab EB |
2495 | data->comm, data->pid, |
2496 | from_kuid_munged(seq_user_ns(m), data->uid), data->nice, | |
bc0c38d1 | 2497 | data->policy, data->rt_priority); |
888b55dc | 2498 | seq_puts(m, "# -----------------\n"); |
bc0c38d1 SR |
2499 | |
2500 | if (data->critical_start) { | |
888b55dc | 2501 | seq_puts(m, "# => started at: "); |
214023c3 SR |
2502 | seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags); |
2503 | trace_print_seq(m, &iter->seq); | |
888b55dc | 2504 | seq_puts(m, "\n# => ended at: "); |
214023c3 SR |
2505 | seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags); |
2506 | trace_print_seq(m, &iter->seq); | |
8248ac05 | 2507 | seq_puts(m, "\n#\n"); |
bc0c38d1 SR |
2508 | } |
2509 | ||
888b55dc | 2510 | seq_puts(m, "#\n"); |
bc0c38d1 SR |
2511 | } |
2512 | ||
a309720c SR |
2513 | static void test_cpu_buff_start(struct trace_iterator *iter) |
2514 | { | |
2515 | struct trace_seq *s = &iter->seq; | |
2516 | ||
12ef7d44 SR |
2517 | if (!(trace_flags & TRACE_ITER_ANNOTATE)) |
2518 | return; | |
2519 | ||
2520 | if (!(iter->iter_flags & TRACE_FILE_ANNOTATE)) | |
2521 | return; | |
2522 | ||
4462344e | 2523 | if (cpumask_test_cpu(iter->cpu, iter->started)) |
a309720c SR |
2524 | return; |
2525 | ||
12883efb | 2526 | if (per_cpu_ptr(iter->trace_buffer->data, iter->cpu)->skipped_entries) |
2f26ebd5 SR |
2527 | return; |
2528 | ||
4462344e | 2529 | cpumask_set_cpu(iter->cpu, iter->started); |
b0dfa978 FW |
2530 | |
2531 | /* Don't print started cpu buffer for the first entry of the trace */ | |
2532 | if (iter->idx > 1) | |
2533 | trace_seq_printf(s, "##### CPU %u buffer started ####\n", | |
2534 | iter->cpu); | |
a309720c SR |
2535 | } |
2536 | ||
2c4f035f | 2537 | static enum print_line_t print_trace_fmt(struct trace_iterator *iter) |
bc0c38d1 | 2538 | { |
214023c3 | 2539 | struct trace_seq *s = &iter->seq; |
bc0c38d1 | 2540 | unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK); |
4e3c3333 | 2541 | struct trace_entry *entry; |
f633cef0 | 2542 | struct trace_event *event; |
bc0c38d1 | 2543 | |
4e3c3333 | 2544 | entry = iter->ent; |
dd0e545f | 2545 | |
a309720c SR |
2546 | test_cpu_buff_start(iter); |
2547 | ||
c4a8e8be | 2548 | event = ftrace_find_event(entry->type); |
bc0c38d1 | 2549 | |
c4a8e8be | 2550 | if (trace_flags & TRACE_ITER_CONTEXT_INFO) { |
27d48be8 SR |
2551 | if (iter->iter_flags & TRACE_FILE_LAT_FMT) { |
2552 | if (!trace_print_lat_context(iter)) | |
2553 | goto partial; | |
2554 | } else { | |
2555 | if (!trace_print_context(iter)) | |
2556 | goto partial; | |
2557 | } | |
c4a8e8be | 2558 | } |
bc0c38d1 | 2559 | |
268ccda0 | 2560 | if (event) |
a9a57763 | 2561 | return event->funcs->trace(iter, sym_flags, event); |
d9793bd8 ACM |
2562 | |
2563 | if (!trace_seq_printf(s, "Unknown type %d\n", entry->type)) | |
2564 | goto partial; | |
02b67518 | 2565 | |
2c4f035f | 2566 | return TRACE_TYPE_HANDLED; |
d9793bd8 ACM |
2567 | partial: |
2568 | return TRACE_TYPE_PARTIAL_LINE; | |
bc0c38d1 SR |
2569 | } |
2570 | ||
2c4f035f | 2571 | static enum print_line_t print_raw_fmt(struct trace_iterator *iter) |
f9896bf3 IM |
2572 | { |
2573 | struct trace_seq *s = &iter->seq; | |
2574 | struct trace_entry *entry; | |
f633cef0 | 2575 | struct trace_event *event; |
f9896bf3 IM |
2576 | |
2577 | entry = iter->ent; | |
dd0e545f | 2578 | |
c4a8e8be | 2579 | if (trace_flags & TRACE_ITER_CONTEXT_INFO) { |
d9793bd8 ACM |
2580 | if (!trace_seq_printf(s, "%d %d %llu ", |
2581 | entry->pid, iter->cpu, iter->ts)) | |
2582 | goto partial; | |
c4a8e8be | 2583 | } |
f9896bf3 | 2584 | |
f633cef0 | 2585 | event = ftrace_find_event(entry->type); |
268ccda0 | 2586 | if (event) |
a9a57763 | 2587 | return event->funcs->raw(iter, 0, event); |
d9793bd8 ACM |
2588 | |
2589 | if (!trace_seq_printf(s, "%d ?\n", entry->type)) | |
2590 | goto partial; | |
777e208d | 2591 | |
2c4f035f | 2592 | return TRACE_TYPE_HANDLED; |
d9793bd8 ACM |
2593 | partial: |
2594 | return TRACE_TYPE_PARTIAL_LINE; | |
f9896bf3 IM |
2595 | } |
2596 | ||
2c4f035f | 2597 | static enum print_line_t print_hex_fmt(struct trace_iterator *iter) |
5e3ca0ec IM |
2598 | { |
2599 | struct trace_seq *s = &iter->seq; | |
2600 | unsigned char newline = '\n'; | |
2601 | struct trace_entry *entry; | |
f633cef0 | 2602 | struct trace_event *event; |
5e3ca0ec IM |
2603 | |
2604 | entry = iter->ent; | |
dd0e545f | 2605 | |
c4a8e8be FW |
2606 | if (trace_flags & TRACE_ITER_CONTEXT_INFO) { |
2607 | SEQ_PUT_HEX_FIELD_RET(s, entry->pid); | |
2608 | SEQ_PUT_HEX_FIELD_RET(s, iter->cpu); | |
2609 | SEQ_PUT_HEX_FIELD_RET(s, iter->ts); | |
2610 | } | |
5e3ca0ec | 2611 | |
f633cef0 | 2612 | event = ftrace_find_event(entry->type); |
268ccda0 | 2613 | if (event) { |
a9a57763 | 2614 | enum print_line_t ret = event->funcs->hex(iter, 0, event); |
d9793bd8 ACM |
2615 | if (ret != TRACE_TYPE_HANDLED) |
2616 | return ret; | |
2617 | } | |
7104f300 | 2618 | |
5e3ca0ec IM |
2619 | SEQ_PUT_FIELD_RET(s, newline); |
2620 | ||
2c4f035f | 2621 | return TRACE_TYPE_HANDLED; |
5e3ca0ec IM |
2622 | } |
2623 | ||
2c4f035f | 2624 | static enum print_line_t print_bin_fmt(struct trace_iterator *iter) |
cb0f12aa IM |
2625 | { |
2626 | struct trace_seq *s = &iter->seq; | |
2627 | struct trace_entry *entry; | |
f633cef0 | 2628 | struct trace_event *event; |
cb0f12aa IM |
2629 | |
2630 | entry = iter->ent; | |
dd0e545f | 2631 | |
c4a8e8be FW |
2632 | if (trace_flags & TRACE_ITER_CONTEXT_INFO) { |
2633 | SEQ_PUT_FIELD_RET(s, entry->pid); | |
1830b52d | 2634 | SEQ_PUT_FIELD_RET(s, iter->cpu); |
c4a8e8be FW |
2635 | SEQ_PUT_FIELD_RET(s, iter->ts); |
2636 | } | |
cb0f12aa | 2637 | |
f633cef0 | 2638 | event = ftrace_find_event(entry->type); |
a9a57763 SR |
2639 | return event ? event->funcs->binary(iter, 0, event) : |
2640 | TRACE_TYPE_HANDLED; | |
cb0f12aa IM |
2641 | } |
2642 | ||
62b915f1 | 2643 | int trace_empty(struct trace_iterator *iter) |
bc0c38d1 | 2644 | { |
6d158a81 | 2645 | struct ring_buffer_iter *buf_iter; |
bc0c38d1 SR |
2646 | int cpu; |
2647 | ||
9aba60fe | 2648 | /* If we are looking at one CPU buffer, only check that one */ |
ae3b5093 | 2649 | if (iter->cpu_file != RING_BUFFER_ALL_CPUS) { |
9aba60fe | 2650 | cpu = iter->cpu_file; |
6d158a81 SR |
2651 | buf_iter = trace_buffer_iter(iter, cpu); |
2652 | if (buf_iter) { | |
2653 | if (!ring_buffer_iter_empty(buf_iter)) | |
9aba60fe SR |
2654 | return 0; |
2655 | } else { | |
12883efb | 2656 | if (!ring_buffer_empty_cpu(iter->trace_buffer->buffer, cpu)) |
9aba60fe SR |
2657 | return 0; |
2658 | } | |
2659 | return 1; | |
2660 | } | |
2661 | ||
ab46428c | 2662 | for_each_tracing_cpu(cpu) { |
6d158a81 SR |
2663 | buf_iter = trace_buffer_iter(iter, cpu); |
2664 | if (buf_iter) { | |
2665 | if (!ring_buffer_iter_empty(buf_iter)) | |
d769041f SR |
2666 | return 0; |
2667 | } else { | |
12883efb | 2668 | if (!ring_buffer_empty_cpu(iter->trace_buffer->buffer, cpu)) |
d769041f SR |
2669 | return 0; |
2670 | } | |
bc0c38d1 | 2671 | } |
d769041f | 2672 | |
797d3712 | 2673 | return 1; |
bc0c38d1 SR |
2674 | } |
2675 | ||
4f535968 | 2676 | /* Called with trace_event_read_lock() held. */ |
955b61e5 | 2677 | enum print_line_t print_trace_line(struct trace_iterator *iter) |
f9896bf3 | 2678 | { |
2c4f035f FW |
2679 | enum print_line_t ret; |
2680 | ||
ee5e51f5 JO |
2681 | if (iter->lost_events && |
2682 | !trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n", | |
2683 | iter->cpu, iter->lost_events)) | |
2684 | return TRACE_TYPE_PARTIAL_LINE; | |
bc21b478 | 2685 | |
2c4f035f FW |
2686 | if (iter->trace && iter->trace->print_line) { |
2687 | ret = iter->trace->print_line(iter); | |
2688 | if (ret != TRACE_TYPE_UNHANDLED) | |
2689 | return ret; | |
2690 | } | |
72829bc3 | 2691 | |
09ae7234 SRRH |
2692 | if (iter->ent->type == TRACE_BPUTS && |
2693 | trace_flags & TRACE_ITER_PRINTK && | |
2694 | trace_flags & TRACE_ITER_PRINTK_MSGONLY) | |
2695 | return trace_print_bputs_msg_only(iter); | |
2696 | ||
48ead020 FW |
2697 | if (iter->ent->type == TRACE_BPRINT && |
2698 | trace_flags & TRACE_ITER_PRINTK && | |
2699 | trace_flags & TRACE_ITER_PRINTK_MSGONLY) | |
5ef841f6 | 2700 | return trace_print_bprintk_msg_only(iter); |
48ead020 | 2701 | |
66896a85 FW |
2702 | if (iter->ent->type == TRACE_PRINT && |
2703 | trace_flags & TRACE_ITER_PRINTK && | |
2704 | trace_flags & TRACE_ITER_PRINTK_MSGONLY) | |
5ef841f6 | 2705 | return trace_print_printk_msg_only(iter); |
66896a85 | 2706 | |
cb0f12aa IM |
2707 | if (trace_flags & TRACE_ITER_BIN) |
2708 | return print_bin_fmt(iter); | |
2709 | ||
5e3ca0ec IM |
2710 | if (trace_flags & TRACE_ITER_HEX) |
2711 | return print_hex_fmt(iter); | |
2712 | ||
f9896bf3 IM |
2713 | if (trace_flags & TRACE_ITER_RAW) |
2714 | return print_raw_fmt(iter); | |
2715 | ||
f9896bf3 IM |
2716 | return print_trace_fmt(iter); |
2717 | } | |
2718 | ||
7e9a49ef JO |
2719 | void trace_latency_header(struct seq_file *m) |
2720 | { | |
2721 | struct trace_iterator *iter = m->private; | |
2722 | ||
2723 | /* print nothing if the buffers are empty */ | |
2724 | if (trace_empty(iter)) | |
2725 | return; | |
2726 | ||
2727 | if (iter->iter_flags & TRACE_FILE_LAT_FMT) | |
2728 | print_trace_header(m, iter); | |
2729 | ||
2730 | if (!(trace_flags & TRACE_ITER_VERBOSE)) | |
2731 | print_lat_help_header(m); | |
2732 | } | |
2733 | ||
62b915f1 JO |
2734 | void trace_default_header(struct seq_file *m) |
2735 | { | |
2736 | struct trace_iterator *iter = m->private; | |
2737 | ||
f56e7f8e JO |
2738 | if (!(trace_flags & TRACE_ITER_CONTEXT_INFO)) |
2739 | return; | |
2740 | ||
62b915f1 JO |
2741 | if (iter->iter_flags & TRACE_FILE_LAT_FMT) { |
2742 | /* print nothing if the buffers are empty */ | |
2743 | if (trace_empty(iter)) | |
2744 | return; | |
2745 | print_trace_header(m, iter); | |
2746 | if (!(trace_flags & TRACE_ITER_VERBOSE)) | |
2747 | print_lat_help_header(m); | |
2748 | } else { | |
77271ce4 SR |
2749 | if (!(trace_flags & TRACE_ITER_VERBOSE)) { |
2750 | if (trace_flags & TRACE_ITER_IRQ_INFO) | |
12883efb | 2751 | print_func_help_header_irq(iter->trace_buffer, m); |
77271ce4 | 2752 | else |
12883efb | 2753 | print_func_help_header(iter->trace_buffer, m); |
77271ce4 | 2754 | } |
62b915f1 JO |
2755 | } |
2756 | } | |
2757 | ||
e0a413f6 SR |
2758 | static void test_ftrace_alive(struct seq_file *m) |
2759 | { | |
2760 | if (!ftrace_is_dead()) | |
2761 | return; | |
2762 | seq_printf(m, "# WARNING: FUNCTION TRACING IS CORRUPTED\n"); | |
2763 | seq_printf(m, "# MAY BE MISSING FUNCTION EVENTS\n"); | |
2764 | } | |
2765 | ||
d8741e2e | 2766 | #ifdef CONFIG_TRACER_MAX_TRACE |
f1affcaa | 2767 | static void show_snapshot_main_help(struct seq_file *m) |
d8741e2e | 2768 | { |
d8741e2e SRRH |
2769 | seq_printf(m, "# echo 0 > snapshot : Clears and frees snapshot buffer\n"); |
2770 | seq_printf(m, "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n"); | |
2771 | seq_printf(m, "# Takes a snapshot of the main buffer.\n"); | |
b9be6d02 | 2772 | seq_printf(m, "# echo 2 > snapshot : Clears snapshot buffer (but does not allocate or free)\n"); |
d8741e2e SRRH |
2773 | seq_printf(m, "# (Doesn't have to be '2' works with any number that\n"); |
2774 | seq_printf(m, "# is not a '0' or '1')\n"); | |
2775 | } | |
f1affcaa SRRH |
2776 | |
2777 | static void show_snapshot_percpu_help(struct seq_file *m) | |
2778 | { | |
2779 | seq_printf(m, "# echo 0 > snapshot : Invalid for per_cpu snapshot file.\n"); | |
2780 | #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP | |
2781 | seq_printf(m, "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n"); | |
2782 | seq_printf(m, "# Takes a snapshot of the main buffer for this cpu.\n"); | |
2783 | #else | |
2784 | seq_printf(m, "# echo 1 > snapshot : Not supported with this kernel.\n"); | |
2785 | seq_printf(m, "# Must use main snapshot file to allocate.\n"); | |
2786 | #endif | |
2787 | seq_printf(m, "# echo 2 > snapshot : Clears this cpu's snapshot buffer (but does not allocate)\n"); | |
2788 | seq_printf(m, "# (Doesn't have to be '2' works with any number that\n"); | |
2789 | seq_printf(m, "# is not a '0' or '1')\n"); | |
2790 | } | |
2791 | ||
d8741e2e SRRH |
2792 | static void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) |
2793 | { | |
45ad21ca | 2794 | if (iter->tr->allocated_snapshot) |
d8741e2e SRRH |
2795 | seq_printf(m, "#\n# * Snapshot is allocated *\n#\n"); |
2796 | else | |
2797 | seq_printf(m, "#\n# * Snapshot is freed *\n#\n"); | |
2798 | ||
2799 | seq_printf(m, "# Snapshot commands:\n"); | |
f1affcaa SRRH |
2800 | if (iter->cpu_file == RING_BUFFER_ALL_CPUS) |
2801 | show_snapshot_main_help(m); | |
2802 | else | |
2803 | show_snapshot_percpu_help(m); | |
d8741e2e SRRH |
2804 | } |
2805 | #else | |
2806 | /* Should never be called */ | |
2807 | static inline void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) { } | |
2808 | #endif | |
2809 | ||
bc0c38d1 SR |
2810 | static int s_show(struct seq_file *m, void *v) |
2811 | { | |
2812 | struct trace_iterator *iter = v; | |
a63ce5b3 | 2813 | int ret; |
bc0c38d1 SR |
2814 | |
2815 | if (iter->ent == NULL) { | |
2816 | if (iter->tr) { | |
2817 | seq_printf(m, "# tracer: %s\n", iter->trace->name); | |
2818 | seq_puts(m, "#\n"); | |
e0a413f6 | 2819 | test_ftrace_alive(m); |
bc0c38d1 | 2820 | } |
d8741e2e SRRH |
2821 | if (iter->snapshot && trace_empty(iter)) |
2822 | print_snapshot_help(m, iter); | |
2823 | else if (iter->trace && iter->trace->print_header) | |
8bba1bf5 | 2824 | iter->trace->print_header(m); |
62b915f1 JO |
2825 | else |
2826 | trace_default_header(m); | |
2827 | ||
a63ce5b3 SR |
2828 | } else if (iter->leftover) { |
2829 | /* | |
2830 | * If we filled the seq_file buffer earlier, we | |
2831 | * want to just show it now. | |
2832 | */ | |
2833 | ret = trace_print_seq(m, &iter->seq); | |
2834 | ||
2835 | /* ret should this time be zero, but you never know */ | |
2836 | iter->leftover = ret; | |
2837 | ||
bc0c38d1 | 2838 | } else { |
f9896bf3 | 2839 | print_trace_line(iter); |
a63ce5b3 SR |
2840 | ret = trace_print_seq(m, &iter->seq); |
2841 | /* | |
2842 | * If we overflow the seq_file buffer, then it will | |
2843 | * ask us for this data again at start up. | |
2844 | * Use that instead. | |
2845 | * ret is 0 if seq_file write succeeded. | |
2846 | * -1 otherwise. | |
2847 | */ | |
2848 | iter->leftover = ret; | |
bc0c38d1 SR |
2849 | } |
2850 | ||
2851 | return 0; | |
2852 | } | |
2853 | ||
649e9c70 ON |
2854 | /* |
2855 | * Should be used after trace_array_get(), trace_types_lock | |
2856 | * ensures that i_cdev was already initialized. | |
2857 | */ | |
2858 | static inline int tracing_get_cpu(struct inode *inode) | |
2859 | { | |
2860 | if (inode->i_cdev) /* See trace_create_cpu_file() */ | |
2861 | return (long)inode->i_cdev - 1; | |
2862 | return RING_BUFFER_ALL_CPUS; | |
2863 | } | |
2864 | ||
88e9d34c | 2865 | static const struct seq_operations tracer_seq_ops = { |
4bf39a94 IM |
2866 | .start = s_start, |
2867 | .next = s_next, | |
2868 | .stop = s_stop, | |
2869 | .show = s_show, | |
bc0c38d1 SR |
2870 | }; |
2871 | ||
e309b41d | 2872 | static struct trace_iterator * |
6484c71c | 2873 | __tracing_open(struct inode *inode, struct file *file, bool snapshot) |
bc0c38d1 | 2874 | { |
6484c71c | 2875 | struct trace_array *tr = inode->i_private; |
bc0c38d1 | 2876 | struct trace_iterator *iter; |
50e18b94 | 2877 | int cpu; |
bc0c38d1 | 2878 | |
85a2f9b4 SR |
2879 | if (tracing_disabled) |
2880 | return ERR_PTR(-ENODEV); | |
60a11774 | 2881 | |
50e18b94 | 2882 | iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter)); |
85a2f9b4 SR |
2883 | if (!iter) |
2884 | return ERR_PTR(-ENOMEM); | |
bc0c38d1 | 2885 | |
6d158a81 SR |
2886 | iter->buffer_iter = kzalloc(sizeof(*iter->buffer_iter) * num_possible_cpus(), |
2887 | GFP_KERNEL); | |
93574fcc DC |
2888 | if (!iter->buffer_iter) |
2889 | goto release; | |
2890 | ||
d7350c3f FW |
2891 | /* |
2892 | * We make a copy of the current tracer to avoid concurrent | |
2893 | * changes on it while we are reading. | |
2894 | */ | |
bc0c38d1 | 2895 | mutex_lock(&trace_types_lock); |
d7350c3f | 2896 | iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL); |
85a2f9b4 | 2897 | if (!iter->trace) |
d7350c3f | 2898 | goto fail; |
85a2f9b4 | 2899 | |
2b6080f2 | 2900 | *iter->trace = *tr->current_trace; |
d7350c3f | 2901 | |
79f55997 | 2902 | if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL)) |
b0dfa978 FW |
2903 | goto fail; |
2904 | ||
12883efb SRRH |
2905 | iter->tr = tr; |
2906 | ||
2907 | #ifdef CONFIG_TRACER_MAX_TRACE | |
2b6080f2 SR |
2908 | /* Currently only the top directory has a snapshot */ |
2909 | if (tr->current_trace->print_max || snapshot) | |
12883efb | 2910 | iter->trace_buffer = &tr->max_buffer; |
bc0c38d1 | 2911 | else |
12883efb SRRH |
2912 | #endif |
2913 | iter->trace_buffer = &tr->trace_buffer; | |
debdd57f | 2914 | iter->snapshot = snapshot; |
bc0c38d1 | 2915 | iter->pos = -1; |
6484c71c | 2916 | iter->cpu_file = tracing_get_cpu(inode); |
d7350c3f | 2917 | mutex_init(&iter->mutex); |
bc0c38d1 | 2918 | |
8bba1bf5 MM |
2919 | /* Notify the tracer early; before we stop tracing. */ |
2920 | if (iter->trace && iter->trace->open) | |
a93751ca | 2921 | iter->trace->open(iter); |
8bba1bf5 | 2922 | |
12ef7d44 | 2923 | /* Annotate start of buffers if we had overruns */ |
12883efb | 2924 | if (ring_buffer_overruns(iter->trace_buffer->buffer)) |
12ef7d44 SR |
2925 | iter->iter_flags |= TRACE_FILE_ANNOTATE; |
2926 | ||
8be0709f | 2927 | /* Output in nanoseconds only if we are using a clock in nanoseconds. */ |
58e8eedf | 2928 | if (trace_clocks[tr->clock_id].in_ns) |
8be0709f DS |
2929 | iter->iter_flags |= TRACE_FILE_TIME_IN_NS; |
2930 | ||
debdd57f HT |
2931 | /* stop the trace while dumping if we are not opening "snapshot" */ |
2932 | if (!iter->snapshot) | |
2b6080f2 | 2933 | tracing_stop_tr(tr); |
2f26ebd5 | 2934 | |
ae3b5093 | 2935 | if (iter->cpu_file == RING_BUFFER_ALL_CPUS) { |
b04cc6b1 | 2936 | for_each_tracing_cpu(cpu) { |
b04cc6b1 | 2937 | iter->buffer_iter[cpu] = |
12883efb | 2938 | ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu); |
72c9ddfd DM |
2939 | } |
2940 | ring_buffer_read_prepare_sync(); | |
2941 | for_each_tracing_cpu(cpu) { | |
2942 | ring_buffer_read_start(iter->buffer_iter[cpu]); | |
2f26ebd5 | 2943 | tracing_iter_reset(iter, cpu); |
b04cc6b1 FW |
2944 | } |
2945 | } else { | |
2946 | cpu = iter->cpu_file; | |
3928a8a2 | 2947 | iter->buffer_iter[cpu] = |
12883efb | 2948 | ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu); |
72c9ddfd DM |
2949 | ring_buffer_read_prepare_sync(); |
2950 | ring_buffer_read_start(iter->buffer_iter[cpu]); | |
2f26ebd5 | 2951 | tracing_iter_reset(iter, cpu); |
3928a8a2 SR |
2952 | } |
2953 | ||
bc0c38d1 SR |
2954 | mutex_unlock(&trace_types_lock); |
2955 | ||
bc0c38d1 | 2956 | return iter; |
3928a8a2 | 2957 | |
d7350c3f | 2958 | fail: |
3928a8a2 | 2959 | mutex_unlock(&trace_types_lock); |
d7350c3f | 2960 | kfree(iter->trace); |
6d158a81 | 2961 | kfree(iter->buffer_iter); |
93574fcc | 2962 | release: |
50e18b94 JO |
2963 | seq_release_private(inode, file); |
2964 | return ERR_PTR(-ENOMEM); | |
bc0c38d1 SR |
2965 | } |
2966 | ||
2967 | int tracing_open_generic(struct inode *inode, struct file *filp) | |
2968 | { | |
60a11774 SR |
2969 | if (tracing_disabled) |
2970 | return -ENODEV; | |
2971 | ||
bc0c38d1 SR |
2972 | filp->private_data = inode->i_private; |
2973 | return 0; | |
2974 | } | |
2975 | ||
2e86421d GB |
2976 | bool tracing_is_disabled(void) |
2977 | { | |
2978 | return (tracing_disabled) ? true: false; | |
2979 | } | |
2980 | ||
7b85af63 SRRH |
2981 | /* |
2982 | * Open and update trace_array ref count. | |
2983 | * Must have the current trace_array passed to it. | |
2984 | */ | |
dcc30223 | 2985 | static int tracing_open_generic_tr(struct inode *inode, struct file *filp) |
7b85af63 SRRH |
2986 | { |
2987 | struct trace_array *tr = inode->i_private; | |
2988 | ||
2989 | if (tracing_disabled) | |
2990 | return -ENODEV; | |
2991 | ||
2992 | if (trace_array_get(tr) < 0) | |
2993 | return -ENODEV; | |
2994 | ||
2995 | filp->private_data = inode->i_private; | |
2996 | ||
2997 | return 0; | |
7b85af63 SRRH |
2998 | } |
2999 | ||
4fd27358 | 3000 | static int tracing_release(struct inode *inode, struct file *file) |
bc0c38d1 | 3001 | { |
6484c71c | 3002 | struct trace_array *tr = inode->i_private; |
907f2784 | 3003 | struct seq_file *m = file->private_data; |
4acd4d00 | 3004 | struct trace_iterator *iter; |
3928a8a2 | 3005 | int cpu; |
bc0c38d1 | 3006 | |
ff451961 | 3007 | if (!(file->f_mode & FMODE_READ)) { |
6484c71c | 3008 | trace_array_put(tr); |
4acd4d00 | 3009 | return 0; |
ff451961 | 3010 | } |
4acd4d00 | 3011 | |
6484c71c | 3012 | /* Writes do not use seq_file */ |
4acd4d00 | 3013 | iter = m->private; |
bc0c38d1 | 3014 | mutex_lock(&trace_types_lock); |
a695cb58 | 3015 | |
3928a8a2 SR |
3016 | for_each_tracing_cpu(cpu) { |
3017 | if (iter->buffer_iter[cpu]) | |
3018 | ring_buffer_read_finish(iter->buffer_iter[cpu]); | |
3019 | } | |
3020 | ||
bc0c38d1 SR |
3021 | if (iter->trace && iter->trace->close) |
3022 | iter->trace->close(iter); | |
3023 | ||
debdd57f HT |
3024 | if (!iter->snapshot) |
3025 | /* reenable tracing if it was previously enabled */ | |
2b6080f2 | 3026 | tracing_start_tr(tr); |
f77d09a3 AL |
3027 | |
3028 | __trace_array_put(tr); | |
3029 | ||
bc0c38d1 SR |
3030 | mutex_unlock(&trace_types_lock); |
3031 | ||
d7350c3f | 3032 | mutex_destroy(&iter->mutex); |
b0dfa978 | 3033 | free_cpumask_var(iter->started); |
d7350c3f | 3034 | kfree(iter->trace); |
6d158a81 | 3035 | kfree(iter->buffer_iter); |
50e18b94 | 3036 | seq_release_private(inode, file); |
ff451961 | 3037 | |
bc0c38d1 SR |
3038 | return 0; |
3039 | } | |
3040 | ||
7b85af63 SRRH |
3041 | static int tracing_release_generic_tr(struct inode *inode, struct file *file) |
3042 | { | |
3043 | struct trace_array *tr = inode->i_private; | |
3044 | ||
3045 | trace_array_put(tr); | |
bc0c38d1 SR |
3046 | return 0; |
3047 | } | |
3048 | ||
7b85af63 SRRH |
3049 | static int tracing_single_release_tr(struct inode *inode, struct file *file) |
3050 | { | |
3051 | struct trace_array *tr = inode->i_private; | |
3052 | ||
3053 | trace_array_put(tr); | |
3054 | ||
3055 | return single_release(inode, file); | |
3056 | } | |
3057 | ||
bc0c38d1 SR |
3058 | static int tracing_open(struct inode *inode, struct file *file) |
3059 | { | |
6484c71c | 3060 | struct trace_array *tr = inode->i_private; |
85a2f9b4 SR |
3061 | struct trace_iterator *iter; |
3062 | int ret = 0; | |
bc0c38d1 | 3063 | |
ff451961 SRRH |
3064 | if (trace_array_get(tr) < 0) |
3065 | return -ENODEV; | |
3066 | ||
4acd4d00 | 3067 | /* If this file was open for write, then erase contents */ |
6484c71c ON |
3068 | if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) { |
3069 | int cpu = tracing_get_cpu(inode); | |
3070 | ||
3071 | if (cpu == RING_BUFFER_ALL_CPUS) | |
12883efb | 3072 | tracing_reset_online_cpus(&tr->trace_buffer); |
4acd4d00 | 3073 | else |
6484c71c | 3074 | tracing_reset(&tr->trace_buffer, cpu); |
4acd4d00 | 3075 | } |
bc0c38d1 | 3076 | |
4acd4d00 | 3077 | if (file->f_mode & FMODE_READ) { |
6484c71c | 3078 | iter = __tracing_open(inode, file, false); |
4acd4d00 SR |
3079 | if (IS_ERR(iter)) |
3080 | ret = PTR_ERR(iter); | |
3081 | else if (trace_flags & TRACE_ITER_LATENCY_FMT) | |
3082 | iter->iter_flags |= TRACE_FILE_LAT_FMT; | |
3083 | } | |
ff451961 SRRH |
3084 | |
3085 | if (ret < 0) | |
3086 | trace_array_put(tr); | |
3087 | ||
bc0c38d1 SR |
3088 | return ret; |
3089 | } | |
3090 | ||
e309b41d | 3091 | static void * |
bc0c38d1 SR |
3092 | t_next(struct seq_file *m, void *v, loff_t *pos) |
3093 | { | |
f129e965 | 3094 | struct tracer *t = v; |
bc0c38d1 SR |
3095 | |
3096 | (*pos)++; | |
3097 | ||
3098 | if (t) | |
3099 | t = t->next; | |
3100 | ||
bc0c38d1 SR |
3101 | return t; |
3102 | } | |
3103 | ||
3104 | static void *t_start(struct seq_file *m, loff_t *pos) | |
3105 | { | |
f129e965 | 3106 | struct tracer *t; |
bc0c38d1 SR |
3107 | loff_t l = 0; |
3108 | ||
3109 | mutex_lock(&trace_types_lock); | |
f129e965 | 3110 | for (t = trace_types; t && l < *pos; t = t_next(m, t, &l)) |
bc0c38d1 SR |
3111 | ; |
3112 | ||
3113 | return t; | |
3114 | } | |
3115 | ||
3116 | static void t_stop(struct seq_file *m, void *p) | |
3117 | { | |
3118 | mutex_unlock(&trace_types_lock); | |
3119 | } | |
3120 | ||
3121 | static int t_show(struct seq_file *m, void *v) | |
3122 | { | |
3123 | struct tracer *t = v; | |
3124 | ||
3125 | if (!t) | |
3126 | return 0; | |
3127 | ||
3128 | seq_printf(m, "%s", t->name); | |
3129 | if (t->next) | |
3130 | seq_putc(m, ' '); | |
3131 | else | |
3132 | seq_putc(m, '\n'); | |
3133 | ||
3134 | return 0; | |
3135 | } | |
3136 | ||
88e9d34c | 3137 | static const struct seq_operations show_traces_seq_ops = { |
4bf39a94 IM |
3138 | .start = t_start, |
3139 | .next = t_next, | |
3140 | .stop = t_stop, | |
3141 | .show = t_show, | |
bc0c38d1 SR |
3142 | }; |
3143 | ||
3144 | static int show_traces_open(struct inode *inode, struct file *file) | |
3145 | { | |
60a11774 SR |
3146 | if (tracing_disabled) |
3147 | return -ENODEV; | |
3148 | ||
f129e965 | 3149 | return seq_open(file, &show_traces_seq_ops); |
bc0c38d1 SR |
3150 | } |
3151 | ||
4acd4d00 SR |
3152 | static ssize_t |
3153 | tracing_write_stub(struct file *filp, const char __user *ubuf, | |
3154 | size_t count, loff_t *ppos) | |
3155 | { | |
3156 | return count; | |
3157 | } | |
3158 | ||
364829b1 SP |
3159 | static loff_t tracing_seek(struct file *file, loff_t offset, int origin) |
3160 | { | |
3161 | if (file->f_mode & FMODE_READ) | |
3162 | return seq_lseek(file, offset, origin); | |
3163 | else | |
3164 | return 0; | |
3165 | } | |
3166 | ||
5e2336a0 | 3167 | static const struct file_operations tracing_fops = { |
4bf39a94 IM |
3168 | .open = tracing_open, |
3169 | .read = seq_read, | |
4acd4d00 | 3170 | .write = tracing_write_stub, |
364829b1 | 3171 | .llseek = tracing_seek, |
4bf39a94 | 3172 | .release = tracing_release, |
bc0c38d1 SR |
3173 | }; |
3174 | ||
5e2336a0 | 3175 | static const struct file_operations show_traces_fops = { |
c7078de1 IM |
3176 | .open = show_traces_open, |
3177 | .read = seq_read, | |
3178 | .release = seq_release, | |
b444786f | 3179 | .llseek = seq_lseek, |
c7078de1 IM |
3180 | }; |
3181 | ||
36dfe925 IM |
3182 | /* |
3183 | * The tracer itself will not take this lock, but still we want | |
3184 | * to provide a consistent cpumask to user-space: | |
3185 | */ | |
3186 | static DEFINE_MUTEX(tracing_cpumask_update_lock); | |
3187 | ||
3188 | /* | |
3189 | * Temporary storage for the character representation of the | |
3190 | * CPU bitmask (and one more byte for the newline): | |
3191 | */ | |
3192 | static char mask_str[NR_CPUS + 1]; | |
3193 | ||
c7078de1 IM |
3194 | static ssize_t |
3195 | tracing_cpumask_read(struct file *filp, char __user *ubuf, | |
3196 | size_t count, loff_t *ppos) | |
3197 | { | |
ccfe9e42 | 3198 | struct trace_array *tr = file_inode(filp)->i_private; |
36dfe925 | 3199 | int len; |
c7078de1 IM |
3200 | |
3201 | mutex_lock(&tracing_cpumask_update_lock); | |
36dfe925 | 3202 | |
ccfe9e42 | 3203 | len = cpumask_scnprintf(mask_str, count, tr->tracing_cpumask); |
36dfe925 IM |
3204 | if (count - len < 2) { |
3205 | count = -EINVAL; | |
3206 | goto out_err; | |
3207 | } | |
3208 | len += sprintf(mask_str + len, "\n"); | |
3209 | count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1); | |
3210 | ||
3211 | out_err: | |
c7078de1 IM |
3212 | mutex_unlock(&tracing_cpumask_update_lock); |
3213 | ||
3214 | return count; | |
3215 | } | |
3216 | ||
3217 | static ssize_t | |
3218 | tracing_cpumask_write(struct file *filp, const char __user *ubuf, | |
3219 | size_t count, loff_t *ppos) | |
3220 | { | |
ccfe9e42 | 3221 | struct trace_array *tr = file_inode(filp)->i_private; |
9e01c1b7 | 3222 | cpumask_var_t tracing_cpumask_new; |
2b6080f2 | 3223 | int err, cpu; |
9e01c1b7 RR |
3224 | |
3225 | if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL)) | |
3226 | return -ENOMEM; | |
c7078de1 | 3227 | |
9e01c1b7 | 3228 | err = cpumask_parse_user(ubuf, count, tracing_cpumask_new); |
c7078de1 | 3229 | if (err) |
36dfe925 IM |
3230 | goto err_unlock; |
3231 | ||
215368e8 LZ |
3232 | mutex_lock(&tracing_cpumask_update_lock); |
3233 | ||
a5e25883 | 3234 | local_irq_disable(); |
0199c4e6 | 3235 | arch_spin_lock(&ftrace_max_lock); |
ab46428c | 3236 | for_each_tracing_cpu(cpu) { |
36dfe925 IM |
3237 | /* |
3238 | * Increase/decrease the disabled counter if we are | |
3239 | * about to flip a bit in the cpumask: | |
3240 | */ | |
ccfe9e42 | 3241 | if (cpumask_test_cpu(cpu, tr->tracing_cpumask) && |
9e01c1b7 | 3242 | !cpumask_test_cpu(cpu, tracing_cpumask_new)) { |
12883efb SRRH |
3243 | atomic_inc(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled); |
3244 | ring_buffer_record_disable_cpu(tr->trace_buffer.buffer, cpu); | |
36dfe925 | 3245 | } |
ccfe9e42 | 3246 | if (!cpumask_test_cpu(cpu, tr->tracing_cpumask) && |
9e01c1b7 | 3247 | cpumask_test_cpu(cpu, tracing_cpumask_new)) { |
12883efb SRRH |
3248 | atomic_dec(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled); |
3249 | ring_buffer_record_enable_cpu(tr->trace_buffer.buffer, cpu); | |
36dfe925 IM |
3250 | } |
3251 | } | |
0199c4e6 | 3252 | arch_spin_unlock(&ftrace_max_lock); |
a5e25883 | 3253 | local_irq_enable(); |
36dfe925 | 3254 | |
ccfe9e42 | 3255 | cpumask_copy(tr->tracing_cpumask, tracing_cpumask_new); |
36dfe925 IM |
3256 | |
3257 | mutex_unlock(&tracing_cpumask_update_lock); | |
9e01c1b7 | 3258 | free_cpumask_var(tracing_cpumask_new); |
c7078de1 IM |
3259 | |
3260 | return count; | |
36dfe925 IM |
3261 | |
3262 | err_unlock: | |
215368e8 | 3263 | free_cpumask_var(tracing_cpumask_new); |
36dfe925 IM |
3264 | |
3265 | return err; | |
c7078de1 IM |
3266 | } |
3267 | ||
5e2336a0 | 3268 | static const struct file_operations tracing_cpumask_fops = { |
ccfe9e42 | 3269 | .open = tracing_open_generic_tr, |
c7078de1 IM |
3270 | .read = tracing_cpumask_read, |
3271 | .write = tracing_cpumask_write, | |
ccfe9e42 | 3272 | .release = tracing_release_generic_tr, |
b444786f | 3273 | .llseek = generic_file_llseek, |
bc0c38d1 SR |
3274 | }; |
3275 | ||
fdb372ed | 3276 | static int tracing_trace_options_show(struct seq_file *m, void *v) |
bc0c38d1 | 3277 | { |
d8e83d26 | 3278 | struct tracer_opt *trace_opts; |
2b6080f2 | 3279 | struct trace_array *tr = m->private; |
d8e83d26 | 3280 | u32 tracer_flags; |
d8e83d26 | 3281 | int i; |
adf9f195 | 3282 | |
d8e83d26 | 3283 | mutex_lock(&trace_types_lock); |
2b6080f2 SR |
3284 | tracer_flags = tr->current_trace->flags->val; |
3285 | trace_opts = tr->current_trace->flags->opts; | |
d8e83d26 | 3286 | |
bc0c38d1 SR |
3287 | for (i = 0; trace_options[i]; i++) { |
3288 | if (trace_flags & (1 << i)) | |
fdb372ed | 3289 | seq_printf(m, "%s\n", trace_options[i]); |
bc0c38d1 | 3290 | else |
fdb372ed | 3291 | seq_printf(m, "no%s\n", trace_options[i]); |
bc0c38d1 SR |
3292 | } |
3293 | ||
adf9f195 FW |
3294 | for (i = 0; trace_opts[i].name; i++) { |
3295 | if (tracer_flags & trace_opts[i].bit) | |
fdb372ed | 3296 | seq_printf(m, "%s\n", trace_opts[i].name); |
adf9f195 | 3297 | else |
fdb372ed | 3298 | seq_printf(m, "no%s\n", trace_opts[i].name); |
adf9f195 | 3299 | } |
d8e83d26 | 3300 | mutex_unlock(&trace_types_lock); |
adf9f195 | 3301 | |
fdb372ed | 3302 | return 0; |
bc0c38d1 | 3303 | } |
bc0c38d1 | 3304 | |
8d18eaaf LZ |
3305 | static int __set_tracer_option(struct tracer *trace, |
3306 | struct tracer_flags *tracer_flags, | |
3307 | struct tracer_opt *opts, int neg) | |
3308 | { | |
3309 | int ret; | |
bc0c38d1 | 3310 | |
8d18eaaf LZ |
3311 | ret = trace->set_flag(tracer_flags->val, opts->bit, !neg); |
3312 | if (ret) | |
3313 | return ret; | |
3314 | ||
3315 | if (neg) | |
3316 | tracer_flags->val &= ~opts->bit; | |
3317 | else | |
3318 | tracer_flags->val |= opts->bit; | |
3319 | return 0; | |
bc0c38d1 SR |
3320 | } |
3321 | ||
adf9f195 FW |
3322 | /* Try to assign a tracer specific option */ |
3323 | static int set_tracer_option(struct tracer *trace, char *cmp, int neg) | |
3324 | { | |
7770841e | 3325 | struct tracer_flags *tracer_flags = trace->flags; |
adf9f195 | 3326 | struct tracer_opt *opts = NULL; |
8d18eaaf | 3327 | int i; |
adf9f195 | 3328 | |
7770841e Z |
3329 | for (i = 0; tracer_flags->opts[i].name; i++) { |
3330 | opts = &tracer_flags->opts[i]; | |
adf9f195 | 3331 | |
8d18eaaf LZ |
3332 | if (strcmp(cmp, opts->name) == 0) |
3333 | return __set_tracer_option(trace, trace->flags, | |
3334 | opts, neg); | |
adf9f195 | 3335 | } |
adf9f195 | 3336 | |
8d18eaaf | 3337 | return -EINVAL; |
adf9f195 FW |
3338 | } |
3339 | ||
613f04a0 SRRH |
3340 | /* Some tracers require overwrite to stay enabled */ |
3341 | int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set) | |
3342 | { | |
3343 | if (tracer->enabled && (mask & TRACE_ITER_OVERWRITE) && !set) | |
3344 | return -1; | |
3345 | ||
3346 | return 0; | |
3347 | } | |
3348 | ||
2b6080f2 | 3349 | int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled) |
af4617bd SR |
3350 | { |
3351 | /* do nothing if flag is already set */ | |
3352 | if (!!(trace_flags & mask) == !!enabled) | |
613f04a0 SRRH |
3353 | return 0; |
3354 | ||
3355 | /* Give the tracer a chance to approve the change */ | |
2b6080f2 SR |
3356 | if (tr->current_trace->flag_changed) |
3357 | if (tr->current_trace->flag_changed(tr->current_trace, mask, !!enabled)) | |
613f04a0 | 3358 | return -EINVAL; |
af4617bd SR |
3359 | |
3360 | if (enabled) | |
3361 | trace_flags |= mask; | |
3362 | else | |
3363 | trace_flags &= ~mask; | |
e870e9a1 LZ |
3364 | |
3365 | if (mask == TRACE_ITER_RECORD_CMD) | |
3366 | trace_event_enable_cmd_record(enabled); | |
750912fa | 3367 | |
80902822 | 3368 | if (mask == TRACE_ITER_OVERWRITE) { |
12883efb | 3369 | ring_buffer_change_overwrite(tr->trace_buffer.buffer, enabled); |
80902822 | 3370 | #ifdef CONFIG_TRACER_MAX_TRACE |
12883efb | 3371 | ring_buffer_change_overwrite(tr->max_buffer.buffer, enabled); |
80902822 SRRH |
3372 | #endif |
3373 | } | |
81698831 SR |
3374 | |
3375 | if (mask == TRACE_ITER_PRINTK) | |
3376 | trace_printk_start_stop_comm(enabled); | |
613f04a0 SRRH |
3377 | |
3378 | return 0; | |
af4617bd SR |
3379 | } |
3380 | ||
2b6080f2 | 3381 | static int trace_set_options(struct trace_array *tr, char *option) |
bc0c38d1 | 3382 | { |
8d18eaaf | 3383 | char *cmp; |
bc0c38d1 | 3384 | int neg = 0; |
613f04a0 | 3385 | int ret = -ENODEV; |
bc0c38d1 SR |
3386 | int i; |
3387 | ||
7bcfaf54 | 3388 | cmp = strstrip(option); |
bc0c38d1 | 3389 | |
8d18eaaf | 3390 | if (strncmp(cmp, "no", 2) == 0) { |
bc0c38d1 SR |
3391 | neg = 1; |
3392 | cmp += 2; | |
3393 | } | |
3394 | ||
69d34da2 SRRH |
3395 | mutex_lock(&trace_types_lock); |
3396 | ||
bc0c38d1 | 3397 | for (i = 0; trace_options[i]; i++) { |
8d18eaaf | 3398 | if (strcmp(cmp, trace_options[i]) == 0) { |
2b6080f2 | 3399 | ret = set_tracer_flag(tr, 1 << i, !neg); |
bc0c38d1 SR |
3400 | break; |
3401 | } | |
3402 | } | |
adf9f195 FW |
3403 | |
3404 | /* If no option could be set, test the specific tracer options */ | |
69d34da2 | 3405 | if (!trace_options[i]) |
2b6080f2 | 3406 | ret = set_tracer_option(tr->current_trace, cmp, neg); |
69d34da2 SRRH |
3407 | |
3408 | mutex_unlock(&trace_types_lock); | |
bc0c38d1 | 3409 | |
7bcfaf54 SR |
3410 | return ret; |
3411 | } | |
3412 | ||
3413 | static ssize_t | |
3414 | tracing_trace_options_write(struct file *filp, const char __user *ubuf, | |
3415 | size_t cnt, loff_t *ppos) | |
3416 | { | |
2b6080f2 SR |
3417 | struct seq_file *m = filp->private_data; |
3418 | struct trace_array *tr = m->private; | |
7bcfaf54 | 3419 | char buf[64]; |
613f04a0 | 3420 | int ret; |
7bcfaf54 SR |
3421 | |
3422 | if (cnt >= sizeof(buf)) | |
3423 | return -EINVAL; | |
3424 | ||
3425 | if (copy_from_user(&buf, ubuf, cnt)) | |
3426 | return -EFAULT; | |
3427 | ||
a8dd2176 SR |
3428 | buf[cnt] = 0; |
3429 | ||
2b6080f2 | 3430 | ret = trace_set_options(tr, buf); |
613f04a0 SRRH |
3431 | if (ret < 0) |
3432 | return ret; | |
7bcfaf54 | 3433 | |
cf8517cf | 3434 | *ppos += cnt; |
bc0c38d1 SR |
3435 | |
3436 | return cnt; | |
3437 | } | |
3438 | ||
fdb372ed LZ |
3439 | static int tracing_trace_options_open(struct inode *inode, struct file *file) |
3440 | { | |
7b85af63 | 3441 | struct trace_array *tr = inode->i_private; |
f77d09a3 | 3442 | int ret; |
7b85af63 | 3443 | |
fdb372ed LZ |
3444 | if (tracing_disabled) |
3445 | return -ENODEV; | |
2b6080f2 | 3446 | |
7b85af63 SRRH |
3447 | if (trace_array_get(tr) < 0) |
3448 | return -ENODEV; | |
3449 | ||
f77d09a3 AL |
3450 | ret = single_open(file, tracing_trace_options_show, inode->i_private); |
3451 | if (ret < 0) | |
3452 | trace_array_put(tr); | |
3453 | ||
3454 | return ret; | |
fdb372ed LZ |
3455 | } |
3456 | ||
5e2336a0 | 3457 | static const struct file_operations tracing_iter_fops = { |
fdb372ed LZ |
3458 | .open = tracing_trace_options_open, |
3459 | .read = seq_read, | |
3460 | .llseek = seq_lseek, | |
7b85af63 | 3461 | .release = tracing_single_release_tr, |
ee6bce52 | 3462 | .write = tracing_trace_options_write, |
bc0c38d1 SR |
3463 | }; |
3464 | ||
7bd2f24c IM |
3465 | static const char readme_msg[] = |
3466 | "tracing mini-HOWTO:\n\n" | |
22f45649 SRRH |
3467 | "# echo 0 > tracing_on : quick way to disable tracing\n" |
3468 | "# echo 1 > tracing_on : quick way to re-enable tracing\n\n" | |
3469 | " Important files:\n" | |
3470 | " trace\t\t\t- The static contents of the buffer\n" | |
3471 | "\t\t\t To clear the buffer write into this file: echo > trace\n" | |
3472 | " trace_pipe\t\t- A consuming read to see the contents of the buffer\n" | |
3473 | " current_tracer\t- function and latency tracers\n" | |
3474 | " available_tracers\t- list of configured tracers for current_tracer\n" | |
3475 | " buffer_size_kb\t- view and modify size of per cpu buffer\n" | |
3476 | " buffer_total_size_kb - view total size of all cpu buffers\n\n" | |
3477 | " trace_clock\t\t-change the clock used to order events\n" | |
3478 | " local: Per cpu clock but may not be synced across CPUs\n" | |
3479 | " global: Synced across CPUs but slows tracing down.\n" | |
3480 | " counter: Not a clock, but just an increment\n" | |
3481 | " uptime: Jiffy counter from time of boot\n" | |
3482 | " perf: Same clock that perf events use\n" | |
3483 | #ifdef CONFIG_X86_64 | |
3484 | " x86-tsc: TSC cycle counter\n" | |
3485 | #endif | |
3486 | "\n trace_marker\t\t- Writes into this file writes into the kernel buffer\n" | |
3487 | " tracing_cpumask\t- Limit which CPUs to trace\n" | |
3488 | " instances\t\t- Make sub-buffers with: mkdir instances/foo\n" | |
3489 | "\t\t\t Remove sub-buffer with rmdir\n" | |
3490 | " trace_options\t\t- Set format or modify how tracing happens\n" | |
3491 | "\t\t\t Disable an option by adding a suffix 'no' to the option name\n" | |
3492 | #ifdef CONFIG_DYNAMIC_FTRACE | |
3493 | "\n available_filter_functions - list of functions that can be filtered on\n" | |
3494 | " set_ftrace_filter\t- echo function name in here to only trace these functions\n" | |
3495 | " accepts: func_full_name, *func_end, func_begin*, *func_middle*\n" | |
3496 | " modules: Can select a group via module\n" | |
3497 | " Format: :mod:<module-name>\n" | |
3498 | " example: echo :mod:ext3 > set_ftrace_filter\n" | |
3499 | " triggers: a command to perform when function is hit\n" | |
3500 | " Format: <function>:<trigger>[:count]\n" | |
3501 | " trigger: traceon, traceoff\n" | |
3502 | " enable_event:<system>:<event>\n" | |
3503 | " disable_event:<system>:<event>\n" | |
3504 | #ifdef CONFIG_STACKTRACE | |
3505 | " stacktrace\n" | |
3506 | #endif | |
3507 | #ifdef CONFIG_TRACER_SNAPSHOT | |
3508 | " snapshot\n" | |
3509 | #endif | |
3510 | " example: echo do_fault:traceoff > set_ftrace_filter\n" | |
3511 | " echo do_trap:traceoff:3 > set_ftrace_filter\n" | |
3512 | " The first one will disable tracing every time do_fault is hit\n" | |
3513 | " The second will disable tracing at most 3 times when do_trap is hit\n" | |
3514 | " The first time do trap is hit and it disables tracing, the counter\n" | |
3515 | " will decrement to 2. If tracing is already disabled, the counter\n" | |
3516 | " will not decrement. It only decrements when the trigger did work\n" | |
3517 | " To remove trigger without count:\n" | |
3518 | " echo '!<function>:<trigger> > set_ftrace_filter\n" | |
3519 | " To remove trigger with a count:\n" | |
3520 | " echo '!<function>:<trigger>:0 > set_ftrace_filter\n" | |
3521 | " set_ftrace_notrace\t- echo function name in here to never trace.\n" | |
3522 | " accepts: func_full_name, *func_end, func_begin*, *func_middle*\n" | |
3523 | " modules: Can select a group via module command :mod:\n" | |
3524 | " Does not accept triggers\n" | |
3525 | #endif /* CONFIG_DYNAMIC_FTRACE */ | |
3526 | #ifdef CONFIG_FUNCTION_TRACER | |
3527 | " set_ftrace_pid\t- Write pid(s) to only function trace those pids (function)\n" | |
3528 | #endif | |
3529 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER | |
3530 | " set_graph_function\t- Trace the nested calls of a function (function_graph)\n" | |
3531 | " max_graph_depth\t- Trace a limited depth of nested calls (0 is unlimited)\n" | |
3532 | #endif | |
3533 | #ifdef CONFIG_TRACER_SNAPSHOT | |
3534 | "\n snapshot\t\t- Like 'trace' but shows the content of the static snapshot buffer\n" | |
3535 | "\t\t\t Read the contents for more information\n" | |
3536 | #endif | |
991821c8 | 3537 | #ifdef CONFIG_STACK_TRACER |
22f45649 SRRH |
3538 | " stack_trace\t\t- Shows the max stack trace when active\n" |
3539 | " stack_max_size\t- Shows current max stack size that was traced\n" | |
3540 | "\t\t\t Write into this file to reset the max size (trigger a new trace)\n" | |
3541 | #ifdef CONFIG_DYNAMIC_FTRACE | |
3542 | " stack_trace_filter\t- Like set_ftrace_filter but limits what stack_trace traces\n" | |
3543 | #endif | |
991821c8 | 3544 | #endif /* CONFIG_STACK_TRACER */ |
7bd2f24c IM |
3545 | ; |
3546 | ||
3547 | static ssize_t | |
3548 | tracing_readme_read(struct file *filp, char __user *ubuf, | |
3549 | size_t cnt, loff_t *ppos) | |
3550 | { | |
3551 | return simple_read_from_buffer(ubuf, cnt, ppos, | |
3552 | readme_msg, strlen(readme_msg)); | |
3553 | } | |
3554 | ||
5e2336a0 | 3555 | static const struct file_operations tracing_readme_fops = { |
c7078de1 IM |
3556 | .open = tracing_open_generic, |
3557 | .read = tracing_readme_read, | |
b444786f | 3558 | .llseek = generic_file_llseek, |
7bd2f24c IM |
3559 | }; |
3560 | ||
69abe6a5 AP |
3561 | static ssize_t |
3562 | tracing_saved_cmdlines_read(struct file *file, char __user *ubuf, | |
3563 | size_t cnt, loff_t *ppos) | |
3564 | { | |
3565 | char *buf_comm; | |
3566 | char *file_buf; | |
3567 | char *buf; | |
3568 | int len = 0; | |
3569 | int pid; | |
3570 | int i; | |
3571 | ||
3572 | file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL); | |
3573 | if (!file_buf) | |
3574 | return -ENOMEM; | |
3575 | ||
3576 | buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL); | |
3577 | if (!buf_comm) { | |
3578 | kfree(file_buf); | |
3579 | return -ENOMEM; | |
3580 | } | |
3581 | ||
3582 | buf = file_buf; | |
3583 | ||
3584 | for (i = 0; i < SAVED_CMDLINES; i++) { | |
3585 | int r; | |
3586 | ||
3587 | pid = map_cmdline_to_pid[i]; | |
3588 | if (pid == -1 || pid == NO_CMDLINE_MAP) | |
3589 | continue; | |
3590 | ||
3591 | trace_find_cmdline(pid, buf_comm); | |
3592 | r = sprintf(buf, "%d %s\n", pid, buf_comm); | |
3593 | buf += r; | |
3594 | len += r; | |
3595 | } | |
3596 | ||
3597 | len = simple_read_from_buffer(ubuf, cnt, ppos, | |
3598 | file_buf, len); | |
3599 | ||
3600 | kfree(file_buf); | |
3601 | kfree(buf_comm); | |
3602 | ||
3603 | return len; | |
3604 | } | |
3605 | ||
3606 | static const struct file_operations tracing_saved_cmdlines_fops = { | |
3607 | .open = tracing_open_generic, | |
3608 | .read = tracing_saved_cmdlines_read, | |
b444786f | 3609 | .llseek = generic_file_llseek, |
69abe6a5 AP |
3610 | }; |
3611 | ||
bc0c38d1 SR |
3612 | static ssize_t |
3613 | tracing_set_trace_read(struct file *filp, char __user *ubuf, | |
3614 | size_t cnt, loff_t *ppos) | |
3615 | { | |
2b6080f2 | 3616 | struct trace_array *tr = filp->private_data; |
ee6c2c1b | 3617 | char buf[MAX_TRACER_SIZE+2]; |
bc0c38d1 SR |
3618 | int r; |
3619 | ||
3620 | mutex_lock(&trace_types_lock); | |
2b6080f2 | 3621 | r = sprintf(buf, "%s\n", tr->current_trace->name); |
bc0c38d1 SR |
3622 | mutex_unlock(&trace_types_lock); |
3623 | ||
4bf39a94 | 3624 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
bc0c38d1 SR |
3625 | } |
3626 | ||
b6f11df2 ACM |
3627 | int tracer_init(struct tracer *t, struct trace_array *tr) |
3628 | { | |
12883efb | 3629 | tracing_reset_online_cpus(&tr->trace_buffer); |
b6f11df2 ACM |
3630 | return t->init(tr); |
3631 | } | |
3632 | ||
12883efb | 3633 | static void set_buffer_entries(struct trace_buffer *buf, unsigned long val) |
438ced17 VN |
3634 | { |
3635 | int cpu; | |
737223fb | 3636 | |
438ced17 | 3637 | for_each_tracing_cpu(cpu) |
12883efb | 3638 | per_cpu_ptr(buf->data, cpu)->entries = val; |
438ced17 VN |
3639 | } |
3640 | ||
12883efb | 3641 | #ifdef CONFIG_TRACER_MAX_TRACE |
d60da506 | 3642 | /* resize @tr's buffer to the size of @size_tr's entries */ |
12883efb SRRH |
3643 | static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf, |
3644 | struct trace_buffer *size_buf, int cpu_id) | |
d60da506 HT |
3645 | { |
3646 | int cpu, ret = 0; | |
3647 | ||
3648 | if (cpu_id == RING_BUFFER_ALL_CPUS) { | |
3649 | for_each_tracing_cpu(cpu) { | |
12883efb SRRH |
3650 | ret = ring_buffer_resize(trace_buf->buffer, |
3651 | per_cpu_ptr(size_buf->data, cpu)->entries, cpu); | |
d60da506 HT |
3652 | if (ret < 0) |
3653 | break; | |
12883efb SRRH |
3654 | per_cpu_ptr(trace_buf->data, cpu)->entries = |
3655 | per_cpu_ptr(size_buf->data, cpu)->entries; | |
d60da506 HT |
3656 | } |
3657 | } else { | |
12883efb SRRH |
3658 | ret = ring_buffer_resize(trace_buf->buffer, |
3659 | per_cpu_ptr(size_buf->data, cpu_id)->entries, cpu_id); | |
d60da506 | 3660 | if (ret == 0) |
12883efb SRRH |
3661 | per_cpu_ptr(trace_buf->data, cpu_id)->entries = |
3662 | per_cpu_ptr(size_buf->data, cpu_id)->entries; | |
d60da506 HT |
3663 | } |
3664 | ||
3665 | return ret; | |
3666 | } | |
12883efb | 3667 | #endif /* CONFIG_TRACER_MAX_TRACE */ |
d60da506 | 3668 | |
2b6080f2 SR |
3669 | static int __tracing_resize_ring_buffer(struct trace_array *tr, |
3670 | unsigned long size, int cpu) | |
73c5162a SR |
3671 | { |
3672 | int ret; | |
3673 | ||
3674 | /* | |
3675 | * If kernel or user changes the size of the ring buffer | |
a123c52b SR |
3676 | * we use the size that was given, and we can forget about |
3677 | * expanding it later. | |
73c5162a | 3678 | */ |
55034cd6 | 3679 | ring_buffer_expanded = true; |
73c5162a | 3680 | |
b382ede6 | 3681 | /* May be called before buffers are initialized */ |
12883efb | 3682 | if (!tr->trace_buffer.buffer) |
b382ede6 SR |
3683 | return 0; |
3684 | ||
12883efb | 3685 | ret = ring_buffer_resize(tr->trace_buffer.buffer, size, cpu); |
73c5162a SR |
3686 | if (ret < 0) |
3687 | return ret; | |
3688 | ||
12883efb | 3689 | #ifdef CONFIG_TRACER_MAX_TRACE |
2b6080f2 SR |
3690 | if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL) || |
3691 | !tr->current_trace->use_max_tr) | |
ef710e10 KM |
3692 | goto out; |
3693 | ||
12883efb | 3694 | ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu); |
73c5162a | 3695 | if (ret < 0) { |
12883efb SRRH |
3696 | int r = resize_buffer_duplicate_size(&tr->trace_buffer, |
3697 | &tr->trace_buffer, cpu); | |
73c5162a | 3698 | if (r < 0) { |
a123c52b SR |
3699 | /* |
3700 | * AARGH! We are left with different | |
3701 | * size max buffer!!!! | |
3702 | * The max buffer is our "snapshot" buffer. | |
3703 | * When a tracer needs a snapshot (one of the | |
3704 | * latency tracers), it swaps the max buffer | |
3705 | * with the saved snap shot. We succeeded to | |
3706 | * update the size of the main buffer, but failed to | |
3707 | * update the size of the max buffer. But when we tried | |
3708 | * to reset the main buffer to the original size, we | |
3709 | * failed there too. This is very unlikely to | |
3710 | * happen, but if it does, warn and kill all | |
3711 | * tracing. | |
3712 | */ | |
73c5162a SR |
3713 | WARN_ON(1); |
3714 | tracing_disabled = 1; | |
3715 | } | |
3716 | return ret; | |
3717 | } | |
3718 | ||
438ced17 | 3719 | if (cpu == RING_BUFFER_ALL_CPUS) |
12883efb | 3720 | set_buffer_entries(&tr->max_buffer, size); |
438ced17 | 3721 | else |
12883efb | 3722 | per_cpu_ptr(tr->max_buffer.data, cpu)->entries = size; |
438ced17 | 3723 | |
ef710e10 | 3724 | out: |
12883efb SRRH |
3725 | #endif /* CONFIG_TRACER_MAX_TRACE */ |
3726 | ||
438ced17 | 3727 | if (cpu == RING_BUFFER_ALL_CPUS) |
12883efb | 3728 | set_buffer_entries(&tr->trace_buffer, size); |
438ced17 | 3729 | else |
12883efb | 3730 | per_cpu_ptr(tr->trace_buffer.data, cpu)->entries = size; |
73c5162a SR |
3731 | |
3732 | return ret; | |
3733 | } | |
3734 | ||
2b6080f2 SR |
3735 | static ssize_t tracing_resize_ring_buffer(struct trace_array *tr, |
3736 | unsigned long size, int cpu_id) | |
4f271a2a | 3737 | { |
83f40318 | 3738 | int ret = size; |
4f271a2a VN |
3739 | |
3740 | mutex_lock(&trace_types_lock); | |
3741 | ||
438ced17 VN |
3742 | if (cpu_id != RING_BUFFER_ALL_CPUS) { |
3743 | /* make sure, this cpu is enabled in the mask */ | |
3744 | if (!cpumask_test_cpu(cpu_id, tracing_buffer_mask)) { | |
3745 | ret = -EINVAL; | |
3746 | goto out; | |
3747 | } | |
3748 | } | |
4f271a2a | 3749 | |
2b6080f2 | 3750 | ret = __tracing_resize_ring_buffer(tr, size, cpu_id); |
4f271a2a VN |
3751 | if (ret < 0) |
3752 | ret = -ENOMEM; | |
3753 | ||
438ced17 | 3754 | out: |
4f271a2a VN |
3755 | mutex_unlock(&trace_types_lock); |
3756 | ||
3757 | return ret; | |
3758 | } | |
3759 | ||
ef710e10 | 3760 | |
1852fcce SR |
3761 | /** |
3762 | * tracing_update_buffers - used by tracing facility to expand ring buffers | |
3763 | * | |
3764 | * To save on memory when the tracing is never used on a system with it | |
3765 | * configured in. The ring buffers are set to a minimum size. But once | |
3766 | * a user starts to use the tracing facility, then they need to grow | |
3767 | * to their default size. | |
3768 | * | |
3769 | * This function is to be called when a tracer is about to be used. | |
3770 | */ | |
3771 | int tracing_update_buffers(void) | |
3772 | { | |
3773 | int ret = 0; | |
3774 | ||
1027fcb2 | 3775 | mutex_lock(&trace_types_lock); |
1852fcce | 3776 | if (!ring_buffer_expanded) |
2b6080f2 | 3777 | ret = __tracing_resize_ring_buffer(&global_trace, trace_buf_size, |
438ced17 | 3778 | RING_BUFFER_ALL_CPUS); |
1027fcb2 | 3779 | mutex_unlock(&trace_types_lock); |
1852fcce SR |
3780 | |
3781 | return ret; | |
3782 | } | |
3783 | ||
577b785f SR |
3784 | struct trace_option_dentry; |
3785 | ||
3786 | static struct trace_option_dentry * | |
2b6080f2 | 3787 | create_trace_option_files(struct trace_array *tr, struct tracer *tracer); |
577b785f SR |
3788 | |
3789 | static void | |
3790 | destroy_trace_option_files(struct trace_option_dentry *topts); | |
3791 | ||
b2821ae6 | 3792 | static int tracing_set_tracer(const char *buf) |
bc0c38d1 | 3793 | { |
577b785f | 3794 | static struct trace_option_dentry *topts; |
bc0c38d1 SR |
3795 | struct trace_array *tr = &global_trace; |
3796 | struct tracer *t; | |
12883efb | 3797 | #ifdef CONFIG_TRACER_MAX_TRACE |
34600f0e | 3798 | bool had_max_tr; |
12883efb | 3799 | #endif |
d9e54076 | 3800 | int ret = 0; |
bc0c38d1 | 3801 | |
1027fcb2 SR |
3802 | mutex_lock(&trace_types_lock); |
3803 | ||
73c5162a | 3804 | if (!ring_buffer_expanded) { |
2b6080f2 | 3805 | ret = __tracing_resize_ring_buffer(tr, trace_buf_size, |
438ced17 | 3806 | RING_BUFFER_ALL_CPUS); |
73c5162a | 3807 | if (ret < 0) |
59f586db | 3808 | goto out; |
73c5162a SR |
3809 | ret = 0; |
3810 | } | |
3811 | ||
bc0c38d1 SR |
3812 | for (t = trace_types; t; t = t->next) { |
3813 | if (strcmp(t->name, buf) == 0) | |
3814 | break; | |
3815 | } | |
c2931e05 FW |
3816 | if (!t) { |
3817 | ret = -EINVAL; | |
3818 | goto out; | |
3819 | } | |
2b6080f2 | 3820 | if (t == tr->current_trace) |
bc0c38d1 SR |
3821 | goto out; |
3822 | ||
9f029e83 | 3823 | trace_branch_disable(); |
613f04a0 | 3824 | |
2b6080f2 | 3825 | tr->current_trace->enabled = false; |
613f04a0 | 3826 | |
2b6080f2 SR |
3827 | if (tr->current_trace->reset) |
3828 | tr->current_trace->reset(tr); | |
34600f0e | 3829 | |
12883efb | 3830 | /* Current trace needs to be nop_trace before synchronize_sched */ |
2b6080f2 | 3831 | tr->current_trace = &nop_trace; |
34600f0e | 3832 | |
45ad21ca SRRH |
3833 | #ifdef CONFIG_TRACER_MAX_TRACE |
3834 | had_max_tr = tr->allocated_snapshot; | |
34600f0e SR |
3835 | |
3836 | if (had_max_tr && !t->use_max_tr) { | |
3837 | /* | |
3838 | * We need to make sure that the update_max_tr sees that | |
3839 | * current_trace changed to nop_trace to keep it from | |
3840 | * swapping the buffers after we resize it. | |
3841 | * The update_max_tr is called from interrupts disabled | |
3842 | * so a synchronized_sched() is sufficient. | |
3843 | */ | |
3844 | synchronize_sched(); | |
3209cff4 | 3845 | free_snapshot(tr); |
ef710e10 | 3846 | } |
12883efb | 3847 | #endif |
577b785f SR |
3848 | destroy_trace_option_files(topts); |
3849 | ||
2b6080f2 | 3850 | topts = create_trace_option_files(tr, t); |
12883efb SRRH |
3851 | |
3852 | #ifdef CONFIG_TRACER_MAX_TRACE | |
34600f0e | 3853 | if (t->use_max_tr && !had_max_tr) { |
3209cff4 | 3854 | ret = alloc_snapshot(tr); |
d60da506 HT |
3855 | if (ret < 0) |
3856 | goto out; | |
ef710e10 | 3857 | } |
12883efb | 3858 | #endif |
577b785f | 3859 | |
1c80025a | 3860 | if (t->init) { |
b6f11df2 | 3861 | ret = tracer_init(t, tr); |
1c80025a FW |
3862 | if (ret) |
3863 | goto out; | |
3864 | } | |
bc0c38d1 | 3865 | |
2b6080f2 SR |
3866 | tr->current_trace = t; |
3867 | tr->current_trace->enabled = true; | |
9f029e83 | 3868 | trace_branch_enable(tr); |
bc0c38d1 SR |
3869 | out: |
3870 | mutex_unlock(&trace_types_lock); | |
3871 | ||
d9e54076 PZ |
3872 | return ret; |
3873 | } | |
3874 | ||
3875 | static ssize_t | |
3876 | tracing_set_trace_write(struct file *filp, const char __user *ubuf, | |
3877 | size_t cnt, loff_t *ppos) | |
3878 | { | |
ee6c2c1b | 3879 | char buf[MAX_TRACER_SIZE+1]; |
d9e54076 PZ |
3880 | int i; |
3881 | size_t ret; | |
e6e7a65a FW |
3882 | int err; |
3883 | ||
3884 | ret = cnt; | |
d9e54076 | 3885 | |
ee6c2c1b LZ |
3886 | if (cnt > MAX_TRACER_SIZE) |
3887 | cnt = MAX_TRACER_SIZE; | |
d9e54076 PZ |
3888 | |
3889 | if (copy_from_user(&buf, ubuf, cnt)) | |
3890 | return -EFAULT; | |
3891 | ||
3892 | buf[cnt] = 0; | |
3893 | ||
3894 | /* strip ending whitespace. */ | |
3895 | for (i = cnt - 1; i > 0 && isspace(buf[i]); i--) | |
3896 | buf[i] = 0; | |
3897 | ||
e6e7a65a FW |
3898 | err = tracing_set_tracer(buf); |
3899 | if (err) | |
3900 | return err; | |
d9e54076 | 3901 | |
cf8517cf | 3902 | *ppos += ret; |
bc0c38d1 | 3903 | |
c2931e05 | 3904 | return ret; |
bc0c38d1 SR |
3905 | } |
3906 | ||
3907 | static ssize_t | |
3908 | tracing_max_lat_read(struct file *filp, char __user *ubuf, | |
3909 | size_t cnt, loff_t *ppos) | |
3910 | { | |
3911 | unsigned long *ptr = filp->private_data; | |
3912 | char buf[64]; | |
3913 | int r; | |
3914 | ||
cffae437 | 3915 | r = snprintf(buf, sizeof(buf), "%ld\n", |
bc0c38d1 | 3916 | *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr)); |
cffae437 SR |
3917 | if (r > sizeof(buf)) |
3918 | r = sizeof(buf); | |
4bf39a94 | 3919 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
bc0c38d1 SR |
3920 | } |
3921 | ||
3922 | static ssize_t | |
3923 | tracing_max_lat_write(struct file *filp, const char __user *ubuf, | |
3924 | size_t cnt, loff_t *ppos) | |
3925 | { | |
5e39841c | 3926 | unsigned long *ptr = filp->private_data; |
5e39841c | 3927 | unsigned long val; |
c6caeeb1 | 3928 | int ret; |
bc0c38d1 | 3929 | |
22fe9b54 PH |
3930 | ret = kstrtoul_from_user(ubuf, cnt, 10, &val); |
3931 | if (ret) | |
c6caeeb1 | 3932 | return ret; |
bc0c38d1 SR |
3933 | |
3934 | *ptr = val * 1000; | |
3935 | ||
3936 | return cnt; | |
3937 | } | |
3938 | ||
b3806b43 SR |
3939 | static int tracing_open_pipe(struct inode *inode, struct file *filp) |
3940 | { | |
15544209 | 3941 | struct trace_array *tr = inode->i_private; |
b3806b43 | 3942 | struct trace_iterator *iter; |
b04cc6b1 | 3943 | int ret = 0; |
b3806b43 SR |
3944 | |
3945 | if (tracing_disabled) | |
3946 | return -ENODEV; | |
3947 | ||
7b85af63 SRRH |
3948 | if (trace_array_get(tr) < 0) |
3949 | return -ENODEV; | |
3950 | ||
b04cc6b1 FW |
3951 | mutex_lock(&trace_types_lock); |
3952 | ||
b3806b43 SR |
3953 | /* create a buffer to store the information to pass to userspace */ |
3954 | iter = kzalloc(sizeof(*iter), GFP_KERNEL); | |
b04cc6b1 FW |
3955 | if (!iter) { |
3956 | ret = -ENOMEM; | |
f77d09a3 | 3957 | __trace_array_put(tr); |
b04cc6b1 FW |
3958 | goto out; |
3959 | } | |
b3806b43 | 3960 | |
d7350c3f FW |
3961 | /* |
3962 | * We make a copy of the current tracer to avoid concurrent | |
3963 | * changes on it while we are reading. | |
3964 | */ | |
3965 | iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL); | |
3966 | if (!iter->trace) { | |
3967 | ret = -ENOMEM; | |
3968 | goto fail; | |
3969 | } | |
2b6080f2 | 3970 | *iter->trace = *tr->current_trace; |
d7350c3f | 3971 | |
4462344e | 3972 | if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) { |
b04cc6b1 | 3973 | ret = -ENOMEM; |
d7350c3f | 3974 | goto fail; |
4462344e RR |
3975 | } |
3976 | ||
a309720c | 3977 | /* trace pipe does not show start of buffer */ |
4462344e | 3978 | cpumask_setall(iter->started); |
a309720c | 3979 | |
112f38a7 SR |
3980 | if (trace_flags & TRACE_ITER_LATENCY_FMT) |
3981 | iter->iter_flags |= TRACE_FILE_LAT_FMT; | |
3982 | ||
8be0709f | 3983 | /* Output in nanoseconds only if we are using a clock in nanoseconds. */ |
58e8eedf | 3984 | if (trace_clocks[tr->clock_id].in_ns) |
8be0709f DS |
3985 | iter->iter_flags |= TRACE_FILE_TIME_IN_NS; |
3986 | ||
15544209 ON |
3987 | iter->tr = tr; |
3988 | iter->trace_buffer = &tr->trace_buffer; | |
3989 | iter->cpu_file = tracing_get_cpu(inode); | |
d7350c3f | 3990 | mutex_init(&iter->mutex); |
b3806b43 SR |
3991 | filp->private_data = iter; |
3992 | ||
107bad8b SR |
3993 | if (iter->trace->pipe_open) |
3994 | iter->trace->pipe_open(iter); | |
107bad8b | 3995 | |
b444786f | 3996 | nonseekable_open(inode, filp); |
b04cc6b1 FW |
3997 | out: |
3998 | mutex_unlock(&trace_types_lock); | |
3999 | return ret; | |
d7350c3f FW |
4000 | |
4001 | fail: | |
4002 | kfree(iter->trace); | |
4003 | kfree(iter); | |
7b85af63 | 4004 | __trace_array_put(tr); |
d7350c3f FW |
4005 | mutex_unlock(&trace_types_lock); |
4006 | return ret; | |
b3806b43 SR |
4007 | } |
4008 | ||
4009 | static int tracing_release_pipe(struct inode *inode, struct file *file) | |
4010 | { | |
4011 | struct trace_iterator *iter = file->private_data; | |
15544209 | 4012 | struct trace_array *tr = inode->i_private; |
b3806b43 | 4013 | |
b04cc6b1 FW |
4014 | mutex_lock(&trace_types_lock); |
4015 | ||
29bf4a5e | 4016 | if (iter->trace->pipe_close) |
c521efd1 SR |
4017 | iter->trace->pipe_close(iter); |
4018 | ||
b04cc6b1 FW |
4019 | mutex_unlock(&trace_types_lock); |
4020 | ||
4462344e | 4021 | free_cpumask_var(iter->started); |
d7350c3f FW |
4022 | mutex_destroy(&iter->mutex); |
4023 | kfree(iter->trace); | |
b3806b43 | 4024 | kfree(iter); |
b3806b43 | 4025 | |
7b85af63 SRRH |
4026 | trace_array_put(tr); |
4027 | ||
b3806b43 SR |
4028 | return 0; |
4029 | } | |
4030 | ||
2a2cc8f7 | 4031 | static unsigned int |
cc60cdc9 | 4032 | trace_poll(struct trace_iterator *iter, struct file *filp, poll_table *poll_table) |
2a2cc8f7 | 4033 | { |
15693458 SRRH |
4034 | /* Iterators are static, they should be filled or empty */ |
4035 | if (trace_buffer_iter(iter, iter->cpu_file)) | |
4036 | return POLLIN | POLLRDNORM; | |
2a2cc8f7 | 4037 | |
15693458 | 4038 | if (trace_flags & TRACE_ITER_BLOCK) |
2a2cc8f7 SSP |
4039 | /* |
4040 | * Always select as readable when in blocking mode | |
4041 | */ | |
4042 | return POLLIN | POLLRDNORM; | |
15693458 | 4043 | else |
12883efb | 4044 | return ring_buffer_poll_wait(iter->trace_buffer->buffer, iter->cpu_file, |
15693458 | 4045 | filp, poll_table); |
2a2cc8f7 | 4046 | } |
2a2cc8f7 | 4047 | |
cc60cdc9 SR |
4048 | static unsigned int |
4049 | tracing_poll_pipe(struct file *filp, poll_table *poll_table) | |
4050 | { | |
4051 | struct trace_iterator *iter = filp->private_data; | |
4052 | ||
4053 | return trace_poll(iter, filp, poll_table); | |
2a2cc8f7 SSP |
4054 | } |
4055 | ||
6eaaa5d5 FW |
4056 | /* |
4057 | * This is a make-shift waitqueue. | |
4058 | * A tracer might use this callback on some rare cases: | |
4059 | * | |
4060 | * 1) the current tracer might hold the runqueue lock when it wakes up | |
4061 | * a reader, hence a deadlock (sched, function, and function graph tracers) | |
4062 | * 2) the function tracers, trace all functions, we don't want | |
4063 | * the overhead of calling wake_up and friends | |
4064 | * (and tracing them too) | |
4065 | * | |
4066 | * Anyway, this is really very primitive wakeup. | |
4067 | */ | |
4068 | void poll_wait_pipe(struct trace_iterator *iter) | |
4069 | { | |
4070 | set_current_state(TASK_INTERRUPTIBLE); | |
4071 | /* sleep for 100 msecs, and try again. */ | |
4072 | schedule_timeout(HZ / 10); | |
4073 | } | |
4074 | ||
ff98781b EGM |
4075 | /* Must be called with trace_types_lock mutex held. */ |
4076 | static int tracing_wait_pipe(struct file *filp) | |
b3806b43 SR |
4077 | { |
4078 | struct trace_iterator *iter = filp->private_data; | |
b3806b43 | 4079 | |
b3806b43 | 4080 | while (trace_empty(iter)) { |
2dc8f095 | 4081 | |
107bad8b | 4082 | if ((filp->f_flags & O_NONBLOCK)) { |
ff98781b | 4083 | return -EAGAIN; |
107bad8b | 4084 | } |
2dc8f095 | 4085 | |
d7350c3f | 4086 | mutex_unlock(&iter->mutex); |
107bad8b | 4087 | |
6eaaa5d5 | 4088 | iter->trace->wait_pipe(iter); |
b3806b43 | 4089 | |
d7350c3f | 4090 | mutex_lock(&iter->mutex); |
107bad8b | 4091 | |
6eaaa5d5 | 4092 | if (signal_pending(current)) |
ff98781b | 4093 | return -EINTR; |
b3806b43 SR |
4094 | |
4095 | /* | |
250bfd3d | 4096 | * We block until we read something and tracing is disabled. |
b3806b43 SR |
4097 | * We still block if tracing is disabled, but we have never |
4098 | * read anything. This allows a user to cat this file, and | |
4099 | * then enable tracing. But after we have read something, | |
4100 | * we give an EOF when tracing is again disabled. | |
4101 | * | |
4102 | * iter->pos will be 0 if we haven't read anything. | |
4103 | */ | |
10246fa3 | 4104 | if (!tracing_is_on() && iter->pos) |
b3806b43 | 4105 | break; |
b3806b43 SR |
4106 | } |
4107 | ||
ff98781b EGM |
4108 | return 1; |
4109 | } | |
4110 | ||
4111 | /* | |
4112 | * Consumer reader. | |
4113 | */ | |
4114 | static ssize_t | |
4115 | tracing_read_pipe(struct file *filp, char __user *ubuf, | |
4116 | size_t cnt, loff_t *ppos) | |
4117 | { | |
4118 | struct trace_iterator *iter = filp->private_data; | |
2b6080f2 | 4119 | struct trace_array *tr = iter->tr; |
ff98781b EGM |
4120 | ssize_t sret; |
4121 | ||
4122 | /* return any leftover data */ | |
4123 | sret = trace_seq_to_user(&iter->seq, ubuf, cnt); | |
4124 | if (sret != -EBUSY) | |
4125 | return sret; | |
4126 | ||
f9520750 | 4127 | trace_seq_init(&iter->seq); |
ff98781b | 4128 | |
d7350c3f | 4129 | /* copy the tracer to avoid using a global lock all around */ |
ff98781b | 4130 | mutex_lock(&trace_types_lock); |
2b6080f2 SR |
4131 | if (unlikely(iter->trace->name != tr->current_trace->name)) |
4132 | *iter->trace = *tr->current_trace; | |
d7350c3f FW |
4133 | mutex_unlock(&trace_types_lock); |
4134 | ||
4135 | /* | |
4136 | * Avoid more than one consumer on a single file descriptor | |
4137 | * This is just a matter of traces coherency, the ring buffer itself | |
4138 | * is protected. | |
4139 | */ | |
4140 | mutex_lock(&iter->mutex); | |
ff98781b EGM |
4141 | if (iter->trace->read) { |
4142 | sret = iter->trace->read(iter, filp, ubuf, cnt, ppos); | |
4143 | if (sret) | |
4144 | goto out; | |
4145 | } | |
4146 | ||
4147 | waitagain: | |
4148 | sret = tracing_wait_pipe(filp); | |
4149 | if (sret <= 0) | |
4150 | goto out; | |
4151 | ||
b3806b43 | 4152 | /* stop when tracing is finished */ |
ff98781b EGM |
4153 | if (trace_empty(iter)) { |
4154 | sret = 0; | |
107bad8b | 4155 | goto out; |
ff98781b | 4156 | } |
b3806b43 SR |
4157 | |
4158 | if (cnt >= PAGE_SIZE) | |
4159 | cnt = PAGE_SIZE - 1; | |
4160 | ||
53d0aa77 | 4161 | /* reset all but tr, trace, and overruns */ |
53d0aa77 SR |
4162 | memset(&iter->seq, 0, |
4163 | sizeof(struct trace_iterator) - | |
4164 | offsetof(struct trace_iterator, seq)); | |
ed5467da | 4165 | cpumask_clear(iter->started); |
4823ed7e | 4166 | iter->pos = -1; |
b3806b43 | 4167 | |
4f535968 | 4168 | trace_event_read_lock(); |
7e53bd42 | 4169 | trace_access_lock(iter->cpu_file); |
955b61e5 | 4170 | while (trace_find_next_entry_inc(iter) != NULL) { |
2c4f035f | 4171 | enum print_line_t ret; |
088b1e42 SR |
4172 | int len = iter->seq.len; |
4173 | ||
f9896bf3 | 4174 | ret = print_trace_line(iter); |
2c4f035f | 4175 | if (ret == TRACE_TYPE_PARTIAL_LINE) { |
088b1e42 SR |
4176 | /* don't print partial lines */ |
4177 | iter->seq.len = len; | |
b3806b43 | 4178 | break; |
088b1e42 | 4179 | } |
b91facc3 FW |
4180 | if (ret != TRACE_TYPE_NO_CONSUME) |
4181 | trace_consume(iter); | |
b3806b43 SR |
4182 | |
4183 | if (iter->seq.len >= cnt) | |
4184 | break; | |
ee5e51f5 JO |
4185 | |
4186 | /* | |
4187 | * Setting the full flag means we reached the trace_seq buffer | |
4188 | * size and we should leave by partial output condition above. | |
4189 | * One of the trace_seq_* functions is not used properly. | |
4190 | */ | |
4191 | WARN_ONCE(iter->seq.full, "full flag set for trace type %d", | |
4192 | iter->ent->type); | |
b3806b43 | 4193 | } |
7e53bd42 | 4194 | trace_access_unlock(iter->cpu_file); |
4f535968 | 4195 | trace_event_read_unlock(); |
b3806b43 | 4196 | |
b3806b43 | 4197 | /* Now copy what we have to the user */ |
6c6c2796 PP |
4198 | sret = trace_seq_to_user(&iter->seq, ubuf, cnt); |
4199 | if (iter->seq.readpos >= iter->seq.len) | |
f9520750 | 4200 | trace_seq_init(&iter->seq); |
9ff4b974 PP |
4201 | |
4202 | /* | |
25985edc | 4203 | * If there was nothing to send to user, in spite of consuming trace |
9ff4b974 PP |
4204 | * entries, go back to wait for more entries. |
4205 | */ | |
6c6c2796 | 4206 | if (sret == -EBUSY) |
9ff4b974 | 4207 | goto waitagain; |
b3806b43 | 4208 | |
107bad8b | 4209 | out: |
d7350c3f | 4210 | mutex_unlock(&iter->mutex); |
107bad8b | 4211 | |
6c6c2796 | 4212 | return sret; |
b3806b43 SR |
4213 | } |
4214 | ||
3c56819b EGM |
4215 | static void tracing_pipe_buf_release(struct pipe_inode_info *pipe, |
4216 | struct pipe_buffer *buf) | |
4217 | { | |
4218 | __free_page(buf->page); | |
4219 | } | |
4220 | ||
4221 | static void tracing_spd_release_pipe(struct splice_pipe_desc *spd, | |
4222 | unsigned int idx) | |
4223 | { | |
4224 | __free_page(spd->pages[idx]); | |
4225 | } | |
4226 | ||
28dfef8f | 4227 | static const struct pipe_buf_operations tracing_pipe_buf_ops = { |
34cd4998 SR |
4228 | .can_merge = 0, |
4229 | .map = generic_pipe_buf_map, | |
4230 | .unmap = generic_pipe_buf_unmap, | |
4231 | .confirm = generic_pipe_buf_confirm, | |
4232 | .release = tracing_pipe_buf_release, | |
4233 | .steal = generic_pipe_buf_steal, | |
4234 | .get = generic_pipe_buf_get, | |
3c56819b EGM |
4235 | }; |
4236 | ||
34cd4998 | 4237 | static size_t |
fa7c7f6e | 4238 | tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter) |
34cd4998 SR |
4239 | { |
4240 | size_t count; | |
4241 | int ret; | |
4242 | ||
4243 | /* Seq buffer is page-sized, exactly what we need. */ | |
4244 | for (;;) { | |
4245 | count = iter->seq.len; | |
4246 | ret = print_trace_line(iter); | |
4247 | count = iter->seq.len - count; | |
4248 | if (rem < count) { | |
4249 | rem = 0; | |
4250 | iter->seq.len -= count; | |
4251 | break; | |
4252 | } | |
4253 | if (ret == TRACE_TYPE_PARTIAL_LINE) { | |
4254 | iter->seq.len -= count; | |
4255 | break; | |
4256 | } | |
4257 | ||
74e7ff8c LJ |
4258 | if (ret != TRACE_TYPE_NO_CONSUME) |
4259 | trace_consume(iter); | |
34cd4998 | 4260 | rem -= count; |
955b61e5 | 4261 | if (!trace_find_next_entry_inc(iter)) { |
34cd4998 SR |
4262 | rem = 0; |
4263 | iter->ent = NULL; | |
4264 | break; | |
4265 | } | |
4266 | } | |
4267 | ||
4268 | return rem; | |
4269 | } | |
4270 | ||
3c56819b EGM |
4271 | static ssize_t tracing_splice_read_pipe(struct file *filp, |
4272 | loff_t *ppos, | |
4273 | struct pipe_inode_info *pipe, | |
4274 | size_t len, | |
4275 | unsigned int flags) | |
4276 | { | |
35f3d14d JA |
4277 | struct page *pages_def[PIPE_DEF_BUFFERS]; |
4278 | struct partial_page partial_def[PIPE_DEF_BUFFERS]; | |
3c56819b EGM |
4279 | struct trace_iterator *iter = filp->private_data; |
4280 | struct splice_pipe_desc spd = { | |
35f3d14d JA |
4281 | .pages = pages_def, |
4282 | .partial = partial_def, | |
34cd4998 | 4283 | .nr_pages = 0, /* This gets updated below. */ |
047fe360 | 4284 | .nr_pages_max = PIPE_DEF_BUFFERS, |
34cd4998 SR |
4285 | .flags = flags, |
4286 | .ops = &tracing_pipe_buf_ops, | |
4287 | .spd_release = tracing_spd_release_pipe, | |
3c56819b | 4288 | }; |
2b6080f2 | 4289 | struct trace_array *tr = iter->tr; |
3c56819b | 4290 | ssize_t ret; |
34cd4998 | 4291 | size_t rem; |
3c56819b EGM |
4292 | unsigned int i; |
4293 | ||
35f3d14d JA |
4294 | if (splice_grow_spd(pipe, &spd)) |
4295 | return -ENOMEM; | |
4296 | ||
d7350c3f | 4297 | /* copy the tracer to avoid using a global lock all around */ |
3c56819b | 4298 | mutex_lock(&trace_types_lock); |
2b6080f2 SR |
4299 | if (unlikely(iter->trace->name != tr->current_trace->name)) |
4300 | *iter->trace = *tr->current_trace; | |
d7350c3f FW |
4301 | mutex_unlock(&trace_types_lock); |
4302 | ||
4303 | mutex_lock(&iter->mutex); | |
3c56819b EGM |
4304 | |
4305 | if (iter->trace->splice_read) { | |
4306 | ret = iter->trace->splice_read(iter, filp, | |
4307 | ppos, pipe, len, flags); | |
4308 | if (ret) | |
34cd4998 | 4309 | goto out_err; |
3c56819b EGM |
4310 | } |
4311 | ||
4312 | ret = tracing_wait_pipe(filp); | |
4313 | if (ret <= 0) | |
34cd4998 | 4314 | goto out_err; |
3c56819b | 4315 | |
955b61e5 | 4316 | if (!iter->ent && !trace_find_next_entry_inc(iter)) { |
3c56819b | 4317 | ret = -EFAULT; |
34cd4998 | 4318 | goto out_err; |
3c56819b EGM |
4319 | } |
4320 | ||
4f535968 | 4321 | trace_event_read_lock(); |
7e53bd42 | 4322 | trace_access_lock(iter->cpu_file); |
4f535968 | 4323 | |
3c56819b | 4324 | /* Fill as many pages as possible. */ |
35f3d14d JA |
4325 | for (i = 0, rem = len; i < pipe->buffers && rem; i++) { |
4326 | spd.pages[i] = alloc_page(GFP_KERNEL); | |
4327 | if (!spd.pages[i]) | |
34cd4998 | 4328 | break; |
3c56819b | 4329 | |
fa7c7f6e | 4330 | rem = tracing_fill_pipe_page(rem, iter); |
3c56819b EGM |
4331 | |
4332 | /* Copy the data into the page, so we can start over. */ | |
4333 | ret = trace_seq_to_buffer(&iter->seq, | |
35f3d14d | 4334 | page_address(spd.pages[i]), |
3c56819b EGM |
4335 | iter->seq.len); |
4336 | if (ret < 0) { | |
35f3d14d | 4337 | __free_page(spd.pages[i]); |
3c56819b EGM |
4338 | break; |
4339 | } | |
35f3d14d JA |
4340 | spd.partial[i].offset = 0; |
4341 | spd.partial[i].len = iter->seq.len; | |
3c56819b | 4342 | |
f9520750 | 4343 | trace_seq_init(&iter->seq); |
3c56819b EGM |
4344 | } |
4345 | ||
7e53bd42 | 4346 | trace_access_unlock(iter->cpu_file); |
4f535968 | 4347 | trace_event_read_unlock(); |
d7350c3f | 4348 | mutex_unlock(&iter->mutex); |
3c56819b EGM |
4349 | |
4350 | spd.nr_pages = i; | |
4351 | ||
35f3d14d JA |
4352 | ret = splice_to_pipe(pipe, &spd); |
4353 | out: | |
047fe360 | 4354 | splice_shrink_spd(&spd); |
35f3d14d | 4355 | return ret; |
3c56819b | 4356 | |
34cd4998 | 4357 | out_err: |
d7350c3f | 4358 | mutex_unlock(&iter->mutex); |
35f3d14d | 4359 | goto out; |
3c56819b EGM |
4360 | } |
4361 | ||
a98a3c3f SR |
4362 | static ssize_t |
4363 | tracing_entries_read(struct file *filp, char __user *ubuf, | |
4364 | size_t cnt, loff_t *ppos) | |
4365 | { | |
0bc392ee ON |
4366 | struct inode *inode = file_inode(filp); |
4367 | struct trace_array *tr = inode->i_private; | |
4368 | int cpu = tracing_get_cpu(inode); | |
438ced17 VN |
4369 | char buf[64]; |
4370 | int r = 0; | |
4371 | ssize_t ret; | |
a98a3c3f | 4372 | |
db526ca3 | 4373 | mutex_lock(&trace_types_lock); |
438ced17 | 4374 | |
0bc392ee | 4375 | if (cpu == RING_BUFFER_ALL_CPUS) { |
438ced17 VN |
4376 | int cpu, buf_size_same; |
4377 | unsigned long size; | |
4378 | ||
4379 | size = 0; | |
4380 | buf_size_same = 1; | |
4381 | /* check if all cpu sizes are same */ | |
4382 | for_each_tracing_cpu(cpu) { | |
4383 | /* fill in the size from first enabled cpu */ | |
4384 | if (size == 0) | |
12883efb SRRH |
4385 | size = per_cpu_ptr(tr->trace_buffer.data, cpu)->entries; |
4386 | if (size != per_cpu_ptr(tr->trace_buffer.data, cpu)->entries) { | |
438ced17 VN |
4387 | buf_size_same = 0; |
4388 | break; | |
4389 | } | |
4390 | } | |
4391 | ||
4392 | if (buf_size_same) { | |
4393 | if (!ring_buffer_expanded) | |
4394 | r = sprintf(buf, "%lu (expanded: %lu)\n", | |
4395 | size >> 10, | |
4396 | trace_buf_size >> 10); | |
4397 | else | |
4398 | r = sprintf(buf, "%lu\n", size >> 10); | |
4399 | } else | |
4400 | r = sprintf(buf, "X\n"); | |
4401 | } else | |
0bc392ee | 4402 | r = sprintf(buf, "%lu\n", per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10); |
438ced17 | 4403 | |
db526ca3 SR |
4404 | mutex_unlock(&trace_types_lock); |
4405 | ||
438ced17 VN |
4406 | ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
4407 | return ret; | |
a98a3c3f SR |
4408 | } |
4409 | ||
4410 | static ssize_t | |
4411 | tracing_entries_write(struct file *filp, const char __user *ubuf, | |
4412 | size_t cnt, loff_t *ppos) | |
4413 | { | |
0bc392ee ON |
4414 | struct inode *inode = file_inode(filp); |
4415 | struct trace_array *tr = inode->i_private; | |
a98a3c3f | 4416 | unsigned long val; |
4f271a2a | 4417 | int ret; |
a98a3c3f | 4418 | |
22fe9b54 PH |
4419 | ret = kstrtoul_from_user(ubuf, cnt, 10, &val); |
4420 | if (ret) | |
c6caeeb1 | 4421 | return ret; |
a98a3c3f SR |
4422 | |
4423 | /* must have at least 1 entry */ | |
4424 | if (!val) | |
4425 | return -EINVAL; | |
4426 | ||
1696b2b0 SR |
4427 | /* value is in KB */ |
4428 | val <<= 10; | |
0bc392ee | 4429 | ret = tracing_resize_ring_buffer(tr, val, tracing_get_cpu(inode)); |
4f271a2a VN |
4430 | if (ret < 0) |
4431 | return ret; | |
a98a3c3f | 4432 | |
cf8517cf | 4433 | *ppos += cnt; |
a98a3c3f | 4434 | |
4f271a2a VN |
4435 | return cnt; |
4436 | } | |
bf5e6519 | 4437 | |
f81ab074 VN |
4438 | static ssize_t |
4439 | tracing_total_entries_read(struct file *filp, char __user *ubuf, | |
4440 | size_t cnt, loff_t *ppos) | |
4441 | { | |
4442 | struct trace_array *tr = filp->private_data; | |
4443 | char buf[64]; | |
4444 | int r, cpu; | |
4445 | unsigned long size = 0, expanded_size = 0; | |
4446 | ||
4447 | mutex_lock(&trace_types_lock); | |
4448 | for_each_tracing_cpu(cpu) { | |
12883efb | 4449 | size += per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10; |
f81ab074 VN |
4450 | if (!ring_buffer_expanded) |
4451 | expanded_size += trace_buf_size >> 10; | |
4452 | } | |
4453 | if (ring_buffer_expanded) | |
4454 | r = sprintf(buf, "%lu\n", size); | |
4455 | else | |
4456 | r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size); | |
4457 | mutex_unlock(&trace_types_lock); | |
4458 | ||
4459 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); | |
4460 | } | |
4461 | ||
4f271a2a VN |
4462 | static ssize_t |
4463 | tracing_free_buffer_write(struct file *filp, const char __user *ubuf, | |
4464 | size_t cnt, loff_t *ppos) | |
4465 | { | |
4466 | /* | |
4467 | * There is no need to read what the user has written, this function | |
4468 | * is just to make sure that there is no error when "echo" is used | |
4469 | */ | |
4470 | ||
4471 | *ppos += cnt; | |
a98a3c3f SR |
4472 | |
4473 | return cnt; | |
4474 | } | |
4475 | ||
4f271a2a VN |
4476 | static int |
4477 | tracing_free_buffer_release(struct inode *inode, struct file *filp) | |
4478 | { | |
2b6080f2 SR |
4479 | struct trace_array *tr = inode->i_private; |
4480 | ||
cf30cf67 SR |
4481 | /* disable tracing ? */ |
4482 | if (trace_flags & TRACE_ITER_STOP_ON_FREE) | |
711e1243 | 4483 | tracer_tracing_off(tr); |
4f271a2a | 4484 | /* resize the ring buffer to 0 */ |
2b6080f2 | 4485 | tracing_resize_ring_buffer(tr, 0, RING_BUFFER_ALL_CPUS); |
4f271a2a | 4486 | |
7b85af63 SRRH |
4487 | trace_array_put(tr); |
4488 | ||
4f271a2a VN |
4489 | return 0; |
4490 | } | |
4491 | ||
5bf9a1ee PP |
4492 | static ssize_t |
4493 | tracing_mark_write(struct file *filp, const char __user *ubuf, | |
4494 | size_t cnt, loff_t *fpos) | |
4495 | { | |
d696b58c | 4496 | unsigned long addr = (unsigned long)ubuf; |
2d71619c | 4497 | struct trace_array *tr = filp->private_data; |
d696b58c SR |
4498 | struct ring_buffer_event *event; |
4499 | struct ring_buffer *buffer; | |
4500 | struct print_entry *entry; | |
4501 | unsigned long irq_flags; | |
4502 | struct page *pages[2]; | |
6edb2a8a | 4503 | void *map_page[2]; |
d696b58c SR |
4504 | int nr_pages = 1; |
4505 | ssize_t written; | |
d696b58c SR |
4506 | int offset; |
4507 | int size; | |
4508 | int len; | |
4509 | int ret; | |
6edb2a8a | 4510 | int i; |
5bf9a1ee | 4511 | |
c76f0694 | 4512 | if (tracing_disabled) |
5bf9a1ee PP |
4513 | return -EINVAL; |
4514 | ||
5224c3a3 MSB |
4515 | if (!(trace_flags & TRACE_ITER_MARKERS)) |
4516 | return -EINVAL; | |
4517 | ||
5bf9a1ee PP |
4518 | if (cnt > TRACE_BUF_SIZE) |
4519 | cnt = TRACE_BUF_SIZE; | |
4520 | ||
d696b58c SR |
4521 | /* |
4522 | * Userspace is injecting traces into the kernel trace buffer. | |
4523 | * We want to be as non intrusive as possible. | |
4524 | * To do so, we do not want to allocate any special buffers | |
4525 | * or take any locks, but instead write the userspace data | |
4526 | * straight into the ring buffer. | |
4527 | * | |
4528 | * First we need to pin the userspace buffer into memory, | |
4529 | * which, most likely it is, because it just referenced it. | |
4530 | * But there's no guarantee that it is. By using get_user_pages_fast() | |
4531 | * and kmap_atomic/kunmap_atomic() we can get access to the | |
4532 | * pages directly. We then write the data directly into the | |
4533 | * ring buffer. | |
4534 | */ | |
4535 | BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE); | |
5bf9a1ee | 4536 | |
d696b58c SR |
4537 | /* check if we cross pages */ |
4538 | if ((addr & PAGE_MASK) != ((addr + cnt) & PAGE_MASK)) | |
4539 | nr_pages = 2; | |
4540 | ||
4541 | offset = addr & (PAGE_SIZE - 1); | |
4542 | addr &= PAGE_MASK; | |
4543 | ||
4544 | ret = get_user_pages_fast(addr, nr_pages, 0, pages); | |
4545 | if (ret < nr_pages) { | |
4546 | while (--ret >= 0) | |
4547 | put_page(pages[ret]); | |
4548 | written = -EFAULT; | |
4549 | goto out; | |
5bf9a1ee | 4550 | } |
d696b58c | 4551 | |
6edb2a8a SR |
4552 | for (i = 0; i < nr_pages; i++) |
4553 | map_page[i] = kmap_atomic(pages[i]); | |
d696b58c SR |
4554 | |
4555 | local_save_flags(irq_flags); | |
4556 | size = sizeof(*entry) + cnt + 2; /* possible \n added */ | |
2d71619c | 4557 | buffer = tr->trace_buffer.buffer; |
d696b58c SR |
4558 | event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size, |
4559 | irq_flags, preempt_count()); | |
4560 | if (!event) { | |
4561 | /* Ring buffer disabled, return as if not open for write */ | |
4562 | written = -EBADF; | |
4563 | goto out_unlock; | |
5bf9a1ee | 4564 | } |
d696b58c SR |
4565 | |
4566 | entry = ring_buffer_event_data(event); | |
4567 | entry->ip = _THIS_IP_; | |
4568 | ||
4569 | if (nr_pages == 2) { | |
4570 | len = PAGE_SIZE - offset; | |
6edb2a8a SR |
4571 | memcpy(&entry->buf, map_page[0] + offset, len); |
4572 | memcpy(&entry->buf[len], map_page[1], cnt - len); | |
c13d2f7c | 4573 | } else |
6edb2a8a | 4574 | memcpy(&entry->buf, map_page[0] + offset, cnt); |
5bf9a1ee | 4575 | |
d696b58c SR |
4576 | if (entry->buf[cnt - 1] != '\n') { |
4577 | entry->buf[cnt] = '\n'; | |
4578 | entry->buf[cnt + 1] = '\0'; | |
4579 | } else | |
4580 | entry->buf[cnt] = '\0'; | |
4581 | ||
7ffbd48d | 4582 | __buffer_unlock_commit(buffer, event); |
5bf9a1ee | 4583 | |
d696b58c | 4584 | written = cnt; |
5bf9a1ee | 4585 | |
d696b58c | 4586 | *fpos += written; |
1aa54bca | 4587 | |
d696b58c | 4588 | out_unlock: |
6edb2a8a SR |
4589 | for (i = 0; i < nr_pages; i++){ |
4590 | kunmap_atomic(map_page[i]); | |
4591 | put_page(pages[i]); | |
4592 | } | |
d696b58c | 4593 | out: |
1aa54bca | 4594 | return written; |
5bf9a1ee PP |
4595 | } |
4596 | ||
13f16d20 | 4597 | static int tracing_clock_show(struct seq_file *m, void *v) |
5079f326 | 4598 | { |
2b6080f2 | 4599 | struct trace_array *tr = m->private; |
5079f326 Z |
4600 | int i; |
4601 | ||
4602 | for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) | |
13f16d20 | 4603 | seq_printf(m, |
5079f326 | 4604 | "%s%s%s%s", i ? " " : "", |
2b6080f2 SR |
4605 | i == tr->clock_id ? "[" : "", trace_clocks[i].name, |
4606 | i == tr->clock_id ? "]" : ""); | |
13f16d20 | 4607 | seq_putc(m, '\n'); |
5079f326 | 4608 | |
13f16d20 | 4609 | return 0; |
5079f326 Z |
4610 | } |
4611 | ||
4612 | static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf, | |
4613 | size_t cnt, loff_t *fpos) | |
4614 | { | |
2b6080f2 SR |
4615 | struct seq_file *m = filp->private_data; |
4616 | struct trace_array *tr = m->private; | |
5079f326 Z |
4617 | char buf[64]; |
4618 | const char *clockstr; | |
4619 | int i; | |
4620 | ||
4621 | if (cnt >= sizeof(buf)) | |
4622 | return -EINVAL; | |
4623 | ||
4624 | if (copy_from_user(&buf, ubuf, cnt)) | |
4625 | return -EFAULT; | |
4626 | ||
4627 | buf[cnt] = 0; | |
4628 | ||
4629 | clockstr = strstrip(buf); | |
4630 | ||
4631 | for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) { | |
4632 | if (strcmp(trace_clocks[i].name, clockstr) == 0) | |
4633 | break; | |
4634 | } | |
4635 | if (i == ARRAY_SIZE(trace_clocks)) | |
4636 | return -EINVAL; | |
4637 | ||
5079f326 Z |
4638 | mutex_lock(&trace_types_lock); |
4639 | ||
2b6080f2 SR |
4640 | tr->clock_id = i; |
4641 | ||
12883efb | 4642 | ring_buffer_set_clock(tr->trace_buffer.buffer, trace_clocks[i].func); |
5079f326 | 4643 | |
60303ed3 DS |
4644 | /* |
4645 | * New clock may not be consistent with the previous clock. | |
4646 | * Reset the buffer so that it doesn't have incomparable timestamps. | |
4647 | */ | |
9457158b | 4648 | tracing_reset_online_cpus(&tr->trace_buffer); |
12883efb SRRH |
4649 | |
4650 | #ifdef CONFIG_TRACER_MAX_TRACE | |
4651 | if (tr->flags & TRACE_ARRAY_FL_GLOBAL && tr->max_buffer.buffer) | |
4652 | ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func); | |
9457158b | 4653 | tracing_reset_online_cpus(&tr->max_buffer); |
12883efb | 4654 | #endif |
60303ed3 | 4655 | |
5079f326 Z |
4656 | mutex_unlock(&trace_types_lock); |
4657 | ||
4658 | *fpos += cnt; | |
4659 | ||
4660 | return cnt; | |
4661 | } | |
4662 | ||
13f16d20 LZ |
4663 | static int tracing_clock_open(struct inode *inode, struct file *file) |
4664 | { | |
7b85af63 SRRH |
4665 | struct trace_array *tr = inode->i_private; |
4666 | int ret; | |
4667 | ||
13f16d20 LZ |
4668 | if (tracing_disabled) |
4669 | return -ENODEV; | |
2b6080f2 | 4670 | |
7b85af63 SRRH |
4671 | if (trace_array_get(tr)) |
4672 | return -ENODEV; | |
4673 | ||
4674 | ret = single_open(file, tracing_clock_show, inode->i_private); | |
4675 | if (ret < 0) | |
4676 | trace_array_put(tr); | |
4677 | ||
4678 | return ret; | |
13f16d20 LZ |
4679 | } |
4680 | ||
6de58e62 SRRH |
4681 | struct ftrace_buffer_info { |
4682 | struct trace_iterator iter; | |
4683 | void *spare; | |
4684 | unsigned int read; | |
4685 | }; | |
4686 | ||
debdd57f HT |
4687 | #ifdef CONFIG_TRACER_SNAPSHOT |
4688 | static int tracing_snapshot_open(struct inode *inode, struct file *file) | |
4689 | { | |
6484c71c | 4690 | struct trace_array *tr = inode->i_private; |
debdd57f | 4691 | struct trace_iterator *iter; |
2b6080f2 | 4692 | struct seq_file *m; |
debdd57f HT |
4693 | int ret = 0; |
4694 | ||
ff451961 SRRH |
4695 | if (trace_array_get(tr) < 0) |
4696 | return -ENODEV; | |
4697 | ||
debdd57f | 4698 | if (file->f_mode & FMODE_READ) { |
6484c71c | 4699 | iter = __tracing_open(inode, file, true); |
debdd57f HT |
4700 | if (IS_ERR(iter)) |
4701 | ret = PTR_ERR(iter); | |
2b6080f2 SR |
4702 | } else { |
4703 | /* Writes still need the seq_file to hold the private data */ | |
f77d09a3 | 4704 | ret = -ENOMEM; |
2b6080f2 SR |
4705 | m = kzalloc(sizeof(*m), GFP_KERNEL); |
4706 | if (!m) | |
f77d09a3 | 4707 | goto out; |
2b6080f2 SR |
4708 | iter = kzalloc(sizeof(*iter), GFP_KERNEL); |
4709 | if (!iter) { | |
4710 | kfree(m); | |
f77d09a3 | 4711 | goto out; |
2b6080f2 | 4712 | } |
f77d09a3 AL |
4713 | ret = 0; |
4714 | ||
ff451961 | 4715 | iter->tr = tr; |
6484c71c ON |
4716 | iter->trace_buffer = &tr->max_buffer; |
4717 | iter->cpu_file = tracing_get_cpu(inode); | |
2b6080f2 SR |
4718 | m->private = iter; |
4719 | file->private_data = m; | |
debdd57f | 4720 | } |
f77d09a3 | 4721 | out: |
ff451961 SRRH |
4722 | if (ret < 0) |
4723 | trace_array_put(tr); | |
4724 | ||
debdd57f HT |
4725 | return ret; |
4726 | } | |
4727 | ||
4728 | static ssize_t | |
4729 | tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt, | |
4730 | loff_t *ppos) | |
4731 | { | |
2b6080f2 SR |
4732 | struct seq_file *m = filp->private_data; |
4733 | struct trace_iterator *iter = m->private; | |
4734 | struct trace_array *tr = iter->tr; | |
debdd57f HT |
4735 | unsigned long val; |
4736 | int ret; | |
4737 | ||
4738 | ret = tracing_update_buffers(); | |
4739 | if (ret < 0) | |
4740 | return ret; | |
4741 | ||
4742 | ret = kstrtoul_from_user(ubuf, cnt, 10, &val); | |
4743 | if (ret) | |
4744 | return ret; | |
4745 | ||
4746 | mutex_lock(&trace_types_lock); | |
4747 | ||
2b6080f2 | 4748 | if (tr->current_trace->use_max_tr) { |
debdd57f HT |
4749 | ret = -EBUSY; |
4750 | goto out; | |
4751 | } | |
4752 | ||
4753 | switch (val) { | |
4754 | case 0: | |
f1affcaa SRRH |
4755 | if (iter->cpu_file != RING_BUFFER_ALL_CPUS) { |
4756 | ret = -EINVAL; | |
4757 | break; | |
debdd57f | 4758 | } |
3209cff4 SRRH |
4759 | if (tr->allocated_snapshot) |
4760 | free_snapshot(tr); | |
debdd57f HT |
4761 | break; |
4762 | case 1: | |
f1affcaa SRRH |
4763 | /* Only allow per-cpu swap if the ring buffer supports it */ |
4764 | #ifndef CONFIG_RING_BUFFER_ALLOW_SWAP | |
4765 | if (iter->cpu_file != RING_BUFFER_ALL_CPUS) { | |
4766 | ret = -EINVAL; | |
4767 | break; | |
4768 | } | |
4769 | #endif | |
45ad21ca | 4770 | if (!tr->allocated_snapshot) { |
3209cff4 | 4771 | ret = alloc_snapshot(tr); |
debdd57f HT |
4772 | if (ret < 0) |
4773 | break; | |
debdd57f | 4774 | } |
debdd57f HT |
4775 | local_irq_disable(); |
4776 | /* Now, we're going to swap */ | |
f1affcaa | 4777 | if (iter->cpu_file == RING_BUFFER_ALL_CPUS) |
ce9bae55 | 4778 | update_max_tr(tr, current, smp_processor_id()); |
f1affcaa | 4779 | else |
ce9bae55 | 4780 | update_max_tr_single(tr, current, iter->cpu_file); |
debdd57f HT |
4781 | local_irq_enable(); |
4782 | break; | |
4783 | default: | |
45ad21ca | 4784 | if (tr->allocated_snapshot) { |
f1affcaa SRRH |
4785 | if (iter->cpu_file == RING_BUFFER_ALL_CPUS) |
4786 | tracing_reset_online_cpus(&tr->max_buffer); | |
4787 | else | |
4788 | tracing_reset(&tr->max_buffer, iter->cpu_file); | |
4789 | } | |
debdd57f HT |
4790 | break; |
4791 | } | |
4792 | ||
4793 | if (ret >= 0) { | |
4794 | *ppos += cnt; | |
4795 | ret = cnt; | |
4796 | } | |
4797 | out: | |
4798 | mutex_unlock(&trace_types_lock); | |
4799 | return ret; | |
4800 | } | |
2b6080f2 SR |
4801 | |
4802 | static int tracing_snapshot_release(struct inode *inode, struct file *file) | |
4803 | { | |
4804 | struct seq_file *m = file->private_data; | |
ff451961 SRRH |
4805 | int ret; |
4806 | ||
4807 | ret = tracing_release(inode, file); | |
2b6080f2 SR |
4808 | |
4809 | if (file->f_mode & FMODE_READ) | |
ff451961 | 4810 | return ret; |
2b6080f2 SR |
4811 | |
4812 | /* If write only, the seq_file is just a stub */ | |
4813 | if (m) | |
4814 | kfree(m->private); | |
4815 | kfree(m); | |
4816 | ||
4817 | return 0; | |
4818 | } | |
4819 | ||
6de58e62 SRRH |
4820 | static int tracing_buffers_open(struct inode *inode, struct file *filp); |
4821 | static ssize_t tracing_buffers_read(struct file *filp, char __user *ubuf, | |
4822 | size_t count, loff_t *ppos); | |
4823 | static int tracing_buffers_release(struct inode *inode, struct file *file); | |
4824 | static ssize_t tracing_buffers_splice_read(struct file *file, loff_t *ppos, | |
4825 | struct pipe_inode_info *pipe, size_t len, unsigned int flags); | |
4826 | ||
4827 | static int snapshot_raw_open(struct inode *inode, struct file *filp) | |
4828 | { | |
4829 | struct ftrace_buffer_info *info; | |
4830 | int ret; | |
4831 | ||
4832 | ret = tracing_buffers_open(inode, filp); | |
4833 | if (ret < 0) | |
4834 | return ret; | |
4835 | ||
4836 | info = filp->private_data; | |
4837 | ||
4838 | if (info->iter.trace->use_max_tr) { | |
4839 | tracing_buffers_release(inode, filp); | |
4840 | return -EBUSY; | |
4841 | } | |
4842 | ||
4843 | info->iter.snapshot = true; | |
4844 | info->iter.trace_buffer = &info->iter.tr->max_buffer; | |
4845 | ||
4846 | return ret; | |
4847 | } | |
4848 | ||
debdd57f HT |
4849 | #endif /* CONFIG_TRACER_SNAPSHOT */ |
4850 | ||
4851 | ||
5e2336a0 | 4852 | static const struct file_operations tracing_max_lat_fops = { |
4bf39a94 IM |
4853 | .open = tracing_open_generic, |
4854 | .read = tracing_max_lat_read, | |
4855 | .write = tracing_max_lat_write, | |
b444786f | 4856 | .llseek = generic_file_llseek, |
bc0c38d1 SR |
4857 | }; |
4858 | ||
5e2336a0 | 4859 | static const struct file_operations set_tracer_fops = { |
4bf39a94 IM |
4860 | .open = tracing_open_generic, |
4861 | .read = tracing_set_trace_read, | |
4862 | .write = tracing_set_trace_write, | |
b444786f | 4863 | .llseek = generic_file_llseek, |
bc0c38d1 SR |
4864 | }; |
4865 | ||
5e2336a0 | 4866 | static const struct file_operations tracing_pipe_fops = { |
4bf39a94 | 4867 | .open = tracing_open_pipe, |
2a2cc8f7 | 4868 | .poll = tracing_poll_pipe, |
4bf39a94 | 4869 | .read = tracing_read_pipe, |
3c56819b | 4870 | .splice_read = tracing_splice_read_pipe, |
4bf39a94 | 4871 | .release = tracing_release_pipe, |
b444786f | 4872 | .llseek = no_llseek, |
b3806b43 SR |
4873 | }; |
4874 | ||
5e2336a0 | 4875 | static const struct file_operations tracing_entries_fops = { |
0bc392ee | 4876 | .open = tracing_open_generic_tr, |
a98a3c3f SR |
4877 | .read = tracing_entries_read, |
4878 | .write = tracing_entries_write, | |
b444786f | 4879 | .llseek = generic_file_llseek, |
0bc392ee | 4880 | .release = tracing_release_generic_tr, |
a98a3c3f SR |
4881 | }; |
4882 | ||
f81ab074 | 4883 | static const struct file_operations tracing_total_entries_fops = { |
7b85af63 | 4884 | .open = tracing_open_generic_tr, |
f81ab074 VN |
4885 | .read = tracing_total_entries_read, |
4886 | .llseek = generic_file_llseek, | |
7b85af63 | 4887 | .release = tracing_release_generic_tr, |
f81ab074 VN |
4888 | }; |
4889 | ||
4f271a2a | 4890 | static const struct file_operations tracing_free_buffer_fops = { |
7b85af63 | 4891 | .open = tracing_open_generic_tr, |
4f271a2a VN |
4892 | .write = tracing_free_buffer_write, |
4893 | .release = tracing_free_buffer_release, | |
4894 | }; | |
4895 | ||
5e2336a0 | 4896 | static const struct file_operations tracing_mark_fops = { |
7b85af63 | 4897 | .open = tracing_open_generic_tr, |
5bf9a1ee | 4898 | .write = tracing_mark_write, |
b444786f | 4899 | .llseek = generic_file_llseek, |
7b85af63 | 4900 | .release = tracing_release_generic_tr, |
5bf9a1ee PP |
4901 | }; |
4902 | ||
5079f326 | 4903 | static const struct file_operations trace_clock_fops = { |
13f16d20 LZ |
4904 | .open = tracing_clock_open, |
4905 | .read = seq_read, | |
4906 | .llseek = seq_lseek, | |
7b85af63 | 4907 | .release = tracing_single_release_tr, |
5079f326 Z |
4908 | .write = tracing_clock_write, |
4909 | }; | |
4910 | ||
debdd57f HT |
4911 | #ifdef CONFIG_TRACER_SNAPSHOT |
4912 | static const struct file_operations snapshot_fops = { | |
4913 | .open = tracing_snapshot_open, | |
4914 | .read = seq_read, | |
4915 | .write = tracing_snapshot_write, | |
4916 | .llseek = tracing_seek, | |
2b6080f2 | 4917 | .release = tracing_snapshot_release, |
debdd57f | 4918 | }; |
debdd57f | 4919 | |
6de58e62 SRRH |
4920 | static const struct file_operations snapshot_raw_fops = { |
4921 | .open = snapshot_raw_open, | |
4922 | .read = tracing_buffers_read, | |
4923 | .release = tracing_buffers_release, | |
4924 | .splice_read = tracing_buffers_splice_read, | |
4925 | .llseek = no_llseek, | |
2cadf913 SR |
4926 | }; |
4927 | ||
6de58e62 SRRH |
4928 | #endif /* CONFIG_TRACER_SNAPSHOT */ |
4929 | ||
2cadf913 SR |
4930 | static int tracing_buffers_open(struct inode *inode, struct file *filp) |
4931 | { | |
46ef2be0 | 4932 | struct trace_array *tr = inode->i_private; |
2cadf913 | 4933 | struct ftrace_buffer_info *info; |
7b85af63 | 4934 | int ret; |
2cadf913 SR |
4935 | |
4936 | if (tracing_disabled) | |
4937 | return -ENODEV; | |
4938 | ||
7b85af63 SRRH |
4939 | if (trace_array_get(tr) < 0) |
4940 | return -ENODEV; | |
4941 | ||
2cadf913 | 4942 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
7b85af63 SRRH |
4943 | if (!info) { |
4944 | trace_array_put(tr); | |
2cadf913 | 4945 | return -ENOMEM; |
7b85af63 | 4946 | } |
2cadf913 | 4947 | |
a695cb58 SRRH |
4948 | mutex_lock(&trace_types_lock); |
4949 | ||
cc60cdc9 | 4950 | info->iter.tr = tr; |
46ef2be0 | 4951 | info->iter.cpu_file = tracing_get_cpu(inode); |
b627344f | 4952 | info->iter.trace = tr->current_trace; |
12883efb | 4953 | info->iter.trace_buffer = &tr->trace_buffer; |
cc60cdc9 | 4954 | info->spare = NULL; |
2cadf913 | 4955 | /* Force reading ring buffer for first read */ |
cc60cdc9 | 4956 | info->read = (unsigned int)-1; |
2cadf913 SR |
4957 | |
4958 | filp->private_data = info; | |
4959 | ||
a695cb58 SRRH |
4960 | mutex_unlock(&trace_types_lock); |
4961 | ||
7b85af63 SRRH |
4962 | ret = nonseekable_open(inode, filp); |
4963 | if (ret < 0) | |
4964 | trace_array_put(tr); | |
4965 | ||
4966 | return ret; | |
2cadf913 SR |
4967 | } |
4968 | ||
cc60cdc9 SR |
4969 | static unsigned int |
4970 | tracing_buffers_poll(struct file *filp, poll_table *poll_table) | |
4971 | { | |
4972 | struct ftrace_buffer_info *info = filp->private_data; | |
4973 | struct trace_iterator *iter = &info->iter; | |
4974 | ||
4975 | return trace_poll(iter, filp, poll_table); | |
4976 | } | |
4977 | ||
2cadf913 SR |
4978 | static ssize_t |
4979 | tracing_buffers_read(struct file *filp, char __user *ubuf, | |
4980 | size_t count, loff_t *ppos) | |
4981 | { | |
4982 | struct ftrace_buffer_info *info = filp->private_data; | |
cc60cdc9 | 4983 | struct trace_iterator *iter = &info->iter; |
2cadf913 | 4984 | ssize_t ret; |
6de58e62 | 4985 | ssize_t size; |
2cadf913 | 4986 | |
2dc5d12b SR |
4987 | if (!count) |
4988 | return 0; | |
4989 | ||
6de58e62 SRRH |
4990 | mutex_lock(&trace_types_lock); |
4991 | ||
4992 | #ifdef CONFIG_TRACER_MAX_TRACE | |
4993 | if (iter->snapshot && iter->tr->current_trace->use_max_tr) { | |
4994 | size = -EBUSY; | |
4995 | goto out_unlock; | |
4996 | } | |
4997 | #endif | |
4998 | ||
ddd538f3 | 4999 | if (!info->spare) |
12883efb SRRH |
5000 | info->spare = ring_buffer_alloc_read_page(iter->trace_buffer->buffer, |
5001 | iter->cpu_file); | |
6de58e62 | 5002 | size = -ENOMEM; |
ddd538f3 | 5003 | if (!info->spare) |
6de58e62 | 5004 | goto out_unlock; |
ddd538f3 | 5005 | |
2cadf913 SR |
5006 | /* Do we have previous read data to read? */ |
5007 | if (info->read < PAGE_SIZE) | |
5008 | goto read; | |
5009 | ||
b627344f | 5010 | again: |
cc60cdc9 | 5011 | trace_access_lock(iter->cpu_file); |
12883efb | 5012 | ret = ring_buffer_read_page(iter->trace_buffer->buffer, |
2cadf913 SR |
5013 | &info->spare, |
5014 | count, | |
cc60cdc9 SR |
5015 | iter->cpu_file, 0); |
5016 | trace_access_unlock(iter->cpu_file); | |
2cadf913 | 5017 | |
b627344f SR |
5018 | if (ret < 0) { |
5019 | if (trace_empty(iter)) { | |
6de58e62 SRRH |
5020 | if ((filp->f_flags & O_NONBLOCK)) { |
5021 | size = -EAGAIN; | |
5022 | goto out_unlock; | |
5023 | } | |
5024 | mutex_unlock(&trace_types_lock); | |
b627344f | 5025 | iter->trace->wait_pipe(iter); |
6de58e62 SRRH |
5026 | mutex_lock(&trace_types_lock); |
5027 | if (signal_pending(current)) { | |
5028 | size = -EINTR; | |
5029 | goto out_unlock; | |
5030 | } | |
b627344f SR |
5031 | goto again; |
5032 | } | |
6de58e62 SRRH |
5033 | size = 0; |
5034 | goto out_unlock; | |
b627344f | 5035 | } |
436fc280 | 5036 | |
436fc280 | 5037 | info->read = 0; |
b627344f | 5038 | read: |
2cadf913 SR |
5039 | size = PAGE_SIZE - info->read; |
5040 | if (size > count) | |
5041 | size = count; | |
5042 | ||
5043 | ret = copy_to_user(ubuf, info->spare + info->read, size); | |
6de58e62 SRRH |
5044 | if (ret == size) { |
5045 | size = -EFAULT; | |
5046 | goto out_unlock; | |
5047 | } | |
2dc5d12b SR |
5048 | size -= ret; |
5049 | ||
2cadf913 SR |
5050 | *ppos += size; |
5051 | info->read += size; | |
5052 | ||
6de58e62 SRRH |
5053 | out_unlock: |
5054 | mutex_unlock(&trace_types_lock); | |
5055 | ||
2cadf913 SR |
5056 | return size; |
5057 | } | |
5058 | ||
5059 | static int tracing_buffers_release(struct inode *inode, struct file *file) | |
5060 | { | |
5061 | struct ftrace_buffer_info *info = file->private_data; | |
cc60cdc9 | 5062 | struct trace_iterator *iter = &info->iter; |
2cadf913 | 5063 | |
a695cb58 SRRH |
5064 | mutex_lock(&trace_types_lock); |
5065 | ||
ff451961 | 5066 | __trace_array_put(iter->tr); |
2cadf913 | 5067 | |
ddd538f3 | 5068 | if (info->spare) |
12883efb | 5069 | ring_buffer_free_read_page(iter->trace_buffer->buffer, info->spare); |
2cadf913 SR |
5070 | kfree(info); |
5071 | ||
a695cb58 SRRH |
5072 | mutex_unlock(&trace_types_lock); |
5073 | ||
2cadf913 SR |
5074 | return 0; |
5075 | } | |
5076 | ||
5077 | struct buffer_ref { | |
5078 | struct ring_buffer *buffer; | |
5079 | void *page; | |
5080 | int ref; | |
5081 | }; | |
5082 | ||
5083 | static void buffer_pipe_buf_release(struct pipe_inode_info *pipe, | |
5084 | struct pipe_buffer *buf) | |
5085 | { | |
5086 | struct buffer_ref *ref = (struct buffer_ref *)buf->private; | |
5087 | ||
5088 | if (--ref->ref) | |
5089 | return; | |
5090 | ||
5091 | ring_buffer_free_read_page(ref->buffer, ref->page); | |
5092 | kfree(ref); | |
5093 | buf->private = 0; | |
5094 | } | |
5095 | ||
2cadf913 SR |
5096 | static void buffer_pipe_buf_get(struct pipe_inode_info *pipe, |
5097 | struct pipe_buffer *buf) | |
5098 | { | |
5099 | struct buffer_ref *ref = (struct buffer_ref *)buf->private; | |
5100 | ||
5101 | ref->ref++; | |
5102 | } | |
5103 | ||
5104 | /* Pipe buffer operations for a buffer. */ | |
28dfef8f | 5105 | static const struct pipe_buf_operations buffer_pipe_buf_ops = { |
2cadf913 SR |
5106 | .can_merge = 0, |
5107 | .map = generic_pipe_buf_map, | |
5108 | .unmap = generic_pipe_buf_unmap, | |
5109 | .confirm = generic_pipe_buf_confirm, | |
5110 | .release = buffer_pipe_buf_release, | |
d55cb6cf | 5111 | .steal = generic_pipe_buf_steal, |
2cadf913 SR |
5112 | .get = buffer_pipe_buf_get, |
5113 | }; | |
5114 | ||
5115 | /* | |
5116 | * Callback from splice_to_pipe(), if we need to release some pages | |
5117 | * at the end of the spd in case we error'ed out in filling the pipe. | |
5118 | */ | |
5119 | static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i) | |
5120 | { | |
5121 | struct buffer_ref *ref = | |
5122 | (struct buffer_ref *)spd->partial[i].private; | |
5123 | ||
5124 | if (--ref->ref) | |
5125 | return; | |
5126 | ||
5127 | ring_buffer_free_read_page(ref->buffer, ref->page); | |
5128 | kfree(ref); | |
5129 | spd->partial[i].private = 0; | |
5130 | } | |
5131 | ||
5132 | static ssize_t | |
5133 | tracing_buffers_splice_read(struct file *file, loff_t *ppos, | |
5134 | struct pipe_inode_info *pipe, size_t len, | |
5135 | unsigned int flags) | |
5136 | { | |
5137 | struct ftrace_buffer_info *info = file->private_data; | |
cc60cdc9 | 5138 | struct trace_iterator *iter = &info->iter; |
35f3d14d JA |
5139 | struct partial_page partial_def[PIPE_DEF_BUFFERS]; |
5140 | struct page *pages_def[PIPE_DEF_BUFFERS]; | |
2cadf913 | 5141 | struct splice_pipe_desc spd = { |
35f3d14d JA |
5142 | .pages = pages_def, |
5143 | .partial = partial_def, | |
047fe360 | 5144 | .nr_pages_max = PIPE_DEF_BUFFERS, |
2cadf913 SR |
5145 | .flags = flags, |
5146 | .ops = &buffer_pipe_buf_ops, | |
5147 | .spd_release = buffer_spd_release, | |
5148 | }; | |
5149 | struct buffer_ref *ref; | |
93459c6c | 5150 | int entries, size, i; |
6de58e62 | 5151 | ssize_t ret; |
2cadf913 | 5152 | |
6de58e62 SRRH |
5153 | mutex_lock(&trace_types_lock); |
5154 | ||
5155 | #ifdef CONFIG_TRACER_MAX_TRACE | |
5156 | if (iter->snapshot && iter->tr->current_trace->use_max_tr) { | |
5157 | ret = -EBUSY; | |
5158 | goto out; | |
5159 | } | |
5160 | #endif | |
5161 | ||
5162 | if (splice_grow_spd(pipe, &spd)) { | |
5163 | ret = -ENOMEM; | |
5164 | goto out; | |
5165 | } | |
35f3d14d | 5166 | |
93cfb3c9 | 5167 | if (*ppos & (PAGE_SIZE - 1)) { |
35f3d14d JA |
5168 | ret = -EINVAL; |
5169 | goto out; | |
93cfb3c9 LJ |
5170 | } |
5171 | ||
5172 | if (len & (PAGE_SIZE - 1)) { | |
35f3d14d JA |
5173 | if (len < PAGE_SIZE) { |
5174 | ret = -EINVAL; | |
5175 | goto out; | |
5176 | } | |
93cfb3c9 LJ |
5177 | len &= PAGE_MASK; |
5178 | } | |
5179 | ||
cc60cdc9 SR |
5180 | again: |
5181 | trace_access_lock(iter->cpu_file); | |
12883efb | 5182 | entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file); |
93459c6c | 5183 | |
35f3d14d | 5184 | for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) { |
2cadf913 SR |
5185 | struct page *page; |
5186 | int r; | |
5187 | ||
5188 | ref = kzalloc(sizeof(*ref), GFP_KERNEL); | |
5189 | if (!ref) | |
5190 | break; | |
5191 | ||
7267fa68 | 5192 | ref->ref = 1; |
12883efb | 5193 | ref->buffer = iter->trace_buffer->buffer; |
cc60cdc9 | 5194 | ref->page = ring_buffer_alloc_read_page(ref->buffer, iter->cpu_file); |
2cadf913 SR |
5195 | if (!ref->page) { |
5196 | kfree(ref); | |
5197 | break; | |
5198 | } | |
5199 | ||
5200 | r = ring_buffer_read_page(ref->buffer, &ref->page, | |
cc60cdc9 | 5201 | len, iter->cpu_file, 1); |
2cadf913 | 5202 | if (r < 0) { |
7ea59064 | 5203 | ring_buffer_free_read_page(ref->buffer, ref->page); |
2cadf913 SR |
5204 | kfree(ref); |
5205 | break; | |
5206 | } | |
5207 | ||
5208 | /* | |
5209 | * zero out any left over data, this is going to | |
5210 | * user land. | |
5211 | */ | |
5212 | size = ring_buffer_page_len(ref->page); | |
5213 | if (size < PAGE_SIZE) | |
5214 | memset(ref->page + size, 0, PAGE_SIZE - size); | |
5215 | ||
5216 | page = virt_to_page(ref->page); | |
5217 | ||
5218 | spd.pages[i] = page; | |
5219 | spd.partial[i].len = PAGE_SIZE; | |
5220 | spd.partial[i].offset = 0; | |
5221 | spd.partial[i].private = (unsigned long)ref; | |
5222 | spd.nr_pages++; | |
93cfb3c9 | 5223 | *ppos += PAGE_SIZE; |
93459c6c | 5224 | |
12883efb | 5225 | entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file); |
2cadf913 SR |
5226 | } |
5227 | ||
cc60cdc9 | 5228 | trace_access_unlock(iter->cpu_file); |
2cadf913 SR |
5229 | spd.nr_pages = i; |
5230 | ||
5231 | /* did we read anything? */ | |
5232 | if (!spd.nr_pages) { | |
cc60cdc9 | 5233 | if ((file->f_flags & O_NONBLOCK) || (flags & SPLICE_F_NONBLOCK)) { |
2cadf913 | 5234 | ret = -EAGAIN; |
cc60cdc9 SR |
5235 | goto out; |
5236 | } | |
6de58e62 | 5237 | mutex_unlock(&trace_types_lock); |
b627344f | 5238 | iter->trace->wait_pipe(iter); |
6de58e62 | 5239 | mutex_lock(&trace_types_lock); |
cc60cdc9 SR |
5240 | if (signal_pending(current)) { |
5241 | ret = -EINTR; | |
5242 | goto out; | |
5243 | } | |
5244 | goto again; | |
2cadf913 SR |
5245 | } |
5246 | ||
5247 | ret = splice_to_pipe(pipe, &spd); | |
047fe360 | 5248 | splice_shrink_spd(&spd); |
35f3d14d | 5249 | out: |
6de58e62 SRRH |
5250 | mutex_unlock(&trace_types_lock); |
5251 | ||
2cadf913 SR |
5252 | return ret; |
5253 | } | |
5254 | ||
5255 | static const struct file_operations tracing_buffers_fops = { | |
5256 | .open = tracing_buffers_open, | |
5257 | .read = tracing_buffers_read, | |
cc60cdc9 | 5258 | .poll = tracing_buffers_poll, |
2cadf913 SR |
5259 | .release = tracing_buffers_release, |
5260 | .splice_read = tracing_buffers_splice_read, | |
5261 | .llseek = no_llseek, | |
5262 | }; | |
5263 | ||
c8d77183 SR |
5264 | static ssize_t |
5265 | tracing_stats_read(struct file *filp, char __user *ubuf, | |
5266 | size_t count, loff_t *ppos) | |
5267 | { | |
4d3435b8 ON |
5268 | struct inode *inode = file_inode(filp); |
5269 | struct trace_array *tr = inode->i_private; | |
12883efb | 5270 | struct trace_buffer *trace_buf = &tr->trace_buffer; |
4d3435b8 | 5271 | int cpu = tracing_get_cpu(inode); |
c8d77183 SR |
5272 | struct trace_seq *s; |
5273 | unsigned long cnt; | |
c64e148a VN |
5274 | unsigned long long t; |
5275 | unsigned long usec_rem; | |
c8d77183 | 5276 | |
e4f2d10f | 5277 | s = kmalloc(sizeof(*s), GFP_KERNEL); |
c8d77183 | 5278 | if (!s) |
a646365c | 5279 | return -ENOMEM; |
c8d77183 SR |
5280 | |
5281 | trace_seq_init(s); | |
5282 | ||
12883efb | 5283 | cnt = ring_buffer_entries_cpu(trace_buf->buffer, cpu); |
c8d77183 SR |
5284 | trace_seq_printf(s, "entries: %ld\n", cnt); |
5285 | ||
12883efb | 5286 | cnt = ring_buffer_overrun_cpu(trace_buf->buffer, cpu); |
c8d77183 SR |
5287 | trace_seq_printf(s, "overrun: %ld\n", cnt); |
5288 | ||
12883efb | 5289 | cnt = ring_buffer_commit_overrun_cpu(trace_buf->buffer, cpu); |
c8d77183 SR |
5290 | trace_seq_printf(s, "commit overrun: %ld\n", cnt); |
5291 | ||
12883efb | 5292 | cnt = ring_buffer_bytes_cpu(trace_buf->buffer, cpu); |
c64e148a VN |
5293 | trace_seq_printf(s, "bytes: %ld\n", cnt); |
5294 | ||
58e8eedf | 5295 | if (trace_clocks[tr->clock_id].in_ns) { |
11043d8b | 5296 | /* local or global for trace_clock */ |
12883efb | 5297 | t = ns2usecs(ring_buffer_oldest_event_ts(trace_buf->buffer, cpu)); |
11043d8b YY |
5298 | usec_rem = do_div(t, USEC_PER_SEC); |
5299 | trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n", | |
5300 | t, usec_rem); | |
5301 | ||
12883efb | 5302 | t = ns2usecs(ring_buffer_time_stamp(trace_buf->buffer, cpu)); |
11043d8b YY |
5303 | usec_rem = do_div(t, USEC_PER_SEC); |
5304 | trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem); | |
5305 | } else { | |
5306 | /* counter or tsc mode for trace_clock */ | |
5307 | trace_seq_printf(s, "oldest event ts: %llu\n", | |
12883efb | 5308 | ring_buffer_oldest_event_ts(trace_buf->buffer, cpu)); |
c64e148a | 5309 | |
11043d8b | 5310 | trace_seq_printf(s, "now ts: %llu\n", |
12883efb | 5311 | ring_buffer_time_stamp(trace_buf->buffer, cpu)); |
11043d8b | 5312 | } |
c64e148a | 5313 | |
12883efb | 5314 | cnt = ring_buffer_dropped_events_cpu(trace_buf->buffer, cpu); |
884bfe89 SP |
5315 | trace_seq_printf(s, "dropped events: %ld\n", cnt); |
5316 | ||
12883efb | 5317 | cnt = ring_buffer_read_events_cpu(trace_buf->buffer, cpu); |
ad964704 SRRH |
5318 | trace_seq_printf(s, "read events: %ld\n", cnt); |
5319 | ||
c8d77183 SR |
5320 | count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len); |
5321 | ||
5322 | kfree(s); | |
5323 | ||
5324 | return count; | |
5325 | } | |
5326 | ||
5327 | static const struct file_operations tracing_stats_fops = { | |
4d3435b8 | 5328 | .open = tracing_open_generic_tr, |
c8d77183 | 5329 | .read = tracing_stats_read, |
b444786f | 5330 | .llseek = generic_file_llseek, |
4d3435b8 | 5331 | .release = tracing_release_generic_tr, |
c8d77183 SR |
5332 | }; |
5333 | ||
bc0c38d1 SR |
5334 | #ifdef CONFIG_DYNAMIC_FTRACE |
5335 | ||
b807c3d0 SR |
5336 | int __weak ftrace_arch_read_dyn_info(char *buf, int size) |
5337 | { | |
5338 | return 0; | |
5339 | } | |
5340 | ||
bc0c38d1 | 5341 | static ssize_t |
b807c3d0 | 5342 | tracing_read_dyn_info(struct file *filp, char __user *ubuf, |
bc0c38d1 SR |
5343 | size_t cnt, loff_t *ppos) |
5344 | { | |
a26a2a27 SR |
5345 | static char ftrace_dyn_info_buffer[1024]; |
5346 | static DEFINE_MUTEX(dyn_info_mutex); | |
bc0c38d1 | 5347 | unsigned long *p = filp->private_data; |
b807c3d0 | 5348 | char *buf = ftrace_dyn_info_buffer; |
a26a2a27 | 5349 | int size = ARRAY_SIZE(ftrace_dyn_info_buffer); |
bc0c38d1 SR |
5350 | int r; |
5351 | ||
b807c3d0 SR |
5352 | mutex_lock(&dyn_info_mutex); |
5353 | r = sprintf(buf, "%ld ", *p); | |
4bf39a94 | 5354 | |
a26a2a27 | 5355 | r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r); |
b807c3d0 SR |
5356 | buf[r++] = '\n'; |
5357 | ||
5358 | r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r); | |
5359 | ||
5360 | mutex_unlock(&dyn_info_mutex); | |
5361 | ||
5362 | return r; | |
bc0c38d1 SR |
5363 | } |
5364 | ||
5e2336a0 | 5365 | static const struct file_operations tracing_dyn_info_fops = { |
4bf39a94 | 5366 | .open = tracing_open_generic, |
b807c3d0 | 5367 | .read = tracing_read_dyn_info, |
b444786f | 5368 | .llseek = generic_file_llseek, |
bc0c38d1 | 5369 | }; |
77fd5c15 | 5370 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
bc0c38d1 | 5371 | |
77fd5c15 SRRH |
5372 | #if defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) |
5373 | static void | |
5374 | ftrace_snapshot(unsigned long ip, unsigned long parent_ip, void **data) | |
5375 | { | |
5376 | tracing_snapshot(); | |
5377 | } | |
bc0c38d1 | 5378 | |
77fd5c15 SRRH |
5379 | static void |
5380 | ftrace_count_snapshot(unsigned long ip, unsigned long parent_ip, void **data) | |
bc0c38d1 | 5381 | { |
77fd5c15 SRRH |
5382 | unsigned long *count = (long *)data; |
5383 | ||
5384 | if (!*count) | |
5385 | return; | |
bc0c38d1 | 5386 | |
77fd5c15 SRRH |
5387 | if (*count != -1) |
5388 | (*count)--; | |
5389 | ||
5390 | tracing_snapshot(); | |
5391 | } | |
5392 | ||
5393 | static int | |
5394 | ftrace_snapshot_print(struct seq_file *m, unsigned long ip, | |
5395 | struct ftrace_probe_ops *ops, void *data) | |
5396 | { | |
5397 | long count = (long)data; | |
5398 | ||
5399 | seq_printf(m, "%ps:", (void *)ip); | |
5400 | ||
5401 | seq_printf(m, "snapshot"); | |
5402 | ||
5403 | if (count == -1) | |
5404 | seq_printf(m, ":unlimited\n"); | |
5405 | else | |
5406 | seq_printf(m, ":count=%ld\n", count); | |
5407 | ||
5408 | return 0; | |
5409 | } | |
5410 | ||
5411 | static struct ftrace_probe_ops snapshot_probe_ops = { | |
5412 | .func = ftrace_snapshot, | |
5413 | .print = ftrace_snapshot_print, | |
5414 | }; | |
5415 | ||
5416 | static struct ftrace_probe_ops snapshot_count_probe_ops = { | |
5417 | .func = ftrace_count_snapshot, | |
5418 | .print = ftrace_snapshot_print, | |
5419 | }; | |
5420 | ||
5421 | static int | |
5422 | ftrace_trace_snapshot_callback(struct ftrace_hash *hash, | |
5423 | char *glob, char *cmd, char *param, int enable) | |
5424 | { | |
5425 | struct ftrace_probe_ops *ops; | |
5426 | void *count = (void *)-1; | |
5427 | char *number; | |
5428 | int ret; | |
5429 | ||
5430 | /* hash funcs only work with set_ftrace_filter */ | |
5431 | if (!enable) | |
5432 | return -EINVAL; | |
5433 | ||
5434 | ops = param ? &snapshot_count_probe_ops : &snapshot_probe_ops; | |
5435 | ||
5436 | if (glob[0] == '!') { | |
5437 | unregister_ftrace_function_probe_func(glob+1, ops); | |
5438 | return 0; | |
5439 | } | |
5440 | ||
5441 | if (!param) | |
5442 | goto out_reg; | |
5443 | ||
5444 | number = strsep(¶m, ":"); | |
5445 | ||
5446 | if (!strlen(number)) | |
5447 | goto out_reg; | |
5448 | ||
5449 | /* | |
5450 | * We use the callback data field (which is a pointer) | |
5451 | * as our counter. | |
5452 | */ | |
5453 | ret = kstrtoul(number, 0, (unsigned long *)&count); | |
5454 | if (ret) | |
5455 | return ret; | |
5456 | ||
5457 | out_reg: | |
5458 | ret = register_ftrace_function_probe(glob, ops, count); | |
5459 | ||
5460 | if (ret >= 0) | |
5461 | alloc_snapshot(&global_trace); | |
5462 | ||
5463 | return ret < 0 ? ret : 0; | |
5464 | } | |
5465 | ||
5466 | static struct ftrace_func_command ftrace_snapshot_cmd = { | |
5467 | .name = "snapshot", | |
5468 | .func = ftrace_trace_snapshot_callback, | |
5469 | }; | |
5470 | ||
38de93ab | 5471 | static __init int register_snapshot_cmd(void) |
77fd5c15 SRRH |
5472 | { |
5473 | return register_ftrace_command(&ftrace_snapshot_cmd); | |
5474 | } | |
5475 | #else | |
38de93ab | 5476 | static inline __init int register_snapshot_cmd(void) { return 0; } |
77fd5c15 | 5477 | #endif /* defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) */ |
bc0c38d1 | 5478 | |
2b6080f2 | 5479 | struct dentry *tracing_init_dentry_tr(struct trace_array *tr) |
bc0c38d1 | 5480 | { |
2b6080f2 SR |
5481 | if (tr->dir) |
5482 | return tr->dir; | |
bc0c38d1 | 5483 | |
3e1f60b8 FW |
5484 | if (!debugfs_initialized()) |
5485 | return NULL; | |
5486 | ||
2b6080f2 SR |
5487 | if (tr->flags & TRACE_ARRAY_FL_GLOBAL) |
5488 | tr->dir = debugfs_create_dir("tracing", NULL); | |
bc0c38d1 | 5489 | |
687c878a J |
5490 | if (!tr->dir) |
5491 | pr_warn_once("Could not create debugfs directory 'tracing'\n"); | |
bc0c38d1 | 5492 | |
2b6080f2 | 5493 | return tr->dir; |
bc0c38d1 SR |
5494 | } |
5495 | ||
2b6080f2 SR |
5496 | struct dentry *tracing_init_dentry(void) |
5497 | { | |
5498 | return tracing_init_dentry_tr(&global_trace); | |
5499 | } | |
b04cc6b1 | 5500 | |
2b6080f2 | 5501 | static struct dentry *tracing_dentry_percpu(struct trace_array *tr, int cpu) |
b04cc6b1 | 5502 | { |
b04cc6b1 FW |
5503 | struct dentry *d_tracer; |
5504 | ||
2b6080f2 SR |
5505 | if (tr->percpu_dir) |
5506 | return tr->percpu_dir; | |
b04cc6b1 | 5507 | |
2b6080f2 | 5508 | d_tracer = tracing_init_dentry_tr(tr); |
b04cc6b1 FW |
5509 | if (!d_tracer) |
5510 | return NULL; | |
5511 | ||
2b6080f2 | 5512 | tr->percpu_dir = debugfs_create_dir("per_cpu", d_tracer); |
b04cc6b1 | 5513 | |
2b6080f2 SR |
5514 | WARN_ONCE(!tr->percpu_dir, |
5515 | "Could not create debugfs directory 'per_cpu/%d'\n", cpu); | |
b04cc6b1 | 5516 | |
2b6080f2 | 5517 | return tr->percpu_dir; |
b04cc6b1 FW |
5518 | } |
5519 | ||
649e9c70 ON |
5520 | static struct dentry * |
5521 | trace_create_cpu_file(const char *name, umode_t mode, struct dentry *parent, | |
5522 | void *data, long cpu, const struct file_operations *fops) | |
5523 | { | |
5524 | struct dentry *ret = trace_create_file(name, mode, parent, data, fops); | |
5525 | ||
5526 | if (ret) /* See tracing_get_cpu() */ | |
5527 | ret->d_inode->i_cdev = (void *)(cpu + 1); | |
5528 | return ret; | |
5529 | } | |
5530 | ||
2b6080f2 SR |
5531 | static void |
5532 | tracing_init_debugfs_percpu(struct trace_array *tr, long cpu) | |
b04cc6b1 | 5533 | { |
2b6080f2 | 5534 | struct dentry *d_percpu = tracing_dentry_percpu(tr, cpu); |
5452af66 | 5535 | struct dentry *d_cpu; |
dd49a38c | 5536 | char cpu_dir[30]; /* 30 characters should be more than enough */ |
b04cc6b1 | 5537 | |
0a3d7ce7 NK |
5538 | if (!d_percpu) |
5539 | return; | |
5540 | ||
dd49a38c | 5541 | snprintf(cpu_dir, 30, "cpu%ld", cpu); |
8656e7a2 FW |
5542 | d_cpu = debugfs_create_dir(cpu_dir, d_percpu); |
5543 | if (!d_cpu) { | |
5544 | pr_warning("Could not create debugfs '%s' entry\n", cpu_dir); | |
5545 | return; | |
5546 | } | |
b04cc6b1 | 5547 | |
8656e7a2 | 5548 | /* per cpu trace_pipe */ |
649e9c70 | 5549 | trace_create_cpu_file("trace_pipe", 0444, d_cpu, |
15544209 | 5550 | tr, cpu, &tracing_pipe_fops); |
b04cc6b1 FW |
5551 | |
5552 | /* per cpu trace */ | |
649e9c70 | 5553 | trace_create_cpu_file("trace", 0644, d_cpu, |
6484c71c | 5554 | tr, cpu, &tracing_fops); |
7f96f93f | 5555 | |
649e9c70 | 5556 | trace_create_cpu_file("trace_pipe_raw", 0444, d_cpu, |
46ef2be0 | 5557 | tr, cpu, &tracing_buffers_fops); |
7f96f93f | 5558 | |
649e9c70 | 5559 | trace_create_cpu_file("stats", 0444, d_cpu, |
4d3435b8 | 5560 | tr, cpu, &tracing_stats_fops); |
438ced17 | 5561 | |
649e9c70 | 5562 | trace_create_cpu_file("buffer_size_kb", 0444, d_cpu, |
0bc392ee | 5563 | tr, cpu, &tracing_entries_fops); |
f1affcaa SRRH |
5564 | |
5565 | #ifdef CONFIG_TRACER_SNAPSHOT | |
649e9c70 | 5566 | trace_create_cpu_file("snapshot", 0644, d_cpu, |
6484c71c | 5567 | tr, cpu, &snapshot_fops); |
6de58e62 | 5568 | |
649e9c70 | 5569 | trace_create_cpu_file("snapshot_raw", 0444, d_cpu, |
46ef2be0 | 5570 | tr, cpu, &snapshot_raw_fops); |
f1affcaa | 5571 | #endif |
b04cc6b1 FW |
5572 | } |
5573 | ||
60a11774 SR |
5574 | #ifdef CONFIG_FTRACE_SELFTEST |
5575 | /* Let selftest have access to static functions in this file */ | |
5576 | #include "trace_selftest.c" | |
5577 | #endif | |
5578 | ||
577b785f SR |
5579 | struct trace_option_dentry { |
5580 | struct tracer_opt *opt; | |
5581 | struct tracer_flags *flags; | |
2b6080f2 | 5582 | struct trace_array *tr; |
577b785f SR |
5583 | struct dentry *entry; |
5584 | }; | |
5585 | ||
5586 | static ssize_t | |
5587 | trace_options_read(struct file *filp, char __user *ubuf, size_t cnt, | |
5588 | loff_t *ppos) | |
5589 | { | |
5590 | struct trace_option_dentry *topt = filp->private_data; | |
5591 | char *buf; | |
5592 | ||
5593 | if (topt->flags->val & topt->opt->bit) | |
5594 | buf = "1\n"; | |
5595 | else | |
5596 | buf = "0\n"; | |
5597 | ||
5598 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2); | |
5599 | } | |
5600 | ||
5601 | static ssize_t | |
5602 | trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt, | |
5603 | loff_t *ppos) | |
5604 | { | |
5605 | struct trace_option_dentry *topt = filp->private_data; | |
5606 | unsigned long val; | |
577b785f SR |
5607 | int ret; |
5608 | ||
22fe9b54 PH |
5609 | ret = kstrtoul_from_user(ubuf, cnt, 10, &val); |
5610 | if (ret) | |
577b785f SR |
5611 | return ret; |
5612 | ||
8d18eaaf LZ |
5613 | if (val != 0 && val != 1) |
5614 | return -EINVAL; | |
577b785f | 5615 | |
8d18eaaf | 5616 | if (!!(topt->flags->val & topt->opt->bit) != val) { |
577b785f | 5617 | mutex_lock(&trace_types_lock); |
2b6080f2 | 5618 | ret = __set_tracer_option(topt->tr->current_trace, topt->flags, |
c757bea9 | 5619 | topt->opt, !val); |
577b785f SR |
5620 | mutex_unlock(&trace_types_lock); |
5621 | if (ret) | |
5622 | return ret; | |
577b785f SR |
5623 | } |
5624 | ||
5625 | *ppos += cnt; | |
5626 | ||
5627 | return cnt; | |
5628 | } | |
5629 | ||
5630 | ||
5631 | static const struct file_operations trace_options_fops = { | |
5632 | .open = tracing_open_generic, | |
5633 | .read = trace_options_read, | |
5634 | .write = trace_options_write, | |
b444786f | 5635 | .llseek = generic_file_llseek, |
577b785f SR |
5636 | }; |
5637 | ||
a8259075 SR |
5638 | static ssize_t |
5639 | trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt, | |
5640 | loff_t *ppos) | |
5641 | { | |
5642 | long index = (long)filp->private_data; | |
5643 | char *buf; | |
5644 | ||
5645 | if (trace_flags & (1 << index)) | |
5646 | buf = "1\n"; | |
5647 | else | |
5648 | buf = "0\n"; | |
5649 | ||
5650 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2); | |
5651 | } | |
5652 | ||
5653 | static ssize_t | |
5654 | trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt, | |
5655 | loff_t *ppos) | |
5656 | { | |
2b6080f2 | 5657 | struct trace_array *tr = &global_trace; |
a8259075 | 5658 | long index = (long)filp->private_data; |
a8259075 SR |
5659 | unsigned long val; |
5660 | int ret; | |
5661 | ||
22fe9b54 PH |
5662 | ret = kstrtoul_from_user(ubuf, cnt, 10, &val); |
5663 | if (ret) | |
a8259075 SR |
5664 | return ret; |
5665 | ||
f2d84b65 | 5666 | if (val != 0 && val != 1) |
a8259075 | 5667 | return -EINVAL; |
69d34da2 SRRH |
5668 | |
5669 | mutex_lock(&trace_types_lock); | |
2b6080f2 | 5670 | ret = set_tracer_flag(tr, 1 << index, val); |
69d34da2 | 5671 | mutex_unlock(&trace_types_lock); |
a8259075 | 5672 | |
613f04a0 SRRH |
5673 | if (ret < 0) |
5674 | return ret; | |
5675 | ||
a8259075 SR |
5676 | *ppos += cnt; |
5677 | ||
5678 | return cnt; | |
5679 | } | |
5680 | ||
a8259075 SR |
5681 | static const struct file_operations trace_options_core_fops = { |
5682 | .open = tracing_open_generic, | |
5683 | .read = trace_options_core_read, | |
5684 | .write = trace_options_core_write, | |
b444786f | 5685 | .llseek = generic_file_llseek, |
a8259075 SR |
5686 | }; |
5687 | ||
5452af66 | 5688 | struct dentry *trace_create_file(const char *name, |
f4ae40a6 | 5689 | umode_t mode, |
5452af66 FW |
5690 | struct dentry *parent, |
5691 | void *data, | |
5692 | const struct file_operations *fops) | |
5693 | { | |
5694 | struct dentry *ret; | |
5695 | ||
5696 | ret = debugfs_create_file(name, mode, parent, data, fops); | |
5697 | if (!ret) | |
5698 | pr_warning("Could not create debugfs '%s' entry\n", name); | |
5699 | ||
5700 | return ret; | |
5701 | } | |
5702 | ||
5703 | ||
2b6080f2 | 5704 | static struct dentry *trace_options_init_dentry(struct trace_array *tr) |
a8259075 SR |
5705 | { |
5706 | struct dentry *d_tracer; | |
a8259075 | 5707 | |
2b6080f2 SR |
5708 | if (tr->options) |
5709 | return tr->options; | |
a8259075 | 5710 | |
2b6080f2 | 5711 | d_tracer = tracing_init_dentry_tr(tr); |
a8259075 SR |
5712 | if (!d_tracer) |
5713 | return NULL; | |
5714 | ||
2b6080f2 SR |
5715 | tr->options = debugfs_create_dir("options", d_tracer); |
5716 | if (!tr->options) { | |
a8259075 SR |
5717 | pr_warning("Could not create debugfs directory 'options'\n"); |
5718 | return NULL; | |
5719 | } | |
5720 | ||
2b6080f2 | 5721 | return tr->options; |
a8259075 SR |
5722 | } |
5723 | ||
577b785f | 5724 | static void |
2b6080f2 SR |
5725 | create_trace_option_file(struct trace_array *tr, |
5726 | struct trace_option_dentry *topt, | |
577b785f SR |
5727 | struct tracer_flags *flags, |
5728 | struct tracer_opt *opt) | |
5729 | { | |
5730 | struct dentry *t_options; | |
577b785f | 5731 | |
2b6080f2 | 5732 | t_options = trace_options_init_dentry(tr); |
577b785f SR |
5733 | if (!t_options) |
5734 | return; | |
5735 | ||
5736 | topt->flags = flags; | |
5737 | topt->opt = opt; | |
2b6080f2 | 5738 | topt->tr = tr; |
577b785f | 5739 | |
5452af66 | 5740 | topt->entry = trace_create_file(opt->name, 0644, t_options, topt, |
577b785f SR |
5741 | &trace_options_fops); |
5742 | ||
577b785f SR |
5743 | } |
5744 | ||
5745 | static struct trace_option_dentry * | |
2b6080f2 | 5746 | create_trace_option_files(struct trace_array *tr, struct tracer *tracer) |
577b785f SR |
5747 | { |
5748 | struct trace_option_dentry *topts; | |
5749 | struct tracer_flags *flags; | |
5750 | struct tracer_opt *opts; | |
5751 | int cnt; | |
5752 | ||
5753 | if (!tracer) | |
5754 | return NULL; | |
5755 | ||
5756 | flags = tracer->flags; | |
5757 | ||
5758 | if (!flags || !flags->opts) | |
5759 | return NULL; | |
5760 | ||
5761 | opts = flags->opts; | |
5762 | ||
5763 | for (cnt = 0; opts[cnt].name; cnt++) | |
5764 | ; | |
5765 | ||
0cfe8245 | 5766 | topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL); |
577b785f SR |
5767 | if (!topts) |
5768 | return NULL; | |
5769 | ||
5770 | for (cnt = 0; opts[cnt].name; cnt++) | |
2b6080f2 | 5771 | create_trace_option_file(tr, &topts[cnt], flags, |
577b785f SR |
5772 | &opts[cnt]); |
5773 | ||
5774 | return topts; | |
5775 | } | |
5776 | ||
5777 | static void | |
5778 | destroy_trace_option_files(struct trace_option_dentry *topts) | |
5779 | { | |
5780 | int cnt; | |
5781 | ||
5782 | if (!topts) | |
5783 | return; | |
5784 | ||
5785 | for (cnt = 0; topts[cnt].opt; cnt++) { | |
5786 | if (topts[cnt].entry) | |
5787 | debugfs_remove(topts[cnt].entry); | |
5788 | } | |
5789 | ||
5790 | kfree(topts); | |
5791 | } | |
5792 | ||
a8259075 | 5793 | static struct dentry * |
2b6080f2 SR |
5794 | create_trace_option_core_file(struct trace_array *tr, |
5795 | const char *option, long index) | |
a8259075 SR |
5796 | { |
5797 | struct dentry *t_options; | |
a8259075 | 5798 | |
2b6080f2 | 5799 | t_options = trace_options_init_dentry(tr); |
a8259075 SR |
5800 | if (!t_options) |
5801 | return NULL; | |
5802 | ||
5452af66 | 5803 | return trace_create_file(option, 0644, t_options, (void *)index, |
a8259075 | 5804 | &trace_options_core_fops); |
a8259075 SR |
5805 | } |
5806 | ||
2b6080f2 | 5807 | static __init void create_trace_options_dir(struct trace_array *tr) |
a8259075 SR |
5808 | { |
5809 | struct dentry *t_options; | |
a8259075 SR |
5810 | int i; |
5811 | ||
2b6080f2 | 5812 | t_options = trace_options_init_dentry(tr); |
a8259075 SR |
5813 | if (!t_options) |
5814 | return; | |
5815 | ||
5452af66 | 5816 | for (i = 0; trace_options[i]; i++) |
2b6080f2 | 5817 | create_trace_option_core_file(tr, trace_options[i], i); |
a8259075 SR |
5818 | } |
5819 | ||
499e5470 SR |
5820 | static ssize_t |
5821 | rb_simple_read(struct file *filp, char __user *ubuf, | |
5822 | size_t cnt, loff_t *ppos) | |
5823 | { | |
348f0fc2 | 5824 | struct trace_array *tr = filp->private_data; |
499e5470 SR |
5825 | char buf[64]; |
5826 | int r; | |
5827 | ||
10246fa3 | 5828 | r = tracer_tracing_is_on(tr); |
499e5470 SR |
5829 | r = sprintf(buf, "%d\n", r); |
5830 | ||
5831 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); | |
5832 | } | |
5833 | ||
5834 | static ssize_t | |
5835 | rb_simple_write(struct file *filp, const char __user *ubuf, | |
5836 | size_t cnt, loff_t *ppos) | |
5837 | { | |
348f0fc2 | 5838 | struct trace_array *tr = filp->private_data; |
12883efb | 5839 | struct ring_buffer *buffer = tr->trace_buffer.buffer; |
499e5470 SR |
5840 | unsigned long val; |
5841 | int ret; | |
5842 | ||
5843 | ret = kstrtoul_from_user(ubuf, cnt, 10, &val); | |
5844 | if (ret) | |
5845 | return ret; | |
5846 | ||
5847 | if (buffer) { | |
2df8f8a6 SR |
5848 | mutex_lock(&trace_types_lock); |
5849 | if (val) { | |
10246fa3 | 5850 | tracer_tracing_on(tr); |
2b6080f2 SR |
5851 | if (tr->current_trace->start) |
5852 | tr->current_trace->start(tr); | |
2df8f8a6 | 5853 | } else { |
10246fa3 | 5854 | tracer_tracing_off(tr); |
2b6080f2 SR |
5855 | if (tr->current_trace->stop) |
5856 | tr->current_trace->stop(tr); | |
2df8f8a6 SR |
5857 | } |
5858 | mutex_unlock(&trace_types_lock); | |
499e5470 SR |
5859 | } |
5860 | ||
5861 | (*ppos)++; | |
5862 | ||
5863 | return cnt; | |
5864 | } | |
5865 | ||
5866 | static const struct file_operations rb_simple_fops = { | |
7b85af63 | 5867 | .open = tracing_open_generic_tr, |
499e5470 SR |
5868 | .read = rb_simple_read, |
5869 | .write = rb_simple_write, | |
7b85af63 | 5870 | .release = tracing_release_generic_tr, |
499e5470 SR |
5871 | .llseek = default_llseek, |
5872 | }; | |
5873 | ||
277ba044 SR |
5874 | struct dentry *trace_instance_dir; |
5875 | ||
5876 | static void | |
5877 | init_tracer_debugfs(struct trace_array *tr, struct dentry *d_tracer); | |
5878 | ||
55034cd6 SRRH |
5879 | static int |
5880 | allocate_trace_buffer(struct trace_array *tr, struct trace_buffer *buf, int size) | |
277ba044 SR |
5881 | { |
5882 | enum ring_buffer_flags rb_flags; | |
737223fb SRRH |
5883 | |
5884 | rb_flags = trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0; | |
5885 | ||
55034cd6 SRRH |
5886 | buf->buffer = ring_buffer_alloc(size, rb_flags); |
5887 | if (!buf->buffer) | |
5888 | return -ENOMEM; | |
737223fb | 5889 | |
55034cd6 SRRH |
5890 | buf->data = alloc_percpu(struct trace_array_cpu); |
5891 | if (!buf->data) { | |
5892 | ring_buffer_free(buf->buffer); | |
5893 | return -ENOMEM; | |
5894 | } | |
737223fb | 5895 | |
737223fb SRRH |
5896 | /* Allocate the first page for all buffers */ |
5897 | set_buffer_entries(&tr->trace_buffer, | |
5898 | ring_buffer_size(tr->trace_buffer.buffer, 0)); | |
5899 | ||
55034cd6 SRRH |
5900 | return 0; |
5901 | } | |
737223fb | 5902 | |
55034cd6 SRRH |
5903 | static int allocate_trace_buffers(struct trace_array *tr, int size) |
5904 | { | |
5905 | int ret; | |
737223fb | 5906 | |
55034cd6 SRRH |
5907 | ret = allocate_trace_buffer(tr, &tr->trace_buffer, size); |
5908 | if (ret) | |
5909 | return ret; | |
737223fb | 5910 | |
55034cd6 SRRH |
5911 | #ifdef CONFIG_TRACER_MAX_TRACE |
5912 | ret = allocate_trace_buffer(tr, &tr->max_buffer, | |
5913 | allocate_snapshot ? size : 1); | |
5914 | if (WARN_ON(ret)) { | |
737223fb | 5915 | ring_buffer_free(tr->trace_buffer.buffer); |
55034cd6 SRRH |
5916 | free_percpu(tr->trace_buffer.data); |
5917 | return -ENOMEM; | |
5918 | } | |
5919 | tr->allocated_snapshot = allocate_snapshot; | |
737223fb | 5920 | |
55034cd6 SRRH |
5921 | /* |
5922 | * Only the top level trace array gets its snapshot allocated | |
5923 | * from the kernel command line. | |
5924 | */ | |
5925 | allocate_snapshot = false; | |
737223fb | 5926 | #endif |
55034cd6 | 5927 | return 0; |
737223fb SRRH |
5928 | } |
5929 | ||
5930 | static int new_instance_create(const char *name) | |
5931 | { | |
277ba044 SR |
5932 | struct trace_array *tr; |
5933 | int ret; | |
277ba044 SR |
5934 | |
5935 | mutex_lock(&trace_types_lock); | |
5936 | ||
5937 | ret = -EEXIST; | |
5938 | list_for_each_entry(tr, &ftrace_trace_arrays, list) { | |
5939 | if (tr->name && strcmp(tr->name, name) == 0) | |
5940 | goto out_unlock; | |
5941 | } | |
5942 | ||
5943 | ret = -ENOMEM; | |
5944 | tr = kzalloc(sizeof(*tr), GFP_KERNEL); | |
5945 | if (!tr) | |
5946 | goto out_unlock; | |
5947 | ||
5948 | tr->name = kstrdup(name, GFP_KERNEL); | |
5949 | if (!tr->name) | |
5950 | goto out_free_tr; | |
5951 | ||
ccfe9e42 AL |
5952 | if (!alloc_cpumask_var(&tr->tracing_cpumask, GFP_KERNEL)) |
5953 | goto out_free_tr; | |
5954 | ||
5955 | cpumask_copy(tr->tracing_cpumask, cpu_all_mask); | |
5956 | ||
277ba044 SR |
5957 | raw_spin_lock_init(&tr->start_lock); |
5958 | ||
5959 | tr->current_trace = &nop_trace; | |
5960 | ||
5961 | INIT_LIST_HEAD(&tr->systems); | |
5962 | INIT_LIST_HEAD(&tr->events); | |
5963 | ||
737223fb | 5964 | if (allocate_trace_buffers(tr, trace_buf_size) < 0) |
277ba044 SR |
5965 | goto out_free_tr; |
5966 | ||
277ba044 SR |
5967 | tr->dir = debugfs_create_dir(name, trace_instance_dir); |
5968 | if (!tr->dir) | |
5969 | goto out_free_tr; | |
5970 | ||
5971 | ret = event_trace_add_tracer(tr->dir, tr); | |
609e85a7 AL |
5972 | if (ret) { |
5973 | debugfs_remove_recursive(tr->dir); | |
277ba044 | 5974 | goto out_free_tr; |
609e85a7 | 5975 | } |
277ba044 SR |
5976 | |
5977 | init_tracer_debugfs(tr, tr->dir); | |
5978 | ||
5979 | list_add(&tr->list, &ftrace_trace_arrays); | |
5980 | ||
5981 | mutex_unlock(&trace_types_lock); | |
5982 | ||
5983 | return 0; | |
5984 | ||
5985 | out_free_tr: | |
12883efb SRRH |
5986 | if (tr->trace_buffer.buffer) |
5987 | ring_buffer_free(tr->trace_buffer.buffer); | |
ccfe9e42 | 5988 | free_cpumask_var(tr->tracing_cpumask); |
277ba044 SR |
5989 | kfree(tr->name); |
5990 | kfree(tr); | |
5991 | ||
5992 | out_unlock: | |
5993 | mutex_unlock(&trace_types_lock); | |
5994 | ||
5995 | return ret; | |
5996 | ||
5997 | } | |
5998 | ||
0c8916c3 SR |
5999 | static int instance_delete(const char *name) |
6000 | { | |
6001 | struct trace_array *tr; | |
6002 | int found = 0; | |
6003 | int ret; | |
6004 | ||
6005 | mutex_lock(&trace_types_lock); | |
6006 | ||
6007 | ret = -ENODEV; | |
6008 | list_for_each_entry(tr, &ftrace_trace_arrays, list) { | |
6009 | if (tr->name && strcmp(tr->name, name) == 0) { | |
6010 | found = 1; | |
6011 | break; | |
6012 | } | |
6013 | } | |
6014 | if (!found) | |
6015 | goto out_unlock; | |
6016 | ||
a695cb58 SRRH |
6017 | ret = -EBUSY; |
6018 | if (tr->ref) | |
6019 | goto out_unlock; | |
6020 | ||
0c8916c3 SR |
6021 | list_del(&tr->list); |
6022 | ||
6023 | event_trace_del_tracer(tr); | |
6024 | debugfs_remove_recursive(tr->dir); | |
12883efb SRRH |
6025 | free_percpu(tr->trace_buffer.data); |
6026 | ring_buffer_free(tr->trace_buffer.buffer); | |
0c8916c3 SR |
6027 | |
6028 | kfree(tr->name); | |
6029 | kfree(tr); | |
6030 | ||
6031 | ret = 0; | |
6032 | ||
6033 | out_unlock: | |
6034 | mutex_unlock(&trace_types_lock); | |
6035 | ||
6036 | return ret; | |
6037 | } | |
6038 | ||
277ba044 SR |
6039 | static int instance_mkdir (struct inode *inode, struct dentry *dentry, umode_t mode) |
6040 | { | |
6041 | struct dentry *parent; | |
6042 | int ret; | |
6043 | ||
6044 | /* Paranoid: Make sure the parent is the "instances" directory */ | |
6045 | parent = hlist_entry(inode->i_dentry.first, struct dentry, d_alias); | |
6046 | if (WARN_ON_ONCE(parent != trace_instance_dir)) | |
6047 | return -ENOENT; | |
6048 | ||
6049 | /* | |
6050 | * The inode mutex is locked, but debugfs_create_dir() will also | |
6051 | * take the mutex. As the instances directory can not be destroyed | |
6052 | * or changed in any other way, it is safe to unlock it, and | |
6053 | * let the dentry try. If two users try to make the same dir at | |
6054 | * the same time, then the new_instance_create() will determine the | |
6055 | * winner. | |
6056 | */ | |
6057 | mutex_unlock(&inode->i_mutex); | |
6058 | ||
6059 | ret = new_instance_create(dentry->d_iname); | |
6060 | ||
6061 | mutex_lock(&inode->i_mutex); | |
6062 | ||
6063 | return ret; | |
6064 | } | |
6065 | ||
0c8916c3 SR |
6066 | static int instance_rmdir(struct inode *inode, struct dentry *dentry) |
6067 | { | |
6068 | struct dentry *parent; | |
6069 | int ret; | |
6070 | ||
6071 | /* Paranoid: Make sure the parent is the "instances" directory */ | |
6072 | parent = hlist_entry(inode->i_dentry.first, struct dentry, d_alias); | |
6073 | if (WARN_ON_ONCE(parent != trace_instance_dir)) | |
6074 | return -ENOENT; | |
6075 | ||
6076 | /* The caller did a dget() on dentry */ | |
6077 | mutex_unlock(&dentry->d_inode->i_mutex); | |
6078 | ||
6079 | /* | |
6080 | * The inode mutex is locked, but debugfs_create_dir() will also | |
6081 | * take the mutex. As the instances directory can not be destroyed | |
6082 | * or changed in any other way, it is safe to unlock it, and | |
6083 | * let the dentry try. If two users try to make the same dir at | |
6084 | * the same time, then the instance_delete() will determine the | |
6085 | * winner. | |
6086 | */ | |
6087 | mutex_unlock(&inode->i_mutex); | |
6088 | ||
6089 | ret = instance_delete(dentry->d_iname); | |
6090 | ||
6091 | mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT); | |
6092 | mutex_lock(&dentry->d_inode->i_mutex); | |
6093 | ||
6094 | return ret; | |
6095 | } | |
6096 | ||
277ba044 SR |
6097 | static const struct inode_operations instance_dir_inode_operations = { |
6098 | .lookup = simple_lookup, | |
6099 | .mkdir = instance_mkdir, | |
0c8916c3 | 6100 | .rmdir = instance_rmdir, |
277ba044 SR |
6101 | }; |
6102 | ||
6103 | static __init void create_trace_instances(struct dentry *d_tracer) | |
6104 | { | |
6105 | trace_instance_dir = debugfs_create_dir("instances", d_tracer); | |
6106 | if (WARN_ON(!trace_instance_dir)) | |
6107 | return; | |
6108 | ||
6109 | /* Hijack the dir inode operations, to allow mkdir */ | |
6110 | trace_instance_dir->d_inode->i_op = &instance_dir_inode_operations; | |
6111 | } | |
6112 | ||
2b6080f2 SR |
6113 | static void |
6114 | init_tracer_debugfs(struct trace_array *tr, struct dentry *d_tracer) | |
6115 | { | |
121aaee7 | 6116 | int cpu; |
2b6080f2 | 6117 | |
ccfe9e42 AL |
6118 | trace_create_file("tracing_cpumask", 0644, d_tracer, |
6119 | tr, &tracing_cpumask_fops); | |
6120 | ||
2b6080f2 SR |
6121 | trace_create_file("trace_options", 0644, d_tracer, |
6122 | tr, &tracing_iter_fops); | |
6123 | ||
6124 | trace_create_file("trace", 0644, d_tracer, | |
6484c71c | 6125 | tr, &tracing_fops); |
2b6080f2 SR |
6126 | |
6127 | trace_create_file("trace_pipe", 0444, d_tracer, | |
15544209 | 6128 | tr, &tracing_pipe_fops); |
2b6080f2 SR |
6129 | |
6130 | trace_create_file("buffer_size_kb", 0644, d_tracer, | |
0bc392ee | 6131 | tr, &tracing_entries_fops); |
2b6080f2 SR |
6132 | |
6133 | trace_create_file("buffer_total_size_kb", 0444, d_tracer, | |
6134 | tr, &tracing_total_entries_fops); | |
6135 | ||
238ae93d | 6136 | trace_create_file("free_buffer", 0200, d_tracer, |
2b6080f2 SR |
6137 | tr, &tracing_free_buffer_fops); |
6138 | ||
6139 | trace_create_file("trace_marker", 0220, d_tracer, | |
6140 | tr, &tracing_mark_fops); | |
6141 | ||
6142 | trace_create_file("trace_clock", 0644, d_tracer, tr, | |
6143 | &trace_clock_fops); | |
6144 | ||
6145 | trace_create_file("tracing_on", 0644, d_tracer, | |
6484c71c | 6146 | tr, &rb_simple_fops); |
ce9bae55 SRRH |
6147 | |
6148 | #ifdef CONFIG_TRACER_SNAPSHOT | |
6149 | trace_create_file("snapshot", 0644, d_tracer, | |
6484c71c | 6150 | tr, &snapshot_fops); |
ce9bae55 | 6151 | #endif |
121aaee7 SRRH |
6152 | |
6153 | for_each_tracing_cpu(cpu) | |
6154 | tracing_init_debugfs_percpu(tr, cpu); | |
6155 | ||
2b6080f2 SR |
6156 | } |
6157 | ||
b5ad384e | 6158 | static __init int tracer_init_debugfs(void) |
bc0c38d1 SR |
6159 | { |
6160 | struct dentry *d_tracer; | |
bc0c38d1 | 6161 | |
7e53bd42 LJ |
6162 | trace_access_lock_init(); |
6163 | ||
bc0c38d1 | 6164 | d_tracer = tracing_init_dentry(); |
ed6f1c99 NK |
6165 | if (!d_tracer) |
6166 | return 0; | |
bc0c38d1 | 6167 | |
2b6080f2 | 6168 | init_tracer_debugfs(&global_trace, d_tracer); |
bc0c38d1 | 6169 | |
5452af66 FW |
6170 | trace_create_file("available_tracers", 0444, d_tracer, |
6171 | &global_trace, &show_traces_fops); | |
6172 | ||
339ae5d3 | 6173 | trace_create_file("current_tracer", 0644, d_tracer, |
5452af66 FW |
6174 | &global_trace, &set_tracer_fops); |
6175 | ||
5d4a9dba | 6176 | #ifdef CONFIG_TRACER_MAX_TRACE |
5452af66 FW |
6177 | trace_create_file("tracing_max_latency", 0644, d_tracer, |
6178 | &tracing_max_latency, &tracing_max_lat_fops); | |
0e950173 | 6179 | #endif |
5452af66 FW |
6180 | |
6181 | trace_create_file("tracing_thresh", 0644, d_tracer, | |
6182 | &tracing_thresh, &tracing_max_lat_fops); | |
a8259075 | 6183 | |
339ae5d3 | 6184 | trace_create_file("README", 0444, d_tracer, |
5452af66 FW |
6185 | NULL, &tracing_readme_fops); |
6186 | ||
69abe6a5 AP |
6187 | trace_create_file("saved_cmdlines", 0444, d_tracer, |
6188 | NULL, &tracing_saved_cmdlines_fops); | |
5bf9a1ee | 6189 | |
bc0c38d1 | 6190 | #ifdef CONFIG_DYNAMIC_FTRACE |
5452af66 FW |
6191 | trace_create_file("dyn_ftrace_total_info", 0444, d_tracer, |
6192 | &ftrace_update_tot_cnt, &tracing_dyn_info_fops); | |
bc0c38d1 | 6193 | #endif |
b04cc6b1 | 6194 | |
277ba044 | 6195 | create_trace_instances(d_tracer); |
5452af66 | 6196 | |
2b6080f2 | 6197 | create_trace_options_dir(&global_trace); |
b04cc6b1 | 6198 | |
b5ad384e | 6199 | return 0; |
bc0c38d1 SR |
6200 | } |
6201 | ||
3f5a54e3 SR |
6202 | static int trace_panic_handler(struct notifier_block *this, |
6203 | unsigned long event, void *unused) | |
6204 | { | |
944ac425 | 6205 | if (ftrace_dump_on_oops) |
cecbca96 | 6206 | ftrace_dump(ftrace_dump_on_oops); |
3f5a54e3 SR |
6207 | return NOTIFY_OK; |
6208 | } | |
6209 | ||
6210 | static struct notifier_block trace_panic_notifier = { | |
6211 | .notifier_call = trace_panic_handler, | |
6212 | .next = NULL, | |
6213 | .priority = 150 /* priority: INT_MAX >= x >= 0 */ | |
6214 | }; | |
6215 | ||
6216 | static int trace_die_handler(struct notifier_block *self, | |
6217 | unsigned long val, | |
6218 | void *data) | |
6219 | { | |
6220 | switch (val) { | |
6221 | case DIE_OOPS: | |
944ac425 | 6222 | if (ftrace_dump_on_oops) |
cecbca96 | 6223 | ftrace_dump(ftrace_dump_on_oops); |
3f5a54e3 SR |
6224 | break; |
6225 | default: | |
6226 | break; | |
6227 | } | |
6228 | return NOTIFY_OK; | |
6229 | } | |
6230 | ||
6231 | static struct notifier_block trace_die_notifier = { | |
6232 | .notifier_call = trace_die_handler, | |
6233 | .priority = 200 | |
6234 | }; | |
6235 | ||
6236 | /* | |
6237 | * printk is set to max of 1024, we really don't need it that big. | |
6238 | * Nothing should be printing 1000 characters anyway. | |
6239 | */ | |
6240 | #define TRACE_MAX_PRINT 1000 | |
6241 | ||
6242 | /* | |
6243 | * Define here KERN_TRACE so that we have one place to modify | |
6244 | * it if we decide to change what log level the ftrace dump | |
6245 | * should be at. | |
6246 | */ | |
428aee14 | 6247 | #define KERN_TRACE KERN_EMERG |
3f5a54e3 | 6248 | |
955b61e5 | 6249 | void |
3f5a54e3 SR |
6250 | trace_printk_seq(struct trace_seq *s) |
6251 | { | |
6252 | /* Probably should print a warning here. */ | |
bd6df187 J |
6253 | if (s->len >= TRACE_MAX_PRINT) |
6254 | s->len = TRACE_MAX_PRINT; | |
3f5a54e3 SR |
6255 | |
6256 | /* should be zero ended, but we are paranoid. */ | |
6257 | s->buffer[s->len] = 0; | |
6258 | ||
6259 | printk(KERN_TRACE "%s", s->buffer); | |
6260 | ||
f9520750 | 6261 | trace_seq_init(s); |
3f5a54e3 SR |
6262 | } |
6263 | ||
955b61e5 JW |
6264 | void trace_init_global_iter(struct trace_iterator *iter) |
6265 | { | |
6266 | iter->tr = &global_trace; | |
2b6080f2 | 6267 | iter->trace = iter->tr->current_trace; |
ae3b5093 | 6268 | iter->cpu_file = RING_BUFFER_ALL_CPUS; |
12883efb | 6269 | iter->trace_buffer = &global_trace.trace_buffer; |
b2f974d6 CS |
6270 | |
6271 | if (iter->trace && iter->trace->open) | |
6272 | iter->trace->open(iter); | |
6273 | ||
6274 | /* Annotate start of buffers if we had overruns */ | |
6275 | if (ring_buffer_overruns(iter->trace_buffer->buffer)) | |
6276 | iter->iter_flags |= TRACE_FILE_ANNOTATE; | |
6277 | ||
6278 | /* Output in nanoseconds only if we are using a clock in nanoseconds. */ | |
6279 | if (trace_clocks[iter->tr->clock_id].in_ns) | |
6280 | iter->iter_flags |= TRACE_FILE_TIME_IN_NS; | |
955b61e5 JW |
6281 | } |
6282 | ||
7fe70b57 | 6283 | void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) |
3f5a54e3 | 6284 | { |
3f5a54e3 SR |
6285 | /* use static because iter can be a bit big for the stack */ |
6286 | static struct trace_iterator iter; | |
7fe70b57 | 6287 | static atomic_t dump_running; |
cf586b61 | 6288 | unsigned int old_userobj; |
d769041f SR |
6289 | unsigned long flags; |
6290 | int cnt = 0, cpu; | |
3f5a54e3 | 6291 | |
7fe70b57 SRRH |
6292 | /* Only allow one dump user at a time. */ |
6293 | if (atomic_inc_return(&dump_running) != 1) { | |
6294 | atomic_dec(&dump_running); | |
6295 | return; | |
6296 | } | |
3f5a54e3 | 6297 | |
7fe70b57 SRRH |
6298 | /* |
6299 | * Always turn off tracing when we dump. | |
6300 | * We don't need to show trace output of what happens | |
6301 | * between multiple crashes. | |
6302 | * | |
6303 | * If the user does a sysrq-z, then they can re-enable | |
6304 | * tracing with echo 1 > tracing_on. | |
6305 | */ | |
0ee6b6cf | 6306 | tracing_off(); |
cf586b61 | 6307 | |
7fe70b57 | 6308 | local_irq_save(flags); |
3f5a54e3 | 6309 | |
38dbe0b1 | 6310 | /* Simulate the iterator */ |
955b61e5 JW |
6311 | trace_init_global_iter(&iter); |
6312 | ||
d769041f | 6313 | for_each_tracing_cpu(cpu) { |
12883efb | 6314 | atomic_inc(&per_cpu_ptr(iter.tr->trace_buffer.data, cpu)->disabled); |
d769041f SR |
6315 | } |
6316 | ||
cf586b61 FW |
6317 | old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ; |
6318 | ||
b54d3de9 TE |
6319 | /* don't look at user memory in panic mode */ |
6320 | trace_flags &= ~TRACE_ITER_SYM_USEROBJ; | |
6321 | ||
cecbca96 FW |
6322 | switch (oops_dump_mode) { |
6323 | case DUMP_ALL: | |
ae3b5093 | 6324 | iter.cpu_file = RING_BUFFER_ALL_CPUS; |
cecbca96 FW |
6325 | break; |
6326 | case DUMP_ORIG: | |
6327 | iter.cpu_file = raw_smp_processor_id(); | |
6328 | break; | |
6329 | case DUMP_NONE: | |
6330 | goto out_enable; | |
6331 | default: | |
6332 | printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n"); | |
ae3b5093 | 6333 | iter.cpu_file = RING_BUFFER_ALL_CPUS; |
cecbca96 FW |
6334 | } |
6335 | ||
6336 | printk(KERN_TRACE "Dumping ftrace buffer:\n"); | |
3f5a54e3 | 6337 | |
7fe70b57 SRRH |
6338 | /* Did function tracer already get disabled? */ |
6339 | if (ftrace_is_dead()) { | |
6340 | printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n"); | |
6341 | printk("# MAY BE MISSING FUNCTION EVENTS\n"); | |
6342 | } | |
6343 | ||
3f5a54e3 SR |
6344 | /* |
6345 | * We need to stop all tracing on all CPUS to read the | |
6346 | * the next buffer. This is a bit expensive, but is | |
6347 | * not done often. We fill all what we can read, | |
6348 | * and then release the locks again. | |
6349 | */ | |
6350 | ||
3f5a54e3 SR |
6351 | while (!trace_empty(&iter)) { |
6352 | ||
6353 | if (!cnt) | |
6354 | printk(KERN_TRACE "---------------------------------\n"); | |
6355 | ||
6356 | cnt++; | |
6357 | ||
6358 | /* reset all but tr, trace, and overruns */ | |
6359 | memset(&iter.seq, 0, | |
6360 | sizeof(struct trace_iterator) - | |
6361 | offsetof(struct trace_iterator, seq)); | |
6362 | iter.iter_flags |= TRACE_FILE_LAT_FMT; | |
6363 | iter.pos = -1; | |
6364 | ||
955b61e5 | 6365 | if (trace_find_next_entry_inc(&iter) != NULL) { |
74e7ff8c LJ |
6366 | int ret; |
6367 | ||
6368 | ret = print_trace_line(&iter); | |
6369 | if (ret != TRACE_TYPE_NO_CONSUME) | |
6370 | trace_consume(&iter); | |
3f5a54e3 | 6371 | } |
b892e5c8 | 6372 | touch_nmi_watchdog(); |
3f5a54e3 SR |
6373 | |
6374 | trace_printk_seq(&iter.seq); | |
6375 | } | |
6376 | ||
6377 | if (!cnt) | |
6378 | printk(KERN_TRACE " (ftrace buffer empty)\n"); | |
6379 | else | |
6380 | printk(KERN_TRACE "---------------------------------\n"); | |
6381 | ||
cecbca96 | 6382 | out_enable: |
7fe70b57 | 6383 | trace_flags |= old_userobj; |
cf586b61 | 6384 | |
7fe70b57 SRRH |
6385 | for_each_tracing_cpu(cpu) { |
6386 | atomic_dec(&per_cpu_ptr(iter.trace_buffer->data, cpu)->disabled); | |
cf586b61 | 6387 | } |
7fe70b57 | 6388 | atomic_dec(&dump_running); |
cd891ae0 | 6389 | local_irq_restore(flags); |
3f5a54e3 | 6390 | } |
a8eecf22 | 6391 | EXPORT_SYMBOL_GPL(ftrace_dump); |
cf586b61 | 6392 | |
3928a8a2 | 6393 | __init static int tracer_alloc_buffers(void) |
bc0c38d1 | 6394 | { |
73c5162a | 6395 | int ring_buf_size; |
9e01c1b7 | 6396 | int ret = -ENOMEM; |
4c11d7ae | 6397 | |
750912fa | 6398 | |
9e01c1b7 RR |
6399 | if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL)) |
6400 | goto out; | |
6401 | ||
ccfe9e42 | 6402 | if (!alloc_cpumask_var(&global_trace.tracing_cpumask, GFP_KERNEL)) |
9e01c1b7 | 6403 | goto out_free_buffer_mask; |
4c11d7ae | 6404 | |
07d777fe SR |
6405 | /* Only allocate trace_printk buffers if a trace_printk exists */ |
6406 | if (__stop___trace_bprintk_fmt != __start___trace_bprintk_fmt) | |
81698831 | 6407 | /* Must be called before global_trace.buffer is allocated */ |
07d777fe SR |
6408 | trace_printk_init_buffers(); |
6409 | ||
73c5162a SR |
6410 | /* To save memory, keep the ring buffer size to its minimum */ |
6411 | if (ring_buffer_expanded) | |
6412 | ring_buf_size = trace_buf_size; | |
6413 | else | |
6414 | ring_buf_size = 1; | |
6415 | ||
9e01c1b7 | 6416 | cpumask_copy(tracing_buffer_mask, cpu_possible_mask); |
ccfe9e42 | 6417 | cpumask_copy(global_trace.tracing_cpumask, cpu_all_mask); |
9e01c1b7 | 6418 | |
2b6080f2 SR |
6419 | raw_spin_lock_init(&global_trace.start_lock); |
6420 | ||
9e01c1b7 | 6421 | /* TODO: make the number of buffers hot pluggable with CPUS */ |
737223fb | 6422 | if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) { |
3928a8a2 SR |
6423 | printk(KERN_ERR "tracer: failed to allocate ring buffer!\n"); |
6424 | WARN_ON(1); | |
9e01c1b7 | 6425 | goto out_free_cpumask; |
4c11d7ae | 6426 | } |
a7603ff4 | 6427 | |
499e5470 SR |
6428 | if (global_trace.buffer_disabled) |
6429 | tracing_off(); | |
4c11d7ae | 6430 | |
bc0c38d1 SR |
6431 | trace_init_cmdlines(); |
6432 | ||
ca164318 SRRH |
6433 | /* |
6434 | * register_tracer() might reference current_trace, so it | |
6435 | * needs to be set before we register anything. This is | |
6436 | * just a bootstrap of current_trace anyway. | |
6437 | */ | |
2b6080f2 SR |
6438 | global_trace.current_trace = &nop_trace; |
6439 | ||
ca164318 SRRH |
6440 | register_tracer(&nop_trace); |
6441 | ||
60a11774 SR |
6442 | /* All seems OK, enable tracing */ |
6443 | tracing_disabled = 0; | |
3928a8a2 | 6444 | |
3f5a54e3 SR |
6445 | atomic_notifier_chain_register(&panic_notifier_list, |
6446 | &trace_panic_notifier); | |
6447 | ||
6448 | register_die_notifier(&trace_die_notifier); | |
2fc1dfbe | 6449 | |
ae63b31e SR |
6450 | global_trace.flags = TRACE_ARRAY_FL_GLOBAL; |
6451 | ||
6452 | INIT_LIST_HEAD(&global_trace.systems); | |
6453 | INIT_LIST_HEAD(&global_trace.events); | |
6454 | list_add(&global_trace.list, &ftrace_trace_arrays); | |
6455 | ||
7bcfaf54 SR |
6456 | while (trace_boot_options) { |
6457 | char *option; | |
6458 | ||
6459 | option = strsep(&trace_boot_options, ","); | |
2b6080f2 | 6460 | trace_set_options(&global_trace, option); |
7bcfaf54 SR |
6461 | } |
6462 | ||
77fd5c15 SRRH |
6463 | register_snapshot_cmd(); |
6464 | ||
2fc1dfbe | 6465 | return 0; |
3f5a54e3 | 6466 | |
9e01c1b7 | 6467 | out_free_cpumask: |
12883efb SRRH |
6468 | free_percpu(global_trace.trace_buffer.data); |
6469 | #ifdef CONFIG_TRACER_MAX_TRACE | |
6470 | free_percpu(global_trace.max_buffer.data); | |
6471 | #endif | |
ccfe9e42 | 6472 | free_cpumask_var(global_trace.tracing_cpumask); |
9e01c1b7 RR |
6473 | out_free_buffer_mask: |
6474 | free_cpumask_var(tracing_buffer_mask); | |
6475 | out: | |
6476 | return ret; | |
bc0c38d1 | 6477 | } |
b2821ae6 SR |
6478 | |
6479 | __init static int clear_boot_tracer(void) | |
6480 | { | |
6481 | /* | |
6482 | * The default tracer at boot buffer is an init section. | |
6483 | * This function is called in lateinit. If we did not | |
6484 | * find the boot tracer, then clear it out, to prevent | |
6485 | * later registration from accessing the buffer that is | |
6486 | * about to be freed. | |
6487 | */ | |
6488 | if (!default_bootup_tracer) | |
6489 | return 0; | |
6490 | ||
6491 | printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n", | |
6492 | default_bootup_tracer); | |
6493 | default_bootup_tracer = NULL; | |
6494 | ||
6495 | return 0; | |
6496 | } | |
6497 | ||
b5ad384e FW |
6498 | early_initcall(tracer_alloc_buffers); |
6499 | fs_initcall(tracer_init_debugfs); | |
b2821ae6 | 6500 | late_initcall(clear_boot_tracer); |