2 * Code for replacing ftrace calls with jumps.
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
6 * Thanks goes to Ingo Molnar, for suggesting the idea.
7 * Mathieu Desnoyers, for suggesting postponing the modifications.
8 * Arjan van de Ven, for keeping me straight, and explaining to me
9 * the dangers of modifying code on the run.
12 #include <linux/spinlock.h>
13 #include <linux/hardirq.h>
14 #include <linux/ftrace.h>
15 #include <linux/percpu.h>
16 #include <linux/init.h>
17 #include <linux/list.h>
19 #include <asm/alternative.h>
20 #include <asm/ftrace.h>
23 /* Long is fine, even if it is only 4 bytes ;-) */
24 static long *ftrace_nop
;
26 union ftrace_code_union
{
27 char code
[MCOUNT_INSN_SIZE
];
31 } __attribute__((packed
));
35 static int notrace
ftrace_calc_offset(long ip
, long addr
)
37 return (int)(addr
- ip
);
40 notrace
unsigned char *ftrace_nop_replace(void)
42 return (char *)ftrace_nop
;
45 notrace
unsigned char *ftrace_call_replace(unsigned long ip
, unsigned long addr
)
47 static union ftrace_code_union calc
;
50 calc
.offset
= ftrace_calc_offset(ip
+ MCOUNT_INSN_SIZE
, addr
);
53 * No locking needed, this must be called via kstop_machine
54 * which in essence is like running on a uniprocessor machine.
60 ftrace_modify_code(unsigned long ip
, unsigned char *old_code
,
61 unsigned char *new_code
)
64 unsigned old
= *(unsigned *)old_code
; /* 4 bytes */
65 unsigned new = *(unsigned *)new_code
; /* 4 bytes */
66 unsigned char newch
= new_code
[4];
70 * Note: Due to modules and __init, code can
71 * disappear and change, we need to protect against faulting
72 * as well as code changing.
74 * No real locking needed, this code is run through
83 ".section .fixup, \"ax\"\n"
88 : "=r"(faulted
), "=a"(replaced
)
89 : "r"(ip
), "r"(new), "c"(newch
),
90 "0"(faulted
), "a"(old
)
94 if (replaced
!= old
&& replaced
!= new)
100 notrace
int ftrace_update_ftrace_func(ftrace_func_t func
)
102 unsigned long ip
= (unsigned long)(&ftrace_call
);
103 unsigned char old
[MCOUNT_INSN_SIZE
], *new;
106 memcpy(old
, &ftrace_call
, MCOUNT_INSN_SIZE
);
107 new = ftrace_call_replace(ip
, (unsigned long)func
);
108 ret
= ftrace_modify_code(ip
, old
, new);
113 notrace
int ftrace_mcount_set(unsigned long *data
)
115 unsigned long ip
= (long)(&mcount_call
);
116 unsigned long *addr
= data
;
117 unsigned char old
[MCOUNT_INSN_SIZE
], *new;
120 * Replace the mcount stub with a pointer to the
121 * ip recorder function.
123 memcpy(old
, &mcount_call
, MCOUNT_INSN_SIZE
);
124 new = ftrace_call_replace(ip
, *addr
);
125 *addr
= ftrace_modify_code(ip
, old
, new);
130 int __init
ftrace_dyn_arch_init(void *data
)
132 const unsigned char *const *noptable
= find_nop_table();
134 /* This is running in kstop_machine */
136 ftrace_mcount_set(data
);
138 ftrace_nop
= (unsigned long *)noptable
[MCOUNT_INSN_SIZE
];