]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/linux-low.c
* linux-low.c (resume_status_pending_p): Tweak comment.
[thirdparty/binutils-gdb.git] / gdb / gdbserver / linux-low.c
CommitLineData
da6d8c04 1/* Low level interface to ptrace, for the remote server for GDB.
28e7fd62 2 Copyright (C) 1995-2013 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
DJ
3300
3301/* This function is called once per thread. We look up the thread
5544ad89
DJ
3302 in RESUME_PTR, and mark the thread with a pointer to the appropriate
3303 resume request.
3304
3305 This algorithm is O(threads * resume elements), but resume elements
3306 is small (and will remain small at least until GDB supports thread
3307 suspension). */
2bd7c093
PA
3308static int
3309linux_set_resume_request (struct inferior_list_entry *entry, void *arg)
0d62e5e8 3310{
54a0b537 3311 struct lwp_info *lwp;
64386c31 3312 struct thread_info *thread;
5544ad89 3313 int ndx;
2bd7c093 3314 struct thread_resume_array *r;
64386c31
DJ
3315
3316 thread = (struct thread_info *) entry;
54a0b537 3317 lwp = get_thread_lwp (thread);
2bd7c093 3318 r = arg;
64386c31 3319
2bd7c093 3320 for (ndx = 0; ndx < r->n; ndx++)
95954743
PA
3321 {
3322 ptid_t ptid = r->resume[ndx].thread;
3323 if (ptid_equal (ptid, minus_one_ptid)
3324 || ptid_equal (ptid, entry->id)
0c9070b3
YQ
3325 /* Handle both 'pPID' and 'pPID.-1' as meaning 'all threads
3326 of PID'. */
3327 || (ptid_get_pid (ptid) == pid_of (lwp)
3328 && (ptid_is_pid (ptid)
3329 || ptid_get_lwp (ptid) == -1)))
95954743 3330 {
d50171e4 3331 if (r->resume[ndx].kind == resume_stop
8336d594 3332 && thread->last_resume_kind == resume_stop)
d50171e4
PA
3333 {
3334 if (debug_threads)
3335 fprintf (stderr, "already %s LWP %ld at GDB's request\n",
3336 thread->last_status.kind == TARGET_WAITKIND_STOPPED
3337 ? "stopped"
3338 : "stopping",
3339 lwpid_of (lwp));
3340
3341 continue;
3342 }
3343
95954743 3344 lwp->resume = &r->resume[ndx];
8336d594 3345 thread->last_resume_kind = lwp->resume->kind;
fa593d66 3346
c2d6af84
PA
3347 lwp->step_range_start = lwp->resume->step_range_start;
3348 lwp->step_range_end = lwp->resume->step_range_end;
3349
fa593d66
PA
3350 /* If we had a deferred signal to report, dequeue one now.
3351 This can happen if LWP gets more than one signal while
3352 trying to get out of a jump pad. */
3353 if (lwp->stopped
3354 && !lwp->status_pending_p
3355 && dequeue_one_deferred_signal (lwp, &lwp->status_pending))
3356 {
3357 lwp->status_pending_p = 1;
3358
3359 if (debug_threads)
3360 fprintf (stderr,
3361 "Dequeueing deferred signal %d for LWP %ld, "
3362 "leaving status pending.\n",
3363 WSTOPSIG (lwp->status_pending), lwpid_of (lwp));
3364 }
3365
95954743
PA
3366 return 0;
3367 }
3368 }
2bd7c093
PA
3369
3370 /* No resume action for this thread. */
3371 lwp->resume = NULL;
64386c31 3372
2bd7c093 3373 return 0;
5544ad89
DJ
3374}
3375
20ad9378
DE
3376/* find_inferior callback for linux_resume.
3377 Set *FLAG_P if this lwp has an interesting status pending. */
5544ad89 3378
bd99dc85
PA
3379static int
3380resume_status_pending_p (struct inferior_list_entry *entry, void *flag_p)
5544ad89 3381{
bd99dc85 3382 struct lwp_info *lwp = (struct lwp_info *) entry;
5544ad89 3383
bd99dc85
PA
3384 /* LWPs which will not be resumed are not interesting, because
3385 we might not wait for them next time through linux_wait. */
2bd7c093 3386 if (lwp->resume == NULL)
bd99dc85 3387 return 0;
64386c31 3388
bd99dc85 3389 if (lwp->status_pending_p)
d50171e4
PA
3390 * (int *) flag_p = 1;
3391
3392 return 0;
3393}
3394
3395/* Return 1 if this lwp that GDB wants running is stopped at an
3396 internal breakpoint that we need to step over. It assumes that any
3397 required STOP_PC adjustment has already been propagated to the
3398 inferior's regcache. */
3399
3400static int
3401need_step_over_p (struct inferior_list_entry *entry, void *dummy)
3402{
3403 struct lwp_info *lwp = (struct lwp_info *) entry;
8336d594 3404 struct thread_info *thread;
d50171e4
PA
3405 struct thread_info *saved_inferior;
3406 CORE_ADDR pc;
3407
3408 /* LWPs which will not be resumed are not interesting, because we
3409 might not wait for them next time through linux_wait. */
3410
3411 if (!lwp->stopped)
3412 {
3413 if (debug_threads)
3414 fprintf (stderr,
3415 "Need step over [LWP %ld]? Ignoring, not stopped\n",
3416 lwpid_of (lwp));
3417 return 0;
3418 }
3419
8336d594
PA
3420 thread = get_lwp_thread (lwp);
3421
3422 if (thread->last_resume_kind == resume_stop)
d50171e4
PA
3423 {
3424 if (debug_threads)
3425 fprintf (stderr,
3426 "Need step over [LWP %ld]? Ignoring, should remain stopped\n",
3427 lwpid_of (lwp));
3428 return 0;
3429 }
3430
7984d532
PA
3431 gdb_assert (lwp->suspended >= 0);
3432
3433 if (lwp->suspended)
3434 {
3435 if (debug_threads)
3436 fprintf (stderr,
3437 "Need step over [LWP %ld]? Ignoring, suspended\n",
3438 lwpid_of (lwp));
3439 return 0;
3440 }
3441
d50171e4
PA
3442 if (!lwp->need_step_over)
3443 {
3444 if (debug_threads)
3445 fprintf (stderr,
3446 "Need step over [LWP %ld]? No\n", lwpid_of (lwp));
3447 }
5544ad89 3448
bd99dc85 3449 if (lwp->status_pending_p)
d50171e4
PA
3450 {
3451 if (debug_threads)
3452 fprintf (stderr,
3453 "Need step over [LWP %ld]? Ignoring, has pending status.\n",
3454 lwpid_of (lwp));
3455 return 0;
3456 }
3457
3458 /* Note: PC, not STOP_PC. Either GDB has adjusted the PC already,
3459 or we have. */
3460 pc = get_pc (lwp);
3461
3462 /* If the PC has changed since we stopped, then don't do anything,
3463 and let the breakpoint/tracepoint be hit. This happens if, for
3464 instance, GDB handled the decr_pc_after_break subtraction itself,
3465 GDB is OOL stepping this thread, or the user has issued a "jump"
3466 command, or poked thread's registers herself. */
3467 if (pc != lwp->stop_pc)
3468 {
3469 if (debug_threads)
3470 fprintf (stderr,
3471 "Need step over [LWP %ld]? Cancelling, PC was changed. "
3472 "Old stop_pc was 0x%s, PC is now 0x%s\n",
3473 lwpid_of (lwp), paddress (lwp->stop_pc), paddress (pc));
3474
3475 lwp->need_step_over = 0;
3476 return 0;
3477 }
3478
3479 saved_inferior = current_inferior;
8336d594 3480 current_inferior = thread;
d50171e4 3481
8b07ae33 3482 /* We can only step over breakpoints we know about. */
fa593d66 3483 if (breakpoint_here (pc) || fast_tracepoint_jump_here (pc))
d50171e4 3484 {
8b07ae33 3485 /* Don't step over a breakpoint that GDB expects to hit
9f3a5c85
LM
3486 though. If the condition is being evaluated on the target's side
3487 and it evaluate to false, step over this breakpoint as well. */
3488 if (gdb_breakpoint_here (pc)
d3ce09f5
SS
3489 && gdb_condition_true_at_breakpoint (pc)
3490 && gdb_no_commands_at_breakpoint (pc))
8b07ae33
PA
3491 {
3492 if (debug_threads)
3493 fprintf (stderr,
3494 "Need step over [LWP %ld]? yes, but found"
3495 " GDB breakpoint at 0x%s; skipping step over\n",
3496 lwpid_of (lwp), paddress (pc));
d50171e4 3497
8b07ae33
PA
3498 current_inferior = saved_inferior;
3499 return 0;
3500 }
3501 else
3502 {
3503 if (debug_threads)
3504 fprintf (stderr,
493e2a69
MS
3505 "Need step over [LWP %ld]? yes, "
3506 "found breakpoint at 0x%s\n",
8b07ae33 3507 lwpid_of (lwp), paddress (pc));
d50171e4 3508
8b07ae33
PA
3509 /* We've found an lwp that needs stepping over --- return 1 so
3510 that find_inferior stops looking. */
3511 current_inferior = saved_inferior;
3512
3513 /* If the step over is cancelled, this is set again. */
3514 lwp->need_step_over = 0;
3515 return 1;
3516 }
d50171e4
PA
3517 }
3518
3519 current_inferior = saved_inferior;
3520
3521 if (debug_threads)
3522 fprintf (stderr,
3523 "Need step over [LWP %ld]? No, no breakpoint found at 0x%s\n",
3524 lwpid_of (lwp), paddress (pc));
c6ecbae5 3525
bd99dc85 3526 return 0;
5544ad89
DJ
3527}
3528
d50171e4
PA
3529/* Start a step-over operation on LWP. When LWP stopped at a
3530 breakpoint, to make progress, we need to remove the breakpoint out
3531 of the way. If we let other threads run while we do that, they may
3532 pass by the breakpoint location and miss hitting it. To avoid
3533 that, a step-over momentarily stops all threads while LWP is
3534 single-stepped while the breakpoint is temporarily uninserted from
3535 the inferior. When the single-step finishes, we reinsert the
3536 breakpoint, and let all threads that are supposed to be running,
3537 run again.
3538
3539 On targets that don't support hardware single-step, we don't
3540 currently support full software single-stepping. Instead, we only
3541 support stepping over the thread event breakpoint, by asking the
3542 low target where to place a reinsert breakpoint. Since this
3543 routine assumes the breakpoint being stepped over is a thread event
3544 breakpoint, it usually assumes the return address of the current
3545 function is a good enough place to set the reinsert breakpoint. */
3546
3547static int
3548start_step_over (struct lwp_info *lwp)
3549{
3550 struct thread_info *saved_inferior;
3551 CORE_ADDR pc;
3552 int step;
3553
3554 if (debug_threads)
3555 fprintf (stderr,
3556 "Starting step-over on LWP %ld. Stopping all threads\n",
3557 lwpid_of (lwp));
3558
7984d532
PA
3559 stop_all_lwps (1, lwp);
3560 gdb_assert (lwp->suspended == 0);
d50171e4
PA
3561
3562 if (debug_threads)
3563 fprintf (stderr, "Done stopping all threads for step-over.\n");
3564
3565 /* Note, we should always reach here with an already adjusted PC,
3566 either by GDB (if we're resuming due to GDB's request), or by our
3567 caller, if we just finished handling an internal breakpoint GDB
3568 shouldn't care about. */
3569 pc = get_pc (lwp);
3570
3571 saved_inferior = current_inferior;
3572 current_inferior = get_lwp_thread (lwp);
3573
3574 lwp->bp_reinsert = pc;
3575 uninsert_breakpoints_at (pc);
fa593d66 3576 uninsert_fast_tracepoint_jumps_at (pc);
d50171e4
PA
3577
3578 if (can_hardware_single_step ())
3579 {
3580 step = 1;
3581 }
3582 else
3583 {
3584 CORE_ADDR raddr = (*the_low_target.breakpoint_reinsert_addr) ();
3585 set_reinsert_breakpoint (raddr);
3586 step = 0;
3587 }
3588
3589 current_inferior = saved_inferior;
3590
3591 linux_resume_one_lwp (lwp, step, 0, NULL);
3592
3593 /* Require next event from this LWP. */
3594 step_over_bkpt = lwp->head.id;
3595 return 1;
3596}
3597
3598/* Finish a step-over. Reinsert the breakpoint we had uninserted in
3599 start_step_over, if still there, and delete any reinsert
3600 breakpoints we've set, on non hardware single-step targets. */
3601
3602static int
3603finish_step_over (struct lwp_info *lwp)
3604{
3605 if (lwp->bp_reinsert != 0)
3606 {
3607 if (debug_threads)
3608 fprintf (stderr, "Finished step over.\n");
3609
3610 /* Reinsert any breakpoint at LWP->BP_REINSERT. Note that there
3611 may be no breakpoint to reinsert there by now. */
3612 reinsert_breakpoints_at (lwp->bp_reinsert);
fa593d66 3613 reinsert_fast_tracepoint_jumps_at (lwp->bp_reinsert);
d50171e4
PA
3614
3615 lwp->bp_reinsert = 0;
3616
3617 /* Delete any software-single-step reinsert breakpoints. No
3618 longer needed. We don't have to worry about other threads
3619 hitting this trap, and later not being able to explain it,
3620 because we were stepping over a breakpoint, and we hold all
3621 threads but LWP stopped while doing that. */
3622 if (!can_hardware_single_step ())
3623 delete_reinsert_breakpoints ();
3624
3625 step_over_bkpt = null_ptid;
3626 return 1;
3627 }
3628 else
3629 return 0;
3630}
3631
5544ad89
DJ
3632/* This function is called once per thread. We check the thread's resume
3633 request, which will tell us whether to resume, step, or leave the thread
bd99dc85 3634 stopped; and what signal, if any, it should be sent.
5544ad89 3635
bd99dc85
PA
3636 For threads which we aren't explicitly told otherwise, we preserve
3637 the stepping flag; this is used for stepping over gdbserver-placed
3638 breakpoints.
3639
3640 If pending_flags was set in any thread, we queue any needed
3641 signals, since we won't actually resume. We already have a pending
3642 event to report, so we don't need to preserve any step requests;
3643 they should be re-issued if necessary. */
3644
3645static int
3646linux_resume_one_thread (struct inferior_list_entry *entry, void *arg)
5544ad89 3647{
54a0b537 3648 struct lwp_info *lwp;
5544ad89 3649 struct thread_info *thread;
bd99dc85 3650 int step;
d50171e4
PA
3651 int leave_all_stopped = * (int *) arg;
3652 int leave_pending;
5544ad89
DJ
3653
3654 thread = (struct thread_info *) entry;
54a0b537 3655 lwp = get_thread_lwp (thread);
5544ad89 3656
2bd7c093 3657 if (lwp->resume == NULL)
bd99dc85 3658 return 0;
5544ad89 3659
bd99dc85 3660 if (lwp->resume->kind == resume_stop)
5544ad89 3661 {
bd99dc85 3662 if (debug_threads)
d50171e4 3663 fprintf (stderr, "resume_stop request for LWP %ld\n", lwpid_of (lwp));
bd99dc85
PA
3664
3665 if (!lwp->stopped)
3666 {
3667 if (debug_threads)
d50171e4 3668 fprintf (stderr, "stopping LWP %ld\n", lwpid_of (lwp));
bd99dc85 3669
d50171e4
PA
3670 /* Stop the thread, and wait for the event asynchronously,
3671 through the event loop. */
02fc4de7 3672 send_sigstop (lwp);
bd99dc85
PA
3673 }
3674 else
3675 {
3676 if (debug_threads)
d50171e4
PA
3677 fprintf (stderr, "already stopped LWP %ld\n",
3678 lwpid_of (lwp));
3679
3680 /* The LWP may have been stopped in an internal event that
3681 was not meant to be notified back to GDB (e.g., gdbserver
3682 breakpoint), so we should be reporting a stop event in
3683 this case too. */
3684
3685 /* If the thread already has a pending SIGSTOP, this is a
3686 no-op. Otherwise, something later will presumably resume
3687 the thread and this will cause it to cancel any pending
3688 operation, due to last_resume_kind == resume_stop. If
3689 the thread already has a pending status to report, we
3690 will still report it the next time we wait - see
3691 status_pending_p_callback. */
1a981360
PA
3692
3693 /* If we already have a pending signal to report, then
3694 there's no need to queue a SIGSTOP, as this means we're
3695 midway through moving the LWP out of the jumppad, and we
3696 will report the pending signal as soon as that is
3697 finished. */
3698 if (lwp->pending_signals_to_report == NULL)
3699 send_sigstop (lwp);
bd99dc85 3700 }
32ca6d61 3701
bd99dc85
PA
3702 /* For stop requests, we're done. */
3703 lwp->resume = NULL;
fc7238bb 3704 thread->last_status.kind = TARGET_WAITKIND_IGNORE;
bd99dc85 3705 return 0;
5544ad89
DJ
3706 }
3707
bd99dc85
PA
3708 /* If this thread which is about to be resumed has a pending status,
3709 then don't resume any threads - we can just report the pending
3710 status. Make sure to queue any signals that would otherwise be
3711 sent. In all-stop mode, we do this decision based on if *any*
d50171e4
PA
3712 thread has a pending status. If there's a thread that needs the
3713 step-over-breakpoint dance, then don't resume any other thread
3714 but that particular one. */
3715 leave_pending = (lwp->status_pending_p || leave_all_stopped);
5544ad89 3716
d50171e4 3717 if (!leave_pending)
bd99dc85
PA
3718 {
3719 if (debug_threads)
3720 fprintf (stderr, "resuming LWP %ld\n", lwpid_of (lwp));
5544ad89 3721
d50171e4 3722 step = (lwp->resume->kind == resume_step);
2acc282a 3723 linux_resume_one_lwp (lwp, step, lwp->resume->sig, NULL);
bd99dc85
PA
3724 }
3725 else
3726 {
3727 if (debug_threads)
3728 fprintf (stderr, "leaving LWP %ld stopped\n", lwpid_of (lwp));
5544ad89 3729
bd99dc85
PA
3730 /* If we have a new signal, enqueue the signal. */
3731 if (lwp->resume->sig != 0)
3732 {
3733 struct pending_signals *p_sig;
3734 p_sig = xmalloc (sizeof (*p_sig));
3735 p_sig->prev = lwp->pending_signals;
3736 p_sig->signal = lwp->resume->sig;
3737 memset (&p_sig->info, 0, sizeof (siginfo_t));
3738
3739 /* If this is the same signal we were previously stopped by,
3740 make sure to queue its siginfo. We can ignore the return
3741 value of ptrace; if it fails, we'll skip
3742 PTRACE_SETSIGINFO. */
3743 if (WIFSTOPPED (lwp->last_status)
3744 && WSTOPSIG (lwp->last_status) == lwp->resume->sig)
b8e1b30e 3745 ptrace (PTRACE_GETSIGINFO, lwpid_of (lwp), (PTRACE_TYPE_ARG3) 0,
56f7af9c 3746 &p_sig->info);
bd99dc85
PA
3747
3748 lwp->pending_signals = p_sig;
3749 }
3750 }
5544ad89 3751
fc7238bb 3752 thread->last_status.kind = TARGET_WAITKIND_IGNORE;
bd99dc85 3753 lwp->resume = NULL;
5544ad89 3754 return 0;
0d62e5e8
DJ
3755}
3756
3757static void
2bd7c093 3758linux_resume (struct thread_resume *resume_info, size_t n)
0d62e5e8 3759{
2bd7c093 3760 struct thread_resume_array array = { resume_info, n };
d50171e4
PA
3761 struct lwp_info *need_step_over = NULL;
3762 int any_pending;
3763 int leave_all_stopped;
c6ecbae5 3764
2bd7c093 3765 find_inferior (&all_threads, linux_set_resume_request, &array);
5544ad89 3766
d50171e4
PA
3767 /* If there is a thread which would otherwise be resumed, which has
3768 a pending status, then don't resume any threads - we can just
3769 report the pending status. Make sure to queue any signals that
3770 would otherwise be sent. In non-stop mode, we'll apply this
3771 logic to each thread individually. We consume all pending events
3772 before considering to start a step-over (in all-stop). */
3773 any_pending = 0;
bd99dc85 3774 if (!non_stop)
d50171e4
PA
3775 find_inferior (&all_lwps, resume_status_pending_p, &any_pending);
3776
3777 /* If there is a thread which would otherwise be resumed, which is
3778 stopped at a breakpoint that needs stepping over, then don't
3779 resume any threads - have it step over the breakpoint with all
3780 other threads stopped, then resume all threads again. Make sure
3781 to queue any signals that would otherwise be delivered or
3782 queued. */
3783 if (!any_pending && supports_breakpoints ())
3784 need_step_over
3785 = (struct lwp_info *) find_inferior (&all_lwps,
3786 need_step_over_p, NULL);
3787
3788 leave_all_stopped = (need_step_over != NULL || any_pending);
3789
3790 if (debug_threads)
3791 {
3792 if (need_step_over != NULL)
3793 fprintf (stderr, "Not resuming all, need step over\n");
3794 else if (any_pending)
3795 fprintf (stderr,
3796 "Not resuming, all-stop and found "
3797 "an LWP with pending status\n");
3798 else
3799 fprintf (stderr, "Resuming, no pending status or step over needed\n");
3800 }
3801
3802 /* Even if we're leaving threads stopped, queue all signals we'd
3803 otherwise deliver. */
3804 find_inferior (&all_threads, linux_resume_one_thread, &leave_all_stopped);
3805
3806 if (need_step_over)
3807 start_step_over (need_step_over);
3808}
3809
3810/* This function is called once per thread. We check the thread's
3811 last resume request, which will tell us whether to resume, step, or
3812 leave the thread stopped. Any signal the client requested to be
3813 delivered has already been enqueued at this point.
3814
3815 If any thread that GDB wants running is stopped at an internal
3816 breakpoint that needs stepping over, we start a step-over operation
3817 on that particular thread, and leave all others stopped. */
3818
7984d532
PA
3819static int
3820proceed_one_lwp (struct inferior_list_entry *entry, void *except)
d50171e4 3821{
7984d532 3822 struct lwp_info *lwp = (struct lwp_info *) entry;
8336d594 3823 struct thread_info *thread;
d50171e4
PA
3824 int step;
3825
7984d532
PA
3826 if (lwp == except)
3827 return 0;
d50171e4
PA
3828
3829 if (debug_threads)
3830 fprintf (stderr,
3831 "proceed_one_lwp: lwp %ld\n", lwpid_of (lwp));
3832
3833 if (!lwp->stopped)
3834 {
3835 if (debug_threads)
3836 fprintf (stderr, " LWP %ld already running\n", lwpid_of (lwp));
7984d532 3837 return 0;
d50171e4
PA
3838 }
3839
8336d594
PA
3840 thread = get_lwp_thread (lwp);
3841
02fc4de7
PA
3842 if (thread->last_resume_kind == resume_stop
3843 && thread->last_status.kind != TARGET_WAITKIND_IGNORE)
d50171e4
PA
3844 {
3845 if (debug_threads)
02fc4de7
PA
3846 fprintf (stderr, " client wants LWP to remain %ld stopped\n",
3847 lwpid_of (lwp));
7984d532 3848 return 0;
d50171e4
PA
3849 }
3850
3851 if (lwp->status_pending_p)
3852 {
3853 if (debug_threads)
3854 fprintf (stderr, " LWP %ld has pending status, leaving stopped\n",
3855 lwpid_of (lwp));
7984d532 3856 return 0;
d50171e4
PA
3857 }
3858
7984d532
PA
3859 gdb_assert (lwp->suspended >= 0);
3860
d50171e4
PA
3861 if (lwp->suspended)
3862 {
3863 if (debug_threads)
3864 fprintf (stderr, " LWP %ld is suspended\n", lwpid_of (lwp));
7984d532 3865 return 0;
d50171e4
PA
3866 }
3867
1a981360
PA
3868 if (thread->last_resume_kind == resume_stop
3869 && lwp->pending_signals_to_report == NULL
3870 && lwp->collecting_fast_tracepoint == 0)
02fc4de7
PA
3871 {
3872 /* We haven't reported this LWP as stopped yet (otherwise, the
3873 last_status.kind check above would catch it, and we wouldn't
3874 reach here. This LWP may have been momentarily paused by a
3875 stop_all_lwps call while handling for example, another LWP's
3876 step-over. In that case, the pending expected SIGSTOP signal
3877 that was queued at vCont;t handling time will have already
3878 been consumed by wait_for_sigstop, and so we need to requeue
3879 another one here. Note that if the LWP already has a SIGSTOP
3880 pending, this is a no-op. */
3881
3882 if (debug_threads)
3883 fprintf (stderr,
3884 "Client wants LWP %ld to stop. "
3885 "Making sure it has a SIGSTOP pending\n",
3886 lwpid_of (lwp));
3887
3888 send_sigstop (lwp);
3889 }
3890
8336d594 3891 step = thread->last_resume_kind == resume_step;
d50171e4 3892 linux_resume_one_lwp (lwp, step, 0, NULL);
7984d532
PA
3893 return 0;
3894}
3895
3896static int
3897unsuspend_and_proceed_one_lwp (struct inferior_list_entry *entry, void *except)
3898{
3899 struct lwp_info *lwp = (struct lwp_info *) entry;
3900
3901 if (lwp == except)
3902 return 0;
3903
3904 lwp->suspended--;
3905 gdb_assert (lwp->suspended >= 0);
3906
3907 return proceed_one_lwp (entry, except);
d50171e4
PA
3908}
3909
3910/* When we finish a step-over, set threads running again. If there's
3911 another thread that may need a step-over, now's the time to start
3912 it. Eventually, we'll move all threads past their breakpoints. */
3913
3914static void
3915proceed_all_lwps (void)
3916{
3917 struct lwp_info *need_step_over;
3918
3919 /* If there is a thread which would otherwise be resumed, which is
3920 stopped at a breakpoint that needs stepping over, then don't
3921 resume any threads - have it step over the breakpoint with all
3922 other threads stopped, then resume all threads again. */
3923
3924 if (supports_breakpoints ())
3925 {
3926 need_step_over
3927 = (struct lwp_info *) find_inferior (&all_lwps,
3928 need_step_over_p, NULL);
3929
3930 if (need_step_over != NULL)
3931 {
3932 if (debug_threads)
3933 fprintf (stderr, "proceed_all_lwps: found "
3934 "thread %ld needing a step-over\n",
3935 lwpid_of (need_step_over));
3936
3937 start_step_over (need_step_over);
3938 return;
3939 }
3940 }
5544ad89 3941
d50171e4
PA
3942 if (debug_threads)
3943 fprintf (stderr, "Proceeding, no step-over needed\n");
3944
7984d532 3945 find_inferior (&all_lwps, proceed_one_lwp, NULL);
d50171e4
PA
3946}
3947
3948/* Stopped LWPs that the client wanted to be running, that don't have
3949 pending statuses, are set to run again, except for EXCEPT, if not
3950 NULL. This undoes a stop_all_lwps call. */
3951
3952static void
7984d532 3953unstop_all_lwps (int unsuspend, struct lwp_info *except)
d50171e4 3954{
5544ad89
DJ
3955 if (debug_threads)
3956 {
d50171e4
PA
3957 if (except)
3958 fprintf (stderr,
3959 "unstopping all lwps, except=(LWP %ld)\n", lwpid_of (except));
5544ad89 3960 else
d50171e4
PA
3961 fprintf (stderr,
3962 "unstopping all lwps\n");
5544ad89
DJ
3963 }
3964
7984d532
PA
3965 if (unsuspend)
3966 find_inferior (&all_lwps, unsuspend_and_proceed_one_lwp, except);
3967 else
3968 find_inferior (&all_lwps, proceed_one_lwp, except);
0d62e5e8
DJ
3969}
3970
58caa3dc
DJ
3971
3972#ifdef HAVE_LINUX_REGSETS
3973
1faeff08
MR
3974#define use_linux_regsets 1
3975
030031ee
PA
3976/* Returns true if REGSET has been disabled. */
3977
3978static int
3979regset_disabled (struct regsets_info *info, struct regset_info *regset)
3980{
3981 return (info->disabled_regsets != NULL
3982 && info->disabled_regsets[regset - info->regsets]);
3983}
3984
3985/* Disable REGSET. */
3986
3987static void
3988disable_regset (struct regsets_info *info, struct regset_info *regset)
3989{
3990 int dr_offset;
3991
3992 dr_offset = regset - info->regsets;
3993 if (info->disabled_regsets == NULL)
3994 info->disabled_regsets = xcalloc (1, info->num_regsets);
3995 info->disabled_regsets[dr_offset] = 1;
3996}
3997
58caa3dc 3998static int
3aee8918
PA
3999regsets_fetch_inferior_registers (struct regsets_info *regsets_info,
4000 struct regcache *regcache)
58caa3dc
DJ
4001{
4002 struct regset_info *regset;
e9d25b98 4003 int saw_general_regs = 0;
95954743 4004 int pid;
1570b33e 4005 struct iovec iov;
58caa3dc 4006
3aee8918 4007 regset = regsets_info->regsets;
58caa3dc 4008
95954743 4009 pid = lwpid_of (get_thread_lwp (current_inferior));
58caa3dc
DJ
4010 while (regset->size >= 0)
4011 {
1570b33e
L
4012 void *buf, *data;
4013 int nt_type, res;
58caa3dc 4014
030031ee 4015 if (regset->size == 0 || regset_disabled (regsets_info, regset))
58caa3dc
DJ
4016 {
4017 regset ++;
4018 continue;
4019 }
4020
bca929d3 4021 buf = xmalloc (regset->size);
1570b33e
L
4022
4023 nt_type = regset->nt_type;
4024 if (nt_type)
4025 {
4026 iov.iov_base = buf;
4027 iov.iov_len = regset->size;
4028 data = (void *) &iov;
4029 }
4030 else
4031 data = buf;
4032
dfb64f85 4033#ifndef __sparc__
f15f9948 4034 res = ptrace (regset->get_request, pid,
b8e1b30e 4035 (PTRACE_TYPE_ARG3) (long) nt_type, data);
dfb64f85 4036#else
1570b33e 4037 res = ptrace (regset->get_request, pid, data, nt_type);
dfb64f85 4038#endif
58caa3dc
DJ
4039 if (res < 0)
4040 {
4041 if (errno == EIO)
4042 {
52fa2412 4043 /* If we get EIO on a regset, do not try it again for
3aee8918 4044 this process mode. */
030031ee 4045 disable_regset (regsets_info, regset);
fdeb2a12 4046 free (buf);
52fa2412 4047 continue;
58caa3dc
DJ
4048 }
4049 else
4050 {
0d62e5e8 4051 char s[256];
95954743
PA
4052 sprintf (s, "ptrace(regsets_fetch_inferior_registers) PID=%d",
4053 pid);
0d62e5e8 4054 perror (s);
58caa3dc
DJ
4055 }
4056 }
e9d25b98
DJ
4057 else if (regset->type == GENERAL_REGS)
4058 saw_general_regs = 1;
442ea881 4059 regset->store_function (regcache, buf);
58caa3dc 4060 regset ++;
fdeb2a12 4061 free (buf);
58caa3dc 4062 }
e9d25b98
DJ
4063 if (saw_general_regs)
4064 return 0;
4065 else
4066 return 1;
58caa3dc
DJ
4067}
4068
4069static int
3aee8918
PA
4070regsets_store_inferior_registers (struct regsets_info *regsets_info,
4071 struct regcache *regcache)
58caa3dc
DJ
4072{
4073 struct regset_info *regset;
e9d25b98 4074 int saw_general_regs = 0;
95954743 4075 int pid;
1570b33e 4076 struct iovec iov;
58caa3dc 4077
3aee8918 4078 regset = regsets_info->regsets;
58caa3dc 4079
95954743 4080 pid = lwpid_of (get_thread_lwp (current_inferior));
58caa3dc
DJ
4081 while (regset->size >= 0)
4082 {
1570b33e
L
4083 void *buf, *data;
4084 int nt_type, res;
58caa3dc 4085
030031ee 4086 if (regset->size == 0 || regset_disabled (regsets_info, regset))
58caa3dc
DJ
4087 {
4088 regset ++;
4089 continue;
4090 }
4091
bca929d3 4092 buf = xmalloc (regset->size);
545587ee
DJ
4093
4094 /* First fill the buffer with the current register set contents,
4095 in case there are any items in the kernel's regset that are
4096 not in gdbserver's regcache. */
1570b33e
L
4097
4098 nt_type = regset->nt_type;
4099 if (nt_type)
4100 {
4101 iov.iov_base = buf;
4102 iov.iov_len = regset->size;
4103 data = (void *) &iov;
4104 }
4105 else
4106 data = buf;
4107
dfb64f85 4108#ifndef __sparc__
f15f9948 4109 res = ptrace (regset->get_request, pid,
b8e1b30e 4110 (PTRACE_TYPE_ARG3) (long) nt_type, data);
dfb64f85 4111#else
689cc2ae 4112 res = ptrace (regset->get_request, pid, data, nt_type);
dfb64f85 4113#endif
545587ee
DJ
4114
4115 if (res == 0)
4116 {
4117 /* Then overlay our cached registers on that. */
442ea881 4118 regset->fill_function (regcache, buf);
545587ee
DJ
4119
4120 /* Only now do we write the register set. */
dfb64f85 4121#ifndef __sparc__
f15f9948 4122 res = ptrace (regset->set_request, pid,
b8e1b30e 4123 (PTRACE_TYPE_ARG3) (long) nt_type, data);
dfb64f85 4124#else
1570b33e 4125 res = ptrace (regset->set_request, pid, data, nt_type);
dfb64f85 4126#endif
545587ee
DJ
4127 }
4128
58caa3dc
DJ
4129 if (res < 0)
4130 {
4131 if (errno == EIO)
4132 {
52fa2412 4133 /* If we get EIO on a regset, do not try it again for
3aee8918 4134 this process mode. */
030031ee 4135 disable_regset (regsets_info, regset);
fdeb2a12 4136 free (buf);
52fa2412 4137 continue;
58caa3dc 4138 }
3221518c
UW
4139 else if (errno == ESRCH)
4140 {
1b3f6016
PA
4141 /* At this point, ESRCH should mean the process is
4142 already gone, in which case we simply ignore attempts
4143 to change its registers. See also the related
4144 comment in linux_resume_one_lwp. */
fdeb2a12 4145 free (buf);
3221518c
UW
4146 return 0;
4147 }
58caa3dc
DJ
4148 else
4149 {
ce3a066d 4150 perror ("Warning: ptrace(regsets_store_inferior_registers)");
58caa3dc
DJ
4151 }
4152 }
e9d25b98
DJ
4153 else if (regset->type == GENERAL_REGS)
4154 saw_general_regs = 1;
58caa3dc 4155 regset ++;
09ec9b38 4156 free (buf);
58caa3dc 4157 }
e9d25b98
DJ
4158 if (saw_general_regs)
4159 return 0;
4160 else
4161 return 1;
58caa3dc
DJ
4162}
4163
1faeff08 4164#else /* !HAVE_LINUX_REGSETS */
58caa3dc 4165
1faeff08 4166#define use_linux_regsets 0
3aee8918
PA
4167#define regsets_fetch_inferior_registers(regsets_info, regcache) 1
4168#define regsets_store_inferior_registers(regsets_info, regcache) 1
58caa3dc 4169
58caa3dc 4170#endif
1faeff08
MR
4171
4172/* Return 1 if register REGNO is supported by one of the regset ptrace
4173 calls or 0 if it has to be transferred individually. */
4174
4175static int
3aee8918 4176linux_register_in_regsets (const struct regs_info *regs_info, int regno)
1faeff08
MR
4177{
4178 unsigned char mask = 1 << (regno % 8);
4179 size_t index = regno / 8;
4180
4181 return (use_linux_regsets
3aee8918
PA
4182 && (regs_info->regset_bitmap == NULL
4183 || (regs_info->regset_bitmap[index] & mask) != 0));
1faeff08
MR
4184}
4185
58caa3dc 4186#ifdef HAVE_LINUX_USRREGS
1faeff08
MR
4187
4188int
3aee8918 4189register_addr (const struct usrregs_info *usrregs, int regnum)
1faeff08
MR
4190{
4191 int addr;
4192
3aee8918 4193 if (regnum < 0 || regnum >= usrregs->num_regs)
1faeff08
MR
4194 error ("Invalid register number %d.", regnum);
4195
3aee8918 4196 addr = usrregs->regmap[regnum];
1faeff08
MR
4197
4198 return addr;
4199}
4200
4201/* Fetch one register. */
4202static void
3aee8918
PA
4203fetch_register (const struct usrregs_info *usrregs,
4204 struct regcache *regcache, int regno)
1faeff08
MR
4205{
4206 CORE_ADDR regaddr;
4207 int i, size;
4208 char *buf;
4209 int pid;
4210
3aee8918 4211 if (regno >= usrregs->num_regs)
1faeff08
MR
4212 return;
4213 if ((*the_low_target.cannot_fetch_register) (regno))
4214 return;
4215
3aee8918 4216 regaddr = register_addr (usrregs, regno);
1faeff08
MR
4217 if (regaddr == -1)
4218 return;
4219
3aee8918
PA
4220 size = ((register_size (regcache->tdesc, regno)
4221 + sizeof (PTRACE_XFER_TYPE) - 1)
1faeff08
MR
4222 & -sizeof (PTRACE_XFER_TYPE));
4223 buf = alloca (size);
4224
4225 pid = lwpid_of (get_thread_lwp (current_inferior));
4226 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
4227 {
4228 errno = 0;
4229 *(PTRACE_XFER_TYPE *) (buf + i) =
4230 ptrace (PTRACE_PEEKUSER, pid,
4231 /* Coerce to a uintptr_t first to avoid potential gcc warning
4232 of coercing an 8 byte integer to a 4 byte pointer. */
b8e1b30e 4233 (PTRACE_TYPE_ARG3) (uintptr_t) regaddr, (PTRACE_TYPE_ARG4) 0);
1faeff08
MR
4234 regaddr += sizeof (PTRACE_XFER_TYPE);
4235 if (errno != 0)
4236 error ("reading register %d: %s", regno, strerror (errno));
4237 }
4238
4239 if (the_low_target.supply_ptrace_register)
4240 the_low_target.supply_ptrace_register (regcache, regno, buf);
4241 else
4242 supply_register (regcache, regno, buf);
4243}
4244
4245/* Store one register. */
4246static void
3aee8918
PA
4247store_register (const struct usrregs_info *usrregs,
4248 struct regcache *regcache, int regno)
1faeff08
MR
4249{
4250 CORE_ADDR regaddr;
4251 int i, size;
4252 char *buf;
4253 int pid;
4254
3aee8918 4255 if (regno >= usrregs->num_regs)
1faeff08
MR
4256 return;
4257 if ((*the_low_target.cannot_store_register) (regno))
4258 return;
4259
3aee8918 4260 regaddr = register_addr (usrregs, regno);
1faeff08
MR
4261 if (regaddr == -1)
4262 return;
4263
3aee8918
PA
4264 size = ((register_size (regcache->tdesc, regno)
4265 + sizeof (PTRACE_XFER_TYPE) - 1)
1faeff08
MR
4266 & -sizeof (PTRACE_XFER_TYPE));
4267 buf = alloca (size);
4268 memset (buf, 0, size);
4269
4270 if (the_low_target.collect_ptrace_register)
4271 the_low_target.collect_ptrace_register (regcache, regno, buf);
4272 else
4273 collect_register (regcache, regno, buf);
4274
4275 pid = lwpid_of (get_thread_lwp (current_inferior));
4276 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
4277 {
4278 errno = 0;
4279 ptrace (PTRACE_POKEUSER, pid,
4280 /* Coerce to a uintptr_t first to avoid potential gcc warning
4281 about coercing an 8 byte integer to a 4 byte pointer. */
b8e1b30e
LM
4282 (PTRACE_TYPE_ARG3) (uintptr_t) regaddr,
4283 (PTRACE_TYPE_ARG4) *(PTRACE_XFER_TYPE *) (buf + i));
1faeff08
MR
4284 if (errno != 0)
4285 {
4286 /* At this point, ESRCH should mean the process is
4287 already gone, in which case we simply ignore attempts
4288 to change its registers. See also the related
4289 comment in linux_resume_one_lwp. */
4290 if (errno == ESRCH)
4291 return;
4292
4293 if ((*the_low_target.cannot_store_register) (regno) == 0)
4294 error ("writing register %d: %s", regno, strerror (errno));
4295 }
4296 regaddr += sizeof (PTRACE_XFER_TYPE);
4297 }
4298}
4299
4300/* Fetch all registers, or just one, from the child process.
4301 If REGNO is -1, do this for all registers, skipping any that are
4302 assumed to have been retrieved by regsets_fetch_inferior_registers,
4303 unless ALL is non-zero.
4304 Otherwise, REGNO specifies which register (so we can save time). */
4305static void
3aee8918
PA
4306usr_fetch_inferior_registers (const struct regs_info *regs_info,
4307 struct regcache *regcache, int regno, int all)
1faeff08 4308{
3aee8918
PA
4309 struct usrregs_info *usr = regs_info->usrregs;
4310
1faeff08
MR
4311 if (regno == -1)
4312 {
3aee8918
PA
4313 for (regno = 0; regno < usr->num_regs; regno++)
4314 if (all || !linux_register_in_regsets (regs_info, regno))
4315 fetch_register (usr, regcache, regno);
1faeff08
MR
4316 }
4317 else
3aee8918 4318 fetch_register (usr, regcache, regno);
1faeff08
MR
4319}
4320
4321/* Store our register values back into the inferior.
4322 If REGNO is -1, do this for all registers, skipping any that are
4323 assumed to have been saved by regsets_store_inferior_registers,
4324 unless ALL is non-zero.
4325 Otherwise, REGNO specifies which register (so we can save time). */
4326static void
3aee8918
PA
4327usr_store_inferior_registers (const struct regs_info *regs_info,
4328 struct regcache *regcache, int regno, int all)
1faeff08 4329{
3aee8918
PA
4330 struct usrregs_info *usr = regs_info->usrregs;
4331
1faeff08
MR
4332 if (regno == -1)
4333 {
3aee8918
PA
4334 for (regno = 0; regno < usr->num_regs; regno++)
4335 if (all || !linux_register_in_regsets (regs_info, regno))
4336 store_register (usr, regcache, regno);
1faeff08
MR
4337 }
4338 else
3aee8918 4339 store_register (usr, regcache, regno);
1faeff08
MR
4340}
4341
4342#else /* !HAVE_LINUX_USRREGS */
4343
3aee8918
PA
4344#define usr_fetch_inferior_registers(regs_info, regcache, regno, all) do {} while (0)
4345#define usr_store_inferior_registers(regs_info, regcache, regno, all) do {} while (0)
1faeff08 4346
58caa3dc 4347#endif
1faeff08
MR
4348
4349
4350void
4351linux_fetch_registers (struct regcache *regcache, int regno)
4352{
4353 int use_regsets;
4354 int all = 0;
3aee8918 4355 const struct regs_info *regs_info = (*the_low_target.regs_info) ();
1faeff08
MR
4356
4357 if (regno == -1)
4358 {
3aee8918
PA
4359 if (the_low_target.fetch_register != NULL
4360 && regs_info->usrregs != NULL)
4361 for (regno = 0; regno < regs_info->usrregs->num_regs; regno++)
c14dfd32
PA
4362 (*the_low_target.fetch_register) (regcache, regno);
4363
3aee8918
PA
4364 all = regsets_fetch_inferior_registers (regs_info->regsets_info, regcache);
4365 if (regs_info->usrregs != NULL)
4366 usr_fetch_inferior_registers (regs_info, regcache, -1, all);
1faeff08
MR
4367 }
4368 else
4369 {
c14dfd32
PA
4370 if (the_low_target.fetch_register != NULL
4371 && (*the_low_target.fetch_register) (regcache, regno))
4372 return;
4373
3aee8918 4374 use_regsets = linux_register_in_regsets (regs_info, regno);
1faeff08 4375 if (use_regsets)
3aee8918
PA
4376 all = regsets_fetch_inferior_registers (regs_info->regsets_info,
4377 regcache);
4378 if ((!use_regsets || all) && regs_info->usrregs != NULL)
4379 usr_fetch_inferior_registers (regs_info, regcache, regno, 1);
1faeff08 4380 }
58caa3dc
DJ
4381}
4382
4383void
442ea881 4384linux_store_registers (struct regcache *regcache, int regno)
58caa3dc 4385{
1faeff08
MR
4386 int use_regsets;
4387 int all = 0;
3aee8918 4388 const struct regs_info *regs_info = (*the_low_target.regs_info) ();
1faeff08
MR
4389
4390 if (regno == -1)
4391 {
3aee8918
PA
4392 all = regsets_store_inferior_registers (regs_info->regsets_info,
4393 regcache);
4394 if (regs_info->usrregs != NULL)
4395 usr_store_inferior_registers (regs_info, regcache, regno, all);
1faeff08
MR
4396 }
4397 else
4398 {
3aee8918 4399 use_regsets = linux_register_in_regsets (regs_info, regno);
1faeff08 4400 if (use_regsets)
3aee8918
PA
4401 all = regsets_store_inferior_registers (regs_info->regsets_info,
4402 regcache);
4403 if ((!use_regsets || all) && regs_info->usrregs != NULL)
4404 usr_store_inferior_registers (regs_info, regcache, regno, 1);
1faeff08 4405 }
58caa3dc
DJ
4406}
4407
da6d8c04 4408
da6d8c04
DJ
4409/* Copy LEN bytes from inferior's memory starting at MEMADDR
4410 to debugger memory starting at MYADDR. */
4411
c3e735a6 4412static int
f450004a 4413linux_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
da6d8c04 4414{
4934b29e
MR
4415 int pid = lwpid_of (get_thread_lwp (current_inferior));
4416 register PTRACE_XFER_TYPE *buffer;
4417 register CORE_ADDR addr;
4418 register int count;
4419 char filename[64];
da6d8c04 4420 register int i;
4934b29e 4421 int ret;
fd462a61 4422 int fd;
fd462a61
DJ
4423
4424 /* Try using /proc. Don't bother for one word. */
4425 if (len >= 3 * sizeof (long))
4426 {
4934b29e
MR
4427 int bytes;
4428
fd462a61
DJ
4429 /* We could keep this file open and cache it - possibly one per
4430 thread. That requires some juggling, but is even faster. */
95954743 4431 sprintf (filename, "/proc/%d/mem", pid);
fd462a61
DJ
4432 fd = open (filename, O_RDONLY | O_LARGEFILE);
4433 if (fd == -1)
4434 goto no_proc;
4435
4436 /* If pread64 is available, use it. It's faster if the kernel
4437 supports it (only one syscall), and it's 64-bit safe even on
4438 32-bit platforms (for instance, SPARC debugging a SPARC64
4439 application). */
4440#ifdef HAVE_PREAD64
4934b29e 4441 bytes = pread64 (fd, myaddr, len, memaddr);
fd462a61 4442#else
4934b29e
MR
4443 bytes = -1;
4444 if (lseek (fd, memaddr, SEEK_SET) != -1)
4445 bytes = read (fd, myaddr, len);
fd462a61 4446#endif
fd462a61
DJ
4447
4448 close (fd);
4934b29e
MR
4449 if (bytes == len)
4450 return 0;
4451
4452 /* Some data was read, we'll try to get the rest with ptrace. */
4453 if (bytes > 0)
4454 {
4455 memaddr += bytes;
4456 myaddr += bytes;
4457 len -= bytes;
4458 }
fd462a61 4459 }
da6d8c04 4460
fd462a61 4461 no_proc:
4934b29e
MR
4462 /* Round starting address down to longword boundary. */
4463 addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
4464 /* Round ending address up; get number of longwords that makes. */
4465 count = ((((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
4466 / sizeof (PTRACE_XFER_TYPE));
4467 /* Allocate buffer of that many longwords. */
4468 buffer = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
4469
da6d8c04 4470 /* Read all the longwords */
4934b29e 4471 errno = 0;
da6d8c04
DJ
4472 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
4473 {
14ce3065
DE
4474 /* Coerce the 3rd arg to a uintptr_t first to avoid potential gcc warning
4475 about coercing an 8 byte integer to a 4 byte pointer. */
4476 buffer[i] = ptrace (PTRACE_PEEKTEXT, pid,
b8e1b30e
LM
4477 (PTRACE_TYPE_ARG3) (uintptr_t) addr,
4478 (PTRACE_TYPE_ARG4) 0);
c3e735a6 4479 if (errno)
4934b29e 4480 break;
da6d8c04 4481 }
4934b29e 4482 ret = errno;
da6d8c04
DJ
4483
4484 /* Copy appropriate bytes out of the buffer. */
8d409d16
MR
4485 if (i > 0)
4486 {
4487 i *= sizeof (PTRACE_XFER_TYPE);
4488 i -= memaddr & (sizeof (PTRACE_XFER_TYPE) - 1);
4489 memcpy (myaddr,
4490 (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
4491 i < len ? i : len);
4492 }
c3e735a6 4493
4934b29e 4494 return ret;
da6d8c04
DJ
4495}
4496
93ae6fdc
PA
4497/* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
4498 memory at MEMADDR. On failure (cannot write to the inferior)
f0ae6fc3 4499 returns the value of errno. Always succeeds if LEN is zero. */
da6d8c04 4500
ce3a066d 4501static int
f450004a 4502linux_write_memory (CORE_ADDR memaddr, const unsigned char *myaddr, int len)
da6d8c04
DJ
4503{
4504 register int i;
4505 /* Round starting address down to longword boundary. */
4506 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
4507 /* Round ending address up; get number of longwords that makes. */
4508 register int count
493e2a69
MS
4509 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
4510 / sizeof (PTRACE_XFER_TYPE);
4511
da6d8c04 4512 /* Allocate buffer of that many longwords. */
493e2a69
MS
4513 register PTRACE_XFER_TYPE *buffer = (PTRACE_XFER_TYPE *)
4514 alloca (count * sizeof (PTRACE_XFER_TYPE));
4515
95954743 4516 int pid = lwpid_of (get_thread_lwp (current_inferior));
da6d8c04 4517
f0ae6fc3
PA
4518 if (len == 0)
4519 {
4520 /* Zero length write always succeeds. */
4521 return 0;
4522 }
4523
0d62e5e8
DJ
4524 if (debug_threads)
4525 {
58d6951d
DJ
4526 /* Dump up to four bytes. */
4527 unsigned int val = * (unsigned int *) myaddr;
4528 if (len == 1)
4529 val = val & 0xff;
4530 else if (len == 2)
4531 val = val & 0xffff;
4532 else if (len == 3)
4533 val = val & 0xffffff;
4534 fprintf (stderr, "Writing %0*x to 0x%08lx\n", 2 * ((len < 4) ? len : 4),
4535 val, (long)memaddr);
0d62e5e8
DJ
4536 }
4537
da6d8c04
DJ
4538 /* Fill start and end extra bytes of buffer with existing memory data. */
4539
93ae6fdc 4540 errno = 0;
14ce3065
DE
4541 /* Coerce the 3rd arg to a uintptr_t first to avoid potential gcc warning
4542 about coercing an 8 byte integer to a 4 byte pointer. */
4543 buffer[0] = ptrace (PTRACE_PEEKTEXT, pid,
b8e1b30e
LM
4544 (PTRACE_TYPE_ARG3) (uintptr_t) addr,
4545 (PTRACE_TYPE_ARG4) 0);
93ae6fdc
PA
4546 if (errno)
4547 return errno;
da6d8c04
DJ
4548
4549 if (count > 1)
4550 {
93ae6fdc 4551 errno = 0;
da6d8c04 4552 buffer[count - 1]
95954743 4553 = ptrace (PTRACE_PEEKTEXT, pid,
14ce3065
DE
4554 /* Coerce to a uintptr_t first to avoid potential gcc warning
4555 about coercing an 8 byte integer to a 4 byte pointer. */
b8e1b30e 4556 (PTRACE_TYPE_ARG3) (uintptr_t) (addr + (count - 1)
14ce3065 4557 * sizeof (PTRACE_XFER_TYPE)),
b8e1b30e 4558 (PTRACE_TYPE_ARG4) 0);
93ae6fdc
PA
4559 if (errno)
4560 return errno;
da6d8c04
DJ
4561 }
4562
93ae6fdc 4563 /* Copy data to be written over corresponding part of buffer. */
da6d8c04 4564
493e2a69
MS
4565 memcpy ((char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
4566 myaddr, len);
da6d8c04
DJ
4567
4568 /* Write the entire buffer. */
4569
4570 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
4571 {
4572 errno = 0;
14ce3065
DE
4573 ptrace (PTRACE_POKETEXT, pid,
4574 /* Coerce to a uintptr_t first to avoid potential gcc warning
4575 about coercing an 8 byte integer to a 4 byte pointer. */
b8e1b30e
LM
4576 (PTRACE_TYPE_ARG3) (uintptr_t) addr,
4577 (PTRACE_TYPE_ARG4) buffer[i]);
da6d8c04
DJ
4578 if (errno)
4579 return errno;
4580 }
4581
4582 return 0;
4583}
2f2893d9
DJ
4584
4585static void
4586linux_look_up_symbols (void)
4587{
0d62e5e8 4588#ifdef USE_THREAD_DB
95954743
PA
4589 struct process_info *proc = current_process ();
4590
cdbfd419 4591 if (proc->private->thread_db != NULL)
0d62e5e8
DJ
4592 return;
4593
96d7229d
LM
4594 /* If the kernel supports tracing clones, then we don't need to
4595 use the magic thread event breakpoint to learn about
4596 threads. */
4597 thread_db_init (!linux_supports_traceclone ());
0d62e5e8
DJ
4598#endif
4599}
4600
e5379b03 4601static void
ef57601b 4602linux_request_interrupt (void)
e5379b03 4603{
a1928bad 4604 extern unsigned long signal_pid;
e5379b03 4605
95954743
PA
4606 if (!ptid_equal (cont_thread, null_ptid)
4607 && !ptid_equal (cont_thread, minus_one_ptid))
e5379b03 4608 {
54a0b537 4609 struct lwp_info *lwp;
bd99dc85 4610 int lwpid;
e5379b03 4611
54a0b537 4612 lwp = get_thread_lwp (current_inferior);
bd99dc85
PA
4613 lwpid = lwpid_of (lwp);
4614 kill_lwp (lwpid, SIGINT);
e5379b03
DJ
4615 }
4616 else
ef57601b 4617 kill_lwp (signal_pid, SIGINT);
e5379b03
DJ
4618}
4619
aa691b87
RM
4620/* Copy LEN bytes from inferior's auxiliary vector starting at OFFSET
4621 to debugger memory starting at MYADDR. */
4622
4623static int
f450004a 4624linux_read_auxv (CORE_ADDR offset, unsigned char *myaddr, unsigned int len)
aa691b87
RM
4625{
4626 char filename[PATH_MAX];
4627 int fd, n;
95954743 4628 int pid = lwpid_of (get_thread_lwp (current_inferior));
aa691b87 4629
6cebaf6e 4630 xsnprintf (filename, sizeof filename, "/proc/%d/auxv", pid);
aa691b87
RM
4631
4632 fd = open (filename, O_RDONLY);
4633 if (fd < 0)
4634 return -1;
4635
4636 if (offset != (CORE_ADDR) 0
4637 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
4638 n = -1;
4639 else
4640 n = read (fd, myaddr, len);
4641
4642 close (fd);
4643
4644 return n;
4645}
4646
d993e290
PA
4647/* These breakpoint and watchpoint related wrapper functions simply
4648 pass on the function call if the target has registered a
4649 corresponding function. */
e013ee27
OF
4650
4651static int
d993e290 4652linux_insert_point (char type, CORE_ADDR addr, int len)
e013ee27 4653{
d993e290
PA
4654 if (the_low_target.insert_point != NULL)
4655 return the_low_target.insert_point (type, addr, len);
e013ee27
OF
4656 else
4657 /* Unsupported (see target.h). */
4658 return 1;
4659}
4660
4661static int
d993e290 4662linux_remove_point (char type, CORE_ADDR addr, int len)
e013ee27 4663{
d993e290
PA
4664 if (the_low_target.remove_point != NULL)
4665 return the_low_target.remove_point (type, addr, len);
e013ee27
OF
4666 else
4667 /* Unsupported (see target.h). */
4668 return 1;
4669}
4670
4671static int
4672linux_stopped_by_watchpoint (void)
4673{
c3adc08c
PA
4674 struct lwp_info *lwp = get_thread_lwp (current_inferior);
4675
4676 return lwp->stopped_by_watchpoint;
e013ee27
OF
4677}
4678
4679static CORE_ADDR
4680linux_stopped_data_address (void)
4681{
c3adc08c
PA
4682 struct lwp_info *lwp = get_thread_lwp (current_inferior);
4683
4684 return lwp->stopped_data_address;
e013ee27
OF
4685}
4686
db0dfaa0
LM
4687#if defined(__UCLIBC__) && defined(HAS_NOMMU) \
4688 && defined(PT_TEXT_ADDR) && defined(PT_DATA_ADDR) \
4689 && defined(PT_TEXT_END_ADDR)
4690
4691/* This is only used for targets that define PT_TEXT_ADDR,
4692 PT_DATA_ADDR and PT_TEXT_END_ADDR. If those are not defined, supposedly
4693 the target has different ways of acquiring this information, like
4694 loadmaps. */
52fb6437
NS
4695
4696/* Under uClinux, programs are loaded at non-zero offsets, which we need
4697 to tell gdb about. */
4698
4699static int
4700linux_read_offsets (CORE_ADDR *text_p, CORE_ADDR *data_p)
4701{
52fb6437 4702 unsigned long text, text_end, data;
bd99dc85 4703 int pid = lwpid_of (get_thread_lwp (current_inferior));
52fb6437
NS
4704
4705 errno = 0;
4706
b8e1b30e
LM
4707 text = ptrace (PTRACE_PEEKUSER, pid, (PTRACE_TYPE_ARG3) PT_TEXT_ADDR,
4708 (PTRACE_TYPE_ARG4) 0);
4709 text_end = ptrace (PTRACE_PEEKUSER, pid, (PTRACE_TYPE_ARG3) PT_TEXT_END_ADDR,
4710 (PTRACE_TYPE_ARG4) 0);
4711 data = ptrace (PTRACE_PEEKUSER, pid, (PTRACE_TYPE_ARG3) PT_DATA_ADDR,
4712 (PTRACE_TYPE_ARG4) 0);
52fb6437
NS
4713
4714 if (errno == 0)
4715 {
4716 /* Both text and data offsets produced at compile-time (and so
1b3f6016
PA
4717 used by gdb) are relative to the beginning of the program,
4718 with the data segment immediately following the text segment.
4719 However, the actual runtime layout in memory may put the data
4720 somewhere else, so when we send gdb a data base-address, we
4721 use the real data base address and subtract the compile-time
4722 data base-address from it (which is just the length of the
4723 text segment). BSS immediately follows data in both
4724 cases. */
52fb6437
NS
4725 *text_p = text;
4726 *data_p = data - (text_end - text);
1b3f6016 4727
52fb6437
NS
4728 return 1;
4729 }
52fb6437
NS
4730 return 0;
4731}
4732#endif
4733
07e059b5
VP
4734static int
4735linux_qxfer_osdata (const char *annex,
1b3f6016
PA
4736 unsigned char *readbuf, unsigned const char *writebuf,
4737 CORE_ADDR offset, int len)
07e059b5 4738{
d26e3629 4739 return linux_common_xfer_osdata (annex, readbuf, offset, len);
07e059b5
VP
4740}
4741
d0722149
DE
4742/* Convert a native/host siginfo object, into/from the siginfo in the
4743 layout of the inferiors' architecture. */
4744
4745static void
a5362b9a 4746siginfo_fixup (siginfo_t *siginfo, void *inf_siginfo, int direction)
d0722149
DE
4747{
4748 int done = 0;
4749
4750 if (the_low_target.siginfo_fixup != NULL)
4751 done = the_low_target.siginfo_fixup (siginfo, inf_siginfo, direction);
4752
4753 /* If there was no callback, or the callback didn't do anything,
4754 then just do a straight memcpy. */
4755 if (!done)
4756 {
4757 if (direction == 1)
a5362b9a 4758 memcpy (siginfo, inf_siginfo, sizeof (siginfo_t));
d0722149 4759 else
a5362b9a 4760 memcpy (inf_siginfo, siginfo, sizeof (siginfo_t));
d0722149
DE
4761 }
4762}
4763
4aa995e1
PA
4764static int
4765linux_xfer_siginfo (const char *annex, unsigned char *readbuf,
4766 unsigned const char *writebuf, CORE_ADDR offset, int len)
4767{
d0722149 4768 int pid;
a5362b9a
TS
4769 siginfo_t siginfo;
4770 char inf_siginfo[sizeof (siginfo_t)];
4aa995e1
PA
4771
4772 if (current_inferior == NULL)
4773 return -1;
4774
bd99dc85 4775 pid = lwpid_of (get_thread_lwp (current_inferior));
4aa995e1
PA
4776
4777 if (debug_threads)
d0722149 4778 fprintf (stderr, "%s siginfo for lwp %d.\n",
4aa995e1
PA
4779 readbuf != NULL ? "Reading" : "Writing",
4780 pid);
4781
0adea5f7 4782 if (offset >= sizeof (siginfo))
4aa995e1
PA
4783 return -1;
4784
b8e1b30e 4785 if (ptrace (PTRACE_GETSIGINFO, pid, (PTRACE_TYPE_ARG3) 0, &siginfo) != 0)
4aa995e1
PA
4786 return -1;
4787
d0722149
DE
4788 /* When GDBSERVER is built as a 64-bit application, ptrace writes into
4789 SIGINFO an object with 64-bit layout. Since debugging a 32-bit
4790 inferior with a 64-bit GDBSERVER should look the same as debugging it
4791 with a 32-bit GDBSERVER, we need to convert it. */
4792 siginfo_fixup (&siginfo, inf_siginfo, 0);
4793
4aa995e1
PA
4794 if (offset + len > sizeof (siginfo))
4795 len = sizeof (siginfo) - offset;
4796
4797 if (readbuf != NULL)
d0722149 4798 memcpy (readbuf, inf_siginfo + offset, len);
4aa995e1
PA
4799 else
4800 {
d0722149
DE
4801 memcpy (inf_siginfo + offset, writebuf, len);
4802
4803 /* Convert back to ptrace layout before flushing it out. */
4804 siginfo_fixup (&siginfo, inf_siginfo, 1);
4805
b8e1b30e 4806 if (ptrace (PTRACE_SETSIGINFO, pid, (PTRACE_TYPE_ARG3) 0, &siginfo) != 0)
4aa995e1
PA
4807 return -1;
4808 }
4809
4810 return len;
4811}
4812
bd99dc85
PA
4813/* SIGCHLD handler that serves two purposes: In non-stop/async mode,
4814 so we notice when children change state; as the handler for the
4815 sigsuspend in my_waitpid. */
4816
4817static void
4818sigchld_handler (int signo)
4819{
4820 int old_errno = errno;
4821
4822 if (debug_threads)
e581f2b4
PA
4823 {
4824 do
4825 {
4826 /* fprintf is not async-signal-safe, so call write
4827 directly. */
4828 if (write (2, "sigchld_handler\n",
4829 sizeof ("sigchld_handler\n") - 1) < 0)
4830 break; /* just ignore */
4831 } while (0);
4832 }
bd99dc85
PA
4833
4834 if (target_is_async_p ())
4835 async_file_mark (); /* trigger a linux_wait */
4836
4837 errno = old_errno;
4838}
4839
4840static int
4841linux_supports_non_stop (void)
4842{
4843 return 1;
4844}
4845
4846static int
4847linux_async (int enable)
4848{
4849 int previous = (linux_event_pipe[0] != -1);
4850
8336d594
PA
4851 if (debug_threads)
4852 fprintf (stderr, "linux_async (%d), previous=%d\n",
4853 enable, previous);
4854
bd99dc85
PA
4855 if (previous != enable)
4856 {
4857 sigset_t mask;
4858 sigemptyset (&mask);
4859 sigaddset (&mask, SIGCHLD);
4860
4861 sigprocmask (SIG_BLOCK, &mask, NULL);
4862
4863 if (enable)
4864 {
4865 if (pipe (linux_event_pipe) == -1)
4866 fatal ("creating event pipe failed.");
4867
4868 fcntl (linux_event_pipe[0], F_SETFL, O_NONBLOCK);
4869 fcntl (linux_event_pipe[1], F_SETFL, O_NONBLOCK);
4870
4871 /* Register the event loop handler. */
4872 add_file_handler (linux_event_pipe[0],
4873 handle_target_event, NULL);
4874
4875 /* Always trigger a linux_wait. */
4876 async_file_mark ();
4877 }
4878 else
4879 {
4880 delete_file_handler (linux_event_pipe[0]);
4881
4882 close (linux_event_pipe[0]);
4883 close (linux_event_pipe[1]);
4884 linux_event_pipe[0] = -1;
4885 linux_event_pipe[1] = -1;
4886 }
4887
4888 sigprocmask (SIG_UNBLOCK, &mask, NULL);
4889 }
4890
4891 return previous;
4892}
4893
4894static int
4895linux_start_non_stop (int nonstop)
4896{
4897 /* Register or unregister from event-loop accordingly. */
4898 linux_async (nonstop);
4899 return 0;
4900}
4901
cf8fd78b
PA
4902static int
4903linux_supports_multi_process (void)
4904{
4905 return 1;
4906}
4907
03583c20
UW
4908static int
4909linux_supports_disable_randomization (void)
4910{
4911#ifdef HAVE_PERSONALITY
4912 return 1;
4913#else
4914 return 0;
4915#endif
4916}
efcbbd14 4917
d1feda86
YQ
4918static int
4919linux_supports_agent (void)
4920{
4921 return 1;
4922}
4923
c2d6af84
PA
4924static int
4925linux_supports_range_stepping (void)
4926{
4927 if (*the_low_target.supports_range_stepping == NULL)
4928 return 0;
4929
4930 return (*the_low_target.supports_range_stepping) ();
4931}
4932
efcbbd14
UW
4933/* Enumerate spufs IDs for process PID. */
4934static int
4935spu_enumerate_spu_ids (long pid, unsigned char *buf, CORE_ADDR offset, int len)
4936{
4937 int pos = 0;
4938 int written = 0;
4939 char path[128];
4940 DIR *dir;
4941 struct dirent *entry;
4942
4943 sprintf (path, "/proc/%ld/fd", pid);
4944 dir = opendir (path);
4945 if (!dir)
4946 return -1;
4947
4948 rewinddir (dir);
4949 while ((entry = readdir (dir)) != NULL)
4950 {
4951 struct stat st;
4952 struct statfs stfs;
4953 int fd;
4954
4955 fd = atoi (entry->d_name);
4956 if (!fd)
4957 continue;
4958
4959 sprintf (path, "/proc/%ld/fd/%d", pid, fd);
4960 if (stat (path, &st) != 0)
4961 continue;
4962 if (!S_ISDIR (st.st_mode))
4963 continue;
4964
4965 if (statfs (path, &stfs) != 0)
4966 continue;
4967 if (stfs.f_type != SPUFS_MAGIC)
4968 continue;
4969
4970 if (pos >= offset && pos + 4 <= offset + len)
4971 {
4972 *(unsigned int *)(buf + pos - offset) = fd;
4973 written += 4;
4974 }
4975 pos += 4;
4976 }
4977
4978 closedir (dir);
4979 return written;
4980}
4981
4982/* Implements the to_xfer_partial interface for the TARGET_OBJECT_SPU
4983 object type, using the /proc file system. */
4984static int
4985linux_qxfer_spu (const char *annex, unsigned char *readbuf,
4986 unsigned const char *writebuf,
4987 CORE_ADDR offset, int len)
4988{
4989 long pid = lwpid_of (get_thread_lwp (current_inferior));
4990 char buf[128];
4991 int fd = 0;
4992 int ret = 0;
4993
4994 if (!writebuf && !readbuf)
4995 return -1;
4996
4997 if (!*annex)
4998 {
4999 if (!readbuf)
5000 return -1;
5001 else
5002 return spu_enumerate_spu_ids (pid, readbuf, offset, len);
5003 }
5004
5005 sprintf (buf, "/proc/%ld/fd/%s", pid, annex);
5006 fd = open (buf, writebuf? O_WRONLY : O_RDONLY);
5007 if (fd <= 0)
5008 return -1;
5009
5010 if (offset != 0
5011 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
5012 {
5013 close (fd);
5014 return 0;
5015 }
5016
5017 if (writebuf)
5018 ret = write (fd, writebuf, (size_t) len);
5019 else
5020 ret = read (fd, readbuf, (size_t) len);
5021
5022 close (fd);
5023 return ret;
5024}
5025
723b724b 5026#if defined PT_GETDSBT || defined PTRACE_GETFDPIC
78d85199
YQ
5027struct target_loadseg
5028{
5029 /* Core address to which the segment is mapped. */
5030 Elf32_Addr addr;
5031 /* VMA recorded in the program header. */
5032 Elf32_Addr p_vaddr;
5033 /* Size of this segment in memory. */
5034 Elf32_Word p_memsz;
5035};
5036
723b724b 5037# if defined PT_GETDSBT
78d85199
YQ
5038struct target_loadmap
5039{
5040 /* Protocol version number, must be zero. */
5041 Elf32_Word version;
5042 /* Pointer to the DSBT table, its size, and the DSBT index. */
5043 unsigned *dsbt_table;
5044 unsigned dsbt_size, dsbt_index;
5045 /* Number of segments in this map. */
5046 Elf32_Word nsegs;
5047 /* The actual memory map. */
5048 struct target_loadseg segs[/*nsegs*/];
5049};
723b724b
MF
5050# define LINUX_LOADMAP PT_GETDSBT
5051# define LINUX_LOADMAP_EXEC PTRACE_GETDSBT_EXEC
5052# define LINUX_LOADMAP_INTERP PTRACE_GETDSBT_INTERP
5053# else
5054struct target_loadmap
5055{
5056 /* Protocol version number, must be zero. */
5057 Elf32_Half version;
5058 /* Number of segments in this map. */
5059 Elf32_Half nsegs;
5060 /* The actual memory map. */
5061 struct target_loadseg segs[/*nsegs*/];
5062};
5063# define LINUX_LOADMAP PTRACE_GETFDPIC
5064# define LINUX_LOADMAP_EXEC PTRACE_GETFDPIC_EXEC
5065# define LINUX_LOADMAP_INTERP PTRACE_GETFDPIC_INTERP
5066# endif
78d85199 5067
78d85199
YQ
5068static int
5069linux_read_loadmap (const char *annex, CORE_ADDR offset,
5070 unsigned char *myaddr, unsigned int len)
5071{
5072 int pid = lwpid_of (get_thread_lwp (current_inferior));
5073 int addr = -1;
5074 struct target_loadmap *data = NULL;
5075 unsigned int actual_length, copy_length;
5076
5077 if (strcmp (annex, "exec") == 0)
723b724b 5078 addr = (int) LINUX_LOADMAP_EXEC;
78d85199 5079 else if (strcmp (annex, "interp") == 0)
723b724b 5080 addr = (int) LINUX_LOADMAP_INTERP;
78d85199
YQ
5081 else
5082 return -1;
5083
723b724b 5084 if (ptrace (LINUX_LOADMAP, pid, addr, &data) != 0)
78d85199
YQ
5085 return -1;
5086
5087 if (data == NULL)
5088 return -1;
5089
5090 actual_length = sizeof (struct target_loadmap)
5091 + sizeof (struct target_loadseg) * data->nsegs;
5092
5093 if (offset < 0 || offset > actual_length)
5094 return -1;
5095
5096 copy_length = actual_length - offset < len ? actual_length - offset : len;
5097 memcpy (myaddr, (char *) data + offset, copy_length);
5098 return copy_length;
5099}
723b724b
MF
5100#else
5101# define linux_read_loadmap NULL
5102#endif /* defined PT_GETDSBT || defined PTRACE_GETFDPIC */
78d85199 5103
1570b33e
L
5104static void
5105linux_process_qsupported (const char *query)
5106{
5107 if (the_low_target.process_qsupported != NULL)
5108 the_low_target.process_qsupported (query);
5109}
5110
219f2f23
PA
5111static int
5112linux_supports_tracepoints (void)
5113{
5114 if (*the_low_target.supports_tracepoints == NULL)
5115 return 0;
5116
5117 return (*the_low_target.supports_tracepoints) ();
5118}
5119
5120static CORE_ADDR
5121linux_read_pc (struct regcache *regcache)
5122{
5123 if (the_low_target.get_pc == NULL)
5124 return 0;
5125
5126 return (*the_low_target.get_pc) (regcache);
5127}
5128
5129static void
5130linux_write_pc (struct regcache *regcache, CORE_ADDR pc)
5131{
5132 gdb_assert (the_low_target.set_pc != NULL);
5133
5134 (*the_low_target.set_pc) (regcache, pc);
5135}
5136
8336d594
PA
5137static int
5138linux_thread_stopped (struct thread_info *thread)
5139{
5140 return get_thread_lwp (thread)->stopped;
5141}
5142
5143/* This exposes stop-all-threads functionality to other modules. */
5144
5145static void
7984d532 5146linux_pause_all (int freeze)
8336d594 5147{
7984d532
PA
5148 stop_all_lwps (freeze, NULL);
5149}
5150
5151/* This exposes unstop-all-threads functionality to other gdbserver
5152 modules. */
5153
5154static void
5155linux_unpause_all (int unfreeze)
5156{
5157 unstop_all_lwps (unfreeze, NULL);
8336d594
PA
5158}
5159
90d74c30
PA
5160static int
5161linux_prepare_to_access_memory (void)
5162{
5163 /* Neither ptrace nor /proc/PID/mem allow accessing memory through a
5164 running LWP. */
5165 if (non_stop)
5166 linux_pause_all (1);
5167 return 0;
5168}
5169
5170static void
0146f85b 5171linux_done_accessing_memory (void)
90d74c30
PA
5172{
5173 /* Neither ptrace nor /proc/PID/mem allow accessing memory through a
5174 running LWP. */
5175 if (non_stop)
5176 linux_unpause_all (1);
5177}
5178
fa593d66
PA
5179static int
5180linux_install_fast_tracepoint_jump_pad (CORE_ADDR tpoint, CORE_ADDR tpaddr,
5181 CORE_ADDR collector,
5182 CORE_ADDR lockaddr,
5183 ULONGEST orig_size,
5184 CORE_ADDR *jump_entry,
405f8e94
SS
5185 CORE_ADDR *trampoline,
5186 ULONGEST *trampoline_size,
fa593d66
PA
5187 unsigned char *jjump_pad_insn,
5188 ULONGEST *jjump_pad_insn_size,
5189 CORE_ADDR *adjusted_insn_addr,
405f8e94
SS
5190 CORE_ADDR *adjusted_insn_addr_end,
5191 char *err)
fa593d66
PA
5192{
5193 return (*the_low_target.install_fast_tracepoint_jump_pad)
5194 (tpoint, tpaddr, collector, lockaddr, orig_size,
405f8e94
SS
5195 jump_entry, trampoline, trampoline_size,
5196 jjump_pad_insn, jjump_pad_insn_size,
5197 adjusted_insn_addr, adjusted_insn_addr_end,
5198 err);
fa593d66
PA
5199}
5200
6a271cae
PA
5201static struct emit_ops *
5202linux_emit_ops (void)
5203{
5204 if (the_low_target.emit_ops != NULL)
5205 return (*the_low_target.emit_ops) ();
5206 else
5207 return NULL;
5208}
5209
405f8e94
SS
5210static int
5211linux_get_min_fast_tracepoint_insn_len (void)
5212{
5213 return (*the_low_target.get_min_fast_tracepoint_insn_len) ();
5214}
5215
2268b414
JK
5216/* Extract &phdr and num_phdr in the inferior. Return 0 on success. */
5217
5218static int
5219get_phdr_phnum_from_proc_auxv (const int pid, const int is_elf64,
5220 CORE_ADDR *phdr_memaddr, int *num_phdr)
5221{
5222 char filename[PATH_MAX];
5223 int fd;
5224 const int auxv_size = is_elf64
5225 ? sizeof (Elf64_auxv_t) : sizeof (Elf32_auxv_t);
5226 char buf[sizeof (Elf64_auxv_t)]; /* The larger of the two. */
5227
5228 xsnprintf (filename, sizeof filename, "/proc/%d/auxv", pid);
5229
5230 fd = open (filename, O_RDONLY);
5231 if (fd < 0)
5232 return 1;
5233
5234 *phdr_memaddr = 0;
5235 *num_phdr = 0;
5236 while (read (fd, buf, auxv_size) == auxv_size
5237 && (*phdr_memaddr == 0 || *num_phdr == 0))
5238 {
5239 if (is_elf64)
5240 {
5241 Elf64_auxv_t *const aux = (Elf64_auxv_t *) buf;
5242
5243 switch (aux->a_type)
5244 {
5245 case AT_PHDR:
5246 *phdr_memaddr = aux->a_un.a_val;
5247 break;
5248 case AT_PHNUM:
5249 *num_phdr = aux->a_un.a_val;
5250 break;
5251 }
5252 }
5253 else
5254 {
5255 Elf32_auxv_t *const aux = (Elf32_auxv_t *) buf;
5256
5257 switch (aux->a_type)
5258 {
5259 case AT_PHDR:
5260 *phdr_memaddr = aux->a_un.a_val;
5261 break;
5262 case AT_PHNUM:
5263 *num_phdr = aux->a_un.a_val;
5264 break;
5265 }
5266 }
5267 }
5268
5269 close (fd);
5270
5271 if (*phdr_memaddr == 0 || *num_phdr == 0)
5272 {
5273 warning ("Unexpected missing AT_PHDR and/or AT_PHNUM: "
5274 "phdr_memaddr = %ld, phdr_num = %d",
5275 (long) *phdr_memaddr, *num_phdr);
5276 return 2;
5277 }
5278
5279 return 0;
5280}
5281
5282/* Return &_DYNAMIC (via PT_DYNAMIC) in the inferior, or 0 if not present. */
5283
5284static CORE_ADDR
5285get_dynamic (const int pid, const int is_elf64)
5286{
5287 CORE_ADDR phdr_memaddr, relocation;
5288 int num_phdr, i;
5289 unsigned char *phdr_buf;
5290 const int phdr_size = is_elf64 ? sizeof (Elf64_Phdr) : sizeof (Elf32_Phdr);
5291
5292 if (get_phdr_phnum_from_proc_auxv (pid, is_elf64, &phdr_memaddr, &num_phdr))
5293 return 0;
5294
5295 gdb_assert (num_phdr < 100); /* Basic sanity check. */
5296 phdr_buf = alloca (num_phdr * phdr_size);
5297
5298 if (linux_read_memory (phdr_memaddr, phdr_buf, num_phdr * phdr_size))
5299 return 0;
5300
5301 /* Compute relocation: it is expected to be 0 for "regular" executables,
5302 non-zero for PIE ones. */
5303 relocation = -1;
5304 for (i = 0; relocation == -1 && i < num_phdr; i++)
5305 if (is_elf64)
5306 {
5307 Elf64_Phdr *const p = (Elf64_Phdr *) (phdr_buf + i * phdr_size);
5308
5309 if (p->p_type == PT_PHDR)
5310 relocation = phdr_memaddr - p->p_vaddr;
5311 }
5312 else
5313 {
5314 Elf32_Phdr *const p = (Elf32_Phdr *) (phdr_buf + i * phdr_size);
5315
5316 if (p->p_type == PT_PHDR)
5317 relocation = phdr_memaddr - p->p_vaddr;
5318 }
5319
5320 if (relocation == -1)
5321 {
e237a7e2
JK
5322 /* PT_PHDR is optional, but necessary for PIE in general. Fortunately
5323 any real world executables, including PIE executables, have always
5324 PT_PHDR present. PT_PHDR is not present in some shared libraries or
5325 in fpc (Free Pascal 2.4) binaries but neither of those have a need for
5326 or present DT_DEBUG anyway (fpc binaries are statically linked).
5327
5328 Therefore if there exists DT_DEBUG there is always also PT_PHDR.
5329
5330 GDB could find RELOCATION also from AT_ENTRY - e_entry. */
5331
2268b414
JK
5332 return 0;
5333 }
5334
5335 for (i = 0; i < num_phdr; i++)
5336 {
5337 if (is_elf64)
5338 {
5339 Elf64_Phdr *const p = (Elf64_Phdr *) (phdr_buf + i * phdr_size);
5340
5341 if (p->p_type == PT_DYNAMIC)
5342 return p->p_vaddr + relocation;
5343 }
5344 else
5345 {
5346 Elf32_Phdr *const p = (Elf32_Phdr *) (phdr_buf + i * phdr_size);
5347
5348 if (p->p_type == PT_DYNAMIC)
5349 return p->p_vaddr + relocation;
5350 }
5351 }
5352
5353 return 0;
5354}
5355
5356/* Return &_r_debug in the inferior, or -1 if not present. Return value
367ba2c2
MR
5357 can be 0 if the inferior does not yet have the library list initialized.
5358 We look for DT_MIPS_RLD_MAP first. MIPS executables use this instead of
5359 DT_DEBUG, although they sometimes contain an unused DT_DEBUG entry too. */
2268b414
JK
5360
5361static CORE_ADDR
5362get_r_debug (const int pid, const int is_elf64)
5363{
5364 CORE_ADDR dynamic_memaddr;
5365 const int dyn_size = is_elf64 ? sizeof (Elf64_Dyn) : sizeof (Elf32_Dyn);
5366 unsigned char buf[sizeof (Elf64_Dyn)]; /* The larger of the two. */
367ba2c2 5367 CORE_ADDR map = -1;
2268b414
JK
5368
5369 dynamic_memaddr = get_dynamic (pid, is_elf64);
5370 if (dynamic_memaddr == 0)
367ba2c2 5371 return map;
2268b414
JK
5372
5373 while (linux_read_memory (dynamic_memaddr, buf, dyn_size) == 0)
5374 {
5375 if (is_elf64)
5376 {
5377 Elf64_Dyn *const dyn = (Elf64_Dyn *) buf;
75f62ce7 5378#ifdef DT_MIPS_RLD_MAP
367ba2c2
MR
5379 union
5380 {
5381 Elf64_Xword map;
5382 unsigned char buf[sizeof (Elf64_Xword)];
5383 }
5384 rld_map;
5385
5386 if (dyn->d_tag == DT_MIPS_RLD_MAP)
5387 {
5388 if (linux_read_memory (dyn->d_un.d_val,
5389 rld_map.buf, sizeof (rld_map.buf)) == 0)
5390 return rld_map.map;
5391 else
5392 break;
5393 }
75f62ce7 5394#endif /* DT_MIPS_RLD_MAP */
2268b414 5395
367ba2c2
MR
5396 if (dyn->d_tag == DT_DEBUG && map == -1)
5397 map = dyn->d_un.d_val;
2268b414
JK
5398
5399 if (dyn->d_tag == DT_NULL)
5400 break;
5401 }
5402 else
5403 {
5404 Elf32_Dyn *const dyn = (Elf32_Dyn *) buf;
75f62ce7 5405#ifdef DT_MIPS_RLD_MAP
367ba2c2
MR
5406 union
5407 {
5408 Elf32_Word map;
5409 unsigned char buf[sizeof (Elf32_Word)];
5410 }
5411 rld_map;
5412
5413 if (dyn->d_tag == DT_MIPS_RLD_MAP)
5414 {
5415 if (linux_read_memory (dyn->d_un.d_val,
5416 rld_map.buf, sizeof (rld_map.buf)) == 0)
5417 return rld_map.map;
5418 else
5419 break;
5420 }
75f62ce7 5421#endif /* DT_MIPS_RLD_MAP */
2268b414 5422
367ba2c2
MR
5423 if (dyn->d_tag == DT_DEBUG && map == -1)
5424 map = dyn->d_un.d_val;
2268b414
JK
5425
5426 if (dyn->d_tag == DT_NULL)
5427 break;
5428 }
5429
5430 dynamic_memaddr += dyn_size;
5431 }
5432
367ba2c2 5433 return map;
2268b414
JK
5434}
5435
5436/* Read one pointer from MEMADDR in the inferior. */
5437
5438static int
5439read_one_ptr (CORE_ADDR memaddr, CORE_ADDR *ptr, int ptr_size)
5440{
485f1ee4
PA
5441 int ret;
5442
5443 /* Go through a union so this works on either big or little endian
5444 hosts, when the inferior's pointer size is smaller than the size
5445 of CORE_ADDR. It is assumed the inferior's endianness is the
5446 same of the superior's. */
5447 union
5448 {
5449 CORE_ADDR core_addr;
5450 unsigned int ui;
5451 unsigned char uc;
5452 } addr;
5453
5454 ret = linux_read_memory (memaddr, &addr.uc, ptr_size);
5455 if (ret == 0)
5456 {
5457 if (ptr_size == sizeof (CORE_ADDR))
5458 *ptr = addr.core_addr;
5459 else if (ptr_size == sizeof (unsigned int))
5460 *ptr = addr.ui;
5461 else
5462 gdb_assert_not_reached ("unhandled pointer size");
5463 }
5464 return ret;
2268b414
JK
5465}
5466
5467struct link_map_offsets
5468 {
5469 /* Offset and size of r_debug.r_version. */
5470 int r_version_offset;
5471
5472 /* Offset and size of r_debug.r_map. */
5473 int r_map_offset;
5474
5475 /* Offset to l_addr field in struct link_map. */
5476 int l_addr_offset;
5477
5478 /* Offset to l_name field in struct link_map. */
5479 int l_name_offset;
5480
5481 /* Offset to l_ld field in struct link_map. */
5482 int l_ld_offset;
5483
5484 /* Offset to l_next field in struct link_map. */
5485 int l_next_offset;
5486
5487 /* Offset to l_prev field in struct link_map. */
5488 int l_prev_offset;
5489 };
5490
fb723180 5491/* Construct qXfer:libraries-svr4:read reply. */
2268b414
JK
5492
5493static int
5494linux_qxfer_libraries_svr4 (const char *annex, unsigned char *readbuf,
5495 unsigned const char *writebuf,
5496 CORE_ADDR offset, int len)
5497{
5498 char *document;
5499 unsigned document_len;
5500 struct process_info_private *const priv = current_process ()->private;
5501 char filename[PATH_MAX];
5502 int pid, is_elf64;
5503
5504 static const struct link_map_offsets lmo_32bit_offsets =
5505 {
5506 0, /* r_version offset. */
5507 4, /* r_debug.r_map offset. */
5508 0, /* l_addr offset in link_map. */
5509 4, /* l_name offset in link_map. */
5510 8, /* l_ld offset in link_map. */
5511 12, /* l_next offset in link_map. */
5512 16 /* l_prev offset in link_map. */
5513 };
5514
5515 static const struct link_map_offsets lmo_64bit_offsets =
5516 {
5517 0, /* r_version offset. */
5518 8, /* r_debug.r_map offset. */
5519 0, /* l_addr offset in link_map. */
5520 8, /* l_name offset in link_map. */
5521 16, /* l_ld offset in link_map. */
5522 24, /* l_next offset in link_map. */
5523 32 /* l_prev offset in link_map. */
5524 };
5525 const struct link_map_offsets *lmo;
214d508e 5526 unsigned int machine;
b1fbec62
GB
5527 int ptr_size;
5528 CORE_ADDR lm_addr = 0, lm_prev = 0;
5529 int allocated = 1024;
5530 char *p;
5531 CORE_ADDR l_name, l_addr, l_ld, l_next, l_prev;
5532 int header_done = 0;
2268b414
JK
5533
5534 if (writebuf != NULL)
5535 return -2;
5536 if (readbuf == NULL)
5537 return -1;
5538
5539 pid = lwpid_of (get_thread_lwp (current_inferior));
5540 xsnprintf (filename, sizeof filename, "/proc/%d/exe", pid);
214d508e 5541 is_elf64 = elf_64_file_p (filename, &machine);
2268b414 5542 lmo = is_elf64 ? &lmo_64bit_offsets : &lmo_32bit_offsets;
b1fbec62 5543 ptr_size = is_elf64 ? 8 : 4;
2268b414 5544
b1fbec62
GB
5545 while (annex[0] != '\0')
5546 {
5547 const char *sep;
5548 CORE_ADDR *addrp;
5549 int len;
2268b414 5550
b1fbec62
GB
5551 sep = strchr (annex, '=');
5552 if (sep == NULL)
5553 break;
0c5bf5a9 5554
b1fbec62
GB
5555 len = sep - annex;
5556 if (len == 5 && strncmp (annex, "start", 5) == 0)
5557 addrp = &lm_addr;
5558 else if (len == 4 && strncmp (annex, "prev", 4) == 0)
5559 addrp = &lm_prev;
5560 else
5561 {
5562 annex = strchr (sep, ';');
5563 if (annex == NULL)
5564 break;
5565 annex++;
5566 continue;
5567 }
5568
5569 annex = decode_address_to_semicolon (addrp, sep + 1);
2268b414 5570 }
b1fbec62
GB
5571
5572 if (lm_addr == 0)
2268b414 5573 {
b1fbec62
GB
5574 int r_version = 0;
5575
5576 if (priv->r_debug == 0)
5577 priv->r_debug = get_r_debug (pid, is_elf64);
5578
5579 /* We failed to find DT_DEBUG. Such situation will not change
5580 for this inferior - do not retry it. Report it to GDB as
5581 E01, see for the reasons at the GDB solib-svr4.c side. */
5582 if (priv->r_debug == (CORE_ADDR) -1)
5583 return -1;
5584
5585 if (priv->r_debug != 0)
2268b414 5586 {
b1fbec62
GB
5587 if (linux_read_memory (priv->r_debug + lmo->r_version_offset,
5588 (unsigned char *) &r_version,
5589 sizeof (r_version)) != 0
5590 || r_version != 1)
5591 {
5592 warning ("unexpected r_debug version %d", r_version);
5593 }
5594 else if (read_one_ptr (priv->r_debug + lmo->r_map_offset,
5595 &lm_addr, ptr_size) != 0)
5596 {
5597 warning ("unable to read r_map from 0x%lx",
5598 (long) priv->r_debug + lmo->r_map_offset);
5599 }
2268b414 5600 }
b1fbec62 5601 }
2268b414 5602
b1fbec62
GB
5603 document = xmalloc (allocated);
5604 strcpy (document, "<library-list-svr4 version=\"1.0\"");
5605 p = document + strlen (document);
5606
5607 while (lm_addr
5608 && read_one_ptr (lm_addr + lmo->l_name_offset,
5609 &l_name, ptr_size) == 0
5610 && read_one_ptr (lm_addr + lmo->l_addr_offset,
5611 &l_addr, ptr_size) == 0
5612 && read_one_ptr (lm_addr + lmo->l_ld_offset,
5613 &l_ld, ptr_size) == 0
5614 && read_one_ptr (lm_addr + lmo->l_prev_offset,
5615 &l_prev, ptr_size) == 0
5616 && read_one_ptr (lm_addr + lmo->l_next_offset,
5617 &l_next, ptr_size) == 0)
5618 {
5619 unsigned char libname[PATH_MAX];
5620
5621 if (lm_prev != l_prev)
2268b414 5622 {
b1fbec62
GB
5623 warning ("Corrupted shared library list: 0x%lx != 0x%lx",
5624 (long) lm_prev, (long) l_prev);
5625 break;
2268b414
JK
5626 }
5627
d878444c
JK
5628 /* Ignore the first entry even if it has valid name as the first entry
5629 corresponds to the main executable. The first entry should not be
5630 skipped if the dynamic loader was loaded late by a static executable
5631 (see solib-svr4.c parameter ignore_first). But in such case the main
5632 executable does not have PT_DYNAMIC present and this function already
5633 exited above due to failed get_r_debug. */
5634 if (lm_prev == 0)
2268b414 5635 {
d878444c
JK
5636 sprintf (p, " main-lm=\"0x%lx\"", (unsigned long) lm_addr);
5637 p = p + strlen (p);
5638 }
5639 else
5640 {
5641 /* Not checking for error because reading may stop before
5642 we've got PATH_MAX worth of characters. */
5643 libname[0] = '\0';
5644 linux_read_memory (l_name, libname, sizeof (libname) - 1);
5645 libname[sizeof (libname) - 1] = '\0';
5646 if (libname[0] != '\0')
2268b414 5647 {
d878444c
JK
5648 /* 6x the size for xml_escape_text below. */
5649 size_t len = 6 * strlen ((char *) libname);
5650 char *name;
2268b414 5651
d878444c
JK
5652 if (!header_done)
5653 {
5654 /* Terminate `<library-list-svr4'. */
5655 *p++ = '>';
5656 header_done = 1;
5657 }
2268b414 5658
d878444c
JK
5659 while (allocated < p - document + len + 200)
5660 {
5661 /* Expand to guarantee sufficient storage. */
5662 uintptr_t document_len = p - document;
2268b414 5663
d878444c
JK
5664 document = xrealloc (document, 2 * allocated);
5665 allocated *= 2;
5666 p = document + document_len;
5667 }
5668
5669 name = xml_escape_text ((char *) libname);
5670 p += sprintf (p, "<library name=\"%s\" lm=\"0x%lx\" "
5671 "l_addr=\"0x%lx\" l_ld=\"0x%lx\"/>",
5672 name, (unsigned long) lm_addr,
5673 (unsigned long) l_addr, (unsigned long) l_ld);
5674 free (name);
5675 }
0afae3cf 5676 }
b1fbec62
GB
5677
5678 lm_prev = lm_addr;
5679 lm_addr = l_next;
2268b414
JK
5680 }
5681
b1fbec62
GB
5682 if (!header_done)
5683 {
5684 /* Empty list; terminate `<library-list-svr4'. */
5685 strcpy (p, "/>");
5686 }
5687 else
5688 strcpy (p, "</library-list-svr4>");
5689
2268b414
JK
5690 document_len = strlen (document);
5691 if (offset < document_len)
5692 document_len -= offset;
5693 else
5694 document_len = 0;
5695 if (len > document_len)
5696 len = document_len;
5697
5698 memcpy (readbuf, document + offset, len);
5699 xfree (document);
5700
5701 return len;
5702}
5703
9accd112
MM
5704#ifdef HAVE_LINUX_BTRACE
5705
5706/* Enable branch tracing. */
5707
5708static struct btrace_target_info *
5709linux_low_enable_btrace (ptid_t ptid)
5710{
5711 struct btrace_target_info *tinfo;
5712
5713 tinfo = linux_enable_btrace (ptid);
3aee8918 5714
9accd112 5715 if (tinfo != NULL)
3aee8918
PA
5716 {
5717 struct thread_info *thread = find_thread_ptid (ptid);
5718 struct regcache *regcache = get_thread_regcache (thread, 0);
5719
5720 tinfo->ptr_bits = register_size (regcache->tdesc, 0) * 8;
5721 }
9accd112
MM
5722
5723 return tinfo;
5724}
5725
5726/* Read branch trace data as btrace xml document. */
5727
5728static void
5729linux_low_read_btrace (struct btrace_target_info *tinfo, struct buffer *buffer,
5730 int type)
5731{
5732 VEC (btrace_block_s) *btrace;
5733 struct btrace_block *block;
5734 int i;
5735
5736 btrace = linux_read_btrace (tinfo, type);
5737
5738 buffer_grow_str (buffer, "<!DOCTYPE btrace SYSTEM \"btrace.dtd\">\n");
5739 buffer_grow_str (buffer, "<btrace version=\"1.0\">\n");
5740
5741 for (i = 0; VEC_iterate (btrace_block_s, btrace, i, block); i++)
5742 buffer_xml_printf (buffer, "<block begin=\"0x%s\" end=\"0x%s\"/>\n",
5743 paddress (block->begin), paddress (block->end));
5744
5745 buffer_grow_str (buffer, "</btrace>\n");
5746
5747 VEC_free (btrace_block_s, btrace);
5748}
5749#endif /* HAVE_LINUX_BTRACE */
5750
ce3a066d
DJ
5751static struct target_ops linux_target_ops = {
5752 linux_create_inferior,
5753 linux_attach,
5754 linux_kill,
6ad8ae5c 5755 linux_detach,
8336d594 5756 linux_mourn,
444d6139 5757 linux_join,
ce3a066d
DJ
5758 linux_thread_alive,
5759 linux_resume,
5760 linux_wait,
5761 linux_fetch_registers,
5762 linux_store_registers,
90d74c30 5763 linux_prepare_to_access_memory,
0146f85b 5764 linux_done_accessing_memory,
ce3a066d
DJ
5765 linux_read_memory,
5766 linux_write_memory,
2f2893d9 5767 linux_look_up_symbols,
ef57601b 5768 linux_request_interrupt,
aa691b87 5769 linux_read_auxv,
d993e290
PA
5770 linux_insert_point,
5771 linux_remove_point,
e013ee27
OF
5772 linux_stopped_by_watchpoint,
5773 linux_stopped_data_address,
db0dfaa0
LM
5774#if defined(__UCLIBC__) && defined(HAS_NOMMU) \
5775 && defined(PT_TEXT_ADDR) && defined(PT_DATA_ADDR) \
5776 && defined(PT_TEXT_END_ADDR)
52fb6437 5777 linux_read_offsets,
dae5f5cf
DJ
5778#else
5779 NULL,
5780#endif
5781#ifdef USE_THREAD_DB
5782 thread_db_get_tls_address,
5783#else
5784 NULL,
52fb6437 5785#endif
efcbbd14 5786 linux_qxfer_spu,
59a016f0 5787 hostio_last_error_from_errno,
07e059b5 5788 linux_qxfer_osdata,
4aa995e1 5789 linux_xfer_siginfo,
bd99dc85
PA
5790 linux_supports_non_stop,
5791 linux_async,
5792 linux_start_non_stop,
cdbfd419
PP
5793 linux_supports_multi_process,
5794#ifdef USE_THREAD_DB
dc146f7c 5795 thread_db_handle_monitor_command,
cdbfd419 5796#else
dc146f7c 5797 NULL,
cdbfd419 5798#endif
d26e3629 5799 linux_common_core_of_thread,
78d85199 5800 linux_read_loadmap,
219f2f23
PA
5801 linux_process_qsupported,
5802 linux_supports_tracepoints,
5803 linux_read_pc,
8336d594
PA
5804 linux_write_pc,
5805 linux_thread_stopped,
7984d532 5806 NULL,
711e434b 5807 linux_pause_all,
7984d532 5808 linux_unpause_all,
fa593d66
PA
5809 linux_cancel_breakpoints,
5810 linux_stabilize_threads,
6a271cae 5811 linux_install_fast_tracepoint_jump_pad,
03583c20
UW
5812 linux_emit_ops,
5813 linux_supports_disable_randomization,
405f8e94 5814 linux_get_min_fast_tracepoint_insn_len,
2268b414 5815 linux_qxfer_libraries_svr4,
d1feda86 5816 linux_supports_agent,
9accd112
MM
5817#ifdef HAVE_LINUX_BTRACE
5818 linux_supports_btrace,
5819 linux_low_enable_btrace,
5820 linux_disable_btrace,
5821 linux_low_read_btrace,
5822#else
5823 NULL,
5824 NULL,
5825 NULL,
5826 NULL,
9accd112 5827#endif
c2d6af84 5828 linux_supports_range_stepping,
ce3a066d
DJ
5829};
5830
0d62e5e8
DJ
5831static void
5832linux_init_signals ()
5833{
5834 /* FIXME drow/2002-06-09: As above, we should check with LinuxThreads
5835 to find what the cancel signal actually is. */
1a981360 5836#ifndef __ANDROID__ /* Bionic doesn't use SIGRTMIN the way glibc does. */
254787d4 5837 signal (__SIGRTMIN+1, SIG_IGN);
60c3d7b0 5838#endif
0d62e5e8
DJ
5839}
5840
3aee8918
PA
5841#ifdef HAVE_LINUX_REGSETS
5842void
5843initialize_regsets_info (struct regsets_info *info)
5844{
5845 for (info->num_regsets = 0;
5846 info->regsets[info->num_regsets].size >= 0;
5847 info->num_regsets++)
5848 ;
3aee8918
PA
5849}
5850#endif
5851
da6d8c04
DJ
5852void
5853initialize_low (void)
5854{
bd99dc85
PA
5855 struct sigaction sigchld_action;
5856 memset (&sigchld_action, 0, sizeof (sigchld_action));
ce3a066d 5857 set_target_ops (&linux_target_ops);
611cb4a5
DJ
5858 set_breakpoint_data (the_low_target.breakpoint,
5859 the_low_target.breakpoint_len);
0d62e5e8 5860 linux_init_signals ();
aa7c7447 5861 linux_ptrace_init_warnings ();
bd99dc85
PA
5862
5863 sigchld_action.sa_handler = sigchld_handler;
5864 sigemptyset (&sigchld_action.sa_mask);
5865 sigchld_action.sa_flags = SA_RESTART;
5866 sigaction (SIGCHLD, &sigchld_action, NULL);
3aee8918
PA
5867
5868 initialize_low_arch ();
da6d8c04 5869}