Linux Audio

Check our new training course

Loading...
v6.13.7
  1/* SPDX-License-Identifier: GPL-2.0 */
  2#ifndef __X86_KERNEL_KPROBES_COMMON_H
  3#define __X86_KERNEL_KPROBES_COMMON_H
  4
  5/* Kprobes and Optprobes common header */
  6
  7#include <asm/asm.h>
  8#include <asm/frame.h>
  9#include <asm/insn.h>
 10
 11#ifdef CONFIG_X86_64
 12
 13#define SAVE_REGS_STRING			\
 14	/* Skip cs, ip, orig_ax. */		\
 15	"	subq $24, %rsp\n"		\
 16	"	pushq %rdi\n"			\
 17	"	pushq %rsi\n"			\
 18	"	pushq %rdx\n"			\
 19	"	pushq %rcx\n"			\
 20	"	pushq %rax\n"			\
 21	"	pushq %r8\n"			\
 22	"	pushq %r9\n"			\
 23	"	pushq %r10\n"			\
 24	"	pushq %r11\n"			\
 25	"	pushq %rbx\n"			\
 26	"	pushq %rbp\n"			\
 27	"	pushq %r12\n"			\
 28	"	pushq %r13\n"			\
 29	"	pushq %r14\n"			\
 30	"	pushq %r15\n"			\
 31	ENCODE_FRAME_POINTER
 32
 33#define RESTORE_REGS_STRING			\
 34	"	popq %r15\n"			\
 35	"	popq %r14\n"			\
 36	"	popq %r13\n"			\
 37	"	popq %r12\n"			\
 38	"	popq %rbp\n"			\
 39	"	popq %rbx\n"			\
 40	"	popq %r11\n"			\
 41	"	popq %r10\n"			\
 42	"	popq %r9\n"			\
 43	"	popq %r8\n"			\
 44	"	popq %rax\n"			\
 45	"	popq %rcx\n"			\
 46	"	popq %rdx\n"			\
 47	"	popq %rsi\n"			\
 48	"	popq %rdi\n"			\
 49	/* Skip orig_ax, ip, cs */		\
 50	"	addq $24, %rsp\n"
 51#else
 52
 53#define SAVE_REGS_STRING			\
 54	/* Skip cs, ip, orig_ax and gs. */	\
 55	"	subl $4*4, %esp\n"		\
 56	"	pushl %fs\n"			\
 57	"	pushl %es\n"			\
 58	"	pushl %ds\n"			\
 59	"	pushl %eax\n"			\
 60	"	pushl %ebp\n"			\
 61	"	pushl %edi\n"			\
 62	"	pushl %esi\n"			\
 63	"	pushl %edx\n"			\
 64	"	pushl %ecx\n"			\
 65	"	pushl %ebx\n"			\
 66	ENCODE_FRAME_POINTER
 67
 68#define RESTORE_REGS_STRING			\
 69	"	popl %ebx\n"			\
 70	"	popl %ecx\n"			\
 71	"	popl %edx\n"			\
 72	"	popl %esi\n"			\
 73	"	popl %edi\n"			\
 74	"	popl %ebp\n"			\
 75	"	popl %eax\n"			\
 76	/* Skip ds, es, fs, gs, orig_ax, ip, and cs. */\
 77	"	addl $7*4, %esp\n"
 78#endif
 79
 80/* Ensure if the instruction can be boostable */
 81extern bool can_boost(struct insn *insn, void *orig_addr);
 82/* Recover instruction if given address is probed */
 83extern unsigned long recover_probed_instruction(kprobe_opcode_t *buf,
 84					 unsigned long addr);
 85/*
 86 * Copy an instruction and adjust the displacement if the instruction
 87 * uses the %rip-relative addressing mode.
 88 */
 89extern int __copy_instruction(u8 *dest, u8 *src, u8 *real, struct insn *insn);
 90
 91/* Generate a relative-jump/call instruction */
 92extern void synthesize_reljump(void *dest, void *from, void *to);
 93extern void synthesize_relcall(void *dest, void *from, void *to);
 94
 95#ifdef	CONFIG_OPTPROBES
 96extern int setup_detour_execution(struct kprobe *p, struct pt_regs *regs, int reenter);
 97extern unsigned long __recover_optprobed_insn(kprobe_opcode_t *buf, unsigned long addr);
 98#else	/* !CONFIG_OPTPROBES */
 99static inline int setup_detour_execution(struct kprobe *p, struct pt_regs *regs, int reenter)
