* gas/cgen feature
[binutils-gdb.git] / gdb / lin-lwp.c
blobbf52e2feaa2c189d668b9b47c44b8ca8bc034cde
1 /* Multi-threaded debugging support for Linux (LWP layer).
2 Copyright 2000 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include "defs.h"
23 #include "gdb_assert.h"
24 #include <errno.h>
25 #include <signal.h>
26 #include <sys/ptrace.h>
27 #include "gdb_wait.h"
29 #include "gdbthread.h"
30 #include "inferior.h"
31 #include "target.h"
33 #define DEBUG 1
35 #if DEBUG
36 extern const char *strsignal (int sig);
37 #endif
39 /* On Linux there are no real LWP's. The closest thing to LWP's are
40 processes sharing the same VM space. A multi-threaded process is
41 basically a group of such processes. However, such a grouping is
42 almost entirely a user-space issue; the kernel doesn't enforce such
43 a grouping at all (this might change in the future). In general,
44 we'll rely on the threads library (i.e. the LinuxThreads library)
45 to provide such a grouping.
47 It is perfectly well possible to write a multi-threaded application
48 without the assistance of a threads library, by using the clone
49 system call directly. This module should be able to give some
50 rudimentary support for debugging such applications if developers
51 specify the CLONE_PTRACE flag in the clone system call, and are
52 using Linux 2.4 or above.
54 Note that there are some peculiarities in Linux that affect this
55 code:
57 - In general one should specify the __WCLONE flag to waitpid in
58 order to make it report events for any of the cloned processes
59 (and leave it out for the initial process). However, if a cloned
60 process has exited the exit status is only reported if the
61 __WCLONE flag is absent. Linux 2.4 has a __WALL flag, but we
62 cannot use it since GDB must work on older systems too.
64 - When a traced, cloned process exits and is waited for by the
65 debugger, the kernel reassigns it to the origional parent and
66 keeps it around as a "zombie". Somehow, the LinuxThreads library
67 doesn't notice this, which leads to the "zombie problem": When
68 debugged a multi-threaded process that spawns a lot of threads
69 will run out of processes, even if the threads exit, because the
70 "zombies" stay around. */
72 /* Structure describing a LWP. */
73 struct lwp_info
75 /* The process id of the LWP. This is a combination of the LWP id
76 and overall process id. */
77 int pid;
79 /* Non-zero if we sent this LWP a SIGSTOP (but the LWP didn't report
80 it back yet). */
81 int signalled;
83 /* Non-zero if this LWP is stopped. */
84 int stopped;
86 /* If non-zero, a pending wait status. */
87 int status;
89 /* Non-zero if we were stepping this LWP. */
90 int step;
92 /* Next LWP in list. */
93 struct lwp_info *next;
96 /* List of known LWPs. */
97 static struct lwp_info *lwp_list;
99 /* Number of LWPs in the list. */
100 static int num_lwps;
102 /* Non-zero if we're running in "threaded" mode. */
103 static int threaded;
106 #ifndef TIDGET
107 #define TIDGET(PID) (((PID) & 0x7fffffff) >> 16)
108 #define PIDGET(PID) (((PID) & 0xffff))
109 #define MERGEPID(PID, TID) (((PID) & 0xffff) | ((TID) << 16))
110 #endif
112 #define THREAD_FLAG 0x80000000
113 #define is_lwp(pid) (((pid) & THREAD_FLAG) == 0 && TIDGET (pid))
114 #define GET_LWP(pid) TIDGET (pid)
115 #define GET_PID(pid) PIDGET (pid)
116 #define BUILD_LWP(tid, pid) MERGEPID (pid, tid)
118 #define is_cloned(pid) (GET_LWP (pid) != GET_PID (pid))
120 /* If the last reported event was a SIGTRAP, this variable is set to
121 the process id of the LWP/thread that got it. */
122 int trap_pid;
125 /* This module's target-specific operations. */
126 static struct target_ops lin_lwp_ops;
128 /* The standard child operations. */
129 extern struct target_ops child_ops;
131 /* Since we cannot wait (in lin_lwp_wait) for the initial process and
132 any cloned processes with a single call to waitpid, we have to use
133 use the WNOHANG flag and call waitpid in a loop. To optimize
134 things a bit we use `sigsuspend' to wake us up when a process has
135 something to report (it will send us a SIGCHLD if it has). To make
136 this work we have to juggle with the signal mask. We save the
137 origional signal mask such that we can restore it before creating a
138 new process in order to avoid blocking certain signals in the
139 inferior. We then block SIGCHLD during the waitpid/sigsuspend
140 loop. */
142 /* Origional signal mask. */
143 static sigset_t normal_mask;
145 /* Signal mask for use with sigsuspend in lin_lwp_wait, initialized in
146 _initialize_lin_lwp. */
147 static sigset_t suspend_mask;
149 /* Signals to block to make that sigsuspend work. */
150 static sigset_t blocked_mask;
153 /* Prototypes for local functions. */
154 static void lin_lwp_mourn_inferior (void);
157 /* Initialize the list of LWPs. */
159 static void
160 init_lwp_list (void)
162 struct lwp_info *lp, *lpnext;
164 for (lp = lwp_list; lp; lp = lpnext)
166 lpnext = lp->next;
167 xfree (lp);
170 lwp_list = NULL;
171 num_lwps = 0;
172 threaded = 0;
175 /* Add the LWP specified by PID to the list. If this causes the
176 number of LWPs to become larger than one, go into "threaded" mode.
177 Return a pointer to the structure describing the new LWP. */
179 static struct lwp_info *
180 add_lwp (int pid)
182 struct lwp_info *lp;
184 gdb_assert (is_lwp (pid));
186 lp = (struct lwp_info *) xmalloc (sizeof (struct lwp_info));
188 memset (lp, 0, sizeof (struct lwp_info));
190 lp->pid = pid;
192 lp->next = lwp_list;
193 lwp_list = lp;
194 if (++num_lwps > 1)
195 threaded = 1;
197 return lp;
200 /* Remove the LWP specified by PID from the list. */
202 static void
203 delete_lwp (int pid)
205 struct lwp_info *lp, *lpprev;
207 lpprev = NULL;
209 for (lp = lwp_list; lp; lpprev = lp, lp = lp->next)
210 if (lp->pid == pid)
211 break;
213 if (!lp)
214 return;
216 /* We don't go back to "non-threaded" mode if the number of threads
217 becomes less than two. */
218 num_lwps--;
220 if (lpprev)
221 lpprev->next = lp->next;
222 else
223 lwp_list = lp->next;
225 xfree (lp);
228 /* Return a pointer to the structure describing the LWP corresponding
229 to PID. If no corresponding LWP could be found, return NULL. */
231 static struct lwp_info *
232 find_lwp_pid (int pid)
234 struct lwp_info *lp;
236 if (is_lwp (pid))
237 pid = GET_LWP (pid);
239 for (lp = lwp_list; lp; lp = lp->next)
240 if (pid == GET_LWP (lp->pid))
241 return lp;
243 return NULL;
246 /* Call CALLBACK with its second argument set to DATA for every LWP in
247 the list. If CALLBACK returns 1 for a particular LWP, return a
248 pointer to the structure describing that LWP immediately.
249 Otherwise return NULL. */
251 struct lwp_info *
252 iterate_over_lwps (int (*callback) (struct lwp_info *, void *), void *data)
254 struct lwp_info *lp;
256 for (lp = lwp_list; lp; lp = lp->next)
257 if ((*callback) (lp, data))
258 return lp;
260 return NULL;
264 /* Helper functions. */
266 static void
267 restore_inferior_pid (void *arg)
269 int *saved_pid_ptr = arg;
270 inferior_pid = *saved_pid_ptr;
271 xfree (arg);
274 static struct cleanup *
275 save_inferior_pid (void)
277 int *saved_pid_ptr;
279 saved_pid_ptr = xmalloc (sizeof (int));
280 *saved_pid_ptr = inferior_pid;
281 return make_cleanup (restore_inferior_pid, saved_pid_ptr);
285 /* Implementation of the PREPARE_TO_PROCEED hook for the Linux LWP layer. */
288 lin_lwp_prepare_to_proceed (void)
290 if (trap_pid && inferior_pid != trap_pid)
292 /* Switched over from TRAP_PID. */
293 CORE_ADDR stop_pc = read_pc ();
294 CORE_ADDR trap_pc;
296 /* Avoid switching where it wouldn't do any good, i.e. if both
297 threads are at the same breakpoint. */
298 trap_pc = read_pc_pid (trap_pid);
299 if (trap_pc != stop_pc && breakpoint_here_p (trap_pc))
301 /* User hasn't deleted the breakpoint. Return non-zero, and
302 switch back to TRAP_PID. */
303 inferior_pid = trap_pid;
305 /* FIXME: Is this stuff really necessary? */
306 flush_cached_frames ();
307 registers_changed ();
309 return 1;
313 return 0;
317 #if 0
318 static void
319 lin_lwp_open (char *args, int from_tty)
321 push_target (&lin_lwp_ops);
323 #endif
325 /* Attach to the LWP specified by PID. If VERBOSE is non-zero, print
326 a message telling the user that a new LWP has been added to the
327 process. */
329 void
330 lin_lwp_attach_lwp (int pid, int verbose)
332 struct lwp_info *lp;
334 gdb_assert (is_lwp (pid));
336 if (verbose)
337 printf_filtered ("[New %s]\n", target_pid_to_str (pid));
339 if (ptrace (PTRACE_ATTACH, GET_LWP (pid), 0, 0) < 0)
340 error ("Can't attach %s: %s", target_pid_to_str (pid), strerror (errno));
342 lp = add_lwp (pid);
343 lp->signalled = 1;
346 static void
347 lin_lwp_attach (char *args, int from_tty)
349 /* FIXME: We should probably accept a list of process id's, and
350 attach all of them. */
351 error("Not implemented yet");
354 static void
355 lin_lwp_detach (char *args, int from_tty)
357 /* FIXME: Provide implementation when we implement lin_lwp_attach. */
358 error ("Not implemented yet");
362 struct private_thread_info
364 int lwpid;
367 /* Return non-zero if TP corresponds to the LWP specified by DATA
368 (which is assumed to be a pointer to a `struct lwp_info'. */
370 static int
371 find_lwp_callback (struct thread_info *tp, void *data)
373 struct lwp_info *lp = data;
375 if (tp->private->lwpid == GET_LWP (lp->pid))
376 return 1;
378 return 0;
381 /* Resume LP. */
383 static int
384 resume_callback (struct lwp_info *lp, void *data)
386 if (lp->stopped && lp->status == 0)
388 struct thread_info *tp;
390 #if 1
391 /* FIXME: kettenis/2000-08-26: This should really be handled
392 properly by core GDB. */
394 tp = find_thread_pid (lp->pid);
395 if (tp == NULL)
396 tp = iterate_over_threads (find_lwp_callback, lp);
397 gdb_assert (tp);
399 /* If we were previously stepping the thread, and now continue
400 the thread we must invalidate the stepping range. However,
401 if there is a step_resume breakpoint for this thread, we must
402 preserve the stepping range to make it possible to continue
403 stepping once we hit it. */
404 if (tp->step_range_end && tp->step_resume_breakpoint == NULL)
406 gdb_assert (lp->step);
407 tp->step_range_start = tp->step_range_end = 0;
409 #endif
411 child_resume (GET_LWP (lp->pid), 0, TARGET_SIGNAL_0);
412 lp->stopped = 0;
413 lp->step = 0;
416 return 0;
419 static void
420 lin_lwp_resume (int pid, int step, enum target_signal signo)
422 struct lwp_info *lp;
423 int resume_all;
425 /* Apparently the interpretation of PID is dependent on STEP: If
426 STEP is non-zero, a specific PID means `step only this process
427 id'. But if STEP is zero, then PID means `continue *all*
428 processes, but give the signal only to this one'. */
429 resume_all = (pid == -1) || !step;
431 /* If PID is -1, it's the current inferior that should be
432 handled special. */
433 if (pid == -1)
434 pid = inferior_pid;
436 lp = find_lwp_pid (pid);
437 if (lp)
439 pid = GET_LWP (lp->pid);
441 /* Mark LWP as not stopped to prevent it from being continued by
442 resume_callback. */
443 lp->stopped = 0;
445 /* Remember if we're stepping. */
446 lp->step = step;
448 /* If we have a pending wait status for this thread, there is no
449 point in resuming the process. */
450 if (lp->status)
452 /* FIXME: What should we do if we are supposed to continue
453 this thread with a signal? */
454 gdb_assert (signo == TARGET_SIGNAL_0);
455 return;
459 if (resume_all)
460 iterate_over_lwps (resume_callback, NULL);
462 child_resume (pid, step, signo);
466 /* Send a SIGSTOP to LP. */
468 static int
469 stop_callback (struct lwp_info *lp, void *data)
471 if (! lp->stopped && ! lp->signalled)
473 int ret;
475 ret = kill (GET_LWP (lp->pid), SIGSTOP);
476 gdb_assert (ret == 0);
478 lp->signalled = 1;
479 gdb_assert (lp->status == 0);
482 return 0;
485 /* Wait until LP is stopped. */
487 static int
488 stop_wait_callback (struct lwp_info *lp, void *data)
490 if (! lp->stopped && lp->signalled)
492 pid_t pid;
493 int status;
495 gdb_assert (lp->status == 0);
497 pid = waitpid (GET_LWP (lp->pid), &status,
498 is_cloned (lp->pid) ? __WCLONE : 0);
499 if (pid == -1 && errno == ECHILD)
500 /* OK, the proccess has disappeared. We'll catch the actual
501 exit event in lin_lwp_wait. */
502 return 0;
504 gdb_assert (pid == GET_LWP (lp->pid));
506 if (WIFEXITED (status) || WIFSIGNALED (status))
508 gdb_assert (num_lwps > 1);
510 if (in_thread_list (lp->pid))
512 /* Core GDB cannot deal with us deleting the current
513 thread. */
514 if (lp->pid != inferior_pid)
515 delete_thread (lp->pid);
516 printf_unfiltered ("[%s exited]\n",
517 target_pid_to_str (lp->pid));
519 #if DEBUG
520 printf ("%s exited.\n", target_pid_to_str (lp->pid));
521 #endif
522 delete_lwp (lp->pid);
523 return 0;
526 gdb_assert (WIFSTOPPED (status));
527 lp->stopped = 1;
529 if (WSTOPSIG (status) != SIGSTOP)
531 if (WSTOPSIG (status) == SIGTRAP
532 && breakpoint_inserted_here_p (read_pc_pid (pid)
533 - DECR_PC_AFTER_BREAK))
535 /* If a LWP other than the LWP that we're reporting an
536 event for has hit a GDB breakpoint (as opposed to
537 some random trap signal), then just arrange for it to
538 hit it again later. We don't keep the SIGTRAP status
539 and don't forward the SIGTRAP signal to the LWP. We
540 will handle the current event, eventually we will
541 resume all LWPs, and this one will get its breakpoint
542 trap again.
544 If we do not do this, then we run the risk that the
545 user will delete or disable the breakpoint, but the
546 thread will have already tripped on it. */
547 #if DEBUG
548 printf ("Tripped breakpoint at %lx in LWP %d"
549 " while waiting for SIGSTOP.\n",
550 (long) read_pc_pid (lp->pid), pid);
551 #endif
552 /* Set the PC to before the trap. */
553 if (DECR_PC_AFTER_BREAK)
554 write_pc_pid (read_pc_pid (pid) - DECR_PC_AFTER_BREAK, pid);
556 else
558 #if DEBUG
559 printf ("Received %s in LWP %d while waiting for SIGSTOP.\n",
560 strsignal (WSTOPSIG (status)), pid);
561 #endif
562 /* The thread was stopped with a signal other than
563 SIGSTOP, and didn't accidentiliy trip a breakpoint.
564 Record the wait status. */
565 lp->status = status;
568 else
570 /* We caught the SIGSTOP that we intended to catch, so
571 there's no SIGSTOP pending. */
572 lp->signalled = 0;
576 return 0;
579 /* Return non-zero if LP has a wait status pending. */
581 static int
582 status_callback (struct lwp_info *lp, void *data)
584 return (lp->status != 0);
587 /* Return non-zero if LP isn't stopped. */
589 static int
590 running_callback (struct lwp_info *lp, void *data)
592 return (lp->stopped == 0);
595 static int
596 lin_lwp_wait (int pid, struct target_waitstatus *ourstatus)
598 struct lwp_info *lp = NULL;
599 int options = 0;
600 int status = 0;
602 /* Make sure SIGCHLD is blocked. */
603 if (! sigismember (&blocked_mask, SIGCHLD))
605 sigaddset (&blocked_mask, SIGCHLD);
606 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
609 retry:
611 /* First check if there is a LWP with a wait status pending. */
612 if (pid == -1)
614 /* Any LWP will do. */
615 lp = iterate_over_lwps (status_callback, NULL);
616 if (lp)
618 #if DEBUG
619 printf ("Using pending wait status for LWP %d.\n",
620 GET_LWP (lp->pid));
621 #endif
622 status = lp->status;
623 lp->status = 0;
626 /* But if we don't fine one, we'll have to wait, and check both
627 cloned and uncloned processes. We start with the cloned
628 processes. */
629 options = __WCLONE | WNOHANG;
631 else if (is_lwp (pid))
633 #if DEBUG
634 printf ("Waiting for specific LWP %d.\n", GET_LWP (pid));
635 #endif
636 /* We have a specific LWP to check. */
637 lp = find_lwp_pid (GET_LWP (pid));
638 gdb_assert (lp);
639 status = lp->status;
640 lp->status = 0;
641 #if DEBUG
642 if (status)
643 printf ("Using pending wait status for LWP %d.\n",
644 GET_LWP (lp->pid));
645 #endif
647 /* If we have to wait, take into account whether PID is a cloned
648 process or not. And we have to convert it to something that
649 the layer beneath us can understand. */
650 options = is_cloned (lp->pid) ? __WCLONE : 0;
651 pid = GET_LWP (pid);
654 if (status && lp->signalled)
656 /* A pending SIGSTOP may interfere with the normal stream of
657 events. In a typical case where interference is a problem,
658 we have a SIGSTOP signal pending for LWP A while
659 single-stepping it, encounter an event in LWP B, and take the
660 pending SIGSTOP while trying to stop LWP A. After processing
661 the event in LWP B, LWP A is continued, and we'll never see
662 the SIGTRAP associated with the last time we were
663 single-stepping LWP A. */
665 /* Resume the thread. It should halt immediately returning the
666 pending SIGSTOP. */
667 child_resume (GET_LWP (lp->pid), lp->step, TARGET_SIGNAL_0);
668 lp->stopped = 0;
670 /* This should catch the pending SIGSTOP. */
671 stop_wait_callback (lp, NULL);
674 set_sigint_trap (); /* Causes SIGINT to be passed on to the
675 attached process. */
676 set_sigio_trap ();
678 while (status == 0)
680 pid_t lwpid;
682 lwpid = waitpid (pid, &status, options);
683 if (lwpid > 0)
685 gdb_assert (pid == -1 || lwpid == pid);
687 lp = find_lwp_pid (lwpid);
688 if (! lp)
690 lp = add_lwp (BUILD_LWP (lwpid, inferior_pid));
691 if (threaded)
693 gdb_assert (WIFSTOPPED (status)
694 && WSTOPSIG (status) == SIGSTOP);
695 lp->signalled = 1;
697 if (! in_thread_list (inferior_pid))
699 inferior_pid = BUILD_LWP (inferior_pid, inferior_pid);
700 add_thread (inferior_pid);
703 add_thread (lp->pid);
704 printf_unfiltered ("[New %s]\n",
705 target_pid_to_str (lp->pid));
709 /* Make sure we don't report a TARGET_WAITKIND_EXITED or
710 TARGET_WAITKIND_SIGNALLED event if there are still LWP's
711 left in the process. */
712 if ((WIFEXITED (status) || WIFSIGNALED (status)) && num_lwps > 1)
714 if (in_thread_list (lp->pid))
716 /* Core GDB cannot deal with us deleting the current
717 thread. */
718 if (lp->pid != inferior_pid)
719 delete_thread (lp->pid);
720 printf_unfiltered ("[%s exited]\n",
721 target_pid_to_str (lp->pid));
723 #if DEBUG
724 printf ("%s exited.\n", target_pid_to_str (lp->pid));
725 #endif
726 delete_lwp (lp->pid);
728 /* Make sure there is at least one thread running. */
729 gdb_assert (iterate_over_lwps (running_callback, NULL));
731 /* Discard the event. */
732 status = 0;
733 continue;
736 /* Make sure we don't report a SIGSTOP that we sent
737 ourselves in an attempt to stop an LWP. */
738 if (lp->signalled && WIFSTOPPED (status)
739 && WSTOPSIG (status) == SIGSTOP)
741 #if DEBUG
742 printf ("Delayed SIGSTOP caught for %s.\n",
743 target_pid_to_str (lp->pid));
744 #endif
745 /* This is a delayed SIGSTOP. */
746 lp->signalled = 0;
748 child_resume (GET_LWP (lp->pid), lp->step, TARGET_SIGNAL_0);
749 lp->stopped = 0;
751 /* Discard the event. */
752 status = 0;
753 continue;
756 break;
759 if (pid == -1)
761 /* Alternate between checking cloned and uncloned processes. */
762 options ^= __WCLONE;
764 /* And suspend every time we have checked both. */
765 if (options & __WCLONE)
766 sigsuspend (&suspend_mask);
769 /* We shouldn't end up here unless we want to try again. */
770 gdb_assert (status == 0);
773 clear_sigio_trap ();
774 clear_sigint_trap ();
776 gdb_assert (lp);
778 /* Don't report signals that GDB isn't interested in, such as
779 signals that are neither printed nor stopped upon. Stopping all
780 threads can be a bit time-consuming so if we want decent
781 performance with heavily multi-threaded programs, especially when
782 they're using a high frequency timer, we'd better avoid it if we
783 can. */
785 if (WIFSTOPPED (status))
787 int signo = target_signal_from_host (WSTOPSIG (status));
789 if (signal_stop_state (signo) == 0
790 && signal_print_state (signo) == 0
791 && signal_pass_state (signo) == 1)
793 child_resume (GET_LWP (lp->pid), lp->step, signo);
794 lp->stopped = 0;
795 status = 0;
796 goto retry;
800 /* This LWP is stopped now. */
801 lp->stopped = 1;
803 /* Now stop all other LWP's ... */
804 iterate_over_lwps (stop_callback, NULL);
806 /* ... and wait until all of them have reported back that they're no
807 longer running. */
808 iterate_over_lwps (stop_wait_callback, NULL);
810 /* If we're not running in "threaded" mode, we'll report the bare
811 process id. */
813 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP)
814 trap_pid = (threaded ? lp->pid : GET_LWP (lp->pid));
815 else
816 trap_pid = 0;
818 store_waitstatus (ourstatus, status);
819 return (threaded ? lp->pid : GET_LWP (lp->pid));
822 static int
823 kill_callback (struct lwp_info *lp, void *data)
825 ptrace (PTRACE_KILL, GET_LWP (lp->pid), 0, 0);
826 return 0;
829 static int
830 kill_wait_callback (struct lwp_info *lp, void *data)
832 pid_t pid;
834 /* We must make sure that there are no pending events (delayed
835 SIGSTOPs, pending SIGTRAPs, etc.) to make sure the current
836 program doesn't interfere with any following debugging session. */
838 /* For cloned processes we must check both with __WCLONE and
839 without, since the exit status of a cloned process isn't reported
840 with __WCLONE. */
841 if (is_cloned (lp->pid))
845 pid = waitpid (GET_LWP (lp->pid), NULL, __WCLONE);
847 while (pid == GET_LWP (lp->pid));
849 gdb_assert (pid == -1 && errno == ECHILD);
854 pid = waitpid (GET_LWP (lp->pid), NULL, 0);
856 while (pid == GET_LWP (lp->pid));
858 gdb_assert (pid == -1 && errno == ECHILD);
859 return 0;
862 static void
863 lin_lwp_kill (void)
865 /* Kill all LWP's ... */
866 iterate_over_lwps (kill_callback, NULL);
868 /* ... and wait until we've flushed all events. */
869 iterate_over_lwps (kill_wait_callback, NULL);
871 target_mourn_inferior ();
874 static void
875 lin_lwp_create_inferior (char *exec_file, char *allargs, char **env)
877 struct target_ops *target_beneath;
879 init_lwp_list ();
881 #if 0
882 target_beneath = find_target_beneath (&lin_lwp_ops);
883 #else
884 target_beneath = &child_ops;
885 #endif
886 target_beneath->to_create_inferior (exec_file, allargs, env);
889 static void
890 lin_lwp_mourn_inferior (void)
892 struct target_ops *target_beneath;
894 init_lwp_list ();
896 trap_pid = 0;
898 /* Restore the origional signal mask. */
899 sigprocmask (SIG_SETMASK, &normal_mask, NULL);
900 sigemptyset (&blocked_mask);
902 #if 0
903 target_beneath = find_target_beneath (&lin_lwp_ops);
904 #else
905 target_beneath = &child_ops;
906 #endif
907 target_beneath->to_mourn_inferior ();
910 static void
911 lin_lwp_fetch_registers (int regno)
913 struct cleanup *old_chain = save_inferior_pid ();
915 if (is_lwp (inferior_pid))
916 inferior_pid = GET_LWP (inferior_pid);
918 fetch_inferior_registers (regno);
920 do_cleanups (old_chain);
923 static void
924 lin_lwp_store_registers (int regno)
926 struct cleanup *old_chain = save_inferior_pid ();
928 if (is_lwp (inferior_pid))
929 inferior_pid = GET_LWP (inferior_pid);
931 store_inferior_registers (regno);
933 do_cleanups (old_chain);
936 static int
937 lin_lwp_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
938 struct target_ops *target)
940 struct cleanup *old_chain = save_inferior_pid ();
941 int xfer;
943 if (is_lwp (inferior_pid))
944 inferior_pid = GET_LWP (inferior_pid);
946 xfer = child_xfer_memory (memaddr, myaddr, len, write, target);
948 do_cleanups (old_chain);
949 return xfer;
952 static int
953 lin_lwp_thread_alive (int pid)
955 gdb_assert (is_lwp (pid));
957 errno = 0;
958 ptrace (PTRACE_PEEKUSER, GET_LWP (pid), 0, 0);
959 if (errno)
960 return 0;
962 return 1;
965 static char *
966 lin_lwp_pid_to_str (int pid)
968 static char buf[64];
970 if (is_lwp (pid))
972 snprintf (buf, sizeof (buf), "LWP %d", GET_LWP (pid));
973 return buf;
976 return normal_pid_to_str (pid);
979 static void
980 init_lin_lwp_ops (void)
982 #if 0
983 lin_lwp_ops.to_open = lin_lwp_open;
984 #endif
985 lin_lwp_ops.to_shortname = "lwp-layer";
986 lin_lwp_ops.to_longname = "lwp-layer";
987 lin_lwp_ops.to_doc = "Low level threads support (LWP layer)";
988 lin_lwp_ops.to_attach = lin_lwp_attach;
989 lin_lwp_ops.to_detach = lin_lwp_detach;
990 lin_lwp_ops.to_resume = lin_lwp_resume;
991 lin_lwp_ops.to_wait = lin_lwp_wait;
992 lin_lwp_ops.to_fetch_registers = lin_lwp_fetch_registers;
993 lin_lwp_ops.to_store_registers = lin_lwp_store_registers;
994 lin_lwp_ops.to_xfer_memory = lin_lwp_xfer_memory;
995 lin_lwp_ops.to_kill = lin_lwp_kill;
996 lin_lwp_ops.to_create_inferior = lin_lwp_create_inferior;
997 lin_lwp_ops.to_mourn_inferior = lin_lwp_mourn_inferior;
998 lin_lwp_ops.to_thread_alive = lin_lwp_thread_alive;
999 lin_lwp_ops.to_pid_to_str = lin_lwp_pid_to_str;
1000 lin_lwp_ops.to_stratum = thread_stratum;
1001 lin_lwp_ops.to_has_thread_control = tc_schedlock;
1002 lin_lwp_ops.to_magic = OPS_MAGIC;
1005 static void
1006 sigchld_handler (int signo)
1008 /* Do nothing. The only reason for this handler is that it allows
1009 us to use sigsuspend in lin_lwp_wait above to wait for the
1010 arrival of a SIGCHLD. */
1013 void
1014 _initialize_lin_lwp (void)
1016 struct sigaction action;
1018 extern void thread_db_init (struct target_ops *);
1020 init_lin_lwp_ops ();
1021 add_target (&lin_lwp_ops);
1022 thread_db_init (&lin_lwp_ops);
1024 /* Save the origional signal mask. */
1025 sigprocmask (SIG_SETMASK, NULL, &normal_mask);
1027 action.sa_handler = sigchld_handler;
1028 sigemptyset (&action.sa_mask);
1029 action.sa_flags = 0;
1030 sigaction (SIGCHLD, &action, NULL);
1032 /* Make sure we don't block SIGCHLD during a sigsuspend. */
1033 sigprocmask (SIG_SETMASK, NULL, &suspend_mask);
1034 sigdelset (&suspend_mask, SIGCHLD);
1036 sigemptyset (&blocked_mask);
1040 /* FIXME: kettenis/2000-08-26: The stuff on this page is specific to
1041 the LinuxThreads library and therefore doesn't really belong here. */
1043 /* Read variable NAME in the target and return its value if found.
1044 Otherwise return zero. It is assumed that the type of the variable
1045 is `int'. */
1047 static int
1048 get_signo (const char *name)
1050 struct minimal_symbol *ms;
1051 int signo;
1053 ms = lookup_minimal_symbol (name, NULL, NULL);
1054 if (ms == NULL)
1055 return 0;
1057 if (target_read_memory (SYMBOL_VALUE_ADDRESS (ms), (char *) &signo,
1058 sizeof (signo)) != 0)
1059 return 0;
1061 return signo;
1064 /* Return the set of signals used by the threads library in *SET. */
1066 void
1067 lin_thread_get_thread_signals (sigset_t *set)
1069 struct sigaction action;
1070 int restart, cancel;
1072 sigemptyset (set);
1074 restart = get_signo ("__pthread_sig_restart");
1075 if (restart == 0)
1076 return;
1078 cancel = get_signo ("__pthread_sig_cancel");
1079 if (cancel == 0)
1080 return;
1082 sigaddset (set, restart);
1083 sigaddset (set, cancel);
1085 /* The LinuxThreads library makes terminating threads send a special
1086 "cancel" signal instead of SIGCHLD. Make sure we catch those (to
1087 prevent them from terminating GDB itself, which is likely to be
1088 their default action) and treat them the same way as SIGCHLD. */
1090 action.sa_handler = sigchld_handler;
1091 sigemptyset (&action.sa_mask);
1092 action.sa_flags = 0;
1093 sigaction (cancel, &action, NULL);
1095 /* We block the "cancel" signal throughout this code ... */
1096 sigaddset (&blocked_mask, cancel);
1097 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
1099 /* ... except during a sigsuspend. */
1100 sigdelset (&suspend_mask, cancel);