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