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