tracing/fastboot: get the initcall name before it disappears
[safe/jmp/linux-2.6] / include / linux / ftrace.h
1 #ifndef _LINUX_FTRACE_H
2 #define _LINUX_FTRACE_H
3
4 #ifdef CONFIG_FTRACE
5
6 #include <linux/linkage.h>
7 #include <linux/fs.h>
8 #include <linux/init.h>
9 #include <linux/types.h>
10 #include <linux/kallsyms.h>
11
12 extern int ftrace_enabled;
13 extern int
14 ftrace_enable_sysctl(struct ctl_table *table, int write,
15                      struct file *filp, void __user *buffer, size_t *lenp,
16                      loff_t *ppos);
17
18 typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
19
20 struct ftrace_ops {
21         ftrace_func_t     func;
22         struct ftrace_ops *next;
23 };
24
25 /*
26  * The ftrace_ops must be a static and should also
27  * be read_mostly.  These functions do modify read_mostly variables
28  * so use them sparely. Never free an ftrace_op or modify the
29  * next pointer after it has been registered. Even after unregistering
30  * it, the next pointer may still be used internally.
31  */
32 int register_ftrace_function(struct ftrace_ops *ops);
33 int unregister_ftrace_function(struct ftrace_ops *ops);
34 void clear_ftrace_function(void);
35
36 extern void ftrace_stub(unsigned long a0, unsigned long a1);
37
38 #else /* !CONFIG_FTRACE */
39 # define register_ftrace_function(ops) do { } while (0)
40 # define unregister_ftrace_function(ops) do { } while (0)
41 # define clear_ftrace_function(ops) do { } while (0)
42 static inline void ftrace_kill_atomic(void) { }
43 #endif /* CONFIG_FTRACE */
44
45 #ifdef CONFIG_DYNAMIC_FTRACE
46 # define FTRACE_HASHBITS        10
47 # define FTRACE_HASHSIZE        (1<<FTRACE_HASHBITS)
48
49 enum {
50         FTRACE_FL_FREE          = (1 << 0),
51         FTRACE_FL_FAILED        = (1 << 1),
52         FTRACE_FL_FILTER        = (1 << 2),
53         FTRACE_FL_ENABLED       = (1 << 3),
54         FTRACE_FL_NOTRACE       = (1 << 4),
55         FTRACE_FL_CONVERTED     = (1 << 5),
56         FTRACE_FL_FROZEN        = (1 << 6),
57 };
58
59 struct dyn_ftrace {
60         struct hlist_node node;
61         unsigned long     ip; /* address of mcount call-site */
62         unsigned long     flags;
63 };
64
65 int ftrace_force_update(void);
66 void ftrace_set_filter(unsigned char *buf, int len, int reset);
67
68 /* defined in arch */
69 extern int ftrace_ip_converted(unsigned long ip);
70 extern unsigned char *ftrace_nop_replace(void);
71 extern unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr);
72 extern int ftrace_dyn_arch_init(void *data);
73 extern int ftrace_mcount_set(unsigned long *data);
74 extern int ftrace_modify_code(unsigned long ip, unsigned char *old_code,
75                               unsigned char *new_code);
76 extern int ftrace_update_ftrace_func(ftrace_func_t func);
77 extern void ftrace_caller(void);
78 extern void ftrace_call(void);
79 extern void mcount_call(void);
80
81 extern int skip_trace(unsigned long ip);
82
83 extern void ftrace_release(void *start, unsigned long size);
84
85 extern void ftrace_disable_daemon(void);
86 extern void ftrace_enable_daemon(void);
87
88 #else
89 # define skip_trace(ip)                         ({ 0; })
90 # define ftrace_force_update()                  ({ 0; })
91 # define ftrace_set_filter(buf, len, reset)     do { } while (0)
92 # define ftrace_disable_daemon()                do { } while (0)
93 # define ftrace_enable_daemon()                 do { } while (0)
94 static inline void ftrace_release(void *start, unsigned long size) { }
95 #endif /* CONFIG_DYNAMIC_FTRACE */
96
97 /* totally disable ftrace - can not re-enable after this */
98 void ftrace_kill(void);
99 void ftrace_kill_atomic(void);
100
101 static inline void tracer_disable(void)
102 {
103 #ifdef CONFIG_FTRACE
104         ftrace_enabled = 0;
105 #endif
106 }
107
108 /*
109  * Ftrace disable/restore without lock. Some synchronization mechanism
110  * must be used to prevent ftrace_enabled to be changed between
111  * disable/restore.
112  */
113 static inline int __ftrace_enabled_save(void)
114 {
115 #ifdef CONFIG_FTRACE
116         int saved_ftrace_enabled = ftrace_enabled;
117         ftrace_enabled = 0;
118         return saved_ftrace_enabled;
119 #else
120         return 0;
121 #endif
122 }
123
124 static inline void __ftrace_enabled_restore(int enabled)
125 {
126 #ifdef CONFIG_FTRACE
127         ftrace_enabled = enabled;
128 #endif
129 }
130
131 #ifdef CONFIG_FRAME_POINTER
132 /* TODO: need to fix this for ARM */
133 # define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
134 # define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
135 # define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
136 # define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
137 # define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
138 # define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
139 # define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6))
140 #else
141 # define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
142 # define CALLER_ADDR1 0UL
143 # define CALLER_ADDR2 0UL
144 # define CALLER_ADDR3 0UL
145 # define CALLER_ADDR4 0UL
146 # define CALLER_ADDR5 0UL
147 # define CALLER_ADDR6 0UL
148 #endif
149
150 #ifdef CONFIG_IRQSOFF_TRACER
151   extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
152   extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
153 #else
154 # define time_hardirqs_on(a0, a1)               do { } while (0)
155 # define time_hardirqs_off(a0, a1)              do { } while (0)
156 #endif
157
158 #ifdef CONFIG_PREEMPT_TRACER
159   extern void trace_preempt_on(unsigned long a0, unsigned long a1);
160   extern void trace_preempt_off(unsigned long a0, unsigned long a1);
161 #else
162 # define trace_preempt_on(a0, a1)               do { } while (0)
163 # define trace_preempt_off(a0, a1)              do { } while (0)
164 #endif
165
166 #ifdef CONFIG_TRACING
167 extern void
168 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
169
170 /**
171  * ftrace_printk - printf formatting in the ftrace buffer
172  * @fmt: the printf format for printing
173  *
174  * Note: __ftrace_printk is an internal function for ftrace_printk and
175  *       the @ip is passed in via the ftrace_printk macro.
176  *
177  * This function allows a kernel developer to debug fast path sections
178  * that printk is not appropriate for. By scattering in various
179  * printk like tracing in the code, a developer can quickly see
180  * where problems are occurring.
181  *
182  * This is intended as a debugging tool for the developer only.
183  * Please refrain from leaving ftrace_printks scattered around in
184  * your code.
185  */
186 # define ftrace_printk(fmt...) __ftrace_printk(_THIS_IP_, fmt)
187 extern int
188 __ftrace_printk(unsigned long ip, const char *fmt, ...)
189         __attribute__ ((format (printf, 2, 3)));
190 extern void ftrace_dump(void);
191 #else
192 static inline void
193 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
194 static inline int
195 ftrace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 0)));
196
197 static inline int
198 ftrace_printk(const char *fmt, ...)
199 {
200         return 0;
201 }
202 static inline void ftrace_dump(void) { }
203 #endif
204
205 #ifdef CONFIG_FTRACE_MCOUNT_RECORD
206 extern void ftrace_init(void);
207 extern void ftrace_init_module(unsigned long *start, unsigned long *end);
208 #else
209 static inline void ftrace_init(void) { }
210 static inline void
211 ftrace_init_module(unsigned long *start, unsigned long *end) { }
212 #endif
213
214
215 struct boot_trace {
216         pid_t                   caller;
217         char                    func[KSYM_NAME_LEN];
218         int                     result;
219         unsigned long long      duration;
220         ktime_t                 calltime;
221         ktime_t                 rettime;
222 };
223
224 #ifdef CONFIG_BOOT_TRACER
225 extern void trace_boot(struct boot_trace *it, initcall_t fn);
226 extern void start_boot_trace(void);
227 #else
228 static inline void trace_boot(struct boot_trace *it, initcall_t fn) { }
229 static inline void start_boot_trace(void) { }
230 #endif
231
232
233
234 #endif /* _LINUX_FTRACE_H */