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