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