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