Code cleanup: Add objfile_name accessor
[deliverable/binutils-gdb.git] / gdb / linux-thread-db.c
CommitLineData
fb0e1ba7 1/* libthread_db assisted debugging support, generic parts.
1bac305b 2
28e7fd62 3 Copyright (C) 1999-2013 Free Software Foundation, Inc.
fb0e1ba7
MK
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
fb0e1ba7
MK
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
fb0e1ba7
MK
19
20#include "defs.h"
21
22#include "gdb_assert.h"
23#include <dlfcn.h>
24#include "gdb_proc_service.h"
25#include "gdb_thread_db.h"
e6712ff1 26#include "gdb_vecs.h"
bda9cb72 27#include "bfd.h"
17a37d48 28#include "command.h"
93ad78a7 29#include "exceptions.h"
17a37d48 30#include "gdbcmd.h"
fb0e1ba7
MK
31#include "gdbthread.h"
32#include "inferior.h"
bda9cb72
MK
33#include "symfile.h"
34#include "objfiles.h"
fb0e1ba7 35#include "target.h"
4e052eda 36#include "regcache.h"
17a37d48 37#include "solib.h"
3f47be5c 38#include "solib-svr4.h"
16451949 39#include "gdbcore.h"
06d3b283 40#include "observer.h"
0ec9a092 41#include "linux-nat.h"
13da1c97 42#include "linux-procfs.h"
2e794194 43#include "linux-osdata.h"
bf88dd68 44#include "auto-load.h"
529480d0 45#include "cli/cli-utils.h"
fb0e1ba7 46
979894f2 47#include <signal.h>
bf88dd68 48#include <ctype.h>
979894f2 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
bf88dd68
JK
78/* Set to non-zero if thread_db auto-loading is enabled
79 by the "set auto-load libthread-db" command. */
80static int auto_load_thread_db = 1;
81
82/* "show" command for the auto_load_thread_db configuration variable. */
83
84static void
85show_auto_load_thread_db (struct ui_file *file, int from_tty,
86 struct cmd_list_element *c, const char *value)
87{
88 fprintf_filtered (file, _("Auto-loading of inferior specific libthread_db "
89 "is %s.\n"),
90 value);
91}
92
84e578fb
DE
93static void
94set_libthread_db_search_path (char *ignored, int from_tty,
95 struct cmd_list_element *c)
96{
97 if (*libthread_db_search_path == '\0')
98 {
99 xfree (libthread_db_search_path);
100 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
101 }
102}
103
02d868e8
PP
104/* If non-zero, print details of libthread_db processing. */
105
ccce17b0 106static unsigned int libthread_db_debug;
02d868e8
PP
107
108static void
109show_libthread_db_debug (struct ui_file *file, int from_tty,
110 struct cmd_list_element *c, const char *value)
111{
112 fprintf_filtered (file, _("libthread-db debugging is %s.\n"), value);
113}
114
8605d56e
AC
115/* If we're running on GNU/Linux, we must explicitly attach to any new
116 threads. */
fb0e1ba7 117
fb0e1ba7
MK
118/* This module's target vector. */
119static struct target_ops thread_db_ops;
120
fb0e1ba7
MK
121/* Non-zero if we have determined the signals used by the threads
122 library. */
123static int thread_signals;
124static sigset_t thread_stop_set;
125static sigset_t thread_print_set;
126
d90e17a7
PA
127struct thread_db_info
128{
129 struct thread_db_info *next;
130
131 /* Process id this object refers to. */
132 int pid;
133
134 /* Handle from dlopen for libthread_db.so. */
135 void *handle;
136
bf88dd68
JK
137 /* Absolute pathname from gdb_realpath to disk file used for dlopen-ing
138 HANDLE. It may be NULL for system library. */
139 char *filename;
140
d90e17a7
PA
141 /* Structure that identifies the child process for the
142 <proc_service.h> interface. */
143 struct ps_prochandle proc_handle;
144
145 /* Connection to the libthread_db library. */
146 td_thragent_t *thread_agent;
147
4d062f1a
PA
148 /* True if we need to apply the workaround for glibc/BZ5983. When
149 we catch a PTRACE_O_TRACEFORK, and go query the child's thread
150 list, nptl_db returns the parent's threads in addition to the new
151 (single) child thread. If this flag is set, we do extra work to
152 be able to ignore such stale entries. */
153 int need_stale_parent_threads_check;
154
d90e17a7
PA
155 /* Location of the thread creation event breakpoint. The code at
156 this location in the child process will be called by the pthread
157 library whenever a new thread is created. By setting a special
158 breakpoint at this location, GDB can detect when a new thread is
159 created. We obtain this location via the td_ta_event_addr
160 call. */
161 CORE_ADDR td_create_bp_addr;
fb0e1ba7 162
d90e17a7
PA
163 /* Location of the thread death event breakpoint. */
164 CORE_ADDR td_death_bp_addr;
fb0e1ba7 165
d90e17a7 166 /* Pointers to the libthread_db functions. */
fb0e1ba7 167
d90e17a7 168 td_err_e (*td_init_p) (void);
fb0e1ba7 169
d90e17a7 170 td_err_e (*td_ta_new_p) (struct ps_prochandle * ps,
b4acd559 171 td_thragent_t **ta);
d90e17a7
PA
172 td_err_e (*td_ta_map_id2thr_p) (const td_thragent_t *ta, thread_t pt,
173 td_thrhandle_t *__th);
174 td_err_e (*td_ta_map_lwp2thr_p) (const td_thragent_t *ta,
175 lwpid_t lwpid, td_thrhandle_t *th);
176 td_err_e (*td_ta_thr_iter_p) (const td_thragent_t *ta,
177 td_thr_iter_f *callback, void *cbdata_p,
178 td_thr_state_e state, int ti_pri,
179 sigset_t *ti_sigmask_p,
180 unsigned int ti_user_flags);
181 td_err_e (*td_ta_event_addr_p) (const td_thragent_t *ta,
182 td_event_e event, td_notify_t *ptr);
183 td_err_e (*td_ta_set_event_p) (const td_thragent_t *ta,
184 td_thr_events_t *event);
21e1bee4
PP
185 td_err_e (*td_ta_clear_event_p) (const td_thragent_t *ta,
186 td_thr_events_t *event);
d90e17a7
PA
187 td_err_e (*td_ta_event_getmsg_p) (const td_thragent_t *ta,
188 td_event_msg_t *msg);
189
190 td_err_e (*td_thr_validate_p) (const td_thrhandle_t *th);
191 td_err_e (*td_thr_get_info_p) (const td_thrhandle_t *th,
192 td_thrinfo_t *infop);
193 td_err_e (*td_thr_event_enable_p) (const td_thrhandle_t *th,
194 int event);
195
196 td_err_e (*td_thr_tls_get_addr_p) (const td_thrhandle_t *th,
00f515da
DE
197 psaddr_t map_address,
198 size_t offset, psaddr_t *address);
d90e17a7
PA
199};
200
201/* List of known processes using thread_db, and the required
202 bookkeeping. */
203struct thread_db_info *thread_db_list;
204
205static void thread_db_find_new_threads_1 (ptid_t ptid);
02c6c942 206static void thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new);
d90e17a7
PA
207
208/* Add the current inferior to the list of processes using libpthread.
209 Return a pointer to the newly allocated object that was added to
210 THREAD_DB_LIST. HANDLE is the handle returned by dlopen'ing
211 LIBTHREAD_DB_SO. */
212
213static struct thread_db_info *
214add_thread_db_info (void *handle)
215{
d90e17a7
PA
216 struct thread_db_info *info;
217
218 info = xcalloc (1, sizeof (*info));
219 info->pid = ptid_get_pid (inferior_ptid);
220 info->handle = handle;
856d6f99
PA
221
222 /* The workaround works by reading from /proc/pid/status, so it is
223 disabled for core files. */
224 if (target_has_execution)
225 info->need_stale_parent_threads_check = 1;
d90e17a7
PA
226
227 info->next = thread_db_list;
228 thread_db_list = info;
229
230 return info;
231}
232
233/* Return the thread_db_info object representing the bookkeeping
234 related to process PID, if any; NULL otherwise. */
235
236static struct thread_db_info *
237get_thread_db_info (int pid)
238{
239 struct thread_db_info *info;
240
241 for (info = thread_db_list; info; info = info->next)
242 if (pid == info->pid)
243 return info;
244
245 return NULL;
246}
247
248/* When PID has exited or has been detached, we no longer want to keep
249 track of it as using libpthread. Call this function to discard
250 thread_db related info related to PID. Note that this closes
251 LIBTHREAD_DB_SO's dlopen'ed handle. */
252
253static void
254delete_thread_db_info (int pid)
255{
256 struct thread_db_info *info, *info_prev;
257
258 info_prev = NULL;
259
260 for (info = thread_db_list; info; info_prev = info, info = info->next)
261 if (pid == info->pid)
262 break;
263
264 if (info == NULL)
265 return;
266
267 if (info->handle != NULL)
268 dlclose (info->handle);
269
bf88dd68
JK
270 xfree (info->filename);
271
d90e17a7
PA
272 if (info_prev)
273 info_prev->next = info->next;
274 else
275 thread_db_list = info->next;
276
277 xfree (info);
278}
fb0e1ba7
MK
279
280/* Prototypes for local functions. */
02c6c942
PP
281static int attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
282 const td_thrinfo_t *ti_p);
17faa917 283static void detach_thread (ptid_t ptid);
fb0e1ba7
MK
284\f
285
5365276c
DJ
286/* Use "struct private_thread_info" to cache thread state. This is
287 a substantial optimization. */
288
fb0e1ba7
MK
289struct private_thread_info
290{
a2f23071
DJ
291 /* Flag set when we see a TD_DEATH event for this thread. */
292 unsigned int dying:1;
293
5365276c 294 /* Cached thread state. */
5365276c 295 td_thrhandle_t th;
17faa917 296 thread_t tid;
fb0e1ba7 297};
fb0e1ba7 298\f
21bf60fe 299
fb0e1ba7
MK
300static char *
301thread_db_err_str (td_err_e err)
302{
303 static char buf[64];
304
305 switch (err)
306 {
307 case TD_OK:
308 return "generic 'call succeeded'";
309 case TD_ERR:
310 return "generic error";
311 case TD_NOTHR:
312 return "no thread to satisfy query";
313 case TD_NOSV:
314 return "no sync handle to satisfy query";
315 case TD_NOLWP:
316 return "no LWP to satisfy query";
317 case TD_BADPH:
318 return "invalid process handle";
319 case TD_BADTH:
320 return "invalid thread handle";
321 case TD_BADSH:
322 return "invalid synchronization handle";
323 case TD_BADTA:
324 return "invalid thread agent";
325 case TD_BADKEY:
326 return "invalid key";
327 case TD_NOMSG:
328 return "no event message for getmsg";
329 case TD_NOFPREGS:
330 return "FPU register set not available";
331 case TD_NOLIBTHREAD:
332 return "application not linked with libthread";
333 case TD_NOEVENT:
334 return "requested event is not supported";
335 case TD_NOCAPAB:
336 return "capability not available";
337 case TD_DBERR:
338 return "debugger service failed";
339 case TD_NOAPLIC:
340 return "operation not applicable to";
341 case TD_NOTSD:
342 return "no thread-specific data for this thread";
343 case TD_MALLOC:
344 return "malloc failed";
345 case TD_PARTIALREG:
346 return "only part of register set was written/read";
347 case TD_NOXREGS:
348 return "X register set not available for this thread";
59f80f10
DJ
349#ifdef THREAD_DB_HAS_TD_NOTALLOC
350 case TD_NOTALLOC:
351 return "thread has not yet allocated TLS for given module";
352#endif
353#ifdef THREAD_DB_HAS_TD_VERSION
354 case TD_VERSION:
355 return "versions of libpthread and libthread_db do not match";
356#endif
357#ifdef THREAD_DB_HAS_TD_NOTLS
358 case TD_NOTLS:
359 return "there is no TLS segment in the given module";
360#endif
fb0e1ba7
MK
361 default:
362 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
363 return buf;
364 }
365}
fb0e1ba7 366\f
4105de34
DJ
367/* Return 1 if any threads have been registered. There may be none if
368 the threading library is not fully initialized yet. */
369
370static int
d90e17a7 371have_threads_callback (struct thread_info *thread, void *args)
4105de34 372{
d90e17a7 373 int pid = * (int *) args;
e0881a8e 374
d90e17a7
PA
375 if (ptid_get_pid (thread->ptid) != pid)
376 return 0;
377
e3bc4218 378 return thread->private != NULL;
4105de34
DJ
379}
380
381static int
d90e17a7 382have_threads (ptid_t ptid)
4105de34 383{
d90e17a7
PA
384 int pid = ptid_get_pid (ptid);
385
386 return iterate_over_threads (have_threads_callback, &pid) != NULL;
4105de34
DJ
387}
388
d90e17a7
PA
389struct thread_get_info_inout
390{
391 struct thread_info *thread_info;
392 struct thread_db_info *thread_db_info;
393};
394
5365276c 395/* A callback function for td_ta_thr_iter, which we use to map all
cdbc0b18 396 threads to LWPs.
5365276c
DJ
397
398 THP is a handle to the current thread; if INFOP is not NULL, the
399 struct thread_info associated with this thread is returned in
b9b5d7ea
JJ
400 *INFOP.
401
402 If the thread is a zombie, TD_THR_ZOMBIE is returned. Otherwise,
403 zero is returned to indicate success. */
5365276c
DJ
404
405static int
d90e17a7 406thread_get_info_callback (const td_thrhandle_t *thp, void *argp)
5365276c
DJ
407{
408 td_thrinfo_t ti;
409 td_err_e err;
5365276c 410 ptid_t thread_ptid;
d90e17a7
PA
411 struct thread_get_info_inout *inout;
412 struct thread_db_info *info;
413
414 inout = argp;
415 info = inout->thread_db_info;
5365276c 416
d90e17a7 417 err = info->td_thr_get_info_p (thp, &ti);
5365276c 418 if (err != TD_OK)
8a3fe4f8 419 error (_("thread_get_info_callback: cannot get thread info: %s"),
5365276c
DJ
420 thread_db_err_str (err));
421
422 /* Fill the cache. */
d90e17a7 423 thread_ptid = ptid_build (info->pid, ti.ti_lid, 0);
e09875d4 424 inout->thread_info = find_thread_ptid (thread_ptid);
5365276c 425
d90e17a7 426 if (inout->thread_info == NULL)
5365276c
DJ
427 {
428 /* New thread. Attach to it now (why wait?). */
d90e17a7
PA
429 if (!have_threads (thread_ptid))
430 thread_db_find_new_threads_1 (thread_ptid);
4c28f408
PA
431 else
432 attach_thread (thread_ptid, thp, &ti);
e09875d4 433 inout->thread_info = find_thread_ptid (thread_ptid);
d90e17a7 434 gdb_assert (inout->thread_info != NULL);
5365276c
DJ
435 }
436
5365276c
DJ
437 return 0;
438}
5365276c 439\f
64776a0b 440/* Fetch the user-level thread id of PTID. */
fb0e1ba7 441
64776a0b 442static void
39f77062 443thread_from_lwp (ptid_t ptid)
fb0e1ba7 444{
fb0e1ba7
MK
445 td_thrhandle_t th;
446 td_err_e err;
d90e17a7
PA
447 struct thread_db_info *info;
448 struct thread_get_info_inout io = {0};
fb0e1ba7 449
6cb9b55b
PP
450 /* Just in case td_ta_map_lwp2thr doesn't initialize it completely. */
451 th.th_unique = 0;
452
17faa917
DJ
453 /* This ptid comes from linux-nat.c, which should always fill in the
454 LWP. */
455 gdb_assert (GET_LWP (ptid) != 0);
fb0e1ba7 456
d90e17a7
PA
457 info = get_thread_db_info (GET_PID (ptid));
458
4c28f408 459 /* Access an lwp we know is stopped. */
d90e17a7
PA
460 info->proc_handle.ptid = ptid;
461 err = info->td_ta_map_lwp2thr_p (info->thread_agent, GET_LWP (ptid), &th);
fb0e1ba7 462 if (err != TD_OK)
8a3fe4f8 463 error (_("Cannot find user-level thread for LWP %ld: %s"),
39f77062 464 GET_LWP (ptid), thread_db_err_str (err));
fb0e1ba7 465
64776a0b 466 /* Long-winded way of fetching the thread info. */
d90e17a7
PA
467 io.thread_db_info = info;
468 io.thread_info = NULL;
64776a0b 469 thread_get_info_callback (&th, &io);
fb0e1ba7
MK
470}
471\f
472
4c28f408
PA
473/* Attach to lwp PTID, doing whatever else is required to have this
474 LWP under the debugger's control --- e.g., enabling event
475 reporting. Returns true on success. */
476int
477thread_db_attach_lwp (ptid_t ptid)
478{
479 td_thrhandle_t th;
480 td_thrinfo_t ti;
481 td_err_e err;
d90e17a7 482 struct thread_db_info *info;
4c28f408 483
d90e17a7
PA
484 info = get_thread_db_info (GET_PID (ptid));
485
486 if (info == NULL)
4c28f408
PA
487 return 0;
488
489 /* This ptid comes from linux-nat.c, which should always fill in the
490 LWP. */
491 gdb_assert (GET_LWP (ptid) != 0);
492
493 /* Access an lwp we know is stopped. */
d90e17a7 494 info->proc_handle.ptid = ptid;
4c28f408
PA
495
496 /* If we have only looked at the first thread before libpthread was
497 initialized, we may not know its thread ID yet. Make sure we do
498 before we add another thread to the list. */
d90e17a7
PA
499 if (!have_threads (ptid))
500 thread_db_find_new_threads_1 (ptid);
4c28f408 501
d90e17a7 502 err = info->td_ta_map_lwp2thr_p (info->thread_agent, GET_LWP (ptid), &th);
4c28f408
PA
503 if (err != TD_OK)
504 /* Cannot find user-level thread. */
505 return 0;
506
d90e17a7 507 err = info->td_thr_get_info_p (&th, &ti);
4c28f408
PA
508 if (err != TD_OK)
509 {
510 warning (_("Cannot get thread info: %s"), thread_db_err_str (err));
511 return 0;
512 }
513
514 attach_thread (ptid, &th, &ti);
515 return 1;
516}
517
5220ea4c
AC
518static void *
519verbose_dlsym (void *handle, const char *name)
520{
521 void *sym = dlsym (handle, name);
522 if (sym == NULL)
3e43a32a
MS
523 warning (_("Symbol \"%s\" not found in libthread_db: %s"),
524 name, dlerror ());
5220ea4c
AC
525 return sym;
526}
527
cdbc0b18 528static td_err_e
d90e17a7 529enable_thread_event (int event, CORE_ADDR *bp)
24557e30
AC
530{
531 td_notify_t notify;
cdbc0b18 532 td_err_e err;
d90e17a7
PA
533 struct thread_db_info *info;
534
535 info = get_thread_db_info (GET_PID (inferior_ptid));
24557e30 536
4c28f408 537 /* Access an lwp we know is stopped. */
d90e17a7 538 info->proc_handle.ptid = inferior_ptid;
4c28f408 539
24557e30 540 /* Get the breakpoint address for thread EVENT. */
d90e17a7 541 err = info->td_ta_event_addr_p (info->thread_agent, event, &notify);
24557e30 542 if (err != TD_OK)
cdbc0b18 543 return err;
24557e30
AC
544
545 /* Set up the breakpoint. */
16451949
AS
546 gdb_assert (exec_bfd);
547 (*bp) = (gdbarch_convert_from_func_ptr_addr
f5656ead 548 (target_gdbarch (),
16451949
AS
549 /* Do proper sign extension for the target. */
550 (bfd_get_sign_extend_vma (exec_bfd) > 0
551 ? (CORE_ADDR) (intptr_t) notify.u.bptaddr
552 : (CORE_ADDR) (uintptr_t) notify.u.bptaddr),
553 &current_target));
f5656ead 554 create_thread_event_breakpoint (target_gdbarch (), *bp);
24557e30 555
cdbc0b18 556 return TD_OK;
24557e30
AC
557}
558
fcb44371
JK
559/* Verify inferior's '\0'-terminated symbol VER_SYMBOL starts with "%d.%d" and
560 return 1 if this version is lower (and not equal) to
561 VER_MAJOR_MIN.VER_MINOR_MIN. Return 0 in all other cases. */
562
563static int
564inferior_has_bug (const char *ver_symbol, int ver_major_min, int ver_minor_min)
565{
566 struct minimal_symbol *version_msym;
567 CORE_ADDR version_addr;
568 char *version;
569 int err, got, retval = 0;
570
571 version_msym = lookup_minimal_symbol (ver_symbol, NULL, NULL);
572 if (version_msym == NULL)
573 return 0;
574
575 version_addr = SYMBOL_VALUE_ADDRESS (version_msym);
576 got = target_read_string (version_addr, &version, 32, &err);
577 if (err == 0 && memchr (version, 0, got) == &version[got -1])
578 {
579 int major, minor;
580
581 retval = (sscanf (version, "%d.%d", &major, &minor) == 2
582 && (major < ver_major_min
583 || (major == ver_major_min && minor < ver_minor_min)));
584 }
585 xfree (version);
586
587 return retval;
588}
589
fb0e1ba7
MK
590static void
591enable_thread_event_reporting (void)
592{
593 td_thr_events_t events;
fb0e1ba7 594 td_err_e err;
d90e17a7
PA
595 struct thread_db_info *info;
596
597 info = get_thread_db_info (GET_PID (inferior_ptid));
fb0e1ba7
MK
598
599 /* We cannot use the thread event reporting facility if these
600 functions aren't available. */
d90e17a7
PA
601 if (info->td_ta_event_addr_p == NULL
602 || info->td_ta_set_event_p == NULL
603 || info->td_ta_event_getmsg_p == NULL
604 || info->td_thr_event_enable_p == NULL)
fb0e1ba7
MK
605 return;
606
607 /* Set the process wide mask saying which events we're interested in. */
608 td_event_emptyset (&events);
609 td_event_addset (&events, TD_CREATE);
a2f23071 610
8775fd2d
JK
611 /* There is a bug fixed between linuxthreads 2.1.3 and 2.2 by
612 commit 2e4581e4fba917f1779cd0a010a45698586c190a
613 * manager.c (pthread_exited): Correctly report event as TD_REAP
614 instead of TD_DEATH. Fix comments.
615 where event reporting facility is broken for TD_DEATH events,
616 so don't enable it if we have glibc but a lower version. */
617 if (!inferior_has_bug ("__linuxthreads_version", 2, 2))
a2f23071 618 td_event_addset (&events, TD_DEATH);
fb0e1ba7 619
d90e17a7 620 err = info->td_ta_set_event_p (info->thread_agent, &events);
fb0e1ba7
MK
621 if (err != TD_OK)
622 {
8a3fe4f8 623 warning (_("Unable to set global thread event mask: %s"),
fb0e1ba7
MK
624 thread_db_err_str (err));
625 return;
626 }
627
628 /* Delete previous thread event breakpoints, if any. */
629 remove_thread_event_breakpoints ();
d90e17a7
PA
630 info->td_create_bp_addr = 0;
631 info->td_death_bp_addr = 0;
fb0e1ba7 632
24557e30 633 /* Set up the thread creation event. */
d90e17a7 634 err = enable_thread_event (TD_CREATE, &info->td_create_bp_addr);
cdbc0b18 635 if (err != TD_OK)
fb0e1ba7 636 {
8a3fe4f8 637 warning (_("Unable to get location for thread creation breakpoint: %s"),
fb0e1ba7
MK
638 thread_db_err_str (err));
639 return;
640 }
641
24557e30 642 /* Set up the thread death event. */
d90e17a7 643 err = enable_thread_event (TD_DEATH, &info->td_death_bp_addr);
cdbc0b18 644 if (err != TD_OK)
fb0e1ba7 645 {
8a3fe4f8 646 warning (_("Unable to get location for thread death breakpoint: %s"),
fb0e1ba7
MK
647 thread_db_err_str (err));
648 return;
649 }
fb0e1ba7
MK
650}
651
fcb44371
JK
652/* Similar as thread_db_find_new_threads_1, but try to silently ignore errors
653 if appropriate.
456b0e24 654
fcb44371
JK
655 Return 1 if the caller should abort libthread_db initialization. Return 0
656 otherwise. */
657
658static int
456b0e24
PP
659thread_db_find_new_threads_silently (ptid_t ptid)
660{
661 volatile struct gdb_exception except;
662
663 TRY_CATCH (except, RETURN_MASK_ERROR)
664 {
02c6c942 665 thread_db_find_new_threads_2 (ptid, 1);
456b0e24
PP
666 }
667
fcb44371 668 if (except.reason < 0)
e0881a8e 669 {
fcb44371
JK
670 if (libthread_db_debug)
671 exception_fprintf (gdb_stderr, except,
672 "Warning: thread_db_find_new_threads_silently: ");
673
674 /* There is a bug fixed between nptl 2.6.1 and 2.7 by
675 commit 7d9d8bd18906fdd17364f372b160d7ab896ce909
676 where calls to td_thr_get_info fail with TD_ERR for statically linked
677 executables if td_thr_get_info is called before glibc has initialized
678 itself.
679
680 If the nptl bug is NOT present in the inferior and still thread_db
681 reports an error return 1. It means the inferior has corrupted thread
682 list and GDB should fall back only to LWPs.
683
684 If the nptl bug is present in the inferior return 0 to silently ignore
685 such errors, and let gdb enumerate threads again later. In such case
686 GDB cannot properly display LWPs if the inferior thread list is
889003ed
JK
687 corrupted. For core files it does not apply, no 'later enumeration'
688 is possible. */
fcb44371 689
889003ed 690 if (!target_has_execution || !inferior_has_bug ("nptl_version", 2, 7))
fcb44371
JK
691 {
692 exception_fprintf (gdb_stderr, except,
693 _("Warning: couldn't activate thread debugging "
694 "using libthread_db: "));
695 return 1;
696 }
e0881a8e 697 }
fcb44371 698 return 0;
456b0e24
PP
699}
700
d90e17a7
PA
701/* Lookup a library in which given symbol resides.
702 Note: this is looking in GDB process, not in the inferior.
703 Returns library name, or NULL. */
704
705static const char *
706dladdr_to_soname (const void *addr)
707{
708 Dl_info info;
709
710 if (dladdr (addr, &info) != 0)
711 return info.dli_fname;
712 return NULL;
713}
714
2471d008 715/* Attempt to initialize dlopen()ed libthread_db, described by INFO.
17a37d48
PP
716 Return 1 on success.
717 Failure could happen if libthread_db does not have symbols we expect,
718 or when it refuses to work with the current inferior (e.g. due to
719 version mismatch between libthread_db and libpthread). */
720
721static int
d90e17a7 722try_thread_db_load_1 (struct thread_db_info *info)
17a37d48
PP
723{
724 td_err_e err;
725
726 /* Initialize pointers to the dynamic library functions we will use.
727 Essential functions first. */
728
d90e17a7
PA
729 info->td_init_p = verbose_dlsym (info->handle, "td_init");
730 if (info->td_init_p == NULL)
17a37d48
PP
731 return 0;
732
d90e17a7 733 err = info->td_init_p ();
17a37d48
PP
734 if (err != TD_OK)
735 {
3e43a32a
MS
736 warning (_("Cannot initialize libthread_db: %s"),
737 thread_db_err_str (err));
17a37d48
PP
738 return 0;
739 }
740
d90e17a7
PA
741 info->td_ta_new_p = verbose_dlsym (info->handle, "td_ta_new");
742 if (info->td_ta_new_p == NULL)
17a37d48
PP
743 return 0;
744
745 /* Initialize the structure that identifies the child process. */
d90e17a7 746 info->proc_handle.ptid = inferior_ptid;
17a37d48
PP
747
748 /* Now attempt to open a connection to the thread library. */
d90e17a7 749 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
17a37d48
PP
750 if (err != TD_OK)
751 {
02d868e8 752 if (libthread_db_debug)
17a37d48
PP
753 printf_unfiltered (_("td_ta_new failed: %s\n"),
754 thread_db_err_str (err));
755 else
756 switch (err)
757 {
758 case TD_NOLIBTHREAD:
759#ifdef THREAD_DB_HAS_TD_VERSION
760 case TD_VERSION:
761#endif
762 /* The errors above are not unexpected and silently ignored:
763 they just mean we haven't found correct version of
764 libthread_db yet. */
765 break;
766 default:
767 warning (_("td_ta_new failed: %s"), thread_db_err_str (err));
768 }
769 return 0;
770 }
771
d90e17a7
PA
772 info->td_ta_map_id2thr_p = verbose_dlsym (info->handle, "td_ta_map_id2thr");
773 if (info->td_ta_map_id2thr_p == NULL)
17a37d48
PP
774 return 0;
775
3e43a32a
MS
776 info->td_ta_map_lwp2thr_p = verbose_dlsym (info->handle,
777 "td_ta_map_lwp2thr");
d90e17a7 778 if (info->td_ta_map_lwp2thr_p == NULL)
17a37d48
PP
779 return 0;
780
d90e17a7
PA
781 info->td_ta_thr_iter_p = verbose_dlsym (info->handle, "td_ta_thr_iter");
782 if (info->td_ta_thr_iter_p == NULL)
17a37d48
PP
783 return 0;
784
d90e17a7
PA
785 info->td_thr_validate_p = verbose_dlsym (info->handle, "td_thr_validate");
786 if (info->td_thr_validate_p == NULL)
17a37d48
PP
787 return 0;
788
d90e17a7
PA
789 info->td_thr_get_info_p = verbose_dlsym (info->handle, "td_thr_get_info");
790 if (info->td_thr_get_info_p == NULL)
17a37d48
PP
791 return 0;
792
793 /* These are not essential. */
d90e17a7
PA
794 info->td_ta_event_addr_p = dlsym (info->handle, "td_ta_event_addr");
795 info->td_ta_set_event_p = dlsym (info->handle, "td_ta_set_event");
21e1bee4 796 info->td_ta_clear_event_p = dlsym (info->handle, "td_ta_clear_event");
d90e17a7
PA
797 info->td_ta_event_getmsg_p = dlsym (info->handle, "td_ta_event_getmsg");
798 info->td_thr_event_enable_p = dlsym (info->handle, "td_thr_event_enable");
799 info->td_thr_tls_get_addr_p = dlsym (info->handle, "td_thr_tls_get_addr");
17a37d48 800
fcb44371
JK
801 if (thread_db_find_new_threads_silently (inferior_ptid) != 0)
802 {
803 /* Even if libthread_db initializes, if the thread list is
804 corrupted, we'd not manage to list any threads. Better reject this
805 thread_db, and fall back to at least listing LWPs. */
806 return 0;
807 }
808
17a37d48
PP
809 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
810
02d868e8 811 if (libthread_db_debug || *libthread_db_search_path)
d90e17a7
PA
812 {
813 const char *library;
17a37d48 814
d90e17a7
PA
815 library = dladdr_to_soname (*info->td_ta_new_p);
816 if (library == NULL)
817 library = LIBTHREAD_DB_SO;
17a37d48 818
d90e17a7
PA
819 printf_unfiltered (_("Using host libthread_db library \"%s\".\n"),
820 library);
821 }
17a37d48 822
d90e17a7
PA
823 /* The thread library was detected. Activate the thread_db target
824 if this is the first process using it. */
825 if (thread_db_list->next == NULL)
826 push_target (&thread_db_ops);
17a37d48 827
856d6f99
PA
828 /* Enable event reporting, but not when debugging a core file. */
829 if (target_has_execution)
830 enable_thread_event_reporting ();
456b0e24 831
d90e17a7 832 return 1;
17a37d48
PP
833}
834
835/* Attempt to use LIBRARY as libthread_db. LIBRARY could be absolute,
836 relative, or just LIBTHREAD_DB. */
837
838static int
839try_thread_db_load (const char *library)
840{
841 void *handle;
d90e17a7 842 struct thread_db_info *info;
17a37d48 843
02d868e8 844 if (libthread_db_debug)
17a37d48
PP
845 printf_unfiltered (_("Trying host libthread_db library: %s.\n"),
846 library);
847 handle = dlopen (library, RTLD_NOW);
848 if (handle == NULL)
849 {
02d868e8 850 if (libthread_db_debug)
17a37d48
PP
851 printf_unfiltered (_("dlopen failed: %s.\n"), dlerror ());
852 return 0;
853 }
854
02d868e8 855 if (libthread_db_debug && strchr (library, '/') == NULL)
17a37d48
PP
856 {
857 void *td_init;
858
859 td_init = dlsym (handle, "td_init");
860 if (td_init != NULL)
861 {
862 const char *const libpath = dladdr_to_soname (td_init);
863
864 if (libpath != NULL)
865 printf_unfiltered (_("Host %s resolved to: %s.\n"),
866 library, libpath);
867 }
868 }
869
d90e17a7
PA
870 info = add_thread_db_info (handle);
871
bf88dd68
JK
872 /* Do not save system library name, that one is always trusted. */
873 if (strchr (library, '/') != NULL)
874 info->filename = gdb_realpath (library);
875
d90e17a7 876 if (try_thread_db_load_1 (info))
17a37d48
PP
877 return 1;
878
879 /* This library "refused" to work on current inferior. */
d90e17a7 880 delete_thread_db_info (GET_PID (inferior_ptid));
17a37d48
PP
881 return 0;
882}
883
290351b8 884/* Subroutine of try_thread_db_load_from_pdir to simplify it.
e6712ff1
DE
885 Try loading libthread_db in directory(OBJ)/SUBDIR.
886 SUBDIR may be NULL. It may also be something like "../lib64".
290351b8
DE
887 The result is true for success. */
888
889static int
e6712ff1 890try_thread_db_load_from_pdir_1 (struct objfile *obj, const char *subdir)
290351b8 891{
05386e9e
TT
892 struct cleanup *cleanup;
893 char *path, *cp;
894 int result;
4262abfb 895 const char *obj_name = objfile_name (obj);
290351b8 896
4262abfb 897 if (obj_name[0] != '/')
290351b8
DE
898 {
899 warning (_("Expected absolute pathname for libpthread in the"
4262abfb 900 " inferior, but got %s."), obj_name);
290351b8
DE
901 return 0;
902 }
05386e9e 903
4262abfb 904 path = xmalloc (strlen (obj_name) + (subdir ? strlen (subdir) + 1 : 0)
e6712ff1 905 + 1 + strlen (LIBTHREAD_DB_SO) + 1);
05386e9e
TT
906 cleanup = make_cleanup (xfree, path);
907
4262abfb 908 strcpy (path, obj_name);
05386e9e
TT
909 cp = strrchr (path, '/');
910 /* This should at minimum hit the first character. */
911 gdb_assert (cp != NULL);
e6712ff1
DE
912 cp[1] = '\0';
913 if (subdir != NULL)
914 {
915 strcat (cp, subdir);
916 strcat (cp, "/");
917 }
918 strcat (cp, LIBTHREAD_DB_SO);
bccbefd2 919
4dc84fd1
JK
920 if (!file_is_auto_load_safe (path, _("auto-load: Loading libthread-db "
921 "library \"%s\" from $pdir.\n"),
922 path))
bccbefd2
JK
923 result = 0;
924 else
925 result = try_thread_db_load (path);
05386e9e
TT
926
927 do_cleanups (cleanup);
928 return result;
290351b8
DE
929}
930
98a5dd13 931/* Handle $pdir in libthread-db-search-path.
e6712ff1
DE
932 Look for libthread_db in directory(libpthread)/SUBDIR.
933 SUBDIR may be NULL. It may also be something like "../lib64".
98a5dd13
DE
934 The result is true for success. */
935
936static int
e6712ff1 937try_thread_db_load_from_pdir (const char *subdir)
98a5dd13
DE
938{
939 struct objfile *obj;
940
bf88dd68
JK
941 if (!auto_load_thread_db)
942 return 0;
943
98a5dd13 944 ALL_OBJFILES (obj)
4262abfb 945 if (libpthread_name_p (objfile_name (obj)))
98a5dd13 946 {
e6712ff1 947 if (try_thread_db_load_from_pdir_1 (obj, subdir))
290351b8
DE
948 return 1;
949
950 /* We may have found the separate-debug-info version of
951 libpthread, and it may live in a directory without a matching
952 libthread_db. */
953 if (obj->separate_debug_objfile_backlink != NULL)
e6712ff1
DE
954 return try_thread_db_load_from_pdir_1 (obj->separate_debug_objfile_backlink,
955 subdir);
290351b8 956
98a5dd13
DE
957 return 0;
958 }
959
960 return 0;
961}
962
963/* Handle $sdir in libthread-db-search-path.
964 Look for libthread_db in the system dirs, or wherever a plain
965 dlopen(file_without_path) will look.
966 The result is true for success. */
967
968static int
969try_thread_db_load_from_sdir (void)
970{
971 return try_thread_db_load (LIBTHREAD_DB_SO);
972}
973
974/* Try to load libthread_db from directory DIR of length DIR_LEN.
975 The result is true for success. */
976
977static int
978try_thread_db_load_from_dir (const char *dir, size_t dir_len)
979{
05386e9e
TT
980 struct cleanup *cleanup;
981 char *path;
982 int result;
98a5dd13 983
bf88dd68
JK
984 if (!auto_load_thread_db)
985 return 0;
986
05386e9e
TT
987 path = xmalloc (dir_len + 1 + strlen (LIBTHREAD_DB_SO) + 1);
988 cleanup = make_cleanup (xfree, path);
98a5dd13
DE
989
990 memcpy (path, dir, dir_len);
991 path[dir_len] = '/';
992 strcpy (path + dir_len + 1, LIBTHREAD_DB_SO);
bccbefd2 993
4dc84fd1
JK
994 if (!file_is_auto_load_safe (path, _("auto-load: Loading libthread-db "
995 "library \"%s\" from explicit "
996 "directory.\n"),
997 path))
bccbefd2
JK
998 result = 0;
999 else
1000 result = try_thread_db_load (path);
05386e9e
TT
1001
1002 do_cleanups (cleanup);
1003 return result;
98a5dd13
DE
1004}
1005
17a37d48 1006/* Search libthread_db_search_path for libthread_db which "agrees"
98a5dd13
DE
1007 to work on current inferior.
1008 The result is true for success. */
17a37d48
PP
1009
1010static int
1011thread_db_load_search (void)
1012{
e6712ff1
DE
1013 VEC (char_ptr) *dir_vec;
1014 struct cleanup *cleanups;
1015 char *this_dir;
1016 int i, rc = 0;
17a37d48 1017
e6712ff1
DE
1018 dir_vec = dirnames_to_char_ptr_vec (libthread_db_search_path);
1019 cleanups = make_cleanup_free_char_ptr_vec (dir_vec);
1020
1021 for (i = 0; VEC_iterate (char_ptr, dir_vec, i, this_dir); ++i)
17a37d48 1022 {
e6712ff1 1023 const int pdir_len = sizeof ("$pdir") - 1;
98a5dd13 1024 size_t this_dir_len;
e0881a8e 1025
e6712ff1 1026 this_dir_len = strlen (this_dir);
17a37d48 1027
e6712ff1
DE
1028 if (strncmp (this_dir, "$pdir", pdir_len) == 0
1029 && (this_dir[pdir_len] == '\0'
1030 || this_dir[pdir_len] == '/'))
98a5dd13 1031 {
e6712ff1 1032 char *subdir = NULL;
1fc3cf4a
TT
1033 struct cleanup *free_subdir_cleanup
1034 = make_cleanup (null_cleanup, NULL);
e6712ff1
DE
1035
1036 if (this_dir[pdir_len] == '/')
98a5dd13 1037 {
e6712ff1 1038 subdir = xmalloc (strlen (this_dir));
1fc3cf4a 1039 make_cleanup (xfree, subdir);
e6712ff1 1040 strcpy (subdir, this_dir + pdir_len + 1);
98a5dd13 1041 }
e6712ff1 1042 rc = try_thread_db_load_from_pdir (subdir);
1fc3cf4a 1043 do_cleanups (free_subdir_cleanup);
e6712ff1
DE
1044 if (rc)
1045 break;
17a37d48 1046 }
e6712ff1 1047 else if (strcmp (this_dir, "$sdir") == 0)
98a5dd13
DE
1048 {
1049 if (try_thread_db_load_from_sdir ())
1050 {
1051 rc = 1;
1052 break;
1053 }
1054 }
1055 else
17a37d48 1056 {
98a5dd13
DE
1057 if (try_thread_db_load_from_dir (this_dir, this_dir_len))
1058 {
1059 rc = 1;
1060 break;
1061 }
17a37d48
PP
1062 }
1063 }
98a5dd13 1064
e6712ff1 1065 do_cleanups (cleanups);
98a5dd13
DE
1066 if (libthread_db_debug)
1067 printf_unfiltered (_("thread_db_load_search returning %d\n"), rc);
17a37d48
PP
1068 return rc;
1069}
1070
98a5dd13
DE
1071/* Return non-zero if the inferior has a libpthread. */
1072
1073static int
1074has_libpthread (void)
1075{
1076 struct objfile *obj;
1077
1078 ALL_OBJFILES (obj)
4262abfb 1079 if (libpthread_name_p (objfile_name (obj)))
98a5dd13
DE
1080 return 1;
1081
1082 return 0;
1083}
1084
17a37d48 1085/* Attempt to load and initialize libthread_db.
1777feb0 1086 Return 1 on success. */
17a37d48
PP
1087
1088static int
1089thread_db_load (void)
1090{
d90e17a7 1091 struct thread_db_info *info;
17a37d48 1092
d90e17a7
PA
1093 info = get_thread_db_info (GET_PID (inferior_ptid));
1094
1095 if (info != NULL)
17a37d48
PP
1096 return 1;
1097
856d6f99
PA
1098 /* Don't attempt to use thread_db on executables not running
1099 yet. */
1100 if (!target_has_registers)
17a37d48
PP
1101 return 0;
1102
1103 /* Don't attempt to use thread_db for remote targets. */
856d6f99 1104 if (!(target_can_run (&current_target) || core_bfd))
17a37d48
PP
1105 return 0;
1106
1107 if (thread_db_load_search ())
1108 return 1;
1109
98a5dd13
DE
1110 /* We couldn't find a libthread_db.
1111 If the inferior has a libpthread warn the user. */
1112 if (has_libpthread ())
1113 {
1114 warning (_("Unable to find libthread_db matching inferior's thread"
1115 " library, thread debugging will not be available."));
1116 return 0;
17a37d48 1117 }
98a5dd13 1118
17a37d48
PP
1119 /* Either this executable isn't using libpthread at all, or it is
1120 statically linked. Since we can't easily distinguish these two cases,
1121 no warning is issued. */
1122 return 0;
1123}
1124
fb0e1ba7 1125static void
12b6a110 1126disable_thread_event_reporting (struct thread_db_info *info)
fb0e1ba7 1127{
21e1bee4 1128 if (info->td_ta_clear_event_p != NULL)
12b6a110
PP
1129 {
1130 td_thr_events_t events;
fb0e1ba7 1131
12b6a110
PP
1132 /* Set the process wide mask saying we aren't interested in any
1133 events anymore. */
21e1bee4
PP
1134 td_event_fillset (&events);
1135 info->td_ta_clear_event_p (info->thread_agent, &events);
12b6a110 1136 }
fb0e1ba7 1137
d90e17a7
PA
1138 info->td_create_bp_addr = 0;
1139 info->td_death_bp_addr = 0;
fb0e1ba7
MK
1140}
1141
1142static void
1143check_thread_signals (void)
1144{
21bf60fe 1145 if (!thread_signals)
fb0e1ba7
MK
1146 {
1147 sigset_t mask;
1148 int i;
1149
669211f5 1150 lin_thread_get_thread_signals (&mask);
fb0e1ba7
MK
1151 sigemptyset (&thread_stop_set);
1152 sigemptyset (&thread_print_set);
1153
b9569773 1154 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
1155 {
1156 if (sigismember (&mask, i))
1157 {
2ea28649 1158 if (signal_stop_update (gdb_signal_from_host (i), 0))
fb0e1ba7 1159 sigaddset (&thread_stop_set, i);
2ea28649 1160 if (signal_print_update (gdb_signal_from_host (i), 0))
fb0e1ba7
MK
1161 sigaddset (&thread_print_set, i);
1162 thread_signals = 1;
1163 }
1164 }
1165 }
fb0e1ba7
MK
1166}
1167
0ec9a092
DJ
1168/* Check whether thread_db is usable. This function is called when
1169 an inferior is created (or otherwise acquired, e.g. attached to)
1170 and when new shared libraries are loaded into a running process. */
1171
1172void
1173check_for_thread_db (void)
fb0e1ba7 1174{
b5057acd 1175 /* Do nothing if we couldn't load libthread_db.so.1. */
17a37d48 1176 if (!thread_db_load ())
b5057acd 1177 return;
0ec9a092
DJ
1178}
1179
0838fb57
DE
1180/* This function is called via the new_objfile observer. */
1181
0ec9a092
DJ
1182static void
1183thread_db_new_objfile (struct objfile *objfile)
1184{
d90e17a7
PA
1185 /* This observer must always be called with inferior_ptid set
1186 correctly. */
1187
0838fb57 1188 if (objfile != NULL
fcb44371 1189 /* libpthread with separate debug info has its debug info file already
7d0e21ad 1190 loaded (and notified without successful thread_db initialization)
fcb44371
JK
1191 the time observer_notify_new_objfile is called for the library itself.
1192 Static executables have their separate debug info loaded already
1193 before the inferior has started. */
1194 && objfile->separate_debug_objfile_backlink == NULL
0838fb57
DE
1195 /* Only check for thread_db if we loaded libpthread,
1196 or if this is the main symbol file.
1197 We need to check OBJF_MAINLINE to handle the case of debugging
1198 a statically linked executable AND the symbol file is specified AFTER
1199 the exec file is loaded (e.g., gdb -c core ; file foo).
1200 For dynamically linked executables, libpthread can be near the end
1201 of the list of shared libraries to load, and in an app of several
1202 thousand shared libraries, this can otherwise be painful. */
1203 && ((objfile->flags & OBJF_MAINLINE) != 0
4262abfb 1204 || libpthread_name_p (objfile_name (objfile))))
0ec9a092 1205 check_for_thread_db ();
fb0e1ba7
MK
1206}
1207
0838fb57
DE
1208/* This function is called via the inferior_created observer.
1209 This handles the case of debugging statically linked executables. */
1210
1211static void
1212thread_db_inferior_created (struct target_ops *target, int from_tty)
1213{
1214 check_for_thread_db ();
1215}
1216
a2f23071
DJ
1217/* Attach to a new thread. This function is called when we receive a
1218 TD_CREATE event or when we iterate over all threads and find one
02c6c942 1219 that wasn't already in our list. Returns true on success. */
a2f23071 1220
02c6c942 1221static int
39f77062 1222attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
93815fbf 1223 const td_thrinfo_t *ti_p)
fb0e1ba7 1224{
17faa917 1225 struct private_thread_info *private;
2a2ef594 1226 struct thread_info *tp;
fb0e1ba7 1227 td_err_e err;
d90e17a7 1228 struct thread_db_info *info;
fb0e1ba7 1229
a2f23071
DJ
1230 /* If we're being called after a TD_CREATE event, we may already
1231 know about this thread. There are two ways this can happen. We
1232 may have iterated over all threads between the thread creation
1233 and the TD_CREATE event, for instance when the user has issued
1234 the `info threads' command before the SIGTRAP for hitting the
1235 thread creation breakpoint was reported. Alternatively, the
1236 thread may have exited and a new one been created with the same
1237 thread ID. In the first case we don't need to do anything; in
1238 the second case we should discard information about the dead
1239 thread and attach to the new one. */
2a2ef594
PA
1240 tp = find_thread_ptid (ptid);
1241 if (tp != NULL)
a2f23071 1242 {
17faa917
DJ
1243 /* If tp->private is NULL, then GDB is already attached to this
1244 thread, but we do not know anything about it. We can learn
1245 about it here. This can only happen if we have some other
1246 way besides libthread_db to notice new threads (i.e.
1247 PTRACE_EVENT_CLONE); assume the same mechanism notices thread
1248 exit, so this can not be a stale thread recreated with the
1249 same ID. */
1250 if (tp->private != NULL)
1251 {
1252 if (!tp->private->dying)
02c6c942 1253 return 0;
a2f23071 1254
17faa917
DJ
1255 delete_thread (ptid);
1256 tp = NULL;
1257 }
a2f23071
DJ
1258 }
1259
856d6f99
PA
1260 if (target_has_execution)
1261 check_thread_signals ();
fb0e1ba7 1262
9ee57c33 1263 /* Under GNU/Linux, we have to attach to each and every thread. */
856d6f99 1264 if (target_has_execution
84636d28
PA
1265 && tp == NULL)
1266 {
1267 int res;
1268
1269 res = lin_lwp_attach_lwp (BUILD_LWP (ti_p->ti_lid, GET_PID (ptid)));
1270 if (res < 0)
1271 {
1272 /* Error, stop iterating. */
1273 return 0;
1274 }
1275 else if (res > 0)
1276 {
1277 /* Pretend this thread doesn't exist yet, and keep
1278 iterating. */
1279 return 1;
1280 }
1281
1282 /* Otherwise, we sucessfully attached to the thread. */
1283 }
9ee57c33 1284
17faa917
DJ
1285 /* Construct the thread's private data. */
1286 private = xmalloc (sizeof (struct private_thread_info));
1287 memset (private, 0, sizeof (struct private_thread_info));
1288
1289 /* A thread ID of zero may mean the thread library has not initialized
1290 yet. But we shouldn't even get here if that's the case. FIXME:
1291 if we change GDB to always have at least one thread in the thread
1292 list this will have to go somewhere else; maybe private == NULL
1293 until the thread_db target claims it. */
1294 gdb_assert (ti_p->ti_tid != 0);
1295 private->th = *th_p;
1296 private->tid = ti_p->ti_tid;
64776a0b
PA
1297 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
1298 private->dying = 1;
17faa917 1299
fb0e1ba7 1300 /* Add the thread to GDB's thread list. */
17faa917 1301 if (tp == NULL)
2e456570 1302 add_thread_with_info (ptid, private);
17faa917
DJ
1303 else
1304 tp->private = private;
5365276c 1305
d90e17a7
PA
1306 info = get_thread_db_info (GET_PID (ptid));
1307
856d6f99
PA
1308 /* Enable thread event reporting for this thread, except when
1309 debugging a core file. */
1310 if (target_has_execution)
1311 {
1312 err = info->td_thr_event_enable_p (th_p, 1);
1313 if (err != TD_OK)
1314 error (_("Cannot enable thread event reporting for %s: %s"),
1315 target_pid_to_str (ptid), thread_db_err_str (err));
1316 }
1317
02c6c942 1318 return 1;
fb0e1ba7
MK
1319}
1320
1321static void
17faa917 1322detach_thread (ptid_t ptid)
fb0e1ba7 1323{
a2f23071
DJ
1324 struct thread_info *thread_info;
1325
a2f23071
DJ
1326 /* Don't delete the thread now, because it still reports as active
1327 until it has executed a few instructions after the event
1328 breakpoint - if we deleted it now, "info threads" would cause us
1329 to re-attach to it. Just mark it as having had a TD_DEATH
1330 event. This means that we won't delete it from our thread list
1331 until we notice that it's dead (via prune_threads), or until
17faa917
DJ
1332 something re-uses its thread ID. We'll report the thread exit
1333 when the underlying LWP dies. */
e09875d4 1334 thread_info = find_thread_ptid (ptid);
17faa917 1335 gdb_assert (thread_info != NULL && thread_info->private != NULL);
a2f23071 1336 thread_info->private->dying = 1;
fb0e1ba7
MK
1337}
1338
1339static void
136d6dae 1340thread_db_detach (struct target_ops *ops, char *args, int from_tty)
fb0e1ba7 1341{
117de6a9 1342 struct target_ops *target_beneath = find_target_beneath (ops);
d90e17a7 1343 struct thread_db_info *info;
117de6a9 1344
d90e17a7 1345 info = get_thread_db_info (GET_PID (inferior_ptid));
c194fbe1 1346
d90e17a7
PA
1347 if (info)
1348 {
856d6f99
PA
1349 if (target_has_execution)
1350 {
1351 disable_thread_event_reporting (info);
1352
1353 /* Delete the old thread event breakpoints. Note that
1354 unlike when mourning, we can remove them here because
1355 there's still a live inferior to poke at. In any case,
1356 GDB will not try to insert anything in the inferior when
1357 removing a breakpoint. */
1358 remove_thread_event_breakpoints ();
1359 }
d90e17a7
PA
1360
1361 delete_thread_db_info (GET_PID (inferior_ptid));
1362 }
4105de34 1363
7a7d3353 1364 target_beneath->to_detach (target_beneath, args, from_tty);
d90e17a7
PA
1365
1366 /* NOTE: From this point on, inferior_ptid is null_ptid. */
1367
1368 /* If there are no more processes using libpthread, detach the
1369 thread_db target ops. */
1370 if (!thread_db_list)
1371 unpush_target (&thread_db_ops);
fb0e1ba7
MK
1372}
1373
fb0e1ba7
MK
1374/* Check if PID is currently stopped at the location of a thread event
1375 breakpoint location. If it is, read the event message and act upon
1376 the event. */
1377
1378static void
39f77062 1379check_event (ptid_t ptid)
fb0e1ba7 1380{
515630c5
UW
1381 struct regcache *regcache = get_thread_regcache (ptid);
1382 struct gdbarch *gdbarch = get_regcache_arch (regcache);
fb0e1ba7
MK
1383 td_event_msg_t msg;
1384 td_thrinfo_t ti;
1385 td_err_e err;
1386 CORE_ADDR stop_pc;
4d9850d3 1387 int loop = 0;
d90e17a7
PA
1388 struct thread_db_info *info;
1389
1390 info = get_thread_db_info (GET_PID (ptid));
fb0e1ba7
MK
1391
1392 /* Bail out early if we're not at a thread event breakpoint. */
515630c5
UW
1393 stop_pc = regcache_read_pc (regcache)
1394 - gdbarch_decr_pc_after_break (gdbarch);
d90e17a7
PA
1395 if (stop_pc != info->td_create_bp_addr
1396 && stop_pc != info->td_death_bp_addr)
fb0e1ba7
MK
1397 return;
1398
4c28f408 1399 /* Access an lwp we know is stopped. */
d90e17a7 1400 info->proc_handle.ptid = ptid;
4c28f408
PA
1401
1402 /* If we have only looked at the first thread before libpthread was
1403 initialized, we may not know its thread ID yet. Make sure we do
1404 before we add another thread to the list. */
d90e17a7
PA
1405 if (!have_threads (ptid))
1406 thread_db_find_new_threads_1 (ptid);
4c28f408 1407
4d9850d3
JJ
1408 /* If we are at a create breakpoint, we do not know what new lwp
1409 was created and cannot specifically locate the event message for it.
1410 We have to call td_ta_event_getmsg() to get
1411 the latest message. Since we have no way of correlating whether
cdbc0b18 1412 the event message we get back corresponds to our breakpoint, we must
4d9850d3 1413 loop and read all event messages, processing them appropriately.
cdbc0b18
RM
1414 This guarantees we will process the correct message before continuing
1415 from the breakpoint.
4d9850d3
JJ
1416
1417 Currently, death events are not enabled. If they are enabled,
1418 the death event can use the td_thr_event_getmsg() interface to
1419 get the message specifically for that lwp and avoid looping
1420 below. */
1421
1422 loop = 1;
1423
1424 do
fb0e1ba7 1425 {
d90e17a7 1426 err = info->td_ta_event_getmsg_p (info->thread_agent, &msg);
4d9850d3
JJ
1427 if (err != TD_OK)
1428 {
1429 if (err == TD_NOMSG)
1430 return;
fb0e1ba7 1431
8a3fe4f8 1432 error (_("Cannot get thread event message: %s"),
4d9850d3
JJ
1433 thread_db_err_str (err));
1434 }
fb0e1ba7 1435
d90e17a7 1436 err = info->td_thr_get_info_p (msg.th_p, &ti);
4d9850d3 1437 if (err != TD_OK)
8a3fe4f8 1438 error (_("Cannot get thread info: %s"), thread_db_err_str (err));
fb0e1ba7 1439
17faa917 1440 ptid = ptid_build (GET_PID (ptid), ti.ti_lid, 0);
fb0e1ba7 1441
4d9850d3
JJ
1442 switch (msg.event)
1443 {
1444 case TD_CREATE:
a2f23071
DJ
1445 /* Call attach_thread whether or not we already know about a
1446 thread with this thread ID. */
93815fbf 1447 attach_thread (ptid, msg.th_p, &ti);
fb0e1ba7 1448
4d9850d3 1449 break;
fb0e1ba7 1450
4d9850d3 1451 case TD_DEATH:
fb0e1ba7 1452
4d9850d3 1453 if (!in_thread_list (ptid))
8a3fe4f8 1454 error (_("Spurious thread death event."));
fb0e1ba7 1455
17faa917 1456 detach_thread (ptid);
fb0e1ba7 1457
4d9850d3 1458 break;
fb0e1ba7 1459
4d9850d3 1460 default:
8a3fe4f8 1461 error (_("Spurious thread event."));
4d9850d3 1462 }
fb0e1ba7 1463 }
4d9850d3 1464 while (loop);
fb0e1ba7
MK
1465}
1466
39f77062 1467static ptid_t
117de6a9 1468thread_db_wait (struct target_ops *ops,
47608cb1
PA
1469 ptid_t ptid, struct target_waitstatus *ourstatus,
1470 int options)
fb0e1ba7 1471{
d90e17a7 1472 struct thread_db_info *info;
117de6a9
PA
1473 struct target_ops *beneath = find_target_beneath (ops);
1474
47608cb1 1475 ptid = beneath->to_wait (beneath, ptid, ourstatus, options);
fb0e1ba7 1476
b84876c2
PA
1477 if (ourstatus->kind == TARGET_WAITKIND_IGNORE)
1478 return ptid;
1479
1111f4aa 1480 if (ourstatus->kind == TARGET_WAITKIND_EXITED
fb66883a
PA
1481 || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
1482 return ptid;
fb0e1ba7 1483
d90e17a7
PA
1484 info = get_thread_db_info (GET_PID (ptid));
1485
1486 /* If this process isn't using thread_db, we're done. */
1487 if (info == NULL)
1488 return ptid;
1489
3f64f7b1
DJ
1490 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1491 {
d90e17a7
PA
1492 /* New image, it may or may not end up using thread_db. Assume
1493 not unless we find otherwise. */
1494 delete_thread_db_info (GET_PID (ptid));
1495 if (!thread_db_list)
1496 unpush_target (&thread_db_ops);
3f64f7b1 1497
6c95b8df
PA
1498 /* Thread event breakpoints are deleted by
1499 update_breakpoints_after_exec. */
1500
49fd4a42 1501 return ptid;
3f64f7b1
DJ
1502 }
1503
4105de34
DJ
1504 /* If we do not know about the main thread yet, this would be a good time to
1505 find it. */
d90e17a7
PA
1506 if (ourstatus->kind == TARGET_WAITKIND_STOPPED && !have_threads (ptid))
1507 thread_db_find_new_threads_1 (ptid);
4105de34 1508
fb0e1ba7 1509 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
a493e3e2 1510 && ourstatus->value.sig == GDB_SIGNAL_TRAP)
fb0e1ba7 1511 /* Check for a thread event. */
39f77062 1512 check_event (ptid);
fb0e1ba7 1513
d90e17a7 1514 if (have_threads (ptid))
4105de34 1515 {
64776a0b
PA
1516 /* Fill in the thread's user-level thread id. */
1517 thread_from_lwp (ptid);
4105de34 1518 }
fb0e1ba7 1519
b9b5d7ea 1520 return ptid;
fb0e1ba7
MK
1521}
1522
fb0e1ba7 1523static void
136d6dae 1524thread_db_mourn_inferior (struct target_ops *ops)
fb0e1ba7 1525{
117de6a9
PA
1526 struct target_ops *target_beneath = find_target_beneath (ops);
1527
d90e17a7 1528 delete_thread_db_info (GET_PID (inferior_ptid));
fb0e1ba7 1529
d90e17a7
PA
1530 target_beneath->to_mourn_inferior (target_beneath);
1531
6c95b8df
PA
1532 /* Delete the old thread event breakpoints. Do this after mourning
1533 the inferior, so that we don't try to uninsert them. */
1534 remove_thread_event_breakpoints ();
1535
b26a6851 1536 /* Detach thread_db target ops. */
d90e17a7
PA
1537 if (!thread_db_list)
1538 unpush_target (ops);
fb0e1ba7
MK
1539}
1540
02c6c942
PP
1541struct callback_data
1542{
1543 struct thread_db_info *info;
1544 int new_threads;
1545};
1546
fb0e1ba7
MK
1547static int
1548find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1549{
1550 td_thrinfo_t ti;
1551 td_err_e err;
39f77062 1552 ptid_t ptid;
403fe197 1553 struct thread_info *tp;
02c6c942
PP
1554 struct callback_data *cb_data = data;
1555 struct thread_db_info *info = cb_data->info;
fb0e1ba7 1556
d90e17a7 1557 err = info->td_thr_get_info_p (th_p, &ti);
fb0e1ba7 1558 if (err != TD_OK)
8a3fe4f8 1559 error (_("find_new_threads_callback: cannot get thread info: %s"),
3197744f 1560 thread_db_err_str (err));
fb0e1ba7 1561
254f582e 1562 if (ti.ti_tid == 0)
4105de34
DJ
1563 {
1564 /* A thread ID of zero means that this is the main thread, but
1565 glibc has not yet initialized thread-local storage and the
1566 pthread library. We do not know what the thread's TID will
1567 be yet. Just enable event reporting and otherwise ignore
1568 it. */
1569
4d062f1a
PA
1570 /* In that case, we're not stopped in a fork syscall and don't
1571 need this glibc bug workaround. */
1572 info->need_stale_parent_threads_check = 0;
1573
254f582e
JK
1574 if (target_has_execution)
1575 {
1576 err = info->td_thr_event_enable_p (th_p, 1);
1577 if (err != TD_OK)
1578 error (_("Cannot enable thread event reporting for LWP %d: %s"),
1579 (int) ti.ti_lid, thread_db_err_str (err));
1580 }
4105de34
DJ
1581
1582 return 0;
1583 }
1584
4d062f1a
PA
1585 /* Ignore stale parent threads, caused by glibc/BZ5983. This is a
1586 bit expensive, as it needs to open /proc/pid/status, so try to
1587 avoid doing the work if we know we don't have to. */
1588 if (info->need_stale_parent_threads_check)
1589 {
1590 int tgid = linux_proc_get_tgid (ti.ti_lid);
e0881a8e 1591
4d062f1a
PA
1592 if (tgid != -1 && tgid != info->pid)
1593 return 0;
1594 }
1595
1596 ptid = ptid_build (info->pid, ti.ti_lid, 0);
e09875d4 1597 tp = find_thread_ptid (ptid);
403fe197 1598 if (tp == NULL || tp->private == NULL)
02c6c942
PP
1599 {
1600 if (attach_thread (ptid, th_p, &ti))
1601 cb_data->new_threads += 1;
1602 else
1603 /* Problem attaching this thread; perhaps it exited before we
1604 could attach it?
1605 This could mean that the thread list inside glibc itself is in
1606 inconsistent state, and libthread_db could go on looping forever
1607 (observed with glibc-2.3.6). To prevent that, terminate
1608 iteration: thread_db_find_new_threads_2 will retry. */
1609 return 1;
1610 }
fb0e1ba7
MK
1611
1612 return 0;
1613}
1614
02c6c942
PP
1615/* Helper for thread_db_find_new_threads_2.
1616 Returns number of new threads found. */
1617
1618static int
1619find_new_threads_once (struct thread_db_info *info, int iteration,
fb169834 1620 td_err_e *errp)
02c6c942
PP
1621{
1622 volatile struct gdb_exception except;
1623 struct callback_data data;
fb169834 1624 td_err_e err = TD_ERR;
02c6c942
PP
1625
1626 data.info = info;
1627 data.new_threads = 0;
1628
1629 TRY_CATCH (except, RETURN_MASK_ERROR)
1630 {
1631 /* Iterate over all user-space threads to discover new threads. */
1632 err = info->td_ta_thr_iter_p (info->thread_agent,
1633 find_new_threads_callback,
1634 &data,
1635 TD_THR_ANY_STATE,
1636 TD_THR_LOWEST_PRIORITY,
1637 TD_SIGNO_MASK,
1638 TD_THR_ANY_USER_FLAGS);
1639 }
1640
02d868e8 1641 if (libthread_db_debug)
02c6c942
PP
1642 {
1643 if (except.reason < 0)
1644 exception_fprintf (gdb_stderr, except,
1645 "Warning: find_new_threads_once: ");
1646
1647 printf_filtered (_("Found %d new threads in iteration %d.\n"),
1648 data.new_threads, iteration);
1649 }
1650
1651 if (errp != NULL)
1652 *errp = err;
1653
1654 return data.new_threads;
1655}
1656
4c28f408 1657/* Search for new threads, accessing memory through stopped thread
02c6c942
PP
1658 PTID. If UNTIL_NO_NEW is true, repeat searching until several
1659 searches in a row do not discover any new threads. */
4c28f408 1660
fb0e1ba7 1661static void
02c6c942 1662thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new)
fb0e1ba7 1663{
fcb44371 1664 td_err_e err = TD_OK;
d90e17a7 1665 struct thread_db_info *info;
02c6c942 1666 int i, loop;
4c28f408 1667
d90e17a7
PA
1668 info = get_thread_db_info (GET_PID (ptid));
1669
4c28f408 1670 /* Access an lwp we know is stopped. */
d90e17a7 1671 info->proc_handle.ptid = ptid;
02c6c942
PP
1672
1673 if (until_no_new)
1674 {
1675 /* Require 4 successive iterations which do not find any new threads.
1676 The 4 is a heuristic: there is an inherent race here, and I have
1677 seen that 2 iterations in a row are not always sufficient to
1678 "capture" all threads. */
fcb44371
JK
1679 for (i = 0, loop = 0; loop < 4 && err == TD_OK; ++i, ++loop)
1680 if (find_new_threads_once (info, i, &err) != 0)
1681 {
1682 /* Found some new threads. Restart the loop from beginning. */
1683 loop = -1;
1684 }
02c6c942
PP
1685 }
1686 else
fcb44371
JK
1687 find_new_threads_once (info, 0, &err);
1688
1689 if (err != TD_OK)
1690 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
fb0e1ba7
MK
1691}
1692
02c6c942
PP
1693static void
1694thread_db_find_new_threads_1 (ptid_t ptid)
1695{
1696 thread_db_find_new_threads_2 (ptid, 0);
1697}
1698
dc146f7c
VP
1699static int
1700update_thread_core (struct lwp_info *info, void *closure)
1701{
2e794194 1702 info->core = linux_common_core_of_thread (info->ptid);
dc146f7c
VP
1703 return 0;
1704}
02c6c942 1705
28439f5e
PA
1706static void
1707thread_db_find_new_threads (struct target_ops *ops)
1708{
d90e17a7 1709 struct thread_db_info *info;
c65b3e0d 1710 struct inferior *inf;
d90e17a7 1711
c65b3e0d
PA
1712 ALL_INFERIORS (inf)
1713 {
1714 struct thread_info *thread;
d90e17a7 1715
c65b3e0d
PA
1716 if (inf->pid == 0)
1717 continue;
d90e17a7 1718
c65b3e0d
PA
1719 info = get_thread_db_info (inf->pid);
1720 if (info == NULL)
1721 continue;
1722
1723 thread = any_live_thread_of_process (inf->pid);
1724 if (thread == NULL || thread->executing)
1725 continue;
1726
1727 thread_db_find_new_threads_1 (thread->ptid);
1728 }
dc146f7c 1729
856d6f99
PA
1730 if (target_has_execution)
1731 iterate_over_lwps (minus_one_ptid /* iterate over all */,
1732 update_thread_core, NULL);
28439f5e
PA
1733}
1734
fb0e1ba7 1735static char *
117de6a9 1736thread_db_pid_to_str (struct target_ops *ops, ptid_t ptid)
fb0e1ba7 1737{
e09875d4 1738 struct thread_info *thread_info = find_thread_ptid (ptid);
117de6a9 1739 struct target_ops *beneath;
17faa917
DJ
1740
1741 if (thread_info != NULL && thread_info->private != NULL)
fb0e1ba7
MK
1742 {
1743 static char buf[64];
17faa917 1744 thread_t tid;
fb0e1ba7 1745
17faa917 1746 tid = thread_info->private->tid;
17faa917
DJ
1747 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
1748 tid, GET_LWP (ptid));
fb0e1ba7
MK
1749
1750 return buf;
1751 }
1752
117de6a9
PA
1753 beneath = find_target_beneath (ops);
1754 if (beneath->to_pid_to_str (beneath, ptid))
1755 return beneath->to_pid_to_str (beneath, ptid);
fb0e1ba7 1756
39f77062 1757 return normal_pid_to_str (ptid);
fb0e1ba7
MK
1758}
1759
28b17333
DJ
1760/* Return a string describing the state of the thread specified by
1761 INFO. */
1762
1763static char *
1764thread_db_extra_thread_info (struct thread_info *info)
1765{
17faa917
DJ
1766 if (info->private == NULL)
1767 return NULL;
1768
28b17333
DJ
1769 if (info->private->dying)
1770 return "Exiting";
1771
1772 return NULL;
1773}
1774
b2756930
KB
1775/* Get the address of the thread local variable in load module LM which
1776 is stored at OFFSET within the thread local storage for thread PTID. */
3f47be5c
EZ
1777
1778static CORE_ADDR
117de6a9
PA
1779thread_db_get_thread_local_address (struct target_ops *ops,
1780 ptid_t ptid,
b2756930 1781 CORE_ADDR lm,
b4acd559 1782 CORE_ADDR offset)
3f47be5c 1783{
17faa917 1784 struct thread_info *thread_info;
117de6a9 1785 struct target_ops *beneath;
17faa917 1786
4105de34 1787 /* If we have not discovered any threads yet, check now. */
d90e17a7
PA
1788 if (!have_threads (ptid))
1789 thread_db_find_new_threads_1 (ptid);
4105de34 1790
17faa917 1791 /* Find the matching thread. */
e09875d4 1792 thread_info = find_thread_ptid (ptid);
4105de34 1793
17faa917 1794 if (thread_info != NULL && thread_info->private != NULL)
3f47be5c 1795 {
3f47be5c 1796 td_err_e err;
00f515da 1797 psaddr_t address;
d90e17a7
PA
1798 struct thread_db_info *info;
1799
1800 info = get_thread_db_info (GET_PID (ptid));
3f47be5c
EZ
1801
1802 /* glibc doesn't provide the needed interface. */
d90e17a7 1803 if (!info->td_thr_tls_get_addr_p)
109c3e39
AC
1804 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1805 _("No TLS library support"));
3f47be5c 1806
b2756930
KB
1807 /* Caller should have verified that lm != 0. */
1808 gdb_assert (lm != 0);
3f47be5c 1809
3f47be5c 1810 /* Finally, get the address of the variable. */
00f515da
DE
1811 /* Note the cast through uintptr_t: this interface only works if
1812 a target address fits in a psaddr_t, which is a host pointer.
1813 So a 32-bit debugger can not access 64-bit TLS through this. */
d90e17a7 1814 err = info->td_thr_tls_get_addr_p (&thread_info->private->th,
00f515da 1815 (psaddr_t)(uintptr_t) lm,
d90e17a7 1816 offset, &address);
3f47be5c
EZ
1817
1818#ifdef THREAD_DB_HAS_TD_NOTALLOC
1819 /* The memory hasn't been allocated, yet. */
1820 if (err == TD_NOTALLOC)
b4acd559
JJ
1821 /* Now, if libthread_db provided the initialization image's
1822 address, we *could* try to build a non-lvalue value from
1823 the initialization image. */
109c3e39
AC
1824 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1825 _("TLS not allocated yet"));
3f47be5c
EZ
1826#endif
1827
1828 /* Something else went wrong. */
1829 if (err != TD_OK)
109c3e39
AC
1830 throw_error (TLS_GENERIC_ERROR,
1831 (("%s")), thread_db_err_str (err));
3f47be5c
EZ
1832
1833 /* Cast assuming host == target. Joy. */
16451949
AS
1834 /* Do proper sign extension for the target. */
1835 gdb_assert (exec_bfd);
1836 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1837 ? (CORE_ADDR) (intptr_t) address
1838 : (CORE_ADDR) (uintptr_t) address);
3f47be5c
EZ
1839 }
1840
117de6a9
PA
1841 beneath = find_target_beneath (ops);
1842 if (beneath->to_get_thread_local_address)
1843 return beneath->to_get_thread_local_address (beneath, ptid, lm, offset);
93ad78a7 1844 else
109c3e39
AC
1845 throw_error (TLS_GENERIC_ERROR,
1846 _("TLS not supported on this target"));
3f47be5c
EZ
1847}
1848
0ef643c8
JB
1849/* Callback routine used to find a thread based on the TID part of
1850 its PTID. */
1851
1852static int
1853thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
1854{
1855 long *tid = (long *) data;
1856
1857 if (thread->private->tid == *tid)
1858 return 1;
1859
1860 return 0;
1861}
1862
1863/* Implement the to_get_ada_task_ptid target method for this target. */
1864
1865static ptid_t
1866thread_db_get_ada_task_ptid (long lwp, long thread)
1867{
1868 struct thread_info *thread_info;
1869
d90e17a7 1870 thread_db_find_new_threads_1 (inferior_ptid);
0ef643c8
JB
1871 thread_info = iterate_over_threads (thread_db_find_thread_from_tid, &thread);
1872
1873 gdb_assert (thread_info != NULL);
1874
1875 return (thread_info->ptid);
1876}
1877
4d062f1a
PA
1878static void
1879thread_db_resume (struct target_ops *ops,
2ea28649 1880 ptid_t ptid, int step, enum gdb_signal signo)
4d062f1a
PA
1881{
1882 struct target_ops *beneath = find_target_beneath (ops);
1883 struct thread_db_info *info;
1884
1885 if (ptid_equal (ptid, minus_one_ptid))
1886 info = get_thread_db_info (GET_PID (inferior_ptid));
1887 else
1888 info = get_thread_db_info (GET_PID (ptid));
1889
1890 /* This workaround is only needed for child fork lwps stopped in a
1891 PTRACE_O_TRACEFORK event. When the inferior is resumed, the
1892 workaround can be disabled. */
1893 if (info)
1894 info->need_stale_parent_threads_check = 0;
1895
1896 beneath->to_resume (beneath, ptid, step, signo);
1897}
1898
bf88dd68
JK
1899/* qsort helper function for info_auto_load_libthread_db, sort the
1900 thread_db_info pointers primarily by their FILENAME and secondarily by their
1901 PID, both in ascending order. */
1902
1903static int
1904info_auto_load_libthread_db_compare (const void *ap, const void *bp)
1905{
1906 struct thread_db_info *a = *(struct thread_db_info **) ap;
1907 struct thread_db_info *b = *(struct thread_db_info **) bp;
1908 int retval;
1909
1910 retval = strcmp (a->filename, b->filename);
1911 if (retval)
1912 return retval;
1913
1914 return (a->pid > b->pid) - (a->pid - b->pid);
1915}
1916
1917/* Implement 'info auto-load libthread-db'. */
1918
1919static void
1920info_auto_load_libthread_db (char *args, int from_tty)
1921{
1922 struct ui_out *uiout = current_uiout;
1923 const char *cs = args ? args : "";
1924 struct thread_db_info *info, **array;
1925 unsigned info_count, unique_filenames;
1926 size_t max_filename_len, max_pids_len, pids_len;
1927 struct cleanup *back_to;
1928 char *pids;
1929 int i;
1930
529480d0 1931 cs = skip_spaces_const (cs);
bf88dd68
JK
1932 if (*cs)
1933 error (_("'info auto-load libthread-db' does not accept any parameters"));
1934
1935 info_count = 0;
1936 for (info = thread_db_list; info; info = info->next)
1937 if (info->filename != NULL)
1938 info_count++;
1939
1940 array = xmalloc (sizeof (*array) * info_count);
1941 back_to = make_cleanup (xfree, array);
1942
1943 info_count = 0;
1944 for (info = thread_db_list; info; info = info->next)
1945 if (info->filename != NULL)
1946 array[info_count++] = info;
1947
1948 /* Sort ARRAY by filenames and PIDs. */
1949
1950 qsort (array, info_count, sizeof (*array),
1951 info_auto_load_libthread_db_compare);
1952
1953 /* Calculate the number of unique filenames (rows) and the maximum string
1954 length of PIDs list for the unique filenames (columns). */
1955
1956 unique_filenames = 0;
1957 max_filename_len = 0;
1958 max_pids_len = 0;
1959 pids_len = 0;
1960 for (i = 0; i < info_count; i++)
1961 {
1962 int pid = array[i]->pid;
1963 size_t this_pid_len;
1964
1965 for (this_pid_len = 0; pid != 0; pid /= 10)
1966 this_pid_len++;
1967
1968 if (i == 0 || strcmp (array[i - 1]->filename, array[i]->filename) != 0)
1969 {
1970 unique_filenames++;
1971 max_filename_len = max (max_filename_len,
1972 strlen (array[i]->filename));
1973
1974 if (i > 0)
1975 {
1976 pids_len -= strlen (", ");
1977 max_pids_len = max (max_pids_len, pids_len);
1978 }
1979 pids_len = 0;
1980 }
1981 pids_len += this_pid_len + strlen (", ");
1982 }
1983 if (i)
1984 {
1985 pids_len -= strlen (", ");
1986 max_pids_len = max (max_pids_len, pids_len);
1987 }
1988
1989 /* Table header shifted right by preceding "libthread-db: " would not match
1990 its columns. */
1991 if (info_count > 0 && args == auto_load_info_scripts_pattern_nl)
1992 ui_out_text (uiout, "\n");
1993
1994 make_cleanup_ui_out_table_begin_end (uiout, 2, unique_filenames,
1995 "LinuxThreadDbTable");
1996
1997 ui_out_table_header (uiout, max_filename_len, ui_left, "filename",
1998 "Filename");
1999 ui_out_table_header (uiout, pids_len, ui_left, "PIDs", "Pids");
2000 ui_out_table_body (uiout);
2001
2002 pids = xmalloc (max_pids_len + 1);
2003 make_cleanup (xfree, pids);
2004
2005 /* Note I is incremented inside the cycle, not at its end. */
2006 for (i = 0; i < info_count;)
2007 {
2008 struct cleanup *chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
2009 char *pids_end;
2010
2011 info = array[i];
2012 ui_out_field_string (uiout, "filename", info->filename);
2013 pids_end = pids;
2014
2015 while (i < info_count && strcmp (info->filename, array[i]->filename) == 0)
2016 {
2017 if (pids_end != pids)
2018 {
2019 *pids_end++ = ',';
2020 *pids_end++ = ' ';
2021 }
2022 pids_end += xsnprintf (pids_end, &pids[max_pids_len + 1] - pids_end,
2023 "%u", array[i]->pid);
2024 gdb_assert (pids_end < &pids[max_pids_len + 1]);
2025
2026 i++;
2027 }
2028 *pids_end = '\0';
2029
2030 ui_out_field_string (uiout, "pids", pids);
2031
2032 ui_out_text (uiout, "\n");
2033 do_cleanups (chain);
2034 }
2035
2036 do_cleanups (back_to);
2037
2038 if (info_count == 0)
2039 ui_out_message (uiout, 0, _("No auto-loaded libthread-db.\n"));
2040}
2041
fb0e1ba7
MK
2042static void
2043init_thread_db_ops (void)
2044{
2045 thread_db_ops.to_shortname = "multi-thread";
2046 thread_db_ops.to_longname = "multi-threaded child process.";
2047 thread_db_ops.to_doc = "Threads and pthreads support.";
2048 thread_db_ops.to_detach = thread_db_detach;
fb0e1ba7 2049 thread_db_ops.to_wait = thread_db_wait;
4d062f1a 2050 thread_db_ops.to_resume = thread_db_resume;
fb0e1ba7 2051 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
fb0e1ba7
MK
2052 thread_db_ops.to_find_new_threads = thread_db_find_new_threads;
2053 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
2054 thread_db_ops.to_stratum = thread_stratum;
2055 thread_db_ops.to_has_thread_control = tc_schedlock;
3f47be5c
EZ
2056 thread_db_ops.to_get_thread_local_address
2057 = thread_db_get_thread_local_address;
28b17333 2058 thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
0ef643c8 2059 thread_db_ops.to_get_ada_task_ptid = thread_db_get_ada_task_ptid;
fb0e1ba7 2060 thread_db_ops.to_magic = OPS_MAGIC;
c22a2b88
TT
2061
2062 complete_target_initialization (&thread_db_ops);
fb0e1ba7
MK
2063}
2064
2c0b251b
PA
2065/* Provide a prototype to silence -Wmissing-prototypes. */
2066extern initialize_file_ftype _initialize_thread_db;
2067
fb0e1ba7
MK
2068void
2069_initialize_thread_db (void)
2070{
17a37d48 2071 init_thread_db_ops ();
17a37d48
PP
2072
2073 /* Defer loading of libthread_db.so until inferior is running.
2074 This allows gdb to load correct libthread_db for a given
2075 executable -- there could be mutiple versions of glibc,
2076 compiled with LinuxThreads or NPTL, and until there is
2077 a running inferior, we can't tell which libthread_db is
1777feb0 2078 the correct one to load. */
17a37d48
PP
2079
2080 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
2081
2082 add_setshow_optional_filename_cmd ("libthread-db-search-path",
2083 class_support,
2084 &libthread_db_search_path, _("\
2085Set search path for libthread_db."), _("\
2086Show the current search path or libthread_db."), _("\
2087This path is used to search for libthread_db to be loaded into \
84e578fb
DE
2088gdb itself.\n\
2089Its value is a colon (':') separate list of directories to search.\n\
2090Setting the search path to an empty list resets it to its default value."),
2091 set_libthread_db_search_path,
17a37d48
PP
2092 NULL,
2093 &setlist, &showlist);
02d868e8 2094
ccce17b0
YQ
2095 add_setshow_zuinteger_cmd ("libthread-db", class_maintenance,
2096 &libthread_db_debug, _("\
02d868e8
PP
2097Set libthread-db debugging."), _("\
2098Show libthread-db debugging."), _("\
2099When non-zero, libthread-db debugging is enabled."),
ccce17b0
YQ
2100 NULL,
2101 show_libthread_db_debug,
2102 &setdebuglist, &showdebuglist);
02d868e8 2103
bf88dd68
JK
2104 add_setshow_boolean_cmd ("libthread-db", class_support,
2105 &auto_load_thread_db, _("\
2106Enable or disable auto-loading of inferior specific libthread_db."), _("\
2107Show whether auto-loading inferior specific libthread_db is enabled."), _("\
2108If enabled, libthread_db will be searched in 'set libthread-db-search-path'\n\
2109locations to load libthread_db compatible with the inferior.\n\
2110Standard system libthread_db still gets loaded even with this option off.\n\
2111This options has security implications for untrusted inferiors."),
2112 NULL, show_auto_load_thread_db,
2113 auto_load_set_cmdlist_get (),
2114 auto_load_show_cmdlist_get ());
2115
2116 add_cmd ("libthread-db", class_info, info_auto_load_libthread_db,
2117 _("Print the list of loaded inferior specific libthread_db.\n\
2118Usage: info auto-load libthread-db"),
2119 auto_load_info_cmdlist_get ());
2120
17a37d48
PP
2121 /* Add ourselves to objfile event chain. */
2122 observer_attach_new_objfile (thread_db_new_objfile);
0838fb57
DE
2123
2124 /* Add ourselves to inferior_created event chain.
2125 This is needed to handle debugging statically linked programs where
2126 the new_objfile observer won't get called for libpthread. */
2127 observer_attach_inferior_created (thread_db_inferior_created);
fb0e1ba7 2128}
This page took 1.393862 seconds and 4 git commands to generate.