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