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