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

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