Don't write unattached after_input sections twice.
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-low.c
CommitLineData
da6d8c04 1/* Low level interface to ptrace, for the remote server for GDB.
545587ee 2 Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
6aba47ca 3 2006, 2007 Free Software Foundation, Inc.
da6d8c04
DJ
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
da6d8c04
DJ
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
da6d8c04
DJ
19
20#include "server.h"
58caa3dc 21#include "linux-low.h"
da6d8c04 22
58caa3dc 23#include <sys/wait.h>
da6d8c04
DJ
24#include <stdio.h>
25#include <sys/param.h>
26#include <sys/dir.h>
27#include <sys/ptrace.h>
28#include <sys/user.h>
29#include <signal.h>
30#include <sys/ioctl.h>
31#include <fcntl.h>
d07c63e7 32#include <string.h>
0a30fbc4
DJ
33#include <stdlib.h>
34#include <unistd.h>
fa6a77dc 35#include <errno.h>
fd500816 36#include <sys/syscall.h>
f9387fc3 37#include <sched.h>
da6d8c04 38
32ca6d61
DJ
39#ifndef PTRACE_GETSIGINFO
40# define PTRACE_GETSIGINFO 0x4202
41# define PTRACE_SETSIGINFO 0x4203
42#endif
43
fd462a61
DJ
44#ifndef O_LARGEFILE
45#define O_LARGEFILE 0
46#endif
47
24a09b5f
DJ
48/* If the system headers did not provide the constants, hard-code the normal
49 values. */
50#ifndef PTRACE_EVENT_FORK
51
52#define PTRACE_SETOPTIONS 0x4200
53#define PTRACE_GETEVENTMSG 0x4201
54
55/* options set using PTRACE_SETOPTIONS */
56#define PTRACE_O_TRACESYSGOOD 0x00000001
57#define PTRACE_O_TRACEFORK 0x00000002
58#define PTRACE_O_TRACEVFORK 0x00000004
59#define PTRACE_O_TRACECLONE 0x00000008
60#define PTRACE_O_TRACEEXEC 0x00000010
61#define PTRACE_O_TRACEVFORKDONE 0x00000020
62#define PTRACE_O_TRACEEXIT 0x00000040
63
64/* Wait extended result codes for the above trace options. */
65#define PTRACE_EVENT_FORK 1
66#define PTRACE_EVENT_VFORK 2
67#define PTRACE_EVENT_CLONE 3
68#define PTRACE_EVENT_EXEC 4
69#define PTRACE_EVENT_VFORK_DONE 5
70#define PTRACE_EVENT_EXIT 6
71
72#endif /* PTRACE_EVENT_FORK */
73
74/* We can't always assume that this flag is available, but all systems
75 with the ptrace event handlers also have __WALL, so it's safe to use
76 in some contexts. */
77#ifndef __WALL
78#define __WALL 0x40000000 /* Wait for any child. */
79#endif
80
42c81e2a
DJ
81#ifdef __UCLIBC__
82#if !(defined(__UCLIBC_HAS_MMU__) || defined(__ARCH_HAS_MMU__))
83#define HAS_NOMMU
84#endif
85#endif
86
24a09b5f
DJ
87/* ``all_threads'' is keyed by the LWP ID, which we use as the GDB protocol
88 representation of the thread ID.
611cb4a5 89
0d62e5e8
DJ
90 ``all_processes'' is keyed by the process ID - which on Linux is (presently)
91 the same as the LWP ID. */
92
93struct inferior_list all_processes;
94
24a09b5f
DJ
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
99struct inferior_list stopped_pids;
100
0d62e5e8
DJ
101/* FIXME this is a bit of a hack, and could be removed. */
102int stopping_threads;
103
104/* FIXME make into a target method? */
24a09b5f
DJ
105int using_threads = 1;
106static int thread_db_active;
107
108static int must_set_ptrace_flags;
0d62e5e8
DJ
109
110static void linux_resume_one_process (struct inferior_list_entry *entry,
32ca6d61 111 int step, int signal, siginfo_t *info);
64386c31 112static void linux_resume (struct thread_resume *resume_info);
0d62e5e8
DJ
113static void stop_all_processes (void);
114static int linux_wait_for_event (struct thread_info *child);
ae13219e 115static int check_removed_breakpoint (struct process_info *event_child);
24a09b5f 116static void *add_process (unsigned long pid);
0d62e5e8
DJ
117
118struct pending_signals
119{
120 int signal;
32ca6d61 121 siginfo_t info;
0d62e5e8
DJ
122 struct pending_signals *prev;
123};
611cb4a5 124
d844cde6 125#define PTRACE_ARG3_TYPE long
c6ecbae5 126#define PTRACE_XFER_TYPE long
da6d8c04 127
58caa3dc
DJ
128#ifdef HAVE_LINUX_REGSETS
129static int use_regsets_p = 1;
130#endif
131
0d62e5e8
DJ
132#define pid_of(proc) ((proc)->head.id)
133
134/* FIXME: Delete eventually. */
135#define inferior_pid (pid_of (get_thread_process (current_inferior)))
136
24a09b5f
DJ
137static void
138handle_extended_wait (struct process_info *event_child, int wstat)
139{
140 int event = wstat >> 16;
141 struct process_info *new_process;
142
143 if (event == PTRACE_EVENT_CLONE)
144 {
145 unsigned long new_pid;
146 int ret, status;
147
148 ptrace (PTRACE_GETEVENTMSG, inferior_pid, 0, &new_pid);
149
150 /* If we haven't already seen the new PID stop, wait for it now. */
151 if (! pull_pid_from_list (&stopped_pids, new_pid))
152 {
153 /* The new child has a pending SIGSTOP. We can't affect it until it
154 hits the SIGSTOP, but we're already attached. */
155
156 do {
157 ret = waitpid (new_pid, &status, __WALL);
158 } while (ret == -1 && errno == EINTR);
159
160 if (ret == -1)
161 perror_with_name ("waiting for new child");
162 else if (ret != new_pid)
163 warning ("wait returned unexpected PID %d", ret);
da5898ce 164 else if (!WIFSTOPPED (status))
24a09b5f
DJ
165 warning ("wait returned unexpected status 0x%x", status);
166 }
167
168 ptrace (PTRACE_SETOPTIONS, new_pid, 0, PTRACE_O_TRACECLONE);
169
170 new_process = (struct process_info *) add_process (new_pid);
171 add_thread (new_pid, new_process, new_pid);
172 new_thread_notify (thread_id_to_gdb_id (new_process->lwpid));
173
da5898ce
DJ
174 /* Normally we will get the pending SIGSTOP. But in some cases
175 we might get another signal delivered to the group first.
176 If we do, be sure not to lose it. */
177 if (WSTOPSIG (status) == SIGSTOP)
178 {
179 if (stopping_threads)
180 new_process->stopped = 1;
181 else
182 ptrace (PTRACE_CONT, new_pid, 0, 0);
183 }
24a09b5f 184 else
da5898ce
DJ
185 {
186 new_process->stop_expected = 1;
187 if (stopping_threads)
188 {
189 new_process->stopped = 1;
190 new_process->status_pending_p = 1;
191 new_process->status_pending = status;
192 }
193 else
194 /* Pass the signal on. This is what GDB does - except
195 shouldn't we really report it instead? */
196 ptrace (PTRACE_CONT, new_pid, 0, WSTOPSIG (status));
197 }
24a09b5f
DJ
198
199 /* Always resume the current thread. If we are stopping
200 threads, it will have a pending SIGSTOP; we may as well
201 collect it now. */
202 linux_resume_one_process (&event_child->head,
203 event_child->stepping, 0, NULL);
204 }
205}
206
0d62e5e8
DJ
207/* This function should only be called if the process got a SIGTRAP.
208 The SIGTRAP could mean several things.
209
210 On i386, where decr_pc_after_break is non-zero:
211 If we were single-stepping this process using PTRACE_SINGLESTEP,
212 we will get only the one SIGTRAP (even if the instruction we
213 stepped over was a breakpoint). The value of $eip will be the
214 next instruction.
215 If we continue the process using PTRACE_CONT, we will get a
216 SIGTRAP when we hit a breakpoint. The value of $eip will be
217 the instruction after the breakpoint (i.e. needs to be
218 decremented). If we report the SIGTRAP to GDB, we must also
219 report the undecremented PC. If we cancel the SIGTRAP, we
220 must resume at the decremented PC.
221
222 (Presumably, not yet tested) On a non-decr_pc_after_break machine
223 with hardware or kernel single-step:
224 If we single-step over a breakpoint instruction, our PC will
225 point at the following instruction. If we continue and hit a
226 breakpoint instruction, our PC will point at the breakpoint
227 instruction. */
228
229static CORE_ADDR
230get_stop_pc (void)
231{
232 CORE_ADDR stop_pc = (*the_low_target.get_pc) ();
233
234 if (get_thread_process (current_inferior)->stepping)
235 return stop_pc;
236 else
237 return stop_pc - the_low_target.decr_pc_after_break;
238}
ce3a066d 239
0d62e5e8 240static void *
a1928bad 241add_process (unsigned long pid)
611cb4a5 242{
0d62e5e8
DJ
243 struct process_info *process;
244
245 process = (struct process_info *) malloc (sizeof (*process));
246 memset (process, 0, sizeof (*process));
247
248 process->head.id = pid;
0d62e5e8
DJ
249 process->lwpid = pid;
250
251 add_inferior_to_list (&all_processes, &process->head);
252
253 return process;
254}
611cb4a5 255
da6d8c04
DJ
256/* Start an inferior process and returns its pid.
257 ALLARGS is a vector of program-name and args. */
258
ce3a066d
DJ
259static int
260linux_create_inferior (char *program, char **allargs)
da6d8c04 261{
0d62e5e8 262 void *new_process;
da6d8c04
DJ
263 int pid;
264
42c81e2a 265#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437
NS
266 pid = vfork ();
267#else
da6d8c04 268 pid = fork ();
52fb6437 269#endif
da6d8c04
DJ
270 if (pid < 0)
271 perror_with_name ("fork");
272
273 if (pid == 0)
274 {
275 ptrace (PTRACE_TRACEME, 0, 0, 0);
276
254787d4 277 signal (__SIGRTMIN + 1, SIG_DFL);
0d62e5e8 278
a9fa9f7d
DJ
279 setpgid (0, 0);
280
2b876972
DJ
281 execv (program, allargs);
282 if (errno == ENOENT)
283 execvp (program, allargs);
da6d8c04
DJ
284
285 fprintf (stderr, "Cannot exec %s: %s.\n", program,
d07c63e7 286 strerror (errno));
da6d8c04
DJ
287 fflush (stderr);
288 _exit (0177);
289 }
290
0d62e5e8 291 new_process = add_process (pid);
a06660f7 292 add_thread (pid, new_process, pid);
24a09b5f 293 must_set_ptrace_flags = 1;
611cb4a5 294
a9fa9f7d 295 return pid;
da6d8c04
DJ
296}
297
298/* Attach to an inferior process. */
299
0d62e5e8 300void
24a09b5f 301linux_attach_lwp (unsigned long pid)
da6d8c04 302{
0d62e5e8 303 struct process_info *new_process;
611cb4a5 304
da6d8c04
DJ
305 if (ptrace (PTRACE_ATTACH, pid, 0, 0) != 0)
306 {
a1928bad 307 fprintf (stderr, "Cannot attach to process %ld: %s (%d)\n", pid,
43d5792c 308 strerror (errno), errno);
da6d8c04 309 fflush (stderr);
0d62e5e8
DJ
310
311 /* If we fail to attach to an LWP, just return. */
24a09b5f 312 if (all_threads.head == NULL)
0d62e5e8
DJ
313 _exit (0177);
314 return;
da6d8c04
DJ
315 }
316
24a09b5f
DJ
317 ptrace (PTRACE_SETOPTIONS, pid, 0, PTRACE_O_TRACECLONE);
318
0d62e5e8 319 new_process = (struct process_info *) add_process (pid);
24a09b5f
DJ
320 add_thread (pid, new_process, pid);
321 new_thread_notify (thread_id_to_gdb_id (new_process->lwpid));
0d62e5e8
DJ
322
323 /* The next time we wait for this LWP we'll see a SIGSTOP as PTRACE_ATTACH
324 brings it to a halt. We should ignore that SIGSTOP and resume the process
325 (unless this is the first process, in which case the flag will be cleared
326 in linux_attach).
327
328 On the other hand, if we are currently trying to stop all threads, we
329 should treat the new thread as if we had sent it a SIGSTOP. This works
330 because we are guaranteed that add_process added us to the end of the
331 list, and so the new thread has not yet reached wait_for_sigstop (but
332 will). */
333 if (! stopping_threads)
334 new_process->stop_expected = 1;
335}
336
337int
a1928bad 338linux_attach (unsigned long pid)
0d62e5e8
DJ
339{
340 struct process_info *process;
341
24a09b5f 342 linux_attach_lwp (pid);
0d62e5e8 343
ae13219e
DJ
344 /* Don't ignore the initial SIGSTOP if we just attached to this process.
345 It will be collected by wait shortly. */
0d62e5e8
DJ
346 process = (struct process_info *) find_inferior_id (&all_processes, pid);
347 process->stop_expected = 0;
348
da6d8c04
DJ
349 return 0;
350}
351
352/* Kill the inferior process. Make us have no inferior. */
353
ce3a066d 354static void
0d62e5e8 355linux_kill_one_process (struct inferior_list_entry *entry)
da6d8c04 356{
0d62e5e8
DJ
357 struct thread_info *thread = (struct thread_info *) entry;
358 struct process_info *process = get_thread_process (thread);
359 int wstat;
360
fd500816
DJ
361 /* We avoid killing the first thread here, because of a Linux kernel (at
362 least 2.6.0-test7 through 2.6.8-rc4) bug; if we kill the parent before
363 the children get a chance to be reaped, it will remain a zombie
364 forever. */
365 if (entry == all_threads.head)
366 return;
367
0d62e5e8
DJ
368 do
369 {
370 ptrace (PTRACE_KILL, pid_of (process), 0, 0);
371
372 /* Make sure it died. The loop is most likely unnecessary. */
373 wstat = linux_wait_for_event (thread);
374 } while (WIFSTOPPED (wstat));
da6d8c04
DJ
375}
376
0d62e5e8
DJ
377static void
378linux_kill (void)
379{
fd500816 380 struct thread_info *thread = (struct thread_info *) all_threads.head;
9d606399 381 struct process_info *process;
fd500816
DJ
382 int wstat;
383
9d606399
DJ
384 if (thread == NULL)
385 return;
386
0d62e5e8 387 for_each_inferior (&all_threads, linux_kill_one_process);
fd500816
DJ
388
389 /* See the comment in linux_kill_one_process. We did not kill the first
390 thread in the list, so do so now. */
9d606399 391 process = get_thread_process (thread);
fd500816
DJ
392 do
393 {
394 ptrace (PTRACE_KILL, pid_of (process), 0, 0);
395
396 /* Make sure it died. The loop is most likely unnecessary. */
397 wstat = linux_wait_for_event (thread);
398 } while (WIFSTOPPED (wstat));
0d62e5e8
DJ
399}
400
6ad8ae5c
DJ
401static void
402linux_detach_one_process (struct inferior_list_entry *entry)
403{
404 struct thread_info *thread = (struct thread_info *) entry;
405 struct process_info *process = get_thread_process (thread);
406
ae13219e
DJ
407 /* Make sure the process isn't stopped at a breakpoint that's
408 no longer there. */
409 check_removed_breakpoint (process);
410
411 /* If this process is stopped but is expecting a SIGSTOP, then make
412 sure we take care of that now. This isn't absolutely guaranteed
413 to collect the SIGSTOP, but is fairly likely to. */
414 if (process->stop_expected)
415 {
416 /* Clear stop_expected, so that the SIGSTOP will be reported. */
417 process->stop_expected = 0;
418 if (process->stopped)
419 linux_resume_one_process (&process->head, 0, 0, NULL);
420 linux_wait_for_event (thread);
421 }
422
423 /* Flush any pending changes to the process's registers. */
424 regcache_invalidate_one ((struct inferior_list_entry *)
425 get_process_thread (process));
426
427 /* Finally, let it resume. */
6ad8ae5c
DJ
428 ptrace (PTRACE_DETACH, pid_of (process), 0, 0);
429}
430
dd6953e1 431static int
6ad8ae5c
DJ
432linux_detach (void)
433{
ae13219e 434 delete_all_breakpoints ();
6ad8ae5c 435 for_each_inferior (&all_threads, linux_detach_one_process);
ae13219e 436 clear_inferiors ();
dd6953e1 437 return 0;
6ad8ae5c
DJ
438}
439
444d6139
PA
440static void
441linux_join (void)
442{
443 extern unsigned long signal_pid;
444 int status, ret;
445
446 do {
447 ret = waitpid (signal_pid, &status, 0);
448 if (WIFEXITED (status) || WIFSIGNALED (status))
449 break;
450 } while (ret != -1 || errno != ECHILD);
451}
452
6ad8ae5c 453/* Return nonzero if the given thread is still alive. */
0d62e5e8 454static int
24a09b5f 455linux_thread_alive (unsigned long lwpid)
0d62e5e8 456{
24a09b5f 457 if (find_inferior_id (&all_threads, lwpid) != NULL)
0d62e5e8
DJ
458 return 1;
459 else
460 return 0;
461}
462
463/* Return nonzero if this process stopped at a breakpoint which
464 no longer appears to be inserted. Also adjust the PC
465 appropriately to resume where the breakpoint used to be. */
ce3a066d 466static int
0d62e5e8 467check_removed_breakpoint (struct process_info *event_child)
da6d8c04 468{
0d62e5e8
DJ
469 CORE_ADDR stop_pc;
470 struct thread_info *saved_inferior;
471
472 if (event_child->pending_is_breakpoint == 0)
473 return 0;
474
475 if (debug_threads)
ae13219e
DJ
476 fprintf (stderr, "Checking for breakpoint in process %ld.\n",
477 event_child->lwpid);
0d62e5e8
DJ
478
479 saved_inferior = current_inferior;
480 current_inferior = get_process_thread (event_child);
481
482 stop_pc = get_stop_pc ();
483
484 /* If the PC has changed since we stopped, then we shouldn't do
485 anything. This happens if, for instance, GDB handled the
486 decr_pc_after_break subtraction itself. */
487 if (stop_pc != event_child->pending_stop_pc)
488 {
489 if (debug_threads)
ae13219e
DJ
490 fprintf (stderr, "Ignoring, PC was changed. Old PC was 0x%08llx\n",
491 event_child->pending_stop_pc);
0d62e5e8
DJ
492
493 event_child->pending_is_breakpoint = 0;
494 current_inferior = saved_inferior;
495 return 0;
496 }
497
498 /* If the breakpoint is still there, we will report hitting it. */
499 if ((*the_low_target.breakpoint_at) (stop_pc))
500 {
501 if (debug_threads)
502 fprintf (stderr, "Ignoring, breakpoint is still present.\n");
503 current_inferior = saved_inferior;
504 return 0;
505 }
506
507 if (debug_threads)
508 fprintf (stderr, "Removed breakpoint.\n");
509
510 /* For decr_pc_after_break targets, here is where we perform the
511 decrement. We go immediately from this function to resuming,
512 and can not safely call get_stop_pc () again. */
513 if (the_low_target.set_pc != NULL)
514 (*the_low_target.set_pc) (stop_pc);
515
516 /* We consumed the pending SIGTRAP. */
5544ad89 517 event_child->pending_is_breakpoint = 0;
0d62e5e8
DJ
518 event_child->status_pending_p = 0;
519 event_child->status_pending = 0;
520
521 current_inferior = saved_inferior;
da6d8c04
DJ
522 return 1;
523}
524
0d62e5e8
DJ
525/* Return 1 if this process has an interesting status pending. This function
526 may silently resume an inferior process. */
611cb4a5 527static int
0d62e5e8
DJ
528status_pending_p (struct inferior_list_entry *entry, void *dummy)
529{
530 struct process_info *process = (struct process_info *) entry;
531
532 if (process->status_pending_p)
533 if (check_removed_breakpoint (process))
534 {
535 /* This thread was stopped at a breakpoint, and the breakpoint
536 is now gone. We were told to continue (or step...) all threads,
537 so GDB isn't trying to single-step past this breakpoint.
538 So instead of reporting the old SIGTRAP, pretend we got to
539 the breakpoint just after it was removed instead of just
540 before; resume the process. */
32ca6d61 541 linux_resume_one_process (&process->head, 0, 0, NULL);
0d62e5e8
DJ
542 return 0;
543 }
544
545 return process->status_pending_p;
546}
547
548static void
549linux_wait_for_process (struct process_info **childp, int *wstatp)
611cb4a5 550{
0d62e5e8
DJ
551 int ret;
552 int to_wait_for = -1;
553
554 if (*childp != NULL)
555 to_wait_for = (*childp)->lwpid;
611cb4a5 556
24a09b5f 557retry:
611cb4a5
DJ
558 while (1)
559 {
0d62e5e8
DJ
560 ret = waitpid (to_wait_for, wstatp, WNOHANG);
561
562 if (ret == -1)
563 {
564 if (errno != ECHILD)
565 perror_with_name ("waitpid");
566 }
567 else if (ret > 0)
568 break;
569
570 ret = waitpid (to_wait_for, wstatp, WNOHANG | __WCLONE);
571
572 if (ret == -1)
573 {
574 if (errno != ECHILD)
575 perror_with_name ("waitpid (WCLONE)");
576 }
577 else if (ret > 0)
578 break;
579
580 usleep (1000);
581 }
582
583 if (debug_threads
584 && (!WIFSTOPPED (*wstatp)
585 || (WSTOPSIG (*wstatp) != 32
586 && WSTOPSIG (*wstatp) != 33)))
587 fprintf (stderr, "Got an event from %d (%x)\n", ret, *wstatp);
588
589 if (to_wait_for == -1)
590 *childp = (struct process_info *) find_inferior_id (&all_processes, ret);
591
24a09b5f
DJ
592 /* If we didn't find a process, one of two things presumably happened:
593 - A process we started and then detached from has exited. Ignore it.
594 - A process we are controlling has forked and the new child's stop
595 was reported to us by the kernel. Save its PID. */
596 if (*childp == NULL && WIFSTOPPED (*wstatp))
597 {
598 add_pid_to_list (&stopped_pids, ret);
599 goto retry;
600 }
601 else if (*childp == NULL)
602 goto retry;
603
0d62e5e8
DJ
604 (*childp)->stopped = 1;
605 (*childp)->pending_is_breakpoint = 0;
606
32ca6d61
DJ
607 (*childp)->last_status = *wstatp;
608
0d62e5e8
DJ
609 if (debug_threads
610 && WIFSTOPPED (*wstatp))
611 {
612 current_inferior = (struct thread_info *)
24a09b5f 613 find_inferior_id (&all_threads, (*childp)->lwpid);
0d62e5e8
DJ
614 /* For testing only; i386_stop_pc prints out a diagnostic. */
615 if (the_low_target.get_pc != NULL)
616 get_stop_pc ();
617 }
618}
611cb4a5 619
0d62e5e8
DJ
620static int
621linux_wait_for_event (struct thread_info *child)
622{
623 CORE_ADDR stop_pc;
624 struct process_info *event_child;
625 int wstat;
626
627 /* Check for a process with a pending status. */
628 /* It is possible that the user changed the pending task's registers since
629 it stopped. We correctly handle the change of PC if we hit a breakpoint
e5379b03 630 (in check_removed_breakpoint); signals should be reported anyway. */
0d62e5e8
DJ
631 if (child == NULL)
632 {
633 event_child = (struct process_info *)
634 find_inferior (&all_processes, status_pending_p, NULL);
635 if (debug_threads && event_child)
a1928bad 636 fprintf (stderr, "Got a pending child %ld\n", event_child->lwpid);
0d62e5e8
DJ
637 }
638 else
639 {
640 event_child = get_thread_process (child);
641 if (event_child->status_pending_p
642 && check_removed_breakpoint (event_child))
643 event_child = NULL;
644 }
611cb4a5 645
0d62e5e8
DJ
646 if (event_child != NULL)
647 {
648 if (event_child->status_pending_p)
611cb4a5 649 {
0d62e5e8 650 if (debug_threads)
a1928bad 651 fprintf (stderr, "Got an event from pending child %ld (%04x)\n",
0d62e5e8
DJ
652 event_child->lwpid, event_child->status_pending);
653 wstat = event_child->status_pending;
654 event_child->status_pending_p = 0;
655 event_child->status_pending = 0;
656 current_inferior = get_process_thread (event_child);
657 return wstat;
658 }
659 }
660
661 /* We only enter this loop if no process has a pending wait status. Thus
662 any action taken in response to a wait status inside this loop is
663 responding as soon as we detect the status, not after any pending
664 events. */
665 while (1)
666 {
667 if (child == NULL)
668 event_child = NULL;
669 else
670 event_child = get_thread_process (child);
671
672 linux_wait_for_process (&event_child, &wstat);
673
674 if (event_child == NULL)
675 error ("event from unknown child");
611cb4a5 676
0d62e5e8 677 current_inferior = (struct thread_info *)
24a09b5f 678 find_inferior_id (&all_threads, event_child->lwpid);
0d62e5e8 679
89be2091 680 /* Check for thread exit. */
24a09b5f 681 if (! WIFSTOPPED (wstat))
0d62e5e8 682 {
89be2091 683 if (debug_threads)
24a09b5f 684 fprintf (stderr, "LWP %ld exiting\n", event_child->head.id);
89be2091
DJ
685
686 /* If the last thread is exiting, just return. */
687 if (all_threads.head == all_threads.tail)
688 return wstat;
689
24a09b5f 690 dead_thread_notify (thread_id_to_gdb_id (event_child->lwpid));
89be2091
DJ
691
692 remove_inferior (&all_processes, &event_child->head);
693 free (event_child);
694 remove_thread (current_inferior);
695 current_inferior = (struct thread_info *) all_threads.head;
696
697 /* If we were waiting for this particular child to do something...
698 well, it did something. */
699 if (child != NULL)
700 return wstat;
701
702 /* Wait for a more interesting event. */
703 continue;
704 }
705
24a09b5f 706 if (WIFSTOPPED (wstat)
89be2091
DJ
707 && WSTOPSIG (wstat) == SIGSTOP
708 && event_child->stop_expected)
709 {
710 if (debug_threads)
711 fprintf (stderr, "Expected stop.\n");
712 event_child->stop_expected = 0;
713 linux_resume_one_process (&event_child->head,
714 event_child->stepping, 0, NULL);
715 continue;
716 }
717
24a09b5f
DJ
718 if (WIFSTOPPED (wstat) && WSTOPSIG (wstat) == SIGTRAP
719 && wstat >> 16 != 0)
720 {
721 handle_extended_wait (event_child, wstat);
722 continue;
723 }
724
89be2091
DJ
725 /* If GDB is not interested in this signal, don't stop other
726 threads, and don't report it to GDB. Just resume the
727 inferior right away. We do this for threading-related
69f223ed
DJ
728 signals as well as any that GDB specifically requested we
729 ignore. But never ignore SIGSTOP if we sent it ourselves,
730 and do not ignore signals when stepping - they may require
731 special handling to skip the signal handler. */
89be2091
DJ
732 /* FIXME drow/2002-06-09: Get signal numbers from the inferior's
733 thread library? */
734 if (WIFSTOPPED (wstat)
69f223ed 735 && !event_child->stepping
24a09b5f
DJ
736 && (
737#ifdef USE_THREAD_DB
738 (thread_db_active && (WSTOPSIG (wstat) == __SIGRTMIN
739 || WSTOPSIG (wstat) == __SIGRTMIN + 1))
740 ||
741#endif
742 (pass_signals[target_signal_from_host (WSTOPSIG (wstat))]
743 && (WSTOPSIG (wstat) != SIGSTOP || !stopping_threads))))
89be2091
DJ
744 {
745 siginfo_t info, *info_p;
746
747 if (debug_threads)
24a09b5f
DJ
748 fprintf (stderr, "Ignored signal %d for LWP %ld.\n",
749 WSTOPSIG (wstat), event_child->head.id);
89be2091
DJ
750
751 if (ptrace (PTRACE_GETSIGINFO, event_child->lwpid, 0, &info) == 0)
752 info_p = &info;
753 else
754 info_p = NULL;
755 linux_resume_one_process (&event_child->head,
756 event_child->stepping,
757 WSTOPSIG (wstat), info_p);
758 continue;
0d62e5e8 759 }
611cb4a5 760
0d62e5e8
DJ
761 /* If this event was not handled above, and is not a SIGTRAP, report
762 it. */
763 if (!WIFSTOPPED (wstat) || WSTOPSIG (wstat) != SIGTRAP)
764 return wstat;
611cb4a5 765
0d62e5e8
DJ
766 /* If this target does not support breakpoints, we simply report the
767 SIGTRAP; it's of no concern to us. */
768 if (the_low_target.get_pc == NULL)
769 return wstat;
770
771 stop_pc = get_stop_pc ();
772
773 /* bp_reinsert will only be set if we were single-stepping.
774 Notice that we will resume the process after hitting
775 a gdbserver breakpoint; single-stepping to/over one
776 is not supported (yet). */
777 if (event_child->bp_reinsert != 0)
778 {
779 if (debug_threads)
780 fprintf (stderr, "Reinserted breakpoint.\n");
781 reinsert_breakpoint (event_child->bp_reinsert);
782 event_child->bp_reinsert = 0;
783
784 /* Clear the single-stepping flag and SIGTRAP as we resume. */
32ca6d61 785 linux_resume_one_process (&event_child->head, 0, 0, NULL);
0d62e5e8
DJ
786 continue;
787 }
788
789 if (debug_threads)
790 fprintf (stderr, "Hit a (non-reinsert) breakpoint.\n");
791
792 if (check_breakpoints (stop_pc) != 0)
793 {
794 /* We hit one of our own breakpoints. We mark it as a pending
e5379b03 795 breakpoint, so that check_removed_breakpoint () will do the PC
0d62e5e8
DJ
796 adjustment for us at the appropriate time. */
797 event_child->pending_is_breakpoint = 1;
798 event_child->pending_stop_pc = stop_pc;
799
800 /* Now we need to put the breakpoint back. We continue in the event
801 loop instead of simply replacing the breakpoint right away,
802 in order to not lose signals sent to the thread that hit the
803 breakpoint. Unfortunately this increases the window where another
804 thread could sneak past the removed breakpoint. For the current
805 use of server-side breakpoints (thread creation) this is
806 acceptable; but it needs to be considered before this breakpoint
807 mechanism can be used in more general ways. For some breakpoints
808 it may be necessary to stop all other threads, but that should
809 be avoided where possible.
810
811 If breakpoint_reinsert_addr is NULL, that means that we can
812 use PTRACE_SINGLESTEP on this platform. Uninsert the breakpoint,
813 mark it for reinsertion, and single-step.
814
815 Otherwise, call the target function to figure out where we need
816 our temporary breakpoint, create it, and continue executing this
817 process. */
818 if (the_low_target.breakpoint_reinsert_addr == NULL)
819 {
820 event_child->bp_reinsert = stop_pc;
821 uninsert_breakpoint (stop_pc);
32ca6d61 822 linux_resume_one_process (&event_child->head, 1, 0, NULL);
0d62e5e8
DJ
823 }
824 else
825 {
826 reinsert_breakpoint_by_bp
827 (stop_pc, (*the_low_target.breakpoint_reinsert_addr) ());
32ca6d61 828 linux_resume_one_process (&event_child->head, 0, 0, NULL);
611cb4a5 829 }
0d62e5e8
DJ
830
831 continue;
832 }
833
834 /* If we were single-stepping, we definitely want to report the
835 SIGTRAP. The single-step operation has completed, so also
aa691b87 836 clear the stepping flag; in general this does not matter,
0d62e5e8
DJ
837 because the SIGTRAP will be reported to the client, which
838 will give us a new action for this thread, but clear it for
839 consistency anyway. It's safe to clear the stepping flag
840 because the only consumer of get_stop_pc () after this point
e5379b03 841 is check_removed_breakpoint, and pending_is_breakpoint is not
0d62e5e8
DJ
842 set. It might be wiser to use a step_completed flag instead. */
843 if (event_child->stepping)
844 {
845 event_child->stepping = 0;
846 return wstat;
847 }
848
849 /* A SIGTRAP that we can't explain. It may have been a breakpoint.
850 Check if it is a breakpoint, and if so mark the process information
851 accordingly. This will handle both the necessary fiddling with the
852 PC on decr_pc_after_break targets and suppressing extra threads
853 hitting a breakpoint if two hit it at once and then GDB removes it
854 after the first is reported. Arguably it would be better to report
855 multiple threads hitting breakpoints simultaneously, but the current
856 remote protocol does not allow this. */
857 if ((*the_low_target.breakpoint_at) (stop_pc))
858 {
859 event_child->pending_is_breakpoint = 1;
860 event_child->pending_stop_pc = stop_pc;
611cb4a5
DJ
861 }
862
863 return wstat;
864 }
0d62e5e8 865
611cb4a5
DJ
866 /* NOTREACHED */
867 return 0;
868}
869
0d62e5e8 870/* Wait for process, returns status. */
da6d8c04 871
ce3a066d
DJ
872static unsigned char
873linux_wait (char *status)
da6d8c04 874{
e5f1222d 875 int w;
0d62e5e8
DJ
876 struct thread_info *child = NULL;
877
878retry:
879 /* If we were only supposed to resume one thread, only wait for
880 that thread - if it's still alive. If it died, however - which
881 can happen if we're coming from the thread death case below -
882 then we need to make sure we restart the other threads. We could
883 pick a thread at random or restart all; restarting all is less
884 arbitrary. */
d592fa2f 885 if (cont_thread != 0 && cont_thread != -1)
0d62e5e8
DJ
886 {
887 child = (struct thread_info *) find_inferior_id (&all_threads,
888 cont_thread);
889
890 /* No stepping, no signal - unless one is pending already, of course. */
891 if (child == NULL)
64386c31
DJ
892 {
893 struct thread_resume resume_info;
894 resume_info.thread = -1;
895 resume_info.step = resume_info.sig = resume_info.leave_stopped = 0;
896 linux_resume (&resume_info);
897 }
0d62e5e8 898 }
da6d8c04 899
0d62e5e8
DJ
900 w = linux_wait_for_event (child);
901 stop_all_processes ();
da6d8c04 902
24a09b5f
DJ
903 if (must_set_ptrace_flags)
904 {
905 ptrace (PTRACE_SETOPTIONS, inferior_pid, 0, PTRACE_O_TRACECLONE);
906 must_set_ptrace_flags = 0;
907 }
908
0d62e5e8
DJ
909 /* If we are waiting for a particular child, and it exited,
910 linux_wait_for_event will return its exit status. Similarly if
911 the last child exited. If this is not the last child, however,
912 do not report it as exited until there is a 'thread exited' response
913 available in the remote protocol. Instead, just wait for another event.
914 This should be safe, because if the thread crashed we will already
915 have reported the termination signal to GDB; that should stop any
916 in-progress stepping operations, etc.
917
918 Report the exit status of the last thread to exit. This matches
919 LinuxThreads' behavior. */
920
921 if (all_threads.head == all_threads.tail)
da6d8c04 922 {
0d62e5e8
DJ
923 if (WIFEXITED (w))
924 {
925 fprintf (stderr, "\nChild exited with retcode = %x \n", WEXITSTATUS (w));
926 *status = 'W';
927 clear_inferiors ();
075b3282
DJ
928 free (all_processes.head);
929 all_processes.head = all_processes.tail = NULL;
b80864fb 930 return WEXITSTATUS (w);
0d62e5e8
DJ
931 }
932 else if (!WIFSTOPPED (w))
933 {
934 fprintf (stderr, "\nChild terminated with signal = %x \n", WTERMSIG (w));
0d62e5e8 935 *status = 'X';
075b3282
DJ
936 clear_inferiors ();
937 free (all_processes.head);
938 all_processes.head = all_processes.tail = NULL;
b80864fb 939 return target_signal_from_host (WTERMSIG (w));
0d62e5e8 940 }
da6d8c04 941 }
0d62e5e8 942 else
da6d8c04 943 {
0d62e5e8
DJ
944 if (!WIFSTOPPED (w))
945 goto retry;
da6d8c04
DJ
946 }
947
da6d8c04 948 *status = 'T';
b80864fb 949 return target_signal_from_host (WSTOPSIG (w));
da6d8c04
DJ
950}
951
fd500816
DJ
952/* Send a signal to an LWP. For LinuxThreads, kill is enough; however, if
953 thread groups are in use, we need to use tkill. */
954
955static int
a1928bad 956kill_lwp (unsigned long lwpid, int signo)
fd500816
DJ
957{
958 static int tkill_failed;
959
960 errno = 0;
961
962#ifdef SYS_tkill
963 if (!tkill_failed)
964 {
965 int ret = syscall (SYS_tkill, lwpid, signo);
966 if (errno != ENOSYS)
967 return ret;
968 errno = 0;
969 tkill_failed = 1;
970 }
971#endif
972
973 return kill (lwpid, signo);
974}
975
0d62e5e8
DJ
976static void
977send_sigstop (struct inferior_list_entry *entry)
978{
979 struct process_info *process = (struct process_info *) entry;
980
981 if (process->stopped)
982 return;
983
984 /* If we already have a pending stop signal for this process, don't
985 send another. */
986 if (process->stop_expected)
987 {
ae13219e
DJ
988 if (debug_threads)
989 fprintf (stderr, "Have pending sigstop for process %ld\n",
990 process->lwpid);
991
992 /* We clear the stop_expected flag so that wait_for_sigstop
993 will receive the SIGSTOP event (instead of silently resuming and
994 waiting again). It'll be reset below. */
0d62e5e8
DJ
995 process->stop_expected = 0;
996 return;
997 }
998
999 if (debug_threads)
a1928bad 1000 fprintf (stderr, "Sending sigstop to process %ld\n", process->head.id);
0d62e5e8 1001
fd500816 1002 kill_lwp (process->head.id, SIGSTOP);
0d62e5e8
DJ
1003}
1004
1005static void
1006wait_for_sigstop (struct inferior_list_entry *entry)
1007{
1008 struct process_info *process = (struct process_info *) entry;
1009 struct thread_info *saved_inferior, *thread;
a1928bad
DJ
1010 int wstat;
1011 unsigned long saved_tid;
0d62e5e8
DJ
1012
1013 if (process->stopped)
1014 return;
1015
1016 saved_inferior = current_inferior;
1017 saved_tid = ((struct inferior_list_entry *) saved_inferior)->id;
1018 thread = (struct thread_info *) find_inferior_id (&all_threads,
24a09b5f 1019 process->lwpid);
0d62e5e8
DJ
1020 wstat = linux_wait_for_event (thread);
1021
1022 /* If we stopped with a non-SIGSTOP signal, save it for later
1023 and record the pending SIGSTOP. If the process exited, just
1024 return. */
1025 if (WIFSTOPPED (wstat)
1026 && WSTOPSIG (wstat) != SIGSTOP)
1027 {
1028 if (debug_threads)
24a09b5f
DJ
1029 fprintf (stderr, "LWP %ld stopped with non-sigstop status %06x\n",
1030 process->lwpid, wstat);
0d62e5e8
DJ
1031 process->status_pending_p = 1;
1032 process->status_pending = wstat;
1033 process->stop_expected = 1;
1034 }
1035
1036 if (linux_thread_alive (saved_tid))
1037 current_inferior = saved_inferior;
1038 else
1039 {
1040 if (debug_threads)
1041 fprintf (stderr, "Previously current thread died.\n");
1042
1043 /* Set a valid thread as current. */
1044 set_desired_inferior (0);
1045 }
1046}
1047
1048static void
1049stop_all_processes (void)
1050{
1051 stopping_threads = 1;
1052 for_each_inferior (&all_processes, send_sigstop);
1053 for_each_inferior (&all_processes, wait_for_sigstop);
1054 stopping_threads = 0;
1055}
1056
da6d8c04
DJ
1057/* Resume execution of the inferior process.
1058 If STEP is nonzero, single-step it.
1059 If SIGNAL is nonzero, give it that signal. */
1060
ce3a066d 1061static void
0d62e5e8 1062linux_resume_one_process (struct inferior_list_entry *entry,
32ca6d61 1063 int step, int signal, siginfo_t *info)
da6d8c04 1064{
0d62e5e8
DJ
1065 struct process_info *process = (struct process_info *) entry;
1066 struct thread_info *saved_inferior;
1067
1068 if (process->stopped == 0)
1069 return;
1070
1071 /* If we have pending signals or status, and a new signal, enqueue the
1072 signal. Also enqueue the signal if we are waiting to reinsert a
1073 breakpoint; it will be picked up again below. */
1074 if (signal != 0
1075 && (process->status_pending_p || process->pending_signals != NULL
1076 || process->bp_reinsert != 0))
1077 {
1078 struct pending_signals *p_sig;
1079 p_sig = malloc (sizeof (*p_sig));
1080 p_sig->prev = process->pending_signals;
1081 p_sig->signal = signal;
32ca6d61
DJ
1082 if (info == NULL)
1083 memset (&p_sig->info, 0, sizeof (siginfo_t));
1084 else
1085 memcpy (&p_sig->info, info, sizeof (siginfo_t));
0d62e5e8
DJ
1086 process->pending_signals = p_sig;
1087 }
1088
e5379b03 1089 if (process->status_pending_p && !check_removed_breakpoint (process))
0d62e5e8
DJ
1090 return;
1091
1092 saved_inferior = current_inferior;
1093 current_inferior = get_process_thread (process);
1094
1095 if (debug_threads)
a1928bad 1096 fprintf (stderr, "Resuming process %ld (%s, signal %d, stop %s)\n", inferior_pid,
0d62e5e8
DJ
1097 step ? "step" : "continue", signal,
1098 process->stop_expected ? "expected" : "not expected");
1099
1100 /* This bit needs some thinking about. If we get a signal that
1101 we must report while a single-step reinsert is still pending,
1102 we often end up resuming the thread. It might be better to
1103 (ew) allow a stack of pending events; then we could be sure that
1104 the reinsert happened right away and not lose any signals.
1105
1106 Making this stack would also shrink the window in which breakpoints are
1107 uninserted (see comment in linux_wait_for_process) but not enough for
1108 complete correctness, so it won't solve that problem. It may be
1109 worthwhile just to solve this one, however. */
1110 if (process->bp_reinsert != 0)
1111 {
1112 if (debug_threads)
1113 fprintf (stderr, " pending reinsert at %08lx", (long)process->bp_reinsert);
1114 if (step == 0)
1115 fprintf (stderr, "BAD - reinserting but not stepping.\n");
1116 step = 1;
1117
1118 /* Postpone any pending signal. It was enqueued above. */
1119 signal = 0;
1120 }
1121
1122 check_removed_breakpoint (process);
1123
aa691b87 1124 if (debug_threads && the_low_target.get_pc != NULL)
0d62e5e8
DJ
1125 {
1126 fprintf (stderr, " ");
52fb6437 1127 (*the_low_target.get_pc) ();
0d62e5e8
DJ
1128 }
1129
1130 /* If we have pending signals, consume one unless we are trying to reinsert
1131 a breakpoint. */
1132 if (process->pending_signals != NULL && process->bp_reinsert == 0)
1133 {
1134 struct pending_signals **p_sig;
1135
1136 p_sig = &process->pending_signals;
1137 while ((*p_sig)->prev != NULL)
1138 p_sig = &(*p_sig)->prev;
1139
1140 signal = (*p_sig)->signal;
32ca6d61
DJ
1141 if ((*p_sig)->info.si_signo != 0)
1142 ptrace (PTRACE_SETSIGINFO, process->lwpid, 0, &(*p_sig)->info);
1143
0d62e5e8
DJ
1144 free (*p_sig);
1145 *p_sig = NULL;
1146 }
1147
1148 regcache_invalidate_one ((struct inferior_list_entry *)
1149 get_process_thread (process));
da6d8c04 1150 errno = 0;
0d62e5e8
DJ
1151 process->stopped = 0;
1152 process->stepping = step;
1153 ptrace (step ? PTRACE_SINGLESTEP : PTRACE_CONT, process->lwpid, 0, signal);
1154
1155 current_inferior = saved_inferior;
da6d8c04
DJ
1156 if (errno)
1157 perror_with_name ("ptrace");
1158}
1159
64386c31
DJ
1160static struct thread_resume *resume_ptr;
1161
1162/* This function is called once per thread. We look up the thread
5544ad89
DJ
1163 in RESUME_PTR, and mark the thread with a pointer to the appropriate
1164 resume request.
1165
1166 This algorithm is O(threads * resume elements), but resume elements
1167 is small (and will remain small at least until GDB supports thread
1168 suspension). */
0d62e5e8 1169static void
5544ad89 1170linux_set_resume_request (struct inferior_list_entry *entry)
0d62e5e8
DJ
1171{
1172 struct process_info *process;
64386c31 1173 struct thread_info *thread;
5544ad89 1174 int ndx;
64386c31
DJ
1175
1176 thread = (struct thread_info *) entry;
1177 process = get_thread_process (thread);
1178
1179 ndx = 0;
1180 while (resume_ptr[ndx].thread != -1 && resume_ptr[ndx].thread != entry->id)
1181 ndx++;
1182
5544ad89
DJ
1183 process->resume = &resume_ptr[ndx];
1184}
1185
1186/* This function is called once per thread. We check the thread's resume
1187 request, which will tell us whether to resume, step, or leave the thread
1188 stopped; and what signal, if any, it should be sent. For threads which
1189 we aren't explicitly told otherwise, we preserve the stepping flag; this
1190 is used for stepping over gdbserver-placed breakpoints. */
1191
1192static void
1193linux_continue_one_thread (struct inferior_list_entry *entry)
1194{
1195 struct process_info *process;
1196 struct thread_info *thread;
1197 int step;
1198
1199 thread = (struct thread_info *) entry;
1200 process = get_thread_process (thread);
1201
1202 if (process->resume->leave_stopped)
64386c31
DJ
1203 return;
1204
5544ad89
DJ
1205 if (process->resume->thread == -1)
1206 step = process->stepping || process->resume->step;
64386c31 1207 else
5544ad89
DJ
1208 step = process->resume->step;
1209
32ca6d61 1210 linux_resume_one_process (&process->head, step, process->resume->sig, NULL);
c6ecbae5 1211
5544ad89
DJ
1212 process->resume = NULL;
1213}
1214
1215/* This function is called once per thread. We check the thread's resume
1216 request, which will tell us whether to resume, step, or leave the thread
1217 stopped; and what signal, if any, it should be sent. We queue any needed
1218 signals, since we won't actually resume. We already have a pending event
1219 to report, so we don't need to preserve any step requests; they should
1220 be re-issued if necessary. */
1221
1222static void
1223linux_queue_one_thread (struct inferior_list_entry *entry)
1224{
1225 struct process_info *process;
1226 struct thread_info *thread;
1227
1228 thread = (struct thread_info *) entry;
1229 process = get_thread_process (thread);
1230
1231 if (process->resume->leave_stopped)
1232 return;
1233
1234 /* If we have a new signal, enqueue the signal. */
1235 if (process->resume->sig != 0)
1236 {
1237 struct pending_signals *p_sig;
1238 p_sig = malloc (sizeof (*p_sig));
1239 p_sig->prev = process->pending_signals;
1240 p_sig->signal = process->resume->sig;
32ca6d61
DJ
1241 memset (&p_sig->info, 0, sizeof (siginfo_t));
1242
1243 /* If this is the same signal we were previously stopped by,
1244 make sure to queue its siginfo. We can ignore the return
1245 value of ptrace; if it fails, we'll skip
1246 PTRACE_SETSIGINFO. */
1247 if (WIFSTOPPED (process->last_status)
1248 && WSTOPSIG (process->last_status) == process->resume->sig)
1249 ptrace (PTRACE_GETSIGINFO, process->lwpid, 0, &p_sig->info);
1250
5544ad89
DJ
1251 process->pending_signals = p_sig;
1252 }
1253
1254 process->resume = NULL;
1255}
1256
1257/* Set DUMMY if this process has an interesting status pending. */
1258static int
1259resume_status_pending_p (struct inferior_list_entry *entry, void *flag_p)
1260{
1261 struct process_info *process = (struct process_info *) entry;
1262
1263 /* Processes which will not be resumed are not interesting, because
1264 we might not wait for them next time through linux_wait. */
1265 if (process->resume->leave_stopped)
1266 return 0;
1267
1268 /* If this thread has a removed breakpoint, we won't have any
1269 events to report later, so check now. check_removed_breakpoint
1270 may clear status_pending_p. We avoid calling check_removed_breakpoint
1271 for any thread that we are not otherwise going to resume - this
1272 lets us preserve stopped status when two threads hit a breakpoint.
1273 GDB removes the breakpoint to single-step a particular thread
1274 past it, then re-inserts it and resumes all threads. We want
1275 to report the second thread without resuming it in the interim. */
1276 if (process->status_pending_p)
1277 check_removed_breakpoint (process);
1278
1279 if (process->status_pending_p)
1280 * (int *) flag_p = 1;
1281
1282 return 0;
0d62e5e8
DJ
1283}
1284
1285static void
64386c31 1286linux_resume (struct thread_resume *resume_info)
0d62e5e8 1287{
5544ad89 1288 int pending_flag;
c6ecbae5 1289
5544ad89 1290 /* Yes, the use of a global here is rather ugly. */
64386c31 1291 resume_ptr = resume_info;
5544ad89
DJ
1292
1293 for_each_inferior (&all_threads, linux_set_resume_request);
1294
1295 /* If there is a thread which would otherwise be resumed, which
1296 has a pending status, then don't resume any threads - we can just
1297 report the pending status. Make sure to queue any signals
1298 that would otherwise be sent. */
1299 pending_flag = 0;
1300 find_inferior (&all_processes, resume_status_pending_p, &pending_flag);
1301
1302 if (debug_threads)
1303 {
1304 if (pending_flag)
1305 fprintf (stderr, "Not resuming, pending status\n");
1306 else
1307 fprintf (stderr, "Resuming, no pending status\n");
1308 }
1309
1310 if (pending_flag)
1311 for_each_inferior (&all_threads, linux_queue_one_thread);
1312 else
a20d5e98 1313 for_each_inferior (&all_threads, linux_continue_one_thread);
0d62e5e8
DJ
1314}
1315
1316#ifdef HAVE_LINUX_USRREGS
da6d8c04
DJ
1317
1318int
0a30fbc4 1319register_addr (int regnum)
da6d8c04
DJ
1320{
1321 int addr;
1322
2ec06d2e 1323 if (regnum < 0 || regnum >= the_low_target.num_regs)
da6d8c04
DJ
1324 error ("Invalid register number %d.", regnum);
1325
2ec06d2e 1326 addr = the_low_target.regmap[regnum];
da6d8c04
DJ
1327
1328 return addr;
1329}
1330
58caa3dc 1331/* Fetch one register. */
da6d8c04
DJ
1332static void
1333fetch_register (int regno)
1334{
1335 CORE_ADDR regaddr;
48d93c75 1336 int i, size;
0d62e5e8 1337 char *buf;
da6d8c04 1338
2ec06d2e 1339 if (regno >= the_low_target.num_regs)
0a30fbc4 1340 return;
2ec06d2e 1341 if ((*the_low_target.cannot_fetch_register) (regno))
0a30fbc4 1342 return;
da6d8c04 1343
0a30fbc4
DJ
1344 regaddr = register_addr (regno);
1345 if (regaddr == -1)
1346 return;
48d93c75
UW
1347 size = (register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
1348 & - sizeof (PTRACE_XFER_TYPE);
1349 buf = alloca (size);
1350 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
da6d8c04
DJ
1351 {
1352 errno = 0;
0d62e5e8 1353 *(PTRACE_XFER_TYPE *) (buf + i) =
da6d8c04
DJ
1354 ptrace (PTRACE_PEEKUSER, inferior_pid, (PTRACE_ARG3_TYPE) regaddr, 0);
1355 regaddr += sizeof (PTRACE_XFER_TYPE);
1356 if (errno != 0)
1357 {
1358 /* Warning, not error, in case we are attached; sometimes the
1359 kernel doesn't let us at the registers. */
1360 char *err = strerror (errno);
1361 char *msg = alloca (strlen (err) + 128);
1362 sprintf (msg, "reading register %d: %s", regno, err);
1363 error (msg);
1364 goto error_exit;
1365 }
1366 }
5a1f5858
DJ
1367 if (the_low_target.left_pad_xfer
1368 && register_size (regno) < sizeof (PTRACE_XFER_TYPE))
1369 supply_register (regno, (buf + sizeof (PTRACE_XFER_TYPE)
1370 - register_size (regno)));
1371 else
1372 supply_register (regno, buf);
0d62e5e8 1373
da6d8c04
DJ
1374error_exit:;
1375}
1376
1377/* Fetch all registers, or just one, from the child process. */
58caa3dc
DJ
1378static void
1379usr_fetch_inferior_registers (int regno)
da6d8c04
DJ
1380{
1381 if (regno == -1 || regno == 0)
2ec06d2e 1382 for (regno = 0; regno < the_low_target.num_regs; regno++)
da6d8c04
DJ
1383 fetch_register (regno);
1384 else
1385 fetch_register (regno);
1386}
1387
1388/* Store our register values back into the inferior.
1389 If REGNO is -1, do this for all registers.
1390 Otherwise, REGNO specifies which register (so we can save time). */
58caa3dc
DJ
1391static void
1392usr_store_inferior_registers (int regno)
da6d8c04
DJ
1393{
1394 CORE_ADDR regaddr;
48d93c75 1395 int i, size;
0d62e5e8 1396 char *buf;
da6d8c04
DJ
1397
1398 if (regno >= 0)
1399 {
2ec06d2e 1400 if (regno >= the_low_target.num_regs)
0a30fbc4
DJ
1401 return;
1402
bc1e36ca 1403 if ((*the_low_target.cannot_store_register) (regno) == 1)
0a30fbc4
DJ
1404 return;
1405
1406 regaddr = register_addr (regno);
1407 if (regaddr == -1)
da6d8c04 1408 return;
da6d8c04 1409 errno = 0;
48d93c75
UW
1410 size = (register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
1411 & - sizeof (PTRACE_XFER_TYPE);
1412 buf = alloca (size);
1413 memset (buf, 0, size);
5a1f5858
DJ
1414 if (the_low_target.left_pad_xfer
1415 && register_size (regno) < sizeof (PTRACE_XFER_TYPE))
1416 collect_register (regno, (buf + sizeof (PTRACE_XFER_TYPE)
1417 - register_size (regno)));
1418 else
1419 collect_register (regno, buf);
48d93c75 1420 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
da6d8c04 1421 {
0a30fbc4
DJ
1422 errno = 0;
1423 ptrace (PTRACE_POKEUSER, inferior_pid, (PTRACE_ARG3_TYPE) regaddr,
2ff29de4 1424 *(PTRACE_XFER_TYPE *) (buf + i));
da6d8c04
DJ
1425 if (errno != 0)
1426 {
bc1e36ca
DJ
1427 if ((*the_low_target.cannot_store_register) (regno) == 0)
1428 {
1429 char *err = strerror (errno);
1430 char *msg = alloca (strlen (err) + 128);
1431 sprintf (msg, "writing register %d: %s",
1432 regno, err);
1433 error (msg);
1434 return;
1435 }
da6d8c04 1436 }
2ff29de4 1437 regaddr += sizeof (PTRACE_XFER_TYPE);
da6d8c04 1438 }
da6d8c04
DJ
1439 }
1440 else
2ec06d2e 1441 for (regno = 0; regno < the_low_target.num_regs; regno++)
0d62e5e8 1442 usr_store_inferior_registers (regno);
da6d8c04 1443}
58caa3dc
DJ
1444#endif /* HAVE_LINUX_USRREGS */
1445
1446
1447
1448#ifdef HAVE_LINUX_REGSETS
1449
1450static int
0d62e5e8 1451regsets_fetch_inferior_registers ()
58caa3dc
DJ
1452{
1453 struct regset_info *regset;
e9d25b98 1454 int saw_general_regs = 0;
58caa3dc
DJ
1455
1456 regset = target_regsets;
1457
1458 while (regset->size >= 0)
1459 {
1460 void *buf;
1461 int res;
1462
1463 if (regset->size == 0)
1464 {
1465 regset ++;
1466 continue;
1467 }
1468
1469 buf = malloc (regset->size);
d06f167a 1470 res = ptrace (regset->get_request, inferior_pid, 0, buf);
58caa3dc
DJ
1471 if (res < 0)
1472 {
1473 if (errno == EIO)
1474 {
1475 /* If we get EIO on the first regset, do not try regsets again.
1476 If we get EIO on a later regset, disable that regset. */
1477 if (regset == target_regsets)
1478 {
1479 use_regsets_p = 0;
1480 return -1;
1481 }
1482 else
1483 {
1484 regset->size = 0;
1485 continue;
1486 }
1487 }
1488 else
1489 {
0d62e5e8 1490 char s[256];
a1928bad 1491 sprintf (s, "ptrace(regsets_fetch_inferior_registers) PID=%ld",
0d62e5e8
DJ
1492 inferior_pid);
1493 perror (s);
58caa3dc
DJ
1494 }
1495 }
e9d25b98
DJ
1496 else if (regset->type == GENERAL_REGS)
1497 saw_general_regs = 1;
58caa3dc
DJ
1498 regset->store_function (buf);
1499 regset ++;
1500 }
e9d25b98
DJ
1501 if (saw_general_regs)
1502 return 0;
1503 else
1504 return 1;
58caa3dc
DJ
1505}
1506
1507static int
0d62e5e8 1508regsets_store_inferior_registers ()
58caa3dc
DJ
1509{
1510 struct regset_info *regset;
e9d25b98 1511 int saw_general_regs = 0;
58caa3dc
DJ
1512
1513 regset = target_regsets;
1514
1515 while (regset->size >= 0)
1516 {
1517 void *buf;
1518 int res;
1519
1520 if (regset->size == 0)
1521 {
1522 regset ++;
1523 continue;
1524 }
1525
1526 buf = malloc (regset->size);
545587ee
DJ
1527
1528 /* First fill the buffer with the current register set contents,
1529 in case there are any items in the kernel's regset that are
1530 not in gdbserver's regcache. */
1531 res = ptrace (regset->get_request, inferior_pid, 0, buf);
1532
1533 if (res == 0)
1534 {
1535 /* Then overlay our cached registers on that. */
1536 regset->fill_function (buf);
1537
1538 /* Only now do we write the register set. */
1539 res = ptrace (regset->set_request, inferior_pid, 0, buf);
1540 }
1541
58caa3dc
DJ
1542 if (res < 0)
1543 {
1544 if (errno == EIO)
1545 {
1546 /* If we get EIO on the first regset, do not try regsets again.
1547 If we get EIO on a later regset, disable that regset. */
1548 if (regset == target_regsets)
1549 {
1550 use_regsets_p = 0;
1551 return -1;
1552 }
1553 else
1554 {
1555 regset->size = 0;
1556 continue;
1557 }
1558 }
1559 else
1560 {
ce3a066d 1561 perror ("Warning: ptrace(regsets_store_inferior_registers)");
58caa3dc
DJ
1562 }
1563 }
e9d25b98
DJ
1564 else if (regset->type == GENERAL_REGS)
1565 saw_general_regs = 1;
58caa3dc 1566 regset ++;
09ec9b38 1567 free (buf);
58caa3dc 1568 }
e9d25b98
DJ
1569 if (saw_general_regs)
1570 return 0;
1571 else
1572 return 1;
ce3a066d 1573 return 0;
58caa3dc
DJ
1574}
1575
1576#endif /* HAVE_LINUX_REGSETS */
1577
1578
1579void
ce3a066d 1580linux_fetch_registers (int regno)
58caa3dc
DJ
1581{
1582#ifdef HAVE_LINUX_REGSETS
1583 if (use_regsets_p)
1584 {
1585 if (regsets_fetch_inferior_registers () == 0)
1586 return;
1587 }
1588#endif
1589#ifdef HAVE_LINUX_USRREGS
1590 usr_fetch_inferior_registers (regno);
1591#endif
1592}
1593
1594void
ce3a066d 1595linux_store_registers (int regno)
58caa3dc
DJ
1596{
1597#ifdef HAVE_LINUX_REGSETS
1598 if (use_regsets_p)
1599 {
1600 if (regsets_store_inferior_registers () == 0)
1601 return;
1602 }
1603#endif
1604#ifdef HAVE_LINUX_USRREGS
1605 usr_store_inferior_registers (regno);
1606#endif
1607}
1608
da6d8c04 1609
da6d8c04
DJ
1610/* Copy LEN bytes from inferior's memory starting at MEMADDR
1611 to debugger memory starting at MYADDR. */
1612
c3e735a6 1613static int
f450004a 1614linux_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
da6d8c04
DJ
1615{
1616 register int i;
1617 /* Round starting address down to longword boundary. */
1618 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
1619 /* Round ending address up; get number of longwords that makes. */
aa691b87
RM
1620 register int count
1621 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
da6d8c04
DJ
1622 / sizeof (PTRACE_XFER_TYPE);
1623 /* Allocate buffer of that many longwords. */
aa691b87 1624 register PTRACE_XFER_TYPE *buffer
da6d8c04 1625 = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
fd462a61
DJ
1626 int fd;
1627 char filename[64];
1628
1629 /* Try using /proc. Don't bother for one word. */
1630 if (len >= 3 * sizeof (long))
1631 {
1632 /* We could keep this file open and cache it - possibly one per
1633 thread. That requires some juggling, but is even faster. */
1634 sprintf (filename, "/proc/%ld/mem", inferior_pid);
1635 fd = open (filename, O_RDONLY | O_LARGEFILE);
1636 if (fd == -1)
1637 goto no_proc;
1638
1639 /* If pread64 is available, use it. It's faster if the kernel
1640 supports it (only one syscall), and it's 64-bit safe even on
1641 32-bit platforms (for instance, SPARC debugging a SPARC64
1642 application). */
1643#ifdef HAVE_PREAD64
1644 if (pread64 (fd, myaddr, len, memaddr) != len)
1645#else
1646 if (lseek (fd, memaddr, SEEK_SET) == -1 || read (fd, memaddr, len) != len)
1647#endif
1648 {
1649 close (fd);
1650 goto no_proc;
1651 }
1652
1653 close (fd);
1654 return 0;
1655 }
da6d8c04 1656
fd462a61 1657 no_proc:
da6d8c04
DJ
1658 /* Read all the longwords */
1659 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
1660 {
c3e735a6 1661 errno = 0;
d844cde6 1662 buffer[i] = ptrace (PTRACE_PEEKTEXT, inferior_pid, (PTRACE_ARG3_TYPE) addr, 0);
c3e735a6
DJ
1663 if (errno)
1664 return errno;
da6d8c04
DJ
1665 }
1666
1667 /* Copy appropriate bytes out of the buffer. */
1668 memcpy (myaddr, (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), len);
c3e735a6
DJ
1669
1670 return 0;
da6d8c04
DJ
1671}
1672
1673/* Copy LEN bytes of data from debugger memory at MYADDR
1674 to inferior's memory at MEMADDR.
1675 On failure (cannot write the inferior)
1676 returns the value of errno. */
1677
ce3a066d 1678static int
f450004a 1679linux_write_memory (CORE_ADDR memaddr, const unsigned char *myaddr, int len)
da6d8c04
DJ
1680{
1681 register int i;
1682 /* Round starting address down to longword boundary. */
1683 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
1684 /* Round ending address up; get number of longwords that makes. */
1685 register int count
1686 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1) / sizeof (PTRACE_XFER_TYPE);
1687 /* Allocate buffer of that many longwords. */
1688 register PTRACE_XFER_TYPE *buffer = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
1689 extern int errno;
1690
0d62e5e8
DJ
1691 if (debug_threads)
1692 {
1693 fprintf (stderr, "Writing %02x to %08lx\n", (unsigned)myaddr[0], (long)memaddr);
1694 }
1695
da6d8c04
DJ
1696 /* Fill start and end extra bytes of buffer with existing memory data. */
1697
d844cde6
DJ
1698 buffer[0] = ptrace (PTRACE_PEEKTEXT, inferior_pid,
1699 (PTRACE_ARG3_TYPE) addr, 0);
da6d8c04
DJ
1700
1701 if (count > 1)
1702 {
1703 buffer[count - 1]
1704 = ptrace (PTRACE_PEEKTEXT, inferior_pid,
d844cde6
DJ
1705 (PTRACE_ARG3_TYPE) (addr + (count - 1)
1706 * sizeof (PTRACE_XFER_TYPE)),
1707 0);
da6d8c04
DJ
1708 }
1709
1710 /* Copy data to be written over corresponding part of buffer */
1711
1712 memcpy ((char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), myaddr, len);
1713
1714 /* Write the entire buffer. */
1715
1716 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
1717 {
1718 errno = 0;
d844cde6 1719 ptrace (PTRACE_POKETEXT, inferior_pid, (PTRACE_ARG3_TYPE) addr, buffer[i]);
da6d8c04
DJ
1720 if (errno)
1721 return errno;
1722 }
1723
1724 return 0;
1725}
2f2893d9 1726
24a09b5f
DJ
1727static int linux_supports_tracefork_flag;
1728
51c2684e 1729/* Helper functions for linux_test_for_tracefork, called via clone (). */
24a09b5f 1730
51c2684e
DJ
1731static int
1732linux_tracefork_grandchild (void *arg)
1733{
1734 _exit (0);
1735}
1736
1737static int
1738linux_tracefork_child (void *arg)
24a09b5f
DJ
1739{
1740 ptrace (PTRACE_TRACEME, 0, 0, 0);
1741 kill (getpid (), SIGSTOP);
51c2684e 1742 clone (linux_tracefork_grandchild, arg, CLONE_VM | SIGCHLD, NULL);
24a09b5f
DJ
1743 _exit (0);
1744}
1745
1746/* Wrapper function for waitpid which handles EINTR. */
1747
1748static int
1749my_waitpid (int pid, int *status, int flags)
1750{
1751 int ret;
1752 do
1753 {
1754 ret = waitpid (pid, status, flags);
1755 }
1756 while (ret == -1 && errno == EINTR);
1757
1758 return ret;
1759}
1760
1761/* Determine if PTRACE_O_TRACEFORK can be used to follow fork events. Make
1762 sure that we can enable the option, and that it had the desired
1763 effect. */
1764
1765static void
1766linux_test_for_tracefork (void)
1767{
1768 int child_pid, ret, status;
1769 long second_pid;
51c2684e 1770 char *stack = malloc (8192);
24a09b5f
DJ
1771
1772 linux_supports_tracefork_flag = 0;
1773
51c2684e
DJ
1774 /* Use CLONE_VM instead of fork, to support uClinux (no MMU). */
1775 child_pid = clone (linux_tracefork_child, stack + 2048,
1776 CLONE_VM | SIGCHLD, stack + 6144);
24a09b5f 1777 if (child_pid == -1)
51c2684e 1778 perror_with_name ("clone");
24a09b5f
DJ
1779
1780 ret = my_waitpid (child_pid, &status, 0);
1781 if (ret == -1)
1782 perror_with_name ("waitpid");
1783 else if (ret != child_pid)
1784 error ("linux_test_for_tracefork: waitpid: unexpected result %d.", ret);
1785 if (! WIFSTOPPED (status))
1786 error ("linux_test_for_tracefork: waitpid: unexpected status %d.", status);
1787
1788 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0, PTRACE_O_TRACEFORK);
1789 if (ret != 0)
1790 {
1791 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
1792 if (ret != 0)
1793 {
1794 warning ("linux_test_for_tracefork: failed to kill child");
1795 return;
1796 }
1797
1798 ret = my_waitpid (child_pid, &status, 0);
1799 if (ret != child_pid)
1800 warning ("linux_test_for_tracefork: failed to wait for killed child");
1801 else if (!WIFSIGNALED (status))
1802 warning ("linux_test_for_tracefork: unexpected wait status 0x%x from "
1803 "killed child", status);
1804
1805 return;
1806 }
1807
1808 ret = ptrace (PTRACE_CONT, child_pid, 0, 0);
1809 if (ret != 0)
1810 warning ("linux_test_for_tracefork: failed to resume child");
1811
1812 ret = my_waitpid (child_pid, &status, 0);
1813
1814 if (ret == child_pid && WIFSTOPPED (status)
1815 && status >> 16 == PTRACE_EVENT_FORK)
1816 {
1817 second_pid = 0;
1818 ret = ptrace (PTRACE_GETEVENTMSG, child_pid, 0, &second_pid);
1819 if (ret == 0 && second_pid != 0)
1820 {
1821 int second_status;
1822
1823 linux_supports_tracefork_flag = 1;
1824 my_waitpid (second_pid, &second_status, 0);
1825 ret = ptrace (PTRACE_KILL, second_pid, 0, 0);
1826 if (ret != 0)
1827 warning ("linux_test_for_tracefork: failed to kill second child");
1828 my_waitpid (second_pid, &status, 0);
1829 }
1830 }
1831 else
1832 warning ("linux_test_for_tracefork: unexpected result from waitpid "
1833 "(%d, status 0x%x)", ret, status);
1834
1835 do
1836 {
1837 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
1838 if (ret != 0)
1839 warning ("linux_test_for_tracefork: failed to kill child");
1840 my_waitpid (child_pid, &status, 0);
1841 }
1842 while (WIFSTOPPED (status));
51c2684e
DJ
1843
1844 free (stack);
24a09b5f
DJ
1845}
1846
1847
2f2893d9
DJ
1848static void
1849linux_look_up_symbols (void)
1850{
0d62e5e8 1851#ifdef USE_THREAD_DB
24a09b5f 1852 if (thread_db_active)
0d62e5e8
DJ
1853 return;
1854
24a09b5f 1855 thread_db_active = thread_db_init (!linux_supports_tracefork_flag);
0d62e5e8
DJ
1856#endif
1857}
1858
e5379b03 1859static void
ef57601b 1860linux_request_interrupt (void)
e5379b03 1861{
a1928bad 1862 extern unsigned long signal_pid;
e5379b03 1863
d592fa2f 1864 if (cont_thread != 0 && cont_thread != -1)
e5379b03
DJ
1865 {
1866 struct process_info *process;
1867
1868 process = get_thread_process (current_inferior);
ef57601b 1869 kill_lwp (process->lwpid, SIGINT);
e5379b03
DJ
1870 }
1871 else
ef57601b 1872 kill_lwp (signal_pid, SIGINT);
e5379b03
DJ
1873}
1874
aa691b87
RM
1875/* Copy LEN bytes from inferior's auxiliary vector starting at OFFSET
1876 to debugger memory starting at MYADDR. */
1877
1878static int
f450004a 1879linux_read_auxv (CORE_ADDR offset, unsigned char *myaddr, unsigned int len)
aa691b87
RM
1880{
1881 char filename[PATH_MAX];
1882 int fd, n;
1883
a1928bad 1884 snprintf (filename, sizeof filename, "/proc/%ld/auxv", inferior_pid);
aa691b87
RM
1885
1886 fd = open (filename, O_RDONLY);
1887 if (fd < 0)
1888 return -1;
1889
1890 if (offset != (CORE_ADDR) 0
1891 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
1892 n = -1;
1893 else
1894 n = read (fd, myaddr, len);
1895
1896 close (fd);
1897
1898 return n;
1899}
1900
e013ee27
OF
1901/* These watchpoint related wrapper functions simply pass on the function call
1902 if the target has registered a corresponding function. */
1903
1904static int
1905linux_insert_watchpoint (char type, CORE_ADDR addr, int len)
1906{
1907 if (the_low_target.insert_watchpoint != NULL)
1908 return the_low_target.insert_watchpoint (type, addr, len);
1909 else
1910 /* Unsupported (see target.h). */
1911 return 1;
1912}
1913
1914static int
1915linux_remove_watchpoint (char type, CORE_ADDR addr, int len)
1916{
1917 if (the_low_target.remove_watchpoint != NULL)
1918 return the_low_target.remove_watchpoint (type, addr, len);
1919 else
1920 /* Unsupported (see target.h). */
1921 return 1;
1922}
1923
1924static int
1925linux_stopped_by_watchpoint (void)
1926{
1927 if (the_low_target.stopped_by_watchpoint != NULL)
1928 return the_low_target.stopped_by_watchpoint ();
1929 else
1930 return 0;
1931}
1932
1933static CORE_ADDR
1934linux_stopped_data_address (void)
1935{
1936 if (the_low_target.stopped_data_address != NULL)
1937 return the_low_target.stopped_data_address ();
1938 else
1939 return 0;
1940}
1941
42c81e2a 1942#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437
NS
1943#if defined(__mcoldfire__)
1944/* These should really be defined in the kernel's ptrace.h header. */
1945#define PT_TEXT_ADDR 49*4
1946#define PT_DATA_ADDR 50*4
1947#define PT_TEXT_END_ADDR 51*4
1948#endif
1949
1950/* Under uClinux, programs are loaded at non-zero offsets, which we need
1951 to tell gdb about. */
1952
1953static int
1954linux_read_offsets (CORE_ADDR *text_p, CORE_ADDR *data_p)
1955{
1956#if defined(PT_TEXT_ADDR) && defined(PT_DATA_ADDR) && defined(PT_TEXT_END_ADDR)
1957 unsigned long text, text_end, data;
1958 int pid = get_thread_process (current_inferior)->head.id;
1959
1960 errno = 0;
1961
1962 text = ptrace (PTRACE_PEEKUSER, pid, (long)PT_TEXT_ADDR, 0);
1963 text_end = ptrace (PTRACE_PEEKUSER, pid, (long)PT_TEXT_END_ADDR, 0);
1964 data = ptrace (PTRACE_PEEKUSER, pid, (long)PT_DATA_ADDR, 0);
1965
1966 if (errno == 0)
1967 {
1968 /* Both text and data offsets produced at compile-time (and so
1969 used by gdb) are relative to the beginning of the program,
1970 with the data segment immediately following the text segment.
1971 However, the actual runtime layout in memory may put the data
1972 somewhere else, so when we send gdb a data base-address, we
1973 use the real data base address and subtract the compile-time
1974 data base-address from it (which is just the length of the
1975 text segment). BSS immediately follows data in both
1976 cases. */
1977 *text_p = text;
1978 *data_p = data - (text_end - text);
1979
1980 return 1;
1981 }
1982#endif
1983 return 0;
1984}
1985#endif
1986
23181151
DJ
1987static const char *
1988linux_arch_string (void)
1989{
1990 return the_low_target.arch_string;
1991}
1992
ce3a066d
DJ
1993static struct target_ops linux_target_ops = {
1994 linux_create_inferior,
1995 linux_attach,
1996 linux_kill,
6ad8ae5c 1997 linux_detach,
444d6139 1998 linux_join,
ce3a066d
DJ
1999 linux_thread_alive,
2000 linux_resume,
2001 linux_wait,
2002 linux_fetch_registers,
2003 linux_store_registers,
2004 linux_read_memory,
2005 linux_write_memory,
2f2893d9 2006 linux_look_up_symbols,
ef57601b 2007 linux_request_interrupt,
aa691b87 2008 linux_read_auxv,
e013ee27
OF
2009 linux_insert_watchpoint,
2010 linux_remove_watchpoint,
2011 linux_stopped_by_watchpoint,
2012 linux_stopped_data_address,
42c81e2a 2013#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437 2014 linux_read_offsets,
dae5f5cf
DJ
2015#else
2016 NULL,
2017#endif
2018#ifdef USE_THREAD_DB
2019 thread_db_get_tls_address,
2020#else
2021 NULL,
52fb6437 2022#endif
23181151 2023 linux_arch_string,
ce3a066d
DJ
2024};
2025
0d62e5e8
DJ
2026static void
2027linux_init_signals ()
2028{
2029 /* FIXME drow/2002-06-09: As above, we should check with LinuxThreads
2030 to find what the cancel signal actually is. */
254787d4 2031 signal (__SIGRTMIN+1, SIG_IGN);
0d62e5e8
DJ
2032}
2033
da6d8c04
DJ
2034void
2035initialize_low (void)
2036{
24a09b5f 2037 thread_db_active = 0;
ce3a066d 2038 set_target_ops (&linux_target_ops);
611cb4a5
DJ
2039 set_breakpoint_data (the_low_target.breakpoint,
2040 the_low_target.breakpoint_len);
0a30fbc4 2041 init_registers ();
0d62e5e8 2042 linux_init_signals ();
24a09b5f 2043 linux_test_for_tracefork ();
da6d8c04 2044}
This page took 0.540005 seconds and 4 git commands to generate.