2000-12-14 Kazu Hirata <kazu@hxi.com>
[deliverable/binutils-gdb.git] / gdb / lin-lwp.c
CommitLineData
fb0e1ba7
MK
1/* Multi-threaded debugging support for Linux (LWP layer).
2 Copyright 2000 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
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.
10
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.
15
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. */
20
21#include "defs.h"
22
23#include "gdb_assert.h"
24#include <errno.h>
25#include <signal.h>
26#include <sys/ptrace.h>
27#include "gdb_wait.h"
28
29#include "gdbthread.h"
30#include "inferior.h"
31#include "target.h"
32
33#define DEBUG 1
34
35#if DEBUG
36extern const char *strsignal (int sig);
37#endif
38
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.
46
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.
53
54 Note that there are some peculiarities in Linux that affect this
55 code:
56
57 - In general one should specify the __WCLONE flag to waitpid in
3f07c44b
MK
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.
fb0e1ba7
MK
63
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. */
71
72/* Structure describing a LWP. */
73struct lwp_info
74{
75 /* The process id of the LWP. This is a combination of the LWP id
76 and overall process id. */
77 int pid;
78
79 /* Non-zero if we sent this LWP a SIGSTOP (but the LWP didn't report
80 it back yet). */
81 int signalled;
82
83 /* Non-zero if this LWP is stopped. */
84 int stopped;
85
86 /* If non-zero, a pending wait status. */
87 int status;
88
89 /* Non-zero if we were stepping this LWP. */
90 int step;
91
92 /* Next LWP in list. */
93 struct lwp_info *next;
94};
95
96/* List of known LWPs. */
97static struct lwp_info *lwp_list;
98
99/* Number of LWPs in the list. */
100static int num_lwps;
101
102/* Non-zero if we're running in "threaded" mode. */
103static int threaded;
104\f
105
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
111
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)
117
118#define is_cloned(pid) (GET_LWP (pid) != GET_PID (pid))
119
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. */
122int trap_pid;
123\f
124
125/* This module's target-specific operations. */
126static struct target_ops lin_lwp_ops;
127
128/* The standard child operations. */
129extern struct target_ops child_ops;
130
3f07c44b
MK
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. */
141
142/* Origional signal mask. */
143static sigset_t normal_mask;
144
fb0e1ba7
MK
145/* Signal mask for use with sigsuspend in lin_lwp_wait, initialized in
146 _initialize_lin_lwp. */
147static sigset_t suspend_mask;
3f07c44b
MK
148
149/* Signals to block to make that sigsuspend work. */
150static sigset_t blocked_mask;
fb0e1ba7
MK
151\f
152
153/* Prototypes for local functions. */
154static void lin_lwp_mourn_inferior (void);
155\f
156
157/* Initialize the list of LWPs. */
158
159static void
160init_lwp_list (void)
161{
162 struct lwp_info *lp, *lpnext;
163
164 for (lp = lwp_list; lp; lp = lpnext)
165 {
166 lpnext = lp->next;
167 free (lp);
168 }
169
170 lwp_list = NULL;
171 num_lwps = 0;
172 threaded = 0;
173}
174
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. */
178
179static struct lwp_info *
180add_lwp (int pid)
181{
182 struct lwp_info *lp;
183
184 gdb_assert (is_lwp (pid));
185
186 lp = (struct lwp_info *) xmalloc (sizeof (struct lwp_info));
187
188 memset (lp, 0, sizeof (struct lwp_info));
189
190 lp->pid = pid;
191
192 lp->next = lwp_list;
193 lwp_list = lp;
194 if (++num_lwps > 1)
195 threaded = 1;
196
197 return lp;
198}
199
200/* Remove the LWP specified by PID from the list. */
201
202static void
203delete_lwp (int pid)
204{
205 struct lwp_info *lp, *lpprev;
206
207 lpprev = NULL;
208
209 for (lp = lwp_list; lp; lpprev = lp, lp = lp->next)
210 if (lp->pid == pid)
211 break;
212
213 if (!lp)
214 return;
215
216 /* We don't go back to "non-threaded" mode if the number of threads
217 becomes less than two. */
218 num_lwps--;
219
220 if (lpprev)
221 lpprev->next = lp->next;
222 else
223 lwp_list = lp->next;
224
225 free (lp);
226}
227
228/* Return a pointer to the structure describing the LWP corresponding
229 to PID. If no corresponding LWP could be found, return NULL. */
230
231static struct lwp_info *
232find_lwp_pid (int pid)
233{
234 struct lwp_info *lp;
235
236 if (is_lwp (pid))
237 pid = GET_LWP (pid);
238
239 for (lp = lwp_list; lp; lp = lp->next)
240 if (pid == GET_LWP (lp->pid))
241 return lp;
242
243 return NULL;
244}
245
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. */
250
251struct lwp_info *
252iterate_over_lwps (int (*callback) (struct lwp_info *, void *), void *data)
253{
254 struct lwp_info *lp;
255
256 for (lp = lwp_list; lp; lp = lp->next)
257 if ((*callback) (lp, data))
258 return lp;
259
260 return NULL;
261}
262\f
263
264/* Helper functions. */
265
266static void
267restore_inferior_pid (void *arg)
268{
269 int *saved_pid_ptr = arg;
270 inferior_pid = *saved_pid_ptr;
271 free (arg);
272}
273
274static struct cleanup *
275save_inferior_pid (void)
276{
277 int *saved_pid_ptr;
278
279 saved_pid_ptr = xmalloc (sizeof (int));
280 *saved_pid_ptr = inferior_pid;
281 return make_cleanup (restore_inferior_pid, saved_pid_ptr);
282}
283\f
284
285/* Implementation of the PREPARE_TO_PROCEED hook for the Linux LWP layer. */
286
287int
288lin_lwp_prepare_to_proceed (void)
289{
290 if (trap_pid && inferior_pid != trap_pid)
291 {
292 /* Switched over from TRAP_PID. */
293 CORE_ADDR stop_pc = read_pc ();
294 CORE_ADDR trap_pc;
295
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))
300 {
301 /* User hasn't deleted the breakpoint. Return non-zero, and
302 switch back to TRAP_PID. */
303 inferior_pid = trap_pid;
304
305 /* FIXME: Is this stuff really necessary? */
306 flush_cached_frames ();
307 registers_changed ();
308
309 return 1;
310 }
311 }
312
313 return 0;
314}
315\f
316
317#if 0
318static void
319lin_lwp_open (char *args, int from_tty)
320{
321 push_target (&lin_lwp_ops);
322}
323#endif
324
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. */
328
329void
330lin_lwp_attach_lwp (int pid, int verbose)
331{
332 struct lwp_info *lp;
333
334 gdb_assert (is_lwp (pid));
335
336 if (verbose)
337 printf_filtered ("[New %s]\n", target_pid_to_str (pid));
338
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));
341
342 lp = add_lwp (pid);
343 lp->signalled = 1;
344}
345
346static void
347lin_lwp_attach (char *args, int from_tty)
348{
349 /* FIXME: We should probably accept a list of process id's, and
350 attach all of them. */
351 error("Not implemented yet");
352}
353
354static void
355lin_lwp_detach (char *args, int from_tty)
356{
357 /* FIXME: Provide implementation when we implement lin_lwp_attach. */
358 error ("Not implemented yet");
359}
360\f
361
362struct private_thread_info
363{
364 int lwpid;
365};
366
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'. */
369
370static int
371find_lwp_callback (struct thread_info *tp, void *data)
372{
373 struct lwp_info *lp = data;
374
375 if (tp->private->lwpid == GET_LWP (lp->pid))
376 return 1;
377
378 return 0;
379}
380
381/* Resume LP. */
382
383static int
384resume_callback (struct lwp_info *lp, void *data)
385{
386 if (lp->stopped && lp->status == 0)
387 {
388 struct thread_info *tp;
389
390#if 1
391 /* FIXME: kettenis/2000-08-26: This should really be handled
392 properly by core GDB. */
393
394 tp = find_thread_pid (lp->pid);
395 if (tp == NULL)
396 tp = iterate_over_threads (find_lwp_callback, lp);
397 gdb_assert (tp);
398
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)
405 {
406 gdb_assert (lp->step);
407 tp->step_range_start = tp->step_range_end = 0;
408 }
409#endif
410
411 child_resume (GET_LWP (lp->pid), 0, TARGET_SIGNAL_0);
412 lp->stopped = 0;
413 lp->step = 0;
414 }
415
416 return 0;
417}
418
419static void
420lin_lwp_resume (int pid, int step, enum target_signal signo)
421{
422 struct lwp_info *lp;
423 int resume_all;
424
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;
430
431 /* If PID is -1, it's the current inferior that should be
432 handled special. */
433 if (pid == -1)
434 pid = inferior_pid;
435
436 lp = find_lwp_pid (pid);
437 if (lp)
438 {
439 pid = GET_LWP (lp->pid);
440
441 /* Mark LWP as not stopped to prevent it from being continued by
442 resume_callback. */
443 lp->stopped = 0;
444
445 /* Remember if we're stepping. */
446 lp->step = step;
447
448 /* If we have a pending wait status for this thread, there is no
449 point in resuming the process. */
450 if (lp->status)
451 {
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;
456 }
457 }
458
459 if (resume_all)
460 iterate_over_lwps (resume_callback, NULL);
461
462 child_resume (pid, step, signo);
463}
464\f
465
466/* Send a SIGSTOP to LP. */
467
468static int
469stop_callback (struct lwp_info *lp, void *data)
470{
471 if (! lp->stopped && ! lp->signalled)
472 {
473 int ret;
474
475 ret = kill (GET_LWP (lp->pid), SIGSTOP);
476 gdb_assert (ret == 0);
477
478 lp->signalled = 1;
479 gdb_assert (lp->status == 0);
480 }
481
482 return 0;
483}
484
485/* Wait until LP is stopped. */
486
487static int
488stop_wait_callback (struct lwp_info *lp, void *data)
489{
490 if (! lp->stopped && lp->signalled)
491 {
492 pid_t pid;
493 int status;
494
495 gdb_assert (lp->status == 0);
496
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
3f07c44b 501 exit event in lin_lwp_wait. */
fb0e1ba7
MK
502 return 0;
503
504 gdb_assert (pid == GET_LWP (lp->pid));
505
506 if (WIFEXITED (status) || WIFSIGNALED (status))
507 {
508 gdb_assert (num_lwps > 1);
fb0e1ba7 509
e6328671
MK
510 if (in_thread_list (lp->pid))
511 {
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));
518 }
519#if DEBUG
520 printf ("%s exited.\n", target_pid_to_str (lp->pid));
521#endif
fb0e1ba7
MK
522 delete_lwp (lp->pid);
523 return 0;
524 }
525
526 gdb_assert (WIFSTOPPED (status));
527 lp->stopped = 1;
528
529 if (WSTOPSIG (status) != SIGSTOP)
530 {
531 if (WSTOPSIG (status) == SIGTRAP
532 && breakpoint_inserted_here_p (read_pc_pid (pid)
533 - DECR_PC_AFTER_BREAK))
534 {
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.
543
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);
555 }
556 else
557 {
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;
566 }
567 }
568 else
569 {
570 /* We caught the SIGSTOP that we intended to catch, so
571 there's no SIGSTOP pending. */
572 lp->signalled = 0;
573 }
574 }
575
576 return 0;
577}
578
579/* Return non-zero if LP has a wait status pending. */
580
581static int
582status_callback (struct lwp_info *lp, void *data)
583{
584 return (lp->status != 0);
585}
586
587/* Return non-zero if LP isn't stopped. */
588
589static int
590running_callback (struct lwp_info *lp, void *data)
591{
592 return (lp->stopped == 0);
593}
594
595static int
596lin_lwp_wait (int pid, struct target_waitstatus *ourstatus)
597{
598 struct lwp_info *lp = NULL;
599 int options = 0;
600 int status = 0;
601
3f07c44b
MK
602 /* Make sure SIGCHLD is blocked. */
603 if (! sigismember (&blocked_mask, SIGCHLD))
604 {
605 sigaddset (&blocked_mask, SIGCHLD);
606 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
607 }
608
fb0e1ba7
MK
609 retry:
610
611 /* First check if there is a LWP with a wait status pending. */
612 if (pid == -1)
613 {
614 /* Any LWP will do. */
615 lp = iterate_over_lwps (status_callback, NULL);
616 if (lp)
617 {
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;
624 }
625
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;
630 }
631 else if (is_lwp (pid))
632 {
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
646
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);
652 }
653
654 if (status && lp->signalled)
655 {
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. */
664
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;
669
670 /* This should catch the pending SIGSTOP. */
671 stop_wait_callback (lp, NULL);
672 }
673
674 set_sigint_trap (); /* Causes SIGINT to be passed on to the
675 attached process. */
676 set_sigio_trap ();
677
678 while (status == 0)
679 {
680 pid_t lwpid;
681
682 lwpid = waitpid (pid, &status, options);
683 if (lwpid > 0)
684 {
685 gdb_assert (pid == -1 || lwpid == pid);
686
687 lp = find_lwp_pid (lwpid);
688 if (! lp)
689 {
690 lp = add_lwp (BUILD_LWP (lwpid, inferior_pid));
691 if (threaded)
692 {
3f07c44b
MK
693 gdb_assert (WIFSTOPPED (status)
694 && WSTOPSIG (status) == SIGSTOP);
fb0e1ba7
MK
695 lp->signalled = 1;
696
697 if (! in_thread_list (inferior_pid))
698 {
699 inferior_pid = BUILD_LWP (inferior_pid, inferior_pid);
700 add_thread (inferior_pid);
701 }
702
703 add_thread (lp->pid);
704 printf_unfiltered ("[New %s]\n",
705 target_pid_to_str (lp->pid));
706 }
707 }
708
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)
713 {
714 if (in_thread_list (lp->pid))
715 {
e6328671 716 /* Core GDB cannot deal with us deleting the current
fb0e1ba7
MK
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));
722 }
723#if DEBUG
724 printf ("%s exited.\n", target_pid_to_str (lp->pid));
725#endif
726 delete_lwp (lp->pid);
727
728 /* Make sure there is at least one thread running. */
729 gdb_assert (iterate_over_lwps (running_callback, NULL));
730
731 /* Discard the event. */
732 status = 0;
733 continue;
734 }
735
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)
740 {
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;
747
748 child_resume (GET_LWP (lp->pid), lp->step, TARGET_SIGNAL_0);
749 lp->stopped = 0;
750
751 /* Discard the event. */
752 status = 0;
753 continue;
754 }
755
756 break;
757 }
758
759 if (pid == -1)
760 {
761 /* Alternate between checking cloned and uncloned processes. */
762 options ^= __WCLONE;
763
764 /* And suspend every time we have checked both. */
765 if (options & __WCLONE)
766 sigsuspend (&suspend_mask);
767 }
768
769 /* We shouldn't end up here unless we want to try again. */
770 gdb_assert (status == 0);
771 }
772
773 clear_sigio_trap ();
774 clear_sigint_trap ();
775
776 gdb_assert (lp);
777
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. */
784
785 if (WIFSTOPPED (status))
786 {
787 int signo = target_signal_from_host (WSTOPSIG (status));
788
789 if (signal_stop_state (signo) == 0
790 && signal_print_state (signo) == 0
791 && signal_pass_state (signo) == 1)
792 {
793 child_resume (GET_LWP (lp->pid), lp->step, signo);
794 lp->stopped = 0;
795 status = 0;
796 goto retry;
797 }
798 }
799
800 /* This LWP is stopped now. */
801 lp->stopped = 1;
802
803 /* Now stop all other LWP's ... */
804 iterate_over_lwps (stop_callback, NULL);
805
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);
809
810 /* If we're not running in "threaded" mode, we'll report the bare
811 process id. */
812
813 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP)
814 trap_pid = (threaded ? lp->pid : GET_LWP (lp->pid));
815 else
816 trap_pid = 0;
817
818 store_waitstatus (ourstatus, status);
819 return (threaded ? lp->pid : GET_LWP (lp->pid));
820}
821
822static int
823kill_callback (struct lwp_info *lp, void *data)
824{
825 ptrace (PTRACE_KILL, GET_LWP (lp->pid), 0, 0);
826 return 0;
827}
828
829static int
830kill_wait_callback (struct lwp_info *lp, void *data)
831{
832 pid_t pid;
833
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. */
837
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))
842 {
843 do
844 {
845 pid = waitpid (GET_LWP (lp->pid), NULL, __WCLONE);
846 }
847 while (pid == GET_LWP (lp->pid));
848
849 gdb_assert (pid == -1 && errno == ECHILD);
850 }
851
852 do
853 {
854 pid = waitpid (GET_LWP (lp->pid), NULL, 0);
855 }
856 while (pid == GET_LWP (lp->pid));
857
858 gdb_assert (pid == -1 && errno == ECHILD);
859 return 0;
860}
861
862static void
863lin_lwp_kill (void)
864{
865 /* Kill all LWP's ... */
866 iterate_over_lwps (kill_callback, NULL);
867
868 /* ... and wait until we've flushed all events. */
869 iterate_over_lwps (kill_wait_callback, NULL);
870
871 target_mourn_inferior ();
872}
873
874static void
875lin_lwp_create_inferior (char *exec_file, char *allargs, char **env)
876{
877 struct target_ops *target_beneath;
878
879 init_lwp_list ();
880
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);
887}
888
889static void
890lin_lwp_mourn_inferior (void)
891{
892 struct target_ops *target_beneath;
893
894 init_lwp_list ();
895
896 trap_pid = 0;
897
3f07c44b
MK
898 /* Restore the origional signal mask. */
899 sigprocmask (SIG_SETMASK, &normal_mask, NULL);
900 sigemptyset (&blocked_mask);
901
fb0e1ba7
MK
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 ();
908}
909
910static void
911lin_lwp_fetch_registers (int regno)
912{
913 struct cleanup *old_chain = save_inferior_pid ();
914
915 if (is_lwp (inferior_pid))
916 inferior_pid = GET_LWP (inferior_pid);
917
918 fetch_inferior_registers (regno);
919
920 do_cleanups (old_chain);
921}
922
923static void
924lin_lwp_store_registers (int regno)
925{
926 struct cleanup *old_chain = save_inferior_pid ();
927
928 if (is_lwp (inferior_pid))
929 inferior_pid = GET_LWP (inferior_pid);
930
931 store_inferior_registers (regno);
932
933 do_cleanups (old_chain);
934}
935
936static int
937lin_lwp_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
938 struct target_ops *target)
939{
940 struct cleanup *old_chain = save_inferior_pid ();
941 int xfer;
942
943 if (is_lwp (inferior_pid))
944 inferior_pid = GET_LWP (inferior_pid);
945
946 xfer = child_xfer_memory (memaddr, myaddr, len, write, target);
947
948 do_cleanups (old_chain);
949 return xfer;
950}
951
952static int
953lin_lwp_thread_alive (int pid)
954{
955 gdb_assert (is_lwp (pid));
956
957 errno = 0;
958 ptrace (PTRACE_PEEKUSER, GET_LWP (pid), 0, 0);
959 if (errno)
960 return 0;
961
962 return 1;
963}
964
965static char *
966lin_lwp_pid_to_str (int pid)
967{
968 static char buf[64];
969
970 if (is_lwp (pid))
971 {
972 snprintf (buf, sizeof (buf), "LWP %d", GET_LWP (pid));
973 return buf;
974 }
975
976 return normal_pid_to_str (pid);
977}
978
979static void
980init_lin_lwp_ops (void)
981{
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;
1003}
1004
1005static void
1006sigchld_handler (int signo)
1007{
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. */
1011}
1012
1013void
1014_initialize_lin_lwp (void)
1015{
1016 struct sigaction action;
fb0e1ba7
MK
1017
1018 extern void thread_db_init (struct target_ops *);
1019
1020 init_lin_lwp_ops ();
1021 add_target (&lin_lwp_ops);
1022 thread_db_init (&lin_lwp_ops);
1023
3f07c44b
MK
1024 /* Save the origional signal mask. */
1025 sigprocmask (SIG_SETMASK, NULL, &normal_mask);
1026
fb0e1ba7
MK
1027 action.sa_handler = sigchld_handler;
1028 sigemptyset (&action.sa_mask);
1029 action.sa_flags = 0;
1030 sigaction (SIGCHLD, &action, NULL);
1031
3f07c44b
MK
1032 /* Make sure we don't block SIGCHLD during a sigsuspend. */
1033 sigprocmask (SIG_SETMASK, NULL, &suspend_mask);
fb0e1ba7 1034 sigdelset (&suspend_mask, SIGCHLD);
3f07c44b
MK
1035
1036 sigemptyset (&blocked_mask);
fb0e1ba7
MK
1037}
1038\f
1039
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. */
1042
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'. */
1046
1047static int
1048get_signo (const char *name)
1049{
1050 struct minimal_symbol *ms;
1051 int signo;
1052
1053 ms = lookup_minimal_symbol (name, NULL, NULL);
1054 if (ms == NULL)
1055 return 0;
1056
1057 if (target_read_memory (SYMBOL_VALUE_ADDRESS (ms), (char *) &signo,
1058 sizeof (signo)) != 0)
1059 return 0;
1060
1061 return signo;
1062}
1063
1064/* Return the set of signals used by the threads library in *SET. */
1065
1066void
1067lin_thread_get_thread_signals (sigset_t *set)
1068{
3f07c44b
MK
1069 struct sigaction action;
1070 int restart, cancel;
fb0e1ba7
MK
1071
1072 sigemptyset (set);
1073
1074 restart = get_signo ("__pthread_sig_restart");
1075 if (restart == 0)
1076 return;
1077
1078 cancel = get_signo ("__pthread_sig_cancel");
1079 if (cancel == 0)
1080 return;
1081
1082 sigaddset (set, restart);
1083 sigaddset (set, cancel);
3f07c44b
MK
1084
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. */
1089
1090 action.sa_handler = sigchld_handler;
1091 sigemptyset (&action.sa_mask);
1092 action.sa_flags = 0;
1093 sigaction (cancel, &action, NULL);
1094
1095 /* We block the "cancel" signal throughout this code ... */
1096 sigaddset (&blocked_mask, cancel);
1097 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
1098
1099 /* ... except during a sigsuspend. */
1100 sigdelset (&suspend_mask, cancel);
fb0e1ba7 1101}
This page took 0.073367 seconds and 4 git commands to generate.