aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Arapov <anton@redhat.com>2013-04-03 12:00:31 -0400
committerOleg Nesterov <oleg@redhat.com>2013-04-13 09:31:53 -0400
commitea024870cf10687b3fded66a9deb6253888f30b7 (patch)
tree6071017ca5e987d991b42ceae519d92476ed3b36
parent3f47107c5c2972ca47f216889080f6ef818b25e3 (diff)
uretprobes: Introduce uprobe_consumer->ret_handler()
Enclose return probes implementation, introduce ->ret_handler() and update existing code to rely on ->handler() *and* ->ret_handler() for uprobe and uretprobe respectively. Signed-off-by: Anton Arapov <anton@redhat.com> Acked-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com> Signed-off-by: Oleg Nesterov <oleg@redhat.com>
-rw-r--r--include/linux/uprobes.h3
-rw-r--r--kernel/events/uprobes.c17
2 files changed, 17 insertions, 3 deletions
diff --git a/include/linux/uprobes.h b/include/linux/uprobes.h
index 19612881399a..5c8d3290df41 100644
--- a/include/linux/uprobes.h
+++ b/include/linux/uprobes.h
@@ -46,6 +46,9 @@ enum uprobe_filter_ctx {
46 46
47struct uprobe_consumer { 47struct uprobe_consumer {
48 int (*handler)(struct uprobe_consumer *self, struct pt_regs *regs); 48 int (*handler)(struct uprobe_consumer *self, struct pt_regs *regs);
49 int (*ret_handler)(struct uprobe_consumer *self,
50 unsigned long func,
51 struct pt_regs *regs);
49 bool (*filter)(struct uprobe_consumer *self, 52 bool (*filter)(struct uprobe_consumer *self,
50 enum uprobe_filter_ctx ctx, 53 enum uprobe_filter_ctx ctx,
51 struct mm_struct *mm); 54 struct mm_struct *mm);
diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c
index 7312503caf2e..eb384e90ac92 100644
--- a/kernel/events/uprobes.c
+++ b/kernel/events/uprobes.c
@@ -838,6 +838,14 @@ int uprobe_register(struct inode *inode, loff_t offset, struct uprobe_consumer *
838 struct uprobe *uprobe; 838 struct uprobe *uprobe;
839 int ret; 839 int ret;
840 840
841 /* Uprobe must have at least one set consumer */
842 if (!uc->handler && !uc->ret_handler)
843 return -EINVAL;
844
845 /* TODO: Implement return probes */
846 if (uc->ret_handler)
847 return -ENOSYS;
848
841 /* Racy, just to catch the obvious mistakes */ 849 /* Racy, just to catch the obvious mistakes */
842 if (offset > i_size_read(inode)) 850 if (offset > i_size_read(inode))
843 return -EINVAL; 851 return -EINVAL;
@@ -1497,10 +1505,13 @@ static void handler_chain(struct uprobe *uprobe, struct pt_regs *regs)
1497 1505
1498 down_read(&uprobe->register_rwsem); 1506 down_read(&uprobe->register_rwsem);
1499 for (uc = uprobe->consumers; uc; uc = uc->next) { 1507 for (uc = uprobe->consumers; uc; uc = uc->next) {
1500 int rc = uc->handler(uc, regs); 1508 int rc = 0;
1501 1509
1502 WARN(rc & ~UPROBE_HANDLER_MASK, 1510 if (uc->handler) {
1503 "bad rc=0x%x from %pf()\n", rc, uc->handler); 1511 rc = uc->handler(uc, regs);
1512 WARN(rc & ~UPROBE_HANDLER_MASK,
1513 "bad rc=0x%x from %pf()\n", rc, uc->handler);
1514 }
1504 remove &= rc; 1515 remove &= rc;
1505 } 1516 }
1506 1517