gdb/
[deliverable/binutils-gdb.git] / gdb / linux-nat.c
CommitLineData
3993f6b1 1/* GNU/Linux native-dependent code common to multiple platforms.
dba24537 2
4c38e0a4 3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
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"
191c4426 56#include "terminal.h"
efcbbd14 57#include <sys/vfs.h>
6c95b8df 58#include "solib.h"
efcbbd14
UW
59
60#ifndef SPUFS_MAGIC
61#define SPUFS_MAGIC 0x23c9b64e
62#endif
dba24537 63
10568435
JK
64#ifdef HAVE_PERSONALITY
65# include <sys/personality.h>
66# if !HAVE_DECL_ADDR_NO_RANDOMIZE
67# define ADDR_NO_RANDOMIZE 0x0040000
68# endif
69#endif /* HAVE_PERSONALITY */
70
8a77dff3
VP
71/* This comment documents high-level logic of this file.
72
73Waiting for events in sync mode
74===============================
75
76When waiting for an event in a specific thread, we just use waitpid, passing
77the specific pid, and not passing WNOHANG.
78
79When waiting for an event in all threads, waitpid is not quite good. Prior to
80version 2.4, Linux can either wait for event in main thread, or in secondary
81threads. (2.4 has the __WALL flag). So, if we use blocking waitpid, we might
82miss an event. The solution is to use non-blocking waitpid, together with
83sigsuspend. First, we use non-blocking waitpid to get an event in the main
84process, if any. Second, we use non-blocking waitpid with the __WCLONED
85flag to check for events in cloned processes. If nothing is found, we use
86sigsuspend to wait for SIGCHLD. When SIGCHLD arrives, it means something
87happened to a child process -- and SIGCHLD will be delivered both for events
88in main debugged process and in cloned processes. As soon as we know there's
89an event, we get back to calling nonblocking waitpid with and without __WCLONED.
90
91Note that SIGCHLD should be blocked between waitpid and sigsuspend calls,
92so that we don't miss a signal. If SIGCHLD arrives in between, when it's
93blocked, the signal becomes pending and sigsuspend immediately
94notices it and returns.
95
96Waiting for events in async mode
97================================
98
7feb7d06
PA
99In async mode, GDB should always be ready to handle both user input
100and target events, so neither blocking waitpid nor sigsuspend are
101viable options. Instead, we should asynchronously notify the GDB main
102event loop whenever there's an unprocessed event from the target. We
103detect asynchronous target events by handling SIGCHLD signals. To
104notify the event loop about target events, the self-pipe trick is used
105--- a pipe is registered as waitable event source in the event loop,
106the event loop select/poll's on the read end of this pipe (as well on
107other event sources, e.g., stdin), and the SIGCHLD handler writes a
108byte to this pipe. This is more portable than relying on
109pselect/ppoll, since on kernels that lack those syscalls, libc
110emulates them with select/poll+sigprocmask, and that is racy
111(a.k.a. plain broken).
112
113Obviously, if we fail to notify the event loop if there's a target
114event, it's bad. OTOH, if we notify the event loop when there's no
115event from the target, linux_nat_wait will detect that there's no real
116event to report, and return event of type TARGET_WAITKIND_IGNORE.
117This is mostly harmless, but it will waste time and is better avoided.
118
119The main design point is that every time GDB is outside linux-nat.c,
120we have a SIGCHLD handler installed that is called when something
121happens to the target and notifies the GDB event loop. Whenever GDB
122core decides to handle the event, and calls into linux-nat.c, we
123process things as in sync mode, except that the we never block in
124sigsuspend.
125
126While processing an event, we may end up momentarily blocked in
127waitpid calls. Those waitpid calls, while blocking, are guarantied to
128return quickly. E.g., in all-stop mode, before reporting to the core
129that an LWP hit a breakpoint, all LWPs are stopped by sending them
130SIGSTOP, and synchronously waiting for the SIGSTOP to be reported.
131Note that this is different from blocking indefinitely waiting for the
132next event --- here, we're already handling an event.
8a77dff3
VP
133
134Use of signals
135==============
136
137We stop threads by sending a SIGSTOP. The use of SIGSTOP instead of another
138signal is not entirely significant; we just need for a signal to be delivered,
139so that we can intercept it. SIGSTOP's advantage is that it can not be
140blocked. A disadvantage is that it is not a real-time signal, so it can only
141be queued once; we do not keep track of other sources of SIGSTOP.
142
143Two other signals that can't be blocked are SIGCONT and SIGKILL. But we can't
144use them, because they have special behavior when the signal is generated -
145not when it is delivered. SIGCONT resumes the entire thread group and SIGKILL
146kills the entire thread group.
147
148A delivered SIGSTOP would stop the entire thread group, not just the thread we
149tkill'd. But we never let the SIGSTOP be delivered; we always intercept and
150cancel it (by PTRACE_CONT without passing SIGSTOP).
151
152We could use a real-time signal instead. This would solve those problems; we
153could use PTRACE_GETSIGINFO to locate the specific stop signals sent by GDB.
154But we would still have to have some support for SIGSTOP, since PTRACE_ATTACH
155generates it, and there are races with trying to find a signal that is not
156blocked. */
a0ef4274 157
dba24537
AC
158#ifndef O_LARGEFILE
159#define O_LARGEFILE 0
160#endif
0274a8ce 161
3993f6b1
DJ
162/* If the system headers did not provide the constants, hard-code the normal
163 values. */
164#ifndef PTRACE_EVENT_FORK
165
166#define PTRACE_SETOPTIONS 0x4200
167#define PTRACE_GETEVENTMSG 0x4201
168
169/* options set using PTRACE_SETOPTIONS */
170#define PTRACE_O_TRACESYSGOOD 0x00000001
171#define PTRACE_O_TRACEFORK 0x00000002
172#define PTRACE_O_TRACEVFORK 0x00000004
173#define PTRACE_O_TRACECLONE 0x00000008
174#define PTRACE_O_TRACEEXEC 0x00000010
9016a515
DJ
175#define PTRACE_O_TRACEVFORKDONE 0x00000020
176#define PTRACE_O_TRACEEXIT 0x00000040
3993f6b1
DJ
177
178/* Wait extended result codes for the above trace options. */
179#define PTRACE_EVENT_FORK 1
180#define PTRACE_EVENT_VFORK 2
181#define PTRACE_EVENT_CLONE 3
182#define PTRACE_EVENT_EXEC 4
c874c7fc 183#define PTRACE_EVENT_VFORK_DONE 5
9016a515 184#define PTRACE_EVENT_EXIT 6
3993f6b1
DJ
185
186#endif /* PTRACE_EVENT_FORK */
187
ca2163eb
PA
188/* Unlike other extended result codes, WSTOPSIG (status) on
189 PTRACE_O_TRACESYSGOOD syscall events doesn't return SIGTRAP, but
190 instead SIGTRAP with bit 7 set. */
191#define SYSCALL_SIGTRAP (SIGTRAP | 0x80)
192
3993f6b1
DJ
193/* We can't always assume that this flag is available, but all systems
194 with the ptrace event handlers also have __WALL, so it's safe to use
195 here. */
196#ifndef __WALL
197#define __WALL 0x40000000 /* Wait for any child. */
198#endif
199
02d3ff8c 200#ifndef PTRACE_GETSIGINFO
1ef18d08
PA
201# define PTRACE_GETSIGINFO 0x4202
202# define PTRACE_SETSIGINFO 0x4203
02d3ff8c
UW
203#endif
204
10d6c8cd
DJ
205/* The single-threaded native GNU/Linux target_ops. We save a pointer for
206 the use of the multi-threaded target. */
207static struct target_ops *linux_ops;
f973ed9c 208static struct target_ops linux_ops_saved;
10d6c8cd 209
9f0bdab8
DJ
210/* The method to call, if any, when a new thread is attached. */
211static void (*linux_nat_new_thread) (ptid_t);
212
5b009018
PA
213/* The method to call, if any, when the siginfo object needs to be
214 converted between the layout returned by ptrace, and the layout in
215 the architecture of the inferior. */
216static int (*linux_nat_siginfo_fixup) (struct siginfo *,
217 gdb_byte *,
218 int);
219
ac264b3b
MS
220/* The saved to_xfer_partial method, inherited from inf-ptrace.c.
221 Called by our to_xfer_partial. */
222static LONGEST (*super_xfer_partial) (struct target_ops *,
223 enum target_object,
224 const char *, gdb_byte *,
225 const gdb_byte *,
10d6c8cd
DJ
226 ULONGEST, LONGEST);
227
d6b0e80f 228static int debug_linux_nat;
920d2a44
AC
229static void
230show_debug_linux_nat (struct ui_file *file, int from_tty,
231 struct cmd_list_element *c, const char *value)
232{
233 fprintf_filtered (file, _("Debugging of GNU/Linux lwp module is %s.\n"),
234 value);
235}
d6b0e80f 236
b84876c2
PA
237static int debug_linux_nat_async = 0;
238static void
239show_debug_linux_nat_async (struct ui_file *file, int from_tty,
240 struct cmd_list_element *c, const char *value)
241{
242 fprintf_filtered (file, _("Debugging of GNU/Linux async lwp module is %s.\n"),
243 value);
244}
245
10568435
JK
246static int disable_randomization = 1;
247
248static void
249show_disable_randomization (struct ui_file *file, int from_tty,
250 struct cmd_list_element *c, const char *value)
251{
252#ifdef HAVE_PERSONALITY
253 fprintf_filtered (file, _("\
254Disabling randomization of debuggee's virtual address space is %s.\n"),
255 value);
256#else /* !HAVE_PERSONALITY */
257 fputs_filtered (_("\
258Disabling randomization of debuggee's virtual address space is unsupported on\n\
259this platform.\n"), file);
260#endif /* !HAVE_PERSONALITY */
261}
262
263static void
264set_disable_randomization (char *args, int from_tty, struct cmd_list_element *c)
265{
266#ifndef HAVE_PERSONALITY
267 error (_("\
268Disabling randomization of debuggee's virtual address space is unsupported on\n\
269this platform."));
270#endif /* !HAVE_PERSONALITY */
271}
272
ae087d01
DJ
273struct simple_pid_list
274{
275 int pid;
3d799a95 276 int status;
ae087d01
DJ
277 struct simple_pid_list *next;
278};
279struct simple_pid_list *stopped_pids;
280
3993f6b1
DJ
281/* This variable is a tri-state flag: -1 for unknown, 0 if PTRACE_O_TRACEFORK
282 can not be used, 1 if it can. */
283
284static int linux_supports_tracefork_flag = -1;
285
a96d9b2e
SDJ
286/* This variable is a tri-state flag: -1 for unknown, 0 if PTRACE_O_TRACESYSGOOD
287 can not be used, 1 if it can. */
288
289static int linux_supports_tracesysgood_flag = -1;
290
9016a515
DJ
291/* If we have PTRACE_O_TRACEFORK, this flag indicates whether we also have
292 PTRACE_O_TRACEVFORKDONE. */
293
294static int linux_supports_tracevforkdone_flag = -1;
295
b84876c2
PA
296/* Async mode support */
297
b84876c2
PA
298/* Zero if the async mode, although enabled, is masked, which means
299 linux_nat_wait should behave as if async mode was off. */
300static int linux_nat_async_mask_value = 1;
301
a96d9b2e
SDJ
302/* Stores the current used ptrace() options. */
303static int current_ptrace_options = 0;
304
b84876c2
PA
305/* The read/write ends of the pipe registered as waitable file in the
306 event loop. */
307static int linux_nat_event_pipe[2] = { -1, -1 };
308
7feb7d06 309/* Flush the event pipe. */
b84876c2 310
7feb7d06
PA
311static void
312async_file_flush (void)
b84876c2 313{
7feb7d06
PA
314 int ret;
315 char buf;
b84876c2 316
7feb7d06 317 do
b84876c2 318 {
7feb7d06 319 ret = read (linux_nat_event_pipe[0], &buf, 1);
b84876c2 320 }
7feb7d06 321 while (ret >= 0 || (ret == -1 && errno == EINTR));
b84876c2
PA
322}
323
7feb7d06
PA
324/* Put something (anything, doesn't matter what, or how much) in event
325 pipe, so that the select/poll in the event-loop realizes we have
326 something to process. */
252fbfc8 327
b84876c2 328static void
7feb7d06 329async_file_mark (void)
b84876c2 330{
7feb7d06 331 int ret;
b84876c2 332
7feb7d06
PA
333 /* It doesn't really matter what the pipe contains, as long we end
334 up with something in it. Might as well flush the previous
335 left-overs. */
336 async_file_flush ();
b84876c2 337
7feb7d06 338 do
b84876c2 339 {
7feb7d06 340 ret = write (linux_nat_event_pipe[1], "+", 1);
b84876c2 341 }
7feb7d06 342 while (ret == -1 && errno == EINTR);
b84876c2 343
7feb7d06
PA
344 /* Ignore EAGAIN. If the pipe is full, the event loop will already
345 be awakened anyway. */
b84876c2
PA
346}
347
7feb7d06
PA
348static void linux_nat_async (void (*callback)
349 (enum inferior_event_type event_type, void *context),
350 void *context);
351static int linux_nat_async_mask (int mask);
352static int kill_lwp (int lwpid, int signo);
353
354static int stop_callback (struct lwp_info *lp, void *data);
355
356static void block_child_signals (sigset_t *prev_mask);
357static void restore_child_signals_mask (sigset_t *prev_mask);
2277426b
PA
358
359struct lwp_info;
360static struct lwp_info *add_lwp (ptid_t ptid);
361static void purge_lwp_list (int pid);
362static struct lwp_info *find_lwp_pid (ptid_t ptid);
363
ae087d01
DJ
364\f
365/* Trivial list manipulation functions to keep track of a list of
366 new stopped processes. */
367static void
3d799a95 368add_to_pid_list (struct simple_pid_list **listp, int pid, int status)
ae087d01
DJ
369{
370 struct simple_pid_list *new_pid = xmalloc (sizeof (struct simple_pid_list));
e0881a8e 371
ae087d01 372 new_pid->pid = pid;
3d799a95 373 new_pid->status = status;
ae087d01
DJ
374 new_pid->next = *listp;
375 *listp = new_pid;
376}
377
378static int
46a96992 379pull_pid_from_list (struct simple_pid_list **listp, int pid, int *statusp)
ae087d01
DJ
380{
381 struct simple_pid_list **p;
382
383 for (p = listp; *p != NULL; p = &(*p)->next)
384 if ((*p)->pid == pid)
385 {
386 struct simple_pid_list *next = (*p)->next;
e0881a8e 387
46a96992 388 *statusp = (*p)->status;
ae087d01
DJ
389 xfree (*p);
390 *p = next;
391 return 1;
392 }
393 return 0;
394}
395
3d799a95
DJ
396static void
397linux_record_stopped_pid (int pid, int status)
ae087d01 398{
3d799a95 399 add_to_pid_list (&stopped_pids, pid, status);
ae087d01
DJ
400}
401
3993f6b1
DJ
402\f
403/* A helper function for linux_test_for_tracefork, called after fork (). */
404
405static void
406linux_tracefork_child (void)
407{
3993f6b1
DJ
408 ptrace (PTRACE_TRACEME, 0, 0, 0);
409 kill (getpid (), SIGSTOP);
410 fork ();
48bb3cce 411 _exit (0);
3993f6b1
DJ
412}
413
7feb7d06 414/* Wrapper function for waitpid which handles EINTR. */
b957e937
DJ
415
416static int
46a96992 417my_waitpid (int pid, int *statusp, int flags)
b957e937
DJ
418{
419 int ret;
b84876c2 420
b957e937
DJ
421 do
422 {
46a96992 423 ret = waitpid (pid, statusp, flags);
b957e937
DJ
424 }
425 while (ret == -1 && errno == EINTR);
426
427 return ret;
428}
429
430/* Determine if PTRACE_O_TRACEFORK can be used to follow fork events.
431
432 First, we try to enable fork tracing on ORIGINAL_PID. If this fails,
433 we know that the feature is not available. This may change the tracing
434 options for ORIGINAL_PID, but we'll be setting them shortly anyway.
435
436 However, if it succeeds, we don't know for sure that the feature is
437 available; old versions of PTRACE_SETOPTIONS ignored unknown options. We
3993f6b1 438 create a child process, attach to it, use PTRACE_SETOPTIONS to enable
b957e937
DJ
439 fork tracing, and let it fork. If the process exits, we assume that we
440 can't use TRACEFORK; if we get the fork notification, and we can extract
441 the new child's PID, then we assume that we can. */
3993f6b1
DJ
442
443static void
b957e937 444linux_test_for_tracefork (int original_pid)
3993f6b1
DJ
445{
446 int child_pid, ret, status;
447 long second_pid;
7feb7d06 448 sigset_t prev_mask;
4c28f408 449
7feb7d06
PA
450 /* We don't want those ptrace calls to be interrupted. */
451 block_child_signals (&prev_mask);
3993f6b1 452
b957e937
DJ
453 linux_supports_tracefork_flag = 0;
454 linux_supports_tracevforkdone_flag = 0;
455
456 ret = ptrace (PTRACE_SETOPTIONS, original_pid, 0, PTRACE_O_TRACEFORK);
457 if (ret != 0)
7feb7d06
PA
458 {
459 restore_child_signals_mask (&prev_mask);
460 return;
461 }
b957e937 462
3993f6b1
DJ
463 child_pid = fork ();
464 if (child_pid == -1)
e2e0b3e5 465 perror_with_name (("fork"));
3993f6b1
DJ
466
467 if (child_pid == 0)
468 linux_tracefork_child ();
469
b957e937 470 ret = my_waitpid (child_pid, &status, 0);
3993f6b1 471 if (ret == -1)
e2e0b3e5 472 perror_with_name (("waitpid"));
3993f6b1 473 else if (ret != child_pid)
8a3fe4f8 474 error (_("linux_test_for_tracefork: waitpid: unexpected result %d."), ret);
3993f6b1 475 if (! WIFSTOPPED (status))
8a3fe4f8 476 error (_("linux_test_for_tracefork: waitpid: unexpected status %d."), status);
3993f6b1 477
3993f6b1
DJ
478 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0, PTRACE_O_TRACEFORK);
479 if (ret != 0)
480 {
b957e937
DJ
481 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
482 if (ret != 0)
483 {
8a3fe4f8 484 warning (_("linux_test_for_tracefork: failed to kill child"));
7feb7d06 485 restore_child_signals_mask (&prev_mask);
b957e937
DJ
486 return;
487 }
488
489 ret = my_waitpid (child_pid, &status, 0);
490 if (ret != child_pid)
8a3fe4f8 491 warning (_("linux_test_for_tracefork: failed to wait for killed child"));
b957e937 492 else if (!WIFSIGNALED (status))
8a3fe4f8
AC
493 warning (_("linux_test_for_tracefork: unexpected wait status 0x%x from "
494 "killed child"), status);
b957e937 495
7feb7d06 496 restore_child_signals_mask (&prev_mask);
3993f6b1
DJ
497 return;
498 }
499
9016a515
DJ
500 /* Check whether PTRACE_O_TRACEVFORKDONE is available. */
501 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0,
502 PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORKDONE);
503 linux_supports_tracevforkdone_flag = (ret == 0);
504
b957e937
DJ
505 ret = ptrace (PTRACE_CONT, child_pid, 0, 0);
506 if (ret != 0)
8a3fe4f8 507 warning (_("linux_test_for_tracefork: failed to resume child"));
b957e937
DJ
508
509 ret = my_waitpid (child_pid, &status, 0);
510
3993f6b1
DJ
511 if (ret == child_pid && WIFSTOPPED (status)
512 && status >> 16 == PTRACE_EVENT_FORK)
513 {
514 second_pid = 0;
515 ret = ptrace (PTRACE_GETEVENTMSG, child_pid, 0, &second_pid);
516 if (ret == 0 && second_pid != 0)
517 {
518 int second_status;
519
520 linux_supports_tracefork_flag = 1;
b957e937
DJ
521 my_waitpid (second_pid, &second_status, 0);
522 ret = ptrace (PTRACE_KILL, second_pid, 0, 0);
523 if (ret != 0)
8a3fe4f8 524 warning (_("linux_test_for_tracefork: failed to kill second child"));
97725dc4 525 my_waitpid (second_pid, &status, 0);
3993f6b1
DJ
526 }
527 }
b957e937 528 else
8a3fe4f8
AC
529 warning (_("linux_test_for_tracefork: unexpected result from waitpid "
530 "(%d, status 0x%x)"), ret, status);
3993f6b1 531
b957e937
DJ
532 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
533 if (ret != 0)
8a3fe4f8 534 warning (_("linux_test_for_tracefork: failed to kill child"));
b957e937 535 my_waitpid (child_pid, &status, 0);
4c28f408 536
7feb7d06 537 restore_child_signals_mask (&prev_mask);
3993f6b1
DJ
538}
539
a96d9b2e
SDJ
540/* Determine if PTRACE_O_TRACESYSGOOD can be used to follow syscalls.
541
542 We try to enable syscall tracing on ORIGINAL_PID. If this fails,
543 we know that the feature is not available. This may change the tracing
544 options for ORIGINAL_PID, but we'll be setting them shortly anyway. */
545
546static void
547linux_test_for_tracesysgood (int original_pid)
548{
549 int ret;
550 sigset_t prev_mask;
551
552 /* We don't want those ptrace calls to be interrupted. */
553 block_child_signals (&prev_mask);
554
555 linux_supports_tracesysgood_flag = 0;
556
557 ret = ptrace (PTRACE_SETOPTIONS, original_pid, 0, PTRACE_O_TRACESYSGOOD);
558 if (ret != 0)
559 goto out;
560
561 linux_supports_tracesysgood_flag = 1;
562out:
563 restore_child_signals_mask (&prev_mask);
564}
565
566/* Determine wether we support PTRACE_O_TRACESYSGOOD option available.
567 This function also sets linux_supports_tracesysgood_flag. */
568
569static int
570linux_supports_tracesysgood (int pid)
571{
572 if (linux_supports_tracesysgood_flag == -1)
573 linux_test_for_tracesysgood (pid);
574 return linux_supports_tracesysgood_flag;
575}
576
3993f6b1
DJ
577/* Return non-zero iff we have tracefork functionality available.
578 This function also sets linux_supports_tracefork_flag. */
579
580static int
b957e937 581linux_supports_tracefork (int pid)
3993f6b1
DJ
582{
583 if (linux_supports_tracefork_flag == -1)
b957e937 584 linux_test_for_tracefork (pid);
3993f6b1
DJ
585 return linux_supports_tracefork_flag;
586}
587
9016a515 588static int
b957e937 589linux_supports_tracevforkdone (int pid)
9016a515
DJ
590{
591 if (linux_supports_tracefork_flag == -1)
b957e937 592 linux_test_for_tracefork (pid);
9016a515
DJ
593 return linux_supports_tracevforkdone_flag;
594}
595
a96d9b2e
SDJ
596static void
597linux_enable_tracesysgood (ptid_t ptid)
598{
599 int pid = ptid_get_lwp (ptid);
600
601 if (pid == 0)
602 pid = ptid_get_pid (ptid);
603
604 if (linux_supports_tracesysgood (pid) == 0)
605 return;
606
607 current_ptrace_options |= PTRACE_O_TRACESYSGOOD;
608
609 ptrace (PTRACE_SETOPTIONS, pid, 0, current_ptrace_options);
610}
611
3993f6b1 612\f
4de4c07c
DJ
613void
614linux_enable_event_reporting (ptid_t ptid)
615{
d3587048 616 int pid = ptid_get_lwp (ptid);
4de4c07c 617
d3587048
DJ
618 if (pid == 0)
619 pid = ptid_get_pid (ptid);
620
b957e937 621 if (! linux_supports_tracefork (pid))
4de4c07c
DJ
622 return;
623
a96d9b2e
SDJ
624 current_ptrace_options |= PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK
625 | PTRACE_O_TRACEEXEC | PTRACE_O_TRACECLONE;
626
b957e937 627 if (linux_supports_tracevforkdone (pid))
a96d9b2e 628 current_ptrace_options |= PTRACE_O_TRACEVFORKDONE;
9016a515
DJ
629
630 /* Do not enable PTRACE_O_TRACEEXIT until GDB is more prepared to support
631 read-only process state. */
4de4c07c 632
a96d9b2e 633 ptrace (PTRACE_SETOPTIONS, pid, 0, current_ptrace_options);
4de4c07c
DJ
634}
635
6d8fd2b7
UW
636static void
637linux_child_post_attach (int pid)
4de4c07c
DJ
638{
639 linux_enable_event_reporting (pid_to_ptid (pid));
0ec9a092 640 check_for_thread_db ();
a96d9b2e 641 linux_enable_tracesysgood (pid_to_ptid (pid));
4de4c07c
DJ
642}
643
10d6c8cd 644static void
4de4c07c
DJ
645linux_child_post_startup_inferior (ptid_t ptid)
646{
647 linux_enable_event_reporting (ptid);
0ec9a092 648 check_for_thread_db ();
a96d9b2e 649 linux_enable_tracesysgood (ptid);
4de4c07c
DJ
650}
651
6d8fd2b7
UW
652static int
653linux_child_follow_fork (struct target_ops *ops, int follow_child)
3993f6b1 654{
7feb7d06 655 sigset_t prev_mask;
9016a515 656 int has_vforked;
4de4c07c
DJ
657 int parent_pid, child_pid;
658
7feb7d06 659 block_child_signals (&prev_mask);
b84876c2 660
e58b0e63
PA
661 has_vforked = (inferior_thread ()->pending_follow.kind
662 == TARGET_WAITKIND_VFORKED);
663 parent_pid = ptid_get_lwp (inferior_ptid);
d3587048 664 if (parent_pid == 0)
e58b0e63
PA
665 parent_pid = ptid_get_pid (inferior_ptid);
666 child_pid = PIDGET (inferior_thread ()->pending_follow.value.related_pid);
4de4c07c 667
2277426b
PA
668 if (!detach_fork)
669 linux_enable_event_reporting (pid_to_ptid (child_pid));
670
6c95b8df
PA
671 if (has_vforked
672 && !non_stop /* Non-stop always resumes both branches. */
673 && (!target_is_async_p () || sync_execution)
674 && !(follow_child || detach_fork || sched_multi))
675 {
676 /* The parent stays blocked inside the vfork syscall until the
677 child execs or exits. If we don't let the child run, then
678 the parent stays blocked. If we're telling the parent to run
679 in the foreground, the user will not be able to ctrl-c to get
680 back the terminal, effectively hanging the debug session. */
681 fprintf_filtered (gdb_stderr, _("\
cce7e648 682Can not resume the parent process over vfork in the foreground while\n\
6c95b8df
PA
683holding the child stopped. Try \"set detach-on-fork\" or \
684\"set schedule-multiple\".\n"));
685 return 1;
686 }
687
4de4c07c
DJ
688 if (! follow_child)
689 {
6c95b8df 690 struct lwp_info *child_lp = NULL;
4de4c07c 691
6c95b8df 692 /* We're already attached to the parent, by default. */
4de4c07c 693
ac264b3b
MS
694 /* Detach new forked process? */
695 if (detach_fork)
f75c00e4 696 {
6c95b8df
PA
697 /* Before detaching from the child, remove all breakpoints
698 from it. If we forked, then this has already been taken
699 care of by infrun.c. If we vforked however, any
700 breakpoint inserted in the parent is visible in the
701 child, even those added while stopped in a vfork
702 catchpoint. This will remove the breakpoints from the
703 parent also, but they'll be reinserted below. */
704 if (has_vforked)
705 {
706 /* keep breakpoints list in sync. */
707 remove_breakpoints_pid (GET_PID (inferior_ptid));
708 }
709
e85a822c 710 if (info_verbose || debug_linux_nat)
ac264b3b
MS
711 {
712 target_terminal_ours ();
713 fprintf_filtered (gdb_stdlog,
714 "Detaching after fork from child process %d.\n",
715 child_pid);
716 }
4de4c07c 717
ac264b3b
MS
718 ptrace (PTRACE_DETACH, child_pid, 0, 0);
719 }
720 else
721 {
77435e4c 722 struct inferior *parent_inf, *child_inf;
2277426b 723 struct cleanup *old_chain;
7f9f62ba
PA
724
725 /* Add process to GDB's tables. */
77435e4c
PA
726 child_inf = add_inferior (child_pid);
727
e58b0e63 728 parent_inf = current_inferior ();
77435e4c 729 child_inf->attach_flag = parent_inf->attach_flag;
191c4426 730 copy_terminal_info (child_inf, parent_inf);
7f9f62ba 731
2277426b 732 old_chain = save_inferior_ptid ();
6c95b8df 733 save_current_program_space ();
2277426b
PA
734
735 inferior_ptid = ptid_build (child_pid, child_pid, 0);
736 add_thread (inferior_ptid);
6c95b8df
PA
737 child_lp = add_lwp (inferior_ptid);
738 child_lp->stopped = 1;
739 child_lp->resumed = 1;
2277426b 740
6c95b8df
PA
741 /* If this is a vfork child, then the address-space is
742 shared with the parent. */
743 if (has_vforked)
744 {
745 child_inf->pspace = parent_inf->pspace;
746 child_inf->aspace = parent_inf->aspace;
747
748 /* The parent will be frozen until the child is done
749 with the shared region. Keep track of the
750 parent. */
751 child_inf->vfork_parent = parent_inf;
752 child_inf->pending_detach = 0;
753 parent_inf->vfork_child = child_inf;
754 parent_inf->pending_detach = 0;
755 }
756 else
757 {
758 child_inf->aspace = new_address_space ();
759 child_inf->pspace = add_program_space (child_inf->aspace);
760 child_inf->removable = 1;
761 set_current_program_space (child_inf->pspace);
762 clone_program_space (child_inf->pspace, parent_inf->pspace);
763
764 /* Let the shared library layer (solib-svr4) learn about
765 this new process, relocate the cloned exec, pull in
766 shared libraries, and install the solib event
767 breakpoint. If a "cloned-VM" event was propagated
768 better throughout the core, this wouldn't be
769 required. */
268a4a75 770 solib_create_inferior_hook (0);
6c95b8df
PA
771 }
772
773 /* Let the thread_db layer learn about this new process. */
2277426b
PA
774 check_for_thread_db ();
775
776 do_cleanups (old_chain);
ac264b3b 777 }
9016a515
DJ
778
779 if (has_vforked)
780 {
6c95b8df
PA
781 struct lwp_info *lp;
782 struct inferior *parent_inf;
783
784 parent_inf = current_inferior ();
785
786 /* If we detached from the child, then we have to be careful
787 to not insert breakpoints in the parent until the child
788 is done with the shared memory region. However, if we're
789 staying attached to the child, then we can and should
790 insert breakpoints, so that we can debug it. A
791 subsequent child exec or exit is enough to know when does
792 the child stops using the parent's address space. */
793 parent_inf->waiting_for_vfork_done = detach_fork;
56710373 794 parent_inf->pspace->breakpoints_not_allowed = detach_fork;
6c95b8df
PA
795
796 lp = find_lwp_pid (pid_to_ptid (parent_pid));
b957e937
DJ
797 gdb_assert (linux_supports_tracefork_flag >= 0);
798 if (linux_supports_tracevforkdone (0))
9016a515 799 {
6c95b8df
PA
800 if (debug_linux_nat)
801 fprintf_unfiltered (gdb_stdlog,
802 "LCFF: waiting for VFORK_DONE on %d\n",
803 parent_pid);
804
805 lp->stopped = 1;
806 lp->resumed = 1;
9016a515 807
6c95b8df
PA
808 /* We'll handle the VFORK_DONE event like any other
809 event, in target_wait. */
9016a515
DJ
810 }
811 else
812 {
813 /* We can't insert breakpoints until the child has
814 finished with the shared memory region. We need to
815 wait until that happens. Ideal would be to just
816 call:
817 - ptrace (PTRACE_SYSCALL, parent_pid, 0, 0);
818 - waitpid (parent_pid, &status, __WALL);
819 However, most architectures can't handle a syscall
820 being traced on the way out if it wasn't traced on
821 the way in.
822
823 We might also think to loop, continuing the child
824 until it exits or gets a SIGTRAP. One problem is
825 that the child might call ptrace with PTRACE_TRACEME.
826
827 There's no simple and reliable way to figure out when
828 the vforked child will be done with its copy of the
829 shared memory. We could step it out of the syscall,
830 two instructions, let it go, and then single-step the
831 parent once. When we have hardware single-step, this
832 would work; with software single-step it could still
833 be made to work but we'd have to be able to insert
834 single-step breakpoints in the child, and we'd have
835 to insert -just- the single-step breakpoint in the
836 parent. Very awkward.
837
838 In the end, the best we can do is to make sure it
839 runs for a little while. Hopefully it will be out of
840 range of any breakpoints we reinsert. Usually this
841 is only the single-step breakpoint at vfork's return
842 point. */
843
6c95b8df
PA
844 if (debug_linux_nat)
845 fprintf_unfiltered (gdb_stdlog,
846 "LCFF: no VFORK_DONE support, sleeping a bit\n");
847
9016a515 848 usleep (10000);
9016a515 849
6c95b8df
PA
850 /* Pretend we've seen a PTRACE_EVENT_VFORK_DONE event,
851 and leave it pending. The next linux_nat_resume call
852 will notice a pending event, and bypasses actually
853 resuming the inferior. */
854 lp->status = 0;
855 lp->waitstatus.kind = TARGET_WAITKIND_VFORK_DONE;
856 lp->stopped = 0;
857 lp->resumed = 1;
858
859 /* If we're in async mode, need to tell the event loop
860 there's something here to process. */
861 if (target_can_async_p ())
862 async_file_mark ();
863 }
9016a515 864 }
4de4c07c 865 }
3993f6b1 866 else
4de4c07c 867 {
77435e4c 868 struct inferior *parent_inf, *child_inf;
2277426b 869 struct lwp_info *lp;
6c95b8df 870 struct program_space *parent_pspace;
4de4c07c 871
e85a822c 872 if (info_verbose || debug_linux_nat)
f75c00e4
DJ
873 {
874 target_terminal_ours ();
6c95b8df
PA
875 if (has_vforked)
876 fprintf_filtered (gdb_stdlog, _("\
877Attaching after process %d vfork to child process %d.\n"),
878 parent_pid, child_pid);
879 else
880 fprintf_filtered (gdb_stdlog, _("\
881Attaching after process %d fork to child process %d.\n"),
882 parent_pid, child_pid);
f75c00e4 883 }
4de4c07c 884
7a7d3353
PA
885 /* Add the new inferior first, so that the target_detach below
886 doesn't unpush the target. */
887
77435e4c
PA
888 child_inf = add_inferior (child_pid);
889
e58b0e63 890 parent_inf = current_inferior ();
77435e4c 891 child_inf->attach_flag = parent_inf->attach_flag;
191c4426 892 copy_terminal_info (child_inf, parent_inf);
7a7d3353 893
6c95b8df 894 parent_pspace = parent_inf->pspace;
9016a515 895
6c95b8df
PA
896 /* If we're vforking, we want to hold on to the parent until the
897 child exits or execs. At child exec or exit time we can
898 remove the old breakpoints from the parent and detach or
899 resume debugging it. Otherwise, detach the parent now; we'll
900 want to reuse it's program/address spaces, but we can't set
901 them to the child before removing breakpoints from the
902 parent, otherwise, the breakpoints module could decide to
903 remove breakpoints from the wrong process (since they'd be
904 assigned to the same address space). */
9016a515
DJ
905
906 if (has_vforked)
7f9f62ba 907 {
6c95b8df
PA
908 gdb_assert (child_inf->vfork_parent == NULL);
909 gdb_assert (parent_inf->vfork_child == NULL);
910 child_inf->vfork_parent = parent_inf;
911 child_inf->pending_detach = 0;
912 parent_inf->vfork_child = child_inf;
913 parent_inf->pending_detach = detach_fork;
914 parent_inf->waiting_for_vfork_done = 0;
ac264b3b 915 }
2277426b 916 else if (detach_fork)
b84876c2 917 target_detach (NULL, 0);
4de4c07c 918
6c95b8df
PA
919 /* Note that the detach above makes PARENT_INF dangling. */
920
921 /* Add the child thread to the appropriate lists, and switch to
922 this new thread, before cloning the program space, and
923 informing the solib layer about this new process. */
924
9f0bdab8 925 inferior_ptid = ptid_build (child_pid, child_pid, 0);
2277426b
PA
926 add_thread (inferior_ptid);
927 lp = add_lwp (inferior_ptid);
928 lp->stopped = 1;
6c95b8df
PA
929 lp->resumed = 1;
930
931 /* If this is a vfork child, then the address-space is shared
932 with the parent. If we detached from the parent, then we can
933 reuse the parent's program/address spaces. */
934 if (has_vforked || detach_fork)
935 {
936 child_inf->pspace = parent_pspace;
937 child_inf->aspace = child_inf->pspace->aspace;
938 }
939 else
940 {
941 child_inf->aspace = new_address_space ();
942 child_inf->pspace = add_program_space (child_inf->aspace);
943 child_inf->removable = 1;
944 set_current_program_space (child_inf->pspace);
945 clone_program_space (child_inf->pspace, parent_pspace);
946
947 /* Let the shared library layer (solib-svr4) learn about
948 this new process, relocate the cloned exec, pull in
949 shared libraries, and install the solib event breakpoint.
950 If a "cloned-VM" event was propagated better throughout
951 the core, this wouldn't be required. */
268a4a75 952 solib_create_inferior_hook (0);
6c95b8df 953 }
ac264b3b 954
6c95b8df 955 /* Let the thread_db layer learn about this new process. */
ef29ce1a 956 check_for_thread_db ();
4de4c07c
DJ
957 }
958
7feb7d06 959 restore_child_signals_mask (&prev_mask);
4de4c07c
DJ
960 return 0;
961}
962
4de4c07c 963\f
6d8fd2b7
UW
964static void
965linux_child_insert_fork_catchpoint (int pid)
4de4c07c 966{
b957e937 967 if (! linux_supports_tracefork (pid))
8a3fe4f8 968 error (_("Your system does not support fork catchpoints."));
3993f6b1
DJ
969}
970
6d8fd2b7
UW
971static void
972linux_child_insert_vfork_catchpoint (int pid)
3993f6b1 973{
b957e937 974 if (!linux_supports_tracefork (pid))
8a3fe4f8 975 error (_("Your system does not support vfork catchpoints."));
3993f6b1
DJ
976}
977
6d8fd2b7
UW
978static void
979linux_child_insert_exec_catchpoint (int pid)
3993f6b1 980{
b957e937 981 if (!linux_supports_tracefork (pid))
8a3fe4f8 982 error (_("Your system does not support exec catchpoints."));
3993f6b1
DJ
983}
984
a96d9b2e
SDJ
985static int
986linux_child_set_syscall_catchpoint (int pid, int needed, int any_count,
987 int table_size, int *table)
988{
989 if (! linux_supports_tracesysgood (pid))
990 error (_("Your system does not support syscall catchpoints."));
991 /* On GNU/Linux, we ignore the arguments. It means that we only
992 enable the syscall catchpoints, but do not disable them.
993
994 Also, we do not use the `table' information because we do not
995 filter system calls here. We let GDB do the logic for us. */
996 return 0;
997}
998
d6b0e80f
AC
999/* On GNU/Linux there are no real LWP's. The closest thing to LWP's
1000 are processes sharing the same VM space. A multi-threaded process
1001 is basically a group of such processes. However, such a grouping
1002 is almost entirely a user-space issue; the kernel doesn't enforce
1003 such a grouping at all (this might change in the future). In
1004 general, we'll rely on the threads library (i.e. the GNU/Linux
1005 Threads library) to provide such a grouping.
1006
1007 It is perfectly well possible to write a multi-threaded application
1008 without the assistance of a threads library, by using the clone
1009 system call directly. This module should be able to give some
1010 rudimentary support for debugging such applications if developers
1011 specify the CLONE_PTRACE flag in the clone system call, and are
1012 using the Linux kernel 2.4 or above.
1013
1014 Note that there are some peculiarities in GNU/Linux that affect
1015 this code:
1016
1017 - In general one should specify the __WCLONE flag to waitpid in
1018 order to make it report events for any of the cloned processes
1019 (and leave it out for the initial process). However, if a cloned
1020 process has exited the exit status is only reported if the
1021 __WCLONE flag is absent. Linux kernel 2.4 has a __WALL flag, but
1022 we cannot use it since GDB must work on older systems too.
1023
1024 - When a traced, cloned process exits and is waited for by the
1025 debugger, the kernel reassigns it to the original parent and
1026 keeps it around as a "zombie". Somehow, the GNU/Linux Threads
1027 library doesn't notice this, which leads to the "zombie problem":
1028 When debugged a multi-threaded process that spawns a lot of
1029 threads will run out of processes, even if the threads exit,
1030 because the "zombies" stay around. */
1031
1032/* List of known LWPs. */
9f0bdab8 1033struct lwp_info *lwp_list;
d6b0e80f
AC
1034\f
1035
d6b0e80f
AC
1036/* Original signal mask. */
1037static sigset_t normal_mask;
1038
1039/* Signal mask for use with sigsuspend in linux_nat_wait, initialized in
1040 _initialize_linux_nat. */
1041static sigset_t suspend_mask;
1042
7feb7d06
PA
1043/* Signals to block to make that sigsuspend work. */
1044static sigset_t blocked_mask;
1045
1046/* SIGCHLD action. */
1047struct sigaction sigchld_action;
b84876c2 1048
7feb7d06
PA
1049/* Block child signals (SIGCHLD and linux threads signals), and store
1050 the previous mask in PREV_MASK. */
84e46146 1051
7feb7d06
PA
1052static void
1053block_child_signals (sigset_t *prev_mask)
1054{
1055 /* Make sure SIGCHLD is blocked. */
1056 if (!sigismember (&blocked_mask, SIGCHLD))
1057 sigaddset (&blocked_mask, SIGCHLD);
1058
1059 sigprocmask (SIG_BLOCK, &blocked_mask, prev_mask);
1060}
1061
1062/* Restore child signals mask, previously returned by
1063 block_child_signals. */
1064
1065static void
1066restore_child_signals_mask (sigset_t *prev_mask)
1067{
1068 sigprocmask (SIG_SETMASK, prev_mask, NULL);
1069}
d6b0e80f
AC
1070\f
1071
1072/* Prototypes for local functions. */
1073static int stop_wait_callback (struct lwp_info *lp, void *data);
28439f5e 1074static int linux_thread_alive (ptid_t ptid);
6d8fd2b7 1075static char *linux_child_pid_to_exec_file (int pid);
710151dd 1076
d6b0e80f
AC
1077\f
1078/* Convert wait status STATUS to a string. Used for printing debug
1079 messages only. */
1080
1081static char *
1082status_to_str (int status)
1083{
1084 static char buf[64];
1085
1086 if (WIFSTOPPED (status))
206aa767 1087 {
ca2163eb 1088 if (WSTOPSIG (status) == SYSCALL_SIGTRAP)
206aa767
DE
1089 snprintf (buf, sizeof (buf), "%s (stopped at syscall)",
1090 strsignal (SIGTRAP));
1091 else
1092 snprintf (buf, sizeof (buf), "%s (stopped)",
1093 strsignal (WSTOPSIG (status)));
1094 }
d6b0e80f
AC
1095 else if (WIFSIGNALED (status))
1096 snprintf (buf, sizeof (buf), "%s (terminated)",
ba9b2ec3 1097 strsignal (WTERMSIG (status)));
d6b0e80f
AC
1098 else
1099 snprintf (buf, sizeof (buf), "%d (exited)", WEXITSTATUS (status));
1100
1101 return buf;
1102}
1103
d90e17a7
PA
1104/* Remove all LWPs belong to PID from the lwp list. */
1105
1106static void
1107purge_lwp_list (int pid)
1108{
1109 struct lwp_info *lp, *lpprev, *lpnext;
1110
1111 lpprev = NULL;
1112
1113 for (lp = lwp_list; lp; lp = lpnext)
1114 {
1115 lpnext = lp->next;
1116
1117 if (ptid_get_pid (lp->ptid) == pid)
1118 {
1119 if (lp == lwp_list)
1120 lwp_list = lp->next;
1121 else
1122 lpprev->next = lp->next;
1123
1124 xfree (lp);
1125 }
1126 else
1127 lpprev = lp;
1128 }
1129}
1130
1131/* Return the number of known LWPs in the tgid given by PID. */
1132
1133static int
1134num_lwps (int pid)
1135{
1136 int count = 0;
1137 struct lwp_info *lp;
1138
1139 for (lp = lwp_list; lp; lp = lp->next)
1140 if (ptid_get_pid (lp->ptid) == pid)
1141 count++;
1142
1143 return count;
d6b0e80f
AC
1144}
1145
f973ed9c 1146/* Add the LWP specified by PID to the list. Return a pointer to the
9f0bdab8
DJ
1147 structure describing the new LWP. The LWP should already be stopped
1148 (with an exception for the very first LWP). */
d6b0e80f
AC
1149
1150static struct lwp_info *
1151add_lwp (ptid_t ptid)
1152{
1153 struct lwp_info *lp;
1154
1155 gdb_assert (is_lwp (ptid));
1156
1157 lp = (struct lwp_info *) xmalloc (sizeof (struct lwp_info));
1158
1159 memset (lp, 0, sizeof (struct lwp_info));
1160
1161 lp->waitstatus.kind = TARGET_WAITKIND_IGNORE;
1162
1163 lp->ptid = ptid;
dc146f7c 1164 lp->core = -1;
d6b0e80f
AC
1165
1166 lp->next = lwp_list;
1167 lwp_list = lp;
d6b0e80f 1168
d90e17a7 1169 if (num_lwps (GET_PID (ptid)) > 1 && linux_nat_new_thread != NULL)
9f0bdab8
DJ
1170 linux_nat_new_thread (ptid);
1171
d6b0e80f
AC
1172 return lp;
1173}
1174
1175/* Remove the LWP specified by PID from the list. */
1176
1177static void
1178delete_lwp (ptid_t ptid)
1179{
1180 struct lwp_info *lp, *lpprev;
1181
1182 lpprev = NULL;
1183
1184 for (lp = lwp_list; lp; lpprev = lp, lp = lp->next)
1185 if (ptid_equal (lp->ptid, ptid))
1186 break;
1187
1188 if (!lp)
1189 return;
1190
d6b0e80f
AC
1191 if (lpprev)
1192 lpprev->next = lp->next;
1193 else
1194 lwp_list = lp->next;
1195
1196 xfree (lp);
1197}
1198
1199/* Return a pointer to the structure describing the LWP corresponding
1200 to PID. If no corresponding LWP could be found, return NULL. */
1201
1202static struct lwp_info *
1203find_lwp_pid (ptid_t ptid)
1204{
1205 struct lwp_info *lp;
1206 int lwp;
1207
1208 if (is_lwp (ptid))
1209 lwp = GET_LWP (ptid);
1210 else
1211 lwp = GET_PID (ptid);
1212
1213 for (lp = lwp_list; lp; lp = lp->next)
1214 if (lwp == GET_LWP (lp->ptid))
1215 return lp;
1216
1217 return NULL;
1218}
1219
1220/* Call CALLBACK with its second argument set to DATA for every LWP in
1221 the list. If CALLBACK returns 1 for a particular LWP, return a
1222 pointer to the structure describing that LWP immediately.
1223 Otherwise return NULL. */
1224
1225struct lwp_info *
d90e17a7
PA
1226iterate_over_lwps (ptid_t filter,
1227 int (*callback) (struct lwp_info *, void *),
1228 void *data)
d6b0e80f
AC
1229{
1230 struct lwp_info *lp, *lpnext;
1231
1232 for (lp = lwp_list; lp; lp = lpnext)
1233 {
1234 lpnext = lp->next;
d90e17a7
PA
1235
1236 if (ptid_match (lp->ptid, filter))
1237 {
1238 if ((*callback) (lp, data))
1239 return lp;
1240 }
d6b0e80f
AC
1241 }
1242
1243 return NULL;
1244}
1245
2277426b
PA
1246/* Update our internal state when changing from one checkpoint to
1247 another indicated by NEW_PTID. We can only switch single-threaded
1248 applications, so we only create one new LWP, and the previous list
1249 is discarded. */
f973ed9c
DJ
1250
1251void
1252linux_nat_switch_fork (ptid_t new_ptid)
1253{
1254 struct lwp_info *lp;
1255
2277426b
PA
1256 purge_lwp_list (GET_PID (inferior_ptid));
1257
f973ed9c
DJ
1258 lp = add_lwp (new_ptid);
1259 lp->stopped = 1;
e26af52f 1260
2277426b
PA
1261 /* This changes the thread's ptid while preserving the gdb thread
1262 num. Also changes the inferior pid, while preserving the
1263 inferior num. */
1264 thread_change_ptid (inferior_ptid, new_ptid);
1265
1266 /* We've just told GDB core that the thread changed target id, but,
1267 in fact, it really is a different thread, with different register
1268 contents. */
1269 registers_changed ();
e26af52f
DJ
1270}
1271
e26af52f
DJ
1272/* Handle the exit of a single thread LP. */
1273
1274static void
1275exit_lwp (struct lwp_info *lp)
1276{
e09875d4 1277 struct thread_info *th = find_thread_ptid (lp->ptid);
063bfe2e
VP
1278
1279 if (th)
e26af52f 1280 {
17faa917
DJ
1281 if (print_thread_events)
1282 printf_unfiltered (_("[%s exited]\n"), target_pid_to_str (lp->ptid));
1283
4f8d22e3 1284 delete_thread (lp->ptid);
e26af52f
DJ
1285 }
1286
1287 delete_lwp (lp->ptid);
1288}
1289
4d062f1a
PA
1290/* Return an lwp's tgid, found in `/proc/PID/status'. */
1291
1292int
1293linux_proc_get_tgid (int lwpid)
1294{
1295 FILE *status_file;
1296 char buf[100];
1297 int tgid = -1;
1298
1299 snprintf (buf, sizeof (buf), "/proc/%d/status", (int) lwpid);
1300 status_file = fopen (buf, "r");
1301 if (status_file != NULL)
1302 {
1303 while (fgets (buf, sizeof (buf), status_file))
1304 {
1305 if (strncmp (buf, "Tgid:", 5) == 0)
1306 {
1307 tgid = strtoul (buf + strlen ("Tgid:"), NULL, 10);
1308 break;
1309 }
1310 }
1311
1312 fclose (status_file);
1313 }
1314
1315 return tgid;
1316}
1317
a0ef4274
DJ
1318/* Detect `T (stopped)' in `/proc/PID/status'.
1319 Other states including `T (tracing stop)' are reported as false. */
1320
1321static int
1322pid_is_stopped (pid_t pid)
1323{
1324 FILE *status_file;
1325 char buf[100];
1326 int retval = 0;
1327
1328 snprintf (buf, sizeof (buf), "/proc/%d/status", (int) pid);
1329 status_file = fopen (buf, "r");
1330 if (status_file != NULL)
1331 {
1332 int have_state = 0;
1333
1334 while (fgets (buf, sizeof (buf), status_file))
1335 {
1336 if (strncmp (buf, "State:", 6) == 0)
1337 {
1338 have_state = 1;
1339 break;
1340 }
1341 }
1342 if (have_state && strstr (buf, "T (stopped)") != NULL)
1343 retval = 1;
1344 fclose (status_file);
1345 }
1346 return retval;
1347}
1348
1349/* Wait for the LWP specified by LP, which we have just attached to.
1350 Returns a wait status for that LWP, to cache. */
1351
1352static int
1353linux_nat_post_attach_wait (ptid_t ptid, int first, int *cloned,
1354 int *signalled)
1355{
1356 pid_t new_pid, pid = GET_LWP (ptid);
1357 int status;
1358
1359 if (pid_is_stopped (pid))
1360 {
1361 if (debug_linux_nat)
1362 fprintf_unfiltered (gdb_stdlog,
1363 "LNPAW: Attaching to a stopped process\n");
1364
1365 /* The process is definitely stopped. It is in a job control
1366 stop, unless the kernel predates the TASK_STOPPED /
1367 TASK_TRACED distinction, in which case it might be in a
1368 ptrace stop. Make sure it is in a ptrace stop; from there we
1369 can kill it, signal it, et cetera.
1370
1371 First make sure there is a pending SIGSTOP. Since we are
1372 already attached, the process can not transition from stopped
1373 to running without a PTRACE_CONT; so we know this signal will
1374 go into the queue. The SIGSTOP generated by PTRACE_ATTACH is
1375 probably already in the queue (unless this kernel is old
1376 enough to use TASK_STOPPED for ptrace stops); but since SIGSTOP
1377 is not an RT signal, it can only be queued once. */
1378 kill_lwp (pid, SIGSTOP);
1379
1380 /* Finally, resume the stopped process. This will deliver the SIGSTOP
1381 (or a higher priority signal, just like normal PTRACE_ATTACH). */
1382 ptrace (PTRACE_CONT, pid, 0, 0);
1383 }
1384
1385 /* Make sure the initial process is stopped. The user-level threads
1386 layer might want to poke around in the inferior, and that won't
1387 work if things haven't stabilized yet. */
1388 new_pid = my_waitpid (pid, &status, 0);
1389 if (new_pid == -1 && errno == ECHILD)
1390 {
1391 if (first)
1392 warning (_("%s is a cloned process"), target_pid_to_str (ptid));
1393
1394 /* Try again with __WCLONE to check cloned processes. */
1395 new_pid = my_waitpid (pid, &status, __WCLONE);
1396 *cloned = 1;
1397 }
1398
dacc9cb2
PP
1399 gdb_assert (pid == new_pid);
1400
1401 if (!WIFSTOPPED (status))
1402 {
1403 /* The pid we tried to attach has apparently just exited. */
1404 if (debug_linux_nat)
1405 fprintf_unfiltered (gdb_stdlog, "LNPAW: Failed to stop %d: %s",
1406 pid, status_to_str (status));
1407 return status;
1408 }
a0ef4274
DJ
1409
1410 if (WSTOPSIG (status) != SIGSTOP)
1411 {
1412 *signalled = 1;
1413 if (debug_linux_nat)
1414 fprintf_unfiltered (gdb_stdlog,
1415 "LNPAW: Received %s after attaching\n",
1416 status_to_str (status));
1417 }
1418
1419 return status;
1420}
1421
1422/* Attach to the LWP specified by PID. Return 0 if successful or -1
1423 if the new LWP could not be attached. */
d6b0e80f 1424
9ee57c33 1425int
93815fbf 1426lin_lwp_attach_lwp (ptid_t ptid)
d6b0e80f 1427{
9ee57c33 1428 struct lwp_info *lp;
7feb7d06 1429 sigset_t prev_mask;
d6b0e80f
AC
1430
1431 gdb_assert (is_lwp (ptid));
1432
7feb7d06 1433 block_child_signals (&prev_mask);
d6b0e80f 1434
9ee57c33 1435 lp = find_lwp_pid (ptid);
d6b0e80f
AC
1436
1437 /* We assume that we're already attached to any LWP that has an id
1438 equal to the overall process id, and to any LWP that is already
1439 in our list of LWPs. If we're not seeing exit events from threads
1440 and we've had PID wraparound since we last tried to stop all threads,
1441 this assumption might be wrong; fortunately, this is very unlikely
1442 to happen. */
9ee57c33 1443 if (GET_LWP (ptid) != GET_PID (ptid) && lp == NULL)
d6b0e80f 1444 {
a0ef4274 1445 int status, cloned = 0, signalled = 0;
d6b0e80f
AC
1446
1447 if (ptrace (PTRACE_ATTACH, GET_LWP (ptid), 0, 0) < 0)
9ee57c33
DJ
1448 {
1449 /* If we fail to attach to the thread, issue a warning,
1450 but continue. One way this can happen is if thread
e9efe249 1451 creation is interrupted; as of Linux kernel 2.6.19, a
9ee57c33
DJ
1452 bug may place threads in the thread list and then fail
1453 to create them. */
1454 warning (_("Can't attach %s: %s"), target_pid_to_str (ptid),
1455 safe_strerror (errno));
7feb7d06 1456 restore_child_signals_mask (&prev_mask);
9ee57c33
DJ
1457 return -1;
1458 }
1459
d6b0e80f
AC
1460 if (debug_linux_nat)
1461 fprintf_unfiltered (gdb_stdlog,
1462 "LLAL: PTRACE_ATTACH %s, 0, 0 (OK)\n",
1463 target_pid_to_str (ptid));
1464
a0ef4274 1465 status = linux_nat_post_attach_wait (ptid, 0, &cloned, &signalled);
dacc9cb2
PP
1466 if (!WIFSTOPPED (status))
1467 return -1;
1468
a0ef4274
DJ
1469 lp = add_lwp (ptid);
1470 lp->stopped = 1;
1471 lp->cloned = cloned;
1472 lp->signalled = signalled;
1473 if (WSTOPSIG (status) != SIGSTOP)
d6b0e80f 1474 {
a0ef4274
DJ
1475 lp->resumed = 1;
1476 lp->status = status;
d6b0e80f
AC
1477 }
1478
a0ef4274 1479 target_post_attach (GET_LWP (lp->ptid));
d6b0e80f
AC
1480
1481 if (debug_linux_nat)
1482 {
1483 fprintf_unfiltered (gdb_stdlog,
1484 "LLAL: waitpid %s received %s\n",
1485 target_pid_to_str (ptid),
1486 status_to_str (status));
1487 }
1488 }
1489 else
1490 {
1491 /* We assume that the LWP representing the original process is
1492 already stopped. Mark it as stopped in the data structure
155bd5d1
AC
1493 that the GNU/linux ptrace layer uses to keep track of
1494 threads. Note that this won't have already been done since
1495 the main thread will have, we assume, been stopped by an
1496 attach from a different layer. */
9ee57c33
DJ
1497 if (lp == NULL)
1498 lp = add_lwp (ptid);
d6b0e80f
AC
1499 lp->stopped = 1;
1500 }
9ee57c33 1501
7feb7d06 1502 restore_child_signals_mask (&prev_mask);
9ee57c33 1503 return 0;
d6b0e80f
AC
1504}
1505
b84876c2 1506static void
136d6dae
VP
1507linux_nat_create_inferior (struct target_ops *ops,
1508 char *exec_file, char *allargs, char **env,
b84876c2
PA
1509 int from_tty)
1510{
10568435
JK
1511#ifdef HAVE_PERSONALITY
1512 int personality_orig = 0, personality_set = 0;
1513#endif /* HAVE_PERSONALITY */
b84876c2
PA
1514
1515 /* The fork_child mechanism is synchronous and calls target_wait, so
1516 we have to mask the async mode. */
1517
10568435
JK
1518#ifdef HAVE_PERSONALITY
1519 if (disable_randomization)
1520 {
1521 errno = 0;
1522 personality_orig = personality (0xffffffff);
1523 if (errno == 0 && !(personality_orig & ADDR_NO_RANDOMIZE))
1524 {
1525 personality_set = 1;
1526 personality (personality_orig | ADDR_NO_RANDOMIZE);
1527 }
1528 if (errno != 0 || (personality_set
1529 && !(personality (0xffffffff) & ADDR_NO_RANDOMIZE)))
1530 warning (_("Error disabling address space randomization: %s"),
1531 safe_strerror (errno));
1532 }
1533#endif /* HAVE_PERSONALITY */
1534
136d6dae 1535 linux_ops->to_create_inferior (ops, exec_file, allargs, env, from_tty);
b84876c2 1536
10568435
JK
1537#ifdef HAVE_PERSONALITY
1538 if (personality_set)
1539 {
1540 errno = 0;
1541 personality (personality_orig);
1542 if (errno != 0)
1543 warning (_("Error restoring address space randomization: %s"),
1544 safe_strerror (errno));
1545 }
1546#endif /* HAVE_PERSONALITY */
b84876c2
PA
1547}
1548
d6b0e80f 1549static void
136d6dae 1550linux_nat_attach (struct target_ops *ops, char *args, int from_tty)
d6b0e80f
AC
1551{
1552 struct lwp_info *lp;
d6b0e80f 1553 int status;
af990527 1554 ptid_t ptid;
d6b0e80f 1555
136d6dae 1556 linux_ops->to_attach (ops, args, from_tty);
d6b0e80f 1557
af990527
PA
1558 /* The ptrace base target adds the main thread with (pid,0,0)
1559 format. Decorate it with lwp info. */
1560 ptid = BUILD_LWP (GET_PID (inferior_ptid), GET_PID (inferior_ptid));
1561 thread_change_ptid (inferior_ptid, ptid);
1562
9f0bdab8 1563 /* Add the initial process as the first LWP to the list. */
af990527 1564 lp = add_lwp (ptid);
a0ef4274
DJ
1565
1566 status = linux_nat_post_attach_wait (lp->ptid, 1, &lp->cloned,
1567 &lp->signalled);
dacc9cb2
PP
1568 if (!WIFSTOPPED (status))
1569 {
1570 if (WIFEXITED (status))
1571 {
1572 int exit_code = WEXITSTATUS (status);
1573
1574 target_terminal_ours ();
1575 target_mourn_inferior ();
1576 if (exit_code == 0)
1577 error (_("Unable to attach: program exited normally."));
1578 else
1579 error (_("Unable to attach: program exited with code %d."),
1580 exit_code);
1581 }
1582 else if (WIFSIGNALED (status))
1583 {
1584 enum target_signal signo;
1585
1586 target_terminal_ours ();
1587 target_mourn_inferior ();
1588
1589 signo = target_signal_from_host (WTERMSIG (status));
1590 error (_("Unable to attach: program terminated with signal "
1591 "%s, %s."),
1592 target_signal_to_name (signo),
1593 target_signal_to_string (signo));
1594 }
1595
1596 internal_error (__FILE__, __LINE__,
1597 _("unexpected status %d for PID %ld"),
1598 status, (long) GET_LWP (ptid));
1599 }
1600
a0ef4274 1601 lp->stopped = 1;
9f0bdab8 1602
a0ef4274 1603 /* Save the wait status to report later. */
d6b0e80f 1604 lp->resumed = 1;
a0ef4274
DJ
1605 if (debug_linux_nat)
1606 fprintf_unfiltered (gdb_stdlog,
1607 "LNA: waitpid %ld, saving status %s\n",
1608 (long) GET_PID (lp->ptid), status_to_str (status));
710151dd 1609
7feb7d06
PA
1610 lp->status = status;
1611
1612 if (target_can_async_p ())
1613 target_async (inferior_event_handler, 0);
d6b0e80f
AC
1614}
1615
a0ef4274
DJ
1616/* Get pending status of LP. */
1617static int
1618get_pending_status (struct lwp_info *lp, int *status)
1619{
ca2163eb
PA
1620 enum target_signal signo = TARGET_SIGNAL_0;
1621
1622 /* If we paused threads momentarily, we may have stored pending
1623 events in lp->status or lp->waitstatus (see stop_wait_callback),
1624 and GDB core hasn't seen any signal for those threads.
1625 Otherwise, the last signal reported to the core is found in the
1626 thread object's stop_signal.
1627
1628 There's a corner case that isn't handled here at present. Only
1629 if the thread stopped with a TARGET_WAITKIND_STOPPED does
1630 stop_signal make sense as a real signal to pass to the inferior.
1631 Some catchpoint related events, like
1632 TARGET_WAITKIND_(V)FORK|EXEC|SYSCALL, have their stop_signal set
1633 to TARGET_SIGNAL_SIGTRAP when the catchpoint triggers. But,
1634 those traps are debug API (ptrace in our case) related and
1635 induced; the inferior wouldn't see them if it wasn't being
1636 traced. Hence, we should never pass them to the inferior, even
1637 when set to pass state. Since this corner case isn't handled by
1638 infrun.c when proceeding with a signal, for consistency, neither
1639 do we handle it here (or elsewhere in the file we check for
1640 signal pass state). Normally SIGTRAP isn't set to pass state, so
1641 this is really a corner case. */
1642
1643 if (lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
1644 signo = TARGET_SIGNAL_0; /* a pending ptrace event, not a real signal. */
1645 else if (lp->status)
1646 signo = target_signal_from_host (WSTOPSIG (lp->status));
1647 else if (non_stop && !is_executing (lp->ptid))
1648 {
1649 struct thread_info *tp = find_thread_ptid (lp->ptid);
e0881a8e 1650
ca2163eb
PA
1651 signo = tp->stop_signal;
1652 }
1653 else if (!non_stop)
a0ef4274 1654 {
ca2163eb
PA
1655 struct target_waitstatus last;
1656 ptid_t last_ptid;
4c28f408 1657
ca2163eb 1658 get_last_target_status (&last_ptid, &last);
4c28f408 1659
ca2163eb
PA
1660 if (GET_LWP (lp->ptid) == GET_LWP (last_ptid))
1661 {
e09875d4 1662 struct thread_info *tp = find_thread_ptid (lp->ptid);
e0881a8e 1663
2020b7ab 1664 signo = tp->stop_signal;
4c28f408 1665 }
ca2163eb 1666 }
4c28f408 1667
ca2163eb 1668 *status = 0;
4c28f408 1669
ca2163eb
PA
1670 if (signo == TARGET_SIGNAL_0)
1671 {
1672 if (debug_linux_nat)
1673 fprintf_unfiltered (gdb_stdlog,
1674 "GPT: lwp %s has no pending signal\n",
1675 target_pid_to_str (lp->ptid));
1676 }
1677 else if (!signal_pass_state (signo))
1678 {
1679 if (debug_linux_nat)
1680 fprintf_unfiltered (gdb_stdlog, "\
1681GPT: lwp %s had signal %s, but it is in no pass state\n",
1682 target_pid_to_str (lp->ptid),
1683 target_signal_to_string (signo));
a0ef4274 1684 }
a0ef4274 1685 else
4c28f408 1686 {
ca2163eb
PA
1687 *status = W_STOPCODE (target_signal_to_host (signo));
1688
1689 if (debug_linux_nat)
1690 fprintf_unfiltered (gdb_stdlog,
1691 "GPT: lwp %s has pending signal %s\n",
1692 target_pid_to_str (lp->ptid),
1693 target_signal_to_string (signo));
4c28f408 1694 }
a0ef4274
DJ
1695
1696 return 0;
1697}
1698
d6b0e80f
AC
1699static int
1700detach_callback (struct lwp_info *lp, void *data)
1701{
1702 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
1703
1704 if (debug_linux_nat && lp->status)
1705 fprintf_unfiltered (gdb_stdlog, "DC: Pending %s for %s on detach.\n",
1706 strsignal (WSTOPSIG (lp->status)),
1707 target_pid_to_str (lp->ptid));
1708
a0ef4274
DJ
1709 /* If there is a pending SIGSTOP, get rid of it. */
1710 if (lp->signalled)
d6b0e80f 1711 {
d6b0e80f
AC
1712 if (debug_linux_nat)
1713 fprintf_unfiltered (gdb_stdlog,
a0ef4274
DJ
1714 "DC: Sending SIGCONT to %s\n",
1715 target_pid_to_str (lp->ptid));
d6b0e80f 1716
a0ef4274 1717 kill_lwp (GET_LWP (lp->ptid), SIGCONT);
d6b0e80f 1718 lp->signalled = 0;
d6b0e80f
AC
1719 }
1720
1721 /* We don't actually detach from the LWP that has an id equal to the
1722 overall process id just yet. */
1723 if (GET_LWP (lp->ptid) != GET_PID (lp->ptid))
1724 {
a0ef4274
DJ
1725 int status = 0;
1726
1727 /* Pass on any pending signal for this LWP. */
1728 get_pending_status (lp, &status);
1729
d6b0e80f
AC
1730 errno = 0;
1731 if (ptrace (PTRACE_DETACH, GET_LWP (lp->ptid), 0,
a0ef4274 1732 WSTOPSIG (status)) < 0)
8a3fe4f8 1733 error (_("Can't detach %s: %s"), target_pid_to_str (lp->ptid),
d6b0e80f
AC
1734 safe_strerror (errno));
1735
1736 if (debug_linux_nat)
1737 fprintf_unfiltered (gdb_stdlog,
1738 "PTRACE_DETACH (%s, %s, 0) (OK)\n",
1739 target_pid_to_str (lp->ptid),
7feb7d06 1740 strsignal (WSTOPSIG (status)));
d6b0e80f
AC
1741
1742 delete_lwp (lp->ptid);
1743 }
1744
1745 return 0;
1746}
1747
1748static void
136d6dae 1749linux_nat_detach (struct target_ops *ops, char *args, int from_tty)
d6b0e80f 1750{
b84876c2 1751 int pid;
a0ef4274 1752 int status;
d90e17a7
PA
1753 struct lwp_info *main_lwp;
1754
1755 pid = GET_PID (inferior_ptid);
a0ef4274 1756
b84876c2
PA
1757 if (target_can_async_p ())
1758 linux_nat_async (NULL, 0);
1759
4c28f408
PA
1760 /* Stop all threads before detaching. ptrace requires that the
1761 thread is stopped to sucessfully detach. */
d90e17a7 1762 iterate_over_lwps (pid_to_ptid (pid), stop_callback, NULL);
4c28f408
PA
1763 /* ... and wait until all of them have reported back that
1764 they're no longer running. */
d90e17a7 1765 iterate_over_lwps (pid_to_ptid (pid), stop_wait_callback, NULL);
4c28f408 1766
d90e17a7 1767 iterate_over_lwps (pid_to_ptid (pid), detach_callback, NULL);
d6b0e80f
AC
1768
1769 /* Only the initial process should be left right now. */
d90e17a7
PA
1770 gdb_assert (num_lwps (GET_PID (inferior_ptid)) == 1);
1771
1772 main_lwp = find_lwp_pid (pid_to_ptid (pid));
d6b0e80f 1773
a0ef4274
DJ
1774 /* Pass on any pending signal for the last LWP. */
1775 if ((args == NULL || *args == '\0')
d90e17a7 1776 && get_pending_status (main_lwp, &status) != -1
a0ef4274
DJ
1777 && WIFSTOPPED (status))
1778 {
1779 /* Put the signal number in ARGS so that inf_ptrace_detach will
1780 pass it along with PTRACE_DETACH. */
1781 args = alloca (8);
1782 sprintf (args, "%d", (int) WSTOPSIG (status));
ddabfc73
TT
1783 if (debug_linux_nat)
1784 fprintf_unfiltered (gdb_stdlog,
1785 "LND: Sending signal %s to %s\n",
1786 args,
1787 target_pid_to_str (main_lwp->ptid));
a0ef4274
DJ
1788 }
1789
d90e17a7 1790 delete_lwp (main_lwp->ptid);
b84876c2 1791
7a7d3353
PA
1792 if (forks_exist_p ())
1793 {
1794 /* Multi-fork case. The current inferior_ptid is being detached
1795 from, but there are other viable forks to debug. Detach from
1796 the current fork, and context-switch to the first
1797 available. */
1798 linux_fork_detach (args, from_tty);
1799
1800 if (non_stop && target_can_async_p ())
1801 target_async (inferior_event_handler, 0);
1802 }
1803 else
1804 linux_ops->to_detach (ops, args, from_tty);
d6b0e80f
AC
1805}
1806
1807/* Resume LP. */
1808
1809static int
1810resume_callback (struct lwp_info *lp, void *data)
1811{
6c95b8df
PA
1812 struct inferior *inf = find_inferior_pid (GET_PID (lp->ptid));
1813
1814 if (lp->stopped && inf->vfork_child != NULL)
1815 {
1816 if (debug_linux_nat)
1817 fprintf_unfiltered (gdb_stdlog,
1818 "RC: Not resuming %s (vfork parent)\n",
1819 target_pid_to_str (lp->ptid));
1820 }
1821 else if (lp->stopped && lp->status == 0)
d6b0e80f 1822 {
8aeb23f3
JK
1823 struct thread_info *tp = find_thread_ptid (lp->ptid);
1824 /* lp->step may already contain a stale value. */
1825 int step = tp ? currently_stepping (tp) : 0;
1826
d90e17a7
PA
1827 if (debug_linux_nat)
1828 fprintf_unfiltered (gdb_stdlog,
8aeb23f3
JK
1829 "RC: %s %s, 0, 0 (resuming sibling)\n",
1830 step ? "PTRACE_SINGLESTEP" : "PTRACE_CONT",
d90e17a7
PA
1831 target_pid_to_str (lp->ptid));
1832
28439f5e
PA
1833 linux_ops->to_resume (linux_ops,
1834 pid_to_ptid (GET_LWP (lp->ptid)),
8aeb23f3 1835 step, TARGET_SIGNAL_0);
d6b0e80f
AC
1836 if (debug_linux_nat)
1837 fprintf_unfiltered (gdb_stdlog,
8aeb23f3
JK
1838 "RC: %s %s, 0, 0 (resume sibling)\n",
1839 step ? "PTRACE_SINGLESTEP" : "PTRACE_CONT",
d6b0e80f
AC
1840 target_pid_to_str (lp->ptid));
1841 lp->stopped = 0;
8aeb23f3 1842 lp->step = step;
9f0bdab8 1843 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
ebec9a0f 1844 lp->stopped_by_watchpoint = 0;
d6b0e80f 1845 }
57380f4e
DJ
1846 else if (lp->stopped && debug_linux_nat)
1847 fprintf_unfiltered (gdb_stdlog, "RC: Not resuming sibling %s (has pending)\n",
1848 target_pid_to_str (lp->ptid));
1849 else if (debug_linux_nat)
1850 fprintf_unfiltered (gdb_stdlog, "RC: Not resuming sibling %s (not stopped)\n",
1851 target_pid_to_str (lp->ptid));
d6b0e80f
AC
1852
1853 return 0;
1854}
1855
1856static int
1857resume_clear_callback (struct lwp_info *lp, void *data)
1858{
1859 lp->resumed = 0;
1860 return 0;
1861}
1862
1863static int
1864resume_set_callback (struct lwp_info *lp, void *data)
1865{
1866 lp->resumed = 1;
1867 return 0;
1868}
1869
1870static void
28439f5e
PA
1871linux_nat_resume (struct target_ops *ops,
1872 ptid_t ptid, int step, enum target_signal signo)
d6b0e80f 1873{
7feb7d06 1874 sigset_t prev_mask;
d6b0e80f 1875 struct lwp_info *lp;
d90e17a7 1876 int resume_many;
d6b0e80f 1877
76f50ad1
DJ
1878 if (debug_linux_nat)
1879 fprintf_unfiltered (gdb_stdlog,
1880 "LLR: Preparing to %s %s, %s, inferior_ptid %s\n",
1881 step ? "step" : "resume",
1882 target_pid_to_str (ptid),
423ec54c
JK
1883 (signo != TARGET_SIGNAL_0
1884 ? strsignal (target_signal_to_host (signo)) : "0"),
76f50ad1
DJ
1885 target_pid_to_str (inferior_ptid));
1886
7feb7d06 1887 block_child_signals (&prev_mask);
b84876c2 1888
d6b0e80f 1889 /* A specific PTID means `step only this process id'. */
d90e17a7
PA
1890 resume_many = (ptid_equal (minus_one_ptid, ptid)
1891 || ptid_is_pid (ptid));
4c28f408 1892
e3e9f5a2
PA
1893 /* Mark the lwps we're resuming as resumed. */
1894 iterate_over_lwps (ptid, resume_set_callback, NULL);
d6b0e80f 1895
d90e17a7
PA
1896 /* See if it's the current inferior that should be handled
1897 specially. */
1898 if (resume_many)
1899 lp = find_lwp_pid (inferior_ptid);
1900 else
1901 lp = find_lwp_pid (ptid);
9f0bdab8 1902 gdb_assert (lp != NULL);
d6b0e80f 1903
9f0bdab8
DJ
1904 /* Remember if we're stepping. */
1905 lp->step = step;
d6b0e80f 1906
9f0bdab8
DJ
1907 /* If we have a pending wait status for this thread, there is no
1908 point in resuming the process. But first make sure that
1909 linux_nat_wait won't preemptively handle the event - we
1910 should never take this short-circuit if we are going to
1911 leave LP running, since we have skipped resuming all the
1912 other threads. This bit of code needs to be synchronized
1913 with linux_nat_wait. */
76f50ad1 1914
9f0bdab8
DJ
1915 if (lp->status && WIFSTOPPED (lp->status))
1916 {
423ec54c 1917 enum target_signal saved_signo;
d6b48e9c 1918 struct inferior *inf;
76f50ad1 1919
d90e17a7 1920 inf = find_inferior_pid (ptid_get_pid (lp->ptid));
d6b48e9c
PA
1921 gdb_assert (inf);
1922 saved_signo = target_signal_from_host (WSTOPSIG (lp->status));
1923
1924 /* Defer to common code if we're gaining control of the
1925 inferior. */
1926 if (inf->stop_soon == NO_STOP_QUIETLY
1927 && signal_stop_state (saved_signo) == 0
9f0bdab8
DJ
1928 && signal_print_state (saved_signo) == 0
1929 && signal_pass_state (saved_signo) == 1)
d6b0e80f 1930 {
9f0bdab8
DJ
1931 if (debug_linux_nat)
1932 fprintf_unfiltered (gdb_stdlog,
1933 "LLR: Not short circuiting for ignored "
1934 "status 0x%x\n", lp->status);
1935
d6b0e80f
AC
1936 /* FIXME: What should we do if we are supposed to continue
1937 this thread with a signal? */
1938 gdb_assert (signo == TARGET_SIGNAL_0);
9f0bdab8
DJ
1939 signo = saved_signo;
1940 lp->status = 0;
1941 }
1942 }
76f50ad1 1943
6c95b8df 1944 if (lp->status || lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
9f0bdab8
DJ
1945 {
1946 /* FIXME: What should we do if we are supposed to continue
1947 this thread with a signal? */
1948 gdb_assert (signo == TARGET_SIGNAL_0);
76f50ad1 1949
9f0bdab8
DJ
1950 if (debug_linux_nat)
1951 fprintf_unfiltered (gdb_stdlog,
1952 "LLR: Short circuiting for status 0x%x\n",
1953 lp->status);
d6b0e80f 1954
7feb7d06
PA
1955 restore_child_signals_mask (&prev_mask);
1956 if (target_can_async_p ())
1957 {
1958 target_async (inferior_event_handler, 0);
1959 /* Tell the event loop we have something to process. */
1960 async_file_mark ();
1961 }
9f0bdab8 1962 return;
d6b0e80f
AC
1963 }
1964
9f0bdab8
DJ
1965 /* Mark LWP as not stopped to prevent it from being continued by
1966 resume_callback. */
1967 lp->stopped = 0;
1968
d90e17a7
PA
1969 if (resume_many)
1970 iterate_over_lwps (ptid, resume_callback, NULL);
1971
1972 /* Convert to something the lower layer understands. */
1973 ptid = pid_to_ptid (GET_LWP (lp->ptid));
d6b0e80f 1974
28439f5e 1975 linux_ops->to_resume (linux_ops, ptid, step, signo);
9f0bdab8 1976 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
ebec9a0f 1977 lp->stopped_by_watchpoint = 0;
9f0bdab8 1978
d6b0e80f
AC
1979 if (debug_linux_nat)
1980 fprintf_unfiltered (gdb_stdlog,
1981 "LLR: %s %s, %s (resume event thread)\n",
1982 step ? "PTRACE_SINGLESTEP" : "PTRACE_CONT",
1983 target_pid_to_str (ptid),
423ec54c
JK
1984 (signo != TARGET_SIGNAL_0
1985 ? strsignal (target_signal_to_host (signo)) : "0"));
b84876c2 1986
7feb7d06 1987 restore_child_signals_mask (&prev_mask);
b84876c2 1988 if (target_can_async_p ())
8ea051c5 1989 target_async (inferior_event_handler, 0);
d6b0e80f
AC
1990}
1991
c5f62d5f 1992/* Send a signal to an LWP. */
d6b0e80f
AC
1993
1994static int
1995kill_lwp (int lwpid, int signo)
1996{
c5f62d5f
DE
1997 /* Use tkill, if possible, in case we are using nptl threads. If tkill
1998 fails, then we are not using nptl threads and we should be using kill. */
d6b0e80f
AC
1999
2000#ifdef HAVE_TKILL_SYSCALL
c5f62d5f
DE
2001 {
2002 static int tkill_failed;
2003
2004 if (!tkill_failed)
2005 {
2006 int ret;
2007
2008 errno = 0;
2009 ret = syscall (__NR_tkill, lwpid, signo);
2010 if (errno != ENOSYS)
2011 return ret;
2012 tkill_failed = 1;
2013 }
2014 }
d6b0e80f
AC
2015#endif
2016
2017 return kill (lwpid, signo);
2018}
2019
ca2163eb
PA
2020/* Handle a GNU/Linux syscall trap wait response. If we see a syscall
2021 event, check if the core is interested in it: if not, ignore the
2022 event, and keep waiting; otherwise, we need to toggle the LWP's
2023 syscall entry/exit status, since the ptrace event itself doesn't
2024 indicate it, and report the trap to higher layers. */
2025
2026static int
2027linux_handle_syscall_trap (struct lwp_info *lp, int stopping)
2028{
2029 struct target_waitstatus *ourstatus = &lp->waitstatus;
2030 struct gdbarch *gdbarch = target_thread_architecture (lp->ptid);
2031 int syscall_number = (int) gdbarch_get_syscall_number (gdbarch, lp->ptid);
2032
2033 if (stopping)
2034 {
2035 /* If we're stopping threads, there's a SIGSTOP pending, which
2036 makes it so that the LWP reports an immediate syscall return,
2037 followed by the SIGSTOP. Skip seeing that "return" using
2038 PTRACE_CONT directly, and let stop_wait_callback collect the
2039 SIGSTOP. Later when the thread is resumed, a new syscall
2040 entry event. If we didn't do this (and returned 0), we'd
2041 leave a syscall entry pending, and our caller, by using
2042 PTRACE_CONT to collect the SIGSTOP, skips the syscall return
2043 itself. Later, when the user re-resumes this LWP, we'd see
2044 another syscall entry event and we'd mistake it for a return.
2045
2046 If stop_wait_callback didn't force the SIGSTOP out of the LWP
2047 (leaving immediately with LWP->signalled set, without issuing
2048 a PTRACE_CONT), it would still be problematic to leave this
2049 syscall enter pending, as later when the thread is resumed,
2050 it would then see the same syscall exit mentioned above,
2051 followed by the delayed SIGSTOP, while the syscall didn't
2052 actually get to execute. It seems it would be even more
2053 confusing to the user. */
2054
2055 if (debug_linux_nat)
2056 fprintf_unfiltered (gdb_stdlog,
2057 "LHST: ignoring syscall %d "
2058 "for LWP %ld (stopping threads), "
2059 "resuming with PTRACE_CONT for SIGSTOP\n",
2060 syscall_number,
2061 GET_LWP (lp->ptid));
2062
2063 lp->syscall_state = TARGET_WAITKIND_IGNORE;
2064 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2065 return 1;
2066 }
2067
2068 if (catch_syscall_enabled ())
2069 {
2070 /* Always update the entry/return state, even if this particular
2071 syscall isn't interesting to the core now. In async mode,
2072 the user could install a new catchpoint for this syscall
2073 between syscall enter/return, and we'll need to know to
2074 report a syscall return if that happens. */
2075 lp->syscall_state = (lp->syscall_state == TARGET_WAITKIND_SYSCALL_ENTRY
2076 ? TARGET_WAITKIND_SYSCALL_RETURN
2077 : TARGET_WAITKIND_SYSCALL_ENTRY);
2078
2079 if (catching_syscall_number (syscall_number))
2080 {
2081 /* Alright, an event to report. */
2082 ourstatus->kind = lp->syscall_state;
2083 ourstatus->value.syscall_number = syscall_number;
2084
2085 if (debug_linux_nat)
2086 fprintf_unfiltered (gdb_stdlog,
2087 "LHST: stopping for %s of syscall %d"
2088 " for LWP %ld\n",
2089 lp->syscall_state == TARGET_WAITKIND_SYSCALL_ENTRY
2090 ? "entry" : "return",
2091 syscall_number,
2092 GET_LWP (lp->ptid));
2093 return 0;
2094 }
2095
2096 if (debug_linux_nat)
2097 fprintf_unfiltered (gdb_stdlog,
2098 "LHST: ignoring %s of syscall %d "
2099 "for LWP %ld\n",
2100 lp->syscall_state == TARGET_WAITKIND_SYSCALL_ENTRY
2101 ? "entry" : "return",
2102 syscall_number,
2103 GET_LWP (lp->ptid));
2104 }
2105 else
2106 {
2107 /* If we had been syscall tracing, and hence used PT_SYSCALL
2108 before on this LWP, it could happen that the user removes all
2109 syscall catchpoints before we get to process this event.
2110 There are two noteworthy issues here:
2111
2112 - When stopped at a syscall entry event, resuming with
2113 PT_STEP still resumes executing the syscall and reports a
2114 syscall return.
2115
2116 - Only PT_SYSCALL catches syscall enters. If we last
2117 single-stepped this thread, then this event can't be a
2118 syscall enter. If we last single-stepped this thread, this
2119 has to be a syscall exit.
2120
2121 The points above mean that the next resume, be it PT_STEP or
2122 PT_CONTINUE, can not trigger a syscall trace event. */
2123 if (debug_linux_nat)
2124 fprintf_unfiltered (gdb_stdlog,
2125 "LHST: caught syscall event with no syscall catchpoints."
2126 " %d for LWP %ld, ignoring\n",
2127 syscall_number,
2128 GET_LWP (lp->ptid));
2129 lp->syscall_state = TARGET_WAITKIND_IGNORE;
2130 }
2131
2132 /* The core isn't interested in this event. For efficiency, avoid
2133 stopping all threads only to have the core resume them all again.
2134 Since we're not stopping threads, if we're still syscall tracing
2135 and not stepping, we can't use PTRACE_CONT here, as we'd miss any
2136 subsequent syscall. Simply resume using the inf-ptrace layer,
2137 which knows when to use PT_SYSCALL or PT_CONTINUE. */
2138
2139 /* Note that gdbarch_get_syscall_number may access registers, hence
2140 fill a regcache. */
2141 registers_changed ();
2142 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
2143 lp->step, TARGET_SIGNAL_0);
2144 return 1;
2145}
2146
3d799a95
DJ
2147/* Handle a GNU/Linux extended wait response. If we see a clone
2148 event, we need to add the new LWP to our list (and not report the
2149 trap to higher layers). This function returns non-zero if the
2150 event should be ignored and we should wait again. If STOPPING is
2151 true, the new LWP remains stopped, otherwise it is continued. */
d6b0e80f
AC
2152
2153static int
3d799a95
DJ
2154linux_handle_extended_wait (struct lwp_info *lp, int status,
2155 int stopping)
d6b0e80f 2156{
3d799a95
DJ
2157 int pid = GET_LWP (lp->ptid);
2158 struct target_waitstatus *ourstatus = &lp->waitstatus;
3d799a95 2159 int event = status >> 16;
d6b0e80f 2160
3d799a95
DJ
2161 if (event == PTRACE_EVENT_FORK || event == PTRACE_EVENT_VFORK
2162 || event == PTRACE_EVENT_CLONE)
d6b0e80f 2163 {
3d799a95
DJ
2164 unsigned long new_pid;
2165 int ret;
2166
2167 ptrace (PTRACE_GETEVENTMSG, pid, 0, &new_pid);
6fc19103 2168
3d799a95
DJ
2169 /* If we haven't already seen the new PID stop, wait for it now. */
2170 if (! pull_pid_from_list (&stopped_pids, new_pid, &status))
2171 {
2172 /* The new child has a pending SIGSTOP. We can't affect it until it
2173 hits the SIGSTOP, but we're already attached. */
2174 ret = my_waitpid (new_pid, &status,
2175 (event == PTRACE_EVENT_CLONE) ? __WCLONE : 0);
2176 if (ret == -1)
2177 perror_with_name (_("waiting for new child"));
2178 else if (ret != new_pid)
2179 internal_error (__FILE__, __LINE__,
2180 _("wait returned unexpected PID %d"), ret);
2181 else if (!WIFSTOPPED (status))
2182 internal_error (__FILE__, __LINE__,
2183 _("wait returned unexpected status 0x%x"), status);
2184 }
2185
3a3e9ee3 2186 ourstatus->value.related_pid = ptid_build (new_pid, new_pid, 0);
3d799a95 2187
2277426b
PA
2188 if (event == PTRACE_EVENT_FORK
2189 && linux_fork_checkpointing_p (GET_PID (lp->ptid)))
2190 {
2191 struct fork_info *fp;
2192
2193 /* Handle checkpointing by linux-fork.c here as a special
2194 case. We don't want the follow-fork-mode or 'catch fork'
2195 to interfere with this. */
2196
2197 /* This won't actually modify the breakpoint list, but will
2198 physically remove the breakpoints from the child. */
2199 detach_breakpoints (new_pid);
2200
2201 /* Retain child fork in ptrace (stopped) state. */
2202 fp = find_fork_pid (new_pid);
2203 if (!fp)
2204 fp = add_fork (new_pid);
2205
2206 /* Report as spurious, so that infrun doesn't want to follow
2207 this fork. We're actually doing an infcall in
2208 linux-fork.c. */
2209 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
2210 linux_enable_event_reporting (pid_to_ptid (new_pid));
2211
2212 /* Report the stop to the core. */
2213 return 0;
2214 }
2215
3d799a95
DJ
2216 if (event == PTRACE_EVENT_FORK)
2217 ourstatus->kind = TARGET_WAITKIND_FORKED;
2218 else if (event == PTRACE_EVENT_VFORK)
2219 ourstatus->kind = TARGET_WAITKIND_VFORKED;
6fc19103 2220 else
3d799a95 2221 {
78768c4a
JK
2222 struct lwp_info *new_lp;
2223
3d799a95 2224 ourstatus->kind = TARGET_WAITKIND_IGNORE;
78768c4a 2225
d90e17a7 2226 new_lp = add_lwp (BUILD_LWP (new_pid, GET_PID (lp->ptid)));
3d799a95 2227 new_lp->cloned = 1;
4c28f408 2228 new_lp->stopped = 1;
d6b0e80f 2229
3d799a95
DJ
2230 if (WSTOPSIG (status) != SIGSTOP)
2231 {
2232 /* This can happen if someone starts sending signals to
2233 the new thread before it gets a chance to run, which
2234 have a lower number than SIGSTOP (e.g. SIGUSR1).
2235 This is an unlikely case, and harder to handle for
2236 fork / vfork than for clone, so we do not try - but
2237 we handle it for clone events here. We'll send
2238 the other signal on to the thread below. */
2239
2240 new_lp->signalled = 1;
2241 }
2242 else
2243 status = 0;
d6b0e80f 2244
4c28f408 2245 if (non_stop)
3d799a95 2246 {
4c28f408
PA
2247 /* Add the new thread to GDB's lists as soon as possible
2248 so that:
2249
2250 1) the frontend doesn't have to wait for a stop to
2251 display them, and,
2252
2253 2) we tag it with the correct running state. */
2254
2255 /* If the thread_db layer is active, let it know about
2256 this new thread, and add it to GDB's list. */
2257 if (!thread_db_attach_lwp (new_lp->ptid))
2258 {
2259 /* We're not using thread_db. Add it to GDB's
2260 list. */
2261 target_post_attach (GET_LWP (new_lp->ptid));
2262 add_thread (new_lp->ptid);
2263 }
2264
2265 if (!stopping)
2266 {
2267 set_running (new_lp->ptid, 1);
2268 set_executing (new_lp->ptid, 1);
2269 }
2270 }
2271
ca2163eb
PA
2272 /* Note the need to use the low target ops to resume, to
2273 handle resuming with PT_SYSCALL if we have syscall
2274 catchpoints. */
4c28f408
PA
2275 if (!stopping)
2276 {
423ec54c 2277 enum target_signal signo;
ca2163eb 2278
4c28f408 2279 new_lp->stopped = 0;
3d799a95 2280 new_lp->resumed = 1;
ca2163eb
PA
2281
2282 signo = (status
2283 ? target_signal_from_host (WSTOPSIG (status))
2284 : TARGET_SIGNAL_0);
2285
2286 linux_ops->to_resume (linux_ops, pid_to_ptid (new_pid),
2287 0, signo);
3d799a95 2288 }
ad34eb2f
JK
2289 else
2290 {
2291 if (status != 0)
2292 {
2293 /* We created NEW_LP so it cannot yet contain STATUS. */
2294 gdb_assert (new_lp->status == 0);
2295
2296 /* Save the wait status to report later. */
2297 if (debug_linux_nat)
2298 fprintf_unfiltered (gdb_stdlog,
2299 "LHEW: waitpid of new LWP %ld, "
2300 "saving status %s\n",
2301 (long) GET_LWP (new_lp->ptid),
2302 status_to_str (status));
2303 new_lp->status = status;
2304 }
2305 }
d6b0e80f 2306
3d799a95
DJ
2307 if (debug_linux_nat)
2308 fprintf_unfiltered (gdb_stdlog,
2309 "LHEW: Got clone event from LWP %ld, resuming\n",
2310 GET_LWP (lp->ptid));
ca2163eb
PA
2311 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
2312 0, TARGET_SIGNAL_0);
3d799a95
DJ
2313
2314 return 1;
2315 }
2316
2317 return 0;
d6b0e80f
AC
2318 }
2319
3d799a95
DJ
2320 if (event == PTRACE_EVENT_EXEC)
2321 {
a75724bc
PA
2322 if (debug_linux_nat)
2323 fprintf_unfiltered (gdb_stdlog,
2324 "LHEW: Got exec event from LWP %ld\n",
2325 GET_LWP (lp->ptid));
2326
3d799a95
DJ
2327 ourstatus->kind = TARGET_WAITKIND_EXECD;
2328 ourstatus->value.execd_pathname
6d8fd2b7 2329 = xstrdup (linux_child_pid_to_exec_file (pid));
3d799a95 2330
6c95b8df
PA
2331 return 0;
2332 }
2333
2334 if (event == PTRACE_EVENT_VFORK_DONE)
2335 {
2336 if (current_inferior ()->waiting_for_vfork_done)
3d799a95 2337 {
6c95b8df
PA
2338 if (debug_linux_nat)
2339 fprintf_unfiltered (gdb_stdlog, "\
2340LHEW: Got expected PTRACE_EVENT_VFORK_DONE from LWP %ld: stopping\n",
2341 GET_LWP (lp->ptid));
3d799a95 2342
6c95b8df
PA
2343 ourstatus->kind = TARGET_WAITKIND_VFORK_DONE;
2344 return 0;
3d799a95
DJ
2345 }
2346
6c95b8df
PA
2347 if (debug_linux_nat)
2348 fprintf_unfiltered (gdb_stdlog, "\
2349LHEW: Got PTRACE_EVENT_VFORK_DONE from LWP %ld: resuming\n",
2350 GET_LWP (lp->ptid));
2351 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2352 return 1;
3d799a95
DJ
2353 }
2354
2355 internal_error (__FILE__, __LINE__,
2356 _("unknown ptrace event %d"), event);
d6b0e80f
AC
2357}
2358
2359/* Wait for LP to stop. Returns the wait status, or 0 if the LWP has
2360 exited. */
2361
2362static int
2363wait_lwp (struct lwp_info *lp)
2364{
2365 pid_t pid;
2366 int status;
2367 int thread_dead = 0;
2368
2369 gdb_assert (!lp->stopped);
2370 gdb_assert (lp->status == 0);
2371
58aecb61 2372 pid = my_waitpid (GET_LWP (lp->ptid), &status, 0);
d6b0e80f
AC
2373 if (pid == -1 && errno == ECHILD)
2374 {
58aecb61 2375 pid = my_waitpid (GET_LWP (lp->ptid), &status, __WCLONE);
d6b0e80f
AC
2376 if (pid == -1 && errno == ECHILD)
2377 {
2378 /* The thread has previously exited. We need to delete it
2379 now because, for some vendor 2.4 kernels with NPTL
2380 support backported, there won't be an exit event unless
2381 it is the main thread. 2.6 kernels will report an exit
2382 event for each thread that exits, as expected. */
2383 thread_dead = 1;
2384 if (debug_linux_nat)
2385 fprintf_unfiltered (gdb_stdlog, "WL: %s vanished.\n",
2386 target_pid_to_str (lp->ptid));
2387 }
2388 }
2389
2390 if (!thread_dead)
2391 {
2392 gdb_assert (pid == GET_LWP (lp->ptid));
2393
2394 if (debug_linux_nat)
2395 {
2396 fprintf_unfiltered (gdb_stdlog,
2397 "WL: waitpid %s received %s\n",
2398 target_pid_to_str (lp->ptid),
2399 status_to_str (status));
2400 }
2401 }
2402
2403 /* Check if the thread has exited. */
2404 if (WIFEXITED (status) || WIFSIGNALED (status))
2405 {
2406 thread_dead = 1;
2407 if (debug_linux_nat)
2408 fprintf_unfiltered (gdb_stdlog, "WL: %s exited.\n",
2409 target_pid_to_str (lp->ptid));
2410 }
2411
2412 if (thread_dead)
2413 {
e26af52f 2414 exit_lwp (lp);
d6b0e80f
AC
2415 return 0;
2416 }
2417
2418 gdb_assert (WIFSTOPPED (status));
2419
ca2163eb
PA
2420 /* Handle GNU/Linux's syscall SIGTRAPs. */
2421 if (WIFSTOPPED (status) && WSTOPSIG (status) == SYSCALL_SIGTRAP)
2422 {
2423 /* No longer need the sysgood bit. The ptrace event ends up
2424 recorded in lp->waitstatus if we care for it. We can carry
2425 on handling the event like a regular SIGTRAP from here
2426 on. */
2427 status = W_STOPCODE (SIGTRAP);
2428 if (linux_handle_syscall_trap (lp, 1))
2429 return wait_lwp (lp);
2430 }
2431
d6b0e80f
AC
2432 /* Handle GNU/Linux's extended waitstatus for trace events. */
2433 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP && status >> 16 != 0)
2434 {
2435 if (debug_linux_nat)
2436 fprintf_unfiltered (gdb_stdlog,
2437 "WL: Handling extended status 0x%06x\n",
2438 status);
3d799a95 2439 if (linux_handle_extended_wait (lp, status, 1))
d6b0e80f
AC
2440 return wait_lwp (lp);
2441 }
2442
2443 return status;
2444}
2445
9f0bdab8
DJ
2446/* Save the most recent siginfo for LP. This is currently only called
2447 for SIGTRAP; some ports use the si_addr field for
2448 target_stopped_data_address. In the future, it may also be used to
2449 restore the siginfo of requeued signals. */
2450
2451static void
2452save_siginfo (struct lwp_info *lp)
2453{
2454 errno = 0;
2455 ptrace (PTRACE_GETSIGINFO, GET_LWP (lp->ptid),
2456 (PTRACE_TYPE_ARG3) 0, &lp->siginfo);
2457
2458 if (errno != 0)
2459 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
2460}
2461
d6b0e80f
AC
2462/* Send a SIGSTOP to LP. */
2463
2464static int
2465stop_callback (struct lwp_info *lp, void *data)
2466{
2467 if (!lp->stopped && !lp->signalled)
2468 {
2469 int ret;
2470
2471 if (debug_linux_nat)
2472 {
2473 fprintf_unfiltered (gdb_stdlog,
2474 "SC: kill %s **<SIGSTOP>**\n",
2475 target_pid_to_str (lp->ptid));
2476 }
2477 errno = 0;
2478 ret = kill_lwp (GET_LWP (lp->ptid), SIGSTOP);
2479 if (debug_linux_nat)
2480 {
2481 fprintf_unfiltered (gdb_stdlog,
2482 "SC: lwp kill %d %s\n",
2483 ret,
2484 errno ? safe_strerror (errno) : "ERRNO-OK");
2485 }
2486
2487 lp->signalled = 1;
2488 gdb_assert (lp->status == 0);
2489 }
2490
2491 return 0;
2492}
2493
57380f4e 2494/* Return non-zero if LWP PID has a pending SIGINT. */
d6b0e80f
AC
2495
2496static int
57380f4e
DJ
2497linux_nat_has_pending_sigint (int pid)
2498{
2499 sigset_t pending, blocked, ignored;
57380f4e
DJ
2500
2501 linux_proc_pending_signals (pid, &pending, &blocked, &ignored);
2502
2503 if (sigismember (&pending, SIGINT)
2504 && !sigismember (&ignored, SIGINT))
2505 return 1;
2506
2507 return 0;
2508}
2509
2510/* Set a flag in LP indicating that we should ignore its next SIGINT. */
2511
2512static int
2513set_ignore_sigint (struct lwp_info *lp, void *data)
d6b0e80f 2514{
57380f4e
DJ
2515 /* If a thread has a pending SIGINT, consume it; otherwise, set a
2516 flag to consume the next one. */
2517 if (lp->stopped && lp->status != 0 && WIFSTOPPED (lp->status)
2518 && WSTOPSIG (lp->status) == SIGINT)
2519 lp->status = 0;
2520 else
2521 lp->ignore_sigint = 1;
2522
2523 return 0;
2524}
2525
2526/* If LP does not have a SIGINT pending, then clear the ignore_sigint flag.
2527 This function is called after we know the LWP has stopped; if the LWP
2528 stopped before the expected SIGINT was delivered, then it will never have
2529 arrived. Also, if the signal was delivered to a shared queue and consumed
2530 by a different thread, it will never be delivered to this LWP. */
d6b0e80f 2531
57380f4e
DJ
2532static void
2533maybe_clear_ignore_sigint (struct lwp_info *lp)
2534{
2535 if (!lp->ignore_sigint)
2536 return;
2537
2538 if (!linux_nat_has_pending_sigint (GET_LWP (lp->ptid)))
2539 {
2540 if (debug_linux_nat)
2541 fprintf_unfiltered (gdb_stdlog,
2542 "MCIS: Clearing bogus flag for %s\n",
2543 target_pid_to_str (lp->ptid));
2544 lp->ignore_sigint = 0;
2545 }
2546}
2547
ebec9a0f
PA
2548/* Fetch the possible triggered data watchpoint info and store it in
2549 LP.
2550
2551 On some archs, like x86, that use debug registers to set
2552 watchpoints, it's possible that the way to know which watched
2553 address trapped, is to check the register that is used to select
2554 which address to watch. Problem is, between setting the watchpoint
2555 and reading back which data address trapped, the user may change
2556 the set of watchpoints, and, as a consequence, GDB changes the
2557 debug registers in the inferior. To avoid reading back a stale
2558 stopped-data-address when that happens, we cache in LP the fact
2559 that a watchpoint trapped, and the corresponding data address, as
2560 soon as we see LP stop with a SIGTRAP. If GDB changes the debug
2561 registers meanwhile, we have the cached data we can rely on. */
2562
2563static void
2564save_sigtrap (struct lwp_info *lp)
2565{
2566 struct cleanup *old_chain;
2567
2568 if (linux_ops->to_stopped_by_watchpoint == NULL)
2569 {
2570 lp->stopped_by_watchpoint = 0;
2571 return;
2572 }
2573
2574 old_chain = save_inferior_ptid ();
2575 inferior_ptid = lp->ptid;
2576
2577 lp->stopped_by_watchpoint = linux_ops->to_stopped_by_watchpoint ();
2578
2579 if (lp->stopped_by_watchpoint)
2580 {
2581 if (linux_ops->to_stopped_data_address != NULL)
2582 lp->stopped_data_address_p =
2583 linux_ops->to_stopped_data_address (&current_target,
2584 &lp->stopped_data_address);
2585 else
2586 lp->stopped_data_address_p = 0;
2587 }
2588
2589 do_cleanups (old_chain);
2590}
2591
2592/* See save_sigtrap. */
2593
2594static int
2595linux_nat_stopped_by_watchpoint (void)
2596{
2597 struct lwp_info *lp = find_lwp_pid (inferior_ptid);
2598
2599 gdb_assert (lp != NULL);
2600
2601 return lp->stopped_by_watchpoint;
2602}
2603
2604static int
2605linux_nat_stopped_data_address (struct target_ops *ops, CORE_ADDR *addr_p)
2606{
2607 struct lwp_info *lp = find_lwp_pid (inferior_ptid);
2608
2609 gdb_assert (lp != NULL);
2610
2611 *addr_p = lp->stopped_data_address;
2612
2613 return lp->stopped_data_address_p;
2614}
2615
26ab7092
JK
2616/* Commonly any breakpoint / watchpoint generate only SIGTRAP. */
2617
2618static int
2619sigtrap_is_event (int status)
2620{
2621 return WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP;
2622}
2623
2624/* SIGTRAP-like events recognizer. */
2625
2626static int (*linux_nat_status_is_event) (int status) = sigtrap_is_event;
2627
00390b84
JK
2628/* Check for SIGTRAP-like events in LP. */
2629
2630static int
2631linux_nat_lp_status_is_event (struct lwp_info *lp)
2632{
2633 /* We check for lp->waitstatus in addition to lp->status, because we can
2634 have pending process exits recorded in lp->status
2635 and W_EXITCODE(0,0) == 0. We should probably have an additional
2636 lp->status_p flag. */
2637
2638 return (lp->waitstatus.kind == TARGET_WAITKIND_IGNORE
2639 && linux_nat_status_is_event (lp->status));
2640}
2641
26ab7092
JK
2642/* Set alternative SIGTRAP-like events recognizer. If
2643 breakpoint_inserted_here_p there then gdbarch_decr_pc_after_break will be
2644 applied. */
2645
2646void
2647linux_nat_set_status_is_event (struct target_ops *t,
2648 int (*status_is_event) (int status))
2649{
2650 linux_nat_status_is_event = status_is_event;
2651}
2652
57380f4e
DJ
2653/* Wait until LP is stopped. */
2654
2655static int
2656stop_wait_callback (struct lwp_info *lp, void *data)
2657{
6c95b8df
PA
2658 struct inferior *inf = find_inferior_pid (GET_PID (lp->ptid));
2659
2660 /* If this is a vfork parent, bail out, it is not going to report
2661 any SIGSTOP until the vfork is done with. */
2662 if (inf->vfork_child != NULL)
2663 return 0;
2664
d6b0e80f
AC
2665 if (!lp->stopped)
2666 {
2667 int status;
2668
2669 status = wait_lwp (lp);
2670 if (status == 0)
2671 return 0;
2672
57380f4e
DJ
2673 if (lp->ignore_sigint && WIFSTOPPED (status)
2674 && WSTOPSIG (status) == SIGINT)
d6b0e80f 2675 {
57380f4e 2676 lp->ignore_sigint = 0;
d6b0e80f
AC
2677
2678 errno = 0;
2679 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2680 if (debug_linux_nat)
2681 fprintf_unfiltered (gdb_stdlog,
57380f4e 2682 "PTRACE_CONT %s, 0, 0 (%s) (discarding SIGINT)\n",
d6b0e80f
AC
2683 target_pid_to_str (lp->ptid),
2684 errno ? safe_strerror (errno) : "OK");
2685
57380f4e 2686 return stop_wait_callback (lp, NULL);
d6b0e80f
AC
2687 }
2688
57380f4e
DJ
2689 maybe_clear_ignore_sigint (lp);
2690
d6b0e80f
AC
2691 if (WSTOPSIG (status) != SIGSTOP)
2692 {
26ab7092 2693 if (linux_nat_status_is_event (status))
d6b0e80f
AC
2694 {
2695 /* If a LWP other than the LWP that we're reporting an
2696 event for has hit a GDB breakpoint (as opposed to
2697 some random trap signal), then just arrange for it to
2698 hit it again later. We don't keep the SIGTRAP status
2699 and don't forward the SIGTRAP signal to the LWP. We
2700 will handle the current event, eventually we will
2701 resume all LWPs, and this one will get its breakpoint
2702 trap again.
2703
2704 If we do not do this, then we run the risk that the
2705 user will delete or disable the breakpoint, but the
2706 thread will have already tripped on it. */
2707
9f0bdab8
DJ
2708 /* Save the trap's siginfo in case we need it later. */
2709 save_siginfo (lp);
2710
ebec9a0f
PA
2711 save_sigtrap (lp);
2712
d6b0e80f
AC
2713 /* Now resume this LWP and get the SIGSTOP event. */
2714 errno = 0;
2715 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2716 if (debug_linux_nat)
2717 {
2718 fprintf_unfiltered (gdb_stdlog,
2719 "PTRACE_CONT %s, 0, 0 (%s)\n",
2720 target_pid_to_str (lp->ptid),
2721 errno ? safe_strerror (errno) : "OK");
2722
2723 fprintf_unfiltered (gdb_stdlog,
2724 "SWC: Candidate SIGTRAP event in %s\n",
2725 target_pid_to_str (lp->ptid));
2726 }
710151dd
PA
2727 /* Hold this event/waitstatus while we check to see if
2728 there are any more (we still want to get that SIGSTOP). */
57380f4e 2729 stop_wait_callback (lp, NULL);
710151dd 2730
7feb7d06
PA
2731 /* Hold the SIGTRAP for handling by linux_nat_wait. If
2732 there's another event, throw it back into the
2733 queue. */
2734 if (lp->status)
710151dd 2735 {
7feb7d06
PA
2736 if (debug_linux_nat)
2737 fprintf_unfiltered (gdb_stdlog,
2738 "SWC: kill %s, %s\n",
2739 target_pid_to_str (lp->ptid),
2740 status_to_str ((int) status));
2741 kill_lwp (GET_LWP (lp->ptid), WSTOPSIG (lp->status));
d6b0e80f 2742 }
7feb7d06
PA
2743
2744 /* Save the sigtrap event. */
2745 lp->status = status;
d6b0e80f
AC
2746 return 0;
2747 }
2748 else
2749 {
2750 /* The thread was stopped with a signal other than
2751 SIGSTOP, and didn't accidentally trip a breakpoint. */
2752
2753 if (debug_linux_nat)
2754 {
2755 fprintf_unfiltered (gdb_stdlog,
2756 "SWC: Pending event %s in %s\n",
2757 status_to_str ((int) status),
2758 target_pid_to_str (lp->ptid));
2759 }
2760 /* Now resume this LWP and get the SIGSTOP event. */
2761 errno = 0;
2762 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2763 if (debug_linux_nat)
2764 fprintf_unfiltered (gdb_stdlog,
2765 "SWC: PTRACE_CONT %s, 0, 0 (%s)\n",
2766 target_pid_to_str (lp->ptid),
2767 errno ? safe_strerror (errno) : "OK");
2768
2769 /* Hold this event/waitstatus while we check to see if
2770 there are any more (we still want to get that SIGSTOP). */
57380f4e 2771 stop_wait_callback (lp, NULL);
710151dd
PA
2772
2773 /* If the lp->status field is still empty, use it to
2774 hold this event. If not, then this event must be
2775 returned to the event queue of the LWP. */
7feb7d06 2776 if (lp->status)
d6b0e80f
AC
2777 {
2778 if (debug_linux_nat)
2779 {
2780 fprintf_unfiltered (gdb_stdlog,
2781 "SWC: kill %s, %s\n",
2782 target_pid_to_str (lp->ptid),
2783 status_to_str ((int) status));
2784 }
2785 kill_lwp (GET_LWP (lp->ptid), WSTOPSIG (status));
2786 }
710151dd
PA
2787 else
2788 lp->status = status;
d6b0e80f
AC
2789 return 0;
2790 }
2791 }
2792 else
2793 {
2794 /* We caught the SIGSTOP that we intended to catch, so
2795 there's no SIGSTOP pending. */
2796 lp->stopped = 1;
2797 lp->signalled = 0;
2798 }
2799 }
2800
2801 return 0;
2802}
2803
d6b0e80f
AC
2804/* Return non-zero if LP has a wait status pending. */
2805
2806static int
2807status_callback (struct lwp_info *lp, void *data)
2808{
2809 /* Only report a pending wait status if we pretend that this has
2810 indeed been resumed. */
ca2163eb
PA
2811 if (!lp->resumed)
2812 return 0;
2813
2814 if (lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
2815 {
2816 /* A ptrace event, like PTRACE_FORK|VFORK|EXEC, syscall event,
2817 or a a pending process exit. Note that `W_EXITCODE(0,0) ==
2818 0', so a clean process exit can not be stored pending in
2819 lp->status, it is indistinguishable from
2820 no-pending-status. */
2821 return 1;
2822 }
2823
2824 if (lp->status != 0)
2825 return 1;
2826
2827 return 0;
d6b0e80f
AC
2828}
2829
2830/* Return non-zero if LP isn't stopped. */
2831
2832static int
2833running_callback (struct lwp_info *lp, void *data)
2834{
2835 return (lp->stopped == 0 || (lp->status != 0 && lp->resumed));
2836}
2837
2838/* Count the LWP's that have had events. */
2839
2840static int
2841count_events_callback (struct lwp_info *lp, void *data)
2842{
2843 int *count = data;
2844
2845 gdb_assert (count != NULL);
2846
e09490f1 2847 /* Count only resumed LWPs that have a SIGTRAP event pending. */
00390b84 2848 if (lp->resumed && linux_nat_lp_status_is_event (lp))
d6b0e80f
AC
2849 (*count)++;
2850
2851 return 0;
2852}
2853
2854/* Select the LWP (if any) that is currently being single-stepped. */
2855
2856static int
2857select_singlestep_lwp_callback (struct lwp_info *lp, void *data)
2858{
2859 if (lp->step && lp->status != 0)
2860 return 1;
2861 else
2862 return 0;
2863}
2864
2865/* Select the Nth LWP that has had a SIGTRAP event. */
2866
2867static int
2868select_event_lwp_callback (struct lwp_info *lp, void *data)
2869{
2870 int *selector = data;
2871
2872 gdb_assert (selector != NULL);
2873
e09490f1 2874 /* Select only resumed LWPs that have a SIGTRAP event pending. */
00390b84 2875 if (lp->resumed && linux_nat_lp_status_is_event (lp))
d6b0e80f
AC
2876 if ((*selector)-- == 0)
2877 return 1;
2878
2879 return 0;
2880}
2881
710151dd
PA
2882static int
2883cancel_breakpoint (struct lwp_info *lp)
2884{
2885 /* Arrange for a breakpoint to be hit again later. We don't keep
2886 the SIGTRAP status and don't forward the SIGTRAP signal to the
2887 LWP. We will handle the current event, eventually we will resume
2888 this LWP, and this breakpoint will trap again.
2889
2890 If we do not do this, then we run the risk that the user will
2891 delete or disable the breakpoint, but the LWP will have already
2892 tripped on it. */
2893
515630c5
UW
2894 struct regcache *regcache = get_thread_regcache (lp->ptid);
2895 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2896 CORE_ADDR pc;
2897
2898 pc = regcache_read_pc (regcache) - gdbarch_decr_pc_after_break (gdbarch);
6c95b8df 2899 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache), pc))
710151dd
PA
2900 {
2901 if (debug_linux_nat)
2902 fprintf_unfiltered (gdb_stdlog,
2903 "CB: Push back breakpoint for %s\n",
2904 target_pid_to_str (lp->ptid));
2905
2906 /* Back up the PC if necessary. */
515630c5
UW
2907 if (gdbarch_decr_pc_after_break (gdbarch))
2908 regcache_write_pc (regcache, pc);
2909
710151dd
PA
2910 return 1;
2911 }
2912 return 0;
2913}
2914
d6b0e80f
AC
2915static int
2916cancel_breakpoints_callback (struct lwp_info *lp, void *data)
2917{
2918 struct lwp_info *event_lp = data;
2919
2920 /* Leave the LWP that has been elected to receive a SIGTRAP alone. */
2921 if (lp == event_lp)
2922 return 0;
2923
2924 /* If a LWP other than the LWP that we're reporting an event for has
2925 hit a GDB breakpoint (as opposed to some random trap signal),
2926 then just arrange for it to hit it again later. We don't keep
2927 the SIGTRAP status and don't forward the SIGTRAP signal to the
2928 LWP. We will handle the current event, eventually we will resume
2929 all LWPs, and this one will get its breakpoint trap again.
2930
2931 If we do not do this, then we run the risk that the user will
2932 delete or disable the breakpoint, but the LWP will have already
2933 tripped on it. */
2934
00390b84 2935 if (linux_nat_lp_status_is_event (lp)
710151dd
PA
2936 && cancel_breakpoint (lp))
2937 /* Throw away the SIGTRAP. */
2938 lp->status = 0;
d6b0e80f
AC
2939
2940 return 0;
2941}
2942
2943/* Select one LWP out of those that have events pending. */
2944
2945static void
d90e17a7 2946select_event_lwp (ptid_t filter, struct lwp_info **orig_lp, int *status)
d6b0e80f
AC
2947{
2948 int num_events = 0;
2949 int random_selector;
2950 struct lwp_info *event_lp;
2951
ac264b3b 2952 /* Record the wait status for the original LWP. */
d6b0e80f
AC
2953 (*orig_lp)->status = *status;
2954
2955 /* Give preference to any LWP that is being single-stepped. */
d90e17a7
PA
2956 event_lp = iterate_over_lwps (filter,
2957 select_singlestep_lwp_callback, NULL);
d6b0e80f
AC
2958 if (event_lp != NULL)
2959 {
2960 if (debug_linux_nat)
2961 fprintf_unfiltered (gdb_stdlog,
2962 "SEL: Select single-step %s\n",
2963 target_pid_to_str (event_lp->ptid));
2964 }
2965 else
2966 {
2967 /* No single-stepping LWP. Select one at random, out of those
2968 which have had SIGTRAP events. */
2969
2970 /* First see how many SIGTRAP events we have. */
d90e17a7 2971 iterate_over_lwps (filter, count_events_callback, &num_events);
d6b0e80f
AC
2972
2973 /* Now randomly pick a LWP out of those that have had a SIGTRAP. */
2974 random_selector = (int)
2975 ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
2976
2977 if (debug_linux_nat && num_events > 1)
2978 fprintf_unfiltered (gdb_stdlog,
2979 "SEL: Found %d SIGTRAP events, selecting #%d\n",
2980 num_events, random_selector);
2981
d90e17a7
PA
2982 event_lp = iterate_over_lwps (filter,
2983 select_event_lwp_callback,
d6b0e80f
AC
2984 &random_selector);
2985 }
2986
2987 if (event_lp != NULL)
2988 {
2989 /* Switch the event LWP. */
2990 *orig_lp = event_lp;
2991 *status = event_lp->status;
2992 }
2993
2994 /* Flush the wait status for the event LWP. */
2995 (*orig_lp)->status = 0;
2996}
2997
2998/* Return non-zero if LP has been resumed. */
2999
3000static int
3001resumed_callback (struct lwp_info *lp, void *data)
3002{
3003 return lp->resumed;
3004}
3005
d6b0e80f
AC
3006/* Stop an active thread, verify it still exists, then resume it. */
3007
3008static int
3009stop_and_resume_callback (struct lwp_info *lp, void *data)
3010{
3011 struct lwp_info *ptr;
3012
3013 if (!lp->stopped && !lp->signalled)
3014 {
3015 stop_callback (lp, NULL);
3016 stop_wait_callback (lp, NULL);
3017 /* Resume if the lwp still exists. */
3018 for (ptr = lwp_list; ptr; ptr = ptr->next)
3019 if (lp == ptr)
3020 {
3021 resume_callback (lp, NULL);
3022 resume_set_callback (lp, NULL);
3023 }
3024 }
3025 return 0;
3026}
3027
02f3fc28 3028/* Check if we should go on and pass this event to common code.
fa2c6a57 3029 Return the affected lwp if we are, or NULL otherwise. */
02f3fc28
PA
3030static struct lwp_info *
3031linux_nat_filter_event (int lwpid, int status, int options)
3032{
3033 struct lwp_info *lp;
3034
3035 lp = find_lwp_pid (pid_to_ptid (lwpid));
3036
3037 /* Check for stop events reported by a process we didn't already
3038 know about - anything not already in our LWP list.
3039
3040 If we're expecting to receive stopped processes after
3041 fork, vfork, and clone events, then we'll just add the
3042 new one to our list and go back to waiting for the event
3043 to be reported - the stopped process might be returned
3044 from waitpid before or after the event is. */
3045 if (WIFSTOPPED (status) && !lp)
3046 {
3047 linux_record_stopped_pid (lwpid, status);
3048 return NULL;
3049 }
3050
3051 /* Make sure we don't report an event for the exit of an LWP not in
3052 our list, i.e. not part of the current process. This can happen
3053 if we detach from a program we original forked and then it
3054 exits. */
3055 if (!WIFSTOPPED (status) && !lp)
3056 return NULL;
3057
3058 /* NOTE drow/2003-06-17: This code seems to be meant for debugging
3059 CLONE_PTRACE processes which do not use the thread library -
3060 otherwise we wouldn't find the new LWP this way. That doesn't
3061 currently work, and the following code is currently unreachable
3062 due to the two blocks above. If it's fixed some day, this code
3063 should be broken out into a function so that we can also pick up
3064 LWPs from the new interface. */
3065 if (!lp)
3066 {
3067 lp = add_lwp (BUILD_LWP (lwpid, GET_PID (inferior_ptid)));
3068 if (options & __WCLONE)
3069 lp->cloned = 1;
3070
3071 gdb_assert (WIFSTOPPED (status)
3072 && WSTOPSIG (status) == SIGSTOP);
3073 lp->signalled = 1;
3074
3075 if (!in_thread_list (inferior_ptid))
3076 {
3077 inferior_ptid = BUILD_LWP (GET_PID (inferior_ptid),
3078 GET_PID (inferior_ptid));
3079 add_thread (inferior_ptid);
3080 }
3081
3082 add_thread (lp->ptid);
3083 }
3084
ca2163eb
PA
3085 /* Handle GNU/Linux's syscall SIGTRAPs. */
3086 if (WIFSTOPPED (status) && WSTOPSIG (status) == SYSCALL_SIGTRAP)
3087 {
3088 /* No longer need the sysgood bit. The ptrace event ends up
3089 recorded in lp->waitstatus if we care for it. We can carry
3090 on handling the event like a regular SIGTRAP from here
3091 on. */
3092 status = W_STOPCODE (SIGTRAP);
3093 if (linux_handle_syscall_trap (lp, 0))
3094 return NULL;
3095 }
02f3fc28 3096
ca2163eb
PA
3097 /* Handle GNU/Linux's extended waitstatus for trace events. */
3098 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP && status >> 16 != 0)
02f3fc28
PA
3099 {
3100 if (debug_linux_nat)
3101 fprintf_unfiltered (gdb_stdlog,
3102 "LLW: Handling extended status 0x%06x\n",
3103 status);
3104 if (linux_handle_extended_wait (lp, status, 0))
3105 return NULL;
3106 }
3107
26ab7092 3108 if (linux_nat_status_is_event (status))
ebec9a0f
PA
3109 {
3110 /* Save the trap's siginfo in case we need it later. */
3111 save_siginfo (lp);
3112
3113 save_sigtrap (lp);
3114 }
ca2163eb 3115
02f3fc28 3116 /* Check if the thread has exited. */
d90e17a7
PA
3117 if ((WIFEXITED (status) || WIFSIGNALED (status))
3118 && num_lwps (GET_PID (lp->ptid)) > 1)
02f3fc28 3119 {
9db03742
JB
3120 /* If this is the main thread, we must stop all threads and verify
3121 if they are still alive. This is because in the nptl thread model
3122 on Linux 2.4, there is no signal issued for exiting LWPs
02f3fc28
PA
3123 other than the main thread. We only get the main thread exit
3124 signal once all child threads have already exited. If we
3125 stop all the threads and use the stop_wait_callback to check
3126 if they have exited we can determine whether this signal
3127 should be ignored or whether it means the end of the debugged
3128 application, regardless of which threading model is being
5d3b6af6 3129 used. */
02f3fc28
PA
3130 if (GET_PID (lp->ptid) == GET_LWP (lp->ptid))
3131 {
3132 lp->stopped = 1;
d90e17a7
PA
3133 iterate_over_lwps (pid_to_ptid (GET_PID (lp->ptid)),
3134 stop_and_resume_callback, NULL);
02f3fc28
PA
3135 }
3136
3137 if (debug_linux_nat)
3138 fprintf_unfiltered (gdb_stdlog,
3139 "LLW: %s exited.\n",
3140 target_pid_to_str (lp->ptid));
3141
d90e17a7 3142 if (num_lwps (GET_PID (lp->ptid)) > 1)
9db03742
JB
3143 {
3144 /* If there is at least one more LWP, then the exit signal
3145 was not the end of the debugged application and should be
3146 ignored. */
3147 exit_lwp (lp);
3148 return NULL;
3149 }
02f3fc28
PA
3150 }
3151
3152 /* Check if the current LWP has previously exited. In the nptl
3153 thread model, LWPs other than the main thread do not issue
3154 signals when they exit so we must check whenever the thread has
3155 stopped. A similar check is made in stop_wait_callback(). */
d90e17a7 3156 if (num_lwps (GET_PID (lp->ptid)) > 1 && !linux_thread_alive (lp->ptid))
02f3fc28 3157 {
d90e17a7
PA
3158 ptid_t ptid = pid_to_ptid (GET_PID (lp->ptid));
3159
02f3fc28
PA
3160 if (debug_linux_nat)
3161 fprintf_unfiltered (gdb_stdlog,
3162 "LLW: %s exited.\n",
3163 target_pid_to_str (lp->ptid));
3164
3165 exit_lwp (lp);
3166
3167 /* Make sure there is at least one thread running. */
d90e17a7 3168 gdb_assert (iterate_over_lwps (ptid, running_callback, NULL));
02f3fc28
PA
3169
3170 /* Discard the event. */
3171 return NULL;
3172 }
3173
3174 /* Make sure we don't report a SIGSTOP that we sent ourselves in
3175 an attempt to stop an LWP. */
3176 if (lp->signalled
3177 && WIFSTOPPED (status) && WSTOPSIG (status) == SIGSTOP)
3178 {
3179 if (debug_linux_nat)
3180 fprintf_unfiltered (gdb_stdlog,
3181 "LLW: Delayed SIGSTOP caught for %s.\n",
3182 target_pid_to_str (lp->ptid));
3183
3184 /* This is a delayed SIGSTOP. */
3185 lp->signalled = 0;
3186
3187 registers_changed ();
3188
28439f5e 3189 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
02f3fc28
PA
3190 lp->step, TARGET_SIGNAL_0);
3191 if (debug_linux_nat)
3192 fprintf_unfiltered (gdb_stdlog,
3193 "LLW: %s %s, 0, 0 (discard SIGSTOP)\n",
3194 lp->step ?
3195 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3196 target_pid_to_str (lp->ptid));
3197
3198 lp->stopped = 0;
3199 gdb_assert (lp->resumed);
3200
3201 /* Discard the event. */
3202 return NULL;
3203 }
3204
57380f4e
DJ
3205 /* Make sure we don't report a SIGINT that we have already displayed
3206 for another thread. */
3207 if (lp->ignore_sigint
3208 && WIFSTOPPED (status) && WSTOPSIG (status) == SIGINT)
3209 {
3210 if (debug_linux_nat)
3211 fprintf_unfiltered (gdb_stdlog,
3212 "LLW: Delayed SIGINT caught for %s.\n",
3213 target_pid_to_str (lp->ptid));
3214
3215 /* This is a delayed SIGINT. */
3216 lp->ignore_sigint = 0;
3217
3218 registers_changed ();
28439f5e 3219 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
57380f4e
DJ
3220 lp->step, TARGET_SIGNAL_0);
3221 if (debug_linux_nat)
3222 fprintf_unfiltered (gdb_stdlog,
3223 "LLW: %s %s, 0, 0 (discard SIGINT)\n",
3224 lp->step ?
3225 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3226 target_pid_to_str (lp->ptid));
3227
3228 lp->stopped = 0;
3229 gdb_assert (lp->resumed);
3230
3231 /* Discard the event. */
3232 return NULL;
3233 }
3234
02f3fc28
PA
3235 /* An interesting event. */
3236 gdb_assert (lp);
ca2163eb 3237 lp->status = status;
02f3fc28
PA
3238 return lp;
3239}
3240
d6b0e80f 3241static ptid_t
7feb7d06 3242linux_nat_wait_1 (struct target_ops *ops,
47608cb1
PA
3243 ptid_t ptid, struct target_waitstatus *ourstatus,
3244 int target_options)
d6b0e80f 3245{
7feb7d06 3246 static sigset_t prev_mask;
d6b0e80f
AC
3247 struct lwp_info *lp = NULL;
3248 int options = 0;
3249 int status = 0;
d90e17a7 3250 pid_t pid;
d6b0e80f 3251
b84876c2
PA
3252 if (debug_linux_nat_async)
3253 fprintf_unfiltered (gdb_stdlog, "LLW: enter\n");
3254
f973ed9c
DJ
3255 /* The first time we get here after starting a new inferior, we may
3256 not have added it to the LWP list yet - this is the earliest
3257 moment at which we know its PID. */
d90e17a7 3258 if (ptid_is_pid (inferior_ptid))
f973ed9c 3259 {
27c9d204
PA
3260 /* Upgrade the main thread's ptid. */
3261 thread_change_ptid (inferior_ptid,
3262 BUILD_LWP (GET_PID (inferior_ptid),
3263 GET_PID (inferior_ptid)));
3264
f973ed9c
DJ
3265 lp = add_lwp (inferior_ptid);
3266 lp->resumed = 1;
3267 }
3268
7feb7d06
PA
3269 /* Make sure SIGCHLD is blocked. */
3270 block_child_signals (&prev_mask);
d6b0e80f 3271
d90e17a7
PA
3272 if (ptid_equal (ptid, minus_one_ptid))
3273 pid = -1;
3274 else if (ptid_is_pid (ptid))
3275 /* A request to wait for a specific tgid. This is not possible
3276 with waitpid, so instead, we wait for any child, and leave
3277 children we're not interested in right now with a pending
3278 status to report later. */
3279 pid = -1;
3280 else
3281 pid = GET_LWP (ptid);
3282
d6b0e80f 3283retry:
d90e17a7
PA
3284 lp = NULL;
3285 status = 0;
d6b0e80f 3286
e3e9f5a2
PA
3287 /* Make sure that of those LWPs we want to get an event from, there
3288 is at least one LWP that has been resumed. If there's none, just
3289 bail out. The core may just be flushing asynchronously all
3290 events. */
3291 if (iterate_over_lwps (ptid, resumed_callback, NULL) == NULL)
3292 {
3293 ourstatus->kind = TARGET_WAITKIND_IGNORE;
3294
3295 if (debug_linux_nat_async)
3296 fprintf_unfiltered (gdb_stdlog, "LLW: exit (no resumed LWP)\n");
3297
3298 restore_child_signals_mask (&prev_mask);
3299 return minus_one_ptid;
3300 }
d6b0e80f
AC
3301
3302 /* First check if there is a LWP with a wait status pending. */
3303 if (pid == -1)
3304 {
3305 /* Any LWP that's been resumed will do. */
d90e17a7 3306 lp = iterate_over_lwps (ptid, status_callback, NULL);
d6b0e80f
AC
3307 if (lp)
3308 {
ca2163eb 3309 if (debug_linux_nat && lp->status)
d6b0e80f
AC
3310 fprintf_unfiltered (gdb_stdlog,
3311 "LLW: Using pending wait status %s for %s.\n",
ca2163eb 3312 status_to_str (lp->status),
d6b0e80f
AC
3313 target_pid_to_str (lp->ptid));
3314 }
3315
b84876c2 3316 /* But if we don't find one, we'll have to wait, and check both
7feb7d06
PA
3317 cloned and uncloned processes. We start with the cloned
3318 processes. */
d6b0e80f
AC
3319 options = __WCLONE | WNOHANG;
3320 }
3321 else if (is_lwp (ptid))
3322 {
3323 if (debug_linux_nat)
3324 fprintf_unfiltered (gdb_stdlog,
3325 "LLW: Waiting for specific LWP %s.\n",
3326 target_pid_to_str (ptid));
3327
3328 /* We have a specific LWP to check. */
3329 lp = find_lwp_pid (ptid);
3330 gdb_assert (lp);
d6b0e80f 3331
ca2163eb 3332 if (debug_linux_nat && lp->status)
d6b0e80f
AC
3333 fprintf_unfiltered (gdb_stdlog,
3334 "LLW: Using pending wait status %s for %s.\n",
ca2163eb 3335 status_to_str (lp->status),
d6b0e80f
AC
3336 target_pid_to_str (lp->ptid));
3337
3338 /* If we have to wait, take into account whether PID is a cloned
3339 process or not. And we have to convert it to something that
3340 the layer beneath us can understand. */
3341 options = lp->cloned ? __WCLONE : 0;
3342 pid = GET_LWP (ptid);
d90e17a7
PA
3343
3344 /* We check for lp->waitstatus in addition to lp->status,
3345 because we can have pending process exits recorded in
3346 lp->status and W_EXITCODE(0,0) == 0. We should probably have
3347 an additional lp->status_p flag. */
ca2163eb 3348 if (lp->status == 0 && lp->waitstatus.kind == TARGET_WAITKIND_IGNORE)
d90e17a7 3349 lp = NULL;
d6b0e80f
AC
3350 }
3351
d90e17a7 3352 if (lp && lp->signalled)
d6b0e80f
AC
3353 {
3354 /* A pending SIGSTOP may interfere with the normal stream of
3355 events. In a typical case where interference is a problem,
3356 we have a SIGSTOP signal pending for LWP A while
3357 single-stepping it, encounter an event in LWP B, and take the
3358 pending SIGSTOP while trying to stop LWP A. After processing
3359 the event in LWP B, LWP A is continued, and we'll never see
3360 the SIGTRAP associated with the last time we were
3361 single-stepping LWP A. */
3362
3363 /* Resume the thread. It should halt immediately returning the
3364 pending SIGSTOP. */
3365 registers_changed ();
28439f5e 3366 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
10d6c8cd 3367 lp->step, TARGET_SIGNAL_0);
d6b0e80f
AC
3368 if (debug_linux_nat)
3369 fprintf_unfiltered (gdb_stdlog,
3370 "LLW: %s %s, 0, 0 (expect SIGSTOP)\n",
3371 lp->step ? "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3372 target_pid_to_str (lp->ptid));
3373 lp->stopped = 0;
3374 gdb_assert (lp->resumed);
3375
ca2163eb
PA
3376 /* Catch the pending SIGSTOP. */
3377 status = lp->status;
3378 lp->status = 0;
3379
d6b0e80f 3380 stop_wait_callback (lp, NULL);
ca2163eb
PA
3381
3382 /* If the lp->status field isn't empty, we caught another signal
3383 while flushing the SIGSTOP. Return it back to the event
3384 queue of the LWP, as we already have an event to handle. */
3385 if (lp->status)
3386 {
3387 if (debug_linux_nat)
3388 fprintf_unfiltered (gdb_stdlog,
3389 "LLW: kill %s, %s\n",
3390 target_pid_to_str (lp->ptid),
3391 status_to_str (lp->status));
3392 kill_lwp (GET_LWP (lp->ptid), WSTOPSIG (lp->status));
3393 }
3394
3395 lp->status = status;
d6b0e80f
AC
3396 }
3397
b84876c2
PA
3398 if (!target_can_async_p ())
3399 {
3400 /* Causes SIGINT to be passed on to the attached process. */
3401 set_sigint_trap ();
b84876c2 3402 }
d6b0e80f 3403
47608cb1
PA
3404 /* Translate generic target_wait options into waitpid options. */
3405 if (target_options & TARGET_WNOHANG)
3406 options |= WNOHANG;
7feb7d06 3407
d90e17a7 3408 while (lp == NULL)
d6b0e80f
AC
3409 {
3410 pid_t lwpid;
3411
7feb7d06 3412 lwpid = my_waitpid (pid, &status, options);
b84876c2 3413
d6b0e80f
AC
3414 if (lwpid > 0)
3415 {
3416 gdb_assert (pid == -1 || lwpid == pid);
3417
3418 if (debug_linux_nat)
3419 {
3420 fprintf_unfiltered (gdb_stdlog,
3421 "LLW: waitpid %ld received %s\n",
3422 (long) lwpid, status_to_str (status));
3423 }
3424
02f3fc28 3425 lp = linux_nat_filter_event (lwpid, status, options);
d90e17a7 3426
33355866
JK
3427 /* STATUS is now no longer valid, use LP->STATUS instead. */
3428 status = 0;
3429
d90e17a7
PA
3430 if (lp
3431 && ptid_is_pid (ptid)
3432 && ptid_get_pid (lp->ptid) != ptid_get_pid (ptid))
d6b0e80f 3433 {
e3e9f5a2
PA
3434 gdb_assert (lp->resumed);
3435
d90e17a7
PA
3436 if (debug_linux_nat)
3437 fprintf (stderr, "LWP %ld got an event %06x, leaving pending.\n",
33355866 3438 ptid_get_lwp (lp->ptid), lp->status);
d90e17a7 3439
ca2163eb 3440 if (WIFSTOPPED (lp->status))
d90e17a7 3441 {
ca2163eb 3442 if (WSTOPSIG (lp->status) != SIGSTOP)
d90e17a7 3443 {
e3e9f5a2
PA
3444 /* Cancel breakpoint hits. The breakpoint may
3445 be removed before we fetch events from this
3446 process to report to the core. It is best
3447 not to assume the moribund breakpoints
3448 heuristic always handles these cases --- it
3449 could be too many events go through to the
3450 core before this one is handled. All-stop
3451 always cancels breakpoint hits in all
3452 threads. */
3453 if (non_stop
00390b84 3454 && linux_nat_lp_status_is_event (lp)
e3e9f5a2
PA
3455 && cancel_breakpoint (lp))
3456 {
3457 /* Throw away the SIGTRAP. */
3458 lp->status = 0;
3459
3460 if (debug_linux_nat)
3461 fprintf (stderr,
3462 "LLW: LWP %ld hit a breakpoint while waiting "
3463 "for another process; cancelled it\n",
3464 ptid_get_lwp (lp->ptid));
3465 }
3466 lp->stopped = 1;
d90e17a7
PA
3467 }
3468 else
3469 {
3470 lp->stopped = 1;
3471 lp->signalled = 0;
3472 }
3473 }
33355866 3474 else if (WIFEXITED (lp->status) || WIFSIGNALED (lp->status))
d90e17a7
PA
3475 {
3476 if (debug_linux_nat)
3477 fprintf (stderr, "Process %ld exited while stopping LWPs\n",
3478 ptid_get_lwp (lp->ptid));
3479
3480 /* This was the last lwp in the process. Since
3481 events are serialized to GDB core, and we can't
3482 report this one right now, but GDB core and the
3483 other target layers will want to be notified
3484 about the exit code/signal, leave the status
3485 pending for the next time we're able to report
3486 it. */
d90e17a7
PA
3487
3488 /* Prevent trying to stop this thread again. We'll
3489 never try to resume it because it has a pending
3490 status. */
3491 lp->stopped = 1;
3492
3493 /* Dead LWP's aren't expected to reported a pending
3494 sigstop. */
3495 lp->signalled = 0;
3496
3497 /* Store the pending event in the waitstatus as
3498 well, because W_EXITCODE(0,0) == 0. */
ca2163eb 3499 store_waitstatus (&lp->waitstatus, lp->status);
d90e17a7
PA
3500 }
3501
3502 /* Keep looking. */
3503 lp = NULL;
d6b0e80f
AC
3504 continue;
3505 }
3506
d90e17a7
PA
3507 if (lp)
3508 break;
3509 else
3510 {
3511 if (pid == -1)
3512 {
3513 /* waitpid did return something. Restart over. */
3514 options |= __WCLONE;
3515 }
3516 continue;
3517 }
d6b0e80f
AC
3518 }
3519
3520 if (pid == -1)
3521 {
3522 /* Alternate between checking cloned and uncloned processes. */
3523 options ^= __WCLONE;
3524
b84876c2
PA
3525 /* And every time we have checked both:
3526 In async mode, return to event loop;
3527 In sync mode, suspend waiting for a SIGCHLD signal. */
d6b0e80f 3528 if (options & __WCLONE)
b84876c2 3529 {
47608cb1 3530 if (target_options & TARGET_WNOHANG)
b84876c2
PA
3531 {
3532 /* No interesting event. */
3533 ourstatus->kind = TARGET_WAITKIND_IGNORE;
3534
b84876c2
PA
3535 if (debug_linux_nat_async)
3536 fprintf_unfiltered (gdb_stdlog, "LLW: exit (ignore)\n");
3537
7feb7d06 3538 restore_child_signals_mask (&prev_mask);
b84876c2
PA
3539 return minus_one_ptid;
3540 }
3541
3542 sigsuspend (&suspend_mask);
3543 }
d6b0e80f 3544 }
28736962
PA
3545 else if (target_options & TARGET_WNOHANG)
3546 {
3547 /* No interesting event for PID yet. */
3548 ourstatus->kind = TARGET_WAITKIND_IGNORE;
3549
3550 if (debug_linux_nat_async)
3551 fprintf_unfiltered (gdb_stdlog, "LLW: exit (ignore)\n");
3552
3553 restore_child_signals_mask (&prev_mask);
3554 return minus_one_ptid;
3555 }
d6b0e80f
AC
3556
3557 /* We shouldn't end up here unless we want to try again. */
d90e17a7 3558 gdb_assert (lp == NULL);
d6b0e80f
AC
3559 }
3560
b84876c2 3561 if (!target_can_async_p ())
d26b5354 3562 clear_sigint_trap ();
d6b0e80f
AC
3563
3564 gdb_assert (lp);
3565
ca2163eb
PA
3566 status = lp->status;
3567 lp->status = 0;
3568
d6b0e80f
AC
3569 /* Don't report signals that GDB isn't interested in, such as
3570 signals that are neither printed nor stopped upon. Stopping all
3571 threads can be a bit time-consuming so if we want decent
3572 performance with heavily multi-threaded programs, especially when
3573 they're using a high frequency timer, we'd better avoid it if we
3574 can. */
3575
3576 if (WIFSTOPPED (status))
3577 {
423ec54c 3578 enum target_signal signo = target_signal_from_host (WSTOPSIG (status));
d6b48e9c
PA
3579 struct inferior *inf;
3580
3581 inf = find_inferior_pid (ptid_get_pid (lp->ptid));
3582 gdb_assert (inf);
d6b0e80f 3583
d6b48e9c
PA
3584 /* Defer to common code if we get a signal while
3585 single-stepping, since that may need special care, e.g. to
3586 skip the signal handler, or, if we're gaining control of the
3587 inferior. */
d539ed7e 3588 if (!lp->step
d6b48e9c 3589 && inf->stop_soon == NO_STOP_QUIETLY
d539ed7e 3590 && signal_stop_state (signo) == 0
d6b0e80f
AC
3591 && signal_print_state (signo) == 0
3592 && signal_pass_state (signo) == 1)
3593 {
3594 /* FIMXE: kettenis/2001-06-06: Should we resume all threads
3595 here? It is not clear we should. GDB may not expect
3596 other threads to run. On the other hand, not resuming
3597 newly attached threads may cause an unwanted delay in
3598 getting them running. */
3599 registers_changed ();
28439f5e 3600 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
10d6c8cd 3601 lp->step, signo);
d6b0e80f
AC
3602 if (debug_linux_nat)
3603 fprintf_unfiltered (gdb_stdlog,
3604 "LLW: %s %s, %s (preempt 'handle')\n",
3605 lp->step ?
3606 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3607 target_pid_to_str (lp->ptid),
423ec54c
JK
3608 (signo != TARGET_SIGNAL_0
3609 ? strsignal (target_signal_to_host (signo))
3610 : "0"));
d6b0e80f 3611 lp->stopped = 0;
d6b0e80f
AC
3612 goto retry;
3613 }
3614
1ad15515 3615 if (!non_stop)
d6b0e80f 3616 {
1ad15515
PA
3617 /* Only do the below in all-stop, as we currently use SIGINT
3618 to implement target_stop (see linux_nat_stop) in
3619 non-stop. */
3620 if (signo == TARGET_SIGNAL_INT && signal_pass_state (signo) == 0)
3621 {
3622 /* If ^C/BREAK is typed at the tty/console, SIGINT gets
3623 forwarded to the entire process group, that is, all LWPs
3624 will receive it - unless they're using CLONE_THREAD to
3625 share signals. Since we only want to report it once, we
3626 mark it as ignored for all LWPs except this one. */
d90e17a7
PA
3627 iterate_over_lwps (pid_to_ptid (ptid_get_pid (ptid)),
3628 set_ignore_sigint, NULL);
1ad15515
PA
3629 lp->ignore_sigint = 0;
3630 }
3631 else
3632 maybe_clear_ignore_sigint (lp);
d6b0e80f
AC
3633 }
3634 }
3635
3636 /* This LWP is stopped now. */
3637 lp->stopped = 1;
3638
3639 if (debug_linux_nat)
3640 fprintf_unfiltered (gdb_stdlog, "LLW: Candidate event %s in %s.\n",
3641 status_to_str (status), target_pid_to_str (lp->ptid));
3642
4c28f408
PA
3643 if (!non_stop)
3644 {
3645 /* Now stop all other LWP's ... */
d90e17a7 3646 iterate_over_lwps (minus_one_ptid, stop_callback, NULL);
4c28f408
PA
3647
3648 /* ... and wait until all of them have reported back that
3649 they're no longer running. */
d90e17a7 3650 iterate_over_lwps (minus_one_ptid, stop_wait_callback, NULL);
4c28f408
PA
3651
3652 /* If we're not waiting for a specific LWP, choose an event LWP
3653 from among those that have had events. Giving equal priority
3654 to all LWPs that have had events helps prevent
3655 starvation. */
3656 if (pid == -1)
d90e17a7 3657 select_event_lwp (ptid, &lp, &status);
d6b0e80f 3658
e3e9f5a2
PA
3659 /* Now that we've selected our final event LWP, cancel any
3660 breakpoints in other LWPs that have hit a GDB breakpoint.
3661 See the comment in cancel_breakpoints_callback to find out
3662 why. */
3663 iterate_over_lwps (minus_one_ptid, cancel_breakpoints_callback, lp);
3664
3665 /* In all-stop, from the core's perspective, all LWPs are now
3666 stopped until a new resume action is sent over. */
3667 iterate_over_lwps (minus_one_ptid, resume_clear_callback, NULL);
3668 }
3669 else
3670 lp->resumed = 0;
d6b0e80f 3671
26ab7092 3672 if (linux_nat_status_is_event (status))
d6b0e80f 3673 {
d6b0e80f
AC
3674 if (debug_linux_nat)
3675 fprintf_unfiltered (gdb_stdlog,
4fdebdd0
PA
3676 "LLW: trap ptid is %s.\n",
3677 target_pid_to_str (lp->ptid));
d6b0e80f 3678 }
d6b0e80f
AC
3679
3680 if (lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
3681 {
3682 *ourstatus = lp->waitstatus;
3683 lp->waitstatus.kind = TARGET_WAITKIND_IGNORE;
3684 }
3685 else
3686 store_waitstatus (ourstatus, status);
3687
b84876c2
PA
3688 if (debug_linux_nat_async)
3689 fprintf_unfiltered (gdb_stdlog, "LLW: exit\n");
3690
7feb7d06 3691 restore_child_signals_mask (&prev_mask);
1e225492
JK
3692
3693 if (ourstatus->kind == TARGET_WAITKIND_EXITED
3694 || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
3695 lp->core = -1;
3696 else
3697 lp->core = linux_nat_core_of_thread_1 (lp->ptid);
3698
f973ed9c 3699 return lp->ptid;
d6b0e80f
AC
3700}
3701
e3e9f5a2
PA
3702/* Resume LWPs that are currently stopped without any pending status
3703 to report, but are resumed from the core's perspective. */
3704
3705static int
3706resume_stopped_resumed_lwps (struct lwp_info *lp, void *data)
3707{
3708 ptid_t *wait_ptid_p = data;
3709
3710 if (lp->stopped
3711 && lp->resumed
3712 && lp->status == 0
3713 && lp->waitstatus.kind == TARGET_WAITKIND_IGNORE)
3714 {
3715 gdb_assert (is_executing (lp->ptid));
3716
3717 /* Don't bother if there's a breakpoint at PC that we'd hit
3718 immediately, and we're not waiting for this LWP. */
3719 if (!ptid_match (lp->ptid, *wait_ptid_p))
3720 {
3721 struct regcache *regcache = get_thread_regcache (lp->ptid);
3722 CORE_ADDR pc = regcache_read_pc (regcache);
3723
3724 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache), pc))
3725 return 0;
3726 }
3727
3728 if (debug_linux_nat)
3729 fprintf_unfiltered (gdb_stdlog,
3730 "RSRL: resuming stopped-resumed LWP %s\n",
3731 target_pid_to_str (lp->ptid));
3732
3733 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
3734 lp->step, TARGET_SIGNAL_0);
3735 lp->stopped = 0;
3736 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
3737 lp->stopped_by_watchpoint = 0;
3738 }
3739
3740 return 0;
3741}
3742
7feb7d06
PA
3743static ptid_t
3744linux_nat_wait (struct target_ops *ops,
47608cb1
PA
3745 ptid_t ptid, struct target_waitstatus *ourstatus,
3746 int target_options)
7feb7d06
PA
3747{
3748 ptid_t event_ptid;
3749
3750 if (debug_linux_nat)
3751 fprintf_unfiltered (gdb_stdlog, "linux_nat_wait: [%s]\n", target_pid_to_str (ptid));
3752
3753 /* Flush the async file first. */
3754 if (target_can_async_p ())
3755 async_file_flush ();
3756
e3e9f5a2
PA
3757 /* Resume LWPs that are currently stopped without any pending status
3758 to report, but are resumed from the core's perspective. LWPs get
3759 in this state if we find them stopping at a time we're not
3760 interested in reporting the event (target_wait on a
3761 specific_process, for example, see linux_nat_wait_1), and
3762 meanwhile the event became uninteresting. Don't bother resuming
3763 LWPs we're not going to wait for if they'd stop immediately. */
3764 if (non_stop)
3765 iterate_over_lwps (minus_one_ptid, resume_stopped_resumed_lwps, &ptid);
3766
47608cb1 3767 event_ptid = linux_nat_wait_1 (ops, ptid, ourstatus, target_options);
7feb7d06
PA
3768
3769 /* If we requested any event, and something came out, assume there
3770 may be more. If we requested a specific lwp or process, also
3771 assume there may be more. */
3772 if (target_can_async_p ()
3773 && (ourstatus->kind != TARGET_WAITKIND_IGNORE
3774 || !ptid_equal (ptid, minus_one_ptid)))
3775 async_file_mark ();
3776
3777 /* Get ready for the next event. */
3778 if (target_can_async_p ())
3779 target_async (inferior_event_handler, 0);
3780
3781 return event_ptid;
3782}
3783
d6b0e80f
AC
3784static int
3785kill_callback (struct lwp_info *lp, void *data)
3786{
3787 errno = 0;
3788 ptrace (PTRACE_KILL, GET_LWP (lp->ptid), 0, 0);
3789 if (debug_linux_nat)
3790 fprintf_unfiltered (gdb_stdlog,
3791 "KC: PTRACE_KILL %s, 0, 0 (%s)\n",
3792 target_pid_to_str (lp->ptid),
3793 errno ? safe_strerror (errno) : "OK");
3794
3795 return 0;
3796}
3797
3798static int
3799kill_wait_callback (struct lwp_info *lp, void *data)
3800{
3801 pid_t pid;
3802
3803 /* We must make sure that there are no pending events (delayed
3804 SIGSTOPs, pending SIGTRAPs, etc.) to make sure the current
3805 program doesn't interfere with any following debugging session. */
3806
3807 /* For cloned processes we must check both with __WCLONE and
3808 without, since the exit status of a cloned process isn't reported
3809 with __WCLONE. */
3810 if (lp->cloned)
3811 {
3812 do
3813 {
58aecb61 3814 pid = my_waitpid (GET_LWP (lp->ptid), NULL, __WCLONE);
e85a822c 3815 if (pid != (pid_t) -1)
d6b0e80f 3816 {
e85a822c
DJ
3817 if (debug_linux_nat)
3818 fprintf_unfiltered (gdb_stdlog,
3819 "KWC: wait %s received unknown.\n",
3820 target_pid_to_str (lp->ptid));
3821 /* The Linux kernel sometimes fails to kill a thread
3822 completely after PTRACE_KILL; that goes from the stop
3823 point in do_fork out to the one in
3824 get_signal_to_deliever and waits again. So kill it
3825 again. */
3826 kill_callback (lp, NULL);
d6b0e80f
AC
3827 }
3828 }
3829 while (pid == GET_LWP (lp->ptid));
3830
3831 gdb_assert (pid == -1 && errno == ECHILD);
3832 }
3833
3834 do
3835 {
58aecb61 3836 pid = my_waitpid (GET_LWP (lp->ptid), NULL, 0);
e85a822c 3837 if (pid != (pid_t) -1)
d6b0e80f 3838 {
e85a822c
DJ
3839 if (debug_linux_nat)
3840 fprintf_unfiltered (gdb_stdlog,
3841 "KWC: wait %s received unk.\n",
3842 target_pid_to_str (lp->ptid));
3843 /* See the call to kill_callback above. */
3844 kill_callback (lp, NULL);
d6b0e80f
AC
3845 }
3846 }
3847 while (pid == GET_LWP (lp->ptid));
3848
3849 gdb_assert (pid == -1 && errno == ECHILD);
3850 return 0;
3851}
3852
3853static void
7d85a9c0 3854linux_nat_kill (struct target_ops *ops)
d6b0e80f 3855{
f973ed9c
DJ
3856 struct target_waitstatus last;
3857 ptid_t last_ptid;
3858 int status;
d6b0e80f 3859
f973ed9c
DJ
3860 /* If we're stopped while forking and we haven't followed yet,
3861 kill the other task. We need to do this first because the
3862 parent will be sleeping if this is a vfork. */
d6b0e80f 3863
f973ed9c 3864 get_last_target_status (&last_ptid, &last);
d6b0e80f 3865
f973ed9c
DJ
3866 if (last.kind == TARGET_WAITKIND_FORKED
3867 || last.kind == TARGET_WAITKIND_VFORKED)
3868 {
3a3e9ee3 3869 ptrace (PT_KILL, PIDGET (last.value.related_pid), 0, 0);
f973ed9c
DJ
3870 wait (&status);
3871 }
3872
3873 if (forks_exist_p ())
7feb7d06 3874 linux_fork_killall ();
f973ed9c
DJ
3875 else
3876 {
d90e17a7 3877 ptid_t ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
e0881a8e 3878
4c28f408
PA
3879 /* Stop all threads before killing them, since ptrace requires
3880 that the thread is stopped to sucessfully PTRACE_KILL. */
d90e17a7 3881 iterate_over_lwps (ptid, stop_callback, NULL);
4c28f408
PA
3882 /* ... and wait until all of them have reported back that
3883 they're no longer running. */
d90e17a7 3884 iterate_over_lwps (ptid, stop_wait_callback, NULL);
4c28f408 3885
f973ed9c 3886 /* Kill all LWP's ... */
d90e17a7 3887 iterate_over_lwps (ptid, kill_callback, NULL);
f973ed9c
DJ
3888
3889 /* ... and wait until we've flushed all events. */
d90e17a7 3890 iterate_over_lwps (ptid, kill_wait_callback, NULL);
f973ed9c
DJ
3891 }
3892
3893 target_mourn_inferior ();
d6b0e80f
AC
3894}
3895
3896static void
136d6dae 3897linux_nat_mourn_inferior (struct target_ops *ops)
d6b0e80f 3898{
d90e17a7 3899 purge_lwp_list (ptid_get_pid (inferior_ptid));
d6b0e80f 3900
f973ed9c 3901 if (! forks_exist_p ())
d90e17a7
PA
3902 /* Normal case, no other forks available. */
3903 linux_ops->to_mourn_inferior (ops);
f973ed9c
DJ
3904 else
3905 /* Multi-fork case. The current inferior_ptid has exited, but
3906 there are other viable forks to debug. Delete the exiting
3907 one and context-switch to the first available. */
3908 linux_fork_mourn_inferior ();
d6b0e80f
AC
3909}
3910
5b009018
PA
3911/* Convert a native/host siginfo object, into/from the siginfo in the
3912 layout of the inferiors' architecture. */
3913
3914static void
3915siginfo_fixup (struct siginfo *siginfo, gdb_byte *inf_siginfo, int direction)
3916{
3917 int done = 0;
3918
3919 if (linux_nat_siginfo_fixup != NULL)
3920 done = linux_nat_siginfo_fixup (siginfo, inf_siginfo, direction);
3921
3922 /* If there was no callback, or the callback didn't do anything,
3923 then just do a straight memcpy. */
3924 if (!done)
3925 {
3926 if (direction == 1)
3927 memcpy (siginfo, inf_siginfo, sizeof (struct siginfo));
3928 else
3929 memcpy (inf_siginfo, siginfo, sizeof (struct siginfo));
3930 }
3931}
3932
4aa995e1
PA
3933static LONGEST
3934linux_xfer_siginfo (struct target_ops *ops, enum target_object object,
3935 const char *annex, gdb_byte *readbuf,
3936 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
3937{
4aa995e1
PA
3938 int pid;
3939 struct siginfo siginfo;
5b009018 3940 gdb_byte inf_siginfo[sizeof (struct siginfo)];
4aa995e1
PA
3941
3942 gdb_assert (object == TARGET_OBJECT_SIGNAL_INFO);
3943 gdb_assert (readbuf || writebuf);
3944
3945 pid = GET_LWP (inferior_ptid);
3946 if (pid == 0)
3947 pid = GET_PID (inferior_ptid);
3948
3949 if (offset > sizeof (siginfo))
3950 return -1;
3951
3952 errno = 0;
3953 ptrace (PTRACE_GETSIGINFO, pid, (PTRACE_TYPE_ARG3) 0, &siginfo);
3954 if (errno != 0)
3955 return -1;
3956
5b009018
PA
3957 /* When GDB is built as a 64-bit application, ptrace writes into
3958 SIGINFO an object with 64-bit layout. Since debugging a 32-bit
3959 inferior with a 64-bit GDB should look the same as debugging it
3960 with a 32-bit GDB, we need to convert it. GDB core always sees
3961 the converted layout, so any read/write will have to be done
3962 post-conversion. */
3963 siginfo_fixup (&siginfo, inf_siginfo, 0);
3964
4aa995e1
PA
3965 if (offset + len > sizeof (siginfo))
3966 len = sizeof (siginfo) - offset;
3967
3968 if (readbuf != NULL)
5b009018 3969 memcpy (readbuf, inf_siginfo + offset, len);
4aa995e1
PA
3970 else
3971 {
5b009018
PA
3972 memcpy (inf_siginfo + offset, writebuf, len);
3973
3974 /* Convert back to ptrace layout before flushing it out. */
3975 siginfo_fixup (&siginfo, inf_siginfo, 1);
3976
4aa995e1
PA
3977 errno = 0;
3978 ptrace (PTRACE_SETSIGINFO, pid, (PTRACE_TYPE_ARG3) 0, &siginfo);
3979 if (errno != 0)
3980 return -1;
3981 }
3982
3983 return len;
3984}
3985
10d6c8cd
DJ
3986static LONGEST
3987linux_nat_xfer_partial (struct target_ops *ops, enum target_object object,
3988 const char *annex, gdb_byte *readbuf,
3989 const gdb_byte *writebuf,
3990 ULONGEST offset, LONGEST len)
d6b0e80f 3991{
4aa995e1 3992 struct cleanup *old_chain;
10d6c8cd 3993 LONGEST xfer;
d6b0e80f 3994
4aa995e1
PA
3995 if (object == TARGET_OBJECT_SIGNAL_INFO)
3996 return linux_xfer_siginfo (ops, object, annex, readbuf, writebuf,
3997 offset, len);
3998
c35b1492
PA
3999 /* The target is connected but no live inferior is selected. Pass
4000 this request down to a lower stratum (e.g., the executable
4001 file). */
4002 if (object == TARGET_OBJECT_MEMORY && ptid_equal (inferior_ptid, null_ptid))
4003 return 0;
4004
4aa995e1
PA
4005 old_chain = save_inferior_ptid ();
4006
d6b0e80f
AC
4007 if (is_lwp (inferior_ptid))
4008 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
4009
10d6c8cd
DJ
4010 xfer = linux_ops->to_xfer_partial (ops, object, annex, readbuf, writebuf,
4011 offset, len);
d6b0e80f
AC
4012
4013 do_cleanups (old_chain);
4014 return xfer;
4015}
4016
4017static int
28439f5e 4018linux_thread_alive (ptid_t ptid)
d6b0e80f 4019{
4c28f408
PA
4020 int err;
4021
d6b0e80f
AC
4022 gdb_assert (is_lwp (ptid));
4023
4c28f408
PA
4024 /* Send signal 0 instead of anything ptrace, because ptracing a
4025 running thread errors out claiming that the thread doesn't
4026 exist. */
4027 err = kill_lwp (GET_LWP (ptid), 0);
4028
d6b0e80f
AC
4029 if (debug_linux_nat)
4030 fprintf_unfiltered (gdb_stdlog,
4c28f408 4031 "LLTA: KILL(SIG0) %s (%s)\n",
d6b0e80f 4032 target_pid_to_str (ptid),
4c28f408 4033 err ? safe_strerror (err) : "OK");
9c0dd46b 4034
4c28f408 4035 if (err != 0)
d6b0e80f
AC
4036 return 0;
4037
4038 return 1;
4039}
4040
28439f5e
PA
4041static int
4042linux_nat_thread_alive (struct target_ops *ops, ptid_t ptid)
4043{
4044 return linux_thread_alive (ptid);
4045}
4046
d6b0e80f 4047static char *
117de6a9 4048linux_nat_pid_to_str (struct target_ops *ops, ptid_t ptid)
d6b0e80f
AC
4049{
4050 static char buf[64];
4051
a0ef4274 4052 if (is_lwp (ptid)
d90e17a7
PA
4053 && (GET_PID (ptid) != GET_LWP (ptid)
4054 || num_lwps (GET_PID (ptid)) > 1))
d6b0e80f
AC
4055 {
4056 snprintf (buf, sizeof (buf), "LWP %ld", GET_LWP (ptid));
4057 return buf;
4058 }
4059
4060 return normal_pid_to_str (ptid);
4061}
4062
dba24537
AC
4063/* Accepts an integer PID; Returns a string representing a file that
4064 can be opened to get the symbols for the child process. */
4065
6d8fd2b7
UW
4066static char *
4067linux_child_pid_to_exec_file (int pid)
dba24537
AC
4068{
4069 char *name1, *name2;
4070
4071 name1 = xmalloc (MAXPATHLEN);
4072 name2 = xmalloc (MAXPATHLEN);
4073 make_cleanup (xfree, name1);
4074 make_cleanup (xfree, name2);
4075 memset (name2, 0, MAXPATHLEN);
4076
4077 sprintf (name1, "/proc/%d/exe", pid);
4078 if (readlink (name1, name2, MAXPATHLEN) > 0)
4079 return name2;
4080 else
4081 return name1;
4082}
4083
4084/* Service function for corefiles and info proc. */
4085
4086static int
4087read_mapping (FILE *mapfile,
4088 long long *addr,
4089 long long *endaddr,
4090 char *permissions,
4091 long long *offset,
4092 char *device, long long *inode, char *filename)
4093{
4094 int ret = fscanf (mapfile, "%llx-%llx %s %llx %s %llx",
4095 addr, endaddr, permissions, offset, device, inode);
4096
2e14c2ea
MS
4097 filename[0] = '\0';
4098 if (ret > 0 && ret != EOF)
dba24537
AC
4099 {
4100 /* Eat everything up to EOL for the filename. This will prevent
4101 weird filenames (such as one with embedded whitespace) from
4102 confusing this code. It also makes this code more robust in
4103 respect to annotations the kernel may add after the filename.
4104
4105 Note the filename is used for informational purposes
4106 only. */
4107 ret += fscanf (mapfile, "%[^\n]\n", filename);
4108 }
2e14c2ea 4109
dba24537
AC
4110 return (ret != 0 && ret != EOF);
4111}
4112
4113/* Fills the "to_find_memory_regions" target vector. Lists the memory
4114 regions in the inferior for a corefile. */
4115
4116static int
b8edc417 4117linux_nat_find_memory_regions (find_memory_region_ftype func, void *obfd)
dba24537 4118{
89ecc4f5 4119 int pid = PIDGET (inferior_ptid);
dba24537
AC
4120 char mapsfilename[MAXPATHLEN];
4121 FILE *mapsfile;
4122 long long addr, endaddr, size, offset, inode;
4123 char permissions[8], device[8], filename[MAXPATHLEN];
4124 int read, write, exec;
7c8a8b04 4125 struct cleanup *cleanup;
dba24537
AC
4126
4127 /* Compose the filename for the /proc memory map, and open it. */
89ecc4f5 4128 sprintf (mapsfilename, "/proc/%d/maps", pid);
dba24537 4129 if ((mapsfile = fopen (mapsfilename, "r")) == NULL)
8a3fe4f8 4130 error (_("Could not open %s."), mapsfilename);
7c8a8b04 4131 cleanup = make_cleanup_fclose (mapsfile);
dba24537
AC
4132
4133 if (info_verbose)
4134 fprintf_filtered (gdb_stdout,
4135 "Reading memory regions from %s\n", mapsfilename);
4136
4137 /* Now iterate until end-of-file. */
4138 while (read_mapping (mapsfile, &addr, &endaddr, &permissions[0],
4139 &offset, &device[0], &inode, &filename[0]))
4140 {
4141 size = endaddr - addr;
4142
4143 /* Get the segment's permissions. */
4144 read = (strchr (permissions, 'r') != 0);
4145 write = (strchr (permissions, 'w') != 0);
4146 exec = (strchr (permissions, 'x') != 0);
4147
4148 if (info_verbose)
4149 {
4150 fprintf_filtered (gdb_stdout,
2244ba2e
PM
4151 "Save segment, %s bytes at %s (%c%c%c)",
4152 plongest (size), paddress (target_gdbarch, addr),
dba24537
AC
4153 read ? 'r' : ' ',
4154 write ? 'w' : ' ', exec ? 'x' : ' ');
b260b6c1 4155 if (filename[0])
dba24537
AC
4156 fprintf_filtered (gdb_stdout, " for %s", filename);
4157 fprintf_filtered (gdb_stdout, "\n");
4158 }
4159
4160 /* Invoke the callback function to create the corefile
4161 segment. */
4162 func (addr, size, read, write, exec, obfd);
4163 }
7c8a8b04 4164 do_cleanups (cleanup);
dba24537
AC
4165 return 0;
4166}
4167
2020b7ab
PA
4168static int
4169find_signalled_thread (struct thread_info *info, void *data)
4170{
4171 if (info->stop_signal != TARGET_SIGNAL_0
4172 && ptid_get_pid (info->ptid) == ptid_get_pid (inferior_ptid))
4173 return 1;
4174
4175 return 0;
4176}
4177
4178static enum target_signal
4179find_stop_signal (void)
4180{
4181 struct thread_info *info =
4182 iterate_over_threads (find_signalled_thread, NULL);
4183
4184 if (info)
4185 return info->stop_signal;
4186 else
4187 return TARGET_SIGNAL_0;
4188}
4189
dba24537
AC
4190/* Records the thread's register state for the corefile note
4191 section. */
4192
4193static char *
4194linux_nat_do_thread_registers (bfd *obfd, ptid_t ptid,
2020b7ab
PA
4195 char *note_data, int *note_size,
4196 enum target_signal stop_signal)
dba24537 4197{
dba24537 4198 unsigned long lwp = ptid_get_lwp (ptid);
c2250ad1
UW
4199 struct gdbarch *gdbarch = target_gdbarch;
4200 struct regcache *regcache = get_thread_arch_regcache (ptid, gdbarch);
4f844a66 4201 const struct regset *regset;
55e969c1 4202 int core_regset_p;
594f7785 4203 struct cleanup *old_chain;
17ea7499
CES
4204 struct core_regset_section *sect_list;
4205 char *gdb_regset;
594f7785
UW
4206
4207 old_chain = save_inferior_ptid ();
4208 inferior_ptid = ptid;
4209 target_fetch_registers (regcache, -1);
4210 do_cleanups (old_chain);
4f844a66
DM
4211
4212 core_regset_p = gdbarch_regset_from_core_section_p (gdbarch);
17ea7499
CES
4213 sect_list = gdbarch_core_regset_sections (gdbarch);
4214
17ea7499
CES
4215 /* The loop below uses the new struct core_regset_section, which stores
4216 the supported section names and sizes for the core file. Note that
4217 note PRSTATUS needs to be treated specially. But the other notes are
4218 structurally the same, so they can benefit from the new struct. */
4219 if (core_regset_p && sect_list != NULL)
4220 while (sect_list->sect_name != NULL)
4221 {
17ea7499
CES
4222 regset = gdbarch_regset_from_core_section (gdbarch,
4223 sect_list->sect_name,
4224 sect_list->size);
4225 gdb_assert (regset && regset->collect_regset);
4226 gdb_regset = xmalloc (sect_list->size);
4227 regset->collect_regset (regset, regcache, -1,
4228 gdb_regset, sect_list->size);
2f2241f1
UW
4229
4230 if (strcmp (sect_list->sect_name, ".reg") == 0)
4231 note_data = (char *) elfcore_write_prstatus
4232 (obfd, note_data, note_size,
857d11d0
JK
4233 lwp, target_signal_to_host (stop_signal),
4234 gdb_regset);
2f2241f1
UW
4235 else
4236 note_data = (char *) elfcore_write_register_note
4237 (obfd, note_data, note_size,
4238 sect_list->sect_name, gdb_regset,
4239 sect_list->size);
17ea7499
CES
4240 xfree (gdb_regset);
4241 sect_list++;
4242 }
dba24537 4243
17ea7499
CES
4244 /* For architectures that does not have the struct core_regset_section
4245 implemented, we use the old method. When all the architectures have
4246 the new support, the code below should be deleted. */
4f844a66 4247 else
17ea7499 4248 {
2f2241f1
UW
4249 gdb_gregset_t gregs;
4250 gdb_fpregset_t fpregs;
4251
4252 if (core_regset_p
4253 && (regset = gdbarch_regset_from_core_section (gdbarch, ".reg",
4254 sizeof (gregs))) != NULL
4255 && regset->collect_regset != NULL)
4256 regset->collect_regset (regset, regcache, -1,
4257 &gregs, sizeof (gregs));
4258 else
4259 fill_gregset (regcache, &gregs, -1);
4260
857d11d0
JK
4261 note_data = (char *) elfcore_write_prstatus
4262 (obfd, note_data, note_size, lwp, target_signal_to_host (stop_signal),
4263 &gregs);
2f2241f1 4264
17ea7499
CES
4265 if (core_regset_p
4266 && (regset = gdbarch_regset_from_core_section (gdbarch, ".reg2",
4267 sizeof (fpregs))) != NULL
4268 && regset->collect_regset != NULL)
4269 regset->collect_regset (regset, regcache, -1,
4270 &fpregs, sizeof (fpregs));
4271 else
4272 fill_fpregset (regcache, &fpregs, -1);
4273
4274 note_data = (char *) elfcore_write_prfpreg (obfd,
4275 note_data,
4276 note_size,
4277 &fpregs, sizeof (fpregs));
4278 }
4f844a66 4279
dba24537
AC
4280 return note_data;
4281}
4282
4283struct linux_nat_corefile_thread_data
4284{
4285 bfd *obfd;
4286 char *note_data;
4287 int *note_size;
4288 int num_notes;
2020b7ab 4289 enum target_signal stop_signal;
dba24537
AC
4290};
4291
4292/* Called by gdbthread.c once per thread. Records the thread's
4293 register state for the corefile note section. */
4294
4295static int
4296linux_nat_corefile_thread_callback (struct lwp_info *ti, void *data)
4297{
4298 struct linux_nat_corefile_thread_data *args = data;
dba24537 4299
dba24537
AC
4300 args->note_data = linux_nat_do_thread_registers (args->obfd,
4301 ti->ptid,
4302 args->note_data,
2020b7ab
PA
4303 args->note_size,
4304 args->stop_signal);
dba24537 4305 args->num_notes++;
56be3814 4306
dba24537
AC
4307 return 0;
4308}
4309
efcbbd14
UW
4310/* Enumerate spufs IDs for process PID. */
4311
4312static void
4313iterate_over_spus (int pid, void (*callback) (void *, int), void *data)
4314{
4315 char path[128];
4316 DIR *dir;
4317 struct dirent *entry;
4318
4319 xsnprintf (path, sizeof path, "/proc/%d/fd", pid);
4320 dir = opendir (path);
4321 if (!dir)
4322 return;
4323
4324 rewinddir (dir);
4325 while ((entry = readdir (dir)) != NULL)
4326 {
4327 struct stat st;
4328 struct statfs stfs;
4329 int fd;
4330
4331 fd = atoi (entry->d_name);
4332 if (!fd)
4333 continue;
4334
4335 xsnprintf (path, sizeof path, "/proc/%d/fd/%d", pid, fd);
4336 if (stat (path, &st) != 0)
4337 continue;
4338 if (!S_ISDIR (st.st_mode))
4339 continue;
4340
4341 if (statfs (path, &stfs) != 0)
4342 continue;
4343 if (stfs.f_type != SPUFS_MAGIC)
4344 continue;
4345
4346 callback (data, fd);
4347 }
4348
4349 closedir (dir);
4350}
4351
4352/* Generate corefile notes for SPU contexts. */
4353
4354struct linux_spu_corefile_data
4355{
4356 bfd *obfd;
4357 char *note_data;
4358 int *note_size;
4359};
4360
4361static void
4362linux_spu_corefile_callback (void *data, int fd)
4363{
4364 struct linux_spu_corefile_data *args = data;
4365 int i;
4366
4367 static const char *spu_files[] =
4368 {
4369 "object-id",
4370 "mem",
4371 "regs",
4372 "fpcr",
4373 "lslr",
4374 "decr",
4375 "decr_status",
4376 "signal1",
4377 "signal1_type",
4378 "signal2",
4379 "signal2_type",
4380 "event_mask",
4381 "event_status",
4382 "mbox_info",
4383 "ibox_info",
4384 "wbox_info",
4385 "dma_info",
4386 "proxydma_info",
4387 };
4388
4389 for (i = 0; i < sizeof (spu_files) / sizeof (spu_files[0]); i++)
4390 {
4391 char annex[32], note_name[32];
4392 gdb_byte *spu_data;
4393 LONGEST spu_len;
4394
4395 xsnprintf (annex, sizeof annex, "%d/%s", fd, spu_files[i]);
4396 spu_len = target_read_alloc (&current_target, TARGET_OBJECT_SPU,
4397 annex, &spu_data);
4398 if (spu_len > 0)
4399 {
4400 xsnprintf (note_name, sizeof note_name, "SPU/%s", annex);
4401 args->note_data = elfcore_write_note (args->obfd, args->note_data,
4402 args->note_size, note_name,
4403 NT_SPU, spu_data, spu_len);
4404 xfree (spu_data);
4405 }
4406 }
4407}
4408
4409static char *
4410linux_spu_make_corefile_notes (bfd *obfd, char *note_data, int *note_size)
4411{
4412 struct linux_spu_corefile_data args;
e0881a8e 4413
efcbbd14
UW
4414 args.obfd = obfd;
4415 args.note_data = note_data;
4416 args.note_size = note_size;
4417
4418 iterate_over_spus (PIDGET (inferior_ptid),
4419 linux_spu_corefile_callback, &args);
4420
4421 return args.note_data;
4422}
4423
dba24537
AC
4424/* Fills the "to_make_corefile_note" target vector. Builds the note
4425 section for a corefile, and returns it in a malloc buffer. */
4426
4427static char *
4428linux_nat_make_corefile_notes (bfd *obfd, int *note_size)
4429{
4430 struct linux_nat_corefile_thread_data thread_args;
d99148ef 4431 /* The variable size must be >= sizeof (prpsinfo_t.pr_fname). */
dba24537 4432 char fname[16] = { '\0' };
d99148ef 4433 /* The variable size must be >= sizeof (prpsinfo_t.pr_psargs). */
dba24537
AC
4434 char psargs[80] = { '\0' };
4435 char *note_data = NULL;
d90e17a7 4436 ptid_t filter = pid_to_ptid (ptid_get_pid (inferior_ptid));
c6826062 4437 gdb_byte *auxv;
dba24537
AC
4438 int auxv_len;
4439
4440 if (get_exec_file (0))
4441 {
4442 strncpy (fname, strrchr (get_exec_file (0), '/') + 1, sizeof (fname));
4443 strncpy (psargs, get_exec_file (0), sizeof (psargs));
4444 if (get_inferior_args ())
4445 {
d99148ef
JK
4446 char *string_end;
4447 char *psargs_end = psargs + sizeof (psargs);
4448
4449 /* linux_elfcore_write_prpsinfo () handles zero unterminated
4450 strings fine. */
4451 string_end = memchr (psargs, 0, sizeof (psargs));
4452 if (string_end != NULL)
4453 {
4454 *string_end++ = ' ';
4455 strncpy (string_end, get_inferior_args (),
4456 psargs_end - string_end);
4457 }
dba24537
AC
4458 }
4459 note_data = (char *) elfcore_write_prpsinfo (obfd,
4460 note_data,
4461 note_size, fname, psargs);
4462 }
4463
4464 /* Dump information for threads. */
4465 thread_args.obfd = obfd;
4466 thread_args.note_data = note_data;
4467 thread_args.note_size = note_size;
4468 thread_args.num_notes = 0;
2020b7ab 4469 thread_args.stop_signal = find_stop_signal ();
d90e17a7 4470 iterate_over_lwps (filter, linux_nat_corefile_thread_callback, &thread_args);
2020b7ab
PA
4471 gdb_assert (thread_args.num_notes != 0);
4472 note_data = thread_args.note_data;
dba24537 4473
13547ab6
DJ
4474 auxv_len = target_read_alloc (&current_target, TARGET_OBJECT_AUXV,
4475 NULL, &auxv);
dba24537
AC
4476 if (auxv_len > 0)
4477 {
4478 note_data = elfcore_write_note (obfd, note_data, note_size,
4479 "CORE", NT_AUXV, auxv, auxv_len);
4480 xfree (auxv);
4481 }
4482
efcbbd14
UW
4483 note_data = linux_spu_make_corefile_notes (obfd, note_data, note_size);
4484
dba24537
AC
4485 make_cleanup (xfree, note_data);
4486 return note_data;
4487}
4488
4489/* Implement the "info proc" command. */
4490
4491static void
4492linux_nat_info_proc_cmd (char *args, int from_tty)
4493{
89ecc4f5
DE
4494 /* A long is used for pid instead of an int to avoid a loss of precision
4495 compiler warning from the output of strtoul. */
4496 long pid = PIDGET (inferior_ptid);
dba24537
AC
4497 FILE *procfile;
4498 char **argv = NULL;
4499 char buffer[MAXPATHLEN];
4500 char fname1[MAXPATHLEN], fname2[MAXPATHLEN];
4501 int cmdline_f = 1;
4502 int cwd_f = 1;
4503 int exe_f = 1;
4504 int mappings_f = 0;
dba24537
AC
4505 int status_f = 0;
4506 int stat_f = 0;
4507 int all = 0;
4508 struct stat dummy;
4509
4510 if (args)
4511 {
4512 /* Break up 'args' into an argv array. */
d1a41061
PP
4513 argv = gdb_buildargv (args);
4514 make_cleanup_freeargv (argv);
dba24537
AC
4515 }
4516 while (argv != NULL && *argv != NULL)
4517 {
4518 if (isdigit (argv[0][0]))
4519 {
4520 pid = strtoul (argv[0], NULL, 10);
4521 }
4522 else if (strncmp (argv[0], "mappings", strlen (argv[0])) == 0)
4523 {
4524 mappings_f = 1;
4525 }
4526 else if (strcmp (argv[0], "status") == 0)
4527 {
4528 status_f = 1;
4529 }
4530 else if (strcmp (argv[0], "stat") == 0)
4531 {
4532 stat_f = 1;
4533 }
4534 else if (strcmp (argv[0], "cmd") == 0)
4535 {
4536 cmdline_f = 1;
4537 }
4538 else if (strncmp (argv[0], "exe", strlen (argv[0])) == 0)
4539 {
4540 exe_f = 1;
4541 }
4542 else if (strcmp (argv[0], "cwd") == 0)
4543 {
4544 cwd_f = 1;
4545 }
4546 else if (strncmp (argv[0], "all", strlen (argv[0])) == 0)
4547 {
4548 all = 1;
4549 }
4550 else
4551 {
4552 /* [...] (future options here) */
4553 }
4554 argv++;
4555 }
4556 if (pid == 0)
8a3fe4f8 4557 error (_("No current process: you must name one."));
dba24537 4558
89ecc4f5 4559 sprintf (fname1, "/proc/%ld", pid);
dba24537 4560 if (stat (fname1, &dummy) != 0)
8a3fe4f8 4561 error (_("No /proc directory: '%s'"), fname1);
dba24537 4562
89ecc4f5 4563 printf_filtered (_("process %ld\n"), pid);
dba24537
AC
4564 if (cmdline_f || all)
4565 {
89ecc4f5 4566 sprintf (fname1, "/proc/%ld/cmdline", pid);
d5d6fca5 4567 if ((procfile = fopen (fname1, "r")) != NULL)
dba24537 4568 {
7c8a8b04 4569 struct cleanup *cleanup = make_cleanup_fclose (procfile);
e0881a8e 4570
bf1d7d9c
JB
4571 if (fgets (buffer, sizeof (buffer), procfile))
4572 printf_filtered ("cmdline = '%s'\n", buffer);
4573 else
4574 warning (_("unable to read '%s'"), fname1);
7c8a8b04 4575 do_cleanups (cleanup);
dba24537
AC
4576 }
4577 else
8a3fe4f8 4578 warning (_("unable to open /proc file '%s'"), fname1);
dba24537
AC
4579 }
4580 if (cwd_f || all)
4581 {
89ecc4f5 4582 sprintf (fname1, "/proc/%ld/cwd", pid);
dba24537
AC
4583 memset (fname2, 0, sizeof (fname2));
4584 if (readlink (fname1, fname2, sizeof (fname2)) > 0)
4585 printf_filtered ("cwd = '%s'\n", fname2);
4586 else
8a3fe4f8 4587 warning (_("unable to read link '%s'"), fname1);
dba24537
AC
4588 }
4589 if (exe_f || all)
4590 {
89ecc4f5 4591 sprintf (fname1, "/proc/%ld/exe", pid);
dba24537
AC
4592 memset (fname2, 0, sizeof (fname2));
4593 if (readlink (fname1, fname2, sizeof (fname2)) > 0)
4594 printf_filtered ("exe = '%s'\n", fname2);
4595 else
8a3fe4f8 4596 warning (_("unable to read link '%s'"), fname1);
dba24537
AC
4597 }
4598 if (mappings_f || all)
4599 {
89ecc4f5 4600 sprintf (fname1, "/proc/%ld/maps", pid);
d5d6fca5 4601 if ((procfile = fopen (fname1, "r")) != NULL)
dba24537
AC
4602 {
4603 long long addr, endaddr, size, offset, inode;
4604 char permissions[8], device[8], filename[MAXPATHLEN];
7c8a8b04 4605 struct cleanup *cleanup;
dba24537 4606
7c8a8b04 4607 cleanup = make_cleanup_fclose (procfile);
a3f17187 4608 printf_filtered (_("Mapped address spaces:\n\n"));
a97b0ac8 4609 if (gdbarch_addr_bit (target_gdbarch) == 32)
dba24537
AC
4610 {
4611 printf_filtered ("\t%10s %10s %10s %10s %7s\n",
4612 "Start Addr",
4613 " End Addr",
4614 " Size", " Offset", "objfile");
4615 }
4616 else
4617 {
4618 printf_filtered (" %18s %18s %10s %10s %7s\n",
4619 "Start Addr",
4620 " End Addr",
4621 " Size", " Offset", "objfile");
4622 }
4623
4624 while (read_mapping (procfile, &addr, &endaddr, &permissions[0],
4625 &offset, &device[0], &inode, &filename[0]))
4626 {
4627 size = endaddr - addr;
4628
4629 /* FIXME: carlton/2003-08-27: Maybe the printf_filtered
4630 calls here (and possibly above) should be abstracted
4631 out into their own functions? Andrew suggests using
4632 a generic local_address_string instead to print out
4633 the addresses; that makes sense to me, too. */
4634
a97b0ac8 4635 if (gdbarch_addr_bit (target_gdbarch) == 32)
dba24537
AC
4636 {
4637 printf_filtered ("\t%#10lx %#10lx %#10x %#10x %7s\n",
4638 (unsigned long) addr, /* FIXME: pr_addr */
4639 (unsigned long) endaddr,
4640 (int) size,
4641 (unsigned int) offset,
4642 filename[0] ? filename : "");
4643 }
4644 else
4645 {
4646 printf_filtered (" %#18lx %#18lx %#10x %#10x %7s\n",
4647 (unsigned long) addr, /* FIXME: pr_addr */
4648 (unsigned long) endaddr,
4649 (int) size,
4650 (unsigned int) offset,
4651 filename[0] ? filename : "");
4652 }
4653 }
4654
7c8a8b04 4655 do_cleanups (cleanup);
dba24537
AC
4656 }
4657 else
8a3fe4f8 4658 warning (_("unable to open /proc file '%s'"), fname1);
dba24537
AC
4659 }
4660 if (status_f || all)
4661 {
89ecc4f5 4662 sprintf (fname1, "/proc/%ld/status", pid);
d5d6fca5 4663 if ((procfile = fopen (fname1, "r")) != NULL)
dba24537 4664 {
7c8a8b04 4665 struct cleanup *cleanup = make_cleanup_fclose (procfile);
e0881a8e 4666
dba24537
AC
4667 while (fgets (buffer, sizeof (buffer), procfile) != NULL)
4668 puts_filtered (buffer);
7c8a8b04 4669 do_cleanups (cleanup);
dba24537
AC
4670 }
4671 else
8a3fe4f8 4672 warning (_("unable to open /proc file '%s'"), fname1);
dba24537
AC
4673 }
4674 if (stat_f || all)
4675 {
89ecc4f5 4676 sprintf (fname1, "/proc/%ld/stat", pid);
d5d6fca5 4677 if ((procfile = fopen (fname1, "r")) != NULL)
dba24537
AC
4678 {
4679 int itmp;
4680 char ctmp;
a25694b4 4681 long ltmp;
7c8a8b04 4682 struct cleanup *cleanup = make_cleanup_fclose (procfile);
dba24537
AC
4683
4684 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 4685 printf_filtered (_("Process: %d\n"), itmp);
a25694b4 4686 if (fscanf (procfile, "(%[^)]) ", &buffer[0]) > 0)
a3f17187 4687 printf_filtered (_("Exec file: %s\n"), buffer);
dba24537 4688 if (fscanf (procfile, "%c ", &ctmp) > 0)
a3f17187 4689 printf_filtered (_("State: %c\n"), ctmp);
dba24537 4690 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 4691 printf_filtered (_("Parent process: %d\n"), itmp);
dba24537 4692 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 4693 printf_filtered (_("Process group: %d\n"), itmp);
dba24537 4694 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 4695 printf_filtered (_("Session id: %d\n"), itmp);
dba24537 4696 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 4697 printf_filtered (_("TTY: %d\n"), itmp);
dba24537 4698 if (fscanf (procfile, "%d ", &itmp) > 0)
a3f17187 4699 printf_filtered (_("TTY owner process group: %d\n"), itmp);
a25694b4
AS
4700 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4701 printf_filtered (_("Flags: 0x%lx\n"), ltmp);
4702 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4703 printf_filtered (_("Minor faults (no memory page): %lu\n"),
4704 (unsigned long) ltmp);
4705 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4706 printf_filtered (_("Minor faults, children: %lu\n"),
4707 (unsigned long) ltmp);
4708 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4709 printf_filtered (_("Major faults (memory page faults): %lu\n"),
4710 (unsigned long) ltmp);
4711 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4712 printf_filtered (_("Major faults, children: %lu\n"),
4713 (unsigned long) ltmp);
4714 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4715 printf_filtered (_("utime: %ld\n"), ltmp);
4716 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4717 printf_filtered (_("stime: %ld\n"), ltmp);
4718 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4719 printf_filtered (_("utime, children: %ld\n"), ltmp);
4720 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4721 printf_filtered (_("stime, children: %ld\n"), ltmp);
4722 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4723 printf_filtered (_("jiffies remaining in current time slice: %ld\n"),
4724 ltmp);
4725 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4726 printf_filtered (_("'nice' value: %ld\n"), ltmp);
4727 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4728 printf_filtered (_("jiffies until next timeout: %lu\n"),
4729 (unsigned long) ltmp);
4730 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4731 printf_filtered (_("jiffies until next SIGALRM: %lu\n"),
4732 (unsigned long) ltmp);
4733 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4734 printf_filtered (_("start time (jiffies since system boot): %ld\n"),
4735 ltmp);
4736 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4737 printf_filtered (_("Virtual memory size: %lu\n"),
4738 (unsigned long) ltmp);
4739 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4740 printf_filtered (_("Resident set size: %lu\n"), (unsigned long) ltmp);
4741 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4742 printf_filtered (_("rlim: %lu\n"), (unsigned long) ltmp);
4743 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4744 printf_filtered (_("Start of text: 0x%lx\n"), ltmp);
4745 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4746 printf_filtered (_("End of text: 0x%lx\n"), ltmp);
4747 if (fscanf (procfile, "%lu ", &ltmp) > 0)
4748 printf_filtered (_("Start of stack: 0x%lx\n"), ltmp);
dba24537
AC
4749#if 0 /* Don't know how architecture-dependent the rest is...
4750 Anyway the signal bitmap info is available from "status". */
a25694b4
AS
4751 if (fscanf (procfile, "%lu ", &ltmp) > 0) /* FIXME arch? */
4752 printf_filtered (_("Kernel stack pointer: 0x%lx\n"), ltmp);
4753 if (fscanf (procfile, "%lu ", &ltmp) > 0) /* FIXME arch? */
4754 printf_filtered (_("Kernel instr pointer: 0x%lx\n"), ltmp);
4755 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4756 printf_filtered (_("Pending signals bitmap: 0x%lx\n"), ltmp);
4757 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4758 printf_filtered (_("Blocked signals bitmap: 0x%lx\n"), ltmp);
4759 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4760 printf_filtered (_("Ignored signals bitmap: 0x%lx\n"), ltmp);
4761 if (fscanf (procfile, "%ld ", &ltmp) > 0)
4762 printf_filtered (_("Catched signals bitmap: 0x%lx\n"), ltmp);
4763 if (fscanf (procfile, "%lu ", &ltmp) > 0) /* FIXME arch? */
4764 printf_filtered (_("wchan (system call): 0x%lx\n"), ltmp);
dba24537 4765#endif
7c8a8b04 4766 do_cleanups (cleanup);
dba24537
AC
4767 }
4768 else
8a3fe4f8 4769 warning (_("unable to open /proc file '%s'"), fname1);
dba24537
AC
4770 }
4771}
4772
10d6c8cd
DJ
4773/* Implement the to_xfer_partial interface for memory reads using the /proc
4774 filesystem. Because we can use a single read() call for /proc, this
4775 can be much more efficient than banging away at PTRACE_PEEKTEXT,
4776 but it doesn't support writes. */
4777
4778static LONGEST
4779linux_proc_xfer_partial (struct target_ops *ops, enum target_object object,
4780 const char *annex, gdb_byte *readbuf,
4781 const gdb_byte *writebuf,
4782 ULONGEST offset, LONGEST len)
dba24537 4783{
10d6c8cd
DJ
4784 LONGEST ret;
4785 int fd;
dba24537
AC
4786 char filename[64];
4787
10d6c8cd 4788 if (object != TARGET_OBJECT_MEMORY || !readbuf)
dba24537
AC
4789 return 0;
4790
4791 /* Don't bother for one word. */
4792 if (len < 3 * sizeof (long))
4793 return 0;
4794
4795 /* We could keep this file open and cache it - possibly one per
4796 thread. That requires some juggling, but is even faster. */
4797 sprintf (filename, "/proc/%d/mem", PIDGET (inferior_ptid));
4798 fd = open (filename, O_RDONLY | O_LARGEFILE);
4799 if (fd == -1)
4800 return 0;
4801
4802 /* If pread64 is available, use it. It's faster if the kernel
4803 supports it (only one syscall), and it's 64-bit safe even on
4804 32-bit platforms (for instance, SPARC debugging a SPARC64
4805 application). */
4806#ifdef HAVE_PREAD64
10d6c8cd 4807 if (pread64 (fd, readbuf, len, offset) != len)
dba24537 4808#else
10d6c8cd 4809 if (lseek (fd, offset, SEEK_SET) == -1 || read (fd, readbuf, len) != len)
dba24537
AC
4810#endif
4811 ret = 0;
4812 else
4813 ret = len;
4814
4815 close (fd);
4816 return ret;
4817}
4818
efcbbd14
UW
4819
4820/* Enumerate spufs IDs for process PID. */
4821static LONGEST
4822spu_enumerate_spu_ids (int pid, gdb_byte *buf, ULONGEST offset, LONGEST len)
4823{
4824 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
4825 LONGEST pos = 0;
4826 LONGEST written = 0;
4827 char path[128];
4828 DIR *dir;
4829 struct dirent *entry;
4830
4831 xsnprintf (path, sizeof path, "/proc/%d/fd", pid);
4832 dir = opendir (path);
4833 if (!dir)
4834 return -1;
4835
4836 rewinddir (dir);
4837 while ((entry = readdir (dir)) != NULL)
4838 {
4839 struct stat st;
4840 struct statfs stfs;
4841 int fd;
4842
4843 fd = atoi (entry->d_name);
4844 if (!fd)
4845 continue;
4846
4847 xsnprintf (path, sizeof path, "/proc/%d/fd/%d", pid, fd);
4848 if (stat (path, &st) != 0)
4849 continue;
4850 if (!S_ISDIR (st.st_mode))
4851 continue;
4852
4853 if (statfs (path, &stfs) != 0)
4854 continue;
4855 if (stfs.f_type != SPUFS_MAGIC)
4856 continue;
4857
4858 if (pos >= offset && pos + 4 <= offset + len)
4859 {
4860 store_unsigned_integer (buf + pos - offset, 4, byte_order, fd);
4861 written += 4;
4862 }
4863 pos += 4;
4864 }
4865
4866 closedir (dir);
4867 return written;
4868}
4869
4870/* Implement the to_xfer_partial interface for the TARGET_OBJECT_SPU
4871 object type, using the /proc file system. */
4872static LONGEST
4873linux_proc_xfer_spu (struct target_ops *ops, enum target_object object,
4874 const char *annex, gdb_byte *readbuf,
4875 const gdb_byte *writebuf,
4876 ULONGEST offset, LONGEST len)
4877{
4878 char buf[128];
4879 int fd = 0;
4880 int ret = -1;
4881 int pid = PIDGET (inferior_ptid);
4882
4883 if (!annex)
4884 {
4885 if (!readbuf)
4886 return -1;
4887 else
4888 return spu_enumerate_spu_ids (pid, readbuf, offset, len);
4889 }
4890
4891 xsnprintf (buf, sizeof buf, "/proc/%d/fd/%s", pid, annex);
4892 fd = open (buf, writebuf? O_WRONLY : O_RDONLY);
4893 if (fd <= 0)
4894 return -1;
4895
4896 if (offset != 0
4897 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
4898 {
4899 close (fd);
4900 return 0;
4901 }
4902
4903 if (writebuf)
4904 ret = write (fd, writebuf, (size_t) len);
4905 else if (readbuf)
4906 ret = read (fd, readbuf, (size_t) len);
4907
4908 close (fd);
4909 return ret;
4910}
4911
4912
dba24537
AC
4913/* Parse LINE as a signal set and add its set bits to SIGS. */
4914
4915static void
4916add_line_to_sigset (const char *line, sigset_t *sigs)
4917{
4918 int len = strlen (line) - 1;
4919 const char *p;
4920 int signum;
4921
4922 if (line[len] != '\n')
8a3fe4f8 4923 error (_("Could not parse signal set: %s"), line);
dba24537
AC
4924
4925 p = line;
4926 signum = len * 4;
4927 while (len-- > 0)
4928 {
4929 int digit;
4930
4931 if (*p >= '0' && *p <= '9')
4932 digit = *p - '0';
4933 else if (*p >= 'a' && *p <= 'f')
4934 digit = *p - 'a' + 10;
4935 else
8a3fe4f8 4936 error (_("Could not parse signal set: %s"), line);
dba24537
AC
4937
4938 signum -= 4;
4939
4940 if (digit & 1)
4941 sigaddset (sigs, signum + 1);
4942 if (digit & 2)
4943 sigaddset (sigs, signum + 2);
4944 if (digit & 4)
4945 sigaddset (sigs, signum + 3);
4946 if (digit & 8)
4947 sigaddset (sigs, signum + 4);
4948
4949 p++;
4950 }
4951}
4952
4953/* Find process PID's pending signals from /proc/pid/status and set
4954 SIGS to match. */
4955
4956void
4957linux_proc_pending_signals (int pid, sigset_t *pending, sigset_t *blocked, sigset_t *ignored)
4958{
4959 FILE *procfile;
4960 char buffer[MAXPATHLEN], fname[MAXPATHLEN];
7c8a8b04 4961 struct cleanup *cleanup;
dba24537
AC
4962
4963 sigemptyset (pending);
4964 sigemptyset (blocked);
4965 sigemptyset (ignored);
4966 sprintf (fname, "/proc/%d/status", pid);
4967 procfile = fopen (fname, "r");
4968 if (procfile == NULL)
8a3fe4f8 4969 error (_("Could not open %s"), fname);
7c8a8b04 4970 cleanup = make_cleanup_fclose (procfile);
dba24537
AC
4971
4972 while (fgets (buffer, MAXPATHLEN, procfile) != NULL)
4973 {
4974 /* Normal queued signals are on the SigPnd line in the status
4975 file. However, 2.6 kernels also have a "shared" pending
4976 queue for delivering signals to a thread group, so check for
4977 a ShdPnd line also.
4978
4979 Unfortunately some Red Hat kernels include the shared pending
4980 queue but not the ShdPnd status field. */
4981
4982 if (strncmp (buffer, "SigPnd:\t", 8) == 0)
4983 add_line_to_sigset (buffer + 8, pending);
4984 else if (strncmp (buffer, "ShdPnd:\t", 8) == 0)
4985 add_line_to_sigset (buffer + 8, pending);
4986 else if (strncmp (buffer, "SigBlk:\t", 8) == 0)
4987 add_line_to_sigset (buffer + 8, blocked);
4988 else if (strncmp (buffer, "SigIgn:\t", 8) == 0)
4989 add_line_to_sigset (buffer + 8, ignored);
4990 }
4991
7c8a8b04 4992 do_cleanups (cleanup);
dba24537
AC
4993}
4994
07e059b5
VP
4995static LONGEST
4996linux_nat_xfer_osdata (struct target_ops *ops, enum target_object object,
e0881a8e
MS
4997 const char *annex, gdb_byte *readbuf,
4998 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
07e059b5
VP
4999{
5000 /* We make the process list snapshot when the object starts to be
5001 read. */
5002 static const char *buf;
5003 static LONGEST len_avail = -1;
5004 static struct obstack obstack;
5005
5006 DIR *dirp;
5007
5008 gdb_assert (object == TARGET_OBJECT_OSDATA);
5009
a61408f8
SS
5010 if (!annex)
5011 {
5012 if (offset == 0)
5013 {
5014 if (len_avail != -1 && len_avail != 0)
5015 obstack_free (&obstack, NULL);
5016 len_avail = 0;
5017 buf = NULL;
5018 obstack_init (&obstack);
5019 obstack_grow_str (&obstack, "<osdata type=\"types\">\n");
5020
5021 obstack_xml_printf (
5022 &obstack,
5023 "<item>"
5024 "<column name=\"Type\">processes</column>"
5025 "<column name=\"Description\">Listing of all processes</column>"
5026 "</item>");
5027
5028 obstack_grow_str0 (&obstack, "</osdata>\n");
5029 buf = obstack_finish (&obstack);
5030 len_avail = strlen (buf);
5031 }
5032
5033 if (offset >= len_avail)
5034 {
5035 /* Done. Get rid of the obstack. */
5036 obstack_free (&obstack, NULL);
5037 buf = NULL;
5038 len_avail = 0;
5039 return 0;
5040 }
5041
5042 if (len > len_avail - offset)
5043 len = len_avail - offset;
5044 memcpy (readbuf, buf + offset, len);
5045
5046 return len;
5047 }
5048
07e059b5
VP
5049 if (strcmp (annex, "processes") != 0)
5050 return 0;
5051
5052 gdb_assert (readbuf && !writebuf);
5053
5054 if (offset == 0)
5055 {
5056 if (len_avail != -1 && len_avail != 0)
e0881a8e 5057 obstack_free (&obstack, NULL);
07e059b5
VP
5058 len_avail = 0;
5059 buf = NULL;
5060 obstack_init (&obstack);
5061 obstack_grow_str (&obstack, "<osdata type=\"processes\">\n");
5062
5063 dirp = opendir ("/proc");
5064 if (dirp)
e0881a8e
MS
5065 {
5066 struct dirent *dp;
5067
5068 while ((dp = readdir (dirp)) != NULL)
5069 {
5070 struct stat statbuf;
5071 char procentry[sizeof ("/proc/4294967295")];
5072
5073 if (!isdigit (dp->d_name[0])
5074 || NAMELEN (dp) > sizeof ("4294967295") - 1)
5075 continue;
5076
5077 sprintf (procentry, "/proc/%s", dp->d_name);
5078 if (stat (procentry, &statbuf) == 0
5079 && S_ISDIR (statbuf.st_mode))
5080 {
5081 char *pathname;
5082 FILE *f;
5083 char cmd[MAXPATHLEN + 1];
5084 struct passwd *entry;
5085
5086 pathname = xstrprintf ("/proc/%s/cmdline", dp->d_name);
5087 entry = getpwuid (statbuf.st_uid);
5088
5089 if ((f = fopen (pathname, "r")) != NULL)
5090 {
5091 size_t len = fread (cmd, 1, sizeof (cmd) - 1, f);
5092
5093 if (len > 0)
5094 {
5095 int i;
5096
5097 for (i = 0; i < len; i++)
5098 if (cmd[i] == '\0')
5099 cmd[i] = ' ';
5100 cmd[len] = '\0';
5101
5102 obstack_xml_printf (
5103 &obstack,
5104 "<item>"
5105 "<column name=\"pid\">%s</column>"
5106 "<column name=\"user\">%s</column>"
5107 "<column name=\"command\">%s</column>"
5108 "</item>",
5109 dp->d_name,
5110 entry ? entry->pw_name : "?",
5111 cmd);
5112 }
5113 fclose (f);
5114 }
5115
5116 xfree (pathname);
5117 }
5118 }
5119
5120 closedir (dirp);
5121 }
07e059b5
VP
5122
5123 obstack_grow_str0 (&obstack, "</osdata>\n");
5124 buf = obstack_finish (&obstack);
5125 len_avail = strlen (buf);
5126 }
5127
5128 if (offset >= len_avail)
5129 {
5130 /* Done. Get rid of the obstack. */
5131 obstack_free (&obstack, NULL);
5132 buf = NULL;
5133 len_avail = 0;
5134 return 0;
5135 }
5136
5137 if (len > len_avail - offset)
5138 len = len_avail - offset;
5139 memcpy (readbuf, buf + offset, len);
5140
5141 return len;
5142}
5143
10d6c8cd
DJ
5144static LONGEST
5145linux_xfer_partial (struct target_ops *ops, enum target_object object,
5146 const char *annex, gdb_byte *readbuf,
5147 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
5148{
5149 LONGEST xfer;
5150
5151 if (object == TARGET_OBJECT_AUXV)
9f2982ff 5152 return memory_xfer_auxv (ops, object, annex, readbuf, writebuf,
10d6c8cd
DJ
5153 offset, len);
5154
07e059b5
VP
5155 if (object == TARGET_OBJECT_OSDATA)
5156 return linux_nat_xfer_osdata (ops, object, annex, readbuf, writebuf,
5157 offset, len);
5158
efcbbd14
UW
5159 if (object == TARGET_OBJECT_SPU)
5160 return linux_proc_xfer_spu (ops, object, annex, readbuf, writebuf,
5161 offset, len);
5162
8f313923
JK
5163 /* GDB calculates all the addresses in possibly larget width of the address.
5164 Address width needs to be masked before its final use - either by
5165 linux_proc_xfer_partial or inf_ptrace_xfer_partial.
5166
5167 Compare ADDR_BIT first to avoid a compiler warning on shift overflow. */
5168
5169 if (object == TARGET_OBJECT_MEMORY)
5170 {
5171 int addr_bit = gdbarch_addr_bit (target_gdbarch);
5172
5173 if (addr_bit < (sizeof (ULONGEST) * HOST_CHAR_BIT))
5174 offset &= ((ULONGEST) 1 << addr_bit) - 1;
5175 }
5176
10d6c8cd
DJ
5177 xfer = linux_proc_xfer_partial (ops, object, annex, readbuf, writebuf,
5178 offset, len);
5179 if (xfer != 0)
5180 return xfer;
5181
5182 return super_xfer_partial (ops, object, annex, readbuf, writebuf,
5183 offset, len);
5184}
5185
e9efe249 5186/* Create a prototype generic GNU/Linux target. The client can override
10d6c8cd
DJ
5187 it with local methods. */
5188
910122bf
UW
5189static void
5190linux_target_install_ops (struct target_ops *t)
10d6c8cd 5191{
6d8fd2b7
UW
5192 t->to_insert_fork_catchpoint = linux_child_insert_fork_catchpoint;
5193 t->to_insert_vfork_catchpoint = linux_child_insert_vfork_catchpoint;
5194 t->to_insert_exec_catchpoint = linux_child_insert_exec_catchpoint;
a96d9b2e 5195 t->to_set_syscall_catchpoint = linux_child_set_syscall_catchpoint;
6d8fd2b7 5196 t->to_pid_to_exec_file = linux_child_pid_to_exec_file;
10d6c8cd 5197 t->to_post_startup_inferior = linux_child_post_startup_inferior;
6d8fd2b7
UW
5198 t->to_post_attach = linux_child_post_attach;
5199 t->to_follow_fork = linux_child_follow_fork;
10d6c8cd
DJ
5200 t->to_find_memory_regions = linux_nat_find_memory_regions;
5201 t->to_make_corefile_notes = linux_nat_make_corefile_notes;
5202
5203 super_xfer_partial = t->to_xfer_partial;
5204 t->to_xfer_partial = linux_xfer_partial;
910122bf
UW
5205}
5206
5207struct target_ops *
5208linux_target (void)
5209{
5210 struct target_ops *t;
5211
5212 t = inf_ptrace_target ();
5213 linux_target_install_ops (t);
5214
5215 return t;
5216}
5217
5218struct target_ops *
7714d83a 5219linux_trad_target (CORE_ADDR (*register_u_offset)(struct gdbarch *, int, int))
910122bf
UW
5220{
5221 struct target_ops *t;
5222
5223 t = inf_ptrace_trad_target (register_u_offset);
5224 linux_target_install_ops (t);
10d6c8cd 5225
10d6c8cd
DJ
5226 return t;
5227}
5228
b84876c2
PA
5229/* target_is_async_p implementation. */
5230
5231static int
5232linux_nat_is_async_p (void)
5233{
5234 /* NOTE: palves 2008-03-21: We're only async when the user requests
7feb7d06 5235 it explicitly with the "set target-async" command.
b84876c2 5236 Someday, linux will always be async. */
c6ebd6cf 5237 if (!target_async_permitted)
b84876c2
PA
5238 return 0;
5239
d90e17a7
PA
5240 /* See target.h/target_async_mask. */
5241 return linux_nat_async_mask_value;
b84876c2
PA
5242}
5243
5244/* target_can_async_p implementation. */
5245
5246static int
5247linux_nat_can_async_p (void)
5248{
5249 /* NOTE: palves 2008-03-21: We're only async when the user requests
7feb7d06 5250 it explicitly with the "set target-async" command.
b84876c2 5251 Someday, linux will always be async. */
c6ebd6cf 5252 if (!target_async_permitted)
b84876c2
PA
5253 return 0;
5254
5255 /* See target.h/target_async_mask. */
5256 return linux_nat_async_mask_value;
5257}
5258
9908b566
VP
5259static int
5260linux_nat_supports_non_stop (void)
5261{
5262 return 1;
5263}
5264
d90e17a7
PA
5265/* True if we want to support multi-process. To be removed when GDB
5266 supports multi-exec. */
5267
2277426b 5268int linux_multi_process = 1;
d90e17a7
PA
5269
5270static int
5271linux_nat_supports_multi_process (void)
5272{
5273 return linux_multi_process;
5274}
5275
b84876c2
PA
5276/* target_async_mask implementation. */
5277
5278static int
7feb7d06 5279linux_nat_async_mask (int new_mask)
b84876c2 5280{
7feb7d06 5281 int curr_mask = linux_nat_async_mask_value;
b84876c2 5282
7feb7d06 5283 if (curr_mask != new_mask)
b84876c2 5284 {
7feb7d06 5285 if (new_mask == 0)
b84876c2
PA
5286 {
5287 linux_nat_async (NULL, 0);
7feb7d06 5288 linux_nat_async_mask_value = new_mask;
b84876c2
PA
5289 }
5290 else
5291 {
7feb7d06 5292 linux_nat_async_mask_value = new_mask;
84e46146 5293
7feb7d06
PA
5294 /* If we're going out of async-mask in all-stop, then the
5295 inferior is stopped. The next resume will call
5296 target_async. In non-stop, the target event source
5297 should be always registered in the event loop. Do so
5298 now. */
5299 if (non_stop)
5300 linux_nat_async (inferior_event_handler, 0);
b84876c2
PA
5301 }
5302 }
5303
7feb7d06 5304 return curr_mask;
b84876c2
PA
5305}
5306
5307static int async_terminal_is_ours = 1;
5308
5309/* target_terminal_inferior implementation. */
5310
5311static void
5312linux_nat_terminal_inferior (void)
5313{
5314 if (!target_is_async_p ())
5315 {
5316 /* Async mode is disabled. */
5317 terminal_inferior ();
5318 return;
5319 }
5320
b84876c2
PA
5321 terminal_inferior ();
5322
d9d2d8b6 5323 /* Calls to target_terminal_*() are meant to be idempotent. */
b84876c2
PA
5324 if (!async_terminal_is_ours)
5325 return;
5326
5327 delete_file_handler (input_fd);
5328 async_terminal_is_ours = 0;
5329 set_sigint_trap ();
5330}
5331
5332/* target_terminal_ours implementation. */
5333
2c0b251b 5334static void
b84876c2
PA
5335linux_nat_terminal_ours (void)
5336{
5337 if (!target_is_async_p ())
5338 {
5339 /* Async mode is disabled. */
5340 terminal_ours ();
5341 return;
5342 }
5343
5344 /* GDB should never give the terminal to the inferior if the
5345 inferior is running in the background (run&, continue&, etc.),
5346 but claiming it sure should. */
5347 terminal_ours ();
5348
b84876c2
PA
5349 if (async_terminal_is_ours)
5350 return;
5351
5352 clear_sigint_trap ();
5353 add_file_handler (input_fd, stdin_event_handler, 0);
5354 async_terminal_is_ours = 1;
5355}
5356
5357static void (*async_client_callback) (enum inferior_event_type event_type,
5358 void *context);
5359static void *async_client_context;
5360
7feb7d06
PA
5361/* SIGCHLD handler that serves two purposes: In non-stop/async mode,
5362 so we notice when any child changes state, and notify the
5363 event-loop; it allows us to use sigsuspend in linux_nat_wait_1
5364 above to wait for the arrival of a SIGCHLD. */
5365
b84876c2 5366static void
7feb7d06 5367sigchld_handler (int signo)
b84876c2 5368{
7feb7d06
PA
5369 int old_errno = errno;
5370
5371 if (debug_linux_nat_async)
5372 fprintf_unfiltered (gdb_stdlog, "sigchld\n");
5373
5374 if (signo == SIGCHLD
5375 && linux_nat_event_pipe[0] != -1)
5376 async_file_mark (); /* Let the event loop know that there are
5377 events to handle. */
5378
5379 errno = old_errno;
5380}
5381
5382/* Callback registered with the target events file descriptor. */
5383
5384static void
5385handle_target_event (int error, gdb_client_data client_data)
5386{
5387 (*async_client_callback) (INF_REG_EVENT, async_client_context);
5388}
5389
5390/* Create/destroy the target events pipe. Returns previous state. */
5391
5392static int
5393linux_async_pipe (int enable)
5394{
5395 int previous = (linux_nat_event_pipe[0] != -1);
5396
5397 if (previous != enable)
5398 {
5399 sigset_t prev_mask;
5400
5401 block_child_signals (&prev_mask);
5402
5403 if (enable)
5404 {
5405 if (pipe (linux_nat_event_pipe) == -1)
5406 internal_error (__FILE__, __LINE__,
5407 "creating event pipe failed.");
5408
5409 fcntl (linux_nat_event_pipe[0], F_SETFL, O_NONBLOCK);
5410 fcntl (linux_nat_event_pipe[1], F_SETFL, O_NONBLOCK);
5411 }
5412 else
5413 {
5414 close (linux_nat_event_pipe[0]);
5415 close (linux_nat_event_pipe[1]);
5416 linux_nat_event_pipe[0] = -1;
5417 linux_nat_event_pipe[1] = -1;
5418 }
5419
5420 restore_child_signals_mask (&prev_mask);
5421 }
5422
5423 return previous;
b84876c2
PA
5424}
5425
5426/* target_async implementation. */
5427
5428static void
5429linux_nat_async (void (*callback) (enum inferior_event_type event_type,
5430 void *context), void *context)
5431{
c6ebd6cf 5432 if (linux_nat_async_mask_value == 0 || !target_async_permitted)
b84876c2
PA
5433 internal_error (__FILE__, __LINE__,
5434 "Calling target_async when async is masked");
5435
5436 if (callback != NULL)
5437 {
5438 async_client_callback = callback;
5439 async_client_context = context;
7feb7d06
PA
5440 if (!linux_async_pipe (1))
5441 {
5442 add_file_handler (linux_nat_event_pipe[0],
5443 handle_target_event, NULL);
5444 /* There may be pending events to handle. Tell the event loop
5445 to poll them. */
5446 async_file_mark ();
5447 }
b84876c2
PA
5448 }
5449 else
5450 {
5451 async_client_callback = callback;
5452 async_client_context = context;
b84876c2 5453 delete_file_handler (linux_nat_event_pipe[0]);
7feb7d06 5454 linux_async_pipe (0);
b84876c2
PA
5455 }
5456 return;
5457}
5458
252fbfc8
PA
5459/* Stop an LWP, and push a TARGET_SIGNAL_0 stop status if no other
5460 event came out. */
5461
4c28f408 5462static int
252fbfc8 5463linux_nat_stop_lwp (struct lwp_info *lwp, void *data)
4c28f408 5464{
d90e17a7 5465 if (!lwp->stopped)
252fbfc8 5466 {
d90e17a7 5467 ptid_t ptid = lwp->ptid;
252fbfc8 5468
d90e17a7
PA
5469 if (debug_linux_nat)
5470 fprintf_unfiltered (gdb_stdlog,
5471 "LNSL: running -> suspending %s\n",
5472 target_pid_to_str (lwp->ptid));
252fbfc8 5473
252fbfc8 5474
d90e17a7
PA
5475 stop_callback (lwp, NULL);
5476 stop_wait_callback (lwp, NULL);
252fbfc8 5477
d90e17a7
PA
5478 /* If the lwp exits while we try to stop it, there's nothing
5479 else to do. */
5480 lwp = find_lwp_pid (ptid);
5481 if (lwp == NULL)
5482 return 0;
252fbfc8 5483
d90e17a7
PA
5484 /* If we didn't collect any signal other than SIGSTOP while
5485 stopping the LWP, push a SIGNAL_0 event. In either case, the
5486 event-loop will end up calling target_wait which will collect
5487 these. */
5488 if (lwp->status == 0)
5489 lwp->status = W_STOPCODE (0);
5490 async_file_mark ();
5491 }
5492 else
5493 {
5494 /* Already known to be stopped; do nothing. */
252fbfc8 5495
d90e17a7
PA
5496 if (debug_linux_nat)
5497 {
e09875d4 5498 if (find_thread_ptid (lwp->ptid)->stop_requested)
d90e17a7 5499 fprintf_unfiltered (gdb_stdlog, "\
252fbfc8 5500LNSL: already stopped/stop_requested %s\n",
d90e17a7
PA
5501 target_pid_to_str (lwp->ptid));
5502 else
5503 fprintf_unfiltered (gdb_stdlog, "\
252fbfc8 5504LNSL: already stopped/no stop_requested yet %s\n",
d90e17a7 5505 target_pid_to_str (lwp->ptid));
252fbfc8
PA
5506 }
5507 }
4c28f408
PA
5508 return 0;
5509}
5510
5511static void
5512linux_nat_stop (ptid_t ptid)
5513{
5514 if (non_stop)
d90e17a7 5515 iterate_over_lwps (ptid, linux_nat_stop_lwp, NULL);
4c28f408
PA
5516 else
5517 linux_ops->to_stop (ptid);
5518}
5519
d90e17a7
PA
5520static void
5521linux_nat_close (int quitting)
5522{
5523 /* Unregister from the event loop. */
5524 if (target_is_async_p ())
5525 target_async (NULL, 0);
5526
5527 /* Reset the async_masking. */
5528 linux_nat_async_mask_value = 1;
5529
5530 if (linux_ops->to_close)
5531 linux_ops->to_close (quitting);
5532}
5533
c0694254
PA
5534/* When requests are passed down from the linux-nat layer to the
5535 single threaded inf-ptrace layer, ptids of (lwpid,0,0) form are
5536 used. The address space pointer is stored in the inferior object,
5537 but the common code that is passed such ptid can't tell whether
5538 lwpid is a "main" process id or not (it assumes so). We reverse
5539 look up the "main" process id from the lwp here. */
5540
5541struct address_space *
5542linux_nat_thread_address_space (struct target_ops *t, ptid_t ptid)
5543{
5544 struct lwp_info *lwp;
5545 struct inferior *inf;
5546 int pid;
5547
5548 pid = GET_LWP (ptid);
5549 if (GET_LWP (ptid) == 0)
5550 {
5551 /* An (lwpid,0,0) ptid. Look up the lwp object to get at the
5552 tgid. */
5553 lwp = find_lwp_pid (ptid);
5554 pid = GET_PID (lwp->ptid);
5555 }
5556 else
5557 {
5558 /* A (pid,lwpid,0) ptid. */
5559 pid = GET_PID (ptid);
5560 }
5561
5562 inf = find_inferior_pid (pid);
5563 gdb_assert (inf != NULL);
5564 return inf->aspace;
5565}
5566
dc146f7c
VP
5567int
5568linux_nat_core_of_thread_1 (ptid_t ptid)
5569{
5570 struct cleanup *back_to;
5571 char *filename;
5572 FILE *f;
5573 char *content = NULL;
5574 char *p;
5575 char *ts = 0;
5576 int content_read = 0;
5577 int i;
5578 int core;
5579
5580 filename = xstrprintf ("/proc/%d/task/%ld/stat",
5581 GET_PID (ptid), GET_LWP (ptid));
5582 back_to = make_cleanup (xfree, filename);
5583
5584 f = fopen (filename, "r");
5585 if (!f)
5586 {
5587 do_cleanups (back_to);
5588 return -1;
5589 }
5590
5591 make_cleanup_fclose (f);
5592
5593 for (;;)
5594 {
5595 int n;
e0881a8e 5596
dc146f7c
VP
5597 content = xrealloc (content, content_read + 1024);
5598 n = fread (content + content_read, 1, 1024, f);
5599 content_read += n;
5600 if (n < 1024)
5601 {
5602 content[content_read] = '\0';
5603 break;
5604 }
5605 }
5606
5607 make_cleanup (xfree, content);
5608
5609 p = strchr (content, '(');
ca2a87a0
JK
5610
5611 /* Skip ")". */
5612 if (p != NULL)
5613 p = strchr (p, ')');
5614 if (p != NULL)
5615 p++;
dc146f7c
VP
5616
5617 /* If the first field after program name has index 0, then core number is
5618 the field with index 36. There's no constant for that anywhere. */
ca2a87a0
JK
5619 if (p != NULL)
5620 p = strtok_r (p, " ", &ts);
5621 for (i = 0; p != NULL && i != 36; ++i)
dc146f7c
VP
5622 p = strtok_r (NULL, " ", &ts);
5623
ca2a87a0 5624 if (p == NULL || sscanf (p, "%d", &core) == 0)
dc146f7c
VP
5625 core = -1;
5626
5627 do_cleanups (back_to);
5628
5629 return core;
5630}
5631
5632/* Return the cached value of the processor core for thread PTID. */
5633
5634int
5635linux_nat_core_of_thread (struct target_ops *ops, ptid_t ptid)
5636{
5637 struct lwp_info *info = find_lwp_pid (ptid);
e0881a8e 5638
dc146f7c
VP
5639 if (info)
5640 return info->core;
5641 return -1;
5642}
5643
f973ed9c
DJ
5644void
5645linux_nat_add_target (struct target_ops *t)
5646{
f973ed9c
DJ
5647 /* Save the provided single-threaded target. We save this in a separate
5648 variable because another target we've inherited from (e.g. inf-ptrace)
5649 may have saved a pointer to T; we want to use it for the final
5650 process stratum target. */
5651 linux_ops_saved = *t;
5652 linux_ops = &linux_ops_saved;
5653
5654 /* Override some methods for multithreading. */
b84876c2 5655 t->to_create_inferior = linux_nat_create_inferior;
f973ed9c
DJ
5656 t->to_attach = linux_nat_attach;
5657 t->to_detach = linux_nat_detach;
5658 t->to_resume = linux_nat_resume;
5659 t->to_wait = linux_nat_wait;
5660 t->to_xfer_partial = linux_nat_xfer_partial;
5661 t->to_kill = linux_nat_kill;
5662 t->to_mourn_inferior = linux_nat_mourn_inferior;
5663 t->to_thread_alive = linux_nat_thread_alive;
5664 t->to_pid_to_str = linux_nat_pid_to_str;
5665 t->to_has_thread_control = tc_schedlock;
c0694254 5666 t->to_thread_address_space = linux_nat_thread_address_space;
ebec9a0f
PA
5667 t->to_stopped_by_watchpoint = linux_nat_stopped_by_watchpoint;
5668 t->to_stopped_data_address = linux_nat_stopped_data_address;
f973ed9c 5669
b84876c2
PA
5670 t->to_can_async_p = linux_nat_can_async_p;
5671 t->to_is_async_p = linux_nat_is_async_p;
9908b566 5672 t->to_supports_non_stop = linux_nat_supports_non_stop;
b84876c2
PA
5673 t->to_async = linux_nat_async;
5674 t->to_async_mask = linux_nat_async_mask;
5675 t->to_terminal_inferior = linux_nat_terminal_inferior;
5676 t->to_terminal_ours = linux_nat_terminal_ours;
d90e17a7 5677 t->to_close = linux_nat_close;
b84876c2 5678
4c28f408
PA
5679 /* Methods for non-stop support. */
5680 t->to_stop = linux_nat_stop;
5681
d90e17a7
PA
5682 t->to_supports_multi_process = linux_nat_supports_multi_process;
5683
dc146f7c
VP
5684 t->to_core_of_thread = linux_nat_core_of_thread;
5685
f973ed9c
DJ
5686 /* We don't change the stratum; this target will sit at
5687 process_stratum and thread_db will set at thread_stratum. This
5688 is a little strange, since this is a multi-threaded-capable
5689 target, but we want to be on the stack below thread_db, and we
5690 also want to be used for single-threaded processes. */
5691
5692 add_target (t);
f973ed9c
DJ
5693}
5694
9f0bdab8
DJ
5695/* Register a method to call whenever a new thread is attached. */
5696void
5697linux_nat_set_new_thread (struct target_ops *t, void (*new_thread) (ptid_t))
5698{
5699 /* Save the pointer. We only support a single registered instance
5700 of the GNU/Linux native target, so we do not need to map this to
5701 T. */
5702 linux_nat_new_thread = new_thread;
5703}
5704
5b009018
PA
5705/* Register a method that converts a siginfo object between the layout
5706 that ptrace returns, and the layout in the architecture of the
5707 inferior. */
5708void
5709linux_nat_set_siginfo_fixup (struct target_ops *t,
5710 int (*siginfo_fixup) (struct siginfo *,
5711 gdb_byte *,
5712 int))
5713{
5714 /* Save the pointer. */
5715 linux_nat_siginfo_fixup = siginfo_fixup;
5716}
5717
9f0bdab8
DJ
5718/* Return the saved siginfo associated with PTID. */
5719struct siginfo *
5720linux_nat_get_siginfo (ptid_t ptid)
5721{
5722 struct lwp_info *lp = find_lwp_pid (ptid);
5723
5724 gdb_assert (lp != NULL);
5725
5726 return &lp->siginfo;
5727}
5728
2c0b251b
PA
5729/* Provide a prototype to silence -Wmissing-prototypes. */
5730extern initialize_file_ftype _initialize_linux_nat;
5731
d6b0e80f
AC
5732void
5733_initialize_linux_nat (void)
5734{
1bedd215
AC
5735 add_info ("proc", linux_nat_info_proc_cmd, _("\
5736Show /proc process information about any running process.\n\
dba24537
AC
5737Specify any process id, or use the program being debugged by default.\n\
5738Specify any of the following keywords for detailed info:\n\
5739 mappings -- list of mapped memory regions.\n\
5740 stat -- list a bunch of random process info.\n\
5741 status -- list a different bunch of random process info.\n\
1bedd215 5742 all -- list all available /proc info."));
d6b0e80f 5743
b84876c2
PA
5744 add_setshow_zinteger_cmd ("lin-lwp", class_maintenance,
5745 &debug_linux_nat, _("\
5746Set debugging of GNU/Linux lwp module."), _("\
5747Show debugging of GNU/Linux lwp module."), _("\
5748Enables printf debugging output."),
5749 NULL,
5750 show_debug_linux_nat,
5751 &setdebuglist, &showdebuglist);
5752
5753 add_setshow_zinteger_cmd ("lin-lwp-async", class_maintenance,
5754 &debug_linux_nat_async, _("\
5755Set debugging of GNU/Linux async lwp module."), _("\
5756Show debugging of GNU/Linux async lwp module."), _("\
5757Enables printf debugging output."),
5758 NULL,
5759 show_debug_linux_nat_async,
5760 &setdebuglist, &showdebuglist);
5761
b84876c2 5762 /* Save this mask as the default. */
d6b0e80f
AC
5763 sigprocmask (SIG_SETMASK, NULL, &normal_mask);
5764
7feb7d06
PA
5765 /* Install a SIGCHLD handler. */
5766 sigchld_action.sa_handler = sigchld_handler;
5767 sigemptyset (&sigchld_action.sa_mask);
5768 sigchld_action.sa_flags = SA_RESTART;
b84876c2
PA
5769
5770 /* Make it the default. */
7feb7d06 5771 sigaction (SIGCHLD, &sigchld_action, NULL);
d6b0e80f
AC
5772
5773 /* Make sure we don't block SIGCHLD during a sigsuspend. */
5774 sigprocmask (SIG_SETMASK, NULL, &suspend_mask);
5775 sigdelset (&suspend_mask, SIGCHLD);
5776
7feb7d06 5777 sigemptyset (&blocked_mask);
10568435
JK
5778
5779 add_setshow_boolean_cmd ("disable-randomization", class_support,
5780 &disable_randomization, _("\
5781Set disabling of debuggee's virtual address space randomization."), _("\
5782Show disabling of debuggee's virtual address space randomization."), _("\
5783When this mode is on (which is the default), randomization of the virtual\n\
5784address space is disabled. Standalone programs run with the randomization\n\
5785enabled by default on some platforms."),
5786 &set_disable_randomization,
5787 &show_disable_randomization,
5788 &setlist, &showlist);
d6b0e80f
AC
5789}
5790\f
5791
5792/* FIXME: kettenis/2000-08-26: The stuff on this page is specific to
5793 the GNU/Linux Threads library and therefore doesn't really belong
5794 here. */
5795
5796/* Read variable NAME in the target and return its value if found.
5797 Otherwise return zero. It is assumed that the type of the variable
5798 is `int'. */
5799
5800static int
5801get_signo (const char *name)
5802{
5803 struct minimal_symbol *ms;
5804 int signo;
5805
5806 ms = lookup_minimal_symbol (name, NULL, NULL);
5807 if (ms == NULL)
5808 return 0;
5809
8e70166d 5810 if (target_read_memory (SYMBOL_VALUE_ADDRESS (ms), (gdb_byte *) &signo,
d6b0e80f
AC
5811 sizeof (signo)) != 0)
5812 return 0;
5813
5814 return signo;
5815}
5816
5817/* Return the set of signals used by the threads library in *SET. */
5818
5819void
5820lin_thread_get_thread_signals (sigset_t *set)
5821{
5822 struct sigaction action;
5823 int restart, cancel;
5824
b84876c2 5825 sigemptyset (&blocked_mask);
d6b0e80f
AC
5826 sigemptyset (set);
5827
5828 restart = get_signo ("__pthread_sig_restart");
17fbb0bd
DJ
5829 cancel = get_signo ("__pthread_sig_cancel");
5830
5831 /* LinuxThreads normally uses the first two RT signals, but in some legacy
5832 cases may use SIGUSR1/SIGUSR2. NPTL always uses RT signals, but does
5833 not provide any way for the debugger to query the signal numbers -
5834 fortunately they don't change! */
5835
d6b0e80f 5836 if (restart == 0)
17fbb0bd 5837 restart = __SIGRTMIN;
d6b0e80f 5838
d6b0e80f 5839 if (cancel == 0)
17fbb0bd 5840 cancel = __SIGRTMIN + 1;
d6b0e80f
AC
5841
5842 sigaddset (set, restart);
5843 sigaddset (set, cancel);
5844
5845 /* The GNU/Linux Threads library makes terminating threads send a
5846 special "cancel" signal instead of SIGCHLD. Make sure we catch
5847 those (to prevent them from terminating GDB itself, which is
5848 likely to be their default action) and treat them the same way as
5849 SIGCHLD. */
5850
5851 action.sa_handler = sigchld_handler;
5852 sigemptyset (&action.sa_mask);
58aecb61 5853 action.sa_flags = SA_RESTART;
d6b0e80f
AC
5854 sigaction (cancel, &action, NULL);
5855
5856 /* We block the "cancel" signal throughout this code ... */
5857 sigaddset (&blocked_mask, cancel);
5858 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
5859
5860 /* ... except during a sigsuspend. */
5861 sigdelset (&suspend_mask, cancel);
5862}
This page took 0.895925 seconds and 4 git commands to generate.