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