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