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