2004-06-07 Randolph Chung <tausq@debian.org>
[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
b9b5d7ea
JJ
255 *INFOP.
256
257 If the thread is a zombie, TD_THR_ZOMBIE is returned. Otherwise,
258 zero is returned to indicate success. */
5365276c
DJ
259
260static int
261thread_get_info_callback (const td_thrhandle_t *thp, void *infop)
262{
263 td_thrinfo_t ti;
264 td_err_e err;
265 struct thread_info *thread_info;
266 ptid_t thread_ptid;
267
268 err = td_thr_get_info_p (thp, &ti);
269 if (err != TD_OK)
b4acd559 270 error ("thread_get_info_callback: cannot get thread info: %s",
5365276c
DJ
271 thread_db_err_str (err));
272
273 /* Fill the cache. */
274 thread_ptid = BUILD_THREAD (ti.ti_tid, GET_PID (inferior_ptid));
275 thread_info = find_thread_pid (thread_ptid);
276
b9b5d7ea
JJ
277 /* In the case of a zombie thread, don't continue. We don't want to
278 attach to it thinking it is a new thread and we don't want to mark
279 it as valid. */
280 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
281 {
282 if (infop != NULL)
283 *(struct thread_info **) infop = thread_info;
284 return TD_THR_ZOMBIE;
285 }
286
5365276c
DJ
287 if (thread_info == NULL)
288 {
289 /* New thread. Attach to it now (why wait?). */
290 attach_thread (thread_ptid, thp, &ti, 1);
291 thread_info = find_thread_pid (thread_ptid);
292 gdb_assert (thread_info != NULL);
293 }
294
295 memcpy (&thread_info->private->th, thp, sizeof (*thp));
296 thread_info->private->th_valid = 1;
297 memcpy (&thread_info->private->ti, &ti, sizeof (ti));
298 thread_info->private->ti_valid = 1;
299
300 if (infop != NULL)
301 *(struct thread_info **) infop = thread_info;
302
303 return 0;
304}
305
306/* Accessor functions for the thread_db information, with caching. */
fb0e1ba7 307
5365276c
DJ
308static void
309thread_db_map_id2thr (struct thread_info *thread_info, int fatal)
310{
311 td_err_e err;
312
313 if (thread_info->private->th_valid)
314 return;
315
316 err = td_ta_map_id2thr_p (thread_agent, GET_THREAD (thread_info->ptid),
317 &thread_info->private->th);
318 if (err != TD_OK)
319 {
320 if (fatal)
321 error ("Cannot find thread %ld: %s",
b4acd559
JJ
322 (long) GET_THREAD (thread_info->ptid),
323 thread_db_err_str (err));
5365276c
DJ
324 }
325 else
326 thread_info->private->th_valid = 1;
327}
328
329static td_thrinfo_t *
330thread_db_get_info (struct thread_info *thread_info)
331{
332 td_err_e err;
333
334 if (thread_info->private->ti_valid)
335 return &thread_info->private->ti;
336
b4acd559 337 if (!thread_info->private->th_valid)
5365276c
DJ
338 thread_db_map_id2thr (thread_info, 1);
339
b4acd559
JJ
340 err =
341 td_thr_get_info_p (&thread_info->private->th, &thread_info->private->ti);
5365276c 342 if (err != TD_OK)
b4acd559 343 error ("thread_db_get_info: cannot get thread info: %s",
5365276c
DJ
344 thread_db_err_str (err));
345
346 thread_info->private->ti_valid = 1;
347 return &thread_info->private->ti;
348}
349\f
fb0e1ba7
MK
350/* Convert between user-level thread ids and LWP ids. */
351
39f77062
KB
352static ptid_t
353thread_from_lwp (ptid_t ptid)
fb0e1ba7 354{
fb0e1ba7
MK
355 td_thrhandle_t th;
356 td_err_e err;
5365276c
DJ
357 struct thread_info *thread_info;
358 ptid_t thread_ptid;
fb0e1ba7 359
39f77062
KB
360 if (GET_LWP (ptid) == 0)
361 ptid = BUILD_LWP (GET_PID (ptid), GET_PID (ptid));
fb0e1ba7 362
39f77062 363 gdb_assert (is_lwp (ptid));
fb0e1ba7 364
39f77062 365 err = td_ta_map_lwp2thr_p (thread_agent, GET_LWP (ptid), &th);
fb0e1ba7 366 if (err != TD_OK)
823ca731 367 error ("Cannot find user-level thread for LWP %ld: %s",
39f77062 368 GET_LWP (ptid), thread_db_err_str (err));
fb0e1ba7 369
5365276c 370 thread_info = NULL;
b9b5d7ea
JJ
371
372 /* Fetch the thread info. If we get back TD_THR_ZOMBIE, then the
373 event thread has already died. If another gdb interface has called
374 thread_alive() previously, the thread won't be found on the thread list
375 anymore. In that case, we don't want to process this ptid anymore
376 to avoid the possibility of later treating it as a newly
377 discovered thread id that we should add to the list. Thus,
378 we return a -1 ptid which is also how the thread list marks a
379 dead thread. */
380 if (thread_get_info_callback (&th, &thread_info) == TD_THR_ZOMBIE
381 && thread_info == NULL)
382 return pid_to_ptid (-1);
383
5365276c 384 gdb_assert (thread_info && thread_info->private->ti_valid);
fb0e1ba7 385
5365276c 386 return BUILD_THREAD (thread_info->private->ti.ti_tid, GET_PID (ptid));
fb0e1ba7
MK
387}
388
39f77062
KB
389static ptid_t
390lwp_from_thread (ptid_t ptid)
fb0e1ba7 391{
5365276c
DJ
392 struct thread_info *thread_info;
393 ptid_t thread_ptid;
fb0e1ba7 394
21bf60fe 395 if (!is_thread (ptid))
39f77062 396 return ptid;
fb0e1ba7 397
5365276c
DJ
398 thread_info = find_thread_pid (ptid);
399 thread_db_get_info (thread_info);
fb0e1ba7 400
5365276c 401 return BUILD_LWP (thread_info->private->ti.ti_lid, GET_PID (ptid));
fb0e1ba7
MK
402}
403\f
404
405void
406thread_db_init (struct target_ops *target)
407{
408 target_beneath = target;
409}
410
5220ea4c
AC
411static void *
412verbose_dlsym (void *handle, const char *name)
413{
414 void *sym = dlsym (handle, name);
415 if (sym == NULL)
416 warning ("Symbol \"%s\" not found in libthread_db: %s", name, dlerror ());
417 return sym;
418}
419
fb0e1ba7
MK
420static int
421thread_db_load (void)
422{
423 void *handle;
424 td_err_e err;
425
426 handle = dlopen (LIBTHREAD_DB_SO, RTLD_NOW);
427 if (handle == NULL)
f7c1e0f3 428 {
b4acd559 429 fprintf_filtered (gdb_stderr, "\n\ndlopen failed on '%s' - %s\n",
f7c1e0f3 430 LIBTHREAD_DB_SO, dlerror ());
b4acd559 431 fprintf_filtered (gdb_stderr,
f7c1e0f3
MS
432 "GDB will not be able to debug pthreads.\n\n");
433 return 0;
434 }
fb0e1ba7
MK
435
436 /* Initialize pointers to the dynamic library functions we will use.
437 Essential functions first. */
438
5220ea4c 439 td_init_p = verbose_dlsym (handle, "td_init");
fb0e1ba7
MK
440 if (td_init_p == NULL)
441 return 0;
442
5220ea4c 443 td_ta_new_p = verbose_dlsym (handle, "td_ta_new");
fb0e1ba7
MK
444 if (td_ta_new_p == NULL)
445 return 0;
446
5220ea4c 447 td_ta_map_id2thr_p = verbose_dlsym (handle, "td_ta_map_id2thr");
fb0e1ba7
MK
448 if (td_ta_map_id2thr_p == NULL)
449 return 0;
450
5220ea4c 451 td_ta_map_lwp2thr_p = verbose_dlsym (handle, "td_ta_map_lwp2thr");
fb0e1ba7
MK
452 if (td_ta_map_lwp2thr_p == NULL)
453 return 0;
454
5220ea4c 455 td_ta_thr_iter_p = verbose_dlsym (handle, "td_ta_thr_iter");
fb0e1ba7
MK
456 if (td_ta_thr_iter_p == NULL)
457 return 0;
458
5220ea4c 459 td_thr_validate_p = verbose_dlsym (handle, "td_thr_validate");
fb0e1ba7
MK
460 if (td_thr_validate_p == NULL)
461 return 0;
462
5220ea4c 463 td_thr_get_info_p = verbose_dlsym (handle, "td_thr_get_info");
fb0e1ba7
MK
464 if (td_thr_get_info_p == NULL)
465 return 0;
466
5220ea4c 467 td_thr_getfpregs_p = verbose_dlsym (handle, "td_thr_getfpregs");
fb0e1ba7
MK
468 if (td_thr_getfpregs_p == NULL)
469 return 0;
470
5220ea4c 471 td_thr_getgregs_p = verbose_dlsym (handle, "td_thr_getgregs");
fb0e1ba7
MK
472 if (td_thr_getgregs_p == NULL)
473 return 0;
474
5220ea4c 475 td_thr_setfpregs_p = verbose_dlsym (handle, "td_thr_setfpregs");
fb0e1ba7
MK
476 if (td_thr_setfpregs_p == NULL)
477 return 0;
478
5220ea4c 479 td_thr_setgregs_p = verbose_dlsym (handle, "td_thr_setgregs");
fb0e1ba7
MK
480 if (td_thr_setgregs_p == NULL)
481 return 0;
482
483 /* Initialize the library. */
484 err = td_init_p ();
485 if (err != TD_OK)
486 {
487 warning ("Cannot initialize libthread_db: %s", thread_db_err_str (err));
488 return 0;
489 }
490
491 /* These are not essential. */
492 td_ta_event_addr_p = dlsym (handle, "td_ta_event_addr");
493 td_ta_set_event_p = dlsym (handle, "td_ta_set_event");
494 td_ta_event_getmsg_p = dlsym (handle, "td_ta_event_getmsg");
495 td_thr_event_enable_p = dlsym (handle, "td_thr_event_enable");
3f47be5c 496 td_thr_tls_get_addr_p = dlsym (handle, "td_thr_tls_get_addr");
fb0e1ba7
MK
497
498 return 1;
499}
500
cdbc0b18 501static td_err_e
24557e30
AC
502enable_thread_event (td_thragent_t *thread_agent, int event, CORE_ADDR *bp)
503{
504 td_notify_t notify;
cdbc0b18 505 td_err_e err;
24557e30
AC
506
507 /* Get the breakpoint address for thread EVENT. */
508 err = td_ta_event_addr_p (thread_agent, event, &notify);
509 if (err != TD_OK)
cdbc0b18 510 return err;
24557e30
AC
511
512 /* Set up the breakpoint. */
513 (*bp) = gdbarch_convert_from_func_ptr_addr (current_gdbarch,
514 (CORE_ADDR) notify.u.bptaddr,
515 &current_target);
516 create_thread_event_breakpoint ((*bp));
517
cdbc0b18 518 return TD_OK;
24557e30
AC
519}
520
fb0e1ba7
MK
521static void
522enable_thread_event_reporting (void)
523{
524 td_thr_events_t events;
525 td_notify_t notify;
526 td_err_e err;
a2f23071
DJ
527#ifdef HAVE_GNU_LIBC_VERSION_H
528 const char *libc_version;
529 int libc_major, libc_minor;
530#endif
fb0e1ba7
MK
531
532 /* We cannot use the thread event reporting facility if these
533 functions aren't available. */
534 if (td_ta_event_addr_p == NULL || td_ta_set_event_p == NULL
535 || td_ta_event_getmsg_p == NULL || td_thr_event_enable_p == NULL)
536 return;
537
538 /* Set the process wide mask saying which events we're interested in. */
539 td_event_emptyset (&events);
540 td_event_addset (&events, TD_CREATE);
a2f23071
DJ
541
542#ifdef HAVE_GNU_LIBC_VERSION_H
fb0e1ba7
MK
543 /* FIXME: kettenis/2000-04-23: The event reporting facility is
544 broken for TD_DEATH events in glibc 2.1.3, so don't enable it for
545 now. */
a2f23071
DJ
546 libc_version = gnu_get_libc_version ();
547 if (sscanf (libc_version, "%d.%d", &libc_major, &libc_minor) == 2
548 && (libc_major > 2 || (libc_major == 2 && libc_minor > 1)))
fb0e1ba7 549#endif
a2f23071 550 td_event_addset (&events, TD_DEATH);
fb0e1ba7
MK
551
552 err = td_ta_set_event_p (thread_agent, &events);
553 if (err != TD_OK)
554 {
555 warning ("Unable to set global thread event mask: %s",
556 thread_db_err_str (err));
557 return;
558 }
559
560 /* Delete previous thread event breakpoints, if any. */
561 remove_thread_event_breakpoints ();
24557e30
AC
562 td_create_bp_addr = 0;
563 td_death_bp_addr = 0;
fb0e1ba7 564
24557e30 565 /* Set up the thread creation event. */
cdbc0b18
RM
566 err = enable_thread_event (thread_agent, TD_CREATE, &td_create_bp_addr);
567 if (err != TD_OK)
fb0e1ba7
MK
568 {
569 warning ("Unable to get location for thread creation breakpoint: %s",
570 thread_db_err_str (err));
571 return;
572 }
573
24557e30 574 /* Set up the thread death event. */
cdbc0b18
RM
575 err = enable_thread_event (thread_agent, TD_DEATH, &td_death_bp_addr);
576 if (err != TD_OK)
fb0e1ba7 577 {
936742ab 578 warning ("Unable to get location for thread death breakpoint: %s",
fb0e1ba7
MK
579 thread_db_err_str (err));
580 return;
581 }
fb0e1ba7
MK
582}
583
584static void
585disable_thread_event_reporting (void)
586{
587 td_thr_events_t events;
588
589 /* Set the process wide mask saying we aren't interested in any
590 events anymore. */
591 td_event_emptyset (&events);
592 td_ta_set_event_p (thread_agent, &events);
593
594 /* Delete thread event breakpoints, if any. */
595 remove_thread_event_breakpoints ();
596 td_create_bp_addr = 0;
597 td_death_bp_addr = 0;
598}
599
600static void
601check_thread_signals (void)
602{
603#ifdef GET_THREAD_SIGNALS
21bf60fe 604 if (!thread_signals)
fb0e1ba7
MK
605 {
606 sigset_t mask;
607 int i;
608
609 GET_THREAD_SIGNALS (&mask);
610 sigemptyset (&thread_stop_set);
611 sigemptyset (&thread_print_set);
612
b9569773 613 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
614 {
615 if (sigismember (&mask, i))
616 {
617 if (signal_stop_update (target_signal_from_host (i), 0))
618 sigaddset (&thread_stop_set, i);
619 if (signal_print_update (target_signal_from_host (i), 0))
620 sigaddset (&thread_print_set, i);
621 thread_signals = 1;
622 }
623 }
624 }
625#endif
626}
627
fb0e1ba7
MK
628static void
629thread_db_new_objfile (struct objfile *objfile)
630{
631 td_err_e err;
632
5220ea4c
AC
633 /* First time through, report that libthread_db was successfuly
634 loaded. Can't print this in in thread_db_load as, at that stage,
635 the interpreter and it's console haven't started. The real
636 problem here is that libthread_db is loaded too early - it should
637 only be loaded when there is a program to debug. */
638 {
639 static int dejavu;
640 if (!dejavu)
641 {
642 Dl_info info;
643 const char *library = NULL;
644 /* Try dladdr. */
645 if (dladdr ((*td_ta_new_p), &info) != 0)
646 library = info.dli_fname;
647 /* Try dlinfo? */
648 if (library == NULL)
649 /* Paranoid - don't let a NULL path slip through. */
650 library = LIBTHREAD_DB_SO;
651 printf_unfiltered ("Using host libthread_db library \"%s\".\n",
652 library);
653 dejavu = 1;
654 }
655 }
656
5bbd998e
MS
657 /* Don't attempt to use thread_db on targets which can not run
658 (core files). */
659 if (objfile == NULL || !target_has_execution)
bda9cb72
MK
660 {
661 /* All symbols have been discarded. If the thread_db target is
c194fbe1 662 active, deactivate it now. */
bda9cb72 663 if (using_thread_db)
c194fbe1
MK
664 {
665 gdb_assert (proc_handle.pid == 0);
666 unpush_target (&thread_db_ops);
667 using_thread_db = 0;
668 }
669
670 keep_thread_db = 0;
bda9cb72
MK
671
672 goto quit;
673 }
674
fb0e1ba7
MK
675 if (using_thread_db)
676 /* Nothing to do. The thread library was already detected and the
677 target vector was already activated. */
678 goto quit;
679
bda9cb72
MK
680 /* Initialize the structure that identifies the child process. Note
681 that at this point there is no guarantee that we actually have a
682 child process. */
39f77062 683 proc_handle.pid = GET_PID (inferior_ptid);
fb0e1ba7 684
bda9cb72 685 /* Now attempt to open a connection to the thread library. */
fb0e1ba7
MK
686 err = td_ta_new_p (&proc_handle, &thread_agent);
687 switch (err)
688 {
689 case TD_NOLIBTHREAD:
bda9cb72 690 /* No thread library was detected. */
fb0e1ba7
MK
691 break;
692
693 case TD_OK:
5220ea4c
AC
694 printf_unfiltered ("[Thread debugging using libthread_db enabled]\n");
695
bda9cb72
MK
696 /* The thread library was detected. Activate the thread_db target. */
697 push_target (&thread_db_ops);
698 using_thread_db = 1;
699
700 /* If the thread library was detected in the main symbol file
701 itself, we assume that the program was statically linked
702 against the thread library and well have to keep this
703 module's target vector activated until forever... Well, at
704 least until all symbols have been discarded anyway (see
705 above). */
706 if (objfile == symfile_objfile)
707 {
708 gdb_assert (proc_handle.pid == 0);
709 keep_thread_db = 1;
710 }
711
712 /* We can only poke around if there actually is a child process.
713 If there is no child process alive, postpone the steps below
714 until one has been created. */
715 if (proc_handle.pid != 0)
716 {
717 enable_thread_event_reporting ();
718 thread_db_find_new_threads ();
719 }
fb0e1ba7
MK
720 break;
721
722 default:
723 warning ("Cannot initialize thread debugging library: %s",
724 thread_db_err_str (err));
725 break;
726 }
727
b4acd559 728quit:
540af400
MS
729 if (target_new_objfile_chain)
730 target_new_objfile_chain (objfile);
fb0e1ba7
MK
731}
732
a2f23071
DJ
733/* Attach to a new thread. This function is called when we receive a
734 TD_CREATE event or when we iterate over all threads and find one
735 that wasn't already in our list. */
736
fb0e1ba7 737static void
39f77062 738attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
fb0e1ba7
MK
739 const td_thrinfo_t *ti_p, int verbose)
740{
741 struct thread_info *tp;
742 td_err_e err;
743
a2f23071
DJ
744 /* If we're being called after a TD_CREATE event, we may already
745 know about this thread. There are two ways this can happen. We
746 may have iterated over all threads between the thread creation
747 and the TD_CREATE event, for instance when the user has issued
748 the `info threads' command before the SIGTRAP for hitting the
749 thread creation breakpoint was reported. Alternatively, the
750 thread may have exited and a new one been created with the same
751 thread ID. In the first case we don't need to do anything; in
752 the second case we should discard information about the dead
753 thread and attach to the new one. */
754 if (in_thread_list (ptid))
755 {
756 tp = find_thread_pid (ptid);
757 gdb_assert (tp != NULL);
758
759 if (!tp->private->dying)
760 return;
761
762 delete_thread (ptid);
763 }
764
fb0e1ba7
MK
765 check_thread_signals ();
766
fb0e1ba7 767 /* Add the thread to GDB's thread list. */
39f77062 768 tp = add_thread (ptid);
fb0e1ba7 769 tp->private = xmalloc (sizeof (struct private_thread_info));
5365276c
DJ
770 memset (tp->private, 0, sizeof (struct private_thread_info));
771
772 if (verbose)
773 printf_unfiltered ("[New %s]\n", target_pid_to_str (ptid));
fb0e1ba7 774
21bf60fe
MK
775 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
776 return; /* A zombie thread -- do not attach. */
5fd913cc 777
8605d56e 778 /* Under GNU/Linux, we have to attach to each and every thread. */
fb0e1ba7 779#ifdef ATTACH_LWP
c194fbe1 780 ATTACH_LWP (BUILD_LWP (ti_p->ti_lid, GET_PID (ptid)), 0);
fb0e1ba7
MK
781#endif
782
783 /* Enable thread event reporting for this thread. */
784 err = td_thr_event_enable_p (th_p, 1);
785 if (err != TD_OK)
786 error ("Cannot enable thread event reporting for %s: %s",
39f77062 787 target_pid_to_str (ptid), thread_db_err_str (err));
fb0e1ba7
MK
788}
789
c194fbe1
MK
790static void
791thread_db_attach (char *args, int from_tty)
792{
793 target_beneath->to_attach (args, from_tty);
794
795 /* Destroy thread info; it's no longer valid. */
796 init_thread_list ();
797
798 /* The child process is now the actual multi-threaded
799 program. Snatch its process ID... */
800 proc_handle.pid = GET_PID (inferior_ptid);
801
802 /* ...and perform the remaining initialization steps. */
803 enable_thread_event_reporting ();
b4acd559 804 thread_db_find_new_threads ();
c194fbe1
MK
805}
806
fb0e1ba7 807static void
39f77062 808detach_thread (ptid_t ptid, int verbose)
fb0e1ba7 809{
a2f23071
DJ
810 struct thread_info *thread_info;
811
fb0e1ba7 812 if (verbose)
39f77062 813 printf_unfiltered ("[%s exited]\n", target_pid_to_str (ptid));
a2f23071
DJ
814
815 /* Don't delete the thread now, because it still reports as active
816 until it has executed a few instructions after the event
817 breakpoint - if we deleted it now, "info threads" would cause us
818 to re-attach to it. Just mark it as having had a TD_DEATH
819 event. This means that we won't delete it from our thread list
820 until we notice that it's dead (via prune_threads), or until
821 something re-uses its thread ID. */
822 thread_info = find_thread_pid (ptid);
823 gdb_assert (thread_info != NULL);
824 thread_info->private->dying = 1;
fb0e1ba7
MK
825}
826
827static void
828thread_db_detach (char *args, int from_tty)
829{
830 disable_thread_event_reporting ();
c194fbe1
MK
831
832 /* There's no need to save & restore inferior_ptid here, since the
833 inferior is supposed to be survive this function call. */
834 inferior_ptid = lwp_from_thread (inferior_ptid);
835
836 /* Forget about the child's process ID. We shouldn't need it
837 anymore. */
838 proc_handle.pid = 0;
fb0e1ba7
MK
839
840 target_beneath->to_detach (args, from_tty);
841}
842
5365276c
DJ
843static int
844clear_lwpid_callback (struct thread_info *thread, void *dummy)
845{
846 /* If we know that our thread implementation is 1-to-1, we could save
847 a certain amount of information; it's not clear how much, so we
848 are always conservative. */
849
850 thread->private->th_valid = 0;
851 thread->private->ti_valid = 0;
852
853 return 0;
854}
855
fb0e1ba7 856static void
39f77062 857thread_db_resume (ptid_t ptid, int step, enum target_signal signo)
fb0e1ba7 858{
39f77062 859 struct cleanup *old_chain = save_inferior_ptid ();
fb0e1ba7 860
39f77062
KB
861 if (GET_PID (ptid) == -1)
862 inferior_ptid = lwp_from_thread (inferior_ptid);
863 else if (is_thread (ptid))
864 ptid = lwp_from_thread (ptid);
fb0e1ba7 865
5365276c
DJ
866 /* Clear cached data which may not be valid after the resume. */
867 iterate_over_threads (clear_lwpid_callback, NULL);
868
39f77062 869 target_beneath->to_resume (ptid, step, signo);
fb0e1ba7
MK
870
871 do_cleanups (old_chain);
872}
873
874/* Check if PID is currently stopped at the location of a thread event
875 breakpoint location. If it is, read the event message and act upon
876 the event. */
877
878static void
39f77062 879check_event (ptid_t ptid)
fb0e1ba7
MK
880{
881 td_event_msg_t msg;
882 td_thrinfo_t ti;
883 td_err_e err;
884 CORE_ADDR stop_pc;
4d9850d3 885 int loop = 0;
fb0e1ba7
MK
886
887 /* Bail out early if we're not at a thread event breakpoint. */
39f77062 888 stop_pc = read_pc_pid (ptid) - DECR_PC_AFTER_BREAK;
fb0e1ba7
MK
889 if (stop_pc != td_create_bp_addr && stop_pc != td_death_bp_addr)
890 return;
891
4d9850d3
JJ
892 /* If we are at a create breakpoint, we do not know what new lwp
893 was created and cannot specifically locate the event message for it.
894 We have to call td_ta_event_getmsg() to get
895 the latest message. Since we have no way of correlating whether
cdbc0b18 896 the event message we get back corresponds to our breakpoint, we must
4d9850d3 897 loop and read all event messages, processing them appropriately.
cdbc0b18
RM
898 This guarantees we will process the correct message before continuing
899 from the breakpoint.
4d9850d3
JJ
900
901 Currently, death events are not enabled. If they are enabled,
902 the death event can use the td_thr_event_getmsg() interface to
903 get the message specifically for that lwp and avoid looping
904 below. */
905
906 loop = 1;
907
908 do
fb0e1ba7 909 {
4d9850d3
JJ
910 err = td_ta_event_getmsg_p (thread_agent, &msg);
911 if (err != TD_OK)
912 {
913 if (err == TD_NOMSG)
914 return;
fb0e1ba7 915
4d9850d3
JJ
916 error ("Cannot get thread event message: %s",
917 thread_db_err_str (err));
918 }
fb0e1ba7 919
4d9850d3
JJ
920 err = td_thr_get_info_p (msg.th_p, &ti);
921 if (err != TD_OK)
922 error ("Cannot get thread info: %s", thread_db_err_str (err));
fb0e1ba7 923
4d9850d3 924 ptid = BUILD_THREAD (ti.ti_tid, GET_PID (ptid));
fb0e1ba7 925
4d9850d3
JJ
926 switch (msg.event)
927 {
928 case TD_CREATE:
a2f23071
DJ
929 /* Call attach_thread whether or not we already know about a
930 thread with this thread ID. */
931 attach_thread (ptid, msg.th_p, &ti, 1);
fb0e1ba7 932
4d9850d3 933 break;
fb0e1ba7 934
4d9850d3 935 case TD_DEATH:
fb0e1ba7 936
4d9850d3
JJ
937 if (!in_thread_list (ptid))
938 error ("Spurious thread death event.");
fb0e1ba7 939
4d9850d3 940 detach_thread (ptid, 1);
fb0e1ba7 941
4d9850d3 942 break;
fb0e1ba7 943
4d9850d3
JJ
944 default:
945 error ("Spurious thread event.");
946 }
fb0e1ba7 947 }
4d9850d3 948 while (loop);
fb0e1ba7
MK
949}
950
39f77062
KB
951static ptid_t
952thread_db_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
fb0e1ba7 953{
39f77062 954 extern ptid_t trap_ptid;
fb0e1ba7 955
39f77062
KB
956 if (GET_PID (ptid) != -1 && is_thread (ptid))
957 ptid = lwp_from_thread (ptid);
fb0e1ba7 958
39f77062 959 ptid = target_beneath->to_wait (ptid, ourstatus);
fb0e1ba7 960
bda9cb72
MK
961 if (proc_handle.pid == 0)
962 /* The current child process isn't the actual multi-threaded
963 program yet, so don't try to do any special thread-specific
964 post-processing and bail out early. */
39f77062 965 return ptid;
bda9cb72 966
fb0e1ba7 967 if (ourstatus->kind == TARGET_WAITKIND_EXITED)
39f77062 968 return pid_to_ptid (-1);
fb0e1ba7
MK
969
970 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
971 && ourstatus->value.sig == TARGET_SIGNAL_TRAP)
972 /* Check for a thread event. */
39f77062 973 check_event (ptid);
fb0e1ba7 974
39f77062
KB
975 if (!ptid_equal (trap_ptid, null_ptid))
976 trap_ptid = thread_from_lwp (trap_ptid);
fb0e1ba7 977
b9b5d7ea
JJ
978 /* Change the ptid back into the higher level PID + TID format.
979 If the thread is dead and no longer on the thread list, we will
980 get back a dead ptid. This can occur if the thread death event
981 gets postponed by other simultaneous events. In such a case,
982 we want to just ignore the event and continue on. */
983 ptid = thread_from_lwp (ptid);
984 if (GET_PID (ptid) == -1)
985 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
986
987 return ptid;
fb0e1ba7
MK
988}
989
990static int
991thread_db_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
b4acd559 992 struct mem_attrib *attrib, struct target_ops *target)
fb0e1ba7 993{
39f77062 994 struct cleanup *old_chain = save_inferior_ptid ();
fb0e1ba7
MK
995 int xfer;
996
39f77062 997 if (is_thread (inferior_ptid))
fb0e1ba7
MK
998 {
999 /* FIXME: This seems to be necessary to make sure breakpoints
1000 are removed. */
21bf60fe 1001 if (!target_thread_alive (inferior_ptid))
39f77062 1002 inferior_ptid = pid_to_ptid (GET_PID (inferior_ptid));
fb0e1ba7 1003 else
39f77062 1004 inferior_ptid = lwp_from_thread (inferior_ptid);
fb0e1ba7
MK
1005 }
1006
b4acd559
JJ
1007 xfer =
1008 target_beneath->to_xfer_memory (memaddr, myaddr, len, write, attrib,
1009 target);
fb0e1ba7
MK
1010
1011 do_cleanups (old_chain);
1012 return xfer;
1013}
1014
1015static void
1016thread_db_fetch_registers (int regno)
1017{
5365276c 1018 struct thread_info *thread_info;
fb0e1ba7
MK
1019 prgregset_t gregset;
1020 gdb_prfpregset_t fpregset;
1021 td_err_e err;
1022
21bf60fe 1023 if (!is_thread (inferior_ptid))
fb0e1ba7
MK
1024 {
1025 /* Pass the request to the target beneath us. */
1026 target_beneath->to_fetch_registers (regno);
1027 return;
1028 }
1029
5365276c
DJ
1030 thread_info = find_thread_pid (inferior_ptid);
1031 thread_db_map_id2thr (thread_info, 1);
fb0e1ba7 1032
5365276c 1033 err = td_thr_getgregs_p (&thread_info->private->th, gregset);
fb0e1ba7
MK
1034 if (err != TD_OK)
1035 error ("Cannot fetch general-purpose registers for thread %ld: %s",
39f77062 1036 (long) GET_THREAD (inferior_ptid), thread_db_err_str (err));
fb0e1ba7 1037
5365276c 1038 err = td_thr_getfpregs_p (&thread_info->private->th, &fpregset);
fb0e1ba7
MK
1039 if (err != TD_OK)
1040 error ("Cannot get floating-point registers for thread %ld: %s",
39f77062 1041 (long) GET_THREAD (inferior_ptid), thread_db_err_str (err));
fb0e1ba7
MK
1042
1043 /* Note that we must call supply_gregset after calling the thread_db
1044 routines because the thread_db routines call ps_lgetgregs and
1045 friends which clobber GDB's register cache. */
1046 supply_gregset ((gdb_gregset_t *) gregset);
1047 supply_fpregset (&fpregset);
1048}
1049
1050static void
1051thread_db_store_registers (int regno)
1052{
fb0e1ba7
MK
1053 prgregset_t gregset;
1054 gdb_prfpregset_t fpregset;
1055 td_err_e err;
5365276c 1056 struct thread_info *thread_info;
fb0e1ba7 1057
21bf60fe 1058 if (!is_thread (inferior_ptid))
fb0e1ba7
MK
1059 {
1060 /* Pass the request to the target beneath us. */
1061 target_beneath->to_store_registers (regno);
1062 return;
1063 }
1064
5365276c
DJ
1065 thread_info = find_thread_pid (inferior_ptid);
1066 thread_db_map_id2thr (thread_info, 1);
fb0e1ba7
MK
1067
1068 if (regno != -1)
1069 {
123a958e 1070 char raw[MAX_REGISTER_SIZE];
fb0e1ba7 1071
4caf0990 1072 deprecated_read_register_gen (regno, raw);
fb0e1ba7
MK
1073 thread_db_fetch_registers (-1);
1074 supply_register (regno, raw);
1075 }
1076
1077 fill_gregset ((gdb_gregset_t *) gregset, -1);
1078 fill_fpregset (&fpregset, -1);
1079
5365276c 1080 err = td_thr_setgregs_p (&thread_info->private->th, gregset);
fb0e1ba7
MK
1081 if (err != TD_OK)
1082 error ("Cannot store general-purpose registers for thread %ld: %s",
39f77062 1083 (long) GET_THREAD (inferior_ptid), thread_db_err_str (err));
5365276c 1084 err = td_thr_setfpregs_p (&thread_info->private->th, &fpregset);
fb0e1ba7
MK
1085 if (err != TD_OK)
1086 error ("Cannot store floating-point registers for thread %ld: %s",
39f77062 1087 (long) GET_THREAD (inferior_ptid), thread_db_err_str (err));
fb0e1ba7
MK
1088}
1089
1090static void
1091thread_db_kill (void)
1092{
c194fbe1
MK
1093 /* There's no need to save & restore inferior_ptid here, since the
1094 inferior isn't supposed to survive this function call. */
1095 inferior_ptid = lwp_from_thread (inferior_ptid);
fb0e1ba7
MK
1096 target_beneath->to_kill ();
1097}
1098
1099static void
c27cda74
AC
1100thread_db_create_inferior (char *exec_file, char *allargs, char **env,
1101 int from_tty)
fb0e1ba7 1102{
21bf60fe 1103 if (!keep_thread_db)
c194fbe1
MK
1104 {
1105 unpush_target (&thread_db_ops);
1106 using_thread_db = 0;
1107 }
1108
c27cda74 1109 target_beneath->to_create_inferior (exec_file, allargs, env, from_tty);
bda9cb72 1110}
fb0e1ba7 1111
bda9cb72 1112static void
39f77062 1113thread_db_post_startup_inferior (ptid_t ptid)
bda9cb72
MK
1114{
1115 if (proc_handle.pid == 0)
1116 {
1117 /* The child process is now the actual multi-threaded
1118 program. Snatch its process ID... */
39f77062 1119 proc_handle.pid = GET_PID (ptid);
fb0e1ba7 1120
bda9cb72
MK
1121 /* ...and perform the remaining initialization steps. */
1122 enable_thread_event_reporting ();
21bf60fe 1123 thread_db_find_new_threads ();
bda9cb72 1124 }
fb0e1ba7
MK
1125}
1126
1127static void
1128thread_db_mourn_inferior (void)
1129{
1130 remove_thread_event_breakpoints ();
c194fbe1
MK
1131
1132 /* Forget about the child's process ID. We shouldn't need it
1133 anymore. */
1134 proc_handle.pid = 0;
fb0e1ba7
MK
1135
1136 target_beneath->to_mourn_inferior ();
043b2f77
JJ
1137
1138 /* Detach thread_db target ops if not dealing with a statically
1139 linked threaded program. This allows a corefile to be debugged
1140 after finishing debugging of a threaded program. At present,
1141 debugging a statically-linked threaded program is broken, but
1142 the check is added below in the event that it is fixed in the
1143 future. */
1144 if (!keep_thread_db)
1145 {
1146 unpush_target (&thread_db_ops);
1147 using_thread_db = 0;
1148 }
fb0e1ba7
MK
1149}
1150
1151static int
39f77062 1152thread_db_thread_alive (ptid_t ptid)
fb0e1ba7 1153{
5fd913cc 1154 td_thrhandle_t th;
21bf60fe 1155 td_err_e err;
5fd913cc 1156
39f77062 1157 if (is_thread (ptid))
fb0e1ba7 1158 {
5365276c
DJ
1159 struct thread_info *thread_info;
1160 thread_info = find_thread_pid (ptid);
fb0e1ba7 1161
5365276c 1162 thread_db_map_id2thr (thread_info, 0);
b4acd559 1163 if (!thread_info->private->th_valid)
fb0e1ba7
MK
1164 return 0;
1165
5365276c 1166 err = td_thr_validate_p (&thread_info->private->th);
5fd913cc
MS
1167 if (err != TD_OK)
1168 return 0;
1169
b4acd559 1170 if (!thread_info->private->ti_valid)
5365276c 1171 {
b4acd559
JJ
1172 err =
1173 td_thr_get_info_p (&thread_info->private->th,
1174 &thread_info->private->ti);
5365276c
DJ
1175 if (err != TD_OK)
1176 return 0;
1177 thread_info->private->ti_valid = 1;
1178 }
1179
1180 if (thread_info->private->ti.ti_state == TD_THR_UNKNOWN
1181 || thread_info->private->ti.ti_state == TD_THR_ZOMBIE)
21bf60fe 1182 return 0; /* A zombie thread. */
5fd913cc 1183
fb0e1ba7
MK
1184 return 1;
1185 }
1186
1187 if (target_beneath->to_thread_alive)
39f77062 1188 return target_beneath->to_thread_alive (ptid);
fb0e1ba7
MK
1189
1190 return 0;
1191}
1192
1193static int
1194find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1195{
1196 td_thrinfo_t ti;
1197 td_err_e err;
39f77062 1198 ptid_t ptid;
fb0e1ba7
MK
1199
1200 err = td_thr_get_info_p (th_p, &ti);
1201 if (err != TD_OK)
b4acd559 1202 error ("find_new_threads_callback: cannot get thread info: %s",
3197744f 1203 thread_db_err_str (err));
fb0e1ba7 1204
21bf60fe
MK
1205 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
1206 return 0; /* A zombie -- ignore. */
5fd913cc 1207
39f77062 1208 ptid = BUILD_THREAD (ti.ti_tid, GET_PID (inferior_ptid));
fb0e1ba7 1209
21bf60fe 1210 if (!in_thread_list (ptid))
39f77062 1211 attach_thread (ptid, th_p, &ti, 1);
fb0e1ba7
MK
1212
1213 return 0;
1214}
1215
1216static void
1217thread_db_find_new_threads (void)
1218{
1219 td_err_e err;
1220
1221 /* Iterate over all user-space threads to discover new threads. */
1222 err = td_ta_thr_iter_p (thread_agent, find_new_threads_callback, NULL,
1223 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1224 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1225 if (err != TD_OK)
1226 error ("Cannot find new threads: %s", thread_db_err_str (err));
1227}
1228
1229static char *
39f77062 1230thread_db_pid_to_str (ptid_t ptid)
fb0e1ba7 1231{
39f77062 1232 if (is_thread (ptid))
fb0e1ba7
MK
1233 {
1234 static char buf[64];
5365276c 1235 td_thrinfo_t *ti_p;
fb0e1ba7 1236 td_err_e err;
5365276c 1237 struct thread_info *thread_info;
fb0e1ba7 1238
5365276c
DJ
1239 thread_info = find_thread_pid (ptid);
1240 thread_db_map_id2thr (thread_info, 0);
b4acd559 1241 if (!thread_info->private->th_valid)
5365276c 1242 {
b4acd559
JJ
1243 snprintf (buf, sizeof (buf), "Thread %ld (Missing)",
1244 GET_THREAD (ptid));
5365276c
DJ
1245 return buf;
1246 }
fb0e1ba7 1247
5365276c 1248 ti_p = thread_db_get_info (thread_info);
fb0e1ba7 1249
5365276c 1250 if (ti_p->ti_state == TD_THR_ACTIVE && ti_p->ti_lid != 0)
fb0e1ba7
MK
1251 {
1252 snprintf (buf, sizeof (buf), "Thread %ld (LWP %d)",
5365276c 1253 (long) ti_p->ti_tid, ti_p->ti_lid);
fb0e1ba7
MK
1254 }
1255 else
1256 {
1257 snprintf (buf, sizeof (buf), "Thread %ld (%s)",
b4acd559
JJ
1258 (long) ti_p->ti_tid,
1259 thread_db_state_str (ti_p->ti_state));
fb0e1ba7
MK
1260 }
1261
1262 return buf;
1263 }
1264
39f77062
KB
1265 if (target_beneath->to_pid_to_str (ptid))
1266 return target_beneath->to_pid_to_str (ptid);
fb0e1ba7 1267
39f77062 1268 return normal_pid_to_str (ptid);
fb0e1ba7
MK
1269}
1270
3f47be5c
EZ
1271/* Get the address of the thread local variable in OBJFILE which is
1272 stored at OFFSET within the thread local storage for thread PTID. */
1273
1274static CORE_ADDR
1275thread_db_get_thread_local_address (ptid_t ptid, struct objfile *objfile,
b4acd559 1276 CORE_ADDR offset)
3f47be5c
EZ
1277{
1278 if (is_thread (ptid))
1279 {
1280 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1281 td_err_e err;
3f47be5c
EZ
1282 void *address;
1283 CORE_ADDR lm;
5365276c 1284 struct thread_info *thread_info;
3f47be5c
EZ
1285
1286 /* glibc doesn't provide the needed interface. */
b4acd559
JJ
1287 if (!td_thr_tls_get_addr_p)
1288 error ("Cannot find thread-local variables in this thread library.");
3f47be5c
EZ
1289
1290 /* Get the address of the link map for this objfile. */
1291 lm = svr4_fetch_objfile_link_map (objfile);
1292
1293 /* Whoops, we couldn't find one. Bail out. */
1294 if (!lm)
b4acd559
JJ
1295 {
1296 if (objfile_is_library)
1297 error ("Cannot find shared library `%s' link_map in dynamic"
3f47be5c
EZ
1298 " linker's module list", objfile->name);
1299 else
b4acd559 1300 error ("Cannot find executable file `%s' link_map in dynamic"
3f47be5c
EZ
1301 " linker's module list", objfile->name);
1302 }
1303
1304 /* Get info about the thread. */
5365276c
DJ
1305 thread_info = find_thread_pid (ptid);
1306 thread_db_map_id2thr (thread_info, 1);
1307
3f47be5c 1308 /* Finally, get the address of the variable. */
5365276c
DJ
1309 err = td_thr_tls_get_addr_p (&thread_info->private->th, (void *) lm,
1310 offset, &address);
3f47be5c
EZ
1311
1312#ifdef THREAD_DB_HAS_TD_NOTALLOC
1313 /* The memory hasn't been allocated, yet. */
1314 if (err == TD_NOTALLOC)
b4acd559
JJ
1315 {
1316 /* Now, if libthread_db provided the initialization image's
1317 address, we *could* try to build a non-lvalue value from
1318 the initialization image. */
1319 if (objfile_is_library)
1320 error ("The inferior has not yet allocated storage for"
1321 " thread-local variables in\n"
1322 "the shared library `%s'\n"
1323 "for the thread %ld",
3f47be5c 1324 objfile->name, (long) GET_THREAD (ptid));
b4acd559
JJ
1325 else
1326 error ("The inferior has not yet allocated storage for"
1327 " thread-local variables in\n"
1328 "the executable `%s'\n"
1329 "for the thread %ld",
3f47be5c
EZ
1330 objfile->name, (long) GET_THREAD (ptid));
1331 }
1332#endif
1333
1334 /* Something else went wrong. */
1335 if (err != TD_OK)
1336 {
1337 if (objfile_is_library)
1338 error ("Cannot find thread-local storage for thread %ld, "
1339 "shared library %s:\n%s",
1340 (long) GET_THREAD (ptid),
b4acd559 1341 objfile->name, thread_db_err_str (err));
3f47be5c
EZ
1342 else
1343 error ("Cannot find thread-local storage for thread %ld, "
1344 "executable file %s:\n%s",
1345 (long) GET_THREAD (ptid),
b4acd559 1346 objfile->name, thread_db_err_str (err));
3f47be5c
EZ
1347 }
1348
1349 /* Cast assuming host == target. Joy. */
1350 return (CORE_ADDR) address;
1351 }
1352
1353 if (target_beneath->to_get_thread_local_address)
b4acd559
JJ
1354 return target_beneath->to_get_thread_local_address (ptid, objfile,
1355 offset);
3f47be5c
EZ
1356
1357 error ("Cannot find thread-local values on this target.");
1358}
1359
fb0e1ba7
MK
1360static void
1361init_thread_db_ops (void)
1362{
1363 thread_db_ops.to_shortname = "multi-thread";
1364 thread_db_ops.to_longname = "multi-threaded child process.";
1365 thread_db_ops.to_doc = "Threads and pthreads support.";
c194fbe1 1366 thread_db_ops.to_attach = thread_db_attach;
fb0e1ba7
MK
1367 thread_db_ops.to_detach = thread_db_detach;
1368 thread_db_ops.to_resume = thread_db_resume;
1369 thread_db_ops.to_wait = thread_db_wait;
1370 thread_db_ops.to_fetch_registers = thread_db_fetch_registers;
1371 thread_db_ops.to_store_registers = thread_db_store_registers;
1372 thread_db_ops.to_xfer_memory = thread_db_xfer_memory;
1373 thread_db_ops.to_kill = thread_db_kill;
1374 thread_db_ops.to_create_inferior = thread_db_create_inferior;
bda9cb72 1375 thread_db_ops.to_post_startup_inferior = thread_db_post_startup_inferior;
fb0e1ba7
MK
1376 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
1377 thread_db_ops.to_thread_alive = thread_db_thread_alive;
1378 thread_db_ops.to_find_new_threads = thread_db_find_new_threads;
1379 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
1380 thread_db_ops.to_stratum = thread_stratum;
1381 thread_db_ops.to_has_thread_control = tc_schedlock;
3f47be5c
EZ
1382 thread_db_ops.to_get_thread_local_address
1383 = thread_db_get_thread_local_address;
fb0e1ba7
MK
1384 thread_db_ops.to_magic = OPS_MAGIC;
1385}
1386
1387void
1388_initialize_thread_db (void)
1389{
1390 /* Only initialize the module if we can load libthread_db. */
1391 if (thread_db_load ())
1392 {
1393 init_thread_db_ops ();
1394 add_target (&thread_db_ops);
1395
1396 /* Add ourselves to objfile event chain. */
9a4105ab
AC
1397 target_new_objfile_chain = deprecated_target_new_objfile_hook;
1398 deprecated_target_new_objfile_hook = thread_db_new_objfile;
fb0e1ba7
MK
1399 }
1400}
This page took 0.500368 seconds and 4 git commands to generate.