blob: b28bf8812efcaeef63e7339789b70f6f1440973e [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>
Frédéric Weisbeckerd13744c2008-09-23 11:32:08 +01009#include <linux/ftrace.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020010
Thomas Gleixner72829bc2008-05-23 21:37:28 +020011enum trace_type {
12 __TRACE_FIRST_TYPE = 0,
13
14 TRACE_FN,
15 TRACE_CTX,
16 TRACE_WAKE,
Steven Rostedtdd0e5452008-08-01 12:26:41 -040017 TRACE_CONT,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020018 TRACE_STACK,
Steven Rostedtdd0e5452008-08-01 12:26:41 -040019 TRACE_PRINT,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020020 TRACE_SPECIAL,
Pekka Paalanenbd8ac682008-05-12 21:20:57 +020021 TRACE_MMIO_RW,
22 TRACE_MMIO_MAP,
Frédéric Weisbeckerd13744c2008-09-23 11:32:08 +010023 TRACE_BOOT,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020024
25 __TRACE_LAST_TYPE
26};
27
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020028/*
29 * Function trace entry - function address and parent function addres:
30 */
31struct ftrace_entry {
32 unsigned long ip;
33 unsigned long parent_ip;
34};
Frédéric Weisbeckerd13744c2008-09-23 11:32:08 +010035extern struct tracer boot_tracer;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020036
37/*
38 * Context switch trace entry - which task (and prio) we switched from/to:
39 */
40struct ctx_switch_entry {
41 unsigned int prev_pid;
42 unsigned char prev_prio;
43 unsigned char prev_state;
44 unsigned int next_pid;
45 unsigned char next_prio;
Peter Zijlstrabac524d2008-05-12 21:20:53 +020046 unsigned char next_state;
Peter Zijlstra80b5e942008-09-04 10:24:16 +020047 unsigned int next_cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020048};
49
50/*
Ingo Molnarf0a920d2008-05-12 21:20:47 +020051 * Special (free-form) trace entry:
52 */
53struct special_entry {
54 unsigned long arg1;
55 unsigned long arg2;
56 unsigned long arg3;
57};
58
59/*
Ingo Molnar86387f72008-05-12 21:20:51 +020060 * Stack-trace entry:
61 */
62
Ingo Molnar74f4e362008-05-12 21:21:15 +020063#define FTRACE_STACK_ENTRIES 8
Ingo Molnar86387f72008-05-12 21:20:51 +020064
65struct stack_entry {
66 unsigned long caller[FTRACE_STACK_ENTRIES];
67};
68
69/*
Steven Rostedtdd0e5452008-08-01 12:26:41 -040070 * ftrace_printk entry:
71 */
72struct print_entry {
73 unsigned long ip;
74 char buf[];
75};
76
77/*
Pekka Paalanenfc5e27a2008-09-16 22:02:27 +030078 * trace_flag_type is an enumeration that holds different
79 * states when a trace occurs. These are:
80 * IRQS_OFF - interrupts were disabled
81 * NEED_RESCED - reschedule is requested
82 * HARDIRQ - inside an interrupt handler
83 * SOFTIRQ - inside a softirq handler
84 * CONT - multiple entries hold the trace item
85 */
86enum trace_flag_type {
87 TRACE_FLAG_IRQS_OFF = 0x01,
88 TRACE_FLAG_NEED_RESCHED = 0x02,
89 TRACE_FLAG_HARDIRQ = 0x04,
90 TRACE_FLAG_SOFTIRQ = 0x08,
91 TRACE_FLAG_CONT = 0x10,
92};
93
94/*
Steven Rostedt2e2ca152008-08-01 12:26:40 -040095 * The trace field - the most basic unit of tracing. This is what
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020096 * is printed in the end as a single line in the trace output, such as:
97 *
98 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
99 */
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400100struct trace_field {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200101 char cpu;
102 char flags;
103 char preempt_count;
104 int pid;
105 cycle_t t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200106 union {
107 struct ftrace_entry fn;
108 struct ctx_switch_entry ctx;
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200109 struct special_entry special;
Ingo Molnar86387f72008-05-12 21:20:51 +0200110 struct stack_entry stack;
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400111 struct print_entry print;
Pekka Paalanenbd8ac682008-05-12 21:20:57 +0200112 struct mmiotrace_rw mmiorw;
113 struct mmiotrace_map mmiomap;
Frédéric Weisbeckerd13744c2008-09-23 11:32:08 +0100114 struct boot_trace initcall;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200115 };
116};
117
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400118struct trace_field_cont {
119 char buf[sizeof(struct trace_field)];
120};
121
122struct trace_entry {
123 char type;
124 union {
125 struct trace_field field;
126 struct trace_field_cont cont;
127 };
128};
129
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200130#define TRACE_ENTRY_SIZE sizeof(struct trace_entry)
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +0300131#define TRACE_BUF_SIZE 1024
132#define TRACE_PRINT_BUF_SIZE \
133 (sizeof(struct trace_field) - offsetof(struct trace_field, print.buf))
134#define TRACE_CONT_BUF_SIZE sizeof(struct trace_field)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200135
136/*
137 * The CPU trace array - it consists of thousands of trace entries
138 * plus some other descriptor data: (for example which task started
139 * the trace, etc.)
140 */
141struct trace_array_cpu {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200142 struct list_head trace_pages;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200143 atomic_t disabled;
Steven Rostedt92205c22008-05-12 21:20:55 +0200144 raw_spinlock_t lock;
Ingo Molnard4c5a2f2008-05-12 21:20:46 +0200145 struct lock_class_key lock_key;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200146
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200147 /* these fields get copied into max-trace: */
Steven Rostedt93a588f2008-05-12 21:20:45 +0200148 unsigned trace_head_idx;
149 unsigned trace_tail_idx;
150 void *trace_head; /* producer */
151 void *trace_tail; /* consumer */
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200152 unsigned long trace_idx;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200153 unsigned long overrun;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200154 unsigned long saved_latency;
155 unsigned long critical_start;
156 unsigned long critical_end;
157 unsigned long critical_sequence;
158 unsigned long nice;
159 unsigned long policy;
160 unsigned long rt_priority;
161 cycle_t preempt_timestamp;
162 pid_t pid;
163 uid_t uid;
164 char comm[TASK_COMM_LEN];
165};
166
167struct trace_iterator;
168
169/*
170 * The trace array - an array of per-CPU trace arrays. This is the
171 * highest level data structure that individual tracers deal with.
172 * They have on/off state as well:
173 */
174struct trace_array {
175 unsigned long entries;
176 long ctrl;
177 int cpu;
178 cycle_t time_start;
Steven Rostedtb3806b42008-05-12 21:20:46 +0200179 struct task_struct *waiter;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200180 struct trace_array_cpu *data[NR_CPUS];
181};
182
183/*
184 * A specific tracer, represented by methods that operate on a trace array:
185 */
186struct tracer {
187 const char *name;
188 void (*init)(struct trace_array *tr);
189 void (*reset)(struct trace_array *tr);
190 void (*open)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200191 void (*pipe_open)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200192 void (*close)(struct trace_iterator *iter);
193 void (*start)(struct trace_iterator *iter);
194 void (*stop)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200195 ssize_t (*read)(struct trace_iterator *iter,
196 struct file *filp, char __user *ubuf,
197 size_t cnt, loff_t *ppos);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200198 void (*ctrl_update)(struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200199#ifdef CONFIG_FTRACE_STARTUP_TEST
200 int (*selftest)(struct tracer *trace,
201 struct trace_array *tr);
202#endif
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200203 int (*print_line)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200204 struct tracer *next;
205 int print_max;
206};
207
Steven Rostedt214023c2008-05-12 21:20:46 +0200208struct trace_seq {
209 unsigned char buffer[PAGE_SIZE];
210 unsigned int len;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200211 unsigned int readpos;
Steven Rostedt214023c2008-05-12 21:20:46 +0200212};
213
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200214/*
215 * Trace iterator - used by printout routines who present trace
216 * results to users and which routines might sleep, etc:
217 */
218struct trace_iterator {
219 struct trace_array *tr;
220 struct tracer *trace;
Steven Rostedt107bad82008-05-12 21:21:01 +0200221 void *private;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200222 long last_overrun[NR_CPUS];
223 long overrun[NR_CPUS];
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200224
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200225 /* The below is zeroed out in pipe_read */
226 struct trace_seq seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200227 struct trace_entry *ent;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200228 int cpu;
229
230 struct trace_entry *prev_ent;
231 int prev_cpu;
232
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200233 unsigned long iter_flags;
234 loff_t pos;
235 unsigned long next_idx[NR_CPUS];
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200236 struct list_head *next_page[NR_CPUS];
237 unsigned next_page_idx[NR_CPUS];
238 long idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200239};
240
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300241void trace_wake_up(void);
Ingo Molnare309b412008-05-12 21:20:51 +0200242void tracing_reset(struct trace_array_cpu *data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200243int tracing_open_generic(struct inode *inode, struct file *filp);
244struct dentry *tracing_init_dentry(void);
Ingo Molnard618b3e2008-05-12 21:20:49 +0200245void init_tracer_sysprof_debugfs(struct dentry *d_tracer);
246
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300247struct trace_entry *tracing_get_trace_entry(struct trace_array *tr,
248 struct trace_array_cpu *data);
249void tracing_generic_entry_update(struct trace_entry *entry,
250 unsigned long flags);
251
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200252void ftrace(struct trace_array *tr,
253 struct trace_array_cpu *data,
254 unsigned long ip,
255 unsigned long parent_ip,
256 unsigned long flags);
257void tracing_sched_switch_trace(struct trace_array *tr,
258 struct trace_array_cpu *data,
259 struct task_struct *prev,
260 struct task_struct *next,
261 unsigned long flags);
262void tracing_record_cmdline(struct task_struct *tsk);
Ingo Molnar57422792008-05-12 21:20:51 +0200263
264void tracing_sched_wakeup_trace(struct trace_array *tr,
265 struct trace_array_cpu *data,
266 struct task_struct *wakee,
267 struct task_struct *cur,
268 unsigned long flags);
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200269void trace_special(struct trace_array *tr,
270 struct trace_array_cpu *data,
271 unsigned long arg1,
272 unsigned long arg2,
273 unsigned long arg3);
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200274void trace_function(struct trace_array *tr,
275 struct trace_array_cpu *data,
276 unsigned long ip,
277 unsigned long parent_ip,
278 unsigned long flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200279
Steven Rostedt41bc8142008-05-22 11:49:22 -0400280void tracing_start_cmdline_record(void);
281void tracing_stop_cmdline_record(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200282int register_tracer(struct tracer *type);
283void unregister_tracer(struct tracer *type);
284
285extern unsigned long nsecs_to_usecs(unsigned long nsecs);
286
287extern unsigned long tracing_max_latency;
288extern unsigned long tracing_thresh;
289
290void update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu);
291void update_max_tr_single(struct trace_array *tr,
292 struct task_struct *tsk, int cpu);
293
Ingo Molnare309b412008-05-12 21:20:51 +0200294extern cycle_t ftrace_now(int cpu);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200295
Steven Rostedt001b6762008-07-10 20:58:10 -0400296#ifdef CONFIG_FTRACE
297void tracing_start_function_trace(void);
298void tracing_stop_function_trace(void);
299#else
300# define tracing_start_function_trace() do { } while (0)
301# define tracing_stop_function_trace() do { } while (0)
302#endif
303
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200304#ifdef CONFIG_CONTEXT_SWITCH_TRACER
305typedef void
306(*tracer_switch_func_t)(void *private,
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200307 void *__rq,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200308 struct task_struct *prev,
309 struct task_struct *next);
310
311struct tracer_switch_ops {
312 tracer_switch_func_t func;
313 void *private;
314 struct tracer_switch_ops *next;
315};
316
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200317#endif /* CONFIG_CONTEXT_SWITCH_TRACER */
318
319#ifdef CONFIG_DYNAMIC_FTRACE
320extern unsigned long ftrace_update_tot_cnt;
Steven Rostedtd05cdb22008-05-12 21:20:54 +0200321#define DYN_FTRACE_TEST_NAME trace_selftest_dynamic_test_func
322extern int DYN_FTRACE_TEST_NAME(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200323#endif
324
Steven Rostedt60a11772008-05-12 21:20:44 +0200325#ifdef CONFIG_FTRACE_STARTUP_TEST
Steven Rostedt60a11772008-05-12 21:20:44 +0200326extern int trace_selftest_startup_function(struct tracer *trace,
327 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200328extern int trace_selftest_startup_irqsoff(struct tracer *trace,
329 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200330extern int trace_selftest_startup_preemptoff(struct tracer *trace,
331 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200332extern int trace_selftest_startup_preemptirqsoff(struct tracer *trace,
333 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200334extern int trace_selftest_startup_wakeup(struct tracer *trace,
335 struct trace_array *tr);
Steven Noonanfb1b6d82008-09-19 03:06:43 -0700336extern int trace_selftest_startup_nop(struct tracer *trace,
337 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200338extern int trace_selftest_startup_sched_switch(struct tracer *trace,
339 struct trace_array *tr);
Ingo Molnara6dd24f2008-05-12 21:20:47 +0200340extern int trace_selftest_startup_sysprof(struct tracer *trace,
341 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200342#endif /* CONFIG_FTRACE_STARTUP_TEST */
343
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200344extern void *head_page(struct trace_array_cpu *data);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200345extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
Pekka Paalanenfc5e27a2008-09-16 22:02:27 +0300346extern void trace_seq_print_cont(struct trace_seq *s,
347 struct trace_iterator *iter);
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200348extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
349 size_t cnt);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200350extern long ns2usecs(cycle_t nsec);
Pekka Paalanen801fe402008-09-16 21:58:24 +0300351extern int trace_vprintk(unsigned long ip, const char *fmt, va_list args);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200352
Ingo Molnar4e655512008-05-12 21:20:52 +0200353extern unsigned long trace_flags;
354
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200355/*
356 * trace_iterator_flags is an enumeration that defines bit
357 * positions into trace_flags that controls the output.
358 *
359 * NOTE: These bits must match the trace_options array in
360 * trace.c.
361 */
Ingo Molnar4e655512008-05-12 21:20:52 +0200362enum trace_iterator_flags {
363 TRACE_ITER_PRINT_PARENT = 0x01,
364 TRACE_ITER_SYM_OFFSET = 0x02,
365 TRACE_ITER_SYM_ADDR = 0x04,
366 TRACE_ITER_VERBOSE = 0x08,
367 TRACE_ITER_RAW = 0x10,
368 TRACE_ITER_HEX = 0x20,
369 TRACE_ITER_BIN = 0x40,
370 TRACE_ITER_BLOCK = 0x80,
371 TRACE_ITER_STACKTRACE = 0x100,
Ingo Molnar4ac3ba42008-05-12 21:20:52 +0200372 TRACE_ITER_SCHED_TREE = 0x200,
Peter Zijlstraf09ce572008-09-04 10:24:14 +0200373 TRACE_ITER_PRINTK = 0x400,
Ingo Molnar4e655512008-05-12 21:20:52 +0200374};
375
Frédéric Weisbecker43a15382008-09-21 20:16:30 +0200376extern struct tracer nop_trace;
377
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200378#endif /* _LINUX_KERNEL_TRACE_H */