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