blob: f6965f775b4327c759d1f214e4ccf1671a4f50fd [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>
Steven Rostedt3928a8a2008-09-29 23:02:41 -04008#include <linux/ring_buffer.h>
Pekka Paalanenbd8ac682008-05-12 21:20:57 +02009#include <linux/mmiotrace.h>
Frédéric Weisbeckerd13744c2008-09-23 11:32:08 +010010#include <linux/ftrace.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020011
Thomas Gleixner72829bc2008-05-23 21:37:28 +020012enum trace_type {
13 __TRACE_FIRST_TYPE = 0,
14
15 TRACE_FN,
16 TRACE_CTX,
17 TRACE_WAKE,
Steven Rostedtdd0e5452008-08-01 12:26:41 -040018 TRACE_CONT,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020019 TRACE_STACK,
Steven Rostedtdd0e5452008-08-01 12:26:41 -040020 TRACE_PRINT,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020021 TRACE_SPECIAL,
Pekka Paalanenbd8ac682008-05-12 21:20:57 +020022 TRACE_MMIO_RW,
23 TRACE_MMIO_MAP,
Frédéric Weisbeckerd13744c2008-09-23 11:32:08 +010024 TRACE_BOOT,
Thomas Gleixner72829bc2008-05-23 21:37:28 +020025
26 __TRACE_LAST_TYPE
27};
28
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020029/*
30 * Function trace entry - function address and parent function addres:
31 */
32struct ftrace_entry {
33 unsigned long ip;
34 unsigned long parent_ip;
35};
Frédéric Weisbeckerd13744c2008-09-23 11:32:08 +010036extern struct tracer boot_tracer;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020037
38/*
39 * Context switch trace entry - which task (and prio) we switched from/to:
40 */
41struct ctx_switch_entry {
42 unsigned int prev_pid;
43 unsigned char prev_prio;
44 unsigned char prev_state;
45 unsigned int next_pid;
46 unsigned char next_prio;
Peter Zijlstrabac524d2008-05-12 21:20:53 +020047 unsigned char next_state;
Peter Zijlstra80b5e942008-09-04 10:24:16 +020048 unsigned int next_cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020049};
50
51/*
Ingo Molnarf0a920d2008-05-12 21:20:47 +020052 * Special (free-form) trace entry:
53 */
54struct special_entry {
55 unsigned long arg1;
56 unsigned long arg2;
57 unsigned long arg3;
58};
59
60/*
Ingo Molnar86387f72008-05-12 21:20:51 +020061 * Stack-trace entry:
62 */
63
Ingo Molnar74f4e362008-05-12 21:21:15 +020064#define FTRACE_STACK_ENTRIES 8
Ingo Molnar86387f72008-05-12 21:20:51 +020065
66struct stack_entry {
67 unsigned long caller[FTRACE_STACK_ENTRIES];
68};
69
70/*
Steven Rostedtdd0e5452008-08-01 12:26:41 -040071 * ftrace_printk entry:
72 */
73struct print_entry {
74 unsigned long ip;
75 char buf[];
76};
77
78/*
Pekka Paalanenfc5e27a2008-09-16 22:02:27 +030079 * trace_flag_type is an enumeration that holds different
80 * states when a trace occurs. These are:
81 * IRQS_OFF - interrupts were disabled
82 * NEED_RESCED - reschedule is requested
83 * HARDIRQ - inside an interrupt handler
84 * SOFTIRQ - inside a softirq handler
85 * CONT - multiple entries hold the trace item
86 */
87enum trace_flag_type {
88 TRACE_FLAG_IRQS_OFF = 0x01,
89 TRACE_FLAG_NEED_RESCHED = 0x02,
90 TRACE_FLAG_HARDIRQ = 0x04,
91 TRACE_FLAG_SOFTIRQ = 0x08,
92 TRACE_FLAG_CONT = 0x10,
93};
94
95/*
Steven Rostedt2e2ca152008-08-01 12:26:40 -040096 * The trace field - the most basic unit of tracing. This is what
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020097 * is printed in the end as a single line in the trace output, such as:
98 *
99 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
100 */
Steven Rostedt2e2ca152008-08-01 12:26:40 -0400101struct trace_field {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200102 char cpu;
103 char flags;
104 char preempt_count;
105 int pid;
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 Rostedtbc0c38d2008-05-12 21:20:42 +0200142 atomic_t disabled;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200143
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200144 /* these fields get copied into max-trace: */
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200145 unsigned long trace_idx;
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200146 unsigned long overrun;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200147 unsigned long saved_latency;
148 unsigned long critical_start;
149 unsigned long critical_end;
150 unsigned long critical_sequence;
151 unsigned long nice;
152 unsigned long policy;
153 unsigned long rt_priority;
154 cycle_t preempt_timestamp;
155 pid_t pid;
156 uid_t uid;
157 char comm[TASK_COMM_LEN];
158};
159
160struct trace_iterator;
161
162/*
163 * The trace array - an array of per-CPU trace arrays. This is the
164 * highest level data structure that individual tracers deal with.
165 * They have on/off state as well:
166 */
167struct trace_array {
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400168 struct ring_buffer *buffer;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200169 unsigned long entries;
170 long ctrl;
171 int cpu;
172 cycle_t time_start;
Steven Rostedtb3806b42008-05-12 21:20:46 +0200173 struct task_struct *waiter;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200174 struct trace_array_cpu *data[NR_CPUS];
175};
176
177/*
178 * A specific tracer, represented by methods that operate on a trace array:
179 */
180struct tracer {
181 const char *name;
182 void (*init)(struct trace_array *tr);
183 void (*reset)(struct trace_array *tr);
184 void (*open)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200185 void (*pipe_open)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200186 void (*close)(struct trace_iterator *iter);
187 void (*start)(struct trace_iterator *iter);
188 void (*stop)(struct trace_iterator *iter);
Steven Rostedt107bad82008-05-12 21:21:01 +0200189 ssize_t (*read)(struct trace_iterator *iter,
190 struct file *filp, char __user *ubuf,
191 size_t cnt, loff_t *ppos);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200192 void (*ctrl_update)(struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200193#ifdef CONFIG_FTRACE_STARTUP_TEST
194 int (*selftest)(struct tracer *trace,
195 struct trace_array *tr);
196#endif
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200197 int (*print_line)(struct trace_iterator *iter);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200198 struct tracer *next;
199 int print_max;
200};
201
Steven Rostedt214023c2008-05-12 21:20:46 +0200202struct trace_seq {
203 unsigned char buffer[PAGE_SIZE];
204 unsigned int len;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200205 unsigned int readpos;
Steven Rostedt214023c2008-05-12 21:20:46 +0200206};
207
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200208/*
209 * Trace iterator - used by printout routines who present trace
210 * results to users and which routines might sleep, etc:
211 */
212struct trace_iterator {
213 struct trace_array *tr;
214 struct tracer *trace;
Steven Rostedt107bad82008-05-12 21:21:01 +0200215 void *private;
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400216 struct ring_buffer_iter *buffer_iter[NR_CPUS];
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200217
Steven Rostedt53d0aa72008-05-12 21:21:01 +0200218 /* The below is zeroed out in pipe_read */
219 struct trace_seq seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200220 struct trace_entry *ent;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200221 int cpu;
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400222 u64 ts;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200223
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200224 unsigned long iter_flags;
225 loff_t pos;
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200226 long idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200227};
228
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300229void trace_wake_up(void);
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400230void tracing_reset(struct trace_array *tr, int cpu);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200231int tracing_open_generic(struct inode *inode, struct file *filp);
232struct dentry *tracing_init_dentry(void);
Ingo Molnard618b3e2008-05-12 21:20:49 +0200233void init_tracer_sysprof_debugfs(struct dentry *d_tracer);
234
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +0300235struct trace_entry *tracing_get_trace_entry(struct trace_array *tr,
236 struct trace_array_cpu *data);
237void tracing_generic_entry_update(struct trace_entry *entry,
238 unsigned long flags);
239
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200240void ftrace(struct trace_array *tr,
241 struct trace_array_cpu *data,
242 unsigned long ip,
243 unsigned long parent_ip,
244 unsigned long flags);
245void tracing_sched_switch_trace(struct trace_array *tr,
246 struct trace_array_cpu *data,
247 struct task_struct *prev,
248 struct task_struct *next,
249 unsigned long flags);
250void tracing_record_cmdline(struct task_struct *tsk);
Ingo Molnar57422792008-05-12 21:20:51 +0200251
252void tracing_sched_wakeup_trace(struct trace_array *tr,
253 struct trace_array_cpu *data,
254 struct task_struct *wakee,
255 struct task_struct *cur,
256 unsigned long flags);
Ingo Molnarf0a920d2008-05-12 21:20:47 +0200257void trace_special(struct trace_array *tr,
258 struct trace_array_cpu *data,
259 unsigned long arg1,
260 unsigned long arg2,
261 unsigned long arg3);
Steven Rostedt6fb44b72008-05-12 21:20:49 +0200262void trace_function(struct trace_array *tr,
263 struct trace_array_cpu *data,
264 unsigned long ip,
265 unsigned long parent_ip,
266 unsigned long flags);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200267
Steven Rostedt41bc8142008-05-22 11:49:22 -0400268void tracing_start_cmdline_record(void);
269void tracing_stop_cmdline_record(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200270int register_tracer(struct tracer *type);
271void unregister_tracer(struct tracer *type);
272
273extern unsigned long nsecs_to_usecs(unsigned long nsecs);
274
275extern unsigned long tracing_max_latency;
276extern unsigned long tracing_thresh;
277
278void update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu);
279void update_max_tr_single(struct trace_array *tr,
280 struct task_struct *tsk, int cpu);
281
Ingo Molnare309b412008-05-12 21:20:51 +0200282extern cycle_t ftrace_now(int cpu);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200283
Steven Rostedt001b6762008-07-10 20:58:10 -0400284#ifdef CONFIG_FTRACE
285void tracing_start_function_trace(void);
286void tracing_stop_function_trace(void);
287#else
288# define tracing_start_function_trace() do { } while (0)
289# define tracing_stop_function_trace() do { } while (0)
290#endif
291
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200292#ifdef CONFIG_CONTEXT_SWITCH_TRACER
293typedef void
294(*tracer_switch_func_t)(void *private,
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +0200295 void *__rq,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200296 struct task_struct *prev,
297 struct task_struct *next);
298
299struct tracer_switch_ops {
300 tracer_switch_func_t func;
301 void *private;
302 struct tracer_switch_ops *next;
303};
304
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200305#endif /* CONFIG_CONTEXT_SWITCH_TRACER */
306
307#ifdef CONFIG_DYNAMIC_FTRACE
308extern unsigned long ftrace_update_tot_cnt;
Steven Rostedtd05cdb22008-05-12 21:20:54 +0200309#define DYN_FTRACE_TEST_NAME trace_selftest_dynamic_test_func
310extern int DYN_FTRACE_TEST_NAME(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200311#endif
312
Steven Rostedt60a11772008-05-12 21:20:44 +0200313#ifdef CONFIG_FTRACE_STARTUP_TEST
Steven Rostedt60a11772008-05-12 21:20:44 +0200314extern int trace_selftest_startup_function(struct tracer *trace,
315 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200316extern int trace_selftest_startup_irqsoff(struct tracer *trace,
317 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200318extern int trace_selftest_startup_preemptoff(struct tracer *trace,
319 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200320extern int trace_selftest_startup_preemptirqsoff(struct tracer *trace,
321 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200322extern int trace_selftest_startup_wakeup(struct tracer *trace,
323 struct trace_array *tr);
Steven Noonanfb1b6d82008-09-19 03:06:43 -0700324extern int trace_selftest_startup_nop(struct tracer *trace,
325 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200326extern int trace_selftest_startup_sched_switch(struct tracer *trace,
327 struct trace_array *tr);
Ingo Molnara6dd24f2008-05-12 21:20:47 +0200328extern int trace_selftest_startup_sysprof(struct tracer *trace,
329 struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200330#endif /* CONFIG_FTRACE_STARTUP_TEST */
331
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200332extern void *head_page(struct trace_array_cpu *data);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200333extern int trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
Pekka Paalanenfc5e27a2008-09-16 22:02:27 +0300334extern void trace_seq_print_cont(struct trace_seq *s,
335 struct trace_iterator *iter);
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200336extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
337 size_t cnt);
Thomas Gleixner72829bc2008-05-23 21:37:28 +0200338extern long ns2usecs(cycle_t nsec);
Pekka Paalanen801fe402008-09-16 21:58:24 +0300339extern int trace_vprintk(unsigned long ip, const char *fmt, va_list args);
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200340
Ingo Molnar4e655512008-05-12 21:20:52 +0200341extern unsigned long trace_flags;
342
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200343/*
344 * trace_iterator_flags is an enumeration that defines bit
345 * positions into trace_flags that controls the output.
346 *
347 * NOTE: These bits must match the trace_options array in
348 * trace.c.
349 */
Ingo Molnar4e655512008-05-12 21:20:52 +0200350enum trace_iterator_flags {
351 TRACE_ITER_PRINT_PARENT = 0x01,
352 TRACE_ITER_SYM_OFFSET = 0x02,
353 TRACE_ITER_SYM_ADDR = 0x04,
354 TRACE_ITER_VERBOSE = 0x08,
355 TRACE_ITER_RAW = 0x10,
356 TRACE_ITER_HEX = 0x20,
357 TRACE_ITER_BIN = 0x40,
358 TRACE_ITER_BLOCK = 0x80,
359 TRACE_ITER_STACKTRACE = 0x100,
Ingo Molnar4ac3ba42008-05-12 21:20:52 +0200360 TRACE_ITER_SCHED_TREE = 0x200,
Peter Zijlstraf09ce572008-09-04 10:24:14 +0200361 TRACE_ITER_PRINTK = 0x400,
Ingo Molnar4e655512008-05-12 21:20:52 +0200362};
363
Frédéric Weisbecker43a15382008-09-21 20:16:30 +0200364extern struct tracer nop_trace;
365
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200366#endif /* _LINUX_KERNEL_TRACE_H */