2012-02-02 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-low.c
CommitLineData
da6d8c04 1/* Low level interface to ptrace, for the remote server for GDB.
0b302171 2 Copyright (C) 1995-1996, 1998-2012 Free Software Foundation, Inc.
da6d8c04
DJ
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
da6d8c04
DJ
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
da6d8c04
DJ
18
19#include "server.h"
58caa3dc 20#include "linux-low.h"
d26e3629 21#include "linux-osdata.h"
da6d8c04 22
58caa3dc 23#include <sys/wait.h>
da6d8c04
DJ
24#include <stdio.h>
25#include <sys/param.h>
da6d8c04 26#include <sys/ptrace.h>
af96c192 27#include "linux-ptrace.h"
e3deef73 28#include "linux-procfs.h"
da6d8c04
DJ
29#include <signal.h>
30#include <sys/ioctl.h>
31#include <fcntl.h>
d07c63e7 32#include <string.h>
0a30fbc4
DJ
33#include <stdlib.h>
34#include <unistd.h>
fa6a77dc 35#include <errno.h>
fd500816 36#include <sys/syscall.h>
f9387fc3 37#include <sched.h>
07e059b5
VP
38#include <ctype.h>
39#include <pwd.h>
40#include <sys/types.h>
41#include <dirent.h>
efcbbd14
UW
42#include <sys/stat.h>
43#include <sys/vfs.h>
1570b33e 44#include <sys/uio.h>
957f3f49
DE
45#ifndef ELFMAG0
46/* Don't include <linux/elf.h> here. If it got included by gdb_proc_service.h
47 then ELFMAG0 will have been defined. If it didn't get included by
48 gdb_proc_service.h then including it will likely introduce a duplicate
49 definition of elf_fpregset_t. */
50#include <elf.h>
51#endif
efcbbd14
UW
52
53#ifndef SPUFS_MAGIC
54#define SPUFS_MAGIC 0x23c9b64e
55#endif
da6d8c04 56
03583c20
UW
57#ifdef HAVE_PERSONALITY
58# include <sys/personality.h>
59# if !HAVE_DECL_ADDR_NO_RANDOMIZE
60# define ADDR_NO_RANDOMIZE 0x0040000
61# endif
62#endif
63
fd462a61
DJ
64#ifndef O_LARGEFILE
65#define O_LARGEFILE 0
66#endif
67
ec8ebe72
DE
68#ifndef W_STOPCODE
69#define W_STOPCODE(sig) ((sig) << 8 | 0x7f)
70#endif
71
1a981360
PA
72/* This is the kernel's hard limit. Not to be confused with
73 SIGRTMIN. */
74#ifndef __SIGRTMIN
75#define __SIGRTMIN 32
76#endif
77
42c81e2a
DJ
78#ifdef __UCLIBC__
79#if !(defined(__UCLIBC_HAS_MMU__) || defined(__ARCH_HAS_MMU__))
80#define HAS_NOMMU
81#endif
82#endif
83
24a09b5f
DJ
84/* ``all_threads'' is keyed by the LWP ID, which we use as the GDB protocol
85 representation of the thread ID.
611cb4a5 86
54a0b537 87 ``all_lwps'' is keyed by the process ID - which on Linux is (presently)
95954743
PA
88 the same as the LWP ID.
89
90 ``all_processes'' is keyed by the "overall process ID", which
91 GNU/Linux calls tgid, "thread group ID". */
0d62e5e8 92
54a0b537 93struct inferior_list all_lwps;
0d62e5e8 94
24a09b5f
DJ
95/* A list of all unknown processes which receive stop signals. Some other
96 process will presumably claim each of these as forked children
97 momentarily. */
98
99struct inferior_list stopped_pids;
100
0d62e5e8
DJ
101/* FIXME this is a bit of a hack, and could be removed. */
102int stopping_threads;
103
104/* FIXME make into a target method? */
24a09b5f 105int using_threads = 1;
24a09b5f 106
fa593d66
PA
107/* True if we're presently stabilizing threads (moving them out of
108 jump pads). */
109static int stabilizing_threads;
110
95954743
PA
111/* This flag is true iff we've just created or attached to our first
112 inferior but it has not stopped yet. As soon as it does, we need
113 to call the low target's arch_setup callback. Doing this only on
114 the first inferior avoids reinializing the architecture on every
115 inferior, and avoids messing with the register caches of the
116 already running inferiors. NOTE: this assumes all inferiors under
117 control of gdbserver have the same architecture. */
d61ddec4
UW
118static int new_inferior;
119
2acc282a 120static void linux_resume_one_lwp (struct lwp_info *lwp,
54a0b537 121 int step, int signal, siginfo_t *info);
2bd7c093 122static void linux_resume (struct thread_resume *resume_info, size_t n);
7984d532
PA
123static void stop_all_lwps (int suspend, struct lwp_info *except);
124static void unstop_all_lwps (int unsuspend, struct lwp_info *except);
95954743 125static int linux_wait_for_event (ptid_t ptid, int *wstat, int options);
95954743 126static void *add_lwp (ptid_t ptid);
c35fafde 127static int linux_stopped_by_watchpoint (void);
95954743 128static void mark_lwp_dead (struct lwp_info *lwp, int wstat);
d50171e4 129static void proceed_all_lwps (void);
d50171e4
PA
130static int finish_step_over (struct lwp_info *lwp);
131static CORE_ADDR get_stop_pc (struct lwp_info *lwp);
132static int kill_lwp (unsigned long lwpid, int signo);
1e7fc18c 133static void linux_enable_event_reporting (int pid);
d50171e4
PA
134
135/* True if the low target can hardware single-step. Such targets
136 don't need a BREAKPOINT_REINSERT_ADDR callback. */
137
138static int
139can_hardware_single_step (void)
140{
141 return (the_low_target.breakpoint_reinsert_addr == NULL);
142}
143
144/* True if the low target supports memory breakpoints. If so, we'll
145 have a GET_PC implementation. */
146
147static int
148supports_breakpoints (void)
149{
150 return (the_low_target.get_pc != NULL);
151}
0d62e5e8 152
fa593d66
PA
153/* Returns true if this target can support fast tracepoints. This
154 does not mean that the in-process agent has been loaded in the
155 inferior. */
156
157static int
158supports_fast_tracepoints (void)
159{
160 return the_low_target.install_fast_tracepoint_jump_pad != NULL;
161}
162
0d62e5e8
DJ
163struct pending_signals
164{
165 int signal;
32ca6d61 166 siginfo_t info;
0d62e5e8
DJ
167 struct pending_signals *prev;
168};
611cb4a5 169
14ce3065
DE
170#define PTRACE_ARG3_TYPE void *
171#define PTRACE_ARG4_TYPE void *
c6ecbae5 172#define PTRACE_XFER_TYPE long
da6d8c04 173
58caa3dc 174#ifdef HAVE_LINUX_REGSETS
52fa2412
UW
175static char *disabled_regsets;
176static int num_regsets;
58caa3dc
DJ
177#endif
178
bd99dc85
PA
179/* The read/write ends of the pipe registered as waitable file in the
180 event loop. */
181static int linux_event_pipe[2] = { -1, -1 };
182
183/* True if we're currently in async mode. */
184#define target_is_async_p() (linux_event_pipe[0] != -1)
185
02fc4de7 186static void send_sigstop (struct lwp_info *lwp);
bd99dc85
PA
187static void wait_for_sigstop (struct inferior_list_entry *entry);
188
d0722149
DE
189/* Return non-zero if HEADER is a 64-bit ELF file. */
190
191static int
957f3f49 192elf_64_header_p (const Elf64_Ehdr *header)
d0722149
DE
193{
194 return (header->e_ident[EI_MAG0] == ELFMAG0
195 && header->e_ident[EI_MAG1] == ELFMAG1
196 && header->e_ident[EI_MAG2] == ELFMAG2
197 && header->e_ident[EI_MAG3] == ELFMAG3
198 && header->e_ident[EI_CLASS] == ELFCLASS64);
199}
200
201/* Return non-zero if FILE is a 64-bit ELF file,
202 zero if the file is not a 64-bit ELF file,
203 and -1 if the file is not accessible or doesn't exist. */
204
be07f1a2 205static int
d0722149
DE
206elf_64_file_p (const char *file)
207{
957f3f49 208 Elf64_Ehdr header;
d0722149
DE
209 int fd;
210
211 fd = open (file, O_RDONLY);
212 if (fd < 0)
213 return -1;
214
215 if (read (fd, &header, sizeof (header)) != sizeof (header))
216 {
217 close (fd);
218 return 0;
219 }
220 close (fd);
221
222 return elf_64_header_p (&header);
223}
224
be07f1a2
PA
225/* Accepts an integer PID; Returns true if the executable PID is
226 running is a 64-bit ELF file.. */
227
228int
229linux_pid_exe_is_elf_64_file (int pid)
230{
231 char file[MAXPATHLEN];
232
233 sprintf (file, "/proc/%d/exe", pid);
234 return elf_64_file_p (file);
235}
236
bd99dc85
PA
237static void
238delete_lwp (struct lwp_info *lwp)
239{
240 remove_thread (get_lwp_thread (lwp));
241 remove_inferior (&all_lwps, &lwp->head);
aa5ca48f 242 free (lwp->arch_private);
bd99dc85
PA
243 free (lwp);
244}
245
95954743
PA
246/* Add a process to the common process list, and set its private
247 data. */
248
249static struct process_info *
250linux_add_process (int pid, int attached)
251{
252 struct process_info *proc;
253
254 /* Is this the first process? If so, then set the arch. */
255 if (all_processes.head == NULL)
256 new_inferior = 1;
257
258 proc = add_process (pid, attached);
259 proc->private = xcalloc (1, sizeof (*proc->private));
260
aa5ca48f
DE
261 if (the_low_target.new_process != NULL)
262 proc->private->arch_private = the_low_target.new_process ();
263
95954743
PA
264 return proc;
265}
266
07d4f67e
DE
267/* Wrapper function for waitpid which handles EINTR, and emulates
268 __WALL for systems where that is not available. */
269
270static int
271my_waitpid (int pid, int *status, int flags)
272{
273 int ret, out_errno;
274
275 if (debug_threads)
276 fprintf (stderr, "my_waitpid (%d, 0x%x)\n", pid, flags);
277
278 if (flags & __WALL)
279 {
280 sigset_t block_mask, org_mask, wake_mask;
281 int wnohang;
282
283 wnohang = (flags & WNOHANG) != 0;
284 flags &= ~(__WALL | __WCLONE);
285 flags |= WNOHANG;
286
287 /* Block all signals while here. This avoids knowing about
288 LinuxThread's signals. */
289 sigfillset (&block_mask);
290 sigprocmask (SIG_BLOCK, &block_mask, &org_mask);
291
292 /* ... except during the sigsuspend below. */
293 sigemptyset (&wake_mask);
294
295 while (1)
296 {
297 /* Since all signals are blocked, there's no need to check
298 for EINTR here. */
299 ret = waitpid (pid, status, flags);
300 out_errno = errno;
301
302 if (ret == -1 && out_errno != ECHILD)
303 break;
304 else if (ret > 0)
305 break;
306
307 if (flags & __WCLONE)
308 {
309 /* We've tried both flavors now. If WNOHANG is set,
310 there's nothing else to do, just bail out. */
311 if (wnohang)
312 break;
313
314 if (debug_threads)
315 fprintf (stderr, "blocking\n");
316
317 /* Block waiting for signals. */
318 sigsuspend (&wake_mask);
319 }
320
321 flags ^= __WCLONE;
322 }
323
324 sigprocmask (SIG_SETMASK, &org_mask, NULL);
325 }
326 else
327 {
328 do
329 ret = waitpid (pid, status, flags);
330 while (ret == -1 && errno == EINTR);
331 out_errno = errno;
332 }
333
334 if (debug_threads)
335 fprintf (stderr, "my_waitpid (%d, 0x%x): status(%x), %d\n",
336 pid, flags, status ? *status : -1, ret);
337
338 errno = out_errno;
339 return ret;
340}
341
bd99dc85
PA
342/* Handle a GNU/Linux extended wait response. If we see a clone
343 event, we need to add the new LWP to our list (and not report the
344 trap to higher layers). */
0d62e5e8 345
24a09b5f 346static void
54a0b537 347handle_extended_wait (struct lwp_info *event_child, int wstat)
24a09b5f
DJ
348{
349 int event = wstat >> 16;
54a0b537 350 struct lwp_info *new_lwp;
24a09b5f
DJ
351
352 if (event == PTRACE_EVENT_CLONE)
353 {
95954743 354 ptid_t ptid;
24a09b5f 355 unsigned long new_pid;
836acd6d 356 int ret, status = W_STOPCODE (SIGSTOP);
24a09b5f 357
bd99dc85 358 ptrace (PTRACE_GETEVENTMSG, lwpid_of (event_child), 0, &new_pid);
24a09b5f
DJ
359
360 /* If we haven't already seen the new PID stop, wait for it now. */
361 if (! pull_pid_from_list (&stopped_pids, new_pid))
362 {
363 /* The new child has a pending SIGSTOP. We can't affect it until it
364 hits the SIGSTOP, but we're already attached. */
365
97438e3f 366 ret = my_waitpid (new_pid, &status, __WALL);
24a09b5f
DJ
367
368 if (ret == -1)
369 perror_with_name ("waiting for new child");
370 else if (ret != new_pid)
371 warning ("wait returned unexpected PID %d", ret);
da5898ce 372 else if (!WIFSTOPPED (status))
24a09b5f
DJ
373 warning ("wait returned unexpected status 0x%x", status);
374 }
375
1e7fc18c 376 linux_enable_event_reporting (new_pid);
24a09b5f 377
95954743
PA
378 ptid = ptid_build (pid_of (event_child), new_pid, 0);
379 new_lwp = (struct lwp_info *) add_lwp (ptid);
380 add_thread (ptid, new_lwp);
24a09b5f 381
e27d73f6
DE
382 /* Either we're going to immediately resume the new thread
383 or leave it stopped. linux_resume_one_lwp is a nop if it
384 thinks the thread is currently running, so set this first
385 before calling linux_resume_one_lwp. */
386 new_lwp->stopped = 1;
387
da5898ce
DJ
388 /* Normally we will get the pending SIGSTOP. But in some cases
389 we might get another signal delivered to the group first.
f21cc1a2 390 If we do get another signal, be sure not to lose it. */
da5898ce
DJ
391 if (WSTOPSIG (status) == SIGSTOP)
392 {
d50171e4
PA
393 if (stopping_threads)
394 new_lwp->stop_pc = get_stop_pc (new_lwp);
395 else
e27d73f6 396 linux_resume_one_lwp (new_lwp, 0, 0, NULL);
da5898ce 397 }
24a09b5f 398 else
da5898ce 399 {
54a0b537 400 new_lwp->stop_expected = 1;
d50171e4 401
da5898ce
DJ
402 if (stopping_threads)
403 {
d50171e4 404 new_lwp->stop_pc = get_stop_pc (new_lwp);
54a0b537
PA
405 new_lwp->status_pending_p = 1;
406 new_lwp->status_pending = status;
da5898ce
DJ
407 }
408 else
409 /* Pass the signal on. This is what GDB does - except
410 shouldn't we really report it instead? */
e27d73f6 411 linux_resume_one_lwp (new_lwp, 0, WSTOPSIG (status), NULL);
da5898ce 412 }
24a09b5f
DJ
413
414 /* Always resume the current thread. If we are stopping
415 threads, it will have a pending SIGSTOP; we may as well
416 collect it now. */
2acc282a 417 linux_resume_one_lwp (event_child, event_child->stepping, 0, NULL);
24a09b5f
DJ
418 }
419}
420
d50171e4
PA
421/* Return the PC as read from the regcache of LWP, without any
422 adjustment. */
423
424static CORE_ADDR
425get_pc (struct lwp_info *lwp)
426{
427 struct thread_info *saved_inferior;
428 struct regcache *regcache;
429 CORE_ADDR pc;
430
431 if (the_low_target.get_pc == NULL)
432 return 0;
433
434 saved_inferior = current_inferior;
435 current_inferior = get_lwp_thread (lwp);
436
437 regcache = get_thread_regcache (current_inferior, 1);
438 pc = (*the_low_target.get_pc) (regcache);
439
440 if (debug_threads)
441 fprintf (stderr, "pc is 0x%lx\n", (long) pc);
442
443 current_inferior = saved_inferior;
444 return pc;
445}
446
447/* This function should only be called if LWP got a SIGTRAP.
0d62e5e8
DJ
448 The SIGTRAP could mean several things.
449
450 On i386, where decr_pc_after_break is non-zero:
451 If we were single-stepping this process using PTRACE_SINGLESTEP,
452 we will get only the one SIGTRAP (even if the instruction we
453 stepped over was a breakpoint). The value of $eip will be the
454 next instruction.
455 If we continue the process using PTRACE_CONT, we will get a
456 SIGTRAP when we hit a breakpoint. The value of $eip will be
457 the instruction after the breakpoint (i.e. needs to be
458 decremented). If we report the SIGTRAP to GDB, we must also
459 report the undecremented PC. If we cancel the SIGTRAP, we
460 must resume at the decremented PC.
461
462 (Presumably, not yet tested) On a non-decr_pc_after_break machine
463 with hardware or kernel single-step:
464 If we single-step over a breakpoint instruction, our PC will
465 point at the following instruction. If we continue and hit a
466 breakpoint instruction, our PC will point at the breakpoint
467 instruction. */
468
469static CORE_ADDR
d50171e4 470get_stop_pc (struct lwp_info *lwp)
0d62e5e8 471{
d50171e4
PA
472 CORE_ADDR stop_pc;
473
474 if (the_low_target.get_pc == NULL)
475 return 0;
0d62e5e8 476
d50171e4
PA
477 stop_pc = get_pc (lwp);
478
bdabb078
PA
479 if (WSTOPSIG (lwp->last_status) == SIGTRAP
480 && !lwp->stepping
481 && !lwp->stopped_by_watchpoint
482 && lwp->last_status >> 16 == 0)
47c0c975
DE
483 stop_pc -= the_low_target.decr_pc_after_break;
484
485 if (debug_threads)
486 fprintf (stderr, "stop pc is 0x%lx\n", (long) stop_pc);
487
488 return stop_pc;
0d62e5e8 489}
ce3a066d 490
0d62e5e8 491static void *
95954743 492add_lwp (ptid_t ptid)
611cb4a5 493{
54a0b537 494 struct lwp_info *lwp;
0d62e5e8 495
54a0b537
PA
496 lwp = (struct lwp_info *) xmalloc (sizeof (*lwp));
497 memset (lwp, 0, sizeof (*lwp));
0d62e5e8 498
95954743 499 lwp->head.id = ptid;
0d62e5e8 500
aa5ca48f
DE
501 if (the_low_target.new_thread != NULL)
502 lwp->arch_private = the_low_target.new_thread ();
503
54a0b537 504 add_inferior_to_list (&all_lwps, &lwp->head);
0d62e5e8 505
54a0b537 506 return lwp;
0d62e5e8 507}
611cb4a5 508
da6d8c04
DJ
509/* Start an inferior process and returns its pid.
510 ALLARGS is a vector of program-name and args. */
511
ce3a066d
DJ
512static int
513linux_create_inferior (char *program, char **allargs)
da6d8c04 514{
03583c20
UW
515#ifdef HAVE_PERSONALITY
516 int personality_orig = 0, personality_set = 0;
517#endif
a6dbe5df 518 struct lwp_info *new_lwp;
da6d8c04 519 int pid;
95954743 520 ptid_t ptid;
da6d8c04 521
03583c20
UW
522#ifdef HAVE_PERSONALITY
523 if (disable_randomization)
524 {
525 errno = 0;
526 personality_orig = personality (0xffffffff);
527 if (errno == 0 && !(personality_orig & ADDR_NO_RANDOMIZE))
528 {
529 personality_set = 1;
530 personality (personality_orig | ADDR_NO_RANDOMIZE);
531 }
532 if (errno != 0 || (personality_set
533 && !(personality (0xffffffff) & ADDR_NO_RANDOMIZE)))
534 warning ("Error disabling address space randomization: %s",
535 strerror (errno));
536 }
537#endif
538
42c81e2a 539#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437
NS
540 pid = vfork ();
541#else
da6d8c04 542 pid = fork ();
52fb6437 543#endif
da6d8c04
DJ
544 if (pid < 0)
545 perror_with_name ("fork");
546
547 if (pid == 0)
548 {
549 ptrace (PTRACE_TRACEME, 0, 0, 0);
550
1a981360 551#ifndef __ANDROID__ /* Bionic doesn't use SIGRTMIN the way glibc does. */
254787d4 552 signal (__SIGRTMIN + 1, SIG_DFL);
60c3d7b0 553#endif
0d62e5e8 554
a9fa9f7d
DJ
555 setpgid (0, 0);
556
e0f9f062
DE
557 /* If gdbserver is connected to gdb via stdio, redirect the inferior's
558 stdout to stderr so that inferior i/o doesn't corrupt the connection.
559 Also, redirect stdin to /dev/null. */
560 if (remote_connection_is_stdio ())
561 {
562 close (0);
563 open ("/dev/null", O_RDONLY);
564 dup2 (2, 1);
3e52c33d
JK
565 if (write (2, "stdin/stdout redirected\n",
566 sizeof ("stdin/stdout redirected\n") - 1) < 0)
567 /* Errors ignored. */;
e0f9f062
DE
568 }
569
2b876972
DJ
570 execv (program, allargs);
571 if (errno == ENOENT)
572 execvp (program, allargs);
da6d8c04
DJ
573
574 fprintf (stderr, "Cannot exec %s: %s.\n", program,
d07c63e7 575 strerror (errno));
da6d8c04
DJ
576 fflush (stderr);
577 _exit (0177);
578 }
579
03583c20
UW
580#ifdef HAVE_PERSONALITY
581 if (personality_set)
582 {
583 errno = 0;
584 personality (personality_orig);
585 if (errno != 0)
586 warning ("Error restoring address space randomization: %s",
587 strerror (errno));
588 }
589#endif
590
95954743
PA
591 linux_add_process (pid, 0);
592
593 ptid = ptid_build (pid, pid, 0);
594 new_lwp = add_lwp (ptid);
595 add_thread (ptid, new_lwp);
a6dbe5df 596 new_lwp->must_set_ptrace_flags = 1;
611cb4a5 597
a9fa9f7d 598 return pid;
da6d8c04
DJ
599}
600
601/* Attach to an inferior process. */
602
95954743
PA
603static void
604linux_attach_lwp_1 (unsigned long lwpid, int initial)
da6d8c04 605{
95954743 606 ptid_t ptid;
54a0b537 607 struct lwp_info *new_lwp;
611cb4a5 608
95954743 609 if (ptrace (PTRACE_ATTACH, lwpid, 0, 0) != 0)
da6d8c04 610 {
95954743 611 if (!initial)
2d717e4f
DJ
612 {
613 /* If we fail to attach to an LWP, just warn. */
95954743 614 fprintf (stderr, "Cannot attach to lwp %ld: %s (%d)\n", lwpid,
2d717e4f
DJ
615 strerror (errno), errno);
616 fflush (stderr);
617 return;
618 }
619 else
620 /* If we fail to attach to a process, report an error. */
95954743 621 error ("Cannot attach to lwp %ld: %s (%d)\n", lwpid,
43d5792c 622 strerror (errno), errno);
da6d8c04
DJ
623 }
624
95954743 625 if (initial)
e3deef73
LM
626 /* If lwp is the tgid, we handle adding existing threads later.
627 Otherwise we just add lwp without bothering about any other
628 threads. */
95954743
PA
629 ptid = ptid_build (lwpid, lwpid, 0);
630 else
631 {
632 /* Note that extracting the pid from the current inferior is
633 safe, since we're always called in the context of the same
634 process as this new thread. */
635 int pid = pid_of (get_thread_lwp (current_inferior));
636 ptid = ptid_build (pid, lwpid, 0);
637 }
24a09b5f 638
95954743
PA
639 new_lwp = (struct lwp_info *) add_lwp (ptid);
640 add_thread (ptid, new_lwp);
0d62e5e8 641
a6dbe5df
PA
642 /* We need to wait for SIGSTOP before being able to make the next
643 ptrace call on this LWP. */
644 new_lwp->must_set_ptrace_flags = 1;
645
0d62e5e8 646 /* The next time we wait for this LWP we'll see a SIGSTOP as PTRACE_ATTACH
0e21c1ec
DE
647 brings it to a halt.
648
649 There are several cases to consider here:
650
651 1) gdbserver has already attached to the process and is being notified
1b3f6016 652 of a new thread that is being created.
d50171e4
PA
653 In this case we should ignore that SIGSTOP and resume the
654 process. This is handled below by setting stop_expected = 1,
8336d594 655 and the fact that add_thread sets last_resume_kind ==
d50171e4 656 resume_continue.
0e21c1ec
DE
657
658 2) This is the first thread (the process thread), and we're attaching
1b3f6016
PA
659 to it via attach_inferior.
660 In this case we want the process thread to stop.
d50171e4
PA
661 This is handled by having linux_attach set last_resume_kind ==
662 resume_stop after we return.
e3deef73
LM
663
664 If the pid we are attaching to is also the tgid, we attach to and
665 stop all the existing threads. Otherwise, we attach to pid and
666 ignore any other threads in the same group as this pid.
0e21c1ec
DE
667
668 3) GDB is connecting to gdbserver and is requesting an enumeration of all
1b3f6016
PA
669 existing threads.
670 In this case we want the thread to stop.
671 FIXME: This case is currently not properly handled.
672 We should wait for the SIGSTOP but don't. Things work apparently
673 because enough time passes between when we ptrace (ATTACH) and when
674 gdb makes the next ptrace call on the thread.
0d62e5e8
DJ
675
676 On the other hand, if we are currently trying to stop all threads, we
677 should treat the new thread as if we had sent it a SIGSTOP. This works
54a0b537 678 because we are guaranteed that the add_lwp call above added us to the
0e21c1ec
DE
679 end of the list, and so the new thread has not yet reached
680 wait_for_sigstop (but will). */
d50171e4 681 new_lwp->stop_expected = 1;
0d62e5e8
DJ
682}
683
95954743
PA
684void
685linux_attach_lwp (unsigned long lwpid)
686{
687 linux_attach_lwp_1 (lwpid, 0);
688}
689
e3deef73
LM
690/* Attach to PID. If PID is the tgid, attach to it and all
691 of its threads. */
692
0d62e5e8 693int
a1928bad 694linux_attach (unsigned long pid)
0d62e5e8 695{
e3deef73
LM
696 /* Attach to PID. We will check for other threads
697 soon. */
95954743 698 linux_attach_lwp_1 (pid, 1);
95954743 699 linux_add_process (pid, 1);
0d62e5e8 700
bd99dc85
PA
701 if (!non_stop)
702 {
8336d594
PA
703 struct thread_info *thread;
704
705 /* Don't ignore the initial SIGSTOP if we just attached to this
706 process. It will be collected by wait shortly. */
707 thread = find_thread_ptid (ptid_build (pid, pid, 0));
708 thread->last_resume_kind = resume_stop;
bd99dc85 709 }
0d62e5e8 710
e3deef73
LM
711 if (linux_proc_get_tgid (pid) == pid)
712 {
713 DIR *dir;
714 char pathname[128];
715
716 sprintf (pathname, "/proc/%ld/task", pid);
717
718 dir = opendir (pathname);
719
720 if (!dir)
721 {
722 fprintf (stderr, "Could not open /proc/%ld/task.\n", pid);
723 fflush (stderr);
724 }
725 else
726 {
727 /* At this point we attached to the tgid. Scan the task for
728 existing threads. */
729 unsigned long lwp;
730 int new_threads_found;
731 int iterations = 0;
732 struct dirent *dp;
733
734 while (iterations < 2)
735 {
736 new_threads_found = 0;
737 /* Add all the other threads. While we go through the
738 threads, new threads may be spawned. Cycle through
739 the list of threads until we have done two iterations without
740 finding new threads. */
741 while ((dp = readdir (dir)) != NULL)
742 {
743 /* Fetch one lwp. */
744 lwp = strtoul (dp->d_name, NULL, 10);
745
746 /* Is this a new thread? */
747 if (lwp
748 && find_thread_ptid (ptid_build (pid, lwp, 0)) == NULL)
749 {
750 linux_attach_lwp_1 (lwp, 0);
751 new_threads_found++;
752
753 if (debug_threads)
754 fprintf (stderr, "\
755Found and attached to new lwp %ld\n", lwp);
756 }
757 }
758
759 if (!new_threads_found)
760 iterations++;
761 else
762 iterations = 0;
763
764 rewinddir (dir);
765 }
766 closedir (dir);
767 }
768 }
769
95954743
PA
770 return 0;
771}
772
773struct counter
774{
775 int pid;
776 int count;
777};
778
779static int
780second_thread_of_pid_p (struct inferior_list_entry *entry, void *args)
781{
782 struct counter *counter = args;
783
784 if (ptid_get_pid (entry->id) == counter->pid)
785 {
786 if (++counter->count > 1)
787 return 1;
788 }
d61ddec4 789
da6d8c04
DJ
790 return 0;
791}
792
95954743
PA
793static int
794last_thread_of_process_p (struct thread_info *thread)
795{
796 ptid_t ptid = ((struct inferior_list_entry *)thread)->id;
797 int pid = ptid_get_pid (ptid);
798 struct counter counter = { pid , 0 };
da6d8c04 799
95954743
PA
800 return (find_inferior (&all_threads,
801 second_thread_of_pid_p, &counter) == NULL);
802}
803
804/* Kill the inferior lwp. */
805
806static int
807linux_kill_one_lwp (struct inferior_list_entry *entry, void *args)
da6d8c04 808{
0d62e5e8 809 struct thread_info *thread = (struct thread_info *) entry;
54a0b537 810 struct lwp_info *lwp = get_thread_lwp (thread);
0d62e5e8 811 int wstat;
95954743
PA
812 int pid = * (int *) args;
813
814 if (ptid_get_pid (entry->id) != pid)
815 return 0;
0d62e5e8 816
fd500816
DJ
817 /* We avoid killing the first thread here, because of a Linux kernel (at
818 least 2.6.0-test7 through 2.6.8-rc4) bug; if we kill the parent before
819 the children get a chance to be reaped, it will remain a zombie
820 forever. */
95954743 821
12b42a12 822 if (lwpid_of (lwp) == pid)
95954743
PA
823 {
824 if (debug_threads)
825 fprintf (stderr, "lkop: is last of process %s\n",
826 target_pid_to_str (entry->id));
827 return 0;
828 }
fd500816 829
0d62e5e8
DJ
830 do
831 {
bd99dc85 832 ptrace (PTRACE_KILL, lwpid_of (lwp), 0, 0);
0d62e5e8
DJ
833
834 /* Make sure it died. The loop is most likely unnecessary. */
95954743 835 pid = linux_wait_for_event (lwp->head.id, &wstat, __WALL);
bd99dc85 836 } while (pid > 0 && WIFSTOPPED (wstat));
95954743
PA
837
838 return 0;
da6d8c04
DJ
839}
840
95954743
PA
841static int
842linux_kill (int pid)
0d62e5e8 843{
95954743 844 struct process_info *process;
54a0b537 845 struct lwp_info *lwp;
fd500816 846 int wstat;
95954743 847 int lwpid;
fd500816 848
95954743
PA
849 process = find_process_pid (pid);
850 if (process == NULL)
851 return -1;
9d606399 852
f9e39928
PA
853 /* If we're killing a running inferior, make sure it is stopped
854 first, as PTRACE_KILL will not work otherwise. */
7984d532 855 stop_all_lwps (0, NULL);
f9e39928 856
95954743 857 find_inferior (&all_threads, linux_kill_one_lwp, &pid);
fd500816 858
54a0b537 859 /* See the comment in linux_kill_one_lwp. We did not kill the first
fd500816 860 thread in the list, so do so now. */
95954743 861 lwp = find_lwp_pid (pid_to_ptid (pid));
bd99dc85 862
784867a5 863 if (lwp == NULL)
fd500816 864 {
784867a5
JK
865 if (debug_threads)
866 fprintf (stderr, "lk_1: cannot find lwp %ld, for pid: %d\n",
867 lwpid_of (lwp), pid);
868 }
869 else
870 {
871 if (debug_threads)
872 fprintf (stderr, "lk_1: killing lwp %ld, for pid: %d\n",
873 lwpid_of (lwp), pid);
fd500816 874
784867a5
JK
875 do
876 {
877 ptrace (PTRACE_KILL, lwpid_of (lwp), 0, 0);
878
879 /* Make sure it died. The loop is most likely unnecessary. */
880 lwpid = linux_wait_for_event (lwp->head.id, &wstat, __WALL);
881 } while (lwpid > 0 && WIFSTOPPED (wstat));
882 }
2d717e4f 883
8336d594 884 the_target->mourn (process);
f9e39928
PA
885
886 /* Since we presently can only stop all lwps of all processes, we
887 need to unstop lwps of other processes. */
7984d532 888 unstop_all_lwps (0, NULL);
95954743 889 return 0;
0d62e5e8
DJ
890}
891
95954743
PA
892static int
893linux_detach_one_lwp (struct inferior_list_entry *entry, void *args)
6ad8ae5c
DJ
894{
895 struct thread_info *thread = (struct thread_info *) entry;
54a0b537 896 struct lwp_info *lwp = get_thread_lwp (thread);
95954743
PA
897 int pid = * (int *) args;
898
899 if (ptid_get_pid (entry->id) != pid)
900 return 0;
6ad8ae5c 901
ae13219e
DJ
902 /* If this process is stopped but is expecting a SIGSTOP, then make
903 sure we take care of that now. This isn't absolutely guaranteed
904 to collect the SIGSTOP, but is fairly likely to. */
54a0b537 905 if (lwp->stop_expected)
ae13219e 906 {
bd99dc85 907 int wstat;
ae13219e 908 /* Clear stop_expected, so that the SIGSTOP will be reported. */
54a0b537 909 lwp->stop_expected = 0;
f9e39928 910 linux_resume_one_lwp (lwp, 0, 0, NULL);
95954743 911 linux_wait_for_event (lwp->head.id, &wstat, __WALL);
ae13219e
DJ
912 }
913
914 /* Flush any pending changes to the process's registers. */
915 regcache_invalidate_one ((struct inferior_list_entry *)
54a0b537 916 get_lwp_thread (lwp));
ae13219e
DJ
917
918 /* Finally, let it resume. */
82bfbe7e
PA
919 if (the_low_target.prepare_to_resume != NULL)
920 the_low_target.prepare_to_resume (lwp);
bd99dc85
PA
921 ptrace (PTRACE_DETACH, lwpid_of (lwp), 0, 0);
922
923 delete_lwp (lwp);
95954743 924 return 0;
6ad8ae5c
DJ
925}
926
95954743
PA
927static int
928linux_detach (int pid)
929{
930 struct process_info *process;
931
932 process = find_process_pid (pid);
933 if (process == NULL)
934 return -1;
935
f9e39928
PA
936 /* Stop all threads before detaching. First, ptrace requires that
937 the thread is stopped to sucessfully detach. Second, thread_db
938 may need to uninstall thread event breakpoints from memory, which
939 only works with a stopped process anyway. */
7984d532 940 stop_all_lwps (0, NULL);
f9e39928 941
ca5c370d 942#ifdef USE_THREAD_DB
8336d594 943 thread_db_detach (process);
ca5c370d
PA
944#endif
945
fa593d66
PA
946 /* Stabilize threads (move out of jump pads). */
947 stabilize_threads ();
948
95954743 949 find_inferior (&all_threads, linux_detach_one_lwp, &pid);
8336d594
PA
950
951 the_target->mourn (process);
f9e39928
PA
952
953 /* Since we presently can only stop all lwps of all processes, we
954 need to unstop lwps of other processes. */
7984d532 955 unstop_all_lwps (0, NULL);
f9e39928
PA
956 return 0;
957}
958
959/* Remove all LWPs that belong to process PROC from the lwp list. */
960
961static int
962delete_lwp_callback (struct inferior_list_entry *entry, void *proc)
963{
964 struct lwp_info *lwp = (struct lwp_info *) entry;
965 struct process_info *process = proc;
966
967 if (pid_of (lwp) == pid_of (process))
968 delete_lwp (lwp);
969
dd6953e1 970 return 0;
6ad8ae5c
DJ
971}
972
8336d594
PA
973static void
974linux_mourn (struct process_info *process)
975{
976 struct process_info_private *priv;
977
978#ifdef USE_THREAD_DB
979 thread_db_mourn (process);
980#endif
981
f9e39928
PA
982 find_inferior (&all_lwps, delete_lwp_callback, process);
983
8336d594
PA
984 /* Freeing all private data. */
985 priv = process->private;
986 free (priv->arch_private);
987 free (priv);
988 process->private = NULL;
505106cd
PA
989
990 remove_process (process);
8336d594
PA
991}
992
444d6139 993static void
95954743 994linux_join (int pid)
444d6139 995{
444d6139
PA
996 int status, ret;
997
998 do {
95954743 999 ret = my_waitpid (pid, &status, 0);
444d6139
PA
1000 if (WIFEXITED (status) || WIFSIGNALED (status))
1001 break;
1002 } while (ret != -1 || errno != ECHILD);
1003}
1004
6ad8ae5c 1005/* Return nonzero if the given thread is still alive. */
0d62e5e8 1006static int
95954743 1007linux_thread_alive (ptid_t ptid)
0d62e5e8 1008{
95954743
PA
1009 struct lwp_info *lwp = find_lwp_pid (ptid);
1010
1011 /* We assume we always know if a thread exits. If a whole process
1012 exited but we still haven't been able to report it to GDB, we'll
1013 hold on to the last lwp of the dead process. */
1014 if (lwp != NULL)
1015 return !lwp->dead;
0d62e5e8
DJ
1016 else
1017 return 0;
1018}
1019
6bf5e0ba 1020/* Return 1 if this lwp has an interesting status pending. */
611cb4a5 1021static int
d50171e4 1022status_pending_p_callback (struct inferior_list_entry *entry, void *arg)
0d62e5e8 1023{
54a0b537 1024 struct lwp_info *lwp = (struct lwp_info *) entry;
95954743 1025 ptid_t ptid = * (ptid_t *) arg;
7984d532 1026 struct thread_info *thread;
95954743
PA
1027
1028 /* Check if we're only interested in events from a specific process
1029 or its lwps. */
1030 if (!ptid_equal (minus_one_ptid, ptid)
1031 && ptid_get_pid (ptid) != ptid_get_pid (lwp->head.id))
1032 return 0;
0d62e5e8 1033
d50171e4
PA
1034 thread = get_lwp_thread (lwp);
1035
1036 /* If we got a `vCont;t', but we haven't reported a stop yet, do
1037 report any status pending the LWP may have. */
8336d594 1038 if (thread->last_resume_kind == resume_stop
7984d532 1039 && thread->last_status.kind != TARGET_WAITKIND_IGNORE)
d50171e4 1040 return 0;
0d62e5e8 1041
d50171e4 1042 return lwp->status_pending_p;
0d62e5e8
DJ
1043}
1044
95954743
PA
1045static int
1046same_lwp (struct inferior_list_entry *entry, void *data)
1047{
1048 ptid_t ptid = *(ptid_t *) data;
1049 int lwp;
1050
1051 if (ptid_get_lwp (ptid) != 0)
1052 lwp = ptid_get_lwp (ptid);
1053 else
1054 lwp = ptid_get_pid (ptid);
1055
1056 if (ptid_get_lwp (entry->id) == lwp)
1057 return 1;
1058
1059 return 0;
1060}
1061
1062struct lwp_info *
1063find_lwp_pid (ptid_t ptid)
1064{
1065 return (struct lwp_info*) find_inferior (&all_lwps, same_lwp, &ptid);
1066}
1067
bd99dc85 1068static struct lwp_info *
95954743 1069linux_wait_for_lwp (ptid_t ptid, int *wstatp, int options)
611cb4a5 1070{
0d62e5e8 1071 int ret;
95954743 1072 int to_wait_for = -1;
bd99dc85 1073 struct lwp_info *child = NULL;
0d62e5e8 1074
bd99dc85 1075 if (debug_threads)
95954743
PA
1076 fprintf (stderr, "linux_wait_for_lwp: %s\n", target_pid_to_str (ptid));
1077
1078 if (ptid_equal (ptid, minus_one_ptid))
1079 to_wait_for = -1; /* any child */
1080 else
1081 to_wait_for = ptid_get_lwp (ptid); /* this lwp only */
0d62e5e8 1082
bd99dc85 1083 options |= __WALL;
0d62e5e8 1084
bd99dc85 1085retry:
0d62e5e8 1086
bd99dc85
PA
1087 ret = my_waitpid (to_wait_for, wstatp, options);
1088 if (ret == 0 || (ret == -1 && errno == ECHILD && (options & WNOHANG)))
1089 return NULL;
1090 else if (ret == -1)
1091 perror_with_name ("waitpid");
0d62e5e8
DJ
1092
1093 if (debug_threads
1094 && (!WIFSTOPPED (*wstatp)
1095 || (WSTOPSIG (*wstatp) != 32
1096 && WSTOPSIG (*wstatp) != 33)))
1097 fprintf (stderr, "Got an event from %d (%x)\n", ret, *wstatp);
1098
95954743 1099 child = find_lwp_pid (pid_to_ptid (ret));
0d62e5e8 1100
24a09b5f
DJ
1101 /* If we didn't find a process, one of two things presumably happened:
1102 - A process we started and then detached from has exited. Ignore it.
1103 - A process we are controlling has forked and the new child's stop
1104 was reported to us by the kernel. Save its PID. */
bd99dc85 1105 if (child == NULL && WIFSTOPPED (*wstatp))
24a09b5f
DJ
1106 {
1107 add_pid_to_list (&stopped_pids, ret);
1108 goto retry;
1109 }
bd99dc85 1110 else if (child == NULL)
24a09b5f
DJ
1111 goto retry;
1112
bd99dc85 1113 child->stopped = 1;
0d62e5e8 1114
bd99dc85 1115 child->last_status = *wstatp;
32ca6d61 1116
d61ddec4
UW
1117 /* Architecture-specific setup after inferior is running.
1118 This needs to happen after we have attached to the inferior
1119 and it is stopped for the first time, but before we access
1120 any inferior registers. */
1121 if (new_inferior)
1122 {
1123 the_low_target.arch_setup ();
52fa2412
UW
1124#ifdef HAVE_LINUX_REGSETS
1125 memset (disabled_regsets, 0, num_regsets);
1126#endif
d61ddec4
UW
1127 new_inferior = 0;
1128 }
1129
c3adc08c
PA
1130 /* Fetch the possibly triggered data watchpoint info and store it in
1131 CHILD.
1132
1133 On some archs, like x86, that use debug registers to set
1134 watchpoints, it's possible that the way to know which watched
1135 address trapped, is to check the register that is used to select
1136 which address to watch. Problem is, between setting the
1137 watchpoint and reading back which data address trapped, the user
1138 may change the set of watchpoints, and, as a consequence, GDB
1139 changes the debug registers in the inferior. To avoid reading
1140 back a stale stopped-data-address when that happens, we cache in
1141 LP the fact that a watchpoint trapped, and the corresponding data
1142 address, as soon as we see CHILD stop with a SIGTRAP. If GDB
1143 changes the debug registers meanwhile, we have the cached data we
1144 can rely on. */
1145
1146 if (WIFSTOPPED (*wstatp) && WSTOPSIG (*wstatp) == SIGTRAP)
1147 {
1148 if (the_low_target.stopped_by_watchpoint == NULL)
1149 {
1150 child->stopped_by_watchpoint = 0;
1151 }
1152 else
1153 {
1154 struct thread_info *saved_inferior;
1155
1156 saved_inferior = current_inferior;
1157 current_inferior = get_lwp_thread (child);
1158
1159 child->stopped_by_watchpoint
1160 = the_low_target.stopped_by_watchpoint ();
1161
1162 if (child->stopped_by_watchpoint)
1163 {
1164 if (the_low_target.stopped_data_address != NULL)
1165 child->stopped_data_address
1166 = the_low_target.stopped_data_address ();
1167 else
1168 child->stopped_data_address = 0;
1169 }
1170
1171 current_inferior = saved_inferior;
1172 }
1173 }
1174
d50171e4
PA
1175 /* Store the STOP_PC, with adjustment applied. This depends on the
1176 architecture being defined already (so that CHILD has a valid
1177 regcache), and on LAST_STATUS being set (to check for SIGTRAP or
1178 not). */
1179 if (WIFSTOPPED (*wstatp))
1180 child->stop_pc = get_stop_pc (child);
1181
0d62e5e8 1182 if (debug_threads
47c0c975
DE
1183 && WIFSTOPPED (*wstatp)
1184 && the_low_target.get_pc != NULL)
0d62e5e8 1185 {
896c7fbb 1186 struct thread_info *saved_inferior = current_inferior;
bce522a2 1187 struct regcache *regcache;
47c0c975
DE
1188 CORE_ADDR pc;
1189
d50171e4 1190 current_inferior = get_lwp_thread (child);
bce522a2 1191 regcache = get_thread_regcache (current_inferior, 1);
442ea881 1192 pc = (*the_low_target.get_pc) (regcache);
47c0c975 1193 fprintf (stderr, "linux_wait_for_lwp: pc is 0x%lx\n", (long) pc);
896c7fbb 1194 current_inferior = saved_inferior;
0d62e5e8 1195 }
bd99dc85
PA
1196
1197 return child;
0d62e5e8 1198}
611cb4a5 1199
219f2f23
PA
1200/* This function should only be called if the LWP got a SIGTRAP.
1201
1202 Handle any tracepoint steps or hits. Return true if a tracepoint
1203 event was handled, 0 otherwise. */
1204
1205static int
1206handle_tracepoints (struct lwp_info *lwp)
1207{
1208 struct thread_info *tinfo = get_lwp_thread (lwp);
1209 int tpoint_related_event = 0;
1210
7984d532
PA
1211 /* If this tracepoint hit causes a tracing stop, we'll immediately
1212 uninsert tracepoints. To do this, we temporarily pause all
1213 threads, unpatch away, and then unpause threads. We need to make
1214 sure the unpausing doesn't resume LWP too. */
1215 lwp->suspended++;
1216
219f2f23
PA
1217 /* And we need to be sure that any all-threads-stopping doesn't try
1218 to move threads out of the jump pads, as it could deadlock the
1219 inferior (LWP could be in the jump pad, maybe even holding the
1220 lock.) */
1221
1222 /* Do any necessary step collect actions. */
1223 tpoint_related_event |= tracepoint_finished_step (tinfo, lwp->stop_pc);
1224
fa593d66
PA
1225 tpoint_related_event |= handle_tracepoint_bkpts (tinfo, lwp->stop_pc);
1226
219f2f23
PA
1227 /* See if we just hit a tracepoint and do its main collect
1228 actions. */
1229 tpoint_related_event |= tracepoint_was_hit (tinfo, lwp->stop_pc);
1230
7984d532
PA
1231 lwp->suspended--;
1232
1233 gdb_assert (lwp->suspended == 0);
fa593d66 1234 gdb_assert (!stabilizing_threads || lwp->collecting_fast_tracepoint);
7984d532 1235
219f2f23
PA
1236 if (tpoint_related_event)
1237 {
1238 if (debug_threads)
1239 fprintf (stderr, "got a tracepoint event\n");
1240 return 1;
1241 }
1242
1243 return 0;
1244}
1245
fa593d66
PA
1246/* Convenience wrapper. Returns true if LWP is presently collecting a
1247 fast tracepoint. */
1248
1249static int
1250linux_fast_tracepoint_collecting (struct lwp_info *lwp,
1251 struct fast_tpoint_collect_status *status)
1252{
1253 CORE_ADDR thread_area;
1254
1255 if (the_low_target.get_thread_area == NULL)
1256 return 0;
1257
1258 /* Get the thread area address. This is used to recognize which
1259 thread is which when tracing with the in-process agent library.
1260 We don't read anything from the address, and treat it as opaque;
1261 it's the address itself that we assume is unique per-thread. */
1262 if ((*the_low_target.get_thread_area) (lwpid_of (lwp), &thread_area) == -1)
1263 return 0;
1264
1265 return fast_tracepoint_collecting (thread_area, lwp->stop_pc, status);
1266}
1267
1268/* The reason we resume in the caller, is because we want to be able
1269 to pass lwp->status_pending as WSTAT, and we need to clear
1270 status_pending_p before resuming, otherwise, linux_resume_one_lwp
1271 refuses to resume. */
1272
1273static int
1274maybe_move_out_of_jump_pad (struct lwp_info *lwp, int *wstat)
1275{
1276 struct thread_info *saved_inferior;
1277
1278 saved_inferior = current_inferior;
1279 current_inferior = get_lwp_thread (lwp);
1280
1281 if ((wstat == NULL
1282 || (WIFSTOPPED (*wstat) && WSTOPSIG (*wstat) != SIGTRAP))
1283 && supports_fast_tracepoints ()
1284 && in_process_agent_loaded ())
1285 {
1286 struct fast_tpoint_collect_status status;
1287 int r;
1288
1289 if (debug_threads)
1290 fprintf (stderr, "\
1291Checking whether LWP %ld needs to move out of the jump pad.\n",
1292 lwpid_of (lwp));
1293
1294 r = linux_fast_tracepoint_collecting (lwp, &status);
1295
1296 if (wstat == NULL
1297 || (WSTOPSIG (*wstat) != SIGILL
1298 && WSTOPSIG (*wstat) != SIGFPE
1299 && WSTOPSIG (*wstat) != SIGSEGV
1300 && WSTOPSIG (*wstat) != SIGBUS))
1301 {
1302 lwp->collecting_fast_tracepoint = r;
1303
1304 if (r != 0)
1305 {
1306 if (r == 1 && lwp->exit_jump_pad_bkpt == NULL)
1307 {
1308 /* Haven't executed the original instruction yet.
1309 Set breakpoint there, and wait till it's hit,
1310 then single-step until exiting the jump pad. */
1311 lwp->exit_jump_pad_bkpt
1312 = set_breakpoint_at (status.adjusted_insn_addr, NULL);
1313 }
1314
1315 if (debug_threads)
1316 fprintf (stderr, "\
1317Checking whether LWP %ld needs to move out of the jump pad...it does\n",
1318 lwpid_of (lwp));
0cccb683 1319 current_inferior = saved_inferior;
fa593d66
PA
1320
1321 return 1;
1322 }
1323 }
1324 else
1325 {
1326 /* If we get a synchronous signal while collecting, *and*
1327 while executing the (relocated) original instruction,
1328 reset the PC to point at the tpoint address, before
1329 reporting to GDB. Otherwise, it's an IPA lib bug: just
1330 report the signal to GDB, and pray for the best. */
1331
1332 lwp->collecting_fast_tracepoint = 0;
1333
1334 if (r != 0
1335 && (status.adjusted_insn_addr <= lwp->stop_pc
1336 && lwp->stop_pc < status.adjusted_insn_addr_end))
1337 {
1338 siginfo_t info;
1339 struct regcache *regcache;
1340
1341 /* The si_addr on a few signals references the address
1342 of the faulting instruction. Adjust that as
1343 well. */
1344 if ((WSTOPSIG (*wstat) == SIGILL
1345 || WSTOPSIG (*wstat) == SIGFPE
1346 || WSTOPSIG (*wstat) == SIGBUS
1347 || WSTOPSIG (*wstat) == SIGSEGV)
1348 && ptrace (PTRACE_GETSIGINFO, lwpid_of (lwp), 0, &info) == 0
1349 /* Final check just to make sure we don't clobber
1350 the siginfo of non-kernel-sent signals. */
1351 && (uintptr_t) info.si_addr == lwp->stop_pc)
1352 {
1353 info.si_addr = (void *) (uintptr_t) status.tpoint_addr;
1354 ptrace (PTRACE_SETSIGINFO, lwpid_of (lwp), 0, &info);
1355 }
1356
1357 regcache = get_thread_regcache (get_lwp_thread (lwp), 1);
1358 (*the_low_target.set_pc) (regcache, status.tpoint_addr);
1359 lwp->stop_pc = status.tpoint_addr;
1360
1361 /* Cancel any fast tracepoint lock this thread was
1362 holding. */
1363 force_unlock_trace_buffer ();
1364 }
1365
1366 if (lwp->exit_jump_pad_bkpt != NULL)
1367 {
1368 if (debug_threads)
1369 fprintf (stderr,
1370 "Cancelling fast exit-jump-pad: removing bkpt. "
1371 "stopping all threads momentarily.\n");
1372
1373 stop_all_lwps (1, lwp);
1374 cancel_breakpoints ();
1375
1376 delete_breakpoint (lwp->exit_jump_pad_bkpt);
1377 lwp->exit_jump_pad_bkpt = NULL;
1378
1379 unstop_all_lwps (1, lwp);
1380
1381 gdb_assert (lwp->suspended >= 0);
1382 }
1383 }
1384 }
1385
1386 if (debug_threads)
1387 fprintf (stderr, "\
1388Checking whether LWP %ld needs to move out of the jump pad...no\n",
1389 lwpid_of (lwp));
0cccb683
YQ
1390
1391 current_inferior = saved_inferior;
fa593d66
PA
1392 return 0;
1393}
1394
1395/* Enqueue one signal in the "signals to report later when out of the
1396 jump pad" list. */
1397
1398static void
1399enqueue_one_deferred_signal (struct lwp_info *lwp, int *wstat)
1400{
1401 struct pending_signals *p_sig;
1402
1403 if (debug_threads)
1404 fprintf (stderr, "\
1405Deferring signal %d for LWP %ld.\n", WSTOPSIG (*wstat), lwpid_of (lwp));
1406
1407 if (debug_threads)
1408 {
1409 struct pending_signals *sig;
1410
1411 for (sig = lwp->pending_signals_to_report;
1412 sig != NULL;
1413 sig = sig->prev)
1414 fprintf (stderr,
1415 " Already queued %d\n",
1416 sig->signal);
1417
1418 fprintf (stderr, " (no more currently queued signals)\n");
1419 }
1420
1a981360
PA
1421 /* Don't enqueue non-RT signals if they are already in the deferred
1422 queue. (SIGSTOP being the easiest signal to see ending up here
1423 twice) */
1424 if (WSTOPSIG (*wstat) < __SIGRTMIN)
1425 {
1426 struct pending_signals *sig;
1427
1428 for (sig = lwp->pending_signals_to_report;
1429 sig != NULL;
1430 sig = sig->prev)
1431 {
1432 if (sig->signal == WSTOPSIG (*wstat))
1433 {
1434 if (debug_threads)
1435 fprintf (stderr,
1436 "Not requeuing already queued non-RT signal %d"
1437 " for LWP %ld\n",
1438 sig->signal,
1439 lwpid_of (lwp));
1440 return;
1441 }
1442 }
1443 }
1444
fa593d66
PA
1445 p_sig = xmalloc (sizeof (*p_sig));
1446 p_sig->prev = lwp->pending_signals_to_report;
1447 p_sig->signal = WSTOPSIG (*wstat);
1448 memset (&p_sig->info, 0, sizeof (siginfo_t));
1449 ptrace (PTRACE_GETSIGINFO, lwpid_of (lwp), 0, &p_sig->info);
1450
1451 lwp->pending_signals_to_report = p_sig;
1452}
1453
1454/* Dequeue one signal from the "signals to report later when out of
1455 the jump pad" list. */
1456
1457static int
1458dequeue_one_deferred_signal (struct lwp_info *lwp, int *wstat)
1459{
1460 if (lwp->pending_signals_to_report != NULL)
1461 {
1462 struct pending_signals **p_sig;
1463
1464 p_sig = &lwp->pending_signals_to_report;
1465 while ((*p_sig)->prev != NULL)
1466 p_sig = &(*p_sig)->prev;
1467
1468 *wstat = W_STOPCODE ((*p_sig)->signal);
1469 if ((*p_sig)->info.si_signo != 0)
1470 ptrace (PTRACE_SETSIGINFO, lwpid_of (lwp), 0, &(*p_sig)->info);
1471 free (*p_sig);
1472 *p_sig = NULL;
1473
1474 if (debug_threads)
1475 fprintf (stderr, "Reporting deferred signal %d for LWP %ld.\n",
1476 WSTOPSIG (*wstat), lwpid_of (lwp));
1477
1478 if (debug_threads)
1479 {
1480 struct pending_signals *sig;
1481
1482 for (sig = lwp->pending_signals_to_report;
1483 sig != NULL;
1484 sig = sig->prev)
1485 fprintf (stderr,
1486 " Still queued %d\n",
1487 sig->signal);
1488
1489 fprintf (stderr, " (no more queued signals)\n");
1490 }
1491
1492 return 1;
1493 }
1494
1495 return 0;
1496}
1497
d50171e4
PA
1498/* Arrange for a breakpoint to be hit again later. We don't keep the
1499 SIGTRAP status and don't forward the SIGTRAP signal to the LWP. We
1500 will handle the current event, eventually we will resume this LWP,
1501 and this breakpoint will trap again. */
1502
1503static int
1504cancel_breakpoint (struct lwp_info *lwp)
1505{
1506 struct thread_info *saved_inferior;
d50171e4
PA
1507
1508 /* There's nothing to do if we don't support breakpoints. */
1509 if (!supports_breakpoints ())
1510 return 0;
1511
d50171e4
PA
1512 /* breakpoint_at reads from current inferior. */
1513 saved_inferior = current_inferior;
1514 current_inferior = get_lwp_thread (lwp);
1515
1516 if ((*the_low_target.breakpoint_at) (lwp->stop_pc))
1517 {
1518 if (debug_threads)
1519 fprintf (stderr,
1520 "CB: Push back breakpoint for %s\n",
fc7238bb 1521 target_pid_to_str (ptid_of (lwp)));
d50171e4
PA
1522
1523 /* Back up the PC if necessary. */
1524 if (the_low_target.decr_pc_after_break)
1525 {
1526 struct regcache *regcache
fc7238bb 1527 = get_thread_regcache (current_inferior, 1);
d50171e4
PA
1528 (*the_low_target.set_pc) (regcache, lwp->stop_pc);
1529 }
1530
1531 current_inferior = saved_inferior;
1532 return 1;
1533 }
1534 else
1535 {
1536 if (debug_threads)
1537 fprintf (stderr,
1538 "CB: No breakpoint found at %s for [%s]\n",
1539 paddress (lwp->stop_pc),
fc7238bb 1540 target_pid_to_str (ptid_of (lwp)));
d50171e4
PA
1541 }
1542
1543 current_inferior = saved_inferior;
1544 return 0;
1545}
1546
1547/* When the event-loop is doing a step-over, this points at the thread
1548 being stepped. */
1549ptid_t step_over_bkpt;
1550
bd99dc85
PA
1551/* Wait for an event from child PID. If PID is -1, wait for any
1552 child. Store the stop status through the status pointer WSTAT.
1553 OPTIONS is passed to the waitpid call. Return 0 if no child stop
1554 event was found and OPTIONS contains WNOHANG. Return the PID of
1555 the stopped child otherwise. */
1556
0d62e5e8 1557static int
d8301ad1 1558linux_wait_for_event (ptid_t ptid, int *wstat, int options)
0d62e5e8 1559{
d50171e4 1560 struct lwp_info *event_child, *requested_child;
d8301ad1 1561 ptid_t wait_ptid;
d50171e4 1562
d50171e4
PA
1563 event_child = NULL;
1564 requested_child = NULL;
0d62e5e8 1565
95954743 1566 /* Check for a lwp with a pending status. */
bd99dc85 1567
e825046f 1568 if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
0d62e5e8 1569 {
54a0b537 1570 event_child = (struct lwp_info *)
d50171e4 1571 find_inferior (&all_lwps, status_pending_p_callback, &ptid);
0d62e5e8 1572 if (debug_threads && event_child)
bd99dc85 1573 fprintf (stderr, "Got a pending child %ld\n", lwpid_of (event_child));
0d62e5e8
DJ
1574 }
1575 else
1576 {
95954743 1577 requested_child = find_lwp_pid (ptid);
d50171e4 1578
fa593d66
PA
1579 if (!stopping_threads
1580 && requested_child->status_pending_p
1581 && requested_child->collecting_fast_tracepoint)
1582 {
1583 enqueue_one_deferred_signal (requested_child,
1584 &requested_child->status_pending);
1585 requested_child->status_pending_p = 0;
1586 requested_child->status_pending = 0;
1587 linux_resume_one_lwp (requested_child, 0, 0, NULL);
1588 }
1589
1590 if (requested_child->suspended
1591 && requested_child->status_pending_p)
1592 fatal ("requesting an event out of a suspended child?");
1593
d50171e4 1594 if (requested_child->status_pending_p)
bd99dc85 1595 event_child = requested_child;
0d62e5e8 1596 }
611cb4a5 1597
0d62e5e8
DJ
1598 if (event_child != NULL)
1599 {
bd99dc85
PA
1600 if (debug_threads)
1601 fprintf (stderr, "Got an event from pending child %ld (%04x)\n",
1602 lwpid_of (event_child), event_child->status_pending);
1603 *wstat = event_child->status_pending;
1604 event_child->status_pending_p = 0;
1605 event_child->status_pending = 0;
1606 current_inferior = get_lwp_thread (event_child);
1607 return lwpid_of (event_child);
0d62e5e8
DJ
1608 }
1609
d8301ad1
JK
1610 if (ptid_is_pid (ptid))
1611 {
1612 /* A request to wait for a specific tgid. This is not possible
1613 with waitpid, so instead, we wait for any child, and leave
1614 children we're not interested in right now with a pending
1615 status to report later. */
1616 wait_ptid = minus_one_ptid;
1617 }
1618 else
1619 wait_ptid = ptid;
1620
0d62e5e8
DJ
1621 /* We only enter this loop if no process has a pending wait status. Thus
1622 any action taken in response to a wait status inside this loop is
1623 responding as soon as we detect the status, not after any pending
1624 events. */
1625 while (1)
1626 {
d8301ad1 1627 event_child = linux_wait_for_lwp (wait_ptid, wstat, options);
0d62e5e8 1628
bd99dc85 1629 if ((options & WNOHANG) && event_child == NULL)
d50171e4
PA
1630 {
1631 if (debug_threads)
1632 fprintf (stderr, "WNOHANG set, no event found\n");
1633 return 0;
1634 }
0d62e5e8
DJ
1635
1636 if (event_child == NULL)
1637 error ("event from unknown child");
611cb4a5 1638
d8301ad1
JK
1639 if (ptid_is_pid (ptid)
1640 && ptid_get_pid (ptid) != ptid_get_pid (ptid_of (event_child)))
1641 {
1642 if (! WIFSTOPPED (*wstat))
1643 mark_lwp_dead (event_child, *wstat);
1644 else
1645 {
1646 event_child->status_pending_p = 1;
1647 event_child->status_pending = *wstat;
1648 }
1649 continue;
1650 }
1651
bd99dc85 1652 current_inferior = get_lwp_thread (event_child);
0d62e5e8 1653
89be2091 1654 /* Check for thread exit. */
bd99dc85 1655 if (! WIFSTOPPED (*wstat))
0d62e5e8 1656 {
89be2091 1657 if (debug_threads)
95954743 1658 fprintf (stderr, "LWP %ld exiting\n", lwpid_of (event_child));
89be2091
DJ
1659
1660 /* If the last thread is exiting, just return. */
95954743 1661 if (last_thread_of_process_p (current_inferior))
bd99dc85
PA
1662 {
1663 if (debug_threads)
95954743
PA
1664 fprintf (stderr, "LWP %ld is last lwp of process\n",
1665 lwpid_of (event_child));
bd99dc85
PA
1666 return lwpid_of (event_child);
1667 }
89be2091 1668
bd99dc85
PA
1669 if (!non_stop)
1670 {
1671 current_inferior = (struct thread_info *) all_threads.head;
1672 if (debug_threads)
1673 fprintf (stderr, "Current inferior is now %ld\n",
1674 lwpid_of (get_thread_lwp (current_inferior)));
1675 }
1676 else
1677 {
1678 current_inferior = NULL;
1679 if (debug_threads)
1680 fprintf (stderr, "Current inferior is now <NULL>\n");
1681 }
89be2091
DJ
1682
1683 /* If we were waiting for this particular child to do something...
1684 well, it did something. */
bd99dc85 1685 if (requested_child != NULL)
d50171e4
PA
1686 {
1687 int lwpid = lwpid_of (event_child);
1688
1689 /* Cancel the step-over operation --- the thread that
1690 started it is gone. */
1691 if (finish_step_over (event_child))
7984d532 1692 unstop_all_lwps (1, event_child);
d50171e4
PA
1693 delete_lwp (event_child);
1694 return lwpid;
1695 }
1696
1697 delete_lwp (event_child);
89be2091
DJ
1698
1699 /* Wait for a more interesting event. */
1700 continue;
1701 }
1702
a6dbe5df
PA
1703 if (event_child->must_set_ptrace_flags)
1704 {
1e7fc18c 1705 linux_enable_event_reporting (lwpid_of (event_child));
a6dbe5df
PA
1706 event_child->must_set_ptrace_flags = 0;
1707 }
1708
bd99dc85
PA
1709 if (WIFSTOPPED (*wstat) && WSTOPSIG (*wstat) == SIGTRAP
1710 && *wstat >> 16 != 0)
24a09b5f 1711 {
bd99dc85 1712 handle_extended_wait (event_child, *wstat);
24a09b5f
DJ
1713 continue;
1714 }
1715
d50171e4
PA
1716 if (WIFSTOPPED (*wstat)
1717 && WSTOPSIG (*wstat) == SIGSTOP
1718 && event_child->stop_expected)
1719 {
1720 int should_stop;
1721
1722 if (debug_threads)
1723 fprintf (stderr, "Expected stop.\n");
1724 event_child->stop_expected = 0;
1725
8336d594 1726 should_stop = (current_inferior->last_resume_kind == resume_stop
d50171e4
PA
1727 || stopping_threads);
1728
1729 if (!should_stop)
1730 {
1731 linux_resume_one_lwp (event_child,
1732 event_child->stepping, 0, NULL);
1733 continue;
1734 }
1735 }
1736
bd99dc85 1737 return lwpid_of (event_child);
611cb4a5 1738 }
0d62e5e8 1739
611cb4a5
DJ
1740 /* NOTREACHED */
1741 return 0;
1742}
1743
6bf5e0ba
PA
1744/* Count the LWP's that have had events. */
1745
1746static int
1747count_events_callback (struct inferior_list_entry *entry, void *data)
1748{
1749 struct lwp_info *lp = (struct lwp_info *) entry;
8336d594 1750 struct thread_info *thread = get_lwp_thread (lp);
6bf5e0ba
PA
1751 int *count = data;
1752
1753 gdb_assert (count != NULL);
1754
1755 /* Count only resumed LWPs that have a SIGTRAP event pending that
1756 should be reported to GDB. */
8336d594
PA
1757 if (thread->last_status.kind == TARGET_WAITKIND_IGNORE
1758 && thread->last_resume_kind != resume_stop
6bf5e0ba
PA
1759 && lp->status_pending_p
1760 && WIFSTOPPED (lp->status_pending)
1761 && WSTOPSIG (lp->status_pending) == SIGTRAP
1762 && !breakpoint_inserted_here (lp->stop_pc))
1763 (*count)++;
1764
1765 return 0;
1766}
1767
1768/* Select the LWP (if any) that is currently being single-stepped. */
1769
1770static int
1771select_singlestep_lwp_callback (struct inferior_list_entry *entry, void *data)
1772{
1773 struct lwp_info *lp = (struct lwp_info *) entry;
8336d594 1774 struct thread_info *thread = get_lwp_thread (lp);
6bf5e0ba 1775
8336d594
PA
1776 if (thread->last_status.kind == TARGET_WAITKIND_IGNORE
1777 && thread->last_resume_kind == resume_step
6bf5e0ba
PA
1778 && lp->status_pending_p)
1779 return 1;
1780 else
1781 return 0;
1782}
1783
1784/* Select the Nth LWP that has had a SIGTRAP event that should be
1785 reported to GDB. */
1786
1787static int
1788select_event_lwp_callback (struct inferior_list_entry *entry, void *data)
1789{
1790 struct lwp_info *lp = (struct lwp_info *) entry;
8336d594 1791 struct thread_info *thread = get_lwp_thread (lp);
6bf5e0ba
PA
1792 int *selector = data;
1793
1794 gdb_assert (selector != NULL);
1795
1796 /* Select only resumed LWPs that have a SIGTRAP event pending. */
8336d594
PA
1797 if (thread->last_resume_kind != resume_stop
1798 && thread->last_status.kind == TARGET_WAITKIND_IGNORE
6bf5e0ba
PA
1799 && lp->status_pending_p
1800 && WIFSTOPPED (lp->status_pending)
1801 && WSTOPSIG (lp->status_pending) == SIGTRAP
1802 && !breakpoint_inserted_here (lp->stop_pc))
1803 if ((*selector)-- == 0)
1804 return 1;
1805
1806 return 0;
1807}
1808
1809static int
1810cancel_breakpoints_callback (struct inferior_list_entry *entry, void *data)
1811{
1812 struct lwp_info *lp = (struct lwp_info *) entry;
8336d594 1813 struct thread_info *thread = get_lwp_thread (lp);
6bf5e0ba
PA
1814 struct lwp_info *event_lp = data;
1815
1816 /* Leave the LWP that has been elected to receive a SIGTRAP alone. */
1817 if (lp == event_lp)
1818 return 0;
1819
1820 /* If a LWP other than the LWP that we're reporting an event for has
1821 hit a GDB breakpoint (as opposed to some random trap signal),
1822 then just arrange for it to hit it again later. We don't keep
1823 the SIGTRAP status and don't forward the SIGTRAP signal to the
1824 LWP. We will handle the current event, eventually we will resume
1825 all LWPs, and this one will get its breakpoint trap again.
1826
1827 If we do not do this, then we run the risk that the user will
1828 delete or disable the breakpoint, but the LWP will have already
1829 tripped on it. */
1830
8336d594
PA
1831 if (thread->last_resume_kind != resume_stop
1832 && thread->last_status.kind == TARGET_WAITKIND_IGNORE
6bf5e0ba
PA
1833 && lp->status_pending_p
1834 && WIFSTOPPED (lp->status_pending)
1835 && WSTOPSIG (lp->status_pending) == SIGTRAP
bdabb078
PA
1836 && !lp->stepping
1837 && !lp->stopped_by_watchpoint
6bf5e0ba
PA
1838 && cancel_breakpoint (lp))
1839 /* Throw away the SIGTRAP. */
1840 lp->status_pending_p = 0;
1841
1842 return 0;
1843}
1844
7984d532
PA
1845static void
1846linux_cancel_breakpoints (void)
1847{
1848 find_inferior (&all_lwps, cancel_breakpoints_callback, NULL);
1849}
1850
6bf5e0ba
PA
1851/* Select one LWP out of those that have events pending. */
1852
1853static void
1854select_event_lwp (struct lwp_info **orig_lp)
1855{
1856 int num_events = 0;
1857 int random_selector;
1858 struct lwp_info *event_lp;
1859
1860 /* Give preference to any LWP that is being single-stepped. */
1861 event_lp
1862 = (struct lwp_info *) find_inferior (&all_lwps,
1863 select_singlestep_lwp_callback, NULL);
1864 if (event_lp != NULL)
1865 {
1866 if (debug_threads)
1867 fprintf (stderr,
1868 "SEL: Select single-step %s\n",
1869 target_pid_to_str (ptid_of (event_lp)));
1870 }
1871 else
1872 {
1873 /* No single-stepping LWP. Select one at random, out of those
1874 which have had SIGTRAP events. */
1875
1876 /* First see how many SIGTRAP events we have. */
1877 find_inferior (&all_lwps, count_events_callback, &num_events);
1878
1879 /* Now randomly pick a LWP out of those that have had a SIGTRAP. */
1880 random_selector = (int)
1881 ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
1882
1883 if (debug_threads && num_events > 1)
1884 fprintf (stderr,
1885 "SEL: Found %d SIGTRAP events, selecting #%d\n",
1886 num_events, random_selector);
1887
1888 event_lp = (struct lwp_info *) find_inferior (&all_lwps,
1889 select_event_lwp_callback,
1890 &random_selector);
1891 }
1892
1893 if (event_lp != NULL)
1894 {
1895 /* Switch the event LWP. */
1896 *orig_lp = event_lp;
1897 }
1898}
1899
7984d532
PA
1900/* Decrement the suspend count of an LWP. */
1901
1902static int
1903unsuspend_one_lwp (struct inferior_list_entry *entry, void *except)
1904{
1905 struct lwp_info *lwp = (struct lwp_info *) entry;
1906
1907 /* Ignore EXCEPT. */
1908 if (lwp == except)
1909 return 0;
1910
1911 lwp->suspended--;
1912
1913 gdb_assert (lwp->suspended >= 0);
1914 return 0;
1915}
1916
1917/* Decrement the suspend count of all LWPs, except EXCEPT, if non
1918 NULL. */
1919
1920static void
1921unsuspend_all_lwps (struct lwp_info *except)
1922{
1923 find_inferior (&all_lwps, unsuspend_one_lwp, except);
1924}
1925
fa593d66
PA
1926static void move_out_of_jump_pad_callback (struct inferior_list_entry *entry);
1927static int stuck_in_jump_pad_callback (struct inferior_list_entry *entry,
1928 void *data);
1929static int lwp_running (struct inferior_list_entry *entry, void *data);
1930static ptid_t linux_wait_1 (ptid_t ptid,
1931 struct target_waitstatus *ourstatus,
1932 int target_options);
1933
1934/* Stabilize threads (move out of jump pads).
1935
1936 If a thread is midway collecting a fast tracepoint, we need to
1937 finish the collection and move it out of the jump pad before
1938 reporting the signal.
1939
1940 This avoids recursion while collecting (when a signal arrives
1941 midway, and the signal handler itself collects), which would trash
1942 the trace buffer. In case the user set a breakpoint in a signal
1943 handler, this avoids the backtrace showing the jump pad, etc..
1944 Most importantly, there are certain things we can't do safely if
1945 threads are stopped in a jump pad (or in its callee's). For
1946 example:
1947
1948 - starting a new trace run. A thread still collecting the
1949 previous run, could trash the trace buffer when resumed. The trace
1950 buffer control structures would have been reset but the thread had
1951 no way to tell. The thread could even midway memcpy'ing to the
1952 buffer, which would mean that when resumed, it would clobber the
1953 trace buffer that had been set for a new run.
1954
1955 - we can't rewrite/reuse the jump pads for new tracepoints
1956 safely. Say you do tstart while a thread is stopped midway while
1957 collecting. When the thread is later resumed, it finishes the
1958 collection, and returns to the jump pad, to execute the original
1959 instruction that was under the tracepoint jump at the time the
1960 older run had been started. If the jump pad had been rewritten
1961 since for something else in the new run, the thread would now
1962 execute the wrong / random instructions. */
1963
1964static void
1965linux_stabilize_threads (void)
1966{
1967 struct thread_info *save_inferior;
1968 struct lwp_info *lwp_stuck;
1969
1970 lwp_stuck
1971 = (struct lwp_info *) find_inferior (&all_lwps,
1972 stuck_in_jump_pad_callback, NULL);
1973 if (lwp_stuck != NULL)
1974 {
b4d51a55
PA
1975 if (debug_threads)
1976 fprintf (stderr, "can't stabilize, LWP %ld is stuck in jump pad\n",
1977 lwpid_of (lwp_stuck));
fa593d66
PA
1978 return;
1979 }
1980
1981 save_inferior = current_inferior;
1982
1983 stabilizing_threads = 1;
1984
1985 /* Kick 'em all. */
1986 for_each_inferior (&all_lwps, move_out_of_jump_pad_callback);
1987
1988 /* Loop until all are stopped out of the jump pads. */
1989 while (find_inferior (&all_lwps, lwp_running, NULL) != NULL)
1990 {
1991 struct target_waitstatus ourstatus;
1992 struct lwp_info *lwp;
fa593d66
PA
1993 int wstat;
1994
1995 /* Note that we go through the full wait even loop. While
1996 moving threads out of jump pad, we need to be able to step
1997 over internal breakpoints and such. */
32fcada3 1998 linux_wait_1 (minus_one_ptid, &ourstatus, 0);
fa593d66
PA
1999
2000 if (ourstatus.kind == TARGET_WAITKIND_STOPPED)
2001 {
2002 lwp = get_thread_lwp (current_inferior);
2003
2004 /* Lock it. */
2005 lwp->suspended++;
2006
2007 if (ourstatus.value.sig != TARGET_SIGNAL_0
2008 || current_inferior->last_resume_kind == resume_stop)
2009 {
2010 wstat = W_STOPCODE (target_signal_to_host (ourstatus.value.sig));
2011 enqueue_one_deferred_signal (lwp, &wstat);
2012 }
2013 }
2014 }
2015
2016 find_inferior (&all_lwps, unsuspend_one_lwp, NULL);
2017
2018 stabilizing_threads = 0;
2019
2020 current_inferior = save_inferior;
2021
b4d51a55 2022 if (debug_threads)
fa593d66 2023 {
b4d51a55
PA
2024 lwp_stuck
2025 = (struct lwp_info *) find_inferior (&all_lwps,
2026 stuck_in_jump_pad_callback, NULL);
2027 if (lwp_stuck != NULL)
fa593d66
PA
2028 fprintf (stderr, "couldn't stabilize, LWP %ld got stuck in jump pad\n",
2029 lwpid_of (lwp_stuck));
2030 }
2031}
2032
0d62e5e8 2033/* Wait for process, returns status. */
da6d8c04 2034
95954743
PA
2035static ptid_t
2036linux_wait_1 (ptid_t ptid,
2037 struct target_waitstatus *ourstatus, int target_options)
da6d8c04 2038{
e5f1222d 2039 int w;
fc7238bb 2040 struct lwp_info *event_child;
bd99dc85 2041 int options;
bd99dc85 2042 int pid;
6bf5e0ba
PA
2043 int step_over_finished;
2044 int bp_explains_trap;
2045 int maybe_internal_trap;
2046 int report_to_gdb;
219f2f23 2047 int trace_event;
bd99dc85
PA
2048
2049 /* Translate generic target options into linux options. */
2050 options = __WALL;
2051 if (target_options & TARGET_WNOHANG)
2052 options |= WNOHANG;
0d62e5e8
DJ
2053
2054retry:
fa593d66
PA
2055 bp_explains_trap = 0;
2056 trace_event = 0;
bd99dc85
PA
2057 ourstatus->kind = TARGET_WAITKIND_IGNORE;
2058
0d62e5e8
DJ
2059 /* If we were only supposed to resume one thread, only wait for
2060 that thread - if it's still alive. If it died, however - which
2061 can happen if we're coming from the thread death case below -
2062 then we need to make sure we restart the other threads. We could
2063 pick a thread at random or restart all; restarting all is less
2064 arbitrary. */
95954743
PA
2065 if (!non_stop
2066 && !ptid_equal (cont_thread, null_ptid)
2067 && !ptid_equal (cont_thread, minus_one_ptid))
0d62e5e8 2068 {
fc7238bb
PA
2069 struct thread_info *thread;
2070
bd99dc85
PA
2071 thread = (struct thread_info *) find_inferior_id (&all_threads,
2072 cont_thread);
0d62e5e8
DJ
2073
2074 /* No stepping, no signal - unless one is pending already, of course. */
bd99dc85 2075 if (thread == NULL)
64386c31
DJ
2076 {
2077 struct thread_resume resume_info;
95954743 2078 resume_info.thread = minus_one_ptid;
bd99dc85
PA
2079 resume_info.kind = resume_continue;
2080 resume_info.sig = 0;
2bd7c093 2081 linux_resume (&resume_info, 1);
64386c31 2082 }
bd99dc85 2083 else
95954743 2084 ptid = cont_thread;
0d62e5e8 2085 }
da6d8c04 2086
6bf5e0ba
PA
2087 if (ptid_equal (step_over_bkpt, null_ptid))
2088 pid = linux_wait_for_event (ptid, &w, options);
2089 else
2090 {
2091 if (debug_threads)
2092 fprintf (stderr, "step_over_bkpt set [%s], doing a blocking wait\n",
2093 target_pid_to_str (step_over_bkpt));
2094 pid = linux_wait_for_event (step_over_bkpt, &w, options & ~WNOHANG);
2095 }
2096
bd99dc85 2097 if (pid == 0) /* only if TARGET_WNOHANG */
95954743 2098 return null_ptid;
bd99dc85 2099
6bf5e0ba 2100 event_child = get_thread_lwp (current_inferior);
da6d8c04 2101
0d62e5e8
DJ
2102 /* If we are waiting for a particular child, and it exited,
2103 linux_wait_for_event will return its exit status. Similarly if
2104 the last child exited. If this is not the last child, however,
2105 do not report it as exited until there is a 'thread exited' response
2106 available in the remote protocol. Instead, just wait for another event.
2107 This should be safe, because if the thread crashed we will already
2108 have reported the termination signal to GDB; that should stop any
2109 in-progress stepping operations, etc.
2110
2111 Report the exit status of the last thread to exit. This matches
2112 LinuxThreads' behavior. */
2113
95954743 2114 if (last_thread_of_process_p (current_inferior))
da6d8c04 2115 {
bd99dc85 2116 if (WIFEXITED (w) || WIFSIGNALED (w))
0d62e5e8 2117 {
bd99dc85
PA
2118 if (WIFEXITED (w))
2119 {
2120 ourstatus->kind = TARGET_WAITKIND_EXITED;
2121 ourstatus->value.integer = WEXITSTATUS (w);
2122
2123 if (debug_threads)
493e2a69
MS
2124 fprintf (stderr,
2125 "\nChild exited with retcode = %x \n",
2126 WEXITSTATUS (w));
bd99dc85
PA
2127 }
2128 else
2129 {
2130 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2131 ourstatus->value.sig = target_signal_from_host (WTERMSIG (w));
2132
2133 if (debug_threads)
493e2a69
MS
2134 fprintf (stderr,
2135 "\nChild terminated with signal = %x \n",
2136 WTERMSIG (w));
bd99dc85
PA
2137
2138 }
5b1c542e 2139
3e4c1235 2140 return ptid_of (event_child);
0d62e5e8 2141 }
da6d8c04 2142 }
0d62e5e8 2143 else
da6d8c04 2144 {
0d62e5e8
DJ
2145 if (!WIFSTOPPED (w))
2146 goto retry;
da6d8c04
DJ
2147 }
2148
6bf5e0ba
PA
2149 /* If this event was not handled before, and is not a SIGTRAP, we
2150 report it. SIGILL and SIGSEGV are also treated as traps in case
2151 a breakpoint is inserted at the current PC. If this target does
2152 not support internal breakpoints at all, we also report the
2153 SIGTRAP without further processing; it's of no concern to us. */
2154 maybe_internal_trap
2155 = (supports_breakpoints ()
2156 && (WSTOPSIG (w) == SIGTRAP
2157 || ((WSTOPSIG (w) == SIGILL
2158 || WSTOPSIG (w) == SIGSEGV)
2159 && (*the_low_target.breakpoint_at) (event_child->stop_pc))));
2160
2161 if (maybe_internal_trap)
2162 {
2163 /* Handle anything that requires bookkeeping before deciding to
2164 report the event or continue waiting. */
2165
2166 /* First check if we can explain the SIGTRAP with an internal
2167 breakpoint, or if we should possibly report the event to GDB.
2168 Do this before anything that may remove or insert a
2169 breakpoint. */
2170 bp_explains_trap = breakpoint_inserted_here (event_child->stop_pc);
2171
2172 /* We have a SIGTRAP, possibly a step-over dance has just
2173 finished. If so, tweak the state machine accordingly,
2174 reinsert breakpoints and delete any reinsert (software
2175 single-step) breakpoints. */
2176 step_over_finished = finish_step_over (event_child);
2177
2178 /* Now invoke the callbacks of any internal breakpoints there. */
2179 check_breakpoints (event_child->stop_pc);
2180
219f2f23
PA
2181 /* Handle tracepoint data collecting. This may overflow the
2182 trace buffer, and cause a tracing stop, removing
2183 breakpoints. */
2184 trace_event = handle_tracepoints (event_child);
2185
6bf5e0ba
PA
2186 if (bp_explains_trap)
2187 {
2188 /* If we stepped or ran into an internal breakpoint, we've
2189 already handled it. So next time we resume (from this
2190 PC), we should step over it. */
2191 if (debug_threads)
2192 fprintf (stderr, "Hit a gdbserver breakpoint.\n");
2193
8b07ae33
PA
2194 if (breakpoint_here (event_child->stop_pc))
2195 event_child->need_step_over = 1;
6bf5e0ba
PA
2196 }
2197 }
2198 else
2199 {
2200 /* We have some other signal, possibly a step-over dance was in
2201 progress, and it should be cancelled too. */
2202 step_over_finished = finish_step_over (event_child);
fa593d66
PA
2203 }
2204
2205 /* We have all the data we need. Either report the event to GDB, or
2206 resume threads and keep waiting for more. */
2207
2208 /* If we're collecting a fast tracepoint, finish the collection and
2209 move out of the jump pad before delivering a signal. See
2210 linux_stabilize_threads. */
2211
2212 if (WIFSTOPPED (w)
2213 && WSTOPSIG (w) != SIGTRAP
2214 && supports_fast_tracepoints ()
2215 && in_process_agent_loaded ())
2216 {
2217 if (debug_threads)
2218 fprintf (stderr,
2219 "Got signal %d for LWP %ld. Check if we need "
2220 "to defer or adjust it.\n",
2221 WSTOPSIG (w), lwpid_of (event_child));
2222
2223 /* Allow debugging the jump pad itself. */
2224 if (current_inferior->last_resume_kind != resume_step
2225 && maybe_move_out_of_jump_pad (event_child, &w))
2226 {
2227 enqueue_one_deferred_signal (event_child, &w);
2228
2229 if (debug_threads)
2230 fprintf (stderr,
2231 "Signal %d for LWP %ld deferred (in jump pad)\n",
2232 WSTOPSIG (w), lwpid_of (event_child));
2233
2234 linux_resume_one_lwp (event_child, 0, 0, NULL);
2235 goto retry;
2236 }
2237 }
219f2f23 2238
fa593d66
PA
2239 if (event_child->collecting_fast_tracepoint)
2240 {
2241 if (debug_threads)
2242 fprintf (stderr, "\
2243LWP %ld was trying to move out of the jump pad (%d). \
2244Check if we're already there.\n",
2245 lwpid_of (event_child),
2246 event_child->collecting_fast_tracepoint);
2247
2248 trace_event = 1;
2249
2250 event_child->collecting_fast_tracepoint
2251 = linux_fast_tracepoint_collecting (event_child, NULL);
2252
2253 if (event_child->collecting_fast_tracepoint != 1)
2254 {
2255 /* No longer need this breakpoint. */
2256 if (event_child->exit_jump_pad_bkpt != NULL)
2257 {
2258 if (debug_threads)
2259 fprintf (stderr,
2260 "No longer need exit-jump-pad bkpt; removing it."
2261 "stopping all threads momentarily.\n");
2262
2263 /* Other running threads could hit this breakpoint.
2264 We don't handle moribund locations like GDB does,
2265 instead we always pause all threads when removing
2266 breakpoints, so that any step-over or
2267 decr_pc_after_break adjustment is always taken
2268 care of while the breakpoint is still
2269 inserted. */
2270 stop_all_lwps (1, event_child);
2271 cancel_breakpoints ();
2272
2273 delete_breakpoint (event_child->exit_jump_pad_bkpt);
2274 event_child->exit_jump_pad_bkpt = NULL;
2275
2276 unstop_all_lwps (1, event_child);
2277
2278 gdb_assert (event_child->suspended >= 0);
2279 }
2280 }
2281
2282 if (event_child->collecting_fast_tracepoint == 0)
2283 {
2284 if (debug_threads)
2285 fprintf (stderr,
2286 "fast tracepoint finished "
2287 "collecting successfully.\n");
2288
2289 /* We may have a deferred signal to report. */
2290 if (dequeue_one_deferred_signal (event_child, &w))
2291 {
2292 if (debug_threads)
2293 fprintf (stderr, "dequeued one signal.\n");
2294 }
3c11dd79 2295 else
fa593d66 2296 {
3c11dd79
PA
2297 if (debug_threads)
2298 fprintf (stderr, "no deferred signals.\n");
fa593d66
PA
2299
2300 if (stabilizing_threads)
2301 {
2302 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2303 ourstatus->value.sig = TARGET_SIGNAL_0;
2304 return ptid_of (event_child);
2305 }
2306 }
2307 }
6bf5e0ba
PA
2308 }
2309
e471f25b
PA
2310 /* Check whether GDB would be interested in this event. */
2311
2312 /* If GDB is not interested in this signal, don't stop other
2313 threads, and don't report it to GDB. Just resume the inferior
2314 right away. We do this for threading-related signals as well as
2315 any that GDB specifically requested we ignore. But never ignore
2316 SIGSTOP if we sent it ourselves, and do not ignore signals when
2317 stepping - they may require special handling to skip the signal
2318 handler. */
2319 /* FIXME drow/2002-06-09: Get signal numbers from the inferior's
2320 thread library? */
2321 if (WIFSTOPPED (w)
2322 && current_inferior->last_resume_kind != resume_step
2323 && (
1a981360 2324#if defined (USE_THREAD_DB) && !defined (__ANDROID__)
e471f25b
PA
2325 (current_process ()->private->thread_db != NULL
2326 && (WSTOPSIG (w) == __SIGRTMIN
2327 || WSTOPSIG (w) == __SIGRTMIN + 1))
2328 ||
2329#endif
2330 (pass_signals[target_signal_from_host (WSTOPSIG (w))]
2331 && !(WSTOPSIG (w) == SIGSTOP
2332 && current_inferior->last_resume_kind == resume_stop))))
2333 {
2334 siginfo_t info, *info_p;
2335
2336 if (debug_threads)
2337 fprintf (stderr, "Ignored signal %d for LWP %ld.\n",
2338 WSTOPSIG (w), lwpid_of (event_child));
2339
2340 if (ptrace (PTRACE_GETSIGINFO, lwpid_of (event_child), 0, &info) == 0)
2341 info_p = &info;
2342 else
2343 info_p = NULL;
2344 linux_resume_one_lwp (event_child, event_child->stepping,
2345 WSTOPSIG (w), info_p);
2346 goto retry;
2347 }
2348
2349 /* If GDB wanted this thread to single step, we always want to
2350 report the SIGTRAP, and let GDB handle it. Watchpoints should
2351 always be reported. So should signals we can't explain. A
2352 SIGTRAP we can't explain could be a GDB breakpoint --- we may or
2353 not support Z0 breakpoints. If we do, we're be able to handle
2354 GDB breakpoints on top of internal breakpoints, by handling the
2355 internal breakpoint and still reporting the event to GDB. If we
2356 don't, we're out of luck, GDB won't see the breakpoint hit. */
6bf5e0ba 2357 report_to_gdb = (!maybe_internal_trap
8336d594 2358 || current_inferior->last_resume_kind == resume_step
6bf5e0ba 2359 || event_child->stopped_by_watchpoint
493e2a69
MS
2360 || (!step_over_finished
2361 && !bp_explains_trap && !trace_event)
8b07ae33 2362 || gdb_breakpoint_here (event_child->stop_pc));
6bf5e0ba
PA
2363
2364 /* We found no reason GDB would want us to stop. We either hit one
2365 of our own breakpoints, or finished an internal step GDB
2366 shouldn't know about. */
2367 if (!report_to_gdb)
2368 {
2369 if (debug_threads)
2370 {
2371 if (bp_explains_trap)
2372 fprintf (stderr, "Hit a gdbserver breakpoint.\n");
2373 if (step_over_finished)
2374 fprintf (stderr, "Step-over finished.\n");
219f2f23
PA
2375 if (trace_event)
2376 fprintf (stderr, "Tracepoint event.\n");
6bf5e0ba
PA
2377 }
2378
2379 /* We're not reporting this breakpoint to GDB, so apply the
2380 decr_pc_after_break adjustment to the inferior's regcache
2381 ourselves. */
2382
2383 if (the_low_target.set_pc != NULL)
2384 {
2385 struct regcache *regcache
2386 = get_thread_regcache (get_lwp_thread (event_child), 1);
2387 (*the_low_target.set_pc) (regcache, event_child->stop_pc);
2388 }
2389
7984d532
PA
2390 /* We may have finished stepping over a breakpoint. If so,
2391 we've stopped and suspended all LWPs momentarily except the
2392 stepping one. This is where we resume them all again. We're
2393 going to keep waiting, so use proceed, which handles stepping
2394 over the next breakpoint. */
6bf5e0ba
PA
2395 if (debug_threads)
2396 fprintf (stderr, "proceeding all threads.\n");
7984d532
PA
2397
2398 if (step_over_finished)
2399 unsuspend_all_lwps (event_child);
2400
6bf5e0ba
PA
2401 proceed_all_lwps ();
2402 goto retry;
2403 }
2404
2405 if (debug_threads)
2406 {
8336d594 2407 if (current_inferior->last_resume_kind == resume_step)
6bf5e0ba
PA
2408 fprintf (stderr, "GDB wanted to single-step, reporting event.\n");
2409 if (event_child->stopped_by_watchpoint)
2410 fprintf (stderr, "Stopped by watchpoint.\n");
8b07ae33
PA
2411 if (gdb_breakpoint_here (event_child->stop_pc))
2412 fprintf (stderr, "Stopped by GDB breakpoint.\n");
6bf5e0ba
PA
2413 if (debug_threads)
2414 fprintf (stderr, "Hit a non-gdbserver trap event.\n");
2415 }
2416
2417 /* Alright, we're going to report a stop. */
2418
fa593d66 2419 if (!non_stop && !stabilizing_threads)
6bf5e0ba
PA
2420 {
2421 /* In all-stop, stop all threads. */
7984d532 2422 stop_all_lwps (0, NULL);
6bf5e0ba
PA
2423
2424 /* If we're not waiting for a specific LWP, choose an event LWP
2425 from among those that have had events. Giving equal priority
2426 to all LWPs that have had events helps prevent
2427 starvation. */
2428 if (ptid_equal (ptid, minus_one_ptid))
2429 {
2430 event_child->status_pending_p = 1;
2431 event_child->status_pending = w;
2432
2433 select_event_lwp (&event_child);
2434
2435 event_child->status_pending_p = 0;
2436 w = event_child->status_pending;
2437 }
2438
2439 /* Now that we've selected our final event LWP, cancel any
2440 breakpoints in other LWPs that have hit a GDB breakpoint.
2441 See the comment in cancel_breakpoints_callback to find out
2442 why. */
2443 find_inferior (&all_lwps, cancel_breakpoints_callback, event_child);
fa593d66
PA
2444
2445 /* Stabilize threads (move out of jump pads). */
2446 stabilize_threads ();
6bf5e0ba
PA
2447 }
2448 else
2449 {
2450 /* If we just finished a step-over, then all threads had been
2451 momentarily paused. In all-stop, that's fine, we want
2452 threads stopped by now anyway. In non-stop, we need to
2453 re-resume threads that GDB wanted to be running. */
2454 if (step_over_finished)
7984d532 2455 unstop_all_lwps (1, event_child);
6bf5e0ba
PA
2456 }
2457
5b1c542e 2458 ourstatus->kind = TARGET_WAITKIND_STOPPED;
5b1c542e 2459
8336d594
PA
2460 if (current_inferior->last_resume_kind == resume_stop
2461 && WSTOPSIG (w) == SIGSTOP)
bd99dc85
PA
2462 {
2463 /* A thread that has been requested to stop by GDB with vCont;t,
2464 and it stopped cleanly, so report as SIG0. The use of
2465 SIGSTOP is an implementation detail. */
2466 ourstatus->value.sig = TARGET_SIGNAL_0;
2467 }
8336d594
PA
2468 else if (current_inferior->last_resume_kind == resume_stop
2469 && WSTOPSIG (w) != SIGSTOP)
bd99dc85
PA
2470 {
2471 /* A thread that has been requested to stop by GDB with vCont;t,
d50171e4 2472 but, it stopped for other reasons. */
bd99dc85
PA
2473 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (w));
2474 }
2475 else
2476 {
2477 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (w));
2478 }
2479
d50171e4
PA
2480 gdb_assert (ptid_equal (step_over_bkpt, null_ptid));
2481
bd99dc85 2482 if (debug_threads)
95954743 2483 fprintf (stderr, "linux_wait ret = %s, %d, %d\n",
6bf5e0ba 2484 target_pid_to_str (ptid_of (event_child)),
bd99dc85
PA
2485 ourstatus->kind,
2486 ourstatus->value.sig);
2487
6bf5e0ba 2488 return ptid_of (event_child);
bd99dc85
PA
2489}
2490
2491/* Get rid of any pending event in the pipe. */
2492static void
2493async_file_flush (void)
2494{
2495 int ret;
2496 char buf;
2497
2498 do
2499 ret = read (linux_event_pipe[0], &buf, 1);
2500 while (ret >= 0 || (ret == -1 && errno == EINTR));
2501}
2502
2503/* Put something in the pipe, so the event loop wakes up. */
2504static void
2505async_file_mark (void)
2506{
2507 int ret;
2508
2509 async_file_flush ();
2510
2511 do
2512 ret = write (linux_event_pipe[1], "+", 1);
2513 while (ret == 0 || (ret == -1 && errno == EINTR));
2514
2515 /* Ignore EAGAIN. If the pipe is full, the event loop will already
2516 be awakened anyway. */
2517}
2518
95954743
PA
2519static ptid_t
2520linux_wait (ptid_t ptid,
2521 struct target_waitstatus *ourstatus, int target_options)
bd99dc85 2522{
95954743 2523 ptid_t event_ptid;
bd99dc85
PA
2524
2525 if (debug_threads)
95954743 2526 fprintf (stderr, "linux_wait: [%s]\n", target_pid_to_str (ptid));
bd99dc85
PA
2527
2528 /* Flush the async file first. */
2529 if (target_is_async_p ())
2530 async_file_flush ();
2531
95954743 2532 event_ptid = linux_wait_1 (ptid, ourstatus, target_options);
bd99dc85
PA
2533
2534 /* If at least one stop was reported, there may be more. A single
2535 SIGCHLD can signal more than one child stop. */
2536 if (target_is_async_p ()
2537 && (target_options & TARGET_WNOHANG) != 0
95954743 2538 && !ptid_equal (event_ptid, null_ptid))
bd99dc85
PA
2539 async_file_mark ();
2540
2541 return event_ptid;
da6d8c04
DJ
2542}
2543
c5f62d5f 2544/* Send a signal to an LWP. */
fd500816
DJ
2545
2546static int
a1928bad 2547kill_lwp (unsigned long lwpid, int signo)
fd500816 2548{
c5f62d5f
DE
2549 /* Use tkill, if possible, in case we are using nptl threads. If tkill
2550 fails, then we are not using nptl threads and we should be using kill. */
fd500816 2551
c5f62d5f
DE
2552#ifdef __NR_tkill
2553 {
2554 static int tkill_failed;
fd500816 2555
c5f62d5f
DE
2556 if (!tkill_failed)
2557 {
2558 int ret;
2559
2560 errno = 0;
2561 ret = syscall (__NR_tkill, lwpid, signo);
2562 if (errno != ENOSYS)
2563 return ret;
2564 tkill_failed = 1;
2565 }
2566 }
fd500816
DJ
2567#endif
2568
2569 return kill (lwpid, signo);
2570}
2571
964e4306
PA
2572void
2573linux_stop_lwp (struct lwp_info *lwp)
2574{
2575 send_sigstop (lwp);
2576}
2577
0d62e5e8 2578static void
02fc4de7 2579send_sigstop (struct lwp_info *lwp)
0d62e5e8 2580{
bd99dc85 2581 int pid;
0d62e5e8 2582
bd99dc85
PA
2583 pid = lwpid_of (lwp);
2584
0d62e5e8
DJ
2585 /* If we already have a pending stop signal for this process, don't
2586 send another. */
54a0b537 2587 if (lwp->stop_expected)
0d62e5e8 2588 {
ae13219e 2589 if (debug_threads)
bd99dc85 2590 fprintf (stderr, "Have pending sigstop for lwp %d\n", pid);
ae13219e 2591
0d62e5e8
DJ
2592 return;
2593 }
2594
2595 if (debug_threads)
bd99dc85 2596 fprintf (stderr, "Sending sigstop to lwp %d\n", pid);
0d62e5e8 2597
d50171e4 2598 lwp->stop_expected = 1;
bd99dc85 2599 kill_lwp (pid, SIGSTOP);
0d62e5e8
DJ
2600}
2601
7984d532
PA
2602static int
2603send_sigstop_callback (struct inferior_list_entry *entry, void *except)
02fc4de7
PA
2604{
2605 struct lwp_info *lwp = (struct lwp_info *) entry;
2606
7984d532
PA
2607 /* Ignore EXCEPT. */
2608 if (lwp == except)
2609 return 0;
2610
02fc4de7 2611 if (lwp->stopped)
7984d532 2612 return 0;
02fc4de7
PA
2613
2614 send_sigstop (lwp);
7984d532
PA
2615 return 0;
2616}
2617
2618/* Increment the suspend count of an LWP, and stop it, if not stopped
2619 yet. */
2620static int
2621suspend_and_send_sigstop_callback (struct inferior_list_entry *entry,
2622 void *except)
2623{
2624 struct lwp_info *lwp = (struct lwp_info *) entry;
2625
2626 /* Ignore EXCEPT. */
2627 if (lwp == except)
2628 return 0;
2629
2630 lwp->suspended++;
2631
2632 return send_sigstop_callback (entry, except);
02fc4de7
PA
2633}
2634
95954743
PA
2635static void
2636mark_lwp_dead (struct lwp_info *lwp, int wstat)
2637{
2638 /* It's dead, really. */
2639 lwp->dead = 1;
2640
2641 /* Store the exit status for later. */
2642 lwp->status_pending_p = 1;
2643 lwp->status_pending = wstat;
2644
95954743
PA
2645 /* Prevent trying to stop it. */
2646 lwp->stopped = 1;
2647
2648 /* No further stops are expected from a dead lwp. */
2649 lwp->stop_expected = 0;
2650}
2651
0d62e5e8
DJ
2652static void
2653wait_for_sigstop (struct inferior_list_entry *entry)
2654{
54a0b537 2655 struct lwp_info *lwp = (struct lwp_info *) entry;
bd99dc85 2656 struct thread_info *saved_inferior;
a1928bad 2657 int wstat;
95954743
PA
2658 ptid_t saved_tid;
2659 ptid_t ptid;
d50171e4 2660 int pid;
0d62e5e8 2661
54a0b537 2662 if (lwp->stopped)
d50171e4
PA
2663 {
2664 if (debug_threads)
2665 fprintf (stderr, "wait_for_sigstop: LWP %ld already stopped\n",
2666 lwpid_of (lwp));
2667 return;
2668 }
0d62e5e8
DJ
2669
2670 saved_inferior = current_inferior;
bd99dc85
PA
2671 if (saved_inferior != NULL)
2672 saved_tid = ((struct inferior_list_entry *) saved_inferior)->id;
2673 else
95954743 2674 saved_tid = null_ptid; /* avoid bogus unused warning */
bd99dc85 2675
95954743 2676 ptid = lwp->head.id;
bd99dc85 2677
d50171e4
PA
2678 if (debug_threads)
2679 fprintf (stderr, "wait_for_sigstop: pulling one event\n");
2680
2681 pid = linux_wait_for_event (ptid, &wstat, __WALL);
0d62e5e8
DJ
2682
2683 /* If we stopped with a non-SIGSTOP signal, save it for later
2684 and record the pending SIGSTOP. If the process exited, just
2685 return. */
d50171e4 2686 if (WIFSTOPPED (wstat))
0d62e5e8
DJ
2687 {
2688 if (debug_threads)
d50171e4
PA
2689 fprintf (stderr, "LWP %ld stopped with signal %d\n",
2690 lwpid_of (lwp), WSTOPSIG (wstat));
c35fafde 2691
d50171e4 2692 if (WSTOPSIG (wstat) != SIGSTOP)
c35fafde
PA
2693 {
2694 if (debug_threads)
d50171e4
PA
2695 fprintf (stderr, "LWP %ld stopped with non-sigstop status %06x\n",
2696 lwpid_of (lwp), wstat);
2697
c35fafde
PA
2698 lwp->status_pending_p = 1;
2699 lwp->status_pending = wstat;
2700 }
0d62e5e8 2701 }
d50171e4 2702 else
95954743
PA
2703 {
2704 if (debug_threads)
d50171e4 2705 fprintf (stderr, "Process %d exited while stopping LWPs\n", pid);
95954743 2706
d50171e4
PA
2707 lwp = find_lwp_pid (pid_to_ptid (pid));
2708 if (lwp)
2709 {
2710 /* Leave this status pending for the next time we're able to
2711 report it. In the mean time, we'll report this lwp as
2712 dead to GDB, so GDB doesn't try to read registers and
2713 memory from it. This can only happen if this was the
2714 last thread of the process; otherwise, PID is removed
2715 from the thread tables before linux_wait_for_event
2716 returns. */
2717 mark_lwp_dead (lwp, wstat);
2718 }
95954743 2719 }
0d62e5e8 2720
bd99dc85 2721 if (saved_inferior == NULL || linux_thread_alive (saved_tid))
0d62e5e8
DJ
2722 current_inferior = saved_inferior;
2723 else
2724 {
2725 if (debug_threads)
2726 fprintf (stderr, "Previously current thread died.\n");
2727
bd99dc85
PA
2728 if (non_stop)
2729 {
2730 /* We can't change the current inferior behind GDB's back,
2731 otherwise, a subsequent command may apply to the wrong
2732 process. */
2733 current_inferior = NULL;
2734 }
2735 else
2736 {
2737 /* Set a valid thread as current. */
2738 set_desired_inferior (0);
2739 }
0d62e5e8
DJ
2740 }
2741}
2742
fa593d66
PA
2743/* Returns true if LWP ENTRY is stopped in a jump pad, and we can't
2744 move it out, because we need to report the stop event to GDB. For
2745 example, if the user puts a breakpoint in the jump pad, it's
2746 because she wants to debug it. */
2747
2748static int
2749stuck_in_jump_pad_callback (struct inferior_list_entry *entry, void *data)
2750{
2751 struct lwp_info *lwp = (struct lwp_info *) entry;
2752 struct thread_info *thread = get_lwp_thread (lwp);
2753
2754 gdb_assert (lwp->suspended == 0);
2755 gdb_assert (lwp->stopped);
2756
2757 /* Allow debugging the jump pad, gdb_collect, etc.. */
2758 return (supports_fast_tracepoints ()
2759 && in_process_agent_loaded ()
2760 && (gdb_breakpoint_here (lwp->stop_pc)
2761 || lwp->stopped_by_watchpoint
2762 || thread->last_resume_kind == resume_step)
2763 && linux_fast_tracepoint_collecting (lwp, NULL));
2764}
2765
2766static void
2767move_out_of_jump_pad_callback (struct inferior_list_entry *entry)
2768{
2769 struct lwp_info *lwp = (struct lwp_info *) entry;
2770 struct thread_info *thread = get_lwp_thread (lwp);
2771 int *wstat;
2772
2773 gdb_assert (lwp->suspended == 0);
2774 gdb_assert (lwp->stopped);
2775
2776 wstat = lwp->status_pending_p ? &lwp->status_pending : NULL;
2777
2778 /* Allow debugging the jump pad, gdb_collect, etc. */
2779 if (!gdb_breakpoint_here (lwp->stop_pc)
2780 && !lwp->stopped_by_watchpoint
2781 && thread->last_resume_kind != resume_step
2782 && maybe_move_out_of_jump_pad (lwp, wstat))
2783 {
2784 if (debug_threads)
2785 fprintf (stderr,
2786 "LWP %ld needs stabilizing (in jump pad)\n",
2787 lwpid_of (lwp));
2788
2789 if (wstat)
2790 {
2791 lwp->status_pending_p = 0;
2792 enqueue_one_deferred_signal (lwp, wstat);
2793
2794 if (debug_threads)
2795 fprintf (stderr,
2796 "Signal %d for LWP %ld deferred "
2797 "(in jump pad)\n",
2798 WSTOPSIG (*wstat), lwpid_of (lwp));
2799 }
2800
2801 linux_resume_one_lwp (lwp, 0, 0, NULL);
2802 }
2803 else
2804 lwp->suspended++;
2805}
2806
2807static int
2808lwp_running (struct inferior_list_entry *entry, void *data)
2809{
2810 struct lwp_info *lwp = (struct lwp_info *) entry;
2811
2812 if (lwp->dead)
2813 return 0;
2814 if (lwp->stopped)
2815 return 0;
2816 return 1;
2817}
2818
7984d532
PA
2819/* Stop all lwps that aren't stopped yet, except EXCEPT, if not NULL.
2820 If SUSPEND, then also increase the suspend count of every LWP,
2821 except EXCEPT. */
2822
0d62e5e8 2823static void
7984d532 2824stop_all_lwps (int suspend, struct lwp_info *except)
0d62e5e8
DJ
2825{
2826 stopping_threads = 1;
7984d532
PA
2827
2828 if (suspend)
2829 find_inferior (&all_lwps, suspend_and_send_sigstop_callback, except);
2830 else
2831 find_inferior (&all_lwps, send_sigstop_callback, except);
54a0b537 2832 for_each_inferior (&all_lwps, wait_for_sigstop);
0d62e5e8
DJ
2833 stopping_threads = 0;
2834}
2835
da6d8c04
DJ
2836/* Resume execution of the inferior process.
2837 If STEP is nonzero, single-step it.
2838 If SIGNAL is nonzero, give it that signal. */
2839
ce3a066d 2840static void
2acc282a 2841linux_resume_one_lwp (struct lwp_info *lwp,
54a0b537 2842 int step, int signal, siginfo_t *info)
da6d8c04 2843{
0d62e5e8 2844 struct thread_info *saved_inferior;
fa593d66 2845 int fast_tp_collecting;
0d62e5e8 2846
54a0b537 2847 if (lwp->stopped == 0)
0d62e5e8
DJ
2848 return;
2849
fa593d66
PA
2850 fast_tp_collecting = lwp->collecting_fast_tracepoint;
2851
2852 gdb_assert (!stabilizing_threads || fast_tp_collecting);
2853
219f2f23
PA
2854 /* Cancel actions that rely on GDB not changing the PC (e.g., the
2855 user used the "jump" command, or "set $pc = foo"). */
2856 if (lwp->stop_pc != get_pc (lwp))
2857 {
2858 /* Collecting 'while-stepping' actions doesn't make sense
2859 anymore. */
2860 release_while_stepping_state_list (get_lwp_thread (lwp));
2861 }
2862
0d62e5e8
DJ
2863 /* If we have pending signals or status, and a new signal, enqueue the
2864 signal. Also enqueue the signal if we are waiting to reinsert a
2865 breakpoint; it will be picked up again below. */
2866 if (signal != 0
fa593d66
PA
2867 && (lwp->status_pending_p
2868 || lwp->pending_signals != NULL
2869 || lwp->bp_reinsert != 0
2870 || fast_tp_collecting))
0d62e5e8
DJ
2871 {
2872 struct pending_signals *p_sig;
bca929d3 2873 p_sig = xmalloc (sizeof (*p_sig));
54a0b537 2874 p_sig->prev = lwp->pending_signals;
0d62e5e8 2875 p_sig->signal = signal;
32ca6d61
DJ
2876 if (info == NULL)
2877 memset (&p_sig->info, 0, sizeof (siginfo_t));
2878 else
2879 memcpy (&p_sig->info, info, sizeof (siginfo_t));
54a0b537 2880 lwp->pending_signals = p_sig;
0d62e5e8
DJ
2881 }
2882
d50171e4
PA
2883 if (lwp->status_pending_p)
2884 {
2885 if (debug_threads)
2886 fprintf (stderr, "Not resuming lwp %ld (%s, signal %d, stop %s);"
2887 " has pending status\n",
2888 lwpid_of (lwp), step ? "step" : "continue", signal,
2889 lwp->stop_expected ? "expected" : "not expected");
2890 return;
2891 }
0d62e5e8
DJ
2892
2893 saved_inferior = current_inferior;
54a0b537 2894 current_inferior = get_lwp_thread (lwp);
0d62e5e8
DJ
2895
2896 if (debug_threads)
1b3f6016 2897 fprintf (stderr, "Resuming lwp %ld (%s, signal %d, stop %s)\n",
bd99dc85 2898 lwpid_of (lwp), step ? "step" : "continue", signal,
54a0b537 2899 lwp->stop_expected ? "expected" : "not expected");
0d62e5e8
DJ
2900
2901 /* This bit needs some thinking about. If we get a signal that
2902 we must report while a single-step reinsert is still pending,
2903 we often end up resuming the thread. It might be better to
2904 (ew) allow a stack of pending events; then we could be sure that
2905 the reinsert happened right away and not lose any signals.
2906
2907 Making this stack would also shrink the window in which breakpoints are
54a0b537 2908 uninserted (see comment in linux_wait_for_lwp) but not enough for
0d62e5e8
DJ
2909 complete correctness, so it won't solve that problem. It may be
2910 worthwhile just to solve this one, however. */
54a0b537 2911 if (lwp->bp_reinsert != 0)
0d62e5e8
DJ
2912 {
2913 if (debug_threads)
d50171e4
PA
2914 fprintf (stderr, " pending reinsert at 0x%s\n",
2915 paddress (lwp->bp_reinsert));
2916
2917 if (lwp->bp_reinsert != 0 && can_hardware_single_step ())
2918 {
fa593d66
PA
2919 if (fast_tp_collecting == 0)
2920 {
2921 if (step == 0)
2922 fprintf (stderr, "BAD - reinserting but not stepping.\n");
2923 if (lwp->suspended)
2924 fprintf (stderr, "BAD - reinserting and suspended(%d).\n",
2925 lwp->suspended);
2926 }
d50171e4
PA
2927
2928 step = 1;
2929 }
0d62e5e8
DJ
2930
2931 /* Postpone any pending signal. It was enqueued above. */
2932 signal = 0;
2933 }
2934
fa593d66
PA
2935 if (fast_tp_collecting == 1)
2936 {
2937 if (debug_threads)
2938 fprintf (stderr, "\
2939lwp %ld wants to get out of fast tracepoint jump pad (exit-jump-pad-bkpt)\n",
2940 lwpid_of (lwp));
2941
2942 /* Postpone any pending signal. It was enqueued above. */
2943 signal = 0;
2944 }
2945 else if (fast_tp_collecting == 2)
2946 {
2947 if (debug_threads)
2948 fprintf (stderr, "\
2949lwp %ld wants to get out of fast tracepoint jump pad single-stepping\n",
2950 lwpid_of (lwp));
2951
2952 if (can_hardware_single_step ())
2953 step = 1;
2954 else
2955 fatal ("moving out of jump pad single-stepping"
2956 " not implemented on this target");
2957
2958 /* Postpone any pending signal. It was enqueued above. */
2959 signal = 0;
2960 }
2961
219f2f23
PA
2962 /* If we have while-stepping actions in this thread set it stepping.
2963 If we have a signal to deliver, it may or may not be set to
2964 SIG_IGN, we don't know. Assume so, and allow collecting
2965 while-stepping into a signal handler. A possible smart thing to
2966 do would be to set an internal breakpoint at the signal return
2967 address, continue, and carry on catching this while-stepping
2968 action only when that breakpoint is hit. A future
2969 enhancement. */
2970 if (get_lwp_thread (lwp)->while_stepping != NULL
2971 && can_hardware_single_step ())
2972 {
2973 if (debug_threads)
2974 fprintf (stderr,
2975 "lwp %ld has a while-stepping action -> forcing step.\n",
2976 lwpid_of (lwp));
2977 step = 1;
2978 }
2979
aa691b87 2980 if (debug_threads && the_low_target.get_pc != NULL)
0d62e5e8 2981 {
442ea881
PA
2982 struct regcache *regcache = get_thread_regcache (current_inferior, 1);
2983 CORE_ADDR pc = (*the_low_target.get_pc) (regcache);
47c0c975 2984 fprintf (stderr, " resuming from pc 0x%lx\n", (long) pc);
0d62e5e8
DJ
2985 }
2986
fa593d66
PA
2987 /* If we have pending signals, consume one unless we are trying to
2988 reinsert a breakpoint or we're trying to finish a fast tracepoint
2989 collect. */
2990 if (lwp->pending_signals != NULL
2991 && lwp->bp_reinsert == 0
2992 && fast_tp_collecting == 0)
0d62e5e8
DJ
2993 {
2994 struct pending_signals **p_sig;
2995
54a0b537 2996 p_sig = &lwp->pending_signals;
0d62e5e8
DJ
2997 while ((*p_sig)->prev != NULL)
2998 p_sig = &(*p_sig)->prev;
2999
3000 signal = (*p_sig)->signal;
32ca6d61 3001 if ((*p_sig)->info.si_signo != 0)
bd99dc85 3002 ptrace (PTRACE_SETSIGINFO, lwpid_of (lwp), 0, &(*p_sig)->info);
32ca6d61 3003
0d62e5e8
DJ
3004 free (*p_sig);
3005 *p_sig = NULL;
3006 }
3007
aa5ca48f
DE
3008 if (the_low_target.prepare_to_resume != NULL)
3009 the_low_target.prepare_to_resume (lwp);
3010
0d62e5e8 3011 regcache_invalidate_one ((struct inferior_list_entry *)
54a0b537 3012 get_lwp_thread (lwp));
da6d8c04 3013 errno = 0;
54a0b537 3014 lwp->stopped = 0;
c3adc08c 3015 lwp->stopped_by_watchpoint = 0;
54a0b537 3016 lwp->stepping = step;
14ce3065
DE
3017 ptrace (step ? PTRACE_SINGLESTEP : PTRACE_CONT, lwpid_of (lwp), 0,
3018 /* Coerce to a uintptr_t first to avoid potential gcc warning
3019 of coercing an 8 byte integer to a 4 byte pointer. */
3020 (PTRACE_ARG4_TYPE) (uintptr_t) signal);
0d62e5e8
DJ
3021
3022 current_inferior = saved_inferior;
da6d8c04 3023 if (errno)
3221518c
UW
3024 {
3025 /* ESRCH from ptrace either means that the thread was already
3026 running (an error) or that it is gone (a race condition). If
3027 it's gone, we will get a notification the next time we wait,
3028 so we can ignore the error. We could differentiate these
3029 two, but it's tricky without waiting; the thread still exists
3030 as a zombie, so sending it signal 0 would succeed. So just
3031 ignore ESRCH. */
3032 if (errno == ESRCH)
3033 return;
3034
3035 perror_with_name ("ptrace");
3036 }
da6d8c04
DJ
3037}
3038
2bd7c093
PA
3039struct thread_resume_array
3040{
3041 struct thread_resume *resume;
3042 size_t n;
3043};
64386c31
DJ
3044
3045/* This function is called once per thread. We look up the thread
5544ad89
DJ
3046 in RESUME_PTR, and mark the thread with a pointer to the appropriate
3047 resume request.
3048
3049 This algorithm is O(threads * resume elements), but resume elements
3050 is small (and will remain small at least until GDB supports thread
3051 suspension). */
2bd7c093
PA
3052static int
3053linux_set_resume_request (struct inferior_list_entry *entry, void *arg)
0d62e5e8 3054{
54a0b537 3055 struct lwp_info *lwp;
64386c31 3056 struct thread_info *thread;
5544ad89 3057 int ndx;
2bd7c093 3058 struct thread_resume_array *r;
64386c31
DJ
3059
3060 thread = (struct thread_info *) entry;
54a0b537 3061 lwp = get_thread_lwp (thread);
2bd7c093 3062 r = arg;
64386c31 3063
2bd7c093 3064 for (ndx = 0; ndx < r->n; ndx++)
95954743
PA
3065 {
3066 ptid_t ptid = r->resume[ndx].thread;
3067 if (ptid_equal (ptid, minus_one_ptid)
3068 || ptid_equal (ptid, entry->id)
3069 || (ptid_is_pid (ptid)
3070 && (ptid_get_pid (ptid) == pid_of (lwp)))
3071 || (ptid_get_lwp (ptid) == -1
3072 && (ptid_get_pid (ptid) == pid_of (lwp))))
3073 {
d50171e4 3074 if (r->resume[ndx].kind == resume_stop
8336d594 3075 && thread->last_resume_kind == resume_stop)
d50171e4
PA
3076 {
3077 if (debug_threads)
3078 fprintf (stderr, "already %s LWP %ld at GDB's request\n",
3079 thread->last_status.kind == TARGET_WAITKIND_STOPPED
3080 ? "stopped"
3081 : "stopping",
3082 lwpid_of (lwp));
3083
3084 continue;
3085 }
3086
95954743 3087 lwp->resume = &r->resume[ndx];
8336d594 3088 thread->last_resume_kind = lwp->resume->kind;
fa593d66
PA
3089
3090 /* If we had a deferred signal to report, dequeue one now.
3091 This can happen if LWP gets more than one signal while
3092 trying to get out of a jump pad. */
3093 if (lwp->stopped
3094 && !lwp->status_pending_p
3095 && dequeue_one_deferred_signal (lwp, &lwp->status_pending))
3096 {
3097 lwp->status_pending_p = 1;
3098
3099 if (debug_threads)
3100 fprintf (stderr,
3101 "Dequeueing deferred signal %d for LWP %ld, "
3102 "leaving status pending.\n",
3103 WSTOPSIG (lwp->status_pending), lwpid_of (lwp));
3104 }
3105
95954743
PA
3106 return 0;
3107 }
3108 }
2bd7c093
PA
3109
3110 /* No resume action for this thread. */
3111 lwp->resume = NULL;
64386c31 3112
2bd7c093 3113 return 0;
5544ad89
DJ
3114}
3115
5544ad89 3116
bd99dc85
PA
3117/* Set *FLAG_P if this lwp has an interesting status pending. */
3118static int
3119resume_status_pending_p (struct inferior_list_entry *entry, void *flag_p)
5544ad89 3120{
bd99dc85 3121 struct lwp_info *lwp = (struct lwp_info *) entry;
5544ad89 3122
bd99dc85
PA
3123 /* LWPs which will not be resumed are not interesting, because
3124 we might not wait for them next time through linux_wait. */
2bd7c093 3125 if (lwp->resume == NULL)
bd99dc85 3126 return 0;
64386c31 3127
bd99dc85 3128 if (lwp->status_pending_p)
d50171e4
PA
3129 * (int *) flag_p = 1;
3130
3131 return 0;
3132}
3133
3134/* Return 1 if this lwp that GDB wants running is stopped at an
3135 internal breakpoint that we need to step over. It assumes that any
3136 required STOP_PC adjustment has already been propagated to the
3137 inferior's regcache. */
3138
3139static int
3140need_step_over_p (struct inferior_list_entry *entry, void *dummy)
3141{
3142 struct lwp_info *lwp = (struct lwp_info *) entry;
8336d594 3143 struct thread_info *thread;
d50171e4
PA
3144 struct thread_info *saved_inferior;
3145 CORE_ADDR pc;
3146
3147 /* LWPs which will not be resumed are not interesting, because we
3148 might not wait for them next time through linux_wait. */
3149
3150 if (!lwp->stopped)
3151 {
3152 if (debug_threads)
3153 fprintf (stderr,
3154 "Need step over [LWP %ld]? Ignoring, not stopped\n",
3155 lwpid_of (lwp));
3156 return 0;
3157 }
3158
8336d594
PA
3159 thread = get_lwp_thread (lwp);
3160
3161 if (thread->last_resume_kind == resume_stop)
d50171e4
PA
3162 {
3163 if (debug_threads)
3164 fprintf (stderr,
3165 "Need step over [LWP %ld]? Ignoring, should remain stopped\n",
3166 lwpid_of (lwp));
3167 return 0;
3168 }
3169
7984d532
PA
3170 gdb_assert (lwp->suspended >= 0);
3171
3172 if (lwp->suspended)
3173 {
3174 if (debug_threads)
3175 fprintf (stderr,
3176 "Need step over [LWP %ld]? Ignoring, suspended\n",
3177 lwpid_of (lwp));
3178 return 0;
3179 }
3180
d50171e4
PA
3181 if (!lwp->need_step_over)
3182 {
3183 if (debug_threads)
3184 fprintf (stderr,
3185 "Need step over [LWP %ld]? No\n", lwpid_of (lwp));
3186 }
5544ad89 3187
bd99dc85 3188 if (lwp->status_pending_p)
d50171e4
PA
3189 {
3190 if (debug_threads)
3191 fprintf (stderr,
3192 "Need step over [LWP %ld]? Ignoring, has pending status.\n",
3193 lwpid_of (lwp));
3194 return 0;
3195 }
3196
3197 /* Note: PC, not STOP_PC. Either GDB has adjusted the PC already,
3198 or we have. */
3199 pc = get_pc (lwp);
3200
3201 /* If the PC has changed since we stopped, then don't do anything,
3202 and let the breakpoint/tracepoint be hit. This happens if, for
3203 instance, GDB handled the decr_pc_after_break subtraction itself,
3204 GDB is OOL stepping this thread, or the user has issued a "jump"
3205 command, or poked thread's registers herself. */
3206 if (pc != lwp->stop_pc)
3207 {
3208 if (debug_threads)
3209 fprintf (stderr,
3210 "Need step over [LWP %ld]? Cancelling, PC was changed. "
3211 "Old stop_pc was 0x%s, PC is now 0x%s\n",
3212 lwpid_of (lwp), paddress (lwp->stop_pc), paddress (pc));
3213
3214 lwp->need_step_over = 0;
3215 return 0;
3216 }
3217
3218 saved_inferior = current_inferior;
8336d594 3219 current_inferior = thread;
d50171e4 3220
8b07ae33 3221 /* We can only step over breakpoints we know about. */
fa593d66 3222 if (breakpoint_here (pc) || fast_tracepoint_jump_here (pc))
d50171e4 3223 {
8b07ae33
PA
3224 /* Don't step over a breakpoint that GDB expects to hit
3225 though. */
3226 if (gdb_breakpoint_here (pc))
3227 {
3228 if (debug_threads)
3229 fprintf (stderr,
3230 "Need step over [LWP %ld]? yes, but found"
3231 " GDB breakpoint at 0x%s; skipping step over\n",
3232 lwpid_of (lwp), paddress (pc));
d50171e4 3233
8b07ae33
PA
3234 current_inferior = saved_inferior;
3235 return 0;
3236 }
3237 else
3238 {
3239 if (debug_threads)
3240 fprintf (stderr,
493e2a69
MS
3241 "Need step over [LWP %ld]? yes, "
3242 "found breakpoint at 0x%s\n",
8b07ae33 3243 lwpid_of (lwp), paddress (pc));
d50171e4 3244
8b07ae33
PA
3245 /* We've found an lwp that needs stepping over --- return 1 so
3246 that find_inferior stops looking. */
3247 current_inferior = saved_inferior;
3248
3249 /* If the step over is cancelled, this is set again. */
3250 lwp->need_step_over = 0;
3251 return 1;
3252 }
d50171e4
PA
3253 }
3254
3255 current_inferior = saved_inferior;
3256
3257 if (debug_threads)
3258 fprintf (stderr,
3259 "Need step over [LWP %ld]? No, no breakpoint found at 0x%s\n",
3260 lwpid_of (lwp), paddress (pc));
c6ecbae5 3261
bd99dc85 3262 return 0;
5544ad89
DJ
3263}
3264
d50171e4
PA
3265/* Start a step-over operation on LWP. When LWP stopped at a
3266 breakpoint, to make progress, we need to remove the breakpoint out
3267 of the way. If we let other threads run while we do that, they may
3268 pass by the breakpoint location and miss hitting it. To avoid
3269 that, a step-over momentarily stops all threads while LWP is
3270 single-stepped while the breakpoint is temporarily uninserted from
3271 the inferior. When the single-step finishes, we reinsert the
3272 breakpoint, and let all threads that are supposed to be running,
3273 run again.
3274
3275 On targets that don't support hardware single-step, we don't
3276 currently support full software single-stepping. Instead, we only
3277 support stepping over the thread event breakpoint, by asking the
3278 low target where to place a reinsert breakpoint. Since this
3279 routine assumes the breakpoint being stepped over is a thread event
3280 breakpoint, it usually assumes the return address of the current
3281 function is a good enough place to set the reinsert breakpoint. */
3282
3283static int
3284start_step_over (struct lwp_info *lwp)
3285{
3286 struct thread_info *saved_inferior;
3287 CORE_ADDR pc;
3288 int step;
3289
3290 if (debug_threads)
3291 fprintf (stderr,
3292 "Starting step-over on LWP %ld. Stopping all threads\n",
3293 lwpid_of (lwp));
3294
7984d532
PA
3295 stop_all_lwps (1, lwp);
3296 gdb_assert (lwp->suspended == 0);
d50171e4
PA
3297
3298 if (debug_threads)
3299 fprintf (stderr, "Done stopping all threads for step-over.\n");
3300
3301 /* Note, we should always reach here with an already adjusted PC,
3302 either by GDB (if we're resuming due to GDB's request), or by our
3303 caller, if we just finished handling an internal breakpoint GDB
3304 shouldn't care about. */
3305 pc = get_pc (lwp);
3306
3307 saved_inferior = current_inferior;
3308 current_inferior = get_lwp_thread (lwp);
3309
3310 lwp->bp_reinsert = pc;
3311 uninsert_breakpoints_at (pc);
fa593d66 3312 uninsert_fast_tracepoint_jumps_at (pc);
d50171e4
PA
3313
3314 if (can_hardware_single_step ())
3315 {
3316 step = 1;
3317 }
3318 else
3319 {
3320 CORE_ADDR raddr = (*the_low_target.breakpoint_reinsert_addr) ();
3321 set_reinsert_breakpoint (raddr);
3322 step = 0;
3323 }
3324
3325 current_inferior = saved_inferior;
3326
3327 linux_resume_one_lwp (lwp, step, 0, NULL);
3328
3329 /* Require next event from this LWP. */
3330 step_over_bkpt = lwp->head.id;
3331 return 1;
3332}
3333
3334/* Finish a step-over. Reinsert the breakpoint we had uninserted in
3335 start_step_over, if still there, and delete any reinsert
3336 breakpoints we've set, on non hardware single-step targets. */
3337
3338static int
3339finish_step_over (struct lwp_info *lwp)
3340{
3341 if (lwp->bp_reinsert != 0)
3342 {
3343 if (debug_threads)
3344 fprintf (stderr, "Finished step over.\n");
3345
3346 /* Reinsert any breakpoint at LWP->BP_REINSERT. Note that there
3347 may be no breakpoint to reinsert there by now. */
3348 reinsert_breakpoints_at (lwp->bp_reinsert);
fa593d66 3349 reinsert_fast_tracepoint_jumps_at (lwp->bp_reinsert);
d50171e4
PA
3350
3351 lwp->bp_reinsert = 0;
3352
3353 /* Delete any software-single-step reinsert breakpoints. No
3354 longer needed. We don't have to worry about other threads
3355 hitting this trap, and later not being able to explain it,
3356 because we were stepping over a breakpoint, and we hold all
3357 threads but LWP stopped while doing that. */
3358 if (!can_hardware_single_step ())
3359 delete_reinsert_breakpoints ();
3360
3361 step_over_bkpt = null_ptid;
3362 return 1;
3363 }
3364 else
3365 return 0;
3366}
3367
5544ad89
DJ
3368/* This function is called once per thread. We check the thread's resume
3369 request, which will tell us whether to resume, step, or leave the thread
bd99dc85 3370 stopped; and what signal, if any, it should be sent.
5544ad89 3371
bd99dc85
PA
3372 For threads which we aren't explicitly told otherwise, we preserve
3373 the stepping flag; this is used for stepping over gdbserver-placed
3374 breakpoints.
3375
3376 If pending_flags was set in any thread, we queue any needed
3377 signals, since we won't actually resume. We already have a pending
3378 event to report, so we don't need to preserve any step requests;
3379 they should be re-issued if necessary. */
3380
3381static int
3382linux_resume_one_thread (struct inferior_list_entry *entry, void *arg)
5544ad89 3383{
54a0b537 3384 struct lwp_info *lwp;
5544ad89 3385 struct thread_info *thread;
bd99dc85 3386 int step;
d50171e4
PA
3387 int leave_all_stopped = * (int *) arg;
3388 int leave_pending;
5544ad89
DJ
3389
3390 thread = (struct thread_info *) entry;
54a0b537 3391 lwp = get_thread_lwp (thread);
5544ad89 3392
2bd7c093 3393 if (lwp->resume == NULL)
bd99dc85 3394 return 0;
5544ad89 3395
bd99dc85 3396 if (lwp->resume->kind == resume_stop)
5544ad89 3397 {
bd99dc85 3398 if (debug_threads)
d50171e4 3399 fprintf (stderr, "resume_stop request for LWP %ld\n", lwpid_of (lwp));
bd99dc85
PA
3400
3401 if (!lwp->stopped)
3402 {
3403 if (debug_threads)
d50171e4 3404 fprintf (stderr, "stopping LWP %ld\n", lwpid_of (lwp));
bd99dc85 3405
d50171e4
PA
3406 /* Stop the thread, and wait for the event asynchronously,
3407 through the event loop. */
02fc4de7 3408 send_sigstop (lwp);
bd99dc85
PA
3409 }
3410 else
3411 {
3412 if (debug_threads)
d50171e4
PA
3413 fprintf (stderr, "already stopped LWP %ld\n",
3414 lwpid_of (lwp));
3415
3416 /* The LWP may have been stopped in an internal event that
3417 was not meant to be notified back to GDB (e.g., gdbserver
3418 breakpoint), so we should be reporting a stop event in
3419 this case too. */
3420
3421 /* If the thread already has a pending SIGSTOP, this is a
3422 no-op. Otherwise, something later will presumably resume
3423 the thread and this will cause it to cancel any pending
3424 operation, due to last_resume_kind == resume_stop. If
3425 the thread already has a pending status to report, we
3426 will still report it the next time we wait - see
3427 status_pending_p_callback. */
1a981360
PA
3428
3429 /* If we already have a pending signal to report, then
3430 there's no need to queue a SIGSTOP, as this means we're
3431 midway through moving the LWP out of the jumppad, and we
3432 will report the pending signal as soon as that is
3433 finished. */
3434 if (lwp->pending_signals_to_report == NULL)
3435 send_sigstop (lwp);
bd99dc85 3436 }
32ca6d61 3437
bd99dc85
PA
3438 /* For stop requests, we're done. */
3439 lwp->resume = NULL;
fc7238bb 3440 thread->last_status.kind = TARGET_WAITKIND_IGNORE;
bd99dc85 3441 return 0;
5544ad89
DJ
3442 }
3443
bd99dc85
PA
3444 /* If this thread which is about to be resumed has a pending status,
3445 then don't resume any threads - we can just report the pending
3446 status. Make sure to queue any signals that would otherwise be
3447 sent. In all-stop mode, we do this decision based on if *any*
d50171e4
PA
3448 thread has a pending status. If there's a thread that needs the
3449 step-over-breakpoint dance, then don't resume any other thread
3450 but that particular one. */
3451 leave_pending = (lwp->status_pending_p || leave_all_stopped);
5544ad89 3452
d50171e4 3453 if (!leave_pending)
bd99dc85
PA
3454 {
3455 if (debug_threads)
3456 fprintf (stderr, "resuming LWP %ld\n", lwpid_of (lwp));
5544ad89 3457
d50171e4 3458 step = (lwp->resume->kind == resume_step);
2acc282a 3459 linux_resume_one_lwp (lwp, step, lwp->resume->sig, NULL);
bd99dc85
PA
3460 }
3461 else
3462 {
3463 if (debug_threads)
3464 fprintf (stderr, "leaving LWP %ld stopped\n", lwpid_of (lwp));
5544ad89 3465
bd99dc85
PA
3466 /* If we have a new signal, enqueue the signal. */
3467 if (lwp->resume->sig != 0)
3468 {
3469 struct pending_signals *p_sig;
3470 p_sig = xmalloc (sizeof (*p_sig));
3471 p_sig->prev = lwp->pending_signals;
3472 p_sig->signal = lwp->resume->sig;
3473 memset (&p_sig->info, 0, sizeof (siginfo_t));
3474
3475 /* If this is the same signal we were previously stopped by,
3476 make sure to queue its siginfo. We can ignore the return
3477 value of ptrace; if it fails, we'll skip
3478 PTRACE_SETSIGINFO. */
3479 if (WIFSTOPPED (lwp->last_status)
3480 && WSTOPSIG (lwp->last_status) == lwp->resume->sig)
3481 ptrace (PTRACE_GETSIGINFO, lwpid_of (lwp), 0, &p_sig->info);
3482
3483 lwp->pending_signals = p_sig;
3484 }
3485 }
5544ad89 3486
fc7238bb 3487 thread->last_status.kind = TARGET_WAITKIND_IGNORE;
bd99dc85 3488 lwp->resume = NULL;
5544ad89 3489 return 0;
0d62e5e8
DJ
3490}
3491
3492static void
2bd7c093 3493linux_resume (struct thread_resume *resume_info, size_t n)
0d62e5e8 3494{
2bd7c093 3495 struct thread_resume_array array = { resume_info, n };
d50171e4
PA
3496 struct lwp_info *need_step_over = NULL;
3497 int any_pending;
3498 int leave_all_stopped;
c6ecbae5 3499
2bd7c093 3500 find_inferior (&all_threads, linux_set_resume_request, &array);
5544ad89 3501
d50171e4
PA
3502 /* If there is a thread which would otherwise be resumed, which has
3503 a pending status, then don't resume any threads - we can just
3504 report the pending status. Make sure to queue any signals that
3505 would otherwise be sent. In non-stop mode, we'll apply this
3506 logic to each thread individually. We consume all pending events
3507 before considering to start a step-over (in all-stop). */
3508 any_pending = 0;
bd99dc85 3509 if (!non_stop)
d50171e4
PA
3510 find_inferior (&all_lwps, resume_status_pending_p, &any_pending);
3511
3512 /* If there is a thread which would otherwise be resumed, which is
3513 stopped at a breakpoint that needs stepping over, then don't
3514 resume any threads - have it step over the breakpoint with all
3515 other threads stopped, then resume all threads again. Make sure
3516 to queue any signals that would otherwise be delivered or
3517 queued. */
3518 if (!any_pending && supports_breakpoints ())
3519 need_step_over
3520 = (struct lwp_info *) find_inferior (&all_lwps,
3521 need_step_over_p, NULL);
3522
3523 leave_all_stopped = (need_step_over != NULL || any_pending);
3524
3525 if (debug_threads)
3526 {
3527 if (need_step_over != NULL)
3528 fprintf (stderr, "Not resuming all, need step over\n");
3529 else if (any_pending)
3530 fprintf (stderr,
3531 "Not resuming, all-stop and found "
3532 "an LWP with pending status\n");
3533 else
3534 fprintf (stderr, "Resuming, no pending status or step over needed\n");
3535 }
3536
3537 /* Even if we're leaving threads stopped, queue all signals we'd
3538 otherwise deliver. */
3539 find_inferior (&all_threads, linux_resume_one_thread, &leave_all_stopped);
3540
3541 if (need_step_over)
3542 start_step_over (need_step_over);
3543}
3544
3545/* This function is called once per thread. We check the thread's
3546 last resume request, which will tell us whether to resume, step, or
3547 leave the thread stopped. Any signal the client requested to be
3548 delivered has already been enqueued at this point.
3549
3550 If any thread that GDB wants running is stopped at an internal
3551 breakpoint that needs stepping over, we start a step-over operation
3552 on that particular thread, and leave all others stopped. */
3553
7984d532
PA
3554static int
3555proceed_one_lwp (struct inferior_list_entry *entry, void *except)
d50171e4 3556{
7984d532 3557 struct lwp_info *lwp = (struct lwp_info *) entry;
8336d594 3558 struct thread_info *thread;
d50171e4
PA
3559 int step;
3560
7984d532
PA
3561 if (lwp == except)
3562 return 0;
d50171e4
PA
3563
3564 if (debug_threads)
3565 fprintf (stderr,
3566 "proceed_one_lwp: lwp %ld\n", lwpid_of (lwp));
3567
3568 if (!lwp->stopped)
3569 {
3570 if (debug_threads)
3571 fprintf (stderr, " LWP %ld already running\n", lwpid_of (lwp));
7984d532 3572 return 0;
d50171e4
PA
3573 }
3574
8336d594
PA
3575 thread = get_lwp_thread (lwp);
3576
02fc4de7
PA
3577 if (thread->last_resume_kind == resume_stop
3578 && thread->last_status.kind != TARGET_WAITKIND_IGNORE)
d50171e4
PA
3579 {
3580 if (debug_threads)
02fc4de7
PA
3581 fprintf (stderr, " client wants LWP to remain %ld stopped\n",
3582 lwpid_of (lwp));
7984d532 3583 return 0;
d50171e4
PA
3584 }
3585
3586 if (lwp->status_pending_p)
3587 {
3588 if (debug_threads)
3589 fprintf (stderr, " LWP %ld has pending status, leaving stopped\n",
3590 lwpid_of (lwp));
7984d532 3591 return 0;
d50171e4
PA
3592 }
3593
7984d532
PA
3594 gdb_assert (lwp->suspended >= 0);
3595
d50171e4
PA
3596 if (lwp->suspended)
3597 {
3598 if (debug_threads)
3599 fprintf (stderr, " LWP %ld is suspended\n", lwpid_of (lwp));
7984d532 3600 return 0;
d50171e4
PA
3601 }
3602
1a981360
PA
3603 if (thread->last_resume_kind == resume_stop
3604 && lwp->pending_signals_to_report == NULL
3605 && lwp->collecting_fast_tracepoint == 0)
02fc4de7
PA
3606 {
3607 /* We haven't reported this LWP as stopped yet (otherwise, the
3608 last_status.kind check above would catch it, and we wouldn't
3609 reach here. This LWP may have been momentarily paused by a
3610 stop_all_lwps call while handling for example, another LWP's
3611 step-over. In that case, the pending expected SIGSTOP signal
3612 that was queued at vCont;t handling time will have already
3613 been consumed by wait_for_sigstop, and so we need to requeue
3614 another one here. Note that if the LWP already has a SIGSTOP
3615 pending, this is a no-op. */
3616
3617 if (debug_threads)
3618 fprintf (stderr,
3619 "Client wants LWP %ld to stop. "
3620 "Making sure it has a SIGSTOP pending\n",
3621 lwpid_of (lwp));
3622
3623 send_sigstop (lwp);
3624 }
3625
8336d594 3626 step = thread->last_resume_kind == resume_step;
d50171e4 3627 linux_resume_one_lwp (lwp, step, 0, NULL);
7984d532
PA
3628 return 0;
3629}
3630
3631static int
3632unsuspend_and_proceed_one_lwp (struct inferior_list_entry *entry, void *except)
3633{
3634 struct lwp_info *lwp = (struct lwp_info *) entry;
3635
3636 if (lwp == except)
3637 return 0;
3638
3639 lwp->suspended--;
3640 gdb_assert (lwp->suspended >= 0);
3641
3642 return proceed_one_lwp (entry, except);
d50171e4
PA
3643}
3644
3645/* When we finish a step-over, set threads running again. If there's
3646 another thread that may need a step-over, now's the time to start
3647 it. Eventually, we'll move all threads past their breakpoints. */
3648
3649static void
3650proceed_all_lwps (void)
3651{
3652 struct lwp_info *need_step_over;
3653
3654 /* If there is a thread which would otherwise be resumed, which is
3655 stopped at a breakpoint that needs stepping over, then don't
3656 resume any threads - have it step over the breakpoint with all
3657 other threads stopped, then resume all threads again. */
3658
3659 if (supports_breakpoints ())
3660 {
3661 need_step_over
3662 = (struct lwp_info *) find_inferior (&all_lwps,
3663 need_step_over_p, NULL);
3664
3665 if (need_step_over != NULL)
3666 {
3667 if (debug_threads)
3668 fprintf (stderr, "proceed_all_lwps: found "
3669 "thread %ld needing a step-over\n",
3670 lwpid_of (need_step_over));
3671
3672 start_step_over (need_step_over);
3673 return;
3674 }
3675 }
5544ad89 3676
d50171e4
PA
3677 if (debug_threads)
3678 fprintf (stderr, "Proceeding, no step-over needed\n");
3679
7984d532 3680 find_inferior (&all_lwps, proceed_one_lwp, NULL);
d50171e4
PA
3681}
3682
3683/* Stopped LWPs that the client wanted to be running, that don't have
3684 pending statuses, are set to run again, except for EXCEPT, if not
3685 NULL. This undoes a stop_all_lwps call. */
3686
3687static void
7984d532 3688unstop_all_lwps (int unsuspend, struct lwp_info *except)
d50171e4 3689{
5544ad89
DJ
3690 if (debug_threads)
3691 {
d50171e4
PA
3692 if (except)
3693 fprintf (stderr,
3694 "unstopping all lwps, except=(LWP %ld)\n", lwpid_of (except));
5544ad89 3695 else
d50171e4
PA
3696 fprintf (stderr,
3697 "unstopping all lwps\n");
5544ad89
DJ
3698 }
3699
7984d532
PA
3700 if (unsuspend)
3701 find_inferior (&all_lwps, unsuspend_and_proceed_one_lwp, except);
3702 else
3703 find_inferior (&all_lwps, proceed_one_lwp, except);
0d62e5e8
DJ
3704}
3705
3706#ifdef HAVE_LINUX_USRREGS
da6d8c04
DJ
3707
3708int
0a30fbc4 3709register_addr (int regnum)
da6d8c04
DJ
3710{
3711 int addr;
3712
2ec06d2e 3713 if (regnum < 0 || regnum >= the_low_target.num_regs)
da6d8c04
DJ
3714 error ("Invalid register number %d.", regnum);
3715
2ec06d2e 3716 addr = the_low_target.regmap[regnum];
da6d8c04
DJ
3717
3718 return addr;
3719}
3720
58caa3dc 3721/* Fetch one register. */
da6d8c04 3722static void
442ea881 3723fetch_register (struct regcache *regcache, int regno)
da6d8c04
DJ
3724{
3725 CORE_ADDR regaddr;
48d93c75 3726 int i, size;
0d62e5e8 3727 char *buf;
95954743 3728 int pid;
da6d8c04 3729
2ec06d2e 3730 if (regno >= the_low_target.num_regs)
0a30fbc4 3731 return;
2ec06d2e 3732 if ((*the_low_target.cannot_fetch_register) (regno))
0a30fbc4 3733 return;
da6d8c04 3734
0a30fbc4
DJ
3735 regaddr = register_addr (regno);
3736 if (regaddr == -1)
3737 return;
95954743 3738
1b3f6016 3739 size = ((register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
50275556 3740 & -sizeof (PTRACE_XFER_TYPE));
48d93c75 3741 buf = alloca (size);
50275556
MR
3742
3743 pid = lwpid_of (get_thread_lwp (current_inferior));
48d93c75 3744 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
da6d8c04
DJ
3745 {
3746 errno = 0;
0d62e5e8 3747 *(PTRACE_XFER_TYPE *) (buf + i) =
14ce3065
DE
3748 ptrace (PTRACE_PEEKUSER, pid,
3749 /* Coerce to a uintptr_t first to avoid potential gcc warning
3750 of coercing an 8 byte integer to a 4 byte pointer. */
3751 (PTRACE_ARG3_TYPE) (uintptr_t) regaddr, 0);
da6d8c04
DJ
3752 regaddr += sizeof (PTRACE_XFER_TYPE);
3753 if (errno != 0)
f52cd8cd 3754 error ("reading register %d: %s", regno, strerror (errno));
da6d8c04 3755 }
ee1a7ae4
UW
3756
3757 if (the_low_target.supply_ptrace_register)
442ea881 3758 the_low_target.supply_ptrace_register (regcache, regno, buf);
5a1f5858 3759 else
442ea881 3760 supply_register (regcache, regno, buf);
da6d8c04
DJ
3761}
3762
7325beb4
MR
3763/* Store one register. */
3764static void
3765store_register (struct regcache *regcache, int regno)
3766{
3767 CORE_ADDR regaddr;
3768 int i, size;
3769 char *buf;
3770 int pid;
3771
3772 if (regno >= the_low_target.num_regs)
3773 return;
50275556 3774 if ((*the_low_target.cannot_store_register) (regno))
7325beb4
MR
3775 return;
3776
3777 regaddr = register_addr (regno);
3778 if (regaddr == -1)
3779 return;
50275556
MR
3780
3781 size = ((register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
3782 & -sizeof (PTRACE_XFER_TYPE));
7325beb4
MR
3783 buf = alloca (size);
3784 memset (buf, 0, size);
3785
3786 if (the_low_target.collect_ptrace_register)
3787 the_low_target.collect_ptrace_register (regcache, regno, buf);
3788 else
3789 collect_register (regcache, regno, buf);
3790
3791 pid = lwpid_of (get_thread_lwp (current_inferior));
3792 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
3793 {
3794 errno = 0;
3795 ptrace (PTRACE_POKEUSER, pid,
3796 /* Coerce to a uintptr_t first to avoid potential gcc warning
3797 about coercing an 8 byte integer to a 4 byte pointer. */
3798 (PTRACE_ARG3_TYPE) (uintptr_t) regaddr,
3799 (PTRACE_ARG4_TYPE) *(PTRACE_XFER_TYPE *) (buf + i));
3800 if (errno != 0)
3801 {
3802 /* At this point, ESRCH should mean the process is
3803 already gone, in which case we simply ignore attempts
3804 to change its registers. See also the related
3805 comment in linux_resume_one_lwp. */
3806 if (errno == ESRCH)
3807 return;
3808
3809 if ((*the_low_target.cannot_store_register) (regno) == 0)
3810 error ("writing register %d: %s", regno, strerror (errno));
3811 }
3812 regaddr += sizeof (PTRACE_XFER_TYPE);
3813 }
3814}
3815
da6d8c04 3816/* Fetch all registers, or just one, from the child process. */
58caa3dc 3817static void
442ea881 3818usr_fetch_inferior_registers (struct regcache *regcache, int regno)
da6d8c04 3819{
4463ce24 3820 if (regno == -1)
2ec06d2e 3821 for (regno = 0; regno < the_low_target.num_regs; regno++)
442ea881 3822 fetch_register (regcache, regno);
da6d8c04 3823 else
442ea881 3824 fetch_register (regcache, regno);
da6d8c04
DJ
3825}
3826
3827/* Store our register values back into the inferior.
3828 If REGNO is -1, do this for all registers.
3829 Otherwise, REGNO specifies which register (so we can save time). */
58caa3dc 3830static void
442ea881 3831usr_store_inferior_registers (struct regcache *regcache, int regno)
da6d8c04 3832{
7325beb4 3833 if (regno == -1)
2ec06d2e 3834 for (regno = 0; regno < the_low_target.num_regs; regno++)
7325beb4
MR
3835 store_register (regcache, regno);
3836 else
3837 store_register (regcache, regno);
da6d8c04 3838}
58caa3dc
DJ
3839#endif /* HAVE_LINUX_USRREGS */
3840
3841
3842
3843#ifdef HAVE_LINUX_REGSETS
3844
3845static int
442ea881 3846regsets_fetch_inferior_registers (struct regcache *regcache)
58caa3dc
DJ
3847{
3848 struct regset_info *regset;
e9d25b98 3849 int saw_general_regs = 0;
95954743 3850 int pid;
1570b33e 3851 struct iovec iov;
58caa3dc
DJ
3852
3853 regset = target_regsets;
3854
95954743 3855 pid = lwpid_of (get_thread_lwp (current_inferior));
58caa3dc
DJ
3856 while (regset->size >= 0)
3857 {
1570b33e
L
3858 void *buf, *data;
3859 int nt_type, res;
58caa3dc 3860
52fa2412 3861 if (regset->size == 0 || disabled_regsets[regset - target_regsets])
58caa3dc
DJ
3862 {
3863 regset ++;
3864 continue;
3865 }
3866
bca929d3 3867 buf = xmalloc (regset->size);
1570b33e
L
3868
3869 nt_type = regset->nt_type;
3870 if (nt_type)
3871 {
3872 iov.iov_base = buf;
3873 iov.iov_len = regset->size;
3874 data = (void *) &iov;
3875 }
3876 else
3877 data = buf;
3878
dfb64f85 3879#ifndef __sparc__
1570b33e 3880 res = ptrace (regset->get_request, pid, nt_type, data);
dfb64f85 3881#else
1570b33e 3882 res = ptrace (regset->get_request, pid, data, nt_type);
dfb64f85 3883#endif
58caa3dc
DJ
3884 if (res < 0)
3885 {
3886 if (errno == EIO)
3887 {
52fa2412
UW
3888 /* If we get EIO on a regset, do not try it again for
3889 this process. */
3890 disabled_regsets[regset - target_regsets] = 1;
fdeb2a12 3891 free (buf);
52fa2412 3892 continue;
58caa3dc
DJ
3893 }
3894 else
3895 {
0d62e5e8 3896 char s[256];
95954743
PA
3897 sprintf (s, "ptrace(regsets_fetch_inferior_registers) PID=%d",
3898 pid);
0d62e5e8 3899 perror (s);
58caa3dc
DJ
3900 }
3901 }
e9d25b98
DJ
3902 else if (regset->type == GENERAL_REGS)
3903 saw_general_regs = 1;
442ea881 3904 regset->store_function (regcache, buf);
58caa3dc 3905 regset ++;
fdeb2a12 3906 free (buf);
58caa3dc 3907 }
e9d25b98
DJ
3908 if (saw_general_regs)
3909 return 0;
3910 else
3911 return 1;
58caa3dc
DJ
3912}
3913
3914static int
442ea881 3915regsets_store_inferior_registers (struct regcache *regcache)
58caa3dc
DJ
3916{
3917 struct regset_info *regset;
e9d25b98 3918 int saw_general_regs = 0;
95954743 3919 int pid;
1570b33e 3920 struct iovec iov;
58caa3dc
DJ
3921
3922 regset = target_regsets;
3923
95954743 3924 pid = lwpid_of (get_thread_lwp (current_inferior));
58caa3dc
DJ
3925 while (regset->size >= 0)
3926 {
1570b33e
L
3927 void *buf, *data;
3928 int nt_type, res;
58caa3dc 3929
52fa2412 3930 if (regset->size == 0 || disabled_regsets[regset - target_regsets])
58caa3dc
DJ
3931 {
3932 regset ++;
3933 continue;
3934 }
3935
bca929d3 3936 buf = xmalloc (regset->size);
545587ee
DJ
3937
3938 /* First fill the buffer with the current register set contents,
3939 in case there are any items in the kernel's regset that are
3940 not in gdbserver's regcache. */
1570b33e
L
3941
3942 nt_type = regset->nt_type;
3943 if (nt_type)
3944 {
3945 iov.iov_base = buf;
3946 iov.iov_len = regset->size;
3947 data = (void *) &iov;
3948 }
3949 else
3950 data = buf;
3951
dfb64f85 3952#ifndef __sparc__
1570b33e 3953 res = ptrace (regset->get_request, pid, nt_type, data);
dfb64f85 3954#else
1570b33e 3955 res = ptrace (regset->get_request, pid, &iov, data);
dfb64f85 3956#endif
545587ee
DJ
3957
3958 if (res == 0)
3959 {
3960 /* Then overlay our cached registers on that. */
442ea881 3961 regset->fill_function (regcache, buf);
545587ee
DJ
3962
3963 /* Only now do we write the register set. */
dfb64f85 3964#ifndef __sparc__
1570b33e 3965 res = ptrace (regset->set_request, pid, nt_type, data);
dfb64f85 3966#else
1570b33e 3967 res = ptrace (regset->set_request, pid, data, nt_type);
dfb64f85 3968#endif
545587ee
DJ
3969 }
3970
58caa3dc
DJ
3971 if (res < 0)
3972 {
3973 if (errno == EIO)
3974 {
52fa2412
UW
3975 /* If we get EIO on a regset, do not try it again for
3976 this process. */
3977 disabled_regsets[regset - target_regsets] = 1;
fdeb2a12 3978 free (buf);
52fa2412 3979 continue;
58caa3dc 3980 }
3221518c
UW
3981 else if (errno == ESRCH)
3982 {
1b3f6016
PA
3983 /* At this point, ESRCH should mean the process is
3984 already gone, in which case we simply ignore attempts
3985 to change its registers. See also the related
3986 comment in linux_resume_one_lwp. */
fdeb2a12 3987 free (buf);
3221518c
UW
3988 return 0;
3989 }
58caa3dc
DJ
3990 else
3991 {
ce3a066d 3992 perror ("Warning: ptrace(regsets_store_inferior_registers)");
58caa3dc
DJ
3993 }
3994 }
e9d25b98
DJ
3995 else if (regset->type == GENERAL_REGS)
3996 saw_general_regs = 1;
58caa3dc 3997 regset ++;
09ec9b38 3998 free (buf);
58caa3dc 3999 }
e9d25b98
DJ
4000 if (saw_general_regs)
4001 return 0;
4002 else
4003 return 1;
ce3a066d 4004 return 0;
58caa3dc
DJ
4005}
4006
4007#endif /* HAVE_LINUX_REGSETS */
4008
4009
4010void
442ea881 4011linux_fetch_registers (struct regcache *regcache, int regno)
58caa3dc
DJ
4012{
4013#ifdef HAVE_LINUX_REGSETS
442ea881 4014 if (regsets_fetch_inferior_registers (regcache) == 0)
52fa2412 4015 return;
58caa3dc
DJ
4016#endif
4017#ifdef HAVE_LINUX_USRREGS
442ea881 4018 usr_fetch_inferior_registers (regcache, regno);
58caa3dc
DJ
4019#endif
4020}
4021
4022void
442ea881 4023linux_store_registers (struct regcache *regcache, int regno)
58caa3dc
DJ
4024{
4025#ifdef HAVE_LINUX_REGSETS
442ea881 4026 if (regsets_store_inferior_registers (regcache) == 0)
52fa2412 4027 return;
58caa3dc
DJ
4028#endif
4029#ifdef HAVE_LINUX_USRREGS
442ea881 4030 usr_store_inferior_registers (regcache, regno);
58caa3dc
DJ
4031#endif
4032}
4033
da6d8c04 4034
da6d8c04
DJ
4035/* Copy LEN bytes from inferior's memory starting at MEMADDR
4036 to debugger memory starting at MYADDR. */
4037
c3e735a6 4038static int
f450004a 4039linux_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
da6d8c04
DJ
4040{
4041 register int i;
4042 /* Round starting address down to longword boundary. */
4043 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
4044 /* Round ending address up; get number of longwords that makes. */
aa691b87
RM
4045 register int count
4046 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
da6d8c04
DJ
4047 / sizeof (PTRACE_XFER_TYPE);
4048 /* Allocate buffer of that many longwords. */
aa691b87 4049 register PTRACE_XFER_TYPE *buffer
da6d8c04 4050 = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
fd462a61
DJ
4051 int fd;
4052 char filename[64];
95954743 4053 int pid = lwpid_of (get_thread_lwp (current_inferior));
fd462a61
DJ
4054
4055 /* Try using /proc. Don't bother for one word. */
4056 if (len >= 3 * sizeof (long))
4057 {
4058 /* We could keep this file open and cache it - possibly one per
4059 thread. That requires some juggling, but is even faster. */
95954743 4060 sprintf (filename, "/proc/%d/mem", pid);
fd462a61
DJ
4061 fd = open (filename, O_RDONLY | O_LARGEFILE);
4062 if (fd == -1)
4063 goto no_proc;
4064
4065 /* If pread64 is available, use it. It's faster if the kernel
4066 supports it (only one syscall), and it's 64-bit safe even on
4067 32-bit platforms (for instance, SPARC debugging a SPARC64
4068 application). */
4069#ifdef HAVE_PREAD64
4070 if (pread64 (fd, myaddr, len, memaddr) != len)
4071#else
1de1badb 4072 if (lseek (fd, memaddr, SEEK_SET) == -1 || read (fd, myaddr, len) != len)
fd462a61
DJ
4073#endif
4074 {
4075 close (fd);
4076 goto no_proc;
4077 }
4078
4079 close (fd);
4080 return 0;
4081 }
da6d8c04 4082
fd462a61 4083 no_proc:
da6d8c04
DJ
4084 /* Read all the longwords */
4085 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
4086 {
c3e735a6 4087 errno = 0;
14ce3065
DE
4088 /* Coerce the 3rd arg to a uintptr_t first to avoid potential gcc warning
4089 about coercing an 8 byte integer to a 4 byte pointer. */
4090 buffer[i] = ptrace (PTRACE_PEEKTEXT, pid,
4091 (PTRACE_ARG3_TYPE) (uintptr_t) addr, 0);
c3e735a6
DJ
4092 if (errno)
4093 return errno;
da6d8c04
DJ
4094 }
4095
4096 /* Copy appropriate bytes out of the buffer. */
1b3f6016
PA
4097 memcpy (myaddr,
4098 (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
4099 len);
c3e735a6
DJ
4100
4101 return 0;
da6d8c04
DJ
4102}
4103
93ae6fdc
PA
4104/* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
4105 memory at MEMADDR. On failure (cannot write to the inferior)
da6d8c04
DJ
4106 returns the value of errno. */
4107
ce3a066d 4108static int
f450004a 4109linux_write_memory (CORE_ADDR memaddr, const unsigned char *myaddr, int len)
da6d8c04
DJ
4110{
4111 register int i;
4112 /* Round starting address down to longword boundary. */
4113 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
4114 /* Round ending address up; get number of longwords that makes. */
4115 register int count
493e2a69
MS
4116 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
4117 / sizeof (PTRACE_XFER_TYPE);
4118
da6d8c04 4119 /* Allocate buffer of that many longwords. */
493e2a69
MS
4120 register PTRACE_XFER_TYPE *buffer = (PTRACE_XFER_TYPE *)
4121 alloca (count * sizeof (PTRACE_XFER_TYPE));
4122
95954743 4123 int pid = lwpid_of (get_thread_lwp (current_inferior));
da6d8c04 4124
0d62e5e8
DJ
4125 if (debug_threads)
4126 {
58d6951d
DJ
4127 /* Dump up to four bytes. */
4128 unsigned int val = * (unsigned int *) myaddr;
4129 if (len == 1)
4130 val = val & 0xff;
4131 else if (len == 2)
4132 val = val & 0xffff;
4133 else if (len == 3)
4134 val = val & 0xffffff;
4135 fprintf (stderr, "Writing %0*x to 0x%08lx\n", 2 * ((len < 4) ? len : 4),
4136 val, (long)memaddr);
0d62e5e8
DJ
4137 }
4138
da6d8c04
DJ
4139 /* Fill start and end extra bytes of buffer with existing memory data. */
4140
93ae6fdc 4141 errno = 0;
14ce3065
DE
4142 /* Coerce the 3rd arg to a uintptr_t first to avoid potential gcc warning
4143 about coercing an 8 byte integer to a 4 byte pointer. */
4144 buffer[0] = ptrace (PTRACE_PEEKTEXT, pid,
4145 (PTRACE_ARG3_TYPE) (uintptr_t) addr, 0);
93ae6fdc
PA
4146 if (errno)
4147 return errno;
da6d8c04
DJ
4148
4149 if (count > 1)
4150 {
93ae6fdc 4151 errno = 0;
da6d8c04 4152 buffer[count - 1]
95954743 4153 = ptrace (PTRACE_PEEKTEXT, pid,
14ce3065
DE
4154 /* Coerce to a uintptr_t first to avoid potential gcc warning
4155 about coercing an 8 byte integer to a 4 byte pointer. */
4156 (PTRACE_ARG3_TYPE) (uintptr_t) (addr + (count - 1)
4157 * sizeof (PTRACE_XFER_TYPE)),
d844cde6 4158 0);
93ae6fdc
PA
4159 if (errno)
4160 return errno;
da6d8c04
DJ
4161 }
4162
93ae6fdc 4163 /* Copy data to be written over corresponding part of buffer. */
da6d8c04 4164
493e2a69
MS
4165 memcpy ((char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
4166 myaddr, len);
da6d8c04
DJ
4167
4168 /* Write the entire buffer. */
4169
4170 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
4171 {
4172 errno = 0;
14ce3065
DE
4173 ptrace (PTRACE_POKETEXT, pid,
4174 /* Coerce to a uintptr_t first to avoid potential gcc warning
4175 about coercing an 8 byte integer to a 4 byte pointer. */
4176 (PTRACE_ARG3_TYPE) (uintptr_t) addr,
4177 (PTRACE_ARG4_TYPE) buffer[i]);
da6d8c04
DJ
4178 if (errno)
4179 return errno;
4180 }
4181
4182 return 0;
4183}
2f2893d9 4184
6076632b 4185/* Non-zero if the kernel supports PTRACE_O_TRACEFORK. */
24a09b5f
DJ
4186static int linux_supports_tracefork_flag;
4187
1e7fc18c
PA
4188static void
4189linux_enable_event_reporting (int pid)
4190{
4191 if (!linux_supports_tracefork_flag)
4192 return;
4193
4194 ptrace (PTRACE_SETOPTIONS, pid, 0, (PTRACE_ARG4_TYPE) PTRACE_O_TRACECLONE);
4195}
4196
51c2684e 4197/* Helper functions for linux_test_for_tracefork, called via clone (). */
24a09b5f 4198
51c2684e
DJ
4199static int
4200linux_tracefork_grandchild (void *arg)
4201{
4202 _exit (0);
4203}
4204
7407e2de
AS
4205#define STACK_SIZE 4096
4206
51c2684e
DJ
4207static int
4208linux_tracefork_child (void *arg)
24a09b5f
DJ
4209{
4210 ptrace (PTRACE_TRACEME, 0, 0, 0);
4211 kill (getpid (), SIGSTOP);
e4b7f41c
JK
4212
4213#if !(defined(__UCLIBC__) && defined(HAS_NOMMU))
4214
4215 if (fork () == 0)
4216 linux_tracefork_grandchild (NULL);
4217
4218#else /* defined(__UCLIBC__) && defined(HAS_NOMMU) */
4219
7407e2de
AS
4220#ifdef __ia64__
4221 __clone2 (linux_tracefork_grandchild, arg, STACK_SIZE,
4222 CLONE_VM | SIGCHLD, NULL);
4223#else
a1f2ce7d 4224 clone (linux_tracefork_grandchild, (char *) arg + STACK_SIZE,
7407e2de
AS
4225 CLONE_VM | SIGCHLD, NULL);
4226#endif
e4b7f41c
JK
4227
4228#endif /* defined(__UCLIBC__) && defined(HAS_NOMMU) */
4229
24a09b5f
DJ
4230 _exit (0);
4231}
4232
24a09b5f
DJ
4233/* Determine if PTRACE_O_TRACEFORK can be used to follow fork events. Make
4234 sure that we can enable the option, and that it had the desired
4235 effect. */
4236
4237static void
4238linux_test_for_tracefork (void)
4239{
4240 int child_pid, ret, status;
4241 long second_pid;
e4b7f41c 4242#if defined(__UCLIBC__) && defined(HAS_NOMMU)
bca929d3 4243 char *stack = xmalloc (STACK_SIZE * 4);
e4b7f41c 4244#endif /* defined(__UCLIBC__) && defined(HAS_NOMMU) */
24a09b5f
DJ
4245
4246 linux_supports_tracefork_flag = 0;
4247
e4b7f41c
JK
4248#if !(defined(__UCLIBC__) && defined(HAS_NOMMU))
4249
4250 child_pid = fork ();
4251 if (child_pid == 0)
4252 linux_tracefork_child (NULL);
4253
4254#else /* defined(__UCLIBC__) && defined(HAS_NOMMU) */
4255
51c2684e 4256 /* Use CLONE_VM instead of fork, to support uClinux (no MMU). */
7407e2de
AS
4257#ifdef __ia64__
4258 child_pid = __clone2 (linux_tracefork_child, stack, STACK_SIZE,
4259 CLONE_VM | SIGCHLD, stack + STACK_SIZE * 2);
e4b7f41c 4260#else /* !__ia64__ */
7407e2de
AS
4261 child_pid = clone (linux_tracefork_child, stack + STACK_SIZE,
4262 CLONE_VM | SIGCHLD, stack + STACK_SIZE * 2);
e4b7f41c
JK
4263#endif /* !__ia64__ */
4264
4265#endif /* defined(__UCLIBC__) && defined(HAS_NOMMU) */
4266
24a09b5f 4267 if (child_pid == -1)
51c2684e 4268 perror_with_name ("clone");
24a09b5f
DJ
4269
4270 ret = my_waitpid (child_pid, &status, 0);
4271 if (ret == -1)
4272 perror_with_name ("waitpid");
4273 else if (ret != child_pid)
4274 error ("linux_test_for_tracefork: waitpid: unexpected result %d.", ret);
4275 if (! WIFSTOPPED (status))
4276 error ("linux_test_for_tracefork: waitpid: unexpected status %d.", status);
4277
14ce3065
DE
4278 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0,
4279 (PTRACE_ARG4_TYPE) PTRACE_O_TRACEFORK);
24a09b5f
DJ
4280 if (ret != 0)
4281 {
4282 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
4283 if (ret != 0)
4284 {
4285 warning ("linux_test_for_tracefork: failed to kill child");
4286 return;
4287 }
4288
4289 ret = my_waitpid (child_pid, &status, 0);
4290 if (ret != child_pid)
4291 warning ("linux_test_for_tracefork: failed to wait for killed child");
4292 else if (!WIFSIGNALED (status))
4293 warning ("linux_test_for_tracefork: unexpected wait status 0x%x from "
4294 "killed child", status);
4295
4296 return;
4297 }
4298
4299 ret = ptrace (PTRACE_CONT, child_pid, 0, 0);
4300 if (ret != 0)
4301 warning ("linux_test_for_tracefork: failed to resume child");
4302
4303 ret = my_waitpid (child_pid, &status, 0);
4304
4305 if (ret == child_pid && WIFSTOPPED (status)
4306 && status >> 16 == PTRACE_EVENT_FORK)
4307 {
4308 second_pid = 0;
4309 ret = ptrace (PTRACE_GETEVENTMSG, child_pid, 0, &second_pid);
4310 if (ret == 0 && second_pid != 0)
4311 {
4312 int second_status;
4313
4314 linux_supports_tracefork_flag = 1;
4315 my_waitpid (second_pid, &second_status, 0);
4316 ret = ptrace (PTRACE_KILL, second_pid, 0, 0);
4317 if (ret != 0)
4318 warning ("linux_test_for_tracefork: failed to kill second child");
4319 my_waitpid (second_pid, &status, 0);
4320 }
4321 }
4322 else
4323 warning ("linux_test_for_tracefork: unexpected result from waitpid "
4324 "(%d, status 0x%x)", ret, status);
4325
4326 do
4327 {
4328 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
4329 if (ret != 0)
4330 warning ("linux_test_for_tracefork: failed to kill child");
4331 my_waitpid (child_pid, &status, 0);
4332 }
4333 while (WIFSTOPPED (status));
51c2684e 4334
e4b7f41c 4335#if defined(__UCLIBC__) && defined(HAS_NOMMU)
51c2684e 4336 free (stack);
e4b7f41c 4337#endif /* defined(__UCLIBC__) && defined(HAS_NOMMU) */
24a09b5f
DJ
4338}
4339
4340
2f2893d9
DJ
4341static void
4342linux_look_up_symbols (void)
4343{
0d62e5e8 4344#ifdef USE_THREAD_DB
95954743
PA
4345 struct process_info *proc = current_process ();
4346
cdbfd419 4347 if (proc->private->thread_db != NULL)
0d62e5e8
DJ
4348 return;
4349
6076632b
DE
4350 /* If the kernel supports tracing forks then it also supports tracing
4351 clones, and then we don't need to use the magic thread event breakpoint
4352 to learn about threads. */
cdbfd419 4353 thread_db_init (!linux_supports_tracefork_flag);
0d62e5e8
DJ
4354#endif
4355}
4356
e5379b03 4357static void
ef57601b 4358linux_request_interrupt (void)
e5379b03 4359{
a1928bad 4360 extern unsigned long signal_pid;
e5379b03 4361
95954743
PA
4362 if (!ptid_equal (cont_thread, null_ptid)
4363 && !ptid_equal (cont_thread, minus_one_ptid))
e5379b03 4364 {
54a0b537 4365 struct lwp_info *lwp;
bd99dc85 4366 int lwpid;
e5379b03 4367
54a0b537 4368 lwp = get_thread_lwp (current_inferior);
bd99dc85
PA
4369 lwpid = lwpid_of (lwp);
4370 kill_lwp (lwpid, SIGINT);
e5379b03
DJ
4371 }
4372 else
ef57601b 4373 kill_lwp (signal_pid, SIGINT);
e5379b03
DJ
4374}
4375
aa691b87
RM
4376/* Copy LEN bytes from inferior's auxiliary vector starting at OFFSET
4377 to debugger memory starting at MYADDR. */
4378
4379static int
f450004a 4380linux_read_auxv (CORE_ADDR offset, unsigned char *myaddr, unsigned int len)
aa691b87
RM
4381{
4382 char filename[PATH_MAX];
4383 int fd, n;
95954743 4384 int pid = lwpid_of (get_thread_lwp (current_inferior));
aa691b87 4385
6cebaf6e 4386 xsnprintf (filename, sizeof filename, "/proc/%d/auxv", pid);
aa691b87
RM
4387
4388 fd = open (filename, O_RDONLY);
4389 if (fd < 0)
4390 return -1;
4391
4392 if (offset != (CORE_ADDR) 0
4393 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
4394 n = -1;
4395 else
4396 n = read (fd, myaddr, len);
4397
4398 close (fd);
4399
4400 return n;
4401}
4402
d993e290
PA
4403/* These breakpoint and watchpoint related wrapper functions simply
4404 pass on the function call if the target has registered a
4405 corresponding function. */
e013ee27
OF
4406
4407static int
d993e290 4408linux_insert_point (char type, CORE_ADDR addr, int len)
e013ee27 4409{
d993e290
PA
4410 if (the_low_target.insert_point != NULL)
4411 return the_low_target.insert_point (type, addr, len);
e013ee27
OF
4412 else
4413 /* Unsupported (see target.h). */
4414 return 1;
4415}
4416
4417static int
d993e290 4418linux_remove_point (char type, CORE_ADDR addr, int len)
e013ee27 4419{
d993e290
PA
4420 if (the_low_target.remove_point != NULL)
4421 return the_low_target.remove_point (type, addr, len);
e013ee27
OF
4422 else
4423 /* Unsupported (see target.h). */
4424 return 1;
4425}
4426
4427static int
4428linux_stopped_by_watchpoint (void)
4429{
c3adc08c
PA
4430 struct lwp_info *lwp = get_thread_lwp (current_inferior);
4431
4432 return lwp->stopped_by_watchpoint;
e013ee27
OF
4433}
4434
4435static CORE_ADDR
4436linux_stopped_data_address (void)
4437{
c3adc08c
PA
4438 struct lwp_info *lwp = get_thread_lwp (current_inferior);
4439
4440 return lwp->stopped_data_address;
e013ee27
OF
4441}
4442
42c81e2a 4443#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437
NS
4444#if defined(__mcoldfire__)
4445/* These should really be defined in the kernel's ptrace.h header. */
4446#define PT_TEXT_ADDR 49*4
4447#define PT_DATA_ADDR 50*4
4448#define PT_TEXT_END_ADDR 51*4
eb826dc6
MF
4449#elif defined(BFIN)
4450#define PT_TEXT_ADDR 220
4451#define PT_TEXT_END_ADDR 224
4452#define PT_DATA_ADDR 228
58dbd541
YQ
4453#elif defined(__TMS320C6X__)
4454#define PT_TEXT_ADDR (0x10000*4)
4455#define PT_DATA_ADDR (0x10004*4)
4456#define PT_TEXT_END_ADDR (0x10008*4)
52fb6437
NS
4457#endif
4458
4459/* Under uClinux, programs are loaded at non-zero offsets, which we need
4460 to tell gdb about. */
4461
4462static int
4463linux_read_offsets (CORE_ADDR *text_p, CORE_ADDR *data_p)
4464{
4465#if defined(PT_TEXT_ADDR) && defined(PT_DATA_ADDR) && defined(PT_TEXT_END_ADDR)
4466 unsigned long text, text_end, data;
bd99dc85 4467 int pid = lwpid_of (get_thread_lwp (current_inferior));
52fb6437
NS
4468
4469 errno = 0;
4470
4471 text = ptrace (PTRACE_PEEKUSER, pid, (long)PT_TEXT_ADDR, 0);
4472 text_end = ptrace (PTRACE_PEEKUSER, pid, (long)PT_TEXT_END_ADDR, 0);
4473 data = ptrace (PTRACE_PEEKUSER, pid, (long)PT_DATA_ADDR, 0);
4474
4475 if (errno == 0)
4476 {
4477 /* Both text and data offsets produced at compile-time (and so
1b3f6016
PA
4478 used by gdb) are relative to the beginning of the program,
4479 with the data segment immediately following the text segment.
4480 However, the actual runtime layout in memory may put the data
4481 somewhere else, so when we send gdb a data base-address, we
4482 use the real data base address and subtract the compile-time
4483 data base-address from it (which is just the length of the
4484 text segment). BSS immediately follows data in both
4485 cases. */
52fb6437
NS
4486 *text_p = text;
4487 *data_p = data - (text_end - text);
1b3f6016 4488
52fb6437
NS
4489 return 1;
4490 }
4491#endif
4492 return 0;
4493}
4494#endif
4495
07e059b5
VP
4496static int
4497linux_qxfer_osdata (const char *annex,
1b3f6016
PA
4498 unsigned char *readbuf, unsigned const char *writebuf,
4499 CORE_ADDR offset, int len)
07e059b5 4500{
d26e3629 4501 return linux_common_xfer_osdata (annex, readbuf, offset, len);
07e059b5
VP
4502}
4503
d0722149
DE
4504/* Convert a native/host siginfo object, into/from the siginfo in the
4505 layout of the inferiors' architecture. */
4506
4507static void
4508siginfo_fixup (struct siginfo *siginfo, void *inf_siginfo, int direction)
4509{
4510 int done = 0;
4511
4512 if (the_low_target.siginfo_fixup != NULL)
4513 done = the_low_target.siginfo_fixup (siginfo, inf_siginfo, direction);
4514
4515 /* If there was no callback, or the callback didn't do anything,
4516 then just do a straight memcpy. */
4517 if (!done)
4518 {
4519 if (direction == 1)
4520 memcpy (siginfo, inf_siginfo, sizeof (struct siginfo));
4521 else
4522 memcpy (inf_siginfo, siginfo, sizeof (struct siginfo));
4523 }
4524}
4525
4aa995e1
PA
4526static int
4527linux_xfer_siginfo (const char *annex, unsigned char *readbuf,
4528 unsigned const char *writebuf, CORE_ADDR offset, int len)
4529{
d0722149 4530 int pid;
4aa995e1 4531 struct siginfo siginfo;
d0722149 4532 char inf_siginfo[sizeof (struct siginfo)];
4aa995e1
PA
4533
4534 if (current_inferior == NULL)
4535 return -1;
4536
bd99dc85 4537 pid = lwpid_of (get_thread_lwp (current_inferior));
4aa995e1
PA
4538
4539 if (debug_threads)
d0722149 4540 fprintf (stderr, "%s siginfo for lwp %d.\n",
4aa995e1
PA
4541 readbuf != NULL ? "Reading" : "Writing",
4542 pid);
4543
0adea5f7 4544 if (offset >= sizeof (siginfo))
4aa995e1
PA
4545 return -1;
4546
4547 if (ptrace (PTRACE_GETSIGINFO, pid, 0, &siginfo) != 0)
4548 return -1;
4549
d0722149
DE
4550 /* When GDBSERVER is built as a 64-bit application, ptrace writes into
4551 SIGINFO an object with 64-bit layout. Since debugging a 32-bit
4552 inferior with a 64-bit GDBSERVER should look the same as debugging it
4553 with a 32-bit GDBSERVER, we need to convert it. */
4554 siginfo_fixup (&siginfo, inf_siginfo, 0);
4555
4aa995e1
PA
4556 if (offset + len > sizeof (siginfo))
4557 len = sizeof (siginfo) - offset;
4558
4559 if (readbuf != NULL)
d0722149 4560 memcpy (readbuf, inf_siginfo + offset, len);
4aa995e1
PA
4561 else
4562 {
d0722149
DE
4563 memcpy (inf_siginfo + offset, writebuf, len);
4564
4565 /* Convert back to ptrace layout before flushing it out. */
4566 siginfo_fixup (&siginfo, inf_siginfo, 1);
4567
4aa995e1
PA
4568 if (ptrace (PTRACE_SETSIGINFO, pid, 0, &siginfo) != 0)
4569 return -1;
4570 }
4571
4572 return len;
4573}
4574
bd99dc85
PA
4575/* SIGCHLD handler that serves two purposes: In non-stop/async mode,
4576 so we notice when children change state; as the handler for the
4577 sigsuspend in my_waitpid. */
4578
4579static void
4580sigchld_handler (int signo)
4581{
4582 int old_errno = errno;
4583
4584 if (debug_threads)
e581f2b4
PA
4585 {
4586 do
4587 {
4588 /* fprintf is not async-signal-safe, so call write
4589 directly. */
4590 if (write (2, "sigchld_handler\n",
4591 sizeof ("sigchld_handler\n") - 1) < 0)
4592 break; /* just ignore */
4593 } while (0);
4594 }
bd99dc85
PA
4595
4596 if (target_is_async_p ())
4597 async_file_mark (); /* trigger a linux_wait */
4598
4599 errno = old_errno;
4600}
4601
4602static int
4603linux_supports_non_stop (void)
4604{
4605 return 1;
4606}
4607
4608static int
4609linux_async (int enable)
4610{
4611 int previous = (linux_event_pipe[0] != -1);
4612
8336d594
PA
4613 if (debug_threads)
4614 fprintf (stderr, "linux_async (%d), previous=%d\n",
4615 enable, previous);
4616
bd99dc85
PA
4617 if (previous != enable)
4618 {
4619 sigset_t mask;
4620 sigemptyset (&mask);
4621 sigaddset (&mask, SIGCHLD);
4622
4623 sigprocmask (SIG_BLOCK, &mask, NULL);
4624
4625 if (enable)
4626 {
4627 if (pipe (linux_event_pipe) == -1)
4628 fatal ("creating event pipe failed.");
4629
4630 fcntl (linux_event_pipe[0], F_SETFL, O_NONBLOCK);
4631 fcntl (linux_event_pipe[1], F_SETFL, O_NONBLOCK);
4632
4633 /* Register the event loop handler. */
4634 add_file_handler (linux_event_pipe[0],
4635 handle_target_event, NULL);
4636
4637 /* Always trigger a linux_wait. */
4638 async_file_mark ();
4639 }
4640 else
4641 {
4642 delete_file_handler (linux_event_pipe[0]);
4643
4644 close (linux_event_pipe[0]);
4645 close (linux_event_pipe[1]);
4646 linux_event_pipe[0] = -1;
4647 linux_event_pipe[1] = -1;
4648 }
4649
4650 sigprocmask (SIG_UNBLOCK, &mask, NULL);
4651 }
4652
4653 return previous;
4654}
4655
4656static int
4657linux_start_non_stop (int nonstop)
4658{
4659 /* Register or unregister from event-loop accordingly. */
4660 linux_async (nonstop);
4661 return 0;
4662}
4663
cf8fd78b
PA
4664static int
4665linux_supports_multi_process (void)
4666{
4667 return 1;
4668}
4669
03583c20
UW
4670static int
4671linux_supports_disable_randomization (void)
4672{
4673#ifdef HAVE_PERSONALITY
4674 return 1;
4675#else
4676 return 0;
4677#endif
4678}
efcbbd14
UW
4679
4680/* Enumerate spufs IDs for process PID. */
4681static int
4682spu_enumerate_spu_ids (long pid, unsigned char *buf, CORE_ADDR offset, int len)
4683{
4684 int pos = 0;
4685 int written = 0;
4686 char path[128];
4687 DIR *dir;
4688 struct dirent *entry;
4689
4690 sprintf (path, "/proc/%ld/fd", pid);
4691 dir = opendir (path);
4692 if (!dir)
4693 return -1;
4694
4695 rewinddir (dir);
4696 while ((entry = readdir (dir)) != NULL)
4697 {
4698 struct stat st;
4699 struct statfs stfs;
4700 int fd;
4701
4702 fd = atoi (entry->d_name);
4703 if (!fd)
4704 continue;
4705
4706 sprintf (path, "/proc/%ld/fd/%d", pid, fd);
4707 if (stat (path, &st) != 0)
4708 continue;
4709 if (!S_ISDIR (st.st_mode))
4710 continue;
4711
4712 if (statfs (path, &stfs) != 0)
4713 continue;
4714 if (stfs.f_type != SPUFS_MAGIC)
4715 continue;
4716
4717 if (pos >= offset && pos + 4 <= offset + len)
4718 {
4719 *(unsigned int *)(buf + pos - offset) = fd;
4720 written += 4;
4721 }
4722 pos += 4;
4723 }
4724
4725 closedir (dir);
4726 return written;
4727}
4728
4729/* Implements the to_xfer_partial interface for the TARGET_OBJECT_SPU
4730 object type, using the /proc file system. */
4731static int
4732linux_qxfer_spu (const char *annex, unsigned char *readbuf,
4733 unsigned const char *writebuf,
4734 CORE_ADDR offset, int len)
4735{
4736 long pid = lwpid_of (get_thread_lwp (current_inferior));
4737 char buf[128];
4738 int fd = 0;
4739 int ret = 0;
4740
4741 if (!writebuf && !readbuf)
4742 return -1;
4743
4744 if (!*annex)
4745 {
4746 if (!readbuf)
4747 return -1;
4748 else
4749 return spu_enumerate_spu_ids (pid, readbuf, offset, len);
4750 }
4751
4752 sprintf (buf, "/proc/%ld/fd/%s", pid, annex);
4753 fd = open (buf, writebuf? O_WRONLY : O_RDONLY);
4754 if (fd <= 0)
4755 return -1;
4756
4757 if (offset != 0
4758 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
4759 {
4760 close (fd);
4761 return 0;
4762 }
4763
4764 if (writebuf)
4765 ret = write (fd, writebuf, (size_t) len);
4766 else
4767 ret = read (fd, readbuf, (size_t) len);
4768
4769 close (fd);
4770 return ret;
4771}
4772
723b724b 4773#if defined PT_GETDSBT || defined PTRACE_GETFDPIC
78d85199
YQ
4774struct target_loadseg
4775{
4776 /* Core address to which the segment is mapped. */
4777 Elf32_Addr addr;
4778 /* VMA recorded in the program header. */
4779 Elf32_Addr p_vaddr;
4780 /* Size of this segment in memory. */
4781 Elf32_Word p_memsz;
4782};
4783
723b724b 4784# if defined PT_GETDSBT
78d85199
YQ
4785struct target_loadmap
4786{
4787 /* Protocol version number, must be zero. */
4788 Elf32_Word version;
4789 /* Pointer to the DSBT table, its size, and the DSBT index. */
4790 unsigned *dsbt_table;
4791 unsigned dsbt_size, dsbt_index;
4792 /* Number of segments in this map. */
4793 Elf32_Word nsegs;
4794 /* The actual memory map. */
4795 struct target_loadseg segs[/*nsegs*/];
4796};
723b724b
MF
4797# define LINUX_LOADMAP PT_GETDSBT
4798# define LINUX_LOADMAP_EXEC PTRACE_GETDSBT_EXEC
4799# define LINUX_LOADMAP_INTERP PTRACE_GETDSBT_INTERP
4800# else
4801struct target_loadmap
4802{
4803 /* Protocol version number, must be zero. */
4804 Elf32_Half version;
4805 /* Number of segments in this map. */
4806 Elf32_Half nsegs;
4807 /* The actual memory map. */
4808 struct target_loadseg segs[/*nsegs*/];
4809};
4810# define LINUX_LOADMAP PTRACE_GETFDPIC
4811# define LINUX_LOADMAP_EXEC PTRACE_GETFDPIC_EXEC
4812# define LINUX_LOADMAP_INTERP PTRACE_GETFDPIC_INTERP
4813# endif
78d85199 4814
78d85199
YQ
4815static int
4816linux_read_loadmap (const char *annex, CORE_ADDR offset,
4817 unsigned char *myaddr, unsigned int len)
4818{
4819 int pid = lwpid_of (get_thread_lwp (current_inferior));
4820 int addr = -1;
4821 struct target_loadmap *data = NULL;
4822 unsigned int actual_length, copy_length;
4823
4824 if (strcmp (annex, "exec") == 0)
723b724b 4825 addr = (int) LINUX_LOADMAP_EXEC;
78d85199 4826 else if (strcmp (annex, "interp") == 0)
723b724b 4827 addr = (int) LINUX_LOADMAP_INTERP;
78d85199
YQ
4828 else
4829 return -1;
4830
723b724b 4831 if (ptrace (LINUX_LOADMAP, pid, addr, &data) != 0)
78d85199
YQ
4832 return -1;
4833
4834 if (data == NULL)
4835 return -1;
4836
4837 actual_length = sizeof (struct target_loadmap)
4838 + sizeof (struct target_loadseg) * data->nsegs;
4839
4840 if (offset < 0 || offset > actual_length)
4841 return -1;
4842
4843 copy_length = actual_length - offset < len ? actual_length - offset : len;
4844 memcpy (myaddr, (char *) data + offset, copy_length);
4845 return copy_length;
4846}
723b724b
MF
4847#else
4848# define linux_read_loadmap NULL
4849#endif /* defined PT_GETDSBT || defined PTRACE_GETFDPIC */
78d85199 4850
1570b33e
L
4851static void
4852linux_process_qsupported (const char *query)
4853{
4854 if (the_low_target.process_qsupported != NULL)
4855 the_low_target.process_qsupported (query);
4856}
4857
219f2f23
PA
4858static int
4859linux_supports_tracepoints (void)
4860{
4861 if (*the_low_target.supports_tracepoints == NULL)
4862 return 0;
4863
4864 return (*the_low_target.supports_tracepoints) ();
4865}
4866
4867static CORE_ADDR
4868linux_read_pc (struct regcache *regcache)
4869{
4870 if (the_low_target.get_pc == NULL)
4871 return 0;
4872
4873 return (*the_low_target.get_pc) (regcache);
4874}
4875
4876static void
4877linux_write_pc (struct regcache *regcache, CORE_ADDR pc)
4878{
4879 gdb_assert (the_low_target.set_pc != NULL);
4880
4881 (*the_low_target.set_pc) (regcache, pc);
4882}
4883
8336d594
PA
4884static int
4885linux_thread_stopped (struct thread_info *thread)
4886{
4887 return get_thread_lwp (thread)->stopped;
4888}
4889
4890/* This exposes stop-all-threads functionality to other modules. */
4891
4892static void
7984d532 4893linux_pause_all (int freeze)
8336d594 4894{
7984d532
PA
4895 stop_all_lwps (freeze, NULL);
4896}
4897
4898/* This exposes unstop-all-threads functionality to other gdbserver
4899 modules. */
4900
4901static void
4902linux_unpause_all (int unfreeze)
4903{
4904 unstop_all_lwps (unfreeze, NULL);
8336d594
PA
4905}
4906
90d74c30
PA
4907static int
4908linux_prepare_to_access_memory (void)
4909{
4910 /* Neither ptrace nor /proc/PID/mem allow accessing memory through a
4911 running LWP. */
4912 if (non_stop)
4913 linux_pause_all (1);
4914 return 0;
4915}
4916
4917static void
0146f85b 4918linux_done_accessing_memory (void)
90d74c30
PA
4919{
4920 /* Neither ptrace nor /proc/PID/mem allow accessing memory through a
4921 running LWP. */
4922 if (non_stop)
4923 linux_unpause_all (1);
4924}
4925
fa593d66
PA
4926static int
4927linux_install_fast_tracepoint_jump_pad (CORE_ADDR tpoint, CORE_ADDR tpaddr,
4928 CORE_ADDR collector,
4929 CORE_ADDR lockaddr,
4930 ULONGEST orig_size,
4931 CORE_ADDR *jump_entry,
405f8e94
SS
4932 CORE_ADDR *trampoline,
4933 ULONGEST *trampoline_size,
fa593d66
PA
4934 unsigned char *jjump_pad_insn,
4935 ULONGEST *jjump_pad_insn_size,
4936 CORE_ADDR *adjusted_insn_addr,
405f8e94
SS
4937 CORE_ADDR *adjusted_insn_addr_end,
4938 char *err)
fa593d66
PA
4939{
4940 return (*the_low_target.install_fast_tracepoint_jump_pad)
4941 (tpoint, tpaddr, collector, lockaddr, orig_size,
405f8e94
SS
4942 jump_entry, trampoline, trampoline_size,
4943 jjump_pad_insn, jjump_pad_insn_size,
4944 adjusted_insn_addr, adjusted_insn_addr_end,
4945 err);
fa593d66
PA
4946}
4947
6a271cae
PA
4948static struct emit_ops *
4949linux_emit_ops (void)
4950{
4951 if (the_low_target.emit_ops != NULL)
4952 return (*the_low_target.emit_ops) ();
4953 else
4954 return NULL;
4955}
4956
405f8e94
SS
4957static int
4958linux_get_min_fast_tracepoint_insn_len (void)
4959{
4960 return (*the_low_target.get_min_fast_tracepoint_insn_len) ();
4961}
4962
2268b414
JK
4963/* Extract &phdr and num_phdr in the inferior. Return 0 on success. */
4964
4965static int
4966get_phdr_phnum_from_proc_auxv (const int pid, const int is_elf64,
4967 CORE_ADDR *phdr_memaddr, int *num_phdr)
4968{
4969 char filename[PATH_MAX];
4970 int fd;
4971 const int auxv_size = is_elf64
4972 ? sizeof (Elf64_auxv_t) : sizeof (Elf32_auxv_t);
4973 char buf[sizeof (Elf64_auxv_t)]; /* The larger of the two. */
4974
4975 xsnprintf (filename, sizeof filename, "/proc/%d/auxv", pid);
4976
4977 fd = open (filename, O_RDONLY);
4978 if (fd < 0)
4979 return 1;
4980
4981 *phdr_memaddr = 0;
4982 *num_phdr = 0;
4983 while (read (fd, buf, auxv_size) == auxv_size
4984 && (*phdr_memaddr == 0 || *num_phdr == 0))
4985 {
4986 if (is_elf64)
4987 {
4988 Elf64_auxv_t *const aux = (Elf64_auxv_t *) buf;
4989
4990 switch (aux->a_type)
4991 {
4992 case AT_PHDR:
4993 *phdr_memaddr = aux->a_un.a_val;
4994 break;
4995 case AT_PHNUM:
4996 *num_phdr = aux->a_un.a_val;
4997 break;
4998 }
4999 }
5000 else
5001 {
5002 Elf32_auxv_t *const aux = (Elf32_auxv_t *) buf;
5003
5004 switch (aux->a_type)
5005 {
5006 case AT_PHDR:
5007 *phdr_memaddr = aux->a_un.a_val;
5008 break;
5009 case AT_PHNUM:
5010 *num_phdr = aux->a_un.a_val;
5011 break;
5012 }
5013 }
5014 }
5015
5016 close (fd);
5017
5018 if (*phdr_memaddr == 0 || *num_phdr == 0)
5019 {
5020 warning ("Unexpected missing AT_PHDR and/or AT_PHNUM: "
5021 "phdr_memaddr = %ld, phdr_num = %d",
5022 (long) *phdr_memaddr, *num_phdr);
5023 return 2;
5024 }
5025
5026 return 0;
5027}
5028
5029/* Return &_DYNAMIC (via PT_DYNAMIC) in the inferior, or 0 if not present. */
5030
5031static CORE_ADDR
5032get_dynamic (const int pid, const int is_elf64)
5033{
5034 CORE_ADDR phdr_memaddr, relocation;
5035 int num_phdr, i;
5036 unsigned char *phdr_buf;
5037 const int phdr_size = is_elf64 ? sizeof (Elf64_Phdr) : sizeof (Elf32_Phdr);
5038
5039 if (get_phdr_phnum_from_proc_auxv (pid, is_elf64, &phdr_memaddr, &num_phdr))
5040 return 0;
5041
5042 gdb_assert (num_phdr < 100); /* Basic sanity check. */
5043 phdr_buf = alloca (num_phdr * phdr_size);
5044
5045 if (linux_read_memory (phdr_memaddr, phdr_buf, num_phdr * phdr_size))
5046 return 0;
5047
5048 /* Compute relocation: it is expected to be 0 for "regular" executables,
5049 non-zero for PIE ones. */
5050 relocation = -1;
5051 for (i = 0; relocation == -1 && i < num_phdr; i++)
5052 if (is_elf64)
5053 {
5054 Elf64_Phdr *const p = (Elf64_Phdr *) (phdr_buf + i * phdr_size);
5055
5056 if (p->p_type == PT_PHDR)
5057 relocation = phdr_memaddr - p->p_vaddr;
5058 }
5059 else
5060 {
5061 Elf32_Phdr *const p = (Elf32_Phdr *) (phdr_buf + i * phdr_size);
5062
5063 if (p->p_type == PT_PHDR)
5064 relocation = phdr_memaddr - p->p_vaddr;
5065 }
5066
5067 if (relocation == -1)
5068 {
5069 warning ("Unexpected missing PT_PHDR");
5070 return 0;
5071 }
5072
5073 for (i = 0; i < num_phdr; i++)
5074 {
5075 if (is_elf64)
5076 {
5077 Elf64_Phdr *const p = (Elf64_Phdr *) (phdr_buf + i * phdr_size);
5078
5079 if (p->p_type == PT_DYNAMIC)
5080 return p->p_vaddr + relocation;
5081 }
5082 else
5083 {
5084 Elf32_Phdr *const p = (Elf32_Phdr *) (phdr_buf + i * phdr_size);
5085
5086 if (p->p_type == PT_DYNAMIC)
5087 return p->p_vaddr + relocation;
5088 }
5089 }
5090
5091 return 0;
5092}
5093
5094/* Return &_r_debug in the inferior, or -1 if not present. Return value
5095 can be 0 if the inferior does not yet have the library list initialized. */
5096
5097static CORE_ADDR
5098get_r_debug (const int pid, const int is_elf64)
5099{
5100 CORE_ADDR dynamic_memaddr;
5101 const int dyn_size = is_elf64 ? sizeof (Elf64_Dyn) : sizeof (Elf32_Dyn);
5102 unsigned char buf[sizeof (Elf64_Dyn)]; /* The larger of the two. */
5103
5104 dynamic_memaddr = get_dynamic (pid, is_elf64);
5105 if (dynamic_memaddr == 0)
5106 return (CORE_ADDR) -1;
5107
5108 while (linux_read_memory (dynamic_memaddr, buf, dyn_size) == 0)
5109 {
5110 if (is_elf64)
5111 {
5112 Elf64_Dyn *const dyn = (Elf64_Dyn *) buf;
5113
5114 if (dyn->d_tag == DT_DEBUG)
5115 return dyn->d_un.d_val;
5116
5117 if (dyn->d_tag == DT_NULL)
5118 break;
5119 }
5120 else
5121 {
5122 Elf32_Dyn *const dyn = (Elf32_Dyn *) buf;
5123
5124 if (dyn->d_tag == DT_DEBUG)
5125 return dyn->d_un.d_val;
5126
5127 if (dyn->d_tag == DT_NULL)
5128 break;
5129 }
5130
5131 dynamic_memaddr += dyn_size;
5132 }
5133
5134 return (CORE_ADDR) -1;
5135}
5136
5137/* Read one pointer from MEMADDR in the inferior. */
5138
5139static int
5140read_one_ptr (CORE_ADDR memaddr, CORE_ADDR *ptr, int ptr_size)
5141{
5142 *ptr = 0;
5143 return linux_read_memory (memaddr, (unsigned char *) ptr, ptr_size);
5144}
5145
5146struct link_map_offsets
5147 {
5148 /* Offset and size of r_debug.r_version. */
5149 int r_version_offset;
5150
5151 /* Offset and size of r_debug.r_map. */
5152 int r_map_offset;
5153
5154 /* Offset to l_addr field in struct link_map. */
5155 int l_addr_offset;
5156
5157 /* Offset to l_name field in struct link_map. */
5158 int l_name_offset;
5159
5160 /* Offset to l_ld field in struct link_map. */
5161 int l_ld_offset;
5162
5163 /* Offset to l_next field in struct link_map. */
5164 int l_next_offset;
5165
5166 /* Offset to l_prev field in struct link_map. */
5167 int l_prev_offset;
5168 };
5169
5170/* Construct qXfer:libraries:read reply. */
5171
5172static int
5173linux_qxfer_libraries_svr4 (const char *annex, unsigned char *readbuf,
5174 unsigned const char *writebuf,
5175 CORE_ADDR offset, int len)
5176{
5177 char *document;
5178 unsigned document_len;
5179 struct process_info_private *const priv = current_process ()->private;
5180 char filename[PATH_MAX];
5181 int pid, is_elf64;
5182
5183 static const struct link_map_offsets lmo_32bit_offsets =
5184 {
5185 0, /* r_version offset. */
5186 4, /* r_debug.r_map offset. */
5187 0, /* l_addr offset in link_map. */
5188 4, /* l_name offset in link_map. */
5189 8, /* l_ld offset in link_map. */
5190 12, /* l_next offset in link_map. */
5191 16 /* l_prev offset in link_map. */
5192 };
5193
5194 static const struct link_map_offsets lmo_64bit_offsets =
5195 {
5196 0, /* r_version offset. */
5197 8, /* r_debug.r_map offset. */
5198 0, /* l_addr offset in link_map. */
5199 8, /* l_name offset in link_map. */
5200 16, /* l_ld offset in link_map. */
5201 24, /* l_next offset in link_map. */
5202 32 /* l_prev offset in link_map. */
5203 };
5204 const struct link_map_offsets *lmo;
5205
5206 if (writebuf != NULL)
5207 return -2;
5208 if (readbuf == NULL)
5209 return -1;
5210
5211 pid = lwpid_of (get_thread_lwp (current_inferior));
5212 xsnprintf (filename, sizeof filename, "/proc/%d/exe", pid);
5213 is_elf64 = elf_64_file_p (filename);
5214 lmo = is_elf64 ? &lmo_64bit_offsets : &lmo_32bit_offsets;
5215
5216 if (priv->r_debug == 0)
5217 priv->r_debug = get_r_debug (pid, is_elf64);
5218
5219 if (priv->r_debug == (CORE_ADDR) -1 || priv->r_debug == 0)
5220 {
5221 document = xstrdup ("<library-list-svr4 version=\"1.0\"/>\n");
5222 }
5223 else
5224 {
5225 int allocated = 1024;
5226 char *p;
5227 const int ptr_size = is_elf64 ? 8 : 4;
5228 CORE_ADDR lm_addr, lm_prev, l_name, l_addr, l_ld, l_next, l_prev;
5229 int r_version, header_done = 0;
5230
5231 document = xmalloc (allocated);
5232 strcpy (document, "<library-list-svr4 version=\"1.0\"");
5233 p = document + strlen (document);
5234
5235 r_version = 0;
5236 if (linux_read_memory (priv->r_debug + lmo->r_version_offset,
5237 (unsigned char *) &r_version,
5238 sizeof (r_version)) != 0
5239 || r_version != 1)
5240 {
5241 warning ("unexpected r_debug version %d", r_version);
5242 goto done;
5243 }
5244
5245 if (read_one_ptr (priv->r_debug + lmo->r_map_offset,
5246 &lm_addr, ptr_size) != 0)
5247 {
5248 warning ("unable to read r_map from 0x%lx",
5249 (long) priv->r_debug + lmo->r_map_offset);
5250 goto done;
5251 }
5252
5253 lm_prev = 0;
5254 while (read_one_ptr (lm_addr + lmo->l_name_offset,
5255 &l_name, ptr_size) == 0
5256 && read_one_ptr (lm_addr + lmo->l_addr_offset,
5257 &l_addr, ptr_size) == 0
5258 && read_one_ptr (lm_addr + lmo->l_ld_offset,
5259 &l_ld, ptr_size) == 0
5260 && read_one_ptr (lm_addr + lmo->l_prev_offset,
5261 &l_prev, ptr_size) == 0
5262 && read_one_ptr (lm_addr + lmo->l_next_offset,
5263 &l_next, ptr_size) == 0)
5264 {
5265 unsigned char libname[PATH_MAX];
5266
5267 if (lm_prev != l_prev)
5268 {
5269 warning ("Corrupted shared library list: 0x%lx != 0x%lx",
5270 (long) lm_prev, (long) l_prev);
5271 break;
5272 }
5273
5274 /* Not checking for error because reading may stop before
5275 we've got PATH_MAX worth of characters. */
5276 libname[0] = '\0';
5277 linux_read_memory (l_name, libname, sizeof (libname) - 1);
5278 libname[sizeof (libname) - 1] = '\0';
5279 if (libname[0] != '\0')
5280 {
5281 /* 6x the size for xml_escape_text below. */
5282 size_t len = 6 * strlen ((char *) libname);
5283 char *name;
5284
5285 if (!header_done)
5286 {
5287 /* Terminate `<library-list-svr4'. */
5288 *p++ = '>';
5289 header_done = 1;
5290 }
5291
5292 while (allocated < p - document + len + 200)
5293 {
5294 /* Expand to guarantee sufficient storage. */
5295 uintptr_t document_len = p - document;
5296
5297 document = xrealloc (document, 2 * allocated);
5298 allocated *= 2;
5299 p = document + document_len;
5300 }
5301
5302 name = xml_escape_text ((char *) libname);
5303 p += sprintf (p, "<library name=\"%s\" lm=\"0x%lx\" "
5304 "l_addr=\"0x%lx\" l_ld=\"0x%lx\"/>",
5305 name, (unsigned long) lm_addr,
5306 (unsigned long) l_addr, (unsigned long) l_ld);
5307 free (name);
5308 }
5309 else if (lm_prev == 0)
5310 {
5311 sprintf (p, " main-lm=\"0x%lx\"", (unsigned long) lm_addr);
5312 p = p + strlen (p);
5313 }
5314
5315 if (l_next == 0)
5316 break;
5317
5318 lm_prev = lm_addr;
5319 lm_addr = l_next;
5320 }
5321 done:
5322 strcpy (p, "</library-list-svr4>");
5323 }
5324
5325 document_len = strlen (document);
5326 if (offset < document_len)
5327 document_len -= offset;
5328 else
5329 document_len = 0;
5330 if (len > document_len)
5331 len = document_len;
5332
5333 memcpy (readbuf, document + offset, len);
5334 xfree (document);
5335
5336 return len;
5337}
5338
ce3a066d
DJ
5339static struct target_ops linux_target_ops = {
5340 linux_create_inferior,
5341 linux_attach,
5342 linux_kill,
6ad8ae5c 5343 linux_detach,
8336d594 5344 linux_mourn,
444d6139 5345 linux_join,
ce3a066d
DJ
5346 linux_thread_alive,
5347 linux_resume,
5348 linux_wait,
5349 linux_fetch_registers,
5350 linux_store_registers,
90d74c30 5351 linux_prepare_to_access_memory,
0146f85b 5352 linux_done_accessing_memory,
ce3a066d
DJ
5353 linux_read_memory,
5354 linux_write_memory,
2f2893d9 5355 linux_look_up_symbols,
ef57601b 5356 linux_request_interrupt,
aa691b87 5357 linux_read_auxv,
d993e290
PA
5358 linux_insert_point,
5359 linux_remove_point,
e013ee27
OF
5360 linux_stopped_by_watchpoint,
5361 linux_stopped_data_address,
42c81e2a 5362#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437 5363 linux_read_offsets,
dae5f5cf
DJ
5364#else
5365 NULL,
5366#endif
5367#ifdef USE_THREAD_DB
5368 thread_db_get_tls_address,
5369#else
5370 NULL,
52fb6437 5371#endif
efcbbd14 5372 linux_qxfer_spu,
59a016f0 5373 hostio_last_error_from_errno,
07e059b5 5374 linux_qxfer_osdata,
4aa995e1 5375 linux_xfer_siginfo,
bd99dc85
PA
5376 linux_supports_non_stop,
5377 linux_async,
5378 linux_start_non_stop,
cdbfd419
PP
5379 linux_supports_multi_process,
5380#ifdef USE_THREAD_DB
dc146f7c 5381 thread_db_handle_monitor_command,
cdbfd419 5382#else
dc146f7c 5383 NULL,
cdbfd419 5384#endif
d26e3629 5385 linux_common_core_of_thread,
78d85199 5386 linux_read_loadmap,
219f2f23
PA
5387 linux_process_qsupported,
5388 linux_supports_tracepoints,
5389 linux_read_pc,
8336d594
PA
5390 linux_write_pc,
5391 linux_thread_stopped,
7984d532 5392 NULL,
711e434b 5393 linux_pause_all,
7984d532 5394 linux_unpause_all,
fa593d66
PA
5395 linux_cancel_breakpoints,
5396 linux_stabilize_threads,
6a271cae 5397 linux_install_fast_tracepoint_jump_pad,
03583c20
UW
5398 linux_emit_ops,
5399 linux_supports_disable_randomization,
405f8e94 5400 linux_get_min_fast_tracepoint_insn_len,
2268b414 5401 linux_qxfer_libraries_svr4,
ce3a066d
DJ
5402};
5403
0d62e5e8
DJ
5404static void
5405linux_init_signals ()
5406{
5407 /* FIXME drow/2002-06-09: As above, we should check with LinuxThreads
5408 to find what the cancel signal actually is. */
1a981360 5409#ifndef __ANDROID__ /* Bionic doesn't use SIGRTMIN the way glibc does. */
254787d4 5410 signal (__SIGRTMIN+1, SIG_IGN);
60c3d7b0 5411#endif
0d62e5e8
DJ
5412}
5413
da6d8c04
DJ
5414void
5415initialize_low (void)
5416{
bd99dc85
PA
5417 struct sigaction sigchld_action;
5418 memset (&sigchld_action, 0, sizeof (sigchld_action));
ce3a066d 5419 set_target_ops (&linux_target_ops);
611cb4a5
DJ
5420 set_breakpoint_data (the_low_target.breakpoint,
5421 the_low_target.breakpoint_len);
0d62e5e8 5422 linux_init_signals ();
24a09b5f 5423 linux_test_for_tracefork ();
52fa2412
UW
5424#ifdef HAVE_LINUX_REGSETS
5425 for (num_regsets = 0; target_regsets[num_regsets].size >= 0; num_regsets++)
5426 ;
bca929d3 5427 disabled_regsets = xmalloc (num_regsets);
52fa2412 5428#endif
bd99dc85
PA
5429
5430 sigchld_action.sa_handler = sigchld_handler;
5431 sigemptyset (&sigchld_action.sa_mask);
5432 sigchld_action.sa_flags = SA_RESTART;
5433 sigaction (SIGCHLD, &sigchld_action, NULL);
da6d8c04 5434}
This page took 1.071595 seconds and 4 git commands to generate.