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