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