diff options
Diffstat (limited to 'arch/x86/include/asm/text-patching.h')
| -rw-r--r-- | arch/x86/include/asm/text-patching.h | 24 | 
1 files changed, 18 insertions, 6 deletions
diff --git a/arch/x86/include/asm/text-patching.h b/arch/x86/include/asm/text-patching.h index 5e8319bb207a..23c626a742e8 100644 --- a/arch/x86/include/asm/text-patching.h +++ b/arch/x86/include/asm/text-patching.h @@ -26,10 +26,11 @@ static inline void apply_paravirt(struct paravirt_patch_site *start,  #define POKE_MAX_OPCODE_SIZE	5  struct text_poke_loc { -	void *detour;  	void *addr; -	size_t len; -	const char opcode[POKE_MAX_OPCODE_SIZE]; +	int len; +	s32 rel32; +	u8 opcode; +	const u8 text[POKE_MAX_OPCODE_SIZE];  };  extern void text_poke_early(void *addr, const void *opcode, size_t len); @@ -51,8 +52,10 @@ extern void text_poke_early(void *addr, const void *opcode, size_t len);  extern void *text_poke(void *addr, const void *opcode, size_t len);  extern void *text_poke_kgdb(void *addr, const void *opcode, size_t len);  extern int poke_int3_handler(struct pt_regs *regs); -extern void text_poke_bp(void *addr, const void *opcode, size_t len, void *handler); +extern void text_poke_bp(void *addr, const void *opcode, size_t len, const void *emulate);  extern void text_poke_bp_batch(struct text_poke_loc *tp, unsigned int nr_entries); +extern void text_poke_loc_init(struct text_poke_loc *tp, void *addr, +			       const void *opcode, size_t len, const void *emulate);  extern int after_bootmem;  extern __ro_after_init struct mm_struct *poking_mm;  extern __ro_after_init unsigned long poking_addr; @@ -63,8 +66,17 @@ static inline void int3_emulate_jmp(struct pt_regs *regs, unsigned long ip)  	regs->ip = ip;  } -#define INT3_INSN_SIZE 1 -#define CALL_INSN_SIZE 5 +#define INT3_INSN_SIZE		1 +#define INT3_INSN_OPCODE	0xCC + +#define CALL_INSN_SIZE		5 +#define CALL_INSN_OPCODE	0xE8 + +#define JMP32_INSN_SIZE		5 +#define JMP32_INSN_OPCODE	0xE9 + +#define JMP8_INSN_SIZE		2 +#define JMP8_INSN_OPCODE	0xEB  static inline void int3_emulate_push(struct pt_regs *regs, unsigned long val)  {  |