Skip to content

Commit 37b9001

Browse files
Use PTRACE_SEIZE instead of PTRACE_ATTACH; also send SIGSTOP before PTRACE_DETACH
1 parent 4306150 commit 37b9001

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

waitpid.c

+7-9
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ ptrace_visit (void)
260260
if (pid < 0)
261261
continue;
262262

263-
if (ptrace (PTRACE_ATTACH, pid, NULL, NULL) < 0)
263+
if (ptrace (PTRACE_SEIZE, pid, NULL, NULL) < 0)
264264
{
265265
if (errno == EPERM)
266266
{
@@ -273,7 +273,9 @@ ptrace_visit (void)
273273
if (pid < 0)
274274
continue;
275275

276-
if (ptrace (PTRACE_DETACH, pid, NULL, NULL) < 0)
276+
if (kill (pid, SIGSTOP) < 0
277+
|| waitpid (pid, NULL, 0) < 0
278+
|| ptrace (PTRACE_DETACH, pid, NULL, NULL) < 0)
277279
{
278280
fprintf (stderr,
279281
_("%s: %ld: cannot detach from process: %s\n"),
@@ -303,16 +305,12 @@ ptrace_visit (void)
303305
}
304306
}
305307

306-
if (waitpid (pid, NULL, 0) < 0
307-
|| ptrace (PTRACE_CONT, pid, NULL, NULL) < 0)
308+
if (verbose)
308309
{
309-
fprintf (stderr, _("%s: %ld: cannot attach to process: %s\n"),
310-
program_name, (long)pid, strerror (errno));
311-
exit (EXIT_FAILURE);
310+
printf (_("%ld: waiting\n"), (long)pid);
311+
fflush (stdout);
312312
}
313313

314-
printf (_("%ld: waiting\n"), (long)pid);
315-
fflush (stdout);
316314
active_pid_count++;
317315
}
318316

0 commit comments

Comments
 (0)