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