|
@@ -92,6 +92,15 @@ struct uprobe_task {
|
|
|
unsigned int depth;
|
|
|
};
|
|
|
|
|
|
+struct return_instance {
|
|
|
+ struct uprobe *uprobe;
|
|
|
+ unsigned long func;
|
|
|
+ unsigned long orig_ret_vaddr; /* original return address */
|
|
|
+ bool chained; /* true, if instance is nested */
|
|
|
+
|
|
|
+ struct return_instance *next; /* keep as stack */
|
|
|
+};
|
|
|
+
|
|
|
struct xol_area;
|
|
|
|
|
|
struct uprobes_state {
|
|
@@ -128,6 +137,7 @@ extern bool arch_uprobe_xol_was_trapped(struct task_struct *tsk);
|
|
|
extern int arch_uprobe_exception_notify(struct notifier_block *self, unsigned long val, void *data);
|
|
|
extern void arch_uprobe_abort_xol(struct arch_uprobe *aup, struct pt_regs *regs);
|
|
|
extern unsigned long arch_uretprobe_hijack_return_addr(unsigned long trampoline_vaddr, struct pt_regs *regs);
|
|
|
+extern bool arch_uretprobe_is_alive(struct return_instance *ret, struct pt_regs *regs);
|
|
|
extern bool arch_uprobe_ignore(struct arch_uprobe *aup, struct pt_regs *regs);
|
|
|
extern void arch_uprobe_copy_ixol(struct page *page, unsigned long vaddr,
|
|
|
void *src, unsigned long len);
|