aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/events/uprobes.c
diff options
context:
space:
mode:
authorOleg Nesterov <oleg@redhat.com>2012-11-22 12:30:15 -0500
committerOleg Nesterov <oleg@redhat.com>2013-02-08 11:47:02 -0500
commit63633cbf82840d972248f11d2122b261d0d4779a (patch)
treee596a5f686ed4ac79ab95455622648bc0321a406 /kernel/events/uprobes.c
parentfe20d71f25400cccc8bffef865f79250be7dbc81 (diff)
uprobes: Introduce filter_chain()
Add the new helper filter_chain(). Currently it is only placeholder, the comment explains what is should do. We will change it later to consult every consumer to decide whether we need to install the swbp. Until then it works as if any consumer returns true, this matches the current behavior. Change install_breakpoint() to call filter_chain() instead of checking uprobe->consumers != NULL. We obviously need this, and this equally closes the race with _unregister(). Change remove_breakpoint() to call this helper too. Currently this is pointless because remove_breakpoint() is only called when the last consumer goes away, but we will change this. Signed-off-by: Oleg Nesterov <oleg@redhat.com> Acked-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/events/uprobes.c')
-rw-r--r--kernel/events/uprobes.c24
1 files changed, 19 insertions, 5 deletions
diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c
index 5cbebac27c01..c38bf37d0aca 100644
--- a/kernel/events/uprobes.c
+++ b/kernel/events/uprobes.c
@@ -614,6 +614,18 @@ static int prepare_uprobe(struct uprobe *uprobe, struct file *file,
614 return ret; 614 return ret;
615} 615}
616 616
617static bool filter_chain(struct uprobe *uprobe)
618{
619 /*
620 * TODO:
621 * for_each_consumer(uc)
622 * if (uc->filter(...))
623 * return true;
624 * return false;
625 */
626 return uprobe->consumers != NULL;
627}
628
617static int 629static int
618install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, 630install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
619 struct vm_area_struct *vma, unsigned long vaddr) 631 struct vm_area_struct *vma, unsigned long vaddr)
@@ -624,11 +636,10 @@ install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
624 /* 636 /*
625 * If probe is being deleted, unregister thread could be done with 637 * If probe is being deleted, unregister thread could be done with
626 * the vma-rmap-walk through. Adding a probe now can be fatal since 638 * the vma-rmap-walk through. Adding a probe now can be fatal since
627 * nobody will be able to cleanup. Also we could be from fork or 639 * nobody will be able to cleanup. But in this case filter_chain()
628 * mremap path, where the probe might have already been inserted. 640 * must return false, all consumers have gone away.
629 * Hence behave as if probe already existed.
630 */ 641 */
631 if (!uprobe->consumers) 642 if (!filter_chain(uprobe))
632 return 0; 643 return 0;
633 644
634 ret = prepare_uprobe(uprobe, vma->vm_file, mm, vaddr); 645 ret = prepare_uprobe(uprobe, vma->vm_file, mm, vaddr);
@@ -655,10 +666,12 @@ install_breakpoint(struct uprobe *uprobe, struct mm_struct *mm,
655static int 666static int
656remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr) 667remove_breakpoint(struct uprobe *uprobe, struct mm_struct *mm, unsigned long vaddr)
657{ 668{
658 /* can happen if uprobe_register() fails */
659 if (!test_bit(MMF_HAS_UPROBES, &mm->flags)) 669 if (!test_bit(MMF_HAS_UPROBES, &mm->flags))
660 return 0; 670 return 0;
661 671
672 if (filter_chain(uprobe))
673 return 0;
674
662 set_bit(MMF_RECALC_UPROBES, &mm->flags); 675 set_bit(MMF_RECALC_UPROBES, &mm->flags);
663 return set_orig_insn(&uprobe->arch, mm, vaddr); 676 return set_orig_insn(&uprobe->arch, mm, vaddr);
664} 677}
@@ -1382,6 +1395,7 @@ static void mmf_recalc_uprobes(struct mm_struct *mm)
1382 * This is not strictly accurate, we can race with 1395 * This is not strictly accurate, we can race with
1383 * uprobe_unregister() and see the already removed 1396 * uprobe_unregister() and see the already removed
1384 * uprobe if delete_uprobe() was not yet called. 1397 * uprobe if delete_uprobe() was not yet called.
1398 * Or this uprobe can be filtered out.
1385 */ 1399 */
1386 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end)) 1400 if (vma_has_uprobes(vma, vma->vm_start, vma->vm_end))
1387 return; 1401 return;