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