blob: b69795efa2264008a7d168b564e2e9d173606d2d [file] [log] [blame]
Steven Rostedt3d083392008-05-12 21:20:42 +02001/*
2 * Code for replacing ftrace calls with jumps.
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 *
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.
10 */
11
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>
18
Steven Rostedtdfa60ab2008-05-12 21:20:43 +020019#include <asm/alternative.h>
20
Steven Rostedt3d083392008-05-12 21:20:42 +020021#define CALL_BACK 5
22
Steven Rostedtdfa60ab2008-05-12 21:20:43 +020023/* Long is fine, even if it is only 4 bytes ;-) */
24static long *ftrace_nop;
Steven Rostedt3d083392008-05-12 21:20:42 +020025
Steven Rostedt3d083392008-05-12 21:20:42 +020026union ftrace_code_union {
27 char code[5];
28 struct {
29 char e8;
30 int offset;
31 } __attribute__((packed));
32};
33
Steven Rostedt3c1720f2008-05-12 21:20:43 +020034notrace int ftrace_ip_converted(unsigned long ip)
Steven Rostedt3d083392008-05-12 21:20:42 +020035{
Steven Rostedtdfa60ab2008-05-12 21:20:43 +020036 unsigned long save;
Steven Rostedt3d083392008-05-12 21:20:42 +020037
38 ip -= CALL_BACK;
Steven Rostedtdfa60ab2008-05-12 21:20:43 +020039 save = *(long *)ip;
Steven Rostedt3d083392008-05-12 21:20:42 +020040
Steven Rostedt3c1720f2008-05-12 21:20:43 +020041 return save == *ftrace_nop;
Steven Rostedt3d083392008-05-12 21:20:42 +020042}
43
Steven Rostedt3c1720f2008-05-12 21:20:43 +020044static int notrace ftrace_calc_offset(long ip, long addr)
45{
46 return (int)(addr - ip);
47}
48
49notrace unsigned char *ftrace_nop_replace(void)
50{
51 return (char *)ftrace_nop;
52}
53
54notrace unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr)
55{
56 static union ftrace_code_union calc;
57
58 calc.e8 = 0xe8;
59 calc.offset = ftrace_calc_offset(ip, addr);
60
61 /*
62 * No locking needed, this must be called via kstop_machine
63 * which in essence is like running on a uniprocessor machine.
64 */
65 return calc.code;
66}
67
68notrace int
Steven Rostedt3d083392008-05-12 21:20:42 +020069ftrace_modify_code(unsigned long ip, unsigned char *old_code,
70 unsigned char *new_code)
71{
Steven Rostedtdfa60ab2008-05-12 21:20:43 +020072 unsigned replaced;
73 unsigned old = *(unsigned *)old_code; /* 4 bytes */
74 unsigned new = *(unsigned *)new_code; /* 4 bytes */
75 unsigned char newch = new_code[4];
Steven Rostedt3d083392008-05-12 21:20:42 +020076 int faulted = 0;
77
Steven Rostedt3c1720f2008-05-12 21:20:43 +020078 /* move the IP back to the start of the call */
79 ip -= CALL_BACK;
80
Steven Rostedt3d083392008-05-12 21:20:42 +020081 /*
82 * Note: Due to modules and __init, code can
83 * disappear and change, we need to protect against faulting
84 * as well as code changing.
85 *
86 * No real locking needed, this code is run through
87 * kstop_machine.
88 */
89 asm volatile (
90 "1: lock\n"
Steven Rostedtdfa60ab2008-05-12 21:20:43 +020091 " cmpxchg %3, (%2)\n"
92 " jnz 2f\n"
93 " movb %b4, 4(%2)\n"
Steven Rostedt3d083392008-05-12 21:20:42 +020094 "2:\n"
95 ".section .fixup, \"ax\"\n"
96 " movl $1, %0\n"
97 "3: jmp 2b\n"
98 ".previous\n"
99 _ASM_EXTABLE(1b, 3b)
100 : "=r"(faulted), "=a"(replaced)
Steven Rostedtdfa60ab2008-05-12 21:20:43 +0200101 : "r"(ip), "r"(new), "r"(newch),
102 "0"(faulted), "a"(old)
Steven Rostedt3d083392008-05-12 21:20:42 +0200103 : "memory");
104 sync_core();
105
Steven Rostedtdfa60ab2008-05-12 21:20:43 +0200106 if (replaced != old && replaced != new)
Steven Rostedt3d083392008-05-12 21:20:42 +0200107 faulted = 2;
108
109 return faulted;
110}
111
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200112int __init ftrace_dyn_arch_init(void)
Steven Rostedt3d083392008-05-12 21:20:42 +0200113{
Steven Rostedtdfa60ab2008-05-12 21:20:43 +0200114 const unsigned char *const *noptable = find_nop_table();
Steven Rostedt3d083392008-05-12 21:20:42 +0200115
Steven Rostedtdfa60ab2008-05-12 21:20:43 +0200116 ftrace_nop = (unsigned long *)noptable[CALL_BACK];
117
Steven Rostedt3d083392008-05-12 21:20:42 +0200118 return 0;
119}
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200120