1 /* Low level interface to ptrace, for the remote server for GDB.
2 Copyright 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include "linux-low.h"
27 #include <sys/param.h>
29 #include <sys/ptrace.h>
32 #include <sys/ioctl.h>
38 /* ``all_threads'' is keyed by the LWP ID - it should be the thread ID instead,
39 however. This requires changing the ID in place when we go from !using_threads
40 to using_threads, immediately.
42 ``all_processes'' is keyed by the process ID - which on Linux is (presently)
43 the same as the LWP ID. */
45 struct inferior_list all_processes;
47 /* FIXME this is a bit of a hack, and could be removed. */
50 /* FIXME make into a target method? */
53 static void linux_resume_one_process (struct inferior_list_entry *entry,
54 int step, int signal);
55 static void linux_resume (struct thread_resume *resume_info);
56 static void stop_all_processes (void);
57 static int linux_wait_for_event (struct thread_info *child);
59 struct pending_signals
62 struct pending_signals *prev;
65 #define PTRACE_ARG3_TYPE long
66 #define PTRACE_XFER_TYPE long
68 #ifdef HAVE_LINUX_REGSETS
69 static int use_regsets_p = 1;
74 int debug_threads = 0;
76 #define pid_of(proc) ((proc)->head.id)
78 /* FIXME: Delete eventually. */
79 #define inferior_pid (pid_of (get_thread_process (current_inferior)))
81 /* This function should only be called if the process got a SIGTRAP.
82 The SIGTRAP could mean several things.
84 On i386, where decr_pc_after_break is non-zero:
85 If we were single-stepping this process using PTRACE_SINGLESTEP,
86 we will get only the one SIGTRAP (even if the instruction we
87 stepped over was a breakpoint). The value of $eip will be the
89 If we continue the process using PTRACE_CONT, we will get a
90 SIGTRAP when we hit a breakpoint. The value of $eip will be
91 the instruction after the breakpoint (i.e. needs to be
92 decremented). If we report the SIGTRAP to GDB, we must also
93 report the undecremented PC. If we cancel the SIGTRAP, we
94 must resume at the decremented PC.
96 (Presumably, not yet tested) On a non-decr_pc_after_break machine
97 with hardware or kernel single-step:
98 If we single-step over a breakpoint instruction, our PC will
99 point at the following instruction. If we continue and hit a
100 breakpoint instruction, our PC will point at the breakpoint
106 CORE_ADDR stop_pc = (*the_low_target.get_pc) ();
108 if (get_thread_process (current_inferior)->stepping)
111 return stop_pc - the_low_target.decr_pc_after_break;
115 add_process (int pid)
117 struct process_info *process;
119 process = (struct process_info *) malloc (sizeof (*process));
120 memset (process, 0, sizeof (*process));
122 process->head.id = pid;
124 /* Default to tid == lwpid == pid. */
126 process->lwpid = pid;
128 add_inferior_to_list (&all_processes, &process->head);
133 /* Start an inferior process and returns its pid.
134 ALLARGS is a vector of program-name and args. */
137 linux_create_inferior (char *program, char **allargs)
144 perror_with_name ("fork");
148 ptrace (PTRACE_TRACEME, 0, 0, 0);
150 signal (__SIGRTMIN + 1, SIG_DFL);
154 execv (program, allargs);
156 fprintf (stderr, "Cannot exec %s: %s.\n", program,
162 new_process = add_process (pid);
163 add_thread (pid, new_process);
168 /* Attach to an inferior process. */
171 linux_attach_lwp (int pid, int tid)
173 struct process_info *new_process;
175 if (ptrace (PTRACE_ATTACH, pid, 0, 0) != 0)
177 fprintf (stderr, "Cannot attach to process %d: %s (%d)\n", pid,
178 strerror (errno), errno);
181 /* If we fail to attach to an LWP, just return. */
187 new_process = (struct process_info *) add_process (pid);
188 add_thread (tid, new_process);
190 /* The next time we wait for this LWP we'll see a SIGSTOP as PTRACE_ATTACH
191 brings it to a halt. We should ignore that SIGSTOP and resume the process
192 (unless this is the first process, in which case the flag will be cleared
195 On the other hand, if we are currently trying to stop all threads, we
196 should treat the new thread as if we had sent it a SIGSTOP. This works
197 because we are guaranteed that add_process added us to the end of the
198 list, and so the new thread has not yet reached wait_for_sigstop (but
200 if (! stopping_threads)
201 new_process->stop_expected = 1;
205 linux_attach (int pid)
207 struct process_info *process;
209 linux_attach_lwp (pid, pid);
211 /* Don't ignore the initial SIGSTOP if we just attached to this process. */
212 process = (struct process_info *) find_inferior_id (&all_processes, pid);
213 process->stop_expected = 0;
218 /* Kill the inferior process. Make us have no inferior. */
221 linux_kill_one_process (struct inferior_list_entry *entry)
223 struct thread_info *thread = (struct thread_info *) entry;
224 struct process_info *process = get_thread_process (thread);
229 ptrace (PTRACE_KILL, pid_of (process), 0, 0);
231 /* Make sure it died. The loop is most likely unnecessary. */
232 wstat = linux_wait_for_event (thread);
233 } while (WIFSTOPPED (wstat));
239 for_each_inferior (&all_threads, linux_kill_one_process);
243 linux_detach_one_process (struct inferior_list_entry *entry)
245 struct thread_info *thread = (struct thread_info *) entry;
246 struct process_info *process = get_thread_process (thread);
248 ptrace (PTRACE_DETACH, pid_of (process), 0, 0);
254 for_each_inferior (&all_threads, linux_detach_one_process);
257 /* Return nonzero if the given thread is still alive. */
259 linux_thread_alive (int tid)
261 if (find_inferior_id (&all_threads, tid) != NULL)
267 /* Return nonzero if this process stopped at a breakpoint which
268 no longer appears to be inserted. Also adjust the PC
269 appropriately to resume where the breakpoint used to be. */
271 check_removed_breakpoint (struct process_info *event_child)
274 struct thread_info *saved_inferior;
276 if (event_child->pending_is_breakpoint == 0)
280 fprintf (stderr, "Checking for breakpoint.\n");
282 saved_inferior = current_inferior;
283 current_inferior = get_process_thread (event_child);
285 stop_pc = get_stop_pc ();
287 /* If the PC has changed since we stopped, then we shouldn't do
288 anything. This happens if, for instance, GDB handled the
289 decr_pc_after_break subtraction itself. */
290 if (stop_pc != event_child->pending_stop_pc)
293 fprintf (stderr, "Ignoring, PC was changed.\n");
295 event_child->pending_is_breakpoint = 0;
296 current_inferior = saved_inferior;
300 /* If the breakpoint is still there, we will report hitting it. */
301 if ((*the_low_target.breakpoint_at) (stop_pc))
304 fprintf (stderr, "Ignoring, breakpoint is still present.\n");
305 current_inferior = saved_inferior;
310 fprintf (stderr, "Removed breakpoint.\n");
312 /* For decr_pc_after_break targets, here is where we perform the
313 decrement. We go immediately from this function to resuming,
314 and can not safely call get_stop_pc () again. */
315 if (the_low_target.set_pc != NULL)
316 (*the_low_target.set_pc) (stop_pc);
318 /* We consumed the pending SIGTRAP. */
319 event_child->pending_is_breakpoint = 0;
320 event_child->status_pending_p = 0;
321 event_child->status_pending = 0;
323 current_inferior = saved_inferior;
327 /* Return 1 if this process has an interesting status pending. This function
328 may silently resume an inferior process. */
330 status_pending_p (struct inferior_list_entry *entry, void *dummy)
332 struct process_info *process = (struct process_info *) entry;
334 if (process->status_pending_p)
335 if (check_removed_breakpoint (process))
337 /* This thread was stopped at a breakpoint, and the breakpoint
338 is now gone. We were told to continue (or step...) all threads,
339 so GDB isn't trying to single-step past this breakpoint.
340 So instead of reporting the old SIGTRAP, pretend we got to
341 the breakpoint just after it was removed instead of just
342 before; resume the process. */
343 linux_resume_one_process (&process->head, 0, 0);
347 return process->status_pending_p;
351 linux_wait_for_process (struct process_info **childp, int *wstatp)
354 int to_wait_for = -1;
357 to_wait_for = (*childp)->lwpid;
361 ret = waitpid (to_wait_for, wstatp, WNOHANG);
366 perror_with_name ("waitpid");
371 ret = waitpid (to_wait_for, wstatp, WNOHANG | __WCLONE);
376 perror_with_name ("waitpid (WCLONE)");
385 && (!WIFSTOPPED (*wstatp)
386 || (WSTOPSIG (*wstatp) != 32
387 && WSTOPSIG (*wstatp) != 33)))
388 fprintf (stderr, "Got an event from %d (%x)\n", ret, *wstatp);
390 if (to_wait_for == -1)
391 *childp = (struct process_info *) find_inferior_id (&all_processes, ret);
393 (*childp)->stopped = 1;
394 (*childp)->pending_is_breakpoint = 0;
397 && WIFSTOPPED (*wstatp))
399 current_inferior = (struct thread_info *)
400 find_inferior_id (&all_threads, (*childp)->tid);
401 /* For testing only; i386_stop_pc prints out a diagnostic. */
402 if (the_low_target.get_pc != NULL)
408 linux_wait_for_event (struct thread_info *child)
411 struct process_info *event_child;
414 /* Check for a process with a pending status. */
415 /* It is possible that the user changed the pending task's registers since
416 it stopped. We correctly handle the change of PC if we hit a breakpoint
417 (in check_removed_breakpoint); signals should be reported anyway. */
420 event_child = (struct process_info *)
421 find_inferior (&all_processes, status_pending_p, NULL);
422 if (debug_threads && event_child)
423 fprintf (stderr, "Got a pending child %d\n", event_child->lwpid);
427 event_child = get_thread_process (child);
428 if (event_child->status_pending_p
429 && check_removed_breakpoint (event_child))
433 if (event_child != NULL)
435 if (event_child->status_pending_p)
438 fprintf (stderr, "Got an event from pending child %d (%04x)\n",
439 event_child->lwpid, event_child->status_pending);
440 wstat = event_child->status_pending;
441 event_child->status_pending_p = 0;
442 event_child->status_pending = 0;
443 current_inferior = get_process_thread (event_child);
448 /* We only enter this loop if no process has a pending wait status. Thus
449 any action taken in response to a wait status inside this loop is
450 responding as soon as we detect the status, not after any pending
457 event_child = get_thread_process (child);
459 linux_wait_for_process (&event_child, &wstat);
461 if (event_child == NULL)
462 error ("event from unknown child");
464 current_inferior = (struct thread_info *)
465 find_inferior_id (&all_threads, event_child->tid);
469 /* Check for thread exit. */
470 if (! WIFSTOPPED (wstat))
473 fprintf (stderr, "Thread %d (LWP %d) exiting\n",
474 event_child->tid, event_child->head.id);
476 /* If the last thread is exiting, just return. */
477 if (all_threads.head == all_threads.tail)
480 dead_thread_notify (event_child->tid);
482 remove_inferior (&all_processes, &event_child->head);
484 remove_thread (current_inferior);
485 current_inferior = (struct thread_info *) all_threads.head;
487 /* If we were waiting for this particular child to do something...
488 well, it did something. */
492 /* Wait for a more interesting event. */
496 if (WIFSTOPPED (wstat)
497 && WSTOPSIG (wstat) == SIGSTOP
498 && event_child->stop_expected)
501 fprintf (stderr, "Expected stop.\n");
502 event_child->stop_expected = 0;
503 linux_resume_one_process (&event_child->head,
504 event_child->stepping, 0);
508 /* FIXME drow/2002-06-09: Get signal numbers from the inferior's
510 if (WIFSTOPPED (wstat)
511 && (WSTOPSIG (wstat) == __SIGRTMIN
512 || WSTOPSIG (wstat) == __SIGRTMIN + 1))
515 fprintf (stderr, "Ignored signal %d for %d (LWP %d).\n",
516 WSTOPSIG (wstat), event_child->tid,
517 event_child->head.id);
518 linux_resume_one_process (&event_child->head,
519 event_child->stepping,
525 /* If this event was not handled above, and is not a SIGTRAP, report
527 if (!WIFSTOPPED (wstat) || WSTOPSIG (wstat) != SIGTRAP)
530 /* If this target does not support breakpoints, we simply report the
531 SIGTRAP; it's of no concern to us. */
532 if (the_low_target.get_pc == NULL)
535 stop_pc = get_stop_pc ();
537 /* bp_reinsert will only be set if we were single-stepping.
538 Notice that we will resume the process after hitting
539 a gdbserver breakpoint; single-stepping to/over one
540 is not supported (yet). */
541 if (event_child->bp_reinsert != 0)
544 fprintf (stderr, "Reinserted breakpoint.\n");
545 reinsert_breakpoint (event_child->bp_reinsert);
546 event_child->bp_reinsert = 0;
548 /* Clear the single-stepping flag and SIGTRAP as we resume. */
549 linux_resume_one_process (&event_child->head, 0, 0);
554 fprintf (stderr, "Hit a (non-reinsert) breakpoint.\n");
556 if (check_breakpoints (stop_pc) != 0)
558 /* We hit one of our own breakpoints. We mark it as a pending
559 breakpoint, so that check_removed_breakpoint () will do the PC
560 adjustment for us at the appropriate time. */
561 event_child->pending_is_breakpoint = 1;
562 event_child->pending_stop_pc = stop_pc;
564 /* Now we need to put the breakpoint back. We continue in the event
565 loop instead of simply replacing the breakpoint right away,
566 in order to not lose signals sent to the thread that hit the
567 breakpoint. Unfortunately this increases the window where another
568 thread could sneak past the removed breakpoint. For the current
569 use of server-side breakpoints (thread creation) this is
570 acceptable; but it needs to be considered before this breakpoint
571 mechanism can be used in more general ways. For some breakpoints
572 it may be necessary to stop all other threads, but that should
573 be avoided where possible.
575 If breakpoint_reinsert_addr is NULL, that means that we can
576 use PTRACE_SINGLESTEP on this platform. Uninsert the breakpoint,
577 mark it for reinsertion, and single-step.
579 Otherwise, call the target function to figure out where we need
580 our temporary breakpoint, create it, and continue executing this
582 if (the_low_target.breakpoint_reinsert_addr == NULL)
584 event_child->bp_reinsert = stop_pc;
585 uninsert_breakpoint (stop_pc);
586 linux_resume_one_process (&event_child->head, 1, 0);
590 reinsert_breakpoint_by_bp
591 (stop_pc, (*the_low_target.breakpoint_reinsert_addr) ());
592 linux_resume_one_process (&event_child->head, 0, 0);
598 /* If we were single-stepping, we definitely want to report the
599 SIGTRAP. The single-step operation has completed, so also
600 clear the stepping flag; in general this does not matter,
601 because the SIGTRAP will be reported to the client, which
602 will give us a new action for this thread, but clear it for
603 consistency anyway. It's safe to clear the stepping flag
604 because the only consumer of get_stop_pc () after this point
605 is check_removed_breakpoint, and pending_is_breakpoint is not
606 set. It might be wiser to use a step_completed flag instead. */
607 if (event_child->stepping)
609 event_child->stepping = 0;
613 /* A SIGTRAP that we can't explain. It may have been a breakpoint.
614 Check if it is a breakpoint, and if so mark the process information
615 accordingly. This will handle both the necessary fiddling with the
616 PC on decr_pc_after_break targets and suppressing extra threads
617 hitting a breakpoint if two hit it at once and then GDB removes it
618 after the first is reported. Arguably it would be better to report
619 multiple threads hitting breakpoints simultaneously, but the current
620 remote protocol does not allow this. */
621 if ((*the_low_target.breakpoint_at) (stop_pc))
623 event_child->pending_is_breakpoint = 1;
624 event_child->pending_stop_pc = stop_pc;
634 /* Wait for process, returns status. */
637 linux_wait (char *status)
640 struct thread_info *child = NULL;
643 /* If we were only supposed to resume one thread, only wait for
644 that thread - if it's still alive. If it died, however - which
645 can happen if we're coming from the thread death case below -
646 then we need to make sure we restart the other threads. We could
647 pick a thread at random or restart all; restarting all is less
651 child = (struct thread_info *) find_inferior_id (&all_threads,
654 /* No stepping, no signal - unless one is pending already, of course. */
657 struct thread_resume resume_info;
658 resume_info.thread = -1;
659 resume_info.step = resume_info.sig = resume_info.leave_stopped = 0;
660 linux_resume (&resume_info);
666 w = linux_wait_for_event (child);
667 stop_all_processes ();
670 /* If we are waiting for a particular child, and it exited,
671 linux_wait_for_event will return its exit status. Similarly if
672 the last child exited. If this is not the last child, however,
673 do not report it as exited until there is a 'thread exited' response
674 available in the remote protocol. Instead, just wait for another event.
675 This should be safe, because if the thread crashed we will already
676 have reported the termination signal to GDB; that should stop any
677 in-progress stepping operations, etc.
679 Report the exit status of the last thread to exit. This matches
680 LinuxThreads' behavior. */
682 if (all_threads.head == all_threads.tail)
686 fprintf (stderr, "\nChild exited with retcode = %x \n", WEXITSTATUS (w));
689 return ((unsigned char) WEXITSTATUS (w));
691 else if (!WIFSTOPPED (w))
693 fprintf (stderr, "\nChild terminated with signal = %x \n", WTERMSIG (w));
696 return ((unsigned char) WTERMSIG (w));
706 return ((unsigned char) WSTOPSIG (w));
710 send_sigstop (struct inferior_list_entry *entry)
712 struct process_info *process = (struct process_info *) entry;
714 if (process->stopped)
717 /* If we already have a pending stop signal for this process, don't
719 if (process->stop_expected)
721 process->stop_expected = 0;
726 fprintf (stderr, "Sending sigstop to process %d\n", process->head.id);
728 kill (process->head.id, SIGSTOP);
729 process->sigstop_sent = 1;
733 wait_for_sigstop (struct inferior_list_entry *entry)
735 struct process_info *process = (struct process_info *) entry;
736 struct thread_info *saved_inferior, *thread;
737 int wstat, saved_tid;
739 if (process->stopped)
742 saved_inferior = current_inferior;
743 saved_tid = ((struct inferior_list_entry *) saved_inferior)->id;
744 thread = (struct thread_info *) find_inferior_id (&all_threads,
746 wstat = linux_wait_for_event (thread);
748 /* If we stopped with a non-SIGSTOP signal, save it for later
749 and record the pending SIGSTOP. If the process exited, just
751 if (WIFSTOPPED (wstat)
752 && WSTOPSIG (wstat) != SIGSTOP)
755 fprintf (stderr, "Stopped with non-sigstop signal\n");
756 process->status_pending_p = 1;
757 process->status_pending = wstat;
758 process->stop_expected = 1;
761 if (linux_thread_alive (saved_tid))
762 current_inferior = saved_inferior;
766 fprintf (stderr, "Previously current thread died.\n");
768 /* Set a valid thread as current. */
769 set_desired_inferior (0);
774 stop_all_processes (void)
776 stopping_threads = 1;
777 for_each_inferior (&all_processes, send_sigstop);
778 for_each_inferior (&all_processes, wait_for_sigstop);
779 stopping_threads = 0;
782 /* Resume execution of the inferior process.
783 If STEP is nonzero, single-step it.
784 If SIGNAL is nonzero, give it that signal. */
787 linux_resume_one_process (struct inferior_list_entry *entry,
788 int step, int signal)
790 struct process_info *process = (struct process_info *) entry;
791 struct thread_info *saved_inferior;
793 if (process->stopped == 0)
796 /* If we have pending signals or status, and a new signal, enqueue the
797 signal. Also enqueue the signal if we are waiting to reinsert a
798 breakpoint; it will be picked up again below. */
800 && (process->status_pending_p || process->pending_signals != NULL
801 || process->bp_reinsert != 0))
803 struct pending_signals *p_sig;
804 p_sig = malloc (sizeof (*p_sig));
805 p_sig->prev = process->pending_signals;
806 p_sig->signal = signal;
807 process->pending_signals = p_sig;
810 if (process->status_pending_p && !check_removed_breakpoint (process))
813 saved_inferior = current_inferior;
814 current_inferior = get_process_thread (process);
817 fprintf (stderr, "Resuming process %d (%s, signal %d, stop %s)\n", inferior_pid,
818 step ? "step" : "continue", signal,
819 process->stop_expected ? "expected" : "not expected");
821 /* This bit needs some thinking about. If we get a signal that
822 we must report while a single-step reinsert is still pending,
823 we often end up resuming the thread. It might be better to
824 (ew) allow a stack of pending events; then we could be sure that
825 the reinsert happened right away and not lose any signals.
827 Making this stack would also shrink the window in which breakpoints are
828 uninserted (see comment in linux_wait_for_process) but not enough for
829 complete correctness, so it won't solve that problem. It may be
830 worthwhile just to solve this one, however. */
831 if (process->bp_reinsert != 0)
834 fprintf (stderr, " pending reinsert at %08lx", (long)process->bp_reinsert);
836 fprintf (stderr, "BAD - reinserting but not stepping.\n");
839 /* Postpone any pending signal. It was enqueued above. */
843 check_removed_breakpoint (process);
845 if (debug_threads && the_low_target.get_pc != NULL)
847 fprintf (stderr, " ");
848 (long) (*the_low_target.get_pc) ();
851 /* If we have pending signals, consume one unless we are trying to reinsert
853 if (process->pending_signals != NULL && process->bp_reinsert == 0)
855 struct pending_signals **p_sig;
857 p_sig = &process->pending_signals;
858 while ((*p_sig)->prev != NULL)
859 p_sig = &(*p_sig)->prev;
861 signal = (*p_sig)->signal;
866 regcache_invalidate_one ((struct inferior_list_entry *)
867 get_process_thread (process));
869 process->stopped = 0;
870 process->stepping = step;
871 ptrace (step ? PTRACE_SINGLESTEP : PTRACE_CONT, process->lwpid, 0, signal);
873 current_inferior = saved_inferior;
875 perror_with_name ("ptrace");
878 static struct thread_resume *resume_ptr;
880 /* This function is called once per thread. We look up the thread
881 in RESUME_PTR, and mark the thread with a pointer to the appropriate
884 This algorithm is O(threads * resume elements), but resume elements
885 is small (and will remain small at least until GDB supports thread
888 linux_set_resume_request (struct inferior_list_entry *entry)
890 struct process_info *process;
891 struct thread_info *thread;
894 thread = (struct thread_info *) entry;
895 process = get_thread_process (thread);
898 while (resume_ptr[ndx].thread != -1 && resume_ptr[ndx].thread != entry->id)
901 process->resume = &resume_ptr[ndx];
904 /* This function is called once per thread. We check the thread's resume
905 request, which will tell us whether to resume, step, or leave the thread
906 stopped; and what signal, if any, it should be sent. For threads which
907 we aren't explicitly told otherwise, we preserve the stepping flag; this
908 is used for stepping over gdbserver-placed breakpoints. */
911 linux_continue_one_thread (struct inferior_list_entry *entry)
913 struct process_info *process;
914 struct thread_info *thread;
917 thread = (struct thread_info *) entry;
918 process = get_thread_process (thread);
920 if (process->resume->leave_stopped)
923 if (process->resume->thread == -1)
924 step = process->stepping || process->resume->step;
926 step = process->resume->step;
928 linux_resume_one_process (&process->head, step, process->resume->sig);
930 process->resume = NULL;
933 /* This function is called once per thread. We check the thread's resume
934 request, which will tell us whether to resume, step, or leave the thread
935 stopped; and what signal, if any, it should be sent. We queue any needed
936 signals, since we won't actually resume. We already have a pending event
937 to report, so we don't need to preserve any step requests; they should
938 be re-issued if necessary. */
941 linux_queue_one_thread (struct inferior_list_entry *entry)
943 struct process_info *process;
944 struct thread_info *thread;
946 thread = (struct thread_info *) entry;
947 process = get_thread_process (thread);
949 if (process->resume->leave_stopped)
952 /* If we have a new signal, enqueue the signal. */
953 if (process->resume->sig != 0)
955 struct pending_signals *p_sig;
956 p_sig = malloc (sizeof (*p_sig));
957 p_sig->prev = process->pending_signals;
958 p_sig->signal = process->resume->sig;
959 process->pending_signals = p_sig;
962 process->resume = NULL;
965 /* Set DUMMY if this process has an interesting status pending. */
967 resume_status_pending_p (struct inferior_list_entry *entry, void *flag_p)
969 struct process_info *process = (struct process_info *) entry;
971 /* Processes which will not be resumed are not interesting, because
972 we might not wait for them next time through linux_wait. */
973 if (process->resume->leave_stopped)
976 /* If this thread has a removed breakpoint, we won't have any
977 events to report later, so check now. check_removed_breakpoint
978 may clear status_pending_p. We avoid calling check_removed_breakpoint
979 for any thread that we are not otherwise going to resume - this
980 lets us preserve stopped status when two threads hit a breakpoint.
981 GDB removes the breakpoint to single-step a particular thread
982 past it, then re-inserts it and resumes all threads. We want
983 to report the second thread without resuming it in the interim. */
984 if (process->status_pending_p)
985 check_removed_breakpoint (process);
987 if (process->status_pending_p)
988 * (int *) flag_p = 1;
994 linux_resume (struct thread_resume *resume_info)
998 /* Yes, the use of a global here is rather ugly. */
999 resume_ptr = resume_info;
1001 for_each_inferior (&all_threads, linux_set_resume_request);
1003 /* If there is a thread which would otherwise be resumed, which
1004 has a pending status, then don't resume any threads - we can just
1005 report the pending status. Make sure to queue any signals
1006 that would otherwise be sent. */
1008 find_inferior (&all_processes, resume_status_pending_p, &pending_flag);
1013 fprintf (stderr, "Not resuming, pending status\n");
1015 fprintf (stderr, "Resuming, no pending status\n");
1019 for_each_inferior (&all_threads, linux_queue_one_thread);
1024 for_each_inferior (&all_threads, linux_continue_one_thread);
1028 #ifdef HAVE_LINUX_USRREGS
1031 register_addr (int regnum)
1035 if (regnum < 0 || regnum >= the_low_target.num_regs)
1036 error ("Invalid register number %d.", regnum);
1038 addr = the_low_target.regmap[regnum];
1043 /* Fetch one register. */
1045 fetch_register (int regno)
1051 if (regno >= the_low_target.num_regs)
1053 if ((*the_low_target.cannot_fetch_register) (regno))
1056 regaddr = register_addr (regno);
1059 buf = alloca (register_size (regno));
1060 for (i = 0; i < register_size (regno); i += sizeof (PTRACE_XFER_TYPE))
1063 *(PTRACE_XFER_TYPE *) (buf + i) =
1064 ptrace (PTRACE_PEEKUSER, inferior_pid, (PTRACE_ARG3_TYPE) regaddr, 0);
1065 regaddr += sizeof (PTRACE_XFER_TYPE);
1068 /* Warning, not error, in case we are attached; sometimes the
1069 kernel doesn't let us at the registers. */
1070 char *err = strerror (errno);
1071 char *msg = alloca (strlen (err) + 128);
1072 sprintf (msg, "reading register %d: %s", regno, err);
1077 supply_register (regno, buf);
1082 /* Fetch all registers, or just one, from the child process. */
1084 usr_fetch_inferior_registers (int regno)
1086 if (regno == -1 || regno == 0)
1087 for (regno = 0; regno < the_low_target.num_regs; regno++)
1088 fetch_register (regno);
1090 fetch_register (regno);
1093 /* Store our register values back into the inferior.
1094 If REGNO is -1, do this for all registers.
1095 Otherwise, REGNO specifies which register (so we can save time). */
1097 usr_store_inferior_registers (int regno)
1105 if (regno >= the_low_target.num_regs)
1108 if ((*the_low_target.cannot_store_register) (regno) == 1)
1111 regaddr = register_addr (regno);
1115 buf = alloca (register_size (regno));
1116 collect_register (regno, buf);
1117 for (i = 0; i < register_size (regno); i += sizeof (PTRACE_XFER_TYPE))
1120 ptrace (PTRACE_POKEUSER, inferior_pid, (PTRACE_ARG3_TYPE) regaddr,
1121 *(PTRACE_XFER_TYPE *) (buf + i));
1124 if ((*the_low_target.cannot_store_register) (regno) == 0)
1126 char *err = strerror (errno);
1127 char *msg = alloca (strlen (err) + 128);
1128 sprintf (msg, "writing register %d: %s",
1134 regaddr += sizeof (PTRACE_XFER_TYPE);
1138 for (regno = 0; regno < the_low_target.num_regs; regno++)
1139 usr_store_inferior_registers (regno);
1141 #endif /* HAVE_LINUX_USRREGS */
1145 #ifdef HAVE_LINUX_REGSETS
1148 regsets_fetch_inferior_registers ()
1150 struct regset_info *regset;
1152 regset = target_regsets;
1154 while (regset->size >= 0)
1159 if (regset->size == 0)
1165 buf = malloc (regset->size);
1166 res = ptrace (regset->get_request, inferior_pid, 0, buf);
1171 /* If we get EIO on the first regset, do not try regsets again.
1172 If we get EIO on a later regset, disable that regset. */
1173 if (regset == target_regsets)
1187 sprintf (s, "ptrace(regsets_fetch_inferior_registers) PID=%d",
1192 regset->store_function (buf);
1199 regsets_store_inferior_registers ()
1201 struct regset_info *regset;
1203 regset = target_regsets;
1205 while (regset->size >= 0)
1210 if (regset->size == 0)
1216 buf = malloc (regset->size);
1217 regset->fill_function (buf);
1218 res = ptrace (regset->set_request, inferior_pid, 0, buf);
1223 /* If we get EIO on the first regset, do not try regsets again.
1224 If we get EIO on a later regset, disable that regset. */
1225 if (regset == target_regsets)
1238 perror ("Warning: ptrace(regsets_store_inferior_registers)");
1247 #endif /* HAVE_LINUX_REGSETS */
1251 linux_fetch_registers (int regno)
1253 #ifdef HAVE_LINUX_REGSETS
1256 if (regsets_fetch_inferior_registers () == 0)
1260 #ifdef HAVE_LINUX_USRREGS
1261 usr_fetch_inferior_registers (regno);
1266 linux_store_registers (int regno)
1268 #ifdef HAVE_LINUX_REGSETS
1271 if (regsets_store_inferior_registers () == 0)
1275 #ifdef HAVE_LINUX_USRREGS
1276 usr_store_inferior_registers (regno);
1281 /* Copy LEN bytes from inferior's memory starting at MEMADDR
1282 to debugger memory starting at MYADDR. */
1285 linux_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
1288 /* Round starting address down to longword boundary. */
1289 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
1290 /* Round ending address up; get number of longwords that makes. */
1292 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1)
1293 / sizeof (PTRACE_XFER_TYPE);
1294 /* Allocate buffer of that many longwords. */
1295 register PTRACE_XFER_TYPE *buffer
1296 = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
1298 /* Read all the longwords */
1299 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
1301 buffer[i] = ptrace (PTRACE_PEEKTEXT, inferior_pid, (PTRACE_ARG3_TYPE) addr, 0);
1304 /* Copy appropriate bytes out of the buffer. */
1305 memcpy (myaddr, (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), len);
1308 /* Copy LEN bytes of data from debugger memory at MYADDR
1309 to inferior's memory at MEMADDR.
1310 On failure (cannot write the inferior)
1311 returns the value of errno. */
1314 linux_write_memory (CORE_ADDR memaddr, const char *myaddr, int len)
1317 /* Round starting address down to longword boundary. */
1318 register CORE_ADDR addr = memaddr & -(CORE_ADDR) sizeof (PTRACE_XFER_TYPE);
1319 /* Round ending address up; get number of longwords that makes. */
1321 = (((memaddr + len) - addr) + sizeof (PTRACE_XFER_TYPE) - 1) / sizeof (PTRACE_XFER_TYPE);
1322 /* Allocate buffer of that many longwords. */
1323 register PTRACE_XFER_TYPE *buffer = (PTRACE_XFER_TYPE *) alloca (count * sizeof (PTRACE_XFER_TYPE));
1328 fprintf (stderr, "Writing %02x to %08lx\n", (unsigned)myaddr[0], (long)memaddr);
1331 /* Fill start and end extra bytes of buffer with existing memory data. */
1333 buffer[0] = ptrace (PTRACE_PEEKTEXT, inferior_pid,
1334 (PTRACE_ARG3_TYPE) addr, 0);
1339 = ptrace (PTRACE_PEEKTEXT, inferior_pid,
1340 (PTRACE_ARG3_TYPE) (addr + (count - 1)
1341 * sizeof (PTRACE_XFER_TYPE)),
1345 /* Copy data to be written over corresponding part of buffer */
1347 memcpy ((char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), myaddr, len);
1349 /* Write the entire buffer. */
1351 for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
1354 ptrace (PTRACE_POKETEXT, inferior_pid, (PTRACE_ARG3_TYPE) addr, buffer[i]);
1363 linux_look_up_symbols (void)
1365 #ifdef USE_THREAD_DB
1369 using_threads = thread_db_init ();
1374 linux_send_signal (int signum)
1376 extern int signal_pid;
1378 if (cont_thread > 0)
1380 struct process_info *process;
1382 process = get_thread_process (current_inferior);
1383 kill (process->lwpid, signum);
1386 kill (signal_pid, signum);
1389 /* Copy LEN bytes from inferior's auxiliary vector starting at OFFSET
1390 to debugger memory starting at MYADDR. */
1393 linux_read_auxv (CORE_ADDR offset, char *myaddr, unsigned int len)
1395 char filename[PATH_MAX];
1398 snprintf (filename, sizeof filename, "/proc/%d/auxv", inferior_pid);
1400 fd = open (filename, O_RDONLY);
1404 if (offset != (CORE_ADDR) 0
1405 && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset)
1408 n = read (fd, myaddr, len);
1416 static struct target_ops linux_target_ops = {
1417 linux_create_inferior,
1424 linux_fetch_registers,
1425 linux_store_registers,
1428 linux_look_up_symbols,
1434 linux_init_signals ()
1436 /* FIXME drow/2002-06-09: As above, we should check with LinuxThreads
1437 to find what the cancel signal actually is. */
1438 signal (__SIGRTMIN+1, SIG_IGN);
1442 initialize_low (void)
1445 set_target_ops (&linux_target_ops);
1446 set_breakpoint_data (the_low_target.breakpoint,
1447 the_low_target.breakpoint_len);
1449 linux_init_signals ();