blob: cb2c3fb7dd54cf2894cd854324fd93bb5638bc45 [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/*
Pekka Paalanenfc5e27a2008-09-16 22:02:27 +030075 * trace_flag_type is an enumeration that holds different
76 * states when a trace occurs. These are:
77 * IRQS_OFF - interrupts were disabled
78 * NEED_RESCED - reschedule is requested
79 * HARDIRQ - inside an interrupt handler
80 * SOFTIRQ - inside a softirq handler
81 * CONT - multiple entries hold the trace item
82 */
83enum trace_flag_type {
84 TRACE_FLAG_IRQS_OFF = 0x01,
85 TRACE_FLAG_NEED_RESCHED = 0x02,
86 TRACE_FLAG_HARDIRQ = 0x04,
87 TRACE_FLAG_SOFTIRQ = 0x08,
88 TRACE_FLAG_CONT = 0x10,
89};
90
91/*
Steven Rostedt2e2ca152008-08-01 12:26:40 -040092 * The trace field - the most basic unit of tracing. This is what
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020093 * is printed in the end as a single line in the trace output, such as:
94 *
95 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
96 */
Steven Rostedt2e2ca152008-08-01 12:26:40 -040097struct trace_field {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020098 char cpu;
99 char flags;
100 char preempt_count;
101 int pid;
102 cycle_t t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200103 union {
104 struct ftrace_entry fn;
105 struct ctx_switch_entry ctx;
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200106 struct special_entry special;
Ingo Molnar86387f72008-05-12 21:20:51 +0200107 struct stack_entry stack;
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400108 struct print_entry print;
Pekka Paalanenbd8ac682008-05-12 21:20:57 +0200109 struct mmiotrace_rw mmiorw;
110 struct mmiotrace_map mmiomap;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200111 };
112};
113
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400114struct trace_field_cont {
115 char buf[sizeof(struct trace_field)];
116};
117
118struct trace_entry {
119 char type;
120 union {
121 struct trace_field field;
122 struct trace_field_cont cont;
123 };
124};
125
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200126#define TRACE_ENTRY_SIZE sizeof(struct trace_entry)
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +0300127#define TRACE_BUF_SIZE 1024
128#define TRACE_PRINT_BUF_SIZE \
129 (sizeof(struct trace_field) - offsetof(struct trace_field, print.buf))
130#define TRACE_CONT_BUF_SIZE sizeof(struct trace_field)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200131
132/*
133 * The CPU trace array - it consists of thousands of trace entries
134 * plus some other descriptor data: (for example which task started
135 * the trace, etc.)
136 */
137struct trace_array_cpu {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200138 struct list_head trace_pages;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200139 atomic_t disabled;
Steven Rostedt92205c22008-05-12 21:20:55 +0200140 raw_spinlock_t lock;
Ingo Molnard4c5a2f2008-05-12 21:20:46 +0200141 struct lock_class_key lock_key;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200142
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200143 /* these fields get copied into max-trace: */
Steven Rostedt93a588f2008-05-12 21:20:45 +0200144 unsigned trace_head_idx;
145 unsigned trace_tail_idx;
146 void *trace_head; /* producer */
147 void *trace_tail; /* consumer */
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200148 unsigned long trace_idx;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200149 unsigned long overrun;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200150 unsigned long saved_latency;
151 unsigned long critical_start;
152 unsigned long critical_end;
153 unsigned long critical_sequence;
154 unsigned long nice;
155 unsigned long policy;
156 unsigned long rt_priority;
157 cycle_t preempt_timestamp;
158 pid_t pid;
159 uid_t uid;
160 char comm[TASK_COMM_LEN];
161};
162
163struct trace_iterator;
164
165/*
166 * The trace array - an array of per-CPU trace arrays. This is the
167 * highest level data structure that individual tracers deal with.
168 * They have on/off state as well:
169 */
170struct trace_array {
171 unsigned long entries;
172 long ctrl;
173 int cpu;
174 cycle_t time_start;
Steven Rostedtb3806b42008-05-12 21:20:46 +0200175 struct task_struct *waiter;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200176 struct trace_array_cpu *data[NR_CPUS];
177};
178
179/*
180 * A specific tracer, represented by methods that operate on a trace array:
181 */
182struct tracer {
183 const char *name;
184 void (*init)(struct trace_array *tr);
185 void (*reset)(struct trace_array *tr);
186 void (*open)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200187 void (*pipe_open)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200188 void (*close)(struct trace_iterator *iter);
189 void (*start)(struct trace_iterator *iter);
190 void (*stop)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200191 ssize_t (*read)(struct trace_iterator *iter,
192 struct file *filp, char __user *ubuf,
193 size_t cnt, loff_t *ppos);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200194 void (*ctrl_update)(struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200195#ifdef CONFIG_FTRACE_STARTUP_TEST
196 int (*selftest)(struct tracer *trace,
197 struct trace_array *tr);
198#endif
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200199 int (*print_line)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200200 struct tracer *next;
201 int print_max;
202};
203
Steven Rostedt214023c2008-05-12 21:20:46 +0200204struct trace_seq {
205 unsigned char buffer[PAGE_SIZE];
206 unsigned int len;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200207 unsigned int readpos;
Steven Rostedt214023c2008-05-12 21:20:46 +0200208};
209
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200210/*
211 * Trace iterator - used by printout routines who present trace
212 * results to users and which routines might sleep, etc:
213 */
214struct trace_iterator {
215 struct trace_array *tr;
216 struct tracer *trace;
Steven Rostedt107bad82008-05-12 21:21:01 +0200217 void *private;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200218 long last_overrun[NR_CPUS];
219 long overrun[NR_CPUS];
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200220
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200221 /* The below is zeroed out in pipe_read */
222 struct trace_seq seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200223 struct trace_entry *ent;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200224 int cpu;
225
226 struct trace_entry *prev_ent;
227 int prev_cpu;
228
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200229 unsigned long iter_flags;
230 loff_t pos;
231 unsigned long next_idx[NR_CPUS];
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200232 struct list_head *next_page[NR_CPUS];
233 unsigned next_page_idx[NR_CPUS];
234 long idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200235};
236
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300237void trace_wake_up(void);
Ingo Molnare309b412008-05-12 21:20:51 +0200238void tracing_reset(struct trace_array_cpu *data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200239int tracing_open_generic(struct inode *inode, struct file *filp);
240struct dentry *tracing_init_dentry(void);
Ingo Molnard618b3e2008-05-12 21:20:49 +0200241void init_tracer_sysprof_debugfs(struct dentry *d_tracer);
242
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300243struct trace_entry *tracing_get_trace_entry(struct trace_array *tr,
244 struct trace_array_cpu *data);
245void tracing_generic_entry_update(struct trace_entry *entry,
246 unsigned long flags);
247
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200248void ftrace(struct trace_array *tr,
249 struct trace_array_cpu *data,
250 unsigned long ip,
251 unsigned long parent_ip,
252 unsigned long flags);
253void tracing_sched_switch_trace(struct trace_array *tr,
254 struct trace_array_cpu *data,
255 struct task_struct *prev,
256 struct task_struct *next,
257 unsigned long flags);
258void tracing_record_cmdline(struct task_struct *tsk);
Ingo Molnar57422792008-05-12 21:20:51 +0200259
260void tracing_sched_wakeup_trace(struct trace_array *tr,
261 struct trace_array_cpu *data,
262 struct task_struct *wakee,
263 struct task_struct *cur,
264 unsigned long flags);
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200265void trace_special(struct trace_array *tr,
266 struct trace_array_cpu *data,
267 unsigned long arg1,
268 unsigned long arg2,
269 unsigned long arg3);
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200270void trace_function(struct trace_array *tr,
271 struct trace_array_cpu *data,
272 unsigned long ip,
273 unsigned long parent_ip,
274 unsigned long flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200275
Steven Rostedt41bc8142008-05-22 11:49:22 -0400276void tracing_start_cmdline_record(void);
277void tracing_stop_cmdline_record(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200278int register_tracer(struct tracer *type);
279void unregister_tracer(struct tracer *type);
280
281extern unsigned long nsecs_to_usecs(unsigned long nsecs);
282
283extern unsigned long tracing_max_latency;
284extern unsigned long tracing_thresh;
285
286void update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu);
287void update_max_tr_single(struct trace_array *tr,
288 struct task_struct *tsk, int cpu);
289
Ingo Molnare309b412008-05-12 21:20:51 +0200290extern cycle_t ftrace_now(int cpu);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200291
Steven Rostedt001b6762008-07-10 20:58:10 -0400292#ifdef CONFIG_FTRACE
293void tracing_start_function_trace(void);
294void tracing_stop_function_trace(void);
295#else
296# define tracing_start_function_trace() do { } while (0)
297# define tracing_stop_function_trace() do { } while (0)
298#endif
299
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200300#ifdef CONFIG_CONTEXT_SWITCH_TRACER
301typedef void
302(*tracer_switch_func_t)(void *private,
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200303 void *__rq,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200304 struct task_struct *prev,
305 struct task_struct *next);
306
307struct tracer_switch_ops {
308 tracer_switch_func_t func;
309 void *private;
310 struct tracer_switch_ops *next;
311};
312
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200313#endif /* CONFIG_CONTEXT_SWITCH_TRACER */
314
315#ifdef CONFIG_DYNAMIC_FTRACE
316extern unsigned long ftrace_update_tot_cnt;
Steven Rostedtd05cdb22008-05-12 21:20:54 +0200317#define DYN_FTRACE_TEST_NAME trace_selftest_dynamic_test_func
318extern int DYN_FTRACE_TEST_NAME(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200319#endif
320
Steven Rostedt60a11772008-05-12 21:20:44 +0200321#ifdef CONFIG_FTRACE_STARTUP_TEST
Steven Rostedt60a11772008-05-12 21:20:44 +0200322extern int trace_selftest_startup_function(struct tracer *trace,
323 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200324extern int trace_selftest_startup_irqsoff(struct tracer *trace,
325 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200326extern int trace_selftest_startup_preemptoff(struct tracer *trace,
327 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200328extern int trace_selftest_startup_preemptirqsoff(struct tracer *trace,
329 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200330extern int trace_selftest_startup_wakeup(struct tracer *trace,
331 struct trace_array *tr);
Steven Noonanfb1b6d82008-09-19 03:06:43 -0700332extern int trace_selftest_startup_nop(struct tracer *trace,
333 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200334extern int trace_selftest_startup_sched_switch(struct tracer *trace,
335 struct trace_array *tr);
Ingo Molnara6dd24f2008-05-12 21:20:47 +0200336extern int trace_selftest_startup_sysprof(struct tracer *trace,
337 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200338#endif /* CONFIG_FTRACE_STARTUP_TEST */
339
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200340extern void *head_page(struct trace_array_cpu *data);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200341extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
Pekka Paalanenfc5e27a2008-09-16 22:02:27 +0300342extern void trace_seq_print_cont(struct trace_seq *s,
343 struct trace_iterator *iter);
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200344extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
345 size_t cnt);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200346extern long ns2usecs(cycle_t nsec);
Pekka Paalanen801fe402008-09-16 21:58:24 +0300347extern int trace_vprintk(unsigned long ip, const char *fmt, va_list args);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200348
Ingo Molnar4e655512008-05-12 21:20:52 +0200349extern unsigned long trace_flags;
350
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200351/*
352 * trace_iterator_flags is an enumeration that defines bit
353 * positions into trace_flags that controls the output.
354 *
355 * NOTE: These bits must match the trace_options array in
356 * trace.c.
357 */
Ingo Molnar4e655512008-05-12 21:20:52 +0200358enum trace_iterator_flags {
359 TRACE_ITER_PRINT_PARENT = 0x01,
360 TRACE_ITER_SYM_OFFSET = 0x02,
361 TRACE_ITER_SYM_ADDR = 0x04,
362 TRACE_ITER_VERBOSE = 0x08,
363 TRACE_ITER_RAW = 0x10,
364 TRACE_ITER_HEX = 0x20,
365 TRACE_ITER_BIN = 0x40,
366 TRACE_ITER_BLOCK = 0x80,
367 TRACE_ITER_STACKTRACE = 0x100,
Ingo Molnar4ac3ba42008-05-12 21:20:52 +0200368 TRACE_ITER_SCHED_TREE = 0x200,
Peter Zijlstraf09ce572008-09-04 10:24:14 +0200369 TRACE_ITER_PRINTK = 0x400,
Ingo Molnar4e655512008-05-12 21:20:52 +0200370};
371
Frédéric Weisbecker43a15382008-09-21 20:16:30 +0200372extern struct tracer nop_trace;
373
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200374#endif /* _LINUX_KERNEL_TRACE_H */