2011-04-20 09:52:38 +00:00
|
|
|
/*
|
|
|
|
* arch/arm/kernel/kprobes.h
|
|
|
|
*
|
2011-04-26 14:15:56 +00:00
|
|
|
* Copyright (C) 2011 Jon Medhurst <tixy@yxit.co.uk>.
|
|
|
|
*
|
|
|
|
* Some contents moved here from arch/arm/include/asm/kprobes.h which is
|
2011-04-20 09:52:38 +00:00
|
|
|
* Copyright (C) 2006, 2007 Motorola Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ARM_KERNEL_KPROBES_H
|
|
|
|
#define _ARM_KERNEL_KPROBES_H
|
|
|
|
|
2015-01-09 02:19:49 +00:00
|
|
|
#include <asm/kprobes.h>
|
|
|
|
#include "../decode.h"
|
2014-03-06 23:12:07 +00:00
|
|
|
|
2011-04-20 09:52:38 +00:00
|
|
|
/*
|
2011-04-19 16:18:35 +00:00
|
|
|
* These undefined instructions must be unique and
|
2011-04-20 09:52:38 +00:00
|
|
|
* reserved solely for kprobes' use.
|
|
|
|
*/
|
2011-06-16 16:22:37 +00:00
|
|
|
#define KPROBE_ARM_BREAKPOINT_INSTRUCTION 0x07f001f8
|
2011-04-19 16:18:35 +00:00
|
|
|
#define KPROBE_THUMB16_BREAKPOINT_INSTRUCTION 0xde18
|
|
|
|
#define KPROBE_THUMB32_BREAKPOINT_INSTRUCTION 0xf7f0a018
|
|
|
|
|
2015-01-09 06:37:36 +00:00
|
|
|
extern void kprobes_remove_breakpoint(void *addr, unsigned int insn);
|
|
|
|
|
2014-03-06 23:12:07 +00:00
|
|
|
enum probes_insn __kprobes
|
2014-03-06 02:41:29 +00:00
|
|
|
kprobe_decode_ldmstm(kprobe_opcode_t insn, struct arch_probes_insn *asi,
|
2014-03-06 23:12:07 +00:00
|
|
|
const struct decode_header *h);
|
2011-04-20 09:52:38 +00:00
|
|
|
|
2014-03-06 02:23:42 +00:00
|
|
|
typedef enum probes_insn (kprobe_decode_insn_t)(probes_opcode_t,
|
2014-03-06 02:41:29 +00:00
|
|
|
struct arch_probes_insn *,
|
2014-03-06 02:40:12 +00:00
|
|
|
bool,
|
2015-01-05 11:29:18 +00:00
|
|
|
const union decode_action *,
|
|
|
|
const struct decode_checker *[*]);
|
2011-04-19 16:56:58 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_THUMB2_KERNEL
|
|
|
|
|
2014-03-06 23:12:07 +00:00
|
|
|
extern const union decode_action kprobes_t32_actions[];
|
|
|
|
extern const union decode_action kprobes_t16_actions[];
|
2015-01-05 11:29:18 +00:00
|
|
|
extern const struct decode_checker *kprobes_t32_checkers[];
|
|
|
|
extern const struct decode_checker *kprobes_t16_checkers[];
|
2011-04-19 16:56:58 +00:00
|
|
|
#else /* !CONFIG_THUMB2_KERNEL */
|
|
|
|
|
2014-03-06 23:12:07 +00:00
|
|
|
extern const union decode_action kprobes_arm_actions[];
|
2015-01-05 11:29:18 +00:00
|
|
|
extern const struct decode_checker *kprobes_arm_checkers[];
|
2014-03-06 23:06:43 +00:00
|
|
|
|
2011-04-19 16:56:58 +00:00
|
|
|
#endif
|
2011-04-20 09:52:38 +00:00
|
|
|
|
|
|
|
#endif /* _ARM_KERNEL_KPROBES_H */
|