2013-08-01 11:02:44 +02:00
|
|
|
2013-07-31 Andreas Schwab <schwab@suse.de>
|
|
|
|
|
|
|
|
* elf/pldd.c (wait_for_ptrace_stop): New function.
|
|
|
|
(main): Call it after attaching.
|
|
|
|
|
2013-08-06 16:52:55 +02:00
|
|
|
Index: glibc-2.17.90/elf/pldd.c
|
2013-08-01 11:02:44 +02:00
|
|
|
===================================================================
|
2013-08-06 16:52:55 +02:00
|
|
|
--- glibc-2.17.90.orig/elf/pldd.c
|
|
|
|
+++ glibc-2.17.90/elf/pldd.c
|
2013-08-01 11:02:44 +02:00
|
|
|
@@ -34,6 +34,7 @@
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/ptrace.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
+#include <sys/wait.h>
|
|
|
|
|
|
|
|
#include <ldsodefs.h>
|
|
|
|
#include <version.h>
|
2013-08-06 16:52:55 +02:00
|
|
|
@@ -82,6 +83,7 @@ static char *exe;
|
2013-08-01 11:02:44 +02:00
|
|
|
|
|
|
|
/* Local functions. */
|
|
|
|
static int get_process_info (int dfd, long int pid);
|
|
|
|
+static void wait_for_ptrace_stop (long int pid);
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2013-08-06 16:52:55 +02:00
|
|
|
@@ -170,6 +172,8 @@ main (int argc, char *argv[])
|
2013-08-01 11:02:44 +02:00
|
|
|
tid);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ wait_for_ptrace_stop (tid);
|
|
|
|
+
|
|
|
|
struct thread_list *newp = alloca (sizeof (*newp));
|
|
|
|
newp->tid = tid;
|
|
|
|
newp->next = thread_list;
|
2013-08-06 16:52:55 +02:00
|
|
|
@@ -194,6 +198,24 @@ main (int argc, char *argv[])
|
2013-08-01 11:02:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+/* Wait for PID to enter ptrace-stop state after being attached. */
|
|
|
|
+static void
|
|
|
|
+wait_for_ptrace_stop (long int pid)
|
|
|
|
+{
|
|
|
|
+ int status;
|
|
|
|
+
|
|
|
|
+ /* While waiting for SIGSTOP being delivered to the tracee we have to
|
|
|
|
+ reinject any other pending signal. Ignore all other errors. */
|
|
|
|
+ while (waitpid (pid, &status, __WALL) == pid && WIFSTOPPED (status))
|
|
|
|
+ {
|
|
|
|
+ /* The STOP signal should not be delivered to the tracee. */
|
|
|
|
+ if (WSTOPSIG (status) == SIGSTOP)
|
|
|
|
+ return;
|
|
|
|
+ ptrace (PTRACE_CONT, pid, NULL, (void *) (uintptr_t) WSTOPSIG (status));
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
/* Handle program arguments. */
|
|
|
|
static error_t
|
|
|
|
parse_opt (int key, char *arg, struct argp_state *state)
|