kprobes.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 <vamsi_krishna@in.ibm.com> Kernel
  10. * Probes initial implementation ( includes suggestions from
  11. * Rusty Russell).
  12. * 2004-Nov Modified for PPC64 by Ananth N Mavinakayanahalli
  13. * <ananth@in.ibm.com>
  14. * 2005-Dec Used as a template for s390 by Mike Grundy
  15. * <grundym@us.ibm.com>
  16. */
  17. #include <linux/types.h>
  18. #include <asm/ctlreg.h>
  19. #include <asm-generic/kprobes.h>
  20. #define BREAKPOINT_INSTRUCTION 0x0002
  21. #define FIXUP_PSW_NORMAL 0x08
  22. #define FIXUP_BRANCH_NOT_TAKEN 0x04
  23. #define FIXUP_RETURN_REGISTER 0x02
  24. #define FIXUP_NOT_REQUIRED 0x01
  25. int probe_is_prohibited_opcode(u16 *insn);
  26. int probe_get_fixup_type(u16 *insn);
  27. int probe_is_insn_relative_long(u16 *insn);
  28. #ifdef CONFIG_KPROBES
  29. #include <linux/ptrace.h>
  30. #include <linux/percpu.h>
  31. #include <linux/sched/task_stack.h>
  32. #define __ARCH_WANT_KPROBES_INSN_SLOT
  33. struct pt_regs;
  34. struct kprobe;
  35. typedef u16 kprobe_opcode_t;
  36. /* Maximum instruction size is 3 (16bit) halfwords: */
  37. #define MAX_INSN_SIZE 0x0003
  38. #define MAX_STACK_SIZE 64
  39. #define MIN_STACK_SIZE(ADDR) (((MAX_STACK_SIZE) < \
  40. (((unsigned long)task_stack_page(current)) + THREAD_SIZE - (ADDR))) \
  41. ? (MAX_STACK_SIZE) \
  42. : (((unsigned long)task_stack_page(current)) + THREAD_SIZE - (ADDR)))
  43. #define kretprobe_blacklist_size 0
  44. /* Architecture specific copy of original instruction */
  45. struct arch_specific_insn {
  46. /* copy of original instruction */
  47. kprobe_opcode_t *insn;
  48. };
  49. struct prev_kprobe {
  50. struct kprobe *kp;
  51. unsigned long status;
  52. };
  53. /* per-cpu kprobe control block */
  54. struct kprobe_ctlblk {
  55. unsigned long kprobe_status;
  56. unsigned long kprobe_saved_imask;
  57. struct ctlreg kprobe_saved_ctl[3];
  58. struct prev_kprobe prev_kprobe;
  59. };
  60. void arch_remove_kprobe(struct kprobe *p);
  61. int kprobe_fault_handler(struct pt_regs *regs, int trapnr);
  62. #define flush_insn_slot(p) do { } while (0)
  63. #endif /* CONFIG_KPROBES */
  64. #endif /* _ASM_S390_KPROBES_H */