blob: f69f86788c2bd12a2df18e4dabe9e66046a2e71f [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,
16 TRACE_STACK,
17 TRACE_SPECIAL,
Pekka Paalanenbd8ac682008-05-12 21:20:57 +020018 TRACE_MMIO_RW,
19 TRACE_MMIO_MAP,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020020
21 __TRACE_LAST_TYPE
22};
23
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020024/*
25 * Function trace entry - function address and parent function addres:
26 */
27struct ftrace_entry {
28 unsigned long ip;
29 unsigned long parent_ip;
30};
31
32/*
33 * Context switch trace entry - which task (and prio) we switched from/to:
34 */
35struct ctx_switch_entry {
36 unsigned int prev_pid;
37 unsigned char prev_prio;
38 unsigned char prev_state;
39 unsigned int next_pid;
40 unsigned char next_prio;
Peter Zijlstrabac524d2008-05-12 21:20:53 +020041 unsigned char next_state;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020042};
43
44/*
Ingo Molnarf0a920d2008-05-12 21:20:47 +020045 * Special (free-form) trace entry:
46 */
47struct special_entry {
48 unsigned long arg1;
49 unsigned long arg2;
50 unsigned long arg3;
51};
52
53/*
Ingo Molnar86387f72008-05-12 21:20:51 +020054 * Stack-trace entry:
55 */
56
Ingo Molnar74f4e362008-05-12 21:21:15 +020057#define FTRACE_STACK_ENTRIES 8
Ingo Molnar86387f72008-05-12 21:20:51 +020058
59struct stack_entry {
60 unsigned long caller[FTRACE_STACK_ENTRIES];
61};
62
63/*
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020064 * The trace entry - the most basic unit of tracing. This is what
65 * is printed in the end as a single line in the trace output, such as:
66 *
67 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
68 */
69struct trace_entry {
70 char type;
71 char cpu;
72 char flags;
73 char preempt_count;
74 int pid;
75 cycle_t t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020076 union {
77 struct ftrace_entry fn;
78 struct ctx_switch_entry ctx;
Ingo Molnarf0a920d2008-05-12 21:20:47 +020079 struct special_entry special;
Ingo Molnar86387f72008-05-12 21:20:51 +020080 struct stack_entry stack;
Pekka Paalanenbd8ac682008-05-12 21:20:57 +020081 struct mmiotrace_rw mmiorw;
82 struct mmiotrace_map mmiomap;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020083 };
84};
85
86#define TRACE_ENTRY_SIZE sizeof(struct trace_entry)
87
88/*
89 * The CPU trace array - it consists of thousands of trace entries
90 * plus some other descriptor data: (for example which task started
91 * the trace, etc.)
92 */
93struct trace_array_cpu {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +020094 struct list_head trace_pages;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020095 atomic_t disabled;
Steven Rostedt92205c22008-05-12 21:20:55 +020096 raw_spinlock_t lock;
Ingo Molnard4c5a2f2008-05-12 21:20:46 +020097 struct lock_class_key lock_key;
Ingo Molnar4e3c3332008-05-12 21:20:45 +020098
Ingo Molnarc7aafc52008-05-12 21:20:45 +020099 /* these fields get copied into max-trace: */
Steven Rostedt93a588f2008-05-12 21:20:45 +0200100 unsigned trace_head_idx;
101 unsigned trace_tail_idx;
102 void *trace_head; /* producer */
103 void *trace_tail; /* consumer */
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200104 unsigned long trace_idx;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200105 unsigned long overrun;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200106 unsigned long saved_latency;
107 unsigned long critical_start;
108 unsigned long critical_end;
109 unsigned long critical_sequence;
110 unsigned long nice;
111 unsigned long policy;
112 unsigned long rt_priority;
113 cycle_t preempt_timestamp;
114 pid_t pid;
115 uid_t uid;
116 char comm[TASK_COMM_LEN];
117};
118
119struct trace_iterator;
120
121/*
122 * The trace array - an array of per-CPU trace arrays. This is the
123 * highest level data structure that individual tracers deal with.
124 * They have on/off state as well:
125 */
126struct trace_array {
127 unsigned long entries;
128 long ctrl;
129 int cpu;
130 cycle_t time_start;
Steven Rostedtb3806b42008-05-12 21:20:46 +0200131 struct task_struct *waiter;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200132 struct trace_array_cpu *data[NR_CPUS];
133};
134
135/*
136 * A specific tracer, represented by methods that operate on a trace array:
137 */
138struct tracer {
139 const char *name;
140 void (*init)(struct trace_array *tr);
141 void (*reset)(struct trace_array *tr);
142 void (*open)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200143 void (*pipe_open)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200144 void (*close)(struct trace_iterator *iter);
145 void (*start)(struct trace_iterator *iter);
146 void (*stop)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200147 ssize_t (*read)(struct trace_iterator *iter,
148 struct file *filp, char __user *ubuf,
149 size_t cnt, loff_t *ppos);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200150 void (*ctrl_update)(struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200151#ifdef CONFIG_FTRACE_STARTUP_TEST
152 int (*selftest)(struct tracer *trace,
153 struct trace_array *tr);
154#endif
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200155 int (*print_line)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200156 struct tracer *next;
157 int print_max;
158};
159
Steven Rostedt214023c2008-05-12 21:20:46 +0200160struct trace_seq {
161 unsigned char buffer[PAGE_SIZE];
162 unsigned int len;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200163 unsigned int readpos;
Steven Rostedt214023c2008-05-12 21:20:46 +0200164};
165
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200166/*
167 * Trace iterator - used by printout routines who present trace
168 * results to users and which routines might sleep, etc:
169 */
170struct trace_iterator {
171 struct trace_array *tr;
172 struct tracer *trace;
Steven Rostedt107bad82008-05-12 21:21:01 +0200173 void *private;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200174 long last_overrun[NR_CPUS];
175 long overrun[NR_CPUS];
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200176
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200177 /* The below is zeroed out in pipe_read */
178 struct trace_seq seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200179 struct trace_entry *ent;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200180 int cpu;
181
182 struct trace_entry *prev_ent;
183 int prev_cpu;
184
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200185 unsigned long iter_flags;
186 loff_t pos;
187 unsigned long next_idx[NR_CPUS];
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200188 struct list_head *next_page[NR_CPUS];
189 unsigned next_page_idx[NR_CPUS];
190 long idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200191};
192
Ingo Molnare309b412008-05-12 21:20:51 +0200193void tracing_reset(struct trace_array_cpu *data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200194int tracing_open_generic(struct inode *inode, struct file *filp);
195struct dentry *tracing_init_dentry(void);
Ingo Molnard618b3e2008-05-12 21:20:49 +0200196void init_tracer_sysprof_debugfs(struct dentry *d_tracer);
197
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200198void ftrace(struct trace_array *tr,
199 struct trace_array_cpu *data,
200 unsigned long ip,
201 unsigned long parent_ip,
202 unsigned long flags);
203void tracing_sched_switch_trace(struct trace_array *tr,
204 struct trace_array_cpu *data,
205 struct task_struct *prev,
206 struct task_struct *next,
207 unsigned long flags);
208void tracing_record_cmdline(struct task_struct *tsk);
Ingo Molnar57422792008-05-12 21:20:51 +0200209
210void tracing_sched_wakeup_trace(struct trace_array *tr,
211 struct trace_array_cpu *data,
212 struct task_struct *wakee,
213 struct task_struct *cur,
214 unsigned long flags);
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200215void trace_special(struct trace_array *tr,
216 struct trace_array_cpu *data,
217 unsigned long arg1,
218 unsigned long arg2,
219 unsigned long arg3);
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200220void trace_function(struct trace_array *tr,
221 struct trace_array_cpu *data,
222 unsigned long ip,
223 unsigned long parent_ip,
224 unsigned long flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200225
Steven Rostedt41bc8142008-05-22 11:49:22 -0400226void tracing_start_cmdline_record(void);
227void tracing_stop_cmdline_record(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200228int register_tracer(struct tracer *type);
229void unregister_tracer(struct tracer *type);
230
231extern unsigned long nsecs_to_usecs(unsigned long nsecs);
232
233extern unsigned long tracing_max_latency;
234extern unsigned long tracing_thresh;
235
236void update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu);
237void update_max_tr_single(struct trace_array *tr,
238 struct task_struct *tsk, int cpu);
239
Ingo Molnare309b412008-05-12 21:20:51 +0200240extern cycle_t ftrace_now(int cpu);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200241
Steven Rostedt001b6762008-07-10 20:58:10 -0400242#ifdef CONFIG_FTRACE
243void tracing_start_function_trace(void);
244void tracing_stop_function_trace(void);
245#else
246# define tracing_start_function_trace() do { } while (0)
247# define tracing_stop_function_trace() do { } while (0)
248#endif
249
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200250#ifdef CONFIG_CONTEXT_SWITCH_TRACER
251typedef void
252(*tracer_switch_func_t)(void *private,
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200253 void *__rq,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200254 struct task_struct *prev,
255 struct task_struct *next);
256
257struct tracer_switch_ops {
258 tracer_switch_func_t func;
259 void *private;
260 struct tracer_switch_ops *next;
261};
262
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200263#endif /* CONFIG_CONTEXT_SWITCH_TRACER */
264
265#ifdef CONFIG_DYNAMIC_FTRACE
266extern unsigned long ftrace_update_tot_cnt;
Steven Rostedtd05cdb22008-05-12 21:20:54 +0200267#define DYN_FTRACE_TEST_NAME trace_selftest_dynamic_test_func
268extern int DYN_FTRACE_TEST_NAME(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200269#endif
270
Pekka Paalanenbd8ac682008-05-12 21:20:57 +0200271#ifdef CONFIG_MMIOTRACE
272extern void __trace_mmiotrace_rw(struct trace_array *tr,
273 struct trace_array_cpu *data,
274 struct mmiotrace_rw *rw);
275extern void __trace_mmiotrace_map(struct trace_array *tr,
276 struct trace_array_cpu *data,
277 struct mmiotrace_map *map);
278#endif
279
Steven Rostedt60a11772008-05-12 21:20:44 +0200280#ifdef CONFIG_FTRACE_STARTUP_TEST
281#ifdef CONFIG_FTRACE
282extern int trace_selftest_startup_function(struct tracer *trace,
283 struct trace_array *tr);
284#endif
285#ifdef CONFIG_IRQSOFF_TRACER
286extern int trace_selftest_startup_irqsoff(struct tracer *trace,
287 struct trace_array *tr);
288#endif
289#ifdef CONFIG_PREEMPT_TRACER
290extern int trace_selftest_startup_preemptoff(struct tracer *trace,
291 struct trace_array *tr);
292#endif
293#if defined(CONFIG_IRQSOFF_TRACER) && defined(CONFIG_PREEMPT_TRACER)
294extern int trace_selftest_startup_preemptirqsoff(struct tracer *trace,
295 struct trace_array *tr);
296#endif
297#ifdef CONFIG_SCHED_TRACER
298extern int trace_selftest_startup_wakeup(struct tracer *trace,
299 struct trace_array *tr);
300#endif
301#ifdef CONFIG_CONTEXT_SWITCH_TRACER
302extern int trace_selftest_startup_sched_switch(struct tracer *trace,
303 struct trace_array *tr);
304#endif
Ingo Molnara6dd24f2008-05-12 21:20:47 +0200305#ifdef CONFIG_SYSPROF_TRACER
306extern int trace_selftest_startup_sysprof(struct tracer *trace,
307 struct trace_array *tr);
308#endif
Steven Rostedt60a11772008-05-12 21:20:44 +0200309#endif /* CONFIG_FTRACE_STARTUP_TEST */
310
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200311extern void *head_page(struct trace_array_cpu *data);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200312extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200313extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
314 size_t cnt);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200315extern long ns2usecs(cycle_t nsec);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200316
Ingo Molnar4e655512008-05-12 21:20:52 +0200317extern unsigned long trace_flags;
318
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200319/*
320 * trace_iterator_flags is an enumeration that defines bit
321 * positions into trace_flags that controls the output.
322 *
323 * NOTE: These bits must match the trace_options array in
324 * trace.c.
325 */
Ingo Molnar4e655512008-05-12 21:20:52 +0200326enum trace_iterator_flags {
327 TRACE_ITER_PRINT_PARENT = 0x01,
328 TRACE_ITER_SYM_OFFSET = 0x02,
329 TRACE_ITER_SYM_ADDR = 0x04,
330 TRACE_ITER_VERBOSE = 0x08,
331 TRACE_ITER_RAW = 0x10,
332 TRACE_ITER_HEX = 0x20,
333 TRACE_ITER_BIN = 0x40,
334 TRACE_ITER_BLOCK = 0x80,
335 TRACE_ITER_STACKTRACE = 0x100,
Ingo Molnar4ac3ba42008-05-12 21:20:52 +0200336 TRACE_ITER_SCHED_TREE = 0x200,
Ingo Molnar4e655512008-05-12 21:20:52 +0200337};
338
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200339#endif /* _LINUX_KERNEL_TRACE_H */