1 /* GNU/Linux native-dependent code common to multiple platforms.
3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "gdb_string.h"
26 #include "gdb_assert.h"
27 #ifdef HAVE_TKILL_SYSCALL
29 #include <sys/syscall.h>
31 #include <sys/ptrace.h>
32 #include "linux-nat.h"
33 #include "linux-fork.h"
34 #include "gdbthread.h"
38 #include "inf-ptrace.h"
40 #include <sys/param.h> /* for MAXPATHLEN */
41 #include <sys/procfs.h> /* for elf_gregset etc. */
42 #include "elf-bfd.h" /* for elfcore_write_* */
43 #include "gregset.h" /* for gregset */
44 #include "gdbcore.h" /* for get_exec_file */
45 #include <ctype.h> /* for isdigit */
46 #include "gdbthread.h" /* for struct thread_info etc. */
47 #include "gdb_stat.h" /* for struct stat */
48 #include <fcntl.h> /* for O_RDONLY */
50 #include "event-loop.h"
51 #include "event-top.h"
53 #include <sys/types.h>
54 #include "gdb_dirent.h"
55 #include "xml-support.h"
61 #define SPUFS_MAGIC 0x23c9b64e
64 #ifdef HAVE_PERSONALITY
65 # include <sys/personality.h>
66 # if !HAVE_DECL_ADDR_NO_RANDOMIZE
67 # define ADDR_NO_RANDOMIZE 0x0040000
69 #endif /* HAVE_PERSONALITY */
71 /* This comment documents high-level logic of this file.
73 Waiting for events in sync mode
74 ===============================
76 When waiting for an event in a specific thread, we just use waitpid, passing
77 the specific pid, and not passing WNOHANG.
79 When waiting for an event in all threads, waitpid is not quite good. Prior to
80 version 2.4, Linux can either wait for event in main thread, or in secondary
81 threads. (2.4 has the __WALL flag). So, if we use blocking waitpid, we might
82 miss an event. The solution is to use non-blocking waitpid, together with
83 sigsuspend. First, we use non-blocking waitpid to get an event in the main
84 process, if any. Second, we use non-blocking waitpid with the __WCLONED
85 flag to check for events in cloned processes. If nothing is found, we use
86 sigsuspend to wait for SIGCHLD. When SIGCHLD arrives, it means something
87 happened to a child process -- and SIGCHLD will be delivered both for events
88 in main debugged process and in cloned processes. As soon as we know there's
89 an event, we get back to calling nonblocking waitpid with and without __WCLONED.
91 Note that SIGCHLD should be blocked between waitpid and sigsuspend calls,
92 so that we don't miss a signal. If SIGCHLD arrives in between, when it's
93 blocked, the signal becomes pending and sigsuspend immediately
94 notices it and returns.
96 Waiting for events in async mode
97 ================================
99 In async mode, GDB should always be ready to handle both user input
100 and target events, so neither blocking waitpid nor sigsuspend are
101 viable options. Instead, we should asynchronously notify the GDB main
102 event loop whenever there's an unprocessed event from the target. We
103 detect asynchronous target events by handling SIGCHLD signals. To
104 notify the event loop about target events, the self-pipe trick is used
105 --- a pipe is registered as waitable event source in the event loop,
106 the event loop select/poll's on the read end of this pipe (as well on
107 other event sources, e.g., stdin), and the SIGCHLD handler writes a
108 byte to this pipe. This is more portable than relying on
109 pselect/ppoll, since on kernels that lack those syscalls, libc
110 emulates them with select/poll+sigprocmask, and that is racy
111 (a.k.a. plain broken).
113 Obviously, if we fail to notify the event loop if there's a target
114 event, it's bad. OTOH, if we notify the event loop when there's no
115 event from the target, linux_nat_wait will detect that there's no real
116 event to report, and return event of type TARGET_WAITKIND_IGNORE.
117 This is mostly harmless, but it will waste time and is better avoided.
119 The main design point is that every time GDB is outside linux-nat.c,
120 we have a SIGCHLD handler installed that is called when something
121 happens to the target and notifies the GDB event loop. Whenever GDB
122 core decides to handle the event, and calls into linux-nat.c, we
123 process things as in sync mode, except that the we never block in
126 While processing an event, we may end up momentarily blocked in
127 waitpid calls. Those waitpid calls, while blocking, are guarantied to
128 return quickly. E.g., in all-stop mode, before reporting to the core
129 that an LWP hit a breakpoint, all LWPs are stopped by sending them
130 SIGSTOP, and synchronously waiting for the SIGSTOP to be reported.
131 Note that this is different from blocking indefinitely waiting for the
132 next event --- here, we're already handling an event.
137 We stop threads by sending a SIGSTOP. The use of SIGSTOP instead of another
138 signal is not entirely significant; we just need for a signal to be delivered,
139 so that we can intercept it. SIGSTOP's advantage is that it can not be
140 blocked. A disadvantage is that it is not a real-time signal, so it can only
141 be queued once; we do not keep track of other sources of SIGSTOP.
143 Two other signals that can't be blocked are SIGCONT and SIGKILL. But we can't
144 use them, because they have special behavior when the signal is generated -
145 not when it is delivered. SIGCONT resumes the entire thread group and SIGKILL
146 kills the entire thread group.
148 A delivered SIGSTOP would stop the entire thread group, not just the thread we
149 tkill'd. But we never let the SIGSTOP be delivered; we always intercept and
150 cancel it (by PTRACE_CONT without passing SIGSTOP).
152 We could use a real-time signal instead. This would solve those problems; we
153 could use PTRACE_GETSIGINFO to locate the specific stop signals sent by GDB.
154 But we would still have to have some support for SIGSTOP, since PTRACE_ATTACH
155 generates it, and there are races with trying to find a signal that is not
159 #define O_LARGEFILE 0
162 /* If the system headers did not provide the constants, hard-code the normal
164 #ifndef PTRACE_EVENT_FORK
166 #define PTRACE_SETOPTIONS 0x4200
167 #define PTRACE_GETEVENTMSG 0x4201
169 /* options set using PTRACE_SETOPTIONS */
170 #define PTRACE_O_TRACESYSGOOD 0x00000001
171 #define PTRACE_O_TRACEFORK 0x00000002
172 #define PTRACE_O_TRACEVFORK 0x00000004
173 #define PTRACE_O_TRACECLONE 0x00000008
174 #define PTRACE_O_TRACEEXEC 0x00000010
175 #define PTRACE_O_TRACEVFORKDONE 0x00000020
176 #define PTRACE_O_TRACEEXIT 0x00000040
178 /* Wait extended result codes for the above trace options. */
179 #define PTRACE_EVENT_FORK 1
180 #define PTRACE_EVENT_VFORK 2
181 #define PTRACE_EVENT_CLONE 3
182 #define PTRACE_EVENT_EXEC 4
183 #define PTRACE_EVENT_VFORK_DONE 5
184 #define PTRACE_EVENT_EXIT 6
186 #endif /* PTRACE_EVENT_FORK */
188 /* Unlike other extended result codes, WSTOPSIG (status) on
189 PTRACE_O_TRACESYSGOOD syscall events doesn't return SIGTRAP, but
190 instead SIGTRAP with bit 7 set. */
191 #define SYSCALL_SIGTRAP (SIGTRAP | 0x80)
193 /* We can't always assume that this flag is available, but all systems
194 with the ptrace event handlers also have __WALL, so it's safe to use
197 #define __WALL 0x40000000 /* Wait for any child. */
200 #ifndef PTRACE_GETSIGINFO
201 # define PTRACE_GETSIGINFO 0x4202
202 # define PTRACE_SETSIGINFO 0x4203
205 /* The single-threaded native GNU/Linux target_ops. We save a pointer for
206 the use of the multi-threaded target. */
207 static struct target_ops *linux_ops;
208 static struct target_ops linux_ops_saved;
210 /* The method to call, if any, when a new thread is attached. */
211 static void (*linux_nat_new_thread) (ptid_t);
213 /* The method to call, if any, when the siginfo object needs to be
214 converted between the layout returned by ptrace, and the layout in
215 the architecture of the inferior. */
216 static int (*linux_nat_siginfo_fixup) (struct siginfo *,
220 /* The saved to_xfer_partial method, inherited from inf-ptrace.c.
221 Called by our to_xfer_partial. */
222 static LONGEST (*super_xfer_partial) (struct target_ops *,
224 const char *, gdb_byte *,
228 static int debug_linux_nat;
230 show_debug_linux_nat (struct ui_file *file, int from_tty,
231 struct cmd_list_element *c, const char *value)
233 fprintf_filtered (file, _("Debugging of GNU/Linux lwp module is %s.\n"),
237 static int debug_linux_nat_async = 0;
239 show_debug_linux_nat_async (struct ui_file *file, int from_tty,
240 struct cmd_list_element *c, const char *value)
242 fprintf_filtered (file, _("Debugging of GNU/Linux async lwp module is %s.\n"),
246 static int disable_randomization = 1;
249 show_disable_randomization (struct ui_file *file, int from_tty,
250 struct cmd_list_element *c, const char *value)
252 #ifdef HAVE_PERSONALITY
253 fprintf_filtered (file, _("\
254 Disabling randomization of debuggee's virtual address space is %s.\n"),
256 #else /* !HAVE_PERSONALITY */
258 Disabling randomization of debuggee's virtual address space is unsupported on\n\
259 this platform.\n"), file);
260 #endif /* !HAVE_PERSONALITY */
264 set_disable_randomization (char *args, int from_tty, struct cmd_list_element *c)
266 #ifndef HAVE_PERSONALITY
268 Disabling randomization of debuggee's virtual address space is unsupported on\n\
270 #endif /* !HAVE_PERSONALITY */
273 static int linux_parent_pid;
275 struct simple_pid_list
279 struct simple_pid_list *next;
281 struct simple_pid_list *stopped_pids;
283 /* This variable is a tri-state flag: -1 for unknown, 0 if PTRACE_O_TRACEFORK
284 can not be used, 1 if it can. */
286 static int linux_supports_tracefork_flag = -1;
288 /* This variable is a tri-state flag: -1 for unknown, 0 if PTRACE_O_TRACESYSGOOD
289 can not be used, 1 if it can. */
291 static int linux_supports_tracesysgood_flag = -1;
293 /* If we have PTRACE_O_TRACEFORK, this flag indicates whether we also have
294 PTRACE_O_TRACEVFORKDONE. */
296 static int linux_supports_tracevforkdone_flag = -1;
298 /* Async mode support */
300 /* Zero if the async mode, although enabled, is masked, which means
301 linux_nat_wait should behave as if async mode was off. */
302 static int linux_nat_async_mask_value = 1;
304 /* Stores the current used ptrace() options. */
305 static int current_ptrace_options = 0;
307 /* The read/write ends of the pipe registered as waitable file in the
309 static int linux_nat_event_pipe[2] = { -1, -1 };
311 /* Flush the event pipe. */
314 async_file_flush (void)
321 ret = read (linux_nat_event_pipe[0], &buf, 1);
323 while (ret >= 0 || (ret == -1 && errno == EINTR));
326 /* Put something (anything, doesn't matter what, or how much) in event
327 pipe, so that the select/poll in the event-loop realizes we have
328 something to process. */
331 async_file_mark (void)
335 /* It doesn't really matter what the pipe contains, as long we end
336 up with something in it. Might as well flush the previous
342 ret = write (linux_nat_event_pipe[1], "+", 1);
344 while (ret == -1 && errno == EINTR);
346 /* Ignore EAGAIN. If the pipe is full, the event loop will already
347 be awakened anyway. */
350 static void linux_nat_async (void (*callback)
351 (enum inferior_event_type event_type, void *context),
353 static int linux_nat_async_mask (int mask);
354 static int kill_lwp (int lwpid, int signo);
356 static int stop_callback (struct lwp_info *lp, void *data);
358 static void block_child_signals (sigset_t *prev_mask);
359 static void restore_child_signals_mask (sigset_t *prev_mask);
362 static struct lwp_info *add_lwp (ptid_t ptid);
363 static void purge_lwp_list (int pid);
364 static struct lwp_info *find_lwp_pid (ptid_t ptid);
367 /* Trivial list manipulation functions to keep track of a list of
368 new stopped processes. */
370 add_to_pid_list (struct simple_pid_list **listp, int pid, int status)
372 struct simple_pid_list *new_pid = xmalloc (sizeof (struct simple_pid_list));
374 new_pid->status = status;
375 new_pid->next = *listp;
380 pull_pid_from_list (struct simple_pid_list **listp, int pid, int *status)
382 struct simple_pid_list **p;
384 for (p = listp; *p != NULL; p = &(*p)->next)
385 if ((*p)->pid == pid)
387 struct simple_pid_list *next = (*p)->next;
388 *status = (*p)->status;
397 linux_record_stopped_pid (int pid, int status)
399 add_to_pid_list (&stopped_pids, pid, status);
403 /* A helper function for linux_test_for_tracefork, called after fork (). */
406 linux_tracefork_child (void)
410 ptrace (PTRACE_TRACEME, 0, 0, 0);
411 kill (getpid (), SIGSTOP);
416 /* Wrapper function for waitpid which handles EINTR. */
419 my_waitpid (int pid, int *status, int flags)
425 ret = waitpid (pid, status, flags);
427 while (ret == -1 && errno == EINTR);
432 /* Determine if PTRACE_O_TRACEFORK can be used to follow fork events.
434 First, we try to enable fork tracing on ORIGINAL_PID. If this fails,
435 we know that the feature is not available. This may change the tracing
436 options for ORIGINAL_PID, but we'll be setting them shortly anyway.
438 However, if it succeeds, we don't know for sure that the feature is
439 available; old versions of PTRACE_SETOPTIONS ignored unknown options. We
440 create a child process, attach to it, use PTRACE_SETOPTIONS to enable
441 fork tracing, and let it fork. If the process exits, we assume that we
442 can't use TRACEFORK; if we get the fork notification, and we can extract
443 the new child's PID, then we assume that we can. */
446 linux_test_for_tracefork (int original_pid)
448 int child_pid, ret, status;
452 /* We don't want those ptrace calls to be interrupted. */
453 block_child_signals (&prev_mask);
455 linux_supports_tracefork_flag = 0;
456 linux_supports_tracevforkdone_flag = 0;
458 ret = ptrace (PTRACE_SETOPTIONS, original_pid, 0, PTRACE_O_TRACEFORK);
461 restore_child_signals_mask (&prev_mask);
467 perror_with_name (("fork"));
470 linux_tracefork_child ();
472 ret = my_waitpid (child_pid, &status, 0);
474 perror_with_name (("waitpid"));
475 else if (ret != child_pid)
476 error (_("linux_test_for_tracefork: waitpid: unexpected result %d."), ret);
477 if (! WIFSTOPPED (status))
478 error (_("linux_test_for_tracefork: waitpid: unexpected status %d."), status);
480 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0, PTRACE_O_TRACEFORK);
483 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
486 warning (_("linux_test_for_tracefork: failed to kill child"));
487 restore_child_signals_mask (&prev_mask);
491 ret = my_waitpid (child_pid, &status, 0);
492 if (ret != child_pid)
493 warning (_("linux_test_for_tracefork: failed to wait for killed child"));
494 else if (!WIFSIGNALED (status))
495 warning (_("linux_test_for_tracefork: unexpected wait status 0x%x from "
496 "killed child"), status);
498 restore_child_signals_mask (&prev_mask);
502 /* Check whether PTRACE_O_TRACEVFORKDONE is available. */
503 ret = ptrace (PTRACE_SETOPTIONS, child_pid, 0,
504 PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORKDONE);
505 linux_supports_tracevforkdone_flag = (ret == 0);
507 ret = ptrace (PTRACE_CONT, child_pid, 0, 0);
509 warning (_("linux_test_for_tracefork: failed to resume child"));
511 ret = my_waitpid (child_pid, &status, 0);
513 if (ret == child_pid && WIFSTOPPED (status)
514 && status >> 16 == PTRACE_EVENT_FORK)
517 ret = ptrace (PTRACE_GETEVENTMSG, child_pid, 0, &second_pid);
518 if (ret == 0 && second_pid != 0)
522 linux_supports_tracefork_flag = 1;
523 my_waitpid (second_pid, &second_status, 0);
524 ret = ptrace (PTRACE_KILL, second_pid, 0, 0);
526 warning (_("linux_test_for_tracefork: failed to kill second child"));
527 my_waitpid (second_pid, &status, 0);
531 warning (_("linux_test_for_tracefork: unexpected result from waitpid "
532 "(%d, status 0x%x)"), ret, status);
534 ret = ptrace (PTRACE_KILL, child_pid, 0, 0);
536 warning (_("linux_test_for_tracefork: failed to kill child"));
537 my_waitpid (child_pid, &status, 0);
539 restore_child_signals_mask (&prev_mask);
542 /* Determine if PTRACE_O_TRACESYSGOOD can be used to follow syscalls.
544 We try to enable syscall tracing on ORIGINAL_PID. If this fails,
545 we know that the feature is not available. This may change the tracing
546 options for ORIGINAL_PID, but we'll be setting them shortly anyway. */
549 linux_test_for_tracesysgood (int original_pid)
554 /* We don't want those ptrace calls to be interrupted. */
555 block_child_signals (&prev_mask);
557 linux_supports_tracesysgood_flag = 0;
559 ret = ptrace (PTRACE_SETOPTIONS, original_pid, 0, PTRACE_O_TRACESYSGOOD);
563 linux_supports_tracesysgood_flag = 1;
565 restore_child_signals_mask (&prev_mask);
568 /* Determine wether we support PTRACE_O_TRACESYSGOOD option available.
569 This function also sets linux_supports_tracesysgood_flag. */
572 linux_supports_tracesysgood (int pid)
574 if (linux_supports_tracesysgood_flag == -1)
575 linux_test_for_tracesysgood (pid);
576 return linux_supports_tracesysgood_flag;
579 /* Return non-zero iff we have tracefork functionality available.
580 This function also sets linux_supports_tracefork_flag. */
583 linux_supports_tracefork (int pid)
585 if (linux_supports_tracefork_flag == -1)
586 linux_test_for_tracefork (pid);
587 return linux_supports_tracefork_flag;
591 linux_supports_tracevforkdone (int pid)
593 if (linux_supports_tracefork_flag == -1)
594 linux_test_for_tracefork (pid);
595 return linux_supports_tracevforkdone_flag;
599 linux_enable_tracesysgood (ptid_t ptid)
601 int pid = ptid_get_lwp (ptid);
604 pid = ptid_get_pid (ptid);
606 if (linux_supports_tracesysgood (pid) == 0)
609 current_ptrace_options |= PTRACE_O_TRACESYSGOOD;
611 ptrace (PTRACE_SETOPTIONS, pid, 0, current_ptrace_options);
616 linux_enable_event_reporting (ptid_t ptid)
618 int pid = ptid_get_lwp (ptid);
621 pid = ptid_get_pid (ptid);
623 if (! linux_supports_tracefork (pid))
626 current_ptrace_options |= PTRACE_O_TRACEFORK | PTRACE_O_TRACEVFORK
627 | PTRACE_O_TRACEEXEC | PTRACE_O_TRACECLONE;
629 if (linux_supports_tracevforkdone (pid))
630 current_ptrace_options |= PTRACE_O_TRACEVFORKDONE;
632 /* Do not enable PTRACE_O_TRACEEXIT until GDB is more prepared to support
633 read-only process state. */
635 ptrace (PTRACE_SETOPTIONS, pid, 0, current_ptrace_options);
639 linux_child_post_attach (int pid)
641 linux_enable_event_reporting (pid_to_ptid (pid));
642 check_for_thread_db ();
643 linux_enable_tracesysgood (pid_to_ptid (pid));
647 linux_child_post_startup_inferior (ptid_t ptid)
649 linux_enable_event_reporting (ptid);
650 check_for_thread_db ();
651 linux_enable_tracesysgood (ptid);
655 linux_child_follow_fork (struct target_ops *ops, int follow_child)
659 int parent_pid, child_pid;
661 block_child_signals (&prev_mask);
663 has_vforked = (inferior_thread ()->pending_follow.kind
664 == TARGET_WAITKIND_VFORKED);
665 parent_pid = ptid_get_lwp (inferior_ptid);
667 parent_pid = ptid_get_pid (inferior_ptid);
668 child_pid = PIDGET (inferior_thread ()->pending_follow.value.related_pid);
671 linux_enable_event_reporting (pid_to_ptid (child_pid));
674 && !non_stop /* Non-stop always resumes both branches. */
675 && (!target_is_async_p () || sync_execution)
676 && !(follow_child || detach_fork || sched_multi))
678 /* The parent stays blocked inside the vfork syscall until the
679 child execs or exits. If we don't let the child run, then
680 the parent stays blocked. If we're telling the parent to run
681 in the foreground, the user will not be able to ctrl-c to get
682 back the terminal, effectively hanging the debug session. */
683 fprintf_filtered (gdb_stderr, _("\
684 Can not resume the parent process over vfork in the foreground while \n\
685 holding the child stopped. Try \"set detach-on-fork\" or \
686 \"set schedule-multiple\".\n"));
692 struct lwp_info *child_lp = NULL;
694 /* We're already attached to the parent, by default. */
696 /* Detach new forked process? */
699 /* Before detaching from the child, remove all breakpoints
700 from it. If we forked, then this has already been taken
701 care of by infrun.c. If we vforked however, any
702 breakpoint inserted in the parent is visible in the
703 child, even those added while stopped in a vfork
704 catchpoint. This will remove the breakpoints from the
705 parent also, but they'll be reinserted below. */
708 /* keep breakpoints list in sync. */
709 remove_breakpoints_pid (GET_PID (inferior_ptid));
712 if (info_verbose || debug_linux_nat)
714 target_terminal_ours ();
715 fprintf_filtered (gdb_stdlog,
716 "Detaching after fork from child process %d.\n",
720 ptrace (PTRACE_DETACH, child_pid, 0, 0);
724 struct inferior *parent_inf, *child_inf;
725 struct cleanup *old_chain;
727 /* Add process to GDB's tables. */
728 child_inf = add_inferior (child_pid);
730 parent_inf = current_inferior ();
731 child_inf->attach_flag = parent_inf->attach_flag;
732 copy_terminal_info (child_inf, parent_inf);
734 old_chain = save_inferior_ptid ();
735 save_current_program_space ();
737 inferior_ptid = ptid_build (child_pid, child_pid, 0);
738 add_thread (inferior_ptid);
739 child_lp = add_lwp (inferior_ptid);
740 child_lp->stopped = 1;
741 child_lp->resumed = 1;
743 /* If this is a vfork child, then the address-space is
744 shared with the parent. */
747 child_inf->pspace = parent_inf->pspace;
748 child_inf->aspace = parent_inf->aspace;
750 /* The parent will be frozen until the child is done
751 with the shared region. Keep track of the
753 child_inf->vfork_parent = parent_inf;
754 child_inf->pending_detach = 0;
755 parent_inf->vfork_child = child_inf;
756 parent_inf->pending_detach = 0;
760 child_inf->aspace = new_address_space ();
761 child_inf->pspace = add_program_space (child_inf->aspace);
762 child_inf->removable = 1;
763 set_current_program_space (child_inf->pspace);
764 clone_program_space (child_inf->pspace, parent_inf->pspace);
766 /* Let the shared library layer (solib-svr4) learn about
767 this new process, relocate the cloned exec, pull in
768 shared libraries, and install the solib event
769 breakpoint. If a "cloned-VM" event was propagated
770 better throughout the core, this wouldn't be
772 solib_create_inferior_hook (0);
775 /* Let the thread_db layer learn about this new process. */
776 check_for_thread_db ();
778 do_cleanups (old_chain);
784 struct inferior *parent_inf;
786 parent_inf = current_inferior ();
788 /* If we detached from the child, then we have to be careful
789 to not insert breakpoints in the parent until the child
790 is done with the shared memory region. However, if we're
791 staying attached to the child, then we can and should
792 insert breakpoints, so that we can debug it. A
793 subsequent child exec or exit is enough to know when does
794 the child stops using the parent's address space. */
795 parent_inf->waiting_for_vfork_done = detach_fork;
796 parent_inf->pspace->breakpoints_not_allowed = detach_fork;
798 lp = find_lwp_pid (pid_to_ptid (parent_pid));
799 gdb_assert (linux_supports_tracefork_flag >= 0);
800 if (linux_supports_tracevforkdone (0))
803 fprintf_unfiltered (gdb_stdlog,
804 "LCFF: waiting for VFORK_DONE on %d\n",
810 /* We'll handle the VFORK_DONE event like any other
811 event, in target_wait. */
815 /* We can't insert breakpoints until the child has
816 finished with the shared memory region. We need to
817 wait until that happens. Ideal would be to just
819 - ptrace (PTRACE_SYSCALL, parent_pid, 0, 0);
820 - waitpid (parent_pid, &status, __WALL);
821 However, most architectures can't handle a syscall
822 being traced on the way out if it wasn't traced on
825 We might also think to loop, continuing the child
826 until it exits or gets a SIGTRAP. One problem is
827 that the child might call ptrace with PTRACE_TRACEME.
829 There's no simple and reliable way to figure out when
830 the vforked child will be done with its copy of the
831 shared memory. We could step it out of the syscall,
832 two instructions, let it go, and then single-step the
833 parent once. When we have hardware single-step, this
834 would work; with software single-step it could still
835 be made to work but we'd have to be able to insert
836 single-step breakpoints in the child, and we'd have
837 to insert -just- the single-step breakpoint in the
838 parent. Very awkward.
840 In the end, the best we can do is to make sure it
841 runs for a little while. Hopefully it will be out of
842 range of any breakpoints we reinsert. Usually this
843 is only the single-step breakpoint at vfork's return
847 fprintf_unfiltered (gdb_stdlog,
848 "LCFF: no VFORK_DONE support, sleeping a bit\n");
852 /* Pretend we've seen a PTRACE_EVENT_VFORK_DONE event,
853 and leave it pending. The next linux_nat_resume call
854 will notice a pending event, and bypasses actually
855 resuming the inferior. */
857 lp->waitstatus.kind = TARGET_WAITKIND_VFORK_DONE;
861 /* If we're in async mode, need to tell the event loop
862 there's something here to process. */
863 if (target_can_async_p ())
870 struct thread_info *tp;
871 struct inferior *parent_inf, *child_inf;
873 struct program_space *parent_pspace;
875 if (info_verbose || debug_linux_nat)
877 target_terminal_ours ();
879 fprintf_filtered (gdb_stdlog, _("\
880 Attaching after process %d vfork to child process %d.\n"),
881 parent_pid, child_pid);
883 fprintf_filtered (gdb_stdlog, _("\
884 Attaching after process %d fork to child process %d.\n"),
885 parent_pid, child_pid);
888 /* Add the new inferior first, so that the target_detach below
889 doesn't unpush the target. */
891 child_inf = add_inferior (child_pid);
893 parent_inf = current_inferior ();
894 child_inf->attach_flag = parent_inf->attach_flag;
895 copy_terminal_info (child_inf, parent_inf);
897 parent_pspace = parent_inf->pspace;
899 /* If we're vforking, we want to hold on to the parent until the
900 child exits or execs. At child exec or exit time we can
901 remove the old breakpoints from the parent and detach or
902 resume debugging it. Otherwise, detach the parent now; we'll
903 want to reuse it's program/address spaces, but we can't set
904 them to the child before removing breakpoints from the
905 parent, otherwise, the breakpoints module could decide to
906 remove breakpoints from the wrong process (since they'd be
907 assigned to the same address space). */
911 gdb_assert (child_inf->vfork_parent == NULL);
912 gdb_assert (parent_inf->vfork_child == NULL);
913 child_inf->vfork_parent = parent_inf;
914 child_inf->pending_detach = 0;
915 parent_inf->vfork_child = child_inf;
916 parent_inf->pending_detach = detach_fork;
917 parent_inf->waiting_for_vfork_done = 0;
919 else if (detach_fork)
920 target_detach (NULL, 0);
922 /* Note that the detach above makes PARENT_INF dangling. */
924 /* Add the child thread to the appropriate lists, and switch to
925 this new thread, before cloning the program space, and
926 informing the solib layer about this new process. */
928 inferior_ptid = ptid_build (child_pid, child_pid, 0);
929 add_thread (inferior_ptid);
930 lp = add_lwp (inferior_ptid);
934 /* If this is a vfork child, then the address-space is shared
935 with the parent. If we detached from the parent, then we can
936 reuse the parent's program/address spaces. */
937 if (has_vforked || detach_fork)
939 child_inf->pspace = parent_pspace;
940 child_inf->aspace = child_inf->pspace->aspace;
944 child_inf->aspace = new_address_space ();
945 child_inf->pspace = add_program_space (child_inf->aspace);
946 child_inf->removable = 1;
947 set_current_program_space (child_inf->pspace);
948 clone_program_space (child_inf->pspace, parent_pspace);
950 /* Let the shared library layer (solib-svr4) learn about
951 this new process, relocate the cloned exec, pull in
952 shared libraries, and install the solib event breakpoint.
953 If a "cloned-VM" event was propagated better throughout
954 the core, this wouldn't be required. */
955 solib_create_inferior_hook (0);
958 /* Let the thread_db layer learn about this new process. */
959 check_for_thread_db ();
962 restore_child_signals_mask (&prev_mask);
968 linux_child_insert_fork_catchpoint (int pid)
970 if (! linux_supports_tracefork (pid))
971 error (_("Your system does not support fork catchpoints."));
975 linux_child_insert_vfork_catchpoint (int pid)
977 if (!linux_supports_tracefork (pid))
978 error (_("Your system does not support vfork catchpoints."));
982 linux_child_insert_exec_catchpoint (int pid)
984 if (!linux_supports_tracefork (pid))
985 error (_("Your system does not support exec catchpoints."));
989 linux_child_set_syscall_catchpoint (int pid, int needed, int any_count,
990 int table_size, int *table)
992 if (! linux_supports_tracesysgood (pid))
993 error (_("Your system does not support syscall catchpoints."));
994 /* On GNU/Linux, we ignore the arguments. It means that we only
995 enable the syscall catchpoints, but do not disable them.
997 Also, we do not use the `table' information because we do not
998 filter system calls here. We let GDB do the logic for us. */
1002 /* On GNU/Linux there are no real LWP's. The closest thing to LWP's
1003 are processes sharing the same VM space. A multi-threaded process
1004 is basically a group of such processes. However, such a grouping
1005 is almost entirely a user-space issue; the kernel doesn't enforce
1006 such a grouping at all (this might change in the future). In
1007 general, we'll rely on the threads library (i.e. the GNU/Linux
1008 Threads library) to provide such a grouping.
1010 It is perfectly well possible to write a multi-threaded application
1011 without the assistance of a threads library, by using the clone
1012 system call directly. This module should be able to give some
1013 rudimentary support for debugging such applications if developers
1014 specify the CLONE_PTRACE flag in the clone system call, and are
1015 using the Linux kernel 2.4 or above.
1017 Note that there are some peculiarities in GNU/Linux that affect
1020 - In general one should specify the __WCLONE flag to waitpid in
1021 order to make it report events for any of the cloned processes
1022 (and leave it out for the initial process). However, if a cloned
1023 process has exited the exit status is only reported if the
1024 __WCLONE flag is absent. Linux kernel 2.4 has a __WALL flag, but
1025 we cannot use it since GDB must work on older systems too.
1027 - When a traced, cloned process exits and is waited for by the
1028 debugger, the kernel reassigns it to the original parent and
1029 keeps it around as a "zombie". Somehow, the GNU/Linux Threads
1030 library doesn't notice this, which leads to the "zombie problem":
1031 When debugged a multi-threaded process that spawns a lot of
1032 threads will run out of processes, even if the threads exit,
1033 because the "zombies" stay around. */
1035 /* List of known LWPs. */
1036 struct lwp_info *lwp_list;
1039 /* Original signal mask. */
1040 static sigset_t normal_mask;
1042 /* Signal mask for use with sigsuspend in linux_nat_wait, initialized in
1043 _initialize_linux_nat. */
1044 static sigset_t suspend_mask;
1046 /* Signals to block to make that sigsuspend work. */
1047 static sigset_t blocked_mask;
1049 /* SIGCHLD action. */
1050 struct sigaction sigchld_action;
1052 /* Block child signals (SIGCHLD and linux threads signals), and store
1053 the previous mask in PREV_MASK. */
1056 block_child_signals (sigset_t *prev_mask)
1058 /* Make sure SIGCHLD is blocked. */
1059 if (!sigismember (&blocked_mask, SIGCHLD))
1060 sigaddset (&blocked_mask, SIGCHLD);
1062 sigprocmask (SIG_BLOCK, &blocked_mask, prev_mask);
1065 /* Restore child signals mask, previously returned by
1066 block_child_signals. */
1069 restore_child_signals_mask (sigset_t *prev_mask)
1071 sigprocmask (SIG_SETMASK, prev_mask, NULL);
1075 /* Prototypes for local functions. */
1076 static int stop_wait_callback (struct lwp_info *lp, void *data);
1077 static int linux_thread_alive (ptid_t ptid);
1078 static char *linux_child_pid_to_exec_file (int pid);
1079 static int cancel_breakpoint (struct lwp_info *lp);
1082 /* Convert wait status STATUS to a string. Used for printing debug
1086 status_to_str (int status)
1088 static char buf[64];
1090 if (WIFSTOPPED (status))
1092 if (WSTOPSIG (status) == SYSCALL_SIGTRAP)
1093 snprintf (buf, sizeof (buf), "%s (stopped at syscall)",
1094 strsignal (SIGTRAP));
1096 snprintf (buf, sizeof (buf), "%s (stopped)",
1097 strsignal (WSTOPSIG (status)));
1099 else if (WIFSIGNALED (status))
1100 snprintf (buf, sizeof (buf), "%s (terminated)",
1101 strsignal (WSTOPSIG (status)));
1103 snprintf (buf, sizeof (buf), "%d (exited)", WEXITSTATUS (status));
1108 /* Remove all LWPs belong to PID from the lwp list. */
1111 purge_lwp_list (int pid)
1113 struct lwp_info *lp, *lpprev, *lpnext;
1117 for (lp = lwp_list; lp; lp = lpnext)
1121 if (ptid_get_pid (lp->ptid) == pid)
1124 lwp_list = lp->next;
1126 lpprev->next = lp->next;
1135 /* Return the number of known LWPs in the tgid given by PID. */
1141 struct lwp_info *lp;
1143 for (lp = lwp_list; lp; lp = lp->next)
1144 if (ptid_get_pid (lp->ptid) == pid)
1150 /* Add the LWP specified by PID to the list. Return a pointer to the
1151 structure describing the new LWP. The LWP should already be stopped
1152 (with an exception for the very first LWP). */
1154 static struct lwp_info *
1155 add_lwp (ptid_t ptid)
1157 struct lwp_info *lp;
1159 gdb_assert (is_lwp (ptid));
1161 lp = (struct lwp_info *) xmalloc (sizeof (struct lwp_info));
1163 memset (lp, 0, sizeof (struct lwp_info));
1165 lp->waitstatus.kind = TARGET_WAITKIND_IGNORE;
1170 lp->next = lwp_list;
1173 if (num_lwps (GET_PID (ptid)) > 1 && linux_nat_new_thread != NULL)
1174 linux_nat_new_thread (ptid);
1179 /* Remove the LWP specified by PID from the list. */
1182 delete_lwp (ptid_t ptid)
1184 struct lwp_info *lp, *lpprev;
1188 for (lp = lwp_list; lp; lpprev = lp, lp = lp->next)
1189 if (ptid_equal (lp->ptid, ptid))
1196 lpprev->next = lp->next;
1198 lwp_list = lp->next;
1203 /* Return a pointer to the structure describing the LWP corresponding
1204 to PID. If no corresponding LWP could be found, return NULL. */
1206 static struct lwp_info *
1207 find_lwp_pid (ptid_t ptid)
1209 struct lwp_info *lp;
1213 lwp = GET_LWP (ptid);
1215 lwp = GET_PID (ptid);
1217 for (lp = lwp_list; lp; lp = lp->next)
1218 if (lwp == GET_LWP (lp->ptid))
1224 /* Call CALLBACK with its second argument set to DATA for every LWP in
1225 the list. If CALLBACK returns 1 for a particular LWP, return a
1226 pointer to the structure describing that LWP immediately.
1227 Otherwise return NULL. */
1230 iterate_over_lwps (ptid_t filter,
1231 int (*callback) (struct lwp_info *, void *),
1234 struct lwp_info *lp, *lpnext;
1236 for (lp = lwp_list; lp; lp = lpnext)
1240 if (ptid_match (lp->ptid, filter))
1242 if ((*callback) (lp, data))
1250 /* Update our internal state when changing from one checkpoint to
1251 another indicated by NEW_PTID. We can only switch single-threaded
1252 applications, so we only create one new LWP, and the previous list
1256 linux_nat_switch_fork (ptid_t new_ptid)
1258 struct lwp_info *lp;
1260 purge_lwp_list (GET_PID (inferior_ptid));
1262 lp = add_lwp (new_ptid);
1265 /* This changes the thread's ptid while preserving the gdb thread
1266 num. Also changes the inferior pid, while preserving the
1268 thread_change_ptid (inferior_ptid, new_ptid);
1270 /* We've just told GDB core that the thread changed target id, but,
1271 in fact, it really is a different thread, with different register
1273 registers_changed ();
1276 /* Handle the exit of a single thread LP. */
1279 exit_lwp (struct lwp_info *lp)
1281 struct thread_info *th = find_thread_ptid (lp->ptid);
1285 if (print_thread_events)
1286 printf_unfiltered (_("[%s exited]\n"), target_pid_to_str (lp->ptid));
1288 delete_thread (lp->ptid);
1291 delete_lwp (lp->ptid);
1294 /* Return an lwp's tgid, found in `/proc/PID/status'. */
1297 linux_proc_get_tgid (int lwpid)
1303 snprintf (buf, sizeof (buf), "/proc/%d/status", (int) lwpid);
1304 status_file = fopen (buf, "r");
1305 if (status_file != NULL)
1307 while (fgets (buf, sizeof (buf), status_file))
1309 if (strncmp (buf, "Tgid:", 5) == 0)
1311 tgid = strtoul (buf + strlen ("Tgid:"), NULL, 10);
1316 fclose (status_file);
1322 /* Detect `T (stopped)' in `/proc/PID/status'.
1323 Other states including `T (tracing stop)' are reported as false. */
1326 pid_is_stopped (pid_t pid)
1332 snprintf (buf, sizeof (buf), "/proc/%d/status", (int) pid);
1333 status_file = fopen (buf, "r");
1334 if (status_file != NULL)
1338 while (fgets (buf, sizeof (buf), status_file))
1340 if (strncmp (buf, "State:", 6) == 0)
1346 if (have_state && strstr (buf, "T (stopped)") != NULL)
1348 fclose (status_file);
1353 /* Wait for the LWP specified by LP, which we have just attached to.
1354 Returns a wait status for that LWP, to cache. */
1357 linux_nat_post_attach_wait (ptid_t ptid, int first, int *cloned,
1360 pid_t new_pid, pid = GET_LWP (ptid);
1363 if (pid_is_stopped (pid))
1365 if (debug_linux_nat)
1366 fprintf_unfiltered (gdb_stdlog,
1367 "LNPAW: Attaching to a stopped process\n");
1369 /* The process is definitely stopped. It is in a job control
1370 stop, unless the kernel predates the TASK_STOPPED /
1371 TASK_TRACED distinction, in which case it might be in a
1372 ptrace stop. Make sure it is in a ptrace stop; from there we
1373 can kill it, signal it, et cetera.
1375 First make sure there is a pending SIGSTOP. Since we are
1376 already attached, the process can not transition from stopped
1377 to running without a PTRACE_CONT; so we know this signal will
1378 go into the queue. The SIGSTOP generated by PTRACE_ATTACH is
1379 probably already in the queue (unless this kernel is old
1380 enough to use TASK_STOPPED for ptrace stops); but since SIGSTOP
1381 is not an RT signal, it can only be queued once. */
1382 kill_lwp (pid, SIGSTOP);
1384 /* Finally, resume the stopped process. This will deliver the SIGSTOP
1385 (or a higher priority signal, just like normal PTRACE_ATTACH). */
1386 ptrace (PTRACE_CONT, pid, 0, 0);
1389 /* Make sure the initial process is stopped. The user-level threads
1390 layer might want to poke around in the inferior, and that won't
1391 work if things haven't stabilized yet. */
1392 new_pid = my_waitpid (pid, &status, 0);
1393 if (new_pid == -1 && errno == ECHILD)
1396 warning (_("%s is a cloned process"), target_pid_to_str (ptid));
1398 /* Try again with __WCLONE to check cloned processes. */
1399 new_pid = my_waitpid (pid, &status, __WCLONE);
1403 gdb_assert (pid == new_pid);
1405 if (!WIFSTOPPED (status))
1407 /* The pid we tried to attach has apparently just exited. */
1408 if (debug_linux_nat)
1409 fprintf_unfiltered (gdb_stdlog, "LNPAW: Failed to stop %d: %s",
1410 pid, status_to_str (status));
1414 if (WSTOPSIG (status) != SIGSTOP)
1417 if (debug_linux_nat)
1418 fprintf_unfiltered (gdb_stdlog,
1419 "LNPAW: Received %s after attaching\n",
1420 status_to_str (status));
1426 /* Attach to the LWP specified by PID. Return 0 if successful or -1
1427 if the new LWP could not be attached. */
1430 lin_lwp_attach_lwp (ptid_t ptid)
1432 struct lwp_info *lp;
1435 gdb_assert (is_lwp (ptid));
1437 block_child_signals (&prev_mask);
1439 lp = find_lwp_pid (ptid);
1441 /* We assume that we're already attached to any LWP that has an id
1442 equal to the overall process id, and to any LWP that is already
1443 in our list of LWPs. If we're not seeing exit events from threads
1444 and we've had PID wraparound since we last tried to stop all threads,
1445 this assumption might be wrong; fortunately, this is very unlikely
1447 if (GET_LWP (ptid) != GET_PID (ptid) && lp == NULL)
1449 int status, cloned = 0, signalled = 0;
1451 if (ptrace (PTRACE_ATTACH, GET_LWP (ptid), 0, 0) < 0)
1453 /* If we fail to attach to the thread, issue a warning,
1454 but continue. One way this can happen is if thread
1455 creation is interrupted; as of Linux kernel 2.6.19, a
1456 bug may place threads in the thread list and then fail
1458 warning (_("Can't attach %s: %s"), target_pid_to_str (ptid),
1459 safe_strerror (errno));
1460 restore_child_signals_mask (&prev_mask);
1464 if (debug_linux_nat)
1465 fprintf_unfiltered (gdb_stdlog,
1466 "LLAL: PTRACE_ATTACH %s, 0, 0 (OK)\n",
1467 target_pid_to_str (ptid));
1469 status = linux_nat_post_attach_wait (ptid, 0, &cloned, &signalled);
1470 if (!WIFSTOPPED (status))
1473 lp = add_lwp (ptid);
1475 lp->cloned = cloned;
1476 lp->signalled = signalled;
1477 if (WSTOPSIG (status) != SIGSTOP)
1480 lp->status = status;
1483 target_post_attach (GET_LWP (lp->ptid));
1485 if (debug_linux_nat)
1487 fprintf_unfiltered (gdb_stdlog,
1488 "LLAL: waitpid %s received %s\n",
1489 target_pid_to_str (ptid),
1490 status_to_str (status));
1495 /* We assume that the LWP representing the original process is
1496 already stopped. Mark it as stopped in the data structure
1497 that the GNU/linux ptrace layer uses to keep track of
1498 threads. Note that this won't have already been done since
1499 the main thread will have, we assume, been stopped by an
1500 attach from a different layer. */
1502 lp = add_lwp (ptid);
1506 restore_child_signals_mask (&prev_mask);
1511 linux_nat_create_inferior (struct target_ops *ops,
1512 char *exec_file, char *allargs, char **env,
1515 #ifdef HAVE_PERSONALITY
1516 int personality_orig = 0, personality_set = 0;
1517 #endif /* HAVE_PERSONALITY */
1519 /* The fork_child mechanism is synchronous and calls target_wait, so
1520 we have to mask the async mode. */
1522 #ifdef HAVE_PERSONALITY
1523 if (disable_randomization)
1526 personality_orig = personality (0xffffffff);
1527 if (errno == 0 && !(personality_orig & ADDR_NO_RANDOMIZE))
1529 personality_set = 1;
1530 personality (personality_orig | ADDR_NO_RANDOMIZE);
1532 if (errno != 0 || (personality_set
1533 && !(personality (0xffffffff) & ADDR_NO_RANDOMIZE)))
1534 warning (_("Error disabling address space randomization: %s"),
1535 safe_strerror (errno));
1537 #endif /* HAVE_PERSONALITY */
1539 linux_ops->to_create_inferior (ops, exec_file, allargs, env, from_tty);
1541 #ifdef HAVE_PERSONALITY
1542 if (personality_set)
1545 personality (personality_orig);
1547 warning (_("Error restoring address space randomization: %s"),
1548 safe_strerror (errno));
1550 #endif /* HAVE_PERSONALITY */
1554 linux_nat_attach (struct target_ops *ops, char *args, int from_tty)
1556 struct lwp_info *lp;
1560 linux_ops->to_attach (ops, args, from_tty);
1562 /* The ptrace base target adds the main thread with (pid,0,0)
1563 format. Decorate it with lwp info. */
1564 ptid = BUILD_LWP (GET_PID (inferior_ptid), GET_PID (inferior_ptid));
1565 thread_change_ptid (inferior_ptid, ptid);
1567 /* Add the initial process as the first LWP to the list. */
1568 lp = add_lwp (ptid);
1570 status = linux_nat_post_attach_wait (lp->ptid, 1, &lp->cloned,
1572 if (!WIFSTOPPED (status))
1574 if (WIFEXITED (status))
1576 int exit_code = WEXITSTATUS (status);
1578 target_terminal_ours ();
1579 target_mourn_inferior ();
1581 error (_("Unable to attach: program exited normally."));
1583 error (_("Unable to attach: program exited with code %d."),
1586 else if (WIFSIGNALED (status))
1588 enum target_signal signo;
1590 target_terminal_ours ();
1591 target_mourn_inferior ();
1593 signo = target_signal_from_host (WTERMSIG (status));
1594 error (_("Unable to attach: program terminated with signal "
1596 target_signal_to_name (signo),
1597 target_signal_to_string (signo));
1600 internal_error (__FILE__, __LINE__,
1601 _("unexpected status %d for PID %ld"),
1602 status, (long) GET_LWP (ptid));
1607 /* Save the wait status to report later. */
1609 if (debug_linux_nat)
1610 fprintf_unfiltered (gdb_stdlog,
1611 "LNA: waitpid %ld, saving status %s\n",
1612 (long) GET_PID (lp->ptid), status_to_str (status));
1614 lp->status = status;
1616 if (target_can_async_p ())
1617 target_async (inferior_event_handler, 0);
1620 /* Get pending status of LP. */
1622 get_pending_status (struct lwp_info *lp, int *status)
1624 enum target_signal signo = TARGET_SIGNAL_0;
1626 /* If we paused threads momentarily, we may have stored pending
1627 events in lp->status or lp->waitstatus (see stop_wait_callback),
1628 and GDB core hasn't seen any signal for those threads.
1629 Otherwise, the last signal reported to the core is found in the
1630 thread object's stop_signal.
1632 There's a corner case that isn't handled here at present. Only
1633 if the thread stopped with a TARGET_WAITKIND_STOPPED does
1634 stop_signal make sense as a real signal to pass to the inferior.
1635 Some catchpoint related events, like
1636 TARGET_WAITKIND_(V)FORK|EXEC|SYSCALL, have their stop_signal set
1637 to TARGET_SIGNAL_SIGTRAP when the catchpoint triggers. But,
1638 those traps are debug API (ptrace in our case) related and
1639 induced; the inferior wouldn't see them if it wasn't being
1640 traced. Hence, we should never pass them to the inferior, even
1641 when set to pass state. Since this corner case isn't handled by
1642 infrun.c when proceeding with a signal, for consistency, neither
1643 do we handle it here (or elsewhere in the file we check for
1644 signal pass state). Normally SIGTRAP isn't set to pass state, so
1645 this is really a corner case. */
1647 if (lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
1648 signo = TARGET_SIGNAL_0; /* a pending ptrace event, not a real signal. */
1649 else if (lp->status)
1650 signo = target_signal_from_host (WSTOPSIG (lp->status));
1651 else if (non_stop && !is_executing (lp->ptid))
1653 struct thread_info *tp = find_thread_ptid (lp->ptid);
1654 signo = tp->stop_signal;
1658 struct target_waitstatus last;
1661 get_last_target_status (&last_ptid, &last);
1663 if (GET_LWP (lp->ptid) == GET_LWP (last_ptid))
1665 struct thread_info *tp = find_thread_ptid (lp->ptid);
1666 signo = tp->stop_signal;
1672 if (signo == TARGET_SIGNAL_0)
1674 if (debug_linux_nat)
1675 fprintf_unfiltered (gdb_stdlog,
1676 "GPT: lwp %s has no pending signal\n",
1677 target_pid_to_str (lp->ptid));
1679 else if (!signal_pass_state (signo))
1681 if (debug_linux_nat)
1682 fprintf_unfiltered (gdb_stdlog, "\
1683 GPT: lwp %s had signal %s, but it is in no pass state\n",
1684 target_pid_to_str (lp->ptid),
1685 target_signal_to_string (signo));
1689 *status = W_STOPCODE (target_signal_to_host (signo));
1691 if (debug_linux_nat)
1692 fprintf_unfiltered (gdb_stdlog,
1693 "GPT: lwp %s has pending signal %s\n",
1694 target_pid_to_str (lp->ptid),
1695 target_signal_to_string (signo));
1702 detach_callback (struct lwp_info *lp, void *data)
1704 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
1706 if (debug_linux_nat && lp->status)
1707 fprintf_unfiltered (gdb_stdlog, "DC: Pending %s for %s on detach.\n",
1708 strsignal (WSTOPSIG (lp->status)),
1709 target_pid_to_str (lp->ptid));
1711 /* If there is a pending SIGSTOP, get rid of it. */
1714 if (debug_linux_nat)
1715 fprintf_unfiltered (gdb_stdlog,
1716 "DC: Sending SIGCONT to %s\n",
1717 target_pid_to_str (lp->ptid));
1719 kill_lwp (GET_LWP (lp->ptid), SIGCONT);
1723 /* We don't actually detach from the LWP that has an id equal to the
1724 overall process id just yet. */
1725 if (GET_LWP (lp->ptid) != GET_PID (lp->ptid))
1729 /* Pass on any pending signal for this LWP. */
1730 get_pending_status (lp, &status);
1733 if (ptrace (PTRACE_DETACH, GET_LWP (lp->ptid), 0,
1734 WSTOPSIG (status)) < 0)
1735 error (_("Can't detach %s: %s"), target_pid_to_str (lp->ptid),
1736 safe_strerror (errno));
1738 if (debug_linux_nat)
1739 fprintf_unfiltered (gdb_stdlog,
1740 "PTRACE_DETACH (%s, %s, 0) (OK)\n",
1741 target_pid_to_str (lp->ptid),
1742 strsignal (WSTOPSIG (status)));
1744 delete_lwp (lp->ptid);
1751 linux_nat_detach (struct target_ops *ops, char *args, int from_tty)
1755 enum target_signal sig;
1756 struct lwp_info *main_lwp;
1758 pid = GET_PID (inferior_ptid);
1760 if (target_can_async_p ())
1761 linux_nat_async (NULL, 0);
1763 /* Stop all threads before detaching. ptrace requires that the
1764 thread is stopped to sucessfully detach. */
1765 iterate_over_lwps (pid_to_ptid (pid), stop_callback, NULL);
1766 /* ... and wait until all of them have reported back that
1767 they're no longer running. */
1768 iterate_over_lwps (pid_to_ptid (pid), stop_wait_callback, NULL);
1770 iterate_over_lwps (pid_to_ptid (pid), detach_callback, NULL);
1772 /* Only the initial process should be left right now. */
1773 gdb_assert (num_lwps (GET_PID (inferior_ptid)) == 1);
1775 main_lwp = find_lwp_pid (pid_to_ptid (pid));
1777 /* Pass on any pending signal for the last LWP. */
1778 if ((args == NULL || *args == '\0')
1779 && get_pending_status (main_lwp, &status) != -1
1780 && WIFSTOPPED (status))
1782 /* Put the signal number in ARGS so that inf_ptrace_detach will
1783 pass it along with PTRACE_DETACH. */
1785 sprintf (args, "%d", (int) WSTOPSIG (status));
1786 if (debug_linux_nat)
1787 fprintf_unfiltered (gdb_stdlog,
1788 "LND: Sending signal %s to %s\n",
1790 target_pid_to_str (main_lwp->ptid));
1793 delete_lwp (main_lwp->ptid);
1795 if (forks_exist_p ())
1797 /* Multi-fork case. The current inferior_ptid is being detached
1798 from, but there are other viable forks to debug. Detach from
1799 the current fork, and context-switch to the first
1801 linux_fork_detach (args, from_tty);
1803 if (non_stop && target_can_async_p ())
1804 target_async (inferior_event_handler, 0);
1807 linux_ops->to_detach (ops, args, from_tty);
1813 resume_callback (struct lwp_info *lp, void *data)
1815 struct inferior *inf = find_inferior_pid (GET_PID (lp->ptid));
1817 if (lp->stopped && inf->vfork_child != NULL)
1819 if (debug_linux_nat)
1820 fprintf_unfiltered (gdb_stdlog,
1821 "RC: Not resuming %s (vfork parent)\n",
1822 target_pid_to_str (lp->ptid));
1824 else if (lp->stopped && lp->status == 0)
1826 if (debug_linux_nat)
1827 fprintf_unfiltered (gdb_stdlog,
1828 "RC: PTRACE_CONT %s, 0, 0 (resuming sibling)\n",
1829 target_pid_to_str (lp->ptid));
1831 linux_ops->to_resume (linux_ops,
1832 pid_to_ptid (GET_LWP (lp->ptid)),
1833 0, TARGET_SIGNAL_0);
1834 if (debug_linux_nat)
1835 fprintf_unfiltered (gdb_stdlog,
1836 "RC: PTRACE_CONT %s, 0, 0 (resume sibling)\n",
1837 target_pid_to_str (lp->ptid));
1840 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
1841 lp->stopped_by_watchpoint = 0;
1843 else if (lp->stopped && debug_linux_nat)
1844 fprintf_unfiltered (gdb_stdlog, "RC: Not resuming sibling %s (has pending)\n",
1845 target_pid_to_str (lp->ptid));
1846 else if (debug_linux_nat)
1847 fprintf_unfiltered (gdb_stdlog, "RC: Not resuming sibling %s (not stopped)\n",
1848 target_pid_to_str (lp->ptid));
1854 resume_clear_callback (struct lwp_info *lp, void *data)
1861 resume_set_callback (struct lwp_info *lp, void *data)
1868 linux_nat_resume (struct target_ops *ops,
1869 ptid_t ptid, int step, enum target_signal signo)
1872 struct lwp_info *lp;
1875 if (debug_linux_nat)
1876 fprintf_unfiltered (gdb_stdlog,
1877 "LLR: Preparing to %s %s, %s, inferior_ptid %s\n",
1878 step ? "step" : "resume",
1879 target_pid_to_str (ptid),
1880 signo ? strsignal (signo) : "0",
1881 target_pid_to_str (inferior_ptid));
1883 block_child_signals (&prev_mask);
1885 /* A specific PTID means `step only this process id'. */
1886 resume_many = (ptid_equal (minus_one_ptid, ptid)
1887 || ptid_is_pid (ptid));
1889 /* Mark the lwps we're resuming as resumed. */
1890 iterate_over_lwps (ptid, resume_set_callback, NULL);
1892 /* See if it's the current inferior that should be handled
1895 lp = find_lwp_pid (inferior_ptid);
1897 lp = find_lwp_pid (ptid);
1898 gdb_assert (lp != NULL);
1900 /* Remember if we're stepping. */
1903 /* If we have a pending wait status for this thread, there is no
1904 point in resuming the process. But first make sure that
1905 linux_nat_wait won't preemptively handle the event - we
1906 should never take this short-circuit if we are going to
1907 leave LP running, since we have skipped resuming all the
1908 other threads. This bit of code needs to be synchronized
1909 with linux_nat_wait. */
1911 if (lp->status && WIFSTOPPED (lp->status))
1914 struct inferior *inf;
1916 inf = find_inferior_pid (ptid_get_pid (lp->ptid));
1918 saved_signo = target_signal_from_host (WSTOPSIG (lp->status));
1920 /* Defer to common code if we're gaining control of the
1922 if (inf->stop_soon == NO_STOP_QUIETLY
1923 && signal_stop_state (saved_signo) == 0
1924 && signal_print_state (saved_signo) == 0
1925 && signal_pass_state (saved_signo) == 1)
1927 if (debug_linux_nat)
1928 fprintf_unfiltered (gdb_stdlog,
1929 "LLR: Not short circuiting for ignored "
1930 "status 0x%x\n", lp->status);
1932 /* FIXME: What should we do if we are supposed to continue
1933 this thread with a signal? */
1934 gdb_assert (signo == TARGET_SIGNAL_0);
1935 signo = saved_signo;
1940 if (lp->status || lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
1942 /* FIXME: What should we do if we are supposed to continue
1943 this thread with a signal? */
1944 gdb_assert (signo == TARGET_SIGNAL_0);
1946 if (debug_linux_nat)
1947 fprintf_unfiltered (gdb_stdlog,
1948 "LLR: Short circuiting for status 0x%x\n",
1951 restore_child_signals_mask (&prev_mask);
1952 if (target_can_async_p ())
1954 target_async (inferior_event_handler, 0);
1955 /* Tell the event loop we have something to process. */
1961 /* Mark LWP as not stopped to prevent it from being continued by
1966 iterate_over_lwps (ptid, resume_callback, NULL);
1968 /* Convert to something the lower layer understands. */
1969 ptid = pid_to_ptid (GET_LWP (lp->ptid));
1971 linux_ops->to_resume (linux_ops, ptid, step, signo);
1972 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
1973 lp->stopped_by_watchpoint = 0;
1975 if (debug_linux_nat)
1976 fprintf_unfiltered (gdb_stdlog,
1977 "LLR: %s %s, %s (resume event thread)\n",
1978 step ? "PTRACE_SINGLESTEP" : "PTRACE_CONT",
1979 target_pid_to_str (ptid),
1980 signo ? strsignal (signo) : "0");
1982 restore_child_signals_mask (&prev_mask);
1983 if (target_can_async_p ())
1984 target_async (inferior_event_handler, 0);
1987 /* Send a signal to an LWP. */
1990 kill_lwp (int lwpid, int signo)
1992 /* Use tkill, if possible, in case we are using nptl threads. If tkill
1993 fails, then we are not using nptl threads and we should be using kill. */
1995 #ifdef HAVE_TKILL_SYSCALL
1997 static int tkill_failed;
2004 ret = syscall (__NR_tkill, lwpid, signo);
2005 if (errno != ENOSYS)
2012 return kill (lwpid, signo);
2015 /* Handle a GNU/Linux syscall trap wait response. If we see a syscall
2016 event, check if the core is interested in it: if not, ignore the
2017 event, and keep waiting; otherwise, we need to toggle the LWP's
2018 syscall entry/exit status, since the ptrace event itself doesn't
2019 indicate it, and report the trap to higher layers. */
2022 linux_handle_syscall_trap (struct lwp_info *lp, int stopping)
2024 struct target_waitstatus *ourstatus = &lp->waitstatus;
2025 struct gdbarch *gdbarch = target_thread_architecture (lp->ptid);
2026 int syscall_number = (int) gdbarch_get_syscall_number (gdbarch, lp->ptid);
2030 /* If we're stopping threads, there's a SIGSTOP pending, which
2031 makes it so that the LWP reports an immediate syscall return,
2032 followed by the SIGSTOP. Skip seeing that "return" using
2033 PTRACE_CONT directly, and let stop_wait_callback collect the
2034 SIGSTOP. Later when the thread is resumed, a new syscall
2035 entry event. If we didn't do this (and returned 0), we'd
2036 leave a syscall entry pending, and our caller, by using
2037 PTRACE_CONT to collect the SIGSTOP, skips the syscall return
2038 itself. Later, when the user re-resumes this LWP, we'd see
2039 another syscall entry event and we'd mistake it for a return.
2041 If stop_wait_callback didn't force the SIGSTOP out of the LWP
2042 (leaving immediately with LWP->signalled set, without issuing
2043 a PTRACE_CONT), it would still be problematic to leave this
2044 syscall enter pending, as later when the thread is resumed,
2045 it would then see the same syscall exit mentioned above,
2046 followed by the delayed SIGSTOP, while the syscall didn't
2047 actually get to execute. It seems it would be even more
2048 confusing to the user. */
2050 if (debug_linux_nat)
2051 fprintf_unfiltered (gdb_stdlog,
2052 "LHST: ignoring syscall %d "
2053 "for LWP %ld (stopping threads), "
2054 "resuming with PTRACE_CONT for SIGSTOP\n",
2056 GET_LWP (lp->ptid));
2058 lp->syscall_state = TARGET_WAITKIND_IGNORE;
2059 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2063 if (catch_syscall_enabled ())
2065 /* Always update the entry/return state, even if this particular
2066 syscall isn't interesting to the core now. In async mode,
2067 the user could install a new catchpoint for this syscall
2068 between syscall enter/return, and we'll need to know to
2069 report a syscall return if that happens. */
2070 lp->syscall_state = (lp->syscall_state == TARGET_WAITKIND_SYSCALL_ENTRY
2071 ? TARGET_WAITKIND_SYSCALL_RETURN
2072 : TARGET_WAITKIND_SYSCALL_ENTRY);
2074 if (catching_syscall_number (syscall_number))
2076 /* Alright, an event to report. */
2077 ourstatus->kind = lp->syscall_state;
2078 ourstatus->value.syscall_number = syscall_number;
2080 if (debug_linux_nat)
2081 fprintf_unfiltered (gdb_stdlog,
2082 "LHST: stopping for %s of syscall %d"
2084 lp->syscall_state == TARGET_WAITKIND_SYSCALL_ENTRY
2085 ? "entry" : "return",
2087 GET_LWP (lp->ptid));
2091 if (debug_linux_nat)
2092 fprintf_unfiltered (gdb_stdlog,
2093 "LHST: ignoring %s of syscall %d "
2095 lp->syscall_state == TARGET_WAITKIND_SYSCALL_ENTRY
2096 ? "entry" : "return",
2098 GET_LWP (lp->ptid));
2102 /* If we had been syscall tracing, and hence used PT_SYSCALL
2103 before on this LWP, it could happen that the user removes all
2104 syscall catchpoints before we get to process this event.
2105 There are two noteworthy issues here:
2107 - When stopped at a syscall entry event, resuming with
2108 PT_STEP still resumes executing the syscall and reports a
2111 - Only PT_SYSCALL catches syscall enters. If we last
2112 single-stepped this thread, then this event can't be a
2113 syscall enter. If we last single-stepped this thread, this
2114 has to be a syscall exit.
2116 The points above mean that the next resume, be it PT_STEP or
2117 PT_CONTINUE, can not trigger a syscall trace event. */
2118 if (debug_linux_nat)
2119 fprintf_unfiltered (gdb_stdlog,
2120 "LHST: caught syscall event with no syscall catchpoints."
2121 " %d for LWP %ld, ignoring\n",
2123 GET_LWP (lp->ptid));
2124 lp->syscall_state = TARGET_WAITKIND_IGNORE;
2127 /* The core isn't interested in this event. For efficiency, avoid
2128 stopping all threads only to have the core resume them all again.
2129 Since we're not stopping threads, if we're still syscall tracing
2130 and not stepping, we can't use PTRACE_CONT here, as we'd miss any
2131 subsequent syscall. Simply resume using the inf-ptrace layer,
2132 which knows when to use PT_SYSCALL or PT_CONTINUE. */
2134 /* Note that gdbarch_get_syscall_number may access registers, hence
2136 registers_changed ();
2137 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
2138 lp->step, TARGET_SIGNAL_0);
2142 /* Handle a GNU/Linux extended wait response. If we see a clone
2143 event, we need to add the new LWP to our list (and not report the
2144 trap to higher layers). This function returns non-zero if the
2145 event should be ignored and we should wait again. If STOPPING is
2146 true, the new LWP remains stopped, otherwise it is continued. */
2149 linux_handle_extended_wait (struct lwp_info *lp, int status,
2152 int pid = GET_LWP (lp->ptid);
2153 struct target_waitstatus *ourstatus = &lp->waitstatus;
2154 struct lwp_info *new_lp = NULL;
2155 int event = status >> 16;
2157 if (event == PTRACE_EVENT_FORK || event == PTRACE_EVENT_VFORK
2158 || event == PTRACE_EVENT_CLONE)
2160 unsigned long new_pid;
2163 ptrace (PTRACE_GETEVENTMSG, pid, 0, &new_pid);
2165 /* If we haven't already seen the new PID stop, wait for it now. */
2166 if (! pull_pid_from_list (&stopped_pids, new_pid, &status))
2168 /* The new child has a pending SIGSTOP. We can't affect it until it
2169 hits the SIGSTOP, but we're already attached. */
2170 ret = my_waitpid (new_pid, &status,
2171 (event == PTRACE_EVENT_CLONE) ? __WCLONE : 0);
2173 perror_with_name (_("waiting for new child"));
2174 else if (ret != new_pid)
2175 internal_error (__FILE__, __LINE__,
2176 _("wait returned unexpected PID %d"), ret);
2177 else if (!WIFSTOPPED (status))
2178 internal_error (__FILE__, __LINE__,
2179 _("wait returned unexpected status 0x%x"), status);
2182 ourstatus->value.related_pid = ptid_build (new_pid, new_pid, 0);
2184 if (event == PTRACE_EVENT_FORK
2185 && linux_fork_checkpointing_p (GET_PID (lp->ptid)))
2187 struct fork_info *fp;
2189 /* Handle checkpointing by linux-fork.c here as a special
2190 case. We don't want the follow-fork-mode or 'catch fork'
2191 to interfere with this. */
2193 /* This won't actually modify the breakpoint list, but will
2194 physically remove the breakpoints from the child. */
2195 detach_breakpoints (new_pid);
2197 /* Retain child fork in ptrace (stopped) state. */
2198 fp = find_fork_pid (new_pid);
2200 fp = add_fork (new_pid);
2202 /* Report as spurious, so that infrun doesn't want to follow
2203 this fork. We're actually doing an infcall in
2205 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
2206 linux_enable_event_reporting (pid_to_ptid (new_pid));
2208 /* Report the stop to the core. */
2212 if (event == PTRACE_EVENT_FORK)
2213 ourstatus->kind = TARGET_WAITKIND_FORKED;
2214 else if (event == PTRACE_EVENT_VFORK)
2215 ourstatus->kind = TARGET_WAITKIND_VFORKED;
2218 struct cleanup *old_chain;
2220 ourstatus->kind = TARGET_WAITKIND_IGNORE;
2221 new_lp = add_lwp (BUILD_LWP (new_pid, GET_PID (lp->ptid)));
2223 new_lp->stopped = 1;
2225 if (WSTOPSIG (status) != SIGSTOP)
2227 /* This can happen if someone starts sending signals to
2228 the new thread before it gets a chance to run, which
2229 have a lower number than SIGSTOP (e.g. SIGUSR1).
2230 This is an unlikely case, and harder to handle for
2231 fork / vfork than for clone, so we do not try - but
2232 we handle it for clone events here. We'll send
2233 the other signal on to the thread below. */
2235 new_lp->signalled = 1;
2242 /* Add the new thread to GDB's lists as soon as possible
2245 1) the frontend doesn't have to wait for a stop to
2248 2) we tag it with the correct running state. */
2250 /* If the thread_db layer is active, let it know about
2251 this new thread, and add it to GDB's list. */
2252 if (!thread_db_attach_lwp (new_lp->ptid))
2254 /* We're not using thread_db. Add it to GDB's
2256 target_post_attach (GET_LWP (new_lp->ptid));
2257 add_thread (new_lp->ptid);
2262 set_running (new_lp->ptid, 1);
2263 set_executing (new_lp->ptid, 1);
2267 /* Note the need to use the low target ops to resume, to
2268 handle resuming with PT_SYSCALL if we have syscall
2274 new_lp->stopped = 0;
2275 new_lp->resumed = 1;
2278 ? target_signal_from_host (WSTOPSIG (status))
2281 linux_ops->to_resume (linux_ops, pid_to_ptid (new_pid),
2285 if (debug_linux_nat)
2286 fprintf_unfiltered (gdb_stdlog,
2287 "LHEW: Got clone event from LWP %ld, resuming\n",
2288 GET_LWP (lp->ptid));
2289 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
2290 0, TARGET_SIGNAL_0);
2298 if (event == PTRACE_EVENT_EXEC)
2300 if (debug_linux_nat)
2301 fprintf_unfiltered (gdb_stdlog,
2302 "LHEW: Got exec event from LWP %ld\n",
2303 GET_LWP (lp->ptid));
2305 ourstatus->kind = TARGET_WAITKIND_EXECD;
2306 ourstatus->value.execd_pathname
2307 = xstrdup (linux_child_pid_to_exec_file (pid));
2312 if (event == PTRACE_EVENT_VFORK_DONE)
2314 if (current_inferior ()->waiting_for_vfork_done)
2316 if (debug_linux_nat)
2317 fprintf_unfiltered (gdb_stdlog, "\
2318 LHEW: Got expected PTRACE_EVENT_VFORK_DONE from LWP %ld: stopping\n",
2319 GET_LWP (lp->ptid));
2321 ourstatus->kind = TARGET_WAITKIND_VFORK_DONE;
2325 if (debug_linux_nat)
2326 fprintf_unfiltered (gdb_stdlog, "\
2327 LHEW: Got PTRACE_EVENT_VFORK_DONE from LWP %ld: resuming\n",
2328 GET_LWP (lp->ptid));
2329 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2333 internal_error (__FILE__, __LINE__,
2334 _("unknown ptrace event %d"), event);
2337 /* Wait for LP to stop. Returns the wait status, or 0 if the LWP has
2341 wait_lwp (struct lwp_info *lp)
2345 int thread_dead = 0;
2347 gdb_assert (!lp->stopped);
2348 gdb_assert (lp->status == 0);
2350 pid = my_waitpid (GET_LWP (lp->ptid), &status, 0);
2351 if (pid == -1 && errno == ECHILD)
2353 pid = my_waitpid (GET_LWP (lp->ptid), &status, __WCLONE);
2354 if (pid == -1 && errno == ECHILD)
2356 /* The thread has previously exited. We need to delete it
2357 now because, for some vendor 2.4 kernels with NPTL
2358 support backported, there won't be an exit event unless
2359 it is the main thread. 2.6 kernels will report an exit
2360 event for each thread that exits, as expected. */
2362 if (debug_linux_nat)
2363 fprintf_unfiltered (gdb_stdlog, "WL: %s vanished.\n",
2364 target_pid_to_str (lp->ptid));
2370 gdb_assert (pid == GET_LWP (lp->ptid));
2372 if (debug_linux_nat)
2374 fprintf_unfiltered (gdb_stdlog,
2375 "WL: waitpid %s received %s\n",
2376 target_pid_to_str (lp->ptid),
2377 status_to_str (status));
2381 /* Check if the thread has exited. */
2382 if (WIFEXITED (status) || WIFSIGNALED (status))
2385 if (debug_linux_nat)
2386 fprintf_unfiltered (gdb_stdlog, "WL: %s exited.\n",
2387 target_pid_to_str (lp->ptid));
2396 gdb_assert (WIFSTOPPED (status));
2398 /* Handle GNU/Linux's syscall SIGTRAPs. */
2399 if (WIFSTOPPED (status) && WSTOPSIG (status) == SYSCALL_SIGTRAP)
2401 /* No longer need the sysgood bit. The ptrace event ends up
2402 recorded in lp->waitstatus if we care for it. We can carry
2403 on handling the event like a regular SIGTRAP from here
2405 status = W_STOPCODE (SIGTRAP);
2406 if (linux_handle_syscall_trap (lp, 1))
2407 return wait_lwp (lp);
2410 /* Handle GNU/Linux's extended waitstatus for trace events. */
2411 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP && status >> 16 != 0)
2413 if (debug_linux_nat)
2414 fprintf_unfiltered (gdb_stdlog,
2415 "WL: Handling extended status 0x%06x\n",
2417 if (linux_handle_extended_wait (lp, status, 1))
2418 return wait_lwp (lp);
2424 /* Save the most recent siginfo for LP. This is currently only called
2425 for SIGTRAP; some ports use the si_addr field for
2426 target_stopped_data_address. In the future, it may also be used to
2427 restore the siginfo of requeued signals. */
2430 save_siginfo (struct lwp_info *lp)
2433 ptrace (PTRACE_GETSIGINFO, GET_LWP (lp->ptid),
2434 (PTRACE_TYPE_ARG3) 0, &lp->siginfo);
2437 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
2440 /* Send a SIGSTOP to LP. */
2443 stop_callback (struct lwp_info *lp, void *data)
2445 if (!lp->stopped && !lp->signalled)
2449 if (debug_linux_nat)
2451 fprintf_unfiltered (gdb_stdlog,
2452 "SC: kill %s **<SIGSTOP>**\n",
2453 target_pid_to_str (lp->ptid));
2456 ret = kill_lwp (GET_LWP (lp->ptid), SIGSTOP);
2457 if (debug_linux_nat)
2459 fprintf_unfiltered (gdb_stdlog,
2460 "SC: lwp kill %d %s\n",
2462 errno ? safe_strerror (errno) : "ERRNO-OK");
2466 gdb_assert (lp->status == 0);
2472 /* Return non-zero if LWP PID has a pending SIGINT. */
2475 linux_nat_has_pending_sigint (int pid)
2477 sigset_t pending, blocked, ignored;
2480 linux_proc_pending_signals (pid, &pending, &blocked, &ignored);
2482 if (sigismember (&pending, SIGINT)
2483 && !sigismember (&ignored, SIGINT))
2489 /* Set a flag in LP indicating that we should ignore its next SIGINT. */
2492 set_ignore_sigint (struct lwp_info *lp, void *data)
2494 /* If a thread has a pending SIGINT, consume it; otherwise, set a
2495 flag to consume the next one. */
2496 if (lp->stopped && lp->status != 0 && WIFSTOPPED (lp->status)
2497 && WSTOPSIG (lp->status) == SIGINT)
2500 lp->ignore_sigint = 1;
2505 /* If LP does not have a SIGINT pending, then clear the ignore_sigint flag.
2506 This function is called after we know the LWP has stopped; if the LWP
2507 stopped before the expected SIGINT was delivered, then it will never have
2508 arrived. Also, if the signal was delivered to a shared queue and consumed
2509 by a different thread, it will never be delivered to this LWP. */
2512 maybe_clear_ignore_sigint (struct lwp_info *lp)
2514 if (!lp->ignore_sigint)
2517 if (!linux_nat_has_pending_sigint (GET_LWP (lp->ptid)))
2519 if (debug_linux_nat)
2520 fprintf_unfiltered (gdb_stdlog,
2521 "MCIS: Clearing bogus flag for %s\n",
2522 target_pid_to_str (lp->ptid));
2523 lp->ignore_sigint = 0;
2527 /* Fetch the possible triggered data watchpoint info and store it in
2530 On some archs, like x86, that use debug registers to set
2531 watchpoints, it's possible that the way to know which watched
2532 address trapped, is to check the register that is used to select
2533 which address to watch. Problem is, between setting the watchpoint
2534 and reading back which data address trapped, the user may change
2535 the set of watchpoints, and, as a consequence, GDB changes the
2536 debug registers in the inferior. To avoid reading back a stale
2537 stopped-data-address when that happens, we cache in LP the fact
2538 that a watchpoint trapped, and the corresponding data address, as
2539 soon as we see LP stop with a SIGTRAP. If GDB changes the debug
2540 registers meanwhile, we have the cached data we can rely on. */
2543 save_sigtrap (struct lwp_info *lp)
2545 struct cleanup *old_chain;
2547 if (linux_ops->to_stopped_by_watchpoint == NULL)
2549 lp->stopped_by_watchpoint = 0;
2553 old_chain = save_inferior_ptid ();
2554 inferior_ptid = lp->ptid;
2556 lp->stopped_by_watchpoint = linux_ops->to_stopped_by_watchpoint ();
2558 if (lp->stopped_by_watchpoint)
2560 if (linux_ops->to_stopped_data_address != NULL)
2561 lp->stopped_data_address_p =
2562 linux_ops->to_stopped_data_address (¤t_target,
2563 &lp->stopped_data_address);
2565 lp->stopped_data_address_p = 0;
2568 do_cleanups (old_chain);
2571 /* See save_sigtrap. */
2574 linux_nat_stopped_by_watchpoint (void)
2576 struct lwp_info *lp = find_lwp_pid (inferior_ptid);
2578 gdb_assert (lp != NULL);
2580 return lp->stopped_by_watchpoint;
2584 linux_nat_stopped_data_address (struct target_ops *ops, CORE_ADDR *addr_p)
2586 struct lwp_info *lp = find_lwp_pid (inferior_ptid);
2588 gdb_assert (lp != NULL);
2590 *addr_p = lp->stopped_data_address;
2592 return lp->stopped_data_address_p;
2595 /* Wait until LP is stopped. */
2598 stop_wait_callback (struct lwp_info *lp, void *data)
2600 struct inferior *inf = find_inferior_pid (GET_PID (lp->ptid));
2602 /* If this is a vfork parent, bail out, it is not going to report
2603 any SIGSTOP until the vfork is done with. */
2604 if (inf->vfork_child != NULL)
2611 status = wait_lwp (lp);
2615 if (lp->ignore_sigint && WIFSTOPPED (status)
2616 && WSTOPSIG (status) == SIGINT)
2618 lp->ignore_sigint = 0;
2621 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2622 if (debug_linux_nat)
2623 fprintf_unfiltered (gdb_stdlog,
2624 "PTRACE_CONT %s, 0, 0 (%s) (discarding SIGINT)\n",
2625 target_pid_to_str (lp->ptid),
2626 errno ? safe_strerror (errno) : "OK");
2628 return stop_wait_callback (lp, NULL);
2631 maybe_clear_ignore_sigint (lp);
2633 if (WSTOPSIG (status) != SIGSTOP)
2635 if (WSTOPSIG (status) == SIGTRAP)
2637 /* If a LWP other than the LWP that we're reporting an
2638 event for has hit a GDB breakpoint (as opposed to
2639 some random trap signal), then just arrange for it to
2640 hit it again later. We don't keep the SIGTRAP status
2641 and don't forward the SIGTRAP signal to the LWP. We
2642 will handle the current event, eventually we will
2643 resume all LWPs, and this one will get its breakpoint
2646 If we do not do this, then we run the risk that the
2647 user will delete or disable the breakpoint, but the
2648 thread will have already tripped on it. */
2650 /* Save the trap's siginfo in case we need it later. */
2655 /* Now resume this LWP and get the SIGSTOP event. */
2657 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2658 if (debug_linux_nat)
2660 fprintf_unfiltered (gdb_stdlog,
2661 "PTRACE_CONT %s, 0, 0 (%s)\n",
2662 target_pid_to_str (lp->ptid),
2663 errno ? safe_strerror (errno) : "OK");
2665 fprintf_unfiltered (gdb_stdlog,
2666 "SWC: Candidate SIGTRAP event in %s\n",
2667 target_pid_to_str (lp->ptid));
2669 /* Hold this event/waitstatus while we check to see if
2670 there are any more (we still want to get that SIGSTOP). */
2671 stop_wait_callback (lp, NULL);
2673 /* Hold the SIGTRAP for handling by linux_nat_wait. If
2674 there's another event, throw it back into the
2678 if (debug_linux_nat)
2679 fprintf_unfiltered (gdb_stdlog,
2680 "SWC: kill %s, %s\n",
2681 target_pid_to_str (lp->ptid),
2682 status_to_str ((int) status));
2683 kill_lwp (GET_LWP (lp->ptid), WSTOPSIG (lp->status));
2686 /* Save the sigtrap event. */
2687 lp->status = status;
2692 /* The thread was stopped with a signal other than
2693 SIGSTOP, and didn't accidentally trip a breakpoint. */
2695 if (debug_linux_nat)
2697 fprintf_unfiltered (gdb_stdlog,
2698 "SWC: Pending event %s in %s\n",
2699 status_to_str ((int) status),
2700 target_pid_to_str (lp->ptid));
2702 /* Now resume this LWP and get the SIGSTOP event. */
2704 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
2705 if (debug_linux_nat)
2706 fprintf_unfiltered (gdb_stdlog,
2707 "SWC: PTRACE_CONT %s, 0, 0 (%s)\n",
2708 target_pid_to_str (lp->ptid),
2709 errno ? safe_strerror (errno) : "OK");
2711 /* Hold this event/waitstatus while we check to see if
2712 there are any more (we still want to get that SIGSTOP). */
2713 stop_wait_callback (lp, NULL);
2715 /* If the lp->status field is still empty, use it to
2716 hold this event. If not, then this event must be
2717 returned to the event queue of the LWP. */
2720 if (debug_linux_nat)
2722 fprintf_unfiltered (gdb_stdlog,
2723 "SWC: kill %s, %s\n",
2724 target_pid_to_str (lp->ptid),
2725 status_to_str ((int) status));
2727 kill_lwp (GET_LWP (lp->ptid), WSTOPSIG (status));
2730 lp->status = status;
2736 /* We caught the SIGSTOP that we intended to catch, so
2737 there's no SIGSTOP pending. */
2746 /* Return non-zero if LP has a wait status pending. */
2749 status_callback (struct lwp_info *lp, void *data)
2751 /* Only report a pending wait status if we pretend that this has
2752 indeed been resumed. */
2756 if (lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
2758 /* A ptrace event, like PTRACE_FORK|VFORK|EXEC, syscall event,
2759 or a a pending process exit. Note that `W_EXITCODE(0,0) ==
2760 0', so a clean process exit can not be stored pending in
2761 lp->status, it is indistinguishable from
2762 no-pending-status. */
2766 if (lp->status != 0)
2772 /* Return non-zero if LP isn't stopped. */
2775 running_callback (struct lwp_info *lp, void *data)
2777 return (lp->stopped == 0 || (lp->status != 0 && lp->resumed));
2780 /* Count the LWP's that have had events. */
2783 count_events_callback (struct lwp_info *lp, void *data)
2787 gdb_assert (count != NULL);
2789 /* Count only resumed LWPs that have a SIGTRAP event pending. */
2790 if (lp->status != 0 && lp->resumed
2791 && WIFSTOPPED (lp->status) && WSTOPSIG (lp->status) == SIGTRAP)
2797 /* Select the LWP (if any) that is currently being single-stepped. */
2800 select_singlestep_lwp_callback (struct lwp_info *lp, void *data)
2802 if (lp->step && lp->status != 0)
2808 /* Select the Nth LWP that has had a SIGTRAP event. */
2811 select_event_lwp_callback (struct lwp_info *lp, void *data)
2813 int *selector = data;
2815 gdb_assert (selector != NULL);
2817 /* Select only resumed LWPs that have a SIGTRAP event pending. */
2818 if (lp->status != 0 && lp->resumed
2819 && WIFSTOPPED (lp->status) && WSTOPSIG (lp->status) == SIGTRAP)
2820 if ((*selector)-- == 0)
2827 cancel_breakpoint (struct lwp_info *lp)
2829 /* Arrange for a breakpoint to be hit again later. We don't keep
2830 the SIGTRAP status and don't forward the SIGTRAP signal to the
2831 LWP. We will handle the current event, eventually we will resume
2832 this LWP, and this breakpoint will trap again.
2834 If we do not do this, then we run the risk that the user will
2835 delete or disable the breakpoint, but the LWP will have already
2838 struct regcache *regcache = get_thread_regcache (lp->ptid);
2839 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2842 pc = regcache_read_pc (regcache) - gdbarch_decr_pc_after_break (gdbarch);
2843 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache), pc))
2845 if (debug_linux_nat)
2846 fprintf_unfiltered (gdb_stdlog,
2847 "CB: Push back breakpoint for %s\n",
2848 target_pid_to_str (lp->ptid));
2850 /* Back up the PC if necessary. */
2851 if (gdbarch_decr_pc_after_break (gdbarch))
2852 regcache_write_pc (regcache, pc);
2860 cancel_breakpoints_callback (struct lwp_info *lp, void *data)
2862 struct lwp_info *event_lp = data;
2864 /* Leave the LWP that has been elected to receive a SIGTRAP alone. */
2868 /* If a LWP other than the LWP that we're reporting an event for has
2869 hit a GDB breakpoint (as opposed to some random trap signal),
2870 then just arrange for it to hit it again later. We don't keep
2871 the SIGTRAP status and don't forward the SIGTRAP signal to the
2872 LWP. We will handle the current event, eventually we will resume
2873 all LWPs, and this one will get its breakpoint trap again.
2875 If we do not do this, then we run the risk that the user will
2876 delete or disable the breakpoint, but the LWP will have already
2879 if (lp->waitstatus.kind == TARGET_WAITKIND_IGNORE
2881 && WIFSTOPPED (lp->status) && WSTOPSIG (lp->status) == SIGTRAP
2882 && cancel_breakpoint (lp))
2883 /* Throw away the SIGTRAP. */
2889 /* Select one LWP out of those that have events pending. */
2892 select_event_lwp (ptid_t filter, struct lwp_info **orig_lp, int *status)
2895 int random_selector;
2896 struct lwp_info *event_lp;
2898 /* Record the wait status for the original LWP. */
2899 (*orig_lp)->status = *status;
2901 /* Give preference to any LWP that is being single-stepped. */
2902 event_lp = iterate_over_lwps (filter,
2903 select_singlestep_lwp_callback, NULL);
2904 if (event_lp != NULL)
2906 if (debug_linux_nat)
2907 fprintf_unfiltered (gdb_stdlog,
2908 "SEL: Select single-step %s\n",
2909 target_pid_to_str (event_lp->ptid));
2913 /* No single-stepping LWP. Select one at random, out of those
2914 which have had SIGTRAP events. */
2916 /* First see how many SIGTRAP events we have. */
2917 iterate_over_lwps (filter, count_events_callback, &num_events);
2919 /* Now randomly pick a LWP out of those that have had a SIGTRAP. */
2920 random_selector = (int)
2921 ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
2923 if (debug_linux_nat && num_events > 1)
2924 fprintf_unfiltered (gdb_stdlog,
2925 "SEL: Found %d SIGTRAP events, selecting #%d\n",
2926 num_events, random_selector);
2928 event_lp = iterate_over_lwps (filter,
2929 select_event_lwp_callback,
2933 if (event_lp != NULL)
2935 /* Switch the event LWP. */
2936 *orig_lp = event_lp;
2937 *status = event_lp->status;
2940 /* Flush the wait status for the event LWP. */
2941 (*orig_lp)->status = 0;
2944 /* Return non-zero if LP has been resumed. */
2947 resumed_callback (struct lwp_info *lp, void *data)
2952 /* Stop an active thread, verify it still exists, then resume it. */
2955 stop_and_resume_callback (struct lwp_info *lp, void *data)
2957 struct lwp_info *ptr;
2959 if (!lp->stopped && !lp->signalled)
2961 stop_callback (lp, NULL);
2962 stop_wait_callback (lp, NULL);
2963 /* Resume if the lwp still exists. */
2964 for (ptr = lwp_list; ptr; ptr = ptr->next)
2967 resume_callback (lp, NULL);
2968 resume_set_callback (lp, NULL);
2974 /* Check if we should go on and pass this event to common code.
2975 Return the affected lwp if we are, or NULL otherwise. */
2976 static struct lwp_info *
2977 linux_nat_filter_event (int lwpid, int status, int options)
2979 struct lwp_info *lp;
2981 lp = find_lwp_pid (pid_to_ptid (lwpid));
2983 /* Check for stop events reported by a process we didn't already
2984 know about - anything not already in our LWP list.
2986 If we're expecting to receive stopped processes after
2987 fork, vfork, and clone events, then we'll just add the
2988 new one to our list and go back to waiting for the event
2989 to be reported - the stopped process might be returned
2990 from waitpid before or after the event is. */
2991 if (WIFSTOPPED (status) && !lp)
2993 linux_record_stopped_pid (lwpid, status);
2997 /* Make sure we don't report an event for the exit of an LWP not in
2998 our list, i.e. not part of the current process. This can happen
2999 if we detach from a program we original forked and then it
3001 if (!WIFSTOPPED (status) && !lp)
3004 /* NOTE drow/2003-06-17: This code seems to be meant for debugging
3005 CLONE_PTRACE processes which do not use the thread library -
3006 otherwise we wouldn't find the new LWP this way. That doesn't
3007 currently work, and the following code is currently unreachable
3008 due to the two blocks above. If it's fixed some day, this code
3009 should be broken out into a function so that we can also pick up
3010 LWPs from the new interface. */
3013 lp = add_lwp (BUILD_LWP (lwpid, GET_PID (inferior_ptid)));
3014 if (options & __WCLONE)
3017 gdb_assert (WIFSTOPPED (status)
3018 && WSTOPSIG (status) == SIGSTOP);
3021 if (!in_thread_list (inferior_ptid))
3023 inferior_ptid = BUILD_LWP (GET_PID (inferior_ptid),
3024 GET_PID (inferior_ptid));
3025 add_thread (inferior_ptid);
3028 add_thread (lp->ptid);
3031 /* Handle GNU/Linux's syscall SIGTRAPs. */
3032 if (WIFSTOPPED (status) && WSTOPSIG (status) == SYSCALL_SIGTRAP)
3034 /* No longer need the sysgood bit. The ptrace event ends up
3035 recorded in lp->waitstatus if we care for it. We can carry
3036 on handling the event like a regular SIGTRAP from here
3038 status = W_STOPCODE (SIGTRAP);
3039 if (linux_handle_syscall_trap (lp, 0))
3043 /* Handle GNU/Linux's extended waitstatus for trace events. */
3044 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP && status >> 16 != 0)
3046 if (debug_linux_nat)
3047 fprintf_unfiltered (gdb_stdlog,
3048 "LLW: Handling extended status 0x%06x\n",
3050 if (linux_handle_extended_wait (lp, status, 0))
3054 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP)
3056 /* Save the trap's siginfo in case we need it later. */
3062 /* Check if the thread has exited. */
3063 if ((WIFEXITED (status) || WIFSIGNALED (status))
3064 && num_lwps (GET_PID (lp->ptid)) > 1)
3066 /* If this is the main thread, we must stop all threads and verify
3067 if they are still alive. This is because in the nptl thread model
3068 on Linux 2.4, there is no signal issued for exiting LWPs
3069 other than the main thread. We only get the main thread exit
3070 signal once all child threads have already exited. If we
3071 stop all the threads and use the stop_wait_callback to check
3072 if they have exited we can determine whether this signal
3073 should be ignored or whether it means the end of the debugged
3074 application, regardless of which threading model is being
3076 if (GET_PID (lp->ptid) == GET_LWP (lp->ptid))
3079 iterate_over_lwps (pid_to_ptid (GET_PID (lp->ptid)),
3080 stop_and_resume_callback, NULL);
3083 if (debug_linux_nat)
3084 fprintf_unfiltered (gdb_stdlog,
3085 "LLW: %s exited.\n",
3086 target_pid_to_str (lp->ptid));
3088 if (num_lwps (GET_PID (lp->ptid)) > 1)
3090 /* If there is at least one more LWP, then the exit signal
3091 was not the end of the debugged application and should be
3098 /* Check if the current LWP has previously exited. In the nptl
3099 thread model, LWPs other than the main thread do not issue
3100 signals when they exit so we must check whenever the thread has
3101 stopped. A similar check is made in stop_wait_callback(). */
3102 if (num_lwps (GET_PID (lp->ptid)) > 1 && !linux_thread_alive (lp->ptid))
3104 ptid_t ptid = pid_to_ptid (GET_PID (lp->ptid));
3106 if (debug_linux_nat)
3107 fprintf_unfiltered (gdb_stdlog,
3108 "LLW: %s exited.\n",
3109 target_pid_to_str (lp->ptid));
3113 /* Make sure there is at least one thread running. */
3114 gdb_assert (iterate_over_lwps (ptid, running_callback, NULL));
3116 /* Discard the event. */
3120 /* Make sure we don't report a SIGSTOP that we sent ourselves in
3121 an attempt to stop an LWP. */
3123 && WIFSTOPPED (status) && WSTOPSIG (status) == SIGSTOP)
3125 if (debug_linux_nat)
3126 fprintf_unfiltered (gdb_stdlog,
3127 "LLW: Delayed SIGSTOP caught for %s.\n",
3128 target_pid_to_str (lp->ptid));
3130 /* This is a delayed SIGSTOP. */
3133 registers_changed ();
3135 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
3136 lp->step, TARGET_SIGNAL_0);
3137 if (debug_linux_nat)
3138 fprintf_unfiltered (gdb_stdlog,
3139 "LLW: %s %s, 0, 0 (discard SIGSTOP)\n",
3141 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3142 target_pid_to_str (lp->ptid));
3145 gdb_assert (lp->resumed);
3147 /* Discard the event. */
3151 /* Make sure we don't report a SIGINT that we have already displayed
3152 for another thread. */
3153 if (lp->ignore_sigint
3154 && WIFSTOPPED (status) && WSTOPSIG (status) == SIGINT)
3156 if (debug_linux_nat)
3157 fprintf_unfiltered (gdb_stdlog,
3158 "LLW: Delayed SIGINT caught for %s.\n",
3159 target_pid_to_str (lp->ptid));
3161 /* This is a delayed SIGINT. */
3162 lp->ignore_sigint = 0;
3164 registers_changed ();
3165 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
3166 lp->step, TARGET_SIGNAL_0);
3167 if (debug_linux_nat)
3168 fprintf_unfiltered (gdb_stdlog,
3169 "LLW: %s %s, 0, 0 (discard SIGINT)\n",
3171 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3172 target_pid_to_str (lp->ptid));
3175 gdb_assert (lp->resumed);
3177 /* Discard the event. */
3181 /* An interesting event. */
3183 lp->status = status;
3188 linux_nat_wait_1 (struct target_ops *ops,
3189 ptid_t ptid, struct target_waitstatus *ourstatus,
3192 static sigset_t prev_mask;
3193 struct lwp_info *lp = NULL;
3198 if (debug_linux_nat_async)
3199 fprintf_unfiltered (gdb_stdlog, "LLW: enter\n");
3201 /* The first time we get here after starting a new inferior, we may
3202 not have added it to the LWP list yet - this is the earliest
3203 moment at which we know its PID. */
3204 if (ptid_is_pid (inferior_ptid))
3206 /* Upgrade the main thread's ptid. */
3207 thread_change_ptid (inferior_ptid,
3208 BUILD_LWP (GET_PID (inferior_ptid),
3209 GET_PID (inferior_ptid)));
3211 lp = add_lwp (inferior_ptid);
3215 /* Make sure SIGCHLD is blocked. */
3216 block_child_signals (&prev_mask);
3218 if (ptid_equal (ptid, minus_one_ptid))
3220 else if (ptid_is_pid (ptid))
3221 /* A request to wait for a specific tgid. This is not possible
3222 with waitpid, so instead, we wait for any child, and leave
3223 children we're not interested in right now with a pending
3224 status to report later. */
3227 pid = GET_LWP (ptid);
3233 /* Make sure that of those LWPs we want to get an event from, there
3234 is at least one LWP that has been resumed. If there's none, just
3235 bail out. The core may just be flushing asynchronously all
3237 if (iterate_over_lwps (ptid, resumed_callback, NULL) == NULL)
3239 ourstatus->kind = TARGET_WAITKIND_IGNORE;
3241 if (debug_linux_nat_async)
3242 fprintf_unfiltered (gdb_stdlog, "LLW: exit (no resumed LWP)\n");
3244 restore_child_signals_mask (&prev_mask);
3245 return minus_one_ptid;
3248 /* First check if there is a LWP with a wait status pending. */
3251 /* Any LWP that's been resumed will do. */
3252 lp = iterate_over_lwps (ptid, status_callback, NULL);
3255 if (debug_linux_nat && lp->status)
3256 fprintf_unfiltered (gdb_stdlog,
3257 "LLW: Using pending wait status %s for %s.\n",
3258 status_to_str (lp->status),
3259 target_pid_to_str (lp->ptid));
3262 /* But if we don't find one, we'll have to wait, and check both
3263 cloned and uncloned processes. We start with the cloned
3265 options = __WCLONE | WNOHANG;
3267 else if (is_lwp (ptid))
3269 if (debug_linux_nat)
3270 fprintf_unfiltered (gdb_stdlog,
3271 "LLW: Waiting for specific LWP %s.\n",
3272 target_pid_to_str (ptid));
3274 /* We have a specific LWP to check. */
3275 lp = find_lwp_pid (ptid);
3278 if (debug_linux_nat && lp->status)
3279 fprintf_unfiltered (gdb_stdlog,
3280 "LLW: Using pending wait status %s for %s.\n",
3281 status_to_str (lp->status),
3282 target_pid_to_str (lp->ptid));
3284 /* If we have to wait, take into account whether PID is a cloned
3285 process or not. And we have to convert it to something that
3286 the layer beneath us can understand. */
3287 options = lp->cloned ? __WCLONE : 0;
3288 pid = GET_LWP (ptid);
3290 /* We check for lp->waitstatus in addition to lp->status,
3291 because we can have pending process exits recorded in
3292 lp->status and W_EXITCODE(0,0) == 0. We should probably have
3293 an additional lp->status_p flag. */
3294 if (lp->status == 0 && lp->waitstatus.kind == TARGET_WAITKIND_IGNORE)
3298 if (lp && lp->signalled)
3300 /* A pending SIGSTOP may interfere with the normal stream of
3301 events. In a typical case where interference is a problem,
3302 we have a SIGSTOP signal pending for LWP A while
3303 single-stepping it, encounter an event in LWP B, and take the
3304 pending SIGSTOP while trying to stop LWP A. After processing
3305 the event in LWP B, LWP A is continued, and we'll never see
3306 the SIGTRAP associated with the last time we were
3307 single-stepping LWP A. */
3309 /* Resume the thread. It should halt immediately returning the
3311 registers_changed ();
3312 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
3313 lp->step, TARGET_SIGNAL_0);
3314 if (debug_linux_nat)
3315 fprintf_unfiltered (gdb_stdlog,
3316 "LLW: %s %s, 0, 0 (expect SIGSTOP)\n",
3317 lp->step ? "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3318 target_pid_to_str (lp->ptid));
3320 gdb_assert (lp->resumed);
3322 /* Catch the pending SIGSTOP. */
3323 status = lp->status;
3326 stop_wait_callback (lp, NULL);
3328 /* If the lp->status field isn't empty, we caught another signal
3329 while flushing the SIGSTOP. Return it back to the event
3330 queue of the LWP, as we already have an event to handle. */
3333 if (debug_linux_nat)
3334 fprintf_unfiltered (gdb_stdlog,
3335 "LLW: kill %s, %s\n",
3336 target_pid_to_str (lp->ptid),
3337 status_to_str (lp->status));
3338 kill_lwp (GET_LWP (lp->ptid), WSTOPSIG (lp->status));
3341 lp->status = status;
3344 if (!target_can_async_p ())
3346 /* Causes SIGINT to be passed on to the attached process. */
3350 /* Translate generic target_wait options into waitpid options. */
3351 if (target_options & TARGET_WNOHANG)
3358 lwpid = my_waitpid (pid, &status, options);
3362 gdb_assert (pid == -1 || lwpid == pid);
3364 if (debug_linux_nat)
3366 fprintf_unfiltered (gdb_stdlog,
3367 "LLW: waitpid %ld received %s\n",
3368 (long) lwpid, status_to_str (status));
3371 lp = linux_nat_filter_event (lwpid, status, options);
3374 && ptid_is_pid (ptid)
3375 && ptid_get_pid (lp->ptid) != ptid_get_pid (ptid))
3377 gdb_assert (lp->resumed);
3379 if (debug_linux_nat)
3380 fprintf (stderr, "LWP %ld got an event %06x, leaving pending.\n",
3381 ptid_get_lwp (lp->ptid), status);
3383 if (WIFSTOPPED (lp->status))
3385 if (WSTOPSIG (lp->status) != SIGSTOP)
3387 /* Cancel breakpoint hits. The breakpoint may
3388 be removed before we fetch events from this
3389 process to report to the core. It is best
3390 not to assume the moribund breakpoints
3391 heuristic always handles these cases --- it
3392 could be too many events go through to the
3393 core before this one is handled. All-stop
3394 always cancels breakpoint hits in all
3397 && lp->waitstatus.kind == TARGET_WAITKIND_IGNORE
3398 && WSTOPSIG (lp->status) == SIGTRAP
3399 && cancel_breakpoint (lp))
3401 /* Throw away the SIGTRAP. */
3404 if (debug_linux_nat)
3406 "LLW: LWP %ld hit a breakpoint while waiting "
3407 "for another process; cancelled it\n",
3408 ptid_get_lwp (lp->ptid));
3418 else if (WIFEXITED (status) || WIFSIGNALED (status))
3420 if (debug_linux_nat)
3421 fprintf (stderr, "Process %ld exited while stopping LWPs\n",
3422 ptid_get_lwp (lp->ptid));
3424 /* This was the last lwp in the process. Since
3425 events are serialized to GDB core, and we can't
3426 report this one right now, but GDB core and the
3427 other target layers will want to be notified
3428 about the exit code/signal, leave the status
3429 pending for the next time we're able to report
3432 /* Prevent trying to stop this thread again. We'll
3433 never try to resume it because it has a pending
3437 /* Dead LWP's aren't expected to reported a pending
3441 /* Store the pending event in the waitstatus as
3442 well, because W_EXITCODE(0,0) == 0. */
3443 store_waitstatus (&lp->waitstatus, lp->status);
3457 /* waitpid did return something. Restart over. */
3458 options |= __WCLONE;
3466 /* Alternate between checking cloned and uncloned processes. */
3467 options ^= __WCLONE;
3469 /* And every time we have checked both:
3470 In async mode, return to event loop;
3471 In sync mode, suspend waiting for a SIGCHLD signal. */
3472 if (options & __WCLONE)
3474 if (target_options & TARGET_WNOHANG)
3476 /* No interesting event. */
3477 ourstatus->kind = TARGET_WAITKIND_IGNORE;
3479 if (debug_linux_nat_async)
3480 fprintf_unfiltered (gdb_stdlog, "LLW: exit (ignore)\n");
3482 restore_child_signals_mask (&prev_mask);
3483 return minus_one_ptid;
3486 sigsuspend (&suspend_mask);
3489 else if (target_options & TARGET_WNOHANG)
3491 /* No interesting event for PID yet. */
3492 ourstatus->kind = TARGET_WAITKIND_IGNORE;
3494 if (debug_linux_nat_async)
3495 fprintf_unfiltered (gdb_stdlog, "LLW: exit (ignore)\n");
3497 restore_child_signals_mask (&prev_mask);
3498 return minus_one_ptid;
3501 /* We shouldn't end up here unless we want to try again. */
3502 gdb_assert (lp == NULL);
3505 if (!target_can_async_p ())
3506 clear_sigint_trap ();
3510 status = lp->status;
3513 /* Don't report signals that GDB isn't interested in, such as
3514 signals that are neither printed nor stopped upon. Stopping all
3515 threads can be a bit time-consuming so if we want decent
3516 performance with heavily multi-threaded programs, especially when
3517 they're using a high frequency timer, we'd better avoid it if we
3520 if (WIFSTOPPED (status))
3522 int signo = target_signal_from_host (WSTOPSIG (status));
3523 struct inferior *inf;
3525 inf = find_inferior_pid (ptid_get_pid (lp->ptid));
3528 /* Defer to common code if we get a signal while
3529 single-stepping, since that may need special care, e.g. to
3530 skip the signal handler, or, if we're gaining control of the
3533 && inf->stop_soon == NO_STOP_QUIETLY
3534 && signal_stop_state (signo) == 0
3535 && signal_print_state (signo) == 0
3536 && signal_pass_state (signo) == 1)
3538 /* FIMXE: kettenis/2001-06-06: Should we resume all threads
3539 here? It is not clear we should. GDB may not expect
3540 other threads to run. On the other hand, not resuming
3541 newly attached threads may cause an unwanted delay in
3542 getting them running. */
3543 registers_changed ();
3544 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
3546 if (debug_linux_nat)
3547 fprintf_unfiltered (gdb_stdlog,
3548 "LLW: %s %s, %s (preempt 'handle')\n",
3550 "PTRACE_SINGLESTEP" : "PTRACE_CONT",
3551 target_pid_to_str (lp->ptid),
3552 signo ? strsignal (signo) : "0");
3559 /* Only do the below in all-stop, as we currently use SIGINT
3560 to implement target_stop (see linux_nat_stop) in
3562 if (signo == TARGET_SIGNAL_INT && signal_pass_state (signo) == 0)
3564 /* If ^C/BREAK is typed at the tty/console, SIGINT gets
3565 forwarded to the entire process group, that is, all LWPs
3566 will receive it - unless they're using CLONE_THREAD to
3567 share signals. Since we only want to report it once, we
3568 mark it as ignored for all LWPs except this one. */
3569 iterate_over_lwps (pid_to_ptid (ptid_get_pid (ptid)),
3570 set_ignore_sigint, NULL);
3571 lp->ignore_sigint = 0;
3574 maybe_clear_ignore_sigint (lp);
3578 /* This LWP is stopped now. */
3581 if (debug_linux_nat)
3582 fprintf_unfiltered (gdb_stdlog, "LLW: Candidate event %s in %s.\n",
3583 status_to_str (status), target_pid_to_str (lp->ptid));
3587 /* Now stop all other LWP's ... */
3588 iterate_over_lwps (minus_one_ptid, stop_callback, NULL);
3590 /* ... and wait until all of them have reported back that
3591 they're no longer running. */
3592 iterate_over_lwps (minus_one_ptid, stop_wait_callback, NULL);
3594 /* If we're not waiting for a specific LWP, choose an event LWP
3595 from among those that have had events. Giving equal priority
3596 to all LWPs that have had events helps prevent
3599 select_event_lwp (ptid, &lp, &status);
3601 /* Now that we've selected our final event LWP, cancel any
3602 breakpoints in other LWPs that have hit a GDB breakpoint.
3603 See the comment in cancel_breakpoints_callback to find out
3605 iterate_over_lwps (minus_one_ptid, cancel_breakpoints_callback, lp);
3607 /* In all-stop, from the core's perspective, all LWPs are now
3608 stopped until a new resume action is sent over. */
3609 iterate_over_lwps (minus_one_ptid, resume_clear_callback, NULL);
3614 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP)
3616 if (debug_linux_nat)
3617 fprintf_unfiltered (gdb_stdlog,
3618 "LLW: trap ptid is %s.\n",
3619 target_pid_to_str (lp->ptid));
3622 if (lp->waitstatus.kind != TARGET_WAITKIND_IGNORE)
3624 *ourstatus = lp->waitstatus;
3625 lp->waitstatus.kind = TARGET_WAITKIND_IGNORE;
3628 store_waitstatus (ourstatus, status);
3630 if (debug_linux_nat_async)
3631 fprintf_unfiltered (gdb_stdlog, "LLW: exit\n");
3633 restore_child_signals_mask (&prev_mask);
3634 lp->core = linux_nat_core_of_thread_1 (lp->ptid);
3638 /* Resume LWPs that are currently stopped without any pending status
3639 to report, but are resumed from the core's perspective. */
3642 resume_stopped_resumed_lwps (struct lwp_info *lp, void *data)
3644 ptid_t *wait_ptid_p = data;
3649 && lp->waitstatus.kind == TARGET_WAITKIND_IGNORE)
3651 gdb_assert (is_executing (lp->ptid));
3653 /* Don't bother if there's a breakpoint at PC that we'd hit
3654 immediately, and we're not waiting for this LWP. */
3655 if (!ptid_match (lp->ptid, *wait_ptid_p))
3657 struct regcache *regcache = get_thread_regcache (lp->ptid);
3658 CORE_ADDR pc = regcache_read_pc (regcache);
3660 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache), pc))
3664 if (debug_linux_nat)
3665 fprintf_unfiltered (gdb_stdlog,
3666 "RSRL: resuming stopped-resumed LWP %s\n",
3667 target_pid_to_str (lp->ptid));
3669 linux_ops->to_resume (linux_ops, pid_to_ptid (GET_LWP (lp->ptid)),
3670 lp->step, TARGET_SIGNAL_0);
3672 memset (&lp->siginfo, 0, sizeof (lp->siginfo));
3673 lp->stopped_by_watchpoint = 0;
3680 linux_nat_wait (struct target_ops *ops,
3681 ptid_t ptid, struct target_waitstatus *ourstatus,
3686 if (debug_linux_nat)
3687 fprintf_unfiltered (gdb_stdlog, "linux_nat_wait: [%s]\n", target_pid_to_str (ptid));
3689 /* Flush the async file first. */
3690 if (target_can_async_p ())
3691 async_file_flush ();
3693 /* Resume LWPs that are currently stopped without any pending status
3694 to report, but are resumed from the core's perspective. LWPs get
3695 in this state if we find them stopping at a time we're not
3696 interested in reporting the event (target_wait on a
3697 specific_process, for example, see linux_nat_wait_1), and
3698 meanwhile the event became uninteresting. Don't bother resuming
3699 LWPs we're not going to wait for if they'd stop immediately. */
3701 iterate_over_lwps (minus_one_ptid, resume_stopped_resumed_lwps, &ptid);
3703 event_ptid = linux_nat_wait_1 (ops, ptid, ourstatus, target_options);
3705 /* If we requested any event, and something came out, assume there
3706 may be more. If we requested a specific lwp or process, also
3707 assume there may be more. */
3708 if (target_can_async_p ()
3709 && (ourstatus->kind != TARGET_WAITKIND_IGNORE
3710 || !ptid_equal (ptid, minus_one_ptid)))
3713 /* Get ready for the next event. */
3714 if (target_can_async_p ())
3715 target_async (inferior_event_handler, 0);
3721 kill_callback (struct lwp_info *lp, void *data)
3724 ptrace (PTRACE_KILL, GET_LWP (lp->ptid), 0, 0);
3725 if (debug_linux_nat)
3726 fprintf_unfiltered (gdb_stdlog,
3727 "KC: PTRACE_KILL %s, 0, 0 (%s)\n",
3728 target_pid_to_str (lp->ptid),
3729 errno ? safe_strerror (errno) : "OK");
3735 kill_wait_callback (struct lwp_info *lp, void *data)
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. */
3743 /* For cloned processes we must check both with __WCLONE and
3744 without, since the exit status of a cloned process isn't reported
3750 pid = my_waitpid (GET_LWP (lp->ptid), NULL, __WCLONE);
3751 if (pid != (pid_t) -1)
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
3762 kill_callback (lp, NULL);
3765 while (pid == GET_LWP (lp->ptid));
3767 gdb_assert (pid == -1 && errno == ECHILD);
3772 pid = my_waitpid (GET_LWP (lp->ptid), NULL, 0);
3773 if (pid != (pid_t) -1)
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);
3783 while (pid == GET_LWP (lp->ptid));
3785 gdb_assert (pid == -1 && errno == ECHILD);
3790 linux_nat_kill (struct target_ops *ops)
3792 struct target_waitstatus last;
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. */
3800 get_last_target_status (&last_ptid, &last);
3802 if (last.kind == TARGET_WAITKIND_FORKED
3803 || last.kind == TARGET_WAITKIND_VFORKED)
3805 ptrace (PT_KILL, PIDGET (last.value.related_pid), 0, 0);
3809 if (forks_exist_p ())
3810 linux_fork_killall ();
3813 ptid_t ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
3814 /* Stop all threads before killing them, since ptrace requires
3815 that the thread is stopped to sucessfully PTRACE_KILL. */
3816 iterate_over_lwps (ptid, stop_callback, NULL);
3817 /* ... and wait until all of them have reported back that
3818 they're no longer running. */
3819 iterate_over_lwps (ptid, stop_wait_callback, NULL);
3821 /* Kill all LWP's ... */
3822 iterate_over_lwps (ptid, kill_callback, NULL);
3824 /* ... and wait until we've flushed all events. */
3825 iterate_over_lwps (ptid, kill_wait_callback, NULL);
3828 target_mourn_inferior ();
3832 linux_nat_mourn_inferior (struct target_ops *ops)
3834 purge_lwp_list (ptid_get_pid (inferior_ptid));
3836 if (! forks_exist_p ())
3837 /* Normal case, no other forks available. */
3838 linux_ops->to_mourn_inferior (ops);
3840 /* Multi-fork case. The current inferior_ptid has exited, but
3841 there are other viable forks to debug. Delete the exiting
3842 one and context-switch to the first available. */
3843 linux_fork_mourn_inferior ();
3846 /* Convert a native/host siginfo object, into/from the siginfo in the
3847 layout of the inferiors' architecture. */
3850 siginfo_fixup (struct siginfo *siginfo, gdb_byte *inf_siginfo, int direction)
3854 if (linux_nat_siginfo_fixup != NULL)
3855 done = linux_nat_siginfo_fixup (siginfo, inf_siginfo, direction);
3857 /* If there was no callback, or the callback didn't do anything,
3858 then just do a straight memcpy. */
3862 memcpy (siginfo, inf_siginfo, sizeof (struct siginfo));
3864 memcpy (inf_siginfo, siginfo, sizeof (struct siginfo));
3869 linux_xfer_siginfo (struct target_ops *ops, enum target_object object,
3870 const char *annex, gdb_byte *readbuf,
3871 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
3874 struct siginfo siginfo;
3875 gdb_byte inf_siginfo[sizeof (struct siginfo)];
3877 gdb_assert (object == TARGET_OBJECT_SIGNAL_INFO);
3878 gdb_assert (readbuf || writebuf);
3880 pid = GET_LWP (inferior_ptid);
3882 pid = GET_PID (inferior_ptid);
3884 if (offset > sizeof (siginfo))
3888 ptrace (PTRACE_GETSIGINFO, pid, (PTRACE_TYPE_ARG3) 0, &siginfo);
3892 /* When GDB is built as a 64-bit application, ptrace writes into
3893 SIGINFO an object with 64-bit layout. Since debugging a 32-bit
3894 inferior with a 64-bit GDB should look the same as debugging it
3895 with a 32-bit GDB, we need to convert it. GDB core always sees
3896 the converted layout, so any read/write will have to be done
3898 siginfo_fixup (&siginfo, inf_siginfo, 0);
3900 if (offset + len > sizeof (siginfo))
3901 len = sizeof (siginfo) - offset;
3903 if (readbuf != NULL)
3904 memcpy (readbuf, inf_siginfo + offset, len);
3907 memcpy (inf_siginfo + offset, writebuf, len);
3909 /* Convert back to ptrace layout before flushing it out. */
3910 siginfo_fixup (&siginfo, inf_siginfo, 1);
3913 ptrace (PTRACE_SETSIGINFO, pid, (PTRACE_TYPE_ARG3) 0, &siginfo);
3922 linux_nat_xfer_partial (struct target_ops *ops, enum target_object object,
3923 const char *annex, gdb_byte *readbuf,
3924 const gdb_byte *writebuf,
3925 ULONGEST offset, LONGEST len)
3927 struct cleanup *old_chain;
3930 if (object == TARGET_OBJECT_SIGNAL_INFO)
3931 return linux_xfer_siginfo (ops, object, annex, readbuf, writebuf,
3934 /* The target is connected but no live inferior is selected. Pass
3935 this request down to a lower stratum (e.g., the executable
3937 if (object == TARGET_OBJECT_MEMORY && ptid_equal (inferior_ptid, null_ptid))
3940 old_chain = save_inferior_ptid ();
3942 if (is_lwp (inferior_ptid))
3943 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
3945 xfer = linux_ops->to_xfer_partial (ops, object, annex, readbuf, writebuf,
3948 do_cleanups (old_chain);
3953 linux_thread_alive (ptid_t ptid)
3957 gdb_assert (is_lwp (ptid));
3959 /* Send signal 0 instead of anything ptrace, because ptracing a
3960 running thread errors out claiming that the thread doesn't
3962 err = kill_lwp (GET_LWP (ptid), 0);
3964 if (debug_linux_nat)
3965 fprintf_unfiltered (gdb_stdlog,
3966 "LLTA: KILL(SIG0) %s (%s)\n",
3967 target_pid_to_str (ptid),
3968 err ? safe_strerror (err) : "OK");
3977 linux_nat_thread_alive (struct target_ops *ops, ptid_t ptid)
3979 return linux_thread_alive (ptid);
3983 linux_nat_pid_to_str (struct target_ops *ops, ptid_t ptid)
3985 static char buf[64];
3988 && (GET_PID (ptid) != GET_LWP (ptid)
3989 || num_lwps (GET_PID (ptid)) > 1))
3991 snprintf (buf, sizeof (buf), "LWP %ld", GET_LWP (ptid));
3995 return normal_pid_to_str (ptid);
3998 /* Accepts an integer PID; Returns a string representing a file that
3999 can be opened to get the symbols for the child process. */
4002 linux_child_pid_to_exec_file (int pid)
4004 char *name1, *name2;
4006 name1 = xmalloc (MAXPATHLEN);
4007 name2 = xmalloc (MAXPATHLEN);
4008 make_cleanup (xfree, name1);
4009 make_cleanup (xfree, name2);
4010 memset (name2, 0, MAXPATHLEN);
4012 sprintf (name1, "/proc/%d/exe", pid);
4013 if (readlink (name1, name2, MAXPATHLEN) > 0)
4019 /* Service function for corefiles and info proc. */
4022 read_mapping (FILE *mapfile,
4027 char *device, long long *inode, char *filename)
4029 int ret = fscanf (mapfile, "%llx-%llx %s %llx %s %llx",
4030 addr, endaddr, permissions, offset, device, inode);
4033 if (ret > 0 && ret != EOF)
4035 /* Eat everything up to EOL for the filename. This will prevent
4036 weird filenames (such as one with embedded whitespace) from
4037 confusing this code. It also makes this code more robust in
4038 respect to annotations the kernel may add after the filename.
4040 Note the filename is used for informational purposes
4042 ret += fscanf (mapfile, "%[^\n]\n", filename);
4045 return (ret != 0 && ret != EOF);
4048 /* Fills the "to_find_memory_regions" target vector. Lists the memory
4049 regions in the inferior for a corefile. */
4052 linux_nat_find_memory_regions (int (*func) (CORE_ADDR,
4054 int, int, int, void *), void *obfd)
4056 int pid = PIDGET (inferior_ptid);
4057 char mapsfilename[MAXPATHLEN];
4059 long long addr, endaddr, size, offset, inode;
4060 char permissions[8], device[8], filename[MAXPATHLEN];
4061 int read, write, exec;
4063 struct cleanup *cleanup;
4065 /* Compose the filename for the /proc memory map, and open it. */
4066 sprintf (mapsfilename, "/proc/%d/maps", pid);
4067 if ((mapsfile = fopen (mapsfilename, "r")) == NULL)
4068 error (_("Could not open %s."), mapsfilename);
4069 cleanup = make_cleanup_fclose (mapsfile);
4072 fprintf_filtered (gdb_stdout,
4073 "Reading memory regions from %s\n", mapsfilename);
4075 /* Now iterate until end-of-file. */
4076 while (read_mapping (mapsfile, &addr, &endaddr, &permissions[0],
4077 &offset, &device[0], &inode, &filename[0]))
4079 size = endaddr - addr;
4081 /* Get the segment's permissions. */
4082 read = (strchr (permissions, 'r') != 0);
4083 write = (strchr (permissions, 'w') != 0);
4084 exec = (strchr (permissions, 'x') != 0);
4088 fprintf_filtered (gdb_stdout,
4089 "Save segment, %s bytes at %s (%c%c%c)",
4090 plongest (size), paddress (target_gdbarch, addr),
4092 write ? 'w' : ' ', exec ? 'x' : ' ');
4094 fprintf_filtered (gdb_stdout, " for %s", filename);
4095 fprintf_filtered (gdb_stdout, "\n");
4098 /* Invoke the callback function to create the corefile
4100 func (addr, size, read, write, exec, obfd);
4102 do_cleanups (cleanup);
4107 find_signalled_thread (struct thread_info *info, void *data)
4109 if (info->stop_signal != TARGET_SIGNAL_0
4110 && ptid_get_pid (info->ptid) == ptid_get_pid (inferior_ptid))
4116 static enum target_signal
4117 find_stop_signal (void)
4119 struct thread_info *info =
4120 iterate_over_threads (find_signalled_thread, NULL);
4123 return info->stop_signal;
4125 return TARGET_SIGNAL_0;
4128 /* Records the thread's register state for the corefile note
4132 linux_nat_do_thread_registers (bfd *obfd, ptid_t ptid,
4133 char *note_data, int *note_size,
4134 enum target_signal stop_signal)
4136 gdb_gregset_t gregs;
4137 gdb_fpregset_t fpregs;
4138 unsigned long lwp = ptid_get_lwp (ptid);
4139 struct gdbarch *gdbarch = target_gdbarch;
4140 struct regcache *regcache = get_thread_arch_regcache (ptid, gdbarch);
4141 const struct regset *regset;
4143 struct cleanup *old_chain;
4144 struct core_regset_section *sect_list;
4147 old_chain = save_inferior_ptid ();
4148 inferior_ptid = ptid;
4149 target_fetch_registers (regcache, -1);
4150 do_cleanups (old_chain);
4152 core_regset_p = gdbarch_regset_from_core_section_p (gdbarch);
4153 sect_list = gdbarch_core_regset_sections (gdbarch);
4156 && (regset = gdbarch_regset_from_core_section (gdbarch, ".reg",
4157 sizeof (gregs))) != NULL
4158 && regset->collect_regset != NULL)
4159 regset->collect_regset (regset, regcache, -1,
4160 &gregs, sizeof (gregs));
4162 fill_gregset (regcache, &gregs, -1);
4164 note_data = (char *) elfcore_write_prstatus (obfd,
4168 stop_signal, &gregs);
4170 /* The loop below uses the new struct core_regset_section, which stores
4171 the supported section names and sizes for the core file. Note that
4172 note PRSTATUS needs to be treated specially. But the other notes are
4173 structurally the same, so they can benefit from the new struct. */
4174 if (core_regset_p && sect_list != NULL)
4175 while (sect_list->sect_name != NULL)
4177 /* .reg was already handled above. */
4178 if (strcmp (sect_list->sect_name, ".reg") == 0)
4183 regset = gdbarch_regset_from_core_section (gdbarch,
4184 sect_list->sect_name,
4186 gdb_assert (regset && regset->collect_regset);
4187 gdb_regset = xmalloc (sect_list->size);
4188 regset->collect_regset (regset, regcache, -1,
4189 gdb_regset, sect_list->size);
4190 note_data = (char *) elfcore_write_register_note (obfd,
4193 sect_list->sect_name,
4200 /* For architectures that does not have the struct core_regset_section
4201 implemented, we use the old method. When all the architectures have
4202 the new support, the code below should be deleted. */
4206 && (regset = gdbarch_regset_from_core_section (gdbarch, ".reg2",
4207 sizeof (fpregs))) != NULL
4208 && regset->collect_regset != NULL)
4209 regset->collect_regset (regset, regcache, -1,
4210 &fpregs, sizeof (fpregs));
4212 fill_fpregset (regcache, &fpregs, -1);
4214 note_data = (char *) elfcore_write_prfpreg (obfd,
4217 &fpregs, sizeof (fpregs));
4223 struct linux_nat_corefile_thread_data
4229 enum target_signal stop_signal;
4232 /* Called by gdbthread.c once per thread. Records the thread's
4233 register state for the corefile note section. */
4236 linux_nat_corefile_thread_callback (struct lwp_info *ti, void *data)
4238 struct linux_nat_corefile_thread_data *args = data;
4240 args->note_data = linux_nat_do_thread_registers (args->obfd,
4250 /* Enumerate spufs IDs for process PID. */
4253 iterate_over_spus (int pid, void (*callback) (void *, int), void *data)
4257 struct dirent *entry;
4259 xsnprintf (path, sizeof path, "/proc/%d/fd", pid);
4260 dir = opendir (path);
4265 while ((entry = readdir (dir)) != NULL)
4271 fd = atoi (entry->d_name);
4275 xsnprintf (path, sizeof path, "/proc/%d/fd/%d", pid, fd);
4276 if (stat (path, &st) != 0)
4278 if (!S_ISDIR (st.st_mode))
4281 if (statfs (path, &stfs) != 0)
4283 if (stfs.f_type != SPUFS_MAGIC)
4286 callback (data, fd);
4292 /* Generate corefile notes for SPU contexts. */
4294 struct linux_spu_corefile_data
4302 linux_spu_corefile_callback (void *data, int fd)
4304 struct linux_spu_corefile_data *args = data;
4307 static const char *spu_files[] =
4329 for (i = 0; i < sizeof (spu_files) / sizeof (spu_files[0]); i++)
4331 char annex[32], note_name[32];
4335 xsnprintf (annex, sizeof annex, "%d/%s", fd, spu_files[i]);
4336 spu_len = target_read_alloc (¤t_target, TARGET_OBJECT_SPU,
4340 xsnprintf (note_name, sizeof note_name, "SPU/%s", annex);
4341 args->note_data = elfcore_write_note (args->obfd, args->note_data,
4342 args->note_size, note_name,
4343 NT_SPU, spu_data, spu_len);
4350 linux_spu_make_corefile_notes (bfd *obfd, char *note_data, int *note_size)
4352 struct linux_spu_corefile_data args;
4354 args.note_data = note_data;
4355 args.note_size = note_size;
4357 iterate_over_spus (PIDGET (inferior_ptid),
4358 linux_spu_corefile_callback, &args);
4360 return args.note_data;
4363 /* Fills the "to_make_corefile_note" target vector. Builds the note
4364 section for a corefile, and returns it in a malloc buffer. */
4367 linux_nat_make_corefile_notes (bfd *obfd, int *note_size)
4369 struct linux_nat_corefile_thread_data thread_args;
4370 struct cleanup *old_chain;
4371 /* The variable size must be >= sizeof (prpsinfo_t.pr_fname). */
4372 char fname[16] = { '\0' };
4373 /* The variable size must be >= sizeof (prpsinfo_t.pr_psargs). */
4374 char psargs[80] = { '\0' };
4375 char *note_data = NULL;
4376 ptid_t current_ptid = inferior_ptid;
4377 ptid_t filter = pid_to_ptid (ptid_get_pid (inferior_ptid));
4381 if (get_exec_file (0))
4383 strncpy (fname, strrchr (get_exec_file (0), '/') + 1, sizeof (fname));
4384 strncpy (psargs, get_exec_file (0), sizeof (psargs));
4385 if (get_inferior_args ())
4388 char *psargs_end = psargs + sizeof (psargs);
4390 /* linux_elfcore_write_prpsinfo () handles zero unterminated
4392 string_end = memchr (psargs, 0, sizeof (psargs));
4393 if (string_end != NULL)
4395 *string_end++ = ' ';
4396 strncpy (string_end, get_inferior_args (),
4397 psargs_end - string_end);
4400 note_data = (char *) elfcore_write_prpsinfo (obfd,
4402 note_size, fname, psargs);
4405 /* Dump information for threads. */
4406 thread_args.obfd = obfd;
4407 thread_args.note_data = note_data;
4408 thread_args.note_size = note_size;
4409 thread_args.num_notes = 0;
4410 thread_args.stop_signal = find_stop_signal ();
4411 iterate_over_lwps (filter, linux_nat_corefile_thread_callback, &thread_args);
4412 gdb_assert (thread_args.num_notes != 0);
4413 note_data = thread_args.note_data;
4415 auxv_len = target_read_alloc (¤t_target, TARGET_OBJECT_AUXV,
4419 note_data = elfcore_write_note (obfd, note_data, note_size,
4420 "CORE", NT_AUXV, auxv, auxv_len);
4424 note_data = linux_spu_make_corefile_notes (obfd, note_data, note_size);
4426 make_cleanup (xfree, note_data);
4430 /* Implement the "info proc" command. */
4433 linux_nat_info_proc_cmd (char *args, int from_tty)
4435 /* A long is used for pid instead of an int to avoid a loss of precision
4436 compiler warning from the output of strtoul. */
4437 long pid = PIDGET (inferior_ptid);
4440 char buffer[MAXPATHLEN];
4441 char fname1[MAXPATHLEN], fname2[MAXPATHLEN];
4454 /* Break up 'args' into an argv array. */
4455 argv = gdb_buildargv (args);
4456 make_cleanup_freeargv (argv);
4458 while (argv != NULL && *argv != NULL)
4460 if (isdigit (argv[0][0]))
4462 pid = strtoul (argv[0], NULL, 10);
4464 else if (strncmp (argv[0], "mappings", strlen (argv[0])) == 0)
4468 else if (strcmp (argv[0], "status") == 0)
4472 else if (strcmp (argv[0], "stat") == 0)
4476 else if (strcmp (argv[0], "cmd") == 0)
4480 else if (strncmp (argv[0], "exe", strlen (argv[0])) == 0)
4484 else if (strcmp (argv[0], "cwd") == 0)
4488 else if (strncmp (argv[0], "all", strlen (argv[0])) == 0)
4494 /* [...] (future options here) */
4499 error (_("No current process: you must name one."));
4501 sprintf (fname1, "/proc/%ld", pid);
4502 if (stat (fname1, &dummy) != 0)
4503 error (_("No /proc directory: '%s'"), fname1);
4505 printf_filtered (_("process %ld\n"), pid);
4506 if (cmdline_f || all)
4508 sprintf (fname1, "/proc/%ld/cmdline", pid);
4509 if ((procfile = fopen (fname1, "r")) != NULL)
4511 struct cleanup *cleanup = make_cleanup_fclose (procfile);
4512 if (fgets (buffer, sizeof (buffer), procfile))
4513 printf_filtered ("cmdline = '%s'\n", buffer);
4515 warning (_("unable to read '%s'"), fname1);
4516 do_cleanups (cleanup);
4519 warning (_("unable to open /proc file '%s'"), fname1);
4523 sprintf (fname1, "/proc/%ld/cwd", pid);
4524 memset (fname2, 0, sizeof (fname2));
4525 if (readlink (fname1, fname2, sizeof (fname2)) > 0)
4526 printf_filtered ("cwd = '%s'\n", fname2);
4528 warning (_("unable to read link '%s'"), fname1);
4532 sprintf (fname1, "/proc/%ld/exe", pid);
4533 memset (fname2, 0, sizeof (fname2));
4534 if (readlink (fname1, fname2, sizeof (fname2)) > 0)
4535 printf_filtered ("exe = '%s'\n", fname2);
4537 warning (_("unable to read link '%s'"), fname1);
4539 if (mappings_f || all)
4541 sprintf (fname1, "/proc/%ld/maps", pid);
4542 if ((procfile = fopen (fname1, "r")) != NULL)
4544 long long addr, endaddr, size, offset, inode;
4545 char permissions[8], device[8], filename[MAXPATHLEN];
4546 struct cleanup *cleanup;
4548 cleanup = make_cleanup_fclose (procfile);
4549 printf_filtered (_("Mapped address spaces:\n\n"));
4550 if (gdbarch_addr_bit (target_gdbarch) == 32)
4552 printf_filtered ("\t%10s %10s %10s %10s %7s\n",
4555 " Size", " Offset", "objfile");
4559 printf_filtered (" %18s %18s %10s %10s %7s\n",
4562 " Size", " Offset", "objfile");
4565 while (read_mapping (procfile, &addr, &endaddr, &permissions[0],
4566 &offset, &device[0], &inode, &filename[0]))
4568 size = endaddr - addr;
4570 /* FIXME: carlton/2003-08-27: Maybe the printf_filtered
4571 calls here (and possibly above) should be abstracted
4572 out into their own functions? Andrew suggests using
4573 a generic local_address_string instead to print out
4574 the addresses; that makes sense to me, too. */
4576 if (gdbarch_addr_bit (target_gdbarch) == 32)
4578 printf_filtered ("\t%#10lx %#10lx %#10x %#10x %7s\n",
4579 (unsigned long) addr, /* FIXME: pr_addr */
4580 (unsigned long) endaddr,
4582 (unsigned int) offset,
4583 filename[0] ? filename : "");
4587 printf_filtered (" %#18lx %#18lx %#10x %#10x %7s\n",
4588 (unsigned long) addr, /* FIXME: pr_addr */
4589 (unsigned long) endaddr,
4591 (unsigned int) offset,
4592 filename[0] ? filename : "");
4596 do_cleanups (cleanup);
4599 warning (_("unable to open /proc file '%s'"), fname1);
4601 if (status_f || all)
4603 sprintf (fname1, "/proc/%ld/status", pid);
4604 if ((procfile = fopen (fname1, "r")) != NULL)
4606 struct cleanup *cleanup = make_cleanup_fclose (procfile);
4607 while (fgets (buffer, sizeof (buffer), procfile) != NULL)
4608 puts_filtered (buffer);
4609 do_cleanups (cleanup);
4612 warning (_("unable to open /proc file '%s'"), fname1);
4616 sprintf (fname1, "/proc/%ld/stat", pid);
4617 if ((procfile = fopen (fname1, "r")) != NULL)
4622 struct cleanup *cleanup = make_cleanup_fclose (procfile);
4624 if (fscanf (procfile, "%d ", &itmp) > 0)
4625 printf_filtered (_("Process: %d\n"), itmp);
4626 if (fscanf (procfile, "(%[^)]) ", &buffer[0]) > 0)
4627 printf_filtered (_("Exec file: %s\n"), buffer);
4628 if (fscanf (procfile, "%c ", &ctmp) > 0)
4629 printf_filtered (_("State: %c\n"), ctmp);
4630 if (fscanf (procfile, "%d ", &itmp) > 0)
4631 printf_filtered (_("Parent process: %d\n"), itmp);
4632 if (fscanf (procfile, "%d ", &itmp) > 0)
4633 printf_filtered (_("Process group: %d\n"), itmp);
4634 if (fscanf (procfile, "%d ", &itmp) > 0)
4635 printf_filtered (_("Session id: %d\n"), itmp);
4636 if (fscanf (procfile, "%d ", &itmp) > 0)
4637 printf_filtered (_("TTY: %d\n"), itmp);
4638 if (fscanf (procfile, "%d ", &itmp) > 0)
4639 printf_filtered (_("TTY owner process group: %d\n"), itmp);
4640 if (fscanf (procfile, "%lu ", <mp) > 0)
4641 printf_filtered (_("Flags: 0x%lx\n"), ltmp);
4642 if (fscanf (procfile, "%lu ", <mp) > 0)
4643 printf_filtered (_("Minor faults (no memory page): %lu\n"),
4644 (unsigned long) ltmp);
4645 if (fscanf (procfile, "%lu ", <mp) > 0)
4646 printf_filtered (_("Minor faults, children: %lu\n"),
4647 (unsigned long) ltmp);
4648 if (fscanf (procfile, "%lu ", <mp) > 0)
4649 printf_filtered (_("Major faults (memory page faults): %lu\n"),
4650 (unsigned long) ltmp);
4651 if (fscanf (procfile, "%lu ", <mp) > 0)
4652 printf_filtered (_("Major faults, children: %lu\n"),
4653 (unsigned long) ltmp);
4654 if (fscanf (procfile, "%ld ", <mp) > 0)
4655 printf_filtered (_("utime: %ld\n"), ltmp);
4656 if (fscanf (procfile, "%ld ", <mp) > 0)
4657 printf_filtered (_("stime: %ld\n"), ltmp);
4658 if (fscanf (procfile, "%ld ", <mp) > 0)
4659 printf_filtered (_("utime, children: %ld\n"), ltmp);
4660 if (fscanf (procfile, "%ld ", <mp) > 0)
4661 printf_filtered (_("stime, children: %ld\n"), ltmp);
4662 if (fscanf (procfile, "%ld ", <mp) > 0)
4663 printf_filtered (_("jiffies remaining in current time slice: %ld\n"),
4665 if (fscanf (procfile, "%ld ", <mp) > 0)
4666 printf_filtered (_("'nice' value: %ld\n"), ltmp);
4667 if (fscanf (procfile, "%lu ", <mp) > 0)
4668 printf_filtered (_("jiffies until next timeout: %lu\n"),
4669 (unsigned long) ltmp);
4670 if (fscanf (procfile, "%lu ", <mp) > 0)
4671 printf_filtered (_("jiffies until next SIGALRM: %lu\n"),
4672 (unsigned long) ltmp);
4673 if (fscanf (procfile, "%ld ", <mp) > 0)
4674 printf_filtered (_("start time (jiffies since system boot): %ld\n"),
4676 if (fscanf (procfile, "%lu ", <mp) > 0)
4677 printf_filtered (_("Virtual memory size: %lu\n"),
4678 (unsigned long) ltmp);
4679 if (fscanf (procfile, "%lu ", <mp) > 0)
4680 printf_filtered (_("Resident set size: %lu\n"), (unsigned long) ltmp);
4681 if (fscanf (procfile, "%lu ", <mp) > 0)
4682 printf_filtered (_("rlim: %lu\n"), (unsigned long) ltmp);
4683 if (fscanf (procfile, "%lu ", <mp) > 0)
4684 printf_filtered (_("Start of text: 0x%lx\n"), ltmp);
4685 if (fscanf (procfile, "%lu ", <mp) > 0)
4686 printf_filtered (_("End of text: 0x%lx\n"), ltmp);
4687 if (fscanf (procfile, "%lu ", <mp) > 0)
4688 printf_filtered (_("Start of stack: 0x%lx\n"), ltmp);
4689 #if 0 /* Don't know how architecture-dependent the rest is...
4690 Anyway the signal bitmap info is available from "status". */
4691 if (fscanf (procfile, "%lu ", <mp) > 0) /* FIXME arch? */
4692 printf_filtered (_("Kernel stack pointer: 0x%lx\n"), ltmp);
4693 if (fscanf (procfile, "%lu ", <mp) > 0) /* FIXME arch? */
4694 printf_filtered (_("Kernel instr pointer: 0x%lx\n"), ltmp);
4695 if (fscanf (procfile, "%ld ", <mp) > 0)
4696 printf_filtered (_("Pending signals bitmap: 0x%lx\n"), ltmp);
4697 if (fscanf (procfile, "%ld ", <mp) > 0)
4698 printf_filtered (_("Blocked signals bitmap: 0x%lx\n"), ltmp);
4699 if (fscanf (procfile, "%ld ", <mp) > 0)
4700 printf_filtered (_("Ignored signals bitmap: 0x%lx\n"), ltmp);
4701 if (fscanf (procfile, "%ld ", <mp) > 0)
4702 printf_filtered (_("Catched signals bitmap: 0x%lx\n"), ltmp);
4703 if (fscanf (procfile, "%lu ", <mp) > 0) /* FIXME arch? */
4704 printf_filtered (_("wchan (system call): 0x%lx\n"), ltmp);
4706 do_cleanups (cleanup);
4709 warning (_("unable to open /proc file '%s'"), fname1);
4713 /* Implement the to_xfer_partial interface for memory reads using the /proc
4714 filesystem. Because we can use a single read() call for /proc, this
4715 can be much more efficient than banging away at PTRACE_PEEKTEXT,
4716 but it doesn't support writes. */
4719 linux_proc_xfer_partial (struct target_ops *ops, enum target_object object,
4720 const char *annex, gdb_byte *readbuf,
4721 const gdb_byte *writebuf,
4722 ULONGEST offset, LONGEST len)
4728 if (object != TARGET_OBJECT_MEMORY || !readbuf)
4731 /* Don't bother for one word. */
4732 if (len < 3 * sizeof (long))
4735 /* We could keep this file open and cache it - possibly one per
4736 thread. That requires some juggling, but is even faster. */
4737 sprintf (filename, "/proc/%d/mem", PIDGET (inferior_ptid));
4738 fd = open (filename, O_RDONLY | O_LARGEFILE);
4742 /* If pread64 is available, use it. It's faster if the kernel
4743 supports it (only one syscall), and it's 64-bit safe even on
4744 32-bit platforms (for instance, SPARC debugging a SPARC64
4747 if (pread64 (fd, readbuf, len, offset) != len)
4749 if (lseek (fd, offset, SEEK_SET) == -1 || read (fd, readbuf, len) != len)
4760 /* Enumerate spufs IDs for process PID. */
4762 spu_enumerate_spu_ids (int pid, gdb_byte *buf, ULONGEST offset, LONGEST len)
4764 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
4766 LONGEST written = 0;
4769 struct dirent *entry;
4771 xsnprintf (path, sizeof path, "/proc/%d/fd", pid);
4772 dir = opendir (path);
4777 while ((entry = readdir (dir)) != NULL)
4783 fd = atoi (entry->d_name);
4787 xsnprintf (path, sizeof path, "/proc/%d/fd/%d", pid, fd);
4788 if (stat (path, &st) != 0)
4790 if (!S_ISDIR (st.st_mode))
4793 if (statfs (path, &stfs) != 0)
4795 if (stfs.f_type != SPUFS_MAGIC)
4798 if (pos >= offset && pos + 4 <= offset + len)
4800 store_unsigned_integer (buf + pos - offset, 4, byte_order, fd);
4810 /* Implement the to_xfer_partial interface for the TARGET_OBJECT_SPU
4811 object type, using the /proc file system. */
4813 linux_proc_xfer_spu (struct target_ops *ops, enum target_object object,
4814 const char *annex, gdb_byte *readbuf,
4815 const gdb_byte *writebuf,
4816 ULONGEST offset, LONGEST len)
4821 int pid = PIDGET (inferior_ptid);
4828 return spu_enumerate_spu_ids (pid, readbuf, offset, len);
4831 xsnprintf (buf, sizeof buf, "/proc/%d/fd/%s", pid, annex);
4832 fd = open (buf, writebuf? O_WRONLY : O_RDONLY);
4837 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
4844 ret = write (fd, writebuf, (size_t) len);
4846 ret = read (fd, readbuf, (size_t) len);
4853 /* Parse LINE as a signal set and add its set bits to SIGS. */
4856 add_line_to_sigset (const char *line, sigset_t *sigs)
4858 int len = strlen (line) - 1;
4862 if (line[len] != '\n')
4863 error (_("Could not parse signal set: %s"), line);
4871 if (*p >= '0' && *p <= '9')
4873 else if (*p >= 'a' && *p <= 'f')
4874 digit = *p - 'a' + 10;
4876 error (_("Could not parse signal set: %s"), line);
4881 sigaddset (sigs, signum + 1);
4883 sigaddset (sigs, signum + 2);
4885 sigaddset (sigs, signum + 3);
4887 sigaddset (sigs, signum + 4);
4893 /* Find process PID's pending signals from /proc/pid/status and set
4897 linux_proc_pending_signals (int pid, sigset_t *pending, sigset_t *blocked, sigset_t *ignored)
4900 char buffer[MAXPATHLEN], fname[MAXPATHLEN];
4902 struct cleanup *cleanup;
4904 sigemptyset (pending);
4905 sigemptyset (blocked);
4906 sigemptyset (ignored);
4907 sprintf (fname, "/proc/%d/status", pid);
4908 procfile = fopen (fname, "r");
4909 if (procfile == NULL)
4910 error (_("Could not open %s"), fname);
4911 cleanup = make_cleanup_fclose (procfile);
4913 while (fgets (buffer, MAXPATHLEN, procfile) != NULL)
4915 /* Normal queued signals are on the SigPnd line in the status
4916 file. However, 2.6 kernels also have a "shared" pending
4917 queue for delivering signals to a thread group, so check for
4920 Unfortunately some Red Hat kernels include the shared pending
4921 queue but not the ShdPnd status field. */
4923 if (strncmp (buffer, "SigPnd:\t", 8) == 0)
4924 add_line_to_sigset (buffer + 8, pending);
4925 else if (strncmp (buffer, "ShdPnd:\t", 8) == 0)
4926 add_line_to_sigset (buffer + 8, pending);
4927 else if (strncmp (buffer, "SigBlk:\t", 8) == 0)
4928 add_line_to_sigset (buffer + 8, blocked);
4929 else if (strncmp (buffer, "SigIgn:\t", 8) == 0)
4930 add_line_to_sigset (buffer + 8, ignored);
4933 do_cleanups (cleanup);
4937 linux_nat_xfer_osdata (struct target_ops *ops, enum target_object object,
4938 const char *annex, gdb_byte *readbuf,
4939 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
4941 /* We make the process list snapshot when the object starts to be
4943 static const char *buf;
4944 static LONGEST len_avail = -1;
4945 static struct obstack obstack;
4949 gdb_assert (object == TARGET_OBJECT_OSDATA);
4951 if (strcmp (annex, "processes") != 0)
4954 gdb_assert (readbuf && !writebuf);
4958 if (len_avail != -1 && len_avail != 0)
4959 obstack_free (&obstack, NULL);
4962 obstack_init (&obstack);
4963 obstack_grow_str (&obstack, "<osdata type=\"processes\">\n");
4965 dirp = opendir ("/proc");
4969 while ((dp = readdir (dirp)) != NULL)
4971 struct stat statbuf;
4972 char procentry[sizeof ("/proc/4294967295")];
4974 if (!isdigit (dp->d_name[0])
4975 || NAMELEN (dp) > sizeof ("4294967295") - 1)
4978 sprintf (procentry, "/proc/%s", dp->d_name);
4979 if (stat (procentry, &statbuf) == 0
4980 && S_ISDIR (statbuf.st_mode))
4984 char cmd[MAXPATHLEN + 1];
4985 struct passwd *entry;
4987 pathname = xstrprintf ("/proc/%s/cmdline", dp->d_name);
4988 entry = getpwuid (statbuf.st_uid);
4990 if ((f = fopen (pathname, "r")) != NULL)
4992 size_t len = fread (cmd, 1, sizeof (cmd) - 1, f);
4996 for (i = 0; i < len; i++)
5001 obstack_xml_printf (
5004 "<column name=\"pid\">%s</column>"
5005 "<column name=\"user\">%s</column>"
5006 "<column name=\"command\">%s</column>"
5009 entry ? entry->pw_name : "?",
5022 obstack_grow_str0 (&obstack, "</osdata>\n");
5023 buf = obstack_finish (&obstack);
5024 len_avail = strlen (buf);
5027 if (offset >= len_avail)
5029 /* Done. Get rid of the obstack. */
5030 obstack_free (&obstack, NULL);
5036 if (len > len_avail - offset)
5037 len = len_avail - offset;
5038 memcpy (readbuf, buf + offset, len);
5044 linux_xfer_partial (struct target_ops *ops, enum target_object object,
5045 const char *annex, gdb_byte *readbuf,
5046 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
5050 if (object == TARGET_OBJECT_AUXV)
5051 return memory_xfer_auxv (ops, object, annex, readbuf, writebuf,
5054 if (object == TARGET_OBJECT_OSDATA)
5055 return linux_nat_xfer_osdata (ops, object, annex, readbuf, writebuf,
5058 if (object == TARGET_OBJECT_SPU)
5059 return linux_proc_xfer_spu (ops, object, annex, readbuf, writebuf,
5062 /* GDB calculates all the addresses in possibly larget width of the address.
5063 Address width needs to be masked before its final use - either by
5064 linux_proc_xfer_partial or inf_ptrace_xfer_partial.
5066 Compare ADDR_BIT first to avoid a compiler warning on shift overflow. */
5068 if (object == TARGET_OBJECT_MEMORY)
5070 int addr_bit = gdbarch_addr_bit (target_gdbarch);
5072 if (addr_bit < (sizeof (ULONGEST) * HOST_CHAR_BIT))
5073 offset &= ((ULONGEST) 1 << addr_bit) - 1;
5076 xfer = linux_proc_xfer_partial (ops, object, annex, readbuf, writebuf,
5081 return super_xfer_partial (ops, object, annex, readbuf, writebuf,
5085 /* Create a prototype generic GNU/Linux target. The client can override
5086 it with local methods. */
5089 linux_target_install_ops (struct target_ops *t)
5091 t->to_insert_fork_catchpoint = linux_child_insert_fork_catchpoint;
5092 t->to_insert_vfork_catchpoint = linux_child_insert_vfork_catchpoint;
5093 t->to_insert_exec_catchpoint = linux_child_insert_exec_catchpoint;
5094 t->to_set_syscall_catchpoint = linux_child_set_syscall_catchpoint;
5095 t->to_pid_to_exec_file = linux_child_pid_to_exec_file;
5096 t->to_post_startup_inferior = linux_child_post_startup_inferior;
5097 t->to_post_attach = linux_child_post_attach;
5098 t->to_follow_fork = linux_child_follow_fork;
5099 t->to_find_memory_regions = linux_nat_find_memory_regions;
5100 t->to_make_corefile_notes = linux_nat_make_corefile_notes;
5102 super_xfer_partial = t->to_xfer_partial;
5103 t->to_xfer_partial = linux_xfer_partial;
5109 struct target_ops *t;
5111 t = inf_ptrace_target ();
5112 linux_target_install_ops (t);
5118 linux_trad_target (CORE_ADDR (*register_u_offset)(struct gdbarch *, int, int))
5120 struct target_ops *t;
5122 t = inf_ptrace_trad_target (register_u_offset);
5123 linux_target_install_ops (t);
5128 /* target_is_async_p implementation. */
5131 linux_nat_is_async_p (void)
5133 /* NOTE: palves 2008-03-21: We're only async when the user requests
5134 it explicitly with the "set target-async" command.
5135 Someday, linux will always be async. */
5136 if (!target_async_permitted)
5139 /* See target.h/target_async_mask. */
5140 return linux_nat_async_mask_value;
5143 /* target_can_async_p implementation. */
5146 linux_nat_can_async_p (void)
5148 /* NOTE: palves 2008-03-21: We're only async when the user requests
5149 it explicitly with the "set target-async" command.
5150 Someday, linux will always be async. */
5151 if (!target_async_permitted)
5154 /* See target.h/target_async_mask. */
5155 return linux_nat_async_mask_value;
5159 linux_nat_supports_non_stop (void)
5164 /* True if we want to support multi-process. To be removed when GDB
5165 supports multi-exec. */
5167 int linux_multi_process = 1;
5170 linux_nat_supports_multi_process (void)
5172 return linux_multi_process;
5175 /* target_async_mask implementation. */
5178 linux_nat_async_mask (int new_mask)
5180 int curr_mask = linux_nat_async_mask_value;
5182 if (curr_mask != new_mask)
5186 linux_nat_async (NULL, 0);
5187 linux_nat_async_mask_value = new_mask;
5191 linux_nat_async_mask_value = new_mask;
5193 /* If we're going out of async-mask in all-stop, then the
5194 inferior is stopped. The next resume will call
5195 target_async. In non-stop, the target event source
5196 should be always registered in the event loop. Do so
5199 linux_nat_async (inferior_event_handler, 0);
5206 static int async_terminal_is_ours = 1;
5208 /* target_terminal_inferior implementation. */
5211 linux_nat_terminal_inferior (void)
5213 if (!target_is_async_p ())
5215 /* Async mode is disabled. */
5216 terminal_inferior ();
5220 terminal_inferior ();
5222 /* Calls to target_terminal_*() are meant to be idempotent. */
5223 if (!async_terminal_is_ours)
5226 delete_file_handler (input_fd);
5227 async_terminal_is_ours = 0;
5231 /* target_terminal_ours implementation. */
5234 linux_nat_terminal_ours (void)
5236 if (!target_is_async_p ())
5238 /* Async mode is disabled. */
5243 /* GDB should never give the terminal to the inferior if the
5244 inferior is running in the background (run&, continue&, etc.),
5245 but claiming it sure should. */
5248 if (async_terminal_is_ours)
5251 clear_sigint_trap ();
5252 add_file_handler (input_fd, stdin_event_handler, 0);
5253 async_terminal_is_ours = 1;
5256 static void (*async_client_callback) (enum inferior_event_type event_type,
5258 static void *async_client_context;
5260 /* SIGCHLD handler that serves two purposes: In non-stop/async mode,
5261 so we notice when any child changes state, and notify the
5262 event-loop; it allows us to use sigsuspend in linux_nat_wait_1
5263 above to wait for the arrival of a SIGCHLD. */
5266 sigchld_handler (int signo)
5268 int old_errno = errno;
5270 if (debug_linux_nat_async)
5271 fprintf_unfiltered (gdb_stdlog, "sigchld\n");
5273 if (signo == SIGCHLD
5274 && linux_nat_event_pipe[0] != -1)
5275 async_file_mark (); /* Let the event loop know that there are
5276 events to handle. */
5281 /* Callback registered with the target events file descriptor. */
5284 handle_target_event (int error, gdb_client_data client_data)
5286 (*async_client_callback) (INF_REG_EVENT, async_client_context);
5289 /* Create/destroy the target events pipe. Returns previous state. */
5292 linux_async_pipe (int enable)
5294 int previous = (linux_nat_event_pipe[0] != -1);
5296 if (previous != enable)
5300 block_child_signals (&prev_mask);
5304 if (pipe (linux_nat_event_pipe) == -1)
5305 internal_error (__FILE__, __LINE__,
5306 "creating event pipe failed.");
5308 fcntl (linux_nat_event_pipe[0], F_SETFL, O_NONBLOCK);
5309 fcntl (linux_nat_event_pipe[1], F_SETFL, O_NONBLOCK);
5313 close (linux_nat_event_pipe[0]);
5314 close (linux_nat_event_pipe[1]);
5315 linux_nat_event_pipe[0] = -1;
5316 linux_nat_event_pipe[1] = -1;
5319 restore_child_signals_mask (&prev_mask);
5325 /* target_async implementation. */
5328 linux_nat_async (void (*callback) (enum inferior_event_type event_type,
5329 void *context), void *context)
5331 if (linux_nat_async_mask_value == 0 || !target_async_permitted)
5332 internal_error (__FILE__, __LINE__,
5333 "Calling target_async when async is masked");
5335 if (callback != NULL)
5337 async_client_callback = callback;
5338 async_client_context = context;
5339 if (!linux_async_pipe (1))
5341 add_file_handler (linux_nat_event_pipe[0],
5342 handle_target_event, NULL);
5343 /* There may be pending events to handle. Tell the event loop
5350 async_client_callback = callback;
5351 async_client_context = context;
5352 delete_file_handler (linux_nat_event_pipe[0]);
5353 linux_async_pipe (0);
5358 /* Stop an LWP, and push a TARGET_SIGNAL_0 stop status if no other
5362 linux_nat_stop_lwp (struct lwp_info *lwp, void *data)
5367 ptid_t ptid = lwp->ptid;
5369 if (debug_linux_nat)
5370 fprintf_unfiltered (gdb_stdlog,
5371 "LNSL: running -> suspending %s\n",
5372 target_pid_to_str (lwp->ptid));
5375 stop_callback (lwp, NULL);
5376 stop_wait_callback (lwp, NULL);
5378 /* If the lwp exits while we try to stop it, there's nothing
5380 lwp = find_lwp_pid (ptid);
5384 /* If we didn't collect any signal other than SIGSTOP while
5385 stopping the LWP, push a SIGNAL_0 event. In either case, the
5386 event-loop will end up calling target_wait which will collect
5388 if (lwp->status == 0)
5389 lwp->status = W_STOPCODE (0);
5394 /* Already known to be stopped; do nothing. */
5396 if (debug_linux_nat)
5398 if (find_thread_ptid (lwp->ptid)->stop_requested)
5399 fprintf_unfiltered (gdb_stdlog, "\
5400 LNSL: already stopped/stop_requested %s\n",
5401 target_pid_to_str (lwp->ptid));
5403 fprintf_unfiltered (gdb_stdlog, "\
5404 LNSL: already stopped/no stop_requested yet %s\n",
5405 target_pid_to_str (lwp->ptid));
5412 linux_nat_stop (ptid_t ptid)
5415 iterate_over_lwps (ptid, linux_nat_stop_lwp, NULL);
5417 linux_ops->to_stop (ptid);
5421 linux_nat_close (int quitting)
5423 /* Unregister from the event loop. */
5424 if (target_is_async_p ())
5425 target_async (NULL, 0);
5427 /* Reset the async_masking. */
5428 linux_nat_async_mask_value = 1;
5430 if (linux_ops->to_close)
5431 linux_ops->to_close (quitting);
5434 /* When requests are passed down from the linux-nat layer to the
5435 single threaded inf-ptrace layer, ptids of (lwpid,0,0) form are
5436 used. The address space pointer is stored in the inferior object,
5437 but the common code that is passed such ptid can't tell whether
5438 lwpid is a "main" process id or not (it assumes so). We reverse
5439 look up the "main" process id from the lwp here. */
5441 struct address_space *
5442 linux_nat_thread_address_space (struct target_ops *t, ptid_t ptid)
5444 struct lwp_info *lwp;
5445 struct inferior *inf;
5448 pid = GET_LWP (ptid);
5449 if (GET_LWP (ptid) == 0)
5451 /* An (lwpid,0,0) ptid. Look up the lwp object to get at the
5453 lwp = find_lwp_pid (ptid);
5454 pid = GET_PID (lwp->ptid);
5458 /* A (pid,lwpid,0) ptid. */
5459 pid = GET_PID (ptid);
5462 inf = find_inferior_pid (pid);
5463 gdb_assert (inf != NULL);
5468 linux_nat_core_of_thread_1 (ptid_t ptid)
5470 struct cleanup *back_to;
5473 char *content = NULL;
5476 int content_read = 0;
5480 filename = xstrprintf ("/proc/%d/task/%ld/stat",
5481 GET_PID (ptid), GET_LWP (ptid));
5482 back_to = make_cleanup (xfree, filename);
5484 f = fopen (filename, "r");
5487 do_cleanups (back_to);
5491 make_cleanup_fclose (f);
5496 content = xrealloc (content, content_read + 1024);
5497 n = fread (content + content_read, 1, 1024, f);
5501 content[content_read] = '\0';
5506 make_cleanup (xfree, content);
5508 p = strchr (content, '(');
5509 p = strchr (p, ')') + 2; /* skip ")" and a whitespace. */
5511 /* If the first field after program name has index 0, then core number is
5512 the field with index 36. There's no constant for that anywhere. */
5513 p = strtok_r (p, " ", &ts);
5514 for (i = 0; i != 36; ++i)
5515 p = strtok_r (NULL, " ", &ts);
5517 if (sscanf (p, "%d", &core) == 0)
5520 do_cleanups (back_to);
5525 /* Return the cached value of the processor core for thread PTID. */
5528 linux_nat_core_of_thread (struct target_ops *ops, ptid_t ptid)
5530 struct lwp_info *info = find_lwp_pid (ptid);
5537 linux_nat_add_target (struct target_ops *t)
5539 /* Save the provided single-threaded target. We save this in a separate
5540 variable because another target we've inherited from (e.g. inf-ptrace)
5541 may have saved a pointer to T; we want to use it for the final
5542 process stratum target. */
5543 linux_ops_saved = *t;
5544 linux_ops = &linux_ops_saved;
5546 /* Override some methods for multithreading. */
5547 t->to_create_inferior = linux_nat_create_inferior;
5548 t->to_attach = linux_nat_attach;
5549 t->to_detach = linux_nat_detach;
5550 t->to_resume = linux_nat_resume;
5551 t->to_wait = linux_nat_wait;
5552 t->to_xfer_partial = linux_nat_xfer_partial;
5553 t->to_kill = linux_nat_kill;
5554 t->to_mourn_inferior = linux_nat_mourn_inferior;
5555 t->to_thread_alive = linux_nat_thread_alive;
5556 t->to_pid_to_str = linux_nat_pid_to_str;
5557 t->to_has_thread_control = tc_schedlock;
5558 t->to_thread_address_space = linux_nat_thread_address_space;
5559 t->to_stopped_by_watchpoint = linux_nat_stopped_by_watchpoint;
5560 t->to_stopped_data_address = linux_nat_stopped_data_address;
5562 t->to_can_async_p = linux_nat_can_async_p;
5563 t->to_is_async_p = linux_nat_is_async_p;
5564 t->to_supports_non_stop = linux_nat_supports_non_stop;
5565 t->to_async = linux_nat_async;
5566 t->to_async_mask = linux_nat_async_mask;
5567 t->to_terminal_inferior = linux_nat_terminal_inferior;
5568 t->to_terminal_ours = linux_nat_terminal_ours;
5569 t->to_close = linux_nat_close;
5571 /* Methods for non-stop support. */
5572 t->to_stop = linux_nat_stop;
5574 t->to_supports_multi_process = linux_nat_supports_multi_process;
5576 t->to_core_of_thread = linux_nat_core_of_thread;
5578 /* We don't change the stratum; this target will sit at
5579 process_stratum and thread_db will set at thread_stratum. This
5580 is a little strange, since this is a multi-threaded-capable
5581 target, but we want to be on the stack below thread_db, and we
5582 also want to be used for single-threaded processes. */
5587 /* Register a method to call whenever a new thread is attached. */
5589 linux_nat_set_new_thread (struct target_ops *t, void (*new_thread) (ptid_t))
5591 /* Save the pointer. We only support a single registered instance
5592 of the GNU/Linux native target, so we do not need to map this to
5594 linux_nat_new_thread = new_thread;
5597 /* Register a method that converts a siginfo object between the layout
5598 that ptrace returns, and the layout in the architecture of the
5601 linux_nat_set_siginfo_fixup (struct target_ops *t,
5602 int (*siginfo_fixup) (struct siginfo *,
5606 /* Save the pointer. */
5607 linux_nat_siginfo_fixup = siginfo_fixup;
5610 /* Return the saved siginfo associated with PTID. */
5612 linux_nat_get_siginfo (ptid_t ptid)
5614 struct lwp_info *lp = find_lwp_pid (ptid);
5616 gdb_assert (lp != NULL);
5618 return &lp->siginfo;
5621 /* Provide a prototype to silence -Wmissing-prototypes. */
5622 extern initialize_file_ftype _initialize_linux_nat;
5625 _initialize_linux_nat (void)
5629 add_info ("proc", linux_nat_info_proc_cmd, _("\
5630 Show /proc process information about any running process.\n\
5631 Specify any process id, or use the program being debugged by default.\n\
5632 Specify any of the following keywords for detailed info:\n\
5633 mappings -- list of mapped memory regions.\n\
5634 stat -- list a bunch of random process info.\n\
5635 status -- list a different bunch of random process info.\n\
5636 all -- list all available /proc info."));
5638 add_setshow_zinteger_cmd ("lin-lwp", class_maintenance,
5639 &debug_linux_nat, _("\
5640 Set debugging of GNU/Linux lwp module."), _("\
5641 Show debugging of GNU/Linux lwp module."), _("\
5642 Enables printf debugging output."),
5644 show_debug_linux_nat,
5645 &setdebuglist, &showdebuglist);
5647 add_setshow_zinteger_cmd ("lin-lwp-async", class_maintenance,
5648 &debug_linux_nat_async, _("\
5649 Set debugging of GNU/Linux async lwp module."), _("\
5650 Show debugging of GNU/Linux async lwp module."), _("\
5651 Enables printf debugging output."),
5653 show_debug_linux_nat_async,
5654 &setdebuglist, &showdebuglist);
5656 /* Save this mask as the default. */
5657 sigprocmask (SIG_SETMASK, NULL, &normal_mask);
5659 /* Install a SIGCHLD handler. */
5660 sigchld_action.sa_handler = sigchld_handler;
5661 sigemptyset (&sigchld_action.sa_mask);
5662 sigchld_action.sa_flags = SA_RESTART;
5664 /* Make it the default. */
5665 sigaction (SIGCHLD, &sigchld_action, NULL);
5667 /* Make sure we don't block SIGCHLD during a sigsuspend. */
5668 sigprocmask (SIG_SETMASK, NULL, &suspend_mask);
5669 sigdelset (&suspend_mask, SIGCHLD);
5671 sigemptyset (&blocked_mask);
5673 add_setshow_boolean_cmd ("disable-randomization", class_support,
5674 &disable_randomization, _("\
5675 Set disabling of debuggee's virtual address space randomization."), _("\
5676 Show disabling of debuggee's virtual address space randomization."), _("\
5677 When this mode is on (which is the default), randomization of the virtual\n\
5678 address space is disabled. Standalone programs run with the randomization\n\
5679 enabled by default on some platforms."),
5680 &set_disable_randomization,
5681 &show_disable_randomization,
5682 &setlist, &showlist);
5686 /* FIXME: kettenis/2000-08-26: The stuff on this page is specific to
5687 the GNU/Linux Threads library and therefore doesn't really belong
5690 /* Read variable NAME in the target and return its value if found.
5691 Otherwise return zero. It is assumed that the type of the variable
5695 get_signo (const char *name)
5697 struct minimal_symbol *ms;
5700 ms = lookup_minimal_symbol (name, NULL, NULL);
5704 if (target_read_memory (SYMBOL_VALUE_ADDRESS (ms), (gdb_byte *) &signo,
5705 sizeof (signo)) != 0)
5711 /* Return the set of signals used by the threads library in *SET. */
5714 lin_thread_get_thread_signals (sigset_t *set)
5716 struct sigaction action;
5717 int restart, cancel;
5719 sigemptyset (&blocked_mask);
5722 restart = get_signo ("__pthread_sig_restart");
5723 cancel = get_signo ("__pthread_sig_cancel");
5725 /* LinuxThreads normally uses the first two RT signals, but in some legacy
5726 cases may use SIGUSR1/SIGUSR2. NPTL always uses RT signals, but does
5727 not provide any way for the debugger to query the signal numbers -
5728 fortunately they don't change! */
5731 restart = __SIGRTMIN;
5734 cancel = __SIGRTMIN + 1;
5736 sigaddset (set, restart);
5737 sigaddset (set, cancel);
5739 /* The GNU/Linux Threads library makes terminating threads send a
5740 special "cancel" signal instead of SIGCHLD. Make sure we catch
5741 those (to prevent them from terminating GDB itself, which is
5742 likely to be their default action) and treat them the same way as
5745 action.sa_handler = sigchld_handler;
5746 sigemptyset (&action.sa_mask);
5747 action.sa_flags = SA_RESTART;
5748 sigaction (cancel, &action, NULL);
5750 /* We block the "cancel" signal throughout this code ... */
5751 sigaddset (&blocked_mask, cancel);
5752 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
5754 /* ... except during a sigsuspend. */
5755 sigdelset (&suspend_mask, cancel);