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