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