blob: be3b3cf95f4b2c2bb36ff54bfa8b90f224ce8375 [file] [log] [blame]
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001#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>
Pekka Paalanenbd8ac682008-05-12 21:20:57 +02008#include <linux/mmiotrace.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02009
Thomas Gleixner72829bc2008-05-23 21:37:28 +020010enum trace_type {
11 __TRACE_FIRST_TYPE = 0,
12
13 TRACE_FN,
14 TRACE_CTX,
15 TRACE_WAKE,
Steven Rostedtdd0e5452008-08-01 12:26:41 -040016 TRACE_CONT,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020017 TRACE_STACK,
Steven Rostedtdd0e5452008-08-01 12:26:41 -040018 TRACE_PRINT,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020019 TRACE_SPECIAL,
Pekka Paalanenbd8ac682008-05-12 21:20:57 +020020 TRACE_MMIO_RW,
21 TRACE_MMIO_MAP,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020022
23 __TRACE_LAST_TYPE
24};
25
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020026/*
27 * Function trace entry - function address and parent function addres:
28 */
29struct ftrace_entry {
30 unsigned long ip;
31 unsigned long parent_ip;
32};
33
34/*
35 * Context switch trace entry - which task (and prio) we switched from/to:
36 */
37struct ctx_switch_entry {
38 unsigned int prev_pid;
39 unsigned char prev_prio;
40 unsigned char prev_state;
41 unsigned int next_pid;
42 unsigned char next_prio;
Peter Zijlstrabac524d2008-05-12 21:20:53 +020043 unsigned char next_state;
Peter Zijlstra80b5e942008-09-04 10:24:16 +020044 unsigned int next_cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020045};
46
47/*
Ingo Molnarf0a920d2008-05-12 21:20:47 +020048 * Special (free-form) trace entry:
49 */
50struct special_entry {
51 unsigned long arg1;
52 unsigned long arg2;
53 unsigned long arg3;
54};
55
56/*
Ingo Molnar86387f72008-05-12 21:20:51 +020057 * Stack-trace entry:
58 */
59
Ingo Molnar74f4e362008-05-12 21:21:15 +020060#define FTRACE_STACK_ENTRIES 8
Ingo Molnar86387f72008-05-12 21:20:51 +020061
62struct stack_entry {
63 unsigned long caller[FTRACE_STACK_ENTRIES];
64};
65
66/*
Steven Rostedtdd0e5452008-08-01 12:26:41 -040067 * ftrace_printk entry:
68 */
69struct print_entry {
70 unsigned long ip;
71 char buf[];
72};
73
74/*
Steven Rostedt2e2ca152008-08-01 12:26:40 -040075 * The trace field - the most basic unit of tracing. This is what
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020076 * is printed in the end as a single line in the trace output, such as:
77 *
78 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
79 */
Steven Rostedt2e2ca152008-08-01 12:26:40 -040080struct trace_field {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020081 char cpu;
82 char flags;
83 char preempt_count;
84 int pid;
85 cycle_t t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020086 union {
87 struct ftrace_entry fn;
88 struct ctx_switch_entry ctx;
Ingo Molnarf0a920d2008-05-12 21:20:47 +020089 struct special_entry special;
Ingo Molnar86387f72008-05-12 21:20:51 +020090 struct stack_entry stack;
Steven Rostedtdd0e5452008-08-01 12:26:41 -040091 struct print_entry print;
Pekka Paalanenbd8ac682008-05-12 21:20:57 +020092 struct mmiotrace_rw mmiorw;
93 struct mmiotrace_map mmiomap;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020094 };
95};
96
Steven Rostedt2e2ca152008-08-01 12:26:40 -040097struct trace_field_cont {
98 char buf[sizeof(struct trace_field)];
99};
100
101struct trace_entry {
102 char type;
103 union {
104 struct trace_field field;
105 struct trace_field_cont cont;
106 };
107};
108
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200109#define TRACE_ENTRY_SIZE sizeof(struct trace_entry)
110
111/*
112 * The CPU trace array - it consists of thousands of trace entries
113 * plus some other descriptor data: (for example which task started
114 * the trace, etc.)
115 */
116struct trace_array_cpu {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200117 struct list_head trace_pages;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200118 atomic_t disabled;
Steven Rostedt92205c22008-05-12 21:20:55 +0200119 raw_spinlock_t lock;
Ingo Molnard4c5a2f2008-05-12 21:20:46 +0200120 struct lock_class_key lock_key;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200121
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200122 /* these fields get copied into max-trace: */
Steven Rostedt93a588f2008-05-12 21:20:45 +0200123 unsigned trace_head_idx;
124 unsigned trace_tail_idx;
125 void *trace_head; /* producer */
126 void *trace_tail; /* consumer */
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200127 unsigned long trace_idx;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200128 unsigned long overrun;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200129 unsigned long saved_latency;
130 unsigned long critical_start;
131 unsigned long critical_end;
132 unsigned long critical_sequence;
133 unsigned long nice;
134 unsigned long policy;
135 unsigned long rt_priority;
136 cycle_t preempt_timestamp;
137 pid_t pid;
138 uid_t uid;
139 char comm[TASK_COMM_LEN];
140};
141
142struct trace_iterator;
143
144/*
145 * The trace array - an array of per-CPU trace arrays. This is the
146 * highest level data structure that individual tracers deal with.
147 * They have on/off state as well:
148 */
149struct trace_array {
150 unsigned long entries;
151 long ctrl;
152 int cpu;
153 cycle_t time_start;
Steven Rostedtb3806b42008-05-12 21:20:46 +0200154 struct task_struct *waiter;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200155 struct trace_array_cpu *data[NR_CPUS];
156};
157
158/*
159 * A specific tracer, represented by methods that operate on a trace array:
160 */
161struct tracer {
162 const char *name;
163 void (*init)(struct trace_array *tr);
164 void (*reset)(struct trace_array *tr);
165 void (*open)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200166 void (*pipe_open)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200167 void (*close)(struct trace_iterator *iter);
168 void (*start)(struct trace_iterator *iter);
169 void (*stop)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200170 ssize_t (*read)(struct trace_iterator *iter,
171 struct file *filp, char __user *ubuf,
172 size_t cnt, loff_t *ppos);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200173 void (*ctrl_update)(struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200174#ifdef CONFIG_FTRACE_STARTUP_TEST
175 int (*selftest)(struct tracer *trace,
176 struct trace_array *tr);
177#endif
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200178 int (*print_line)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200179 struct tracer *next;
180 int print_max;
181};
182
Steven Rostedt214023c2008-05-12 21:20:46 +0200183struct trace_seq {
184 unsigned char buffer[PAGE_SIZE];
185 unsigned int len;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200186 unsigned int readpos;
Steven Rostedt214023c2008-05-12 21:20:46 +0200187};
188
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200189/*
190 * Trace iterator - used by printout routines who present trace
191 * results to users and which routines might sleep, etc:
192 */
193struct trace_iterator {
194 struct trace_array *tr;
195 struct tracer *trace;
Steven Rostedt107bad82008-05-12 21:21:01 +0200196 void *private;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200197 long last_overrun[NR_CPUS];
198 long overrun[NR_CPUS];
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200199
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200200 /* The below is zeroed out in pipe_read */
201 struct trace_seq seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200202 struct trace_entry *ent;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200203 int cpu;
204
205 struct trace_entry *prev_ent;
206 int prev_cpu;
207
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200208 unsigned long iter_flags;
209 loff_t pos;
210 unsigned long next_idx[NR_CPUS];
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200211 struct list_head *next_page[NR_CPUS];
212 unsigned next_page_idx[NR_CPUS];
213 long idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200214};
215
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300216void trace_wake_up(void);
Ingo Molnare309b412008-05-12 21:20:51 +0200217void tracing_reset(struct trace_array_cpu *data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200218int tracing_open_generic(struct inode *inode, struct file *filp);
219struct dentry *tracing_init_dentry(void);
Ingo Molnard618b3e2008-05-12 21:20:49 +0200220void init_tracer_sysprof_debugfs(struct dentry *d_tracer);
221
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300222struct trace_entry *tracing_get_trace_entry(struct trace_array *tr,
223 struct trace_array_cpu *data);
224void tracing_generic_entry_update(struct trace_entry *entry,
225 unsigned long flags);
226
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200227void ftrace(struct trace_array *tr,
228 struct trace_array_cpu *data,
229 unsigned long ip,
230 unsigned long parent_ip,
231 unsigned long flags);
232void tracing_sched_switch_trace(struct trace_array *tr,
233 struct trace_array_cpu *data,
234 struct task_struct *prev,
235 struct task_struct *next,
236 unsigned long flags);
237void tracing_record_cmdline(struct task_struct *tsk);
Ingo Molnar57422792008-05-12 21:20:51 +0200238
239void tracing_sched_wakeup_trace(struct trace_array *tr,
240 struct trace_array_cpu *data,
241 struct task_struct *wakee,
242 struct task_struct *cur,
243 unsigned long flags);
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200244void trace_special(struct trace_array *tr,
245 struct trace_array_cpu *data,
246 unsigned long arg1,
247 unsigned long arg2,
248 unsigned long arg3);
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200249void trace_function(struct trace_array *tr,
250 struct trace_array_cpu *data,
251 unsigned long ip,
252 unsigned long parent_ip,
253 unsigned long flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200254
Steven Rostedt41bc8142008-05-22 11:49:22 -0400255void tracing_start_cmdline_record(void);
256void tracing_stop_cmdline_record(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200257int register_tracer(struct tracer *type);
258void unregister_tracer(struct tracer *type);
259
260extern unsigned long nsecs_to_usecs(unsigned long nsecs);
261
262extern unsigned long tracing_max_latency;
263extern unsigned long tracing_thresh;
264
265void update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu);
266void update_max_tr_single(struct trace_array *tr,
267 struct task_struct *tsk, int cpu);
268
Ingo Molnare309b412008-05-12 21:20:51 +0200269extern cycle_t ftrace_now(int cpu);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200270
Steven Rostedt001b6762008-07-10 20:58:10 -0400271#ifdef CONFIG_FTRACE
272void tracing_start_function_trace(void);
273void tracing_stop_function_trace(void);
274#else
275# define tracing_start_function_trace() do { } while (0)
276# define tracing_stop_function_trace() do { } while (0)
277#endif
278
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200279#ifdef CONFIG_CONTEXT_SWITCH_TRACER
280typedef void
281(*tracer_switch_func_t)(void *private,
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200282 void *__rq,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200283 struct task_struct *prev,
284 struct task_struct *next);
285
286struct tracer_switch_ops {
287 tracer_switch_func_t func;
288 void *private;
289 struct tracer_switch_ops *next;
290};
291
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200292#endif /* CONFIG_CONTEXT_SWITCH_TRACER */
293
294#ifdef CONFIG_DYNAMIC_FTRACE
295extern unsigned long ftrace_update_tot_cnt;
Steven Rostedtd05cdb22008-05-12 21:20:54 +0200296#define DYN_FTRACE_TEST_NAME trace_selftest_dynamic_test_func
297extern int DYN_FTRACE_TEST_NAME(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200298#endif
299
Steven Rostedt60a11772008-05-12 21:20:44 +0200300#ifdef CONFIG_FTRACE_STARTUP_TEST
301#ifdef CONFIG_FTRACE
302extern int trace_selftest_startup_function(struct tracer *trace,
303 struct trace_array *tr);
304#endif
305#ifdef CONFIG_IRQSOFF_TRACER
306extern int trace_selftest_startup_irqsoff(struct tracer *trace,
307 struct trace_array *tr);
308#endif
309#ifdef CONFIG_PREEMPT_TRACER
310extern int trace_selftest_startup_preemptoff(struct tracer *trace,
311 struct trace_array *tr);
312#endif
313#if defined(CONFIG_IRQSOFF_TRACER) && defined(CONFIG_PREEMPT_TRACER)
314extern int trace_selftest_startup_preemptirqsoff(struct tracer *trace,
315 struct trace_array *tr);
316#endif
317#ifdef CONFIG_SCHED_TRACER
318extern int trace_selftest_startup_wakeup(struct tracer *trace,
319 struct trace_array *tr);
320#endif
321#ifdef CONFIG_CONTEXT_SWITCH_TRACER
322extern int trace_selftest_startup_sched_switch(struct tracer *trace,
323 struct trace_array *tr);
324#endif
Ingo Molnara6dd24f2008-05-12 21:20:47 +0200325#ifdef CONFIG_SYSPROF_TRACER
326extern int trace_selftest_startup_sysprof(struct tracer *trace,
327 struct trace_array *tr);
328#endif
Steven Rostedt60a11772008-05-12 21:20:44 +0200329#endif /* CONFIG_FTRACE_STARTUP_TEST */
330
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200331extern void *head_page(struct trace_array_cpu *data);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200332extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200333extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
334 size_t cnt);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200335extern long ns2usecs(cycle_t nsec);
Pekka Paalanen801fe402008-09-16 21:58:24 +0300336extern int trace_vprintk(unsigned long ip, const char *fmt, va_list args);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200337
Ingo Molnar4e655512008-05-12 21:20:52 +0200338extern unsigned long trace_flags;
339
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200340/*
341 * trace_iterator_flags is an enumeration that defines bit
342 * positions into trace_flags that controls the output.
343 *
344 * NOTE: These bits must match the trace_options array in
345 * trace.c.
346 */
Ingo Molnar4e655512008-05-12 21:20:52 +0200347enum trace_iterator_flags {
348 TRACE_ITER_PRINT_PARENT = 0x01,
349 TRACE_ITER_SYM_OFFSET = 0x02,
350 TRACE_ITER_SYM_ADDR = 0x04,
351 TRACE_ITER_VERBOSE = 0x08,
352 TRACE_ITER_RAW = 0x10,
353 TRACE_ITER_HEX = 0x20,
354 TRACE_ITER_BIN = 0x40,
355 TRACE_ITER_BLOCK = 0x80,
356 TRACE_ITER_STACKTRACE = 0x100,
Ingo Molnar4ac3ba42008-05-12 21:20:52 +0200357 TRACE_ITER_SCHED_TREE = 0x200,
Peter Zijlstraf09ce572008-09-04 10:24:14 +0200358 TRACE_ITER_PRINTK = 0x400,
Ingo Molnar4e655512008-05-12 21:20:52 +0200359};
360
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200361#endif /* _LINUX_KERNEL_TRACE_H */