blob: f0c0e8a47ae61f67ed0bbf5b3f723acfdc5df435 [file] [log] [blame]
Mike Frysinger9849ed42010-07-20 03:13:35 -04001/*
2 * Ftrace header. For implementation details beyond the random comments
3 * scattered below, see: Documentation/trace/ftrace-design.txt
4 */
5
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02006#ifndef _LINUX_FTRACE_H
7#define _LINUX_FTRACE_H
8
Frederic Weisbecker00126932009-03-05 01:49:22 +01009#include <linux/trace_clock.h>
Frederic Weisbecker56010202008-10-02 13:26:05 +020010#include <linux/kallsyms.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +010011#include <linux/linkage.h>
Steven Rostedtea4e2bc2008-12-03 15:36:57 -050012#include <linux/bitops.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +010013#include <linux/module.h>
14#include <linux/ktime.h>
Frederic Weisbecker21a8c462008-12-04 23:51:23 +010015#include <linux/sched.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +010016#include <linux/types.h>
17#include <linux/init.h>
18#include <linux/fs.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020019
Uwe Kleine-Koenigc79a61f2009-02-27 21:30:03 +010020#include <asm/ftrace.h>
21
Steven Rostedt371d2012011-07-11 10:12:59 -040022struct ftrace_hash;
23
Steven Rostedt606576c2008-10-06 19:06:12 -040024#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnar3e1932a2008-10-02 17:45:47 +020025
Steven Rostedtb0fc4942008-05-12 21:20:43 +020026extern int ftrace_enabled;
27extern int
28ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070029 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +020030 loff_t *ppos);
31
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020032typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
33
Steven Rostedtb8489142011-05-04 09:27:52 -040034enum {
35 FTRACE_OPS_FL_ENABLED = 1 << 0,
36 FTRACE_OPS_FL_GLOBAL = 1 << 1,
Steven Rostedtcdbe61b2011-05-05 21:14:55 -040037 FTRACE_OPS_FL_DYNAMIC = 1 << 2,
Steven Rostedtb8489142011-05-04 09:27:52 -040038};
39
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020040struct ftrace_ops {
Steven Rostedtf45948e2011-05-02 12:29:25 -040041 ftrace_func_t func;
42 struct ftrace_ops *next;
Steven Rostedtb8489142011-05-04 09:27:52 -040043 unsigned long flags;
Steven Rostedtf45948e2011-05-02 12:29:25 -040044#ifdef CONFIG_DYNAMIC_FTRACE
45 struct ftrace_hash *notrace_hash;
46 struct ftrace_hash *filter_hash;
47#endif
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020048};
49
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050050extern int function_trace_stop;
51
Frederic Weisbeckere7d37372008-11-16 06:02:06 +010052/*
53 * Type of the current tracing.
54 */
55enum ftrace_tracing_type_t {
56 FTRACE_TYPE_ENTER = 0, /* Hook the call of the function */
57 FTRACE_TYPE_RETURN, /* Hook the return of the function */
58};
59
60/* Current tracing type, default is FTRACE_TYPE_ENTER */
61extern enum ftrace_tracing_type_t ftrace_tracing_type;
62
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050063/**
64 * ftrace_stop - stop function tracer.
65 *
66 * A quick way to stop the function tracer. Note this an on off switch,
67 * it is not something that is recursive like preempt_disable.
68 * This does not disable the calling of mcount, it only stops the
69 * calling of functions from mcount.
70 */
71static inline void ftrace_stop(void)
72{
73 function_trace_stop = 1;
74}
75
76/**
77 * ftrace_start - start the function tracer.
78 *
79 * This function is the inverse of ftrace_stop. This does not enable
80 * the function tracing if the function tracer is disabled. This only
81 * sets the function tracer flag to continue calling the functions
82 * from mcount.
83 */
84static inline void ftrace_start(void)
85{
86 function_trace_stop = 0;
87}
88
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020089/*
90 * The ftrace_ops must be a static and should also
91 * be read_mostly. These functions do modify read_mostly variables
92 * so use them sparely. Never free an ftrace_op or modify the
93 * next pointer after it has been registered. Even after unregistering
94 * it, the next pointer may still be used internally.
95 */
96int register_ftrace_function(struct ftrace_ops *ops);
97int unregister_ftrace_function(struct ftrace_ops *ops);
98void clear_ftrace_function(void);
99
100extern void ftrace_stub(unsigned long a0, unsigned long a1);
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200101
Steven Rostedt606576c2008-10-06 19:06:12 -0400102#else /* !CONFIG_FUNCTION_TRACER */
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400103/*
104 * (un)register_ftrace_function must be a macro since the ops parameter
105 * must not be evaluated.
106 */
107#define register_ftrace_function(ops) ({ 0; })
108#define unregister_ftrace_function(ops) ({ 0; })
109static inline void clear_ftrace_function(void) { }
Steven Rostedt81adbdc2008-10-23 09:33:02 -0400110static inline void ftrace_kill(void) { }
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500111static inline void ftrace_stop(void) { }
112static inline void ftrace_start(void) { }
Steven Rostedt606576c2008-10-06 19:06:12 -0400113#endif /* CONFIG_FUNCTION_TRACER */
Steven Rostedt352ad252008-05-12 21:20:42 +0200114
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500115#ifdef CONFIG_STACK_TRACER
116extern int stack_tracer_enabled;
117int
118stack_trace_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700119 void __user *buffer, size_t *lenp,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500120 loff_t *ppos);
121#endif
122
Steven Rostedtf6180772009-02-14 00:40:25 -0500123struct ftrace_func_command {
124 struct list_head list;
125 char *name;
Steven Rostedtd7f04c42011-07-07 11:09:22 -0400126 int (*func)(struct ftrace_hash *hash,
127 char *func, char *cmd,
Steven Rostedtf6180772009-02-14 00:40:25 -0500128 char *params, int enable);
129};
130
Steven Rostedt3d083392008-05-12 21:20:42 +0200131#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt31e88902008-11-14 16:21:19 -0800132
Steven Rostedt000ab692009-02-17 13:35:06 -0500133int ftrace_arch_code_modify_prepare(void);
134int ftrace_arch_code_modify_post_process(void);
135
Steven Rostedt809dcf22009-02-16 23:06:01 -0500136struct seq_file;
137
Steven Rostedtb6887d72009-02-17 12:32:04 -0500138struct ftrace_probe_ops {
Steven Rostedt59df055f2009-02-14 15:29:06 -0500139 void (*func)(unsigned long ip,
140 unsigned long parent_ip,
141 void **data);
142 int (*callback)(unsigned long ip, void **data);
143 void (*free)(void **data);
Steven Rostedt809dcf22009-02-16 23:06:01 -0500144 int (*print)(struct seq_file *m,
145 unsigned long ip,
Steven Rostedtb6887d72009-02-17 12:32:04 -0500146 struct ftrace_probe_ops *ops,
Steven Rostedt809dcf22009-02-16 23:06:01 -0500147 void *data);
Steven Rostedt59df055f2009-02-14 15:29:06 -0500148};
149
150extern int
Steven Rostedtb6887d72009-02-17 12:32:04 -0500151register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -0500152 void *data);
153extern void
Steven Rostedtb6887d72009-02-17 12:32:04 -0500154unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -0500155 void *data);
156extern void
Steven Rostedtb6887d72009-02-17 12:32:04 -0500157unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops);
158extern void unregister_ftrace_function_probe_all(char *glob);
Steven Rostedt59df055f2009-02-14 15:29:06 -0500159
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500160extern int ftrace_text_reserved(void *start, void *end);
161
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200162enum {
Steven Rostedted926f92011-05-03 13:25:24 -0400163 FTRACE_FL_ENABLED = (1 << 30),
164 FTRACE_FL_FREE = (1 << 31),
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200165};
166
Steven Rostedted926f92011-05-03 13:25:24 -0400167#define FTRACE_FL_MASK (0x3UL << 30)
168#define FTRACE_REF_MAX ((1 << 30) - 1)
169
Steven Rostedt3d083392008-05-12 21:20:42 +0200170struct dyn_ftrace {
Lai Jiangshanee000b72009-03-24 13:38:06 +0800171 union {
172 unsigned long ip; /* address of mcount call-site */
173 struct dyn_ftrace *freelist;
174 };
175 union {
176 unsigned long flags;
177 struct dyn_ftrace *newlist;
178 };
179 struct dyn_arch_ftrace arch;
Steven Rostedt3d083392008-05-12 21:20:42 +0200180};
181
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200182int ftrace_force_update(void);
Steven Rostedt936e0742011-05-05 22:54:01 -0400183void ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
184 int len, int reset);
185void ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
186 int len, int reset);
187void ftrace_set_global_filter(unsigned char *buf, int len, int reset);
188void ftrace_set_global_notrace(unsigned char *buf, int len, int reset);
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200189
Steven Rostedtf6180772009-02-14 00:40:25 -0500190int register_ftrace_command(struct ftrace_func_command *cmd);
191int unregister_ftrace_command(struct ftrace_func_command *cmd);
192
Steven Rostedt3d083392008-05-12 21:20:42 +0200193/* defined in arch */
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200194extern int ftrace_ip_converted(unsigned long ip);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200195extern int ftrace_dyn_arch_init(void *data);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200196extern int ftrace_update_ftrace_func(ftrace_func_t func);
197extern void ftrace_caller(void);
198extern void ftrace_call(void);
199extern void mcount_call(void);
Shaohua Lif0001202009-01-09 11:29:42 +0800200
201#ifndef FTRACE_ADDR
202#define FTRACE_ADDR ((unsigned long)ftrace_caller)
203#endif
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100204#ifdef CONFIG_FUNCTION_GRAPH_TRACER
205extern void ftrace_graph_caller(void);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -0500206extern int ftrace_enable_ftrace_graph_caller(void);
207extern int ftrace_disable_ftrace_graph_caller(void);
208#else
209static inline int ftrace_enable_ftrace_graph_caller(void) { return 0; }
210static inline int ftrace_disable_ftrace_graph_caller(void) { return 0; }
Frederic Weisbeckere7d37372008-11-16 06:02:06 +0100211#endif
Steven Rostedtad90c0e2008-05-27 20:48:37 -0400212
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400213/**
Wenji Huang57794a92009-02-06 17:33:27 +0800214 * ftrace_make_nop - convert code into nop
Steven Rostedt31e88902008-11-14 16:21:19 -0800215 * @mod: module structure if called by module load initialization
216 * @rec: the mcount call site record
217 * @addr: the address that the call site should be calling
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400218 *
219 * This is a very sensitive operation and great care needs
220 * to be taken by the arch. The operation should carefully
221 * read the location, check to see if what is read is indeed
222 * what we expect it to be, and then on success of the compare,
223 * it should write to the location.
224 *
Steven Rostedt31e88902008-11-14 16:21:19 -0800225 * The code segment at @rec->ip should be a caller to @addr
226 *
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400227 * Return must be:
228 * 0 on success
229 * -EFAULT on error reading the location
230 * -EINVAL on a failed compare of the contents
231 * -EPERM on error writing to the location
232 * Any other value will be considered a failure.
233 */
Steven Rostedt31e88902008-11-14 16:21:19 -0800234extern int ftrace_make_nop(struct module *mod,
235 struct dyn_ftrace *rec, unsigned long addr);
236
237/**
238 * ftrace_make_call - convert a nop call site into a call to addr
239 * @rec: the mcount call site record
240 * @addr: the address that the call site should call
241 *
242 * This is a very sensitive operation and great care needs
243 * to be taken by the arch. The operation should carefully
244 * read the location, check to see if what is read is indeed
245 * what we expect it to be, and then on success of the compare,
246 * it should write to the location.
247 *
248 * The code segment at @rec->ip should be a nop
249 *
250 * Return must be:
251 * 0 on success
252 * -EFAULT on error reading the location
253 * -EINVAL on a failed compare of the contents
254 * -EPERM on error writing to the location
255 * Any other value will be considered a failure.
256 */
257extern int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr);
258
Steven Rostedt31e88902008-11-14 16:21:19 -0800259/* May be defined in arch */
260extern int ftrace_arch_read_dyn_info(char *buf, int size);
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400261
Abhishek Sagarecea6562008-06-21 23:47:53 +0530262extern int skip_trace(unsigned long ip);
263
Steven Rostedtc0719e52008-09-06 01:06:03 -0400264extern void ftrace_disable_daemon(void);
265extern void ftrace_enable_daemon(void);
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200266#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400267static inline int skip_trace(unsigned long ip) { return 0; }
268static inline int ftrace_force_update(void) { return 0; }
269static inline void ftrace_set_filter(unsigned char *buf, int len, int reset)
270{
271}
272static inline void ftrace_disable_daemon(void) { }
273static inline void ftrace_enable_daemon(void) { }
jolsa@redhat.come7247a12009-10-07 19:00:35 +0200274static inline void ftrace_release_mod(struct module *mod) {}
Steven Rostedtf6180772009-02-14 00:40:25 -0500275static inline int register_ftrace_command(struct ftrace_func_command *cmd)
276{
Ingo Molnar97d0bb82009-02-17 11:47:39 +0100277 return -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -0500278}
279static inline int unregister_ftrace_command(char *cmd_name)
280{
Ingo Molnar97d0bb82009-02-17 11:47:39 +0100281 return -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -0500282}
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500283static inline int ftrace_text_reserved(void *start, void *end)
284{
285 return 0;
286}
Abhishek Sagarecea6562008-06-21 23:47:53 +0530287#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt352ad252008-05-12 21:20:42 +0200288
Ingo Molnaraeaee8a2008-05-12 21:20:49 +0200289/* totally disable ftrace - can not re-enable after this */
290void ftrace_kill(void);
291
Ingo Molnarf43fdad2008-05-12 21:20:43 +0200292static inline void tracer_disable(void)
293{
Steven Rostedt606576c2008-10-06 19:06:12 -0400294#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnarf43fdad2008-05-12 21:20:43 +0200295 ftrace_enabled = 0;
296#endif
297}
298
Huang Ying37002732008-08-18 16:24:56 +0800299/*
300 * Ftrace disable/restore without lock. Some synchronization mechanism
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700301 * must be used to prevent ftrace_enabled to be changed between
Huang Ying37002732008-08-18 16:24:56 +0800302 * disable/restore.
303 */
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700304static inline int __ftrace_enabled_save(void)
305{
Steven Rostedt606576c2008-10-06 19:06:12 -0400306#ifdef CONFIG_FUNCTION_TRACER
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700307 int saved_ftrace_enabled = ftrace_enabled;
308 ftrace_enabled = 0;
309 return saved_ftrace_enabled;
310#else
311 return 0;
312#endif
313}
314
315static inline void __ftrace_enabled_restore(int enabled)
316{
Steven Rostedt606576c2008-10-06 19:06:12 -0400317#ifdef CONFIG_FUNCTION_TRACER
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700318 ftrace_enabled = enabled;
319#endif
320}
321
Uwe Kleine-Koenigc79a61f2009-02-27 21:30:03 +0100322#ifndef HAVE_ARCH_CALLER_ADDR
323# ifdef CONFIG_FRAME_POINTER
324# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
325# define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
326# define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
327# define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
328# define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
329# define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
330# define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6))
331# else
332# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
333# define CALLER_ADDR1 0UL
334# define CALLER_ADDR2 0UL
335# define CALLER_ADDR3 0UL
336# define CALLER_ADDR4 0UL
337# define CALLER_ADDR5 0UL
338# define CALLER_ADDR6 0UL
339# endif
340#endif /* ifndef HAVE_ARCH_CALLER_ADDR */
Steven Rostedt352ad252008-05-12 21:20:42 +0200341
Steven Rostedt81d68a92008-05-12 21:20:42 +0200342#ifdef CONFIG_IRQSOFF_TRACER
Ingo Molnar489f1392008-02-25 13:38:05 +0100343 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
344 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
Steven Rostedt81d68a92008-05-12 21:20:42 +0200345#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400346 static inline void time_hardirqs_on(unsigned long a0, unsigned long a1) { }
347 static inline void time_hardirqs_off(unsigned long a0, unsigned long a1) { }
Steven Rostedt81d68a92008-05-12 21:20:42 +0200348#endif
349
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200350#ifdef CONFIG_PREEMPT_TRACER
Ingo Molnar489f1392008-02-25 13:38:05 +0100351 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
352 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200353#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400354 static inline void trace_preempt_on(unsigned long a0, unsigned long a1) { }
355 static inline void trace_preempt_off(unsigned long a0, unsigned long a1) { }
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200356#endif
357
Steven Rostedt68bf21a2008-08-14 15:45:08 -0400358#ifdef CONFIG_FTRACE_MCOUNT_RECORD
359extern void ftrace_init(void);
360#else
361static inline void ftrace_init(void) { }
362#endif
363
Frederic Weisbecker71566a02008-10-31 12:57:20 +0100364/*
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100365 * Structure that defines an entry function trace.
366 */
367struct ftrace_graph_ent {
368 unsigned long func; /* Current function */
369 int depth;
370};
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400371
Frederic Weisbecker71566a02008-10-31 12:57:20 +0100372/*
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100373 * Structure that defines a return function trace.
374 */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100375struct ftrace_graph_ret {
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100376 unsigned long func; /* Current function */
377 unsigned long long calltime;
378 unsigned long long rettime;
Frederic Weisbecker02310222008-11-17 03:22:41 +0100379 /* Number of functions that overran the depth limit for current task */
380 unsigned long overrun;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100381 int depth;
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100382};
383
Jiri Olsa62b915f2010-04-02 19:01:22 +0200384/* Type of the callback handlers for tracing function graph*/
385typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); /* return */
386typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); /* entry */
387
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100388#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100389
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400390/* for init task */
Tetsuo Handaf876d342009-04-08 14:05:43 +0900391#define INIT_FTRACE_GRAPH .ret_stack = NULL,
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400392
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100393/*
Steven Rostedt712406a2009-02-09 10:54:03 -0800394 * Stack of return addresses for functions
395 * of a thread.
396 * Used in struct thread_info
397 */
398struct ftrace_ret_stack {
399 unsigned long ret;
400 unsigned long func;
401 unsigned long long calltime;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400402 unsigned long long subtime;
Steven Rostedt71e308a2009-06-18 12:45:08 -0400403 unsigned long fp;
Steven Rostedt712406a2009-02-09 10:54:03 -0800404};
405
406/*
407 * Primary handler of a function return.
408 * It relays on ftrace_return_to_handler.
409 * Defined in entry_32/64.S
410 */
411extern void return_to_handler(void);
412
413extern int
Steven Rostedt71e308a2009-06-18 12:45:08 -0400414ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth,
415 unsigned long frame_pointer);
Steven Rostedt712406a2009-02-09 10:54:03 -0800416
417/*
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100418 * Sometimes we don't want to trace a function with the function
419 * graph tracer but we want them to keep traced by the usual function
420 * tracer if the function graph tracer is not configured.
421 */
422#define __notrace_funcgraph notrace
423
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100424/*
425 * We want to which function is an entrypoint of a hardirq.
426 * That will help us to put a signal on output.
427 */
428#define __irq_entry __attribute__((__section__(".irqentry.text")))
429
430/* Limits of hardirq entrypoints */
431extern char __irqentry_text_start[];
432extern char __irqentry_text_end[];
433
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100434#define FTRACE_RETFUNC_DEPTH 50
435#define FTRACE_RETSTACK_ALLOC_SIZE 32
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100436extern int register_ftrace_graph(trace_func_graph_ret_t retfunc,
437 trace_func_graph_ent_t entryfunc);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100438
Steven Rostedt14a866c2008-12-02 23:50:02 -0500439extern void ftrace_graph_stop(void);
440
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100441/* The current handlers in use */
442extern trace_func_graph_ret_t ftrace_graph_return;
443extern trace_func_graph_ent_t ftrace_graph_entry;
444
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100445extern void unregister_ftrace_graph(void);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100446
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100447extern void ftrace_graph_init_task(struct task_struct *t);
448extern void ftrace_graph_exit_task(struct task_struct *t);
Steven Rostedt868baf02011-02-10 21:26:13 -0500449extern void ftrace_graph_init_idle_task(struct task_struct *t, int cpu);
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100450
451static inline int task_curr_ret_stack(struct task_struct *t)
452{
453 return t->curr_ret_stack;
454}
Frederic Weisbecker380c4b12008-12-06 03:43:41 +0100455
456static inline void pause_graph_tracing(void)
457{
458 atomic_inc(&current->tracing_graph_pause);
459}
460
461static inline void unpause_graph_tracing(void)
462{
463 atomic_dec(&current->tracing_graph_pause);
464}
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400465#else /* !CONFIG_FUNCTION_GRAPH_TRACER */
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100466
467#define __notrace_funcgraph
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100468#define __irq_entry
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400469#define INIT_FTRACE_GRAPH
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100470
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100471static inline void ftrace_graph_init_task(struct task_struct *t) { }
472static inline void ftrace_graph_exit_task(struct task_struct *t) { }
Steven Rostedt868baf02011-02-10 21:26:13 -0500473static inline void ftrace_graph_init_idle_task(struct task_struct *t, int cpu) { }
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100474
Jiri Olsa62b915f2010-04-02 19:01:22 +0200475static inline int register_ftrace_graph(trace_func_graph_ret_t retfunc,
476 trace_func_graph_ent_t entryfunc)
477{
478 return -1;
479}
480static inline void unregister_ftrace_graph(void) { }
481
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100482static inline int task_curr_ret_stack(struct task_struct *tsk)
483{
484 return -1;
485}
Frederic Weisbecker380c4b12008-12-06 03:43:41 +0100486
487static inline void pause_graph_tracing(void) { }
488static inline void unpause_graph_tracing(void) { }
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400489#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100490
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500491#ifdef CONFIG_TRACING
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500492
493/* flags for current->trace */
494enum {
495 TSK_TRACE_FL_TRACE_BIT = 0,
496 TSK_TRACE_FL_GRAPH_BIT = 1,
497};
498enum {
499 TSK_TRACE_FL_TRACE = 1 << TSK_TRACE_FL_TRACE_BIT,
500 TSK_TRACE_FL_GRAPH = 1 << TSK_TRACE_FL_GRAPH_BIT,
501};
502
503static inline void set_tsk_trace_trace(struct task_struct *tsk)
504{
505 set_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
506}
507
508static inline void clear_tsk_trace_trace(struct task_struct *tsk)
509{
510 clear_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
511}
512
513static inline int test_tsk_trace_trace(struct task_struct *tsk)
514{
515 return tsk->trace & TSK_TRACE_FL_TRACE;
516}
517
518static inline void set_tsk_trace_graph(struct task_struct *tsk)
519{
520 set_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
521}
522
523static inline void clear_tsk_trace_graph(struct task_struct *tsk)
524{
525 clear_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
526}
527
528static inline int test_tsk_trace_graph(struct task_struct *tsk)
529{
530 return tsk->trace & TSK_TRACE_FL_GRAPH;
531}
532
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200533enum ftrace_dump_mode;
534
535extern enum ftrace_dump_mode ftrace_dump_on_oops;
Ingo Molnar526211b2009-03-05 10:28:45 +0100536
Steven Rostedt261842b2009-04-16 21:41:52 -0400537#ifdef CONFIG_PREEMPT
538#define INIT_TRACE_RECURSION .trace_recursion = 0,
539#endif
540
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500541#endif /* CONFIG_TRACING */
542
Steven Rostedt261842b2009-04-16 21:41:52 -0400543#ifndef INIT_TRACE_RECURSION
544#define INIT_TRACE_RECURSION
545#endif
Markus Metzgerb1818742009-01-19 10:31:01 +0100546
Mike Frysingere7b8e672010-01-26 04:40:03 -0500547#ifdef CONFIG_FTRACE_SYSCALLS
548
549unsigned long arch_syscall_addr(int nr);
550
551#endif /* CONFIG_FTRACE_SYSCALLS */
552
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200553#endif /* _LINUX_FTRACE_H */