]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/linux-nat.c
gdb/
[thirdparty/binutils-gdb.git] / gdb / linux-nat.c
CommitLineData
3993f6b1 1/* GNU/Linux native-dependent code common to multiple platforms.
dba24537 2
0fb0cc75 3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
e26af52f 4 Free Software Foundation, Inc.
3993f6b1
DJ
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
3993f6b1
DJ
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
3993f6b1
DJ
20
21#include "defs.h"
22#include "inferior.h"
23#include "target.h"
d6b0e80f 24#include "gdb_string.h"
3993f6b1 25#include "gdb_wait.h"
d6b0e80f
AC
26#include "gdb_assert.h"
27#ifdef HAVE_TKILL_SYSCALL
28#include <unistd.h>
29#include <sys/syscall.h>
30#endif
3993f6b1 31#include <sys/ptrace.h>
0274a8ce 32#include "linux-nat.h"
ac264b3b 33#include "linux-fork.h"
d6b0e80f
AC
34#include "gdbthread.h"
35#include "gdbcmd.h"
36#include "regcache.h"
4f844a66 37#include "regset.h"
10d6c8cd
DJ
38#include "inf-ptrace.h"
39#include "auxv.h"
dba24537
AC
40#include <sys/param.h> /* for MAXPATHLEN */
41#include <sys/procfs.h> /* for elf_gregset etc. */
42#include "elf-bfd.h" /* for elfcore_write_* */
43#include "gregset.h" /* for gregset */
44#include "gdbcore.h" /* for get_exec_file */
45#include <ctype.h> /* for isdigit */
46#include "gdbthread.h" /* for struct thread_info etc. */
47#include "gdb_stat.h" /* for struct stat */
48#include <fcntl.h> /* for O_RDONLY */
b84876c2
PA
49#include "inf-loop.h"
50#include "event-loop.h"
51#include "event-top.h"
07e059b5
VP
52#include <pwd.h>
53#include <sys/types.h>
54#include "gdb_dirent.h"
55#include "xml-support.h"
dba24537 56
10568435
JK
57#ifdef HAVE_PERSONALITY
58# include <sys/personality.h>
59# if !HAVE_DECL_ADDR_NO_RANDOMIZE
60# define ADDR_NO_RANDOMIZE 0x0040000
61# endif
62#endif /* HAVE_PERSONALITY */
63
8a77dff3
VP
64/* This comment documents high-level logic of this file.
65
66Waiting for events in sync mode
67===============================
68
69When waiting for an event in a specific thread, we just use waitpid, passing
70the specific pid, and not passing WNOHANG.
71
72When waiting for an event in all threads, waitpid is not quite good. Prior to
73version 2.4, Linux can either wait for event in main thread, or in secondary
74threads. (2.4 has the __WALL flag). So, if we use blocking waitpid, we might
75miss an event. The solution is to use non-blocking waitpid, together with
76sigsuspend. First, we use non-blocking waitpid to get an event in the main
77process, if any. Second, we use non-blocking waitpid with the __WCLONED
78flag to check for events in cloned processes. If nothing is found, we use
79sigsuspend to wait for SIGCHLD. When SIGCHLD arrives, it means something
80happened to a child process -- and SIGCHLD will be delivered both for events
81in main debugged process and in cloned processes. As soon as we know there's
82an event, we get back to calling nonblocking waitpid with and without __WCLONED.
83
84Note that SIGCHLD should be blocked between waitpid and sigsuspend calls,
85so that we don't miss a signal. If SIGCHLD arrives in between, when it's
86blocked, the signal becomes pending and sigsuspend immediately
87notices it and returns.
88
89Waiting for events in async mode
90================================
91
92In async mode, GDB should always be ready to handle both user input and target
93events, so neither blocking waitpid nor sigsuspend are viable
94options. Instead, we should notify the GDB main event loop whenever there's
95unprocessed event from the target. The only way to notify this event loop is
96to make it wait on input from a pipe, and write something to the pipe whenever
97there's event. Obviously, if we fail to notify the event loop if there's
98target event, it's bad. If we notify the event loop when there's no event
99from target, linux-nat.c will detect that there's no event, actually, and
100report event of type TARGET_WAITKIND_IGNORE, but it will waste time and
101better avoided.
102
103The main design point is that every time GDB is outside linux-nat.c, we have a
104SIGCHLD handler installed that is called when something happens to the target
105and notifies the GDB event loop. Also, the event is extracted from the target
106using waitpid and stored for future use. Whenever GDB core decides to handle
107the event, and calls into linux-nat.c, we disable SIGCHLD and process things
108as in sync mode, except that before waitpid call we check if there are any
109previously read events.
110
111It could happen that during event processing, we'll try to get more events
112than there are events in the local queue, which will result to waitpid call.
113Those waitpid calls, while blocking, are guarantied to always have
114something for waitpid to return. E.g., stopping a thread with SIGSTOP, and
115waiting for the lwp to stop.
116
117The event loop is notified about new events using a pipe. SIGCHLD handler does
118waitpid and writes the results in to a pipe. GDB event loop has the other end
119of the pipe among the sources. When event loop starts to process the event
120and calls a function in linux-nat.c, all events from the pipe are transferred
121into a local queue and SIGCHLD is blocked. Further processing goes as in sync
122mode. Before we return from linux_nat_wait, we transfer all unprocessed events
123from local queue back to the pipe, so that when we get back to event loop,
124event loop will notice there's something more to do.
125
126SIGCHLD is blocked when we're inside target_wait, so that should we actually
127want to wait for some more events, SIGCHLD handler does not steal them from
128us. Technically, it would be possible to add new events to the local queue but
129it's about the same amount of work as blocking SIGCHLD.
130
131This moving of events from pipe into local queue and back into pipe when we
132enter/leave linux-nat.c is somewhat ugly. Unfortunately, GDB event loop is
133home-grown and incapable to wait on any queue.
134
135Use of signals
136==============
137
138We stop threads by sending a SIGSTOP. The use of SIGSTOP instead of another
139signal is not entirely significant; we just need for a signal to be delivered,
140so that we can intercept it. SIGSTOP's advantage is that it can not be
141blocked. A disadvantage is that it is not a real-time signal, so it can only
142be queued once; we do not keep track of other sources of SIGSTOP.
143
144Two other signals that can't be blocked are SIGCONT and SIGKILL. But we can't
145use them, because they have special behavior when the signal is generated -
146not when it is delivered. SIGCONT resumes the entire thread group and SIGKILL
147kills the entire thread group.
148
149A delivered SIGSTOP would stop the entire thread group, not just the thread we
150tkill'd. But we never let the SIGSTOP be delivered; we always intercept and
151cancel it (by PTRACE_CONT without passing SIGSTOP).
152
153We could use a real-time signal instead. This would solve those problems; we
154could use PTRACE_GETSIGINFO to locate the specific stop signals sent by GDB.
155But we would still have to have some support for SIGSTOP, since PTRACE_ATTACH
156generates it, and there are races with trying to find a signal that is not
157blocked. */
a0ef4274 158
dba24537
AC
159#ifndef O_LARGEFILE
160#define O_LARGEFILE 0
161#endif
0274a8ce 162
3993f6b1
DJ
163/* If the system headers did not provide the constants, hard-code the normal
164 values. */
165#ifndef PTRACE_EVENT_FORK
166
167#define PTRACE_SETOPTIONS 0x4200
168#define PTRACE_GETEVENTMSG 0x4201
169
170/* options set using PTRACE_SETOPTIONS */
171#define PTRACE_O_TRACESYSGOOD 0x00000001
172#define PTRACE_O_TRACEFORK 0x00000002
173#define PTRACE_O_TRACEVFORK 0x00000004
174#define PTRACE_O_TRACECLONE 0x00000008
175#define PTRACE_O_TRACEEXEC 0x00000010
9016a515
DJ
176#define PTRACE_O_TRACEVFORKDONE 0x00000020
177#define PTRACE_O_TRACEEXIT 0x00000040
3993f6b1
DJ
178
179/* Wait extended result codes for the above trace options. */
180#define PTRACE_EVENT_FORK 1
181#define PTRACE_EVENT_VFORK 2
182#define PTRACE_EVENT_CLONE 3
183#define PTRACE_EVENT_EXEC 4
c874c7fc 184#define PTRACE_EVENT_VFORK_DONE 5
9016a515 185#define PTRACE_EVENT_EXIT 6
3993f6b1
DJ
186
187#endif /* PTRACE_EVENT_FORK */
188
189/* We can't always assume that this flag is available, but all systems
190 with the ptrace event handlers also have __WALL, so it's safe to use
191 here. */
192#ifndef __WALL
193#define __WALL 0x40000000 /* Wait for any child. */
194#endif
195
02d3ff8c
UW
196#ifndef PTRACE_GETSIGINFO
197#define PTRACE_GETSIGINFO 0x4202
198#endif
199
10d6c8cd
DJ
200/* The single-threaded native GNU/Linux target_ops. We save a pointer for
201 the use of the multi-threaded target. */
202static struct target_ops *linux_ops;
f973ed9c 203static struct target_ops linux_ops_saved;
10d6c8cd 204
9f0bdab8
DJ
205/* The method to call, if any, when a new thread is attached. */
206static void (*linux_nat_new_thread) (ptid_t);
207
ac264b3b
MS
208/* The saved to_xfer_partial method, inherited from inf-ptrace.c.
209 Called by our to_xfer_partial. */
210static LONGEST (*super_xfer_partial) (struct target_ops *,
211 enum target_object,
212 const char *, gdb_byte *,
213 const gdb_byte *,
10d6c8cd
DJ
214 ULONGEST, LONGEST);
215
d6b0e80f 216static int debug_linux_nat;
920d2a44
AC
217static void
218show_debug_linux_nat (struct ui_file *file, int from_tty,
219 struct cmd_list_element *c, const char *value)
220{
221 fprintf_filtered (file, _("Debugging of GNU/Linux lwp module is %s.\n"),
222 value);
223}
d6b0e80f 224
b84876c2
PA
225static int debug_linux_nat_async = 0;
226static void
227show_debug_linux_nat_async (struct ui_file *file, int from_tty,
228 struct cmd_list_element *c, const char *value)
229{
230 fprintf_filtered (file, _("Debugging of GNU/Linux async lwp module is %s.\n"),
231 value);
232}
233
10568435
JK
234static int disable_randomization = 1;
235
236static void
237show_disable_randomization (struct ui_file *file, int from_tty,
238 struct cmd_list_element *c, const char *value)
239{
240#ifdef HAVE_PERSONALITY
241 fprintf_filtered (file, _("\
242Disabling randomization of debuggee's virtual address space is %s.\n"),
243 value);
244#else /* !HAVE_PERSONALITY */
245 fputs_filtered (_("\
246Disabling randomization of debuggee's virtual address space is unsupported on\n\
247this platform.\n"), file);
248#endif /* !HAVE_PERSONALITY */
249}
250
251static void
252set_disable_randomization (char *args, int from_tty, struct cmd_list_element *c)
253{
254#ifndef HAVE_PERSONALITY
255 error (_("\
256Disabling randomization of debuggee's virtual address space is unsupported on\n\
257this platform."));
258#endif /* !HAVE_PERSONALITY */
259}
260
9016a515
DJ
261static int linux_parent_pid;
262
ae087d01
DJ
263struct simple_pid_list
264{
265 int pid;
3d799a95 266 int status;
ae087d01
DJ
267 struct simple_pid_list *next;
268};
269struct simple_pid_list *stopped_pids;
270
3993f6b1
DJ
271/* This variable is a tri-state flag: -1 for unknown, 0 if PTRACE_O_TRACEFORK
272 can not be used, 1 if it can. */
273
274static int linux_supports_tracefork_flag = -1;
275
9016a515
DJ
276/* If we have PTRACE_O_TRACEFORK, this flag indicates whether we also have
277 PTRACE_O_TRACEVFORKDONE. */
278
279static int linux_supports_tracevforkdone_flag = -1;
280
b84876c2
PA
281/* Async mode support */
282
b84876c2
PA
283/* Zero if the async mode, although enabled, is masked, which means
284 linux_nat_wait should behave as if async mode was off. */
285static int linux_nat_async_mask_value = 1;
286
287/* The read/write ends of the pipe registered as waitable file in the
288 event loop. */
289static int linux_nat_event_pipe[2] = { -1, -1 };
290
291/* Number of queued events in the pipe. */
292static volatile int linux_nat_num_queued_events;
293
84e46146 294/* The possible SIGCHLD handling states. */
b84876c2 295
84e46146
PA
296enum sigchld_state
297{
298 /* SIGCHLD disabled, with action set to sigchld_handler, for the
299 sigsuspend in linux_nat_wait. */
300 sigchld_sync,
301 /* SIGCHLD enabled, with action set to async_sigchld_handler. */
302 sigchld_async,
303 /* Set SIGCHLD to default action. Used while creating an
304 inferior. */
305 sigchld_default
306};
307
308/* The current SIGCHLD handling state. */
309static enum sigchld_state linux_nat_async_events_state;
310
311static enum sigchld_state linux_nat_async_events (enum sigchld_state enable);
b84876c2
PA
312static void pipe_to_local_event_queue (void);
313static void local_event_queue_to_pipe (void);
314static void linux_nat_event_pipe_push (int pid, int status, int options);
315static int linux_nat_event_pipe_pop (int* ptr_status, int* ptr_options);
316static void linux_nat_set_async_mode (int on);
317static void linux_nat_async (void (*callback)
318 (enum inferior_event_type event_type, void *context),
319 void *context);
320static int linux_nat_async_mask (int mask);
a0ef4274 321static int kill_lwp (int lwpid, int signo);
b84876c2 322
4c28f408
PA
323static int stop_callback (struct lwp_info *lp, void *data);
324
b84876c2
PA
325/* Captures the result of a successful waitpid call, along with the
326 options used in that call. */
327struct waitpid_result
328{
329 int pid;
330 int status;
331 int options;
332 struct waitpid_result *next;
333};
334
335/* A singly-linked list of the results of the waitpid calls performed
336 in the async SIGCHLD handler. */
337static struct waitpid_result *waitpid_queue = NULL;
338
252fbfc8
PA
339/* Similarly to `waitpid', but check the local event queue instead of
340 querying the kernel queue. If PEEK, don't remove the event found
341 from the queue. */
342
b84876c2 343static int
252fbfc8 344queued_waitpid_1 (int pid, int *status, int flags, int peek)
b84876c2
PA
345{
346 struct waitpid_result *msg = waitpid_queue, *prev = NULL;
347
348 if (debug_linux_nat_async)
349 fprintf_unfiltered (gdb_stdlog,
350 "\
84e46146
PA
351QWPID: linux_nat_async_events_state(%d), linux_nat_num_queued_events(%d)\n",
352 linux_nat_async_events_state,
b84876c2
PA
353 linux_nat_num_queued_events);
354
355 if (flags & __WALL)
356 {
357 for (; msg; prev = msg, msg = msg->next)
358 if (pid == -1 || pid == msg->pid)
359 break;
360 }
361 else if (flags & __WCLONE)
362 {
363 for (; msg; prev = msg, msg = msg->next)
364 if (msg->options & __WCLONE
365 && (pid == -1 || pid == msg->pid))
366 break;
367 }
368 else
369 {
370 for (; msg; prev = msg, msg = msg->next)
371 if ((msg->options & __WCLONE) == 0
372 && (pid == -1 || pid == msg->pid))
373 break;
374 }
375
376 if (msg)
377 {
378 int pid;
379
b84876c2
PA
380 if (status)
381 *status = msg->status;
382 pid = msg->pid;
383
384 if (debug_linux_nat_async)
385 fprintf_unfiltered (gdb_stdlog, "QWPID: pid(%d), status(%x)\n",
386 pid, msg->status);
252fbfc8
PA
387
388 if (!peek)
389 {
390 if (prev)
391 prev->next = msg->next;
392 else
393 waitpid_queue = msg->next;
394
395 msg->next = NULL;
396 xfree (msg);
397 }
b84876c2
PA
398
399 return pid;
400 }
401
402 if (debug_linux_nat_async)
403 fprintf_unfiltered (gdb_stdlog, "QWPID: miss\n");
404
405 if (status)
406 *status = 0;
407 return -1;
408}
409
252fbfc8
PA
410/* Similarly to `waitpid', but check the local event queue. */
411
412static int
413queued_waitpid (int pid, int *status, int flags)
414{
415 return queued_waitpid_1 (pid, status, flags, 0);
416}
417
b84876c2
PA
418static void
419push_waitpid (int pid, int status, int options)
420{
421 struct waitpid_result *event, *new_event;
422
423 new_event = xmalloc (sizeof (*new_event));
424 new_event->pid = pid;
425 new_event->status = status;
426 new_event->options = options;
427 new_event->next = NULL;
428
429 if (waitpid_queue)
430 {
431 for (event = waitpid_queue;
432 event && event->next;
433 event = event->next)
434 ;
435
436 event->next = new_event;
437 }
438 else
439 waitpid_queue = new_event;
440}
441
710151dd 442/* Drain all queued events of PID. If PID is -1, the effect is of
b84876c2
PA
443 draining all events. */
444static void
445drain_queued_events (int pid)
446{
447 while (queued_waitpid (pid, NULL, __WALL) != -1)
448 ;
449}
450
ae087d01
DJ
451\f
452/* Trivial list manipulation functions to keep track of a list of
453 new stopped processes. */
454static void
3d799a95 455add_to_pid_list (struct simple_pid_list **listp, int pid, int status)
ae087d01
DJ
456{
457 struct simple_pid_list *new_pid = xmalloc (sizeof (struct simple_pid_list));
458 new_pid->pid = pid;
3d799a95 459 new_pid->status = status;
ae087d01
DJ
460 new_pid->next = *listp;
461 *listp = new_pid;
462}
463
464static int
3d799a95 465pull_pid_from_list (struct simple_pid_list **listp, int pid, int *status)
ae087d01
DJ
466{
467 struct simple_pid_list **p;
468
469 for (p = listp; *p != NULL; p = &(*p)->next)
470 if ((*p)->pid == pid)
471 {
472 struct simple_pid_list *next = (*p)->next;
3d799a95 473 *status = (*p)->status;
ae087d01
DJ
474 xfree (*p);
475 *p = next;
476 return 1;
477 }
478 return 0;
479}
480
3d799a95
DJ
481static void
482linux_record_stopped_pid (int pid, int status)
ae087d01 483{
3d799a95 484 add_to_pid_list (&stopped_pids, pid, status);
ae087d01
DJ
485}
486
3993f6b1
DJ
487\f
488/* A helper function for linux_test_for_tracefork, called after fork (). */
489
490static void
491linux_tracefork_child (void)
492{
493 int ret;
494
495 ptrace (PTRACE_TRACEME, 0, 0, 0);
496 kill (getpid (), SIGSTOP);
497 fork ();
48bb3cce 498 _exit (0);
3993f6b1
DJ
499}
500
b84876c2
PA
501/* Wrapper function for waitpid which handles EINTR, and checks for
502 locally queued events. */
b957e937
DJ
503
504static int
505my_waitpid (int pid, int *status, int flags)
506{
507 int ret;
b84876c2
PA
508
509 /* There should be no concurrent calls to waitpid. */
84e46146 510 gdb_assert (linux_nat_async_events_state == sigchld_sync);
b84876c2
PA
511
512 ret = queued_waitpid (pid, status, flags);
513 if (ret != -1)
514 return ret;
515
b957e937
DJ
516 do
517 {
518 ret = waitpid (pid, status, flags);
519 }
520 while (ret == -1 && errno == EINTR);
521
522 return ret;
523}
524
525/* Determine if PTRACE_O_TRACEFORK can be used to follow fork events.
526
527 First, we try to enable fork tracing on ORIGINAL_PID. If this fails,
528 we know that the feature is not available. This may change the tracing
529 options for ORIGINAL_PID, but we'll be setting them shortly anyway.
530
531 However, if it succeeds, we don't know for sure that the feature is
532 available; old versions of PTRACE_SETOPTIONS ignored unknown options. We
3993f6b1 533 create a child process, attach to it, use PTRACE_SETOPTIONS to enable
b957e937
DJ
534 fork tracing, and let it fork. If the process exits, we assume that we
535 can't use TRACEFORK; if we get the fork notification, and we can extract
536 the new child's PID, then we assume that we can. */
3993f6b1
DJ
537
538static void
b957e937 539linux_test_for_tracefork (int original_pid)
3993f6b1
DJ
540{
541 int child_pid, ret, status;
542 long second_pid;
4c28f408
PA
543 enum sigchld_state async_events_original_state;
544
545 async_events_original_state = linux_nat_async_events (sigchld_sync);
3993f6b1 546
b957e937
DJ
547 linux_supports_tracefork_flag = 0;
548 linux_supports_tracevforkdone_flag = 0;
549
550 ret = ptrace (PTRACE_SETOPTIONS, original_pid, 0, PTRACE_O_TRACEFORK);
551 if (ret != 0)
552 return;
553
3993f6b1
DJ
554 child_pid = fork ();
555 if (child_pid == -1)
e2e0b3e5 556 perror_with_name (("fork"));
3993f6b1
DJ
557
558 if (child_pid == 0)
559 linux_tracefork_child ();
560
b957e937 561 ret = my_waitpid (child_pid, &status, 0);
3993f6b1 562 if (ret == -1)
e2e0b3e5 563 perror_with_name (("waitpid"));
3993f6b1 564 else if (ret != child_pid)
8a3fe4f8 565 error (_("linux_test_for_tracefork: waitpid: unexpected result %d."), ret);
3993f6b1 566 if (! WIFSTOPPED (status))
8a3fe4f8 567 error (_("linux_test_for_tracefork: waitpid: unexpected status %d."), status);
3993f6b1 568
3993f6b1
DJ
569 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0, PTRACE_O_TRACEFORK);
570 if (ret != 0)
571 {
b957e937
DJ
572 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
573 if (ret != 0)
574 {
8a3fe4f8 575 warning (_("linux_test_for_tracefork: failed to kill child"));
4c28f408 576 linux_nat_async_events (async_events_original_state);
b957e937
DJ
577 return;
578 }
579
580 ret = my_waitpid (child_pid, &status, 0);
581 if (ret != child_pid)
8a3fe4f8 582 warning (_("linux_test_for_tracefork: failed to wait for killed child"));
b957e937 583 else if (!WIFSIGNALED (status))
8a3fe4f8
AC
584 warning (_("linux_test_for_tracefork: unexpected wait status 0x%x from "
585 "killed child"), status);
b957e937 586
4c28f408 587 linux_nat_async_events (async_events_original_state);
3993f6b1
DJ
588 return;
589 }
590
9016a515
DJ
591 /* Check whether PTRACE_O_TRACEVFORKDONE is available. */
592 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0,
593 PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORKDONE);
594 linux_supports_tracevforkdone_flag = (ret == 0);
595
b957e937
DJ
596 ret = ptrace (PTRACE_CONT, child_pid, 0, 0);
597 if (ret != 0)
8a3fe4f8 598 warning (_("linux_test_for_tracefork: failed to resume child"));
b957e937
DJ
599
600 ret = my_waitpid (child_pid, &status, 0);
601
3993f6b1
DJ
602 if (ret == child_pid && WIFSTOPPED (status)
603 && status >> 16 == PTRACE_EVENT_FORK)
604 {
605 second_pid = 0;
606 ret = ptrace (PTRACE_GETEVENTMSG, child_pid, 0, &second_pid);
607 if (ret == 0 && second_pid != 0)
608 {
609 int second_status;
610
611 linux_supports_tracefork_flag = 1;
b957e937
DJ
612 my_waitpid (second_pid, &second_status, 0);
613 ret = ptrace (PTRACE_KILL, second_pid, 0, 0);
614 if (ret != 0)
8a3fe4f8 615 warning (_("linux_test_for_tracefork: failed to kill second child"));
97725dc4 616 my_waitpid (second_pid, &status, 0);
3993f6b1
DJ
617 }
618 }
b957e937 619 else
8a3fe4f8
AC
620 warning (_("linux_test_for_tracefork: unexpected result from waitpid "
621 "(%d, status 0x%x)"), ret, status);
3993f6b1 622
b957e937
DJ
623 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
624 if (ret != 0)
8a3fe4f8 625 warning (_("linux_test_for_tracefork: failed to kill child"));
b957e937 626 my_waitpid (child_pid, &status, 0);
4c28f408
PA
627
628 linux_nat_async_events (async_events_original_state);
3993f6b1
DJ
629}
630
631/* Return non-zero iff we have tracefork functionality available.
632 This function also sets linux_supports_tracefork_flag. */
633
634static int
b957e937 635linux_supports_tracefork (int pid)
3993f6b1
DJ
636{
637 if (linux_supports_tracefork_flag == -1)
b957e937 638 linux_test_for_tracefork (pid);
3993f6b1
DJ
639 return linux_supports_tracefork_flag;
640}
641
9016a515 642static int
b957e937 643linux_supports_tracevforkdone (int pid)
9016a515
DJ
644{
645 if (linux_supports_tracefork_flag == -1)
b957e937 646 linux_test_for_tracefork (pid);
9016a515
DJ
647 return linux_supports_tracevforkdone_flag;
648}
649
3993f6b1 650\f
4de4c07c
DJ
651void
652linux_enable_event_reporting (ptid_t ptid)
653{
d3587048 654 int pid = ptid_get_lwp (ptid);
4de4c07c
DJ
655 int options;
656
d3587048
DJ
657 if (pid == 0)
658 pid = ptid_get_pid (ptid);
659
b957e937 660 if (! linux_supports_tracefork (pid))
4de4c07c
DJ
661 return;
662
a2f23071
DJ
663 options = PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK | PTRACE_O_TRACEEXEC
664 | PTRACE_O_TRACECLONE;
b957e937 665 if (linux_supports_tracevforkdone (pid))
9016a515
DJ
666 options |= PTRACE_O_TRACEVFORKDONE;
667
668 /* Do not enable PTRACE_O_TRACEEXIT until GDB is more prepared to support
669 read-only process state. */
4de4c07c
DJ
670
671 ptrace (PTRACE_SETOPTIONS, pid, 0, options);
672}
673
6d8fd2b7
UW
674static void
675linux_child_post_attach (int pid)
4de4c07c
DJ
676{
677 linux_enable_event_reporting (pid_to_ptid (pid));
0ec9a092 678 check_for_thread_db ();
4de4c07c
DJ
679}
680
10d6c8cd 681static void
4de4c07c
DJ
682linux_child_post_startup_inferior (ptid_t ptid)
683{
684 linux_enable_event_reporting (ptid);
0ec9a092 685 check_for_thread_db ();
4de4c07c
DJ
686}
687
6d8fd2b7
UW
688static int
689linux_child_follow_fork (struct target_ops *ops, int follow_child)
3993f6b1 690{
4de4c07c
DJ
691 ptid_t last_ptid;
692 struct target_waitstatus last_status;
9016a515 693 int has_vforked;
4de4c07c
DJ
694 int parent_pid, child_pid;
695
b84876c2
PA
696 if (target_can_async_p ())
697 target_async (NULL, 0);
698
4de4c07c 699 get_last_target_status (&last_ptid, &last_status);
9016a515 700 has_vforked = (last_status.kind == TARGET_WAITKIND_VFORKED);
d3587048
DJ
701 parent_pid = ptid_get_lwp (last_ptid);
702 if (parent_pid == 0)
703 parent_pid = ptid_get_pid (last_ptid);
3a3e9ee3 704 child_pid = PIDGET (last_status.value.related_pid);
4de4c07c
DJ
705
706 if (! follow_child)
707 {
708 /* We're already attached to the parent, by default. */
709
710 /* Before detaching from the child, remove all breakpoints from
711 it. (This won't actually modify the breakpoint list, but will
712 physically remove the breakpoints from the child.) */
9016a515
DJ
713 /* If we vforked this will remove the breakpoints from the parent
714 also, but they'll be reinserted below. */
4de4c07c
DJ
715 detach_breakpoints (child_pid);
716
ac264b3b
MS
717 /* Detach new forked process? */
718 if (detach_fork)
f75c00e4 719 {
e85a822c 720 if (info_verbose || debug_linux_nat)
ac264b3b
MS
721 {
722 target_terminal_ours ();
723 fprintf_filtered (gdb_stdlog,
724 "Detaching after fork from child process %d.\n",
725 child_pid);
726 }
4de4c07c 727
ac264b3b
MS
728 ptrace (PTRACE_DETACH, child_pid, 0, 0);
729 }
730 else
731 {
732 struct fork_info *fp;
77435e4c 733 struct inferior *parent_inf, *child_inf;
7f9f62ba
PA
734
735 /* Add process to GDB's tables. */
77435e4c
PA
736 child_inf = add_inferior (child_pid);
737
738 parent_inf = find_inferior_pid (GET_PID (last_ptid));
739 child_inf->attach_flag = parent_inf->attach_flag;
7f9f62ba 740
ac264b3b
MS
741 /* Retain child fork in ptrace (stopped) state. */
742 fp = find_fork_pid (child_pid);
743 if (!fp)
744 fp = add_fork (child_pid);
745 fork_save_infrun_state (fp, 0);
746 }
9016a515
DJ
747
748 if (has_vforked)
749 {
b957e937
DJ
750 gdb_assert (linux_supports_tracefork_flag >= 0);
751 if (linux_supports_tracevforkdone (0))
9016a515
DJ
752 {
753 int status;
754
755 ptrace (PTRACE_CONT, parent_pid, 0, 0);
58aecb61 756 my_waitpid (parent_pid, &status, __WALL);
c874c7fc 757 if ((status >> 16) != PTRACE_EVENT_VFORK_DONE)
8a3fe4f8
AC
758 warning (_("Unexpected waitpid result %06x when waiting for "
759 "vfork-done"), status);
9016a515
DJ
760 }
761 else
762 {
763 /* We can't insert breakpoints until the child has
764 finished with the shared memory region. We need to
765 wait until that happens. Ideal would be to just
766 call:
767 - ptrace (PTRACE_SYSCALL, parent_pid, 0, 0);
768 - waitpid (parent_pid, &status, __WALL);
769 However, most architectures can't handle a syscall
770 being traced on the way out if it wasn't traced on
771 the way in.
772
773 We might also think to loop, continuing the child
774 until it exits or gets a SIGTRAP. One problem is
775 that the child might call ptrace with PTRACE_TRACEME.
776
777 There's no simple and reliable way to figure out when
778 the vforked child will be done with its copy of the
779 shared memory. We could step it out of the syscall,
780 two instructions, let it go, and then single-step the
781 parent once. When we have hardware single-step, this
782 would work; with software single-step it could still
783 be made to work but we'd have to be able to insert
784 single-step breakpoints in the child, and we'd have
785 to insert -just- the single-step breakpoint in the
786 parent. Very awkward.
787
788 In the end, the best we can do is to make sure it
789 runs for a little while. Hopefully it will be out of
790 range of any breakpoints we reinsert. Usually this
791 is only the single-step breakpoint at vfork's return
792 point. */
793
794 usleep (10000);
795 }
796
797 /* Since we vforked, breakpoints were removed in the parent
798 too. Put them back. */
799 reattach_breakpoints (parent_pid);
800 }
4de4c07c 801 }
3993f6b1 802 else
4de4c07c 803 {
4e1c45ea
PA
804 struct thread_info *last_tp = find_thread_pid (last_ptid);
805 struct thread_info *tp;
4de4c07c 806 char child_pid_spelling[40];
77435e4c 807 struct inferior *parent_inf, *child_inf;
4de4c07c 808
4e1c45ea
PA
809 /* Copy user stepping state to the new inferior thread. */
810 struct breakpoint *step_resume_breakpoint = last_tp->step_resume_breakpoint;
811 CORE_ADDR step_range_start = last_tp->step_range_start;
812 CORE_ADDR step_range_end = last_tp->step_range_end;
813 struct frame_id step_frame_id = last_tp->step_frame_id;
814
815 /* Otherwise, deleting the parent would get rid of this
816 breakpoint. */
817 last_tp->step_resume_breakpoint = NULL;
818
4de4c07c 819 /* Needed to keep the breakpoint lists in sync. */
9016a515
DJ
820 if (! has_vforked)
821 detach_breakpoints (child_pid);
4de4c07c
DJ
822
823 /* Before detaching from the parent, remove all breakpoints from it. */
824 remove_breakpoints ();
825
e85a822c 826 if (info_verbose || debug_linux_nat)
f75c00e4
DJ
827 {
828 target_terminal_ours ();
ac264b3b
MS
829 fprintf_filtered (gdb_stdlog,
830 "Attaching after fork to child process %d.\n",
831 child_pid);
f75c00e4 832 }
4de4c07c 833
7a7d3353
PA
834 /* Add the new inferior first, so that the target_detach below
835 doesn't unpush the target. */
836
77435e4c
PA
837 child_inf = add_inferior (child_pid);
838
839 parent_inf = find_inferior_pid (GET_PID (last_ptid));
840 child_inf->attach_flag = parent_inf->attach_flag;
7a7d3353 841
9016a515
DJ
842 /* If we're vforking, we may want to hold on to the parent until
843 the child exits or execs. At exec time we can remove the old
844 breakpoints from the parent and detach it; at exit time we
845 could do the same (or even, sneakily, resume debugging it - the
846 child's exec has failed, or something similar).
847
848 This doesn't clean up "properly", because we can't call
849 target_detach, but that's OK; if the current target is "child",
850 then it doesn't need any further cleanups, and lin_lwp will
851 generally not encounter vfork (vfork is defined to fork
852 in libpthread.so).
853
854 The holding part is very easy if we have VFORKDONE events;
855 but keeping track of both processes is beyond GDB at the
856 moment. So we don't expose the parent to the rest of GDB.
857 Instead we quietly hold onto it until such time as we can
858 safely resume it. */
859
860 if (has_vforked)
7f9f62ba
PA
861 {
862 linux_parent_pid = parent_pid;
863 detach_inferior (parent_pid);
864 }
ac264b3b
MS
865 else if (!detach_fork)
866 {
867 struct fork_info *fp;
868 /* Retain parent fork in ptrace (stopped) state. */
869 fp = find_fork_pid (parent_pid);
870 if (!fp)
871 fp = add_fork (parent_pid);
872 fork_save_infrun_state (fp, 0);
0d14fc63
PA
873
874 /* Also add an entry for the child fork. */
875 fp = find_fork_pid (child_pid);
876 if (!fp)
877 fp = add_fork (child_pid);
878 fork_save_infrun_state (fp, 0);
ac264b3b 879 }
9016a515 880 else
b84876c2 881 target_detach (NULL, 0);
4de4c07c 882
9f0bdab8 883 inferior_ptid = ptid_build (child_pid, child_pid, 0);
ac264b3b 884
9f0bdab8 885 linux_nat_switch_fork (inferior_ptid);
ef29ce1a 886 check_for_thread_db ();
4de4c07c 887
4e1c45ea
PA
888 tp = inferior_thread ();
889 tp->step_resume_breakpoint = step_resume_breakpoint;
890 tp->step_range_start = step_range_start;
891 tp->step_range_end = step_range_end;
892 tp->step_frame_id = step_frame_id;
893
4de4c07c
DJ
894 /* Reset breakpoints in the child as appropriate. */
895 follow_inferior_reset_breakpoints ();
896 }
897
b84876c2
PA
898 if (target_can_async_p ())
899 target_async (inferior_event_handler, 0);
900
4de4c07c
DJ
901 return 0;
902}
903
4de4c07c 904\f
6d8fd2b7
UW
905static void
906linux_child_insert_fork_catchpoint (int pid)
4de4c07c 907{
b957e937 908 if (! linux_supports_tracefork (pid))
8a3fe4f8 909 error (_("Your system does not support fork catchpoints."));
3993f6b1
DJ
910}
911
6d8fd2b7
UW
912static void
913linux_child_insert_vfork_catchpoint (int pid)
3993f6b1 914{
b957e937 915 if (!linux_supports_tracefork (pid))
8a3fe4f8 916 error (_("Your system does not support vfork catchpoints."));
3993f6b1
DJ
917}
918
6d8fd2b7
UW
919static void
920linux_child_insert_exec_catchpoint (int pid)
3993f6b1 921{
b957e937 922 if (!linux_supports_tracefork (pid))
8a3fe4f8 923 error (_("Your system does not support exec catchpoints."));
3993f6b1
DJ
924}
925
d6b0e80f
AC
926/* On GNU/Linux there are no real LWP's. The closest thing to LWP's
927 are processes sharing the same VM space. A multi-threaded process
928 is basically a group of such processes. However, such a grouping
929 is almost entirely a user-space issue; the kernel doesn't enforce
930 such a grouping at all (this might change in the future). In
931 general, we'll rely on the threads library (i.e. the GNU/Linux
932 Threads library) to provide such a grouping.
933
934 It is perfectly well possible to write a multi-threaded application
935 without the assistance of a threads library, by using the clone
936 system call directly. This module should be able to give some
937 rudimentary support for debugging such applications if developers
938 specify the CLONE_PTRACE flag in the clone system call, and are
939 using the Linux kernel 2.4 or above.
940
941 Note that there are some peculiarities in GNU/Linux that affect
942 this code:
943
944 - In general one should specify the __WCLONE flag to waitpid in
945 order to make it report events for any of the cloned processes
946 (and leave it out for the initial process). However, if a cloned
947 process has exited the exit status is only reported if the
948 __WCLONE flag is absent. Linux kernel 2.4 has a __WALL flag, but
949 we cannot use it since GDB must work on older systems too.
950
951 - When a traced, cloned process exits and is waited for by the
952 debugger, the kernel reassigns it to the original parent and
953 keeps it around as a "zombie". Somehow, the GNU/Linux Threads
954 library doesn't notice this, which leads to the "zombie problem":
955 When debugged a multi-threaded process that spawns a lot of
956 threads will run out of processes, even if the threads exit,
957 because the "zombies" stay around. */
958
959/* List of known LWPs. */
9f0bdab8 960struct lwp_info *lwp_list;
d6b0e80f
AC
961
962/* Number of LWPs in the list. */
963static int num_lwps;
d6b0e80f
AC
964\f
965
d6b0e80f
AC
966/* Original signal mask. */
967static sigset_t normal_mask;
968
969/* Signal mask for use with sigsuspend in linux_nat_wait, initialized in
970 _initialize_linux_nat. */
971static sigset_t suspend_mask;
972
b84876c2
PA
973/* SIGCHLD action for synchronous mode. */
974struct sigaction sync_sigchld_action;
975
976/* SIGCHLD action for asynchronous mode. */
977static struct sigaction async_sigchld_action;
84e46146
PA
978
979/* SIGCHLD default action, to pass to new inferiors. */
980static struct sigaction sigchld_default_action;
d6b0e80f
AC
981\f
982
983/* Prototypes for local functions. */
984static int stop_wait_callback (struct lwp_info *lp, void *data);
985static int linux_nat_thread_alive (ptid_t ptid);
6d8fd2b7 986static char *linux_child_pid_to_exec_file (int pid);
710151dd
PA
987static int cancel_breakpoint (struct lwp_info *lp);
988
d6b0e80f
AC
989\f
990/* Convert wait status STATUS to a string. Used for printing debug
991 messages only. */
992
993static char *
994status_to_str (int status)
995{
996 static char buf[64];
997
998 if (WIFSTOPPED (status))
999 snprintf (buf, sizeof (buf), "%s (stopped)",
1000 strsignal (WSTOPSIG (status)));
1001 else if (WIFSIGNALED (status))
1002 snprintf (buf, sizeof (buf), "%s (terminated)",
1003 strsignal (WSTOPSIG (status)));
1004 else
1005 snprintf (buf, sizeof (buf), "%d (exited)", WEXITSTATUS (status));
1006
1007 return buf;
1008}
1009
1010/* Initialize the list of LWPs. Note that this module, contrary to
1011 what GDB's generic threads layer does for its thread list,
1012 re-initializes the LWP lists whenever we mourn or detach (which
1013 doesn't involve mourning) the inferior. */
1014
1015static void
1016init_lwp_list (void)
1017{
1018 struct lwp_info *lp, *lpnext;
1019
1020 for (lp = lwp_list; lp; lp = lpnext)
1021 {
1022 lpnext = lp->next;
1023 xfree (lp);
1024 }
1025
1026 lwp_list = NULL;
1027 num_lwps = 0;
d6b0e80f
AC
1028}
1029
f973ed9c 1030/* Add the LWP specified by PID to the list. Return a pointer to the
9f0bdab8
DJ
1031 structure describing the new LWP. The LWP should already be stopped
1032 (with an exception for the very first LWP). */
d6b0e80f
AC
1033
1034static struct lwp_info *
1035add_lwp (ptid_t ptid)
1036{
1037 struct lwp_info *lp;
1038
1039 gdb_assert (is_lwp (ptid));
1040
1041 lp = (struct lwp_info *) xmalloc (sizeof (struct lwp_info));
1042
1043 memset (lp, 0, sizeof (struct lwp_info));
1044
1045 lp->waitstatus.kind = TARGET_WAITKIND_IGNORE;
1046
1047 lp->ptid = ptid;
1048
1049 lp->next = lwp_list;
1050 lwp_list = lp;
f973ed9c 1051 ++num_lwps;
d6b0e80f 1052
9f0bdab8
DJ
1053 if (num_lwps > 1 && linux_nat_new_thread != NULL)
1054 linux_nat_new_thread (ptid);
1055
d6b0e80f
AC
1056 return lp;
1057}
1058
1059/* Remove the LWP specified by PID from the list. */
1060
1061static void
1062delete_lwp (ptid_t ptid)
1063{
1064 struct lwp_info *lp, *lpprev;
1065
1066 lpprev = NULL;
1067
1068 for (lp = lwp_list; lp; lpprev = lp, lp = lp->next)
1069 if (ptid_equal (lp->ptid, ptid))
1070 break;
1071
1072 if (!lp)
1073 return;
1074
d6b0e80f
AC
1075 num_lwps--;
1076
1077 if (lpprev)
1078 lpprev->next = lp->next;
1079 else
1080 lwp_list = lp->next;
1081
1082 xfree (lp);
1083}
1084
1085/* Return a pointer to the structure describing the LWP corresponding
1086 to PID. If no corresponding LWP could be found, return NULL. */
1087
1088static struct lwp_info *
1089find_lwp_pid (ptid_t ptid)
1090{
1091 struct lwp_info *lp;
1092 int lwp;
1093
1094 if (is_lwp (ptid))
1095 lwp = GET_LWP (ptid);
1096 else
1097 lwp = GET_PID (ptid);
1098
1099 for (lp = lwp_list; lp; lp = lp->next)
1100 if (lwp == GET_LWP (lp->ptid))
1101 return lp;
1102
1103 return NULL;
1104}
1105
1106/* Call CALLBACK with its second argument set to DATA for every LWP in
1107 the list. If CALLBACK returns 1 for a particular LWP, return a
1108 pointer to the structure describing that LWP immediately.
1109 Otherwise return NULL. */
1110
1111struct lwp_info *
1112iterate_over_lwps (int (*callback) (struct lwp_info *, void *), void *data)
1113{
1114 struct lwp_info *lp, *lpnext;
1115
1116 for (lp = lwp_list; lp; lp = lpnext)
1117 {
1118 lpnext = lp->next;
1119 if ((*callback) (lp, data))
1120 return lp;
1121 }
1122
1123 return NULL;
1124}
1125
f973ed9c
DJ
1126/* Update our internal state when changing from one fork (checkpoint,
1127 et cetera) to another indicated by NEW_PTID. We can only switch
1128 single-threaded applications, so we only create one new LWP, and
1129 the previous list is discarded. */
1130
1131void
1132linux_nat_switch_fork (ptid_t new_ptid)
1133{
1134 struct lwp_info *lp;
1135
1136 init_lwp_list ();
1137 lp = add_lwp (new_ptid);
1138 lp->stopped = 1;
e26af52f 1139
4f8d22e3
PA
1140 init_thread_list ();
1141 add_thread_silent (new_ptid);
e26af52f
DJ
1142}
1143
e26af52f
DJ
1144/* Handle the exit of a single thread LP. */
1145
1146static void
1147exit_lwp (struct lwp_info *lp)
1148{
063bfe2e
VP
1149 struct thread_info *th = find_thread_pid (lp->ptid);
1150
1151 if (th)
e26af52f 1152 {
17faa917
DJ
1153 if (print_thread_events)
1154 printf_unfiltered (_("[%s exited]\n"), target_pid_to_str (lp->ptid));
1155
4f8d22e3 1156 delete_thread (lp->ptid);
e26af52f
DJ
1157 }
1158
1159 delete_lwp (lp->ptid);
1160}
1161
a0ef4274
DJ
1162/* Detect `T (stopped)' in `/proc/PID/status'.
1163 Other states including `T (tracing stop)' are reported as false. */
1164
1165static int
1166pid_is_stopped (pid_t pid)
1167{
1168 FILE *status_file;
1169 char buf[100];
1170 int retval = 0;
1171
1172 snprintf (buf, sizeof (buf), "/proc/%d/status", (int) pid);
1173 status_file = fopen (buf, "r");
1174 if (status_file != NULL)
1175 {
1176 int have_state = 0;
1177
1178 while (fgets (buf, sizeof (buf), status_file))
1179 {
1180 if (strncmp (buf, "State:", 6) == 0)
1181 {
1182 have_state = 1;
1183 break;
1184 }
1185 }
1186 if (have_state && strstr (buf, "T (stopped)") != NULL)
1187 retval = 1;
1188 fclose (status_file);
1189 }
1190 return retval;
1191}
1192
1193/* Wait for the LWP specified by LP, which we have just attached to.
1194 Returns a wait status for that LWP, to cache. */
1195
1196static int
1197linux_nat_post_attach_wait (ptid_t ptid, int first, int *cloned,
1198 int *signalled)
1199{
1200 pid_t new_pid, pid = GET_LWP (ptid);
1201 int status;
1202
1203 if (pid_is_stopped (pid))
1204 {
1205 if (debug_linux_nat)
1206 fprintf_unfiltered (gdb_stdlog,
1207 "LNPAW: Attaching to a stopped process\n");
1208
1209 /* The process is definitely stopped. It is in a job control
1210 stop, unless the kernel predates the TASK_STOPPED /
1211 TASK_TRACED distinction, in which case it might be in a
1212 ptrace stop. Make sure it is in a ptrace stop; from there we
1213 can kill it, signal it, et cetera.
1214
1215 First make sure there is a pending SIGSTOP. Since we are
1216 already attached, the process can not transition from stopped
1217 to running without a PTRACE_CONT; so we know this signal will
1218 go into the queue. The SIGSTOP generated by PTRACE_ATTACH is
1219 probably already in the queue (unless this kernel is old
1220 enough to use TASK_STOPPED for ptrace stops); but since SIGSTOP
1221 is not an RT signal, it can only be queued once. */
1222 kill_lwp (pid, SIGSTOP);
1223
1224 /* Finally, resume the stopped process. This will deliver the SIGSTOP
1225 (or a higher priority signal, just like normal PTRACE_ATTACH). */
1226 ptrace (PTRACE_CONT, pid, 0, 0);
1227 }
1228
1229 /* Make sure the initial process is stopped. The user-level threads
1230 layer might want to poke around in the inferior, and that won't
1231 work if things haven't stabilized yet. */
1232 new_pid = my_waitpid (pid, &status, 0);
1233 if (new_pid == -1 && errno == ECHILD)
1234 {
1235 if (first)
1236 warning (_("%s is a cloned process"), target_pid_to_str (ptid));
1237
1238 /* Try again with __WCLONE to check cloned processes. */
1239 new_pid = my_waitpid (pid, &status, __WCLONE);
1240 *cloned = 1;
1241 }
1242
1243 gdb_assert (pid == new_pid && WIFSTOPPED (status));
1244
1245 if (WSTOPSIG (status) != SIGSTOP)
1246 {
1247 *signalled = 1;
1248 if (debug_linux_nat)
1249 fprintf_unfiltered (gdb_stdlog,
1250 "LNPAW: Received %s after attaching\n",
1251 status_to_str (status));
1252 }
1253
1254 return status;
1255}
1256
1257/* Attach to the LWP specified by PID. Return 0 if successful or -1
1258 if the new LWP could not be attached. */
d6b0e80f 1259
9ee57c33 1260int
93815fbf 1261lin_lwp_attach_lwp (ptid_t ptid)
d6b0e80f 1262{
9ee57c33 1263 struct lwp_info *lp;
84e46146 1264 enum sigchld_state async_events_original_state;
d6b0e80f
AC
1265
1266 gdb_assert (is_lwp (ptid));
1267
84e46146 1268 async_events_original_state = linux_nat_async_events (sigchld_sync);
d6b0e80f 1269
9ee57c33 1270 lp = find_lwp_pid (ptid);
d6b0e80f
AC
1271
1272 /* We assume that we're already attached to any LWP that has an id
1273 equal to the overall process id, and to any LWP that is already
1274 in our list of LWPs. If we're not seeing exit events from threads
1275 and we've had PID wraparound since we last tried to stop all threads,
1276 this assumption might be wrong; fortunately, this is very unlikely
1277 to happen. */
9ee57c33 1278 if (GET_LWP (ptid) != GET_PID (ptid) && lp == NULL)
d6b0e80f 1279 {
a0ef4274 1280 int status, cloned = 0, signalled = 0;
d6b0e80f
AC
1281
1282 if (ptrace (PTRACE_ATTACH, GET_LWP (ptid), 0, 0) < 0)
9ee57c33
DJ
1283 {
1284 /* If we fail to attach to the thread, issue a warning,
1285 but continue. One way this can happen is if thread
e9efe249 1286 creation is interrupted; as of Linux kernel 2.6.19, a
9ee57c33
DJ
1287 bug may place threads in the thread list and then fail
1288 to create them. */
1289 warning (_("Can't attach %s: %s"), target_pid_to_str (ptid),
1290 safe_strerror (errno));
1291 return -1;
1292 }
1293
d6b0e80f
AC
1294 if (debug_linux_nat)
1295 fprintf_unfiltered (gdb_stdlog,
1296 "LLAL: PTRACE_ATTACH %s, 0, 0 (OK)\n",
1297 target_pid_to_str (ptid));
1298
a0ef4274
DJ
1299 status = linux_nat_post_attach_wait (ptid, 0, &cloned, &signalled);
1300 lp = add_lwp (ptid);
1301 lp->stopped = 1;
1302 lp->cloned = cloned;
1303 lp->signalled = signalled;
1304 if (WSTOPSIG (status) != SIGSTOP)
d6b0e80f 1305 {
a0ef4274
DJ
1306 lp->resumed = 1;
1307 lp->status = status;
d6b0e80f
AC
1308 }
1309
a0ef4274 1310 target_post_attach (GET_LWP (lp->ptid));
d6b0e80f
AC
1311
1312 if (debug_linux_nat)
1313 {
1314 fprintf_unfiltered (gdb_stdlog,
1315 "LLAL: waitpid %s received %s\n",
1316 target_pid_to_str (ptid),
1317 status_to_str (status));
1318 }
1319 }
1320 else
1321 {
1322 /* We assume that the LWP representing the original process is
1323 already stopped. Mark it as stopped in the data structure
155bd5d1
AC
1324 that the GNU/linux ptrace layer uses to keep track of
1325 threads. Note that this won't have already been done since
1326 the main thread will have, we assume, been stopped by an
1327 attach from a different layer. */
9ee57c33
DJ
1328 if (lp == NULL)
1329 lp = add_lwp (ptid);
d6b0e80f
AC
1330 lp->stopped = 1;
1331 }
9ee57c33 1332
84e46146 1333 linux_nat_async_events (async_events_original_state);
9ee57c33 1334 return 0;
d6b0e80f
AC
1335}
1336
b84876c2 1337static void
136d6dae
VP
1338linux_nat_create_inferior (struct target_ops *ops,
1339 char *exec_file, char *allargs, char **env,
b84876c2
PA
1340 int from_tty)
1341{
1342 int saved_async = 0;
10568435
JK
1343#ifdef HAVE_PERSONALITY
1344 int personality_orig = 0, personality_set = 0;
1345#endif /* HAVE_PERSONALITY */
b84876c2
PA
1346
1347 /* The fork_child mechanism is synchronous and calls target_wait, so
1348 we have to mask the async mode. */
1349
1350 if (target_can_async_p ())
84e46146
PA
1351 /* Mask async mode. Creating a child requires a loop calling
1352 wait_for_inferior currently. */
b84876c2
PA
1353 saved_async = linux_nat_async_mask (0);
1354 else
1355 {
1356 /* Restore the original signal mask. */
1357 sigprocmask (SIG_SETMASK, &normal_mask, NULL);
1358 /* Make sure we don't block SIGCHLD during a sigsuspend. */
1359 suspend_mask = normal_mask;
1360 sigdelset (&suspend_mask, SIGCHLD);
1361 }
1362
84e46146
PA
1363 /* Set SIGCHLD to the default action, until after execing the child,
1364 since the inferior inherits the superior's signal mask. It will
1365 be blocked again in linux_nat_wait, which is only reached after
1366 the inferior execing. */
1367 linux_nat_async_events (sigchld_default);
1368
10568435
JK
1369#ifdef HAVE_PERSONALITY
1370 if (disable_randomization)
1371 {
1372 errno = 0;
1373 personality_orig = personality (0xffffffff);
1374 if (errno == 0 && !(personality_orig & ADDR_NO_RANDOMIZE))
1375 {
1376 personality_set = 1;
1377 personality (personality_orig | ADDR_NO_RANDOMIZE);
1378 }
1379 if (errno != 0 || (personality_set
1380 && !(personality (0xffffffff) & ADDR_NO_RANDOMIZE)))
1381 warning (_("Error disabling address space randomization: %s"),
1382 safe_strerror (errno));
1383 }
1384#endif /* HAVE_PERSONALITY */
1385
136d6dae 1386 linux_ops->to_create_inferior (ops, exec_file, allargs, env, from_tty);
b84876c2 1387
10568435
JK
1388#ifdef HAVE_PERSONALITY
1389 if (personality_set)
1390 {
1391 errno = 0;
1392 personality (personality_orig);
1393 if (errno != 0)
1394 warning (_("Error restoring address space randomization: %s"),
1395 safe_strerror (errno));
1396 }
1397#endif /* HAVE_PERSONALITY */
1398
b84876c2
PA
1399 if (saved_async)
1400 linux_nat_async_mask (saved_async);
1401}
1402
d6b0e80f 1403static void
136d6dae 1404linux_nat_attach (struct target_ops *ops, char *args, int from_tty)
d6b0e80f
AC
1405{
1406 struct lwp_info *lp;
d6b0e80f 1407 int status;
af990527 1408 ptid_t ptid;
d6b0e80f
AC
1409
1410 /* FIXME: We should probably accept a list of process id's, and
1411 attach all of them. */
136d6dae 1412 linux_ops->to_attach (ops, args, from_tty);
d6b0e80f 1413
b84876c2
PA
1414 if (!target_can_async_p ())
1415 {
1416 /* Restore the original signal mask. */
1417 sigprocmask (SIG_SETMASK, &normal_mask, NULL);
1418 /* Make sure we don't block SIGCHLD during a sigsuspend. */
1419 suspend_mask = normal_mask;
1420 sigdelset (&suspend_mask, SIGCHLD);
1421 }
1422
af990527
PA
1423 /* The ptrace base target adds the main thread with (pid,0,0)
1424 format. Decorate it with lwp info. */
1425 ptid = BUILD_LWP (GET_PID (inferior_ptid), GET_PID (inferior_ptid));
1426 thread_change_ptid (inferior_ptid, ptid);
1427
9f0bdab8 1428 /* Add the initial process as the first LWP to the list. */
af990527 1429 lp = add_lwp (ptid);
a0ef4274
DJ
1430
1431 status = linux_nat_post_attach_wait (lp->ptid, 1, &lp->cloned,
1432 &lp->signalled);
1433 lp->stopped = 1;
9f0bdab8 1434
a0ef4274 1435 /* Save the wait status to report later. */
d6b0e80f 1436 lp->resumed = 1;
a0ef4274
DJ
1437 if (debug_linux_nat)
1438 fprintf_unfiltered (gdb_stdlog,
1439 "LNA: waitpid %ld, saving status %s\n",
1440 (long) GET_PID (lp->ptid), status_to_str (status));
710151dd
PA
1441
1442 if (!target_can_async_p ())
a0ef4274 1443 lp->status = status;
710151dd
PA
1444 else
1445 {
1446 /* We already waited for this LWP, so put the wait result on the
1447 pipe. The event loop will wake up and gets us to handling
1448 this event. */
a0ef4274
DJ
1449 linux_nat_event_pipe_push (GET_PID (lp->ptid), status,
1450 lp->cloned ? __WCLONE : 0);
b84876c2
PA
1451 /* Register in the event loop. */
1452 target_async (inferior_event_handler, 0);
d6b0e80f
AC
1453 }
1454}
1455
a0ef4274
DJ
1456/* Get pending status of LP. */
1457static int
1458get_pending_status (struct lwp_info *lp, int *status)
1459{
1460 struct target_waitstatus last;
1461 ptid_t last_ptid;
1462
1463 get_last_target_status (&last_ptid, &last);
1464
1465 /* If this lwp is the ptid that GDB is processing an event from, the
1466 signal will be in stop_signal. Otherwise, in all-stop + sync
1467 mode, we may cache pending events in lp->status while trying to
1468 stop all threads (see stop_wait_callback). In async mode, the
1469 events are always cached in waitpid_queue. */
1470
1471 *status = 0;
4c28f408
PA
1472
1473 if (non_stop)
a0ef4274 1474 {
4c28f408
PA
1475 enum target_signal signo = TARGET_SIGNAL_0;
1476
1477 if (is_executing (lp->ptid))
1478 {
1479 /* If the core thought this lwp was executing --- e.g., the
1480 executing property hasn't been updated yet, but the
1481 thread has been stopped with a stop_callback /
1482 stop_wait_callback sequence (see linux_nat_detach for
1483 example) --- we can only have pending events in the local
1484 queue. */
1485 if (queued_waitpid (GET_LWP (lp->ptid), status, __WALL) != -1)
1486 {
8b8655b3
TJB
1487 if (WIFSTOPPED (*status))
1488 signo = target_signal_from_host (WSTOPSIG (*status));
4c28f408
PA
1489
1490 /* If not stopped, then the lwp is gone, no use in
1491 resending a signal. */
1492 }
1493 }
1494 else
1495 {
1496 /* If the core knows the thread is not executing, then we
1497 have the last signal recorded in
2020b7ab 1498 thread_info->stop_signal. */
4c28f408 1499
2020b7ab
PA
1500 struct thread_info *tp = find_thread_pid (lp->ptid);
1501 signo = tp->stop_signal;
4c28f408
PA
1502 }
1503
1504 if (signo != TARGET_SIGNAL_0
1505 && !signal_pass_state (signo))
1506 {
1507 if (debug_linux_nat)
1508 fprintf_unfiltered (gdb_stdlog, "\
1509GPT: lwp %s had signal %s, but it is in no pass state\n",
1510 target_pid_to_str (lp->ptid),
1511 target_signal_to_string (signo));
1512 }
1513 else
1514 {
1515 if (signo != TARGET_SIGNAL_0)
1516 *status = W_STOPCODE (target_signal_to_host (signo));
1517
1518 if (debug_linux_nat)
1519 fprintf_unfiltered (gdb_stdlog,
1520 "GPT: lwp %s as pending signal %s\n",
1521 target_pid_to_str (lp->ptid),
1522 target_signal_to_string (signo));
1523 }
a0ef4274 1524 }
a0ef4274 1525 else
4c28f408
PA
1526 {
1527 if (GET_LWP (lp->ptid) == GET_LWP (last_ptid))
1528 {
2020b7ab
PA
1529 struct thread_info *tp = find_thread_pid (lp->ptid);
1530 if (tp->stop_signal != TARGET_SIGNAL_0
1531 && signal_pass_state (tp->stop_signal))
1532 *status = W_STOPCODE (target_signal_to_host (tp->stop_signal));
4c28f408
PA
1533 }
1534 else if (target_can_async_p ())
1535 queued_waitpid (GET_LWP (lp->ptid), status, __WALL);
1536 else
1537 *status = lp->status;
1538 }
a0ef4274
DJ
1539
1540 return 0;
1541}
1542
d6b0e80f
AC
1543static int
1544detach_callback (struct lwp_info *lp, void *data)
1545{
1546 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
1547
1548 if (debug_linux_nat && lp->status)
1549 fprintf_unfiltered (gdb_stdlog, "DC: Pending %s for %s on detach.\n",
1550 strsignal (WSTOPSIG (lp->status)),
1551 target_pid_to_str (lp->ptid));
1552
a0ef4274
DJ
1553 /* If there is a pending SIGSTOP, get rid of it. */
1554 if (lp->signalled)
d6b0e80f 1555 {
d6b0e80f
AC
1556 if (debug_linux_nat)
1557 fprintf_unfiltered (gdb_stdlog,
a0ef4274
DJ
1558 "DC: Sending SIGCONT to %s\n",
1559 target_pid_to_str (lp->ptid));
d6b0e80f 1560
a0ef4274 1561 kill_lwp (GET_LWP (lp->ptid), SIGCONT);
d6b0e80f 1562 lp->signalled = 0;
d6b0e80f
AC
1563 }
1564
1565 /* We don't actually detach from the LWP that has an id equal to the
1566 overall process id just yet. */
1567 if (GET_LWP (lp->ptid) != GET_PID (lp->ptid))
1568 {
a0ef4274
DJ
1569 int status = 0;
1570
1571 /* Pass on any pending signal for this LWP. */
1572 get_pending_status (lp, &status);
1573
d6b0e80f
AC
1574 errno = 0;
1575 if (ptrace (PTRACE_DETACH, GET_LWP (lp->ptid), 0,
a0ef4274 1576 WSTOPSIG (status)) < 0)
8a3fe4f8 1577 error (_("Can't detach %s: %s"), target_pid_to_str (lp->ptid),
d6b0e80f
AC
1578 safe_strerror (errno));
1579
1580 if (debug_linux_nat)
1581 fprintf_unfiltered (gdb_stdlog,
1582 "PTRACE_DETACH (%s, %s, 0) (OK)\n",
1583 target_pid_to_str (lp->ptid),
1584 strsignal (WSTOPSIG (lp->status)));
1585
1586 delete_lwp (lp->ptid);
1587 }
1588
1589 return 0;
1590}
1591
1592static void
136d6dae 1593linux_nat_detach (struct target_ops *ops, char *args, int from_tty)
d6b0e80f 1594{
b84876c2 1595 int pid;
a0ef4274
DJ
1596 int status;
1597 enum target_signal sig;
1598
b84876c2
PA
1599 if (target_can_async_p ())
1600 linux_nat_async (NULL, 0);
1601
4c28f408
PA
1602 /* Stop all threads before detaching. ptrace requires that the
1603 thread is stopped to sucessfully detach. */
1604 iterate_over_lwps (stop_callback, NULL);
1605 /* ... and wait until all of them have reported back that
1606 they're no longer running. */
1607 iterate_over_lwps (stop_wait_callback, NULL);
1608
d6b0e80f
AC
1609 iterate_over_lwps (detach_callback, NULL);
1610
1611 /* Only the initial process should be left right now. */
1612 gdb_assert (num_lwps == 1);
1613
a0ef4274
DJ
1614 /* Pass on any pending signal for the last LWP. */
1615 if ((args == NULL || *args == '\0')
1616 && get_pending_status (lwp_list, &status) != -1
1617 && WIFSTOPPED (status))
1618 {
1619 /* Put the signal number in ARGS so that inf_ptrace_detach will
1620 pass it along with PTRACE_DETACH. */
1621 args = alloca (8);
1622 sprintf (args, "%d", (int) WSTOPSIG (status));
1623 fprintf_unfiltered (gdb_stdlog,
1624 "LND: Sending signal %s to %s\n",
1625 args,
1626 target_pid_to_str (lwp_list->ptid));
1627 }
1628
d6b0e80f
AC
1629 /* Destroy LWP info; it's no longer valid. */
1630 init_lwp_list ();
1631
7a7d3353 1632 pid = ptid_get_pid (inferior_ptid);
b84876c2
PA
1633
1634 if (target_can_async_p ())
1635 drain_queued_events (pid);
7a7d3353
PA
1636
1637 if (forks_exist_p ())
1638 {
1639 /* Multi-fork case. The current inferior_ptid is being detached
1640 from, but there are other viable forks to debug. Detach from
1641 the current fork, and context-switch to the first
1642 available. */
1643 linux_fork_detach (args, from_tty);
1644
1645 if (non_stop && target_can_async_p ())
1646 target_async (inferior_event_handler, 0);
1647 }
1648 else
1649 linux_ops->to_detach (ops, args, from_tty);
d6b0e80f
AC
1650}
1651
1652/* Resume LP. */
1653
1654static int
1655resume_callback (struct lwp_info *lp, void *data)
1656{
1657 if (lp->stopped && lp->status == 0)
1658 {
10d6c8cd
DJ
1659 linux_ops->to_resume (pid_to_ptid (GET_LWP (lp->ptid)),
1660 0, TARGET_SIGNAL_0);
d6b0e80f
AC
1661 if (debug_linux_nat)
1662 fprintf_unfiltered (gdb_stdlog,
1663 "RC: PTRACE_CONT %s, 0, 0 (resume sibling)\n",
1664 target_pid_to_str (lp->ptid));
1665 lp->stopped = 0;
1666 lp->step = 0;
9f0bdab8 1667 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
d6b0e80f 1668 }
57380f4e
DJ
1669 else if (lp->stopped && debug_linux_nat)
1670 fprintf_unfiltered (gdb_stdlog, "RC: Not resuming sibling %s (has pending)\n",
1671 target_pid_to_str (lp->ptid));
1672 else if (debug_linux_nat)
1673 fprintf_unfiltered (gdb_stdlog, "RC: Not resuming sibling %s (not stopped)\n",
1674 target_pid_to_str (lp->ptid));
d6b0e80f
AC
1675
1676 return 0;
1677}
1678
1679static int
1680resume_clear_callback (struct lwp_info *lp, void *data)
1681{
1682 lp->resumed = 0;
1683 return 0;
1684}
1685
1686static int
1687resume_set_callback (struct lwp_info *lp, void *data)
1688{
1689 lp->resumed = 1;
1690 return 0;
1691}
1692
1693static void
1694linux_nat_resume (ptid_t ptid, int step, enum target_signal signo)
1695{
1696 struct lwp_info *lp;
1697 int resume_all;
1698
76f50ad1
DJ
1699 if (debug_linux_nat)
1700 fprintf_unfiltered (gdb_stdlog,
1701 "LLR: Preparing to %s %s, %s, inferior_ptid %s\n",
1702 step ? "step" : "resume",
1703 target_pid_to_str (ptid),
1704 signo ? strsignal (signo) : "0",
1705 target_pid_to_str (inferior_ptid));
1706
b84876c2
PA
1707 if (target_can_async_p ())
1708 /* Block events while we're here. */
84e46146 1709 linux_nat_async_events (sigchld_sync);
b84876c2 1710
d6b0e80f
AC
1711 /* A specific PTID means `step only this process id'. */
1712 resume_all = (PIDGET (ptid) == -1);
1713
4c28f408
PA
1714 if (non_stop && resume_all)
1715 internal_error (__FILE__, __LINE__,
1716 "can't resume all in non-stop mode");
1717
1718 if (!non_stop)
1719 {
1720 if (resume_all)
1721 iterate_over_lwps (resume_set_callback, NULL);
1722 else
1723 iterate_over_lwps (resume_clear_callback, NULL);
1724 }
d6b0e80f
AC
1725
1726 /* If PID is -1, it's the current inferior that should be
1727 handled specially. */
1728 if (PIDGET (ptid) == -1)
1729 ptid = inferior_ptid;
1730
1731 lp = find_lwp_pid (ptid);
9f0bdab8 1732 gdb_assert (lp != NULL);
d6b0e80f 1733
4c28f408 1734 /* Convert to something the lower layer understands. */
9f0bdab8 1735 ptid = pid_to_ptid (GET_LWP (lp->ptid));
d6b0e80f 1736
9f0bdab8
DJ
1737 /* Remember if we're stepping. */
1738 lp->step = step;
d6b0e80f 1739
9f0bdab8
DJ
1740 /* Mark this LWP as resumed. */
1741 lp->resumed = 1;
76f50ad1 1742
9f0bdab8
DJ
1743 /* If we have a pending wait status for this thread, there is no
1744 point in resuming the process. But first make sure that
1745 linux_nat_wait won't preemptively handle the event - we
1746 should never take this short-circuit if we are going to
1747 leave LP running, since we have skipped resuming all the
1748 other threads. This bit of code needs to be synchronized
1749 with linux_nat_wait. */
76f50ad1 1750
710151dd
PA
1751 /* In async mode, we never have pending wait status. */
1752 if (target_can_async_p () && lp->status)
1753 internal_error (__FILE__, __LINE__, "Pending status in async mode");
1754
9f0bdab8
DJ
1755 if (lp->status && WIFSTOPPED (lp->status))
1756 {
d6b48e9c
PA
1757 int saved_signo;
1758 struct inferior *inf;
76f50ad1 1759
d6b48e9c
PA
1760 inf = find_inferior_pid (ptid_get_pid (ptid));
1761 gdb_assert (inf);
1762 saved_signo = target_signal_from_host (WSTOPSIG (lp->status));
1763
1764 /* Defer to common code if we're gaining control of the
1765 inferior. */
1766 if (inf->stop_soon == NO_STOP_QUIETLY
1767 && signal_stop_state (saved_signo) == 0
9f0bdab8
DJ
1768 && signal_print_state (saved_signo) == 0
1769 && signal_pass_state (saved_signo) == 1)
d6b0e80f 1770 {
9f0bdab8
DJ
1771 if (debug_linux_nat)
1772 fprintf_unfiltered (gdb_stdlog,
1773 "LLR: Not short circuiting for ignored "
1774 "status 0x%x\n", lp->status);
1775
d6b0e80f
AC
1776 /* FIXME: What should we do if we are supposed to continue
1777 this thread with a signal? */
1778 gdb_assert (signo == TARGET_SIGNAL_0);
9f0bdab8
DJ
1779 signo = saved_signo;
1780 lp->status = 0;
1781 }
1782 }
76f50ad1 1783
9f0bdab8
DJ
1784 if (lp->status)
1785 {
1786 /* FIXME: What should we do if we are supposed to continue
1787 this thread with a signal? */
1788 gdb_assert (signo == TARGET_SIGNAL_0);
76f50ad1 1789
9f0bdab8
DJ
1790 if (debug_linux_nat)
1791 fprintf_unfiltered (gdb_stdlog,
1792 "LLR: Short circuiting for status 0x%x\n",
1793 lp->status);
d6b0e80f 1794
9f0bdab8 1795 return;
d6b0e80f
AC
1796 }
1797
9f0bdab8
DJ
1798 /* Mark LWP as not stopped to prevent it from being continued by
1799 resume_callback. */
1800 lp->stopped = 0;
1801
d6b0e80f
AC
1802 if (resume_all)
1803 iterate_over_lwps (resume_callback, NULL);
1804
10d6c8cd 1805 linux_ops->to_resume (ptid, step, signo);
9f0bdab8
DJ
1806 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
1807
d6b0e80f
AC
1808 if (debug_linux_nat)
1809 fprintf_unfiltered (gdb_stdlog,
1810 "LLR: %s %s, %s (resume event thread)\n",
1811 step ? "PTRACE_SINGLESTEP" : "PTRACE_CONT",
1812 target_pid_to_str (ptid),
1813 signo ? strsignal (signo) : "0");
b84876c2
PA
1814
1815 if (target_can_async_p ())
8ea051c5 1816 target_async (inferior_event_handler, 0);
d6b0e80f
AC
1817}
1818
1819/* Issue kill to specified lwp. */
1820
1821static int tkill_failed;
1822
1823static int
1824kill_lwp (int lwpid, int signo)
1825{
1826 errno = 0;
1827
1828/* Use tkill, if possible, in case we are using nptl threads. If tkill
1829 fails, then we are not using nptl threads and we should be using kill. */
1830
1831#ifdef HAVE_TKILL_SYSCALL
1832 if (!tkill_failed)
1833 {
1834 int ret = syscall (__NR_tkill, lwpid, signo);
1835 if (errno != ENOSYS)
1836 return ret;
1837 errno = 0;
1838 tkill_failed = 1;
1839 }
1840#endif
1841
1842 return kill (lwpid, signo);
1843}
1844
3d799a95
DJ
1845/* Handle a GNU/Linux extended wait response. If we see a clone
1846 event, we need to add the new LWP to our list (and not report the
1847 trap to higher layers). This function returns non-zero if the
1848 event should be ignored and we should wait again. If STOPPING is
1849 true, the new LWP remains stopped, otherwise it is continued. */
d6b0e80f
AC
1850
1851static int
3d799a95
DJ
1852linux_handle_extended_wait (struct lwp_info *lp, int status,
1853 int stopping)
d6b0e80f 1854{
3d799a95
DJ
1855 int pid = GET_LWP (lp->ptid);
1856 struct target_waitstatus *ourstatus = &lp->waitstatus;
1857 struct lwp_info *new_lp = NULL;
1858 int event = status >> 16;
d6b0e80f 1859
3d799a95
DJ
1860 if (event == PTRACE_EVENT_FORK || event == PTRACE_EVENT_VFORK
1861 || event == PTRACE_EVENT_CLONE)
d6b0e80f 1862 {
3d799a95
DJ
1863 unsigned long new_pid;
1864 int ret;
1865
1866 ptrace (PTRACE_GETEVENTMSG, pid, 0, &new_pid);
6fc19103 1867
3d799a95
DJ
1868 /* If we haven't already seen the new PID stop, wait for it now. */
1869 if (! pull_pid_from_list (&stopped_pids, new_pid, &status))
1870 {
1871 /* The new child has a pending SIGSTOP. We can't affect it until it
1872 hits the SIGSTOP, but we're already attached. */
1873 ret = my_waitpid (new_pid, &status,
1874 (event == PTRACE_EVENT_CLONE) ? __WCLONE : 0);
1875 if (ret == -1)
1876 perror_with_name (_("waiting for new child"));
1877 else if (ret != new_pid)
1878 internal_error (__FILE__, __LINE__,
1879 _("wait returned unexpected PID %d"), ret);
1880 else if (!WIFSTOPPED (status))
1881 internal_error (__FILE__, __LINE__,
1882 _("wait returned unexpected status 0x%x"), status);
1883 }
1884
3a3e9ee3 1885 ourstatus->value.related_pid = ptid_build (new_pid, new_pid, 0);
3d799a95
DJ
1886
1887 if (event == PTRACE_EVENT_FORK)
1888 ourstatus->kind = TARGET_WAITKIND_FORKED;
1889 else if (event == PTRACE_EVENT_VFORK)
1890 ourstatus->kind = TARGET_WAITKIND_VFORKED;
6fc19103 1891 else
3d799a95 1892 {
4c28f408
PA
1893 struct cleanup *old_chain;
1894
3d799a95
DJ
1895 ourstatus->kind = TARGET_WAITKIND_IGNORE;
1896 new_lp = add_lwp (BUILD_LWP (new_pid, GET_PID (inferior_ptid)));
1897 new_lp->cloned = 1;
4c28f408 1898 new_lp->stopped = 1;
d6b0e80f 1899
3d799a95
DJ
1900 if (WSTOPSIG (status) != SIGSTOP)
1901 {
1902 /* This can happen if someone starts sending signals to
1903 the new thread before it gets a chance to run, which
1904 have a lower number than SIGSTOP (e.g. SIGUSR1).
1905 This is an unlikely case, and harder to handle for
1906 fork / vfork than for clone, so we do not try - but
1907 we handle it for clone events here. We'll send
1908 the other signal on to the thread below. */
1909
1910 new_lp->signalled = 1;
1911 }
1912 else
1913 status = 0;
d6b0e80f 1914
4c28f408 1915 if (non_stop)
3d799a95 1916 {
4c28f408
PA
1917 /* Add the new thread to GDB's lists as soon as possible
1918 so that:
1919
1920 1) the frontend doesn't have to wait for a stop to
1921 display them, and,
1922
1923 2) we tag it with the correct running state. */
1924
1925 /* If the thread_db layer is active, let it know about
1926 this new thread, and add it to GDB's list. */
1927 if (!thread_db_attach_lwp (new_lp->ptid))
1928 {
1929 /* We're not using thread_db. Add it to GDB's
1930 list. */
1931 target_post_attach (GET_LWP (new_lp->ptid));
1932 add_thread (new_lp->ptid);
1933 }
1934
1935 if (!stopping)
1936 {
1937 set_running (new_lp->ptid, 1);
1938 set_executing (new_lp->ptid, 1);
1939 }
1940 }
1941
1942 if (!stopping)
1943 {
1944 new_lp->stopped = 0;
3d799a95 1945 new_lp->resumed = 1;
4c28f408 1946 ptrace (PTRACE_CONT, new_pid, 0,
3d799a95
DJ
1947 status ? WSTOPSIG (status) : 0);
1948 }
d6b0e80f 1949
3d799a95
DJ
1950 if (debug_linux_nat)
1951 fprintf_unfiltered (gdb_stdlog,
1952 "LHEW: Got clone event from LWP %ld, resuming\n",
1953 GET_LWP (lp->ptid));
1954 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
1955
1956 return 1;
1957 }
1958
1959 return 0;
d6b0e80f
AC
1960 }
1961
3d799a95
DJ
1962 if (event == PTRACE_EVENT_EXEC)
1963 {
1964 ourstatus->kind = TARGET_WAITKIND_EXECD;
1965 ourstatus->value.execd_pathname
6d8fd2b7 1966 = xstrdup (linux_child_pid_to_exec_file (pid));
3d799a95
DJ
1967
1968 if (linux_parent_pid)
1969 {
1970 detach_breakpoints (linux_parent_pid);
1971 ptrace (PTRACE_DETACH, linux_parent_pid, 0, 0);
1972
1973 linux_parent_pid = 0;
1974 }
1975
25b22b0a
PA
1976 /* At this point, all inserted breakpoints are gone. Doing this
1977 as soon as we detect an exec prevents the badness of deleting
1978 a breakpoint writing the current "shadow contents" to lift
1979 the bp. That shadow is NOT valid after an exec.
1980
1981 Note that we have to do this after the detach_breakpoints
1982 call above, otherwise breakpoints wouldn't be lifted from the
1983 parent on a vfork, because detach_breakpoints would think
1984 that breakpoints are not inserted. */
1985 mark_breakpoints_out ();
3d799a95
DJ
1986 return 0;
1987 }
1988
1989 internal_error (__FILE__, __LINE__,
1990 _("unknown ptrace event %d"), event);
d6b0e80f
AC
1991}
1992
1993/* Wait for LP to stop. Returns the wait status, or 0 if the LWP has
1994 exited. */
1995
1996static int
1997wait_lwp (struct lwp_info *lp)
1998{
1999 pid_t pid;
2000 int status;
2001 int thread_dead = 0;
2002
2003 gdb_assert (!lp->stopped);
2004 gdb_assert (lp->status == 0);
2005
58aecb61 2006 pid = my_waitpid (GET_LWP (lp->ptid), &status, 0);
d6b0e80f
AC
2007 if (pid == -1 && errno == ECHILD)
2008 {
58aecb61 2009 pid = my_waitpid (GET_LWP (lp->ptid), &status, __WCLONE);
d6b0e80f
AC
2010 if (pid == -1 && errno == ECHILD)
2011 {
2012 /* The thread has previously exited. We need to delete it
2013 now because, for some vendor 2.4 kernels with NPTL
2014 support backported, there won't be an exit event unless
2015 it is the main thread. 2.6 kernels will report an exit
2016 event for each thread that exits, as expected. */
2017 thread_dead = 1;
2018 if (debug_linux_nat)
2019 fprintf_unfiltered (gdb_stdlog, "WL: %s vanished.\n",
2020 target_pid_to_str (lp->ptid));
2021 }
2022 }
2023
2024 if (!thread_dead)
2025 {
2026 gdb_assert (pid == GET_LWP (lp->ptid));
2027
2028 if (debug_linux_nat)
2029 {
2030 fprintf_unfiltered (gdb_stdlog,
2031 "WL: waitpid %s received %s\n",
2032 target_pid_to_str (lp->ptid),
2033 status_to_str (status));
2034 }
2035 }
2036
2037 /* Check if the thread has exited. */
2038 if (WIFEXITED (status) || WIFSIGNALED (status))
2039 {
2040 thread_dead = 1;
2041 if (debug_linux_nat)
2042 fprintf_unfiltered (gdb_stdlog, "WL: %s exited.\n",
2043 target_pid_to_str (lp->ptid));
2044 }
2045
2046 if (thread_dead)
2047 {
e26af52f 2048 exit_lwp (lp);
d6b0e80f
AC
2049 return 0;
2050 }
2051
2052 gdb_assert (WIFSTOPPED (status));
2053
2054 /* Handle GNU/Linux's extended waitstatus for trace events. */
2055 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP && status >> 16 != 0)
2056 {
2057 if (debug_linux_nat)
2058 fprintf_unfiltered (gdb_stdlog,
2059 "WL: Handling extended status 0x%06x\n",
2060 status);
3d799a95 2061 if (linux_handle_extended_wait (lp, status, 1))
d6b0e80f
AC
2062 return wait_lwp (lp);
2063 }
2064
2065 return status;
2066}
2067
9f0bdab8
DJ
2068/* Save the most recent siginfo for LP. This is currently only called
2069 for SIGTRAP; some ports use the si_addr field for
2070 target_stopped_data_address. In the future, it may also be used to
2071 restore the siginfo of requeued signals. */
2072
2073static void
2074save_siginfo (struct lwp_info *lp)
2075{
2076 errno = 0;
2077 ptrace (PTRACE_GETSIGINFO, GET_LWP (lp->ptid),
2078 (PTRACE_TYPE_ARG3) 0, &lp->siginfo);
2079
2080 if (errno != 0)
2081 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
2082}
2083
d6b0e80f
AC
2084/* Send a SIGSTOP to LP. */
2085
2086static int
2087stop_callback (struct lwp_info *lp, void *data)
2088{
2089 if (!lp->stopped && !lp->signalled)
2090 {
2091 int ret;
2092
2093 if (debug_linux_nat)
2094 {
2095 fprintf_unfiltered (gdb_stdlog,
2096 "SC: kill %s **<SIGSTOP>**\n",
2097 target_pid_to_str (lp->ptid));
2098 }
2099 errno = 0;
2100 ret = kill_lwp (GET_LWP (lp->ptid), SIGSTOP);
2101 if (debug_linux_nat)
2102 {
2103 fprintf_unfiltered (gdb_stdlog,
2104 "SC: lwp kill %d %s\n",
2105 ret,
2106 errno ? safe_strerror (errno) : "ERRNO-OK");
2107 }
2108
2109 lp->signalled = 1;
2110 gdb_assert (lp->status == 0);
2111 }
2112
2113 return 0;
2114}
2115
57380f4e 2116/* Return non-zero if LWP PID has a pending SIGINT. */
d6b0e80f
AC
2117
2118static int
57380f4e
DJ
2119linux_nat_has_pending_sigint (int pid)
2120{
2121 sigset_t pending, blocked, ignored;
2122 int i;
2123
2124 linux_proc_pending_signals (pid, &pending, &blocked, &ignored);
2125
2126 if (sigismember (&pending, SIGINT)
2127 && !sigismember (&ignored, SIGINT))
2128 return 1;
2129
2130 return 0;
2131}
2132
2133/* Set a flag in LP indicating that we should ignore its next SIGINT. */
2134
2135static int
2136set_ignore_sigint (struct lwp_info *lp, void *data)
d6b0e80f 2137{
57380f4e
DJ
2138 /* If a thread has a pending SIGINT, consume it; otherwise, set a
2139 flag to consume the next one. */
2140 if (lp->stopped && lp->status != 0 && WIFSTOPPED (lp->status)
2141 && WSTOPSIG (lp->status) == SIGINT)
2142 lp->status = 0;
2143 else
2144 lp->ignore_sigint = 1;
2145
2146 return 0;
2147}
2148
2149/* If LP does not have a SIGINT pending, then clear the ignore_sigint flag.
2150 This function is called after we know the LWP has stopped; if the LWP
2151 stopped before the expected SIGINT was delivered, then it will never have
2152 arrived. Also, if the signal was delivered to a shared queue and consumed
2153 by a different thread, it will never be delivered to this LWP. */
d6b0e80f 2154
57380f4e
DJ
2155static void
2156maybe_clear_ignore_sigint (struct lwp_info *lp)
2157{
2158 if (!lp->ignore_sigint)
2159 return;
2160
2161 if (!linux_nat_has_pending_sigint (GET_LWP (lp->ptid)))
2162 {
2163 if (debug_linux_nat)
2164 fprintf_unfiltered (gdb_stdlog,
2165 "MCIS: Clearing bogus flag for %s\n",
2166 target_pid_to_str (lp->ptid));
2167 lp->ignore_sigint = 0;
2168 }
2169}
2170
2171/* Wait until LP is stopped. */
2172
2173static int
2174stop_wait_callback (struct lwp_info *lp, void *data)
2175{
d6b0e80f
AC
2176 if (!lp->stopped)
2177 {
2178 int status;
2179
2180 status = wait_lwp (lp);
2181 if (status == 0)
2182 return 0;
2183
57380f4e
DJ
2184 if (lp->ignore_sigint && WIFSTOPPED (status)
2185 && WSTOPSIG (status) == SIGINT)
d6b0e80f 2186 {
57380f4e 2187 lp->ignore_sigint = 0;
d6b0e80f
AC
2188
2189 errno = 0;
2190 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2191 if (debug_linux_nat)
2192 fprintf_unfiltered (gdb_stdlog,
57380f4e 2193 "PTRACE_CONT %s, 0, 0 (%s) (discarding SIGINT)\n",
d6b0e80f
AC
2194 target_pid_to_str (lp->ptid),
2195 errno ? safe_strerror (errno) : "OK");
2196
57380f4e 2197 return stop_wait_callback (lp, NULL);
d6b0e80f
AC
2198 }
2199
57380f4e
DJ
2200 maybe_clear_ignore_sigint (lp);
2201
d6b0e80f
AC
2202 if (WSTOPSIG (status) != SIGSTOP)
2203 {
2204 if (WSTOPSIG (status) == SIGTRAP)
2205 {
2206 /* If a LWP other than the LWP that we're reporting an
2207 event for has hit a GDB breakpoint (as opposed to
2208 some random trap signal), then just arrange for it to
2209 hit it again later. We don't keep the SIGTRAP status
2210 and don't forward the SIGTRAP signal to the LWP. We
2211 will handle the current event, eventually we will
2212 resume all LWPs, and this one will get its breakpoint
2213 trap again.
2214
2215 If we do not do this, then we run the risk that the
2216 user will delete or disable the breakpoint, but the
2217 thread will have already tripped on it. */
2218
9f0bdab8
DJ
2219 /* Save the trap's siginfo in case we need it later. */
2220 save_siginfo (lp);
2221
d6b0e80f
AC
2222 /* Now resume this LWP and get the SIGSTOP event. */
2223 errno = 0;
2224 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2225 if (debug_linux_nat)
2226 {
2227 fprintf_unfiltered (gdb_stdlog,
2228 "PTRACE_CONT %s, 0, 0 (%s)\n",
2229 target_pid_to_str (lp->ptid),
2230 errno ? safe_strerror (errno) : "OK");
2231
2232 fprintf_unfiltered (gdb_stdlog,
2233 "SWC: Candidate SIGTRAP event in %s\n",
2234 target_pid_to_str (lp->ptid));
2235 }
710151dd
PA
2236 /* Hold this event/waitstatus while we check to see if
2237 there are any more (we still want to get that SIGSTOP). */
57380f4e 2238 stop_wait_callback (lp, NULL);
710151dd
PA
2239
2240 if (target_can_async_p ())
d6b0e80f 2241 {
710151dd
PA
2242 /* Don't leave a pending wait status in async mode.
2243 Retrigger the breakpoint. */
2244 if (!cancel_breakpoint (lp))
d6b0e80f 2245 {
710151dd
PA
2246 /* There was no gdb breakpoint set at pc. Put
2247 the event back in the queue. */
2248 if (debug_linux_nat)
252fbfc8
PA
2249 fprintf_unfiltered (gdb_stdlog, "\
2250SWC: leaving SIGTRAP in local queue of %s\n", target_pid_to_str (lp->ptid));
2251 push_waitpid (GET_LWP (lp->ptid),
2252 W_STOPCODE (SIGTRAP),
2253 lp->cloned ? __WCLONE : 0);
710151dd
PA
2254 }
2255 }
2256 else
2257 {
2258 /* Hold the SIGTRAP for handling by
2259 linux_nat_wait. */
2260 /* If there's another event, throw it back into the
2261 queue. */
2262 if (lp->status)
2263 {
2264 if (debug_linux_nat)
2265 fprintf_unfiltered (gdb_stdlog,
2266 "SWC: kill %s, %s\n",
2267 target_pid_to_str (lp->ptid),
2268 status_to_str ((int) status));
2269 kill_lwp (GET_LWP (lp->ptid), WSTOPSIG (lp->status));
d6b0e80f 2270 }
710151dd
PA
2271 /* Save the sigtrap event. */
2272 lp->status = status;
d6b0e80f 2273 }
d6b0e80f
AC
2274 return 0;
2275 }
2276 else
2277 {
2278 /* The thread was stopped with a signal other than
2279 SIGSTOP, and didn't accidentally trip a breakpoint. */
2280
2281 if (debug_linux_nat)
2282 {
2283 fprintf_unfiltered (gdb_stdlog,
2284 "SWC: Pending event %s in %s\n",
2285 status_to_str ((int) status),
2286 target_pid_to_str (lp->ptid));
2287 }
2288 /* Now resume this LWP and get the SIGSTOP event. */
2289 errno = 0;
2290 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2291 if (debug_linux_nat)
2292 fprintf_unfiltered (gdb_stdlog,
2293 "SWC: PTRACE_CONT %s, 0, 0 (%s)\n",
2294 target_pid_to_str (lp->ptid),
2295 errno ? safe_strerror (errno) : "OK");
2296
2297 /* Hold this event/waitstatus while we check to see if
2298 there are any more (we still want to get that SIGSTOP). */
57380f4e 2299 stop_wait_callback (lp, NULL);
710151dd
PA
2300
2301 /* If the lp->status field is still empty, use it to
2302 hold this event. If not, then this event must be
2303 returned to the event queue of the LWP. */
2304 if (lp->status || target_can_async_p ())
d6b0e80f
AC
2305 {
2306 if (debug_linux_nat)
2307 {
2308 fprintf_unfiltered (gdb_stdlog,
2309 "SWC: kill %s, %s\n",
2310 target_pid_to_str (lp->ptid),
2311 status_to_str ((int) status));
2312 }
2313 kill_lwp (GET_LWP (lp->ptid), WSTOPSIG (status));
2314 }
710151dd
PA
2315 else
2316 lp->status = status;
d6b0e80f
AC
2317 return 0;
2318 }
2319 }
2320 else
2321 {
2322 /* We caught the SIGSTOP that we intended to catch, so
2323 there's no SIGSTOP pending. */
2324 lp->stopped = 1;
2325 lp->signalled = 0;
2326 }
2327 }
2328
2329 return 0;
2330}
2331
d6b0e80f
AC
2332/* Return non-zero if LP has a wait status pending. */
2333
2334static int
2335status_callback (struct lwp_info *lp, void *data)
2336{
2337 /* Only report a pending wait status if we pretend that this has
2338 indeed been resumed. */
2339 return (lp->status != 0 && lp->resumed);
2340}
2341
2342/* Return non-zero if LP isn't stopped. */
2343
2344static int
2345running_callback (struct lwp_info *lp, void *data)
2346{
2347 return (lp->stopped == 0 || (lp->status != 0 && lp->resumed));
2348}
2349
2350/* Count the LWP's that have had events. */
2351
2352static int
2353count_events_callback (struct lwp_info *lp, void *data)
2354{
2355 int *count = data;
2356
2357 gdb_assert (count != NULL);
2358
e09490f1
DJ
2359 /* Count only resumed LWPs that have a SIGTRAP event pending. */
2360 if (lp->status != 0 && lp->resumed
d6b0e80f
AC
2361 && WIFSTOPPED (lp->status) && WSTOPSIG (lp->status) == SIGTRAP)
2362 (*count)++;
2363
2364 return 0;
2365}
2366
2367/* Select the LWP (if any) that is currently being single-stepped. */
2368
2369static int
2370select_singlestep_lwp_callback (struct lwp_info *lp, void *data)
2371{
2372 if (lp->step && lp->status != 0)
2373 return 1;
2374 else
2375 return 0;
2376}
2377
2378/* Select the Nth LWP that has had a SIGTRAP event. */
2379
2380static int
2381select_event_lwp_callback (struct lwp_info *lp, void *data)
2382{
2383 int *selector = data;
2384
2385 gdb_assert (selector != NULL);
2386
e09490f1
DJ
2387 /* Select only resumed LWPs that have a SIGTRAP event pending. */
2388 if (lp->status != 0 && lp->resumed
d6b0e80f
AC
2389 && WIFSTOPPED (lp->status) && WSTOPSIG (lp->status) == SIGTRAP)
2390 if ((*selector)-- == 0)
2391 return 1;
2392
2393 return 0;
2394}
2395
710151dd
PA
2396static int
2397cancel_breakpoint (struct lwp_info *lp)
2398{
2399 /* Arrange for a breakpoint to be hit again later. We don't keep
2400 the SIGTRAP status and don't forward the SIGTRAP signal to the
2401 LWP. We will handle the current event, eventually we will resume
2402 this LWP, and this breakpoint will trap again.
2403
2404 If we do not do this, then we run the risk that the user will
2405 delete or disable the breakpoint, but the LWP will have already
2406 tripped on it. */
2407
515630c5
UW
2408 struct regcache *regcache = get_thread_regcache (lp->ptid);
2409 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2410 CORE_ADDR pc;
2411
2412 pc = regcache_read_pc (regcache) - gdbarch_decr_pc_after_break (gdbarch);
2413 if (breakpoint_inserted_here_p (pc))
710151dd
PA
2414 {
2415 if (debug_linux_nat)
2416 fprintf_unfiltered (gdb_stdlog,
2417 "CB: Push back breakpoint for %s\n",
2418 target_pid_to_str (lp->ptid));
2419
2420 /* Back up the PC if necessary. */
515630c5
UW
2421 if (gdbarch_decr_pc_after_break (gdbarch))
2422 regcache_write_pc (regcache, pc);
2423
710151dd
PA
2424 return 1;
2425 }
2426 return 0;
2427}
2428
d6b0e80f
AC
2429static int
2430cancel_breakpoints_callback (struct lwp_info *lp, void *data)
2431{
2432 struct lwp_info *event_lp = data;
2433
2434 /* Leave the LWP that has been elected to receive a SIGTRAP alone. */
2435 if (lp == event_lp)
2436 return 0;
2437
2438 /* If a LWP other than the LWP that we're reporting an event for has
2439 hit a GDB breakpoint (as opposed to some random trap signal),
2440 then just arrange for it to hit it again later. We don't keep
2441 the SIGTRAP status and don't forward the SIGTRAP signal to the
2442 LWP. We will handle the current event, eventually we will resume
2443 all LWPs, and this one will get its breakpoint trap again.
2444
2445 If we do not do this, then we run the risk that the user will
2446 delete or disable the breakpoint, but the LWP will have already
2447 tripped on it. */
2448
2449 if (lp->status != 0
2450 && WIFSTOPPED (lp->status) && WSTOPSIG (lp->status) == SIGTRAP
710151dd
PA
2451 && cancel_breakpoint (lp))
2452 /* Throw away the SIGTRAP. */
2453 lp->status = 0;
d6b0e80f
AC
2454
2455 return 0;
2456}
2457
2458/* Select one LWP out of those that have events pending. */
2459
2460static void
2461select_event_lwp (struct lwp_info **orig_lp, int *status)
2462{
2463 int num_events = 0;
2464 int random_selector;
2465 struct lwp_info *event_lp;
2466
ac264b3b 2467 /* Record the wait status for the original LWP. */
d6b0e80f
AC
2468 (*orig_lp)->status = *status;
2469
2470 /* Give preference to any LWP that is being single-stepped. */
2471 event_lp = iterate_over_lwps (select_singlestep_lwp_callback, NULL);
2472 if (event_lp != NULL)
2473 {
2474 if (debug_linux_nat)
2475 fprintf_unfiltered (gdb_stdlog,
2476 "SEL: Select single-step %s\n",
2477 target_pid_to_str (event_lp->ptid));
2478 }
2479 else
2480 {
2481 /* No single-stepping LWP. Select one at random, out of those
2482 which have had SIGTRAP events. */
2483
2484 /* First see how many SIGTRAP events we have. */
2485 iterate_over_lwps (count_events_callback, &num_events);
2486
2487 /* Now randomly pick a LWP out of those that have had a SIGTRAP. */
2488 random_selector = (int)
2489 ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
2490
2491 if (debug_linux_nat && num_events > 1)
2492 fprintf_unfiltered (gdb_stdlog,
2493 "SEL: Found %d SIGTRAP events, selecting #%d\n",
2494 num_events, random_selector);
2495
2496 event_lp = iterate_over_lwps (select_event_lwp_callback,
2497 &random_selector);
2498 }
2499
2500 if (event_lp != NULL)
2501 {
2502 /* Switch the event LWP. */
2503 *orig_lp = event_lp;
2504 *status = event_lp->status;
2505 }
2506
2507 /* Flush the wait status for the event LWP. */
2508 (*orig_lp)->status = 0;
2509}
2510
2511/* Return non-zero if LP has been resumed. */
2512
2513static int
2514resumed_callback (struct lwp_info *lp, void *data)
2515{
2516 return lp->resumed;
2517}
2518
d6b0e80f
AC
2519/* Stop an active thread, verify it still exists, then resume it. */
2520
2521static int
2522stop_and_resume_callback (struct lwp_info *lp, void *data)
2523{
2524 struct lwp_info *ptr;
2525
2526 if (!lp->stopped && !lp->signalled)
2527 {
2528 stop_callback (lp, NULL);
2529 stop_wait_callback (lp, NULL);
2530 /* Resume if the lwp still exists. */
2531 for (ptr = lwp_list; ptr; ptr = ptr->next)
2532 if (lp == ptr)
2533 {
2534 resume_callback (lp, NULL);
2535 resume_set_callback (lp, NULL);
2536 }
2537 }
2538 return 0;
2539}
2540
02f3fc28 2541/* Check if we should go on and pass this event to common code.
fa2c6a57 2542 Return the affected lwp if we are, or NULL otherwise. */
02f3fc28
PA
2543static struct lwp_info *
2544linux_nat_filter_event (int lwpid, int status, int options)
2545{
2546 struct lwp_info *lp;
2547
2548 lp = find_lwp_pid (pid_to_ptid (lwpid));
2549
2550 /* Check for stop events reported by a process we didn't already
2551 know about - anything not already in our LWP list.
2552
2553 If we're expecting to receive stopped processes after
2554 fork, vfork, and clone events, then we'll just add the
2555 new one to our list and go back to waiting for the event
2556 to be reported - the stopped process might be returned
2557 from waitpid before or after the event is. */
2558 if (WIFSTOPPED (status) && !lp)
2559 {
2560 linux_record_stopped_pid (lwpid, status);
2561 return NULL;
2562 }
2563
2564 /* Make sure we don't report an event for the exit of an LWP not in
2565 our list, i.e. not part of the current process. This can happen
2566 if we detach from a program we original forked and then it
2567 exits. */
2568 if (!WIFSTOPPED (status) && !lp)
2569 return NULL;
2570
2571 /* NOTE drow/2003-06-17: This code seems to be meant for debugging
2572 CLONE_PTRACE processes which do not use the thread library -
2573 otherwise we wouldn't find the new LWP this way. That doesn't
2574 currently work, and the following code is currently unreachable
2575 due to the two blocks above. If it's fixed some day, this code
2576 should be broken out into a function so that we can also pick up
2577 LWPs from the new interface. */
2578 if (!lp)
2579 {
2580 lp = add_lwp (BUILD_LWP (lwpid, GET_PID (inferior_ptid)));
2581 if (options & __WCLONE)
2582 lp->cloned = 1;
2583
2584 gdb_assert (WIFSTOPPED (status)
2585 && WSTOPSIG (status) == SIGSTOP);
2586 lp->signalled = 1;
2587
2588 if (!in_thread_list (inferior_ptid))
2589 {
2590 inferior_ptid = BUILD_LWP (GET_PID (inferior_ptid),
2591 GET_PID (inferior_ptid));
2592 add_thread (inferior_ptid);
2593 }
2594
2595 add_thread (lp->ptid);
2596 }
2597
2598 /* Save the trap's siginfo in case we need it later. */
2599 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP)
2600 save_siginfo (lp);
2601
2602 /* Handle GNU/Linux's extended waitstatus for trace events. */
2603 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP && status >> 16 != 0)
2604 {
2605 if (debug_linux_nat)
2606 fprintf_unfiltered (gdb_stdlog,
2607 "LLW: Handling extended status 0x%06x\n",
2608 status);
2609 if (linux_handle_extended_wait (lp, status, 0))
2610 return NULL;
2611 }
2612
2613 /* Check if the thread has exited. */
2614 if ((WIFEXITED (status) || WIFSIGNALED (status)) && num_lwps > 1)
2615 {
2616 /* If this is the main thread, we must stop all threads and
2617 verify if they are still alive. This is because in the nptl
2618 thread model, there is no signal issued for exiting LWPs
2619 other than the main thread. We only get the main thread exit
2620 signal once all child threads have already exited. If we
2621 stop all the threads and use the stop_wait_callback to check
2622 if they have exited we can determine whether this signal
2623 should be ignored or whether it means the end of the debugged
2624 application, regardless of which threading model is being
2625 used. */
2626 if (GET_PID (lp->ptid) == GET_LWP (lp->ptid))
2627 {
2628 lp->stopped = 1;
2629 iterate_over_lwps (stop_and_resume_callback, NULL);
2630 }
2631
2632 if (debug_linux_nat)
2633 fprintf_unfiltered (gdb_stdlog,
2634 "LLW: %s exited.\n",
2635 target_pid_to_str (lp->ptid));
2636
2637 exit_lwp (lp);
2638
2639 /* If there is at least one more LWP, then the exit signal was
2640 not the end of the debugged application and should be
2641 ignored. */
2642 if (num_lwps > 0)
4c28f408 2643 return NULL;
02f3fc28
PA
2644 }
2645
2646 /* Check if the current LWP has previously exited. In the nptl
2647 thread model, LWPs other than the main thread do not issue
2648 signals when they exit so we must check whenever the thread has
2649 stopped. A similar check is made in stop_wait_callback(). */
2650 if (num_lwps > 1 && !linux_nat_thread_alive (lp->ptid))
2651 {
2652 if (debug_linux_nat)
2653 fprintf_unfiltered (gdb_stdlog,
2654 "LLW: %s exited.\n",
2655 target_pid_to_str (lp->ptid));
2656
2657 exit_lwp (lp);
2658
2659 /* Make sure there is at least one thread running. */
2660 gdb_assert (iterate_over_lwps (running_callback, NULL));
2661
2662 /* Discard the event. */
2663 return NULL;
2664 }
2665
2666 /* Make sure we don't report a SIGSTOP that we sent ourselves in
2667 an attempt to stop an LWP. */
2668 if (lp->signalled
2669 && WIFSTOPPED (status) && WSTOPSIG (status) == SIGSTOP)
2670 {
2671 if (debug_linux_nat)
2672 fprintf_unfiltered (gdb_stdlog,
2673 "LLW: Delayed SIGSTOP caught for %s.\n",
2674 target_pid_to_str (lp->ptid));
2675
2676 /* This is a delayed SIGSTOP. */
2677 lp->signalled = 0;
2678
2679 registers_changed ();
2680
2681 linux_ops->to_resume (pid_to_ptid (GET_LWP (lp->ptid)),
2682 lp->step, TARGET_SIGNAL_0);
2683 if (debug_linux_nat)
2684 fprintf_unfiltered (gdb_stdlog,
2685 "LLW: %s %s, 0, 0 (discard SIGSTOP)\n",
2686 lp->step ?
2687 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
2688 target_pid_to_str (lp->ptid));
2689
2690 lp->stopped = 0;
2691 gdb_assert (lp->resumed);
2692
2693 /* Discard the event. */
2694 return NULL;
2695 }
2696
57380f4e
DJ
2697 /* Make sure we don't report a SIGINT that we have already displayed
2698 for another thread. */
2699 if (lp->ignore_sigint
2700 && WIFSTOPPED (status) && WSTOPSIG (status) == SIGINT)
2701 {
2702 if (debug_linux_nat)
2703 fprintf_unfiltered (gdb_stdlog,
2704 "LLW: Delayed SIGINT caught for %s.\n",
2705 target_pid_to_str (lp->ptid));
2706
2707 /* This is a delayed SIGINT. */
2708 lp->ignore_sigint = 0;
2709
2710 registers_changed ();
2711 linux_ops->to_resume (pid_to_ptid (GET_LWP (lp->ptid)),
2712 lp->step, TARGET_SIGNAL_0);
2713 if (debug_linux_nat)
2714 fprintf_unfiltered (gdb_stdlog,
2715 "LLW: %s %s, 0, 0 (discard SIGINT)\n",
2716 lp->step ?
2717 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
2718 target_pid_to_str (lp->ptid));
2719
2720 lp->stopped = 0;
2721 gdb_assert (lp->resumed);
2722
2723 /* Discard the event. */
2724 return NULL;
2725 }
2726
02f3fc28
PA
2727 /* An interesting event. */
2728 gdb_assert (lp);
2729 return lp;
2730}
2731
b84876c2
PA
2732/* Get the events stored in the pipe into the local queue, so they are
2733 accessible to queued_waitpid. We need to do this, since it is not
2734 always the case that the event at the head of the pipe is the event
2735 we want. */
2736
2737static void
2738pipe_to_local_event_queue (void)
2739{
2740 if (debug_linux_nat_async)
2741 fprintf_unfiltered (gdb_stdlog,
2742 "PTLEQ: linux_nat_num_queued_events(%d)\n",
2743 linux_nat_num_queued_events);
2744 while (linux_nat_num_queued_events)
2745 {
2746 int lwpid, status, options;
b84876c2 2747 lwpid = linux_nat_event_pipe_pop (&status, &options);
b84876c2
PA
2748 gdb_assert (lwpid > 0);
2749 push_waitpid (lwpid, status, options);
2750 }
2751}
2752
2753/* Get the unprocessed events stored in the local queue back into the
2754 pipe, so the event loop realizes there's something else to
2755 process. */
2756
2757static void
2758local_event_queue_to_pipe (void)
2759{
2760 struct waitpid_result *w = waitpid_queue;
2761 while (w)
2762 {
2763 struct waitpid_result *next = w->next;
2764 linux_nat_event_pipe_push (w->pid,
2765 w->status,
2766 w->options);
2767 xfree (w);
2768 w = next;
2769 }
2770 waitpid_queue = NULL;
2771
2772 if (debug_linux_nat_async)
2773 fprintf_unfiltered (gdb_stdlog,
2774 "LEQTP: linux_nat_num_queued_events(%d)\n",
2775 linux_nat_num_queued_events);
2776}
2777
d6b0e80f
AC
2778static ptid_t
2779linux_nat_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
2780{
2781 struct lwp_info *lp = NULL;
2782 int options = 0;
2783 int status = 0;
2784 pid_t pid = PIDGET (ptid);
d6b0e80f 2785
b84876c2
PA
2786 if (debug_linux_nat_async)
2787 fprintf_unfiltered (gdb_stdlog, "LLW: enter\n");
2788
f973ed9c
DJ
2789 /* The first time we get here after starting a new inferior, we may
2790 not have added it to the LWP list yet - this is the earliest
2791 moment at which we know its PID. */
2792 if (num_lwps == 0)
2793 {
2794 gdb_assert (!is_lwp (inferior_ptid));
2795
27c9d204
PA
2796 /* Upgrade the main thread's ptid. */
2797 thread_change_ptid (inferior_ptid,
2798 BUILD_LWP (GET_PID (inferior_ptid),
2799 GET_PID (inferior_ptid)));
2800
f973ed9c
DJ
2801 lp = add_lwp (inferior_ptid);
2802 lp->resumed = 1;
2803 }
2804
84e46146
PA
2805 /* Block events while we're here. */
2806 linux_nat_async_events (sigchld_sync);
d6b0e80f
AC
2807
2808retry:
2809
f973ed9c
DJ
2810 /* Make sure there is at least one LWP that has been resumed. */
2811 gdb_assert (iterate_over_lwps (resumed_callback, NULL));
d6b0e80f
AC
2812
2813 /* First check if there is a LWP with a wait status pending. */
2814 if (pid == -1)
2815 {
2816 /* Any LWP that's been resumed will do. */
2817 lp = iterate_over_lwps (status_callback, NULL);
2818 if (lp)
2819 {
710151dd
PA
2820 if (target_can_async_p ())
2821 internal_error (__FILE__, __LINE__,
2822 "Found an LWP with a pending status in async mode.");
2823
d6b0e80f
AC
2824 status = lp->status;
2825 lp->status = 0;
2826
2827 if (debug_linux_nat && status)
2828 fprintf_unfiltered (gdb_stdlog,
2829 "LLW: Using pending wait status %s for %s.\n",
2830 status_to_str (status),
2831 target_pid_to_str (lp->ptid));
2832 }
2833
b84876c2 2834 /* But if we don't find one, we'll have to wait, and check both
d6b0e80f
AC
2835 cloned and uncloned processes. We start with the cloned
2836 processes. */
2837 options = __WCLONE | WNOHANG;
2838 }
2839 else if (is_lwp (ptid))
2840 {
2841 if (debug_linux_nat)
2842 fprintf_unfiltered (gdb_stdlog,
2843 "LLW: Waiting for specific LWP %s.\n",
2844 target_pid_to_str (ptid));
2845
2846 /* We have a specific LWP to check. */
2847 lp = find_lwp_pid (ptid);
2848 gdb_assert (lp);
2849 status = lp->status;
2850 lp->status = 0;
2851
2852 if (debug_linux_nat && status)
2853 fprintf_unfiltered (gdb_stdlog,
2854 "LLW: Using pending wait status %s for %s.\n",
2855 status_to_str (status),
2856 target_pid_to_str (lp->ptid));
2857
2858 /* If we have to wait, take into account whether PID is a cloned
2859 process or not. And we have to convert it to something that
2860 the layer beneath us can understand. */
2861 options = lp->cloned ? __WCLONE : 0;
2862 pid = GET_LWP (ptid);
2863 }
2864
2865 if (status && lp->signalled)
2866 {
2867 /* A pending SIGSTOP may interfere with the normal stream of
2868 events. In a typical case where interference is a problem,
2869 we have a SIGSTOP signal pending for LWP A while
2870 single-stepping it, encounter an event in LWP B, and take the
2871 pending SIGSTOP while trying to stop LWP A. After processing
2872 the event in LWP B, LWP A is continued, and we'll never see
2873 the SIGTRAP associated with the last time we were
2874 single-stepping LWP A. */
2875
2876 /* Resume the thread. It should halt immediately returning the
2877 pending SIGSTOP. */
2878 registers_changed ();
10d6c8cd
DJ
2879 linux_ops->to_resume (pid_to_ptid (GET_LWP (lp->ptid)),
2880 lp->step, TARGET_SIGNAL_0);
d6b0e80f
AC
2881 if (debug_linux_nat)
2882 fprintf_unfiltered (gdb_stdlog,
2883 "LLW: %s %s, 0, 0 (expect SIGSTOP)\n",
2884 lp->step ? "PTRACE_SINGLESTEP" : "PTRACE_CONT",
2885 target_pid_to_str (lp->ptid));
2886 lp->stopped = 0;
2887 gdb_assert (lp->resumed);
2888
2889 /* This should catch the pending SIGSTOP. */
2890 stop_wait_callback (lp, NULL);
2891 }
2892
b84876c2
PA
2893 if (!target_can_async_p ())
2894 {
2895 /* Causes SIGINT to be passed on to the attached process. */
2896 set_sigint_trap ();
b84876c2 2897 }
d6b0e80f
AC
2898
2899 while (status == 0)
2900 {
2901 pid_t lwpid;
2902
b84876c2
PA
2903 if (target_can_async_p ())
2904 /* In async mode, don't ever block. Only look at the locally
2905 queued events. */
2906 lwpid = queued_waitpid (pid, &status, options);
2907 else
2908 lwpid = my_waitpid (pid, &status, options);
2909
d6b0e80f
AC
2910 if (lwpid > 0)
2911 {
2912 gdb_assert (pid == -1 || lwpid == pid);
2913
2914 if (debug_linux_nat)
2915 {
2916 fprintf_unfiltered (gdb_stdlog,
2917 "LLW: waitpid %ld received %s\n",
2918 (long) lwpid, status_to_str (status));
2919 }
2920
02f3fc28 2921 lp = linux_nat_filter_event (lwpid, status, options);
d6b0e80f
AC
2922 if (!lp)
2923 {
02f3fc28 2924 /* A discarded event. */
d6b0e80f
AC
2925 status = 0;
2926 continue;
2927 }
2928
2929 break;
2930 }
2931
2932 if (pid == -1)
2933 {
2934 /* Alternate between checking cloned and uncloned processes. */
2935 options ^= __WCLONE;
2936
b84876c2
PA
2937 /* And every time we have checked both:
2938 In async mode, return to event loop;
2939 In sync mode, suspend waiting for a SIGCHLD signal. */
d6b0e80f 2940 if (options & __WCLONE)
b84876c2
PA
2941 {
2942 if (target_can_async_p ())
2943 {
2944 /* No interesting event. */
2945 ourstatus->kind = TARGET_WAITKIND_IGNORE;
2946
2947 /* Get ready for the next event. */
2948 target_async (inferior_event_handler, 0);
2949
2950 if (debug_linux_nat_async)
2951 fprintf_unfiltered (gdb_stdlog, "LLW: exit (ignore)\n");
2952
2953 return minus_one_ptid;
2954 }
2955
2956 sigsuspend (&suspend_mask);
2957 }
d6b0e80f
AC
2958 }
2959
2960 /* We shouldn't end up here unless we want to try again. */
2961 gdb_assert (status == 0);
2962 }
2963
b84876c2 2964 if (!target_can_async_p ())
d26b5354 2965 clear_sigint_trap ();
d6b0e80f
AC
2966
2967 gdb_assert (lp);
2968
2969 /* Don't report signals that GDB isn't interested in, such as
2970 signals that are neither printed nor stopped upon. Stopping all
2971 threads can be a bit time-consuming so if we want decent
2972 performance with heavily multi-threaded programs, especially when
2973 they're using a high frequency timer, we'd better avoid it if we
2974 can. */
2975
2976 if (WIFSTOPPED (status))
2977 {
2978 int signo = target_signal_from_host (WSTOPSIG (status));
d6b48e9c
PA
2979 struct inferior *inf;
2980
2981 inf = find_inferior_pid (ptid_get_pid (lp->ptid));
2982 gdb_assert (inf);
d6b0e80f 2983
d6b48e9c
PA
2984 /* Defer to common code if we get a signal while
2985 single-stepping, since that may need special care, e.g. to
2986 skip the signal handler, or, if we're gaining control of the
2987 inferior. */
d539ed7e 2988 if (!lp->step
d6b48e9c 2989 && inf->stop_soon == NO_STOP_QUIETLY
d539ed7e 2990 && signal_stop_state (signo) == 0
d6b0e80f
AC
2991 && signal_print_state (signo) == 0
2992 && signal_pass_state (signo) == 1)
2993 {
2994 /* FIMXE: kettenis/2001-06-06: Should we resume all threads
2995 here? It is not clear we should. GDB may not expect
2996 other threads to run. On the other hand, not resuming
2997 newly attached threads may cause an unwanted delay in
2998 getting them running. */
2999 registers_changed ();
10d6c8cd
DJ
3000 linux_ops->to_resume (pid_to_ptid (GET_LWP (lp->ptid)),
3001 lp->step, signo);
d6b0e80f
AC
3002 if (debug_linux_nat)
3003 fprintf_unfiltered (gdb_stdlog,
3004 "LLW: %s %s, %s (preempt 'handle')\n",
3005 lp->step ?
3006 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3007 target_pid_to_str (lp->ptid),
3008 signo ? strsignal (signo) : "0");
3009 lp->stopped = 0;
3010 status = 0;
3011 goto retry;
3012 }
3013
1ad15515 3014 if (!non_stop)
d6b0e80f 3015 {
1ad15515
PA
3016 /* Only do the below in all-stop, as we currently use SIGINT
3017 to implement target_stop (see linux_nat_stop) in
3018 non-stop. */
3019 if (signo == TARGET_SIGNAL_INT && signal_pass_state (signo) == 0)
3020 {
3021 /* If ^C/BREAK is typed at the tty/console, SIGINT gets
3022 forwarded to the entire process group, that is, all LWPs
3023 will receive it - unless they're using CLONE_THREAD to
3024 share signals. Since we only want to report it once, we
3025 mark it as ignored for all LWPs except this one. */
3026 iterate_over_lwps (set_ignore_sigint, NULL);
3027 lp->ignore_sigint = 0;
3028 }
3029 else
3030 maybe_clear_ignore_sigint (lp);
d6b0e80f
AC
3031 }
3032 }
3033
3034 /* This LWP is stopped now. */
3035 lp->stopped = 1;
3036
3037 if (debug_linux_nat)
3038 fprintf_unfiltered (gdb_stdlog, "LLW: Candidate event %s in %s.\n",
3039 status_to_str (status), target_pid_to_str (lp->ptid));
3040
4c28f408
PA
3041 if (!non_stop)
3042 {
3043 /* Now stop all other LWP's ... */
3044 iterate_over_lwps (stop_callback, NULL);
3045
3046 /* ... and wait until all of them have reported back that
3047 they're no longer running. */
57380f4e 3048 iterate_over_lwps (stop_wait_callback, NULL);
4c28f408
PA
3049
3050 /* If we're not waiting for a specific LWP, choose an event LWP
3051 from among those that have had events. Giving equal priority
3052 to all LWPs that have had events helps prevent
3053 starvation. */
3054 if (pid == -1)
3055 select_event_lwp (&lp, &status);
3056 }
d6b0e80f
AC
3057
3058 /* Now that we've selected our final event LWP, cancel any
3059 breakpoints in other LWPs that have hit a GDB breakpoint. See
3060 the comment in cancel_breakpoints_callback to find out why. */
3061 iterate_over_lwps (cancel_breakpoints_callback, lp);
3062
d6b0e80f
AC
3063 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP)
3064 {
d6b0e80f
AC
3065 if (debug_linux_nat)
3066 fprintf_unfiltered (gdb_stdlog,
4fdebdd0
PA
3067 "LLW: trap ptid is %s.\n",
3068 target_pid_to_str (lp->ptid));
d6b0e80f 3069 }
d6b0e80f
AC
3070
3071 if (lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
3072 {
3073 *ourstatus = lp->waitstatus;
3074 lp->waitstatus.kind = TARGET_WAITKIND_IGNORE;
3075 }
3076 else
3077 store_waitstatus (ourstatus, status);
3078
b84876c2
PA
3079 /* Get ready for the next event. */
3080 if (target_can_async_p ())
3081 target_async (inferior_event_handler, 0);
3082
3083 if (debug_linux_nat_async)
3084 fprintf_unfiltered (gdb_stdlog, "LLW: exit\n");
3085
f973ed9c 3086 return lp->ptid;
d6b0e80f
AC
3087}
3088
3089static int
3090kill_callback (struct lwp_info *lp, void *data)
3091{
3092 errno = 0;
3093 ptrace (PTRACE_KILL, GET_LWP (lp->ptid), 0, 0);
3094 if (debug_linux_nat)
3095 fprintf_unfiltered (gdb_stdlog,
3096 "KC: PTRACE_KILL %s, 0, 0 (%s)\n",
3097 target_pid_to_str (lp->ptid),
3098 errno ? safe_strerror (errno) : "OK");
3099
3100 return 0;
3101}
3102
3103static int
3104kill_wait_callback (struct lwp_info *lp, void *data)
3105{
3106 pid_t pid;
3107
3108 /* We must make sure that there are no pending events (delayed
3109 SIGSTOPs, pending SIGTRAPs, etc.) to make sure the current
3110 program doesn't interfere with any following debugging session. */
3111
3112 /* For cloned processes we must check both with __WCLONE and
3113 without, since the exit status of a cloned process isn't reported
3114 with __WCLONE. */
3115 if (lp->cloned)
3116 {
3117 do
3118 {
58aecb61 3119 pid = my_waitpid (GET_LWP (lp->ptid), NULL, __WCLONE);
e85a822c 3120 if (pid != (pid_t) -1)
d6b0e80f 3121 {
e85a822c
DJ
3122 if (debug_linux_nat)
3123 fprintf_unfiltered (gdb_stdlog,
3124 "KWC: wait %s received unknown.\n",
3125 target_pid_to_str (lp->ptid));
3126 /* The Linux kernel sometimes fails to kill a thread
3127 completely after PTRACE_KILL; that goes from the stop
3128 point in do_fork out to the one in
3129 get_signal_to_deliever and waits again. So kill it
3130 again. */
3131 kill_callback (lp, NULL);
d6b0e80f
AC
3132 }
3133 }
3134 while (pid == GET_LWP (lp->ptid));
3135
3136 gdb_assert (pid == -1 && errno == ECHILD);
3137 }
3138
3139 do
3140 {
58aecb61 3141 pid = my_waitpid (GET_LWP (lp->ptid), NULL, 0);
e85a822c 3142 if (pid != (pid_t) -1)
d6b0e80f 3143 {
e85a822c
DJ
3144 if (debug_linux_nat)
3145 fprintf_unfiltered (gdb_stdlog,
3146 "KWC: wait %s received unk.\n",
3147 target_pid_to_str (lp->ptid));
3148 /* See the call to kill_callback above. */
3149 kill_callback (lp, NULL);
d6b0e80f
AC
3150 }
3151 }
3152 while (pid == GET_LWP (lp->ptid));
3153
3154 gdb_assert (pid == -1 && errno == ECHILD);
3155 return 0;
3156}
3157
3158static void
3159linux_nat_kill (void)
3160{
f973ed9c
DJ
3161 struct target_waitstatus last;
3162 ptid_t last_ptid;
3163 int status;
d6b0e80f 3164
b84876c2
PA
3165 if (target_can_async_p ())
3166 target_async (NULL, 0);
3167
f973ed9c
DJ
3168 /* If we're stopped while forking and we haven't followed yet,
3169 kill the other task. We need to do this first because the
3170 parent will be sleeping if this is a vfork. */
d6b0e80f 3171
f973ed9c 3172 get_last_target_status (&last_ptid, &last);
d6b0e80f 3173
f973ed9c
DJ
3174 if (last.kind == TARGET_WAITKIND_FORKED
3175 || last.kind == TARGET_WAITKIND_VFORKED)
3176 {
3a3e9ee3 3177 ptrace (PT_KILL, PIDGET (last.value.related_pid), 0, 0);
f973ed9c
DJ
3178 wait (&status);
3179 }
3180
3181 if (forks_exist_p ())
b84876c2
PA
3182 {
3183 linux_fork_killall ();
3184 drain_queued_events (-1);
3185 }
f973ed9c
DJ
3186 else
3187 {
4c28f408
PA
3188 /* Stop all threads before killing them, since ptrace requires
3189 that the thread is stopped to sucessfully PTRACE_KILL. */
3190 iterate_over_lwps (stop_callback, NULL);
3191 /* ... and wait until all of them have reported back that
3192 they're no longer running. */
3193 iterate_over_lwps (stop_wait_callback, NULL);
3194
f973ed9c
DJ
3195 /* Kill all LWP's ... */
3196 iterate_over_lwps (kill_callback, NULL);
3197
3198 /* ... and wait until we've flushed all events. */
3199 iterate_over_lwps (kill_wait_callback, NULL);
3200 }
3201
3202 target_mourn_inferior ();
d6b0e80f
AC
3203}
3204
3205static void
136d6dae 3206linux_nat_mourn_inferior (struct target_ops *ops)
d6b0e80f 3207{
d6b0e80f
AC
3208 /* Destroy LWP info; it's no longer valid. */
3209 init_lwp_list ();
3210
f973ed9c 3211 if (! forks_exist_p ())
b84876c2
PA
3212 {
3213 /* Normal case, no other forks available. */
3214 if (target_can_async_p ())
3215 linux_nat_async (NULL, 0);
136d6dae 3216 linux_ops->to_mourn_inferior (ops);
b84876c2 3217 }
f973ed9c
DJ
3218 else
3219 /* Multi-fork case. The current inferior_ptid has exited, but
3220 there are other viable forks to debug. Delete the exiting
3221 one and context-switch to the first available. */
3222 linux_fork_mourn_inferior ();
d6b0e80f
AC
3223}
3224
10d6c8cd
DJ
3225static LONGEST
3226linux_nat_xfer_partial (struct target_ops *ops, enum target_object object,
3227 const char *annex, gdb_byte *readbuf,
3228 const gdb_byte *writebuf,
3229 ULONGEST offset, LONGEST len)
d6b0e80f
AC
3230{
3231 struct cleanup *old_chain = save_inferior_ptid ();
10d6c8cd 3232 LONGEST xfer;
d6b0e80f
AC
3233
3234 if (is_lwp (inferior_ptid))
3235 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
3236
10d6c8cd
DJ
3237 xfer = linux_ops->to_xfer_partial (ops, object, annex, readbuf, writebuf,
3238 offset, len);
d6b0e80f
AC
3239
3240 do_cleanups (old_chain);
3241 return xfer;
3242}
3243
3244static int
3245linux_nat_thread_alive (ptid_t ptid)
3246{
4c28f408
PA
3247 int err;
3248
d6b0e80f
AC
3249 gdb_assert (is_lwp (ptid));
3250
4c28f408
PA
3251 /* Send signal 0 instead of anything ptrace, because ptracing a
3252 running thread errors out claiming that the thread doesn't
3253 exist. */
3254 err = kill_lwp (GET_LWP (ptid), 0);
3255
d6b0e80f
AC
3256 if (debug_linux_nat)
3257 fprintf_unfiltered (gdb_stdlog,
4c28f408 3258 "LLTA: KILL(SIG0) %s (%s)\n",
d6b0e80f 3259 target_pid_to_str (ptid),
4c28f408 3260 err ? safe_strerror (err) : "OK");
9c0dd46b 3261
4c28f408 3262 if (err != 0)
d6b0e80f
AC
3263 return 0;
3264
3265 return 1;
3266}
3267
3268static char *
3269linux_nat_pid_to_str (ptid_t ptid)
3270{
3271 static char buf[64];
3272
a0ef4274
DJ
3273 if (is_lwp (ptid)
3274 && ((lwp_list && lwp_list->next)
3275 || GET_PID (ptid) != GET_LWP (ptid)))
d6b0e80f
AC
3276 {
3277 snprintf (buf, sizeof (buf), "LWP %ld", GET_LWP (ptid));
3278 return buf;
3279 }
3280
3281 return normal_pid_to_str (ptid);
3282}
3283
d6b0e80f
AC
3284static void
3285sigchld_handler (int signo)
3286{
c6ebd6cf 3287 if (target_async_permitted
84e46146 3288 && linux_nat_async_events_state != sigchld_sync
b84876c2
PA
3289 && signo == SIGCHLD)
3290 /* It is *always* a bug to hit this. */
3291 internal_error (__FILE__, __LINE__,
3292 "sigchld_handler called when async events are enabled");
3293
d6b0e80f
AC
3294 /* Do nothing. The only reason for this handler is that it allows
3295 us to use sigsuspend in linux_nat_wait above to wait for the
3296 arrival of a SIGCHLD. */
3297}
3298
dba24537
AC
3299/* Accepts an integer PID; Returns a string representing a file that
3300 can be opened to get the symbols for the child process. */
3301
6d8fd2b7
UW
3302static char *
3303linux_child_pid_to_exec_file (int pid)
dba24537
AC
3304{
3305 char *name1, *name2;
3306
3307 name1 = xmalloc (MAXPATHLEN);
3308 name2 = xmalloc (MAXPATHLEN);
3309 make_cleanup (xfree, name1);
3310 make_cleanup (xfree, name2);
3311 memset (name2, 0, MAXPATHLEN);
3312
3313 sprintf (name1, "/proc/%d/exe", pid);
3314 if (readlink (name1, name2, MAXPATHLEN) > 0)
3315 return name2;
3316 else
3317 return name1;
3318}
3319
3320/* Service function for corefiles and info proc. */
3321
3322static int
3323read_mapping (FILE *mapfile,
3324 long long *addr,
3325 long long *endaddr,
3326 char *permissions,
3327 long long *offset,
3328 char *device, long long *inode, char *filename)
3329{
3330 int ret = fscanf (mapfile, "%llx-%llx %s %llx %s %llx",
3331 addr, endaddr, permissions, offset, device, inode);
3332
2e14c2ea
MS
3333 filename[0] = '\0';
3334 if (ret > 0 && ret != EOF)
dba24537
AC
3335 {
3336 /* Eat everything up to EOL for the filename. This will prevent
3337 weird filenames (such as one with embedded whitespace) from
3338 confusing this code. It also makes this code more robust in
3339 respect to annotations the kernel may add after the filename.
3340
3341 Note the filename is used for informational purposes
3342 only. */
3343 ret += fscanf (mapfile, "%[^\n]\n", filename);
3344 }
2e14c2ea 3345
dba24537
AC
3346 return (ret != 0 && ret != EOF);
3347}
3348
3349/* Fills the "to_find_memory_regions" target vector. Lists the memory
3350 regions in the inferior for a corefile. */
3351
3352static int
3353linux_nat_find_memory_regions (int (*func) (CORE_ADDR,
3354 unsigned long,
3355 int, int, int, void *), void *obfd)
3356{
3357 long long pid = PIDGET (inferior_ptid);
3358 char mapsfilename[MAXPATHLEN];
3359 FILE *mapsfile;
3360 long long addr, endaddr, size, offset, inode;
3361 char permissions[8], device[8], filename[MAXPATHLEN];
3362 int read, write, exec;
3363 int ret;
7c8a8b04 3364 struct cleanup *cleanup;
dba24537
AC
3365
3366 /* Compose the filename for the /proc memory map, and open it. */
3367 sprintf (mapsfilename, "/proc/%lld/maps", pid);
3368 if ((mapsfile = fopen (mapsfilename, "r")) == NULL)
8a3fe4f8 3369 error (_("Could not open %s."), mapsfilename);
7c8a8b04 3370 cleanup = make_cleanup_fclose (mapsfile);
dba24537
AC
3371
3372 if (info_verbose)
3373 fprintf_filtered (gdb_stdout,
3374 "Reading memory regions from %s\n", mapsfilename);
3375
3376 /* Now iterate until end-of-file. */
3377 while (read_mapping (mapsfile, &addr, &endaddr, &permissions[0],
3378 &offset, &device[0], &inode, &filename[0]))
3379 {
3380 size = endaddr - addr;
3381
3382 /* Get the segment's permissions. */
3383 read = (strchr (permissions, 'r') != 0);
3384 write = (strchr (permissions, 'w') != 0);
3385 exec = (strchr (permissions, 'x') != 0);
3386
3387 if (info_verbose)
3388 {
3389 fprintf_filtered (gdb_stdout,
3390 "Save segment, %lld bytes at 0x%s (%c%c%c)",
3391 size, paddr_nz (addr),
3392 read ? 'r' : ' ',
3393 write ? 'w' : ' ', exec ? 'x' : ' ');
b260b6c1 3394 if (filename[0])
dba24537
AC
3395 fprintf_filtered (gdb_stdout, " for %s", filename);
3396 fprintf_filtered (gdb_stdout, "\n");
3397 }
3398
3399 /* Invoke the callback function to create the corefile
3400 segment. */
3401 func (addr, size, read, write, exec, obfd);
3402 }
7c8a8b04 3403 do_cleanups (cleanup);
dba24537
AC
3404 return 0;
3405}
3406
2020b7ab
PA
3407static int
3408find_signalled_thread (struct thread_info *info, void *data)
3409{
3410 if (info->stop_signal != TARGET_SIGNAL_0
3411 && ptid_get_pid (info->ptid) == ptid_get_pid (inferior_ptid))
3412 return 1;
3413
3414 return 0;
3415}
3416
3417static enum target_signal
3418find_stop_signal (void)
3419{
3420 struct thread_info *info =
3421 iterate_over_threads (find_signalled_thread, NULL);
3422
3423 if (info)
3424 return info->stop_signal;
3425 else
3426 return TARGET_SIGNAL_0;
3427}
3428
dba24537
AC
3429/* Records the thread's register state for the corefile note
3430 section. */
3431
3432static char *
3433linux_nat_do_thread_registers (bfd *obfd, ptid_t ptid,
2020b7ab
PA
3434 char *note_data, int *note_size,
3435 enum target_signal stop_signal)
dba24537
AC
3436{
3437 gdb_gregset_t gregs;
3438 gdb_fpregset_t fpregs;
dba24537 3439 unsigned long lwp = ptid_get_lwp (ptid);
594f7785
UW
3440 struct regcache *regcache = get_thread_regcache (ptid);
3441 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4f844a66 3442 const struct regset *regset;
55e969c1 3443 int core_regset_p;
594f7785 3444 struct cleanup *old_chain;
17ea7499
CES
3445 struct core_regset_section *sect_list;
3446 char *gdb_regset;
594f7785
UW
3447
3448 old_chain = save_inferior_ptid ();
3449 inferior_ptid = ptid;
3450 target_fetch_registers (regcache, -1);
3451 do_cleanups (old_chain);
4f844a66
DM
3452
3453 core_regset_p = gdbarch_regset_from_core_section_p (gdbarch);
17ea7499
CES
3454 sect_list = gdbarch_core_regset_sections (gdbarch);
3455
55e969c1
DM
3456 if (core_regset_p
3457 && (regset = gdbarch_regset_from_core_section (gdbarch, ".reg",
3458 sizeof (gregs))) != NULL
3459 && regset->collect_regset != NULL)
594f7785 3460 regset->collect_regset (regset, regcache, -1,
55e969c1 3461 &gregs, sizeof (gregs));
4f844a66 3462 else
594f7785 3463 fill_gregset (regcache, &gregs, -1);
4f844a66 3464
55e969c1
DM
3465 note_data = (char *) elfcore_write_prstatus (obfd,
3466 note_data,
3467 note_size,
3468 lwp,
3469 stop_signal, &gregs);
3470
17ea7499
CES
3471 /* The loop below uses the new struct core_regset_section, which stores
3472 the supported section names and sizes for the core file. Note that
3473 note PRSTATUS needs to be treated specially. But the other notes are
3474 structurally the same, so they can benefit from the new struct. */
3475 if (core_regset_p && sect_list != NULL)
3476 while (sect_list->sect_name != NULL)
3477 {
3478 /* .reg was already handled above. */
3479 if (strcmp (sect_list->sect_name, ".reg") == 0)
3480 {
3481 sect_list++;
3482 continue;
3483 }
3484 regset = gdbarch_regset_from_core_section (gdbarch,
3485 sect_list->sect_name,
3486 sect_list->size);
3487 gdb_assert (regset && regset->collect_regset);
3488 gdb_regset = xmalloc (sect_list->size);
3489 regset->collect_regset (regset, regcache, -1,
3490 gdb_regset, sect_list->size);
3491 note_data = (char *) elfcore_write_register_note (obfd,
3492 note_data,
3493 note_size,
3494 sect_list->sect_name,
3495 gdb_regset,
3496 sect_list->size);
3497 xfree (gdb_regset);
3498 sect_list++;
3499 }
dba24537 3500
17ea7499
CES
3501 /* For architectures that does not have the struct core_regset_section
3502 implemented, we use the old method. When all the architectures have
3503 the new support, the code below should be deleted. */
4f844a66 3504 else
17ea7499
CES
3505 {
3506 if (core_regset_p
3507 && (regset = gdbarch_regset_from_core_section (gdbarch, ".reg2",
3508 sizeof (fpregs))) != NULL
3509 && regset->collect_regset != NULL)
3510 regset->collect_regset (regset, regcache, -1,
3511 &fpregs, sizeof (fpregs));
3512 else
3513 fill_fpregset (regcache, &fpregs, -1);
3514
3515 note_data = (char *) elfcore_write_prfpreg (obfd,
3516 note_data,
3517 note_size,
3518 &fpregs, sizeof (fpregs));
3519 }
4f844a66 3520
dba24537
AC
3521 return note_data;
3522}
3523
3524struct linux_nat_corefile_thread_data
3525{
3526 bfd *obfd;
3527 char *note_data;
3528 int *note_size;
3529 int num_notes;
2020b7ab 3530 enum target_signal stop_signal;
dba24537
AC
3531};
3532
3533/* Called by gdbthread.c once per thread. Records the thread's
3534 register state for the corefile note section. */
3535
3536static int
3537linux_nat_corefile_thread_callback (struct lwp_info *ti, void *data)
3538{
3539 struct linux_nat_corefile_thread_data *args = data;
dba24537 3540
dba24537
AC
3541 args->note_data = linux_nat_do_thread_registers (args->obfd,
3542 ti->ptid,
3543 args->note_data,
2020b7ab
PA
3544 args->note_size,
3545 args->stop_signal);
dba24537 3546 args->num_notes++;
56be3814 3547
dba24537
AC
3548 return 0;
3549}
3550
dba24537
AC
3551/* Fills the "to_make_corefile_note" target vector. Builds the note
3552 section for a corefile, and returns it in a malloc buffer. */
3553
3554static char *
3555linux_nat_make_corefile_notes (bfd *obfd, int *note_size)
3556{
3557 struct linux_nat_corefile_thread_data thread_args;
3558 struct cleanup *old_chain;
d99148ef 3559 /* The variable size must be >= sizeof (prpsinfo_t.pr_fname). */
dba24537 3560 char fname[16] = { '\0' };
d99148ef 3561 /* The variable size must be >= sizeof (prpsinfo_t.pr_psargs). */
dba24537
AC
3562 char psargs[80] = { '\0' };
3563 char *note_data = NULL;
3564 ptid_t current_ptid = inferior_ptid;
c6826062 3565 gdb_byte *auxv;
dba24537
AC
3566 int auxv_len;
3567
3568 if (get_exec_file (0))
3569 {
3570 strncpy (fname, strrchr (get_exec_file (0), '/') + 1, sizeof (fname));
3571 strncpy (psargs, get_exec_file (0), sizeof (psargs));
3572 if (get_inferior_args ())
3573 {
d99148ef
JK
3574 char *string_end;
3575 char *psargs_end = psargs + sizeof (psargs);
3576
3577 /* linux_elfcore_write_prpsinfo () handles zero unterminated
3578 strings fine. */
3579 string_end = memchr (psargs, 0, sizeof (psargs));
3580 if (string_end != NULL)
3581 {
3582 *string_end++ = ' ';
3583 strncpy (string_end, get_inferior_args (),
3584 psargs_end - string_end);
3585 }
dba24537
AC
3586 }
3587 note_data = (char *) elfcore_write_prpsinfo (obfd,
3588 note_data,
3589 note_size, fname, psargs);
3590 }
3591
3592 /* Dump information for threads. */
3593 thread_args.obfd = obfd;
3594 thread_args.note_data = note_data;
3595 thread_args.note_size = note_size;
3596 thread_args.num_notes = 0;
2020b7ab 3597 thread_args.stop_signal = find_stop_signal ();
dba24537 3598 iterate_over_lwps (linux_nat_corefile_thread_callback, &thread_args);
2020b7ab
PA
3599 gdb_assert (thread_args.num_notes != 0);
3600 note_data = thread_args.note_data;
dba24537 3601
13547ab6
DJ
3602 auxv_len = target_read_alloc (&current_target, TARGET_OBJECT_AUXV,
3603 NULL, &auxv);
dba24537
AC
3604 if (auxv_len > 0)
3605 {
3606 note_data = elfcore_write_note (obfd, note_data, note_size,
3607 "CORE", NT_AUXV, auxv, auxv_len);
3608 xfree (auxv);
3609 }
3610
3611 make_cleanup (xfree, note_data);
3612 return note_data;
3613}
3614
3615/* Implement the "info proc" command. */
3616
3617static void
3618linux_nat_info_proc_cmd (char *args, int from_tty)
3619{
3620 long long pid = PIDGET (inferior_ptid);
3621 FILE *procfile;
3622 char **argv = NULL;
3623 char buffer[MAXPATHLEN];
3624 char fname1[MAXPATHLEN], fname2[MAXPATHLEN];
3625 int cmdline_f = 1;
3626 int cwd_f = 1;
3627 int exe_f = 1;
3628 int mappings_f = 0;
3629 int environ_f = 0;
3630 int status_f = 0;
3631 int stat_f = 0;
3632 int all = 0;
3633 struct stat dummy;
3634
3635 if (args)
3636 {
3637 /* Break up 'args' into an argv array. */
d1a41061
PP
3638 argv = gdb_buildargv (args);
3639 make_cleanup_freeargv (argv);
dba24537
AC
3640 }
3641 while (argv != NULL && *argv != NULL)
3642 {
3643 if (isdigit (argv[0][0]))
3644 {
3645 pid = strtoul (argv[0], NULL, 10);
3646 }
3647 else if (strncmp (argv[0], "mappings", strlen (argv[0])) == 0)
3648 {
3649 mappings_f = 1;
3650 }
3651 else if (strcmp (argv[0], "status") == 0)
3652 {
3653 status_f = 1;
3654 }
3655 else if (strcmp (argv[0], "stat") == 0)
3656 {
3657 stat_f = 1;
3658 }
3659 else if (strcmp (argv[0], "cmd") == 0)
3660 {
3661 cmdline_f = 1;
3662 }
3663 else if (strncmp (argv[0], "exe", strlen (argv[0])) == 0)
3664 {
3665 exe_f = 1;
3666 }
3667 else if (strcmp (argv[0], "cwd") == 0)
3668 {
3669 cwd_f = 1;
3670 }
3671 else if (strncmp (argv[0], "all", strlen (argv[0])) == 0)
3672 {
3673 all = 1;
3674 }
3675 else
3676 {
3677 /* [...] (future options here) */
3678 }
3679 argv++;
3680 }
3681 if (pid == 0)
8a3fe4f8 3682 error (_("No current process: you must name one."));
dba24537
AC
3683
3684 sprintf (fname1, "/proc/%lld", pid);
3685 if (stat (fname1, &dummy) != 0)
8a3fe4f8 3686 error (_("No /proc directory: '%s'"), fname1);
dba24537 3687
a3f17187 3688 printf_filtered (_("process %lld\n"), pid);
dba24537
AC
3689 if (cmdline_f || all)
3690 {
3691 sprintf (fname1, "/proc/%lld/cmdline", pid);
d5d6fca5 3692 if ((procfile = fopen (fname1, "r")) != NULL)
dba24537 3693 {
7c8a8b04 3694 struct cleanup *cleanup = make_cleanup_fclose (procfile);
bf1d7d9c
JB
3695 if (fgets (buffer, sizeof (buffer), procfile))
3696 printf_filtered ("cmdline = '%s'\n", buffer);
3697 else
3698 warning (_("unable to read '%s'"), fname1);
7c8a8b04 3699 do_cleanups (cleanup);
dba24537
AC
3700 }
3701 else
8a3fe4f8 3702 warning (_("unable to open /proc file '%s'"), fname1);
dba24537
AC
3703 }
3704 if (cwd_f || all)
3705 {
3706 sprintf (fname1, "/proc/%lld/cwd", pid);
3707 memset (fname2, 0, sizeof (fname2));
3708 if (readlink (fname1, fname2, sizeof (fname2)) > 0)
3709 printf_filtered ("cwd = '%s'\n", fname2);
3710 else
8a3fe4f8 3711 warning (_("unable to read link '%s'"), fname1);
dba24537
AC
3712 }
3713 if (exe_f || all)
3714 {
3715 sprintf (fname1, "/proc/%lld/exe", pid);
3716 memset (fname2, 0, sizeof (fname2));
3717 if (readlink (fname1, fname2, sizeof (fname2)) > 0)
3718 printf_filtered ("exe = '%s'\n", fname2);
3719 else
8a3fe4f8 3720 warning (_("unable to read link '%s'"), fname1);
dba24537
AC
3721 }
3722 if (mappings_f || all)
3723 {
3724 sprintf (fname1, "/proc/%lld/maps", pid);
d5d6fca5 3725 if ((procfile = fopen (fname1, "r")) != NULL)
dba24537
AC
3726 {
3727 long long addr, endaddr, size, offset, inode;
3728 char permissions[8], device[8], filename[MAXPATHLEN];
7c8a8b04 3729 struct cleanup *cleanup;
dba24537 3730
7c8a8b04 3731 cleanup = make_cleanup_fclose (procfile);
a3f17187 3732 printf_filtered (_("Mapped address spaces:\n\n"));
17a912b6 3733 if (gdbarch_addr_bit (current_gdbarch) == 32)
dba24537
AC
3734 {
3735 printf_filtered ("\t%10s %10s %10s %10s %7s\n",
3736 "Start Addr",
3737 " End Addr",
3738 " Size", " Offset", "objfile");
3739 }
3740 else
3741 {
3742 printf_filtered (" %18s %18s %10s %10s %7s\n",
3743 "Start Addr",
3744 " End Addr",
3745 " Size", " Offset", "objfile");
3746 }
3747
3748 while (read_mapping (procfile, &addr, &endaddr, &permissions[0],
3749 &offset, &device[0], &inode, &filename[0]))
3750 {
3751 size = endaddr - addr;
3752
3753 /* FIXME: carlton/2003-08-27: Maybe the printf_filtered
3754 calls here (and possibly above) should be abstracted
3755 out into their own functions? Andrew suggests using
3756 a generic local_address_string instead to print out
3757 the addresses; that makes sense to me, too. */
3758
17a912b6 3759 if (gdbarch_addr_bit (current_gdbarch) == 32)
dba24537
AC
3760 {
3761 printf_filtered ("\t%#10lx %#10lx %#10x %#10x %7s\n",
3762 (unsigned long) addr, /* FIXME: pr_addr */
3763 (unsigned long) endaddr,
3764 (int) size,
3765 (unsigned int) offset,
3766 filename[0] ? filename : "");
3767 }
3768 else
3769 {
3770 printf_filtered (" %#18lx %#18lx %#10x %#10x %7s\n",
3771 (unsigned long) addr, /* FIXME: pr_addr */
3772 (unsigned long) endaddr,
3773 (int) size,
3774 (unsigned int) offset,
3775 filename[0] ? filename : "");
3776 }
3777 }
3778
7c8a8b04 3779 do_cleanups (cleanup);
dba24537
AC
3780 }
3781 else
8a3fe4f8 3782 warning (_("unable to open /proc file '%s'"), fname1);
dba24537
AC
3783 }
3784 if (status_f || all)
3785 {
3786 sprintf (fname1, "/proc/%lld/status", pid);
d5d6fca5 3787 if ((procfile = fopen (fname1, "r")) != NULL)
dba24537 3788 {
7c8a8b04 3789 struct cleanup *cleanup = make_cleanup_fclose (procfile);
dba24537
AC
3790 while (fgets (buffer, sizeof (buffer), procfile) != NULL)
3791 puts_filtered (buffer);
7c8a8b04 3792 do_cleanups (cleanup);
dba24537
AC
3793 }
3794 else
8a3fe4f8 3795 warning (_("unable to open /proc file '%s'"), fname1);
dba24537
AC
3796 }
3797 if (stat_f || all)
3798 {
3799 sprintf (fname1, "/proc/%lld/stat", pid);
d5d6fca5 3800 if ((procfile = fopen (fname1, "r")) != NULL)
dba24537
AC
3801 {
3802 int itmp;
3803 char ctmp;
a25694b4 3804 long ltmp;
7c8a8b04 3805 struct cleanup *cleanup = make_cleanup_fclose (procfile);
dba24537
AC
3806
3807 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 3808 printf_filtered (_("Process: %d\n"), itmp);
a25694b4 3809 if (fscanf (procfile, "(%[^)]) ", &buffer[0]) > 0)
a3f17187 3810 printf_filtered (_("Exec file: %s\n"), buffer);
dba24537 3811 if (fscanf (procfile, "%c ", &ctmp) > 0)
a3f17187 3812 printf_filtered (_("State: %c\n"), ctmp);
dba24537 3813 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 3814 printf_filtered (_("Parent process: %d\n"), itmp);
dba24537 3815 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 3816 printf_filtered (_("Process group: %d\n"), itmp);
dba24537 3817 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 3818 printf_filtered (_("Session id: %d\n"), itmp);
dba24537 3819 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 3820 printf_filtered (_("TTY: %d\n"), itmp);
dba24537 3821 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 3822 printf_filtered (_("TTY owner process group: %d\n"), itmp);
a25694b4
AS
3823 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3824 printf_filtered (_("Flags: 0x%lx\n"), ltmp);
3825 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3826 printf_filtered (_("Minor faults (no memory page): %lu\n"),
3827 (unsigned long) ltmp);
3828 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3829 printf_filtered (_("Minor faults, children: %lu\n"),
3830 (unsigned long) ltmp);
3831 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3832 printf_filtered (_("Major faults (memory page faults): %lu\n"),
3833 (unsigned long) ltmp);
3834 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3835 printf_filtered (_("Major faults, children: %lu\n"),
3836 (unsigned long) ltmp);
3837 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3838 printf_filtered (_("utime: %ld\n"), ltmp);
3839 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3840 printf_filtered (_("stime: %ld\n"), ltmp);
3841 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3842 printf_filtered (_("utime, children: %ld\n"), ltmp);
3843 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3844 printf_filtered (_("stime, children: %ld\n"), ltmp);
3845 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3846 printf_filtered (_("jiffies remaining in current time slice: %ld\n"),
3847 ltmp);
3848 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3849 printf_filtered (_("'nice' value: %ld\n"), ltmp);
3850 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3851 printf_filtered (_("jiffies until next timeout: %lu\n"),
3852 (unsigned long) ltmp);
3853 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3854 printf_filtered (_("jiffies until next SIGALRM: %lu\n"),
3855 (unsigned long) ltmp);
3856 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3857 printf_filtered (_("start time (jiffies since system boot): %ld\n"),
3858 ltmp);
3859 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3860 printf_filtered (_("Virtual memory size: %lu\n"),
3861 (unsigned long) ltmp);
3862 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3863 printf_filtered (_("Resident set size: %lu\n"), (unsigned long) ltmp);
3864 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3865 printf_filtered (_("rlim: %lu\n"), (unsigned long) ltmp);
3866 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3867 printf_filtered (_("Start of text: 0x%lx\n"), ltmp);
3868 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3869 printf_filtered (_("End of text: 0x%lx\n"), ltmp);
3870 if (fscanf (procfile, "%lu ", &ltmp) > 0)
3871 printf_filtered (_("Start of stack: 0x%lx\n"), ltmp);
dba24537
AC
3872#if 0 /* Don't know how architecture-dependent the rest is...
3873 Anyway the signal bitmap info is available from "status". */
a25694b4
AS
3874 if (fscanf (procfile, "%lu ", &ltmp) > 0) /* FIXME arch? */
3875 printf_filtered (_("Kernel stack pointer: 0x%lx\n"), ltmp);
3876 if (fscanf (procfile, "%lu ", &ltmp) > 0) /* FIXME arch? */
3877 printf_filtered (_("Kernel instr pointer: 0x%lx\n"), ltmp);
3878 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3879 printf_filtered (_("Pending signals bitmap: 0x%lx\n"), ltmp);
3880 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3881 printf_filtered (_("Blocked signals bitmap: 0x%lx\n"), ltmp);
3882 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3883 printf_filtered (_("Ignored signals bitmap: 0x%lx\n"), ltmp);
3884 if (fscanf (procfile, "%ld ", &ltmp) > 0)
3885 printf_filtered (_("Catched signals bitmap: 0x%lx\n"), ltmp);
3886 if (fscanf (procfile, "%lu ", &ltmp) > 0) /* FIXME arch? */
3887 printf_filtered (_("wchan (system call): 0x%lx\n"), ltmp);
dba24537 3888#endif
7c8a8b04 3889 do_cleanups (cleanup);
dba24537
AC
3890 }
3891 else
8a3fe4f8 3892 warning (_("unable to open /proc file '%s'"), fname1);
dba24537
AC
3893 }
3894}
3895
10d6c8cd
DJ
3896/* Implement the to_xfer_partial interface for memory reads using the /proc
3897 filesystem. Because we can use a single read() call for /proc, this
3898 can be much more efficient than banging away at PTRACE_PEEKTEXT,
3899 but it doesn't support writes. */
3900
3901static LONGEST
3902linux_proc_xfer_partial (struct target_ops *ops, enum target_object object,
3903 const char *annex, gdb_byte *readbuf,
3904 const gdb_byte *writebuf,
3905 ULONGEST offset, LONGEST len)
dba24537 3906{
10d6c8cd
DJ
3907 LONGEST ret;
3908 int fd;
dba24537
AC
3909 char filename[64];
3910
10d6c8cd 3911 if (object != TARGET_OBJECT_MEMORY || !readbuf)
dba24537
AC
3912 return 0;
3913
3914 /* Don't bother for one word. */
3915 if (len < 3 * sizeof (long))
3916 return 0;
3917
3918 /* We could keep this file open and cache it - possibly one per
3919 thread. That requires some juggling, but is even faster. */
3920 sprintf (filename, "/proc/%d/mem", PIDGET (inferior_ptid));
3921 fd = open (filename, O_RDONLY | O_LARGEFILE);
3922 if (fd == -1)
3923 return 0;
3924
3925 /* If pread64 is available, use it. It's faster if the kernel
3926 supports it (only one syscall), and it's 64-bit safe even on
3927 32-bit platforms (for instance, SPARC debugging a SPARC64
3928 application). */
3929#ifdef HAVE_PREAD64
10d6c8cd 3930 if (pread64 (fd, readbuf, len, offset) != len)
dba24537 3931#else
10d6c8cd 3932 if (lseek (fd, offset, SEEK_SET) == -1 || read (fd, readbuf, len) != len)
dba24537
AC
3933#endif
3934 ret = 0;
3935 else
3936 ret = len;
3937
3938 close (fd);
3939 return ret;
3940}
3941
3942/* Parse LINE as a signal set and add its set bits to SIGS. */
3943
3944static void
3945add_line_to_sigset (const char *line, sigset_t *sigs)
3946{
3947 int len = strlen (line) - 1;
3948 const char *p;
3949 int signum;
3950
3951 if (line[len] != '\n')
8a3fe4f8 3952 error (_("Could not parse signal set: %s"), line);
dba24537
AC
3953
3954 p = line;
3955 signum = len * 4;
3956 while (len-- > 0)
3957 {
3958 int digit;
3959
3960 if (*p >= '0' && *p <= '9')
3961 digit = *p - '0';
3962 else if (*p >= 'a' && *p <= 'f')
3963 digit = *p - 'a' + 10;
3964 else
8a3fe4f8 3965 error (_("Could not parse signal set: %s"), line);
dba24537
AC
3966
3967 signum -= 4;
3968
3969 if (digit & 1)
3970 sigaddset (sigs, signum + 1);
3971 if (digit & 2)
3972 sigaddset (sigs, signum + 2);
3973 if (digit & 4)
3974 sigaddset (sigs, signum + 3);
3975 if (digit & 8)
3976 sigaddset (sigs, signum + 4);
3977
3978 p++;
3979 }
3980}
3981
3982/* Find process PID's pending signals from /proc/pid/status and set
3983 SIGS to match. */
3984
3985void
3986linux_proc_pending_signals (int pid, sigset_t *pending, sigset_t *blocked, sigset_t *ignored)
3987{
3988 FILE *procfile;
3989 char buffer[MAXPATHLEN], fname[MAXPATHLEN];
3990 int signum;
7c8a8b04 3991 struct cleanup *cleanup;
dba24537
AC
3992
3993 sigemptyset (pending);
3994 sigemptyset (blocked);
3995 sigemptyset (ignored);
3996 sprintf (fname, "/proc/%d/status", pid);
3997 procfile = fopen (fname, "r");
3998 if (procfile == NULL)
8a3fe4f8 3999 error (_("Could not open %s"), fname);
7c8a8b04 4000 cleanup = make_cleanup_fclose (procfile);
dba24537
AC
4001
4002 while (fgets (buffer, MAXPATHLEN, procfile) != NULL)
4003 {
4004 /* Normal queued signals are on the SigPnd line in the status
4005 file. However, 2.6 kernels also have a "shared" pending
4006 queue for delivering signals to a thread group, so check for
4007 a ShdPnd line also.
4008
4009 Unfortunately some Red Hat kernels include the shared pending
4010 queue but not the ShdPnd status field. */
4011
4012 if (strncmp (buffer, "SigPnd:\t", 8) == 0)
4013 add_line_to_sigset (buffer + 8, pending);
4014 else if (strncmp (buffer, "ShdPnd:\t", 8) == 0)
4015 add_line_to_sigset (buffer + 8, pending);
4016 else if (strncmp (buffer, "SigBlk:\t", 8) == 0)
4017 add_line_to_sigset (buffer + 8, blocked);
4018 else if (strncmp (buffer, "SigIgn:\t", 8) == 0)
4019 add_line_to_sigset (buffer + 8, ignored);
4020 }
4021
7c8a8b04 4022 do_cleanups (cleanup);
dba24537
AC
4023}
4024
07e059b5
VP
4025static LONGEST
4026linux_nat_xfer_osdata (struct target_ops *ops, enum target_object object,
4027 const char *annex, gdb_byte *readbuf,
4028 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
4029{
4030 /* We make the process list snapshot when the object starts to be
4031 read. */
4032 static const char *buf;
4033 static LONGEST len_avail = -1;
4034 static struct obstack obstack;
4035
4036 DIR *dirp;
4037
4038 gdb_assert (object == TARGET_OBJECT_OSDATA);
4039
4040 if (strcmp (annex, "processes") != 0)
4041 return 0;
4042
4043 gdb_assert (readbuf && !writebuf);
4044
4045 if (offset == 0)
4046 {
4047 if (len_avail != -1 && len_avail != 0)
4048 obstack_free (&obstack, NULL);
4049 len_avail = 0;
4050 buf = NULL;
4051 obstack_init (&obstack);
4052 obstack_grow_str (&obstack, "<osdata type=\"processes\">\n");
4053
4054 dirp = opendir ("/proc");
4055 if (dirp)
4056 {
4057 struct dirent *dp;
4058 while ((dp = readdir (dirp)) != NULL)
4059 {
4060 struct stat statbuf;
4061 char procentry[sizeof ("/proc/4294967295")];
4062
4063 if (!isdigit (dp->d_name[0])
4064 || strlen (dp->d_name) > sizeof ("4294967295") - 1)
4065 continue;
4066
4067 sprintf (procentry, "/proc/%s", dp->d_name);
4068 if (stat (procentry, &statbuf) == 0
4069 && S_ISDIR (statbuf.st_mode))
4070 {
4071 char *pathname;
4072 FILE *f;
4073 char cmd[MAXPATHLEN + 1];
4074 struct passwd *entry;
4075
4076 pathname = xstrprintf ("/proc/%s/cmdline", dp->d_name);
4077 entry = getpwuid (statbuf.st_uid);
4078
4079 if ((f = fopen (pathname, "r")) != NULL)
4080 {
4081 size_t len = fread (cmd, 1, sizeof (cmd) - 1, f);
4082 if (len > 0)
4083 {
4084 int i;
4085 for (i = 0; i < len; i++)
4086 if (cmd[i] == '\0')
4087 cmd[i] = ' ';
4088 cmd[len] = '\0';
4089
4090 obstack_xml_printf (
4091 &obstack,
4092 "<item>"
4093 "<column name=\"pid\">%s</column>"
4094 "<column name=\"user\">%s</column>"
4095 "<column name=\"command\">%s</column>"
4096 "</item>",
4097 dp->d_name,
4098 entry ? entry->pw_name : "?",
4099 cmd);
4100 }
4101 fclose (f);
4102 }
4103
4104 xfree (pathname);
4105 }
4106 }
4107
4108 closedir (dirp);
4109 }
4110
4111 obstack_grow_str0 (&obstack, "</osdata>\n");
4112 buf = obstack_finish (&obstack);
4113 len_avail = strlen (buf);
4114 }
4115
4116 if (offset >= len_avail)
4117 {
4118 /* Done. Get rid of the obstack. */
4119 obstack_free (&obstack, NULL);
4120 buf = NULL;
4121 len_avail = 0;
4122 return 0;
4123 }
4124
4125 if (len > len_avail - offset)
4126 len = len_avail - offset;
4127 memcpy (readbuf, buf + offset, len);
4128
4129 return len;
4130}
4131
10d6c8cd
DJ
4132static LONGEST
4133linux_xfer_partial (struct target_ops *ops, enum target_object object,
4134 const char *annex, gdb_byte *readbuf,
4135 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
4136{
4137 LONGEST xfer;
4138
4139 if (object == TARGET_OBJECT_AUXV)
4140 return procfs_xfer_auxv (ops, object, annex, readbuf, writebuf,
4141 offset, len);
4142
07e059b5
VP
4143 if (object == TARGET_OBJECT_OSDATA)
4144 return linux_nat_xfer_osdata (ops, object, annex, readbuf, writebuf,
4145 offset, len);
4146
10d6c8cd
DJ
4147 xfer = linux_proc_xfer_partial (ops, object, annex, readbuf, writebuf,
4148 offset, len);
4149 if (xfer != 0)
4150 return xfer;
4151
4152 return super_xfer_partial (ops, object, annex, readbuf, writebuf,
4153 offset, len);
4154}
4155
e9efe249 4156/* Create a prototype generic GNU/Linux target. The client can override
10d6c8cd
DJ
4157 it with local methods. */
4158
910122bf
UW
4159static void
4160linux_target_install_ops (struct target_ops *t)
10d6c8cd 4161{
6d8fd2b7
UW
4162 t->to_insert_fork_catchpoint = linux_child_insert_fork_catchpoint;
4163 t->to_insert_vfork_catchpoint = linux_child_insert_vfork_catchpoint;
4164 t->to_insert_exec_catchpoint = linux_child_insert_exec_catchpoint;
4165 t->to_pid_to_exec_file = linux_child_pid_to_exec_file;
10d6c8cd 4166 t->to_post_startup_inferior = linux_child_post_startup_inferior;
6d8fd2b7
UW
4167 t->to_post_attach = linux_child_post_attach;
4168 t->to_follow_fork = linux_child_follow_fork;
10d6c8cd
DJ
4169 t->to_find_memory_regions = linux_nat_find_memory_regions;
4170 t->to_make_corefile_notes = linux_nat_make_corefile_notes;
4171
4172 super_xfer_partial = t->to_xfer_partial;
4173 t->to_xfer_partial = linux_xfer_partial;
910122bf
UW
4174}
4175
4176struct target_ops *
4177linux_target (void)
4178{
4179 struct target_ops *t;
4180
4181 t = inf_ptrace_target ();
4182 linux_target_install_ops (t);
4183
4184 return t;
4185}
4186
4187struct target_ops *
7714d83a 4188linux_trad_target (CORE_ADDR (*register_u_offset)(struct gdbarch *, int, int))
910122bf
UW
4189{
4190 struct target_ops *t;
4191
4192 t = inf_ptrace_trad_target (register_u_offset);
4193 linux_target_install_ops (t);
10d6c8cd 4194
10d6c8cd
DJ
4195 return t;
4196}
4197
b84876c2
PA
4198/* target_is_async_p implementation. */
4199
4200static int
4201linux_nat_is_async_p (void)
4202{
4203 /* NOTE: palves 2008-03-21: We're only async when the user requests
c6ebd6cf 4204 it explicitly with the "maintenance set target-async" command.
b84876c2 4205 Someday, linux will always be async. */
c6ebd6cf 4206 if (!target_async_permitted)
b84876c2
PA
4207 return 0;
4208
4209 return 1;
4210}
4211
4212/* target_can_async_p implementation. */
4213
4214static int
4215linux_nat_can_async_p (void)
4216{
4217 /* NOTE: palves 2008-03-21: We're only async when the user requests
c6ebd6cf 4218 it explicitly with the "maintenance set target-async" command.
b84876c2 4219 Someday, linux will always be async. */
c6ebd6cf 4220 if (!target_async_permitted)
b84876c2
PA
4221 return 0;
4222
4223 /* See target.h/target_async_mask. */
4224 return linux_nat_async_mask_value;
4225}
4226
9908b566
VP
4227static int
4228linux_nat_supports_non_stop (void)
4229{
4230 return 1;
4231}
4232
b84876c2
PA
4233/* target_async_mask implementation. */
4234
4235static int
4236linux_nat_async_mask (int mask)
4237{
4238 int current_state;
4239 current_state = linux_nat_async_mask_value;
4240
4241 if (current_state != mask)
4242 {
4243 if (mask == 0)
4244 {
4245 linux_nat_async (NULL, 0);
4246 linux_nat_async_mask_value = mask;
b84876c2
PA
4247 }
4248 else
4249 {
b84876c2
PA
4250 linux_nat_async_mask_value = mask;
4251 linux_nat_async (inferior_event_handler, 0);
4252 }
4253 }
4254
4255 return current_state;
4256}
4257
4258/* Pop an event from the event pipe. */
4259
4260static int
4261linux_nat_event_pipe_pop (int* ptr_status, int* ptr_options)
4262{
4263 struct waitpid_result event = {0};
4264 int ret;
4265
4266 do
4267 {
4268 ret = read (linux_nat_event_pipe[0], &event, sizeof (event));
4269 }
4270 while (ret == -1 && errno == EINTR);
4271
4272 gdb_assert (ret == sizeof (event));
4273
4274 *ptr_status = event.status;
4275 *ptr_options = event.options;
4276
4277 linux_nat_num_queued_events--;
4278
4279 return event.pid;
4280}
4281
4282/* Push an event into the event pipe. */
4283
4284static void
4285linux_nat_event_pipe_push (int pid, int status, int options)
4286{
4287 int ret;
4288 struct waitpid_result event = {0};
4289 event.pid = pid;
4290 event.status = status;
4291 event.options = options;
4292
4293 do
4294 {
4295 ret = write (linux_nat_event_pipe[1], &event, sizeof (event));
4296 gdb_assert ((ret == -1 && errno == EINTR) || ret == sizeof (event));
4297 } while (ret == -1 && errno == EINTR);
4298
4299 linux_nat_num_queued_events++;
4300}
4301
4302static void
4303get_pending_events (void)
4304{
4305 int status, options, pid;
4306
c6ebd6cf 4307 if (!target_async_permitted
84e46146 4308 || linux_nat_async_events_state != sigchld_async)
b84876c2
PA
4309 internal_error (__FILE__, __LINE__,
4310 "get_pending_events called with async masked");
4311
4312 while (1)
4313 {
4314 status = 0;
4315 options = __WCLONE | WNOHANG;
4316
4317 do
4318 {
4319 pid = waitpid (-1, &status, options);
4320 }
4321 while (pid == -1 && errno == EINTR);
4322
4323 if (pid <= 0)
4324 {
4325 options = WNOHANG;
4326 do
4327 {
4328 pid = waitpid (-1, &status, options);
4329 }
4330 while (pid == -1 && errno == EINTR);
4331 }
4332
4333 if (pid <= 0)
4334 /* No more children reporting events. */
4335 break;
4336
4337 if (debug_linux_nat_async)
4338 fprintf_unfiltered (gdb_stdlog, "\
4339get_pending_events: pid(%d), status(%x), options (%x)\n",
4340 pid, status, options);
4341
4342 linux_nat_event_pipe_push (pid, status, options);
4343 }
4344
4345 if (debug_linux_nat_async)
4346 fprintf_unfiltered (gdb_stdlog, "\
4347get_pending_events: linux_nat_num_queued_events(%d)\n",
4348 linux_nat_num_queued_events);
4349}
4350
4351/* SIGCHLD handler for async mode. */
4352
4353static void
4354async_sigchld_handler (int signo)
4355{
4356 if (debug_linux_nat_async)
4357 fprintf_unfiltered (gdb_stdlog, "async_sigchld_handler\n");
4358
4359 get_pending_events ();
4360}
4361
84e46146 4362/* Set SIGCHLD handling state to STATE. Returns previous state. */
b84876c2 4363
84e46146
PA
4364static enum sigchld_state
4365linux_nat_async_events (enum sigchld_state state)
b84876c2 4366{
84e46146 4367 enum sigchld_state current_state = linux_nat_async_events_state;
b84876c2
PA
4368
4369 if (debug_linux_nat_async)
4370 fprintf_unfiltered (gdb_stdlog,
84e46146 4371 "LNAE: state(%d): linux_nat_async_events_state(%d), "
b84876c2 4372 "linux_nat_num_queued_events(%d)\n",
84e46146 4373 state, linux_nat_async_events_state,
b84876c2
PA
4374 linux_nat_num_queued_events);
4375
84e46146 4376 if (current_state != state)
b84876c2
PA
4377 {
4378 sigset_t mask;
4379 sigemptyset (&mask);
4380 sigaddset (&mask, SIGCHLD);
84e46146
PA
4381
4382 /* Always block before changing state. */
4383 sigprocmask (SIG_BLOCK, &mask, NULL);
4384
4385 /* Set new state. */
4386 linux_nat_async_events_state = state;
4387
4388 switch (state)
b84876c2 4389 {
84e46146
PA
4390 case sigchld_sync:
4391 {
4392 /* Block target events. */
4393 sigprocmask (SIG_BLOCK, &mask, NULL);
4394 sigaction (SIGCHLD, &sync_sigchld_action, NULL);
4395 /* Get events out of queue, and make them available to
4396 queued_waitpid / my_waitpid. */
4397 pipe_to_local_event_queue ();
4398 }
4399 break;
4400 case sigchld_async:
4401 {
4402 /* Unblock target events for async mode. */
4403
4404 sigprocmask (SIG_BLOCK, &mask, NULL);
4405
4406 /* Put events we already waited on, in the pipe first, so
4407 events are FIFO. */
4408 local_event_queue_to_pipe ();
4409 /* While in masked async, we may have not collected all
4410 the pending events. Get them out now. */
4411 get_pending_events ();
4412
4413 /* Let'em come. */
4414 sigaction (SIGCHLD, &async_sigchld_action, NULL);
4415 sigprocmask (SIG_UNBLOCK, &mask, NULL);
4416 }
4417 break;
4418 case sigchld_default:
4419 {
4420 /* SIGCHLD default mode. */
4421 sigaction (SIGCHLD, &sigchld_default_action, NULL);
4422
4423 /* Get events out of queue, and make them available to
4424 queued_waitpid / my_waitpid. */
4425 pipe_to_local_event_queue ();
4426
4427 /* Unblock SIGCHLD. */
4428 sigprocmask (SIG_UNBLOCK, &mask, NULL);
4429 }
4430 break;
b84876c2
PA
4431 }
4432 }
4433
4434 return current_state;
4435}
4436
4437static int async_terminal_is_ours = 1;
4438
4439/* target_terminal_inferior implementation. */
4440
4441static void
4442linux_nat_terminal_inferior (void)
4443{
4444 if (!target_is_async_p ())
4445 {
4446 /* Async mode is disabled. */
4447 terminal_inferior ();
4448 return;
4449 }
4450
4451 /* GDB should never give the terminal to the inferior, if the
4452 inferior is running in the background (run&, continue&, etc.).
4453 This check can be removed when the common code is fixed. */
4454 if (!sync_execution)
4455 return;
4456
4457 terminal_inferior ();
4458
4459 if (!async_terminal_is_ours)
4460 return;
4461
4462 delete_file_handler (input_fd);
4463 async_terminal_is_ours = 0;
4464 set_sigint_trap ();
4465}
4466
4467/* target_terminal_ours implementation. */
4468
4469void
4470linux_nat_terminal_ours (void)
4471{
4472 if (!target_is_async_p ())
4473 {
4474 /* Async mode is disabled. */
4475 terminal_ours ();
4476 return;
4477 }
4478
4479 /* GDB should never give the terminal to the inferior if the
4480 inferior is running in the background (run&, continue&, etc.),
4481 but claiming it sure should. */
4482 terminal_ours ();
4483
4484 if (!sync_execution)
4485 return;
4486
4487 if (async_terminal_is_ours)
4488 return;
4489
4490 clear_sigint_trap ();
4491 add_file_handler (input_fd, stdin_event_handler, 0);
4492 async_terminal_is_ours = 1;
4493}
4494
4495static void (*async_client_callback) (enum inferior_event_type event_type,
4496 void *context);
4497static void *async_client_context;
4498
4499static void
4500linux_nat_async_file_handler (int error, gdb_client_data client_data)
4501{
4502 async_client_callback (INF_REG_EVENT, async_client_context);
4503}
4504
4505/* target_async implementation. */
4506
4507static void
4508linux_nat_async (void (*callback) (enum inferior_event_type event_type,
4509 void *context), void *context)
4510{
c6ebd6cf 4511 if (linux_nat_async_mask_value == 0 || !target_async_permitted)
b84876c2
PA
4512 internal_error (__FILE__, __LINE__,
4513 "Calling target_async when async is masked");
4514
4515 if (callback != NULL)
4516 {
4517 async_client_callback = callback;
4518 async_client_context = context;
4519 add_file_handler (linux_nat_event_pipe[0],
4520 linux_nat_async_file_handler, NULL);
4521
84e46146 4522 linux_nat_async_events (sigchld_async);
b84876c2
PA
4523 }
4524 else
4525 {
4526 async_client_callback = callback;
4527 async_client_context = context;
4528
84e46146 4529 linux_nat_async_events (sigchld_sync);
b84876c2
PA
4530 delete_file_handler (linux_nat_event_pipe[0]);
4531 }
4532 return;
4533}
4534
252fbfc8
PA
4535/* Stop an LWP, and push a TARGET_SIGNAL_0 stop status if no other
4536 event came out. */
4537
4c28f408 4538static int
252fbfc8 4539linux_nat_stop_lwp (struct lwp_info *lwp, void *data)
4c28f408 4540{
252fbfc8
PA
4541 ptid_t ptid = * (ptid_t *) data;
4542
4543 if (ptid_equal (lwp->ptid, ptid)
4544 || ptid_equal (minus_one_ptid, ptid)
4545 || (ptid_is_pid (ptid)
4546 && ptid_get_pid (ptid) == ptid_get_pid (lwp->ptid)))
4547 {
4548 if (!lwp->stopped)
4549 {
4550 int pid, status;
4551
4552 if (debug_linux_nat)
4553 fprintf_unfiltered (gdb_stdlog,
4554 "LNSL: running -> suspending %s\n",
4555 target_pid_to_str (lwp->ptid));
4556
4557 /* Peek once, to check if we've already waited for this
4558 LWP. */
4559 pid = queued_waitpid_1 (ptid_get_lwp (lwp->ptid), &status,
4560 lwp->cloned ? __WCLONE : 0, 1 /* peek */);
4561
4562 if (pid == -1)
4563 {
4564 ptid_t ptid = lwp->ptid;
4565
4566 stop_callback (lwp, NULL);
4567 stop_wait_callback (lwp, NULL);
4568
4569 /* If the lwp exits while we try to stop it, there's
4570 nothing else to do. */
4571 lwp = find_lwp_pid (ptid);
4572 if (lwp == NULL)
4573 return 0;
4574
4575 pid = queued_waitpid_1 (ptid_get_lwp (lwp->ptid), &status,
4576 lwp->cloned ? __WCLONE : 0,
4577 1 /* peek */);
4578 }
4579
4580 /* If we didn't collect any signal other than SIGSTOP while
4581 stopping the LWP, push a SIGNAL_0 event. In either case,
4582 the event-loop will end up calling target_wait which will
4583 collect these. */
4584 if (pid == -1)
4585 push_waitpid (ptid_get_lwp (lwp->ptid), W_STOPCODE (0),
4586 lwp->cloned ? __WCLONE : 0);
4587 }
4588 else
4589 {
4590 /* Already known to be stopped; do nothing. */
4591
4592 if (debug_linux_nat)
4593 {
4594 if (find_thread_pid (lwp->ptid)->stop_requested)
4595 fprintf_unfiltered (gdb_stdlog, "\
4596LNSL: already stopped/stop_requested %s\n",
4597 target_pid_to_str (lwp->ptid));
4598 else
4599 fprintf_unfiltered (gdb_stdlog, "\
4600LNSL: already stopped/no stop_requested yet %s\n",
4601 target_pid_to_str (lwp->ptid));
4602 }
4603 }
4604 }
4c28f408
PA
4605 return 0;
4606}
4607
4608static void
4609linux_nat_stop (ptid_t ptid)
4610{
4611 if (non_stop)
4612 {
252fbfc8
PA
4613 linux_nat_async_events (sigchld_sync);
4614 iterate_over_lwps (linux_nat_stop_lwp, &ptid);
4615 target_async (inferior_event_handler, 0);
4c28f408
PA
4616 }
4617 else
4618 linux_ops->to_stop (ptid);
4619}
4620
f973ed9c
DJ
4621void
4622linux_nat_add_target (struct target_ops *t)
4623{
f973ed9c
DJ
4624 /* Save the provided single-threaded target. We save this in a separate
4625 variable because another target we've inherited from (e.g. inf-ptrace)
4626 may have saved a pointer to T; we want to use it for the final
4627 process stratum target. */
4628 linux_ops_saved = *t;
4629 linux_ops = &linux_ops_saved;
4630
4631 /* Override some methods for multithreading. */
b84876c2 4632 t->to_create_inferior = linux_nat_create_inferior;
f973ed9c
DJ
4633 t->to_attach = linux_nat_attach;
4634 t->to_detach = linux_nat_detach;
4635 t->to_resume = linux_nat_resume;
4636 t->to_wait = linux_nat_wait;
4637 t->to_xfer_partial = linux_nat_xfer_partial;
4638 t->to_kill = linux_nat_kill;
4639 t->to_mourn_inferior = linux_nat_mourn_inferior;
4640 t->to_thread_alive = linux_nat_thread_alive;
4641 t->to_pid_to_str = linux_nat_pid_to_str;
4642 t->to_has_thread_control = tc_schedlock;
4643
b84876c2
PA
4644 t->to_can_async_p = linux_nat_can_async_p;
4645 t->to_is_async_p = linux_nat_is_async_p;
9908b566 4646 t->to_supports_non_stop = linux_nat_supports_non_stop;
b84876c2
PA
4647 t->to_async = linux_nat_async;
4648 t->to_async_mask = linux_nat_async_mask;
4649 t->to_terminal_inferior = linux_nat_terminal_inferior;
4650 t->to_terminal_ours = linux_nat_terminal_ours;
4651
4c28f408
PA
4652 /* Methods for non-stop support. */
4653 t->to_stop = linux_nat_stop;
4654
f973ed9c
DJ
4655 /* We don't change the stratum; this target will sit at
4656 process_stratum and thread_db will set at thread_stratum. This
4657 is a little strange, since this is a multi-threaded-capable
4658 target, but we want to be on the stack below thread_db, and we
4659 also want to be used for single-threaded processes. */
4660
4661 add_target (t);
4662
4663 /* TODO: Eliminate this and have libthread_db use
4664 find_target_beneath. */
4665 thread_db_init (t);
4666}
4667
9f0bdab8
DJ
4668/* Register a method to call whenever a new thread is attached. */
4669void
4670linux_nat_set_new_thread (struct target_ops *t, void (*new_thread) (ptid_t))
4671{
4672 /* Save the pointer. We only support a single registered instance
4673 of the GNU/Linux native target, so we do not need to map this to
4674 T. */
4675 linux_nat_new_thread = new_thread;
4676}
4677
4678/* Return the saved siginfo associated with PTID. */
4679struct siginfo *
4680linux_nat_get_siginfo (ptid_t ptid)
4681{
4682 struct lwp_info *lp = find_lwp_pid (ptid);
4683
4684 gdb_assert (lp != NULL);
4685
4686 return &lp->siginfo;
4687}
4688
c6ebd6cf
VP
4689/* Enable/Disable async mode. */
4690
4691static void
4692linux_nat_setup_async (void)
4693{
4694 if (pipe (linux_nat_event_pipe) == -1)
4695 internal_error (__FILE__, __LINE__,
4696 "creating event pipe failed.");
4697 fcntl (linux_nat_event_pipe[0], F_SETFL, O_NONBLOCK);
4698 fcntl (linux_nat_event_pipe[1], F_SETFL, O_NONBLOCK);
4699}
4700
d6b0e80f
AC
4701void
4702_initialize_linux_nat (void)
4703{
b84876c2 4704 sigset_t mask;
dba24537 4705
1bedd215
AC
4706 add_info ("proc", linux_nat_info_proc_cmd, _("\
4707Show /proc process information about any running process.\n\
dba24537
AC
4708Specify any process id, or use the program being debugged by default.\n\
4709Specify any of the following keywords for detailed info:\n\
4710 mappings -- list of mapped memory regions.\n\
4711 stat -- list a bunch of random process info.\n\
4712 status -- list a different bunch of random process info.\n\
1bedd215 4713 all -- list all available /proc info."));
d6b0e80f 4714
b84876c2
PA
4715 add_setshow_zinteger_cmd ("lin-lwp", class_maintenance,
4716 &debug_linux_nat, _("\
4717Set debugging of GNU/Linux lwp module."), _("\
4718Show debugging of GNU/Linux lwp module."), _("\
4719Enables printf debugging output."),
4720 NULL,
4721 show_debug_linux_nat,
4722 &setdebuglist, &showdebuglist);
4723
4724 add_setshow_zinteger_cmd ("lin-lwp-async", class_maintenance,
4725 &debug_linux_nat_async, _("\
4726Set debugging of GNU/Linux async lwp module."), _("\
4727Show debugging of GNU/Linux async lwp module."), _("\
4728Enables printf debugging output."),
4729 NULL,
4730 show_debug_linux_nat_async,
4731 &setdebuglist, &showdebuglist);
4732
84e46146
PA
4733 /* Get the default SIGCHLD action. Used while forking an inferior
4734 (see linux_nat_create_inferior/linux_nat_async_events). */
4735 sigaction (SIGCHLD, NULL, &sigchld_default_action);
4736
b84876c2
PA
4737 /* Block SIGCHLD by default. Doing this early prevents it getting
4738 unblocked if an exception is thrown due to an error while the
4739 inferior is starting (sigsetjmp/siglongjmp). */
4740 sigemptyset (&mask);
4741 sigaddset (&mask, SIGCHLD);
4742 sigprocmask (SIG_BLOCK, &mask, NULL);
4743
4744 /* Save this mask as the default. */
d6b0e80f
AC
4745 sigprocmask (SIG_SETMASK, NULL, &normal_mask);
4746
b84876c2
PA
4747 /* The synchronous SIGCHLD handler. */
4748 sync_sigchld_action.sa_handler = sigchld_handler;
4749 sigemptyset (&sync_sigchld_action.sa_mask);
4750 sync_sigchld_action.sa_flags = SA_RESTART;
4751
4752 /* Make it the default. */
4753 sigaction (SIGCHLD, &sync_sigchld_action, NULL);
d6b0e80f
AC
4754
4755 /* Make sure we don't block SIGCHLD during a sigsuspend. */
4756 sigprocmask (SIG_SETMASK, NULL, &suspend_mask);
4757 sigdelset (&suspend_mask, SIGCHLD);
4758
b84876c2
PA
4759 /* SIGCHLD handler for async mode. */
4760 async_sigchld_action.sa_handler = async_sigchld_handler;
4761 sigemptyset (&async_sigchld_action.sa_mask);
4762 async_sigchld_action.sa_flags = SA_RESTART;
d6b0e80f 4763
c6ebd6cf 4764 linux_nat_setup_async ();
10568435
JK
4765
4766 add_setshow_boolean_cmd ("disable-randomization", class_support,
4767 &disable_randomization, _("\
4768Set disabling of debuggee's virtual address space randomization."), _("\
4769Show disabling of debuggee's virtual address space randomization."), _("\
4770When this mode is on (which is the default), randomization of the virtual\n\
4771address space is disabled. Standalone programs run with the randomization\n\
4772enabled by default on some platforms."),
4773 &set_disable_randomization,
4774 &show_disable_randomization,
4775 &setlist, &showlist);
d6b0e80f
AC
4776}
4777\f
4778
4779/* FIXME: kettenis/2000-08-26: The stuff on this page is specific to
4780 the GNU/Linux Threads library and therefore doesn't really belong
4781 here. */
4782
4783/* Read variable NAME in the target and return its value if found.
4784 Otherwise return zero. It is assumed that the type of the variable
4785 is `int'. */
4786
4787static int
4788get_signo (const char *name)
4789{
4790 struct minimal_symbol *ms;
4791 int signo;
4792
4793 ms = lookup_minimal_symbol (name, NULL, NULL);
4794 if (ms == NULL)
4795 return 0;
4796
8e70166d 4797 if (target_read_memory (SYMBOL_VALUE_ADDRESS (ms), (gdb_byte *) &signo,
d6b0e80f
AC
4798 sizeof (signo)) != 0)
4799 return 0;
4800
4801 return signo;
4802}
4803
4804/* Return the set of signals used by the threads library in *SET. */
4805
4806void
4807lin_thread_get_thread_signals (sigset_t *set)
4808{
4809 struct sigaction action;
4810 int restart, cancel;
b84876c2 4811 sigset_t blocked_mask;
d6b0e80f 4812
b84876c2 4813 sigemptyset (&blocked_mask);
d6b0e80f
AC
4814 sigemptyset (set);
4815
4816 restart = get_signo ("__pthread_sig_restart");
17fbb0bd
DJ
4817 cancel = get_signo ("__pthread_sig_cancel");
4818
4819 /* LinuxThreads normally uses the first two RT signals, but in some legacy
4820 cases may use SIGUSR1/SIGUSR2. NPTL always uses RT signals, but does
4821 not provide any way for the debugger to query the signal numbers -
4822 fortunately they don't change! */
4823
d6b0e80f 4824 if (restart == 0)
17fbb0bd 4825 restart = __SIGRTMIN;
d6b0e80f 4826
d6b0e80f 4827 if (cancel == 0)
17fbb0bd 4828 cancel = __SIGRTMIN + 1;
d6b0e80f
AC
4829
4830 sigaddset (set, restart);
4831 sigaddset (set, cancel);
4832
4833 /* The GNU/Linux Threads library makes terminating threads send a
4834 special "cancel" signal instead of SIGCHLD. Make sure we catch
4835 those (to prevent them from terminating GDB itself, which is
4836 likely to be their default action) and treat them the same way as
4837 SIGCHLD. */
4838
4839 action.sa_handler = sigchld_handler;
4840 sigemptyset (&action.sa_mask);
58aecb61 4841 action.sa_flags = SA_RESTART;
d6b0e80f
AC
4842 sigaction (cancel, &action, NULL);
4843
4844 /* We block the "cancel" signal throughout this code ... */
4845 sigaddset (&blocked_mask, cancel);
4846 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
4847
4848 /* ... except during a sigsuspend. */
4849 sigdelset (&suspend_mask, cancel);
4850}