kprobes.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. #ifndef _ASM_S390_KPROBES_H
  3. #define _ASM_S390_KPROBES_H
  4. /*
  5. * Kernel Probes (KProbes)
  6. *
  7. * Copyright IBM Corp. 2002, 2006
  8. *
  9. * 2002-Oct Created by Vamsi Krishna S <[email protected]> Kernel
  10. * Probes initial implementation ( includes suggestions from
  11. * Rusty Russell).
  12. * 2004-Nov Modified for PPC64 by Ananth N Mavinakayanahalli
  13. * <[email protected]>
  14. * 2005-Dec Used as a template for s390 by Mike Grundy
  15. * <[email protected]>
  16. */
  17. #include <linux/types.h>
  18. #include <asm-generic/kprobes.h>
  19. #define BREAKPOINT_INSTRUCTION 0x0002
  20. #define FIXUP_PSW_NORMAL 0x08
  21. #define FIXUP_BRANCH_NOT_TAKEN 0x04
  22. #define FIXUP_RETURN_REGISTER 0x02
  23. #define FIXUP_NOT_REQUIRED 0x01
  24. int probe_is_prohibited_opcode(u16 *insn);
  25. int probe_get_fixup_type(u16 *insn);
  26. int probe_is_insn_relative_long(u16 *insn);
  27. #ifdef CONFIG_KPROBES
  28. #include <linux/ptrace.h>
  29. #include <linux/percpu.h>
  30. #include <linux/sched/task_stack.h>
  31. #define __ARCH_WANT_KPROBES_INSN_SLOT
  32. struct pt_regs;
  33. struct kprobe;
  34. typedef u16 kprobe_opcode_t;
  35. /* Maximum instruction size is 3 (16bit) halfwords: */
  36. #define MAX_INSN_SIZE 0x0003
  37. #define MAX_STACK_SIZE 64
  38. #define MIN_STACK_SIZE(ADDR) (((MAX_STACK_SIZE) < \
  39. (((unsigned long)task_stack_page(current)) + THREAD_SIZE - (ADDR))) \
  40. ? (MAX_STACK_SIZE) \
  41. : (((unsigned long)task_stack_page(current)) + THREAD_SIZE - (ADDR)))
  42. #define kretprobe_blacklist_size 0
  43. /* Architecture specific copy of original instruction */
  44. struct arch_specific_insn {
  45. /* copy of original instruction */
  46. kprobe_opcode_t *insn;
  47. };
  48. struct prev_kprobe {
  49. struct kprobe *kp;
  50. unsigned long status;
  51. };
  52. /* per-cpu kprobe control block */
  53. struct kprobe_ctlblk {
  54. unsigned long kprobe_status;
  55. unsigned long kprobe_saved_imask;
  56. unsigned long kprobe_saved_ctl[3];
  57. struct prev_kprobe prev_kprobe;
  58. };
  59. void arch_remove_kprobe(struct kprobe *p);
  60. void __kretprobe_trampoline(void);
  61. void trampoline_probe_handler(struct pt_regs *regs);
  62. int kprobe_fault_handler(struct pt_regs *regs, int trapnr);
  63. int kprobe_exceptions_notify(struct notifier_block *self,
  64. unsigned long val, void *data);
  65. #define flush_insn_slot(p) do { } while (0)
  66. #endif /* CONFIG_KPROBES */
  67. #endif /* _ASM_S390_KPROBES_H */