]>
Commit | Line | Data |
---|---|---|
bc0c38d1 SR |
1 | #ifndef _LINUX_KERNEL_TRACE_H |
2 | #define _LINUX_KERNEL_TRACE_H | |
3 | ||
4 | #include <linux/fs.h> | |
5 | #include <asm/atomic.h> | |
6 | #include <linux/sched.h> | |
7 | #include <linux/clocksource.h> | |
3928a8a2 | 8 | #include <linux/ring_buffer.h> |
bd8ac686 | 9 | #include <linux/mmiotrace.h> |
d13744cd | 10 | #include <linux/ftrace.h> |
3f5ec136 | 11 | #include <trace/boot.h> |
36994e58 | 12 | #include <trace/kmemtrace.h> |
12922110 | 13 | #include <trace/power.h> |
bc0c38d1 | 14 | |
72829bc3 TG |
15 | enum trace_type { |
16 | __TRACE_FIRST_TYPE = 0, | |
17 | ||
18 | TRACE_FN, | |
19 | TRACE_CTX, | |
20 | TRACE_WAKE, | |
21 | TRACE_STACK, | |
dd0e545f | 22 | TRACE_PRINT, |
48ead020 | 23 | TRACE_BPRINT, |
72829bc3 | 24 | TRACE_SPECIAL, |
bd8ac686 PP |
25 | TRACE_MMIO_RW, |
26 | TRACE_MMIO_MAP, | |
9f029e83 | 27 | TRACE_BRANCH, |
74239072 FW |
28 | TRACE_BOOT_CALL, |
29 | TRACE_BOOT_RET, | |
287b6e68 FW |
30 | TRACE_GRAPH_RET, |
31 | TRACE_GRAPH_ENT, | |
02b67518 | 32 | TRACE_USER_STACK, |
a93751ca | 33 | TRACE_HW_BRANCHES, |
ee08c6ec FW |
34 | TRACE_SYSCALL_ENTER, |
35 | TRACE_SYSCALL_EXIT, | |
36994e58 FW |
36 | TRACE_KMEM_ALLOC, |
37 | TRACE_KMEM_FREE, | |
f3f47a67 | 38 | TRACE_POWER, |
c71a8961 | 39 | TRACE_BLK, |
72829bc3 | 40 | |
f0868d1e | 41 | __TRACE_LAST_TYPE, |
72829bc3 TG |
42 | }; |
43 | ||
777e208d SR |
44 | /* |
45 | * The trace entry - the most basic unit of tracing. This is what | |
46 | * is printed in the end as a single line in the trace output, such as: | |
47 | * | |
48 | * bash-15816 [01] 235.197585: idle_cpu <- irq_enter | |
49 | */ | |
50 | struct trace_entry { | |
51 | unsigned char type; | |
777e208d SR |
52 | unsigned char flags; |
53 | unsigned char preempt_count; | |
54 | int pid; | |
02b67518 | 55 | int tgid; |
777e208d SR |
56 | }; |
57 | ||
bc0c38d1 SR |
58 | /* |
59 | * Function trace entry - function address and parent function addres: | |
60 | */ | |
61 | struct ftrace_entry { | |
777e208d | 62 | struct trace_entry ent; |
bc0c38d1 SR |
63 | unsigned long ip; |
64 | unsigned long parent_ip; | |
65 | }; | |
15e6cb36 | 66 | |
287b6e68 FW |
67 | /* Function call entry */ |
68 | struct ftrace_graph_ent_entry { | |
b91facc3 | 69 | struct trace_entry ent; |
287b6e68 FW |
70 | struct ftrace_graph_ent graph_ent; |
71 | }; | |
72 | ||
15e6cb36 | 73 | /* Function return entry */ |
287b6e68 | 74 | struct ftrace_graph_ret_entry { |
b91facc3 | 75 | struct trace_entry ent; |
287b6e68 | 76 | struct ftrace_graph_ret ret; |
15e6cb36 | 77 | }; |
d13744cd | 78 | extern struct tracer boot_tracer; |
bc0c38d1 SR |
79 | |
80 | /* | |
81 | * Context switch trace entry - which task (and prio) we switched from/to: | |
82 | */ | |
83 | struct ctx_switch_entry { | |
777e208d | 84 | struct trace_entry ent; |
bc0c38d1 SR |
85 | unsigned int prev_pid; |
86 | unsigned char prev_prio; | |
87 | unsigned char prev_state; | |
88 | unsigned int next_pid; | |
89 | unsigned char next_prio; | |
bac524d3 | 90 | unsigned char next_state; |
80b5e940 | 91 | unsigned int next_cpu; |
bc0c38d1 SR |
92 | }; |
93 | ||
f0a920d5 IM |
94 | /* |
95 | * Special (free-form) trace entry: | |
96 | */ | |
97 | struct special_entry { | |
777e208d | 98 | struct trace_entry ent; |
f0a920d5 IM |
99 | unsigned long arg1; |
100 | unsigned long arg2; | |
101 | unsigned long arg3; | |
102 | }; | |
103 | ||
86387f7e IM |
104 | /* |
105 | * Stack-trace entry: | |
106 | */ | |
107 | ||
74f4e369 | 108 | #define FTRACE_STACK_ENTRIES 8 |
86387f7e IM |
109 | |
110 | struct stack_entry { | |
777e208d | 111 | struct trace_entry ent; |
86387f7e IM |
112 | unsigned long caller[FTRACE_STACK_ENTRIES]; |
113 | }; | |
114 | ||
02b67518 TE |
115 | struct userstack_entry { |
116 | struct trace_entry ent; | |
117 | unsigned long caller[FTRACE_STACK_ENTRIES]; | |
118 | }; | |
119 | ||
dd0e545f | 120 | /* |
5e1607a0 | 121 | * trace_printk entry: |
dd0e545f | 122 | */ |
48ead020 | 123 | struct bprint_entry { |
777e208d | 124 | struct trace_entry ent; |
9de36825 | 125 | unsigned long ip; |
769b0441 | 126 | const char *fmt; |
9de36825 | 127 | u32 buf[]; |
1427cdf0 | 128 | }; |
1427cdf0 | 129 | |
48ead020 FW |
130 | struct print_entry { |
131 | struct trace_entry ent; | |
132 | unsigned long ip; | |
48ead020 FW |
133 | char buf[]; |
134 | }; | |
135 | ||
777e208d SR |
136 | #define TRACE_OLD_SIZE 88 |
137 | ||
138 | struct trace_field_cont { | |
139 | unsigned char type; | |
140 | /* Temporary till we get rid of this completely */ | |
141 | char buf[TRACE_OLD_SIZE - 1]; | |
142 | }; | |
143 | ||
144 | struct trace_mmiotrace_rw { | |
145 | struct trace_entry ent; | |
146 | struct mmiotrace_rw rw; | |
147 | }; | |
148 | ||
149 | struct trace_mmiotrace_map { | |
150 | struct trace_entry ent; | |
151 | struct mmiotrace_map map; | |
152 | }; | |
153 | ||
74239072 | 154 | struct trace_boot_call { |
777e208d | 155 | struct trace_entry ent; |
74239072 FW |
156 | struct boot_trace_call boot_call; |
157 | }; | |
158 | ||
159 | struct trace_boot_ret { | |
160 | struct trace_entry ent; | |
161 | struct boot_trace_ret boot_ret; | |
777e208d SR |
162 | }; |
163 | ||
52f232cb SR |
164 | #define TRACE_FUNC_SIZE 30 |
165 | #define TRACE_FILE_SIZE 20 | |
9f029e83 | 166 | struct trace_branch { |
52f232cb SR |
167 | struct trace_entry ent; |
168 | unsigned line; | |
169 | char func[TRACE_FUNC_SIZE+1]; | |
170 | char file[TRACE_FILE_SIZE+1]; | |
171 | char correct; | |
172 | }; | |
173 | ||
a93751ca | 174 | struct hw_branch_entry { |
1e9b51c2 | 175 | struct trace_entry ent; |
a93751ca MM |
176 | u64 from; |
177 | u64 to; | |
1e9b51c2 MM |
178 | }; |
179 | ||
f3f47a67 AV |
180 | struct trace_power { |
181 | struct trace_entry ent; | |
182 | struct power_trace state_data; | |
183 | }; | |
184 | ||
36994e58 FW |
185 | struct kmemtrace_alloc_entry { |
186 | struct trace_entry ent; | |
187 | enum kmemtrace_type_id type_id; | |
188 | unsigned long call_site; | |
189 | const void *ptr; | |
190 | size_t bytes_req; | |
191 | size_t bytes_alloc; | |
192 | gfp_t gfp_flags; | |
193 | int node; | |
194 | }; | |
195 | ||
196 | struct kmemtrace_free_entry { | |
197 | struct trace_entry ent; | |
198 | enum kmemtrace_type_id type_id; | |
199 | unsigned long call_site; | |
200 | const void *ptr; | |
201 | }; | |
202 | ||
bed1ffca FW |
203 | struct syscall_trace_enter { |
204 | struct trace_entry ent; | |
205 | int nr; | |
206 | unsigned long args[]; | |
207 | }; | |
208 | ||
209 | struct syscall_trace_exit { | |
210 | struct trace_entry ent; | |
211 | int nr; | |
212 | unsigned long ret; | |
213 | }; | |
214 | ||
215 | ||
fc5e27ae PP |
216 | /* |
217 | * trace_flag_type is an enumeration that holds different | |
218 | * states when a trace occurs. These are: | |
9244489a | 219 | * IRQS_OFF - interrupts were disabled |
9de36825 | 220 | * IRQS_NOSUPPORT - arch does not support irqs_disabled_flags |
9244489a SR |
221 | * NEED_RESCED - reschedule is requested |
222 | * HARDIRQ - inside an interrupt handler | |
223 | * SOFTIRQ - inside a softirq handler | |
fc5e27ae PP |
224 | */ |
225 | enum trace_flag_type { | |
226 | TRACE_FLAG_IRQS_OFF = 0x01, | |
9244489a SR |
227 | TRACE_FLAG_IRQS_NOSUPPORT = 0x02, |
228 | TRACE_FLAG_NEED_RESCHED = 0x04, | |
229 | TRACE_FLAG_HARDIRQ = 0x08, | |
230 | TRACE_FLAG_SOFTIRQ = 0x10, | |
fc5e27ae PP |
231 | }; |
232 | ||
5bf9a1ee | 233 | #define TRACE_BUF_SIZE 1024 |
bc0c38d1 SR |
234 | |
235 | /* | |
236 | * The CPU trace array - it consists of thousands of trace entries | |
237 | * plus some other descriptor data: (for example which task started | |
238 | * the trace, etc.) | |
239 | */ | |
240 | struct trace_array_cpu { | |
bc0c38d1 | 241 | atomic_t disabled; |
2cadf913 | 242 | void *buffer_page; /* ring buffer spare */ |
4e3c3333 | 243 | |
c7aafc54 | 244 | /* these fields get copied into max-trace: */ |
c7aafc54 | 245 | unsigned long trace_idx; |
53d0aa77 | 246 | unsigned long overrun; |
bc0c38d1 SR |
247 | unsigned long saved_latency; |
248 | unsigned long critical_start; | |
249 | unsigned long critical_end; | |
250 | unsigned long critical_sequence; | |
251 | unsigned long nice; | |
252 | unsigned long policy; | |
253 | unsigned long rt_priority; | |
254 | cycle_t preempt_timestamp; | |
255 | pid_t pid; | |
256 | uid_t uid; | |
257 | char comm[TASK_COMM_LEN]; | |
258 | }; | |
259 | ||
260 | struct trace_iterator; | |
261 | ||
262 | /* | |
263 | * The trace array - an array of per-CPU trace arrays. This is the | |
264 | * highest level data structure that individual tracers deal with. | |
265 | * They have on/off state as well: | |
266 | */ | |
267 | struct trace_array { | |
3928a8a2 | 268 | struct ring_buffer *buffer; |
bc0c38d1 | 269 | unsigned long entries; |
bc0c38d1 SR |
270 | int cpu; |
271 | cycle_t time_start; | |
b3806b43 | 272 | struct task_struct *waiter; |
bc0c38d1 SR |
273 | struct trace_array_cpu *data[NR_CPUS]; |
274 | }; | |
275 | ||
7104f300 SR |
276 | #define FTRACE_CMP_TYPE(var, type) \ |
277 | __builtin_types_compatible_p(typeof(var), type *) | |
278 | ||
279 | #undef IF_ASSIGN | |
280 | #define IF_ASSIGN(var, entry, etype, id) \ | |
281 | if (FTRACE_CMP_TYPE(var, etype)) { \ | |
282 | var = (typeof(var))(entry); \ | |
283 | WARN_ON(id && (entry)->type != id); \ | |
284 | break; \ | |
285 | } | |
286 | ||
287 | /* Will cause compile errors if type is not found. */ | |
288 | extern void __ftrace_bad_type(void); | |
289 | ||
290 | /* | |
291 | * The trace_assign_type is a verifier that the entry type is | |
292 | * the same as the type being assigned. To add new types simply | |
293 | * add a line with the following format: | |
294 | * | |
295 | * IF_ASSIGN(var, ent, type, id); | |
296 | * | |
297 | * Where "type" is the trace type that includes the trace_entry | |
298 | * as the "ent" item. And "id" is the trace identifier that is | |
299 | * used in the trace_type enum. | |
300 | * | |
301 | * If the type can have more than one id, then use zero. | |
302 | */ | |
303 | #define trace_assign_type(var, ent) \ | |
304 | do { \ | |
305 | IF_ASSIGN(var, ent, struct ftrace_entry, TRACE_FN); \ | |
306 | IF_ASSIGN(var, ent, struct ctx_switch_entry, 0); \ | |
7104f300 | 307 | IF_ASSIGN(var, ent, struct stack_entry, TRACE_STACK); \ |
02b67518 | 308 | IF_ASSIGN(var, ent, struct userstack_entry, TRACE_USER_STACK);\ |
7104f300 | 309 | IF_ASSIGN(var, ent, struct print_entry, TRACE_PRINT); \ |
48ead020 | 310 | IF_ASSIGN(var, ent, struct bprint_entry, TRACE_BPRINT); \ |
7104f300 SR |
311 | IF_ASSIGN(var, ent, struct special_entry, 0); \ |
312 | IF_ASSIGN(var, ent, struct trace_mmiotrace_rw, \ | |
313 | TRACE_MMIO_RW); \ | |
314 | IF_ASSIGN(var, ent, struct trace_mmiotrace_map, \ | |
315 | TRACE_MMIO_MAP); \ | |
74239072 FW |
316 | IF_ASSIGN(var, ent, struct trace_boot_call, TRACE_BOOT_CALL);\ |
317 | IF_ASSIGN(var, ent, struct trace_boot_ret, TRACE_BOOT_RET);\ | |
9f029e83 | 318 | IF_ASSIGN(var, ent, struct trace_branch, TRACE_BRANCH); \ |
287b6e68 FW |
319 | IF_ASSIGN(var, ent, struct ftrace_graph_ent_entry, \ |
320 | TRACE_GRAPH_ENT); \ | |
321 | IF_ASSIGN(var, ent, struct ftrace_graph_ret_entry, \ | |
322 | TRACE_GRAPH_RET); \ | |
a93751ca | 323 | IF_ASSIGN(var, ent, struct hw_branch_entry, TRACE_HW_BRANCHES);\ |
9de36825 | 324 | IF_ASSIGN(var, ent, struct trace_power, TRACE_POWER); \ |
36994e58 FW |
325 | IF_ASSIGN(var, ent, struct kmemtrace_alloc_entry, \ |
326 | TRACE_KMEM_ALLOC); \ | |
327 | IF_ASSIGN(var, ent, struct kmemtrace_free_entry, \ | |
328 | TRACE_KMEM_FREE); \ | |
bed1ffca FW |
329 | IF_ASSIGN(var, ent, struct syscall_trace_enter, \ |
330 | TRACE_SYSCALL_ENTER); \ | |
331 | IF_ASSIGN(var, ent, struct syscall_trace_exit, \ | |
332 | TRACE_SYSCALL_EXIT); \ | |
7104f300 SR |
333 | __ftrace_bad_type(); \ |
334 | } while (0) | |
2c4f035f FW |
335 | |
336 | /* Return values for print_line callback */ | |
337 | enum print_line_t { | |
338 | TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */ | |
339 | TRACE_TYPE_HANDLED = 1, | |
b91facc3 FW |
340 | TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */ |
341 | TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */ | |
2c4f035f FW |
342 | }; |
343 | ||
adf9f195 FW |
344 | |
345 | /* | |
346 | * An option specific to a tracer. This is a boolean value. | |
347 | * The bit is the bit index that sets its value on the | |
348 | * flags value in struct tracer_flags. | |
349 | */ | |
350 | struct tracer_opt { | |
9de36825 IM |
351 | const char *name; /* Will appear on the trace_options file */ |
352 | u32 bit; /* Mask assigned in val field in tracer_flags */ | |
adf9f195 FW |
353 | }; |
354 | ||
355 | /* | |
356 | * The set of specific options for a tracer. Your tracer | |
357 | * have to set the initial value of the flags val. | |
358 | */ | |
359 | struct tracer_flags { | |
360 | u32 val; | |
9de36825 | 361 | struct tracer_opt *opts; |
adf9f195 FW |
362 | }; |
363 | ||
364 | /* Makes more easy to define a tracer opt */ | |
365 | #define TRACER_OPT(s, b) .name = #s, .bit = b | |
366 | ||
034939b6 | 367 | |
6eaaa5d5 FW |
368 | /** |
369 | * struct tracer - a specific tracer and its callbacks to interact with debugfs | |
370 | * @name: the name chosen to select it on the available_tracers file | |
371 | * @init: called when one switches to this tracer (echo name > current_tracer) | |
372 | * @reset: called when one switches to another tracer | |
373 | * @start: called when tracing is unpaused (echo 1 > tracing_enabled) | |
374 | * @stop: called when tracing is paused (echo 0 > tracing_enabled) | |
375 | * @open: called when the trace file is opened | |
376 | * @pipe_open: called when the trace_pipe file is opened | |
377 | * @wait_pipe: override how the user waits for traces on trace_pipe | |
378 | * @close: called when the trace file is released | |
379 | * @read: override the default read callback on trace_pipe | |
380 | * @splice_read: override the default splice_read callback on trace_pipe | |
381 | * @selftest: selftest to run on boot (see trace_selftest.c) | |
382 | * @print_headers: override the first lines that describe your columns | |
383 | * @print_line: callback that prints a trace | |
384 | * @set_flag: signals one of your private flags changed (trace_options file) | |
385 | * @flags: your private flags | |
bc0c38d1 SR |
386 | */ |
387 | struct tracer { | |
388 | const char *name; | |
1c80025a | 389 | int (*init)(struct trace_array *tr); |
bc0c38d1 | 390 | void (*reset)(struct trace_array *tr); |
9036990d SR |
391 | void (*start)(struct trace_array *tr); |
392 | void (*stop)(struct trace_array *tr); | |
bc0c38d1 | 393 | void (*open)(struct trace_iterator *iter); |
107bad8b | 394 | void (*pipe_open)(struct trace_iterator *iter); |
6eaaa5d5 | 395 | void (*wait_pipe)(struct trace_iterator *iter); |
bc0c38d1 | 396 | void (*close)(struct trace_iterator *iter); |
107bad8b SR |
397 | ssize_t (*read)(struct trace_iterator *iter, |
398 | struct file *filp, char __user *ubuf, | |
399 | size_t cnt, loff_t *ppos); | |
3c56819b EGM |
400 | ssize_t (*splice_read)(struct trace_iterator *iter, |
401 | struct file *filp, | |
402 | loff_t *ppos, | |
403 | struct pipe_inode_info *pipe, | |
404 | size_t len, | |
405 | unsigned int flags); | |
60a11774 SR |
406 | #ifdef CONFIG_FTRACE_STARTUP_TEST |
407 | int (*selftest)(struct tracer *trace, | |
408 | struct trace_array *tr); | |
409 | #endif | |
8bba1bf5 | 410 | void (*print_header)(struct seq_file *m); |
2c4f035f | 411 | enum print_line_t (*print_line)(struct trace_iterator *iter); |
adf9f195 FW |
412 | /* If you handled the flag setting, return 0 */ |
413 | int (*set_flag)(u32 old_flags, u32 bit, int set); | |
bc0c38d1 SR |
414 | struct tracer *next; |
415 | int print_max; | |
9de36825 | 416 | struct tracer_flags *flags; |
034939b6 | 417 | struct tracer_stat *stats; |
bc0c38d1 SR |
418 | }; |
419 | ||
214023c3 SR |
420 | struct trace_seq { |
421 | unsigned char buffer[PAGE_SIZE]; | |
422 | unsigned int len; | |
6c6c2796 | 423 | unsigned int readpos; |
214023c3 SR |
424 | }; |
425 | ||
f9520750 SR |
426 | static inline void |
427 | trace_seq_init(struct trace_seq *s) | |
428 | { | |
429 | s->len = 0; | |
430 | s->readpos = 0; | |
431 | } | |
432 | ||
433 | ||
b04cc6b1 FW |
434 | #define TRACE_PIPE_ALL_CPU -1 |
435 | ||
bc0c38d1 SR |
436 | /* |
437 | * Trace iterator - used by printout routines who present trace | |
438 | * results to users and which routines might sleep, etc: | |
439 | */ | |
440 | struct trace_iterator { | |
441 | struct trace_array *tr; | |
442 | struct tracer *trace; | |
107bad8b | 443 | void *private; |
b04cc6b1 | 444 | int cpu_file; |
d7350c3f FW |
445 | struct mutex mutex; |
446 | struct ring_buffer_iter *buffer_iter[NR_CPUS]; | |
4e3c3333 | 447 | |
53d0aa77 SR |
448 | /* The below is zeroed out in pipe_read */ |
449 | struct trace_seq seq; | |
bc0c38d1 | 450 | struct trace_entry *ent; |
4e3c3333 | 451 | int cpu; |
3928a8a2 | 452 | u64 ts; |
4e3c3333 | 453 | |
bc0c38d1 SR |
454 | unsigned long iter_flags; |
455 | loff_t pos; | |
4c11d7ae | 456 | long idx; |
a309720c | 457 | |
4462344e | 458 | cpumask_var_t started; |
bc0c38d1 SR |
459 | }; |
460 | ||
b6f11df2 | 461 | int tracer_init(struct tracer *t, struct trace_array *tr); |
9036990d | 462 | int tracing_is_enabled(void); |
45dcd8b8 | 463 | void trace_wake_up(void); |
3928a8a2 | 464 | void tracing_reset(struct trace_array *tr, int cpu); |
213cc060 | 465 | void tracing_reset_online_cpus(struct trace_array *tr); |
bc0c38d1 SR |
466 | int tracing_open_generic(struct inode *inode, struct file *filp); |
467 | struct dentry *tracing_init_dentry(void); | |
d618b3e6 IM |
468 | void init_tracer_sysprof_debugfs(struct dentry *d_tracer); |
469 | ||
51a763dd ACM |
470 | struct ring_buffer_event; |
471 | ||
472 | struct ring_buffer_event *trace_buffer_lock_reserve(struct trace_array *tr, | |
473 | unsigned char type, | |
474 | unsigned long len, | |
475 | unsigned long flags, | |
476 | int pc); | |
477 | void trace_buffer_unlock_commit(struct trace_array *tr, | |
478 | struct ring_buffer_event *event, | |
479 | unsigned long flags, int pc); | |
480 | ||
ef5580d0 SR |
481 | struct ring_buffer_event * |
482 | trace_current_buffer_lock_reserve(unsigned char type, unsigned long len, | |
483 | unsigned long flags, int pc); | |
484 | void trace_current_buffer_unlock_commit(struct ring_buffer_event *event, | |
485 | unsigned long flags, int pc); | |
486 | ||
45dcd8b8 PP |
487 | struct trace_entry *tracing_get_trace_entry(struct trace_array *tr, |
488 | struct trace_array_cpu *data); | |
c4a8e8be FW |
489 | |
490 | struct trace_entry *trace_find_next_entry(struct trace_iterator *iter, | |
491 | int *ent_cpu, u64 *ent_ts); | |
492 | ||
45dcd8b8 | 493 | void tracing_generic_entry_update(struct trace_entry *entry, |
38697053 SR |
494 | unsigned long flags, |
495 | int pc); | |
45dcd8b8 | 496 | |
6eaaa5d5 FW |
497 | void default_wait_pipe(struct trace_iterator *iter); |
498 | void poll_wait_pipe(struct trace_iterator *iter); | |
499 | ||
bc0c38d1 SR |
500 | void ftrace(struct trace_array *tr, |
501 | struct trace_array_cpu *data, | |
502 | unsigned long ip, | |
503 | unsigned long parent_ip, | |
38697053 | 504 | unsigned long flags, int pc); |
bc0c38d1 | 505 | void tracing_sched_switch_trace(struct trace_array *tr, |
bc0c38d1 SR |
506 | struct task_struct *prev, |
507 | struct task_struct *next, | |
38697053 | 508 | unsigned long flags, int pc); |
bc0c38d1 | 509 | void tracing_record_cmdline(struct task_struct *tsk); |
57422797 IM |
510 | |
511 | void tracing_sched_wakeup_trace(struct trace_array *tr, | |
57422797 IM |
512 | struct task_struct *wakee, |
513 | struct task_struct *cur, | |
38697053 | 514 | unsigned long flags, int pc); |
f0a920d5 IM |
515 | void trace_special(struct trace_array *tr, |
516 | struct trace_array_cpu *data, | |
517 | unsigned long arg1, | |
518 | unsigned long arg2, | |
38697053 | 519 | unsigned long arg3, int pc); |
6fb44b71 | 520 | void trace_function(struct trace_array *tr, |
6fb44b71 SR |
521 | unsigned long ip, |
522 | unsigned long parent_ip, | |
38697053 | 523 | unsigned long flags, int pc); |
bc0c38d1 | 524 | |
287b6e68 | 525 | void trace_graph_return(struct ftrace_graph_ret *trace); |
e49dc19c | 526 | int trace_graph_entry(struct ftrace_graph_ent *trace); |
1e9b51c2 | 527 | |
41bc8144 SR |
528 | void tracing_start_cmdline_record(void); |
529 | void tracing_stop_cmdline_record(void); | |
e168e051 SR |
530 | void tracing_sched_switch_assign_trace(struct trace_array *tr); |
531 | void tracing_stop_sched_switch_record(void); | |
532 | void tracing_start_sched_switch_record(void); | |
bc0c38d1 SR |
533 | int register_tracer(struct tracer *type); |
534 | void unregister_tracer(struct tracer *type); | |
535 | ||
536 | extern unsigned long nsecs_to_usecs(unsigned long nsecs); | |
537 | ||
538 | extern unsigned long tracing_max_latency; | |
539 | extern unsigned long tracing_thresh; | |
540 | ||
541 | void update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu); | |
542 | void update_max_tr_single(struct trace_array *tr, | |
543 | struct task_struct *tsk, int cpu); | |
544 | ||
53614991 | 545 | void __trace_stack(struct trace_array *tr, |
53614991 SR |
546 | unsigned long flags, |
547 | int skip, int pc); | |
548 | ||
e309b41d | 549 | extern cycle_t ftrace_now(int cpu); |
bc0c38d1 | 550 | |
bc0c38d1 SR |
551 | #ifdef CONFIG_CONTEXT_SWITCH_TRACER |
552 | typedef void | |
553 | (*tracer_switch_func_t)(void *private, | |
5b82a1b0 | 554 | void *__rq, |
bc0c38d1 SR |
555 | struct task_struct *prev, |
556 | struct task_struct *next); | |
557 | ||
558 | struct tracer_switch_ops { | |
559 | tracer_switch_func_t func; | |
560 | void *private; | |
561 | struct tracer_switch_ops *next; | |
562 | }; | |
bc0c38d1 SR |
563 | #endif /* CONFIG_CONTEXT_SWITCH_TRACER */ |
564 | ||
4ca53085 | 565 | extern void trace_find_cmdline(int pid, char comm[]); |
f7d48cbd | 566 | |
bc0c38d1 SR |
567 | #ifdef CONFIG_DYNAMIC_FTRACE |
568 | extern unsigned long ftrace_update_tot_cnt; | |
d05cdb25 SR |
569 | #define DYN_FTRACE_TEST_NAME trace_selftest_dynamic_test_func |
570 | extern int DYN_FTRACE_TEST_NAME(void); | |
bc0c38d1 SR |
571 | #endif |
572 | ||
60a11774 | 573 | #ifdef CONFIG_FTRACE_STARTUP_TEST |
60a11774 SR |
574 | extern int trace_selftest_startup_function(struct tracer *trace, |
575 | struct trace_array *tr); | |
7447dce9 FW |
576 | extern int trace_selftest_startup_function_graph(struct tracer *trace, |
577 | struct trace_array *tr); | |
60a11774 SR |
578 | extern int trace_selftest_startup_irqsoff(struct tracer *trace, |
579 | struct trace_array *tr); | |
60a11774 SR |
580 | extern int trace_selftest_startup_preemptoff(struct tracer *trace, |
581 | struct trace_array *tr); | |
60a11774 SR |
582 | extern int trace_selftest_startup_preemptirqsoff(struct tracer *trace, |
583 | struct trace_array *tr); | |
60a11774 SR |
584 | extern int trace_selftest_startup_wakeup(struct tracer *trace, |
585 | struct trace_array *tr); | |
fb1b6d8b SN |
586 | extern int trace_selftest_startup_nop(struct tracer *trace, |
587 | struct trace_array *tr); | |
60a11774 SR |
588 | extern int trace_selftest_startup_sched_switch(struct tracer *trace, |
589 | struct trace_array *tr); | |
a6dd24f8 IM |
590 | extern int trace_selftest_startup_sysprof(struct tracer *trace, |
591 | struct trace_array *tr); | |
80e5ea45 SR |
592 | extern int trace_selftest_startup_branch(struct tracer *trace, |
593 | struct trace_array *tr); | |
60a11774 SR |
594 | #endif /* CONFIG_FTRACE_STARTUP_TEST */ |
595 | ||
c7aafc54 | 596 | extern void *head_page(struct trace_array_cpu *data); |
72829bc3 | 597 | extern long ns2usecs(cycle_t nsec); |
1fd8f2a3 | 598 | extern int |
40ce74f1 | 599 | trace_vbprintk(unsigned long ip, const char *fmt, va_list args); |
48ead020 | 600 | extern int |
40ce74f1 | 601 | trace_vprintk(unsigned long ip, const char *fmt, va_list args); |
c7aafc54 | 602 | |
4e655519 IM |
603 | extern unsigned long trace_flags; |
604 | ||
15e6cb36 | 605 | /* Standard output formatting function used for function return traces */ |
fb52607a FW |
606 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
607 | extern enum print_line_t print_graph_function(struct trace_iterator *iter); | |
ea4e2bc4 SR |
608 | |
609 | #ifdef CONFIG_DYNAMIC_FTRACE | |
610 | /* TODO: make this variable */ | |
611 | #define FTRACE_GRAPH_MAX_FUNCS 32 | |
612 | extern int ftrace_graph_count; | |
613 | extern unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS]; | |
614 | ||
615 | static inline int ftrace_graph_addr(unsigned long addr) | |
616 | { | |
617 | int i; | |
618 | ||
619 | if (!ftrace_graph_count || test_tsk_trace_graph(current)) | |
620 | return 1; | |
621 | ||
622 | for (i = 0; i < ftrace_graph_count; i++) { | |
623 | if (addr == ftrace_graph_funcs[i]) | |
624 | return 1; | |
625 | } | |
626 | ||
627 | return 0; | |
628 | } | |
15e6cb36 | 629 | #else |
ea4e2bc4 SR |
630 | static inline int ftrace_trace_addr(unsigned long addr) |
631 | { | |
6b253930 IM |
632 | return 1; |
633 | } | |
634 | static inline int ftrace_graph_addr(unsigned long addr) | |
635 | { | |
636 | return 1; | |
ea4e2bc4 SR |
637 | } |
638 | #endif /* CONFIG_DYNAMIC_FTRACE */ | |
639 | ||
640 | #else /* CONFIG_FUNCTION_GRAPH_TRACER */ | |
15e6cb36 | 641 | static inline enum print_line_t |
fb52607a | 642 | print_graph_function(struct trace_iterator *iter) |
15e6cb36 FW |
643 | { |
644 | return TRACE_TYPE_UNHANDLED; | |
645 | } | |
ea4e2bc4 | 646 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
15e6cb36 | 647 | |
978f3a45 | 648 | extern struct pid *ftrace_pid_trace; |
804a6851 SR |
649 | |
650 | static inline int ftrace_trace_task(struct task_struct *task) | |
651 | { | |
77d683f3 | 652 | if (!ftrace_pid_trace) |
804a6851 SR |
653 | return 1; |
654 | ||
655 | return test_tsk_trace_trace(task); | |
656 | } | |
657 | ||
4fcdae83 SR |
658 | /* |
659 | * trace_iterator_flags is an enumeration that defines bit | |
660 | * positions into trace_flags that controls the output. | |
661 | * | |
662 | * NOTE: These bits must match the trace_options array in | |
663 | * trace.c. | |
664 | */ | |
4e655519 IM |
665 | enum trace_iterator_flags { |
666 | TRACE_ITER_PRINT_PARENT = 0x01, | |
667 | TRACE_ITER_SYM_OFFSET = 0x02, | |
668 | TRACE_ITER_SYM_ADDR = 0x04, | |
669 | TRACE_ITER_VERBOSE = 0x08, | |
670 | TRACE_ITER_RAW = 0x10, | |
671 | TRACE_ITER_HEX = 0x20, | |
672 | TRACE_ITER_BIN = 0x40, | |
673 | TRACE_ITER_BLOCK = 0x80, | |
674 | TRACE_ITER_STACKTRACE = 0x100, | |
4ac3ba41 | 675 | TRACE_ITER_SCHED_TREE = 0x200, |
f09ce573 | 676 | TRACE_ITER_PRINTK = 0x400, |
b2a866f9 | 677 | TRACE_ITER_PREEMPTONLY = 0x800, |
9f029e83 | 678 | TRACE_ITER_BRANCH = 0x1000, |
12ef7d44 | 679 | TRACE_ITER_ANNOTATE = 0x2000, |
b54d3de9 | 680 | TRACE_ITER_USERSTACKTRACE = 0x4000, |
66896a85 | 681 | TRACE_ITER_SYM_USEROBJ = 0x8000, |
c4a8e8be | 682 | TRACE_ITER_PRINTK_MSGONLY = 0x10000, |
c032ef64 SR |
683 | TRACE_ITER_CONTEXT_INFO = 0x20000, /* Print pid/cpu/time */ |
684 | TRACE_ITER_LATENCY_FMT = 0x40000, | |
af4617bd | 685 | TRACE_ITER_GLOBAL_CLK = 0x80000, |
4e655519 IM |
686 | }; |
687 | ||
15e6cb36 FW |
688 | /* |
689 | * TRACE_ITER_SYM_MASK masks the options in trace_flags that | |
690 | * control the output of kernel symbols. | |
691 | */ | |
692 | #define TRACE_ITER_SYM_MASK \ | |
693 | (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR) | |
694 | ||
43a15386 FW |
695 | extern struct tracer nop_trace; |
696 | ||
8f0a056f SR |
697 | /** |
698 | * ftrace_preempt_disable - disable preemption scheduler safe | |
699 | * | |
700 | * When tracing can happen inside the scheduler, there exists | |
701 | * cases that the tracing might happen before the need_resched | |
702 | * flag is checked. If this happens and the tracer calls | |
703 | * preempt_enable (after a disable), a schedule might take place | |
704 | * causing an infinite recursion. | |
705 | * | |
57794a9d | 706 | * To prevent this, we read the need_resched flag before |
8f0a056f SR |
707 | * disabling preemption. When we want to enable preemption we |
708 | * check the flag, if it is set, then we call preempt_enable_no_resched. | |
709 | * Otherwise, we call preempt_enable. | |
710 | * | |
57794a9d | 711 | * The rational for doing the above is that if need_resched is set |
8f0a056f SR |
712 | * and we have yet to reschedule, we are either in an atomic location |
713 | * (where we do not need to check for scheduling) or we are inside | |
714 | * the scheduler and do not want to resched. | |
715 | */ | |
716 | static inline int ftrace_preempt_disable(void) | |
717 | { | |
718 | int resched; | |
719 | ||
720 | resched = need_resched(); | |
721 | preempt_disable_notrace(); | |
722 | ||
723 | return resched; | |
724 | } | |
725 | ||
726 | /** | |
727 | * ftrace_preempt_enable - enable preemption scheduler safe | |
728 | * @resched: the return value from ftrace_preempt_disable | |
729 | * | |
730 | * This is a scheduler safe way to enable preemption and not miss | |
731 | * any preemption checks. The disabled saved the state of preemption. | |
57794a9d | 732 | * If resched is set, then we are either inside an atomic or |
8f0a056f SR |
733 | * are inside the scheduler (we would have already scheduled |
734 | * otherwise). In this case, we do not want to call normal | |
735 | * preempt_enable, but preempt_enable_no_resched instead. | |
736 | */ | |
737 | static inline void ftrace_preempt_enable(int resched) | |
738 | { | |
739 | if (resched) | |
740 | preempt_enable_no_resched_notrace(); | |
741 | else | |
742 | preempt_enable_notrace(); | |
743 | } | |
744 | ||
2ed84eeb | 745 | #ifdef CONFIG_BRANCH_TRACER |
9f029e83 SR |
746 | extern int enable_branch_tracing(struct trace_array *tr); |
747 | extern void disable_branch_tracing(void); | |
748 | static inline int trace_branch_enable(struct trace_array *tr) | |
52f232cb | 749 | { |
9f029e83 SR |
750 | if (trace_flags & TRACE_ITER_BRANCH) |
751 | return enable_branch_tracing(tr); | |
52f232cb SR |
752 | return 0; |
753 | } | |
9f029e83 | 754 | static inline void trace_branch_disable(void) |
52f232cb SR |
755 | { |
756 | /* due to races, always disable */ | |
9f029e83 | 757 | disable_branch_tracing(); |
52f232cb SR |
758 | } |
759 | #else | |
9f029e83 | 760 | static inline int trace_branch_enable(struct trace_array *tr) |
52f232cb SR |
761 | { |
762 | return 0; | |
763 | } | |
9f029e83 | 764 | static inline void trace_branch_disable(void) |
52f232cb SR |
765 | { |
766 | } | |
2ed84eeb | 767 | #endif /* CONFIG_BRANCH_TRACER */ |
52f232cb | 768 | |
1852fcce SR |
769 | /* set ring buffers to default size if not already done so */ |
770 | int tracing_update_buffers(void); | |
771 | ||
fd994989 SR |
772 | /* trace event type bit fields, not numeric */ |
773 | enum { | |
774 | TRACE_EVENT_TYPE_PRINTF = 1, | |
775 | TRACE_EVENT_TYPE_RAW = 2, | |
776 | }; | |
777 | ||
cf027f64 TZ |
778 | struct ftrace_event_field { |
779 | struct list_head link; | |
780 | char *name; | |
781 | char *type; | |
782 | int offset; | |
783 | int size; | |
784 | }; | |
785 | ||
c32e827b | 786 | struct ftrace_event_call { |
cf027f64 TZ |
787 | char *name; |
788 | char *system; | |
789 | struct dentry *dir; | |
790 | int enabled; | |
791 | int (*regfunc)(void); | |
792 | void (*unregfunc)(void); | |
793 | int id; | |
794 | int (*raw_init)(void); | |
795 | int (*show_format)(struct trace_seq *s); | |
796 | int (*define_fields)(void); | |
797 | struct list_head fields; | |
7ce7e424 | 798 | struct filter_pred **preds; |
ac199db0 PZ |
799 | |
800 | #ifdef CONFIG_EVENT_PROFILE | |
801 | atomic_t profile_count; | |
802 | int (*profile_enable)(struct ftrace_event_call *); | |
803 | void (*profile_disable)(struct ftrace_event_call *); | |
804 | #endif | |
c32e827b SR |
805 | }; |
806 | ||
7ce7e424 TZ |
807 | #define MAX_FILTER_PRED 8 |
808 | ||
809 | struct filter_pred; | |
810 | ||
811 | typedef int (*filter_pred_fn_t) (struct filter_pred *pred, void *event); | |
812 | ||
813 | struct filter_pred { | |
814 | filter_pred_fn_t fn; | |
815 | u64 val; | |
816 | char *str_val; | |
817 | int str_len; | |
818 | char *field_name; | |
819 | int offset; | |
820 | int not; | |
821 | int or; | |
822 | int compound; | |
823 | int clear; | |
824 | }; | |
825 | ||
cf027f64 TZ |
826 | int trace_define_field(struct ftrace_event_call *call, char *type, |
827 | char *name, int offset, int size); | |
7ce7e424 TZ |
828 | extern void filter_free_pred(struct filter_pred *pred); |
829 | extern int filter_print_preds(struct filter_pred **preds, char *buf); | |
830 | extern int filter_parse(char **pbuf, struct filter_pred *pred); | |
831 | extern int filter_add_pred(struct ftrace_event_call *call, | |
832 | struct filter_pred *pred); | |
833 | extern void filter_free_preds(struct ftrace_event_call *call); | |
834 | extern int filter_match_preds(struct ftrace_event_call *call, void *rec); | |
835 | ||
c32e827b SR |
836 | void event_trace_printk(unsigned long ip, const char *fmt, ...); |
837 | extern struct ftrace_event_call __start_ftrace_events[]; | |
838 | extern struct ftrace_event_call __stop_ftrace_events[]; | |
839 | ||
ac199db0 PZ |
840 | #define for_each_event(event) \ |
841 | for (event = __start_ftrace_events; \ | |
842 | (unsigned long)event < (unsigned long)__stop_ftrace_events; \ | |
843 | event++) | |
844 | ||
e9fb2b6d SR |
845 | extern const char *__start___trace_bprintk_fmt[]; |
846 | extern const char *__stop___trace_bprintk_fmt[]; | |
847 | ||
bdc06758 SR |
848 | /* |
849 | * The double __builtin_constant_p is because gcc will give us an error | |
850 | * if we try to allocate the static variable to fmt if it is not a | |
851 | * constant. Even with the outer if statement optimizing out. | |
852 | */ | |
e9fb2b6d SR |
853 | #define event_trace_printk(ip, fmt, args...) \ |
854 | do { \ | |
855 | __trace_printk_check_format(fmt, ##args); \ | |
856 | tracing_record_cmdline(current); \ | |
857 | if (__builtin_constant_p(fmt)) { \ | |
858 | static const char *trace_printk_fmt \ | |
859 | __attribute__((section("__trace_printk_fmt"))) = \ | |
860 | __builtin_constant_p(fmt) ? fmt : NULL; \ | |
861 | \ | |
862 | __trace_bprintk(ip, trace_printk_fmt, ##args); \ | |
863 | } else \ | |
864 | __trace_printk(ip, fmt, ##args); \ | |
865 | } while (0) | |
866 | ||
bc0c38d1 | 867 | #endif /* _LINUX_KERNEL_TRACE_H */ |