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