uprobes.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef _ASM_UPROBES_H
  2. #define _ASM_UPROBES_H
  3. /*
  4. * User-space Probes (UProbes) for sparc
  5. *
  6. * Copyright (C) 2013 Oracle, Inc.
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. * Authors:
  22. * Jose E. Marchesi <jose.marchesi@oracle.com>
  23. * Eric Saint Etienne <eric.saint.etienne@oracle.com>
  24. */
  25. typedef u32 uprobe_opcode_t;
  26. #define MAX_UINSN_BYTES 4
  27. #define UPROBE_XOL_SLOT_BYTES (MAX_UINSN_BYTES * 2)
  28. #define UPROBE_SWBP_INSN_SIZE 4
  29. #define UPROBE_SWBP_INSN 0x91d02073 /* ta 0x73 */
  30. #define UPROBE_STP_INSN 0x91d02074 /* ta 0x74 */
  31. #define ANNUL_BIT (1 << 29)
  32. struct arch_uprobe {
  33. union {
  34. u8 insn[MAX_UINSN_BYTES];
  35. u32 ixol;
  36. };
  37. };
  38. struct arch_uprobe_task {
  39. u64 saved_tpc;
  40. u64 saved_tnpc;
  41. };
  42. struct task_struct;
  43. struct notifier_block;
  44. extern int arch_uprobe_analyze_insn(struct arch_uprobe *aup, struct mm_struct *mm, unsigned long addr);
  45. extern int arch_uprobe_pre_xol(struct arch_uprobe *aup, struct pt_regs *regs);
  46. extern int arch_uprobe_post_xol(struct arch_uprobe *aup, struct pt_regs *regs);
  47. extern bool arch_uprobe_xol_was_trapped(struct task_struct *tsk);
  48. extern int arch_uprobe_exception_notify(struct notifier_block *self, unsigned long val, void *data);
  49. extern void arch_uprobe_abort_xol(struct arch_uprobe *aup, struct pt_regs *regs);
  50. #endif /* _ASM_UPROBES_H */