2004-04-21 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / thread-db.c
CommitLineData
fb0e1ba7 1/* libthread_db assisted debugging support, generic parts.
1bac305b 2
a2f23071 3 Copyright 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
fb0e1ba7
MK
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22#include "defs.h"
23
24#include "gdb_assert.h"
25#include <dlfcn.h>
26#include "gdb_proc_service.h"
27#include "gdb_thread_db.h"
28
bda9cb72 29#include "bfd.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"
fb0e1ba7 37
a2f23071
DJ
38#ifdef HAVE_GNU_LIBC_VERSION_H
39#include <gnu/libc-version.h>
40#endif
41
fb0e1ba7
MK
42#ifndef LIBTHREAD_DB_SO
43#define LIBTHREAD_DB_SO "libthread_db.so.1"
44#endif
45
8605d56e
AC
46/* If we're running on GNU/Linux, we must explicitly attach to any new
47 threads. */
fb0e1ba7
MK
48
49/* FIXME: There is certainly some room for improvements:
50 - Cache LWP ids.
51 - Bypass libthread_db when fetching or storing registers for
52 threads bound to a LWP. */
53
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
60/* Pointer to the next function on the objfile event chain. */
b4acd559 61static void (*target_new_objfile_chain) (struct objfile * objfile);
fb0e1ba7
MK
62
63/* Non-zero if we're using this module's target vector. */
64static int using_thread_db;
65
c194fbe1
MK
66/* Non-zero if we have to keep this module's target vector active
67 across re-runs. */
bda9cb72
MK
68static int keep_thread_db;
69
fb0e1ba7
MK
70/* Non-zero if we have determined the signals used by the threads
71 library. */
72static int thread_signals;
73static sigset_t thread_stop_set;
74static sigset_t thread_print_set;
75
76/* Structure that identifies the child process for the
77 <proc_service.h> interface. */
78static struct ps_prochandle proc_handle;
79
80/* Connection to the libthread_db library. */
81static td_thragent_t *thread_agent;
82
83/* Pointers to the libthread_db functions. */
84
85static td_err_e (*td_init_p) (void);
86
b4acd559
JJ
87static td_err_e (*td_ta_new_p) (struct ps_prochandle * ps,
88 td_thragent_t **ta);
fb0e1ba7
MK
89static td_err_e (*td_ta_map_id2thr_p) (const td_thragent_t *ta, thread_t pt,
90 td_thrhandle_t *__th);
b4acd559
JJ
91static td_err_e (*td_ta_map_lwp2thr_p) (const td_thragent_t *ta,
92 lwpid_t lwpid, td_thrhandle_t *th);
fb0e1ba7 93static td_err_e (*td_ta_thr_iter_p) (const td_thragent_t *ta,
b4acd559
JJ
94 td_thr_iter_f *callback, void *cbdata_p,
95 td_thr_state_e state, int ti_pri,
96 sigset_t *ti_sigmask_p,
fb0e1ba7
MK
97 unsigned int ti_user_flags);
98static td_err_e (*td_ta_event_addr_p) (const td_thragent_t *ta,
99 td_event_e event, td_notify_t *ptr);
100static td_err_e (*td_ta_set_event_p) (const td_thragent_t *ta,
101 td_thr_events_t *event);
102static td_err_e (*td_ta_event_getmsg_p) (const td_thragent_t *ta,
103 td_event_msg_t *msg);
104
105static td_err_e (*td_thr_validate_p) (const td_thrhandle_t *th);
106static td_err_e (*td_thr_get_info_p) (const td_thrhandle_t *th,
107 td_thrinfo_t *infop);
108static td_err_e (*td_thr_getfpregs_p) (const td_thrhandle_t *th,
109 gdb_prfpregset_t *regset);
110static td_err_e (*td_thr_getgregs_p) (const td_thrhandle_t *th,
111 prgregset_t gregs);
112static td_err_e (*td_thr_setfpregs_p) (const td_thrhandle_t *th,
113 const gdb_prfpregset_t *fpregs);
114static td_err_e (*td_thr_setgregs_p) (const td_thrhandle_t *th,
115 prgregset_t gregs);
b4acd559
JJ
116static td_err_e (*td_thr_event_enable_p) (const td_thrhandle_t *th,
117 int event);
fb0e1ba7 118
3f47be5c 119static td_err_e (*td_thr_tls_get_addr_p) (const td_thrhandle_t *th,
b4acd559
JJ
120 void *map_address,
121 size_t offset, void **address);
3f47be5c 122
fb0e1ba7
MK
123/* Location of the thread creation event breakpoint. The code at this
124 location in the child process will be called by the pthread library
125 whenever a new thread is created. By setting a special breakpoint
126 at this location, GDB can detect when a new thread is created. We
127 obtain this location via the td_ta_event_addr call. */
128static CORE_ADDR td_create_bp_addr;
129
130/* Location of the thread death event breakpoint. */
131static CORE_ADDR td_death_bp_addr;
132
133/* Prototypes for local functions. */
bda9cb72 134static void thread_db_find_new_threads (void);
5365276c
DJ
135static void attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
136 const td_thrinfo_t *ti_p, int verbose);
a2f23071 137static void detach_thread (ptid_t ptid, int verbose);
fb0e1ba7
MK
138\f
139
140/* Building process ids. */
141
ca6724c1
KB
142#define GET_PID(ptid) ptid_get_pid (ptid)
143#define GET_LWP(ptid) ptid_get_lwp (ptid)
144#define GET_THREAD(ptid) ptid_get_tid (ptid)
fb0e1ba7 145
ca6724c1
KB
146#define is_lwp(ptid) (GET_LWP (ptid) != 0)
147#define is_thread(ptid) (GET_THREAD (ptid) != 0)
fb0e1ba7 148
ca6724c1
KB
149#define BUILD_LWP(lwp, pid) ptid_build (pid, lwp, 0)
150#define BUILD_THREAD(tid, pid) ptid_build (pid, 0, tid)
fb0e1ba7
MK
151\f
152
5365276c
DJ
153/* Use "struct private_thread_info" to cache thread state. This is
154 a substantial optimization. */
155
fb0e1ba7
MK
156struct private_thread_info
157{
a2f23071
DJ
158 /* Flag set when we see a TD_DEATH event for this thread. */
159 unsigned int dying:1;
160
5365276c 161 /* Cached thread state. */
b4acd559
JJ
162 unsigned int th_valid:1;
163 unsigned int ti_valid:1;
5365276c
DJ
164
165 td_thrhandle_t th;
166 td_thrinfo_t ti;
fb0e1ba7 167};
fb0e1ba7 168\f
21bf60fe 169
fb0e1ba7
MK
170static char *
171thread_db_err_str (td_err_e err)
172{
173 static char buf[64];
174
175 switch (err)
176 {
177 case TD_OK:
178 return "generic 'call succeeded'";
179 case TD_ERR:
180 return "generic error";
181 case TD_NOTHR:
182 return "no thread to satisfy query";
183 case TD_NOSV:
184 return "no sync handle to satisfy query";
185 case TD_NOLWP:
186 return "no LWP to satisfy query";
187 case TD_BADPH:
188 return "invalid process handle";
189 case TD_BADTH:
190 return "invalid thread handle";
191 case TD_BADSH:
192 return "invalid synchronization handle";
193 case TD_BADTA:
194 return "invalid thread agent";
195 case TD_BADKEY:
196 return "invalid key";
197 case TD_NOMSG:
198 return "no event message for getmsg";
199 case TD_NOFPREGS:
200 return "FPU register set not available";
201 case TD_NOLIBTHREAD:
202 return "application not linked with libthread";
203 case TD_NOEVENT:
204 return "requested event is not supported";
205 case TD_NOCAPAB:
206 return "capability not available";
207 case TD_DBERR:
208 return "debugger service failed";
209 case TD_NOAPLIC:
210 return "operation not applicable to";
211 case TD_NOTSD:
212 return "no thread-specific data for this thread";
213 case TD_MALLOC:
214 return "malloc failed";
215 case TD_PARTIALREG:
216 return "only part of register set was written/read";
217 case TD_NOXREGS:
218 return "X register set not available for this thread";
219 default:
220 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
221 return buf;
222 }
223}
224
225static char *
226thread_db_state_str (td_thr_state_e state)
227{
228 static char buf[64];
229
230 switch (state)
231 {
232 case TD_THR_STOPPED:
233 return "stopped by debugger";
234 case TD_THR_RUN:
235 return "runnable";
236 case TD_THR_ACTIVE:
237 return "active";
238 case TD_THR_ZOMBIE:
239 return "zombie";
240 case TD_THR_SLEEP:
241 return "sleeping";
242 case TD_THR_STOPPED_ASLEEP:
243 return "stopped by debugger AND blocked";
244 default:
245 snprintf (buf, sizeof (buf), "unknown thread_db state %d", state);
246 return buf;
247 }
248}
249\f
5365276c 250/* A callback function for td_ta_thr_iter, which we use to map all
cdbc0b18 251 threads to LWPs.
5365276c
DJ
252
253 THP is a handle to the current thread; if INFOP is not NULL, the
254 struct thread_info associated with this thread is returned in
255 *INFOP. */
256
257static int
258thread_get_info_callback (const td_thrhandle_t *thp, void *infop)
259{
260 td_thrinfo_t ti;
261 td_err_e err;
262 struct thread_info *thread_info;
263 ptid_t thread_ptid;
264
265 err = td_thr_get_info_p (thp, &ti);
266 if (err != TD_OK)
b4acd559 267 error ("thread_get_info_callback: cannot get thread info: %s",
5365276c
DJ
268 thread_db_err_str (err));
269
270 /* Fill the cache. */
271 thread_ptid = BUILD_THREAD (ti.ti_tid, GET_PID (inferior_ptid));
272 thread_info = find_thread_pid (thread_ptid);
273
274 if (thread_info == NULL)
275 {
276 /* New thread. Attach to it now (why wait?). */
277 attach_thread (thread_ptid, thp, &ti, 1);
278 thread_info = find_thread_pid (thread_ptid);
279 gdb_assert (thread_info != NULL);
280 }
281
282 memcpy (&thread_info->private->th, thp, sizeof (*thp));
283 thread_info->private->th_valid = 1;
284 memcpy (&thread_info->private->ti, &ti, sizeof (ti));
285 thread_info->private->ti_valid = 1;
286
287 if (infop != NULL)
288 *(struct thread_info **) infop = thread_info;
289
290 return 0;
291}
292
293/* Accessor functions for the thread_db information, with caching. */
fb0e1ba7 294
5365276c
DJ
295static void
296thread_db_map_id2thr (struct thread_info *thread_info, int fatal)
297{
298 td_err_e err;
299
300 if (thread_info->private->th_valid)
301 return;
302
303 err = td_ta_map_id2thr_p (thread_agent, GET_THREAD (thread_info->ptid),
304 &thread_info->private->th);
305 if (err != TD_OK)
306 {
307 if (fatal)
308 error ("Cannot find thread %ld: %s",
b4acd559
JJ
309 (long) GET_THREAD (thread_info->ptid),
310 thread_db_err_str (err));
5365276c
DJ
311 }
312 else
313 thread_info->private->th_valid = 1;
314}
315
316static td_thrinfo_t *
317thread_db_get_info (struct thread_info *thread_info)
318{
319 td_err_e err;
320
321 if (thread_info->private->ti_valid)
322 return &thread_info->private->ti;
323
b4acd559 324 if (!thread_info->private->th_valid)
5365276c
DJ
325 thread_db_map_id2thr (thread_info, 1);
326
b4acd559
JJ
327 err =
328 td_thr_get_info_p (&thread_info->private->th, &thread_info->private->ti);
5365276c 329 if (err != TD_OK)
b4acd559 330 error ("thread_db_get_info: cannot get thread info: %s",
5365276c
DJ
331 thread_db_err_str (err));
332
333 thread_info->private->ti_valid = 1;
334 return &thread_info->private->ti;
335}
336\f
fb0e1ba7
MK
337/* Convert between user-level thread ids and LWP ids. */
338
39f77062
KB
339static ptid_t
340thread_from_lwp (ptid_t ptid)
fb0e1ba7 341{
fb0e1ba7
MK
342 td_thrhandle_t th;
343 td_err_e err;
5365276c
DJ
344 struct thread_info *thread_info;
345 ptid_t thread_ptid;
fb0e1ba7 346
39f77062
KB
347 if (GET_LWP (ptid) == 0)
348 ptid = BUILD_LWP (GET_PID (ptid), GET_PID (ptid));
fb0e1ba7 349
39f77062 350 gdb_assert (is_lwp (ptid));
fb0e1ba7 351
39f77062 352 err = td_ta_map_lwp2thr_p (thread_agent, GET_LWP (ptid), &th);
fb0e1ba7 353 if (err != TD_OK)
823ca731 354 error ("Cannot find user-level thread for LWP %ld: %s",
39f77062 355 GET_LWP (ptid), thread_db_err_str (err));
fb0e1ba7 356
5365276c
DJ
357 thread_info = NULL;
358 thread_get_info_callback (&th, &thread_info);
359 gdb_assert (thread_info && thread_info->private->ti_valid);
fb0e1ba7 360
5365276c 361 return BUILD_THREAD (thread_info->private->ti.ti_tid, GET_PID (ptid));
fb0e1ba7
MK
362}
363
39f77062
KB
364static ptid_t
365lwp_from_thread (ptid_t ptid)
fb0e1ba7 366{
5365276c
DJ
367 struct thread_info *thread_info;
368 ptid_t thread_ptid;
fb0e1ba7 369
21bf60fe 370 if (!is_thread (ptid))
39f77062 371 return ptid;
fb0e1ba7 372
5365276c
DJ
373 thread_info = find_thread_pid (ptid);
374 thread_db_get_info (thread_info);
fb0e1ba7 375
5365276c 376 return BUILD_LWP (thread_info->private->ti.ti_lid, GET_PID (ptid));
fb0e1ba7
MK
377}
378\f
379
380void
381thread_db_init (struct target_ops *target)
382{
383 target_beneath = target;
384}
385
5220ea4c
AC
386static void *
387verbose_dlsym (void *handle, const char *name)
388{
389 void *sym = dlsym (handle, name);
390 if (sym == NULL)
391 warning ("Symbol \"%s\" not found in libthread_db: %s", name, dlerror ());
392 return sym;
393}
394
fb0e1ba7
MK
395static int
396thread_db_load (void)
397{
398 void *handle;
399 td_err_e err;
400
401 handle = dlopen (LIBTHREAD_DB_SO, RTLD_NOW);
402 if (handle == NULL)
f7c1e0f3 403 {
b4acd559 404 fprintf_filtered (gdb_stderr, "\n\ndlopen failed on '%s' - %s\n",
f7c1e0f3 405 LIBTHREAD_DB_SO, dlerror ());
b4acd559 406 fprintf_filtered (gdb_stderr,
f7c1e0f3
MS
407 "GDB will not be able to debug pthreads.\n\n");
408 return 0;
409 }
fb0e1ba7
MK
410
411 /* Initialize pointers to the dynamic library functions we will use.
412 Essential functions first. */
413
5220ea4c 414 td_init_p = verbose_dlsym (handle, "td_init");
fb0e1ba7
MK
415 if (td_init_p == NULL)
416 return 0;
417
5220ea4c 418 td_ta_new_p = verbose_dlsym (handle, "td_ta_new");
fb0e1ba7
MK
419 if (td_ta_new_p == NULL)
420 return 0;
421
5220ea4c 422 td_ta_map_id2thr_p = verbose_dlsym (handle, "td_ta_map_id2thr");
fb0e1ba7
MK
423 if (td_ta_map_id2thr_p == NULL)
424 return 0;
425
5220ea4c 426 td_ta_map_lwp2thr_p = verbose_dlsym (handle, "td_ta_map_lwp2thr");
fb0e1ba7
MK
427 if (td_ta_map_lwp2thr_p == NULL)
428 return 0;
429
5220ea4c 430 td_ta_thr_iter_p = verbose_dlsym (handle, "td_ta_thr_iter");
fb0e1ba7
MK
431 if (td_ta_thr_iter_p == NULL)
432 return 0;
433
5220ea4c 434 td_thr_validate_p = verbose_dlsym (handle, "td_thr_validate");
fb0e1ba7
MK
435 if (td_thr_validate_p == NULL)
436 return 0;
437
5220ea4c 438 td_thr_get_info_p = verbose_dlsym (handle, "td_thr_get_info");
fb0e1ba7
MK
439 if (td_thr_get_info_p == NULL)
440 return 0;
441
5220ea4c 442 td_thr_getfpregs_p = verbose_dlsym (handle, "td_thr_getfpregs");
fb0e1ba7
MK
443 if (td_thr_getfpregs_p == NULL)
444 return 0;
445
5220ea4c 446 td_thr_getgregs_p = verbose_dlsym (handle, "td_thr_getgregs");
fb0e1ba7
MK
447 if (td_thr_getgregs_p == NULL)
448 return 0;
449
5220ea4c 450 td_thr_setfpregs_p = verbose_dlsym (handle, "td_thr_setfpregs");
fb0e1ba7
MK
451 if (td_thr_setfpregs_p == NULL)
452 return 0;
453
5220ea4c 454 td_thr_setgregs_p = verbose_dlsym (handle, "td_thr_setgregs");
fb0e1ba7
MK
455 if (td_thr_setgregs_p == NULL)
456 return 0;
457
458 /* Initialize the library. */
459 err = td_init_p ();
460 if (err != TD_OK)
461 {
462 warning ("Cannot initialize libthread_db: %s", thread_db_err_str (err));
463 return 0;
464 }
465
466 /* These are not essential. */
467 td_ta_event_addr_p = dlsym (handle, "td_ta_event_addr");
468 td_ta_set_event_p = dlsym (handle, "td_ta_set_event");
469 td_ta_event_getmsg_p = dlsym (handle, "td_ta_event_getmsg");
470 td_thr_event_enable_p = dlsym (handle, "td_thr_event_enable");
3f47be5c 471 td_thr_tls_get_addr_p = dlsym (handle, "td_thr_tls_get_addr");
fb0e1ba7
MK
472
473 return 1;
474}
475
cdbc0b18 476static td_err_e
24557e30
AC
477enable_thread_event (td_thragent_t *thread_agent, int event, CORE_ADDR *bp)
478{
479 td_notify_t notify;
cdbc0b18 480 td_err_e err;
24557e30
AC
481
482 /* Get the breakpoint address for thread EVENT. */
483 err = td_ta_event_addr_p (thread_agent, event, &notify);
484 if (err != TD_OK)
cdbc0b18 485 return err;
24557e30
AC
486
487 /* Set up the breakpoint. */
488 (*bp) = gdbarch_convert_from_func_ptr_addr (current_gdbarch,
489 (CORE_ADDR) notify.u.bptaddr,
490 &current_target);
491 create_thread_event_breakpoint ((*bp));
492
cdbc0b18 493 return TD_OK;
24557e30
AC
494}
495
fb0e1ba7
MK
496static void
497enable_thread_event_reporting (void)
498{
499 td_thr_events_t events;
500 td_notify_t notify;
501 td_err_e err;
a2f23071
DJ
502#ifdef HAVE_GNU_LIBC_VERSION_H
503 const char *libc_version;
504 int libc_major, libc_minor;
505#endif
fb0e1ba7
MK
506
507 /* We cannot use the thread event reporting facility if these
508 functions aren't available. */
509 if (td_ta_event_addr_p == NULL || td_ta_set_event_p == NULL
510 || td_ta_event_getmsg_p == NULL || td_thr_event_enable_p == NULL)
511 return;
512
513 /* Set the process wide mask saying which events we're interested in. */
514 td_event_emptyset (&events);
515 td_event_addset (&events, TD_CREATE);
a2f23071
DJ
516
517#ifdef HAVE_GNU_LIBC_VERSION_H
fb0e1ba7
MK
518 /* FIXME: kettenis/2000-04-23: The event reporting facility is
519 broken for TD_DEATH events in glibc 2.1.3, so don't enable it for
520 now. */
a2f23071
DJ
521 libc_version = gnu_get_libc_version ();
522 if (sscanf (libc_version, "%d.%d", &libc_major, &libc_minor) == 2
523 && (libc_major > 2 || (libc_major == 2 && libc_minor > 1)))
fb0e1ba7 524#endif
a2f23071 525 td_event_addset (&events, TD_DEATH);
fb0e1ba7
MK
526
527 err = td_ta_set_event_p (thread_agent, &events);
528 if (err != TD_OK)
529 {
530 warning ("Unable to set global thread event mask: %s",
531 thread_db_err_str (err));
532 return;
533 }
534
535 /* Delete previous thread event breakpoints, if any. */
536 remove_thread_event_breakpoints ();
24557e30
AC
537 td_create_bp_addr = 0;
538 td_death_bp_addr = 0;
fb0e1ba7 539
24557e30 540 /* Set up the thread creation event. */
cdbc0b18
RM
541 err = enable_thread_event (thread_agent, TD_CREATE, &td_create_bp_addr);
542 if (err != TD_OK)
fb0e1ba7
MK
543 {
544 warning ("Unable to get location for thread creation breakpoint: %s",
545 thread_db_err_str (err));
546 return;
547 }
548
24557e30 549 /* Set up the thread death event. */
cdbc0b18
RM
550 err = enable_thread_event (thread_agent, TD_DEATH, &td_death_bp_addr);
551 if (err != TD_OK)
fb0e1ba7 552 {
936742ab 553 warning ("Unable to get location for thread death breakpoint: %s",
fb0e1ba7
MK
554 thread_db_err_str (err));
555 return;
556 }
fb0e1ba7
MK
557}
558
559static void
560disable_thread_event_reporting (void)
561{
562 td_thr_events_t events;
563
564 /* Set the process wide mask saying we aren't interested in any
565 events anymore. */
566 td_event_emptyset (&events);
567 td_ta_set_event_p (thread_agent, &events);
568
569 /* Delete thread event breakpoints, if any. */
570 remove_thread_event_breakpoints ();
571 td_create_bp_addr = 0;
572 td_death_bp_addr = 0;
573}
574
575static void
576check_thread_signals (void)
577{
578#ifdef GET_THREAD_SIGNALS
21bf60fe 579 if (!thread_signals)
fb0e1ba7
MK
580 {
581 sigset_t mask;
582 int i;
583
584 GET_THREAD_SIGNALS (&mask);
585 sigemptyset (&thread_stop_set);
586 sigemptyset (&thread_print_set);
587
b9569773 588 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
589 {
590 if (sigismember (&mask, i))
591 {
592 if (signal_stop_update (target_signal_from_host (i), 0))
593 sigaddset (&thread_stop_set, i);
594 if (signal_print_update (target_signal_from_host (i), 0))
595 sigaddset (&thread_print_set, i);
596 thread_signals = 1;
597 }
598 }
599 }
600#endif
601}
602
fb0e1ba7
MK
603static void
604thread_db_new_objfile (struct objfile *objfile)
605{
606 td_err_e err;
607
5220ea4c
AC
608 /* First time through, report that libthread_db was successfuly
609 loaded. Can't print this in in thread_db_load as, at that stage,
610 the interpreter and it's console haven't started. The real
611 problem here is that libthread_db is loaded too early - it should
612 only be loaded when there is a program to debug. */
613 {
614 static int dejavu;
615 if (!dejavu)
616 {
617 Dl_info info;
618 const char *library = NULL;
619 /* Try dladdr. */
620 if (dladdr ((*td_ta_new_p), &info) != 0)
621 library = info.dli_fname;
622 /* Try dlinfo? */
623 if (library == NULL)
624 /* Paranoid - don't let a NULL path slip through. */
625 library = LIBTHREAD_DB_SO;
626 printf_unfiltered ("Using host libthread_db library \"%s\".\n",
627 library);
628 dejavu = 1;
629 }
630 }
631
5bbd998e
MS
632 /* Don't attempt to use thread_db on targets which can not run
633 (core files). */
634 if (objfile == NULL || !target_has_execution)
bda9cb72
MK
635 {
636 /* All symbols have been discarded. If the thread_db target is
c194fbe1 637 active, deactivate it now. */
bda9cb72 638 if (using_thread_db)
c194fbe1
MK
639 {
640 gdb_assert (proc_handle.pid == 0);
641 unpush_target (&thread_db_ops);
642 using_thread_db = 0;
643 }
644
645 keep_thread_db = 0;
bda9cb72
MK
646
647 goto quit;
648 }
649
fb0e1ba7
MK
650 if (using_thread_db)
651 /* Nothing to do. The thread library was already detected and the
652 target vector was already activated. */
653 goto quit;
654
bda9cb72
MK
655 /* Initialize the structure that identifies the child process. Note
656 that at this point there is no guarantee that we actually have a
657 child process. */
39f77062 658 proc_handle.pid = GET_PID (inferior_ptid);
fb0e1ba7 659
bda9cb72 660 /* Now attempt to open a connection to the thread library. */
fb0e1ba7
MK
661 err = td_ta_new_p (&proc_handle, &thread_agent);
662 switch (err)
663 {
664 case TD_NOLIBTHREAD:
bda9cb72 665 /* No thread library was detected. */
fb0e1ba7
MK
666 break;
667
668 case TD_OK:
5220ea4c
AC
669 printf_unfiltered ("[Thread debugging using libthread_db enabled]\n");
670
bda9cb72
MK
671 /* The thread library was detected. Activate the thread_db target. */
672 push_target (&thread_db_ops);
673 using_thread_db = 1;
674
675 /* If the thread library was detected in the main symbol file
676 itself, we assume that the program was statically linked
677 against the thread library and well have to keep this
678 module's target vector activated until forever... Well, at
679 least until all symbols have been discarded anyway (see
680 above). */
681 if (objfile == symfile_objfile)
682 {
683 gdb_assert (proc_handle.pid == 0);
684 keep_thread_db = 1;
685 }
686
687 /* We can only poke around if there actually is a child process.
688 If there is no child process alive, postpone the steps below
689 until one has been created. */
690 if (proc_handle.pid != 0)
691 {
692 enable_thread_event_reporting ();
693 thread_db_find_new_threads ();
694 }
fb0e1ba7
MK
695 break;
696
697 default:
698 warning ("Cannot initialize thread debugging library: %s",
699 thread_db_err_str (err));
700 break;
701 }
702
b4acd559 703quit:
540af400
MS
704 if (target_new_objfile_chain)
705 target_new_objfile_chain (objfile);
fb0e1ba7
MK
706}
707
a2f23071
DJ
708/* Attach to a new thread. This function is called when we receive a
709 TD_CREATE event or when we iterate over all threads and find one
710 that wasn't already in our list. */
711
fb0e1ba7 712static void
39f77062 713attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
fb0e1ba7
MK
714 const td_thrinfo_t *ti_p, int verbose)
715{
716 struct thread_info *tp;
717 td_err_e err;
718
a2f23071
DJ
719 /* If we're being called after a TD_CREATE event, we may already
720 know about this thread. There are two ways this can happen. We
721 may have iterated over all threads between the thread creation
722 and the TD_CREATE event, for instance when the user has issued
723 the `info threads' command before the SIGTRAP for hitting the
724 thread creation breakpoint was reported. Alternatively, the
725 thread may have exited and a new one been created with the same
726 thread ID. In the first case we don't need to do anything; in
727 the second case we should discard information about the dead
728 thread and attach to the new one. */
729 if (in_thread_list (ptid))
730 {
731 tp = find_thread_pid (ptid);
732 gdb_assert (tp != NULL);
733
734 if (!tp->private->dying)
735 return;
736
737 delete_thread (ptid);
738 }
739
fb0e1ba7
MK
740 check_thread_signals ();
741
fb0e1ba7 742 /* Add the thread to GDB's thread list. */
39f77062 743 tp = add_thread (ptid);
fb0e1ba7 744 tp->private = xmalloc (sizeof (struct private_thread_info));
5365276c
DJ
745 memset (tp->private, 0, sizeof (struct private_thread_info));
746
747 if (verbose)
748 printf_unfiltered ("[New %s]\n", target_pid_to_str (ptid));
fb0e1ba7 749
21bf60fe
MK
750 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
751 return; /* A zombie thread -- do not attach. */
5fd913cc 752
8605d56e 753 /* Under GNU/Linux, we have to attach to each and every thread. */
fb0e1ba7 754#ifdef ATTACH_LWP
c194fbe1 755 ATTACH_LWP (BUILD_LWP (ti_p->ti_lid, GET_PID (ptid)), 0);
fb0e1ba7
MK
756#endif
757
758 /* Enable thread event reporting for this thread. */
759 err = td_thr_event_enable_p (th_p, 1);
760 if (err != TD_OK)
761 error ("Cannot enable thread event reporting for %s: %s",
39f77062 762 target_pid_to_str (ptid), thread_db_err_str (err));
fb0e1ba7
MK
763}
764
c194fbe1
MK
765static void
766thread_db_attach (char *args, int from_tty)
767{
768 target_beneath->to_attach (args, from_tty);
769
770 /* Destroy thread info; it's no longer valid. */
771 init_thread_list ();
772
773 /* The child process is now the actual multi-threaded
774 program. Snatch its process ID... */
775 proc_handle.pid = GET_PID (inferior_ptid);
776
777 /* ...and perform the remaining initialization steps. */
778 enable_thread_event_reporting ();
b4acd559 779 thread_db_find_new_threads ();
c194fbe1
MK
780}
781
fb0e1ba7 782static void
39f77062 783detach_thread (ptid_t ptid, int verbose)
fb0e1ba7 784{
a2f23071
DJ
785 struct thread_info *thread_info;
786
fb0e1ba7 787 if (verbose)
39f77062 788 printf_unfiltered ("[%s exited]\n", target_pid_to_str (ptid));
a2f23071
DJ
789
790 /* Don't delete the thread now, because it still reports as active
791 until it has executed a few instructions after the event
792 breakpoint - if we deleted it now, "info threads" would cause us
793 to re-attach to it. Just mark it as having had a TD_DEATH
794 event. This means that we won't delete it from our thread list
795 until we notice that it's dead (via prune_threads), or until
796 something re-uses its thread ID. */
797 thread_info = find_thread_pid (ptid);
798 gdb_assert (thread_info != NULL);
799 thread_info->private->dying = 1;
fb0e1ba7
MK
800}
801
802static void
803thread_db_detach (char *args, int from_tty)
804{
805 disable_thread_event_reporting ();
c194fbe1
MK
806
807 /* There's no need to save & restore inferior_ptid here, since the
808 inferior is supposed to be survive this function call. */
809 inferior_ptid = lwp_from_thread (inferior_ptid);
810
811 /* Forget about the child's process ID. We shouldn't need it
812 anymore. */
813 proc_handle.pid = 0;
fb0e1ba7
MK
814
815 target_beneath->to_detach (args, from_tty);
816}
817
5365276c
DJ
818static int
819clear_lwpid_callback (struct thread_info *thread, void *dummy)
820{
821 /* If we know that our thread implementation is 1-to-1, we could save
822 a certain amount of information; it's not clear how much, so we
823 are always conservative. */
824
825 thread->private->th_valid = 0;
826 thread->private->ti_valid = 0;
827
828 return 0;
829}
830
fb0e1ba7 831static void
39f77062 832thread_db_resume (ptid_t ptid, int step, enum target_signal signo)
fb0e1ba7 833{
39f77062 834 struct cleanup *old_chain = save_inferior_ptid ();
fb0e1ba7 835
39f77062
KB
836 if (GET_PID (ptid) == -1)
837 inferior_ptid = lwp_from_thread (inferior_ptid);
838 else if (is_thread (ptid))
839 ptid = lwp_from_thread (ptid);
fb0e1ba7 840
5365276c
DJ
841 /* Clear cached data which may not be valid after the resume. */
842 iterate_over_threads (clear_lwpid_callback, NULL);
843
39f77062 844 target_beneath->to_resume (ptid, step, signo);
fb0e1ba7
MK
845
846 do_cleanups (old_chain);
847}
848
849/* Check if PID is currently stopped at the location of a thread event
850 breakpoint location. If it is, read the event message and act upon
851 the event. */
852
853static void
39f77062 854check_event (ptid_t ptid)
fb0e1ba7
MK
855{
856 td_event_msg_t msg;
857 td_thrinfo_t ti;
858 td_err_e err;
859 CORE_ADDR stop_pc;
4d9850d3 860 int loop = 0;
fb0e1ba7
MK
861
862 /* Bail out early if we're not at a thread event breakpoint. */
39f77062 863 stop_pc = read_pc_pid (ptid) - DECR_PC_AFTER_BREAK;
fb0e1ba7
MK
864 if (stop_pc != td_create_bp_addr && stop_pc != td_death_bp_addr)
865 return;
866
4d9850d3
JJ
867 /* If we are at a create breakpoint, we do not know what new lwp
868 was created and cannot specifically locate the event message for it.
869 We have to call td_ta_event_getmsg() to get
870 the latest message. Since we have no way of correlating whether
cdbc0b18 871 the event message we get back corresponds to our breakpoint, we must
4d9850d3 872 loop and read all event messages, processing them appropriately.
cdbc0b18
RM
873 This guarantees we will process the correct message before continuing
874 from the breakpoint.
4d9850d3
JJ
875
876 Currently, death events are not enabled. If they are enabled,
877 the death event can use the td_thr_event_getmsg() interface to
878 get the message specifically for that lwp and avoid looping
879 below. */
880
881 loop = 1;
882
883 do
fb0e1ba7 884 {
4d9850d3
JJ
885 err = td_ta_event_getmsg_p (thread_agent, &msg);
886 if (err != TD_OK)
887 {
888 if (err == TD_NOMSG)
889 return;
fb0e1ba7 890
4d9850d3
JJ
891 error ("Cannot get thread event message: %s",
892 thread_db_err_str (err));
893 }
fb0e1ba7 894
4d9850d3
JJ
895 err = td_thr_get_info_p (msg.th_p, &ti);
896 if (err != TD_OK)
897 error ("Cannot get thread info: %s", thread_db_err_str (err));
fb0e1ba7 898
4d9850d3 899 ptid = BUILD_THREAD (ti.ti_tid, GET_PID (ptid));
fb0e1ba7 900
4d9850d3
JJ
901 switch (msg.event)
902 {
903 case TD_CREATE:
a2f23071
DJ
904 /* Call attach_thread whether or not we already know about a
905 thread with this thread ID. */
906 attach_thread (ptid, msg.th_p, &ti, 1);
fb0e1ba7 907
4d9850d3 908 break;
fb0e1ba7 909
4d9850d3 910 case TD_DEATH:
fb0e1ba7 911
4d9850d3
JJ
912 if (!in_thread_list (ptid))
913 error ("Spurious thread death event.");
fb0e1ba7 914
4d9850d3 915 detach_thread (ptid, 1);
fb0e1ba7 916
4d9850d3 917 break;
fb0e1ba7 918
4d9850d3
JJ
919 default:
920 error ("Spurious thread event.");
921 }
fb0e1ba7 922 }
4d9850d3 923 while (loop);
fb0e1ba7
MK
924}
925
39f77062
KB
926static ptid_t
927thread_db_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
fb0e1ba7 928{
39f77062 929 extern ptid_t trap_ptid;
fb0e1ba7 930
39f77062
KB
931 if (GET_PID (ptid) != -1 && is_thread (ptid))
932 ptid = lwp_from_thread (ptid);
fb0e1ba7 933
39f77062 934 ptid = target_beneath->to_wait (ptid, ourstatus);
fb0e1ba7 935
bda9cb72
MK
936 if (proc_handle.pid == 0)
937 /* The current child process isn't the actual multi-threaded
938 program yet, so don't try to do any special thread-specific
939 post-processing and bail out early. */
39f77062 940 return ptid;
bda9cb72 941
fb0e1ba7 942 if (ourstatus->kind == TARGET_WAITKIND_EXITED)
39f77062 943 return pid_to_ptid (-1);
fb0e1ba7
MK
944
945 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
946 && ourstatus->value.sig == TARGET_SIGNAL_TRAP)
947 /* Check for a thread event. */
39f77062 948 check_event (ptid);
fb0e1ba7 949
39f77062
KB
950 if (!ptid_equal (trap_ptid, null_ptid))
951 trap_ptid = thread_from_lwp (trap_ptid);
fb0e1ba7 952
39f77062 953 return thread_from_lwp (ptid);
fb0e1ba7
MK
954}
955
956static int
957thread_db_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
b4acd559 958 struct mem_attrib *attrib, struct target_ops *target)
fb0e1ba7 959{
39f77062 960 struct cleanup *old_chain = save_inferior_ptid ();
fb0e1ba7
MK
961 int xfer;
962
39f77062 963 if (is_thread (inferior_ptid))
fb0e1ba7
MK
964 {
965 /* FIXME: This seems to be necessary to make sure breakpoints
966 are removed. */
21bf60fe 967 if (!target_thread_alive (inferior_ptid))
39f77062 968 inferior_ptid = pid_to_ptid (GET_PID (inferior_ptid));
fb0e1ba7 969 else
39f77062 970 inferior_ptid = lwp_from_thread (inferior_ptid);
fb0e1ba7
MK
971 }
972
b4acd559
JJ
973 xfer =
974 target_beneath->to_xfer_memory (memaddr, myaddr, len, write, attrib,
975 target);
fb0e1ba7
MK
976
977 do_cleanups (old_chain);
978 return xfer;
979}
980
981static void
982thread_db_fetch_registers (int regno)
983{
5365276c 984 struct thread_info *thread_info;
fb0e1ba7
MK
985 prgregset_t gregset;
986 gdb_prfpregset_t fpregset;
987 td_err_e err;
988
21bf60fe 989 if (!is_thread (inferior_ptid))
fb0e1ba7
MK
990 {
991 /* Pass the request to the target beneath us. */
992 target_beneath->to_fetch_registers (regno);
993 return;
994 }
995
5365276c
DJ
996 thread_info = find_thread_pid (inferior_ptid);
997 thread_db_map_id2thr (thread_info, 1);
fb0e1ba7 998
5365276c 999 err = td_thr_getgregs_p (&thread_info->private->th, gregset);
fb0e1ba7
MK
1000 if (err != TD_OK)
1001 error ("Cannot fetch general-purpose registers for thread %ld: %s",
39f77062 1002 (long) GET_THREAD (inferior_ptid), thread_db_err_str (err));
fb0e1ba7 1003
5365276c 1004 err = td_thr_getfpregs_p (&thread_info->private->th, &fpregset);
fb0e1ba7
MK
1005 if (err != TD_OK)
1006 error ("Cannot get floating-point registers for thread %ld: %s",
39f77062 1007 (long) GET_THREAD (inferior_ptid), thread_db_err_str (err));
fb0e1ba7
MK
1008
1009 /* Note that we must call supply_gregset after calling the thread_db
1010 routines because the thread_db routines call ps_lgetgregs and
1011 friends which clobber GDB's register cache. */
1012 supply_gregset ((gdb_gregset_t *) gregset);
1013 supply_fpregset (&fpregset);
1014}
1015
1016static void
1017thread_db_store_registers (int regno)
1018{
fb0e1ba7
MK
1019 prgregset_t gregset;
1020 gdb_prfpregset_t fpregset;
1021 td_err_e err;
5365276c 1022 struct thread_info *thread_info;
fb0e1ba7 1023
21bf60fe 1024 if (!is_thread (inferior_ptid))
fb0e1ba7
MK
1025 {
1026 /* Pass the request to the target beneath us. */
1027 target_beneath->to_store_registers (regno);
1028 return;
1029 }
1030
5365276c
DJ
1031 thread_info = find_thread_pid (inferior_ptid);
1032 thread_db_map_id2thr (thread_info, 1);
fb0e1ba7
MK
1033
1034 if (regno != -1)
1035 {
123a958e 1036 char raw[MAX_REGISTER_SIZE];
fb0e1ba7 1037
4caf0990 1038 deprecated_read_register_gen (regno, raw);
fb0e1ba7
MK
1039 thread_db_fetch_registers (-1);
1040 supply_register (regno, raw);
1041 }
1042
1043 fill_gregset ((gdb_gregset_t *) gregset, -1);
1044 fill_fpregset (&fpregset, -1);
1045
5365276c 1046 err = td_thr_setgregs_p (&thread_info->private->th, gregset);
fb0e1ba7
MK
1047 if (err != TD_OK)
1048 error ("Cannot store general-purpose registers for thread %ld: %s",
39f77062 1049 (long) GET_THREAD (inferior_ptid), thread_db_err_str (err));
5365276c 1050 err = td_thr_setfpregs_p (&thread_info->private->th, &fpregset);
fb0e1ba7
MK
1051 if (err != TD_OK)
1052 error ("Cannot store floating-point registers for thread %ld: %s",
39f77062 1053 (long) GET_THREAD (inferior_ptid), thread_db_err_str (err));
fb0e1ba7
MK
1054}
1055
1056static void
1057thread_db_kill (void)
1058{
c194fbe1
MK
1059 /* There's no need to save & restore inferior_ptid here, since the
1060 inferior isn't supposed to survive this function call. */
1061 inferior_ptid = lwp_from_thread (inferior_ptid);
fb0e1ba7
MK
1062 target_beneath->to_kill ();
1063}
1064
1065static void
1066thread_db_create_inferior (char *exec_file, char *allargs, char **env)
1067{
21bf60fe 1068 if (!keep_thread_db)
c194fbe1
MK
1069 {
1070 unpush_target (&thread_db_ops);
1071 using_thread_db = 0;
1072 }
1073
bda9cb72
MK
1074 target_beneath->to_create_inferior (exec_file, allargs, env);
1075}
fb0e1ba7 1076
bda9cb72 1077static void
39f77062 1078thread_db_post_startup_inferior (ptid_t ptid)
bda9cb72
MK
1079{
1080 if (proc_handle.pid == 0)
1081 {
1082 /* The child process is now the actual multi-threaded
1083 program. Snatch its process ID... */
39f77062 1084 proc_handle.pid = GET_PID (ptid);
fb0e1ba7 1085
bda9cb72
MK
1086 /* ...and perform the remaining initialization steps. */
1087 enable_thread_event_reporting ();
21bf60fe 1088 thread_db_find_new_threads ();
bda9cb72 1089 }
fb0e1ba7
MK
1090}
1091
1092static void
1093thread_db_mourn_inferior (void)
1094{
1095 remove_thread_event_breakpoints ();
c194fbe1
MK
1096
1097 /* Forget about the child's process ID. We shouldn't need it
1098 anymore. */
1099 proc_handle.pid = 0;
fb0e1ba7
MK
1100
1101 target_beneath->to_mourn_inferior ();
043b2f77
JJ
1102
1103 /* Detach thread_db target ops if not dealing with a statically
1104 linked threaded program. This allows a corefile to be debugged
1105 after finishing debugging of a threaded program. At present,
1106 debugging a statically-linked threaded program is broken, but
1107 the check is added below in the event that it is fixed in the
1108 future. */
1109 if (!keep_thread_db)
1110 {
1111 unpush_target (&thread_db_ops);
1112 using_thread_db = 0;
1113 }
fb0e1ba7
MK
1114}
1115
1116static int
39f77062 1117thread_db_thread_alive (ptid_t ptid)
fb0e1ba7 1118{
5fd913cc 1119 td_thrhandle_t th;
21bf60fe 1120 td_err_e err;
5fd913cc 1121
39f77062 1122 if (is_thread (ptid))
fb0e1ba7 1123 {
5365276c
DJ
1124 struct thread_info *thread_info;
1125 thread_info = find_thread_pid (ptid);
fb0e1ba7 1126
5365276c 1127 thread_db_map_id2thr (thread_info, 0);
b4acd559 1128 if (!thread_info->private->th_valid)
fb0e1ba7
MK
1129 return 0;
1130
5365276c 1131 err = td_thr_validate_p (&thread_info->private->th);
5fd913cc
MS
1132 if (err != TD_OK)
1133 return 0;
1134
b4acd559 1135 if (!thread_info->private->ti_valid)
5365276c 1136 {
b4acd559
JJ
1137 err =
1138 td_thr_get_info_p (&thread_info->private->th,
1139 &thread_info->private->ti);
5365276c
DJ
1140 if (err != TD_OK)
1141 return 0;
1142 thread_info->private->ti_valid = 1;
1143 }
1144
1145 if (thread_info->private->ti.ti_state == TD_THR_UNKNOWN
1146 || thread_info->private->ti.ti_state == TD_THR_ZOMBIE)
21bf60fe 1147 return 0; /* A zombie thread. */
5fd913cc 1148
fb0e1ba7
MK
1149 return 1;
1150 }
1151
1152 if (target_beneath->to_thread_alive)
39f77062 1153 return target_beneath->to_thread_alive (ptid);
fb0e1ba7
MK
1154
1155 return 0;
1156}
1157
1158static int
1159find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1160{
1161 td_thrinfo_t ti;
1162 td_err_e err;
39f77062 1163 ptid_t ptid;
fb0e1ba7
MK
1164
1165 err = td_thr_get_info_p (th_p, &ti);
1166 if (err != TD_OK)
b4acd559 1167 error ("find_new_threads_callback: cannot get thread info: %s",
3197744f 1168 thread_db_err_str (err));
fb0e1ba7 1169
21bf60fe
MK
1170 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
1171 return 0; /* A zombie -- ignore. */
5fd913cc 1172
39f77062 1173 ptid = BUILD_THREAD (ti.ti_tid, GET_PID (inferior_ptid));
fb0e1ba7 1174
21bf60fe 1175 if (!in_thread_list (ptid))
39f77062 1176 attach_thread (ptid, th_p, &ti, 1);
fb0e1ba7
MK
1177
1178 return 0;
1179}
1180
1181static void
1182thread_db_find_new_threads (void)
1183{
1184 td_err_e err;
1185
1186 /* Iterate over all user-space threads to discover new threads. */
1187 err = td_ta_thr_iter_p (thread_agent, find_new_threads_callback, NULL,
1188 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1189 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1190 if (err != TD_OK)
1191 error ("Cannot find new threads: %s", thread_db_err_str (err));
1192}
1193
1194static char *
39f77062 1195thread_db_pid_to_str (ptid_t ptid)
fb0e1ba7 1196{
39f77062 1197 if (is_thread (ptid))
fb0e1ba7
MK
1198 {
1199 static char buf[64];
5365276c 1200 td_thrinfo_t *ti_p;
fb0e1ba7 1201 td_err_e err;
5365276c 1202 struct thread_info *thread_info;
fb0e1ba7 1203
5365276c
DJ
1204 thread_info = find_thread_pid (ptid);
1205 thread_db_map_id2thr (thread_info, 0);
b4acd559 1206 if (!thread_info->private->th_valid)
5365276c 1207 {
b4acd559
JJ
1208 snprintf (buf, sizeof (buf), "Thread %ld (Missing)",
1209 GET_THREAD (ptid));
5365276c
DJ
1210 return buf;
1211 }
fb0e1ba7 1212
5365276c 1213 ti_p = thread_db_get_info (thread_info);
fb0e1ba7 1214
5365276c 1215 if (ti_p->ti_state == TD_THR_ACTIVE && ti_p->ti_lid != 0)
fb0e1ba7
MK
1216 {
1217 snprintf (buf, sizeof (buf), "Thread %ld (LWP %d)",
5365276c 1218 (long) ti_p->ti_tid, ti_p->ti_lid);
fb0e1ba7
MK
1219 }
1220 else
1221 {
1222 snprintf (buf, sizeof (buf), "Thread %ld (%s)",
b4acd559
JJ
1223 (long) ti_p->ti_tid,
1224 thread_db_state_str (ti_p->ti_state));
fb0e1ba7
MK
1225 }
1226
1227 return buf;
1228 }
1229
39f77062
KB
1230 if (target_beneath->to_pid_to_str (ptid))
1231 return target_beneath->to_pid_to_str (ptid);
fb0e1ba7 1232
39f77062 1233 return normal_pid_to_str (ptid);
fb0e1ba7
MK
1234}
1235
3f47be5c
EZ
1236/* Get the address of the thread local variable in OBJFILE which is
1237 stored at OFFSET within the thread local storage for thread PTID. */
1238
1239static CORE_ADDR
1240thread_db_get_thread_local_address (ptid_t ptid, struct objfile *objfile,
b4acd559 1241 CORE_ADDR offset)
3f47be5c
EZ
1242{
1243 if (is_thread (ptid))
1244 {
1245 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1246 td_err_e err;
3f47be5c
EZ
1247 void *address;
1248 CORE_ADDR lm;
5365276c 1249 struct thread_info *thread_info;
3f47be5c
EZ
1250
1251 /* glibc doesn't provide the needed interface. */
b4acd559
JJ
1252 if (!td_thr_tls_get_addr_p)
1253 error ("Cannot find thread-local variables in this thread library.");
3f47be5c
EZ
1254
1255 /* Get the address of the link map for this objfile. */
1256 lm = svr4_fetch_objfile_link_map (objfile);
1257
1258 /* Whoops, we couldn't find one. Bail out. */
1259 if (!lm)
b4acd559
JJ
1260 {
1261 if (objfile_is_library)
1262 error ("Cannot find shared library `%s' link_map in dynamic"
3f47be5c
EZ
1263 " linker's module list", objfile->name);
1264 else
b4acd559 1265 error ("Cannot find executable file `%s' link_map in dynamic"
3f47be5c
EZ
1266 " linker's module list", objfile->name);
1267 }
1268
1269 /* Get info about the thread. */
5365276c
DJ
1270 thread_info = find_thread_pid (ptid);
1271 thread_db_map_id2thr (thread_info, 1);
1272
3f47be5c 1273 /* Finally, get the address of the variable. */
5365276c
DJ
1274 err = td_thr_tls_get_addr_p (&thread_info->private->th, (void *) lm,
1275 offset, &address);
3f47be5c
EZ
1276
1277#ifdef THREAD_DB_HAS_TD_NOTALLOC
1278 /* The memory hasn't been allocated, yet. */
1279 if (err == TD_NOTALLOC)
b4acd559
JJ
1280 {
1281 /* Now, if libthread_db provided the initialization image's
1282 address, we *could* try to build a non-lvalue value from
1283 the initialization image. */
1284 if (objfile_is_library)
1285 error ("The inferior has not yet allocated storage for"
1286 " thread-local variables in\n"
1287 "the shared library `%s'\n"
1288 "for the thread %ld",
3f47be5c 1289 objfile->name, (long) GET_THREAD (ptid));
b4acd559
JJ
1290 else
1291 error ("The inferior has not yet allocated storage for"
1292 " thread-local variables in\n"
1293 "the executable `%s'\n"
1294 "for the thread %ld",
3f47be5c
EZ
1295 objfile->name, (long) GET_THREAD (ptid));
1296 }
1297#endif
1298
1299 /* Something else went wrong. */
1300 if (err != TD_OK)
1301 {
1302 if (objfile_is_library)
1303 error ("Cannot find thread-local storage for thread %ld, "
1304 "shared library %s:\n%s",
1305 (long) GET_THREAD (ptid),
b4acd559 1306 objfile->name, thread_db_err_str (err));
3f47be5c
EZ
1307 else
1308 error ("Cannot find thread-local storage for thread %ld, "
1309 "executable file %s:\n%s",
1310 (long) GET_THREAD (ptid),
b4acd559 1311 objfile->name, thread_db_err_str (err));
3f47be5c
EZ
1312 }
1313
1314 /* Cast assuming host == target. Joy. */
1315 return (CORE_ADDR) address;
1316 }
1317
1318 if (target_beneath->to_get_thread_local_address)
b4acd559
JJ
1319 return target_beneath->to_get_thread_local_address (ptid, objfile,
1320 offset);
3f47be5c
EZ
1321
1322 error ("Cannot find thread-local values on this target.");
1323}
1324
fb0e1ba7
MK
1325static void
1326init_thread_db_ops (void)
1327{
1328 thread_db_ops.to_shortname = "multi-thread";
1329 thread_db_ops.to_longname = "multi-threaded child process.";
1330 thread_db_ops.to_doc = "Threads and pthreads support.";
c194fbe1 1331 thread_db_ops.to_attach = thread_db_attach;
fb0e1ba7
MK
1332 thread_db_ops.to_detach = thread_db_detach;
1333 thread_db_ops.to_resume = thread_db_resume;
1334 thread_db_ops.to_wait = thread_db_wait;
1335 thread_db_ops.to_fetch_registers = thread_db_fetch_registers;
1336 thread_db_ops.to_store_registers = thread_db_store_registers;
1337 thread_db_ops.to_xfer_memory = thread_db_xfer_memory;
1338 thread_db_ops.to_kill = thread_db_kill;
1339 thread_db_ops.to_create_inferior = thread_db_create_inferior;
bda9cb72 1340 thread_db_ops.to_post_startup_inferior = thread_db_post_startup_inferior;
fb0e1ba7
MK
1341 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
1342 thread_db_ops.to_thread_alive = thread_db_thread_alive;
1343 thread_db_ops.to_find_new_threads = thread_db_find_new_threads;
1344 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
1345 thread_db_ops.to_stratum = thread_stratum;
1346 thread_db_ops.to_has_thread_control = tc_schedlock;
3f47be5c
EZ
1347 thread_db_ops.to_get_thread_local_address
1348 = thread_db_get_thread_local_address;
fb0e1ba7
MK
1349 thread_db_ops.to_magic = OPS_MAGIC;
1350}
1351
1352void
1353_initialize_thread_db (void)
1354{
1355 /* Only initialize the module if we can load libthread_db. */
1356 if (thread_db_load ())
1357 {
1358 init_thread_db_ops ();
1359 add_target (&thread_db_ops);
1360
1361 /* Add ourselves to objfile event chain. */
9a4105ab
AC
1362 target_new_objfile_chain = deprecated_target_new_objfile_hook;
1363 deprecated_target_new_objfile_hook = thread_db_new_objfile;
fb0e1ba7
MK
1364 }
1365}
This page took 0.502233 seconds and 4 git commands to generate.