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