2001-05-25 Michael Snyder <msnyder@redhat.com>
[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 lp->signalled = 1;
331 }
332
333 static void
334 lin_lwp_attach (char *args, int from_tty)
335 {
336 struct lwp_info *lp;
337
338 /* FIXME: We should probably accept a list of process id's, and
339 attach all of them. */
340 child_ops.to_attach (args, from_tty);
341
342 /* Add the initial process as the first LWP to the list. */
343 lp = add_lwp (BUILD_LWP (PIDGET (inferior_ptid), PIDGET (inferior_ptid)));
344
345 /* Make sure the initial process is stopped. The user-level threads
346 layer might want to poke around in the inferior, and that won't
347 work if things haven't stabilized yet. */
348 lp->signalled = 1;
349 stop_wait_callback (lp, NULL);
350 gdb_assert (lp->status == 0);
351
352 /* Fake the SIGSTOP that core GDB expects. */
353 lp->status = W_STOPCODE (SIGSTOP);
354 }
355
356 static int
357 detach_callback (struct lwp_info *lp, void *data)
358 {
359 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
360
361 if (debug_lin_lwp && lp->status)
362 fprintf_unfiltered (gdb_stdlog, "Pending %s for LWP %ld on detach.\n",
363 strsignal (WSTOPSIG (lp->status)), GET_LWP (lp->ptid));
364
365 while (lp->signalled && lp->stopped)
366 {
367 if (ptrace (PTRACE_CONT, GET_LWP (lp->ptid), 0,
368 WSTOPSIG (lp->status)) < 0)
369 error ("Can't continue %s: %s", target_pid_to_str (lp->ptid),
370 strerror (errno));
371
372 lp->stopped = 0;
373 lp->status = 0;
374 stop_wait_callback (lp, NULL);
375
376 gdb_assert (lp->status == 0 || WIFSTOPPED (lp->status));
377 }
378
379 if (is_cloned (lp->ptid))
380 {
381 if (ptrace (PTRACE_DETACH, GET_LWP (lp->ptid), 0,
382 WSTOPSIG (lp->status)) < 0)
383 error ("Can't detach %s: %s", target_pid_to_str (lp->ptid),
384 strerror (errno));
385
386 delete_lwp (lp->ptid);
387 }
388
389 return 0;
390 }
391
392 static void
393 lin_lwp_detach (char *args, int from_tty)
394 {
395 iterate_over_lwps (detach_callback, NULL);
396
397 /* Only the initial (uncloned) process should be left right now. */
398 gdb_assert (num_lwps == 1);
399
400 trap_ptid = null_ptid;
401
402 /* Destroy LWP info; it's no longer valid. */
403 init_lwp_list ();
404
405 /* Restore the original signal mask. */
406 sigprocmask (SIG_SETMASK, &normal_mask, NULL);
407 sigemptyset (&blocked_mask);
408
409 inferior_ptid = pid_to_ptid (GET_PID (inferior_ptid));
410 child_ops.to_detach (args, from_tty);
411 }
412 \f
413
414 struct private_thread_info
415 {
416 int lwpid;
417 };
418
419 /* Return non-zero if TP corresponds to the LWP specified by DATA
420 (which is assumed to be a pointer to a `struct lwp_info'. */
421
422 static int
423 find_lwp_callback (struct thread_info *tp, void *data)
424 {
425 struct lwp_info *lp = data;
426
427 if (tp->private->lwpid == GET_LWP (lp->ptid))
428 return 1;
429
430 return 0;
431 }
432
433 /* Resume LP. */
434
435 static int
436 resume_callback (struct lwp_info *lp, void *data)
437 {
438 if (lp->stopped && lp->status == 0)
439 {
440 struct thread_info *tp;
441
442 #if 1
443 /* FIXME: kettenis/2000-08-26: This should really be handled
444 properly by core GDB. */
445
446 tp = find_thread_pid (lp->ptid);
447 if (tp == NULL)
448 tp = iterate_over_threads (find_lwp_callback, lp);
449 gdb_assert (tp);
450
451 /* If we were previously stepping the thread, and now continue
452 the thread we must invalidate the stepping range. However,
453 if there is a step_resume breakpoint for this thread, we must
454 preserve the stepping range to make it possible to continue
455 stepping once we hit it. */
456 if (tp->step_range_end && tp->step_resume_breakpoint == NULL)
457 {
458 gdb_assert (lp->step);
459 tp->step_range_start = tp->step_range_end = 0;
460 }
461 #endif
462
463 child_resume (pid_to_ptid (GET_LWP (lp->ptid)), 0, TARGET_SIGNAL_0);
464 lp->stopped = 0;
465 lp->step = 0;
466 }
467
468 return 0;
469 }
470
471 static void
472 lin_lwp_resume (ptid_t ptid, int step, enum target_signal signo)
473 {
474 struct lwp_info *lp;
475 int resume_all;
476
477 /* Apparently the interpretation of PID is dependent on STEP: If
478 STEP is non-zero, a specific PID means `step only this process
479 id'. But if STEP is zero, then PID means `continue *all*
480 processes, but give the signal only to this one'. */
481 resume_all = (PIDGET (ptid) == -1) || !step;
482
483 /* If PID is -1, it's the current inferior that should be
484 handled special. */
485 if (PIDGET (ptid) == -1)
486 ptid = inferior_ptid;
487
488 lp = find_lwp_pid (ptid);
489 if (lp)
490 {
491 ptid = pid_to_ptid (GET_LWP (lp->ptid));
492
493 /* Remember if we're stepping. */
494 lp->step = step;
495
496 /* If we have a pending wait status for this thread, there is no
497 point in resuming the process. */
498 if (lp->status)
499 {
500 /* FIXME: What should we do if we are supposed to continue
501 this thread with a signal? */
502 gdb_assert (signo == TARGET_SIGNAL_0);
503 return;
504 }
505
506 /* Mark LWP as not stopped to prevent it from being continued by
507 resume_callback. */
508 lp->stopped = 0;
509 }
510
511 if (resume_all)
512 iterate_over_lwps (resume_callback, NULL);
513
514 child_resume (ptid, step, signo);
515 }
516 \f
517
518 /* Send a SIGSTOP to LP. */
519
520 static int
521 stop_callback (struct lwp_info *lp, void *data)
522 {
523 if (! lp->stopped && ! lp->signalled)
524 {
525 int ret;
526
527 ret = kill (GET_LWP (lp->ptid), SIGSTOP);
528 gdb_assert (ret == 0);
529
530 lp->signalled = 1;
531 gdb_assert (lp->status == 0);
532 }
533
534 return 0;
535 }
536
537 /* Wait until LP is stopped. */
538
539 static int
540 stop_wait_callback (struct lwp_info *lp, void *data)
541 {
542 if (! lp->stopped && lp->signalled)
543 {
544 pid_t pid;
545 int status;
546
547 gdb_assert (lp->status == 0);
548
549 pid = waitpid (GET_LWP (lp->ptid), &status,
550 is_cloned (lp->ptid) ? __WCLONE : 0);
551 if (pid == -1 && errno == ECHILD)
552 /* OK, the proccess has disappeared. We'll catch the actual
553 exit event in lin_lwp_wait. */
554 return 0;
555
556 gdb_assert (pid == GET_LWP (lp->ptid));
557
558 if (WIFEXITED (status) || WIFSIGNALED (status))
559 {
560 gdb_assert (num_lwps > 1);
561
562 if (in_thread_list (lp->ptid))
563 {
564 /* Core GDB cannot deal with us deleting the current
565 thread. */
566 if (!ptid_equal (lp->ptid, inferior_ptid))
567 delete_thread (lp->ptid);
568 printf_unfiltered ("[%s exited]\n",
569 target_pid_to_str (lp->ptid));
570 }
571 if (debug_lin_lwp)
572 fprintf_unfiltered (gdb_stdlog,
573 "%s exited.\n", target_pid_to_str (lp->ptid));
574
575 delete_lwp (lp->ptid);
576 return 0;
577 }
578
579 gdb_assert (WIFSTOPPED (status));
580 lp->stopped = 1;
581
582 if (WSTOPSIG (status) != SIGSTOP)
583 {
584 if (WSTOPSIG (status) == SIGTRAP
585 && breakpoint_inserted_here_p (read_pc_pid (pid_to_ptid (pid))
586 - DECR_PC_AFTER_BREAK))
587 {
588 /* If a LWP other than the LWP that we're reporting an
589 event for has hit a GDB breakpoint (as opposed to
590 some random trap signal), then just arrange for it to
591 hit it again later. We don't keep the SIGTRAP status
592 and don't forward the SIGTRAP signal to the LWP. We
593 will handle the current event, eventually we will
594 resume all LWPs, and this one will get its breakpoint
595 trap again.
596
597 If we do not do this, then we run the risk that the
598 user will delete or disable the breakpoint, but the
599 thread will have already tripped on it. */
600
601 if (debug_lin_lwp)
602 fprintf_unfiltered (gdb_stdlog,
603 "Tripped breakpoint at %lx in LWP %d"
604 " while waiting for SIGSTOP.\n",
605 (long) read_pc_pid (lp->ptid), pid);
606
607 /* Set the PC to before the trap. */
608 if (DECR_PC_AFTER_BREAK)
609 write_pc_pid (read_pc_pid (pid_to_ptid (pid))
610 - DECR_PC_AFTER_BREAK,
611 pid_to_ptid (pid));
612 }
613 else if (WSTOPSIG (status) == SIGINT &&
614 signal_pass_state (SIGINT) == 0)
615 {
616 /* Since SIGINT gets forwarded to the entire process group
617 (in the case where ^C/BREAK is typed at the tty/console),
618 just ignore all SIGINT events from all lwp's except for
619 the one that was caught by lin_lwp_wait. */
620 ; /* Don't save. Signal will disappear into oblivion. */
621 }
622 else
623 {
624 if (debug_lin_lwp)
625 fprintf_unfiltered (gdb_stdlog,
626 "Received %s in LWP %d while waiting for SIGSTOP.\n",
627 strsignal (WSTOPSIG (status)), pid);
628
629 /* The thread was stopped with a signal other than
630 SIGSTOP, and didn't accidentally trip a breakpoint.
631 Record the wait status. */
632 lp->status = status;
633 }
634 }
635 else
636 {
637 /* We caught the SIGSTOP that we intended to catch, so
638 there's no SIGSTOP pending. */
639 lp->signalled = 0;
640 }
641 }
642
643 return 0;
644 }
645
646 /* Return non-zero if LP has a wait status pending. */
647
648 static int
649 status_callback (struct lwp_info *lp, void *data)
650 {
651 return (lp->status != 0);
652 }
653
654 /* Return non-zero if LP isn't stopped. */
655
656 static int
657 running_callback (struct lwp_info *lp, void *data)
658 {
659 return (lp->stopped == 0);
660 }
661
662 static ptid_t
663 lin_lwp_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
664 {
665 struct lwp_info *lp = NULL;
666 int options = 0;
667 int status = 0;
668 pid_t pid = PIDGET (ptid);
669
670 /* Make sure SIGCHLD is blocked. */
671 if (! sigismember (&blocked_mask, SIGCHLD))
672 {
673 sigaddset (&blocked_mask, SIGCHLD);
674 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
675 }
676
677 retry:
678
679 /* First check if there is a LWP with a wait status pending. */
680 if (pid == -1)
681 {
682 /* Any LWP will do. */
683 lp = iterate_over_lwps (status_callback, NULL);
684 if (lp)
685 {
686 if (debug_lin_lwp)
687 fprintf_unfiltered (gdb_stdlog,
688 "Using pending wait status for LWP %ld.\n",
689 GET_LWP (lp->ptid));
690
691 status = lp->status;
692 lp->status = 0;
693 }
694
695 /* But if we don't fine one, we'll have to wait, and check both
696 cloned and uncloned processes. We start with the cloned
697 processes. */
698 options = __WCLONE | WNOHANG;
699 }
700 else if (is_lwp (ptid))
701 {
702 if (debug_lin_lwp)
703 fprintf_unfiltered (gdb_stdlog,
704 "Waiting for specific LWP %ld.\n",
705 GET_LWP (ptid));
706
707 /* We have a specific LWP to check. */
708 lp = find_lwp_pid (ptid);
709 gdb_assert (lp);
710 status = lp->status;
711 lp->status = 0;
712
713 if (debug_lin_lwp)
714 if (status)
715 fprintf_unfiltered (gdb_stdlog,
716 "Using pending wait status for LWP %ld.\n",
717 GET_LWP (lp->ptid));
718
719 /* If we have to wait, take into account whether PID is a cloned
720 process or not. And we have to convert it to something that
721 the layer beneath us can understand. */
722 options = is_cloned (lp->ptid) ? __WCLONE : 0;
723 pid = GET_LWP (ptid);
724 }
725
726 if (status && lp->signalled)
727 {
728 /* A pending SIGSTOP may interfere with the normal stream of
729 events. In a typical case where interference is a problem,
730 we have a SIGSTOP signal pending for LWP A while
731 single-stepping it, encounter an event in LWP B, and take the
732 pending SIGSTOP while trying to stop LWP A. After processing
733 the event in LWP B, LWP A is continued, and we'll never see
734 the SIGTRAP associated with the last time we were
735 single-stepping LWP A. */
736
737 /* Resume the thread. It should halt immediately returning the
738 pending SIGSTOP. */
739 child_resume (pid_to_ptid (GET_LWP (lp->ptid)), lp->step,
740 TARGET_SIGNAL_0);
741 lp->stopped = 0;
742
743 /* This should catch the pending SIGSTOP. */
744 stop_wait_callback (lp, NULL);
745 }
746
747 set_sigint_trap (); /* Causes SIGINT to be passed on to the
748 attached process. */
749 set_sigio_trap ();
750
751 while (status == 0)
752 {
753 pid_t lwpid;
754
755 lwpid = waitpid (pid, &status, options);
756 if (lwpid > 0)
757 {
758 gdb_assert (pid == -1 || lwpid == pid);
759
760 lp = find_lwp_pid (pid_to_ptid (lwpid));
761 if (! lp)
762 {
763 lp = add_lwp (BUILD_LWP (lwpid, GET_PID (inferior_ptid)));
764 if (threaded)
765 {
766 gdb_assert (WIFSTOPPED (status)
767 && WSTOPSIG (status) == SIGSTOP);
768 lp->signalled = 1;
769
770 if (! in_thread_list (inferior_ptid))
771 {
772 inferior_ptid = BUILD_LWP (GET_PID (inferior_ptid),
773 GET_PID (inferior_ptid));
774 add_thread (inferior_ptid);
775 }
776
777 add_thread (lp->ptid);
778 printf_unfiltered ("[New %s]\n",
779 target_pid_to_str (lp->ptid));
780 }
781 }
782
783 /* Make sure we don't report a TARGET_WAITKIND_EXITED or
784 TARGET_WAITKIND_SIGNALLED event if there are still LWP's
785 left in the process. */
786 if ((WIFEXITED (status) || WIFSIGNALED (status)) && num_lwps > 1)
787 {
788 if (in_thread_list (lp->ptid))
789 {
790 /* Core GDB cannot deal with us deleting the current
791 thread. */
792 if (! ptid_equal (lp->ptid, inferior_ptid))
793 delete_thread (lp->ptid);
794 printf_unfiltered ("[%s exited]\n",
795 target_pid_to_str (lp->ptid));
796 }
797 if (debug_lin_lwp)
798 fprintf_unfiltered (gdb_stdlog,
799 "%s exited.\n",
800 target_pid_to_str (lp->ptid));
801
802 delete_lwp (lp->ptid);
803
804 /* Make sure there is at least one thread running. */
805 gdb_assert (iterate_over_lwps (running_callback, NULL));
806
807 /* Discard the event. */
808 status = 0;
809 continue;
810 }
811
812 /* Make sure we don't report a SIGSTOP that we sent
813 ourselves in an attempt to stop an LWP. */
814 if (lp->signalled && WIFSTOPPED (status)
815 && WSTOPSIG (status) == SIGSTOP)
816 {
817 if (debug_lin_lwp)
818 fprintf_unfiltered (gdb_stdlog,
819 "Delayed SIGSTOP caught for %s.\n",
820 target_pid_to_str (lp->ptid));
821
822 /* This is a delayed SIGSTOP. */
823 lp->signalled = 0;
824
825 child_resume (pid_to_ptid (GET_LWP (lp->ptid)), lp->step,
826 TARGET_SIGNAL_0);
827 lp->stopped = 0;
828
829 /* Discard the event. */
830 status = 0;
831 continue;
832 }
833
834 break;
835 }
836
837 if (pid == -1)
838 {
839 /* Alternate between checking cloned and uncloned processes. */
840 options ^= __WCLONE;
841
842 /* And suspend every time we have checked both. */
843 if (options & __WCLONE)
844 sigsuspend (&suspend_mask);
845 }
846
847 /* We shouldn't end up here unless we want to try again. */
848 gdb_assert (status == 0);
849 }
850
851 clear_sigio_trap ();
852 clear_sigint_trap ();
853
854 gdb_assert (lp);
855
856 /* Don't report signals that GDB isn't interested in, such as
857 signals that are neither printed nor stopped upon. Stopping all
858 threads can be a bit time-consuming so if we want decent
859 performance with heavily multi-threaded programs, especially when
860 they're using a high frequency timer, we'd better avoid it if we
861 can. */
862
863 if (WIFSTOPPED (status))
864 {
865 int signo = target_signal_from_host (WSTOPSIG (status));
866
867 if (signal_stop_state (signo) == 0
868 && signal_print_state (signo) == 0
869 && signal_pass_state (signo) == 1)
870 {
871 child_resume (pid_to_ptid (GET_LWP (lp->ptid)), lp->step, signo);
872 lp->stopped = 0;
873 status = 0;
874 goto retry;
875 }
876 }
877
878 /* This LWP is stopped now. */
879 lp->stopped = 1;
880
881 /* Now stop all other LWP's ... */
882 iterate_over_lwps (stop_callback, NULL);
883
884 /* ... and wait until all of them have reported back that they're no
885 longer running. */
886 iterate_over_lwps (stop_wait_callback, NULL);
887
888 /* If we're not running in "threaded" mode, we'll report the bare
889 process id. */
890
891 if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP)
892 trap_ptid = (threaded ? lp->ptid : pid_to_ptid (GET_LWP (lp->ptid)));
893 else
894 trap_ptid = null_ptid;
895
896 store_waitstatus (ourstatus, status);
897 return (threaded ? lp->ptid : pid_to_ptid (GET_LWP (lp->ptid)));
898 }
899
900 static int
901 kill_callback (struct lwp_info *lp, void *data)
902 {
903 ptrace (PTRACE_KILL, GET_LWP (lp->ptid), 0, 0);
904 return 0;
905 }
906
907 static int
908 kill_wait_callback (struct lwp_info *lp, void *data)
909 {
910 pid_t pid;
911
912 /* We must make sure that there are no pending events (delayed
913 SIGSTOPs, pending SIGTRAPs, etc.) to make sure the current
914 program doesn't interfere with any following debugging session. */
915
916 /* For cloned processes we must check both with __WCLONE and
917 without, since the exit status of a cloned process isn't reported
918 with __WCLONE. */
919 if (is_cloned (lp->ptid))
920 {
921 do
922 {
923 pid = waitpid (GET_LWP (lp->ptid), NULL, __WCLONE);
924 }
925 while (pid == GET_LWP (lp->ptid));
926
927 gdb_assert (pid == -1 && errno == ECHILD);
928 }
929
930 do
931 {
932 pid = waitpid (GET_LWP (lp->ptid), NULL, 0);
933 }
934 while (pid == GET_LWP (lp->ptid));
935
936 gdb_assert (pid == -1 && errno == ECHILD);
937 return 0;
938 }
939
940 static void
941 lin_lwp_kill (void)
942 {
943 /* Kill all LWP's ... */
944 iterate_over_lwps (kill_callback, NULL);
945
946 /* ... and wait until we've flushed all events. */
947 iterate_over_lwps (kill_wait_callback, NULL);
948
949 target_mourn_inferior ();
950 }
951
952 static void
953 lin_lwp_create_inferior (char *exec_file, char *allargs, char **env)
954 {
955 child_ops.to_create_inferior (exec_file, allargs, env);
956 }
957
958 static void
959 lin_lwp_mourn_inferior (void)
960 {
961 trap_ptid = null_ptid;
962
963 /* Destroy LWP info; it's no longer valid. */
964 init_lwp_list ();
965
966 /* Restore the original signal mask. */
967 sigprocmask (SIG_SETMASK, &normal_mask, NULL);
968 sigemptyset (&blocked_mask);
969
970 child_ops.to_mourn_inferior ();
971 }
972
973 static void
974 lin_lwp_fetch_registers (int regno)
975 {
976 struct cleanup *old_chain = save_inferior_ptid ();
977
978 if (is_lwp (inferior_ptid))
979 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
980
981 fetch_inferior_registers (regno);
982
983 do_cleanups (old_chain);
984 }
985
986 static void
987 lin_lwp_store_registers (int regno)
988 {
989 struct cleanup *old_chain = save_inferior_ptid ();
990
991 if (is_lwp (inferior_ptid))
992 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
993
994 store_inferior_registers (regno);
995
996 do_cleanups (old_chain);
997 }
998
999 static int
1000 lin_lwp_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
1001 struct mem_attrib *attrib,
1002 struct target_ops *target)
1003 {
1004 struct cleanup *old_chain = save_inferior_ptid ();
1005 int xfer;
1006
1007 if (is_lwp (inferior_ptid))
1008 inferior_ptid = pid_to_ptid (GET_LWP (inferior_ptid));
1009
1010 xfer = child_xfer_memory (memaddr, myaddr, len, write, attrib, target);
1011
1012 do_cleanups (old_chain);
1013 return xfer;
1014 }
1015
1016 static int
1017 lin_lwp_thread_alive (ptid_t ptid)
1018 {
1019 gdb_assert (is_lwp (ptid));
1020
1021 errno = 0;
1022 ptrace (PTRACE_PEEKUSER, GET_LWP (ptid), 0, 0);
1023 if (errno)
1024 return 0;
1025
1026 return 1;
1027 }
1028
1029 static char *
1030 lin_lwp_pid_to_str (ptid_t ptid)
1031 {
1032 static char buf[64];
1033
1034 if (is_lwp (ptid))
1035 {
1036 snprintf (buf, sizeof (buf), "LWP %ld", GET_LWP (ptid));
1037 return buf;
1038 }
1039
1040 return normal_pid_to_str (ptid);
1041 }
1042
1043 static void
1044 init_lin_lwp_ops (void)
1045 {
1046 #if 0
1047 lin_lwp_ops.to_open = lin_lwp_open;
1048 #endif
1049 lin_lwp_ops.to_shortname = "lwp-layer";
1050 lin_lwp_ops.to_longname = "lwp-layer";
1051 lin_lwp_ops.to_doc = "Low level threads support (LWP layer)";
1052 lin_lwp_ops.to_attach = lin_lwp_attach;
1053 lin_lwp_ops.to_detach = lin_lwp_detach;
1054 lin_lwp_ops.to_resume = lin_lwp_resume;
1055 lin_lwp_ops.to_wait = lin_lwp_wait;
1056 lin_lwp_ops.to_fetch_registers = lin_lwp_fetch_registers;
1057 lin_lwp_ops.to_store_registers = lin_lwp_store_registers;
1058 lin_lwp_ops.to_xfer_memory = lin_lwp_xfer_memory;
1059 lin_lwp_ops.to_kill = lin_lwp_kill;
1060 lin_lwp_ops.to_create_inferior = lin_lwp_create_inferior;
1061 lin_lwp_ops.to_mourn_inferior = lin_lwp_mourn_inferior;
1062 lin_lwp_ops.to_thread_alive = lin_lwp_thread_alive;
1063 lin_lwp_ops.to_pid_to_str = lin_lwp_pid_to_str;
1064 lin_lwp_ops.to_stratum = thread_stratum;
1065 lin_lwp_ops.to_has_thread_control = tc_schedlock;
1066 lin_lwp_ops.to_magic = OPS_MAGIC;
1067 }
1068
1069 static void
1070 sigchld_handler (int signo)
1071 {
1072 /* Do nothing. The only reason for this handler is that it allows
1073 us to use sigsuspend in lin_lwp_wait above to wait for the
1074 arrival of a SIGCHLD. */
1075 }
1076
1077 void
1078 _initialize_lin_lwp (void)
1079 {
1080 struct sigaction action;
1081
1082 extern void thread_db_init (struct target_ops *);
1083
1084 init_lin_lwp_ops ();
1085 add_target (&lin_lwp_ops);
1086 thread_db_init (&lin_lwp_ops);
1087
1088 /* Save the original signal mask. */
1089 sigprocmask (SIG_SETMASK, NULL, &normal_mask);
1090
1091 action.sa_handler = sigchld_handler;
1092 sigemptyset (&action.sa_mask);
1093 action.sa_flags = 0;
1094 sigaction (SIGCHLD, &action, NULL);
1095
1096 /* Make sure we don't block SIGCHLD during a sigsuspend. */
1097 sigprocmask (SIG_SETMASK, NULL, &suspend_mask);
1098 sigdelset (&suspend_mask, SIGCHLD);
1099
1100 sigemptyset (&blocked_mask);
1101
1102 add_show_from_set (add_set_cmd ("lin-lwp", no_class, var_zinteger,
1103 (char *) &debug_lin_lwp,
1104 "Set debugging of linux lwp module.\n\
1105 Enables printf debugging output.\n",
1106 &setdebuglist),
1107 &showdebuglist);
1108 }
1109 \f
1110
1111 /* FIXME: kettenis/2000-08-26: The stuff on this page is specific to
1112 the LinuxThreads library and therefore doesn't really belong here. */
1113
1114 /* Read variable NAME in the target and return its value if found.
1115 Otherwise return zero. It is assumed that the type of the variable
1116 is `int'. */
1117
1118 static int
1119 get_signo (const char *name)
1120 {
1121 struct minimal_symbol *ms;
1122 int signo;
1123
1124 ms = lookup_minimal_symbol (name, NULL, NULL);
1125 if (ms == NULL)
1126 return 0;
1127
1128 if (target_read_memory (SYMBOL_VALUE_ADDRESS (ms), (char *) &signo,
1129 sizeof (signo)) != 0)
1130 return 0;
1131
1132 return signo;
1133 }
1134
1135 /* Return the set of signals used by the threads library in *SET. */
1136
1137 void
1138 lin_thread_get_thread_signals (sigset_t *set)
1139 {
1140 struct sigaction action;
1141 int restart, cancel;
1142
1143 sigemptyset (set);
1144
1145 restart = get_signo ("__pthread_sig_restart");
1146 if (restart == 0)
1147 return;
1148
1149 cancel = get_signo ("__pthread_sig_cancel");
1150 if (cancel == 0)
1151 return;
1152
1153 sigaddset (set, restart);
1154 sigaddset (set, cancel);
1155
1156 /* The LinuxThreads library makes terminating threads send a special
1157 "cancel" signal instead of SIGCHLD. Make sure we catch those (to
1158 prevent them from terminating GDB itself, which is likely to be
1159 their default action) and treat them the same way as SIGCHLD. */
1160
1161 action.sa_handler = sigchld_handler;
1162 sigemptyset (&action.sa_mask);
1163 action.sa_flags = 0;
1164 sigaction (cancel, &action, NULL);
1165
1166 /* We block the "cancel" signal throughout this code ... */
1167 sigaddset (&blocked_mask, cancel);
1168 sigprocmask (SIG_BLOCK, &blocked_mask, NULL);
1169
1170 /* ... except during a sigsuspend. */
1171 sigdelset (&suspend_mask, cancel);
1172 }
This page took 0.077839 seconds and 5 git commands to generate.