blob: 166a2070ef65b76e96453b234ccd9a29f82d836f [file] [log] [blame]
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02001#ifndef _LINUX_FTRACE_H
2#define _LINUX_FTRACE_H
3
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02004#include <linux/linkage.h>
Ingo Molnard49dbf32008-05-16 10:41:53 +02005#include <linux/fs.h>
Steven Noonaneb7fa932008-10-02 12:00:07 -07006#include <linux/ktime.h>
Frédéric Weisbeckerd13744c2008-09-23 11:32:08 +01007#include <linux/init.h>
8#include <linux/types.h>
Frederic Weisbecker56010202008-10-02 13:26:05 +02009#include <linux/kallsyms.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020010
Steven Rostedt606576c2008-10-06 19:06:12 -040011#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnar3e1932a2008-10-02 17:45:47 +020012
Steven Rostedtb0fc4942008-05-12 21:20:43 +020013extern int ftrace_enabled;
14extern int
15ftrace_enable_sysctl(struct ctl_table *table, int write,
16 struct file *filp, void __user *buffer, size_t *lenp,
17 loff_t *ppos);
18
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020019typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
20
21struct ftrace_ops {
22 ftrace_func_t func;
23 struct ftrace_ops *next;
24};
25
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050026extern int function_trace_stop;
27
28/**
29 * ftrace_stop - stop function tracer.
30 *
31 * A quick way to stop the function tracer. Note this an on off switch,
32 * it is not something that is recursive like preempt_disable.
33 * This does not disable the calling of mcount, it only stops the
34 * calling of functions from mcount.
35 */
36static inline void ftrace_stop(void)
37{
38 function_trace_stop = 1;
39}
40
41/**
42 * ftrace_start - start the function tracer.
43 *
44 * This function is the inverse of ftrace_stop. This does not enable
45 * the function tracing if the function tracer is disabled. This only
46 * sets the function tracer flag to continue calling the functions
47 * from mcount.
48 */
49static inline void ftrace_start(void)
50{
51 function_trace_stop = 0;
52}
53
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020054/*
55 * The ftrace_ops must be a static and should also
56 * be read_mostly. These functions do modify read_mostly variables
57 * so use them sparely. Never free an ftrace_op or modify the
58 * next pointer after it has been registered. Even after unregistering
59 * it, the next pointer may still be used internally.
60 */
61int register_ftrace_function(struct ftrace_ops *ops);
62int unregister_ftrace_function(struct ftrace_ops *ops);
63void clear_ftrace_function(void);
64
65extern void ftrace_stub(unsigned long a0, unsigned long a1);
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020066
Steven Rostedt606576c2008-10-06 19:06:12 -040067#else /* !CONFIG_FUNCTION_TRACER */
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020068# define register_ftrace_function(ops) do { } while (0)
69# define unregister_ftrace_function(ops) do { } while (0)
70# define clear_ftrace_function(ops) do { } while (0)
Steven Rostedt81adbdc2008-10-23 09:33:02 -040071static inline void ftrace_kill(void) { }
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050072static inline void ftrace_stop(void) { }
73static inline void ftrace_start(void) { }
Steven Rostedt606576c2008-10-06 19:06:12 -040074#endif /* CONFIG_FUNCTION_TRACER */
Steven Rostedt352ad252008-05-12 21:20:42 +020075
Steven Rostedt3d083392008-05-12 21:20:42 +020076#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt31e88902008-11-14 16:21:19 -080077/* asm/ftrace.h must be defined for archs supporting dynamic ftrace */
78#include <asm/ftrace.h>
79
Steven Rostedt3c1720f2008-05-12 21:20:43 +020080enum {
Steven Rostedt37ad5082008-05-12 21:20:48 +020081 FTRACE_FL_FREE = (1 << 0),
82 FTRACE_FL_FAILED = (1 << 1),
83 FTRACE_FL_FILTER = (1 << 2),
84 FTRACE_FL_ENABLED = (1 << 3),
Steven Rostedt41c52c02008-05-22 11:46:33 -040085 FTRACE_FL_NOTRACE = (1 << 4),
Abhishek Sagar0eb96702008-06-01 21:47:30 +053086 FTRACE_FL_CONVERTED = (1 << 5),
Abhishek Sagarecea6562008-06-21 23:47:53 +053087 FTRACE_FL_FROZEN = (1 << 6),
Steven Rostedt3c1720f2008-05-12 21:20:43 +020088};
89
Steven Rostedt3d083392008-05-12 21:20:42 +020090struct dyn_ftrace {
Steven Rostedt08f5ac902008-10-23 09:33:07 -040091 struct list_head list;
92 unsigned long ip; /* address of mcount call-site */
93 unsigned long flags;
Steven Rostedt31e88902008-11-14 16:21:19 -080094 struct dyn_arch_ftrace arch;
Steven Rostedt3d083392008-05-12 21:20:42 +020095};
96
Steven Rostedte1c08bd2008-05-12 21:20:44 +020097int ftrace_force_update(void);
Steven Rostedt77a2b372008-05-12 21:20:45 +020098void ftrace_set_filter(unsigned char *buf, int len, int reset);
Steven Rostedte1c08bd2008-05-12 21:20:44 +020099
Steven Rostedt3d083392008-05-12 21:20:42 +0200100/* defined in arch */
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200101extern int ftrace_ip_converted(unsigned long ip);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200102extern int ftrace_dyn_arch_init(void *data);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200103extern int ftrace_update_ftrace_func(ftrace_func_t func);
104extern void ftrace_caller(void);
105extern void ftrace_call(void);
106extern void mcount_call(void);
Steven Rostedtad90c0e2008-05-27 20:48:37 -0400107
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400108/**
Steven Rostedt31e88902008-11-14 16:21:19 -0800109 * ftrace_make_nop - convert code into top
110 * @mod: module structure if called by module load initialization
111 * @rec: the mcount call site record
112 * @addr: the address that the call site should be calling
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400113 *
114 * This is a very sensitive operation and great care needs
115 * to be taken by the arch. The operation should carefully
116 * read the location, check to see if what is read is indeed
117 * what we expect it to be, and then on success of the compare,
118 * it should write to the location.
119 *
Steven Rostedt31e88902008-11-14 16:21:19 -0800120 * The code segment at @rec->ip should be a caller to @addr
121 *
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400122 * Return must be:
123 * 0 on success
124 * -EFAULT on error reading the location
125 * -EINVAL on a failed compare of the contents
126 * -EPERM on error writing to the location
127 * Any other value will be considered a failure.
128 */
Steven Rostedt31e88902008-11-14 16:21:19 -0800129extern int ftrace_make_nop(struct module *mod,
130 struct dyn_ftrace *rec, unsigned long addr);
131
132/**
133 * ftrace_make_call - convert a nop call site into a call to addr
134 * @rec: the mcount call site record
135 * @addr: the address that the call site should call
136 *
137 * This is a very sensitive operation and great care needs
138 * to be taken by the arch. The operation should carefully
139 * read the location, check to see if what is read is indeed
140 * what we expect it to be, and then on success of the compare,
141 * it should write to the location.
142 *
143 * The code segment at @rec->ip should be a nop
144 *
145 * Return must be:
146 * 0 on success
147 * -EFAULT on error reading the location
148 * -EINVAL on a failed compare of the contents
149 * -EPERM on error writing to the location
150 * Any other value will be considered a failure.
151 */
152extern int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr);
153
154
155/* May be defined in arch */
156extern int ftrace_arch_read_dyn_info(char *buf, int size);
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400157
Abhishek Sagarecea6562008-06-21 23:47:53 +0530158extern int skip_trace(unsigned long ip);
159
Steven Rostedtc0719e52008-09-06 01:06:03 -0400160extern void ftrace_release(void *start, unsigned long size);
161
162extern void ftrace_disable_daemon(void);
163extern void ftrace_enable_daemon(void);
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200164#else
Abhishek Sagarecea6562008-06-21 23:47:53 +0530165# define skip_trace(ip) ({ 0; })
Ingo Molnaraeaee8a2008-05-12 21:20:49 +0200166# define ftrace_force_update() ({ 0; })
167# define ftrace_set_filter(buf, len, reset) do { } while (0)
Steven Rostedtad90c0e2008-05-27 20:48:37 -0400168# define ftrace_disable_daemon() do { } while (0)
169# define ftrace_enable_daemon() do { } while (0)
Steven Rostedtc0719e52008-09-06 01:06:03 -0400170static inline void ftrace_release(void *start, unsigned long size) { }
Abhishek Sagarecea6562008-06-21 23:47:53 +0530171#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt352ad252008-05-12 21:20:42 +0200172
Ingo Molnaraeaee8a2008-05-12 21:20:49 +0200173/* totally disable ftrace - can not re-enable after this */
174void ftrace_kill(void);
175
Ingo Molnarf43fdad2008-05-12 21:20:43 +0200176static inline void tracer_disable(void)
177{
Steven Rostedt606576c2008-10-06 19:06:12 -0400178#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnarf43fdad2008-05-12 21:20:43 +0200179 ftrace_enabled = 0;
180#endif
181}
182
Huang Ying37002732008-08-18 16:24:56 +0800183/*
184 * Ftrace disable/restore without lock. Some synchronization mechanism
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700185 * must be used to prevent ftrace_enabled to be changed between
Huang Ying37002732008-08-18 16:24:56 +0800186 * disable/restore.
187 */
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700188static inline int __ftrace_enabled_save(void)
189{
Steven Rostedt606576c2008-10-06 19:06:12 -0400190#ifdef CONFIG_FUNCTION_TRACER
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700191 int saved_ftrace_enabled = ftrace_enabled;
192 ftrace_enabled = 0;
193 return saved_ftrace_enabled;
194#else
195 return 0;
196#endif
197}
198
199static inline void __ftrace_enabled_restore(int enabled)
200{
Steven Rostedt606576c2008-10-06 19:06:12 -0400201#ifdef CONFIG_FUNCTION_TRACER
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700202 ftrace_enabled = enabled;
203#endif
204}
205
Steven Rostedt352ad252008-05-12 21:20:42 +0200206#ifdef CONFIG_FRAME_POINTER
207/* TODO: need to fix this for ARM */
208# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
209# define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
210# define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
211# define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
212# define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
213# define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
Ingo Molnar86387f72008-05-12 21:20:51 +0200214# define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6))
Steven Rostedt352ad252008-05-12 21:20:42 +0200215#else
216# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
217# define CALLER_ADDR1 0UL
218# define CALLER_ADDR2 0UL
219# define CALLER_ADDR3 0UL
220# define CALLER_ADDR4 0UL
221# define CALLER_ADDR5 0UL
Ingo Molnar86387f72008-05-12 21:20:51 +0200222# define CALLER_ADDR6 0UL
Steven Rostedt352ad252008-05-12 21:20:42 +0200223#endif
224
Steven Rostedt81d68a92008-05-12 21:20:42 +0200225#ifdef CONFIG_IRQSOFF_TRACER
Ingo Molnar489f1392008-02-25 13:38:05 +0100226 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
227 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
Steven Rostedt81d68a92008-05-12 21:20:42 +0200228#else
229# define time_hardirqs_on(a0, a1) do { } while (0)
230# define time_hardirqs_off(a0, a1) do { } while (0)
231#endif
232
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200233#ifdef CONFIG_PREEMPT_TRACER
Ingo Molnar489f1392008-02-25 13:38:05 +0100234 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
235 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200236#else
237# define trace_preempt_on(a0, a1) do { } while (0)
238# define trace_preempt_off(a0, a1) do { } while (0)
239#endif
240
Ingo Molnarb1829d22008-05-28 01:22:08 +0200241#ifdef CONFIG_TRACING
Steven Rostedt944ac422008-10-23 19:26:08 -0400242extern int ftrace_dump_on_oops;
243
Steven Rostedt0f048702008-11-05 16:05:44 -0500244extern void tracing_start(void);
245extern void tracing_stop(void);
246
Ingo Molnar74f4e362008-05-12 21:21:15 +0200247extern void
248ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
Steven Rostedt2f2c99d2008-08-01 16:45:49 -0400249
250/**
251 * ftrace_printk - printf formatting in the ftrace buffer
252 * @fmt: the printf format for printing
253 *
254 * Note: __ftrace_printk is an internal function for ftrace_printk and
255 * the @ip is passed in via the ftrace_printk macro.
256 *
257 * This function allows a kernel developer to debug fast path sections
258 * that printk is not appropriate for. By scattering in various
259 * printk like tracing in the code, a developer can quickly see
260 * where problems are occurring.
261 *
262 * This is intended as a debugging tool for the developer only.
263 * Please refrain from leaving ftrace_printks scattered around in
264 * your code.
265 */
266# define ftrace_printk(fmt...) __ftrace_printk(_THIS_IP_, fmt)
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400267extern int
268__ftrace_printk(unsigned long ip, const char *fmt, ...)
269 __attribute__ ((format (printf, 2, 3)));
Steven Rostedt3f5a54e2008-07-30 22:36:46 -0400270extern void ftrace_dump(void);
Ingo Molnar74f4e362008-05-12 21:21:15 +0200271#else
272static inline void
273ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400274static inline int
Ingo Molnar7b928c22008-08-15 17:48:02 +0200275ftrace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 0)));
276
Steven Rostedt0f048702008-11-05 16:05:44 -0500277static inline void tracing_start(void) { }
278static inline void tracing_stop(void) { }
Ingo Molnar7b928c22008-08-15 17:48:02 +0200279static inline int
280ftrace_printk(const char *fmt, ...)
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400281{
282 return 0;
283}
Steven Rostedt3f5a54e2008-07-30 22:36:46 -0400284static inline void ftrace_dump(void) { }
Ingo Molnar74f4e362008-05-12 21:21:15 +0200285#endif
286
Steven Rostedt68bf21a2008-08-14 15:45:08 -0400287#ifdef CONFIG_FTRACE_MCOUNT_RECORD
288extern void ftrace_init(void);
Steven Rostedt31e88902008-11-14 16:21:19 -0800289extern void ftrace_init_module(struct module *mod,
290 unsigned long *start, unsigned long *end);
Steven Rostedt68bf21a2008-08-14 15:45:08 -0400291#else
292static inline void ftrace_init(void) { }
Steven Rostedt90d595f2008-08-14 15:45:09 -0400293static inline void
Steven Rostedt31e88902008-11-14 16:21:19 -0800294ftrace_init_module(struct module *mod,
295 unsigned long *start, unsigned long *end) { }
Steven Rostedt68bf21a2008-08-14 15:45:08 -0400296#endif
297
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400298
Frederic Weisbecker71566a02008-10-31 12:57:20 +0100299/*
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100300 * Structure that defines a return function trace.
301 */
302struct ftrace_retfunc {
303 unsigned long ret; /* Return address */
304 unsigned long func; /* Current function */
305 unsigned long long calltime;
306 unsigned long long rettime;
307};
308
309#ifdef CONFIG_FUNCTION_RET_TRACER
310/* Type of a callback handler of tracing return function */
311typedef void (*trace_function_return_t)(struct ftrace_retfunc *);
312
313extern void register_ftrace_return(trace_function_return_t func);
314/* The current handler in use */
315extern trace_function_return_t ftrace_function_return;
316extern void unregister_ftrace_return(void);
317#endif
318
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200319#endif /* _LINUX_FTRACE_H */