2008-05-15 03:49:44 +00:00
|
|
|
/*
|
|
|
|
* Code for replacing ftrace calls with jumps.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
|
|
|
|
*
|
|
|
|
* Thanks goes out to P.A. Semi, Inc for supplying me with a PPC64 box.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/hardirq.h>
|
2008-11-15 00:21:20 +00:00
|
|
|
#include <linux/uaccess.h>
|
2008-05-15 03:49:44 +00:00
|
|
|
#include <linux/ftrace.h>
|
|
|
|
#include <linux/percpu.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
|
|
|
|
#include <asm/cacheflush.h>
|
2008-06-21 18:17:27 +00:00
|
|
|
#include <asm/ftrace.h>
|
2008-05-15 03:49:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
static unsigned int ftrace_nop = 0x60000000;
|
|
|
|
|
|
|
|
#ifdef CONFIG_PPC32
|
|
|
|
# define GET_ADDR(addr) addr
|
|
|
|
#else
|
|
|
|
/* PowerPC64's functions are data that points to the functions */
|
|
|
|
# define GET_ADDR(addr) *(unsigned long *)addr
|
|
|
|
#endif
|
|
|
|
|
2008-06-21 18:17:27 +00:00
|
|
|
|
2008-10-23 13:33:08 +00:00
|
|
|
static unsigned int ftrace_calc_offset(long ip, long addr)
|
2008-05-15 03:49:44 +00:00
|
|
|
{
|
2008-06-21 18:17:27 +00:00
|
|
|
return (int)(addr - ip);
|
2008-05-15 03:49:44 +00:00
|
|
|
}
|
|
|
|
|
2008-11-15 00:21:19 +00:00
|
|
|
static unsigned char *ftrace_nop_replace(void)
|
2008-05-15 03:49:44 +00:00
|
|
|
{
|
|
|
|
return (char *)&ftrace_nop;
|
|
|
|
}
|
|
|
|
|
2008-11-15 00:21:19 +00:00
|
|
|
static unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr)
|
2008-05-15 03:49:44 +00:00
|
|
|
{
|
|
|
|
static unsigned int op;
|
|
|
|
|
2008-05-22 18:31:07 +00:00
|
|
|
/*
|
|
|
|
* It would be nice to just use create_function_call, but that will
|
|
|
|
* update the code itself. Here we need to just return the
|
|
|
|
* instruction that is going to be modified, without modifying the
|
|
|
|
* code.
|
|
|
|
*/
|
2008-05-15 03:49:44 +00:00
|
|
|
addr = GET_ADDR(addr);
|
|
|
|
|
|
|
|
/* Set to "bl addr" */
|
2008-05-22 18:31:07 +00:00
|
|
|
op = 0x48000001 | (ftrace_calc_offset(ip, addr) & 0x03fffffc);
|
2008-05-15 03:49:44 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* No locking needed, this must be called via kstop_machine
|
|
|
|
* which in essence is like running on a uniprocessor machine.
|
|
|
|
*/
|
|
|
|
return (unsigned char *)&op;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_PPC64
|
|
|
|
# define _ASM_ALIGN " .align 3 "
|
|
|
|
# define _ASM_PTR " .llong "
|
|
|
|
#else
|
|
|
|
# define _ASM_ALIGN " .align 2 "
|
|
|
|
# define _ASM_PTR " .long "
|
|
|
|
#endif
|
|
|
|
|
2008-11-15 00:21:19 +00:00
|
|
|
static int
|
2008-05-15 03:49:44 +00:00
|
|
|
ftrace_modify_code(unsigned long ip, unsigned char *old_code,
|
|
|
|
unsigned char *new_code)
|
|
|
|
{
|
2008-11-15 00:21:20 +00:00
|
|
|
unsigned char replaced[MCOUNT_INSN_SIZE];
|
2008-05-15 03:49:44 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Note: Due to modules and __init, code can
|
|
|
|
* disappear and change, we need to protect against faulting
|
2008-11-15 00:21:20 +00:00
|
|
|
* as well as code changing. We do this by using the
|
|
|
|
* probe_kernel_* functions.
|
2008-05-15 03:49:44 +00:00
|
|
|
*
|
|
|
|
* No real locking needed, this code is run through
|
2008-11-15 00:21:20 +00:00
|
|
|
* kstop_machine, or before SMP starts.
|
2008-05-15 03:49:44 +00:00
|
|
|
*/
|
2008-11-15 00:21:20 +00:00
|
|
|
|
|
|
|
/* read the text we want to modify */
|
|
|
|
if (probe_kernel_read(replaced, (void *)ip, MCOUNT_INSN_SIZE))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
/* Make sure it is what we expect it to be */
|
|
|
|
if (memcmp(replaced, old_code, MCOUNT_INSN_SIZE) != 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* replace the text with the new text */
|
|
|
|
if (probe_kernel_write((void *)ip, new_code, MCOUNT_INSN_SIZE))
|
|
|
|
return -EPERM;
|
|
|
|
|
|
|
|
flush_icache_range(ip, ip + 8);
|
|
|
|
|
|
|
|
return 0;
|
2008-05-15 03:49:44 +00:00
|
|
|
}
|
|
|
|
|
2008-11-15 00:21:19 +00:00
|
|
|
static int test_24bit_addr(unsigned long ip, unsigned long addr)
|
|
|
|
{
|
|
|
|
long diff;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Can we get to addr from ip in 24 bits?
|
|
|
|
* (26 really, since we mulitply by 4 for 4 byte alignment)
|
|
|
|
*/
|
|
|
|
diff = addr - ip;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return true if diff is less than 1 << 25
|
|
|
|
* and greater than -1 << 26.
|
|
|
|
*/
|
|
|
|
return (diff < (1 << 25)) && (diff > (-1 << 26));
|
|
|
|
}
|
|
|
|
|
|
|
|
int ftrace_make_nop(struct module *mod,
|
|
|
|
struct dyn_ftrace *rec, unsigned long addr)
|
|
|
|
{
|
|
|
|
unsigned char *old, *new;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the calling address is more that 24 bits away,
|
|
|
|
* then we had to use a trampoline to make the call.
|
|
|
|
* Otherwise just update the call site.
|
|
|
|
*/
|
|
|
|
if (test_24bit_addr(rec->ip, addr)) {
|
|
|
|
/* within range */
|
|
|
|
old = ftrace_call_replace(rec->ip, addr);
|
|
|
|
new = ftrace_nop_replace();
|
|
|
|
return ftrace_modify_code(rec->ip, old, new);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
|
|
|
|
{
|
|
|
|
unsigned char *old, *new;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the calling address is more that 24 bits away,
|
|
|
|
* then we had to use a trampoline to make the call.
|
|
|
|
* Otherwise just update the call site.
|
|
|
|
*/
|
|
|
|
if (test_24bit_addr(rec->ip, addr)) {
|
|
|
|
/* within range */
|
|
|
|
old = ftrace_nop_replace();
|
|
|
|
new = ftrace_call_replace(rec->ip, addr);
|
|
|
|
return ftrace_modify_code(rec->ip, old, new);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-23 13:33:08 +00:00
|
|
|
int ftrace_update_ftrace_func(ftrace_func_t func)
|
2008-05-15 03:49:44 +00:00
|
|
|
{
|
|
|
|
unsigned long ip = (unsigned long)(&ftrace_call);
|
2008-06-21 18:17:27 +00:00
|
|
|
unsigned char old[MCOUNT_INSN_SIZE], *new;
|
2008-05-15 03:49:44 +00:00
|
|
|
int ret;
|
|
|
|
|
2008-06-21 18:17:27 +00:00
|
|
|
memcpy(old, &ftrace_call, MCOUNT_INSN_SIZE);
|
2008-05-15 03:49:44 +00:00
|
|
|
new = ftrace_call_replace(ip, (unsigned long)func);
|
|
|
|
ret = ftrace_modify_code(ip, old, new);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int __init ftrace_dyn_arch_init(void *data)
|
|
|
|
{
|
2008-11-15 00:21:19 +00:00
|
|
|
/* caller expects data to be zero */
|
|
|
|
unsigned long *p = data;
|
2008-05-15 03:49:44 +00:00
|
|
|
|
2008-11-15 00:21:19 +00:00
|
|
|
*p = 0;
|
2008-05-15 03:49:44 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|