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

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