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