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