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