Blame SOURCES/ltrace-0.7.91-breakpoint-on_install.patch

4f818e
From 56134ff5442bee4e128b189bb86cfc97dcb6f60a Mon Sep 17 00:00:00 2001
4f818e
From: Petr Machata <pmachata@redhat.com>
4f818e
Date: Fri, 10 Jan 2014 20:05:15 +0100
4f818e
Subject: [PATCH 1/2] Add a new per-breakpoint callback on_install
4f818e
4f818e
---
4f818e
 breakpoint.h  |    9 ++++++++-
4f818e
 breakpoints.c |   11 ++++++++++-
4f818e
 2 files changed, 18 insertions(+), 2 deletions(-)
4f818e
4f818e
diff --git a/breakpoint.h b/breakpoint.h
4f818e
index 95964a8..c36f673 100644
4f818e
--- a/breakpoint.h
4f818e
+++ b/breakpoint.h
4f818e
@@ -1,6 +1,6 @@
4f818e
 /*
4f818e
  * This file is part of ltrace.
4f818e
- * Copyright (C) 2012, 2013 Petr Machata, Red Hat Inc.
4f818e
+ * Copyright (C) 2012,2013,2014 Petr Machata, Red Hat Inc.
4f818e
  * Copyright (C) 2009 Juan Cespedes
4f818e
  *
4f818e
  * This program is free software; you can redistribute it and/or
4f818e
@@ -46,6 +46,7 @@
4f818e
 struct bp_callbacks {
4f818e
 	void (*on_hit)(struct breakpoint *bp, struct process *proc);
4f818e
 	void (*on_continue)(struct breakpoint *bp, struct process *proc);
4f818e
+	void (*on_install)(struct breakpoint *bp, struct process *proc);
4f818e
 	void (*on_retract)(struct breakpoint *bp, struct process *proc);
4f818e
 
4f818e
 	/* Create a new breakpoint that should handle return from the
4f818e
@@ -84,6 +85,12 @@ void breakpoint_on_continue(struct breakpoint *bp, struct process *proc);
4f818e
  * the instruction underneath it).  */
4f818e
 void breakpoint_on_retract(struct breakpoint *bp, struct process *proc);
4f818e
 
4f818e
+/* Call ON_INSTALL handler of BP, if any is set.  This should be
4f818e
+ * called after the breakpoint is enabled for the first time, not
4f818e
+ * every time it's enabled (such as after stepping over a site of a
4f818e
+ * temporarily disabled breakpoint).  */
4f818e
+void breakpoint_on_install(struct breakpoint *bp, struct process *proc);
4f818e
+
4f818e
 /* Call GET_RETURN_BP handler of BP, if any is set.  If none is set,
4f818e
  * call CREATE_DEFAULT_RETURN_BP to obtain one.  */
4f818e
 int breakpoint_get_return_bp(struct breakpoint **ret,
4f818e
diff --git a/breakpoints.c b/breakpoints.c
4f818e
index 947cb71..c3fa275 100644
4f818e
--- a/breakpoints.c
4f818e
+++ b/breakpoints.c
4f818e
@@ -1,6 +1,6 @@
4f818e
 /*
4f818e
  * This file is part of ltrace.
4f818e
- * Copyright (C) 2006,2007,2011,2012,2013 Petr Machata, Red Hat Inc.
4f818e
+ * Copyright (C) 2006,2007,2011,2012,2013,2014 Petr Machata, Red Hat Inc.
4f818e
  * Copyright (C) 2009 Juan Cespedes
4f818e
  * Copyright (C) 1998,2001,2002,2003,2007,2008,2009 Juan Cespedes
4f818e
  * Copyright (C) 2006 Ian Wienand
4f818e
@@ -85,6 +85,14 @@ breakpoint_on_retract(struct breakpoint *bp, struct process *proc)
4f818e
 		(bp->cbs->on_retract)(bp, proc);
4f818e
 }
4f818e
 
4f818e
+void
4f818e
+breakpoint_on_install(struct breakpoint *bp, struct process *proc)
4f818e
+{
4f818e
+	assert(bp != NULL);
4f818e
+	if (bp->cbs != NULL && bp->cbs->on_install != NULL)
4f818e
+		(bp->cbs->on_install)(bp, proc);
4f818e
+}
4f818e
+
4f818e
 int
4f818e
 breakpoint_get_return_bp(struct breakpoint **ret,
4f818e
 			 struct breakpoint *bp, struct process *proc)
4f818e
@@ -229,6 +237,7 @@ breakpoint_turn_on(struct breakpoint *bp, struct process *proc)
4f818e
 	if (bp->enabled == 1) {
4f818e
 		assert(proc->pid != 0);
4f818e
 		enable_breakpoint(proc, bp);
4f818e
+		breakpoint_on_install(bp, proc);
4f818e
 	}
4f818e
 	return 0;
4f818e
 }
4f818e
-- 
4f818e
1.7.6.5
4f818e