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