* ppc-tdep.h (struct gdbarch_tdep): Remove ppc_ev31_regnum member.
[deliverable/binutils-gdb.git] / gdb / linux-thread-db.c
CommitLineData
fb0e1ba7 1/* libthread_db assisted debugging support, generic parts.
1bac305b 2
9b254dd1 3 Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008
10d6c8cd 4 Free Software Foundation, Inc.
fb0e1ba7
MK
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
fb0e1ba7
MK
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
fb0e1ba7
MK
20
21#include "defs.h"
22
23#include "gdb_assert.h"
24#include <dlfcn.h>
25#include "gdb_proc_service.h"
26#include "gdb_thread_db.h"
27
bda9cb72 28#include "bfd.h"
93ad78a7 29#include "exceptions.h"
fb0e1ba7
MK
30#include "gdbthread.h"
31#include "inferior.h"
bda9cb72
MK
32#include "symfile.h"
33#include "objfiles.h"
fb0e1ba7 34#include "target.h"
4e052eda 35#include "regcache.h"
3f47be5c 36#include "solib-svr4.h"
16451949 37#include "gdbcore.h"
06d3b283 38#include "observer.h"
0ec9a092 39#include "linux-nat.h"
fb0e1ba7 40
979894f2
NR
41#include <signal.h>
42
a2f23071
DJ
43#ifdef HAVE_GNU_LIBC_VERSION_H
44#include <gnu/libc-version.h>
45#endif
46
fb0e1ba7
MK
47#ifndef LIBTHREAD_DB_SO
48#define LIBTHREAD_DB_SO "libthread_db.so.1"
49#endif
50
8605d56e
AC
51/* If we're running on GNU/Linux, we must explicitly attach to any new
52 threads. */
fb0e1ba7 53
fb0e1ba7
MK
54/* This module's target vector. */
55static struct target_ops thread_db_ops;
56
57/* The target vector that we call for things this module can't handle. */
58static struct target_ops *target_beneath;
59
fb0e1ba7
MK
60/* Non-zero if we're using this module's target vector. */
61static int using_thread_db;
62
63/* Non-zero if we have determined the signals used by the threads
64 library. */
65static int thread_signals;
66static sigset_t thread_stop_set;
67static sigset_t thread_print_set;
68
69/* Structure that identifies the child process for the
70 <proc_service.h> interface. */
71static struct ps_prochandle proc_handle;
72
73/* Connection to the libthread_db library. */
74static td_thragent_t *thread_agent;
75
76/* Pointers to the libthread_db functions. */
77
78static td_err_e (*td_init_p) (void);
79
b4acd559
JJ
80static td_err_e (*td_ta_new_p) (struct ps_prochandle * ps,
81 td_thragent_t **ta);
fb0e1ba7
MK
82static td_err_e (*td_ta_map_id2thr_p) (const td_thragent_t *ta, thread_t pt,
83 td_thrhandle_t *__th);
b4acd559
JJ
84static td_err_e (*td_ta_map_lwp2thr_p) (const td_thragent_t *ta,
85 lwpid_t lwpid, td_thrhandle_t *th);
fb0e1ba7 86static td_err_e (*td_ta_thr_iter_p) (const td_thragent_t *ta,
b4acd559
JJ
87 td_thr_iter_f *callback, void *cbdata_p,
88 td_thr_state_e state, int ti_pri,
89 sigset_t *ti_sigmask_p,
fb0e1ba7
MK
90 unsigned int ti_user_flags);
91static td_err_e (*td_ta_event_addr_p) (const td_thragent_t *ta,
92 td_event_e event, td_notify_t *ptr);
93static td_err_e (*td_ta_set_event_p) (const td_thragent_t *ta,
94 td_thr_events_t *event);
95static td_err_e (*td_ta_event_getmsg_p) (const td_thragent_t *ta,
96 td_event_msg_t *msg);
97
98static td_err_e (*td_thr_validate_p) (const td_thrhandle_t *th);
99static td_err_e (*td_thr_get_info_p) (const td_thrhandle_t *th,
100 td_thrinfo_t *infop);
b4acd559
JJ
101static td_err_e (*td_thr_event_enable_p) (const td_thrhandle_t *th,
102 int event);
fb0e1ba7 103
3f47be5c 104static td_err_e (*td_thr_tls_get_addr_p) (const td_thrhandle_t *th,
b4acd559
JJ
105 void *map_address,
106 size_t offset, void **address);
3f47be5c 107
fb0e1ba7
MK
108/* Location of the thread creation event breakpoint. The code at this
109 location in the child process will be called by the pthread library
110 whenever a new thread is created. By setting a special breakpoint
111 at this location, GDB can detect when a new thread is created. We
112 obtain this location via the td_ta_event_addr call. */
113static CORE_ADDR td_create_bp_addr;
114
115/* Location of the thread death event breakpoint. */
116static CORE_ADDR td_death_bp_addr;
117
118/* Prototypes for local functions. */
bda9cb72 119static void thread_db_find_new_threads (void);
5365276c 120static void attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
93815fbf 121 const td_thrinfo_t *ti_p);
a2f23071 122static void detach_thread (ptid_t ptid, int verbose);
fb0e1ba7
MK
123\f
124
125/* Building process ids. */
126
ca6724c1
KB
127#define GET_PID(ptid) ptid_get_pid (ptid)
128#define GET_LWP(ptid) ptid_get_lwp (ptid)
129#define GET_THREAD(ptid) ptid_get_tid (ptid)
fb0e1ba7 130
ca6724c1
KB
131#define is_lwp(ptid) (GET_LWP (ptid) != 0)
132#define is_thread(ptid) (GET_THREAD (ptid) != 0)
fb0e1ba7 133
ca6724c1 134#define BUILD_LWP(lwp, pid) ptid_build (pid, lwp, 0)
fb0e1ba7
MK
135\f
136
5365276c
DJ
137/* Use "struct private_thread_info" to cache thread state. This is
138 a substantial optimization. */
139
fb0e1ba7
MK
140struct private_thread_info
141{
a2f23071
DJ
142 /* Flag set when we see a TD_DEATH event for this thread. */
143 unsigned int dying:1;
144
5365276c 145 /* Cached thread state. */
b4acd559
JJ
146 unsigned int th_valid:1;
147 unsigned int ti_valid:1;
5365276c
DJ
148
149 td_thrhandle_t th;
150 td_thrinfo_t ti;
fb0e1ba7 151};
fb0e1ba7 152\f
21bf60fe 153
fb0e1ba7
MK
154static char *
155thread_db_err_str (td_err_e err)
156{
157 static char buf[64];
158
159 switch (err)
160 {
161 case TD_OK:
162 return "generic 'call succeeded'";
163 case TD_ERR:
164 return "generic error";
165 case TD_NOTHR:
166 return "no thread to satisfy query";
167 case TD_NOSV:
168 return "no sync handle to satisfy query";
169 case TD_NOLWP:
170 return "no LWP to satisfy query";
171 case TD_BADPH:
172 return "invalid process handle";
173 case TD_BADTH:
174 return "invalid thread handle";
175 case TD_BADSH:
176 return "invalid synchronization handle";
177 case TD_BADTA:
178 return "invalid thread agent";
179 case TD_BADKEY:
180 return "invalid key";
181 case TD_NOMSG:
182 return "no event message for getmsg";
183 case TD_NOFPREGS:
184 return "FPU register set not available";
185 case TD_NOLIBTHREAD:
186 return "application not linked with libthread";
187 case TD_NOEVENT:
188 return "requested event is not supported";
189 case TD_NOCAPAB:
190 return "capability not available";
191 case TD_DBERR:
192 return "debugger service failed";
193 case TD_NOAPLIC:
194 return "operation not applicable to";
195 case TD_NOTSD:
196 return "no thread-specific data for this thread";
197 case TD_MALLOC:
198 return "malloc failed";
199 case TD_PARTIALREG:
200 return "only part of register set was written/read";
201 case TD_NOXREGS:
202 return "X register set not available for this thread";
59f80f10
DJ
203#ifdef THREAD_DB_HAS_TD_NOTALLOC
204 case TD_NOTALLOC:
205 return "thread has not yet allocated TLS for given module";
206#endif
207#ifdef THREAD_DB_HAS_TD_VERSION
208 case TD_VERSION:
209 return "versions of libpthread and libthread_db do not match";
210#endif
211#ifdef THREAD_DB_HAS_TD_NOTLS
212 case TD_NOTLS:
213 return "there is no TLS segment in the given module";
214#endif
fb0e1ba7
MK
215 default:
216 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
217 return buf;
218 }
219}
fb0e1ba7 220\f
4105de34
DJ
221/* Return 1 if any threads have been registered. There may be none if
222 the threading library is not fully initialized yet. */
223
224static int
225have_threads_callback (struct thread_info *thread, void *dummy)
226{
227 return 1;
228}
229
230static int
231have_threads (void)
232{
233 return iterate_over_threads (have_threads_callback, NULL) != NULL;
234}
235
5365276c 236/* A callback function for td_ta_thr_iter, which we use to map all
cdbc0b18 237 threads to LWPs.
5365276c
DJ
238
239 THP is a handle to the current thread; if INFOP is not NULL, the
240 struct thread_info associated with this thread is returned in
b9b5d7ea
JJ
241 *INFOP.
242
243 If the thread is a zombie, TD_THR_ZOMBIE is returned. Otherwise,
244 zero is returned to indicate success. */
5365276c
DJ
245
246static int
247thread_get_info_callback (const td_thrhandle_t *thp, void *infop)
248{
249 td_thrinfo_t ti;
250 td_err_e err;
251 struct thread_info *thread_info;
252 ptid_t thread_ptid;
253
254 err = td_thr_get_info_p (thp, &ti);
255 if (err != TD_OK)
8a3fe4f8 256 error (_("thread_get_info_callback: cannot get thread info: %s"),
5365276c
DJ
257 thread_db_err_str (err));
258
259 /* Fill the cache. */
1bac0d4d 260 thread_ptid = ptid_build (GET_PID (inferior_ptid), ti.ti_lid, ti.ti_tid);
5365276c
DJ
261 thread_info = find_thread_pid (thread_ptid);
262
b9b5d7ea 263 /* In the case of a zombie thread, don't continue. We don't want to
f90ef764 264 attach to it thinking it is a new thread. */
b9b5d7ea
JJ
265 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
266 {
267 if (infop != NULL)
268 *(struct thread_info **) infop = thread_info;
f90ef764
JJ
269 if (thread_info != NULL)
270 {
271 memcpy (&thread_info->private->th, thp, sizeof (*thp));
272 thread_info->private->th_valid = 1;
273 memcpy (&thread_info->private->ti, &ti, sizeof (ti));
274 thread_info->private->ti_valid = 1;
275 }
b9b5d7ea
JJ
276 return TD_THR_ZOMBIE;
277 }
278
5365276c
DJ
279 if (thread_info == NULL)
280 {
281 /* New thread. Attach to it now (why wait?). */
93815fbf 282 attach_thread (thread_ptid, thp, &ti);
5365276c
DJ
283 thread_info = find_thread_pid (thread_ptid);
284 gdb_assert (thread_info != NULL);
285 }
286
287 memcpy (&thread_info->private->th, thp, sizeof (*thp));
288 thread_info->private->th_valid = 1;
289 memcpy (&thread_info->private->ti, &ti, sizeof (ti));
290 thread_info->private->ti_valid = 1;
291
292 if (infop != NULL)
293 *(struct thread_info **) infop = thread_info;
294
295 return 0;
296}
297
298/* Accessor functions for the thread_db information, with caching. */
fb0e1ba7 299
5365276c
DJ
300static void
301thread_db_map_id2thr (struct thread_info *thread_info, int fatal)
302{
303 td_err_e err;
304
305 if (thread_info->private->th_valid)
306 return;
307
308 err = td_ta_map_id2thr_p (thread_agent, GET_THREAD (thread_info->ptid),
309 &thread_info->private->th);
310 if (err != TD_OK)
311 {
312 if (fatal)
8a3fe4f8 313 error (_("Cannot find thread %ld: %s"),
b4acd559
JJ
314 (long) GET_THREAD (thread_info->ptid),
315 thread_db_err_str (err));
5365276c
DJ
316 }
317 else
318 thread_info->private->th_valid = 1;
319}
5365276c 320\f
fb0e1ba7
MK
321/* Convert between user-level thread ids and LWP ids. */
322
39f77062
KB
323static ptid_t
324thread_from_lwp (ptid_t ptid)
fb0e1ba7 325{
fb0e1ba7
MK
326 td_thrhandle_t th;
327 td_err_e err;
5365276c
DJ
328 struct thread_info *thread_info;
329 ptid_t thread_ptid;
fb0e1ba7 330
39f77062
KB
331 if (GET_LWP (ptid) == 0)
332 ptid = BUILD_LWP (GET_PID (ptid), GET_PID (ptid));
fb0e1ba7 333
39f77062 334 gdb_assert (is_lwp (ptid));
fb0e1ba7 335
39f77062 336 err = td_ta_map_lwp2thr_p (thread_agent, GET_LWP (ptid), &th);
fb0e1ba7 337 if (err != TD_OK)
8a3fe4f8 338 error (_("Cannot find user-level thread for LWP %ld: %s"),
39f77062 339 GET_LWP (ptid), thread_db_err_str (err));
fb0e1ba7 340
5365276c 341 thread_info = NULL;
b9b5d7ea
JJ
342
343 /* Fetch the thread info. If we get back TD_THR_ZOMBIE, then the
344 event thread has already died. If another gdb interface has called
345 thread_alive() previously, the thread won't be found on the thread list
346 anymore. In that case, we don't want to process this ptid anymore
347 to avoid the possibility of later treating it as a newly
348 discovered thread id that we should add to the list. Thus,
349 we return a -1 ptid which is also how the thread list marks a
350 dead thread. */
351 if (thread_get_info_callback (&th, &thread_info) == TD_THR_ZOMBIE
352 && thread_info == NULL)
353 return pid_to_ptid (-1);
354
5365276c 355 gdb_assert (thread_info && thread_info->private->ti_valid);
fb0e1ba7 356
1bac0d4d
DJ
357 return ptid_build (GET_PID (ptid), GET_LWP (ptid),
358 thread_info->private->ti.ti_tid);
fb0e1ba7
MK
359}
360
39f77062
KB
361static ptid_t
362lwp_from_thread (ptid_t ptid)
fb0e1ba7 363{
1bac0d4d 364 return BUILD_LWP (GET_LWP (ptid), GET_PID (ptid));
fb0e1ba7
MK
365}
366\f
367
368void
369thread_db_init (struct target_ops *target)
370{
371 target_beneath = target;
372}
373
5220ea4c
AC
374static void *
375verbose_dlsym (void *handle, const char *name)
376{
377 void *sym = dlsym (handle, name);
378 if (sym == NULL)
8a3fe4f8 379 warning (_("Symbol \"%s\" not found in libthread_db: %s"), name, dlerror ());
5220ea4c
AC
380 return sym;
381}
382
fb0e1ba7
MK
383static int
384thread_db_load (void)
385{
386 void *handle;
387 td_err_e err;
388
389 handle = dlopen (LIBTHREAD_DB_SO, RTLD_NOW);
390 if (handle == NULL)
f7c1e0f3 391 {
b4acd559 392 fprintf_filtered (gdb_stderr, "\n\ndlopen failed on '%s' - %s\n",
f7c1e0f3 393 LIBTHREAD_DB_SO, dlerror ());
b4acd559 394 fprintf_filtered (gdb_stderr,
f7c1e0f3
MS
395 "GDB will not be able to debug pthreads.\n\n");
396 return 0;
397 }
fb0e1ba7
MK
398
399 /* Initialize pointers to the dynamic library functions we will use.
400 Essential functions first. */
401
5220ea4c 402 td_init_p = verbose_dlsym (handle, "td_init");
fb0e1ba7
MK
403 if (td_init_p == NULL)
404 return 0;
405
5220ea4c 406 td_ta_new_p = verbose_dlsym (handle, "td_ta_new");
fb0e1ba7
MK
407 if (td_ta_new_p == NULL)
408 return 0;
409
5220ea4c 410 td_ta_map_id2thr_p = verbose_dlsym (handle, "td_ta_map_id2thr");
fb0e1ba7
MK
411 if (td_ta_map_id2thr_p == NULL)
412 return 0;
413
5220ea4c 414 td_ta_map_lwp2thr_p = verbose_dlsym (handle, "td_ta_map_lwp2thr");
fb0e1ba7
MK
415 if (td_ta_map_lwp2thr_p == NULL)
416 return 0;
417
5220ea4c 418 td_ta_thr_iter_p = verbose_dlsym (handle, "td_ta_thr_iter");
fb0e1ba7
MK
419 if (td_ta_thr_iter_p == NULL)
420 return 0;
421
5220ea4c 422 td_thr_validate_p = verbose_dlsym (handle, "td_thr_validate");
fb0e1ba7
MK
423 if (td_thr_validate_p == NULL)
424 return 0;
425
5220ea4c 426 td_thr_get_info_p = verbose_dlsym (handle, "td_thr_get_info");
fb0e1ba7
MK
427 if (td_thr_get_info_p == NULL)
428 return 0;
429
fb0e1ba7
MK
430 /* Initialize the library. */
431 err = td_init_p ();
432 if (err != TD_OK)
433 {
8a3fe4f8 434 warning (_("Cannot initialize libthread_db: %s"), thread_db_err_str (err));
fb0e1ba7
MK
435 return 0;
436 }
437
438 /* These are not essential. */
439 td_ta_event_addr_p = dlsym (handle, "td_ta_event_addr");
440 td_ta_set_event_p = dlsym (handle, "td_ta_set_event");
441 td_ta_event_getmsg_p = dlsym (handle, "td_ta_event_getmsg");
442 td_thr_event_enable_p = dlsym (handle, "td_thr_event_enable");
3f47be5c 443 td_thr_tls_get_addr_p = dlsym (handle, "td_thr_tls_get_addr");
fb0e1ba7
MK
444
445 return 1;
446}
447
cdbc0b18 448static td_err_e
24557e30
AC
449enable_thread_event (td_thragent_t *thread_agent, int event, CORE_ADDR *bp)
450{
451 td_notify_t notify;
cdbc0b18 452 td_err_e err;
24557e30
AC
453
454 /* Get the breakpoint address for thread EVENT. */
455 err = td_ta_event_addr_p (thread_agent, event, &notify);
456 if (err != TD_OK)
cdbc0b18 457 return err;
24557e30
AC
458
459 /* Set up the breakpoint. */
16451949
AS
460 gdb_assert (exec_bfd);
461 (*bp) = (gdbarch_convert_from_func_ptr_addr
462 (current_gdbarch,
463 /* Do proper sign extension for the target. */
464 (bfd_get_sign_extend_vma (exec_bfd) > 0
465 ? (CORE_ADDR) (intptr_t) notify.u.bptaddr
466 : (CORE_ADDR) (uintptr_t) notify.u.bptaddr),
467 &current_target));
24557e30
AC
468 create_thread_event_breakpoint ((*bp));
469
cdbc0b18 470 return TD_OK;
24557e30
AC
471}
472
fb0e1ba7
MK
473static void
474enable_thread_event_reporting (void)
475{
476 td_thr_events_t events;
477 td_notify_t notify;
478 td_err_e err;
a2f23071
DJ
479#ifdef HAVE_GNU_LIBC_VERSION_H
480 const char *libc_version;
481 int libc_major, libc_minor;
482#endif
fb0e1ba7
MK
483
484 /* We cannot use the thread event reporting facility if these
485 functions aren't available. */
486 if (td_ta_event_addr_p == NULL || td_ta_set_event_p == NULL
487 || td_ta_event_getmsg_p == NULL || td_thr_event_enable_p == NULL)
488 return;
489
490 /* Set the process wide mask saying which events we're interested in. */
491 td_event_emptyset (&events);
492 td_event_addset (&events, TD_CREATE);
a2f23071
DJ
493
494#ifdef HAVE_GNU_LIBC_VERSION_H
34091d9b 495 /* The event reporting facility is broken for TD_DEATH events in
2ef52e77 496 glibc 2.1.3, so don't enable it if we have glibc but a lower
34091d9b 497 version. */
a2f23071
DJ
498 libc_version = gnu_get_libc_version ();
499 if (sscanf (libc_version, "%d.%d", &libc_major, &libc_minor) == 2
500 && (libc_major > 2 || (libc_major == 2 && libc_minor > 1)))
fb0e1ba7 501#endif
a2f23071 502 td_event_addset (&events, TD_DEATH);
fb0e1ba7
MK
503
504 err = td_ta_set_event_p (thread_agent, &events);
505 if (err != TD_OK)
506 {
8a3fe4f8 507 warning (_("Unable to set global thread event mask: %s"),
fb0e1ba7
MK
508 thread_db_err_str (err));
509 return;
510 }
511
512 /* Delete previous thread event breakpoints, if any. */
513 remove_thread_event_breakpoints ();
24557e30
AC
514 td_create_bp_addr = 0;
515 td_death_bp_addr = 0;
fb0e1ba7 516
24557e30 517 /* Set up the thread creation event. */
cdbc0b18
RM
518 err = enable_thread_event (thread_agent, TD_CREATE, &td_create_bp_addr);
519 if (err != TD_OK)
fb0e1ba7 520 {
8a3fe4f8 521 warning (_("Unable to get location for thread creation breakpoint: %s"),
fb0e1ba7
MK
522 thread_db_err_str (err));
523 return;
524 }
525
24557e30 526 /* Set up the thread death event. */
cdbc0b18
RM
527 err = enable_thread_event (thread_agent, TD_DEATH, &td_death_bp_addr);
528 if (err != TD_OK)
fb0e1ba7 529 {
8a3fe4f8 530 warning (_("Unable to get location for thread death breakpoint: %s"),
fb0e1ba7
MK
531 thread_db_err_str (err));
532 return;
533 }
fb0e1ba7
MK
534}
535
536static void
537disable_thread_event_reporting (void)
538{
539 td_thr_events_t events;
540
541 /* Set the process wide mask saying we aren't interested in any
542 events anymore. */
543 td_event_emptyset (&events);
544 td_ta_set_event_p (thread_agent, &events);
545
546 /* Delete thread event breakpoints, if any. */
547 remove_thread_event_breakpoints ();
548 td_create_bp_addr = 0;
549 td_death_bp_addr = 0;
550}
551
552static void
553check_thread_signals (void)
554{
555#ifdef GET_THREAD_SIGNALS
21bf60fe 556 if (!thread_signals)
fb0e1ba7
MK
557 {
558 sigset_t mask;
559 int i;
560
561 GET_THREAD_SIGNALS (&mask);
562 sigemptyset (&thread_stop_set);
563 sigemptyset (&thread_print_set);
564
b9569773 565 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
566 {
567 if (sigismember (&mask, i))
568 {
569 if (signal_stop_update (target_signal_from_host (i), 0))
570 sigaddset (&thread_stop_set, i);
571 if (signal_print_update (target_signal_from_host (i), 0))
572 sigaddset (&thread_print_set, i);
573 thread_signals = 1;
574 }
575 }
576 }
577#endif
578}
579
0ec9a092
DJ
580/* Check whether thread_db is usable. This function is called when
581 an inferior is created (or otherwise acquired, e.g. attached to)
582 and when new shared libraries are loaded into a running process. */
583
584void
585check_for_thread_db (void)
fb0e1ba7
MK
586{
587 td_err_e err;
0ec9a092 588 static int already_loaded;
fb0e1ba7 589
b5057acd
DJ
590 /* Do nothing if we couldn't load libthread_db.so.1. */
591 if (td_ta_new_p == NULL)
592 return;
593
5220ea4c
AC
594 /* First time through, report that libthread_db was successfuly
595 loaded. Can't print this in in thread_db_load as, at that stage,
0ec9a092 596 the interpreter and it's console haven't started. */
5220ea4c 597
0ec9a092 598 if (!already_loaded)
bda9cb72 599 {
0ec9a092
DJ
600 Dl_info info;
601 const char *library = NULL;
602 if (dladdr ((*td_ta_new_p), &info) != 0)
603 library = info.dli_fname;
604
605 /* Try dlinfo? */
606
607 if (library == NULL)
608 /* Paranoid - don't let a NULL path slip through. */
609 library = LIBTHREAD_DB_SO;
c194fbe1 610
8f136895
DJ
611 if (info_verbose)
612 printf_unfiltered (_("Using host libthread_db library \"%s\".\n"),
613 library);
0ec9a092 614 already_loaded = 1;
bda9cb72
MK
615 }
616
fb0e1ba7
MK
617 if (using_thread_db)
618 /* Nothing to do. The thread library was already detected and the
619 target vector was already activated. */
0ec9a092 620 return;
fb0e1ba7 621
0ec9a092
DJ
622 /* Don't attempt to use thread_db on targets which can not run
623 (executables not running yet, core files) for now. */
624 if (!target_has_execution)
625 return;
626
f86172a5
UW
627 /* Don't attempt to use thread_db for remote targets. */
628 if (!target_can_run (&current_target))
629 return;
630
0ec9a092 631 /* Initialize the structure that identifies the child process. */
39f77062 632 proc_handle.pid = GET_PID (inferior_ptid);
fb0e1ba7 633
bda9cb72 634 /* Now attempt to open a connection to the thread library. */
fb0e1ba7
MK
635 err = td_ta_new_p (&proc_handle, &thread_agent);
636 switch (err)
637 {
638 case TD_NOLIBTHREAD:
bda9cb72 639 /* No thread library was detected. */
fb0e1ba7
MK
640 break;
641
642 case TD_OK:
a3f17187 643 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
5220ea4c 644
bda9cb72
MK
645 /* The thread library was detected. Activate the thread_db target. */
646 push_target (&thread_db_ops);
647 using_thread_db = 1;
648
95575b2e
AC
649 enable_thread_event_reporting ();
650 thread_db_find_new_threads ();
fb0e1ba7
MK
651 break;
652
653 default:
8a3fe4f8 654 warning (_("Cannot initialize thread debugging library: %s"),
fb0e1ba7
MK
655 thread_db_err_str (err));
656 break;
657 }
0ec9a092
DJ
658}
659
660static void
661thread_db_new_objfile (struct objfile *objfile)
662{
663 if (objfile != NULL)
664 check_for_thread_db ();
fb0e1ba7
MK
665}
666
a2f23071
DJ
667/* Attach to a new thread. This function is called when we receive a
668 TD_CREATE event or when we iterate over all threads and find one
669 that wasn't already in our list. */
670
fb0e1ba7 671static void
39f77062 672attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
93815fbf 673 const td_thrinfo_t *ti_p)
fb0e1ba7
MK
674{
675 struct thread_info *tp;
676 td_err_e err;
677
a2f23071
DJ
678 /* If we're being called after a TD_CREATE event, we may already
679 know about this thread. There are two ways this can happen. We
680 may have iterated over all threads between the thread creation
681 and the TD_CREATE event, for instance when the user has issued
682 the `info threads' command before the SIGTRAP for hitting the
683 thread creation breakpoint was reported. Alternatively, the
684 thread may have exited and a new one been created with the same
685 thread ID. In the first case we don't need to do anything; in
686 the second case we should discard information about the dead
687 thread and attach to the new one. */
688 if (in_thread_list (ptid))
689 {
690 tp = find_thread_pid (ptid);
691 gdb_assert (tp != NULL);
692
693 if (!tp->private->dying)
694 return;
695
696 delete_thread (ptid);
697 }
698
fb0e1ba7
MK
699 check_thread_signals ();
700
9ee57c33
DJ
701 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
702 return; /* A zombie thread -- do not attach. */
703
704 /* Under GNU/Linux, we have to attach to each and every thread. */
93815fbf 705 if (lin_lwp_attach_lwp (BUILD_LWP (ti_p->ti_lid, GET_PID (ptid))) < 0)
9ee57c33
DJ
706 return;
707
fb0e1ba7 708 /* Add the thread to GDB's thread list. */
39f77062 709 tp = add_thread (ptid);
fb0e1ba7 710 tp->private = xmalloc (sizeof (struct private_thread_info));
5365276c
DJ
711 memset (tp->private, 0, sizeof (struct private_thread_info));
712
fb0e1ba7
MK
713 /* Enable thread event reporting for this thread. */
714 err = td_thr_event_enable_p (th_p, 1);
715 if (err != TD_OK)
8a3fe4f8 716 error (_("Cannot enable thread event reporting for %s: %s"),
39f77062 717 target_pid_to_str (ptid), thread_db_err_str (err));
fb0e1ba7
MK
718}
719
720static void
39f77062 721detach_thread (ptid_t ptid, int verbose)
fb0e1ba7 722{
a2f23071
DJ
723 struct thread_info *thread_info;
724
fb0e1ba7 725 if (verbose)
a3f17187 726 printf_unfiltered (_("[%s exited]\n"), target_pid_to_str (ptid));
a2f23071
DJ
727
728 /* Don't delete the thread now, because it still reports as active
729 until it has executed a few instructions after the event
730 breakpoint - if we deleted it now, "info threads" would cause us
731 to re-attach to it. Just mark it as having had a TD_DEATH
732 event. This means that we won't delete it from our thread list
733 until we notice that it's dead (via prune_threads), or until
734 something re-uses its thread ID. */
735 thread_info = find_thread_pid (ptid);
736 gdb_assert (thread_info != NULL);
737 thread_info->private->dying = 1;
fb0e1ba7
MK
738}
739
740static void
741thread_db_detach (char *args, int from_tty)
742{
743 disable_thread_event_reporting ();
c194fbe1
MK
744
745 /* There's no need to save & restore inferior_ptid here, since the
4105de34 746 inferior is not supposed to survive this function call. */
c194fbe1
MK
747 inferior_ptid = lwp_from_thread (inferior_ptid);
748
fb0e1ba7 749 target_beneath->to_detach (args, from_tty);
4105de34
DJ
750
751 /* Should this be done by detach_command? */
752 target_mourn_inferior ();
fb0e1ba7
MK
753}
754
5365276c
DJ
755static int
756clear_lwpid_callback (struct thread_info *thread, void *dummy)
757{
758 /* If we know that our thread implementation is 1-to-1, we could save
759 a certain amount of information; it's not clear how much, so we
760 are always conservative. */
761
762 thread->private->th_valid = 0;
763 thread->private->ti_valid = 0;
764
765 return 0;
766}
767
fb0e1ba7 768static void
39f77062 769thread_db_resume (ptid_t ptid, int step, enum target_signal signo)
fb0e1ba7 770{
39f77062 771 struct cleanup *old_chain = save_inferior_ptid ();
fb0e1ba7 772
39f77062
KB
773 if (GET_PID (ptid) == -1)
774 inferior_ptid = lwp_from_thread (inferior_ptid);
775 else if (is_thread (ptid))
776 ptid = lwp_from_thread (ptid);
fb0e1ba7 777
5365276c
DJ
778 /* Clear cached data which may not be valid after the resume. */
779 iterate_over_threads (clear_lwpid_callback, NULL);
780
39f77062 781 target_beneath->to_resume (ptid, step, signo);
fb0e1ba7
MK
782
783 do_cleanups (old_chain);
784}
785
786/* Check if PID is currently stopped at the location of a thread event
787 breakpoint location. If it is, read the event message and act upon
788 the event. */
789
790static void
39f77062 791check_event (ptid_t ptid)
fb0e1ba7
MK
792{
793 td_event_msg_t msg;
794 td_thrinfo_t ti;
795 td_err_e err;
796 CORE_ADDR stop_pc;
4d9850d3 797 int loop = 0;
fb0e1ba7
MK
798
799 /* Bail out early if we're not at a thread event breakpoint. */
b798847d 800 stop_pc = read_pc_pid (ptid) - gdbarch_decr_pc_after_break (current_gdbarch);
fb0e1ba7
MK
801 if (stop_pc != td_create_bp_addr && stop_pc != td_death_bp_addr)
802 return;
803
4d9850d3
JJ
804 /* If we are at a create breakpoint, we do not know what new lwp
805 was created and cannot specifically locate the event message for it.
806 We have to call td_ta_event_getmsg() to get
807 the latest message. Since we have no way of correlating whether
cdbc0b18 808 the event message we get back corresponds to our breakpoint, we must
4d9850d3 809 loop and read all event messages, processing them appropriately.
cdbc0b18
RM
810 This guarantees we will process the correct message before continuing
811 from the breakpoint.
4d9850d3
JJ
812
813 Currently, death events are not enabled. If they are enabled,
814 the death event can use the td_thr_event_getmsg() interface to
815 get the message specifically for that lwp and avoid looping
816 below. */
817
818 loop = 1;
819
820 do
fb0e1ba7 821 {
4d9850d3
JJ
822 err = td_ta_event_getmsg_p (thread_agent, &msg);
823 if (err != TD_OK)
824 {
825 if (err == TD_NOMSG)
826 return;
fb0e1ba7 827
8a3fe4f8 828 error (_("Cannot get thread event message: %s"),
4d9850d3
JJ
829 thread_db_err_str (err));
830 }
fb0e1ba7 831
4d9850d3
JJ
832 err = td_thr_get_info_p (msg.th_p, &ti);
833 if (err != TD_OK)
8a3fe4f8 834 error (_("Cannot get thread info: %s"), thread_db_err_str (err));
fb0e1ba7 835
1bac0d4d 836 ptid = ptid_build (GET_PID (ptid), ti.ti_lid, ti.ti_tid);
fb0e1ba7 837
4d9850d3
JJ
838 switch (msg.event)
839 {
840 case TD_CREATE:
a2f23071
DJ
841 /* Call attach_thread whether or not we already know about a
842 thread with this thread ID. */
93815fbf 843 attach_thread (ptid, msg.th_p, &ti);
fb0e1ba7 844
4d9850d3 845 break;
fb0e1ba7 846
4d9850d3 847 case TD_DEATH:
fb0e1ba7 848
4d9850d3 849 if (!in_thread_list (ptid))
8a3fe4f8 850 error (_("Spurious thread death event."));
fb0e1ba7 851
93815fbf 852 detach_thread (ptid, print_thread_events);
fb0e1ba7 853
4d9850d3 854 break;
fb0e1ba7 855
4d9850d3 856 default:
8a3fe4f8 857 error (_("Spurious thread event."));
4d9850d3 858 }
fb0e1ba7 859 }
4d9850d3 860 while (loop);
fb0e1ba7
MK
861}
862
39f77062
KB
863static ptid_t
864thread_db_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
fb0e1ba7 865{
39f77062 866 extern ptid_t trap_ptid;
fb0e1ba7 867
39f77062
KB
868 if (GET_PID (ptid) != -1 && is_thread (ptid))
869 ptid = lwp_from_thread (ptid);
fb0e1ba7 870
39f77062 871 ptid = target_beneath->to_wait (ptid, ourstatus);
fb0e1ba7 872
1111f4aa
NR
873 if (ourstatus->kind == TARGET_WAITKIND_EXITED
874 || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
39f77062 875 return pid_to_ptid (-1);
fb0e1ba7 876
3f64f7b1
DJ
877 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
878 {
879 remove_thread_event_breakpoints ();
880 unpush_target (&thread_db_ops);
881 using_thread_db = 0;
882
883 return pid_to_ptid (GET_PID (ptid));
884 }
885
4105de34
DJ
886 /* If we do not know about the main thread yet, this would be a good time to
887 find it. */
888 if (ourstatus->kind == TARGET_WAITKIND_STOPPED && !have_threads ())
889 thread_db_find_new_threads ();
890
fb0e1ba7
MK
891 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
892 && ourstatus->value.sig == TARGET_SIGNAL_TRAP)
893 /* Check for a thread event. */
39f77062 894 check_event (ptid);
fb0e1ba7 895
4105de34
DJ
896 if (have_threads ())
897 {
898 /* Change ptids back into the higher level PID + TID format. If
899 the thread is dead and no longer on the thread list, we will
900 get back a dead ptid. This can occur if the thread death
901 event gets postponed by other simultaneous events. In such a
902 case, we want to just ignore the event and continue on. */
903
904 if (!ptid_equal (trap_ptid, null_ptid))
905 trap_ptid = thread_from_lwp (trap_ptid);
906
907 ptid = thread_from_lwp (ptid);
908 if (GET_PID (ptid) == -1)
909 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
910 }
fb0e1ba7 911
b9b5d7ea 912 return ptid;
fb0e1ba7
MK
913}
914
fb0e1ba7
MK
915static void
916thread_db_kill (void)
917{
c194fbe1
MK
918 /* There's no need to save & restore inferior_ptid here, since the
919 inferior isn't supposed to survive this function call. */
920 inferior_ptid = lwp_from_thread (inferior_ptid);
fb0e1ba7
MK
921 target_beneath->to_kill ();
922}
923
fb0e1ba7
MK
924static void
925thread_db_mourn_inferior (void)
926{
c194fbe1
MK
927 /* Forget about the child's process ID. We shouldn't need it
928 anymore. */
929 proc_handle.pid = 0;
fb0e1ba7
MK
930
931 target_beneath->to_mourn_inferior ();
043b2f77 932
e23fc6de
DJ
933 /* Delete the old thread event breakpoints. Do this after mourning
934 the inferior, so that we don't try to uninsert them. */
935 remove_thread_event_breakpoints ();
936
b26a6851
AC
937 /* Detach thread_db target ops. */
938 unpush_target (&thread_db_ops);
939 using_thread_db = 0;
fb0e1ba7
MK
940}
941
fb0e1ba7
MK
942static int
943find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
944{
945 td_thrinfo_t ti;
946 td_err_e err;
39f77062 947 ptid_t ptid;
fb0e1ba7
MK
948
949 err = td_thr_get_info_p (th_p, &ti);
950 if (err != TD_OK)
8a3fe4f8 951 error (_("find_new_threads_callback: cannot get thread info: %s"),
3197744f 952 thread_db_err_str (err));
fb0e1ba7 953
21bf60fe
MK
954 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
955 return 0; /* A zombie -- ignore. */
5fd913cc 956
1bac0d4d 957 ptid = ptid_build (GET_PID (inferior_ptid), ti.ti_lid, ti.ti_tid);
fb0e1ba7 958
4105de34
DJ
959 if (ti.ti_tid == 0)
960 {
961 /* A thread ID of zero means that this is the main thread, but
962 glibc has not yet initialized thread-local storage and the
963 pthread library. We do not know what the thread's TID will
964 be yet. Just enable event reporting and otherwise ignore
965 it. */
966
967 err = td_thr_event_enable_p (th_p, 1);
968 if (err != TD_OK)
969 error (_("Cannot enable thread event reporting for %s: %s"),
970 target_pid_to_str (ptid), thread_db_err_str (err));
971
972 return 0;
973 }
974
21bf60fe 975 if (!in_thread_list (ptid))
93815fbf 976 attach_thread (ptid, th_p, &ti);
fb0e1ba7
MK
977
978 return 0;
979}
980
981static void
982thread_db_find_new_threads (void)
983{
984 td_err_e err;
985
986 /* Iterate over all user-space threads to discover new threads. */
987 err = td_ta_thr_iter_p (thread_agent, find_new_threads_callback, NULL,
988 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
989 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
990 if (err != TD_OK)
8a3fe4f8 991 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
fb0e1ba7
MK
992}
993
994static char *
39f77062 995thread_db_pid_to_str (ptid_t ptid)
fb0e1ba7 996{
39f77062 997 if (is_thread (ptid))
fb0e1ba7
MK
998 {
999 static char buf[64];
5365276c 1000 struct thread_info *thread_info;
fb0e1ba7 1001
5365276c 1002 thread_info = find_thread_pid (ptid);
28b17333 1003 if (thread_info == NULL)
027c0295 1004 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld) (Missing)",
28b17333 1005 GET_THREAD (ptid), GET_LWP (ptid));
fb0e1ba7 1006 else
027c0295 1007 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
28b17333 1008 GET_THREAD (ptid), GET_LWP (ptid));
fb0e1ba7
MK
1009
1010 return buf;
1011 }
1012
39f77062
KB
1013 if (target_beneath->to_pid_to_str (ptid))
1014 return target_beneath->to_pid_to_str (ptid);
fb0e1ba7 1015
39f77062 1016 return normal_pid_to_str (ptid);
fb0e1ba7
MK
1017}
1018
28b17333
DJ
1019/* Return a string describing the state of the thread specified by
1020 INFO. */
1021
1022static char *
1023thread_db_extra_thread_info (struct thread_info *info)
1024{
1025 if (info->private->dying)
1026 return "Exiting";
1027
1028 return NULL;
1029}
1030
4105de34
DJ
1031/* Return 1 if this thread has the same LWP as the passed PTID. */
1032
1033static int
1034same_ptid_callback (struct thread_info *thread, void *arg)
1035{
1036 ptid_t *ptid_p = arg;
1037
1038 return GET_LWP (thread->ptid) == GET_LWP (*ptid_p);
1039}
1040
b2756930
KB
1041/* Get the address of the thread local variable in load module LM which
1042 is stored at OFFSET within the thread local storage for thread PTID. */
3f47be5c
EZ
1043
1044static CORE_ADDR
b2756930
KB
1045thread_db_get_thread_local_address (ptid_t ptid,
1046 CORE_ADDR lm,
b4acd559 1047 CORE_ADDR offset)
3f47be5c 1048{
4105de34
DJ
1049 /* If we have not discovered any threads yet, check now. */
1050 if (!is_thread (ptid) && !have_threads ())
1051 thread_db_find_new_threads ();
1052
1053 /* Try to find a matching thread if we still have the LWP ID instead
1054 of the thread ID. */
1055 if (!is_thread (ptid))
1056 {
1057 struct thread_info *thread;
1058
1059 thread = iterate_over_threads (same_ptid_callback, &ptid);
1060 if (thread != NULL)
1061 ptid = thread->ptid;
1062 }
1063
3f47be5c
EZ
1064 if (is_thread (ptid))
1065 {
3f47be5c 1066 td_err_e err;
3f47be5c 1067 void *address;
5365276c 1068 struct thread_info *thread_info;
3f47be5c
EZ
1069
1070 /* glibc doesn't provide the needed interface. */
b4acd559 1071 if (!td_thr_tls_get_addr_p)
109c3e39
AC
1072 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1073 _("No TLS library support"));
3f47be5c 1074
b2756930
KB
1075 /* Caller should have verified that lm != 0. */
1076 gdb_assert (lm != 0);
3f47be5c
EZ
1077
1078 /* Get info about the thread. */
5365276c 1079 thread_info = find_thread_pid (ptid);
a787bedf 1080 gdb_assert (thread_info);
5365276c
DJ
1081 thread_db_map_id2thr (thread_info, 1);
1082
3f47be5c 1083 /* Finally, get the address of the variable. */
87177905
TS
1084 err = td_thr_tls_get_addr_p (&thread_info->private->th,
1085 (void *)(size_t) lm,
5365276c 1086 offset, &address);
3f47be5c
EZ
1087
1088#ifdef THREAD_DB_HAS_TD_NOTALLOC
1089 /* The memory hasn't been allocated, yet. */
1090 if (err == TD_NOTALLOC)
b4acd559
JJ
1091 /* Now, if libthread_db provided the initialization image's
1092 address, we *could* try to build a non-lvalue value from
1093 the initialization image. */
109c3e39
AC
1094 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1095 _("TLS not allocated yet"));
3f47be5c
EZ
1096#endif
1097
1098 /* Something else went wrong. */
1099 if (err != TD_OK)
109c3e39
AC
1100 throw_error (TLS_GENERIC_ERROR,
1101 (("%s")), thread_db_err_str (err));
3f47be5c
EZ
1102
1103 /* Cast assuming host == target. Joy. */
16451949
AS
1104 /* Do proper sign extension for the target. */
1105 gdb_assert (exec_bfd);
1106 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1107 ? (CORE_ADDR) (intptr_t) address
1108 : (CORE_ADDR) (uintptr_t) address);
3f47be5c
EZ
1109 }
1110
1111 if (target_beneath->to_get_thread_local_address)
b2756930 1112 return target_beneath->to_get_thread_local_address (ptid, lm, offset);
93ad78a7 1113 else
109c3e39
AC
1114 throw_error (TLS_GENERIC_ERROR,
1115 _("TLS not supported on this target"));
3f47be5c
EZ
1116}
1117
fb0e1ba7
MK
1118static void
1119init_thread_db_ops (void)
1120{
1121 thread_db_ops.to_shortname = "multi-thread";
1122 thread_db_ops.to_longname = "multi-threaded child process.";
1123 thread_db_ops.to_doc = "Threads and pthreads support.";
1124 thread_db_ops.to_detach = thread_db_detach;
1125 thread_db_ops.to_resume = thread_db_resume;
1126 thread_db_ops.to_wait = thread_db_wait;
fb0e1ba7 1127 thread_db_ops.to_kill = thread_db_kill;
fb0e1ba7 1128 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
fb0e1ba7
MK
1129 thread_db_ops.to_find_new_threads = thread_db_find_new_threads;
1130 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
1131 thread_db_ops.to_stratum = thread_stratum;
1132 thread_db_ops.to_has_thread_control = tc_schedlock;
3f47be5c
EZ
1133 thread_db_ops.to_get_thread_local_address
1134 = thread_db_get_thread_local_address;
28b17333 1135 thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
fb0e1ba7
MK
1136 thread_db_ops.to_magic = OPS_MAGIC;
1137}
1138
1139void
1140_initialize_thread_db (void)
1141{
1142 /* Only initialize the module if we can load libthread_db. */
1143 if (thread_db_load ())
1144 {
1145 init_thread_db_ops ();
1146 add_target (&thread_db_ops);
1147
1148 /* Add ourselves to objfile event chain. */
06d3b283 1149 observer_attach_new_objfile (thread_db_new_objfile);
fb0e1ba7
MK
1150 }
1151}
This page took 0.942635 seconds and 4 git commands to generate.