Blame SOURCES/ltrace-0.7.91-ppc64-fork.patch

263585
From 35742523e3daa0e59de0c1c3fdd8e5ff52891967 Mon Sep 17 00:00:00 2001
263585
From: Petr Machata <pmachata@redhat.com>
263585
Date: Thu, 9 Jan 2014 23:41:50 +0100
263585
Subject: [PATCH] Fix a problem in tracing across fork on PPC64
263585
263585
In order to avoid single-stepping through large portions of the
263585
dynamic linker, ltrace remembers at which address the instruction that
263585
resolved a PLT slot is.  It then puts a breakpoint to this address so
263585
that it can fast-forward to that address next time it needs to catch a
263585
PLT slot being resolved.
263585
263585
When a process is cloned, the pointer to this breakpoint is simply
263585
copied over to the new process, instead of being looked up in the new
263585
process structures.  This patches fixes this.
263585
---
263585
 sysdeps/linux-gnu/ppc/plt.c |   14 +++++++++++++-
263585
 1 files changed, 13 insertions(+), 1 deletions(-)
263585
263585
diff --git a/sysdeps/linux-gnu/ppc/plt.c b/sysdeps/linux-gnu/ppc/plt.c
263585
index 3ec1397..8715da6 100644
263585
--- a/sysdeps/linux-gnu/ppc/plt.c
263585
+++ b/sysdeps/linux-gnu/ppc/plt.c
263585
@@ -1,6 +1,6 @@
263585
 /*
263585
  * This file is part of ltrace.
263585
- * Copyright (C) 2012,2013 Petr Machata, Red Hat Inc.
263585
+ * Copyright (C) 2012,2013,2014 Petr Machata, Red Hat Inc.
263585
  * Copyright (C) 2004,2008,2009 Juan Cespedes
263585
  * Copyright (C) 2006 Paul Gilliam
263585
  *
263585
@@ -1157,6 +1157,18 @@ int
263585
 arch_process_clone(struct process *retp, struct process *proc)
263585
 {
263585
 	retp->arch = proc->arch;
263585
+
263585
+	if (retp->arch.dl_plt_update_bp != NULL) {
263585
+		/* Point it to the corresponding breakpoint in RETP.
263585
+		 * It must be there, this part of PROC has already
263585
+		 * been cloned to RETP.  */
263585
+		retp->arch.dl_plt_update_bp
263585
+			= address2bpstruct(retp,
263585
+					   retp->arch.dl_plt_update_bp->addr);
263585
+
263585
+		assert(retp->arch.dl_plt_update_bp != NULL);
263585
+	}
263585
+
263585
 	return 0;
263585
 }
263585
 
263585
-- 
263585
1.7.6.5
263585