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