100{
101	return 0;
102}
103static inline unsigned long __recover_optprobed_insn(kprobe_opcode_t *buf, unsigned long addr)
104{
105	return addr;
106}
107#endif
108
 
 
 
 
 
 
 
 
 
 
109#endif
v3.15
 
  1#ifndef __X86_KERNEL_KPROBES_COMMON_H
  2#define __X86_KERNEL_KPROBES_COMMON_H
  3
  4/* Kprobes and Optprobes common header */
  5
 
 
 
 
  6#ifdef CONFIG_X86_64
 
  7#define SAVE_REGS_STRING			\
  8	/* Skip cs, ip, orig_ax. */		\
  9	"	subq $24, %rsp\n"		\
 10	"	pushq %rdi\n"			\
 11	"	pushq %rsi\n"			\
 12	"	pushq %rdx\n"			\
 13	"	pushq %rcx\n"			\
 14	"	pushq %rax\n"			\
 15	"	pushq %r8\n"			\
 16	"	pushq %r9\n"			\
 17	"	pushq %r10\n"			\
 18	"	pushq %r11\n"			\
 19	"	pushq %rbx\n"			\
 20	"	pushq %rbp\n"			\
 21	"	pushq %r12\n"			\
 22	"	pushq %r13\n"			\
 23	"	pushq %r14\n"			\
 24	"	pushq %r15\n"
 
 
 25#define RESTORE_REGS_STRING			\
 26	"	popq %r15\n"			\
 27	"	popq %r14\n"			\
 28	"	popq %r13\n"			\
 29	"	popq %r12\n"			\
 30	"	popq %rbp\n"			\
 31	"	popq %rbx\n"			\
 32	"	popq %r11\n"			\
 33	"	popq %r10\n"			\
 34	"	popq %r9\n"			\
 35	"	popq %r8\n"			\
 36	"	popq %rax\n"			\
 37	"	popq %rcx\n"			\
 38	"	popq %rdx\n"			\
 39	"	popq %rsi\n"			\
 40	"	popq %rdi\n"			\
 41	/* Skip orig_ax, ip, cs */		\
 42	"	addq $24, %rsp\n"
 43#else
 
 44#define SAVE_REGS_STRING			\
 45	/* Skip cs, ip, orig_ax and gs. */	\
 46	"	subl $16, %esp\n"		\
 47	"	pushl %fs\n"			\
 48	"	pushl %es\n"			\
 49	"	pushl %ds\n"			\
 50	"	pushl %eax\n"			\
 51	"	pushl %ebp\n"			\
 52	"	pushl %edi\n"			\
 53	"	pushl %esi\n"			\
 54	"	pushl %edx\n"			\
 55	"	pushl %ecx\n"			\
 56	"	pushl %ebx\n"
 
 
 57#define RESTORE_REGS_STRING			\
 58	"	popl %ebx\n"			\
 59	"	popl %ecx\n"			\
 60	"	popl %edx\n"			\
 61	"	popl %esi\n"			\
 62	"	popl %edi\n"			\
 63	"	popl %ebp\n"			\
 64	"	popl %eax\n"			\
 65	/* Skip ds, es, fs, gs, orig_ax, and ip. Note: don't pop cs here*/\
 66	"	addl $24, %esp\n"
 67#endif
 68
 69/* Ensure if the instruction can be boostable */
 70extern int can_boost(kprobe_opcode_t *instruction);
 71/* Recover instruction if given address is probed */
 72extern unsigned long recover_probed_instruction(kprobe_opcode_t *buf,
 73					 unsigned long addr);
 74/*
 75 * Copy an instruction and adjust the displacement if the instruction
 76 * uses the %rip-relative addressing mode.
 77 */
 78extern int __copy_instruction(u8 *dest, u8 *src);
 79
 80/* Generate a relative-jump/call instruction */
 81extern void synthesize_reljump(void *from, void *to);
 82extern void synthesize_relcall(void *from, void *to);
 83
 84#ifdef	CONFIG_OPTPROBES
 85extern int setup_detour_execution(struct kprobe *p, struct pt_regs *regs, int reenter);
 86extern unsigned long __recover_optprobed_insn(kprobe_opcode_t *buf, unsigned long addr);
 87#else	/* !CONFIG_OPTPROBES */
 88static inline int setup_detour_execution(struct kprobe *p, struct pt_regs *regs, int reenter)
 89{
 90	return 0;
 91}
 92static inline unsigned long __recover_optprobed_insn(kprobe_opcode_t *buf, unsigned long addr)
 93{
 94	return addr;
 95}
 96#endif
 97
 98#ifdef CONFIG_KPROBES_ON_FTRACE
 99extern int skip_singlestep(struct kprobe *p, struct pt_regs *regs,
100			   struct kprobe_ctlblk *kcb);
101#else
102static inline int skip_singlestep(struct kprobe *p, struct pt_regs *regs,
103				  struct kprobe_ctlblk *kcb)
104{
105	return 0;
106}
107#endif
108#endif