kprobes.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. #ifndef _ASM_KPROBES_H
  3. #define _ASM_KPROBES_H
  4. /*
  5. * Kernel Probes (KProbes)
  6. *
  7. * Copyright (C) IBM Corporation, 2002, 2004
  8. * Copyright (C) Intel Corporation, 2005
  9. *
  10. * 2005-Apr Rusty Lynch <[email protected]> and Anil S Keshavamurthy
  11. * <[email protected]> adapted from i386
  12. */
  13. #include <asm-generic/kprobes.h>
  14. #include <asm/break.h>
  15. #define BREAK_INST (long)(__IA64_BREAK_KPROBE << 6)
  16. #ifdef CONFIG_KPROBES
  17. #include <linux/types.h>
  18. #include <linux/ptrace.h>
  19. #include <linux/percpu.h>
  20. #define __ARCH_WANT_KPROBES_INSN_SLOT
  21. #define MAX_INSN_SIZE 2 /* last half is for kprobe-booster */
  22. #define NOP_M_INST (long)(1<<27)
  23. #define BRL_INST(i1, i2) ((long)((0xcL << 37) | /* brl */ \
  24. (0x1L << 12) | /* many */ \
  25. (((i1) & 1) << 36) | ((i2) << 13))) /* imm */
  26. typedef union cmp_inst {
  27. struct {
  28. unsigned long long qp : 6;
  29. unsigned long long p1 : 6;
  30. unsigned long long c : 1;
  31. unsigned long long r2 : 7;
  32. unsigned long long r3 : 7;
  33. unsigned long long p2 : 6;
  34. unsigned long long ta : 1;
  35. unsigned long long x2 : 2;
  36. unsigned long long tb : 1;
  37. unsigned long long opcode : 4;
  38. unsigned long long reserved : 23;
  39. }f;
  40. unsigned long long l;
  41. } cmp_inst_t;
  42. struct kprobe;
  43. typedef struct _bundle {
  44. struct {
  45. unsigned long long template : 5;
  46. unsigned long long slot0 : 41;
  47. unsigned long long slot1_p0 : 64-46;
  48. } quad0;
  49. struct {
  50. unsigned long long slot1_p1 : 41 - (64-46);
  51. unsigned long long slot2 : 41;
  52. } quad1;
  53. } __attribute__((__aligned__(16))) bundle_t;
  54. struct prev_kprobe {
  55. struct kprobe *kp;
  56. unsigned long status;
  57. };
  58. #define MAX_PARAM_RSE_SIZE (0x60+0x60/0x3f)
  59. /* per-cpu kprobe control block */
  60. #define ARCH_PREV_KPROBE_SZ 2
  61. struct kprobe_ctlblk {
  62. unsigned long kprobe_status;
  63. unsigned long *bsp;
  64. unsigned long cfm;
  65. atomic_t prev_kprobe_index;
  66. struct prev_kprobe prev_kprobe[ARCH_PREV_KPROBE_SZ];
  67. };
  68. #define kretprobe_blacklist_size 0
  69. #define SLOT0_OPCODE_SHIFT (37)
  70. #define SLOT1_p1_OPCODE_SHIFT (37 - (64-46))
  71. #define SLOT2_OPCODE_SHIFT (37)
  72. #define INDIRECT_CALL_OPCODE (1)
  73. #define IP_RELATIVE_CALL_OPCODE (5)
  74. #define IP_RELATIVE_BRANCH_OPCODE (4)
  75. #define IP_RELATIVE_PREDICT_OPCODE (7)
  76. #define LONG_BRANCH_OPCODE (0xC)
  77. #define LONG_CALL_OPCODE (0xD)
  78. #define flush_insn_slot(p) do { } while (0)
  79. typedef struct kprobe_opcode {
  80. bundle_t bundle;
  81. } kprobe_opcode_t;
  82. /* Architecture specific copy of original instruction*/
  83. struct arch_specific_insn {
  84. /* copy of the instruction to be emulated */
  85. kprobe_opcode_t *insn;
  86. #define INST_FLAG_FIX_RELATIVE_IP_ADDR 1
  87. #define INST_FLAG_FIX_BRANCH_REG 2
  88. #define INST_FLAG_BREAK_INST 4
  89. #define INST_FLAG_BOOSTABLE 8
  90. unsigned long inst_flag;
  91. unsigned short target_br_reg;
  92. unsigned short slot;
  93. };
  94. extern int kprobe_fault_handler(struct pt_regs *regs, int trapnr);
  95. extern int kprobe_exceptions_notify(struct notifier_block *self,
  96. unsigned long val, void *data);
  97. extern void invalidate_stacked_regs(void);
  98. extern void flush_register_stack(void);
  99. extern void arch_remove_kprobe(struct kprobe *p);
  100. #endif /* CONFIG_KPROBES */
  101. #endif /* _ASM_KPROBES_H */