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