]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/linux-low.c
* linux-low.c (get_stop_pc): Print pc if debug_threads.
[thirdparty/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,
0fb0cc75 3 2006, 2007, 2008, 2009 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"
d0722149
DE
22#include "ansidecl.h" /* For ATTRIBUTE_PACKED, must be bug in external.h. */
23#include "elf/common.h"
24#include "elf/external.h"
da6d8c04 25
58caa3dc 26#include <sys/wait.h>
da6d8c04
DJ
27#include <stdio.h>
28#include <sys/param.h>
da6d8c04 29#include <sys/ptrace.h>
da6d8c04
DJ
30#include <signal.h>
31#include <sys/ioctl.h>
32#include <fcntl.h>
d07c63e7 33#include <string.h>
0a30fbc4
DJ
34#include <stdlib.h>
35#include <unistd.h>
fa6a77dc 36#include <errno.h>
fd500816 37#include <sys/syscall.h>
f9387fc3 38#include <sched.h>
07e059b5
VP
39#include <ctype.h>
40#include <pwd.h>
41#include <sys/types.h>
42#include <dirent.h>
da6d8c04 43
32ca6d61
DJ
44#ifndef PTRACE_GETSIGINFO
45# define PTRACE_GETSIGINFO 0x4202
46# define PTRACE_SETSIGINFO 0x4203
47#endif
48
fd462a61
DJ
49#ifndef O_LARGEFILE
50#define O_LARGEFILE 0
51#endif
52
24a09b5f
DJ
53/* If the system headers did not provide the constants, hard-code the normal
54 values. */
55#ifndef PTRACE_EVENT_FORK
56
57#define PTRACE_SETOPTIONS 0x4200
58#define PTRACE_GETEVENTMSG 0x4201
59
60/* options set using PTRACE_SETOPTIONS */
61#define PTRACE_O_TRACESYSGOOD 0x00000001
62#define PTRACE_O_TRACEFORK 0x00000002
63#define PTRACE_O_TRACEVFORK 0x00000004
64#define PTRACE_O_TRACECLONE 0x00000008
65#define PTRACE_O_TRACEEXEC 0x00000010
66#define PTRACE_O_TRACEVFORKDONE 0x00000020
67#define PTRACE_O_TRACEEXIT 0x00000040
68
69/* Wait extended result codes for the above trace options. */
70#define PTRACE_EVENT_FORK 1
71#define PTRACE_EVENT_VFORK 2
72#define PTRACE_EVENT_CLONE 3
73#define PTRACE_EVENT_EXEC 4
74#define PTRACE_EVENT_VFORK_DONE 5
75#define PTRACE_EVENT_EXIT 6
76
77#endif /* PTRACE_EVENT_FORK */
78
79/* We can't always assume that this flag is available, but all systems
80 with the ptrace event handlers also have __WALL, so it's safe to use
81 in some contexts. */
82#ifndef __WALL
83#define __WALL 0x40000000 /* Wait for any child. */
84#endif
85
42c81e2a
DJ
86#ifdef __UCLIBC__
87#if !(defined(__UCLIBC_HAS_MMU__) || defined(__ARCH_HAS_MMU__))
88#define HAS_NOMMU
89#endif
90#endif
91
24a09b5f
DJ
92/* ``all_threads'' is keyed by the LWP ID, which we use as the GDB protocol
93 representation of the thread ID.
611cb4a5 94
54a0b537 95 ``all_lwps'' is keyed by the process ID - which on Linux is (presently)
95954743
PA
96 the same as the LWP ID.
97
98 ``all_processes'' is keyed by the "overall process ID", which
99 GNU/Linux calls tgid, "thread group ID". */
0d62e5e8 100
54a0b537 101struct inferior_list all_lwps;
0d62e5e8 102
24a09b5f
DJ
103/* A list of all unknown processes which receive stop signals. Some other
104 process will presumably claim each of these as forked children
105 momentarily. */
106
107struct inferior_list stopped_pids;
108
0d62e5e8
DJ
109/* FIXME this is a bit of a hack, and could be removed. */
110int stopping_threads;
111
112/* FIXME make into a target method? */
24a09b5f 113int using_threads = 1;
24a09b5f 114
95954743
PA
115/* This flag is true iff we've just created or attached to our first
116 inferior but it has not stopped yet. As soon as it does, we need
117 to call the low target's arch_setup callback. Doing this only on
118 the first inferior avoids reinializing the architecture on every
119 inferior, and avoids messing with the register caches of the
120 already running inferiors. NOTE: this assumes all inferiors under
121 control of gdbserver have the same architecture. */
d61ddec4
UW
122static int new_inferior;
123
2acc282a 124static void linux_resume_one_lwp (struct lwp_info *lwp,
54a0b537 125 int step, int signal, siginfo_t *info);
2bd7c093 126static void linux_resume (struct thread_resume *resume_info, size_t n);
54a0b537 127static void stop_all_lwps (void);
95954743 128static int linux_wait_for_event (ptid_t ptid, int *wstat, int options);
54a0b537 129static int check_removed_breakpoint (struct lwp_info *event_child);
95954743 130static void *add_lwp (ptid_t ptid);
97438e3f 131static int my_waitpid (int pid, int *status, int flags);
c35fafde 132static int linux_stopped_by_watchpoint (void);
95954743 133static void mark_lwp_dead (struct lwp_info *lwp, int wstat);
0d62e5e8
DJ
134
135struct pending_signals
136{
137 int signal;
32ca6d61 138 siginfo_t info;
0d62e5e8
DJ
139 struct pending_signals *prev;
140};
611cb4a5 141
d844cde6 142#define PTRACE_ARG3_TYPE long
c6ecbae5 143#define PTRACE_XFER_TYPE long
da6d8c04 144
58caa3dc 145#ifdef HAVE_LINUX_REGSETS
52fa2412
UW
146static char *disabled_regsets;
147static int num_regsets;
58caa3dc
DJ
148#endif
149
bd99dc85
PA
150/* The read/write ends of the pipe registered as waitable file in the
151 event loop. */
152static int linux_event_pipe[2] = { -1, -1 };
153
154/* True if we're currently in async mode. */
155#define target_is_async_p() (linux_event_pipe[0] != -1)
156
157static void send_sigstop (struct inferior_list_entry *entry);
158static void wait_for_sigstop (struct inferior_list_entry *entry);
159
d0722149
DE
160/* Accepts an integer PID; Returns a string representing a file that
161 can be opened to get info for the child process.
162 Space for the result is malloc'd, caller must free. */
163
164char *
165linux_child_pid_to_exec_file (int pid)
166{
167 char *name1, *name2;
168
169 name1 = xmalloc (MAXPATHLEN);
170 name2 = xmalloc (MAXPATHLEN);
171 memset (name2, 0, MAXPATHLEN);
172
173 sprintf (name1, "/proc/%d/exe", pid);
174 if (readlink (name1, name2, MAXPATHLEN) > 0)
175 {
176 free (name1);
177 return name2;
178 }
179 else
180 {
181 free (name2);
182 return name1;
183 }
184}
185
186/* Return non-zero if HEADER is a 64-bit ELF file. */
187
188static int
189elf_64_header_p (const Elf64_External_Ehdr *header)
190{
191 return (header->e_ident[EI_MAG0] == ELFMAG0
192 && header->e_ident[EI_MAG1] == ELFMAG1
193 && header->e_ident[EI_MAG2] == ELFMAG2
194 && header->e_ident[EI_MAG3] == ELFMAG3
195 && header->e_ident[EI_CLASS] == ELFCLASS64);
196}
197
198/* Return non-zero if FILE is a 64-bit ELF file,
199 zero if the file is not a 64-bit ELF file,
200 and -1 if the file is not accessible or doesn't exist. */
201
202int
203elf_64_file_p (const char *file)
204{
205 Elf64_External_Ehdr header;
206 int fd;
207
208 fd = open (file, O_RDONLY);
209 if (fd < 0)
210 return -1;
211
212 if (read (fd, &header, sizeof (header)) != sizeof (header))
213 {
214 close (fd);
215 return 0;
216 }
217 close (fd);
218
219 return elf_64_header_p (&header);
220}
221
bd99dc85
PA
222static void
223delete_lwp (struct lwp_info *lwp)
224{
225 remove_thread (get_lwp_thread (lwp));
226 remove_inferior (&all_lwps, &lwp->head);
227 free (lwp);
228}
229
95954743
PA
230/* Add a process to the common process list, and set its private
231 data. */
232
233static struct process_info *
234linux_add_process (int pid, int attached)
235{
236 struct process_info *proc;
237
238 /* Is this the first process? If so, then set the arch. */
239 if (all_processes.head == NULL)
240 new_inferior = 1;
241
242 proc = add_process (pid, attached);
243 proc->private = xcalloc (1, sizeof (*proc->private));
244
245 return proc;
246}
247
5091eb23
DE
248/* Remove a process from the common process list,
249 also freeing all private data. */
250
251static void
252linux_remove_process (struct process_info *process)
253{
254 free (process->private);
255 remove_process (process);
256}
257
bd99dc85
PA
258/* Handle a GNU/Linux extended wait response. If we see a clone
259 event, we need to add the new LWP to our list (and not report the
260 trap to higher layers). */
0d62e5e8 261
24a09b5f 262static void
54a0b537 263handle_extended_wait (struct lwp_info *event_child, int wstat)
24a09b5f
DJ
264{
265 int event = wstat >> 16;
54a0b537 266 struct lwp_info *new_lwp;
24a09b5f
DJ
267
268 if (event == PTRACE_EVENT_CLONE)
269 {
95954743 270 ptid_t ptid;
24a09b5f 271 unsigned long new_pid;
836acd6d 272 int ret, status = W_STOPCODE (SIGSTOP);
24a09b5f 273
bd99dc85 274 ptrace (PTRACE_GETEVENTMSG, lwpid_of (event_child), 0, &new_pid);
24a09b5f
DJ
275
276 /* If we haven't already seen the new PID stop, wait for it now. */
277 if (! pull_pid_from_list (&stopped_pids, new_pid))
278 {
279 /* The new child has a pending SIGSTOP. We can't affect it until it
280 hits the SIGSTOP, but we're already attached. */
281
97438e3f 282 ret = my_waitpid (new_pid, &status, __WALL);
24a09b5f
DJ
283
284 if (ret == -1)
285 perror_with_name ("waiting for new child");
286 else if (ret != new_pid)
287 warning ("wait returned unexpected PID %d", ret);
da5898ce 288 else if (!WIFSTOPPED (status))
24a09b5f
DJ
289 warning ("wait returned unexpected status 0x%x", status);
290 }
291
292 ptrace (PTRACE_SETOPTIONS, new_pid, 0, PTRACE_O_TRACECLONE);
293
95954743
PA
294 ptid = ptid_build (pid_of (event_child), new_pid, 0);
295 new_lwp = (struct lwp_info *) add_lwp (ptid);
296 add_thread (ptid, new_lwp);
24a09b5f 297
da5898ce
DJ
298 /* Normally we will get the pending SIGSTOP. But in some cases
299 we might get another signal delivered to the group first.
f21cc1a2 300 If we do get another signal, be sure not to lose it. */
da5898ce
DJ
301 if (WSTOPSIG (status) == SIGSTOP)
302 {
303 if (stopping_threads)
54a0b537 304 new_lwp->stopped = 1;
da5898ce
DJ
305 else
306 ptrace (PTRACE_CONT, new_pid, 0, 0);
307 }
24a09b5f 308 else
da5898ce 309 {
54a0b537 310 new_lwp->stop_expected = 1;
da5898ce
DJ
311 if (stopping_threads)
312 {
54a0b537
PA
313 new_lwp->stopped = 1;
314 new_lwp->status_pending_p = 1;
315 new_lwp->status_pending = status;
da5898ce
DJ
316 }
317 else
318 /* Pass the signal on. This is what GDB does - except
319 shouldn't we really report it instead? */
320 ptrace (PTRACE_CONT, new_pid, 0, WSTOPSIG (status));
321 }
24a09b5f
DJ
322
323 /* Always resume the current thread. If we are stopping
324 threads, it will have a pending SIGSTOP; we may as well
325 collect it now. */
2acc282a 326 linux_resume_one_lwp (event_child, event_child->stepping, 0, NULL);
24a09b5f
DJ
327 }
328}
329
0d62e5e8
DJ
330/* This function should only be called if the process got a SIGTRAP.
331 The SIGTRAP could mean several things.
332
333 On i386, where decr_pc_after_break is non-zero:
334 If we were single-stepping this process using PTRACE_SINGLESTEP,
335 we will get only the one SIGTRAP (even if the instruction we
336 stepped over was a breakpoint). The value of $eip will be the
337 next instruction.
338 If we continue the process using PTRACE_CONT, we will get a
339 SIGTRAP when we hit a breakpoint. The value of $eip will be
340 the instruction after the breakpoint (i.e. needs to be
341 decremented). If we report the SIGTRAP to GDB, we must also
342 report the undecremented PC. If we cancel the SIGTRAP, we
343 must resume at the decremented PC.
344
345 (Presumably, not yet tested) On a non-decr_pc_after_break machine
346 with hardware or kernel single-step:
347 If we single-step over a breakpoint instruction, our PC will
348 point at the following instruction. If we continue and hit a
349 breakpoint instruction, our PC will point at the breakpoint
350 instruction. */
351
352static CORE_ADDR
353get_stop_pc (void)
354{
355 CORE_ADDR stop_pc = (*the_low_target.get_pc) ();
356
47c0c975
DE
357 if (! get_thread_lwp (current_inferior)->stepping)
358 stop_pc -= the_low_target.decr_pc_after_break;
359
360 if (debug_threads)
361 fprintf (stderr, "stop pc is 0x%lx\n", (long) stop_pc);
362
363 return stop_pc;
0d62e5e8 364}
ce3a066d 365
0d62e5e8 366static void *
95954743 367add_lwp (ptid_t ptid)
611cb4a5 368{
54a0b537 369 struct lwp_info *lwp;
0d62e5e8 370
54a0b537
PA
371 lwp = (struct lwp_info *) xmalloc (sizeof (*lwp));
372 memset (lwp, 0, sizeof (*lwp));
0d62e5e8 373
95954743 374 lwp->head.id = ptid;
0d62e5e8 375
54a0b537 376 add_inferior_to_list (&all_lwps, &lwp->head);
0d62e5e8 377
54a0b537 378 return lwp;
0d62e5e8 379}
611cb4a5 380
da6d8c04
DJ
381/* Start an inferior process and returns its pid.
382 ALLARGS is a vector of program-name and args. */
383
ce3a066d
DJ
384static int
385linux_create_inferior (char *program, char **allargs)
da6d8c04 386{
a6dbe5df 387 struct lwp_info *new_lwp;
da6d8c04 388 int pid;
95954743 389 ptid_t ptid;
da6d8c04 390
42c81e2a 391#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437
NS
392 pid = vfork ();
393#else
da6d8c04 394 pid = fork ();
52fb6437 395#endif
da6d8c04
DJ
396 if (pid < 0)
397 perror_with_name ("fork");
398
399 if (pid == 0)
400 {
401 ptrace (PTRACE_TRACEME, 0, 0, 0);
402
254787d4 403 signal (__SIGRTMIN + 1, SIG_DFL);
0d62e5e8 404
a9fa9f7d
DJ
405 setpgid (0, 0);
406
2b876972
DJ
407 execv (program, allargs);
408 if (errno == ENOENT)
409 execvp (program, allargs);
da6d8c04
DJ
410
411 fprintf (stderr, "Cannot exec %s: %s.\n", program,
d07c63e7 412 strerror (errno));
da6d8c04
DJ
413 fflush (stderr);
414 _exit (0177);
415 }
416
95954743
PA
417 linux_add_process (pid, 0);
418
419 ptid = ptid_build (pid, pid, 0);
420 new_lwp = add_lwp (ptid);
421 add_thread (ptid, new_lwp);
a6dbe5df 422 new_lwp->must_set_ptrace_flags = 1;
611cb4a5 423
a9fa9f7d 424 return pid;
da6d8c04
DJ
425}
426
427/* Attach to an inferior process. */
428
95954743
PA
429static void
430linux_attach_lwp_1 (unsigned long lwpid, int initial)
da6d8c04 431{
95954743 432 ptid_t ptid;
54a0b537 433 struct lwp_info *new_lwp;
611cb4a5 434
95954743 435 if (ptrace (PTRACE_ATTACH, lwpid, 0, 0) != 0)
da6d8c04 436 {
95954743 437 if (!initial)
2d717e4f
DJ
438 {
439 /* If we fail to attach to an LWP, just warn. */
95954743 440 fprintf (stderr, "Cannot attach to lwp %ld: %s (%d)\n", lwpid,
2d717e4f
DJ
441 strerror (errno), errno);
442 fflush (stderr);
443 return;
444 }
445 else
446 /* If we fail to attach to a process, report an error. */
95954743 447 error ("Cannot attach to lwp %ld: %s (%d)\n", lwpid,
43d5792c 448 strerror (errno), errno);
da6d8c04
DJ
449 }
450
95954743
PA
451 if (initial)
452 /* NOTE/FIXME: This lwp might have not been the tgid. */
453 ptid = ptid_build (lwpid, lwpid, 0);
454 else
455 {
456 /* Note that extracting the pid from the current inferior is
457 safe, since we're always called in the context of the same
458 process as this new thread. */
459 int pid = pid_of (get_thread_lwp (current_inferior));
460 ptid = ptid_build (pid, lwpid, 0);
461 }
24a09b5f 462
95954743
PA
463 new_lwp = (struct lwp_info *) add_lwp (ptid);
464 add_thread (ptid, new_lwp);
0d62e5e8 465
a6dbe5df
PA
466
467 /* We need to wait for SIGSTOP before being able to make the next
468 ptrace call on this LWP. */
469 new_lwp->must_set_ptrace_flags = 1;
470
0d62e5e8 471 /* The next time we wait for this LWP we'll see a SIGSTOP as PTRACE_ATTACH
0e21c1ec
DE
472 brings it to a halt.
473
474 There are several cases to consider here:
475
476 1) gdbserver has already attached to the process and is being notified
1b3f6016
PA
477 of a new thread that is being created.
478 In this case we should ignore that SIGSTOP and resume the process.
479 This is handled below by setting stop_expected = 1.
0e21c1ec
DE
480
481 2) This is the first thread (the process thread), and we're attaching
1b3f6016
PA
482 to it via attach_inferior.
483 In this case we want the process thread to stop.
484 This is handled by having linux_attach clear stop_expected after
485 we return.
486 ??? If the process already has several threads we leave the other
487 threads running.
0e21c1ec
DE
488
489 3) GDB is connecting to gdbserver and is requesting an enumeration of all
1b3f6016
PA
490 existing threads.
491 In this case we want the thread to stop.
492 FIXME: This case is currently not properly handled.
493 We should wait for the SIGSTOP but don't. Things work apparently
494 because enough time passes between when we ptrace (ATTACH) and when
495 gdb makes the next ptrace call on the thread.
0d62e5e8
DJ
496
497 On the other hand, if we are currently trying to stop all threads, we
498 should treat the new thread as if we had sent it a SIGSTOP. This works
54a0b537 499 because we are guaranteed that the add_lwp call above added us to the
0e21c1ec
DE
500 end of the list, and so the new thread has not yet reached
501 wait_for_sigstop (but will). */
0d62e5e8 502 if (! stopping_threads)
54a0b537 503 new_lwp->stop_expected = 1;
0d62e5e8
DJ
504}
505
95954743
PA
506void
507linux_attach_lwp (unsigned long lwpid)
508{
509 linux_attach_lwp_1 (lwpid, 0);
510}
511
0d62e5e8 512int
a1928bad 513linux_attach (unsigned long pid)
0d62e5e8 514{
54a0b537 515 struct lwp_info *lwp;
0d62e5e8 516
95954743
PA
517 linux_attach_lwp_1 (pid, 1);
518
519 linux_add_process (pid, 1);
0d62e5e8 520
bd99dc85
PA
521 if (!non_stop)
522 {
523 /* Don't ignore the initial SIGSTOP if we just attached to this
524 process. It will be collected by wait shortly. */
95954743
PA
525 lwp = (struct lwp_info *) find_inferior_id (&all_lwps,
526 ptid_build (pid, pid, 0));
bd99dc85
PA
527 lwp->stop_expected = 0;
528 }
0d62e5e8 529
95954743
PA
530 return 0;
531}
532
533struct counter
534{
535 int pid;
536 int count;
537};
538
539static int
540second_thread_of_pid_p (struct inferior_list_entry *entry, void *args)
541{
542 struct counter *counter = args;
543
544 if (ptid_get_pid (entry->id) == counter->pid)
545 {
546 if (++counter->count > 1)
547 return 1;
548 }
d61ddec4 549
da6d8c04
DJ
550 return 0;
551}
552
95954743
PA
553static int
554last_thread_of_process_p (struct thread_info *thread)
555{
556 ptid_t ptid = ((struct inferior_list_entry *)thread)->id;
557 int pid = ptid_get_pid (ptid);
558 struct counter counter = { pid , 0 };
da6d8c04 559
95954743
PA
560 return (find_inferior (&all_threads,
561 second_thread_of_pid_p, &counter) == NULL);
562}
563
564/* Kill the inferior lwp. */
565
566static int
567linux_kill_one_lwp (struct inferior_list_entry *entry, void *args)
da6d8c04 568{
0d62e5e8 569 struct thread_info *thread = (struct thread_info *) entry;
54a0b537 570 struct lwp_info *lwp = get_thread_lwp (thread);
0d62e5e8 571 int wstat;
95954743
PA
572 int pid = * (int *) args;
573
574 if (ptid_get_pid (entry->id) != pid)
575 return 0;
0d62e5e8 576
fd500816
DJ
577 /* We avoid killing the first thread here, because of a Linux kernel (at
578 least 2.6.0-test7 through 2.6.8-rc4) bug; if we kill the parent before
579 the children get a chance to be reaped, it will remain a zombie
580 forever. */
95954743
PA
581
582 if (last_thread_of_process_p (thread))
583 {
584 if (debug_threads)
585 fprintf (stderr, "lkop: is last of process %s\n",
586 target_pid_to_str (entry->id));
587 return 0;
588 }
fd500816 589
bd99dc85
PA
590 /* If we're killing a running inferior, make sure it is stopped
591 first, as PTRACE_KILL will not work otherwise. */
592 if (!lwp->stopped)
593 send_sigstop (&lwp->head);
594
0d62e5e8
DJ
595 do
596 {
bd99dc85 597 ptrace (PTRACE_KILL, lwpid_of (lwp), 0, 0);
0d62e5e8
DJ
598
599 /* Make sure it died. The loop is most likely unnecessary. */
95954743 600 pid = linux_wait_for_event (lwp->head.id, &wstat, __WALL);
bd99dc85 601 } while (pid > 0 && WIFSTOPPED (wstat));
95954743
PA
602
603 return 0;
da6d8c04
DJ
604}
605
95954743
PA
606static int
607linux_kill (int pid)
0d62e5e8 608{
95954743 609 struct process_info *process;
54a0b537 610 struct lwp_info *lwp;
95954743 611 struct thread_info *thread;
fd500816 612 int wstat;
95954743 613 int lwpid;
fd500816 614
95954743
PA
615 process = find_process_pid (pid);
616 if (process == NULL)
617 return -1;
9d606399 618
95954743 619 find_inferior (&all_threads, linux_kill_one_lwp, &pid);
fd500816 620
54a0b537 621 /* See the comment in linux_kill_one_lwp. We did not kill the first
fd500816 622 thread in the list, so do so now. */
95954743
PA
623 lwp = find_lwp_pid (pid_to_ptid (pid));
624 thread = get_lwp_thread (lwp);
bd99dc85
PA
625
626 if (debug_threads)
95954743
PA
627 fprintf (stderr, "lk_1: killing lwp %ld, for pid: %d\n",
628 lwpid_of (lwp), pid);
bd99dc85
PA
629
630 /* If we're killing a running inferior, make sure it is stopped
631 first, as PTRACE_KILL will not work otherwise. */
632 if (!lwp->stopped)
633 send_sigstop (&lwp->head);
634
fd500816
DJ
635 do
636 {
bd99dc85 637 ptrace (PTRACE_KILL, lwpid_of (lwp), 0, 0);
fd500816
DJ
638
639 /* Make sure it died. The loop is most likely unnecessary. */
95954743
PA
640 lwpid = linux_wait_for_event (lwp->head.id, &wstat, __WALL);
641 } while (lwpid > 0 && WIFSTOPPED (wstat));
2d717e4f 642
bd99dc85 643 delete_lwp (lwp);
5091eb23 644 linux_remove_process (process);
95954743 645 return 0;
0d62e5e8
DJ
646}
647
95954743
PA
648static int
649linux_detach_one_lwp (struct inferior_list_entry *entry, void *args)
6ad8ae5c
DJ
650{
651 struct thread_info *thread = (struct thread_info *) entry;
54a0b537 652 struct lwp_info *lwp = get_thread_lwp (thread);
95954743
PA
653 int pid = * (int *) args;
654
655 if (ptid_get_pid (entry->id) != pid)
656 return 0;
6ad8ae5c 657
bd99dc85
PA
658 /* If we're detaching from a running inferior, make sure it is
659 stopped first, as PTRACE_DETACH will not work otherwise. */
660 if (!lwp->stopped)
661 {
95954743 662 int lwpid = lwpid_of (lwp);
bd99dc85
PA
663
664 stopping_threads = 1;
665 send_sigstop (&lwp->head);
666
667 /* If this detects a new thread through a clone event, the new
668 thread is appended to the end of the lwp list, so we'll
669 eventually detach from it. */
670 wait_for_sigstop (&lwp->head);
671 stopping_threads = 0;
672
673 /* If LWP exits while we're trying to stop it, there's nothing
674 left to do. */
95954743 675 lwp = find_lwp_pid (pid_to_ptid (lwpid));
bd99dc85 676 if (lwp == NULL)
95954743 677 return 0;
bd99dc85
PA
678 }
679
ae13219e
DJ
680 /* Make sure the process isn't stopped at a breakpoint that's
681 no longer there. */
54a0b537 682 check_removed_breakpoint (lwp);
ae13219e
DJ
683
684 /* If this process is stopped but is expecting a SIGSTOP, then make
685 sure we take care of that now. This isn't absolutely guaranteed
686 to collect the SIGSTOP, but is fairly likely to. */
54a0b537 687 if (lwp->stop_expected)
ae13219e 688 {
bd99dc85 689 int wstat;
ae13219e 690 /* Clear stop_expected, so that the SIGSTOP will be reported. */
54a0b537
PA
691 lwp->stop_expected = 0;
692 if (lwp->stopped)
2acc282a 693 linux_resume_one_lwp (lwp, 0, 0, NULL);
95954743 694 linux_wait_for_event (lwp->head.id, &wstat, __WALL);
ae13219e
DJ
695 }
696
697 /* Flush any pending changes to the process's registers. */
698 regcache_invalidate_one ((struct inferior_list_entry *)
54a0b537 699 get_lwp_thread (lwp));
ae13219e
DJ
700
701 /* Finally, let it resume. */
bd99dc85
PA
702 ptrace (PTRACE_DETACH, lwpid_of (lwp), 0, 0);
703
704 delete_lwp (lwp);
95954743 705 return 0;
6ad8ae5c
DJ
706}
707
dd6953e1 708static int
95954743 709any_thread_of (struct inferior_list_entry *entry, void *args)
6ad8ae5c 710{
95954743
PA
711 int *pid_p = args;
712
713 if (ptid_get_pid (entry->id) == *pid_p)
714 return 1;
715
716 return 0;
717}
718
719static int
720linux_detach (int pid)
721{
722 struct process_info *process;
723
724 process = find_process_pid (pid);
725 if (process == NULL)
726 return -1;
727
728 current_inferior =
729 (struct thread_info *) find_inferior (&all_threads, any_thread_of, &pid);
730
ae13219e 731 delete_all_breakpoints ();
95954743 732 find_inferior (&all_threads, linux_detach_one_lwp, &pid);
5091eb23 733 linux_remove_process (process);
dd6953e1 734 return 0;
6ad8ae5c
DJ
735}
736
444d6139 737static void
95954743 738linux_join (int pid)
444d6139 739{
444d6139 740 int status, ret;
95954743 741 struct process_info *process;
bd99dc85 742
95954743
PA
743 process = find_process_pid (pid);
744 if (process == NULL)
745 return;
444d6139
PA
746
747 do {
95954743 748 ret = my_waitpid (pid, &status, 0);
444d6139
PA
749 if (WIFEXITED (status) || WIFSIGNALED (status))
750 break;
751 } while (ret != -1 || errno != ECHILD);
752}
753
6ad8ae5c 754/* Return nonzero if the given thread is still alive. */
0d62e5e8 755static int
95954743 756linux_thread_alive (ptid_t ptid)
0d62e5e8 757{
95954743
PA
758 struct lwp_info *lwp = find_lwp_pid (ptid);
759
760 /* We assume we always know if a thread exits. If a whole process
761 exited but we still haven't been able to report it to GDB, we'll
762 hold on to the last lwp of the dead process. */
763 if (lwp != NULL)
764 return !lwp->dead;
0d62e5e8
DJ
765 else
766 return 0;
767}
768
769/* Return nonzero if this process stopped at a breakpoint which
770 no longer appears to be inserted. Also adjust the PC
771 appropriately to resume where the breakpoint used to be. */
ce3a066d 772static int
54a0b537 773check_removed_breakpoint (struct lwp_info *event_child)
da6d8c04 774{
0d62e5e8
DJ
775 CORE_ADDR stop_pc;
776 struct thread_info *saved_inferior;
777
778 if (event_child->pending_is_breakpoint == 0)
779 return 0;
780
781 if (debug_threads)
54a0b537 782 fprintf (stderr, "Checking for breakpoint in lwp %ld.\n",
bd99dc85 783 lwpid_of (event_child));
0d62e5e8
DJ
784
785 saved_inferior = current_inferior;
54a0b537 786 current_inferior = get_lwp_thread (event_child);
0d62e5e8
DJ
787
788 stop_pc = get_stop_pc ();
789
790 /* If the PC has changed since we stopped, then we shouldn't do
791 anything. This happens if, for instance, GDB handled the
792 decr_pc_after_break subtraction itself. */
793 if (stop_pc != event_child->pending_stop_pc)
794 {
795 if (debug_threads)
ae13219e
DJ
796 fprintf (stderr, "Ignoring, PC was changed. Old PC was 0x%08llx\n",
797 event_child->pending_stop_pc);
0d62e5e8
DJ
798
799 event_child->pending_is_breakpoint = 0;
800 current_inferior = saved_inferior;
801 return 0;
802 }
803
804 /* If the breakpoint is still there, we will report hitting it. */
805 if ((*the_low_target.breakpoint_at) (stop_pc))
806 {
807 if (debug_threads)
808 fprintf (stderr, "Ignoring, breakpoint is still present.\n");
809 current_inferior = saved_inferior;
810 return 0;
811 }
812
813 if (debug_threads)
814 fprintf (stderr, "Removed breakpoint.\n");
815
816 /* For decr_pc_after_break targets, here is where we perform the
817 decrement. We go immediately from this function to resuming,
818 and can not safely call get_stop_pc () again. */
819 if (the_low_target.set_pc != NULL)
47c0c975
DE
820 {
821 if (debug_threads)
822 fprintf (stderr, "Set pc to 0x%lx\n", (long) stop_pc);
823 (*the_low_target.set_pc) (stop_pc);
824 }
0d62e5e8
DJ
825
826 /* We consumed the pending SIGTRAP. */
5544ad89 827 event_child->pending_is_breakpoint = 0;
0d62e5e8
DJ
828 event_child->status_pending_p = 0;
829 event_child->status_pending = 0;
830
831 current_inferior = saved_inferior;
da6d8c04
DJ
832 return 1;
833}
834
54a0b537
PA
835/* Return 1 if this lwp has an interesting status pending. This
836 function may silently resume an inferior lwp. */
611cb4a5 837static int
95954743 838status_pending_p (struct inferior_list_entry *entry, void *arg)
0d62e5e8 839{
54a0b537 840 struct lwp_info *lwp = (struct lwp_info *) entry;
95954743
PA
841 ptid_t ptid = * (ptid_t *) arg;
842
843 /* Check if we're only interested in events from a specific process
844 or its lwps. */
845 if (!ptid_equal (minus_one_ptid, ptid)
846 && ptid_get_pid (ptid) != ptid_get_pid (lwp->head.id))
847 return 0;
0d62e5e8 848
bd99dc85 849 if (lwp->status_pending_p && !lwp->suspended)
54a0b537 850 if (check_removed_breakpoint (lwp))
0d62e5e8
DJ
851 {
852 /* This thread was stopped at a breakpoint, and the breakpoint
853 is now gone. We were told to continue (or step...) all threads,
854 so GDB isn't trying to single-step past this breakpoint.
855 So instead of reporting the old SIGTRAP, pretend we got to
856 the breakpoint just after it was removed instead of just
857 before; resume the process. */
2acc282a 858 linux_resume_one_lwp (lwp, 0, 0, NULL);
0d62e5e8
DJ
859 return 0;
860 }
861
bd99dc85 862 return (lwp->status_pending_p && !lwp->suspended);
0d62e5e8
DJ
863}
864
95954743
PA
865static int
866same_lwp (struct inferior_list_entry *entry, void *data)
867{
868 ptid_t ptid = *(ptid_t *) data;
869 int lwp;
870
871 if (ptid_get_lwp (ptid) != 0)
872 lwp = ptid_get_lwp (ptid);
873 else
874 lwp = ptid_get_pid (ptid);
875
876 if (ptid_get_lwp (entry->id) == lwp)
877 return 1;
878
879 return 0;
880}
881
882struct lwp_info *
883find_lwp_pid (ptid_t ptid)
884{
885 return (struct lwp_info*) find_inferior (&all_lwps, same_lwp, &ptid);
886}
887
bd99dc85 888static struct lwp_info *
95954743 889linux_wait_for_lwp (ptid_t ptid, int *wstatp, int options)
611cb4a5 890{
0d62e5e8 891 int ret;
95954743 892 int to_wait_for = -1;
bd99dc85 893 struct lwp_info *child = NULL;
0d62e5e8 894
bd99dc85 895 if (debug_threads)
95954743
PA
896 fprintf (stderr, "linux_wait_for_lwp: %s\n", target_pid_to_str (ptid));
897
898 if (ptid_equal (ptid, minus_one_ptid))
899 to_wait_for = -1; /* any child */
900 else
901 to_wait_for = ptid_get_lwp (ptid); /* this lwp only */
0d62e5e8 902
bd99dc85 903 options |= __WALL;
0d62e5e8 904
bd99dc85 905retry:
0d62e5e8 906
bd99dc85
PA
907 ret = my_waitpid (to_wait_for, wstatp, options);
908 if (ret == 0 || (ret == -1 && errno == ECHILD && (options & WNOHANG)))
909 return NULL;
910 else if (ret == -1)
911 perror_with_name ("waitpid");
0d62e5e8
DJ
912
913 if (debug_threads
914 && (!WIFSTOPPED (*wstatp)
915 || (WSTOPSIG (*wstatp) != 32
916 && WSTOPSIG (*wstatp) != 33)))
917 fprintf (stderr, "Got an event from %d (%x)\n", ret, *wstatp);
918
95954743 919 child = find_lwp_pid (pid_to_ptid (ret));
0d62e5e8 920
24a09b5f
DJ
921 /* If we didn't find a process, one of two things presumably happened:
922 - A process we started and then detached from has exited. Ignore it.
923 - A process we are controlling has forked and the new child's stop
924 was reported to us by the kernel. Save its PID. */
bd99dc85 925 if (child == NULL && WIFSTOPPED (*wstatp))
24a09b5f
DJ
926 {
927 add_pid_to_list (&stopped_pids, ret);
928 goto retry;
929 }
bd99dc85 930 else if (child == NULL)
24a09b5f
DJ
931 goto retry;
932
bd99dc85
PA
933 child->stopped = 1;
934 child->pending_is_breakpoint = 0;
0d62e5e8 935
bd99dc85 936 child->last_status = *wstatp;
32ca6d61 937
d61ddec4
UW
938 /* Architecture-specific setup after inferior is running.
939 This needs to happen after we have attached to the inferior
940 and it is stopped for the first time, but before we access
941 any inferior registers. */
942 if (new_inferior)
943 {
944 the_low_target.arch_setup ();
52fa2412
UW
945#ifdef HAVE_LINUX_REGSETS
946 memset (disabled_regsets, 0, num_regsets);
947#endif
d61ddec4
UW
948 new_inferior = 0;
949 }
950
0d62e5e8 951 if (debug_threads
47c0c975
DE
952 && WIFSTOPPED (*wstatp)
953 && the_low_target.get_pc != NULL)
0d62e5e8 954 {
896c7fbb 955 struct thread_info *saved_inferior = current_inferior;
47c0c975
DE
956 CORE_ADDR pc;
957
0d62e5e8 958 current_inferior = (struct thread_info *)
95954743 959 find_inferior_id (&all_threads, child->head.id);
47c0c975
DE
960 pc = (*the_low_target.get_pc) ();
961 fprintf (stderr, "linux_wait_for_lwp: pc is 0x%lx\n", (long) pc);
896c7fbb 962 current_inferior = saved_inferior;
0d62e5e8 963 }
bd99dc85
PA
964
965 return child;
0d62e5e8 966}
611cb4a5 967
bd99dc85
PA
968/* Wait for an event from child PID. If PID is -1, wait for any
969 child. Store the stop status through the status pointer WSTAT.
970 OPTIONS is passed to the waitpid call. Return 0 if no child stop
971 event was found and OPTIONS contains WNOHANG. Return the PID of
972 the stopped child otherwise. */
973
0d62e5e8 974static int
95954743 975linux_wait_for_event_1 (ptid_t ptid, int *wstat, int options)
0d62e5e8
DJ
976{
977 CORE_ADDR stop_pc;
bd99dc85 978 struct lwp_info *event_child = NULL;
b65d95c5 979 int bp_status;
bd99dc85 980 struct lwp_info *requested_child = NULL;
0d62e5e8 981
95954743 982 /* Check for a lwp with a pending status. */
0d62e5e8
DJ
983 /* It is possible that the user changed the pending task's registers since
984 it stopped. We correctly handle the change of PC if we hit a breakpoint
e5379b03 985 (in check_removed_breakpoint); signals should be reported anyway. */
bd99dc85 986
95954743
PA
987 if (ptid_equal (ptid, minus_one_ptid)
988 || ptid_equal (pid_to_ptid (ptid_get_pid (ptid)), ptid))
0d62e5e8 989 {
54a0b537 990 event_child = (struct lwp_info *)
95954743 991 find_inferior (&all_lwps, status_pending_p, &ptid);
0d62e5e8 992 if (debug_threads && event_child)
bd99dc85 993 fprintf (stderr, "Got a pending child %ld\n", lwpid_of (event_child));
0d62e5e8
DJ
994 }
995 else
996 {
95954743 997 requested_child = find_lwp_pid (ptid);
bd99dc85
PA
998 if (requested_child->status_pending_p
999 && !check_removed_breakpoint (requested_child))
1000 event_child = requested_child;
0d62e5e8 1001 }
611cb4a5 1002
0d62e5e8
DJ
1003 if (event_child != NULL)
1004 {
bd99dc85
PA
1005 if (debug_threads)
1006 fprintf (stderr, "Got an event from pending child %ld (%04x)\n",
1007 lwpid_of (event_child), event_child->status_pending);
1008 *wstat = event_child->status_pending;
1009 event_child->status_pending_p = 0;
1010 event_child->status_pending = 0;
1011 current_inferior = get_lwp_thread (event_child);
1012 return lwpid_of (event_child);
0d62e5e8
DJ
1013 }
1014
1015 /* We only enter this loop if no process has a pending wait status. Thus
1016 any action taken in response to a wait status inside this loop is
1017 responding as soon as we detect the status, not after any pending
1018 events. */
1019 while (1)
1020 {
95954743 1021 event_child = linux_wait_for_lwp (ptid, wstat, options);
0d62e5e8 1022
bd99dc85
PA
1023 if ((options & WNOHANG) && event_child == NULL)
1024 return 0;
0d62e5e8
DJ
1025
1026 if (event_child == NULL)
1027 error ("event from unknown child");
611cb4a5 1028
bd99dc85 1029 current_inferior = get_lwp_thread (event_child);
0d62e5e8 1030
89be2091 1031 /* Check for thread exit. */
bd99dc85 1032 if (! WIFSTOPPED (*wstat))
0d62e5e8 1033 {
89be2091 1034 if (debug_threads)
95954743 1035 fprintf (stderr, "LWP %ld exiting\n", lwpid_of (event_child));
89be2091
DJ
1036
1037 /* If the last thread is exiting, just return. */
95954743 1038 if (last_thread_of_process_p (current_inferior))
bd99dc85
PA
1039 {
1040 if (debug_threads)
95954743
PA
1041 fprintf (stderr, "LWP %ld is last lwp of process\n",
1042 lwpid_of (event_child));
bd99dc85
PA
1043 return lwpid_of (event_child);
1044 }
89be2091 1045
bd99dc85 1046 delete_lwp (event_child);
89be2091 1047
bd99dc85
PA
1048 if (!non_stop)
1049 {
1050 current_inferior = (struct thread_info *) all_threads.head;
1051 if (debug_threads)
1052 fprintf (stderr, "Current inferior is now %ld\n",
1053 lwpid_of (get_thread_lwp (current_inferior)));
1054 }
1055 else
1056 {
1057 current_inferior = NULL;
1058 if (debug_threads)
1059 fprintf (stderr, "Current inferior is now <NULL>\n");
1060 }
89be2091
DJ
1061
1062 /* If we were waiting for this particular child to do something...
1063 well, it did something. */
bd99dc85 1064 if (requested_child != NULL)
95954743 1065 return lwpid_of (event_child);
89be2091
DJ
1066
1067 /* Wait for a more interesting event. */
1068 continue;
1069 }
1070
a6dbe5df
PA
1071 if (event_child->must_set_ptrace_flags)
1072 {
1073 ptrace (PTRACE_SETOPTIONS, lwpid_of (event_child),
1074 0, PTRACE_O_TRACECLONE);
1075 event_child->must_set_ptrace_flags = 0;
1076 }
1077
bd99dc85
PA
1078 if (WIFSTOPPED (*wstat)
1079 && WSTOPSIG (*wstat) == SIGSTOP
89be2091
DJ
1080 && event_child->stop_expected)
1081 {
1082 if (debug_threads)
1083 fprintf (stderr, "Expected stop.\n");
1084 event_child->stop_expected = 0;
2acc282a 1085 linux_resume_one_lwp (event_child, event_child->stepping, 0, NULL);
89be2091
DJ
1086 continue;
1087 }
1088
bd99dc85
PA
1089 if (WIFSTOPPED (*wstat) && WSTOPSIG (*wstat) == SIGTRAP
1090 && *wstat >> 16 != 0)
24a09b5f 1091 {
bd99dc85 1092 handle_extended_wait (event_child, *wstat);
24a09b5f
DJ
1093 continue;
1094 }
1095
89be2091
DJ
1096 /* If GDB is not interested in this signal, don't stop other
1097 threads, and don't report it to GDB. Just resume the
1098 inferior right away. We do this for threading-related
69f223ed
DJ
1099 signals as well as any that GDB specifically requested we
1100 ignore. But never ignore SIGSTOP if we sent it ourselves,
1101 and do not ignore signals when stepping - they may require
1102 special handling to skip the signal handler. */
89be2091
DJ
1103 /* FIXME drow/2002-06-09: Get signal numbers from the inferior's
1104 thread library? */
bd99dc85 1105 if (WIFSTOPPED (*wstat)
69f223ed 1106 && !event_child->stepping
24a09b5f
DJ
1107 && (
1108#ifdef USE_THREAD_DB
95954743 1109 (current_process ()->private->thread_db_active
bd99dc85
PA
1110 && (WSTOPSIG (*wstat) == __SIGRTMIN
1111 || WSTOPSIG (*wstat) == __SIGRTMIN + 1))
24a09b5f
DJ
1112 ||
1113#endif
bd99dc85
PA
1114 (pass_signals[target_signal_from_host (WSTOPSIG (*wstat))]
1115 && (WSTOPSIG (*wstat) != SIGSTOP || !stopping_threads))))
89be2091
DJ
1116 {
1117 siginfo_t info, *info_p;
1118
1119 if (debug_threads)
24a09b5f 1120 fprintf (stderr, "Ignored signal %d for LWP %ld.\n",
bd99dc85 1121 WSTOPSIG (*wstat), lwpid_of (event_child));
89be2091 1122
bd99dc85 1123 if (ptrace (PTRACE_GETSIGINFO, lwpid_of (event_child), 0, &info) == 0)
89be2091
DJ
1124 info_p = &info;
1125 else
1126 info_p = NULL;
2acc282a 1127 linux_resume_one_lwp (event_child,
54a0b537 1128 event_child->stepping,
bd99dc85 1129 WSTOPSIG (*wstat), info_p);
89be2091 1130 continue;
0d62e5e8 1131 }
611cb4a5 1132
0d62e5e8
DJ
1133 /* If this event was not handled above, and is not a SIGTRAP, report
1134 it. */
bd99dc85
PA
1135 if (!WIFSTOPPED (*wstat) || WSTOPSIG (*wstat) != SIGTRAP)
1136 return lwpid_of (event_child);
611cb4a5 1137
0d62e5e8
DJ
1138 /* If this target does not support breakpoints, we simply report the
1139 SIGTRAP; it's of no concern to us. */
1140 if (the_low_target.get_pc == NULL)
bd99dc85 1141 return lwpid_of (event_child);
0d62e5e8
DJ
1142
1143 stop_pc = get_stop_pc ();
1144
1145 /* bp_reinsert will only be set if we were single-stepping.
1146 Notice that we will resume the process after hitting
1147 a gdbserver breakpoint; single-stepping to/over one
1148 is not supported (yet). */
1149 if (event_child->bp_reinsert != 0)
1150 {
1151 if (debug_threads)
1152 fprintf (stderr, "Reinserted breakpoint.\n");
1153 reinsert_breakpoint (event_child->bp_reinsert);
1154 event_child->bp_reinsert = 0;
1155
1156 /* Clear the single-stepping flag and SIGTRAP as we resume. */
2acc282a 1157 linux_resume_one_lwp (event_child, 0, 0, NULL);
0d62e5e8
DJ
1158 continue;
1159 }
1160
b65d95c5 1161 bp_status = check_breakpoints (stop_pc);
0d62e5e8 1162
b65d95c5 1163 if (bp_status != 0)
0d62e5e8 1164 {
b65d95c5
DJ
1165 if (debug_threads)
1166 fprintf (stderr, "Hit a gdbserver breakpoint.\n");
1167
0d62e5e8 1168 /* We hit one of our own breakpoints. We mark it as a pending
e5379b03 1169 breakpoint, so that check_removed_breakpoint () will do the PC
0d62e5e8
DJ
1170 adjustment for us at the appropriate time. */
1171 event_child->pending_is_breakpoint = 1;
1172 event_child->pending_stop_pc = stop_pc;
1173
b65d95c5 1174 /* We may need to put the breakpoint back. We continue in the event
0d62e5e8
DJ
1175 loop instead of simply replacing the breakpoint right away,
1176 in order to not lose signals sent to the thread that hit the
1177 breakpoint. Unfortunately this increases the window where another
1178 thread could sneak past the removed breakpoint. For the current
1179 use of server-side breakpoints (thread creation) this is
1180 acceptable; but it needs to be considered before this breakpoint
1181 mechanism can be used in more general ways. For some breakpoints
1182 it may be necessary to stop all other threads, but that should
1183 be avoided where possible.
1184
1185 If breakpoint_reinsert_addr is NULL, that means that we can
1186 use PTRACE_SINGLESTEP on this platform. Uninsert the breakpoint,
1187 mark it for reinsertion, and single-step.
1188
1189 Otherwise, call the target function to figure out where we need
1190 our temporary breakpoint, create it, and continue executing this
1191 process. */
bd99dc85
PA
1192
1193 /* NOTE: we're lifting breakpoints in non-stop mode. This
1194 is currently only used for thread event breakpoints, so
1195 it isn't that bad as long as we have PTRACE_EVENT_CLONE
1196 events. */
b65d95c5
DJ
1197 if (bp_status == 2)
1198 /* No need to reinsert. */
2acc282a 1199 linux_resume_one_lwp (event_child, 0, 0, NULL);
b65d95c5 1200 else if (the_low_target.breakpoint_reinsert_addr == NULL)
0d62e5e8
DJ
1201 {
1202 event_child->bp_reinsert = stop_pc;
1203 uninsert_breakpoint (stop_pc);
2acc282a 1204 linux_resume_one_lwp (event_child, 1, 0, NULL);
0d62e5e8
DJ
1205 }
1206 else
1207 {
1208 reinsert_breakpoint_by_bp
1209 (stop_pc, (*the_low_target.breakpoint_reinsert_addr) ());
2acc282a 1210 linux_resume_one_lwp (event_child, 0, 0, NULL);
611cb4a5 1211 }
0d62e5e8
DJ
1212
1213 continue;
1214 }
1215
b65d95c5
DJ
1216 if (debug_threads)
1217 fprintf (stderr, "Hit a non-gdbserver breakpoint.\n");
1218
0d62e5e8 1219 /* If we were single-stepping, we definitely want to report the
c35fafde
PA
1220 SIGTRAP. Although the single-step operation has completed,
1221 do not clear clear the stepping flag yet; we need to check it
1222 in wait_for_sigstop. */
0d62e5e8 1223 if (event_child->stepping)
bd99dc85 1224 return lwpid_of (event_child);
0d62e5e8
DJ
1225
1226 /* A SIGTRAP that we can't explain. It may have been a breakpoint.
1227 Check if it is a breakpoint, and if so mark the process information
1228 accordingly. This will handle both the necessary fiddling with the
1229 PC on decr_pc_after_break targets and suppressing extra threads
1230 hitting a breakpoint if two hit it at once and then GDB removes it
1231 after the first is reported. Arguably it would be better to report
1232 multiple threads hitting breakpoints simultaneously, but the current
1233 remote protocol does not allow this. */
1234 if ((*the_low_target.breakpoint_at) (stop_pc))
1235 {
1236 event_child->pending_is_breakpoint = 1;
1237 event_child->pending_stop_pc = stop_pc;
611cb4a5
DJ
1238 }
1239
bd99dc85 1240 return lwpid_of (event_child);
611cb4a5 1241 }
0d62e5e8 1242
611cb4a5
DJ
1243 /* NOTREACHED */
1244 return 0;
1245}
1246
95954743
PA
1247static int
1248linux_wait_for_event (ptid_t ptid, int *wstat, int options)
1249{
1250 ptid_t wait_ptid;
1251
1252 if (ptid_is_pid (ptid))
1253 {
1254 /* A request to wait for a specific tgid. This is not possible
1255 with waitpid, so instead, we wait for any child, and leave
1256 children we're not interested in right now with a pending
1257 status to report later. */
1258 wait_ptid = minus_one_ptid;
1259 }
1260 else
1261 wait_ptid = ptid;
1262
1263 while (1)
1264 {
1265 int event_pid;
1266
1267 event_pid = linux_wait_for_event_1 (wait_ptid, wstat, options);
1268
1269 if (event_pid > 0
1270 && ptid_is_pid (ptid) && ptid_get_pid (ptid) != event_pid)
1271 {
1272 struct lwp_info *event_child = find_lwp_pid (pid_to_ptid (event_pid));
1273
1274 if (! WIFSTOPPED (*wstat))
1275 mark_lwp_dead (event_child, *wstat);
1276 else
1277 {
1278 event_child->status_pending_p = 1;
1279 event_child->status_pending = *wstat;
1280 }
1281 }
1282 else
1283 return event_pid;
1284 }
1285}
1286
0d62e5e8 1287/* Wait for process, returns status. */
da6d8c04 1288
95954743
PA
1289static ptid_t
1290linux_wait_1 (ptid_t ptid,
1291 struct target_waitstatus *ourstatus, int target_options)
da6d8c04 1292{
e5f1222d 1293 int w;
bd99dc85
PA
1294 struct thread_info *thread = NULL;
1295 struct lwp_info *lwp = NULL;
1296 int options;
bd99dc85
PA
1297 int pid;
1298
1299 /* Translate generic target options into linux options. */
1300 options = __WALL;
1301 if (target_options & TARGET_WNOHANG)
1302 options |= WNOHANG;
0d62e5e8
DJ
1303
1304retry:
bd99dc85
PA
1305 ourstatus->kind = TARGET_WAITKIND_IGNORE;
1306
0d62e5e8
DJ
1307 /* If we were only supposed to resume one thread, only wait for
1308 that thread - if it's still alive. If it died, however - which
1309 can happen if we're coming from the thread death case below -
1310 then we need to make sure we restart the other threads. We could
1311 pick a thread at random or restart all; restarting all is less
1312 arbitrary. */
95954743
PA
1313 if (!non_stop
1314 && !ptid_equal (cont_thread, null_ptid)
1315 && !ptid_equal (cont_thread, minus_one_ptid))
0d62e5e8 1316 {
bd99dc85
PA
1317 thread = (struct thread_info *) find_inferior_id (&all_threads,
1318 cont_thread);
0d62e5e8
DJ
1319
1320 /* No stepping, no signal - unless one is pending already, of course. */
bd99dc85 1321 if (thread == NULL)
64386c31
DJ
1322 {
1323 struct thread_resume resume_info;
95954743 1324 resume_info.thread = minus_one_ptid;
bd99dc85
PA
1325 resume_info.kind = resume_continue;
1326 resume_info.sig = 0;
2bd7c093 1327 linux_resume (&resume_info, 1);
64386c31 1328 }
bd99dc85 1329 else
95954743 1330 ptid = cont_thread;
0d62e5e8 1331 }
da6d8c04 1332
95954743 1333 pid = linux_wait_for_event (ptid, &w, options);
bd99dc85 1334 if (pid == 0) /* only if TARGET_WNOHANG */
95954743 1335 return null_ptid;
bd99dc85
PA
1336
1337 lwp = get_thread_lwp (current_inferior);
da6d8c04 1338
0d62e5e8
DJ
1339 /* If we are waiting for a particular child, and it exited,
1340 linux_wait_for_event will return its exit status. Similarly if
1341 the last child exited. If this is not the last child, however,
1342 do not report it as exited until there is a 'thread exited' response
1343 available in the remote protocol. Instead, just wait for another event.
1344 This should be safe, because if the thread crashed we will already
1345 have reported the termination signal to GDB; that should stop any
1346 in-progress stepping operations, etc.
1347
1348 Report the exit status of the last thread to exit. This matches
1349 LinuxThreads' behavior. */
1350
95954743 1351 if (last_thread_of_process_p (current_inferior))
da6d8c04 1352 {
bd99dc85 1353 if (WIFEXITED (w) || WIFSIGNALED (w))
0d62e5e8 1354 {
95954743
PA
1355 int pid = pid_of (lwp);
1356 struct process_info *process = find_process_pid (pid);
5b1c542e 1357
bd99dc85 1358 delete_lwp (lwp);
5091eb23 1359 linux_remove_process (process);
5b1c542e 1360
bd99dc85 1361 current_inferior = NULL;
5b1c542e 1362
bd99dc85
PA
1363 if (WIFEXITED (w))
1364 {
1365 ourstatus->kind = TARGET_WAITKIND_EXITED;
1366 ourstatus->value.integer = WEXITSTATUS (w);
1367
1368 if (debug_threads)
1369 fprintf (stderr, "\nChild exited with retcode = %x \n", WEXITSTATUS (w));
1370 }
1371 else
1372 {
1373 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
1374 ourstatus->value.sig = target_signal_from_host (WTERMSIG (w));
1375
1376 if (debug_threads)
1377 fprintf (stderr, "\nChild terminated with signal = %x \n", WTERMSIG (w));
1378
1379 }
5b1c542e 1380
95954743 1381 return pid_to_ptid (pid);
0d62e5e8 1382 }
da6d8c04 1383 }
0d62e5e8 1384 else
da6d8c04 1385 {
0d62e5e8
DJ
1386 if (!WIFSTOPPED (w))
1387 goto retry;
da6d8c04
DJ
1388 }
1389
bd99dc85
PA
1390 /* In all-stop, stop all threads. Be careful to only do this if
1391 we're about to report an event to GDB. */
1392 if (!non_stop)
1393 stop_all_lwps ();
1394
5b1c542e 1395 ourstatus->kind = TARGET_WAITKIND_STOPPED;
5b1c542e 1396
bd99dc85
PA
1397 if (lwp->suspended && WSTOPSIG (w) == SIGSTOP)
1398 {
1399 /* A thread that has been requested to stop by GDB with vCont;t,
1400 and it stopped cleanly, so report as SIG0. The use of
1401 SIGSTOP is an implementation detail. */
1402 ourstatus->value.sig = TARGET_SIGNAL_0;
1403 }
1404 else if (lwp->suspended && WSTOPSIG (w) != SIGSTOP)
1405 {
1406 /* A thread that has been requested to stop by GDB with vCont;t,
1407 but, it stopped for other reasons. Set stop_expected so the
1408 pending SIGSTOP is ignored and the LWP is resumed. */
1409 lwp->stop_expected = 1;
1410 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (w));
1411 }
1412 else
1413 {
1414 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (w));
1415 }
1416
1417 if (debug_threads)
95954743
PA
1418 fprintf (stderr, "linux_wait ret = %s, %d, %d\n",
1419 target_pid_to_str (lwp->head.id),
bd99dc85
PA
1420 ourstatus->kind,
1421 ourstatus->value.sig);
1422
95954743 1423 return lwp->head.id;
bd99dc85
PA
1424}
1425
1426/* Get rid of any pending event in the pipe. */
1427static void
1428async_file_flush (void)
1429{
1430 int ret;
1431 char buf;
1432
1433 do
1434 ret = read (linux_event_pipe[0], &buf, 1);
1435 while (ret >= 0 || (ret == -1 && errno == EINTR));
1436}
1437
1438/* Put something in the pipe, so the event loop wakes up. */
1439static void
1440async_file_mark (void)
1441{
1442 int ret;
1443
1444 async_file_flush ();
1445
1446 do
1447 ret = write (linux_event_pipe[1], "+", 1);
1448 while (ret == 0 || (ret == -1 && errno == EINTR));
1449
1450 /* Ignore EAGAIN. If the pipe is full, the event loop will already
1451 be awakened anyway. */
1452}
1453
95954743
PA
1454static ptid_t
1455linux_wait (ptid_t ptid,
1456 struct target_waitstatus *ourstatus, int target_options)
bd99dc85 1457{
95954743 1458 ptid_t event_ptid;
bd99dc85
PA
1459
1460 if (debug_threads)
95954743 1461 fprintf (stderr, "linux_wait: [%s]\n", target_pid_to_str (ptid));
bd99dc85
PA
1462
1463 /* Flush the async file first. */
1464 if (target_is_async_p ())
1465 async_file_flush ();
1466
95954743 1467 event_ptid = linux_wait_1 (ptid, ourstatus, target_options);
bd99dc85
PA
1468
1469 /* If at least one stop was reported, there may be more. A single
1470 SIGCHLD can signal more than one child stop. */
1471 if (target_is_async_p ()
1472 && (target_options & TARGET_WNOHANG) != 0
95954743 1473 && !ptid_equal (event_ptid, null_ptid))
bd99dc85
PA
1474 async_file_mark ();
1475
1476 return event_ptid;
da6d8c04
DJ
1477}
1478
fd500816
DJ
1479/* Send a signal to an LWP. For LinuxThreads, kill is enough; however, if
1480 thread groups are in use, we need to use tkill. */
1481
1482static int
a1928bad 1483kill_lwp (unsigned long lwpid, int signo)
fd500816
DJ
1484{
1485 static int tkill_failed;
1486
1487 errno = 0;
1488
1489#ifdef SYS_tkill
1490 if (!tkill_failed)
1491 {
1492 int ret = syscall (SYS_tkill, lwpid, signo);
1493 if (errno != ENOSYS)
1b3f6016 1494 return ret;
fd500816
DJ
1495 errno = 0;
1496 tkill_failed = 1;
1497 }
1498#endif
1499
1500 return kill (lwpid, signo);
1501}
1502
0d62e5e8
DJ
1503static void
1504send_sigstop (struct inferior_list_entry *entry)
1505{
54a0b537 1506 struct lwp_info *lwp = (struct lwp_info *) entry;
bd99dc85 1507 int pid;
0d62e5e8 1508
54a0b537 1509 if (lwp->stopped)
0d62e5e8
DJ
1510 return;
1511
bd99dc85
PA
1512 pid = lwpid_of (lwp);
1513
0d62e5e8
DJ
1514 /* If we already have a pending stop signal for this process, don't
1515 send another. */
54a0b537 1516 if (lwp->stop_expected)
0d62e5e8 1517 {
ae13219e 1518 if (debug_threads)
bd99dc85 1519 fprintf (stderr, "Have pending sigstop for lwp %d\n", pid);
ae13219e
DJ
1520
1521 /* We clear the stop_expected flag so that wait_for_sigstop
1522 will receive the SIGSTOP event (instead of silently resuming and
1523 waiting again). It'll be reset below. */
54a0b537 1524 lwp->stop_expected = 0;
0d62e5e8
DJ
1525 return;
1526 }
1527
1528 if (debug_threads)
bd99dc85 1529 fprintf (stderr, "Sending sigstop to lwp %d\n", pid);
0d62e5e8 1530
bd99dc85 1531 kill_lwp (pid, SIGSTOP);
0d62e5e8
DJ
1532}
1533
95954743
PA
1534static void
1535mark_lwp_dead (struct lwp_info *lwp, int wstat)
1536{
1537 /* It's dead, really. */
1538 lwp->dead = 1;
1539
1540 /* Store the exit status for later. */
1541 lwp->status_pending_p = 1;
1542 lwp->status_pending = wstat;
1543
1544 /* So that check_removed_breakpoint doesn't try to figure out if
1545 this is stopped at a breakpoint. */
1546 lwp->pending_is_breakpoint = 0;
1547
1548 /* Prevent trying to stop it. */
1549 lwp->stopped = 1;
1550
1551 /* No further stops are expected from a dead lwp. */
1552 lwp->stop_expected = 0;
1553}
1554
0d62e5e8
DJ
1555static void
1556wait_for_sigstop (struct inferior_list_entry *entry)
1557{
54a0b537 1558 struct lwp_info *lwp = (struct lwp_info *) entry;
bd99dc85 1559 struct thread_info *saved_inferior;
a1928bad 1560 int wstat;
95954743
PA
1561 ptid_t saved_tid;
1562 ptid_t ptid;
0d62e5e8 1563
54a0b537 1564 if (lwp->stopped)
0d62e5e8
DJ
1565 return;
1566
1567 saved_inferior = current_inferior;
bd99dc85
PA
1568 if (saved_inferior != NULL)
1569 saved_tid = ((struct inferior_list_entry *) saved_inferior)->id;
1570 else
95954743 1571 saved_tid = null_ptid; /* avoid bogus unused warning */
bd99dc85 1572
95954743 1573 ptid = lwp->head.id;
bd99dc85
PA
1574
1575 linux_wait_for_event (ptid, &wstat, __WALL);
0d62e5e8
DJ
1576
1577 /* If we stopped with a non-SIGSTOP signal, save it for later
1578 and record the pending SIGSTOP. If the process exited, just
1579 return. */
1580 if (WIFSTOPPED (wstat)
1581 && WSTOPSIG (wstat) != SIGSTOP)
1582 {
1583 if (debug_threads)
24a09b5f 1584 fprintf (stderr, "LWP %ld stopped with non-sigstop status %06x\n",
bd99dc85 1585 lwpid_of (lwp), wstat);
c35fafde
PA
1586
1587 /* Do not leave a pending single-step finish to be reported to
1588 the client. The client will give us a new action for this
1589 thread, possibly a continue request --- otherwise, the client
1590 would consider this pending SIGTRAP reported later a spurious
1591 signal. */
1592 if (WSTOPSIG (wstat) == SIGTRAP
1593 && lwp->stepping
1594 && !linux_stopped_by_watchpoint ())
1595 {
1596 if (debug_threads)
1597 fprintf (stderr, " single-step SIGTRAP ignored\n");
1598 }
1599 else
1600 {
1601 lwp->status_pending_p = 1;
1602 lwp->status_pending = wstat;
1603 }
54a0b537 1604 lwp->stop_expected = 1;
0d62e5e8 1605 }
95954743
PA
1606 else if (!WIFSTOPPED (wstat))
1607 {
1608 if (debug_threads)
1609 fprintf (stderr, "Process %ld exited while stopping LWPs\n",
1610 lwpid_of (lwp));
1611
1612 /* Leave this status pending for the next time we're able to
1613 report it. In the mean time, we'll report this lwp as dead
1614 to GDB, so GDB doesn't try to read registers and memory from
1615 it. */
1616 mark_lwp_dead (lwp, wstat);
1617 }
0d62e5e8 1618
bd99dc85 1619 if (saved_inferior == NULL || linux_thread_alive (saved_tid))
0d62e5e8
DJ
1620 current_inferior = saved_inferior;
1621 else
1622 {
1623 if (debug_threads)
1624 fprintf (stderr, "Previously current thread died.\n");
1625
bd99dc85
PA
1626 if (non_stop)
1627 {
1628 /* We can't change the current inferior behind GDB's back,
1629 otherwise, a subsequent command may apply to the wrong
1630 process. */
1631 current_inferior = NULL;
1632 }
1633 else
1634 {
1635 /* Set a valid thread as current. */
1636 set_desired_inferior (0);
1637 }
0d62e5e8
DJ
1638 }
1639}
1640
1641static void
54a0b537 1642stop_all_lwps (void)
0d62e5e8
DJ
1643{
1644 stopping_threads = 1;
54a0b537
PA
1645 for_each_inferior (&all_lwps, send_sigstop);
1646 for_each_inferior (&all_lwps, wait_for_sigstop);
0d62e5e8
DJ
1647 stopping_threads = 0;
1648}
1649
da6d8c04
DJ
1650/* Resume execution of the inferior process.
1651 If STEP is nonzero, single-step it.
1652 If SIGNAL is nonzero, give it that signal. */
1653
ce3a066d 1654static void
2acc282a 1655linux_resume_one_lwp (struct lwp_info *lwp,
54a0b537 1656 int step, int signal, siginfo_t *info)
da6d8c04 1657{
0d62e5e8
DJ
1658 struct thread_info *saved_inferior;
1659
54a0b537 1660 if (lwp->stopped == 0)
0d62e5e8
DJ
1661 return;
1662
1663 /* If we have pending signals or status, and a new signal, enqueue the
1664 signal. Also enqueue the signal if we are waiting to reinsert a
1665 breakpoint; it will be picked up again below. */
1666 if (signal != 0
54a0b537
PA
1667 && (lwp->status_pending_p || lwp->pending_signals != NULL
1668 || lwp->bp_reinsert != 0))
0d62e5e8
DJ
1669 {
1670 struct pending_signals *p_sig;
bca929d3 1671 p_sig = xmalloc (sizeof (*p_sig));
54a0b537 1672 p_sig->prev = lwp->pending_signals;
0d62e5e8 1673 p_sig->signal = signal;
32ca6d61
DJ
1674 if (info == NULL)
1675 memset (&p_sig->info, 0, sizeof (siginfo_t));
1676 else
1677 memcpy (&p_sig->info, info, sizeof (siginfo_t));
54a0b537 1678 lwp->pending_signals = p_sig;
0d62e5e8
DJ
1679 }
1680
54a0b537 1681 if (lwp->status_pending_p && !check_removed_breakpoint (lwp))
0d62e5e8
DJ
1682 return;
1683
1684 saved_inferior = current_inferior;
54a0b537 1685 current_inferior = get_lwp_thread (lwp);
0d62e5e8
DJ
1686
1687 if (debug_threads)
1b3f6016 1688 fprintf (stderr, "Resuming lwp %ld (%s, signal %d, stop %s)\n",
bd99dc85 1689 lwpid_of (lwp), step ? "step" : "continue", signal,
54a0b537 1690 lwp->stop_expected ? "expected" : "not expected");
0d62e5e8
DJ
1691
1692 /* This bit needs some thinking about. If we get a signal that
1693 we must report while a single-step reinsert is still pending,
1694 we often end up resuming the thread. It might be better to
1695 (ew) allow a stack of pending events; then we could be sure that
1696 the reinsert happened right away and not lose any signals.
1697
1698 Making this stack would also shrink the window in which breakpoints are
54a0b537 1699 uninserted (see comment in linux_wait_for_lwp) but not enough for
0d62e5e8
DJ
1700 complete correctness, so it won't solve that problem. It may be
1701 worthwhile just to solve this one, however. */
54a0b537 1702 if (lwp->bp_reinsert != 0)
0d62e5e8
DJ
1703 {
1704 if (debug_threads)
54a0b537 1705 fprintf (stderr, " pending reinsert at %08lx", (long)lwp->bp_reinsert);
0d62e5e8
DJ
1706 if (step == 0)
1707 fprintf (stderr, "BAD - reinserting but not stepping.\n");
1708 step = 1;
1709
1710 /* Postpone any pending signal. It was enqueued above. */
1711 signal = 0;
1712 }
1713
54a0b537 1714 check_removed_breakpoint (lwp);
0d62e5e8 1715
aa691b87 1716 if (debug_threads && the_low_target.get_pc != NULL)
0d62e5e8 1717 {
47c0c975
DE
1718 CORE_ADDR pc = (*the_low_target.get_pc) ();
1719 fprintf (stderr, " resuming from pc 0x%lx\n", (long) pc);
0d62e5e8
DJ
1720 }
1721
1722 /* If we have pending signals, consume one unless we are trying to reinsert
1723 a breakpoint. */
54a0b537 1724 if (lwp->pending_signals != NULL && lwp->bp_reinsert == 0)
0d62e5e8
DJ
1725 {
1726 struct pending_signals **p_sig;
1727
54a0b537 1728 p_sig = &lwp->pending_signals;
0d62e5e8
DJ
1729 while ((*p_sig)->prev != NULL)
1730 p_sig = &(*p_sig)->prev;
1731
1732 signal = (*p_sig)->signal;
32ca6d61 1733 if ((*p_sig)->info.si_signo != 0)
bd99dc85 1734 ptrace (PTRACE_SETSIGINFO, lwpid_of (lwp), 0, &(*p_sig)->info);
32ca6d61 1735
0d62e5e8
DJ
1736 free (*p_sig);
1737 *p_sig = NULL;
1738 }
1739
1740 regcache_invalidate_one ((struct inferior_list_entry *)
54a0b537 1741 get_lwp_thread (lwp));
da6d8c04 1742 errno = 0;
54a0b537
PA
1743 lwp->stopped = 0;
1744 lwp->stepping = step;
bd99dc85 1745 ptrace (step ? PTRACE_SINGLESTEP : PTRACE_CONT, lwpid_of (lwp), 0, signal);
0d62e5e8
DJ
1746
1747 current_inferior = saved_inferior;
da6d8c04 1748 if (errno)
3221518c
UW
1749 {
1750 /* ESRCH from ptrace either means that the thread was already
1751 running (an error) or that it is gone (a race condition). If
1752 it's gone, we will get a notification the next time we wait,
1753 so we can ignore the error. We could differentiate these
1754 two, but it's tricky without waiting; the thread still exists
1755 as a zombie, so sending it signal 0 would succeed. So just
1756 ignore ESRCH. */
1757 if (errno == ESRCH)
1758 return;
1759
1760 perror_with_name ("ptrace");
1761 }
da6d8c04
DJ
1762}
1763
2bd7c093
PA
1764struct thread_resume_array
1765{
1766 struct thread_resume *resume;
1767 size_t n;
1768};
64386c31
DJ
1769
1770/* This function is called once per thread. We look up the thread
5544ad89
DJ
1771 in RESUME_PTR, and mark the thread with a pointer to the appropriate
1772 resume request.
1773
1774 This algorithm is O(threads * resume elements), but resume elements
1775 is small (and will remain small at least until GDB supports thread
1776 suspension). */
2bd7c093
PA
1777static int
1778linux_set_resume_request (struct inferior_list_entry *entry, void *arg)
0d62e5e8 1779{
54a0b537 1780 struct lwp_info *lwp;
64386c31 1781 struct thread_info *thread;
5544ad89 1782 int ndx;
2bd7c093 1783 struct thread_resume_array *r;
64386c31
DJ
1784
1785 thread = (struct thread_info *) entry;
54a0b537 1786 lwp = get_thread_lwp (thread);
2bd7c093 1787 r = arg;
64386c31 1788
2bd7c093 1789 for (ndx = 0; ndx < r->n; ndx++)
95954743
PA
1790 {
1791 ptid_t ptid = r->resume[ndx].thread;
1792 if (ptid_equal (ptid, minus_one_ptid)
1793 || ptid_equal (ptid, entry->id)
1794 || (ptid_is_pid (ptid)
1795 && (ptid_get_pid (ptid) == pid_of (lwp)))
1796 || (ptid_get_lwp (ptid) == -1
1797 && (ptid_get_pid (ptid) == pid_of (lwp))))
1798 {
1799 lwp->resume = &r->resume[ndx];
1800 return 0;
1801 }
1802 }
2bd7c093
PA
1803
1804 /* No resume action for this thread. */
1805 lwp->resume = NULL;
64386c31 1806
2bd7c093 1807 return 0;
5544ad89
DJ
1808}
1809
5544ad89 1810
bd99dc85
PA
1811/* Set *FLAG_P if this lwp has an interesting status pending. */
1812static int
1813resume_status_pending_p (struct inferior_list_entry *entry, void *flag_p)
5544ad89 1814{
bd99dc85 1815 struct lwp_info *lwp = (struct lwp_info *) entry;
5544ad89 1816
bd99dc85
PA
1817 /* LWPs which will not be resumed are not interesting, because
1818 we might not wait for them next time through linux_wait. */
2bd7c093 1819 if (lwp->resume == NULL)
bd99dc85 1820 return 0;
64386c31 1821
bd99dc85
PA
1822 /* If this thread has a removed breakpoint, we won't have any
1823 events to report later, so check now. check_removed_breakpoint
1824 may clear status_pending_p. We avoid calling check_removed_breakpoint
1825 for any thread that we are not otherwise going to resume - this
1826 lets us preserve stopped status when two threads hit a breakpoint.
1827 GDB removes the breakpoint to single-step a particular thread
1828 past it, then re-inserts it and resumes all threads. We want
1829 to report the second thread without resuming it in the interim. */
1830 if (lwp->status_pending_p)
1831 check_removed_breakpoint (lwp);
5544ad89 1832
bd99dc85
PA
1833 if (lwp->status_pending_p)
1834 * (int *) flag_p = 1;
c6ecbae5 1835
bd99dc85 1836 return 0;
5544ad89
DJ
1837}
1838
1839/* This function is called once per thread. We check the thread's resume
1840 request, which will tell us whether to resume, step, or leave the thread
bd99dc85 1841 stopped; and what signal, if any, it should be sent.
5544ad89 1842
bd99dc85
PA
1843 For threads which we aren't explicitly told otherwise, we preserve
1844 the stepping flag; this is used for stepping over gdbserver-placed
1845 breakpoints.
1846
1847 If pending_flags was set in any thread, we queue any needed
1848 signals, since we won't actually resume. We already have a pending
1849 event to report, so we don't need to preserve any step requests;
1850 they should be re-issued if necessary. */
1851
1852static int
1853linux_resume_one_thread (struct inferior_list_entry *entry, void *arg)
5544ad89 1854{
54a0b537 1855 struct lwp_info *lwp;
5544ad89 1856 struct thread_info *thread;
bd99dc85
PA
1857 int step;
1858 int pending_flag = * (int *) arg;
5544ad89
DJ
1859
1860 thread = (struct thread_info *) entry;
54a0b537 1861 lwp = get_thread_lwp (thread);
5544ad89 1862
2bd7c093 1863 if (lwp->resume == NULL)
bd99dc85 1864 return 0;
5544ad89 1865
bd99dc85 1866 if (lwp->resume->kind == resume_stop)
5544ad89 1867 {
bd99dc85
PA
1868 if (debug_threads)
1869 fprintf (stderr, "suspending LWP %ld\n", lwpid_of (lwp));
1870
1871 if (!lwp->stopped)
1872 {
1873 if (debug_threads)
95954743 1874 fprintf (stderr, "running -> suspending LWP %ld\n", lwpid_of (lwp));
bd99dc85
PA
1875
1876 lwp->suspended = 1;
1877 send_sigstop (&lwp->head);
1878 }
1879 else
1880 {
1881 if (debug_threads)
1882 {
1883 if (lwp->suspended)
1884 fprintf (stderr, "already stopped/suspended LWP %ld\n",
1885 lwpid_of (lwp));
1886 else
1887 fprintf (stderr, "already stopped/not suspended LWP %ld\n",
1888 lwpid_of (lwp));
1889 }
32ca6d61 1890
bd99dc85
PA
1891 /* Make sure we leave the LWP suspended, so we don't try to
1892 resume it without GDB telling us to. FIXME: The LWP may
1893 have been stopped in an internal event that was not meant
1894 to be notified back to GDB (e.g., gdbserver breakpoint),
1895 so we should be reporting a stop event in that case
1896 too. */
1897 lwp->suspended = 1;
1898 }
32ca6d61 1899
bd99dc85
PA
1900 /* For stop requests, we're done. */
1901 lwp->resume = NULL;
1902 return 0;
5544ad89 1903 }
bd99dc85
PA
1904 else
1905 lwp->suspended = 0;
5544ad89 1906
bd99dc85
PA
1907 /* If this thread which is about to be resumed has a pending status,
1908 then don't resume any threads - we can just report the pending
1909 status. Make sure to queue any signals that would otherwise be
1910 sent. In all-stop mode, we do this decision based on if *any*
1911 thread has a pending status. */
1912 if (non_stop)
1913 resume_status_pending_p (&lwp->head, &pending_flag);
5544ad89 1914
bd99dc85
PA
1915 if (!pending_flag)
1916 {
1917 if (debug_threads)
1918 fprintf (stderr, "resuming LWP %ld\n", lwpid_of (lwp));
5544ad89 1919
95954743 1920 if (ptid_equal (lwp->resume->thread, minus_one_ptid)
bd99dc85
PA
1921 && lwp->stepping
1922 && lwp->pending_is_breakpoint)
1923 step = 1;
1924 else
1925 step = (lwp->resume->kind == resume_step);
5544ad89 1926
2acc282a 1927 linux_resume_one_lwp (lwp, step, lwp->resume->sig, NULL);
bd99dc85
PA
1928 }
1929 else
1930 {
1931 if (debug_threads)
1932 fprintf (stderr, "leaving LWP %ld stopped\n", lwpid_of (lwp));
5544ad89 1933
bd99dc85
PA
1934 /* If we have a new signal, enqueue the signal. */
1935 if (lwp->resume->sig != 0)
1936 {
1937 struct pending_signals *p_sig;
1938 p_sig = xmalloc (sizeof (*p_sig));
1939 p_sig->prev = lwp->pending_signals;
1940 p_sig->signal = lwp->resume->sig;
1941 memset (&p_sig->info, 0, sizeof (siginfo_t));
1942
1943 /* If this is the same signal we were previously stopped by,
1944 make sure to queue its siginfo. We can ignore the return
1945 value of ptrace; if it fails, we'll skip
1946 PTRACE_SETSIGINFO. */
1947 if (WIFSTOPPED (lwp->last_status)
1948 && WSTOPSIG (lwp->last_status) == lwp->resume->sig)
1949 ptrace (PTRACE_GETSIGINFO, lwpid_of (lwp), 0, &p_sig->info);
1950
1951 lwp->pending_signals = p_sig;
1952 }
1953 }
5544ad89 1954
bd99dc85 1955 lwp->resume = NULL;
5544ad89 1956 return 0;
0d62e5e8
DJ
1957}
1958
1959static void
2bd7c093 1960linux_resume (struct thread_resume *resume_info, size_t n)
0d62e5e8 1961{
5544ad89 1962 int pending_flag;
2bd7c093 1963 struct thread_resume_array array = { resume_info, n };
c6ecbae5 1964
2bd7c093 1965 find_inferior (&all_threads, linux_set_resume_request, &array);
5544ad89
DJ
1966
1967 /* If there is a thread which would otherwise be resumed, which
1968 has a pending status, then don't resume any threads - we can just
1969 report the pending status. Make sure to queue any signals
bd99dc85
PA
1970 that would otherwise be sent. In non-stop mode, we'll apply this
1971 logic to each thread individually. */
5544ad89 1972 pending_flag = 0;
bd99dc85
PA
1973 if (!non_stop)
1974 find_inferior (&all_lwps, resume_status_pending_p, &pending_flag);
5544ad89
DJ
1975
1976 if (debug_threads)
1977 {
1978 if (pending_flag)
1979 fprintf (stderr, "Not resuming, pending status\n");
1980 else
1981 fprintf (stderr, "Resuming, no pending status\n");
1982 }
1983
bd99dc85 1984 find_inferior (&all_threads, linux_resume_one_thread, &pending_flag);
0d62e5e8
DJ
1985}
1986
1987#ifdef HAVE_LINUX_USRREGS
da6d8c04
DJ
1988
1989int
0a30fbc4 1990register_addr (int regnum)
da6d8c04
DJ
1991{
1992 int addr;
1993
2ec06d2e 1994 if (regnum < 0 || regnum >= the_low_target.num_regs)
da6d8c04
DJ
1995 error ("Invalid register number %d.", regnum);
1996
2ec06d2e 1997 addr = the_low_target.regmap[regnum];
da6d8c04
DJ
1998
1999 return addr;
2000}
2001
58caa3dc 2002/* Fetch one register. */
da6d8c04
DJ
2003static void
2004fetch_register (int regno)
2005{
2006 CORE_ADDR regaddr;
48d93c75 2007 int i, size;
0d62e5e8 2008 char *buf;
95954743 2009 int pid;
da6d8c04 2010
2ec06d2e 2011 if (regno >= the_low_target.num_regs)
0a30fbc4 2012 return;
2ec06d2e 2013 if ((*the_low_target.cannot_fetch_register) (regno))
0a30fbc4 2014 return;
da6d8c04 2015
0a30fbc4
DJ
2016 regaddr = register_addr (regno);
2017 if (regaddr == -1)
2018 return;
95954743
PA
2019
2020 pid = lwpid_of (get_thread_lwp (current_inferior));
1b3f6016
PA
2021 size = ((register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
2022 & - sizeof (PTRACE_XFER_TYPE));
48d93c75
UW
2023 buf = alloca (size);
2024 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
da6d8c04
DJ
2025 {
2026 errno = 0;
0d62e5e8 2027 *(PTRACE_XFER_TYPE *) (buf + i) =
95954743 2028 ptrace (PTRACE_PEEKUSER, pid, (PTRACE_ARG3_TYPE) regaddr, 0);
da6d8c04
DJ
2029 regaddr += sizeof (PTRACE_XFER_TYPE);
2030 if (errno != 0)
2031 {
2032 /* Warning, not error, in case we are attached; sometimes the
2033 kernel doesn't let us at the registers. */
2034 char *err = strerror (errno);
2035 char *msg = alloca (strlen (err) + 128);
2036 sprintf (msg, "reading register %d: %s", regno, err);
2037 error (msg);
2038 goto error_exit;
2039 }
2040 }
ee1a7ae4
UW
2041
2042 if (the_low_target.supply_ptrace_register)
2043 the_low_target.supply_ptrace_register (regno, buf);
5a1f5858
DJ
2044 else
2045 supply_register (regno, buf);
0d62e5e8 2046
da6d8c04
DJ
2047error_exit:;
2048}
2049
2050/* Fetch all registers, or just one, from the child process. */
58caa3dc
DJ
2051static void
2052usr_fetch_inferior_registers (int regno)
da6d8c04
DJ
2053{
2054 if (regno == -1 || regno == 0)
2ec06d2e 2055 for (regno = 0; regno < the_low_target.num_regs; regno++)
da6d8c04
DJ
2056 fetch_register (regno);
2057 else
2058 fetch_register (regno);
2059}
2060
2061/* Store our register values back into the inferior.
2062 If REGNO is -1, do this for all registers.
2063 Otherwise, REGNO specifies which register (so we can save time). */
58caa3dc
DJ
2064static void
2065usr_store_inferior_registers (int regno)
da6d8c04
DJ
2066{
2067 CORE_ADDR regaddr;
48d93c75 2068 int i, size;
0d62e5e8 2069 char *buf;
55ac2b99 2070 int pid;
da6d8c04
DJ
2071
2072 if (regno >= 0)
2073 {
2ec06d2e 2074 if (regno >= the_low_target.num_regs)
0a30fbc4
DJ
2075 return;
2076
bc1e36ca 2077 if ((*the_low_target.cannot_store_register) (regno) == 1)
0a30fbc4
DJ
2078 return;
2079
2080 regaddr = register_addr (regno);
2081 if (regaddr == -1)
da6d8c04 2082 return;
da6d8c04 2083 errno = 0;
48d93c75
UW
2084 size = (register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
2085 & - sizeof (PTRACE_XFER_TYPE);
2086 buf = alloca (size);
2087 memset (buf, 0, size);
ee1a7ae4
UW
2088
2089 if (the_low_target.collect_ptrace_register)
2090 the_low_target.collect_ptrace_register (regno, buf);
5a1f5858
DJ
2091 else
2092 collect_register (regno, buf);
ee1a7ae4 2093
95954743 2094 pid = lwpid_of (get_thread_lwp (current_inferior));
48d93c75 2095 for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
da6d8c04 2096 {
0a30fbc4 2097 errno = 0;
95954743 2098 ptrace (PTRACE_POKEUSER, pid, (PTRACE_ARG3_TYPE) regaddr,
2ff29de4 2099 *(PTRACE_XFER_TYPE *) (buf + i));
da6d8c04
DJ
2100 if (errno != 0)
2101 {
1b3f6016
PA
2102 /* At this point, ESRCH should mean the process is
2103 already gone, in which case we simply ignore attempts
2104 to change its registers. See also the related
2105 comment in linux_resume_one_lwp. */
3221518c
UW
2106 if (errno == ESRCH)
2107 return;
2108
bc1e36ca
DJ
2109 if ((*the_low_target.cannot_store_register) (regno) == 0)
2110 {
2111 char *err = strerror (errno);
2112 char *msg = alloca (strlen (err) + 128);
2113 sprintf (msg, "writing register %d: %s",
2114 regno, err);
2115 error (msg);
2116 return;
2117 }
da6d8c04 2118 }
2ff29de4 2119 regaddr += sizeof (PTRACE_XFER_TYPE);
da6d8c04 2120 }
da6d8c04
DJ
2121 }
2122 else
2ec06d2e 2123 for (regno = 0; regno < the_low_target.num_regs; regno++)
0d62e5e8 2124 usr_store_inferior_registers (regno);
da6d8c04 2125}
58caa3dc
DJ
2126#endif /* HAVE_LINUX_USRREGS */
2127
2128
2129
2130#ifdef HAVE_LINUX_REGSETS
2131
2132static int
0d62e5e8 2133regsets_fetch_inferior_registers ()
58caa3dc
DJ
2134{
2135 struct regset_info *regset;
e9d25b98 2136 int saw_general_regs = 0;
95954743 2137 int pid;
58caa3dc
DJ
2138
2139 regset = target_regsets;
2140
95954743 2141 pid = lwpid_of (get_thread_lwp (current_inferior));
58caa3dc
DJ
2142 while (regset->size >= 0)
2143 {
2144 void *buf;
2145 int res;
2146
52fa2412 2147 if (regset->size == 0 || disabled_regsets[regset - target_regsets])
58caa3dc
DJ
2148 {
2149 regset ++;
2150 continue;
2151 }
2152
bca929d3 2153 buf = xmalloc (regset->size);
dfb64f85 2154#ifndef __sparc__
95954743 2155 res = ptrace (regset->get_request, pid, 0, buf);
dfb64f85 2156#else
95954743 2157 res = ptrace (regset->get_request, pid, buf, 0);
dfb64f85 2158#endif
58caa3dc
DJ
2159 if (res < 0)
2160 {
2161 if (errno == EIO)
2162 {
52fa2412
UW
2163 /* If we get EIO on a regset, do not try it again for
2164 this process. */
2165 disabled_regsets[regset - target_regsets] = 1;
fdeb2a12 2166 free (buf);
52fa2412 2167 continue;
58caa3dc
DJ
2168 }
2169 else
2170 {
0d62e5e8 2171 char s[256];
95954743
PA
2172 sprintf (s, "ptrace(regsets_fetch_inferior_registers) PID=%d",
2173 pid);
0d62e5e8 2174 perror (s);
58caa3dc
DJ
2175 }
2176 }
e9d25b98
DJ
2177 else if (regset->type == GENERAL_REGS)
2178 saw_general_regs = 1;
58caa3dc
DJ
2179 regset->store_function (buf);
2180 regset ++;
fdeb2a12 2181 free (buf);
58caa3dc 2182 }
e9d25b98
DJ
2183 if (saw_general_regs)
2184 return 0;
2185 else
2186 return 1;
58caa3dc
DJ
2187}
2188
2189static int
0d62e5e8 2190regsets_store_inferior_registers ()
58caa3dc
DJ
2191{
2192 struct regset_info *regset;
e9d25b98 2193 int saw_general_regs = 0;
95954743 2194 int pid;
58caa3dc
DJ
2195
2196 regset = target_regsets;
2197
95954743 2198 pid = lwpid_of (get_thread_lwp (current_inferior));
58caa3dc
DJ
2199 while (regset->size >= 0)
2200 {
2201 void *buf;
2202 int res;
2203
52fa2412 2204 if (regset->size == 0 || disabled_regsets[regset - target_regsets])
58caa3dc
DJ
2205 {
2206 regset ++;
2207 continue;
2208 }
2209
bca929d3 2210 buf = xmalloc (regset->size);
545587ee
DJ
2211
2212 /* First fill the buffer with the current register set contents,
2213 in case there are any items in the kernel's regset that are
2214 not in gdbserver's regcache. */
dfb64f85 2215#ifndef __sparc__
95954743 2216 res = ptrace (regset->get_request, pid, 0, buf);
dfb64f85 2217#else
95954743 2218 res = ptrace (regset->get_request, pid, buf, 0);
dfb64f85 2219#endif
545587ee
DJ
2220
2221 if (res == 0)
2222 {
2223 /* Then overlay our cached registers on that. */
2224 regset->fill_function (buf);
2225
2226 /* Only now do we write the register set. */
dfb64f85 2227#ifndef __sparc__
95954743 2228 res = ptrace (regset->set_request, pid, 0, buf);
dfb64f85 2229#else
95954743 2230 res = ptrace (regset->set_request, pid, buf, 0);
dfb64f85 2231#endif
545587ee
DJ
2232 }
2233
58caa3dc
DJ
2234 if (res < 0)
2235 {
2236 if (errno == EIO)
2237 {
52fa2412
UW
2238 /* If we get EIO on a regset, do not try it again for
2239 this process. */
2240 disabled_regsets[regset - target_regsets] = 1;
fdeb2a12 2241 free (buf);
52fa2412 2242 continue;
58caa3dc 2243 }
3221518c
UW
2244 else if (errno == ESRCH)
2245 {
1b3f6016
PA
2246 /* At this point, ESRCH should mean the process is
2247 already gone, in which case we simply ignore attempts
2248 to change its registers. See also the related
2249 comment in linux_resume_one_lwp. */
fdeb2a12 2250 free (buf);
3221518c
UW
2251 return 0;
2252 }
58caa3dc
DJ
2253 else
2254 {
ce3a066d 2255 perror ("Warning: ptrace(regsets_store_inferior_registers)");
58caa3dc
DJ
2256 }
2257 }
e9d25b98
DJ
2258 else if (regset->type == GENERAL_REGS)
2259 saw_general_regs = 1;
58caa3dc 2260 regset ++;
09ec9b38 2261 free (buf);
58caa3dc 2262 }
e9d25b98
DJ
2263 if (saw_general_regs)
2264 return 0;
2265 else
2266 return 1;
ce3a066d 2267 return 0;
58caa3dc
DJ
2268}
2269
2270#endif /* HAVE_LINUX_REGSETS */
2271
2272
2273void
ce3a066d 2274linux_fetch_registers (int regno)
58caa3dc
DJ
2275{
2276#ifdef HAVE_LINUX_REGSETS
52fa2412
UW
2277 if (regsets_fetch_inferior_registers () == 0)
2278 return;
58caa3dc
DJ
2279#endif
2280#ifdef HAVE_LINUX_USRREGS
2281 usr_fetch_inferior_registers (regno);
2282#endif
2283}
2284
2285void
ce3a066d 2286linux_store_registers (int regno)
58caa3dc
DJ
2287{
2288#ifdef HAVE_LINUX_REGSETS
52fa2412
UW
2289 if (regsets_store_inferior_registers () == 0)
2290 return;
58caa3dc
DJ
2291#endif
2292#ifdef HAVE_LINUX_USRREGS
2293 usr_store_inferior_registers (regno);
2294#endif
2295}
2296
da6d8c04 2297
da6d8c04
DJ
2298/* Copy LEN bytes from inferior's memory starting at MEMADDR
2299 to debugger memory starting at MYADDR. */
2300
c3e735a6 2301static int
f450004a 2302linux_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
da6d8c04
DJ
2303{
2304 register int i;
2305 /* Round starting address down to longword boundary. */
2306 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
2307 /* Round ending address up; get number of longwords that makes. */
aa691b87
RM
2308 register int count
2309 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
da6d8c04
DJ
2310 / sizeof (PTRACE_XFER_TYPE);
2311 /* Allocate buffer of that many longwords. */
aa691b87 2312 register PTRACE_XFER_TYPE *buffer
da6d8c04 2313 = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
fd462a61
DJ
2314 int fd;
2315 char filename[64];
95954743 2316 int pid = lwpid_of (get_thread_lwp (current_inferior));
fd462a61
DJ
2317
2318 /* Try using /proc. Don't bother for one word. */
2319 if (len >= 3 * sizeof (long))
2320 {
2321 /* We could keep this file open and cache it - possibly one per
2322 thread. That requires some juggling, but is even faster. */
95954743 2323 sprintf (filename, "/proc/%d/mem", pid);
fd462a61
DJ
2324 fd = open (filename, O_RDONLY | O_LARGEFILE);
2325 if (fd == -1)
2326 goto no_proc;
2327
2328 /* If pread64 is available, use it. It's faster if the kernel
2329 supports it (only one syscall), and it's 64-bit safe even on
2330 32-bit platforms (for instance, SPARC debugging a SPARC64
2331 application). */
2332#ifdef HAVE_PREAD64
2333 if (pread64 (fd, myaddr, len, memaddr) != len)
2334#else
2335 if (lseek (fd, memaddr, SEEK_SET) == -1 || read (fd, memaddr, len) != len)
2336#endif
2337 {
2338 close (fd);
2339 goto no_proc;
2340 }
2341
2342 close (fd);
2343 return 0;
2344 }
da6d8c04 2345
fd462a61 2346 no_proc:
da6d8c04
DJ
2347 /* Read all the longwords */
2348 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
2349 {
c3e735a6 2350 errno = 0;
95954743 2351 buffer[i] = ptrace (PTRACE_PEEKTEXT, pid, (PTRACE_ARG3_TYPE) addr, 0);
c3e735a6
DJ
2352 if (errno)
2353 return errno;
da6d8c04
DJ
2354 }
2355
2356 /* Copy appropriate bytes out of the buffer. */
1b3f6016
PA
2357 memcpy (myaddr,
2358 (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
2359 len);
c3e735a6
DJ
2360
2361 return 0;
da6d8c04
DJ
2362}
2363
2364/* Copy LEN bytes of data from debugger memory at MYADDR
2365 to inferior's memory at MEMADDR.
2366 On failure (cannot write the inferior)
2367 returns the value of errno. */
2368
ce3a066d 2369static int
f450004a 2370linux_write_memory (CORE_ADDR memaddr, const unsigned char *myaddr, int len)
da6d8c04
DJ
2371{
2372 register int i;
2373 /* Round starting address down to longword boundary. */
2374 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
2375 /* Round ending address up; get number of longwords that makes. */
2376 register int count
2377 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1) / sizeof (PTRACE_XFER_TYPE);
2378 /* Allocate buffer of that many longwords. */
2379 register PTRACE_XFER_TYPE *buffer = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
95954743 2380 int pid = lwpid_of (get_thread_lwp (current_inferior));
da6d8c04 2381
0d62e5e8
DJ
2382 if (debug_threads)
2383 {
2384 fprintf (stderr, "Writing %02x to %08lx\n", (unsigned)myaddr[0], (long)memaddr);
2385 }
2386
da6d8c04
DJ
2387 /* Fill start and end extra bytes of buffer with existing memory data. */
2388
95954743 2389 buffer[0] = ptrace (PTRACE_PEEKTEXT, pid, (PTRACE_ARG3_TYPE) addr, 0);
da6d8c04
DJ
2390
2391 if (count > 1)
2392 {
2393 buffer[count - 1]
95954743 2394 = ptrace (PTRACE_PEEKTEXT, pid,
d844cde6
DJ
2395 (PTRACE_ARG3_TYPE) (addr + (count - 1)
2396 * sizeof (PTRACE_XFER_TYPE)),
2397 0);
da6d8c04
DJ
2398 }
2399
2400 /* Copy data to be written over corresponding part of buffer */
2401
2402 memcpy ((char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), myaddr, len);
2403
2404 /* Write the entire buffer. */
2405
2406 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
2407 {
2408 errno = 0;
95954743 2409 ptrace (PTRACE_POKETEXT, pid, (PTRACE_ARG3_TYPE) addr, buffer[i]);
da6d8c04
DJ
2410 if (errno)
2411 return errno;
2412 }
2413
2414 return 0;
2415}
2f2893d9 2416
24a09b5f
DJ
2417static int linux_supports_tracefork_flag;
2418
51c2684e 2419/* Helper functions for linux_test_for_tracefork, called via clone (). */
24a09b5f 2420
51c2684e
DJ
2421static int
2422linux_tracefork_grandchild (void *arg)
2423{
2424 _exit (0);
2425}
2426
7407e2de
AS
2427#define STACK_SIZE 4096
2428
51c2684e
DJ
2429static int
2430linux_tracefork_child (void *arg)
24a09b5f
DJ
2431{
2432 ptrace (PTRACE_TRACEME, 0, 0, 0);
2433 kill (getpid (), SIGSTOP);
7407e2de
AS
2434#ifdef __ia64__
2435 __clone2 (linux_tracefork_grandchild, arg, STACK_SIZE,
2436 CLONE_VM | SIGCHLD, NULL);
2437#else
2438 clone (linux_tracefork_grandchild, arg + STACK_SIZE,
2439 CLONE_VM | SIGCHLD, NULL);
2440#endif
24a09b5f
DJ
2441 _exit (0);
2442}
2443
bd99dc85
PA
2444/* Wrapper function for waitpid which handles EINTR, and emulates
2445 __WALL for systems where that is not available. */
24a09b5f
DJ
2446
2447static int
2448my_waitpid (int pid, int *status, int flags)
2449{
bd99dc85
PA
2450 int ret, out_errno;
2451
2452 if (debug_threads)
2453 fprintf (stderr, "my_waitpid (%d, 0x%x)\n", pid, flags);
2454
2455 if (flags & __WALL)
24a09b5f 2456 {
bd99dc85
PA
2457 sigset_t block_mask, org_mask, wake_mask;
2458 int wnohang;
2459
2460 wnohang = (flags & WNOHANG) != 0;
2461 flags &= ~(__WALL | __WCLONE);
2462 flags |= WNOHANG;
2463
2464 /* Block all signals while here. This avoids knowing about
2465 LinuxThread's signals. */
2466 sigfillset (&block_mask);
2467 sigprocmask (SIG_BLOCK, &block_mask, &org_mask);
2468
2469 /* ... except during the sigsuspend below. */
2470 sigemptyset (&wake_mask);
2471
2472 while (1)
2473 {
2474 /* Since all signals are blocked, there's no need to check
2475 for EINTR here. */
2476 ret = waitpid (pid, status, flags);
2477 out_errno = errno;
2478
2479 if (ret == -1 && out_errno != ECHILD)
2480 break;
2481 else if (ret > 0)
2482 break;
2483
2484 if (flags & __WCLONE)
2485 {
2486 /* We've tried both flavors now. If WNOHANG is set,
2487 there's nothing else to do, just bail out. */
2488 if (wnohang)
2489 break;
2490
2491 if (debug_threads)
2492 fprintf (stderr, "blocking\n");
2493
2494 /* Block waiting for signals. */
2495 sigsuspend (&wake_mask);
2496 }
2497
2498 flags ^= __WCLONE;
2499 }
2500
2501 sigprocmask (SIG_SETMASK, &org_mask, NULL);
24a09b5f 2502 }
bd99dc85
PA
2503 else
2504 {
2505 do
2506 ret = waitpid (pid, status, flags);
2507 while (ret == -1 && errno == EINTR);
2508 out_errno = errno;
2509 }
2510
2511 if (debug_threads)
2512 fprintf (stderr, "my_waitpid (%d, 0x%x): status(%x), %d\n",
2513 pid, flags, status ? *status : -1, ret);
24a09b5f 2514
bd99dc85 2515 errno = out_errno;
24a09b5f
DJ
2516 return ret;
2517}
2518
2519/* Determine if PTRACE_O_TRACEFORK can be used to follow fork events. Make
2520 sure that we can enable the option, and that it had the desired
2521 effect. */
2522
2523static void
2524linux_test_for_tracefork (void)
2525{
2526 int child_pid, ret, status;
2527 long second_pid;
bca929d3 2528 char *stack = xmalloc (STACK_SIZE * 4);
24a09b5f
DJ
2529
2530 linux_supports_tracefork_flag = 0;
2531
51c2684e 2532 /* Use CLONE_VM instead of fork, to support uClinux (no MMU). */
7407e2de
AS
2533#ifdef __ia64__
2534 child_pid = __clone2 (linux_tracefork_child, stack, STACK_SIZE,
2535 CLONE_VM | SIGCHLD, stack + STACK_SIZE * 2);
2536#else
2537 child_pid = clone (linux_tracefork_child, stack + STACK_SIZE,
2538 CLONE_VM | SIGCHLD, stack + STACK_SIZE * 2);
2539#endif
24a09b5f 2540 if (child_pid == -1)
51c2684e 2541 perror_with_name ("clone");
24a09b5f
DJ
2542
2543 ret = my_waitpid (child_pid, &status, 0);
2544 if (ret == -1)
2545 perror_with_name ("waitpid");
2546 else if (ret != child_pid)
2547 error ("linux_test_for_tracefork: waitpid: unexpected result %d.", ret);
2548 if (! WIFSTOPPED (status))
2549 error ("linux_test_for_tracefork: waitpid: unexpected status %d.", status);
2550
2551 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0, PTRACE_O_TRACEFORK);
2552 if (ret != 0)
2553 {
2554 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
2555 if (ret != 0)
2556 {
2557 warning ("linux_test_for_tracefork: failed to kill child");
2558 return;
2559 }
2560
2561 ret = my_waitpid (child_pid, &status, 0);
2562 if (ret != child_pid)
2563 warning ("linux_test_for_tracefork: failed to wait for killed child");
2564 else if (!WIFSIGNALED (status))
2565 warning ("linux_test_for_tracefork: unexpected wait status 0x%x from "
2566 "killed child", status);
2567
2568 return;
2569 }
2570
2571 ret = ptrace (PTRACE_CONT, child_pid, 0, 0);
2572 if (ret != 0)
2573 warning ("linux_test_for_tracefork: failed to resume child");
2574
2575 ret = my_waitpid (child_pid, &status, 0);
2576
2577 if (ret == child_pid && WIFSTOPPED (status)
2578 && status >> 16 == PTRACE_EVENT_FORK)
2579 {
2580 second_pid = 0;
2581 ret = ptrace (PTRACE_GETEVENTMSG, child_pid, 0, &second_pid);
2582 if (ret == 0 && second_pid != 0)
2583 {
2584 int second_status;
2585
2586 linux_supports_tracefork_flag = 1;
2587 my_waitpid (second_pid, &second_status, 0);
2588 ret = ptrace (PTRACE_KILL, second_pid, 0, 0);
2589 if (ret != 0)
2590 warning ("linux_test_for_tracefork: failed to kill second child");
2591 my_waitpid (second_pid, &status, 0);
2592 }
2593 }
2594 else
2595 warning ("linux_test_for_tracefork: unexpected result from waitpid "
2596 "(%d, status 0x%x)", ret, status);
2597
2598 do
2599 {
2600 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
2601 if (ret != 0)
2602 warning ("linux_test_for_tracefork: failed to kill child");
2603 my_waitpid (child_pid, &status, 0);
2604 }
2605 while (WIFSTOPPED (status));
51c2684e
DJ
2606
2607 free (stack);
24a09b5f
DJ
2608}
2609
2610
2f2893d9
DJ
2611static void
2612linux_look_up_symbols (void)
2613{
0d62e5e8 2614#ifdef USE_THREAD_DB
95954743
PA
2615 struct process_info *proc = current_process ();
2616
2617 if (proc->private->thread_db_active)
0d62e5e8
DJ
2618 return;
2619
95954743
PA
2620 proc->private->thread_db_active
2621 = thread_db_init (!linux_supports_tracefork_flag);
0d62e5e8
DJ
2622#endif
2623}
2624
e5379b03 2625static void
ef57601b 2626linux_request_interrupt (void)
e5379b03 2627{
a1928bad 2628 extern unsigned long signal_pid;
e5379b03 2629
95954743
PA
2630 if (!ptid_equal (cont_thread, null_ptid)
2631 && !ptid_equal (cont_thread, minus_one_ptid))
e5379b03 2632 {
54a0b537 2633 struct lwp_info *lwp;
bd99dc85 2634 int lwpid;
e5379b03 2635
54a0b537 2636 lwp = get_thread_lwp (current_inferior);
bd99dc85
PA
2637 lwpid = lwpid_of (lwp);
2638 kill_lwp (lwpid, SIGINT);
e5379b03
DJ
2639 }
2640 else
ef57601b 2641 kill_lwp (signal_pid, SIGINT);
e5379b03
DJ
2642}
2643
aa691b87
RM
2644/* Copy LEN bytes from inferior's auxiliary vector starting at OFFSET
2645 to debugger memory starting at MYADDR. */
2646
2647static int
f450004a 2648linux_read_auxv (CORE_ADDR offset, unsigned char *myaddr, unsigned int len)
aa691b87
RM
2649{
2650 char filename[PATH_MAX];
2651 int fd, n;
95954743 2652 int pid = lwpid_of (get_thread_lwp (current_inferior));
aa691b87 2653
95954743 2654 snprintf (filename, sizeof filename, "/proc/%d/auxv", pid);
aa691b87
RM
2655
2656 fd = open (filename, O_RDONLY);
2657 if (fd < 0)
2658 return -1;
2659
2660 if (offset != (CORE_ADDR) 0
2661 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
2662 n = -1;
2663 else
2664 n = read (fd, myaddr, len);
2665
2666 close (fd);
2667
2668 return n;
2669}
2670
e013ee27
OF
2671/* These watchpoint related wrapper functions simply pass on the function call
2672 if the target has registered a corresponding function. */
2673
2674static int
2675linux_insert_watchpoint (char type, CORE_ADDR addr, int len)
2676{
2677 if (the_low_target.insert_watchpoint != NULL)
2678 return the_low_target.insert_watchpoint (type, addr, len);
2679 else
2680 /* Unsupported (see target.h). */
2681 return 1;
2682}
2683
2684static int
2685linux_remove_watchpoint (char type, CORE_ADDR addr, int len)
2686{
2687 if (the_low_target.remove_watchpoint != NULL)
2688 return the_low_target.remove_watchpoint (type, addr, len);
2689 else
2690 /* Unsupported (see target.h). */
2691 return 1;
2692}
2693
2694static int
2695linux_stopped_by_watchpoint (void)
2696{
2697 if (the_low_target.stopped_by_watchpoint != NULL)
2698 return the_low_target.stopped_by_watchpoint ();
2699 else
2700 return 0;
2701}
2702
2703static CORE_ADDR
2704linux_stopped_data_address (void)
2705{
2706 if (the_low_target.stopped_data_address != NULL)
2707 return the_low_target.stopped_data_address ();
2708 else
2709 return 0;
2710}
2711
42c81e2a 2712#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437
NS
2713#if defined(__mcoldfire__)
2714/* These should really be defined in the kernel's ptrace.h header. */
2715#define PT_TEXT_ADDR 49*4
2716#define PT_DATA_ADDR 50*4
2717#define PT_TEXT_END_ADDR 51*4
2718#endif
2719
2720/* Under uClinux, programs are loaded at non-zero offsets, which we need
2721 to tell gdb about. */
2722
2723static int
2724linux_read_offsets (CORE_ADDR *text_p, CORE_ADDR *data_p)
2725{
2726#if defined(PT_TEXT_ADDR) && defined(PT_DATA_ADDR) && defined(PT_TEXT_END_ADDR)
2727 unsigned long text, text_end, data;
bd99dc85 2728 int pid = lwpid_of (get_thread_lwp (current_inferior));
52fb6437
NS
2729
2730 errno = 0;
2731
2732 text = ptrace (PTRACE_PEEKUSER, pid, (long)PT_TEXT_ADDR, 0);
2733 text_end = ptrace (PTRACE_PEEKUSER, pid, (long)PT_TEXT_END_ADDR, 0);
2734 data = ptrace (PTRACE_PEEKUSER, pid, (long)PT_DATA_ADDR, 0);
2735
2736 if (errno == 0)
2737 {
2738 /* Both text and data offsets produced at compile-time (and so
1b3f6016
PA
2739 used by gdb) are relative to the beginning of the program,
2740 with the data segment immediately following the text segment.
2741 However, the actual runtime layout in memory may put the data
2742 somewhere else, so when we send gdb a data base-address, we
2743 use the real data base address and subtract the compile-time
2744 data base-address from it (which is just the length of the
2745 text segment). BSS immediately follows data in both
2746 cases. */
52fb6437
NS
2747 *text_p = text;
2748 *data_p = data - (text_end - text);
1b3f6016 2749
52fb6437
NS
2750 return 1;
2751 }
2752#endif
2753 return 0;
2754}
2755#endif
2756
07e059b5
VP
2757static int
2758linux_qxfer_osdata (const char *annex,
1b3f6016
PA
2759 unsigned char *readbuf, unsigned const char *writebuf,
2760 CORE_ADDR offset, int len)
07e059b5
VP
2761{
2762 /* We make the process list snapshot when the object starts to be
2763 read. */
2764 static const char *buf;
2765 static long len_avail = -1;
2766 static struct buffer buffer;
2767
2768 DIR *dirp;
2769
2770 if (strcmp (annex, "processes") != 0)
2771 return 0;
2772
2773 if (!readbuf || writebuf)
2774 return 0;
2775
2776 if (offset == 0)
2777 {
2778 if (len_avail != -1 && len_avail != 0)
2779 buffer_free (&buffer);
2780 len_avail = 0;
2781 buf = NULL;
2782 buffer_init (&buffer);
2783 buffer_grow_str (&buffer, "<osdata type=\"processes\">");
2784
2785 dirp = opendir ("/proc");
2786 if (dirp)
2787 {
1b3f6016
PA
2788 struct dirent *dp;
2789 while ((dp = readdir (dirp)) != NULL)
2790 {
2791 struct stat statbuf;
2792 char procentry[sizeof ("/proc/4294967295")];
2793
2794 if (!isdigit (dp->d_name[0])
2795 || strlen (dp->d_name) > sizeof ("4294967295") - 1)
2796 continue;
2797
2798 sprintf (procentry, "/proc/%s", dp->d_name);
2799 if (stat (procentry, &statbuf) == 0
2800 && S_ISDIR (statbuf.st_mode))
2801 {
2802 char pathname[128];
2803 FILE *f;
2804 char cmd[MAXPATHLEN + 1];
2805 struct passwd *entry;
2806
2807 sprintf (pathname, "/proc/%s/cmdline", dp->d_name);
2808 entry = getpwuid (statbuf.st_uid);
2809
2810 if ((f = fopen (pathname, "r")) != NULL)
2811 {
2812 size_t len = fread (cmd, 1, sizeof (cmd) - 1, f);
2813 if (len > 0)
2814 {
2815 int i;
2816 for (i = 0; i < len; i++)
2817 if (cmd[i] == '\0')
2818 cmd[i] = ' ';
2819 cmd[len] = '\0';
2820
2821 buffer_xml_printf (
07e059b5
VP
2822 &buffer,
2823 "<item>"
2824 "<column name=\"pid\">%s</column>"
2825 "<column name=\"user\">%s</column>"
2826 "<column name=\"command\">%s</column>"
2827 "</item>",
2828 dp->d_name,
2829 entry ? entry->pw_name : "?",
2830 cmd);
1b3f6016
PA
2831 }
2832 fclose (f);
2833 }
2834 }
2835 }
07e059b5 2836
1b3f6016 2837 closedir (dirp);
07e059b5
VP
2838 }
2839 buffer_grow_str0 (&buffer, "</osdata>\n");
2840 buf = buffer_finish (&buffer);
2841 len_avail = strlen (buf);
2842 }
2843
2844 if (offset >= len_avail)
2845 {
2846 /* Done. Get rid of the data. */
2847 buffer_free (&buffer);
2848 buf = NULL;
2849 len_avail = 0;
2850 return 0;
2851 }
2852
2853 if (len > len_avail - offset)
2854 len = len_avail - offset;
2855 memcpy (readbuf, buf + offset, len);
2856
2857 return len;
2858}
2859
d0722149
DE
2860/* Convert a native/host siginfo object, into/from the siginfo in the
2861 layout of the inferiors' architecture. */
2862
2863static void
2864siginfo_fixup (struct siginfo *siginfo, void *inf_siginfo, int direction)
2865{
2866 int done = 0;
2867
2868 if (the_low_target.siginfo_fixup != NULL)
2869 done = the_low_target.siginfo_fixup (siginfo, inf_siginfo, direction);
2870
2871 /* If there was no callback, or the callback didn't do anything,
2872 then just do a straight memcpy. */
2873 if (!done)
2874 {
2875 if (direction == 1)
2876 memcpy (siginfo, inf_siginfo, sizeof (struct siginfo));
2877 else
2878 memcpy (inf_siginfo, siginfo, sizeof (struct siginfo));
2879 }
2880}
2881
4aa995e1
PA
2882static int
2883linux_xfer_siginfo (const char *annex, unsigned char *readbuf,
2884 unsigned const char *writebuf, CORE_ADDR offset, int len)
2885{
d0722149 2886 int pid;
4aa995e1 2887 struct siginfo siginfo;
d0722149 2888 char inf_siginfo[sizeof (struct siginfo)];
4aa995e1
PA
2889
2890 if (current_inferior == NULL)
2891 return -1;
2892
bd99dc85 2893 pid = lwpid_of (get_thread_lwp (current_inferior));
4aa995e1
PA
2894
2895 if (debug_threads)
d0722149 2896 fprintf (stderr, "%s siginfo for lwp %d.\n",
4aa995e1
PA
2897 readbuf != NULL ? "Reading" : "Writing",
2898 pid);
2899
2900 if (offset > sizeof (siginfo))
2901 return -1;
2902
2903 if (ptrace (PTRACE_GETSIGINFO, pid, 0, &siginfo) != 0)
2904 return -1;
2905
d0722149
DE
2906 /* When GDBSERVER is built as a 64-bit application, ptrace writes into
2907 SIGINFO an object with 64-bit layout. Since debugging a 32-bit
2908 inferior with a 64-bit GDBSERVER should look the same as debugging it
2909 with a 32-bit GDBSERVER, we need to convert it. */
2910 siginfo_fixup (&siginfo, inf_siginfo, 0);
2911
4aa995e1
PA
2912 if (offset + len > sizeof (siginfo))
2913 len = sizeof (siginfo) - offset;
2914
2915 if (readbuf != NULL)
d0722149 2916 memcpy (readbuf, inf_siginfo + offset, len);
4aa995e1
PA
2917 else
2918 {
d0722149
DE
2919 memcpy (inf_siginfo + offset, writebuf, len);
2920
2921 /* Convert back to ptrace layout before flushing it out. */
2922 siginfo_fixup (&siginfo, inf_siginfo, 1);
2923
4aa995e1
PA
2924 if (ptrace (PTRACE_SETSIGINFO, pid, 0, &siginfo) != 0)
2925 return -1;
2926 }
2927
2928 return len;
2929}
2930
bd99dc85
PA
2931/* SIGCHLD handler that serves two purposes: In non-stop/async mode,
2932 so we notice when children change state; as the handler for the
2933 sigsuspend in my_waitpid. */
2934
2935static void
2936sigchld_handler (int signo)
2937{
2938 int old_errno = errno;
2939
2940 if (debug_threads)
2941 /* fprintf is not async-signal-safe, so call write directly. */
2942 write (2, "sigchld_handler\n", sizeof ("sigchld_handler\n") - 1);
2943
2944 if (target_is_async_p ())
2945 async_file_mark (); /* trigger a linux_wait */
2946
2947 errno = old_errno;
2948}
2949
2950static int
2951linux_supports_non_stop (void)
2952{
2953 return 1;
2954}
2955
2956static int
2957linux_async (int enable)
2958{
2959 int previous = (linux_event_pipe[0] != -1);
2960
2961 if (previous != enable)
2962 {
2963 sigset_t mask;
2964 sigemptyset (&mask);
2965 sigaddset (&mask, SIGCHLD);
2966
2967 sigprocmask (SIG_BLOCK, &mask, NULL);
2968
2969 if (enable)
2970 {
2971 if (pipe (linux_event_pipe) == -1)
2972 fatal ("creating event pipe failed.");
2973
2974 fcntl (linux_event_pipe[0], F_SETFL, O_NONBLOCK);
2975 fcntl (linux_event_pipe[1], F_SETFL, O_NONBLOCK);
2976
2977 /* Register the event loop handler. */
2978 add_file_handler (linux_event_pipe[0],
2979 handle_target_event, NULL);
2980
2981 /* Always trigger a linux_wait. */
2982 async_file_mark ();
2983 }
2984 else
2985 {
2986 delete_file_handler (linux_event_pipe[0]);
2987
2988 close (linux_event_pipe[0]);
2989 close (linux_event_pipe[1]);
2990 linux_event_pipe[0] = -1;
2991 linux_event_pipe[1] = -1;
2992 }
2993
2994 sigprocmask (SIG_UNBLOCK, &mask, NULL);
2995 }
2996
2997 return previous;
2998}
2999
3000static int
3001linux_start_non_stop (int nonstop)
3002{
3003 /* Register or unregister from event-loop accordingly. */
3004 linux_async (nonstop);
3005 return 0;
3006}
3007
ce3a066d
DJ
3008static struct target_ops linux_target_ops = {
3009 linux_create_inferior,
3010 linux_attach,
3011 linux_kill,
6ad8ae5c 3012 linux_detach,
444d6139 3013 linux_join,
ce3a066d
DJ
3014 linux_thread_alive,
3015 linux_resume,
3016 linux_wait,
3017 linux_fetch_registers,
3018 linux_store_registers,
3019 linux_read_memory,
3020 linux_write_memory,
2f2893d9 3021 linux_look_up_symbols,
ef57601b 3022 linux_request_interrupt,
aa691b87 3023 linux_read_auxv,
e013ee27
OF
3024 linux_insert_watchpoint,
3025 linux_remove_watchpoint,
3026 linux_stopped_by_watchpoint,
3027 linux_stopped_data_address,
42c81e2a 3028#if defined(__UCLIBC__) && defined(HAS_NOMMU)
52fb6437 3029 linux_read_offsets,
dae5f5cf
DJ
3030#else
3031 NULL,
3032#endif
3033#ifdef USE_THREAD_DB
3034 thread_db_get_tls_address,
3035#else
3036 NULL,
52fb6437 3037#endif
59a016f0
PA
3038 NULL,
3039 hostio_last_error_from_errno,
07e059b5 3040 linux_qxfer_osdata,
4aa995e1 3041 linux_xfer_siginfo,
bd99dc85
PA
3042 linux_supports_non_stop,
3043 linux_async,
3044 linux_start_non_stop,
ce3a066d
DJ
3045};
3046
0d62e5e8
DJ
3047static void
3048linux_init_signals ()
3049{
3050 /* FIXME drow/2002-06-09: As above, we should check with LinuxThreads
3051 to find what the cancel signal actually is. */
254787d4 3052 signal (__SIGRTMIN+1, SIG_IGN);
0d62e5e8
DJ
3053}
3054
da6d8c04
DJ
3055void
3056initialize_low (void)
3057{
bd99dc85
PA
3058 struct sigaction sigchld_action;
3059 memset (&sigchld_action, 0, sizeof (sigchld_action));
ce3a066d 3060 set_target_ops (&linux_target_ops);
611cb4a5
DJ
3061 set_breakpoint_data (the_low_target.breakpoint,
3062 the_low_target.breakpoint_len);
0d62e5e8 3063 linux_init_signals ();
24a09b5f 3064 linux_test_for_tracefork ();
52fa2412
UW
3065#ifdef HAVE_LINUX_REGSETS
3066 for (num_regsets = 0; target_regsets[num_regsets].size >= 0; num_regsets++)
3067 ;
bca929d3 3068 disabled_regsets = xmalloc (num_regsets);
52fa2412 3069#endif
bd99dc85
PA
3070
3071 sigchld_action.sa_handler = sigchld_handler;
3072 sigemptyset (&sigchld_action.sa_mask);
3073 sigchld_action.sa_flags = SA_RESTART;
3074 sigaction (SIGCHLD, &sigchld_action, NULL);
da6d8c04 3075}