2006-09-20 13:58:39 +00:00
|
|
|
/*
|
|
|
|
* Kernel Probes (KProbes)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
2012-07-20 09:15:04 +00:00
|
|
|
* Copyright IBM Corp. 2002, 2006
|
2006-09-20 13:58:39 +00:00
|
|
|
*
|
|
|
|
* s390 port, used ppc64 as template. Mike Grundy <grundym@us.ibm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kprobes.h>
|
|
|
|
#include <linux/ptrace.h>
|
|
|
|
#include <linux/preempt.h>
|
|
|
|
#include <linux/stop_machine.h>
|
2007-05-08 07:27:03 +00:00
|
|
|
#include <linux/kdebug.h>
|
2009-06-12 08:26:43 +00:00
|
|
|
#include <linux/uaccess.h>
|
2016-09-19 21:54:56 +00:00
|
|
|
#include <linux/extable.h>
|
2006-09-20 13:58:39 +00:00
|
|
|
#include <linux/module.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2010-11-10 09:05:57 +00:00
|
|
|
#include <linux/hardirq.h>
|
2014-10-15 10:17:38 +00:00
|
|
|
#include <linux/ftrace.h>
|
2017-05-08 22:58:08 +00:00
|
|
|
#include <asm/set_memory.h>
|
2013-09-13 11:59:26 +00:00
|
|
|
#include <asm/sections.h>
|
2016-12-24 19:46:01 +00:00
|
|
|
#include <linux/uaccess.h>
|
2013-09-13 11:59:26 +00:00
|
|
|
#include <asm/dis.h>
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
DEFINE_PER_CPU(struct kprobe *, current_kprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
DEFINE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk);
|
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
struct kretprobe_blackpoint kretprobe_blacklist[] = { };
|
2007-10-16 08:27:49 +00:00
|
|
|
|
2013-09-11 21:24:14 +00:00
|
|
|
DEFINE_INSN_CACHE_OPS(dmainsn);
|
|
|
|
|
|
|
|
static void *alloc_dmainsn_page(void)
|
|
|
|
{
|
2016-03-22 09:54:24 +00:00
|
|
|
void *page;
|
|
|
|
|
|
|
|
page = (void *) __get_free_page(GFP_KERNEL | GFP_DMA);
|
|
|
|
if (page)
|
|
|
|
set_memory_x((unsigned long) page, 1);
|
|
|
|
return page;
|
2013-09-11 21:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void free_dmainsn_page(void *page)
|
|
|
|
{
|
2016-03-22 09:54:24 +00:00
|
|
|
set_memory_nx((unsigned long) page, 1);
|
2013-09-11 21:24:14 +00:00
|
|
|
free_page((unsigned long)page);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct kprobe_insn_cache kprobe_dmainsn_slots = {
|
|
|
|
.mutex = __MUTEX_INITIALIZER(kprobe_dmainsn_slots.mutex),
|
|
|
|
.alloc = alloc_dmainsn_page,
|
|
|
|
.free = free_dmainsn_page,
|
|
|
|
.pages = LIST_HEAD_INIT(kprobe_dmainsn_slots.pages),
|
|
|
|
.insn_size = MAX_INSN_SIZE,
|
|
|
|
};
|
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static void copy_instruction(struct kprobe *p)
|
2013-09-11 21:24:14 +00:00
|
|
|
{
|
2014-10-15 10:17:38 +00:00
|
|
|
unsigned long ip = (unsigned long) p->addr;
|
2013-09-11 21:24:14 +00:00
|
|
|
s64 disp, new_disp;
|
|
|
|
u64 addr, new_addr;
|
|
|
|
|
2014-10-15 10:17:38 +00:00
|
|
|
if (ftrace_location(ip) == ip) {
|
|
|
|
/*
|
|
|
|
* If kprobes patches the instruction that is morphed by
|
|
|
|
* ftrace make sure that kprobes always sees the branch
|
2015-01-09 12:08:28 +00:00
|
|
|
* "jg .+24" that skips the mcount block or the "brcl 0,0"
|
|
|
|
* in case of hotpatch.
|
2014-10-15 10:17:38 +00:00
|
|
|
*/
|
|
|
|
ftrace_generate_nop_insn((struct ftrace_insn *)p->ainsn.insn);
|
|
|
|
p->ainsn.is_ftrace_insn = 1;
|
|
|
|
} else
|
2014-11-28 11:36:48 +00:00
|
|
|
memcpy(p->ainsn.insn, p->addr, insn_length(*p->addr >> 8));
|
2014-10-15 10:17:38 +00:00
|
|
|
p->opcode = p->ainsn.insn[0];
|
2014-09-22 14:37:27 +00:00
|
|
|
if (!probe_is_insn_relative_long(p->ainsn.insn))
|
2013-09-11 21:24:14 +00:00
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* For pc-relative instructions in RIL-b or RIL-c format patch the
|
|
|
|
* RI2 displacement field. We have already made sure that the insn
|
|
|
|
* slot for the patched instruction is within the same 2GB area
|
|
|
|
* as the original instruction (either kernel image or module area).
|
|
|
|
* Therefore the new displacement will always fit.
|
|
|
|
*/
|
|
|
|
disp = *(s32 *)&p->ainsn.insn[1];
|
|
|
|
addr = (u64)(unsigned long)p->addr;
|
|
|
|
new_addr = (u64)(unsigned long)p->ainsn.insn;
|
|
|
|
new_disp = ((addr + (disp * 2)) - new_addr) / 2;
|
|
|
|
*(s32 *)&p->ainsn.insn[1] = new_disp;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(copy_instruction);
|
2013-09-11 21:24:14 +00:00
|
|
|
|
|
|
|
static inline int is_kernel_addr(void *addr)
|
|
|
|
{
|
|
|
|
return addr < (void *)_end;
|
|
|
|
}
|
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static int s390_get_insn_slot(struct kprobe *p)
|
2013-09-11 21:24:14 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Get an insn slot that is within the same 2GB area like the original
|
|
|
|
* instruction. That way instructions with a 32bit signed displacement
|
|
|
|
* field can be patched and executed within the insn slot.
|
|
|
|
*/
|
|
|
|
p->ainsn.insn = NULL;
|
|
|
|
if (is_kernel_addr(p->addr))
|
|
|
|
p->ainsn.insn = get_dmainsn_slot();
|
2013-09-02 08:31:11 +00:00
|
|
|
else if (is_module_addr(p->addr))
|
2013-09-11 21:24:14 +00:00
|
|
|
p->ainsn.insn = get_insn_slot();
|
|
|
|
return p->ainsn.insn ? 0 : -ENOMEM;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(s390_get_insn_slot);
|
2013-09-11 21:24:14 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static void s390_free_insn_slot(struct kprobe *p)
|
2013-09-11 21:24:14 +00:00
|
|
|
{
|
|
|
|
if (!p->ainsn.insn)
|
|
|
|
return;
|
|
|
|
if (is_kernel_addr(p->addr))
|
|
|
|
free_dmainsn_slot(p->ainsn.insn, 0);
|
|
|
|
else
|
|
|
|
free_insn_slot(p->ainsn.insn, 0);
|
|
|
|
p->ainsn.insn = NULL;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(s390_free_insn_slot);
|
2013-09-11 21:24:14 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
int arch_prepare_kprobe(struct kprobe *p)
|
2011-01-05 11:47:19 +00:00
|
|
|
{
|
|
|
|
if ((unsigned long) p->addr & 0x01)
|
|
|
|
return -EINVAL;
|
|
|
|
/* Make sure the probe isn't going on a difficult instruction */
|
2014-09-22 14:37:27 +00:00
|
|
|
if (probe_is_prohibited_opcode(p->addr))
|
2011-01-05 11:47:19 +00:00
|
|
|
return -EINVAL;
|
2013-09-11 21:24:14 +00:00
|
|
|
if (s390_get_insn_slot(p))
|
|
|
|
return -ENOMEM;
|
|
|
|
copy_instruction(p);
|
2011-01-05 11:47:19 +00:00
|
|
|
return 0;
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(arch_prepare_kprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-15 10:17:38 +00:00
|
|
|
int arch_check_ftrace_location(struct kprobe *p)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct swap_insn_args {
|
|
|
|
struct kprobe *p;
|
|
|
|
unsigned int arm_kprobe : 1;
|
2011-01-05 11:47:18 +00:00
|
|
|
};
|
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static int swap_instruction(void *data)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
2009-06-22 10:08:23 +00:00
|
|
|
struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
|
|
|
|
unsigned long status = kcb->kprobe_status;
|
2014-10-15 10:17:38 +00:00
|
|
|
struct swap_insn_args *args = data;
|
|
|
|
struct ftrace_insn new_insn, *insn;
|
|
|
|
struct kprobe *p = args->p;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
new_insn.opc = args->arm_kprobe ? BREAKPOINT_INSTRUCTION : p->opcode;
|
|
|
|
len = sizeof(new_insn.opc);
|
|
|
|
if (!p->ainsn.is_ftrace_insn)
|
|
|
|
goto skip_ftrace;
|
|
|
|
len = sizeof(new_insn);
|
|
|
|
insn = (struct ftrace_insn *) p->addr;
|
|
|
|
if (args->arm_kprobe) {
|
|
|
|
if (is_ftrace_nop(insn))
|
|
|
|
new_insn.disp = KPROBE_ON_FTRACE_NOP;
|
|
|
|
else
|
|
|
|
new_insn.disp = KPROBE_ON_FTRACE_CALL;
|
|
|
|
} else {
|
|
|
|
ftrace_generate_call_insn(&new_insn, (unsigned long)p->addr);
|
|
|
|
if (insn->disp == KPROBE_ON_FTRACE_NOP)
|
|
|
|
ftrace_generate_nop_insn(&new_insn);
|
|
|
|
}
|
|
|
|
skip_ftrace:
|
2009-06-22 10:08:23 +00:00
|
|
|
kcb->kprobe_status = KPROBE_SWAP_INST;
|
2015-03-13 11:55:56 +00:00
|
|
|
s390_kernel_write(p->addr, &new_insn, len);
|
2009-06-22 10:08:23 +00:00
|
|
|
kcb->kprobe_status = status;
|
2011-01-05 11:47:18 +00:00
|
|
|
return 0;
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(swap_instruction);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
void arch_arm_kprobe(struct kprobe *p)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
2014-10-15 10:17:38 +00:00
|
|
|
struct swap_insn_args args = {.p = p, .arm_kprobe = 1};
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2008-07-28 17:16:30 +00:00
|
|
|
stop_machine(swap_instruction, &args, NULL);
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(arch_arm_kprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
void arch_disarm_kprobe(struct kprobe *p)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
2014-10-15 10:17:38 +00:00
|
|
|
struct swap_insn_args args = {.p = p, .arm_kprobe = 0};
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2008-07-28 17:16:30 +00:00
|
|
|
stop_machine(swap_instruction, &args, NULL);
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(arch_disarm_kprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
void arch_remove_kprobe(struct kprobe *p)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
2013-09-11 21:24:14 +00:00
|
|
|
s390_free_insn_slot(p);
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(arch_remove_kprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static void enable_singlestep(struct kprobe_ctlblk *kcb,
|
|
|
|
struct pt_regs *regs,
|
|
|
|
unsigned long ip)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
2011-01-05 11:48:10 +00:00
|
|
|
struct per_regs per_kprobe;
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:48:10 +00:00
|
|
|
/* Set up the PER control registers %cr9-%cr11 */
|
|
|
|
per_kprobe.control = PER_EVENT_IFETCH;
|
|
|
|
per_kprobe.start = ip;
|
|
|
|
per_kprobe.end = ip;
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:17 +00:00
|
|
|
/* Save control regs and psw mask */
|
|
|
|
__ctl_store(kcb->kprobe_saved_ctl, 9, 11);
|
|
|
|
kcb->kprobe_saved_imask = regs->psw.mask &
|
|
|
|
(PSW_MASK_PER | PSW_MASK_IO | PSW_MASK_EXT);
|
|
|
|
|
|
|
|
/* Set PER control regs, turns on single step for the given address */
|
2011-01-05 11:48:10 +00:00
|
|
|
__ctl_load(per_kprobe, 9, 11);
|
2006-09-20 13:58:39 +00:00
|
|
|
regs->psw.mask |= PSW_MASK_PER;
|
2010-11-10 09:05:57 +00:00
|
|
|
regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
|
2016-01-18 11:49:44 +00:00
|
|
|
regs->psw.addr = ip;
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(enable_singlestep);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static void disable_singlestep(struct kprobe_ctlblk *kcb,
|
|
|
|
struct pt_regs *regs,
|
|
|
|
unsigned long ip)
|
2011-01-05 11:47:17 +00:00
|
|
|
{
|
|
|
|
/* Restore control regs and psw mask, set new psw address */
|
|
|
|
__ctl_load(kcb->kprobe_saved_ctl, 9, 11);
|
|
|
|
regs->psw.mask &= ~PSW_MASK_PER;
|
|
|
|
regs->psw.mask |= kcb->kprobe_saved_imask;
|
2016-01-18 11:49:44 +00:00
|
|
|
regs->psw.addr = ip;
|
2011-01-05 11:47:17 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(disable_singlestep);
|
2011-01-05 11:47:17 +00:00
|
|
|
|
2011-01-05 11:47:20 +00:00
|
|
|
/*
|
|
|
|
* Activate a kprobe by storing its pointer to current_kprobe. The
|
|
|
|
* previous kprobe is stored in kcb->prev_kprobe. A stack of up to
|
|
|
|
* two kprobes can be active, see KPROBE_REENTER.
|
|
|
|
*/
|
2014-10-22 10:42:38 +00:00
|
|
|
static void push_kprobe(struct kprobe_ctlblk *kcb, struct kprobe *p)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
s390: Replace __get_cpu_var uses
__get_cpu_var() is used for multiple purposes in the kernel source. One of
them is address calculation via the form &__get_cpu_var(x). This calculates
the address for the instance of the percpu variable of the current processor
based on an offset.
Other use cases are for storing and retrieving data from the current
processors percpu area. __get_cpu_var() can be used as an lvalue when
writing data or on the right side of an assignment.
__get_cpu_var() is defined as :
#define __get_cpu_var(var) (*this_cpu_ptr(&(var)))
__get_cpu_var() always only does an address determination. However, store
and retrieve operations could use a segment prefix (or global register on
other platforms) to avoid the address calculation.
this_cpu_write() and this_cpu_read() can directly take an offset into a
percpu area and use optimized assembly code to read and write per cpu
variables.
This patch converts __get_cpu_var into either an explicit address
calculation using this_cpu_ptr() or into a use of this_cpu operations that
use the offset. Thereby address calculations are avoided and less registers
are used when code is generated.
At the end of the patch set all uses of __get_cpu_var have been removed so
the macro is removed too.
The patch set includes passes over all arches as well. Once these operations
are used throughout then specialized macros can be defined in non -x86
arches as well in order to optimize per cpu access by f.e. using a global
register that may be set to the per cpu base.
Transformations done to __get_cpu_var()
1. Determine the address of the percpu instance of the current processor.
DEFINE_PER_CPU(int, y);
int *x = &__get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(&y);
2. Same as #1 but this time an array structure is involved.
DEFINE_PER_CPU(int, y[20]);
int *x = __get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(y);
3. Retrieve the content of the current processors instance of a per cpu
variable.
DEFINE_PER_CPU(int, y);
int x = __get_cpu_var(y)
Converts to
int x = __this_cpu_read(y);
4. Retrieve the content of a percpu struct
DEFINE_PER_CPU(struct mystruct, y);
struct mystruct x = __get_cpu_var(y);
Converts to
memcpy(&x, this_cpu_ptr(&y), sizeof(x));
5. Assignment to a per cpu variable
DEFINE_PER_CPU(int, y)
__get_cpu_var(y) = x;
Converts to
this_cpu_write(y, x);
6. Increment/Decrement etc of a per cpu variable
DEFINE_PER_CPU(int, y);
__get_cpu_var(y)++
Converts to
this_cpu_inc(y)
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
CC: linux390@de.ibm.com
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-08-17 17:30:45 +00:00
|
|
|
kcb->prev_kprobe.kp = __this_cpu_read(current_kprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
kcb->prev_kprobe.status = kcb->kprobe_status;
|
s390: Replace __get_cpu_var uses
__get_cpu_var() is used for multiple purposes in the kernel source. One of
them is address calculation via the form &__get_cpu_var(x). This calculates
the address for the instance of the percpu variable of the current processor
based on an offset.
Other use cases are for storing and retrieving data from the current
processors percpu area. __get_cpu_var() can be used as an lvalue when
writing data or on the right side of an assignment.
__get_cpu_var() is defined as :
#define __get_cpu_var(var) (*this_cpu_ptr(&(var)))
__get_cpu_var() always only does an address determination. However, store
and retrieve operations could use a segment prefix (or global register on
other platforms) to avoid the address calculation.
this_cpu_write() and this_cpu_read() can directly take an offset into a
percpu area and use optimized assembly code to read and write per cpu
variables.
This patch converts __get_cpu_var into either an explicit address
calculation using this_cpu_ptr() or into a use of this_cpu operations that
use the offset. Thereby address calculations are avoided and less registers
are used when code is generated.
At the end of the patch set all uses of __get_cpu_var have been removed so
the macro is removed too.
The patch set includes passes over all arches as well. Once these operations
are used throughout then specialized macros can be defined in non -x86
arches as well in order to optimize per cpu access by f.e. using a global
register that may be set to the per cpu base.
Transformations done to __get_cpu_var()
1. Determine the address of the percpu instance of the current processor.
DEFINE_PER_CPU(int, y);
int *x = &__get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(&y);
2. Same as #1 but this time an array structure is involved.
DEFINE_PER_CPU(int, y[20]);
int *x = __get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(y);
3. Retrieve the content of the current processors instance of a per cpu
variable.
DEFINE_PER_CPU(int, y);
int x = __get_cpu_var(y)
Converts to
int x = __this_cpu_read(y);
4. Retrieve the content of a percpu struct
DEFINE_PER_CPU(struct mystruct, y);
struct mystruct x = __get_cpu_var(y);
Converts to
memcpy(&x, this_cpu_ptr(&y), sizeof(x));
5. Assignment to a per cpu variable
DEFINE_PER_CPU(int, y)
__get_cpu_var(y) = x;
Converts to
this_cpu_write(y, x);
6. Increment/Decrement etc of a per cpu variable
DEFINE_PER_CPU(int, y);
__get_cpu_var(y)++
Converts to
this_cpu_inc(y)
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
CC: linux390@de.ibm.com
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-08-17 17:30:45 +00:00
|
|
|
__this_cpu_write(current_kprobe, p);
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(push_kprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:20 +00:00
|
|
|
/*
|
|
|
|
* Deactivate a kprobe by backing up to the previous state. If the
|
|
|
|
* current state is KPROBE_REENTER prev_kprobe.kp will be non-NULL,
|
|
|
|
* for any other state prev_kprobe.kp will be NULL.
|
|
|
|
*/
|
2014-10-22 10:42:38 +00:00
|
|
|
static void pop_kprobe(struct kprobe_ctlblk *kcb)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
s390: Replace __get_cpu_var uses
__get_cpu_var() is used for multiple purposes in the kernel source. One of
them is address calculation via the form &__get_cpu_var(x). This calculates
the address for the instance of the percpu variable of the current processor
based on an offset.
Other use cases are for storing and retrieving data from the current
processors percpu area. __get_cpu_var() can be used as an lvalue when
writing data or on the right side of an assignment.
__get_cpu_var() is defined as :
#define __get_cpu_var(var) (*this_cpu_ptr(&(var)))
__get_cpu_var() always only does an address determination. However, store
and retrieve operations could use a segment prefix (or global register on
other platforms) to avoid the address calculation.
this_cpu_write() and this_cpu_read() can directly take an offset into a
percpu area and use optimized assembly code to read and write per cpu
variables.
This patch converts __get_cpu_var into either an explicit address
calculation using this_cpu_ptr() or into a use of this_cpu operations that
use the offset. Thereby address calculations are avoided and less registers
are used when code is generated.
At the end of the patch set all uses of __get_cpu_var have been removed so
the macro is removed too.
The patch set includes passes over all arches as well. Once these operations
are used throughout then specialized macros can be defined in non -x86
arches as well in order to optimize per cpu access by f.e. using a global
register that may be set to the per cpu base.
Transformations done to __get_cpu_var()
1. Determine the address of the percpu instance of the current processor.
DEFINE_PER_CPU(int, y);
int *x = &__get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(&y);
2. Same as #1 but this time an array structure is involved.
DEFINE_PER_CPU(int, y[20]);
int *x = __get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(y);
3. Retrieve the content of the current processors instance of a per cpu
variable.
DEFINE_PER_CPU(int, y);
int x = __get_cpu_var(y)
Converts to
int x = __this_cpu_read(y);
4. Retrieve the content of a percpu struct
DEFINE_PER_CPU(struct mystruct, y);
struct mystruct x = __get_cpu_var(y);
Converts to
memcpy(&x, this_cpu_ptr(&y), sizeof(x));
5. Assignment to a per cpu variable
DEFINE_PER_CPU(int, y)
__get_cpu_var(y) = x;
Converts to
this_cpu_write(y, x);
6. Increment/Decrement etc of a per cpu variable
DEFINE_PER_CPU(int, y);
__get_cpu_var(y)++
Converts to
this_cpu_inc(y)
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
CC: linux390@de.ibm.com
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-08-17 17:30:45 +00:00
|
|
|
__this_cpu_write(current_kprobe, kcb->prev_kprobe.kp);
|
2006-09-20 13:58:39 +00:00
|
|
|
kcb->kprobe_status = kcb->prev_kprobe.status;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(pop_kprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
void arch_prepare_kretprobe(struct kretprobe_instance *ri, struct pt_regs *regs)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
2007-05-08 07:34:14 +00:00
|
|
|
ri->ret_addr = (kprobe_opcode_t *) regs->gprs[14];
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2007-05-08 07:34:14 +00:00
|
|
|
/* Replace the return addr with trampoline addr */
|
2011-01-05 11:47:24 +00:00
|
|
|
regs->gprs[14] = (unsigned long) &kretprobe_trampoline;
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(arch_prepare_kretprobe);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static void kprobe_reenter_check(struct kprobe_ctlblk *kcb, struct kprobe *p)
|
2011-01-05 11:47:23 +00:00
|
|
|
{
|
|
|
|
switch (kcb->kprobe_status) {
|
|
|
|
case KPROBE_HIT_SSDONE:
|
|
|
|
case KPROBE_HIT_ACTIVE:
|
|
|
|
kprobes_inc_nmissed_count(p);
|
|
|
|
break;
|
|
|
|
case KPROBE_HIT_SS:
|
|
|
|
case KPROBE_REENTER:
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* A kprobe on the code path to single step an instruction
|
|
|
|
* is a BUG. The code path resides in the .kprobes.text
|
|
|
|
* section and is executed with interrupts disabled.
|
|
|
|
*/
|
|
|
|
printk(KERN_EMERG "Invalid kprobe detected at %p.\n", p->addr);
|
|
|
|
dump_kprobe(p);
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(kprobe_reenter_check);
|
2011-01-05 11:47:23 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static int kprobe_handler(struct pt_regs *regs)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
|
|
|
struct kprobe_ctlblk *kcb;
|
2011-01-05 11:47:23 +00:00
|
|
|
struct kprobe *p;
|
2006-09-20 13:58:39 +00:00
|
|
|
|
|
|
|
/*
|
2011-01-05 11:47:23 +00:00
|
|
|
* We want to disable preemption for the entire duration of kprobe
|
|
|
|
* processing. That includes the calls to the pre/post handlers
|
|
|
|
* and single stepping the kprobe instruction.
|
2006-09-20 13:58:39 +00:00
|
|
|
*/
|
|
|
|
preempt_disable();
|
|
|
|
kcb = get_kprobe_ctlblk();
|
2016-01-18 12:12:19 +00:00
|
|
|
p = get_kprobe((void *)(regs->psw.addr - 2));
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:23 +00:00
|
|
|
if (p) {
|
|
|
|
if (kprobe_running()) {
|
2011-01-05 11:47:20 +00:00
|
|
|
/*
|
|
|
|
* We have hit a kprobe while another is still
|
|
|
|
* active. This can happen in the pre and post
|
|
|
|
* handler. Single step the instruction of the
|
|
|
|
* new probe but do not call any handler function
|
|
|
|
* of this secondary kprobe.
|
|
|
|
* push_kprobe and pop_kprobe saves and restores
|
|
|
|
* the currently active kprobe.
|
2006-09-20 13:58:39 +00:00
|
|
|
*/
|
2011-01-05 11:47:23 +00:00
|
|
|
kprobe_reenter_check(kcb, p);
|
2011-01-05 11:47:20 +00:00
|
|
|
push_kprobe(kcb, p);
|
2006-09-20 13:58:39 +00:00
|
|
|
kcb->kprobe_status = KPROBE_REENTER;
|
|
|
|
} else {
|
2011-01-05 11:47:23 +00:00
|
|
|
/*
|
|
|
|
* If we have no pre-handler or it returned 0, we
|
|
|
|
* continue with single stepping. If we have a
|
|
|
|
* pre-handler and it returned non-zero, it prepped
|
|
|
|
* for calling the break_handler below on re-entry
|
|
|
|
* for jprobe processing, so get out doing nothing
|
|
|
|
* more here.
|
|
|
|
*/
|
|
|
|
push_kprobe(kcb, p);
|
|
|
|
kcb->kprobe_status = KPROBE_HIT_ACTIVE;
|
|
|
|
if (p->pre_handler && p->pre_handler(p, regs))
|
|
|
|
return 1;
|
|
|
|
kcb->kprobe_status = KPROBE_HIT_SS;
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2011-01-05 11:47:23 +00:00
|
|
|
enable_singlestep(kcb, regs, (unsigned long) p->ainsn.insn);
|
2006-09-20 13:58:39 +00:00
|
|
|
return 1;
|
2011-01-05 11:47:23 +00:00
|
|
|
} else if (kprobe_running()) {
|
s390: Replace __get_cpu_var uses
__get_cpu_var() is used for multiple purposes in the kernel source. One of
them is address calculation via the form &__get_cpu_var(x). This calculates
the address for the instance of the percpu variable of the current processor
based on an offset.
Other use cases are for storing and retrieving data from the current
processors percpu area. __get_cpu_var() can be used as an lvalue when
writing data or on the right side of an assignment.
__get_cpu_var() is defined as :
#define __get_cpu_var(var) (*this_cpu_ptr(&(var)))
__get_cpu_var() always only does an address determination. However, store
and retrieve operations could use a segment prefix (or global register on
other platforms) to avoid the address calculation.
this_cpu_write() and this_cpu_read() can directly take an offset into a
percpu area and use optimized assembly code to read and write per cpu
variables.
This patch converts __get_cpu_var into either an explicit address
calculation using this_cpu_ptr() or into a use of this_cpu operations that
use the offset. Thereby address calculations are avoided and less registers
are used when code is generated.
At the end of the patch set all uses of __get_cpu_var have been removed so
the macro is removed too.
The patch set includes passes over all arches as well. Once these operations
are used throughout then specialized macros can be defined in non -x86
arches as well in order to optimize per cpu access by f.e. using a global
register that may be set to the per cpu base.
Transformations done to __get_cpu_var()
1. Determine the address of the percpu instance of the current processor.
DEFINE_PER_CPU(int, y);
int *x = &__get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(&y);
2. Same as #1 but this time an array structure is involved.
DEFINE_PER_CPU(int, y[20]);
int *x = __get_cpu_var(y);
Converts to
int *x = this_cpu_ptr(y);
3. Retrieve the content of the current processors instance of a per cpu
variable.
DEFINE_PER_CPU(int, y);
int x = __get_cpu_var(y)
Converts to
int x = __this_cpu_read(y);
4. Retrieve the content of a percpu struct
DEFINE_PER_CPU(struct mystruct, y);
struct mystruct x = __get_cpu_var(y);
Converts to
memcpy(&x, this_cpu_ptr(&y), sizeof(x));
5. Assignment to a per cpu variable
DEFINE_PER_CPU(int, y)
__get_cpu_var(y) = x;
Converts to
this_cpu_write(y, x);
6. Increment/Decrement etc of a per cpu variable
DEFINE_PER_CPU(int, y);
__get_cpu_var(y)++
Converts to
this_cpu_inc(y)
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
CC: linux390@de.ibm.com
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2014-08-17 17:30:45 +00:00
|
|
|
p = __this_cpu_read(current_kprobe);
|
2011-01-05 11:47:23 +00:00
|
|
|
if (p->break_handler && p->break_handler(p, regs)) {
|
|
|
|
/*
|
|
|
|
* Continuation after the jprobe completed and
|
|
|
|
* caused the jprobe_return trap. The jprobe
|
|
|
|
* break_handler "returns" to the original
|
|
|
|
* function that still has the kprobe breakpoint
|
|
|
|
* installed. We continue with single stepping.
|
|
|
|
*/
|
|
|
|
kcb->kprobe_status = KPROBE_HIT_SS;
|
|
|
|
enable_singlestep(kcb, regs,
|
|
|
|
(unsigned long) p->ainsn.insn);
|
|
|
|
return 1;
|
|
|
|
} /* else:
|
|
|
|
* No kprobe at this address and the current kprobe
|
|
|
|
* has no break handler (no jprobe!). The kernel just
|
|
|
|
* exploded, let the standard trap handler pick up the
|
|
|
|
* pieces.
|
|
|
|
*/
|
|
|
|
} /* else:
|
|
|
|
* No kprobe at this address and no active kprobe. The trap has
|
|
|
|
* not been caused by a kprobe breakpoint. The race of breakpoint
|
|
|
|
* vs. kprobe remove does not exist because on s390 as we use
|
|
|
|
* stop_machine to arm/disarm the breakpoints.
|
|
|
|
*/
|
2006-09-20 13:58:39 +00:00
|
|
|
preempt_enable_no_resched();
|
2011-01-05 11:47:23 +00:00
|
|
|
return 0;
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(kprobe_handler);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Function return probe trampoline:
|
|
|
|
* - init_kprobes() establishes a probepoint here
|
|
|
|
* - When the probed function returns, this probe
|
|
|
|
* causes the handlers to fire
|
|
|
|
*/
|
2008-04-17 05:46:26 +00:00
|
|
|
static void __used kretprobe_trampoline_holder(void)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
|
|
|
asm volatile(".global kretprobe_trampoline\n"
|
|
|
|
"kretprobe_trampoline: bcr 0,0\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called when the probe at kretprobe trampoline is hit
|
|
|
|
*/
|
2014-10-22 10:42:38 +00:00
|
|
|
static int trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
2011-01-05 11:47:24 +00:00
|
|
|
struct kretprobe_instance *ri;
|
2006-10-02 09:17:35 +00:00
|
|
|
struct hlist_head *head, empty_rp;
|
hlist: drop the node parameter from iterators
I'm not sure why, but the hlist for each entry iterators were conceived
list_for_each_entry(pos, head, member)
The hlist ones were greedy and wanted an extra parameter:
hlist_for_each_entry(tpos, pos, head, member)
Why did they need an extra pos parameter? I'm not quite sure. Not only
they don't really need it, it also prevents the iterator from looking
exactly like the list iterator, which is unfortunate.
Besides the semantic patch, there was some manual work required:
- Fix up the actual hlist iterators in linux/list.h
- Fix up the declaration of other iterators based on the hlist ones.
- A very small amount of places were using the 'node' parameter, this
was modified to use 'obj->member' instead.
- Coccinelle didn't handle the hlist_for_each_entry_safe iterator
properly, so those had to be fixed up manually.
The semantic patch which is mostly the work of Peter Senna Tschudin is here:
@@
iterator name hlist_for_each_entry, hlist_for_each_entry_continue, hlist_for_each_entry_from, hlist_for_each_entry_rcu, hlist_for_each_entry_rcu_bh, hlist_for_each_entry_continue_rcu_bh, for_each_busy_worker, ax25_uid_for_each, ax25_for_each, inet_bind_bucket_for_each, sctp_for_each_hentry, sk_for_each, sk_for_each_rcu, sk_for_each_from, sk_for_each_safe, sk_for_each_bound, hlist_for_each_entry_safe, hlist_for_each_entry_continue_rcu, nr_neigh_for_each, nr_neigh_for_each_safe, nr_node_for_each, nr_node_for_each_safe, for_each_gfn_indirect_valid_sp, for_each_gfn_sp, for_each_host;
type T;
expression a,c,d,e;
identifier b;
statement S;
@@
-T b;
<+... when != b
(
hlist_for_each_entry(a,
- b,
c, d) S
|
hlist_for_each_entry_continue(a,
- b,
c) S
|
hlist_for_each_entry_from(a,
- b,
c) S
|
hlist_for_each_entry_rcu(a,
- b,
c, d) S
|
hlist_for_each_entry_rcu_bh(a,
- b,
c, d) S
|
hlist_for_each_entry_continue_rcu_bh(a,
- b,
c) S
|
for_each_busy_worker(a, c,
- b,
d) S
|
ax25_uid_for_each(a,
- b,
c) S
|
ax25_for_each(a,
- b,
c) S
|
inet_bind_bucket_for_each(a,
- b,
c) S
|
sctp_for_each_hentry(a,
- b,
c) S
|
sk_for_each(a,
- b,
c) S
|
sk_for_each_rcu(a,
- b,
c) S
|
sk_for_each_from
-(a, b)
+(a)
S
+ sk_for_each_from(a) S
|
sk_for_each_safe(a,
- b,
c, d) S
|
sk_for_each_bound(a,
- b,
c) S
|
hlist_for_each_entry_safe(a,
- b,
c, d, e) S
|
hlist_for_each_entry_continue_rcu(a,
- b,
c) S
|
nr_neigh_for_each(a,
- b,
c) S
|
nr_neigh_for_each_safe(a,
- b,
c, d) S
|
nr_node_for_each(a,
- b,
c) S
|
nr_node_for_each_safe(a,
- b,
c, d) S
|
- for_each_gfn_sp(a, c, d, b) S
+ for_each_gfn_sp(a, c, d) S
|
- for_each_gfn_indirect_valid_sp(a, c, d, b) S
+ for_each_gfn_indirect_valid_sp(a, c, d) S
|
for_each_host(a,
- b,
c) S
|
for_each_host_safe(a,
- b,
c, d) S
|
for_each_mesh_entry(a,
- b,
c, d) S
)
...+>
[akpm@linux-foundation.org: drop bogus change from net/ipv4/raw.c]
[akpm@linux-foundation.org: drop bogus hunk from net/ipv6/raw.c]
[akpm@linux-foundation.org: checkpatch fixes]
[akpm@linux-foundation.org: fix warnings]
[akpm@linux-foudnation.org: redo intrusive kvm changes]
Tested-by: Peter Senna Tschudin <peter.senna@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-28 01:06:00 +00:00
|
|
|
struct hlist_node *tmp;
|
2011-01-05 11:47:24 +00:00
|
|
|
unsigned long flags, orig_ret_address;
|
|
|
|
unsigned long trampoline_address;
|
|
|
|
kprobe_opcode_t *correct_ret_addr;
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2006-10-02 09:17:35 +00:00
|
|
|
INIT_HLIST_HEAD(&empty_rp);
|
2008-07-25 08:46:04 +00:00
|
|
|
kretprobe_hash_lock(current, &head, &flags);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* It is possible to have multiple instances associated with a given
|
|
|
|
* task either because an multiple functions in the call path
|
2008-10-16 17:02:37 +00:00
|
|
|
* have a return probe installed on them, and/or more than one return
|
2006-09-20 13:58:39 +00:00
|
|
|
* return probe was registered for a target function.
|
|
|
|
*
|
|
|
|
* We can handle this because:
|
|
|
|
* - instances are always inserted at the head of the list
|
|
|
|
* - when multiple return probes are registered for the same
|
|
|
|
* function, the first instance's ret_addr will point to the
|
|
|
|
* real return address, and all the rest will point to
|
|
|
|
* kretprobe_trampoline
|
|
|
|
*/
|
2011-01-05 11:47:24 +00:00
|
|
|
ri = NULL;
|
|
|
|
orig_ret_address = 0;
|
|
|
|
correct_ret_addr = NULL;
|
|
|
|
trampoline_address = (unsigned long) &kretprobe_trampoline;
|
hlist: drop the node parameter from iterators
I'm not sure why, but the hlist for each entry iterators were conceived
list_for_each_entry(pos, head, member)
The hlist ones were greedy and wanted an extra parameter:
hlist_for_each_entry(tpos, pos, head, member)
Why did they need an extra pos parameter? I'm not quite sure. Not only
they don't really need it, it also prevents the iterator from looking
exactly like the list iterator, which is unfortunate.
Besides the semantic patch, there was some manual work required:
- Fix up the actual hlist iterators in linux/list.h
- Fix up the declaration of other iterators based on the hlist ones.
- A very small amount of places were using the 'node' parameter, this
was modified to use 'obj->member' instead.
- Coccinelle didn't handle the hlist_for_each_entry_safe iterator
properly, so those had to be fixed up manually.
The semantic patch which is mostly the work of Peter Senna Tschudin is here:
@@
iterator name hlist_for_each_entry, hlist_for_each_entry_continue, hlist_for_each_entry_from, hlist_for_each_entry_rcu, hlist_for_each_entry_rcu_bh, hlist_for_each_entry_continue_rcu_bh, for_each_busy_worker, ax25_uid_for_each, ax25_for_each, inet_bind_bucket_for_each, sctp_for_each_hentry, sk_for_each, sk_for_each_rcu, sk_for_each_from, sk_for_each_safe, sk_for_each_bound, hlist_for_each_entry_safe, hlist_for_each_entry_continue_rcu, nr_neigh_for_each, nr_neigh_for_each_safe, nr_node_for_each, nr_node_for_each_safe, for_each_gfn_indirect_valid_sp, for_each_gfn_sp, for_each_host;
type T;
expression a,c,d,e;
identifier b;
statement S;
@@
-T b;
<+... when != b
(
hlist_for_each_entry(a,
- b,
c, d) S
|
hlist_for_each_entry_continue(a,
- b,
c) S
|
hlist_for_each_entry_from(a,
- b,
c) S
|
hlist_for_each_entry_rcu(a,
- b,
c, d) S
|
hlist_for_each_entry_rcu_bh(a,
- b,
c, d) S
|
hlist_for_each_entry_continue_rcu_bh(a,
- b,
c) S
|
for_each_busy_worker(a, c,
- b,
d) S
|
ax25_uid_for_each(a,
- b,
c) S
|
ax25_for_each(a,
- b,
c) S
|
inet_bind_bucket_for_each(a,
- b,
c) S
|
sctp_for_each_hentry(a,
- b,
c) S
|
sk_for_each(a,
- b,
c) S
|
sk_for_each_rcu(a,
- b,
c) S
|
sk_for_each_from
-(a, b)
+(a)
S
+ sk_for_each_from(a) S
|
sk_for_each_safe(a,
- b,
c, d) S
|
sk_for_each_bound(a,
- b,
c) S
|
hlist_for_each_entry_safe(a,
- b,
c, d, e) S
|
hlist_for_each_entry_continue_rcu(a,
- b,
c) S
|
nr_neigh_for_each(a,
- b,
c) S
|
nr_neigh_for_each_safe(a,
- b,
c, d) S
|
nr_node_for_each(a,
- b,
c) S
|
nr_node_for_each_safe(a,
- b,
c, d) S
|
- for_each_gfn_sp(a, c, d, b) S
+ for_each_gfn_sp(a, c, d) S
|
- for_each_gfn_indirect_valid_sp(a, c, d, b) S
+ for_each_gfn_indirect_valid_sp(a, c, d) S
|
for_each_host(a,
- b,
c) S
|
for_each_host_safe(a,
- b,
c, d) S
|
for_each_mesh_entry(a,
- b,
c, d) S
)
...+>
[akpm@linux-foundation.org: drop bogus change from net/ipv4/raw.c]
[akpm@linux-foundation.org: drop bogus hunk from net/ipv6/raw.c]
[akpm@linux-foundation.org: checkpatch fixes]
[akpm@linux-foundation.org: fix warnings]
[akpm@linux-foudnation.org: redo intrusive kvm changes]
Tested-by: Peter Senna Tschudin <peter.senna@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-28 01:06:00 +00:00
|
|
|
hlist_for_each_entry_safe(ri, tmp, head, hlist) {
|
2006-09-20 13:58:39 +00:00
|
|
|
if (ri->task != current)
|
|
|
|
/* another task is sharing our hash bucket */
|
|
|
|
continue;
|
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
orig_ret_address = (unsigned long) ri->ret_addr;
|
2010-11-10 09:05:58 +00:00
|
|
|
|
|
|
|
if (orig_ret_address != trampoline_address)
|
|
|
|
/*
|
|
|
|
* This is the real return address. Any other
|
|
|
|
* instances associated with this task are for
|
|
|
|
* other calls deeper on the call stack
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
kretprobe_assert(ri, orig_ret_address, trampoline_address);
|
|
|
|
|
|
|
|
correct_ret_addr = ri->ret_addr;
|
hlist: drop the node parameter from iterators
I'm not sure why, but the hlist for each entry iterators were conceived
list_for_each_entry(pos, head, member)
The hlist ones were greedy and wanted an extra parameter:
hlist_for_each_entry(tpos, pos, head, member)
Why did they need an extra pos parameter? I'm not quite sure. Not only
they don't really need it, it also prevents the iterator from looking
exactly like the list iterator, which is unfortunate.
Besides the semantic patch, there was some manual work required:
- Fix up the actual hlist iterators in linux/list.h
- Fix up the declaration of other iterators based on the hlist ones.
- A very small amount of places were using the 'node' parameter, this
was modified to use 'obj->member' instead.
- Coccinelle didn't handle the hlist_for_each_entry_safe iterator
properly, so those had to be fixed up manually.
The semantic patch which is mostly the work of Peter Senna Tschudin is here:
@@
iterator name hlist_for_each_entry, hlist_for_each_entry_continue, hlist_for_each_entry_from, hlist_for_each_entry_rcu, hlist_for_each_entry_rcu_bh, hlist_for_each_entry_continue_rcu_bh, for_each_busy_worker, ax25_uid_for_each, ax25_for_each, inet_bind_bucket_for_each, sctp_for_each_hentry, sk_for_each, sk_for_each_rcu, sk_for_each_from, sk_for_each_safe, sk_for_each_bound, hlist_for_each_entry_safe, hlist_for_each_entry_continue_rcu, nr_neigh_for_each, nr_neigh_for_each_safe, nr_node_for_each, nr_node_for_each_safe, for_each_gfn_indirect_valid_sp, for_each_gfn_sp, for_each_host;
type T;
expression a,c,d,e;
identifier b;
statement S;
@@
-T b;
<+... when != b
(
hlist_for_each_entry(a,
- b,
c, d) S
|
hlist_for_each_entry_continue(a,
- b,
c) S
|
hlist_for_each_entry_from(a,
- b,
c) S
|
hlist_for_each_entry_rcu(a,
- b,
c, d) S
|
hlist_for_each_entry_rcu_bh(a,
- b,
c, d) S
|
hlist_for_each_entry_continue_rcu_bh(a,
- b,
c) S
|
for_each_busy_worker(a, c,
- b,
d) S
|
ax25_uid_for_each(a,
- b,
c) S
|
ax25_for_each(a,
- b,
c) S
|
inet_bind_bucket_for_each(a,
- b,
c) S
|
sctp_for_each_hentry(a,
- b,
c) S
|
sk_for_each(a,
- b,
c) S
|
sk_for_each_rcu(a,
- b,
c) S
|
sk_for_each_from
-(a, b)
+(a)
S
+ sk_for_each_from(a) S
|
sk_for_each_safe(a,
- b,
c, d) S
|
sk_for_each_bound(a,
- b,
c) S
|
hlist_for_each_entry_safe(a,
- b,
c, d, e) S
|
hlist_for_each_entry_continue_rcu(a,
- b,
c) S
|
nr_neigh_for_each(a,
- b,
c) S
|
nr_neigh_for_each_safe(a,
- b,
c, d) S
|
nr_node_for_each(a,
- b,
c) S
|
nr_node_for_each_safe(a,
- b,
c, d) S
|
- for_each_gfn_sp(a, c, d, b) S
+ for_each_gfn_sp(a, c, d) S
|
- for_each_gfn_indirect_valid_sp(a, c, d, b) S
+ for_each_gfn_indirect_valid_sp(a, c, d) S
|
for_each_host(a,
- b,
c) S
|
for_each_host_safe(a,
- b,
c, d) S
|
for_each_mesh_entry(a,
- b,
c, d) S
)
...+>
[akpm@linux-foundation.org: drop bogus change from net/ipv4/raw.c]
[akpm@linux-foundation.org: drop bogus hunk from net/ipv6/raw.c]
[akpm@linux-foundation.org: checkpatch fixes]
[akpm@linux-foundation.org: fix warnings]
[akpm@linux-foudnation.org: redo intrusive kvm changes]
Tested-by: Peter Senna Tschudin <peter.senna@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-28 01:06:00 +00:00
|
|
|
hlist_for_each_entry_safe(ri, tmp, head, hlist) {
|
2010-11-10 09:05:58 +00:00
|
|
|
if (ri->task != current)
|
|
|
|
/* another task is sharing our hash bucket */
|
|
|
|
continue;
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
orig_ret_address = (unsigned long) ri->ret_addr;
|
2010-11-10 09:05:58 +00:00
|
|
|
|
|
|
|
if (ri->rp && ri->rp->handler) {
|
|
|
|
ri->ret_addr = correct_ret_addr;
|
|
|
|
ri->rp->handler(ri, regs);
|
|
|
|
}
|
|
|
|
|
2006-10-02 09:17:35 +00:00
|
|
|
recycle_rp_inst(ri, &empty_rp);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
if (orig_ret_address != trampoline_address)
|
2006-09-20 13:58:39 +00:00
|
|
|
/*
|
|
|
|
* This is the real return address. Any other
|
|
|
|
* instances associated with this task are for
|
|
|
|
* other calls deeper on the call stack
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
2010-11-10 09:05:58 +00:00
|
|
|
|
2016-01-18 11:49:44 +00:00
|
|
|
regs->psw.addr = orig_ret_address;
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:20 +00:00
|
|
|
pop_kprobe(get_kprobe_ctlblk());
|
2008-07-25 08:46:04 +00:00
|
|
|
kretprobe_hash_unlock(current, &flags);
|
2006-09-20 13:58:39 +00:00
|
|
|
preempt_enable_no_resched();
|
|
|
|
|
hlist: drop the node parameter from iterators
I'm not sure why, but the hlist for each entry iterators were conceived
list_for_each_entry(pos, head, member)
The hlist ones were greedy and wanted an extra parameter:
hlist_for_each_entry(tpos, pos, head, member)
Why did they need an extra pos parameter? I'm not quite sure. Not only
they don't really need it, it also prevents the iterator from looking
exactly like the list iterator, which is unfortunate.
Besides the semantic patch, there was some manual work required:
- Fix up the actual hlist iterators in linux/list.h
- Fix up the declaration of other iterators based on the hlist ones.
- A very small amount of places were using the 'node' parameter, this
was modified to use 'obj->member' instead.
- Coccinelle didn't handle the hlist_for_each_entry_safe iterator
properly, so those had to be fixed up manually.
The semantic patch which is mostly the work of Peter Senna Tschudin is here:
@@
iterator name hlist_for_each_entry, hlist_for_each_entry_continue, hlist_for_each_entry_from, hlist_for_each_entry_rcu, hlist_for_each_entry_rcu_bh, hlist_for_each_entry_continue_rcu_bh, for_each_busy_worker, ax25_uid_for_each, ax25_for_each, inet_bind_bucket_for_each, sctp_for_each_hentry, sk_for_each, sk_for_each_rcu, sk_for_each_from, sk_for_each_safe, sk_for_each_bound, hlist_for_each_entry_safe, hlist_for_each_entry_continue_rcu, nr_neigh_for_each, nr_neigh_for_each_safe, nr_node_for_each, nr_node_for_each_safe, for_each_gfn_indirect_valid_sp, for_each_gfn_sp, for_each_host;
type T;
expression a,c,d,e;
identifier b;
statement S;
@@
-T b;
<+... when != b
(
hlist_for_each_entry(a,
- b,
c, d) S
|
hlist_for_each_entry_continue(a,
- b,
c) S
|
hlist_for_each_entry_from(a,
- b,
c) S
|
hlist_for_each_entry_rcu(a,
- b,
c, d) S
|
hlist_for_each_entry_rcu_bh(a,
- b,
c, d) S
|
hlist_for_each_entry_continue_rcu_bh(a,
- b,
c) S
|
for_each_busy_worker(a, c,
- b,
d) S
|
ax25_uid_for_each(a,
- b,
c) S
|
ax25_for_each(a,
- b,
c) S
|
inet_bind_bucket_for_each(a,
- b,
c) S
|
sctp_for_each_hentry(a,
- b,
c) S
|
sk_for_each(a,
- b,
c) S
|
sk_for_each_rcu(a,
- b,
c) S
|
sk_for_each_from
-(a, b)
+(a)
S
+ sk_for_each_from(a) S
|
sk_for_each_safe(a,
- b,
c, d) S
|
sk_for_each_bound(a,
- b,
c) S
|
hlist_for_each_entry_safe(a,
- b,
c, d, e) S
|
hlist_for_each_entry_continue_rcu(a,
- b,
c) S
|
nr_neigh_for_each(a,
- b,
c) S
|
nr_neigh_for_each_safe(a,
- b,
c, d) S
|
nr_node_for_each(a,
- b,
c) S
|
nr_node_for_each_safe(a,
- b,
c, d) S
|
- for_each_gfn_sp(a, c, d, b) S
+ for_each_gfn_sp(a, c, d) S
|
- for_each_gfn_indirect_valid_sp(a, c, d, b) S
+ for_each_gfn_indirect_valid_sp(a, c, d) S
|
for_each_host(a,
- b,
c) S
|
for_each_host_safe(a,
- b,
c, d) S
|
for_each_mesh_entry(a,
- b,
c, d) S
)
...+>
[akpm@linux-foundation.org: drop bogus change from net/ipv4/raw.c]
[akpm@linux-foundation.org: drop bogus hunk from net/ipv6/raw.c]
[akpm@linux-foundation.org: checkpatch fixes]
[akpm@linux-foundation.org: fix warnings]
[akpm@linux-foudnation.org: redo intrusive kvm changes]
Tested-by: Peter Senna Tschudin <peter.senna@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-02-28 01:06:00 +00:00
|
|
|
hlist_for_each_entry_safe(ri, tmp, &empty_rp, hlist) {
|
2006-10-02 09:17:35 +00:00
|
|
|
hlist_del(&ri->hlist);
|
|
|
|
kfree(ri);
|
|
|
|
}
|
2006-09-20 13:58:39 +00:00
|
|
|
/*
|
|
|
|
* By returning a non-zero value, we are telling
|
|
|
|
* kprobe_handler() that we don't want the post_handler
|
|
|
|
* to run (and have re-enabled preemption)
|
|
|
|
*/
|
|
|
|
return 1;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(trampoline_probe_handler);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Called after single-stepping. p->addr is the address of the
|
|
|
|
* instruction whose first byte has been replaced by the "breakpoint"
|
|
|
|
* instruction. To avoid the SMP problems that can occur when we
|
|
|
|
* temporarily put back the original opcode to single-step, we
|
|
|
|
* single-stepped a copy of the instruction. The address of this
|
|
|
|
* copy is p->ainsn.insn.
|
|
|
|
*/
|
2014-10-22 10:42:38 +00:00
|
|
|
static void resume_execution(struct kprobe *p, struct pt_regs *regs)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
|
|
|
struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
|
2016-01-18 12:12:19 +00:00
|
|
|
unsigned long ip = regs->psw.addr;
|
2014-09-22 14:37:27 +00:00
|
|
|
int fixup = probe_get_fixup_type(p->ainsn.insn);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-15 10:17:38 +00:00
|
|
|
/* Check if the kprobes location is an enabled ftrace caller */
|
|
|
|
if (p->ainsn.is_ftrace_insn) {
|
|
|
|
struct ftrace_insn *insn = (struct ftrace_insn *) p->addr;
|
|
|
|
struct ftrace_insn call_insn;
|
|
|
|
|
|
|
|
ftrace_generate_call_insn(&call_insn, (unsigned long) p->addr);
|
|
|
|
/*
|
|
|
|
* A kprobe on an enabled ftrace call site actually single
|
|
|
|
* stepped an unconditional branch (ftrace nop equivalent).
|
|
|
|
* Now we need to fixup things and pretend that a brasl r0,...
|
|
|
|
* was executed instead.
|
|
|
|
*/
|
|
|
|
if (insn->disp == KPROBE_ON_FTRACE_CALL) {
|
|
|
|
ip += call_insn.disp * 2 - MCOUNT_INSN_SIZE;
|
|
|
|
regs->gprs[0] = (unsigned long)p->addr + sizeof(*insn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-05 11:47:19 +00:00
|
|
|
if (fixup & FIXUP_PSW_NORMAL)
|
2011-01-05 11:47:17 +00:00
|
|
|
ip += (unsigned long) p->addr - (unsigned long) p->ainsn.insn;
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:19 +00:00
|
|
|
if (fixup & FIXUP_BRANCH_NOT_TAKEN) {
|
2013-09-13 11:59:26 +00:00
|
|
|
int ilen = insn_length(p->ainsn.insn[0] >> 8);
|
2011-01-05 11:47:19 +00:00
|
|
|
if (ip - (unsigned long) p->ainsn.insn == ilen)
|
|
|
|
ip = (unsigned long) p->addr + ilen;
|
|
|
|
}
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:19 +00:00
|
|
|
if (fixup & FIXUP_RETURN_REGISTER) {
|
|
|
|
int reg = (p->ainsn.insn[0] & 0xf0) >> 4;
|
|
|
|
regs->gprs[reg] += (unsigned long) p->addr -
|
|
|
|
(unsigned long) p->ainsn.insn;
|
|
|
|
}
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:17 +00:00
|
|
|
disable_singlestep(kcb, regs, ip);
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(resume_execution);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static int post_kprobe_handler(struct pt_regs *regs)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
|
|
|
struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
|
2011-01-05 11:47:24 +00:00
|
|
|
struct kprobe *p = kprobe_running();
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
if (!p)
|
2006-09-20 13:58:39 +00:00
|
|
|
return 0;
|
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
if (kcb->kprobe_status != KPROBE_REENTER && p->post_handler) {
|
2006-09-20 13:58:39 +00:00
|
|
|
kcb->kprobe_status = KPROBE_HIT_SSDONE;
|
2011-01-05 11:47:24 +00:00
|
|
|
p->post_handler(p, regs, 0);
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
resume_execution(p, regs);
|
2011-01-05 11:47:20 +00:00
|
|
|
pop_kprobe(kcb);
|
2006-09-20 13:58:39 +00:00
|
|
|
preempt_enable_no_resched();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if somebody else is singlestepping across a probe point, psw mask
|
|
|
|
* will have PER set, in which case, continue the remaining processing
|
|
|
|
* of do_single_step, as if this is not a probe hit.
|
|
|
|
*/
|
2011-01-05 11:47:24 +00:00
|
|
|
if (regs->psw.mask & PSW_MASK_PER)
|
2006-09-20 13:58:39 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(post_kprobe_handler);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
static int kprobe_trap_handler(struct pt_regs *regs, int trapnr)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
|
|
|
struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
|
2011-01-05 11:47:24 +00:00
|
|
|
struct kprobe *p = kprobe_running();
|
2006-09-20 13:58:39 +00:00
|
|
|
const struct exception_table_entry *entry;
|
|
|
|
|
|
|
|
switch(kcb->kprobe_status) {
|
|
|
|
case KPROBE_SWAP_INST:
|
|
|
|
/* We are here because the instruction replacement failed */
|
|
|
|
return 0;
|
|
|
|
case KPROBE_HIT_SS:
|
|
|
|
case KPROBE_REENTER:
|
|
|
|
/*
|
|
|
|
* We are here because the instruction being single
|
|
|
|
* stepped caused a page fault. We reset the current
|
|
|
|
* kprobe and the nip points back to the probe address
|
|
|
|
* and allow the page fault handler to continue as a
|
|
|
|
* normal page fault.
|
|
|
|
*/
|
2011-01-05 11:47:24 +00:00
|
|
|
disable_singlestep(kcb, regs, (unsigned long) p->addr);
|
2011-01-05 11:47:20 +00:00
|
|
|
pop_kprobe(kcb);
|
2006-09-20 13:58:39 +00:00
|
|
|
preempt_enable_no_resched();
|
|
|
|
break;
|
|
|
|
case KPROBE_HIT_ACTIVE:
|
|
|
|
case KPROBE_HIT_SSDONE:
|
|
|
|
/*
|
|
|
|
* We increment the nmissed count for accounting,
|
2013-09-20 03:55:41 +00:00
|
|
|
* we can also use npre/npostfault count for accounting
|
2006-09-20 13:58:39 +00:00
|
|
|
* these specific fault cases.
|
|
|
|
*/
|
2011-01-05 11:47:24 +00:00
|
|
|
kprobes_inc_nmissed_count(p);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We come here because instructions in the pre/post
|
|
|
|
* handler caused the page_fault, this could happen
|
|
|
|
* if handler tries to access user space by
|
|
|
|
* copy_from_user(), get_user() etc. Let the
|
|
|
|
* user-specified handler try to fix it first.
|
|
|
|
*/
|
2011-01-05 11:47:24 +00:00
|
|
|
if (p->fault_handler && p->fault_handler(p, regs, trapnr))
|
2006-09-20 13:58:39 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In case the user-specified fault handler returned
|
|
|
|
* zero, try to fix up.
|
|
|
|
*/
|
2016-01-18 12:12:19 +00:00
|
|
|
entry = search_exception_tables(regs->psw.addr);
|
2006-09-20 13:58:39 +00:00
|
|
|
if (entry) {
|
2016-01-18 11:49:44 +00:00
|
|
|
regs->psw.addr = extable_fixup(entry);
|
2006-09-20 13:58:39 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fixup_exception() could not handle it,
|
|
|
|
* Let do_page_fault() fix it.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(kprobe_trap_handler);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
int kprobe_fault_handler(struct pt_regs *regs, int trapnr)
|
2010-11-10 09:05:57 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
|
|
|
|
local_irq_disable();
|
|
|
|
ret = kprobe_trap_handler(regs, trapnr);
|
|
|
|
if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
|
|
|
|
local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
|
|
|
|
return ret;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(kprobe_fault_handler);
|
2010-11-10 09:05:57 +00:00
|
|
|
|
2006-09-20 13:58:39 +00:00
|
|
|
/*
|
|
|
|
* Wrapper routine to for handling exceptions.
|
|
|
|
*/
|
2014-10-22 10:42:38 +00:00
|
|
|
int kprobe_exceptions_notify(struct notifier_block *self,
|
|
|
|
unsigned long val, void *data)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
2011-01-05 11:47:24 +00:00
|
|
|
struct die_args *args = (struct die_args *) data;
|
2010-11-10 09:05:57 +00:00
|
|
|
struct pt_regs *regs = args->regs;
|
2006-09-20 13:58:39 +00:00
|
|
|
int ret = NOTIFY_DONE;
|
|
|
|
|
2010-11-10 09:05:57 +00:00
|
|
|
if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
|
|
|
|
local_irq_disable();
|
|
|
|
|
2006-09-20 13:58:39 +00:00
|
|
|
switch (val) {
|
|
|
|
case DIE_BPT:
|
2011-01-05 11:47:24 +00:00
|
|
|
if (kprobe_handler(regs))
|
2006-09-20 13:58:39 +00:00
|
|
|
ret = NOTIFY_STOP;
|
|
|
|
break;
|
|
|
|
case DIE_SSTEP:
|
2011-01-05 11:47:24 +00:00
|
|
|
if (post_kprobe_handler(regs))
|
2006-09-20 13:58:39 +00:00
|
|
|
ret = NOTIFY_STOP;
|
|
|
|
break;
|
|
|
|
case DIE_TRAP:
|
2010-11-10 09:05:57 +00:00
|
|
|
if (!preemptible() && kprobe_running() &&
|
2011-01-05 11:47:24 +00:00
|
|
|
kprobe_trap_handler(regs, args->trapnr))
|
2006-09-20 13:58:39 +00:00
|
|
|
ret = NOTIFY_STOP;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2010-11-10 09:05:57 +00:00
|
|
|
|
|
|
|
if (regs->psw.mask & (PSW_MASK_IO | PSW_MASK_EXT))
|
|
|
|
local_irq_restore(regs->psw.mask & ~PSW_MASK_PER);
|
|
|
|
|
2006-09-20 13:58:39 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(kprobe_exceptions_notify);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
int setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
|
|
|
struct jprobe *jp = container_of(p, struct jprobe, kp);
|
|
|
|
struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
|
2011-01-05 11:47:22 +00:00
|
|
|
unsigned long stack;
|
2006-09-20 13:58:39 +00:00
|
|
|
|
|
|
|
memcpy(&kcb->jprobe_saved_regs, regs, sizeof(struct pt_regs));
|
|
|
|
|
|
|
|
/* setup return addr to the jprobe handler routine */
|
2016-01-18 11:49:44 +00:00
|
|
|
regs->psw.addr = (unsigned long) jp->entry;
|
2010-11-10 09:05:57 +00:00
|
|
|
regs->psw.mask &= ~(PSW_MASK_IO | PSW_MASK_EXT);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
|
|
|
/* r15 is the stack pointer */
|
2011-01-05 11:47:22 +00:00
|
|
|
stack = (unsigned long) regs->gprs[15];
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:22 +00:00
|
|
|
memcpy(kcb->jprobes_stack, (void *) stack, MIN_STACK_SIZE(stack));
|
2016-07-31 12:52:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* jprobes use jprobe_return() which skips the normal return
|
|
|
|
* path of the function, and this messes up the accounting of the
|
|
|
|
* function graph tracer to get messed up.
|
|
|
|
*
|
|
|
|
* Pause function graph tracing while performing the jprobe function.
|
|
|
|
*/
|
|
|
|
pause_graph_tracing();
|
2006-09-20 13:58:39 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(setjmp_pre_handler);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
void jprobe_return(void)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
|
|
|
asm volatile(".word 0x0002");
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(jprobe_return);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
int longjmp_break_handler(struct kprobe *p, struct pt_regs *regs)
|
2006-09-20 13:58:39 +00:00
|
|
|
{
|
|
|
|
struct kprobe_ctlblk *kcb = get_kprobe_ctlblk();
|
2011-01-05 11:47:22 +00:00
|
|
|
unsigned long stack;
|
|
|
|
|
2016-07-31 12:52:53 +00:00
|
|
|
/* It's OK to start function graph tracing again */
|
|
|
|
unpause_graph_tracing();
|
|
|
|
|
2011-01-05 11:47:22 +00:00
|
|
|
stack = (unsigned long) kcb->jprobe_saved_regs.gprs[15];
|
2006-09-20 13:58:39 +00:00
|
|
|
|
|
|
|
/* Put the regs back */
|
|
|
|
memcpy(regs, &kcb->jprobe_saved_regs, sizeof(struct pt_regs));
|
|
|
|
/* put the stack back */
|
2011-01-05 11:47:22 +00:00
|
|
|
memcpy((void *) stack, kcb->jprobes_stack, MIN_STACK_SIZE(stack));
|
2006-09-20 13:58:39 +00:00
|
|
|
preempt_enable_no_resched();
|
|
|
|
return 1;
|
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(longjmp_break_handler);
|
2006-09-20 13:58:39 +00:00
|
|
|
|
2011-01-05 11:47:24 +00:00
|
|
|
static struct kprobe trampoline = {
|
|
|
|
.addr = (kprobe_opcode_t *) &kretprobe_trampoline,
|
2006-09-20 13:58:39 +00:00
|
|
|
.pre_handler = trampoline_probe_handler
|
|
|
|
};
|
|
|
|
|
|
|
|
int __init arch_init_kprobes(void)
|
|
|
|
{
|
2011-01-05 11:47:24 +00:00
|
|
|
return register_kprobe(&trampoline);
|
2006-09-20 13:58:39 +00:00
|
|
|
}
|
2007-05-08 07:34:16 +00:00
|
|
|
|
2014-10-22 10:42:38 +00:00
|
|
|
int arch_trampoline_kprobe(struct kprobe *p)
|
2007-05-08 07:34:16 +00:00
|
|
|
{
|
2011-01-05 11:47:24 +00:00
|
|
|
return p->addr == (kprobe_opcode_t *) &kretprobe_trampoline;
|
2007-05-08 07:34:16 +00:00
|
|
|
}
|
2014-10-22 10:42:38 +00:00
|
|
|
NOKPROBE_SYMBOL(arch_trampoline_kprobe);
|