]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/linux-thread-db.c
* Makefile.in (SIM_EXTRA_DEPS): Add sh-desc.h sh-opc.h.
[thirdparty/binutils-gdb.git] / gdb / linux-thread-db.c
CommitLineData
fb0e1ba7 1/* libthread_db assisted debugging support, generic parts.
1bac305b 2
0fb0cc75 3 Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009
10d6c8cd 4 Free Software Foundation, Inc.
fb0e1ba7
MK
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
fb0e1ba7
MK
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
fb0e1ba7
MK
20
21#include "defs.h"
22
23#include "gdb_assert.h"
24#include <dlfcn.h>
25#include "gdb_proc_service.h"
26#include "gdb_thread_db.h"
27
bda9cb72 28#include "bfd.h"
17a37d48 29#include "command.h"
93ad78a7 30#include "exceptions.h"
17a37d48 31#include "gdbcmd.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"
17a37d48 38#include "solib.h"
3f47be5c 39#include "solib-svr4.h"
16451949 40#include "gdbcore.h"
06d3b283 41#include "observer.h"
0ec9a092 42#include "linux-nat.h"
fb0e1ba7 43
979894f2
NR
44#include <signal.h>
45
a2f23071
DJ
46#ifdef HAVE_GNU_LIBC_VERSION_H
47#include <gnu/libc-version.h>
48#endif
49
17faa917
DJ
50/* GNU/Linux libthread_db support.
51
52 libthread_db is a library, provided along with libpthread.so, which
53 exposes the internals of the thread library to a debugger. It
54 allows GDB to find existing threads, new threads as they are
55 created, thread IDs (usually, the result of pthread_self), and
56 thread-local variables.
57
58 The libthread_db interface originates on Solaris, where it is
59 both more powerful and more complicated. This implementation
60 only works for LinuxThreads and NPTL, the two glibc threading
61 libraries. It assumes that each thread is permanently assigned
62 to a single light-weight process (LWP).
63
64 libthread_db-specific information is stored in the "private" field
65 of struct thread_info. When the field is NULL we do not yet have
66 information about the new thread; this could be temporary (created,
67 but the thread library's data structures do not reflect it yet)
68 or permanent (created using clone instead of pthread_create).
69
70 Process IDs managed by linux-thread-db.c match those used by
71 linux-nat.c: a common PID for all processes, an LWP ID for each
72 thread, and no TID. We save the TID in private. Keeping it out
73 of the ptid_t prevents thread IDs changing when libpthread is
74 loaded or unloaded. */
75
17a37d48
PP
76static char *libthread_db_search_path;
77
8605d56e
AC
78/* If we're running on GNU/Linux, we must explicitly attach to any new
79 threads. */
fb0e1ba7 80
fb0e1ba7
MK
81/* This module's target vector. */
82static struct target_ops thread_db_ops;
83
fb0e1ba7
MK
84/* Non-zero if we have determined the signals used by the threads
85 library. */
86static int thread_signals;
87static sigset_t thread_stop_set;
88static sigset_t thread_print_set;
89
d90e17a7
PA
90struct thread_db_info
91{
92 struct thread_db_info *next;
93
94 /* Process id this object refers to. */
95 int pid;
96
97 /* Handle from dlopen for libthread_db.so. */
98 void *handle;
99
100 /* Structure that identifies the child process for the
101 <proc_service.h> interface. */
102 struct ps_prochandle proc_handle;
103
104 /* Connection to the libthread_db library. */
105 td_thragent_t *thread_agent;
106
4d062f1a
PA
107 /* True if we need to apply the workaround for glibc/BZ5983. When
108 we catch a PTRACE_O_TRACEFORK, and go query the child's thread
109 list, nptl_db returns the parent's threads in addition to the new
110 (single) child thread. If this flag is set, we do extra work to
111 be able to ignore such stale entries. */
112 int need_stale_parent_threads_check;
113
d90e17a7
PA
114 /* Location of the thread creation event breakpoint. The code at
115 this location in the child process will be called by the pthread
116 library whenever a new thread is created. By setting a special
117 breakpoint at this location, GDB can detect when a new thread is
118 created. We obtain this location via the td_ta_event_addr
119 call. */
120 CORE_ADDR td_create_bp_addr;
fb0e1ba7 121
d90e17a7
PA
122 /* Location of the thread death event breakpoint. */
123 CORE_ADDR td_death_bp_addr;
fb0e1ba7 124
d90e17a7 125 /* Pointers to the libthread_db functions. */
fb0e1ba7 126
d90e17a7 127 td_err_e (*td_init_p) (void);
fb0e1ba7 128
d90e17a7 129 td_err_e (*td_ta_new_p) (struct ps_prochandle * ps,
b4acd559 130 td_thragent_t **ta);
d90e17a7
PA
131 td_err_e (*td_ta_map_id2thr_p) (const td_thragent_t *ta, thread_t pt,
132 td_thrhandle_t *__th);
133 td_err_e (*td_ta_map_lwp2thr_p) (const td_thragent_t *ta,
134 lwpid_t lwpid, td_thrhandle_t *th);
135 td_err_e (*td_ta_thr_iter_p) (const td_thragent_t *ta,
136 td_thr_iter_f *callback, void *cbdata_p,
137 td_thr_state_e state, int ti_pri,
138 sigset_t *ti_sigmask_p,
139 unsigned int ti_user_flags);
140 td_err_e (*td_ta_event_addr_p) (const td_thragent_t *ta,
141 td_event_e event, td_notify_t *ptr);
142 td_err_e (*td_ta_set_event_p) (const td_thragent_t *ta,
143 td_thr_events_t *event);
144 td_err_e (*td_ta_event_getmsg_p) (const td_thragent_t *ta,
145 td_event_msg_t *msg);
146
147 td_err_e (*td_thr_validate_p) (const td_thrhandle_t *th);
148 td_err_e (*td_thr_get_info_p) (const td_thrhandle_t *th,
149 td_thrinfo_t *infop);
150 td_err_e (*td_thr_event_enable_p) (const td_thrhandle_t *th,
151 int event);
152
153 td_err_e (*td_thr_tls_get_addr_p) (const td_thrhandle_t *th,
154 void *map_address,
155 size_t offset, void **address);
156};
157
158/* List of known processes using thread_db, and the required
159 bookkeeping. */
160struct thread_db_info *thread_db_list;
161
162static void thread_db_find_new_threads_1 (ptid_t ptid);
02c6c942 163static void thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new);
d90e17a7
PA
164
165/* Add the current inferior to the list of processes using libpthread.
166 Return a pointer to the newly allocated object that was added to
167 THREAD_DB_LIST. HANDLE is the handle returned by dlopen'ing
168 LIBTHREAD_DB_SO. */
169
170static struct thread_db_info *
171add_thread_db_info (void *handle)
172{
173 int pid;
174 struct thread_db_info *info;
175
176 info = xcalloc (1, sizeof (*info));
177 info->pid = ptid_get_pid (inferior_ptid);
178 info->handle = handle;
4d062f1a 179 info->need_stale_parent_threads_check = 1;
d90e17a7
PA
180
181 info->next = thread_db_list;
182 thread_db_list = info;
183
184 return info;
185}
186
187/* Return the thread_db_info object representing the bookkeeping
188 related to process PID, if any; NULL otherwise. */
189
190static struct thread_db_info *
191get_thread_db_info (int pid)
192{
193 struct thread_db_info *info;
194
195 for (info = thread_db_list; info; info = info->next)
196 if (pid == info->pid)
197 return info;
198
199 return NULL;
200}
201
202/* When PID has exited or has been detached, we no longer want to keep
203 track of it as using libpthread. Call this function to discard
204 thread_db related info related to PID. Note that this closes
205 LIBTHREAD_DB_SO's dlopen'ed handle. */
206
207static void
208delete_thread_db_info (int pid)
209{
210 struct thread_db_info *info, *info_prev;
211
212 info_prev = NULL;
213
214 for (info = thread_db_list; info; info_prev = info, info = info->next)
215 if (pid == info->pid)
216 break;
217
218 if (info == NULL)
219 return;
220
221 if (info->handle != NULL)
222 dlclose (info->handle);
223
224 if (info_prev)
225 info_prev->next = info->next;
226 else
227 thread_db_list = info->next;
228
229 xfree (info);
230}
fb0e1ba7
MK
231
232/* Prototypes for local functions. */
02c6c942
PP
233static int attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
234 const td_thrinfo_t *ti_p);
17faa917 235static void detach_thread (ptid_t ptid);
fb0e1ba7
MK
236\f
237
5365276c
DJ
238/* Use "struct private_thread_info" to cache thread state. This is
239 a substantial optimization. */
240
fb0e1ba7
MK
241struct private_thread_info
242{
a2f23071
DJ
243 /* Flag set when we see a TD_DEATH event for this thread. */
244 unsigned int dying:1;
245
5365276c 246 /* Cached thread state. */
5365276c 247 td_thrhandle_t th;
17faa917 248 thread_t tid;
fb0e1ba7 249};
fb0e1ba7 250\f
21bf60fe 251
fb0e1ba7
MK
252static char *
253thread_db_err_str (td_err_e err)
254{
255 static char buf[64];
256
257 switch (err)
258 {
259 case TD_OK:
260 return "generic 'call succeeded'";
261 case TD_ERR:
262 return "generic error";
263 case TD_NOTHR:
264 return "no thread to satisfy query";
265 case TD_NOSV:
266 return "no sync handle to satisfy query";
267 case TD_NOLWP:
268 return "no LWP to satisfy query";
269 case TD_BADPH:
270 return "invalid process handle";
271 case TD_BADTH:
272 return "invalid thread handle";
273 case TD_BADSH:
274 return "invalid synchronization handle";
275 case TD_BADTA:
276 return "invalid thread agent";
277 case TD_BADKEY:
278 return "invalid key";
279 case TD_NOMSG:
280 return "no event message for getmsg";
281 case TD_NOFPREGS:
282 return "FPU register set not available";
283 case TD_NOLIBTHREAD:
284 return "application not linked with libthread";
285 case TD_NOEVENT:
286 return "requested event is not supported";
287 case TD_NOCAPAB:
288 return "capability not available";
289 case TD_DBERR:
290 return "debugger service failed";
291 case TD_NOAPLIC:
292 return "operation not applicable to";
293 case TD_NOTSD:
294 return "no thread-specific data for this thread";
295 case TD_MALLOC:
296 return "malloc failed";
297 case TD_PARTIALREG:
298 return "only part of register set was written/read";
299 case TD_NOXREGS:
300 return "X register set not available for this thread";
59f80f10
DJ
301#ifdef THREAD_DB_HAS_TD_NOTALLOC
302 case TD_NOTALLOC:
303 return "thread has not yet allocated TLS for given module";
304#endif
305#ifdef THREAD_DB_HAS_TD_VERSION
306 case TD_VERSION:
307 return "versions of libpthread and libthread_db do not match";
308#endif
309#ifdef THREAD_DB_HAS_TD_NOTLS
310 case TD_NOTLS:
311 return "there is no TLS segment in the given module";
312#endif
fb0e1ba7
MK
313 default:
314 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
315 return buf;
316 }
317}
fb0e1ba7 318\f
4105de34
DJ
319/* Return 1 if any threads have been registered. There may be none if
320 the threading library is not fully initialized yet. */
321
322static int
d90e17a7 323have_threads_callback (struct thread_info *thread, void *args)
4105de34 324{
d90e17a7
PA
325 int pid = * (int *) args;
326 if (ptid_get_pid (thread->ptid) != pid)
327 return 0;
328
e3bc4218 329 return thread->private != NULL;
4105de34
DJ
330}
331
332static int
d90e17a7 333have_threads (ptid_t ptid)
4105de34 334{
d90e17a7
PA
335 int pid = ptid_get_pid (ptid);
336
337 return iterate_over_threads (have_threads_callback, &pid) != NULL;
4105de34
DJ
338}
339
d90e17a7
PA
340struct thread_get_info_inout
341{
342 struct thread_info *thread_info;
343 struct thread_db_info *thread_db_info;
344};
345
5365276c 346/* A callback function for td_ta_thr_iter, which we use to map all
cdbc0b18 347 threads to LWPs.
5365276c
DJ
348
349 THP is a handle to the current thread; if INFOP is not NULL, the
350 struct thread_info associated with this thread is returned in
b9b5d7ea
JJ
351 *INFOP.
352
353 If the thread is a zombie, TD_THR_ZOMBIE is returned. Otherwise,
354 zero is returned to indicate success. */
5365276c
DJ
355
356static int
d90e17a7 357thread_get_info_callback (const td_thrhandle_t *thp, void *argp)
5365276c
DJ
358{
359 td_thrinfo_t ti;
360 td_err_e err;
5365276c 361 ptid_t thread_ptid;
d90e17a7
PA
362 struct thread_get_info_inout *inout;
363 struct thread_db_info *info;
364
365 inout = argp;
366 info = inout->thread_db_info;
5365276c 367
d90e17a7 368 err = info->td_thr_get_info_p (thp, &ti);
5365276c 369 if (err != TD_OK)
8a3fe4f8 370 error (_("thread_get_info_callback: cannot get thread info: %s"),
5365276c
DJ
371 thread_db_err_str (err));
372
373 /* Fill the cache. */
d90e17a7 374 thread_ptid = ptid_build (info->pid, ti.ti_lid, 0);
e09875d4 375 inout->thread_info = find_thread_ptid (thread_ptid);
5365276c 376
b9b5d7ea 377 /* In the case of a zombie thread, don't continue. We don't want to
f90ef764 378 attach to it thinking it is a new thread. */
b9b5d7ea 379 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
d90e17a7 380 return TD_THR_ZOMBIE;
b9b5d7ea 381
d90e17a7 382 if (inout->thread_info == NULL)
5365276c
DJ
383 {
384 /* New thread. Attach to it now (why wait?). */
d90e17a7
PA
385 if (!have_threads (thread_ptid))
386 thread_db_find_new_threads_1 (thread_ptid);
4c28f408
PA
387 else
388 attach_thread (thread_ptid, thp, &ti);
e09875d4 389 inout->thread_info = find_thread_ptid (thread_ptid);
d90e17a7 390 gdb_assert (inout->thread_info != NULL);
5365276c
DJ
391 }
392
5365276c
DJ
393 return 0;
394}
5365276c 395\f
fb0e1ba7
MK
396/* Convert between user-level thread ids and LWP ids. */
397
39f77062
KB
398static ptid_t
399thread_from_lwp (ptid_t ptid)
fb0e1ba7 400{
fb0e1ba7
MK
401 td_thrhandle_t th;
402 td_err_e err;
5365276c 403 ptid_t thread_ptid;
d90e17a7
PA
404 struct thread_db_info *info;
405 struct thread_get_info_inout io = {0};
fb0e1ba7 406
17faa917
DJ
407 /* This ptid comes from linux-nat.c, which should always fill in the
408 LWP. */
409 gdb_assert (GET_LWP (ptid) != 0);
fb0e1ba7 410
d90e17a7
PA
411 info = get_thread_db_info (GET_PID (ptid));
412
4c28f408 413 /* Access an lwp we know is stopped. */
d90e17a7
PA
414 info->proc_handle.ptid = ptid;
415 err = info->td_ta_map_lwp2thr_p (info->thread_agent, GET_LWP (ptid), &th);
fb0e1ba7 416 if (err != TD_OK)
8a3fe4f8 417 error (_("Cannot find user-level thread for LWP %ld: %s"),
39f77062 418 GET_LWP (ptid), thread_db_err_str (err));
fb0e1ba7 419
b9b5d7ea
JJ
420 /* Fetch the thread info. If we get back TD_THR_ZOMBIE, then the
421 event thread has already died. If another gdb interface has called
422 thread_alive() previously, the thread won't be found on the thread list
423 anymore. In that case, we don't want to process this ptid anymore
424 to avoid the possibility of later treating it as a newly
425 discovered thread id that we should add to the list. Thus,
426 we return a -1 ptid which is also how the thread list marks a
427 dead thread. */
d90e17a7
PA
428 io.thread_db_info = info;
429 io.thread_info = NULL;
430 if (thread_get_info_callback (&th, &io) == TD_THR_ZOMBIE
431 && io.thread_info == NULL)
432 return minus_one_ptid;
b9b5d7ea 433
17faa917
DJ
434 gdb_assert (ptid_get_tid (ptid) == 0);
435 return ptid;
fb0e1ba7
MK
436}
437\f
438
4c28f408
PA
439/* Attach to lwp PTID, doing whatever else is required to have this
440 LWP under the debugger's control --- e.g., enabling event
441 reporting. Returns true on success. */
442int
443thread_db_attach_lwp (ptid_t ptid)
444{
445 td_thrhandle_t th;
446 td_thrinfo_t ti;
447 td_err_e err;
d90e17a7 448 struct thread_db_info *info;
4c28f408 449
d90e17a7
PA
450 info = get_thread_db_info (GET_PID (ptid));
451
452 if (info == NULL)
4c28f408
PA
453 return 0;
454
455 /* This ptid comes from linux-nat.c, which should always fill in the
456 LWP. */
457 gdb_assert (GET_LWP (ptid) != 0);
458
459 /* Access an lwp we know is stopped. */
d90e17a7 460 info->proc_handle.ptid = ptid;
4c28f408
PA
461
462 /* If we have only looked at the first thread before libpthread was
463 initialized, we may not know its thread ID yet. Make sure we do
464 before we add another thread to the list. */
d90e17a7
PA
465 if (!have_threads (ptid))
466 thread_db_find_new_threads_1 (ptid);
4c28f408 467
d90e17a7 468 err = info->td_ta_map_lwp2thr_p (info->thread_agent, GET_LWP (ptid), &th);
4c28f408
PA
469 if (err != TD_OK)
470 /* Cannot find user-level thread. */
471 return 0;
472
d90e17a7 473 err = info->td_thr_get_info_p (&th, &ti);
4c28f408
PA
474 if (err != TD_OK)
475 {
476 warning (_("Cannot get thread info: %s"), thread_db_err_str (err));
477 return 0;
478 }
479
480 attach_thread (ptid, &th, &ti);
481 return 1;
482}
483
5220ea4c
AC
484static void *
485verbose_dlsym (void *handle, const char *name)
486{
487 void *sym = dlsym (handle, name);
488 if (sym == NULL)
8a3fe4f8 489 warning (_("Symbol \"%s\" not found in libthread_db: %s"), name, dlerror ());
5220ea4c
AC
490 return sym;
491}
492
cdbc0b18 493static td_err_e
d90e17a7 494enable_thread_event (int event, CORE_ADDR *bp)
24557e30
AC
495{
496 td_notify_t notify;
cdbc0b18 497 td_err_e err;
d90e17a7
PA
498 struct thread_db_info *info;
499
500 info = get_thread_db_info (GET_PID (inferior_ptid));
24557e30 501
4c28f408 502 /* Access an lwp we know is stopped. */
d90e17a7 503 info->proc_handle.ptid = inferior_ptid;
4c28f408 504
24557e30 505 /* Get the breakpoint address for thread EVENT. */
d90e17a7 506 err = info->td_ta_event_addr_p (info->thread_agent, event, &notify);
24557e30 507 if (err != TD_OK)
cdbc0b18 508 return err;
24557e30
AC
509
510 /* Set up the breakpoint. */
16451949
AS
511 gdb_assert (exec_bfd);
512 (*bp) = (gdbarch_convert_from_func_ptr_addr
a97b0ac8 513 (target_gdbarch,
16451949
AS
514 /* Do proper sign extension for the target. */
515 (bfd_get_sign_extend_vma (exec_bfd) > 0
516 ? (CORE_ADDR) (intptr_t) notify.u.bptaddr
517 : (CORE_ADDR) (uintptr_t) notify.u.bptaddr),
518 &current_target));
a6d9a66e 519 create_thread_event_breakpoint (target_gdbarch, *bp);
24557e30 520
cdbc0b18 521 return TD_OK;
24557e30
AC
522}
523
fb0e1ba7
MK
524static void
525enable_thread_event_reporting (void)
526{
527 td_thr_events_t events;
528 td_notify_t notify;
529 td_err_e err;
a2f23071
DJ
530#ifdef HAVE_GNU_LIBC_VERSION_H
531 const char *libc_version;
532 int libc_major, libc_minor;
533#endif
d90e17a7
PA
534 struct thread_db_info *info;
535
536 info = get_thread_db_info (GET_PID (inferior_ptid));
fb0e1ba7
MK
537
538 /* We cannot use the thread event reporting facility if these
539 functions aren't available. */
d90e17a7
PA
540 if (info->td_ta_event_addr_p == NULL
541 || info->td_ta_set_event_p == NULL
542 || info->td_ta_event_getmsg_p == NULL
543 || info->td_thr_event_enable_p == NULL)
fb0e1ba7
MK
544 return;
545
546 /* Set the process wide mask saying which events we're interested in. */
547 td_event_emptyset (&events);
548 td_event_addset (&events, TD_CREATE);
a2f23071
DJ
549
550#ifdef HAVE_GNU_LIBC_VERSION_H
34091d9b 551 /* The event reporting facility is broken for TD_DEATH events in
2ef52e77 552 glibc 2.1.3, so don't enable it if we have glibc but a lower
34091d9b 553 version. */
a2f23071
DJ
554 libc_version = gnu_get_libc_version ();
555 if (sscanf (libc_version, "%d.%d", &libc_major, &libc_minor) == 2
556 && (libc_major > 2 || (libc_major == 2 && libc_minor > 1)))
fb0e1ba7 557#endif
a2f23071 558 td_event_addset (&events, TD_DEATH);
fb0e1ba7 559
d90e17a7 560 err = info->td_ta_set_event_p (info->thread_agent, &events);
fb0e1ba7
MK
561 if (err != TD_OK)
562 {
8a3fe4f8 563 warning (_("Unable to set global thread event mask: %s"),
fb0e1ba7
MK
564 thread_db_err_str (err));
565 return;
566 }
567
568 /* Delete previous thread event breakpoints, if any. */
569 remove_thread_event_breakpoints ();
d90e17a7
PA
570 info->td_create_bp_addr = 0;
571 info->td_death_bp_addr = 0;
fb0e1ba7 572
24557e30 573 /* Set up the thread creation event. */
d90e17a7 574 err = enable_thread_event (TD_CREATE, &info->td_create_bp_addr);
cdbc0b18 575 if (err != TD_OK)
fb0e1ba7 576 {
8a3fe4f8 577 warning (_("Unable to get location for thread creation breakpoint: %s"),
fb0e1ba7
MK
578 thread_db_err_str (err));
579 return;
580 }
581
24557e30 582 /* Set up the thread death event. */
d90e17a7 583 err = enable_thread_event (TD_DEATH, &info->td_death_bp_addr);
cdbc0b18 584 if (err != TD_OK)
fb0e1ba7 585 {
8a3fe4f8 586 warning (_("Unable to get location for thread death breakpoint: %s"),
fb0e1ba7
MK
587 thread_db_err_str (err));
588 return;
589 }
fb0e1ba7
MK
590}
591
456b0e24
PP
592/* Same as thread_db_find_new_threads_1, but silently ignore errors. */
593
594static void
595thread_db_find_new_threads_silently (ptid_t ptid)
596{
597 volatile struct gdb_exception except;
598
599 TRY_CATCH (except, RETURN_MASK_ERROR)
600 {
02c6c942 601 thread_db_find_new_threads_2 (ptid, 1);
456b0e24
PP
602 }
603
604 if (except.reason < 0 && info_verbose)
605 {
606 exception_fprintf (gdb_stderr, except,
607 "Warning: thread_db_find_new_threads_silently: ");
608 }
609}
610
d90e17a7
PA
611/* Lookup a library in which given symbol resides.
612 Note: this is looking in GDB process, not in the inferior.
613 Returns library name, or NULL. */
614
615static const char *
616dladdr_to_soname (const void *addr)
617{
618 Dl_info info;
619
620 if (dladdr (addr, &info) != 0)
621 return info.dli_fname;
622 return NULL;
623}
624
17a37d48
PP
625/* Attempt to initialize dlopen()ed libthread_db, described by HANDLE.
626 Return 1 on success.
627 Failure could happen if libthread_db does not have symbols we expect,
628 or when it refuses to work with the current inferior (e.g. due to
629 version mismatch between libthread_db and libpthread). */
630
631static int
d90e17a7 632try_thread_db_load_1 (struct thread_db_info *info)
17a37d48
PP
633{
634 td_err_e err;
635
636 /* Initialize pointers to the dynamic library functions we will use.
637 Essential functions first. */
638
d90e17a7
PA
639 info->td_init_p = verbose_dlsym (info->handle, "td_init");
640 if (info->td_init_p == NULL)
17a37d48
PP
641 return 0;
642
d90e17a7 643 err = info->td_init_p ();
17a37d48
PP
644 if (err != TD_OK)
645 {
646 warning (_("Cannot initialize libthread_db: %s"), thread_db_err_str (err));
647 return 0;
648 }
649
d90e17a7
PA
650 info->td_ta_new_p = verbose_dlsym (info->handle, "td_ta_new");
651 if (info->td_ta_new_p == NULL)
17a37d48
PP
652 return 0;
653
654 /* Initialize the structure that identifies the child process. */
d90e17a7 655 info->proc_handle.ptid = inferior_ptid;
17a37d48
PP
656
657 /* Now attempt to open a connection to the thread library. */
d90e17a7 658 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
17a37d48
PP
659 if (err != TD_OK)
660 {
17a37d48
PP
661 if (info_verbose)
662 printf_unfiltered (_("td_ta_new failed: %s\n"),
663 thread_db_err_str (err));
664 else
665 switch (err)
666 {
667 case TD_NOLIBTHREAD:
668#ifdef THREAD_DB_HAS_TD_VERSION
669 case TD_VERSION:
670#endif
671 /* The errors above are not unexpected and silently ignored:
672 they just mean we haven't found correct version of
673 libthread_db yet. */
674 break;
675 default:
676 warning (_("td_ta_new failed: %s"), thread_db_err_str (err));
677 }
678 return 0;
679 }
680
d90e17a7
PA
681 info->td_ta_map_id2thr_p = verbose_dlsym (info->handle, "td_ta_map_id2thr");
682 if (info->td_ta_map_id2thr_p == NULL)
17a37d48
PP
683 return 0;
684
d90e17a7
PA
685 info->td_ta_map_lwp2thr_p = verbose_dlsym (info->handle, "td_ta_map_lwp2thr");
686 if (info->td_ta_map_lwp2thr_p == NULL)
17a37d48
PP
687 return 0;
688
d90e17a7
PA
689 info->td_ta_thr_iter_p = verbose_dlsym (info->handle, "td_ta_thr_iter");
690 if (info->td_ta_thr_iter_p == NULL)
17a37d48
PP
691 return 0;
692
d90e17a7
PA
693 info->td_thr_validate_p = verbose_dlsym (info->handle, "td_thr_validate");
694 if (info->td_thr_validate_p == NULL)
17a37d48
PP
695 return 0;
696
d90e17a7
PA
697 info->td_thr_get_info_p = verbose_dlsym (info->handle, "td_thr_get_info");
698 if (info->td_thr_get_info_p == NULL)
17a37d48
PP
699 return 0;
700
701 /* These are not essential. */
d90e17a7
PA
702 info->td_ta_event_addr_p = dlsym (info->handle, "td_ta_event_addr");
703 info->td_ta_set_event_p = dlsym (info->handle, "td_ta_set_event");
704 info->td_ta_event_getmsg_p = dlsym (info->handle, "td_ta_event_getmsg");
705 info->td_thr_event_enable_p = dlsym (info->handle, "td_thr_event_enable");
706 info->td_thr_tls_get_addr_p = dlsym (info->handle, "td_thr_tls_get_addr");
17a37d48
PP
707
708 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
709
d90e17a7
PA
710 if (info_verbose || *libthread_db_search_path)
711 {
712 const char *library;
17a37d48 713
d90e17a7
PA
714 library = dladdr_to_soname (*info->td_ta_new_p);
715 if (library == NULL)
716 library = LIBTHREAD_DB_SO;
17a37d48 717
d90e17a7
PA
718 printf_unfiltered (_("Using host libthread_db library \"%s\".\n"),
719 library);
720 }
17a37d48 721
d90e17a7
PA
722 /* The thread library was detected. Activate the thread_db target
723 if this is the first process using it. */
724 if (thread_db_list->next == NULL)
725 push_target (&thread_db_ops);
17a37d48 726
d90e17a7 727 enable_thread_event_reporting ();
456b0e24 728
099cb4fb 729 /* There appears to be a bug in glibc-2.3.6: calls to td_thr_get_info fail
456b0e24
PP
730 with TD_ERR for statically linked executables if td_thr_get_info is
731 called before glibc has initialized itself. Silently ignore such
099cb4fb 732 errors, and let gdb enumerate threads again later. */
456b0e24 733 thread_db_find_new_threads_silently (inferior_ptid);
099cb4fb 734
d90e17a7 735 return 1;
17a37d48
PP
736}
737
738/* Attempt to use LIBRARY as libthread_db. LIBRARY could be absolute,
739 relative, or just LIBTHREAD_DB. */
740
741static int
742try_thread_db_load (const char *library)
743{
744 void *handle;
d90e17a7 745 struct thread_db_info *info;
17a37d48
PP
746
747 if (info_verbose)
748 printf_unfiltered (_("Trying host libthread_db library: %s.\n"),
749 library);
750 handle = dlopen (library, RTLD_NOW);
751 if (handle == NULL)
752 {
753 if (info_verbose)
754 printf_unfiltered (_("dlopen failed: %s.\n"), dlerror ());
755 return 0;
756 }
757
758 if (info_verbose && strchr (library, '/') == NULL)
759 {
760 void *td_init;
761
762 td_init = dlsym (handle, "td_init");
763 if (td_init != NULL)
764 {
765 const char *const libpath = dladdr_to_soname (td_init);
766
767 if (libpath != NULL)
768 printf_unfiltered (_("Host %s resolved to: %s.\n"),
769 library, libpath);
770 }
771 }
772
d90e17a7
PA
773 info = add_thread_db_info (handle);
774
775 if (try_thread_db_load_1 (info))
17a37d48
PP
776 return 1;
777
778 /* This library "refused" to work on current inferior. */
d90e17a7 779 delete_thread_db_info (GET_PID (inferior_ptid));
17a37d48
PP
780 return 0;
781}
782
783
784/* Search libthread_db_search_path for libthread_db which "agrees"
785 to work on current inferior. */
786
787static int
788thread_db_load_search (void)
789{
790 char path[PATH_MAX];
791 const char *search_path = libthread_db_search_path;
792 int rc = 0;
793
794 while (*search_path)
795 {
796 const char *end = strchr (search_path, ':');
797 if (end)
798 {
799 size_t len = end - search_path;
800 if (len + 1 + strlen (LIBTHREAD_DB_SO) + 1 > sizeof (path))
801 {
802 char *cp = xmalloc (len + 1);
803 memcpy (cp, search_path, len);
804 cp[len] = '\0';
805 warning (_("libthread_db_search_path component too long,"
806 " ignored: %s."), cp);
807 xfree (cp);
808 search_path += len + 1;
809 continue;
810 }
811 memcpy (path, search_path, len);
812 path[len] = '\0';
813 search_path += len + 1;
814 }
815 else
816 {
817 size_t len = strlen (search_path);
818
819 if (len + 1 + strlen (LIBTHREAD_DB_SO) + 1 > sizeof (path))
820 {
821 warning (_("libthread_db_search_path component too long,"
822 " ignored: %s."), search_path);
823 break;
824 }
825 memcpy (path, search_path, len + 1);
826 search_path += len;
827 }
828 strcat (path, "/");
829 strcat (path, LIBTHREAD_DB_SO);
830 if (try_thread_db_load (path))
831 {
832 rc = 1;
833 break;
834 }
835 }
836 if (rc == 0)
837 rc = try_thread_db_load (LIBTHREAD_DB_SO);
838 return rc;
839}
840
841/* Attempt to load and initialize libthread_db.
842 Return 1 on success.
843 */
844
845static int
846thread_db_load (void)
847{
848 struct objfile *obj;
d90e17a7 849 struct thread_db_info *info;
17a37d48 850
d90e17a7
PA
851 info = get_thread_db_info (GET_PID (inferior_ptid));
852
853 if (info != NULL)
17a37d48
PP
854 return 1;
855
856 /* Don't attempt to use thread_db on targets which can not run
857 (executables not running yet, core files) for now. */
858 if (!target_has_execution)
859 return 0;
860
861 /* Don't attempt to use thread_db for remote targets. */
862 if (!target_can_run (&current_target))
863 return 0;
864
865 if (thread_db_load_search ())
866 return 1;
867
868 /* None of the libthread_db's on our search path, not the system default
869 ones worked. If the executable is dynamically linked against
870 libpthread, try loading libthread_db from the same directory. */
871
872 ALL_OBJFILES (obj)
873 if (libpthread_name_p (obj->name))
874 {
875 char path[PATH_MAX], *cp;
876
877 gdb_assert (strlen (obj->name) < sizeof (path));
878 strcpy (path, obj->name);
879 cp = strrchr (path, '/');
880
881 if (cp == NULL)
882 {
883 warning (_("Expected absolute pathname for libpthread in the"
884 " inferior, but got %s."), path);
885 }
886 else if (cp + 1 + strlen (LIBTHREAD_DB_SO) + 1 > path + sizeof (path))
887 {
888 warning (_("Unexpected: path to libpthread in the inferior is"
889 " too long: %s"), path);
890 }
891 else
892 {
893 strcpy (cp + 1, LIBTHREAD_DB_SO);
894 if (try_thread_db_load (path))
895 return 1;
896 }
897 warning (_("Unable to find libthread_db matching inferior's thread"
898 " library, thread debugging will not be available."));
899 return 0;
900 }
901 /* Either this executable isn't using libpthread at all, or it is
902 statically linked. Since we can't easily distinguish these two cases,
903 no warning is issued. */
904 return 0;
905}
906
fb0e1ba7
MK
907static void
908disable_thread_event_reporting (void)
909{
910 td_thr_events_t events;
d90e17a7
PA
911 struct thread_db_info *info;
912
913 info = get_thread_db_info (GET_PID (inferior_ptid));
fb0e1ba7
MK
914
915 /* Set the process wide mask saying we aren't interested in any
916 events anymore. */
917 td_event_emptyset (&events);
d90e17a7 918 info->td_ta_set_event_p (info->thread_agent, &events);
fb0e1ba7
MK
919
920 /* Delete thread event breakpoints, if any. */
921 remove_thread_event_breakpoints ();
d90e17a7
PA
922 info->td_create_bp_addr = 0;
923 info->td_death_bp_addr = 0;
fb0e1ba7
MK
924}
925
926static void
927check_thread_signals (void)
928{
929#ifdef GET_THREAD_SIGNALS
21bf60fe 930 if (!thread_signals)
fb0e1ba7
MK
931 {
932 sigset_t mask;
933 int i;
934
935 GET_THREAD_SIGNALS (&mask);
936 sigemptyset (&thread_stop_set);
937 sigemptyset (&thread_print_set);
938
b9569773 939 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
940 {
941 if (sigismember (&mask, i))
942 {
943 if (signal_stop_update (target_signal_from_host (i), 0))
944 sigaddset (&thread_stop_set, i);
945 if (signal_print_update (target_signal_from_host (i), 0))
946 sigaddset (&thread_print_set, i);
947 thread_signals = 1;
948 }
949 }
950 }
951#endif
952}
953
0ec9a092
DJ
954/* Check whether thread_db is usable. This function is called when
955 an inferior is created (or otherwise acquired, e.g. attached to)
956 and when new shared libraries are loaded into a running process. */
957
958void
959check_for_thread_db (void)
fb0e1ba7
MK
960{
961 td_err_e err;
17a37d48 962 static void *last_loaded;
fb0e1ba7 963
b5057acd 964 /* Do nothing if we couldn't load libthread_db.so.1. */
17a37d48 965 if (!thread_db_load ())
b5057acd 966 return;
0ec9a092
DJ
967}
968
969static void
970thread_db_new_objfile (struct objfile *objfile)
971{
d90e17a7
PA
972 /* This observer must always be called with inferior_ptid set
973 correctly. */
974
0ec9a092
DJ
975 if (objfile != NULL)
976 check_for_thread_db ();
fb0e1ba7
MK
977}
978
a2f23071
DJ
979/* Attach to a new thread. This function is called when we receive a
980 TD_CREATE event or when we iterate over all threads and find one
02c6c942 981 that wasn't already in our list. Returns true on success. */
a2f23071 982
02c6c942 983static int
39f77062 984attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
93815fbf 985 const td_thrinfo_t *ti_p)
fb0e1ba7 986{
17faa917
DJ
987 struct private_thread_info *private;
988 struct thread_info *tp = NULL;
fb0e1ba7 989 td_err_e err;
d90e17a7 990 struct thread_db_info *info;
fb0e1ba7 991
a2f23071
DJ
992 /* If we're being called after a TD_CREATE event, we may already
993 know about this thread. There are two ways this can happen. We
994 may have iterated over all threads between the thread creation
995 and the TD_CREATE event, for instance when the user has issued
996 the `info threads' command before the SIGTRAP for hitting the
997 thread creation breakpoint was reported. Alternatively, the
998 thread may have exited and a new one been created with the same
999 thread ID. In the first case we don't need to do anything; in
1000 the second case we should discard information about the dead
1001 thread and attach to the new one. */
1002 if (in_thread_list (ptid))
1003 {
e09875d4 1004 tp = find_thread_ptid (ptid);
a2f23071
DJ
1005 gdb_assert (tp != NULL);
1006
17faa917
DJ
1007 /* If tp->private is NULL, then GDB is already attached to this
1008 thread, but we do not know anything about it. We can learn
1009 about it here. This can only happen if we have some other
1010 way besides libthread_db to notice new threads (i.e.
1011 PTRACE_EVENT_CLONE); assume the same mechanism notices thread
1012 exit, so this can not be a stale thread recreated with the
1013 same ID. */
1014 if (tp->private != NULL)
1015 {
1016 if (!tp->private->dying)
02c6c942 1017 return 0;
a2f23071 1018
17faa917
DJ
1019 delete_thread (ptid);
1020 tp = NULL;
1021 }
a2f23071
DJ
1022 }
1023
fb0e1ba7
MK
1024 check_thread_signals ();
1025
9ee57c33 1026 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
02c6c942 1027 return 0; /* A zombie thread -- do not attach. */
9ee57c33
DJ
1028
1029 /* Under GNU/Linux, we have to attach to each and every thread. */
17faa917
DJ
1030 if (tp == NULL
1031 && lin_lwp_attach_lwp (BUILD_LWP (ti_p->ti_lid, GET_PID (ptid))) < 0)
02c6c942 1032 return 0;
9ee57c33 1033
17faa917
DJ
1034 /* Construct the thread's private data. */
1035 private = xmalloc (sizeof (struct private_thread_info));
1036 memset (private, 0, sizeof (struct private_thread_info));
1037
1038 /* A thread ID of zero may mean the thread library has not initialized
1039 yet. But we shouldn't even get here if that's the case. FIXME:
1040 if we change GDB to always have at least one thread in the thread
1041 list this will have to go somewhere else; maybe private == NULL
1042 until the thread_db target claims it. */
1043 gdb_assert (ti_p->ti_tid != 0);
1044 private->th = *th_p;
1045 private->tid = ti_p->ti_tid;
1046
fb0e1ba7 1047 /* Add the thread to GDB's thread list. */
17faa917
DJ
1048 if (tp == NULL)
1049 tp = add_thread_with_info (ptid, private);
1050 else
1051 tp->private = private;
5365276c 1052
d90e17a7
PA
1053 info = get_thread_db_info (GET_PID (ptid));
1054
fb0e1ba7 1055 /* Enable thread event reporting for this thread. */
d90e17a7 1056 err = info->td_thr_event_enable_p (th_p, 1);
fb0e1ba7 1057 if (err != TD_OK)
8a3fe4f8 1058 error (_("Cannot enable thread event reporting for %s: %s"),
39f77062 1059 target_pid_to_str (ptid), thread_db_err_str (err));
02c6c942 1060 return 1;
fb0e1ba7
MK
1061}
1062
1063static void
17faa917 1064detach_thread (ptid_t ptid)
fb0e1ba7 1065{
a2f23071
DJ
1066 struct thread_info *thread_info;
1067
a2f23071
DJ
1068 /* Don't delete the thread now, because it still reports as active
1069 until it has executed a few instructions after the event
1070 breakpoint - if we deleted it now, "info threads" would cause us
1071 to re-attach to it. Just mark it as having had a TD_DEATH
1072 event. This means that we won't delete it from our thread list
1073 until we notice that it's dead (via prune_threads), or until
17faa917
DJ
1074 something re-uses its thread ID. We'll report the thread exit
1075 when the underlying LWP dies. */
e09875d4 1076 thread_info = find_thread_ptid (ptid);
17faa917 1077 gdb_assert (thread_info != NULL && thread_info->private != NULL);
a2f23071 1078 thread_info->private->dying = 1;
fb0e1ba7
MK
1079}
1080
1081static void
136d6dae 1082thread_db_detach (struct target_ops *ops, char *args, int from_tty)
fb0e1ba7 1083{
117de6a9 1084 struct target_ops *target_beneath = find_target_beneath (ops);
d90e17a7 1085 struct thread_db_info *info;
117de6a9 1086
d90e17a7 1087 info = get_thread_db_info (GET_PID (inferior_ptid));
c194fbe1 1088
d90e17a7
PA
1089 if (info)
1090 {
1091 disable_thread_event_reporting ();
7a7d3353 1092
d90e17a7
PA
1093 /* Delete the old thread event breakpoints. Note that unlike
1094 when mourning, we can remove them here because there's still
1095 a live inferior to poke at. In any case, GDB will not try to
1096 insert anything in the inferior when removing a
1097 breakpoint. */
1098 remove_thread_event_breakpoints ();
1099
1100 delete_thread_db_info (GET_PID (inferior_ptid));
1101 }
4105de34 1102
7a7d3353 1103 target_beneath->to_detach (target_beneath, args, from_tty);
d90e17a7
PA
1104
1105 /* NOTE: From this point on, inferior_ptid is null_ptid. */
1106
1107 /* If there are no more processes using libpthread, detach the
1108 thread_db target ops. */
1109 if (!thread_db_list)
1110 unpush_target (&thread_db_ops);
fb0e1ba7
MK
1111}
1112
fb0e1ba7
MK
1113/* Check if PID is currently stopped at the location of a thread event
1114 breakpoint location. If it is, read the event message and act upon
1115 the event. */
1116
1117static void
39f77062 1118check_event (ptid_t ptid)
fb0e1ba7 1119{
515630c5
UW
1120 struct regcache *regcache = get_thread_regcache (ptid);
1121 struct gdbarch *gdbarch = get_regcache_arch (regcache);
fb0e1ba7
MK
1122 td_event_msg_t msg;
1123 td_thrinfo_t ti;
1124 td_err_e err;
1125 CORE_ADDR stop_pc;
4d9850d3 1126 int loop = 0;
d90e17a7
PA
1127 struct thread_db_info *info;
1128
1129 info = get_thread_db_info (GET_PID (ptid));
fb0e1ba7
MK
1130
1131 /* Bail out early if we're not at a thread event breakpoint. */
515630c5
UW
1132 stop_pc = regcache_read_pc (regcache)
1133 - gdbarch_decr_pc_after_break (gdbarch);
d90e17a7
PA
1134 if (stop_pc != info->td_create_bp_addr
1135 && stop_pc != info->td_death_bp_addr)
fb0e1ba7
MK
1136 return;
1137
4c28f408 1138 /* Access an lwp we know is stopped. */
d90e17a7 1139 info->proc_handle.ptid = ptid;
4c28f408
PA
1140
1141 /* If we have only looked at the first thread before libpthread was
1142 initialized, we may not know its thread ID yet. Make sure we do
1143 before we add another thread to the list. */
d90e17a7
PA
1144 if (!have_threads (ptid))
1145 thread_db_find_new_threads_1 (ptid);
4c28f408 1146
4d9850d3
JJ
1147 /* If we are at a create breakpoint, we do not know what new lwp
1148 was created and cannot specifically locate the event message for it.
1149 We have to call td_ta_event_getmsg() to get
1150 the latest message. Since we have no way of correlating whether
cdbc0b18 1151 the event message we get back corresponds to our breakpoint, we must
4d9850d3 1152 loop and read all event messages, processing them appropriately.
cdbc0b18
RM
1153 This guarantees we will process the correct message before continuing
1154 from the breakpoint.
4d9850d3
JJ
1155
1156 Currently, death events are not enabled. If they are enabled,
1157 the death event can use the td_thr_event_getmsg() interface to
1158 get the message specifically for that lwp and avoid looping
1159 below. */
1160
1161 loop = 1;
1162
1163 do
fb0e1ba7 1164 {
d90e17a7 1165 err = info->td_ta_event_getmsg_p (info->thread_agent, &msg);
4d9850d3
JJ
1166 if (err != TD_OK)
1167 {
1168 if (err == TD_NOMSG)
1169 return;
fb0e1ba7 1170
8a3fe4f8 1171 error (_("Cannot get thread event message: %s"),
4d9850d3
JJ
1172 thread_db_err_str (err));
1173 }
fb0e1ba7 1174
d90e17a7 1175 err = info->td_thr_get_info_p (msg.th_p, &ti);
4d9850d3 1176 if (err != TD_OK)
8a3fe4f8 1177 error (_("Cannot get thread info: %s"), thread_db_err_str (err));
fb0e1ba7 1178
17faa917 1179 ptid = ptid_build (GET_PID (ptid), ti.ti_lid, 0);
fb0e1ba7 1180
4d9850d3
JJ
1181 switch (msg.event)
1182 {
1183 case TD_CREATE:
a2f23071
DJ
1184 /* Call attach_thread whether or not we already know about a
1185 thread with this thread ID. */
93815fbf 1186 attach_thread (ptid, msg.th_p, &ti);
fb0e1ba7 1187
4d9850d3 1188 break;
fb0e1ba7 1189
4d9850d3 1190 case TD_DEATH:
fb0e1ba7 1191
4d9850d3 1192 if (!in_thread_list (ptid))
8a3fe4f8 1193 error (_("Spurious thread death event."));
fb0e1ba7 1194
17faa917 1195 detach_thread (ptid);
fb0e1ba7 1196
4d9850d3 1197 break;
fb0e1ba7 1198
4d9850d3 1199 default:
8a3fe4f8 1200 error (_("Spurious thread event."));
4d9850d3 1201 }
fb0e1ba7 1202 }
4d9850d3 1203 while (loop);
fb0e1ba7
MK
1204}
1205
39f77062 1206static ptid_t
117de6a9 1207thread_db_wait (struct target_ops *ops,
47608cb1
PA
1208 ptid_t ptid, struct target_waitstatus *ourstatus,
1209 int options)
fb0e1ba7 1210{
d90e17a7 1211 struct thread_db_info *info;
117de6a9
PA
1212 struct target_ops *beneath = find_target_beneath (ops);
1213
47608cb1 1214 ptid = beneath->to_wait (beneath, ptid, ourstatus, options);
fb0e1ba7 1215
b84876c2
PA
1216 if (ourstatus->kind == TARGET_WAITKIND_IGNORE)
1217 return ptid;
1218
1111f4aa 1219 if (ourstatus->kind == TARGET_WAITKIND_EXITED
fb66883a
PA
1220 || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
1221 return ptid;
fb0e1ba7 1222
d90e17a7
PA
1223 info = get_thread_db_info (GET_PID (ptid));
1224
1225 /* If this process isn't using thread_db, we're done. */
1226 if (info == NULL)
1227 return ptid;
1228
3f64f7b1
DJ
1229 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1230 {
d90e17a7
PA
1231 /* New image, it may or may not end up using thread_db. Assume
1232 not unless we find otherwise. */
1233 delete_thread_db_info (GET_PID (ptid));
1234 if (!thread_db_list)
1235 unpush_target (&thread_db_ops);
3f64f7b1 1236
6c95b8df
PA
1237 /* Thread event breakpoints are deleted by
1238 update_breakpoints_after_exec. */
1239
49fd4a42 1240 return ptid;
3f64f7b1
DJ
1241 }
1242
4105de34
DJ
1243 /* If we do not know about the main thread yet, this would be a good time to
1244 find it. */
d90e17a7
PA
1245 if (ourstatus->kind == TARGET_WAITKIND_STOPPED && !have_threads (ptid))
1246 thread_db_find_new_threads_1 (ptid);
4105de34 1247
fb0e1ba7
MK
1248 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
1249 && ourstatus->value.sig == TARGET_SIGNAL_TRAP)
1250 /* Check for a thread event. */
39f77062 1251 check_event (ptid);
fb0e1ba7 1252
d90e17a7 1253 if (have_threads (ptid))
4105de34
DJ
1254 {
1255 /* Change ptids back into the higher level PID + TID format. If
1256 the thread is dead and no longer on the thread list, we will
1257 get back a dead ptid. This can occur if the thread death
1258 event gets postponed by other simultaneous events. In such a
1259 case, we want to just ignore the event and continue on. */
1260
4105de34
DJ
1261 ptid = thread_from_lwp (ptid);
1262 if (GET_PID (ptid) == -1)
1263 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1264 }
fb0e1ba7 1265
b9b5d7ea 1266 return ptid;
fb0e1ba7
MK
1267}
1268
fb0e1ba7 1269static void
136d6dae 1270thread_db_mourn_inferior (struct target_ops *ops)
fb0e1ba7 1271{
117de6a9
PA
1272 struct target_ops *target_beneath = find_target_beneath (ops);
1273
d90e17a7 1274 delete_thread_db_info (GET_PID (inferior_ptid));
fb0e1ba7 1275
d90e17a7
PA
1276 target_beneath->to_mourn_inferior (target_beneath);
1277
6c95b8df
PA
1278 /* Delete the old thread event breakpoints. Do this after mourning
1279 the inferior, so that we don't try to uninsert them. */
1280 remove_thread_event_breakpoints ();
1281
b26a6851 1282 /* Detach thread_db target ops. */
d90e17a7
PA
1283 if (!thread_db_list)
1284 unpush_target (ops);
fb0e1ba7
MK
1285}
1286
02c6c942
PP
1287struct callback_data
1288{
1289 struct thread_db_info *info;
1290 int new_threads;
1291};
1292
fb0e1ba7
MK
1293static int
1294find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1295{
1296 td_thrinfo_t ti;
1297 td_err_e err;
39f77062 1298 ptid_t ptid;
403fe197 1299 struct thread_info *tp;
02c6c942
PP
1300 struct callback_data *cb_data = data;
1301 struct thread_db_info *info = cb_data->info;
fb0e1ba7 1302
d90e17a7 1303 err = info->td_thr_get_info_p (th_p, &ti);
fb0e1ba7 1304 if (err != TD_OK)
8a3fe4f8 1305 error (_("find_new_threads_callback: cannot get thread info: %s"),
3197744f 1306 thread_db_err_str (err));
fb0e1ba7 1307
21bf60fe
MK
1308 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
1309 return 0; /* A zombie -- ignore. */
5fd913cc 1310
4105de34
DJ
1311 if (ti.ti_tid == 0)
1312 {
1313 /* A thread ID of zero means that this is the main thread, but
1314 glibc has not yet initialized thread-local storage and the
1315 pthread library. We do not know what the thread's TID will
1316 be yet. Just enable event reporting and otherwise ignore
1317 it. */
1318
4d062f1a
PA
1319 /* In that case, we're not stopped in a fork syscall and don't
1320 need this glibc bug workaround. */
1321 info->need_stale_parent_threads_check = 0;
1322
d90e17a7 1323 err = info->td_thr_event_enable_p (th_p, 1);
4105de34 1324 if (err != TD_OK)
4d062f1a
PA
1325 error (_("Cannot enable thread event reporting for LWP %d: %s"),
1326 (int) ti.ti_lid, thread_db_err_str (err));
4105de34
DJ
1327
1328 return 0;
1329 }
1330
4d062f1a
PA
1331 /* Ignore stale parent threads, caused by glibc/BZ5983. This is a
1332 bit expensive, as it needs to open /proc/pid/status, so try to
1333 avoid doing the work if we know we don't have to. */
1334 if (info->need_stale_parent_threads_check)
1335 {
1336 int tgid = linux_proc_get_tgid (ti.ti_lid);
1337 if (tgid != -1 && tgid != info->pid)
1338 return 0;
1339 }
1340
1341 ptid = ptid_build (info->pid, ti.ti_lid, 0);
e09875d4 1342 tp = find_thread_ptid (ptid);
403fe197 1343 if (tp == NULL || tp->private == NULL)
02c6c942
PP
1344 {
1345 if (attach_thread (ptid, th_p, &ti))
1346 cb_data->new_threads += 1;
1347 else
1348 /* Problem attaching this thread; perhaps it exited before we
1349 could attach it?
1350 This could mean that the thread list inside glibc itself is in
1351 inconsistent state, and libthread_db could go on looping forever
1352 (observed with glibc-2.3.6). To prevent that, terminate
1353 iteration: thread_db_find_new_threads_2 will retry. */
1354 return 1;
1355 }
fb0e1ba7
MK
1356
1357 return 0;
1358}
1359
02c6c942
PP
1360/* Helper for thread_db_find_new_threads_2.
1361 Returns number of new threads found. */
1362
1363static int
1364find_new_threads_once (struct thread_db_info *info, int iteration,
1365 int *errp)
1366{
1367 volatile struct gdb_exception except;
1368 struct callback_data data;
1369 int err = TD_ERR;
1370
1371 data.info = info;
1372 data.new_threads = 0;
1373
1374 TRY_CATCH (except, RETURN_MASK_ERROR)
1375 {
1376 /* Iterate over all user-space threads to discover new threads. */
1377 err = info->td_ta_thr_iter_p (info->thread_agent,
1378 find_new_threads_callback,
1379 &data,
1380 TD_THR_ANY_STATE,
1381 TD_THR_LOWEST_PRIORITY,
1382 TD_SIGNO_MASK,
1383 TD_THR_ANY_USER_FLAGS);
1384 }
1385
1386 if (info_verbose)
1387 {
1388 if (except.reason < 0)
1389 exception_fprintf (gdb_stderr, except,
1390 "Warning: find_new_threads_once: ");
1391
1392 printf_filtered (_("Found %d new threads in iteration %d.\n"),
1393 data.new_threads, iteration);
1394 }
1395
1396 if (errp != NULL)
1397 *errp = err;
1398
1399 return data.new_threads;
1400}
1401
4c28f408 1402/* Search for new threads, accessing memory through stopped thread
02c6c942
PP
1403 PTID. If UNTIL_NO_NEW is true, repeat searching until several
1404 searches in a row do not discover any new threads. */
4c28f408 1405
fb0e1ba7 1406static void
02c6c942 1407thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new)
fb0e1ba7
MK
1408{
1409 td_err_e err;
4c28f408 1410 struct lwp_info *lp;
d90e17a7
PA
1411 struct thread_db_info *info;
1412 int pid = ptid_get_pid (ptid);
02c6c942 1413 int i, loop;
4c28f408
PA
1414
1415 /* In linux, we can only read memory through a stopped lwp. */
1416 ALL_LWPS (lp, ptid)
d90e17a7 1417 if (lp->stopped && ptid_get_pid (lp->ptid) == pid)
4c28f408
PA
1418 break;
1419
1420 if (!lp)
1421 /* There is no stopped thread. Bail out. */
1422 return;
fb0e1ba7 1423
d90e17a7
PA
1424 info = get_thread_db_info (GET_PID (ptid));
1425
4c28f408 1426 /* Access an lwp we know is stopped. */
d90e17a7 1427 info->proc_handle.ptid = ptid;
02c6c942
PP
1428
1429 if (until_no_new)
1430 {
1431 /* Require 4 successive iterations which do not find any new threads.
1432 The 4 is a heuristic: there is an inherent race here, and I have
1433 seen that 2 iterations in a row are not always sufficient to
1434 "capture" all threads. */
1435 for (i = 0, loop = 0; loop < 4; ++i, ++loop)
1436 if (find_new_threads_once (info, i, NULL) != 0)
1437 /* Found some new threads. Restart the loop from beginning. */
1438 loop = -1;
1439 }
1440 else
1441 {
1442 int err;
1443
1444 find_new_threads_once (info, 0, &err);
1445 if (err != TD_OK)
1446 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
1447 }
fb0e1ba7
MK
1448}
1449
02c6c942
PP
1450static void
1451thread_db_find_new_threads_1 (ptid_t ptid)
1452{
1453 thread_db_find_new_threads_2 (ptid, 0);
1454}
1455
1456
28439f5e
PA
1457static void
1458thread_db_find_new_threads (struct target_ops *ops)
1459{
d90e17a7
PA
1460 struct thread_db_info *info;
1461
1462 info = get_thread_db_info (GET_PID (inferior_ptid));
1463
1464 if (info == NULL)
1465 return;
1466
1467 thread_db_find_new_threads_1 (inferior_ptid);
28439f5e
PA
1468}
1469
fb0e1ba7 1470static char *
117de6a9 1471thread_db_pid_to_str (struct target_ops *ops, ptid_t ptid)
fb0e1ba7 1472{
e09875d4 1473 struct thread_info *thread_info = find_thread_ptid (ptid);
117de6a9 1474 struct target_ops *beneath;
17faa917
DJ
1475
1476 if (thread_info != NULL && thread_info->private != NULL)
fb0e1ba7
MK
1477 {
1478 static char buf[64];
17faa917 1479 thread_t tid;
fb0e1ba7 1480
17faa917 1481 tid = thread_info->private->tid;
17faa917
DJ
1482 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
1483 tid, GET_LWP (ptid));
fb0e1ba7
MK
1484
1485 return buf;
1486 }
1487
117de6a9
PA
1488 beneath = find_target_beneath (ops);
1489 if (beneath->to_pid_to_str (beneath, ptid))
1490 return beneath->to_pid_to_str (beneath, ptid);
fb0e1ba7 1491
39f77062 1492 return normal_pid_to_str (ptid);
fb0e1ba7
MK
1493}
1494
28b17333
DJ
1495/* Return a string describing the state of the thread specified by
1496 INFO. */
1497
1498static char *
1499thread_db_extra_thread_info (struct thread_info *info)
1500{
17faa917
DJ
1501 if (info->private == NULL)
1502 return NULL;
1503
28b17333
DJ
1504 if (info->private->dying)
1505 return "Exiting";
1506
1507 return NULL;
1508}
1509
b2756930
KB
1510/* Get the address of the thread local variable in load module LM which
1511 is stored at OFFSET within the thread local storage for thread PTID. */
3f47be5c
EZ
1512
1513static CORE_ADDR
117de6a9
PA
1514thread_db_get_thread_local_address (struct target_ops *ops,
1515 ptid_t ptid,
b2756930 1516 CORE_ADDR lm,
b4acd559 1517 CORE_ADDR offset)
3f47be5c 1518{
17faa917 1519 struct thread_info *thread_info;
117de6a9 1520 struct target_ops *beneath;
17faa917 1521
4105de34 1522 /* If we have not discovered any threads yet, check now. */
d90e17a7
PA
1523 if (!have_threads (ptid))
1524 thread_db_find_new_threads_1 (ptid);
4105de34 1525
17faa917 1526 /* Find the matching thread. */
e09875d4 1527 thread_info = find_thread_ptid (ptid);
4105de34 1528
17faa917 1529 if (thread_info != NULL && thread_info->private != NULL)
3f47be5c 1530 {
3f47be5c 1531 td_err_e err;
3f47be5c 1532 void *address;
d90e17a7
PA
1533 struct thread_db_info *info;
1534
1535 info = get_thread_db_info (GET_PID (ptid));
3f47be5c
EZ
1536
1537 /* glibc doesn't provide the needed interface. */
d90e17a7 1538 if (!info->td_thr_tls_get_addr_p)
109c3e39
AC
1539 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1540 _("No TLS library support"));
3f47be5c 1541
b2756930
KB
1542 /* Caller should have verified that lm != 0. */
1543 gdb_assert (lm != 0);
3f47be5c 1544
3f47be5c 1545 /* Finally, get the address of the variable. */
d90e17a7
PA
1546 err = info->td_thr_tls_get_addr_p (&thread_info->private->th,
1547 (void *)(size_t) lm,
1548 offset, &address);
3f47be5c
EZ
1549
1550#ifdef THREAD_DB_HAS_TD_NOTALLOC
1551 /* The memory hasn't been allocated, yet. */
1552 if (err == TD_NOTALLOC)
b4acd559
JJ
1553 /* Now, if libthread_db provided the initialization image's
1554 address, we *could* try to build a non-lvalue value from
1555 the initialization image. */
109c3e39
AC
1556 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1557 _("TLS not allocated yet"));
3f47be5c
EZ
1558#endif
1559
1560 /* Something else went wrong. */
1561 if (err != TD_OK)
109c3e39
AC
1562 throw_error (TLS_GENERIC_ERROR,
1563 (("%s")), thread_db_err_str (err));
3f47be5c
EZ
1564
1565 /* Cast assuming host == target. Joy. */
16451949
AS
1566 /* Do proper sign extension for the target. */
1567 gdb_assert (exec_bfd);
1568 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1569 ? (CORE_ADDR) (intptr_t) address
1570 : (CORE_ADDR) (uintptr_t) address);
3f47be5c
EZ
1571 }
1572
117de6a9
PA
1573 beneath = find_target_beneath (ops);
1574 if (beneath->to_get_thread_local_address)
1575 return beneath->to_get_thread_local_address (beneath, ptid, lm, offset);
93ad78a7 1576 else
109c3e39
AC
1577 throw_error (TLS_GENERIC_ERROR,
1578 _("TLS not supported on this target"));
3f47be5c
EZ
1579}
1580
0ef643c8
JB
1581/* Callback routine used to find a thread based on the TID part of
1582 its PTID. */
1583
1584static int
1585thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
1586{
1587 long *tid = (long *) data;
1588
1589 if (thread->private->tid == *tid)
1590 return 1;
1591
1592 return 0;
1593}
1594
1595/* Implement the to_get_ada_task_ptid target method for this target. */
1596
1597static ptid_t
1598thread_db_get_ada_task_ptid (long lwp, long thread)
1599{
1600 struct thread_info *thread_info;
1601
d90e17a7 1602 thread_db_find_new_threads_1 (inferior_ptid);
0ef643c8
JB
1603 thread_info = iterate_over_threads (thread_db_find_thread_from_tid, &thread);
1604
1605 gdb_assert (thread_info != NULL);
1606
1607 return (thread_info->ptid);
1608}
1609
4d062f1a
PA
1610static void
1611thread_db_resume (struct target_ops *ops,
1612 ptid_t ptid, int step, enum target_signal signo)
1613{
1614 struct target_ops *beneath = find_target_beneath (ops);
1615 struct thread_db_info *info;
1616
1617 if (ptid_equal (ptid, minus_one_ptid))
1618 info = get_thread_db_info (GET_PID (inferior_ptid));
1619 else
1620 info = get_thread_db_info (GET_PID (ptid));
1621
1622 /* This workaround is only needed for child fork lwps stopped in a
1623 PTRACE_O_TRACEFORK event. When the inferior is resumed, the
1624 workaround can be disabled. */
1625 if (info)
1626 info->need_stale_parent_threads_check = 0;
1627
1628 beneath->to_resume (beneath, ptid, step, signo);
1629}
1630
fb0e1ba7
MK
1631static void
1632init_thread_db_ops (void)
1633{
1634 thread_db_ops.to_shortname = "multi-thread";
1635 thread_db_ops.to_longname = "multi-threaded child process.";
1636 thread_db_ops.to_doc = "Threads and pthreads support.";
1637 thread_db_ops.to_detach = thread_db_detach;
fb0e1ba7 1638 thread_db_ops.to_wait = thread_db_wait;
4d062f1a 1639 thread_db_ops.to_resume = thread_db_resume;
fb0e1ba7 1640 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
fb0e1ba7
MK
1641 thread_db_ops.to_find_new_threads = thread_db_find_new_threads;
1642 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
1643 thread_db_ops.to_stratum = thread_stratum;
1644 thread_db_ops.to_has_thread_control = tc_schedlock;
3f47be5c
EZ
1645 thread_db_ops.to_get_thread_local_address
1646 = thread_db_get_thread_local_address;
28b17333 1647 thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
0ef643c8 1648 thread_db_ops.to_get_ada_task_ptid = thread_db_get_ada_task_ptid;
fb0e1ba7
MK
1649 thread_db_ops.to_magic = OPS_MAGIC;
1650}
1651
2c0b251b
PA
1652/* Provide a prototype to silence -Wmissing-prototypes. */
1653extern initialize_file_ftype _initialize_thread_db;
1654
fb0e1ba7
MK
1655void
1656_initialize_thread_db (void)
1657{
17a37d48
PP
1658 init_thread_db_ops ();
1659 add_target (&thread_db_ops);
1660
1661 /* Defer loading of libthread_db.so until inferior is running.
1662 This allows gdb to load correct libthread_db for a given
1663 executable -- there could be mutiple versions of glibc,
1664 compiled with LinuxThreads or NPTL, and until there is
1665 a running inferior, we can't tell which libthread_db is
1666 the correct one to load. */
1667
1668 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
1669
1670 add_setshow_optional_filename_cmd ("libthread-db-search-path",
1671 class_support,
1672 &libthread_db_search_path, _("\
1673Set search path for libthread_db."), _("\
1674Show the current search path or libthread_db."), _("\
1675This path is used to search for libthread_db to be loaded into \
1676gdb itself."),
1677 NULL,
1678 NULL,
1679 &setlist, &showlist);
1680 /* Add ourselves to objfile event chain. */
1681 observer_attach_new_objfile (thread_db_new_objfile);
fb0e1ba7 1682}