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