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