* gregset.h (GDB_FPXREGSET_T): Remove.
[deliverable/binutils-gdb.git] / gdb / linux-thread-db.c
CommitLineData
fb0e1ba7 1/* libthread_db assisted debugging support, generic parts.
1bac305b 2
4c38e0a4
JB
3 Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2010 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);
21e1bee4
PP
144 td_err_e (*td_ta_clear_event_p) (const td_thragent_t *ta,
145 td_thr_events_t *event);
d90e17a7
PA
146 td_err_e (*td_ta_event_getmsg_p) (const td_thragent_t *ta,
147 td_event_msg_t *msg);
148
149 td_err_e (*td_thr_validate_p) (const td_thrhandle_t *th);
150 td_err_e (*td_thr_get_info_p) (const td_thrhandle_t *th,
151 td_thrinfo_t *infop);
152 td_err_e (*td_thr_event_enable_p) (const td_thrhandle_t *th,
153 int event);
154
155 td_err_e (*td_thr_tls_get_addr_p) (const td_thrhandle_t *th,
00f515da
DE
156 psaddr_t map_address,
157 size_t offset, psaddr_t *address);
d90e17a7
PA
158};
159
160/* List of known processes using thread_db, and the required
161 bookkeeping. */
162struct thread_db_info *thread_db_list;
163
164static void thread_db_find_new_threads_1 (ptid_t ptid);
02c6c942 165static void thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new);
d90e17a7
PA
166
167/* Add the current inferior to the list of processes using libpthread.
168 Return a pointer to the newly allocated object that was added to
169 THREAD_DB_LIST. HANDLE is the handle returned by dlopen'ing
170 LIBTHREAD_DB_SO. */
171
172static struct thread_db_info *
173add_thread_db_info (void *handle)
174{
d90e17a7
PA
175 struct thread_db_info *info;
176
177 info = xcalloc (1, sizeof (*info));
178 info->pid = ptid_get_pid (inferior_ptid);
179 info->handle = handle;
4d062f1a 180 info->need_stale_parent_threads_check = 1;
d90e17a7
PA
181
182 info->next = thread_db_list;
183 thread_db_list = info;
184
185 return info;
186}
187
188/* Return the thread_db_info object representing the bookkeeping
189 related to process PID, if any; NULL otherwise. */
190
191static struct thread_db_info *
192get_thread_db_info (int pid)
193{
194 struct thread_db_info *info;
195
196 for (info = thread_db_list; info; info = info->next)
197 if (pid == info->pid)
198 return info;
199
200 return NULL;
201}
202
203/* When PID has exited or has been detached, we no longer want to keep
204 track of it as using libpthread. Call this function to discard
205 thread_db related info related to PID. Note that this closes
206 LIBTHREAD_DB_SO's dlopen'ed handle. */
207
208static void
209delete_thread_db_info (int pid)
210{
211 struct thread_db_info *info, *info_prev;
212
213 info_prev = NULL;
214
215 for (info = thread_db_list; info; info_prev = info, info = info->next)
216 if (pid == info->pid)
217 break;
218
219 if (info == NULL)
220 return;
221
222 if (info->handle != NULL)
223 dlclose (info->handle);
224
225 if (info_prev)
226 info_prev->next = info->next;
227 else
228 thread_db_list = info->next;
229
230 xfree (info);
231}
fb0e1ba7
MK
232
233/* Prototypes for local functions. */
02c6c942
PP
234static int attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
235 const td_thrinfo_t *ti_p);
17faa917 236static void detach_thread (ptid_t ptid);
fb0e1ba7
MK
237\f
238
5365276c
DJ
239/* Use "struct private_thread_info" to cache thread state. This is
240 a substantial optimization. */
241
fb0e1ba7
MK
242struct private_thread_info
243{
a2f23071
DJ
244 /* Flag set when we see a TD_DEATH event for this thread. */
245 unsigned int dying:1;
246
5365276c 247 /* Cached thread state. */
5365276c 248 td_thrhandle_t th;
17faa917 249 thread_t tid;
fb0e1ba7 250};
fb0e1ba7 251\f
21bf60fe 252
fb0e1ba7
MK
253static char *
254thread_db_err_str (td_err_e err)
255{
256 static char buf[64];
257
258 switch (err)
259 {
260 case TD_OK:
261 return "generic 'call succeeded'";
262 case TD_ERR:
263 return "generic error";
264 case TD_NOTHR:
265 return "no thread to satisfy query";
266 case TD_NOSV:
267 return "no sync handle to satisfy query";
268 case TD_NOLWP:
269 return "no LWP to satisfy query";
270 case TD_BADPH:
271 return "invalid process handle";
272 case TD_BADTH:
273 return "invalid thread handle";
274 case TD_BADSH:
275 return "invalid synchronization handle";
276 case TD_BADTA:
277 return "invalid thread agent";
278 case TD_BADKEY:
279 return "invalid key";
280 case TD_NOMSG:
281 return "no event message for getmsg";
282 case TD_NOFPREGS:
283 return "FPU register set not available";
284 case TD_NOLIBTHREAD:
285 return "application not linked with libthread";
286 case TD_NOEVENT:
287 return "requested event is not supported";
288 case TD_NOCAPAB:
289 return "capability not available";
290 case TD_DBERR:
291 return "debugger service failed";
292 case TD_NOAPLIC:
293 return "operation not applicable to";
294 case TD_NOTSD:
295 return "no thread-specific data for this thread";
296 case TD_MALLOC:
297 return "malloc failed";
298 case TD_PARTIALREG:
299 return "only part of register set was written/read";
300 case TD_NOXREGS:
301 return "X register set not available for this thread";
59f80f10
DJ
302#ifdef THREAD_DB_HAS_TD_NOTALLOC
303 case TD_NOTALLOC:
304 return "thread has not yet allocated TLS for given module";
305#endif
306#ifdef THREAD_DB_HAS_TD_VERSION
307 case TD_VERSION:
308 return "versions of libpthread and libthread_db do not match";
309#endif
310#ifdef THREAD_DB_HAS_TD_NOTLS
311 case TD_NOTLS:
312 return "there is no TLS segment in the given module";
313#endif
fb0e1ba7
MK
314 default:
315 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
316 return buf;
317 }
318}
fb0e1ba7 319\f
4105de34
DJ
320/* Return 1 if any threads have been registered. There may be none if
321 the threading library is not fully initialized yet. */
322
323static int
d90e17a7 324have_threads_callback (struct thread_info *thread, void *args)
4105de34 325{
d90e17a7 326 int pid = * (int *) args;
e0881a8e 327
d90e17a7
PA
328 if (ptid_get_pid (thread->ptid) != pid)
329 return 0;
330
e3bc4218 331 return thread->private != NULL;
4105de34
DJ
332}
333
334static int
d90e17a7 335have_threads (ptid_t ptid)
4105de34 336{
d90e17a7
PA
337 int pid = ptid_get_pid (ptid);
338
339 return iterate_over_threads (have_threads_callback, &pid) != NULL;
4105de34
DJ
340}
341
d90e17a7
PA
342struct thread_get_info_inout
343{
344 struct thread_info *thread_info;
345 struct thread_db_info *thread_db_info;
346};
347
5365276c 348/* A callback function for td_ta_thr_iter, which we use to map all
cdbc0b18 349 threads to LWPs.
5365276c
DJ
350
351 THP is a handle to the current thread; if INFOP is not NULL, the
352 struct thread_info associated with this thread is returned in
b9b5d7ea
JJ
353 *INFOP.
354
355 If the thread is a zombie, TD_THR_ZOMBIE is returned. Otherwise,
356 zero is returned to indicate success. */
5365276c
DJ
357
358static int
d90e17a7 359thread_get_info_callback (const td_thrhandle_t *thp, void *argp)
5365276c
DJ
360{
361 td_thrinfo_t ti;
362 td_err_e err;
5365276c 363 ptid_t thread_ptid;
d90e17a7
PA
364 struct thread_get_info_inout *inout;
365 struct thread_db_info *info;
366
367 inout = argp;
368 info = inout->thread_db_info;
5365276c 369
d90e17a7 370 err = info->td_thr_get_info_p (thp, &ti);
5365276c 371 if (err != TD_OK)
8a3fe4f8 372 error (_("thread_get_info_callback: cannot get thread info: %s"),
5365276c
DJ
373 thread_db_err_str (err));
374
375 /* Fill the cache. */
d90e17a7 376 thread_ptid = ptid_build (info->pid, ti.ti_lid, 0);
e09875d4 377 inout->thread_info = find_thread_ptid (thread_ptid);
5365276c 378
b9b5d7ea 379 /* In the case of a zombie thread, don't continue. We don't want to
f90ef764 380 attach to it thinking it is a new thread. */
b9b5d7ea 381 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
d90e17a7 382 return TD_THR_ZOMBIE;
b9b5d7ea 383
d90e17a7 384 if (inout->thread_info == NULL)
5365276c
DJ
385 {
386 /* New thread. Attach to it now (why wait?). */
d90e17a7
PA
387 if (!have_threads (thread_ptid))
388 thread_db_find_new_threads_1 (thread_ptid);
4c28f408
PA
389 else
390 attach_thread (thread_ptid, thp, &ti);
e09875d4 391 inout->thread_info = find_thread_ptid (thread_ptid);
d90e17a7 392 gdb_assert (inout->thread_info != NULL);
5365276c
DJ
393 }
394
5365276c
DJ
395 return 0;
396}
5365276c 397\f
fb0e1ba7
MK
398/* Convert between user-level thread ids and LWP ids. */
399
39f77062
KB
400static ptid_t
401thread_from_lwp (ptid_t ptid)
fb0e1ba7 402{
fb0e1ba7
MK
403 td_thrhandle_t th;
404 td_err_e err;
d90e17a7
PA
405 struct thread_db_info *info;
406 struct thread_get_info_inout io = {0};
fb0e1ba7 407
17faa917
DJ
408 /* This ptid comes from linux-nat.c, which should always fill in the
409 LWP. */
410 gdb_assert (GET_LWP (ptid) != 0);
fb0e1ba7 411
d90e17a7
PA
412 info = get_thread_db_info (GET_PID (ptid));
413
4c28f408 414 /* Access an lwp we know is stopped. */
d90e17a7
PA
415 info->proc_handle.ptid = ptid;
416 err = info->td_ta_map_lwp2thr_p (info->thread_agent, GET_LWP (ptid), &th);
fb0e1ba7 417 if (err != TD_OK)
8a3fe4f8 418 error (_("Cannot find user-level thread for LWP %ld: %s"),
39f77062 419 GET_LWP (ptid), thread_db_err_str (err));
fb0e1ba7 420
b9b5d7ea
JJ
421 /* Fetch the thread info. If we get back TD_THR_ZOMBIE, then the
422 event thread has already died. If another gdb interface has called
423 thread_alive() previously, the thread won't be found on the thread list
424 anymore. In that case, we don't want to process this ptid anymore
425 to avoid the possibility of later treating it as a newly
426 discovered thread id that we should add to the list. Thus,
427 we return a -1 ptid which is also how the thread list marks a
428 dead thread. */
d90e17a7
PA
429 io.thread_db_info = info;
430 io.thread_info = NULL;
431 if (thread_get_info_callback (&th, &io) == TD_THR_ZOMBIE
432 && io.thread_info == NULL)
433 return minus_one_ptid;
b9b5d7ea 434
17faa917
DJ
435 gdb_assert (ptid_get_tid (ptid) == 0);
436 return ptid;
fb0e1ba7
MK
437}
438\f
439
4c28f408
PA
440/* Attach to lwp PTID, doing whatever else is required to have this
441 LWP under the debugger's control --- e.g., enabling event
442 reporting. Returns true on success. */
443int
444thread_db_attach_lwp (ptid_t ptid)
445{
446 td_thrhandle_t th;
447 td_thrinfo_t ti;
448 td_err_e err;
d90e17a7 449 struct thread_db_info *info;
4c28f408 450
d90e17a7
PA
451 info = get_thread_db_info (GET_PID (ptid));
452
453 if (info == NULL)
4c28f408
PA
454 return 0;
455
456 /* This ptid comes from linux-nat.c, which should always fill in the
457 LWP. */
458 gdb_assert (GET_LWP (ptid) != 0);
459
460 /* Access an lwp we know is stopped. */
d90e17a7 461 info->proc_handle.ptid = ptid;
4c28f408
PA
462
463 /* If we have only looked at the first thread before libpthread was
464 initialized, we may not know its thread ID yet. Make sure we do
465 before we add another thread to the list. */
d90e17a7
PA
466 if (!have_threads (ptid))
467 thread_db_find_new_threads_1 (ptid);
4c28f408 468
d90e17a7 469 err = info->td_ta_map_lwp2thr_p (info->thread_agent, GET_LWP (ptid), &th);
4c28f408
PA
470 if (err != TD_OK)
471 /* Cannot find user-level thread. */
472 return 0;
473
d90e17a7 474 err = info->td_thr_get_info_p (&th, &ti);
4c28f408
PA
475 if (err != TD_OK)
476 {
477 warning (_("Cannot get thread info: %s"), thread_db_err_str (err));
478 return 0;
479 }
480
481 attach_thread (ptid, &th, &ti);
482 return 1;
483}
484
5220ea4c
AC
485static void *
486verbose_dlsym (void *handle, const char *name)
487{
488 void *sym = dlsym (handle, name);
489 if (sym == NULL)
8a3fe4f8 490 warning (_("Symbol \"%s\" not found in libthread_db: %s"), name, dlerror ());
5220ea4c
AC
491 return sym;
492}
493
cdbc0b18 494static td_err_e
d90e17a7 495enable_thread_event (int event, CORE_ADDR *bp)
24557e30
AC
496{
497 td_notify_t notify;
cdbc0b18 498 td_err_e err;
d90e17a7
PA
499 struct thread_db_info *info;
500
501 info = get_thread_db_info (GET_PID (inferior_ptid));
24557e30 502
4c28f408 503 /* Access an lwp we know is stopped. */
d90e17a7 504 info->proc_handle.ptid = inferior_ptid;
4c28f408 505
24557e30 506 /* Get the breakpoint address for thread EVENT. */
d90e17a7 507 err = info->td_ta_event_addr_p (info->thread_agent, event, &notify);
24557e30 508 if (err != TD_OK)
cdbc0b18 509 return err;
24557e30
AC
510
511 /* Set up the breakpoint. */
16451949
AS
512 gdb_assert (exec_bfd);
513 (*bp) = (gdbarch_convert_from_func_ptr_addr
a97b0ac8 514 (target_gdbarch,
16451949
AS
515 /* Do proper sign extension for the target. */
516 (bfd_get_sign_extend_vma (exec_bfd) > 0
517 ? (CORE_ADDR) (intptr_t) notify.u.bptaddr
518 : (CORE_ADDR) (uintptr_t) notify.u.bptaddr),
519 &current_target));
a6d9a66e 520 create_thread_event_breakpoint (target_gdbarch, *bp);
24557e30 521
cdbc0b18 522 return TD_OK;
24557e30
AC
523}
524
fb0e1ba7
MK
525static void
526enable_thread_event_reporting (void)
527{
528 td_thr_events_t events;
fb0e1ba7 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)
e0881a8e
MS
605 {
606 exception_fprintf (gdb_stderr, except,
607 "Warning: thread_db_find_new_threads_silently: ");
608 }
456b0e24
PP
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");
21e1bee4 704 info->td_ta_clear_event_p = dlsym (info->handle, "td_ta_clear_event");
d90e17a7
PA
705 info->td_ta_event_getmsg_p = dlsym (info->handle, "td_ta_event_getmsg");
706 info->td_thr_event_enable_p = dlsym (info->handle, "td_thr_event_enable");
707 info->td_thr_tls_get_addr_p = dlsym (info->handle, "td_thr_tls_get_addr");
17a37d48
PP
708
709 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
710
d90e17a7
PA
711 if (info_verbose || *libthread_db_search_path)
712 {
713 const char *library;
17a37d48 714
d90e17a7
PA
715 library = dladdr_to_soname (*info->td_ta_new_p);
716 if (library == NULL)
717 library = LIBTHREAD_DB_SO;
17a37d48 718
d90e17a7
PA
719 printf_unfiltered (_("Using host libthread_db library \"%s\".\n"),
720 library);
721 }
17a37d48 722
d90e17a7
PA
723 /* The thread library was detected. Activate the thread_db target
724 if this is the first process using it. */
725 if (thread_db_list->next == NULL)
726 push_target (&thread_db_ops);
17a37d48 727
d90e17a7 728 enable_thread_event_reporting ();
456b0e24 729
099cb4fb 730 /* There appears to be a bug in glibc-2.3.6: calls to td_thr_get_info fail
456b0e24
PP
731 with TD_ERR for statically linked executables if td_thr_get_info is
732 called before glibc has initialized itself. Silently ignore such
099cb4fb 733 errors, and let gdb enumerate threads again later. */
456b0e24 734 thread_db_find_new_threads_silently (inferior_ptid);
099cb4fb 735
d90e17a7 736 return 1;
17a37d48
PP
737}
738
739/* Attempt to use LIBRARY as libthread_db. LIBRARY could be absolute,
740 relative, or just LIBTHREAD_DB. */
741
742static int
743try_thread_db_load (const char *library)
744{
745 void *handle;
d90e17a7 746 struct thread_db_info *info;
17a37d48
PP
747
748 if (info_verbose)
749 printf_unfiltered (_("Trying host libthread_db library: %s.\n"),
750 library);
751 handle = dlopen (library, RTLD_NOW);
752 if (handle == NULL)
753 {
754 if (info_verbose)
755 printf_unfiltered (_("dlopen failed: %s.\n"), dlerror ());
756 return 0;
757 }
758
759 if (info_verbose && strchr (library, '/') == NULL)
760 {
761 void *td_init;
762
763 td_init = dlsym (handle, "td_init");
764 if (td_init != NULL)
765 {
766 const char *const libpath = dladdr_to_soname (td_init);
767
768 if (libpath != NULL)
769 printf_unfiltered (_("Host %s resolved to: %s.\n"),
770 library, libpath);
771 }
772 }
773
d90e17a7
PA
774 info = add_thread_db_info (handle);
775
776 if (try_thread_db_load_1 (info))
17a37d48
PP
777 return 1;
778
779 /* This library "refused" to work on current inferior. */
d90e17a7 780 delete_thread_db_info (GET_PID (inferior_ptid));
17a37d48
PP
781 return 0;
782}
783
784
785/* Search libthread_db_search_path for libthread_db which "agrees"
786 to work on current inferior. */
787
788static int
789thread_db_load_search (void)
790{
791 char path[PATH_MAX];
792 const char *search_path = libthread_db_search_path;
793 int rc = 0;
794
795 while (*search_path)
796 {
797 const char *end = strchr (search_path, ':');
e0881a8e 798
17a37d48
PP
799 if (end)
800 {
801 size_t len = end - search_path;
e0881a8e 802
17a37d48
PP
803 if (len + 1 + strlen (LIBTHREAD_DB_SO) + 1 > sizeof (path))
804 {
805 char *cp = xmalloc (len + 1);
e0881a8e 806
17a37d48
PP
807 memcpy (cp, search_path, len);
808 cp[len] = '\0';
809 warning (_("libthread_db_search_path component too long,"
810 " ignored: %s."), cp);
811 xfree (cp);
812 search_path += len + 1;
813 continue;
814 }
815 memcpy (path, search_path, len);
816 path[len] = '\0';
817 search_path += len + 1;
818 }
819 else
820 {
821 size_t len = strlen (search_path);
822
823 if (len + 1 + strlen (LIBTHREAD_DB_SO) + 1 > sizeof (path))
824 {
825 warning (_("libthread_db_search_path component too long,"
826 " ignored: %s."), search_path);
827 break;
828 }
829 memcpy (path, search_path, len + 1);
830 search_path += len;
831 }
832 strcat (path, "/");
833 strcat (path, LIBTHREAD_DB_SO);
834 if (try_thread_db_load (path))
835 {
836 rc = 1;
837 break;
838 }
839 }
840 if (rc == 0)
841 rc = try_thread_db_load (LIBTHREAD_DB_SO);
842 return rc;
843}
844
845/* Attempt to load and initialize libthread_db.
846 Return 1 on success.
847 */
848
849static int
850thread_db_load (void)
851{
852 struct objfile *obj;
d90e17a7 853 struct thread_db_info *info;
17a37d48 854
d90e17a7
PA
855 info = get_thread_db_info (GET_PID (inferior_ptid));
856
857 if (info != NULL)
17a37d48
PP
858 return 1;
859
860 /* Don't attempt to use thread_db on targets which can not run
861 (executables not running yet, core files) for now. */
862 if (!target_has_execution)
863 return 0;
864
865 /* Don't attempt to use thread_db for remote targets. */
866 if (!target_can_run (&current_target))
867 return 0;
868
869 if (thread_db_load_search ())
870 return 1;
871
872 /* None of the libthread_db's on our search path, not the system default
873 ones worked. If the executable is dynamically linked against
874 libpthread, try loading libthread_db from the same directory. */
875
876 ALL_OBJFILES (obj)
877 if (libpthread_name_p (obj->name))
878 {
879 char path[PATH_MAX], *cp;
880
881 gdb_assert (strlen (obj->name) < sizeof (path));
882 strcpy (path, obj->name);
883 cp = strrchr (path, '/');
884
885 if (cp == NULL)
886 {
887 warning (_("Expected absolute pathname for libpthread in the"
888 " inferior, but got %s."), path);
889 }
890 else if (cp + 1 + strlen (LIBTHREAD_DB_SO) + 1 > path + sizeof (path))
891 {
892 warning (_("Unexpected: path to libpthread in the inferior is"
893 " too long: %s"), path);
894 }
895 else
896 {
897 strcpy (cp + 1, LIBTHREAD_DB_SO);
898 if (try_thread_db_load (path))
899 return 1;
900 }
901 warning (_("Unable to find libthread_db matching inferior's thread"
902 " library, thread debugging will not be available."));
903 return 0;
904 }
905 /* Either this executable isn't using libpthread at all, or it is
906 statically linked. Since we can't easily distinguish these two cases,
907 no warning is issued. */
908 return 0;
909}
910
fb0e1ba7 911static void
12b6a110 912disable_thread_event_reporting (struct thread_db_info *info)
fb0e1ba7 913{
21e1bee4 914 if (info->td_ta_clear_event_p != NULL)
12b6a110
PP
915 {
916 td_thr_events_t events;
fb0e1ba7 917
12b6a110
PP
918 /* Set the process wide mask saying we aren't interested in any
919 events anymore. */
21e1bee4
PP
920 td_event_fillset (&events);
921 info->td_ta_clear_event_p (info->thread_agent, &events);
12b6a110 922 }
fb0e1ba7 923
d90e17a7
PA
924 info->td_create_bp_addr = 0;
925 info->td_death_bp_addr = 0;
fb0e1ba7
MK
926}
927
928static void
929check_thread_signals (void)
930{
931#ifdef GET_THREAD_SIGNALS
21bf60fe 932 if (!thread_signals)
fb0e1ba7
MK
933 {
934 sigset_t mask;
935 int i;
936
937 GET_THREAD_SIGNALS (&mask);
938 sigemptyset (&thread_stop_set);
939 sigemptyset (&thread_print_set);
940
b9569773 941 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
942 {
943 if (sigismember (&mask, i))
944 {
945 if (signal_stop_update (target_signal_from_host (i), 0))
946 sigaddset (&thread_stop_set, i);
947 if (signal_print_update (target_signal_from_host (i), 0))
948 sigaddset (&thread_print_set, i);
949 thread_signals = 1;
950 }
951 }
952 }
953#endif
954}
955
0ec9a092
DJ
956/* Check whether thread_db is usable. This function is called when
957 an inferior is created (or otherwise acquired, e.g. attached to)
958 and when new shared libraries are loaded into a running process. */
959
960void
961check_for_thread_db (void)
fb0e1ba7 962{
b5057acd 963 /* Do nothing if we couldn't load libthread_db.so.1. */
17a37d48 964 if (!thread_db_load ())
b5057acd 965 return;
0ec9a092
DJ
966}
967
968static void
969thread_db_new_objfile (struct objfile *objfile)
970{
d90e17a7
PA
971 /* This observer must always be called with inferior_ptid set
972 correctly. */
973
0ec9a092
DJ
974 if (objfile != NULL)
975 check_for_thread_db ();
fb0e1ba7
MK
976}
977
a2f23071
DJ
978/* Attach to a new thread. This function is called when we receive a
979 TD_CREATE event or when we iterate over all threads and find one
02c6c942 980 that wasn't already in our list. Returns true on success. */
a2f23071 981
02c6c942 982static int
39f77062 983attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
93815fbf 984 const td_thrinfo_t *ti_p)
fb0e1ba7 985{
17faa917
DJ
986 struct private_thread_info *private;
987 struct thread_info *tp = NULL;
fb0e1ba7 988 td_err_e err;
d90e17a7 989 struct thread_db_info *info;
fb0e1ba7 990
a2f23071
DJ
991 /* If we're being called after a TD_CREATE event, we may already
992 know about this thread. There are two ways this can happen. We
993 may have iterated over all threads between the thread creation
994 and the TD_CREATE event, for instance when the user has issued
995 the `info threads' command before the SIGTRAP for hitting the
996 thread creation breakpoint was reported. Alternatively, the
997 thread may have exited and a new one been created with the same
998 thread ID. In the first case we don't need to do anything; in
999 the second case we should discard information about the dead
1000 thread and attach to the new one. */
1001 if (in_thread_list (ptid))
1002 {
e09875d4 1003 tp = find_thread_ptid (ptid);
a2f23071
DJ
1004 gdb_assert (tp != NULL);
1005
17faa917
DJ
1006 /* If tp->private is NULL, then GDB is already attached to this
1007 thread, but we do not know anything about it. We can learn
1008 about it here. This can only happen if we have some other
1009 way besides libthread_db to notice new threads (i.e.
1010 PTRACE_EVENT_CLONE); assume the same mechanism notices thread
1011 exit, so this can not be a stale thread recreated with the
1012 same ID. */
1013 if (tp->private != NULL)
1014 {
1015 if (!tp->private->dying)
02c6c942 1016 return 0;
a2f23071 1017
17faa917
DJ
1018 delete_thread (ptid);
1019 tp = NULL;
1020 }
a2f23071
DJ
1021 }
1022
fb0e1ba7
MK
1023 check_thread_signals ();
1024
9ee57c33 1025 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
02c6c942 1026 return 0; /* A zombie thread -- do not attach. */
9ee57c33
DJ
1027
1028 /* Under GNU/Linux, we have to attach to each and every thread. */
17faa917
DJ
1029 if (tp == NULL
1030 && lin_lwp_attach_lwp (BUILD_LWP (ti_p->ti_lid, GET_PID (ptid))) < 0)
02c6c942 1031 return 0;
9ee57c33 1032
17faa917
DJ
1033 /* Construct the thread's private data. */
1034 private = xmalloc (sizeof (struct private_thread_info));
1035 memset (private, 0, sizeof (struct private_thread_info));
1036
1037 /* A thread ID of zero may mean the thread library has not initialized
1038 yet. But we shouldn't even get here if that's the case. FIXME:
1039 if we change GDB to always have at least one thread in the thread
1040 list this will have to go somewhere else; maybe private == NULL
1041 until the thread_db target claims it. */
1042 gdb_assert (ti_p->ti_tid != 0);
1043 private->th = *th_p;
1044 private->tid = ti_p->ti_tid;
1045
fb0e1ba7 1046 /* Add the thread to GDB's thread list. */
17faa917
DJ
1047 if (tp == NULL)
1048 tp = add_thread_with_info (ptid, private);
1049 else
1050 tp->private = private;
5365276c 1051
d90e17a7
PA
1052 info = get_thread_db_info (GET_PID (ptid));
1053
fb0e1ba7 1054 /* Enable thread event reporting for this thread. */
d90e17a7 1055 err = info->td_thr_event_enable_p (th_p, 1);
fb0e1ba7 1056 if (err != TD_OK)
8a3fe4f8 1057 error (_("Cannot enable thread event reporting for %s: %s"),
39f77062 1058 target_pid_to_str (ptid), thread_db_err_str (err));
02c6c942 1059 return 1;
fb0e1ba7
MK
1060}
1061
1062static void
17faa917 1063detach_thread (ptid_t ptid)
fb0e1ba7 1064{
a2f23071
DJ
1065 struct thread_info *thread_info;
1066
a2f23071
DJ
1067 /* Don't delete the thread now, because it still reports as active
1068 until it has executed a few instructions after the event
1069 breakpoint - if we deleted it now, "info threads" would cause us
1070 to re-attach to it. Just mark it as having had a TD_DEATH
1071 event. This means that we won't delete it from our thread list
1072 until we notice that it's dead (via prune_threads), or until
17faa917
DJ
1073 something re-uses its thread ID. We'll report the thread exit
1074 when the underlying LWP dies. */
e09875d4 1075 thread_info = find_thread_ptid (ptid);
17faa917 1076 gdb_assert (thread_info != NULL && thread_info->private != NULL);
a2f23071 1077 thread_info->private->dying = 1;
fb0e1ba7
MK
1078}
1079
1080static void
136d6dae 1081thread_db_detach (struct target_ops *ops, char *args, int from_tty)
fb0e1ba7 1082{
117de6a9 1083 struct target_ops *target_beneath = find_target_beneath (ops);
d90e17a7 1084 struct thread_db_info *info;
117de6a9 1085
d90e17a7 1086 info = get_thread_db_info (GET_PID (inferior_ptid));
c194fbe1 1087
d90e17a7
PA
1088 if (info)
1089 {
12b6a110 1090 disable_thread_event_reporting (info);
7a7d3353 1091
d90e17a7
PA
1092 /* Delete the old thread event breakpoints. Note that unlike
1093 when mourning, we can remove them here because there's still
1094 a live inferior to poke at. In any case, GDB will not try to
1095 insert anything in the inferior when removing a
1096 breakpoint. */
1097 remove_thread_event_breakpoints ();
1098
1099 delete_thread_db_info (GET_PID (inferior_ptid));
1100 }
4105de34 1101
7a7d3353 1102 target_beneath->to_detach (target_beneath, args, from_tty);
d90e17a7
PA
1103
1104 /* NOTE: From this point on, inferior_ptid is null_ptid. */
1105
1106 /* If there are no more processes using libpthread, detach the
1107 thread_db target ops. */
1108 if (!thread_db_list)
1109 unpush_target (&thread_db_ops);
fb0e1ba7
MK
1110}
1111
fb0e1ba7
MK
1112/* Check if PID is currently stopped at the location of a thread event
1113 breakpoint location. If it is, read the event message and act upon
1114 the event. */
1115
1116static void
39f77062 1117check_event (ptid_t ptid)
fb0e1ba7 1118{
515630c5
UW
1119 struct regcache *regcache = get_thread_regcache (ptid);
1120 struct gdbarch *gdbarch = get_regcache_arch (regcache);
fb0e1ba7
MK
1121 td_event_msg_t msg;
1122 td_thrinfo_t ti;
1123 td_err_e err;
1124 CORE_ADDR stop_pc;
4d9850d3 1125 int loop = 0;
d90e17a7
PA
1126 struct thread_db_info *info;
1127
1128 info = get_thread_db_info (GET_PID (ptid));
fb0e1ba7
MK
1129
1130 /* Bail out early if we're not at a thread event breakpoint. */
515630c5
UW
1131 stop_pc = regcache_read_pc (regcache)
1132 - gdbarch_decr_pc_after_break (gdbarch);
d90e17a7
PA
1133 if (stop_pc != info->td_create_bp_addr
1134 && stop_pc != info->td_death_bp_addr)
fb0e1ba7
MK
1135 return;
1136
4c28f408 1137 /* Access an lwp we know is stopped. */
d90e17a7 1138 info->proc_handle.ptid = ptid;
4c28f408
PA
1139
1140 /* If we have only looked at the first thread before libpthread was
1141 initialized, we may not know its thread ID yet. Make sure we do
1142 before we add another thread to the list. */
d90e17a7
PA
1143 if (!have_threads (ptid))
1144 thread_db_find_new_threads_1 (ptid);
4c28f408 1145
4d9850d3
JJ
1146 /* If we are at a create breakpoint, we do not know what new lwp
1147 was created and cannot specifically locate the event message for it.
1148 We have to call td_ta_event_getmsg() to get
1149 the latest message. Since we have no way of correlating whether
cdbc0b18 1150 the event message we get back corresponds to our breakpoint, we must
4d9850d3 1151 loop and read all event messages, processing them appropriately.
cdbc0b18
RM
1152 This guarantees we will process the correct message before continuing
1153 from the breakpoint.
4d9850d3
JJ
1154
1155 Currently, death events are not enabled. If they are enabled,
1156 the death event can use the td_thr_event_getmsg() interface to
1157 get the message specifically for that lwp and avoid looping
1158 below. */
1159
1160 loop = 1;
1161
1162 do
fb0e1ba7 1163 {
d90e17a7 1164 err = info->td_ta_event_getmsg_p (info->thread_agent, &msg);
4d9850d3
JJ
1165 if (err != TD_OK)
1166 {
1167 if (err == TD_NOMSG)
1168 return;
fb0e1ba7 1169
8a3fe4f8 1170 error (_("Cannot get thread event message: %s"),
4d9850d3
JJ
1171 thread_db_err_str (err));
1172 }
fb0e1ba7 1173
d90e17a7 1174 err = info->td_thr_get_info_p (msg.th_p, &ti);
4d9850d3 1175 if (err != TD_OK)
8a3fe4f8 1176 error (_("Cannot get thread info: %s"), thread_db_err_str (err));
fb0e1ba7 1177
17faa917 1178 ptid = ptid_build (GET_PID (ptid), ti.ti_lid, 0);
fb0e1ba7 1179
4d9850d3
JJ
1180 switch (msg.event)
1181 {
1182 case TD_CREATE:
a2f23071
DJ
1183 /* Call attach_thread whether or not we already know about a
1184 thread with this thread ID. */
93815fbf 1185 attach_thread (ptid, msg.th_p, &ti);
fb0e1ba7 1186
4d9850d3 1187 break;
fb0e1ba7 1188
4d9850d3 1189 case TD_DEATH:
fb0e1ba7 1190
4d9850d3 1191 if (!in_thread_list (ptid))
8a3fe4f8 1192 error (_("Spurious thread death event."));
fb0e1ba7 1193
17faa917 1194 detach_thread (ptid);
fb0e1ba7 1195
4d9850d3 1196 break;
fb0e1ba7 1197
4d9850d3 1198 default:
8a3fe4f8 1199 error (_("Spurious thread event."));
4d9850d3 1200 }
fb0e1ba7 1201 }
4d9850d3 1202 while (loop);
fb0e1ba7
MK
1203}
1204
39f77062 1205static ptid_t
117de6a9 1206thread_db_wait (struct target_ops *ops,
47608cb1
PA
1207 ptid_t ptid, struct target_waitstatus *ourstatus,
1208 int options)
fb0e1ba7 1209{
d90e17a7 1210 struct thread_db_info *info;
117de6a9
PA
1211 struct target_ops *beneath = find_target_beneath (ops);
1212
47608cb1 1213 ptid = beneath->to_wait (beneath, ptid, ourstatus, options);
fb0e1ba7 1214
b84876c2
PA
1215 if (ourstatus->kind == TARGET_WAITKIND_IGNORE)
1216 return ptid;
1217
1111f4aa 1218 if (ourstatus->kind == TARGET_WAITKIND_EXITED
fb66883a
PA
1219 || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
1220 return ptid;
fb0e1ba7 1221
d90e17a7
PA
1222 info = get_thread_db_info (GET_PID (ptid));
1223
1224 /* If this process isn't using thread_db, we're done. */
1225 if (info == NULL)
1226 return ptid;
1227
3f64f7b1
DJ
1228 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1229 {
d90e17a7
PA
1230 /* New image, it may or may not end up using thread_db. Assume
1231 not unless we find otherwise. */
1232 delete_thread_db_info (GET_PID (ptid));
1233 if (!thread_db_list)
1234 unpush_target (&thread_db_ops);
3f64f7b1 1235
6c95b8df
PA
1236 /* Thread event breakpoints are deleted by
1237 update_breakpoints_after_exec. */
1238
49fd4a42 1239 return ptid;
3f64f7b1
DJ
1240 }
1241
4105de34
DJ
1242 /* If we do not know about the main thread yet, this would be a good time to
1243 find it. */
d90e17a7
PA
1244 if (ourstatus->kind == TARGET_WAITKIND_STOPPED && !have_threads (ptid))
1245 thread_db_find_new_threads_1 (ptid);
4105de34 1246
fb0e1ba7
MK
1247 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
1248 && ourstatus->value.sig == TARGET_SIGNAL_TRAP)
1249 /* Check for a thread event. */
39f77062 1250 check_event (ptid);
fb0e1ba7 1251
d90e17a7 1252 if (have_threads (ptid))
4105de34
DJ
1253 {
1254 /* Change ptids back into the higher level PID + TID format. If
1255 the thread is dead and no longer on the thread list, we will
1256 get back a dead ptid. This can occur if the thread death
1257 event gets postponed by other simultaneous events. In such a
1258 case, we want to just ignore the event and continue on. */
1259
4105de34
DJ
1260 ptid = thread_from_lwp (ptid);
1261 if (GET_PID (ptid) == -1)
1262 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1263 }
fb0e1ba7 1264
b9b5d7ea 1265 return ptid;
fb0e1ba7
MK
1266}
1267
fb0e1ba7 1268static void
136d6dae 1269thread_db_mourn_inferior (struct target_ops *ops)
fb0e1ba7 1270{
117de6a9
PA
1271 struct target_ops *target_beneath = find_target_beneath (ops);
1272
d90e17a7 1273 delete_thread_db_info (GET_PID (inferior_ptid));
fb0e1ba7 1274
d90e17a7
PA
1275 target_beneath->to_mourn_inferior (target_beneath);
1276
6c95b8df
PA
1277 /* Delete the old thread event breakpoints. Do this after mourning
1278 the inferior, so that we don't try to uninsert them. */
1279 remove_thread_event_breakpoints ();
1280
b26a6851 1281 /* Detach thread_db target ops. */
d90e17a7
PA
1282 if (!thread_db_list)
1283 unpush_target (ops);
fb0e1ba7
MK
1284}
1285
02c6c942
PP
1286struct callback_data
1287{
1288 struct thread_db_info *info;
1289 int new_threads;
1290};
1291
fb0e1ba7
MK
1292static int
1293find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1294{
1295 td_thrinfo_t ti;
1296 td_err_e err;
39f77062 1297 ptid_t ptid;
403fe197 1298 struct thread_info *tp;
02c6c942
PP
1299 struct callback_data *cb_data = data;
1300 struct thread_db_info *info = cb_data->info;
fb0e1ba7 1301
d90e17a7 1302 err = info->td_thr_get_info_p (th_p, &ti);
fb0e1ba7 1303 if (err != TD_OK)
8a3fe4f8 1304 error (_("find_new_threads_callback: cannot get thread info: %s"),
3197744f 1305 thread_db_err_str (err));
fb0e1ba7 1306
21bf60fe
MK
1307 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
1308 return 0; /* A zombie -- ignore. */
5fd913cc 1309
4105de34
DJ
1310 if (ti.ti_tid == 0)
1311 {
1312 /* A thread ID of zero means that this is the main thread, but
1313 glibc has not yet initialized thread-local storage and the
1314 pthread library. We do not know what the thread's TID will
1315 be yet. Just enable event reporting and otherwise ignore
1316 it. */
1317
4d062f1a
PA
1318 /* In that case, we're not stopped in a fork syscall and don't
1319 need this glibc bug workaround. */
1320 info->need_stale_parent_threads_check = 0;
1321
d90e17a7 1322 err = info->td_thr_event_enable_p (th_p, 1);
4105de34 1323 if (err != TD_OK)
4d062f1a
PA
1324 error (_("Cannot enable thread event reporting for LWP %d: %s"),
1325 (int) ti.ti_lid, thread_db_err_str (err));
4105de34
DJ
1326
1327 return 0;
1328 }
1329
4d062f1a
PA
1330 /* Ignore stale parent threads, caused by glibc/BZ5983. This is a
1331 bit expensive, as it needs to open /proc/pid/status, so try to
1332 avoid doing the work if we know we don't have to. */
1333 if (info->need_stale_parent_threads_check)
1334 {
1335 int tgid = linux_proc_get_tgid (ti.ti_lid);
e0881a8e 1336
4d062f1a
PA
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,
fb169834 1365 td_err_e *errp)
02c6c942
PP
1366{
1367 volatile struct gdb_exception except;
1368 struct callback_data data;
fb169834 1369 td_err_e err = TD_ERR;
02c6c942
PP
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 {
02c6c942
PP
1442 find_new_threads_once (info, 0, &err);
1443 if (err != TD_OK)
1444 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
1445 }
fb0e1ba7
MK
1446}
1447
02c6c942
PP
1448static void
1449thread_db_find_new_threads_1 (ptid_t ptid)
1450{
1451 thread_db_find_new_threads_2 (ptid, 0);
1452}
1453
dc146f7c
VP
1454static int
1455update_thread_core (struct lwp_info *info, void *closure)
1456{
1457 info->core = linux_nat_core_of_thread_1 (info->ptid);
1458 return 0;
1459}
02c6c942 1460
28439f5e
PA
1461static void
1462thread_db_find_new_threads (struct target_ops *ops)
1463{
d90e17a7
PA
1464 struct thread_db_info *info;
1465
1466 info = get_thread_db_info (GET_PID (inferior_ptid));
1467
1468 if (info == NULL)
1469 return;
1470
1471 thread_db_find_new_threads_1 (inferior_ptid);
dc146f7c
VP
1472
1473 iterate_over_lwps (minus_one_ptid /* iterate over all */,
1474 update_thread_core, NULL);
28439f5e
PA
1475}
1476
fb0e1ba7 1477static char *
117de6a9 1478thread_db_pid_to_str (struct target_ops *ops, ptid_t ptid)
fb0e1ba7 1479{
e09875d4 1480 struct thread_info *thread_info = find_thread_ptid (ptid);
117de6a9 1481 struct target_ops *beneath;
17faa917
DJ
1482
1483 if (thread_info != NULL && thread_info->private != NULL)
fb0e1ba7
MK
1484 {
1485 static char buf[64];
17faa917 1486 thread_t tid;
fb0e1ba7 1487
17faa917 1488 tid = thread_info->private->tid;
17faa917
DJ
1489 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
1490 tid, GET_LWP (ptid));
fb0e1ba7
MK
1491
1492 return buf;
1493 }
1494
117de6a9
PA
1495 beneath = find_target_beneath (ops);
1496 if (beneath->to_pid_to_str (beneath, ptid))
1497 return beneath->to_pid_to_str (beneath, ptid);
fb0e1ba7 1498
39f77062 1499 return normal_pid_to_str (ptid);
fb0e1ba7
MK
1500}
1501
28b17333
DJ
1502/* Return a string describing the state of the thread specified by
1503 INFO. */
1504
1505static char *
1506thread_db_extra_thread_info (struct thread_info *info)
1507{
17faa917
DJ
1508 if (info->private == NULL)
1509 return NULL;
1510
28b17333
DJ
1511 if (info->private->dying)
1512 return "Exiting";
1513
1514 return NULL;
1515}
1516
b2756930
KB
1517/* Get the address of the thread local variable in load module LM which
1518 is stored at OFFSET within the thread local storage for thread PTID. */
3f47be5c
EZ
1519
1520static CORE_ADDR
117de6a9
PA
1521thread_db_get_thread_local_address (struct target_ops *ops,
1522 ptid_t ptid,
b2756930 1523 CORE_ADDR lm,
b4acd559 1524 CORE_ADDR offset)
3f47be5c 1525{
17faa917 1526 struct thread_info *thread_info;
117de6a9 1527 struct target_ops *beneath;
17faa917 1528
4105de34 1529 /* If we have not discovered any threads yet, check now. */
d90e17a7
PA
1530 if (!have_threads (ptid))
1531 thread_db_find_new_threads_1 (ptid);
4105de34 1532
17faa917 1533 /* Find the matching thread. */
e09875d4 1534 thread_info = find_thread_ptid (ptid);
4105de34 1535
17faa917 1536 if (thread_info != NULL && thread_info->private != NULL)
3f47be5c 1537 {
3f47be5c 1538 td_err_e err;
00f515da 1539 psaddr_t address;
d90e17a7
PA
1540 struct thread_db_info *info;
1541
1542 info = get_thread_db_info (GET_PID (ptid));
3f47be5c
EZ
1543
1544 /* glibc doesn't provide the needed interface. */
d90e17a7 1545 if (!info->td_thr_tls_get_addr_p)
109c3e39
AC
1546 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1547 _("No TLS library support"));
3f47be5c 1548
b2756930
KB
1549 /* Caller should have verified that lm != 0. */
1550 gdb_assert (lm != 0);
3f47be5c 1551
3f47be5c 1552 /* Finally, get the address of the variable. */
00f515da
DE
1553 /* Note the cast through uintptr_t: this interface only works if
1554 a target address fits in a psaddr_t, which is a host pointer.
1555 So a 32-bit debugger can not access 64-bit TLS through this. */
d90e17a7 1556 err = info->td_thr_tls_get_addr_p (&thread_info->private->th,
00f515da 1557 (psaddr_t)(uintptr_t) lm,
d90e17a7 1558 offset, &address);
3f47be5c
EZ
1559
1560#ifdef THREAD_DB_HAS_TD_NOTALLOC
1561 /* The memory hasn't been allocated, yet. */
1562 if (err == TD_NOTALLOC)
b4acd559
JJ
1563 /* Now, if libthread_db provided the initialization image's
1564 address, we *could* try to build a non-lvalue value from
1565 the initialization image. */
109c3e39
AC
1566 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1567 _("TLS not allocated yet"));
3f47be5c
EZ
1568#endif
1569
1570 /* Something else went wrong. */
1571 if (err != TD_OK)
109c3e39
AC
1572 throw_error (TLS_GENERIC_ERROR,
1573 (("%s")), thread_db_err_str (err));
3f47be5c
EZ
1574
1575 /* Cast assuming host == target. Joy. */
16451949
AS
1576 /* Do proper sign extension for the target. */
1577 gdb_assert (exec_bfd);
1578 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1579 ? (CORE_ADDR) (intptr_t) address
1580 : (CORE_ADDR) (uintptr_t) address);
3f47be5c
EZ
1581 }
1582
117de6a9
PA
1583 beneath = find_target_beneath (ops);
1584 if (beneath->to_get_thread_local_address)
1585 return beneath->to_get_thread_local_address (beneath, ptid, lm, offset);
93ad78a7 1586 else
109c3e39
AC
1587 throw_error (TLS_GENERIC_ERROR,
1588 _("TLS not supported on this target"));
3f47be5c
EZ
1589}
1590
0ef643c8
JB
1591/* Callback routine used to find a thread based on the TID part of
1592 its PTID. */
1593
1594static int
1595thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
1596{
1597 long *tid = (long *) data;
1598
1599 if (thread->private->tid == *tid)
1600 return 1;
1601
1602 return 0;
1603}
1604
1605/* Implement the to_get_ada_task_ptid target method for this target. */
1606
1607static ptid_t
1608thread_db_get_ada_task_ptid (long lwp, long thread)
1609{
1610 struct thread_info *thread_info;
1611
d90e17a7 1612 thread_db_find_new_threads_1 (inferior_ptid);
0ef643c8
JB
1613 thread_info = iterate_over_threads (thread_db_find_thread_from_tid, &thread);
1614
1615 gdb_assert (thread_info != NULL);
1616
1617 return (thread_info->ptid);
1618}
1619
4d062f1a
PA
1620static void
1621thread_db_resume (struct target_ops *ops,
1622 ptid_t ptid, int step, enum target_signal signo)
1623{
1624 struct target_ops *beneath = find_target_beneath (ops);
1625 struct thread_db_info *info;
1626
1627 if (ptid_equal (ptid, minus_one_ptid))
1628 info = get_thread_db_info (GET_PID (inferior_ptid));
1629 else
1630 info = get_thread_db_info (GET_PID (ptid));
1631
1632 /* This workaround is only needed for child fork lwps stopped in a
1633 PTRACE_O_TRACEFORK event. When the inferior is resumed, the
1634 workaround can be disabled. */
1635 if (info)
1636 info->need_stale_parent_threads_check = 0;
1637
1638 beneath->to_resume (beneath, ptid, step, signo);
1639}
1640
fb0e1ba7
MK
1641static void
1642init_thread_db_ops (void)
1643{
1644 thread_db_ops.to_shortname = "multi-thread";
1645 thread_db_ops.to_longname = "multi-threaded child process.";
1646 thread_db_ops.to_doc = "Threads and pthreads support.";
1647 thread_db_ops.to_detach = thread_db_detach;
fb0e1ba7 1648 thread_db_ops.to_wait = thread_db_wait;
4d062f1a 1649 thread_db_ops.to_resume = thread_db_resume;
fb0e1ba7 1650 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
fb0e1ba7
MK
1651 thread_db_ops.to_find_new_threads = thread_db_find_new_threads;
1652 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
1653 thread_db_ops.to_stratum = thread_stratum;
1654 thread_db_ops.to_has_thread_control = tc_schedlock;
3f47be5c
EZ
1655 thread_db_ops.to_get_thread_local_address
1656 = thread_db_get_thread_local_address;
28b17333 1657 thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
0ef643c8 1658 thread_db_ops.to_get_ada_task_ptid = thread_db_get_ada_task_ptid;
fb0e1ba7
MK
1659 thread_db_ops.to_magic = OPS_MAGIC;
1660}
1661
2c0b251b
PA
1662/* Provide a prototype to silence -Wmissing-prototypes. */
1663extern initialize_file_ftype _initialize_thread_db;
1664
fb0e1ba7
MK
1665void
1666_initialize_thread_db (void)
1667{
17a37d48
PP
1668 init_thread_db_ops ();
1669 add_target (&thread_db_ops);
1670
1671 /* Defer loading of libthread_db.so until inferior is running.
1672 This allows gdb to load correct libthread_db for a given
1673 executable -- there could be mutiple versions of glibc,
1674 compiled with LinuxThreads or NPTL, and until there is
1675 a running inferior, we can't tell which libthread_db is
1676 the correct one to load. */
1677
1678 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
1679
1680 add_setshow_optional_filename_cmd ("libthread-db-search-path",
1681 class_support,
1682 &libthread_db_search_path, _("\
1683Set search path for libthread_db."), _("\
1684Show the current search path or libthread_db."), _("\
1685This path is used to search for libthread_db to be loaded into \
1686gdb itself."),
1687 NULL,
1688 NULL,
1689 &setlist, &showlist);
1690 /* Add ourselves to objfile event chain. */
1691 observer_attach_new_objfile (thread_db_new_objfile);
fb0e1ba7 1692}
This page took 1.400334 seconds and 4 git commands to generate.