* gdbarch.sh, gdbarch.c: Revert change of 2001-06-01; all
[deliverable/binutils-gdb.git] / gdb / lin-lwp.c
1 /* Multi-threaded debugging support for Linux (LWP layer).
2 Copyright 2000, 2001 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 #include "regcache.h"
33 #include "gdbcmd.h"
34
35 static int debug_lin_lwp;
36 extern const char *strsignal (int sig);
37
38 /* On Linux there are no real LWP's. The closest thing to LWP's are
39 processes sharing the same VM space. A multi-threaded process is
40 basically a group of such processes. However, such a grouping is
41 almost entirely a user-space issue; the kernel doesn't enforce such
42 a grouping at all (this might change in the future). In general,
43 we'll rely on the threads library (i.e. the LinuxThreads library)
44 to provide such a grouping.
45
46 It is perfectly well possible to write a multi-threaded application
47 without the assistance of a threads library, by using the clone
48 system call directly. This module should be able to give some
49 rudimentary support for debugging such applications if developers
50 specify the CLONE_PTRACE flag in the clone system call, and are
51 using Linux 2.4 or above.
52
53 Note that there are some peculiarities in Linux that affect this
54 code:
55
56 - In general one should specify the __WCLONE flag to waitpid in
57 order to make it report events for any of the cloned processes
58 (and leave it out for the initial process). However, if a cloned
59 process has exited the exit status is only reported if the
60 __WCLONE flag is absent. Linux 2.4 has a __WALL flag, but we
61 cannot use it since GDB must work on older systems too.
62
63 - When a traced, cloned process exits and is waited for by the
64 debugger, the kernel reassigns it to the original parent and
65 keeps it around as a "zombie". Somehow, the LinuxThreads library
66 doesn't notice this, which leads to the "zombie problem": When
67 debugged a multi-threaded process that spawns a lot of threads
68 will run out of processes, even if the threads exit, because the
69 "zombies" stay around. */
70
71 /* Structure describing a LWP. */
72 struct lwp_info
73 {
74 /* The process id of the LWP. This is a combination of the LWP id
75 and overall process id. */
76 ptid_t ptid;
77
78 /* Non-zero if we sent this LWP a SIGSTOP (but the LWP didn't report
79 it back yet). */
80 int signalled;
81
82 /* Non-zero if this LWP is stopped. */
83 int stopped;
84
85 /* If non-zero, a pending wait status. */
86 int status;
87
88 /* Non-zero if we were stepping this LWP. */
89 int step;
90
91 /* Next LWP in list. */
92 struct lwp_info *next;
93 };
94
95 /* List of known LWPs. */
96 static struct lwp_info *lwp_list;
97
98 /* Number of LWPs in the list. */
99 static int num_lwps;
100
101 /* Non-zero if we're running in "threaded" mode. */
102 static int threaded;
103 \f
104
105 #define GET_LWP(ptid) ptid_get_lwp (ptid)
106 #define GET_PID(ptid) ptid_get_pid (ptid)
107 #define is_lwp(ptid) (GET_LWP (ptid) != 0)
108 #define BUILD_LWP(lwp, pid) ptid_build (pid, lwp, 0)
109
110 #define is_cloned(pid) (GET_LWP (pid) != GET_PID (pid))
111
112 /* If the last reported event was a SIGTRAP, this variable is set to
113 the process id of the LWP/thread that got it. */
114 ptid_t trap_ptid;
115 \f
116
117 /* This module's target-specific operations. */
118 static struct target_ops lin_lwp_ops;
119
120 /* The standard child operations. */
121 extern struct target_ops child_ops;
122
123 /* Since we cannot wait (in lin_lwp_wait) for the initial process and
124 any cloned processes with a single call to waitpid, we have to use
125 the WNOHANG flag and call waitpid in a loop. To optimize
126 things a bit we use `sigsuspend' to wake us up when a process has
127 something to report (it will send us a SIGCHLD if it has). To make
128 this work we have to juggle with the signal mask. We save the
129 original signal mask such that we can restore it before creating a
130 new process in order to avoid blocking certain signals in the
131 inferior. We then block SIGCHLD during the waitpid/sigsuspend
132 loop. */
133
134 /* Original signal mask. */
135 static sigset_t normal_mask;
136
137 /* Signal mask for use with sigsuspend in lin_lwp_wait, initialized in
138 _initialize_lin_lwp. */
139 static sigset_t suspend_mask;
140
141 /* Signals to block to make that sigsuspend work. */
142 static sigset_t blocked_mask;
143 \f
144
145 /* Prototypes for local functions. */
146 static int stop_wait_callback (struct lwp_info *lp, void *data);
147 \f
148
149 /* Initialize the list of LWPs. Note that this module, contrary to
150 what GDB's generic threads layer does for its thread list,
151 re-initializes the LWP lists whenever we mourn or detach (which
152 doesn't involve mourning) the inferior. */
153
154 static void
155 init_lwp_list (void)
156 {
157 struct lwp_info *lp, *lpnext;
158
159 for (lp = lwp_list; lp; lp = lpnext)
160 {
161 lpnext = lp->next;
162 xfree (lp);
163 }
164
165 lwp_list = NULL;
166 num_lwps = 0;
167 threaded = 0;
168 }
169
170 /* Add the LWP specified by PID to the list. If this causes the
171 number of LWPs to become larger than one, go into "threaded" mode.
172 Return a pointer to the structure describing the new LWP. */
173
174 static struct lwp_info *
175 add_lwp (ptid_t ptid)
176 {
177 struct lwp_info *lp;
178
179 gdb_assert (is_lwp (ptid));
180
181 lp = (struct lwp_info *) xmalloc (sizeof (struct lwp_info));
182
183 memset (lp, 0, sizeof (struct lwp_info));
184
185 lp->ptid = ptid;
186
187 lp->next = lwp_list;
188 lwp_list = lp;
189 if (++num_lwps > 1)
190 threaded = 1;
191
192 return lp;
193 }
194
195 /* Remove the LWP specified by PID from the list. */
196
197 static void
198 delete_lwp (ptid_t ptid)
199 {
200 struct lwp_info *lp, *lpprev;
201
202 lpprev = NULL;
203
204 for (lp = lwp_list; lp; lpprev = lp, lp = lp->next)
205 if (ptid_equal (lp->ptid, ptid))
206 break;
207
208 if (!lp)
209 return;
210
211 /* We don't go back to "non-threaded" mode if the number of threads
212 becomes less than two. */
213 num_lwps--;
214
215 if (lpprev)
216 lpprev->next = lp->next;
217 else
218 lwp_list = lp->next;
219
220 xfree (lp);
221 }
222
223 /* Return a pointer to the structure describing the LWP corresponding
224 to PID. If no corresponding LWP could be found, return NULL. */
225
226 static struct lwp_info *
227 find_lwp_pid (ptid_t ptid)
228 {
229 struct lwp_info *lp;
230 int lwp;
231
232 if (is_lwp (ptid))
233 lwp = GET_LWP (ptid);
234 else
235 lwp = GET_PID (ptid);
236
237 for (lp = lwp_list; lp; lp = lp->next)
238 if (lwp == GET_LWP (lp->ptid))
239 return lp;
240
241 return NULL;
242 }
243
244 /* Call CALLBACK with its second argument set to DATA for every LWP in
245 the list. If CALLBACK returns 1 for a particular LWP, return a
246 pointer to the structure describing that LWP immediately.
247 Otherwise return NULL. */
248
249 struct lwp_info *
250 iterate_over_lwps (int (*callback) (struct lwp_info *, void *), void *data)
251 {
252 struct lwp_info *lp;
253
254 for (lp = lwp_list; lp; lp = lp->next)
255 if ((*callback) (lp, data))
256 return lp;
257
258 return NULL;
259 }
260 \f
261
262 /* Implementation of the PREPARE_TO_PROCEED hook for the Linux LWP
263 layer.
264
265 Note that this implementation is potentially redundant now that
266 default_prepare_to_proceed() has been added. */
267
268 int
269 lin_lwp_prepare_to_proceed (void)
270 {
271 if (! ptid_equal (trap_ptid, null_ptid)
272 && ! ptid_equal (inferior_ptid, trap_ptid))
273 {
274 /* Switched over from TRAP_PID. */
275 CORE_ADDR stop_pc = read_pc ();
276 CORE_ADDR trap_pc;
277
278 /* Avoid switching where it wouldn't do any good, i.e. if both
279 threads are at the same breakpoint. */
280 trap_pc = read_pc_pid (trap_ptid);
281 if (trap_pc != stop_pc && breakpoint_here_p (trap_pc))
282 {
283 /* User hasn't deleted the breakpoint. Return non-zero, and
284 switch back to TRAP_PID. */
285 inferior_ptid = trap_ptid;
286
287 /* FIXME: Is this stuff really necessary? */
288 flush_cached_frames ();
289 registers_changed ();
290
291 return 1;
292 }
293 }
294
295 return 0;
296 }
297 \f
298
299 #if 0
300 static void
301 lin_lwp_open (char *args, int from_tty)
302 {
303 push_target (&lin_lwp_ops);
304 }
305 #endif
306
307 /* Attach to the LWP specified by PID. If VERBOSE is non-zero, print
308 a message telling the user that a new LWP has been added to the
309 process. */
310
311 void
312 lin_lwp_attach_lwp (ptid_t ptid, int verbose)
313 {
314 struct lwp_info *lp;
315
316 gdb_assert (is_lwp (ptid));
317
318 if (verbose)
319 printf_filtered ("[New %s]\n", target_pid_to_str (ptid));
320
321 /* We assume that we're already tracing the initial process. */
322 if (is_cloned (ptid) && ptrace (PTRACE_ATTACH, GET_LWP (ptid), 0, 0) < 0)
323 error ("Can't attach %s: %s", target_pid_to_str (ptid), strerror (errno));
324
325 lp = find_lwp_pid (ptid);
326 if (lp == NULL)
327 lp = add_lwp (ptid);
328
329 if (is_cloned (ptid))
330 {
331 lp->signalled = 1;
332 stop_wait_callback (lp, NULL);
333 }
334 }
335
336 static void
337 lin_lwp_attach (char *args, int from_tty)
338 {
339 struct lwp_info *lp;
340
341 /* FIXME: We should probably accept a list of process id's, and
342 attach all of them. */
343 child_ops.to_attach (args, from_tty);
344
345 /* Add the initial process as the first LWP to the list. */
346 lp = add_lwp (BUILD_LWP (PIDGET (inferior_ptid), PIDGET (inferior_ptid)));
347
348 /* Make sure the initial process is stopped. The user-level threads
349 layer might want to poke around in the inferior, and that won't
350 work if things haven't stabilized yet. */
351 lp->signalled = 1;
352 stop_wait_callback (lp, NULL);
353 gdb_assert (lp->status == 0);
354
355 /* Fake the SIGSTOP that core GDB expects. */
356 lp->status = W_STOPCODE (SIGSTOP);
357 }
358
359 static int
360 detach_callback (struct lwp_info *lp, void *data)
361 {
362 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
363
364 if (debug_lin_lwp && lp->status)
365 fprintf_unfiltered (gdb_stdlog, "Pending %s for LWP %ld on detach.\n",
366 strsignal (WSTOPSIG (lp->status)), GET_LWP (lp->ptid));
367
368 while (lp->signalled && lp->stopped)
369 {
370 if (ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0,
371 WSTOPSIG (lp->status)) < 0)
372 error ("Can't continue %s: %s", target_pid_to_str (lp->ptid),
373 strerror (errno));
374
375 lp->stopped = 0;
376 lp->signalled = 0;
377 lp->status = 0;
378 stop_wait_callback (lp, NULL);
379
380 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
381 }
382
383 if (is_cloned (lp->ptid))
384 {
385 if (ptrace (PTRACE_DETACH, GET_LWP (lp->ptid), 0,
386 WSTOPSIG (lp->status)) < 0)
387 error ("Can't detach %s: %s", target_pid_to_str (lp->ptid),
388 strerror (errno));
389
390 delete_lwp (lp->ptid);
391 }
392
393 return 0;
394 }
395
396 static void
397 lin_lwp_detach (char *args, int from_tty)
398 {
399 iterate_over_lwps (detach_callback, NULL);
400
401 /* Only the initial (uncloned) process should be left right now. */
402 gdb_assert (num_lwps == 1);
403
404 trap_ptid = null_ptid;
405
406 /* Destroy LWP info; it's no longer valid. */
407 init_lwp_list ();
408
409 /* Restore the original signal mask. */
410 sigprocmask (SIG_SETMASK, &normal_mask, NULL);
411 sigemptyset (&blocked_mask);
412
413 inferior_ptid = pid_to_ptid (GET_PID (inferior_ptid));
414 child_ops.to_detach (args, from_tty);
415 }
416 \f
417
418 struct private_thread_info
419 {
420 int lwpid;
421 };
422
423 /* Return non-zero if TP corresponds to the LWP specified by DATA
424 (which is assumed to be a pointer to a `struct lwp_info'. */
425
426 static int
427 find_lwp_callback (struct thread_info *tp, void *data)
428 {
429 struct lwp_info *lp = data;
430
431 if (tp->private->lwpid == GET_LWP (lp->ptid))
432 return 1;
433
434 return 0;
435 }
436
437 /* Resume LP. */
438
439 static int
440 resume_callback (struct lwp_info *lp, void *data)
441 {
442 if (lp->stopped && lp->status == 0)
443 {
444 struct thread_info *tp;
445
446 #if 1
447 /* FIXME: kettenis/2000-08-26: This should really be handled
448 properly by core GDB. */
449
450 tp = find_thread_pid (lp->ptid);
451 if (tp == NULL)
452 tp = iterate_over_threads (find_lwp_callback, lp);
453 gdb_assert (tp);
454
455 /* If we were previously stepping the thread, and now continue
456 the thread we must invalidate the stepping range. However,
457 if there is a step_resume breakpoint for this thread, we must
458 preserve the stepping range to make it possible to continue
459 stepping once we hit it. */
460 if (tp->step_range_end && tp->step_resume_breakpoint == NULL)
461 {
462 gdb_assert (lp->step);
463 tp->step_range_start = tp->step_range_end = 0;
464 }
465 #endif
466
467 child_resume (pid_to_ptid (GET_LWP (lp->ptid)), 0, TARGET_SIGNAL_0);
468 lp->stopped = 0;
469 lp->step = 0;
470 }
471
472 return 0;
473 }
474
475 static void
476 lin_lwp_resume (ptid_t ptid, int step, enum target_signal signo)
477 {
478 struct lwp_info *lp;
479 int resume_all;
480
481 /* Apparently the interpretation of PID is dependent on STEP: If
482 STEP is non-zero, a specific PID means `step only this process
483 id'. But if STEP is zero, then PID means `continue *all*
484 processes, but give the signal only to this one'. */
485 resume_all = (PIDGET (ptid) == -1) || !step;
486
487 /* If PID is -1, it's the current inferior that should be
488 handled specially. */
489 if (PIDGET (ptid) == -1)
490 ptid = inferior_ptid;
491
492 lp = find_lwp_pid (ptid);
493 if (lp)
494 {
495 ptid = pid_to_ptid (GET_LWP (lp->ptid));
496
497 /* Remember if we're stepping. */
498 lp->step = step;
499
500 /* If we have a pending wait status for this thread, there is no
501 point in resuming the process. */
502 if (lp->status)
503 {
504 /* FIXME: What should we do if we are supposed to continue
505 this thread with a signal? */
506 gdb_assert (signo == TARGET_SIGNAL_0);
507 return;
508 }
509
510 /* Mark LWP as not stopped to prevent it from being continued by
511 resume_callback. */
512 lp->stopped = 0;
513 }
514
515 if (resume_all)
516 iterate_over_lwps (resume_callback, NULL);
517
518 child_resume (ptid, step, signo);
519 }
520 \f
521
522 /* Send a SIGSTOP to LP. */
523
524 static int
525 stop_callback (struct lwp_info *lp, void *data)
526 {
527 if (! lp->stopped && ! lp->signalled)
528 {
529 int ret;
530
531 ret = kill (GET_LWP (lp->ptid), SIGSTOP);
532 gdb_assert (ret == 0);
533
534 lp->signalled = 1;
535 gdb_assert (lp->status == 0);
536 }
537
538 return 0;
539 }
540
541 /* Wait until LP is stopped. */
542
543 static int
544 stop_wait_callback (struct lwp_info *lp, void *data)
545 {
546 if (! lp->stopped && lp->signalled)
547 {
548 pid_t pid;
549 int status;
550
551 get_another_event:
552 gdb_assert (lp->status == 0);
553
554 pid = waitpid (GET_LWP (lp->ptid), &status,
555 is_cloned (lp->ptid) ? __WCLONE : 0);
556 if (pid == -1 && errno == ECHILD)
557 /* OK, the proccess has disappeared. We'll catch the actual
558 exit event in lin_lwp_wait. */
559 return 0;
560
561 gdb_assert (pid == GET_LWP (lp->ptid));
562
563 if (WIFEXITED (status) || WIFSIGNALED (status))
564 {
565 gdb_assert (num_lwps > 1);
566
567 if (in_thread_list (lp->ptid))
568 {
569 /* Core GDB cannot deal with us deleting the current
570 thread. */
571 if (!ptid_equal (lp->ptid, inferior_ptid))
572 delete_thread (lp->ptid);
573 printf_unfiltered ("[%s exited]\n",
574 target_pid_to_str (lp->ptid));
575 }
576 if (debug_lin_lwp)
577 fprintf_unfiltered (gdb_stdlog,
578 "%s exited.\n", target_pid_to_str (lp->ptid));
579
580 delete_lwp (lp->ptid);
581 return 0;
582 }
583
584 gdb_assert (WIFSTOPPED (status));
585 lp->stopped = 1;
586
587 if (WSTOPSIG (status) != SIGSTOP)
588 {
589 if (WSTOPSIG (status) == SIGTRAP
590 && breakpoint_inserted_here_p (read_pc_pid (pid_to_ptid (pid))
591 - DECR_PC_AFTER_BREAK))
592 {
593 /* If a LWP other than the LWP that we're reporting an
594 event for has hit a GDB breakpoint (as opposed to
595 some random trap signal), then just arrange for it to
596 hit it again later. We don't keep the SIGTRAP status
597 and don't forward the SIGTRAP signal to the LWP. We
598 will handle the current event, eventually we will
599 resume all LWPs, and this one will get its breakpoint
600 trap again.
601
602 If we do not do this, then we run the risk that the
603 user will delete or disable the breakpoint, but the
604 thread will have already tripped on it. */
605
606 if (debug_lin_lwp)
607 fprintf_unfiltered (gdb_stdlog,
608 "Tripped breakpoint at %lx in LWP %d"
609 " while waiting for SIGSTOP.\n",
610 (long) read_pc_pid (lp->ptid), pid);
611
612 /* Set the PC to before the trap. */
613 if (DECR_PC_AFTER_BREAK)
614 write_pc_pid (read_pc_pid (pid_to_ptid (pid))
615 - DECR_PC_AFTER_BREAK,
616 pid_to_ptid (pid));
617
618 /* Now resume this LWP and get the SIGSTOP event. */
619 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
620 goto get_another_event;
621 }
622 else if (WSTOPSIG (status) == SIGINT &&
623 signal_pass_state (SIGINT) == 0)
624 {
625 /* Since SIGINT gets forwarded to the entire process group
626 (in the case where ^C/BREAK is typed at the tty/console),
627 just ignore all SIGINT events from all lwp's except for
628 the one that was caught by lin_lwp_wait. */
629
630 /* Now resume this LWP and get the SIGSTP event. */
631 ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0, 0);
632 goto get_another_event;
633 }
634 else
635 {
636 if (debug_lin_lwp)
637 fprintf_unfiltered (gdb_stdlog,
638 "Received %s in LWP %d while waiting for SIGSTOP.\n",
639 strsignal (WSTOPSIG (status)), pid);
640
641 /* The thread was stopped with a signal other than
642 SIGSTOP, and didn't accidentally trip a breakpoint.
643 Record the wait status. */
644 lp->status = status;
645 }
646 }
647 else
648 {
649 /* We caught the SIGSTOP that we intended to catch, so
650 there's no SIGSTOP pending. */
651 lp->signalled = 0;
652 }
653 }
654
655 return 0;
656 }
657
658 /* Return non-zero if LP has a wait status pending. */
659
660 static int
661 status_callback (struct lwp_info *lp, void *data)
662 {
663 return (lp->status != 0);
664 }
665
666 /* Return non-zero if LP isn't stopped. */
667
668 static int
669 running_callback (struct lwp_info *lp, void *data)
670 {
671 return (lp->stopped == 0);
672 }
673
674 static ptid_t
675 lin_lwp_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
676 {
677 struct lwp_info *lp = NULL;
678 int options = 0;
679 int status = 0;
680 pid_t pid = PIDGET (ptid);
681
682 /* Make sure SIGCHLD is blocked. */
683 if (! sigismember (&blocked_mask, SIGCHLD))
684 {
685 sigaddset (&blocked_mask, SIGCHLD);
686 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
687 }
688
689 retry:
690
691 /* First check if there is a LWP with a wait status pending. */
692 if (pid == -1)
693 {
694 /* Any LWP will do. */
695 lp = iterate_over_lwps (status_callback, NULL);
696 if (lp)
697 {
698 if (debug_lin_lwp)
699 fprintf_unfiltered (gdb_stdlog,
700 "Using pending wait status for LWP %ld.\n",
701 GET_LWP (lp->ptid));
702
703 status = lp->status;
704 lp->status = 0;
705 }
706
707 /* But if we don't fine one, we'll have to wait, and check both
708 cloned and uncloned processes. We start with the cloned
709 processes. */
710 options = __WCLONE | WNOHANG;
711 }
712 else if (is_lwp (ptid))
713 {
714 if (debug_lin_lwp)
715 fprintf_unfiltered (gdb_stdlog,
716 "Waiting for specific LWP %ld.\n",
717 GET_LWP (ptid));
718
719 /* We have a specific LWP to check. */
720 lp = find_lwp_pid (ptid);
721 gdb_assert (lp);
722 status = lp->status;
723 lp->status = 0;
724
725 if (debug_lin_lwp)
726 if (status)
727 fprintf_unfiltered (gdb_stdlog,
728 "Using pending wait status for LWP %ld.\n",
729 GET_LWP (lp->ptid));
730
731 /* If we have to wait, take into account whether PID is a cloned
732 process or not. And we have to convert it to something that
733 the layer beneath us can understand. */
734 options = is_cloned (lp->ptid) ? __WCLONE : 0;
735 pid = GET_LWP (ptid);
736 }
737
738 if (status && lp->signalled)
739 {
740 /* A pending SIGSTOP may interfere with the normal stream of
741 events. In a typical case where interference is a problem,
742 we have a SIGSTOP signal pending for LWP A while
743 single-stepping it, encounter an event in LWP B, and take the
744 pending SIGSTOP while trying to stop LWP A. After processing
745 the event in LWP B, LWP A is continued, and we'll never see
746 the SIGTRAP associated with the last time we were
747 single-stepping LWP A. */
748
749 /* Resume the thread. It should halt immediately returning the
750 pending SIGSTOP. */
751 child_resume (pid_to_ptid (GET_LWP (lp->ptid)), lp->step,
752 TARGET_SIGNAL_0);
753 lp->stopped = 0;
754
755 /* This should catch the pending SIGSTOP. */
756 stop_wait_callback (lp, NULL);
757 }
758
759 set_sigint_trap (); /* Causes SIGINT to be passed on to the
760 attached process. */
761 set_sigio_trap ();
762
763 while (status == 0)
764 {
765 pid_t lwpid;
766
767 lwpid = waitpid (pid, &status, options);
768 if (lwpid > 0)
769 {
770 gdb_assert (pid == -1 || lwpid == pid);
771
772 lp = find_lwp_pid (pid_to_ptid (lwpid));
773 if (! lp)
774 {
775 lp = add_lwp (BUILD_LWP (lwpid, GET_PID (inferior_ptid)));
776 if (threaded)
777 {
778 gdb_assert (WIFSTOPPED (status)
779 && WSTOPSIG (status) == SIGSTOP);
780 lp->signalled = 1;
781
782 if (! in_thread_list (inferior_ptid))
783 {
784 inferior_ptid = BUILD_LWP (GET_PID (inferior_ptid),
785 GET_PID (inferior_ptid));
786 add_thread (inferior_ptid);
787 }
788
789 add_thread (lp->ptid);
790 printf_unfiltered ("[New %s]\n",
791 target_pid_to_str (lp->ptid));
792 }
793 }
794
795 /* Make sure we don't report a TARGET_WAITKIND_EXITED or
796 TARGET_WAITKIND_SIGNALLED event if there are still LWP's
797 left in the process. */
798 if ((WIFEXITED (status) || WIFSIGNALED (status)) && num_lwps > 1)
799 {
800 if (in_thread_list (lp->ptid))
801 {
802 /* Core GDB cannot deal with us deleting the current
803 thread. */
804 if (! ptid_equal (lp->ptid, inferior_ptid))
805 delete_thread (lp->ptid);
806 printf_unfiltered ("[%s exited]\n",
807 target_pid_to_str (lp->ptid));
808 }
809 if (debug_lin_lwp)
810 fprintf_unfiltered (gdb_stdlog,
811 "%s exited.\n",
812 target_pid_to_str (lp->ptid));
813
814 delete_lwp (lp->ptid);
815
816 /* Make sure there is at least one thread running. */
817 gdb_assert (iterate_over_lwps (running_callback, NULL));
818
819 /* Discard the event. */
820 status = 0;
821 continue;
822 }
823
824 /* Make sure we don't report a SIGSTOP that we sent
825 ourselves in an attempt to stop an LWP. */
826 if (lp->signalled && WIFSTOPPED (status)
827 && WSTOPSIG (status) == SIGSTOP)
828 {
829 if (debug_lin_lwp)
830 fprintf_unfiltered (gdb_stdlog,
831 "Delayed SIGSTOP caught for %s.\n",
832 target_pid_to_str (lp->ptid));
833
834 /* This is a delayed SIGSTOP. */
835 lp->signalled = 0;
836
837 child_resume (pid_to_ptid (GET_LWP (lp->ptid)), lp->step,
838 TARGET_SIGNAL_0);
839 lp->stopped = 0;
840
841 /* Discard the event. */
842 status = 0;
843 continue;
844 }
845
846 break;
847 }
848
849 if (pid == -1)
850 {
851 /* Alternate between checking cloned and uncloned processes. */
852 options ^= __WCLONE;
853
854 /* And suspend every time we have checked both. */
855 if (options & __WCLONE)
856 sigsuspend (&suspend_mask);
857 }
858
859 /* We shouldn't end up here unless we want to try again. */
860 gdb_assert (status == 0);
861 }
862
863 clear_sigio_trap ();
864 clear_sigint_trap ();
865
866 gdb_assert (lp);
867
868 /* Don't report signals that GDB isn't interested in, such as
869 signals that are neither printed nor stopped upon. Stopping all
870 threads can be a bit time-consuming so if we want decent
871 performance with heavily multi-threaded programs, especially when
872 they're using a high frequency timer, we'd better avoid it if we
873 can. */
874
875 if (WIFSTOPPED (status))
876 {
877 int signo = target_signal_from_host (WSTOPSIG (status));
878
879 if (signal_stop_state (signo) == 0
880 && signal_print_state (signo) == 0
881 && signal_pass_state (signo) == 1)
882 {
883 /* First mark this LWP as "not stopped", so that
884 resume_callback will not resume it. */
885 lp->stopped = 0;
886 /* Resume all threads except this one
887 (mainly to get the newly attached ones). */
888 iterate_over_lwps (resume_callback, NULL);
889 /* Now resume this thread, forwarding the signal to it. */
890 child_resume (pid_to_ptid (GET_LWP (lp->ptid)), lp->step, signo);
891 status = 0;
892 goto retry;
893 }
894 }
895
896 /* This LWP is stopped now. */
897 lp->stopped = 1;
898
899 /* Now stop all other LWP's ... */
900 iterate_over_lwps (stop_callback, NULL);
901
902 /* ... and wait until all of them have reported back that they're no
903 longer running. */
904 iterate_over_lwps (stop_wait_callback, NULL);
905
906 /* If we're not running in "threaded" mode, we'll report the bare
907 process id. */
908
909 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP)
910 trap_ptid = (threaded ? lp->ptid : pid_to_ptid (GET_LWP (lp->ptid)));
911 else
912 trap_ptid = null_ptid;
913
914 store_waitstatus (ourstatus, status);
915 return (threaded ? lp->ptid : pid_to_ptid (GET_LWP (lp->ptid)));
916 }
917
918 static int
919 kill_callback (struct lwp_info *lp, void *data)
920 {
921 ptrace (PTRACE_KILL, GET_LWP (lp->ptid), 0, 0);
922 return 0;
923 }
924
925 static int
926 kill_wait_callback (struct lwp_info *lp, void *data)
927 {
928 pid_t pid;
929
930 /* We must make sure that there are no pending events (delayed
931 SIGSTOPs, pending SIGTRAPs, etc.) to make sure the current
932 program doesn't interfere with any following debugging session. */
933
934 /* For cloned processes we must check both with __WCLONE and
935 without, since the exit status of a cloned process isn't reported
936 with __WCLONE. */
937 if (is_cloned (lp->ptid))
938 {
939 do
940 {
941 pid = waitpid (GET_LWP (lp->ptid), NULL, __WCLONE);
942 }
943 while (pid == GET_LWP (lp->ptid));
944
945 gdb_assert (pid == -1 && errno == ECHILD);
946 }
947
948 do
949 {
950 pid = waitpid (GET_LWP (lp->ptid), NULL, 0);
951 }
952 while (pid == GET_LWP (lp->ptid));
953
954 gdb_assert (pid == -1 && errno == ECHILD);
955 return 0;
956 }
957
958 static void
959 lin_lwp_kill (void)
960 {
961 /* Kill all LWP's ... */
962 iterate_over_lwps (kill_callback, NULL);
963
964 /* ... and wait until we've flushed all events. */
965 iterate_over_lwps (kill_wait_callback, NULL);
966
967 target_mourn_inferior ();
968 }
969
970 static void
971 lin_lwp_create_inferior (char *exec_file, char *allargs, char **env)
972 {
973 child_ops.to_create_inferior (exec_file, allargs, env);
974 }
975
976 static void
977 lin_lwp_mourn_inferior (void)
978 {
979 trap_ptid = null_ptid;
980
981 /* Destroy LWP info; it's no longer valid. */
982 init_lwp_list ();
983
984 /* Restore the original signal mask. */
985 sigprocmask (SIG_SETMASK, &normal_mask, NULL);
986 sigemptyset (&blocked_mask);
987
988 child_ops.to_mourn_inferior ();
989 }
990
991 static void
992 lin_lwp_fetch_registers (int regno)
993 {
994 struct cleanup *old_chain = save_inferior_ptid ();
995
996 if (is_lwp (inferior_ptid))
997 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
998
999 fetch_inferior_registers (regno);
1000
1001 do_cleanups (old_chain);
1002 }
1003
1004 static void
1005 lin_lwp_store_registers (int regno)
1006 {
1007 struct cleanup *old_chain = save_inferior_ptid ();
1008
1009 if (is_lwp (inferior_ptid))
1010 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
1011
1012 store_inferior_registers (regno);
1013
1014 do_cleanups (old_chain);
1015 }
1016
1017 static int
1018 lin_lwp_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
1019 struct mem_attrib *attrib,
1020 struct target_ops *target)
1021 {
1022 struct cleanup *old_chain = save_inferior_ptid ();
1023 int xfer;
1024
1025 if (is_lwp (inferior_ptid))
1026 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
1027
1028 xfer = child_xfer_memory (memaddr, myaddr, len, write, attrib, target);
1029
1030 do_cleanups (old_chain);
1031 return xfer;
1032 }
1033
1034 static int
1035 lin_lwp_thread_alive (ptid_t ptid)
1036 {
1037 gdb_assert (is_lwp (ptid));
1038
1039 errno = 0;
1040 ptrace (PTRACE_PEEKUSER, GET_LWP (ptid), 0, 0);
1041 if (errno)
1042 return 0;
1043
1044 return 1;
1045 }
1046
1047 static char *
1048 lin_lwp_pid_to_str (ptid_t ptid)
1049 {
1050 static char buf[64];
1051
1052 if (is_lwp (ptid))
1053 {
1054 snprintf (buf, sizeof (buf), "LWP %ld", GET_LWP (ptid));
1055 return buf;
1056 }
1057
1058 return normal_pid_to_str (ptid);
1059 }
1060
1061 static void
1062 init_lin_lwp_ops (void)
1063 {
1064 #if 0
1065 lin_lwp_ops.to_open = lin_lwp_open;
1066 #endif
1067 lin_lwp_ops.to_shortname = "lwp-layer";
1068 lin_lwp_ops.to_longname = "lwp-layer";
1069 lin_lwp_ops.to_doc = "Low level threads support (LWP layer)";
1070 lin_lwp_ops.to_attach = lin_lwp_attach;
1071 lin_lwp_ops.to_detach = lin_lwp_detach;
1072 lin_lwp_ops.to_resume = lin_lwp_resume;
1073 lin_lwp_ops.to_wait = lin_lwp_wait;
1074 lin_lwp_ops.to_fetch_registers = lin_lwp_fetch_registers;
1075 lin_lwp_ops.to_store_registers = lin_lwp_store_registers;
1076 lin_lwp_ops.to_xfer_memory = lin_lwp_xfer_memory;
1077 lin_lwp_ops.to_kill = lin_lwp_kill;
1078 lin_lwp_ops.to_create_inferior = lin_lwp_create_inferior;
1079 lin_lwp_ops.to_mourn_inferior = lin_lwp_mourn_inferior;
1080 lin_lwp_ops.to_thread_alive = lin_lwp_thread_alive;
1081 lin_lwp_ops.to_pid_to_str = lin_lwp_pid_to_str;
1082 lin_lwp_ops.to_stratum = thread_stratum;
1083 lin_lwp_ops.to_has_thread_control = tc_schedlock;
1084 lin_lwp_ops.to_magic = OPS_MAGIC;
1085 }
1086
1087 static void
1088 sigchld_handler (int signo)
1089 {
1090 /* Do nothing. The only reason for this handler is that it allows
1091 us to use sigsuspend in lin_lwp_wait above to wait for the
1092 arrival of a SIGCHLD. */
1093 }
1094
1095 void
1096 _initialize_lin_lwp (void)
1097 {
1098 struct sigaction action;
1099
1100 extern void thread_db_init (struct target_ops *);
1101
1102 init_lin_lwp_ops ();
1103 add_target (&lin_lwp_ops);
1104 thread_db_init (&lin_lwp_ops);
1105
1106 /* Save the original signal mask. */
1107 sigprocmask (SIG_SETMASK, NULL, &normal_mask);
1108
1109 action.sa_handler = sigchld_handler;
1110 sigemptyset (&action.sa_mask);
1111 action.sa_flags = 0;
1112 sigaction (SIGCHLD, &action, NULL);
1113
1114 /* Make sure we don't block SIGCHLD during a sigsuspend. */
1115 sigprocmask (SIG_SETMASK, NULL, &suspend_mask);
1116 sigdelset (&suspend_mask, SIGCHLD);
1117
1118 sigemptyset (&blocked_mask);
1119
1120 add_show_from_set (add_set_cmd ("lin-lwp", no_class, var_zinteger,
1121 (char *) &debug_lin_lwp,
1122 "Set debugging of linux lwp module.\n\
1123 Enables printf debugging output.\n",
1124 &setdebuglist),
1125 &showdebuglist);
1126 }
1127 \f
1128
1129 /* FIXME: kettenis/2000-08-26: The stuff on this page is specific to
1130 the LinuxThreads library and therefore doesn't really belong here. */
1131
1132 /* Read variable NAME in the target and return its value if found.
1133 Otherwise return zero. It is assumed that the type of the variable
1134 is `int'. */
1135
1136 static int
1137 get_signo (const char *name)
1138 {
1139 struct minimal_symbol *ms;
1140 int signo;
1141
1142 ms = lookup_minimal_symbol (name, NULL, NULL);
1143 if (ms == NULL)
1144 return 0;
1145
1146 if (target_read_memory (SYMBOL_VALUE_ADDRESS (ms), (char *) &signo,
1147 sizeof (signo)) != 0)
1148 return 0;
1149
1150 return signo;
1151 }
1152
1153 /* Return the set of signals used by the threads library in *SET. */
1154
1155 void
1156 lin_thread_get_thread_signals (sigset_t *set)
1157 {
1158 struct sigaction action;
1159 int restart, cancel;
1160
1161 sigemptyset (set);
1162
1163 restart = get_signo ("__pthread_sig_restart");
1164 if (restart == 0)
1165 return;
1166
1167 cancel = get_signo ("__pthread_sig_cancel");
1168 if (cancel == 0)
1169 return;
1170
1171 sigaddset (set, restart);
1172 sigaddset (set, cancel);
1173
1174 /* The LinuxThreads library makes terminating threads send a special
1175 "cancel" signal instead of SIGCHLD. Make sure we catch those (to
1176 prevent them from terminating GDB itself, which is likely to be
1177 their default action) and treat them the same way as SIGCHLD. */
1178
1179 action.sa_handler = sigchld_handler;
1180 sigemptyset (&action.sa_mask);
1181 action.sa_flags = 0;
1182 sigaction (cancel, &action, NULL);
1183
1184 /* We block the "cancel" signal throughout this code ... */
1185 sigaddset (&blocked_mask, cancel);
1186 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
1187
1188 /* ... except during a sigsuspend. */
1189 sigdelset (&suspend_mask, cancel);
1190 }
This page took 0.05414 seconds and 4 git commands to generate.