* coffcode.h (coff_write_object_contents): Enclose all occurrences
[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
PA
326 int pid = * (int *) args;
327 if (ptid_get_pid (thread->ptid) != pid)
328 return 0;
329
e3bc4218 330 return thread->private != NULL;
4105de34
DJ
331}
332
333static int
d90e17a7 334have_threads (ptid_t ptid)
4105de34 335{
d90e17a7
PA
336 int pid = ptid_get_pid (ptid);
337
338 return iterate_over_threads (have_threads_callback, &pid) != NULL;
4105de34
DJ
339}
340
d90e17a7
PA
341struct thread_get_info_inout
342{
343 struct thread_info *thread_info;
344 struct thread_db_info *thread_db_info;
345};
346
5365276c 347/* A callback function for td_ta_thr_iter, which we use to map all
cdbc0b18 348 threads to LWPs.
5365276c
DJ
349
350 THP is a handle to the current thread; if INFOP is not NULL, the
351 struct thread_info associated with this thread is returned in
b9b5d7ea
JJ
352 *INFOP.
353
354 If the thread is a zombie, TD_THR_ZOMBIE is returned. Otherwise,
355 zero is returned to indicate success. */
5365276c
DJ
356
357static int
d90e17a7 358thread_get_info_callback (const td_thrhandle_t *thp, void *argp)
5365276c
DJ
359{
360 td_thrinfo_t ti;
361 td_err_e err;
5365276c 362 ptid_t thread_ptid;
d90e17a7
PA
363 struct thread_get_info_inout *inout;
364 struct thread_db_info *info;
365
366 inout = argp;
367 info = inout->thread_db_info;
5365276c 368
d90e17a7 369 err = info->td_thr_get_info_p (thp, &ti);
5365276c 370 if (err != TD_OK)
8a3fe4f8 371 error (_("thread_get_info_callback: cannot get thread info: %s"),
5365276c
DJ
372 thread_db_err_str (err));
373
374 /* Fill the cache. */
d90e17a7 375 thread_ptid = ptid_build (info->pid, ti.ti_lid, 0);
e09875d4 376 inout->thread_info = find_thread_ptid (thread_ptid);
5365276c 377
b9b5d7ea 378 /* In the case of a zombie thread, don't continue. We don't want to
f90ef764 379 attach to it thinking it is a new thread. */
b9b5d7ea 380 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
d90e17a7 381 return TD_THR_ZOMBIE;
b9b5d7ea 382
d90e17a7 383 if (inout->thread_info == NULL)
5365276c
DJ
384 {
385 /* New thread. Attach to it now (why wait?). */
d90e17a7
PA
386 if (!have_threads (thread_ptid))
387 thread_db_find_new_threads_1 (thread_ptid);
4c28f408
PA
388 else
389 attach_thread (thread_ptid, thp, &ti);
e09875d4 390 inout->thread_info = find_thread_ptid (thread_ptid);
d90e17a7 391 gdb_assert (inout->thread_info != NULL);
5365276c
DJ
392 }
393
5365276c
DJ
394 return 0;
395}
5365276c 396\f
fb0e1ba7
MK
397/* Convert between user-level thread ids and LWP ids. */
398
39f77062
KB
399static ptid_t
400thread_from_lwp (ptid_t ptid)
fb0e1ba7 401{
fb0e1ba7
MK
402 td_thrhandle_t th;
403 td_err_e err;
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;
fb0e1ba7 528 td_err_e err;
a2f23071
DJ
529#ifdef HAVE_GNU_LIBC_VERSION_H
530 const char *libc_version;
531 int libc_major, libc_minor;
532#endif
d90e17a7
PA
533 struct thread_db_info *info;
534
535 info = get_thread_db_info (GET_PID (inferior_ptid));
fb0e1ba7
MK
536
537 /* We cannot use the thread event reporting facility if these
538 functions aren't available. */
d90e17a7
PA
539 if (info->td_ta_event_addr_p == NULL
540 || info->td_ta_set_event_p == NULL
541 || info->td_ta_event_getmsg_p == NULL
542 || info->td_thr_event_enable_p == NULL)
fb0e1ba7
MK
543 return;
544
545 /* Set the process wide mask saying which events we're interested in. */
546 td_event_emptyset (&events);
547 td_event_addset (&events, TD_CREATE);
a2f23071
DJ
548
549#ifdef HAVE_GNU_LIBC_VERSION_H
34091d9b 550 /* The event reporting facility is broken for TD_DEATH events in
2ef52e77 551 glibc 2.1.3, so don't enable it if we have glibc but a lower
34091d9b 552 version. */
a2f23071
DJ
553 libc_version = gnu_get_libc_version ();
554 if (sscanf (libc_version, "%d.%d", &libc_major, &libc_minor) == 2
555 && (libc_major > 2 || (libc_major == 2 && libc_minor > 1)))
fb0e1ba7 556#endif
a2f23071 557 td_event_addset (&events, TD_DEATH);
fb0e1ba7 558
d90e17a7 559 err = info->td_ta_set_event_p (info->thread_agent, &events);
fb0e1ba7
MK
560 if (err != TD_OK)
561 {
8a3fe4f8 562 warning (_("Unable to set global thread event mask: %s"),
fb0e1ba7
MK
563 thread_db_err_str (err));
564 return;
565 }
566
567 /* Delete previous thread event breakpoints, if any. */
568 remove_thread_event_breakpoints ();
d90e17a7
PA
569 info->td_create_bp_addr = 0;
570 info->td_death_bp_addr = 0;
fb0e1ba7 571
24557e30 572 /* Set up the thread creation event. */
d90e17a7 573 err = enable_thread_event (TD_CREATE, &info->td_create_bp_addr);
cdbc0b18 574 if (err != TD_OK)
fb0e1ba7 575 {
8a3fe4f8 576 warning (_("Unable to get location for thread creation breakpoint: %s"),
fb0e1ba7
MK
577 thread_db_err_str (err));
578 return;
579 }
580
24557e30 581 /* Set up the thread death event. */
d90e17a7 582 err = enable_thread_event (TD_DEATH, &info->td_death_bp_addr);
cdbc0b18 583 if (err != TD_OK)
fb0e1ba7 584 {
8a3fe4f8 585 warning (_("Unable to get location for thread death breakpoint: %s"),
fb0e1ba7
MK
586 thread_db_err_str (err));
587 return;
588 }
fb0e1ba7
MK
589}
590
456b0e24
PP
591/* Same as thread_db_find_new_threads_1, but silently ignore errors. */
592
593static void
594thread_db_find_new_threads_silently (ptid_t ptid)
595{
596 volatile struct gdb_exception except;
597
598 TRY_CATCH (except, RETURN_MASK_ERROR)
599 {
02c6c942 600 thread_db_find_new_threads_2 (ptid, 1);
456b0e24
PP
601 }
602
603 if (except.reason < 0 && info_verbose)
604 {
605 exception_fprintf (gdb_stderr, except,
606 "Warning: thread_db_find_new_threads_silently: ");
607 }
608}
609
d90e17a7
PA
610/* Lookup a library in which given symbol resides.
611 Note: this is looking in GDB process, not in the inferior.
612 Returns library name, or NULL. */
613
614static const char *
615dladdr_to_soname (const void *addr)
616{
617 Dl_info info;
618
619 if (dladdr (addr, &info) != 0)
620 return info.dli_fname;
621 return NULL;
622}
623
17a37d48
PP
624/* Attempt to initialize dlopen()ed libthread_db, described by HANDLE.
625 Return 1 on success.
626 Failure could happen if libthread_db does not have symbols we expect,
627 or when it refuses to work with the current inferior (e.g. due to
628 version mismatch between libthread_db and libpthread). */
629
630static int
d90e17a7 631try_thread_db_load_1 (struct thread_db_info *info)
17a37d48
PP
632{
633 td_err_e err;
634
635 /* Initialize pointers to the dynamic library functions we will use.
636 Essential functions first. */
637
d90e17a7
PA
638 info->td_init_p = verbose_dlsym (info->handle, "td_init");
639 if (info->td_init_p == NULL)
17a37d48
PP
640 return 0;
641
d90e17a7 642 err = info->td_init_p ();
17a37d48
PP
643 if (err != TD_OK)
644 {
645 warning (_("Cannot initialize libthread_db: %s"), thread_db_err_str (err));
646 return 0;
647 }
648
d90e17a7
PA
649 info->td_ta_new_p = verbose_dlsym (info->handle, "td_ta_new");
650 if (info->td_ta_new_p == NULL)
17a37d48
PP
651 return 0;
652
653 /* Initialize the structure that identifies the child process. */
d90e17a7 654 info->proc_handle.ptid = inferior_ptid;
17a37d48
PP
655
656 /* Now attempt to open a connection to the thread library. */
d90e17a7 657 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
17a37d48
PP
658 if (err != TD_OK)
659 {
17a37d48
PP
660 if (info_verbose)
661 printf_unfiltered (_("td_ta_new failed: %s\n"),
662 thread_db_err_str (err));
663 else
664 switch (err)
665 {
666 case TD_NOLIBTHREAD:
667#ifdef THREAD_DB_HAS_TD_VERSION
668 case TD_VERSION:
669#endif
670 /* The errors above are not unexpected and silently ignored:
671 they just mean we haven't found correct version of
672 libthread_db yet. */
673 break;
674 default:
675 warning (_("td_ta_new failed: %s"), thread_db_err_str (err));
676 }
677 return 0;
678 }
679
d90e17a7
PA
680 info->td_ta_map_id2thr_p = verbose_dlsym (info->handle, "td_ta_map_id2thr");
681 if (info->td_ta_map_id2thr_p == NULL)
17a37d48
PP
682 return 0;
683
d90e17a7
PA
684 info->td_ta_map_lwp2thr_p = verbose_dlsym (info->handle, "td_ta_map_lwp2thr");
685 if (info->td_ta_map_lwp2thr_p == NULL)
17a37d48
PP
686 return 0;
687
d90e17a7
PA
688 info->td_ta_thr_iter_p = verbose_dlsym (info->handle, "td_ta_thr_iter");
689 if (info->td_ta_thr_iter_p == NULL)
17a37d48
PP
690 return 0;
691
d90e17a7
PA
692 info->td_thr_validate_p = verbose_dlsym (info->handle, "td_thr_validate");
693 if (info->td_thr_validate_p == NULL)
17a37d48
PP
694 return 0;
695
d90e17a7
PA
696 info->td_thr_get_info_p = verbose_dlsym (info->handle, "td_thr_get_info");
697 if (info->td_thr_get_info_p == NULL)
17a37d48
PP
698 return 0;
699
700 /* These are not essential. */
d90e17a7
PA
701 info->td_ta_event_addr_p = dlsym (info->handle, "td_ta_event_addr");
702 info->td_ta_set_event_p = dlsym (info->handle, "td_ta_set_event");
21e1bee4 703 info->td_ta_clear_event_p = dlsym (info->handle, "td_ta_clear_event");
d90e17a7
PA
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 907static void
12b6a110 908disable_thread_event_reporting (struct thread_db_info *info)
fb0e1ba7 909{
21e1bee4 910 if (info->td_ta_clear_event_p != NULL)
12b6a110
PP
911 {
912 td_thr_events_t events;
fb0e1ba7 913
12b6a110
PP
914 /* Set the process wide mask saying we aren't interested in any
915 events anymore. */
21e1bee4
PP
916 td_event_fillset (&events);
917 info->td_ta_clear_event_p (info->thread_agent, &events);
12b6a110 918 }
fb0e1ba7 919
d90e17a7
PA
920 info->td_create_bp_addr = 0;
921 info->td_death_bp_addr = 0;
fb0e1ba7
MK
922}
923
924static void
925check_thread_signals (void)
926{
927#ifdef GET_THREAD_SIGNALS
21bf60fe 928 if (!thread_signals)
fb0e1ba7
MK
929 {
930 sigset_t mask;
931 int i;
932
933 GET_THREAD_SIGNALS (&mask);
934 sigemptyset (&thread_stop_set);
935 sigemptyset (&thread_print_set);
936
b9569773 937 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
938 {
939 if (sigismember (&mask, i))
940 {
941 if (signal_stop_update (target_signal_from_host (i), 0))
942 sigaddset (&thread_stop_set, i);
943 if (signal_print_update (target_signal_from_host (i), 0))
944 sigaddset (&thread_print_set, i);
945 thread_signals = 1;
946 }
947 }
948 }
949#endif
950}
951
0ec9a092
DJ
952/* Check whether thread_db is usable. This function is called when
953 an inferior is created (or otherwise acquired, e.g. attached to)
954 and when new shared libraries are loaded into a running process. */
955
956void
957check_for_thread_db (void)
fb0e1ba7 958{
b5057acd 959 /* Do nothing if we couldn't load libthread_db.so.1. */
17a37d48 960 if (!thread_db_load ())
b5057acd 961 return;
0ec9a092
DJ
962}
963
964static void
965thread_db_new_objfile (struct objfile *objfile)
966{
d90e17a7
PA
967 /* This observer must always be called with inferior_ptid set
968 correctly. */
969
0ec9a092
DJ
970 if (objfile != NULL)
971 check_for_thread_db ();
fb0e1ba7
MK
972}
973
a2f23071
DJ
974/* Attach to a new thread. This function is called when we receive a
975 TD_CREATE event or when we iterate over all threads and find one
02c6c942 976 that wasn't already in our list. Returns true on success. */
a2f23071 977
02c6c942 978static int
39f77062 979attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
93815fbf 980 const td_thrinfo_t *ti_p)
fb0e1ba7 981{
17faa917
DJ
982 struct private_thread_info *private;
983 struct thread_info *tp = NULL;
fb0e1ba7 984 td_err_e err;
d90e17a7 985 struct thread_db_info *info;
fb0e1ba7 986
a2f23071
DJ
987 /* If we're being called after a TD_CREATE event, we may already
988 know about this thread. There are two ways this can happen. We
989 may have iterated over all threads between the thread creation
990 and the TD_CREATE event, for instance when the user has issued
991 the `info threads' command before the SIGTRAP for hitting the
992 thread creation breakpoint was reported. Alternatively, the
993 thread may have exited and a new one been created with the same
994 thread ID. In the first case we don't need to do anything; in
995 the second case we should discard information about the dead
996 thread and attach to the new one. */
997 if (in_thread_list (ptid))
998 {
e09875d4 999 tp = find_thread_ptid (ptid);
a2f23071
DJ
1000 gdb_assert (tp != NULL);
1001
17faa917
DJ
1002 /* If tp->private is NULL, then GDB is already attached to this
1003 thread, but we do not know anything about it. We can learn
1004 about it here. This can only happen if we have some other
1005 way besides libthread_db to notice new threads (i.e.
1006 PTRACE_EVENT_CLONE); assume the same mechanism notices thread
1007 exit, so this can not be a stale thread recreated with the
1008 same ID. */
1009 if (tp->private != NULL)
1010 {
1011 if (!tp->private->dying)
02c6c942 1012 return 0;
a2f23071 1013
17faa917
DJ
1014 delete_thread (ptid);
1015 tp = NULL;
1016 }
a2f23071
DJ
1017 }
1018
fb0e1ba7
MK
1019 check_thread_signals ();
1020
9ee57c33 1021 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
02c6c942 1022 return 0; /* A zombie thread -- do not attach. */
9ee57c33
DJ
1023
1024 /* Under GNU/Linux, we have to attach to each and every thread. */
17faa917
DJ
1025 if (tp == NULL
1026 && lin_lwp_attach_lwp (BUILD_LWP (ti_p->ti_lid, GET_PID (ptid))) < 0)
02c6c942 1027 return 0;
9ee57c33 1028
17faa917
DJ
1029 /* Construct the thread's private data. */
1030 private = xmalloc (sizeof (struct private_thread_info));
1031 memset (private, 0, sizeof (struct private_thread_info));
1032
1033 /* A thread ID of zero may mean the thread library has not initialized
1034 yet. But we shouldn't even get here if that's the case. FIXME:
1035 if we change GDB to always have at least one thread in the thread
1036 list this will have to go somewhere else; maybe private == NULL
1037 until the thread_db target claims it. */
1038 gdb_assert (ti_p->ti_tid != 0);
1039 private->th = *th_p;
1040 private->tid = ti_p->ti_tid;
1041
fb0e1ba7 1042 /* Add the thread to GDB's thread list. */
17faa917
DJ
1043 if (tp == NULL)
1044 tp = add_thread_with_info (ptid, private);
1045 else
1046 tp->private = private;
5365276c 1047
d90e17a7
PA
1048 info = get_thread_db_info (GET_PID (ptid));
1049
fb0e1ba7 1050 /* Enable thread event reporting for this thread. */
d90e17a7 1051 err = info->td_thr_event_enable_p (th_p, 1);
fb0e1ba7 1052 if (err != TD_OK)
8a3fe4f8 1053 error (_("Cannot enable thread event reporting for %s: %s"),
39f77062 1054 target_pid_to_str (ptid), thread_db_err_str (err));
02c6c942 1055 return 1;
fb0e1ba7
MK
1056}
1057
1058static void
17faa917 1059detach_thread (ptid_t ptid)
fb0e1ba7 1060{
a2f23071
DJ
1061 struct thread_info *thread_info;
1062
a2f23071
DJ
1063 /* Don't delete the thread now, because it still reports as active
1064 until it has executed a few instructions after the event
1065 breakpoint - if we deleted it now, "info threads" would cause us
1066 to re-attach to it. Just mark it as having had a TD_DEATH
1067 event. This means that we won't delete it from our thread list
1068 until we notice that it's dead (via prune_threads), or until
17faa917
DJ
1069 something re-uses its thread ID. We'll report the thread exit
1070 when the underlying LWP dies. */
e09875d4 1071 thread_info = find_thread_ptid (ptid);
17faa917 1072 gdb_assert (thread_info != NULL && thread_info->private != NULL);
a2f23071 1073 thread_info->private->dying = 1;
fb0e1ba7
MK
1074}
1075
1076static void
136d6dae 1077thread_db_detach (struct target_ops *ops, char *args, int from_tty)
fb0e1ba7 1078{
117de6a9 1079 struct target_ops *target_beneath = find_target_beneath (ops);
d90e17a7 1080 struct thread_db_info *info;
117de6a9 1081
d90e17a7 1082 info = get_thread_db_info (GET_PID (inferior_ptid));
c194fbe1 1083
d90e17a7
PA
1084 if (info)
1085 {
12b6a110 1086 disable_thread_event_reporting (info);
7a7d3353 1087
d90e17a7
PA
1088 /* Delete the old thread event breakpoints. Note that unlike
1089 when mourning, we can remove them here because there's still
1090 a live inferior to poke at. In any case, GDB will not try to
1091 insert anything in the inferior when removing a
1092 breakpoint. */
1093 remove_thread_event_breakpoints ();
1094
1095 delete_thread_db_info (GET_PID (inferior_ptid));
1096 }
4105de34 1097
7a7d3353 1098 target_beneath->to_detach (target_beneath, args, from_tty);
d90e17a7
PA
1099
1100 /* NOTE: From this point on, inferior_ptid is null_ptid. */
1101
1102 /* If there are no more processes using libpthread, detach the
1103 thread_db target ops. */
1104 if (!thread_db_list)
1105 unpush_target (&thread_db_ops);
fb0e1ba7
MK
1106}
1107
fb0e1ba7
MK
1108/* Check if PID is currently stopped at the location of a thread event
1109 breakpoint location. If it is, read the event message and act upon
1110 the event. */
1111
1112static void
39f77062 1113check_event (ptid_t ptid)
fb0e1ba7 1114{
515630c5
UW
1115 struct regcache *regcache = get_thread_regcache (ptid);
1116 struct gdbarch *gdbarch = get_regcache_arch (regcache);
fb0e1ba7
MK
1117 td_event_msg_t msg;
1118 td_thrinfo_t ti;
1119 td_err_e err;
1120 CORE_ADDR stop_pc;
4d9850d3 1121 int loop = 0;
d90e17a7
PA
1122 struct thread_db_info *info;
1123
1124 info = get_thread_db_info (GET_PID (ptid));
fb0e1ba7
MK
1125
1126 /* Bail out early if we're not at a thread event breakpoint. */
515630c5
UW
1127 stop_pc = regcache_read_pc (regcache)
1128 - gdbarch_decr_pc_after_break (gdbarch);
d90e17a7
PA
1129 if (stop_pc != info->td_create_bp_addr
1130 && stop_pc != info->td_death_bp_addr)
fb0e1ba7
MK
1131 return;
1132
4c28f408 1133 /* Access an lwp we know is stopped. */
d90e17a7 1134 info->proc_handle.ptid = ptid;
4c28f408
PA
1135
1136 /* If we have only looked at the first thread before libpthread was
1137 initialized, we may not know its thread ID yet. Make sure we do
1138 before we add another thread to the list. */
d90e17a7
PA
1139 if (!have_threads (ptid))
1140 thread_db_find_new_threads_1 (ptid);
4c28f408 1141
4d9850d3
JJ
1142 /* If we are at a create breakpoint, we do not know what new lwp
1143 was created and cannot specifically locate the event message for it.
1144 We have to call td_ta_event_getmsg() to get
1145 the latest message. Since we have no way of correlating whether
cdbc0b18 1146 the event message we get back corresponds to our breakpoint, we must
4d9850d3 1147 loop and read all event messages, processing them appropriately.
cdbc0b18
RM
1148 This guarantees we will process the correct message before continuing
1149 from the breakpoint.
4d9850d3
JJ
1150
1151 Currently, death events are not enabled. If they are enabled,
1152 the death event can use the td_thr_event_getmsg() interface to
1153 get the message specifically for that lwp and avoid looping
1154 below. */
1155
1156 loop = 1;
1157
1158 do
fb0e1ba7 1159 {
d90e17a7 1160 err = info->td_ta_event_getmsg_p (info->thread_agent, &msg);
4d9850d3
JJ
1161 if (err != TD_OK)
1162 {
1163 if (err == TD_NOMSG)
1164 return;
fb0e1ba7 1165
8a3fe4f8 1166 error (_("Cannot get thread event message: %s"),
4d9850d3
JJ
1167 thread_db_err_str (err));
1168 }
fb0e1ba7 1169
d90e17a7 1170 err = info->td_thr_get_info_p (msg.th_p, &ti);
4d9850d3 1171 if (err != TD_OK)
8a3fe4f8 1172 error (_("Cannot get thread info: %s"), thread_db_err_str (err));
fb0e1ba7 1173
17faa917 1174 ptid = ptid_build (GET_PID (ptid), ti.ti_lid, 0);
fb0e1ba7 1175
4d9850d3
JJ
1176 switch (msg.event)
1177 {
1178 case TD_CREATE:
a2f23071
DJ
1179 /* Call attach_thread whether or not we already know about a
1180 thread with this thread ID. */
93815fbf 1181 attach_thread (ptid, msg.th_p, &ti);
fb0e1ba7 1182
4d9850d3 1183 break;
fb0e1ba7 1184
4d9850d3 1185 case TD_DEATH:
fb0e1ba7 1186
4d9850d3 1187 if (!in_thread_list (ptid))
8a3fe4f8 1188 error (_("Spurious thread death event."));
fb0e1ba7 1189
17faa917 1190 detach_thread (ptid);
fb0e1ba7 1191
4d9850d3 1192 break;
fb0e1ba7 1193
4d9850d3 1194 default:
8a3fe4f8 1195 error (_("Spurious thread event."));
4d9850d3 1196 }
fb0e1ba7 1197 }
4d9850d3 1198 while (loop);
fb0e1ba7
MK
1199}
1200
39f77062 1201static ptid_t
117de6a9 1202thread_db_wait (struct target_ops *ops,
47608cb1
PA
1203 ptid_t ptid, struct target_waitstatus *ourstatus,
1204 int options)
fb0e1ba7 1205{
d90e17a7 1206 struct thread_db_info *info;
117de6a9
PA
1207 struct target_ops *beneath = find_target_beneath (ops);
1208
47608cb1 1209 ptid = beneath->to_wait (beneath, ptid, ourstatus, options);
fb0e1ba7 1210
b84876c2
PA
1211 if (ourstatus->kind == TARGET_WAITKIND_IGNORE)
1212 return ptid;
1213
1111f4aa 1214 if (ourstatus->kind == TARGET_WAITKIND_EXITED
fb66883a
PA
1215 || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
1216 return ptid;
fb0e1ba7 1217
d90e17a7
PA
1218 info = get_thread_db_info (GET_PID (ptid));
1219
1220 /* If this process isn't using thread_db, we're done. */
1221 if (info == NULL)
1222 return ptid;
1223
3f64f7b1
DJ
1224 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1225 {
d90e17a7
PA
1226 /* New image, it may or may not end up using thread_db. Assume
1227 not unless we find otherwise. */
1228 delete_thread_db_info (GET_PID (ptid));
1229 if (!thread_db_list)
1230 unpush_target (&thread_db_ops);
3f64f7b1 1231
6c95b8df
PA
1232 /* Thread event breakpoints are deleted by
1233 update_breakpoints_after_exec. */
1234
49fd4a42 1235 return ptid;
3f64f7b1
DJ
1236 }
1237
4105de34
DJ
1238 /* If we do not know about the main thread yet, this would be a good time to
1239 find it. */
d90e17a7
PA
1240 if (ourstatus->kind == TARGET_WAITKIND_STOPPED && !have_threads (ptid))
1241 thread_db_find_new_threads_1 (ptid);
4105de34 1242
fb0e1ba7
MK
1243 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
1244 && ourstatus->value.sig == TARGET_SIGNAL_TRAP)
1245 /* Check for a thread event. */
39f77062 1246 check_event (ptid);
fb0e1ba7 1247
d90e17a7 1248 if (have_threads (ptid))
4105de34
DJ
1249 {
1250 /* Change ptids back into the higher level PID + TID format. If
1251 the thread is dead and no longer on the thread list, we will
1252 get back a dead ptid. This can occur if the thread death
1253 event gets postponed by other simultaneous events. In such a
1254 case, we want to just ignore the event and continue on. */
1255
4105de34
DJ
1256 ptid = thread_from_lwp (ptid);
1257 if (GET_PID (ptid) == -1)
1258 ourstatus->kind = TARGET_WAITKIND_SPURIOUS;
1259 }
fb0e1ba7 1260
b9b5d7ea 1261 return ptid;
fb0e1ba7
MK
1262}
1263
fb0e1ba7 1264static void
136d6dae 1265thread_db_mourn_inferior (struct target_ops *ops)
fb0e1ba7 1266{
117de6a9
PA
1267 struct target_ops *target_beneath = find_target_beneath (ops);
1268
d90e17a7 1269 delete_thread_db_info (GET_PID (inferior_ptid));
fb0e1ba7 1270
d90e17a7
PA
1271 target_beneath->to_mourn_inferior (target_beneath);
1272
6c95b8df
PA
1273 /* Delete the old thread event breakpoints. Do this after mourning
1274 the inferior, so that we don't try to uninsert them. */
1275 remove_thread_event_breakpoints ();
1276
b26a6851 1277 /* Detach thread_db target ops. */
d90e17a7
PA
1278 if (!thread_db_list)
1279 unpush_target (ops);
fb0e1ba7
MK
1280}
1281
02c6c942
PP
1282struct callback_data
1283{
1284 struct thread_db_info *info;
1285 int new_threads;
1286};
1287
fb0e1ba7
MK
1288static int
1289find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1290{
1291 td_thrinfo_t ti;
1292 td_err_e err;
39f77062 1293 ptid_t ptid;
403fe197 1294 struct thread_info *tp;
02c6c942
PP
1295 struct callback_data *cb_data = data;
1296 struct thread_db_info *info = cb_data->info;
fb0e1ba7 1297
d90e17a7 1298 err = info->td_thr_get_info_p (th_p, &ti);
fb0e1ba7 1299 if (err != TD_OK)
8a3fe4f8 1300 error (_("find_new_threads_callback: cannot get thread info: %s"),
3197744f 1301 thread_db_err_str (err));
fb0e1ba7 1302
21bf60fe
MK
1303 if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE)
1304 return 0; /* A zombie -- ignore. */
5fd913cc 1305
4105de34
DJ
1306 if (ti.ti_tid == 0)
1307 {
1308 /* A thread ID of zero means that this is the main thread, but
1309 glibc has not yet initialized thread-local storage and the
1310 pthread library. We do not know what the thread's TID will
1311 be yet. Just enable event reporting and otherwise ignore
1312 it. */
1313
4d062f1a
PA
1314 /* In that case, we're not stopped in a fork syscall and don't
1315 need this glibc bug workaround. */
1316 info->need_stale_parent_threads_check = 0;
1317
d90e17a7 1318 err = info->td_thr_event_enable_p (th_p, 1);
4105de34 1319 if (err != TD_OK)
4d062f1a
PA
1320 error (_("Cannot enable thread event reporting for LWP %d: %s"),
1321 (int) ti.ti_lid, thread_db_err_str (err));
4105de34
DJ
1322
1323 return 0;
1324 }
1325
4d062f1a
PA
1326 /* Ignore stale parent threads, caused by glibc/BZ5983. This is a
1327 bit expensive, as it needs to open /proc/pid/status, so try to
1328 avoid doing the work if we know we don't have to. */
1329 if (info->need_stale_parent_threads_check)
1330 {
1331 int tgid = linux_proc_get_tgid (ti.ti_lid);
1332 if (tgid != -1 && tgid != info->pid)
1333 return 0;
1334 }
1335
1336 ptid = ptid_build (info->pid, ti.ti_lid, 0);
e09875d4 1337 tp = find_thread_ptid (ptid);
403fe197 1338 if (tp == NULL || tp->private == NULL)
02c6c942
PP
1339 {
1340 if (attach_thread (ptid, th_p, &ti))
1341 cb_data->new_threads += 1;
1342 else
1343 /* Problem attaching this thread; perhaps it exited before we
1344 could attach it?
1345 This could mean that the thread list inside glibc itself is in
1346 inconsistent state, and libthread_db could go on looping forever
1347 (observed with glibc-2.3.6). To prevent that, terminate
1348 iteration: thread_db_find_new_threads_2 will retry. */
1349 return 1;
1350 }
fb0e1ba7
MK
1351
1352 return 0;
1353}
1354
02c6c942
PP
1355/* Helper for thread_db_find_new_threads_2.
1356 Returns number of new threads found. */
1357
1358static int
1359find_new_threads_once (struct thread_db_info *info, int iteration,
fb169834 1360 td_err_e *errp)
02c6c942
PP
1361{
1362 volatile struct gdb_exception except;
1363 struct callback_data data;
fb169834 1364 td_err_e err = TD_ERR;
02c6c942
PP
1365
1366 data.info = info;
1367 data.new_threads = 0;
1368
1369 TRY_CATCH (except, RETURN_MASK_ERROR)
1370 {
1371 /* Iterate over all user-space threads to discover new threads. */
1372 err = info->td_ta_thr_iter_p (info->thread_agent,
1373 find_new_threads_callback,
1374 &data,
1375 TD_THR_ANY_STATE,
1376 TD_THR_LOWEST_PRIORITY,
1377 TD_SIGNO_MASK,
1378 TD_THR_ANY_USER_FLAGS);
1379 }
1380
1381 if (info_verbose)
1382 {
1383 if (except.reason < 0)
1384 exception_fprintf (gdb_stderr, except,
1385 "Warning: find_new_threads_once: ");
1386
1387 printf_filtered (_("Found %d new threads in iteration %d.\n"),
1388 data.new_threads, iteration);
1389 }
1390
1391 if (errp != NULL)
1392 *errp = err;
1393
1394 return data.new_threads;
1395}
1396
4c28f408 1397/* Search for new threads, accessing memory through stopped thread
02c6c942
PP
1398 PTID. If UNTIL_NO_NEW is true, repeat searching until several
1399 searches in a row do not discover any new threads. */
4c28f408 1400
fb0e1ba7 1401static void
02c6c942 1402thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new)
fb0e1ba7
MK
1403{
1404 td_err_e err;
4c28f408 1405 struct lwp_info *lp;
d90e17a7
PA
1406 struct thread_db_info *info;
1407 int pid = ptid_get_pid (ptid);
02c6c942 1408 int i, loop;
4c28f408
PA
1409
1410 /* In linux, we can only read memory through a stopped lwp. */
1411 ALL_LWPS (lp, ptid)
d90e17a7 1412 if (lp->stopped && ptid_get_pid (lp->ptid) == pid)
4c28f408
PA
1413 break;
1414
1415 if (!lp)
1416 /* There is no stopped thread. Bail out. */
1417 return;
fb0e1ba7 1418
d90e17a7
PA
1419 info = get_thread_db_info (GET_PID (ptid));
1420
4c28f408 1421 /* Access an lwp we know is stopped. */
d90e17a7 1422 info->proc_handle.ptid = ptid;
02c6c942
PP
1423
1424 if (until_no_new)
1425 {
1426 /* Require 4 successive iterations which do not find any new threads.
1427 The 4 is a heuristic: there is an inherent race here, and I have
1428 seen that 2 iterations in a row are not always sufficient to
1429 "capture" all threads. */
1430 for (i = 0, loop = 0; loop < 4; ++i, ++loop)
1431 if (find_new_threads_once (info, i, NULL) != 0)
1432 /* Found some new threads. Restart the loop from beginning. */
1433 loop = -1;
1434 }
1435 else
1436 {
02c6c942
PP
1437 find_new_threads_once (info, 0, &err);
1438 if (err != TD_OK)
1439 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
1440 }
fb0e1ba7
MK
1441}
1442
02c6c942
PP
1443static void
1444thread_db_find_new_threads_1 (ptid_t ptid)
1445{
1446 thread_db_find_new_threads_2 (ptid, 0);
1447}
1448
dc146f7c
VP
1449static int
1450update_thread_core (struct lwp_info *info, void *closure)
1451{
1452 info->core = linux_nat_core_of_thread_1 (info->ptid);
1453 return 0;
1454}
02c6c942 1455
28439f5e
PA
1456static void
1457thread_db_find_new_threads (struct target_ops *ops)
1458{
d90e17a7
PA
1459 struct thread_db_info *info;
1460
1461 info = get_thread_db_info (GET_PID (inferior_ptid));
1462
1463 if (info == NULL)
1464 return;
1465
1466 thread_db_find_new_threads_1 (inferior_ptid);
dc146f7c
VP
1467
1468 iterate_over_lwps (minus_one_ptid /* iterate over all */,
1469 update_thread_core, NULL);
28439f5e
PA
1470}
1471
fb0e1ba7 1472static char *
117de6a9 1473thread_db_pid_to_str (struct target_ops *ops, ptid_t ptid)
fb0e1ba7 1474{
e09875d4 1475 struct thread_info *thread_info = find_thread_ptid (ptid);
117de6a9 1476 struct target_ops *beneath;
17faa917
DJ
1477
1478 if (thread_info != NULL && thread_info->private != NULL)
fb0e1ba7
MK
1479 {
1480 static char buf[64];
17faa917 1481 thread_t tid;
fb0e1ba7 1482
17faa917 1483 tid = thread_info->private->tid;
17faa917
DJ
1484 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
1485 tid, GET_LWP (ptid));
fb0e1ba7
MK
1486
1487 return buf;
1488 }
1489
117de6a9
PA
1490 beneath = find_target_beneath (ops);
1491 if (beneath->to_pid_to_str (beneath, ptid))
1492 return beneath->to_pid_to_str (beneath, ptid);
fb0e1ba7 1493
39f77062 1494 return normal_pid_to_str (ptid);
fb0e1ba7
MK
1495}
1496
28b17333
DJ
1497/* Return a string describing the state of the thread specified by
1498 INFO. */
1499
1500static char *
1501thread_db_extra_thread_info (struct thread_info *info)
1502{
17faa917
DJ
1503 if (info->private == NULL)
1504 return NULL;
1505
28b17333
DJ
1506 if (info->private->dying)
1507 return "Exiting";
1508
1509 return NULL;
1510}
1511
b2756930
KB
1512/* Get the address of the thread local variable in load module LM which
1513 is stored at OFFSET within the thread local storage for thread PTID. */
3f47be5c
EZ
1514
1515static CORE_ADDR
117de6a9
PA
1516thread_db_get_thread_local_address (struct target_ops *ops,
1517 ptid_t ptid,
b2756930 1518 CORE_ADDR lm,
b4acd559 1519 CORE_ADDR offset)
3f47be5c 1520{
17faa917 1521 struct thread_info *thread_info;
117de6a9 1522 struct target_ops *beneath;
17faa917 1523
4105de34 1524 /* If we have not discovered any threads yet, check now. */
d90e17a7
PA
1525 if (!have_threads (ptid))
1526 thread_db_find_new_threads_1 (ptid);
4105de34 1527
17faa917 1528 /* Find the matching thread. */
e09875d4 1529 thread_info = find_thread_ptid (ptid);
4105de34 1530
17faa917 1531 if (thread_info != NULL && thread_info->private != NULL)
3f47be5c 1532 {
3f47be5c 1533 td_err_e err;
00f515da 1534 psaddr_t address;
d90e17a7
PA
1535 struct thread_db_info *info;
1536
1537 info = get_thread_db_info (GET_PID (ptid));
3f47be5c
EZ
1538
1539 /* glibc doesn't provide the needed interface. */
d90e17a7 1540 if (!info->td_thr_tls_get_addr_p)
109c3e39
AC
1541 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1542 _("No TLS library support"));
3f47be5c 1543
b2756930
KB
1544 /* Caller should have verified that lm != 0. */
1545 gdb_assert (lm != 0);
3f47be5c 1546
3f47be5c 1547 /* Finally, get the address of the variable. */
00f515da
DE
1548 /* Note the cast through uintptr_t: this interface only works if
1549 a target address fits in a psaddr_t, which is a host pointer.
1550 So a 32-bit debugger can not access 64-bit TLS through this. */
d90e17a7 1551 err = info->td_thr_tls_get_addr_p (&thread_info->private->th,
00f515da 1552 (psaddr_t)(uintptr_t) lm,
d90e17a7 1553 offset, &address);
3f47be5c
EZ
1554
1555#ifdef THREAD_DB_HAS_TD_NOTALLOC
1556 /* The memory hasn't been allocated, yet. */
1557 if (err == TD_NOTALLOC)
b4acd559
JJ
1558 /* Now, if libthread_db provided the initialization image's
1559 address, we *could* try to build a non-lvalue value from
1560 the initialization image. */
109c3e39
AC
1561 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1562 _("TLS not allocated yet"));
3f47be5c
EZ
1563#endif
1564
1565 /* Something else went wrong. */
1566 if (err != TD_OK)
109c3e39
AC
1567 throw_error (TLS_GENERIC_ERROR,
1568 (("%s")), thread_db_err_str (err));
3f47be5c
EZ
1569
1570 /* Cast assuming host == target. Joy. */
16451949
AS
1571 /* Do proper sign extension for the target. */
1572 gdb_assert (exec_bfd);
1573 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1574 ? (CORE_ADDR) (intptr_t) address
1575 : (CORE_ADDR) (uintptr_t) address);
3f47be5c
EZ
1576 }
1577
117de6a9
PA
1578 beneath = find_target_beneath (ops);
1579 if (beneath->to_get_thread_local_address)
1580 return beneath->to_get_thread_local_address (beneath, ptid, lm, offset);
93ad78a7 1581 else
109c3e39
AC
1582 throw_error (TLS_GENERIC_ERROR,
1583 _("TLS not supported on this target"));
3f47be5c
EZ
1584}
1585
0ef643c8
JB
1586/* Callback routine used to find a thread based on the TID part of
1587 its PTID. */
1588
1589static int
1590thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
1591{
1592 long *tid = (long *) data;
1593
1594 if (thread->private->tid == *tid)
1595 return 1;
1596
1597 return 0;
1598}
1599
1600/* Implement the to_get_ada_task_ptid target method for this target. */
1601
1602static ptid_t
1603thread_db_get_ada_task_ptid (long lwp, long thread)
1604{
1605 struct thread_info *thread_info;
1606
d90e17a7 1607 thread_db_find_new_threads_1 (inferior_ptid);
0ef643c8
JB
1608 thread_info = iterate_over_threads (thread_db_find_thread_from_tid, &thread);
1609
1610 gdb_assert (thread_info != NULL);
1611
1612 return (thread_info->ptid);
1613}
1614
4d062f1a
PA
1615static void
1616thread_db_resume (struct target_ops *ops,
1617 ptid_t ptid, int step, enum target_signal signo)
1618{
1619 struct target_ops *beneath = find_target_beneath (ops);
1620 struct thread_db_info *info;
1621
1622 if (ptid_equal (ptid, minus_one_ptid))
1623 info = get_thread_db_info (GET_PID (inferior_ptid));
1624 else
1625 info = get_thread_db_info (GET_PID (ptid));
1626
1627 /* This workaround is only needed for child fork lwps stopped in a
1628 PTRACE_O_TRACEFORK event. When the inferior is resumed, the
1629 workaround can be disabled. */
1630 if (info)
1631 info->need_stale_parent_threads_check = 0;
1632
1633 beneath->to_resume (beneath, ptid, step, signo);
1634}
1635
fb0e1ba7
MK
1636static void
1637init_thread_db_ops (void)
1638{
1639 thread_db_ops.to_shortname = "multi-thread";
1640 thread_db_ops.to_longname = "multi-threaded child process.";
1641 thread_db_ops.to_doc = "Threads and pthreads support.";
1642 thread_db_ops.to_detach = thread_db_detach;
fb0e1ba7 1643 thread_db_ops.to_wait = thread_db_wait;
4d062f1a 1644 thread_db_ops.to_resume = thread_db_resume;
fb0e1ba7 1645 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
fb0e1ba7
MK
1646 thread_db_ops.to_find_new_threads = thread_db_find_new_threads;
1647 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
1648 thread_db_ops.to_stratum = thread_stratum;
1649 thread_db_ops.to_has_thread_control = tc_schedlock;
3f47be5c
EZ
1650 thread_db_ops.to_get_thread_local_address
1651 = thread_db_get_thread_local_address;
28b17333 1652 thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
0ef643c8 1653 thread_db_ops.to_get_ada_task_ptid = thread_db_get_ada_task_ptid;
fb0e1ba7
MK
1654 thread_db_ops.to_magic = OPS_MAGIC;
1655}
1656
2c0b251b
PA
1657/* Provide a prototype to silence -Wmissing-prototypes. */
1658extern initialize_file_ftype _initialize_thread_db;
1659
fb0e1ba7
MK
1660void
1661_initialize_thread_db (void)
1662{
17a37d48
PP
1663 init_thread_db_ops ();
1664 add_target (&thread_db_ops);
1665
1666 /* Defer loading of libthread_db.so until inferior is running.
1667 This allows gdb to load correct libthread_db for a given
1668 executable -- there could be mutiple versions of glibc,
1669 compiled with LinuxThreads or NPTL, and until there is
1670 a running inferior, we can't tell which libthread_db is
1671 the correct one to load. */
1672
1673 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
1674
1675 add_setshow_optional_filename_cmd ("libthread-db-search-path",
1676 class_support,
1677 &libthread_db_search_path, _("\
1678Set search path for libthread_db."), _("\
1679Show the current search path or libthread_db."), _("\
1680This path is used to search for libthread_db to be loaded into \
1681gdb itself."),
1682 NULL,
1683 NULL,
1684 &setlist, &showlist);
1685 /* Add ourselves to objfile event chain. */
1686 observer_attach_new_objfile (thread_db_new_objfile);
fb0e1ba7 1687}
This page took 0.973146 seconds and 4 git commands to generate.