blob: 7a702a502871f6c8eff590a8c5003a173bdcd24d [file] [log] [blame]
Abhishek Sagar014c2572008-05-31 14:23:50 +05301/*
2 * Dynamic function tracing support.
3 *
4 * Copyright (C) 2008 Abhishek Sagar <sagar.abhishek@gmail.com>
Rabin Vincent3b6c2232010-08-10 19:43:28 +01005 * Copyright (C) 2010 Rabin Vincent <rabin@rab.in>
Abhishek Sagar014c2572008-05-31 14:23:50 +05306 *
7 * For licencing details, see COPYING.
8 *
9 * Defines low-level handling of mcount calls when the kernel
10 * is compiled with the -pg flag. When using dynamic ftrace, the
Rabin Vincent3b6c2232010-08-10 19:43:28 +010011 * mcount call-sites get patched with NOP till they are enabled.
12 * All code mutation routines here are called under stop_machine().
Abhishek Sagar014c2572008-05-31 14:23:50 +053013 */
14
15#include <linux/ftrace.h>
Rabin Vincent3b6c2232010-08-10 19:43:28 +010016#include <linux/uaccess.h>
Abhishek Sagar014c2572008-05-31 14:23:50 +053017
Abhishek Sagar395a59d2008-06-21 23:47:27 +053018#include <asm/cacheflush.h>
19#include <asm/ftrace.h>
20
Rabin Vincent72dc43a2010-08-10 19:52:35 +010021#ifdef CONFIG_THUMB2_KERNEL
22#define NOP 0xeb04f85d /* pop.w {lr} */
23#else
Rabin Vincent3b6c2232010-08-10 19:43:28 +010024#define NOP 0xe8bd4000 /* pop {lr} */
Rabin Vincent72dc43a2010-08-10 19:52:35 +010025#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +053026
Tim Bird376cfa82010-10-09 22:24:38 +053027#ifdef CONFIG_DYNAMIC_FTRACE
Rabin Vincent3b6c2232010-08-10 19:43:28 +010028#ifdef CONFIG_OLD_MCOUNT
29#define OLD_MCOUNT_ADDR ((unsigned long) mcount)
30#define OLD_FTRACE_ADDR ((unsigned long) ftrace_caller_old)
Abhishek Sagar014c2572008-05-31 14:23:50 +053031
Rabin Vincent3b6c2232010-08-10 19:43:28 +010032#define OLD_NOP 0xe1a00000 /* mov r0, r0 */
33
34static unsigned long ftrace_nop_replace(struct dyn_ftrace *rec)
Abhishek Sagar014c2572008-05-31 14:23:50 +053035{
Rabin Vincent3b6c2232010-08-10 19:43:28 +010036 return rec->arch.old_mcount ? OLD_NOP : NOP;
Abhishek Sagar014c2572008-05-31 14:23:50 +053037}
38
Rabin Vincent3b6c2232010-08-10 19:43:28 +010039static unsigned long adjust_address(struct dyn_ftrace *rec, unsigned long addr)
40{
41 if (!rec->arch.old_mcount)
42 return addr;
43
44 if (addr == MCOUNT_ADDR)
45 addr = OLD_MCOUNT_ADDR;
46 else if (addr == FTRACE_ADDR)
47 addr = OLD_FTRACE_ADDR;
48
49 return addr;
50}
51#else
52static unsigned long ftrace_nop_replace(struct dyn_ftrace *rec)
53{
54 return NOP;
55}
56
57static unsigned long adjust_address(struct dyn_ftrace *rec, unsigned long addr)
58{
59 return addr;
60}
61#endif
62
Abhishek Sagar014c2572008-05-31 14:23:50 +053063/* construct a branch (BL) instruction to addr */
Rabin Vincent72dc43a2010-08-10 19:52:35 +010064#ifdef CONFIG_THUMB2_KERNEL
65static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr)
66{
67 unsigned long s, j1, j2, i1, i2, imm10, imm11;
68 unsigned long first, second;
69 long offset;
70
71 offset = (long)addr - (long)(pc + 4);
72 if (offset < -16777216 || offset > 16777214) {
73 WARN_ON_ONCE(1);
74 return 0;
75 }
76
77 s = (offset >> 24) & 0x1;
78 i1 = (offset >> 23) & 0x1;
79 i2 = (offset >> 22) & 0x1;
80 imm10 = (offset >> 12) & 0x3ff;
81 imm11 = (offset >> 1) & 0x7ff;
82
83 j1 = (!i1) ^ s;
84 j2 = (!i2) ^ s;
85
86 first = 0xf000 | (s << 10) | imm10;
87 second = 0xd000 | (j1 << 13) | (j2 << 11) | imm11;
88
89 return (second << 16) | first;
90}
91#else
Rabin Vincent3b6c2232010-08-10 19:43:28 +010092static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr)
Abhishek Sagar014c2572008-05-31 14:23:50 +053093{
94 long offset;
95
Rabin Vincent3b6c2232010-08-10 19:43:28 +010096 offset = (long)addr - (long)(pc + 8);
Abhishek Sagar014c2572008-05-31 14:23:50 +053097 if (unlikely(offset < -33554432 || offset > 33554428)) {
98 /* Can't generate branches that far (from ARM ARM). Ftrace
Abhishek Sagar395a59d2008-06-21 23:47:27 +053099 * doesn't generate branches outside of kernel text.
Abhishek Sagar014c2572008-05-31 14:23:50 +0530100 */
101 WARN_ON_ONCE(1);
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100102 return 0;
Abhishek Sagar014c2572008-05-31 14:23:50 +0530103 }
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100104
105 offset = (offset >> 2) & 0x00ffffff;
106
107 return 0xeb000000 | offset;
Abhishek Sagar014c2572008-05-31 14:23:50 +0530108}
Rabin Vincent72dc43a2010-08-10 19:52:35 +0100109#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +0530110
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100111static int ftrace_modify_code(unsigned long pc, unsigned long old,
112 unsigned long new)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530113{
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100114 unsigned long replaced;
Abhishek Sagar014c2572008-05-31 14:23:50 +0530115
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100116 if (probe_kernel_read(&replaced, (void *)pc, MCOUNT_INSN_SIZE))
117 return -EFAULT;
Abhishek Sagar014c2572008-05-31 14:23:50 +0530118
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100119 if (replaced != old)
120 return -EINVAL;
Abhishek Sagar014c2572008-05-31 14:23:50 +0530121
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100122 if (probe_kernel_write((void *)pc, &new, MCOUNT_INSN_SIZE))
123 return -EPERM;
Abhishek Sagar014c2572008-05-31 14:23:50 +0530124
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100125 flush_icache_range(pc, pc + MCOUNT_INSN_SIZE);
Abhishek Sagar014c2572008-05-31 14:23:50 +0530126
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100127 return 0;
Abhishek Sagar014c2572008-05-31 14:23:50 +0530128}
129
130int ftrace_update_ftrace_func(ftrace_func_t func)
131{
Abhishek Sagar014c2572008-05-31 14:23:50 +0530132 unsigned long pc, old;
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100133 unsigned long new;
134 int ret;
Abhishek Sagar014c2572008-05-31 14:23:50 +0530135
136 pc = (unsigned long)&ftrace_call;
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530137 memcpy(&old, &ftrace_call, MCOUNT_INSN_SIZE);
Abhishek Sagar014c2572008-05-31 14:23:50 +0530138 new = ftrace_call_replace(pc, (unsigned long)func);
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100139
140 ret = ftrace_modify_code(pc, old, new);
141
142#ifdef CONFIG_OLD_MCOUNT
143 if (!ret) {
144 pc = (unsigned long)&ftrace_call_old;
145 memcpy(&old, &ftrace_call_old, MCOUNT_INSN_SIZE);
146 new = ftrace_call_replace(pc, (unsigned long)func);
147
148 ret = ftrace_modify_code(pc, old, new);
149 }
150#endif
151
Abhishek Sagar014c2572008-05-31 14:23:50 +0530152 return ret;
153}
154
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100155int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
156{
157 unsigned long new, old;
158 unsigned long ip = rec->ip;
159
160 old = ftrace_nop_replace(rec);
161 new = ftrace_call_replace(ip, adjust_address(rec, addr));
162
163 return ftrace_modify_code(rec->ip, old, new);
164}
165
166int ftrace_make_nop(struct module *mod,
167 struct dyn_ftrace *rec, unsigned long addr)
168{
169 unsigned long ip = rec->ip;
170 unsigned long old;
171 unsigned long new;
172 int ret;
173
174 old = ftrace_call_replace(ip, adjust_address(rec, addr));
175 new = ftrace_nop_replace(rec);
176 ret = ftrace_modify_code(ip, old, new);
177
178#ifdef CONFIG_OLD_MCOUNT
179 if (ret == -EINVAL && addr == MCOUNT_ADDR) {
180 rec->arch.old_mcount = true;
181
182 old = ftrace_call_replace(ip, adjust_address(rec, addr));
183 new = ftrace_nop_replace(rec);
184 ret = ftrace_modify_code(ip, old, new);
185 }
186#endif
187
188 return ret;
189}
190
Abhishek Sagar014c2572008-05-31 14:23:50 +0530191int __init ftrace_dyn_arch_init(void *data)
192{
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100193 *(unsigned long *)data = 0;
194
Abhishek Sagar014c2572008-05-31 14:23:50 +0530195 return 0;
196}
Tim Bird376cfa82010-10-09 22:24:38 +0530197#endif /* CONFIG_DYNAMIC_FTRACE */
198
199#ifdef CONFIG_FUNCTION_GRAPH_TRACER
200void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr,
201 unsigned long frame_pointer)
202{
203 unsigned long return_hooker = (unsigned long) &return_to_handler;
204 struct ftrace_graph_ent trace;
205 unsigned long old;
206 int err;
207
208 if (unlikely(atomic_read(&current->tracing_graph_pause)))
209 return;
210
211 old = *parent;
212 *parent = return_hooker;
213
214 err = ftrace_push_return_trace(old, self_addr, &trace.depth,
215 frame_pointer);
216 if (err == -EBUSY) {
217 *parent = old;
218 return;
219 }
220
221 trace.func = self_addr;
222
223 /* Only trace if the calling function expects to */
224 if (!ftrace_graph_entry(&trace)) {
225 current->curr_ret_stack--;
226 *parent = old;
227 }
228}
229#endif /* CONFIG_FUNCTION_GRAPH_TRACER */