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