Tests for validate symbol file using build-id.
[gdb/archer.git] / gdb / linux-thread-db.c
bloba698c659fc93387deb816c6ba54f96590785b363
1 /* libthread_db assisted debugging support, generic parts.
3 Copyright (C) 1999-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "defs.h"
22 #include "gdb_assert.h"
23 #include <dlfcn.h>
24 #include "gdb_proc_service.h"
25 #include "gdb_thread_db.h"
26 #include "gdb_vecs.h"
27 #include "bfd.h"
28 #include "command.h"
29 #include "exceptions.h"
30 #include "gdbcmd.h"
31 #include "gdbthread.h"
32 #include "inferior.h"
33 #include "symfile.h"
34 #include "objfiles.h"
35 #include "target.h"
36 #include "regcache.h"
37 #include "solib.h"
38 #include "solib-svr4.h"
39 #include "gdbcore.h"
40 #include "observer.h"
41 #include "linux-nat.h"
42 #include "linux-procfs.h"
43 #include "linux-osdata.h"
44 #include "auto-load.h"
45 #include "cli/cli-utils.h"
47 #include <signal.h>
48 #include <ctype.h>
50 /* GNU/Linux libthread_db support.
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.
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).
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).
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. */
76 static char *libthread_db_search_path;
78 /* Set to non-zero if thread_db auto-loading is enabled
79 by the "set auto-load libthread-db" command. */
80 static int auto_load_thread_db = 1;
82 /* "show" command for the auto_load_thread_db configuration variable. */
84 static void
85 show_auto_load_thread_db (struct ui_file *file, int from_tty,
86 struct cmd_list_element *c, const char *value)
88 fprintf_filtered (file, _("Auto-loading of inferior specific libthread_db "
89 "is %s.\n"),
90 value);
93 static void
94 set_libthread_db_search_path (char *ignored, int from_tty,
95 struct cmd_list_element *c)
97 if (*libthread_db_search_path == '\0')
99 xfree (libthread_db_search_path);
100 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
104 /* If non-zero, print details of libthread_db processing. */
106 static unsigned int libthread_db_debug;
108 static void
109 show_libthread_db_debug (struct ui_file *file, int from_tty,
110 struct cmd_list_element *c, const char *value)
112 fprintf_filtered (file, _("libthread-db debugging is %s.\n"), value);
115 /* If we're running on GNU/Linux, we must explicitly attach to any new
116 threads. */
118 /* This module's target vector. */
119 static struct target_ops thread_db_ops;
121 /* Non-zero if we have determined the signals used by the threads
122 library. */
123 static int thread_signals;
124 static sigset_t thread_stop_set;
125 static sigset_t thread_print_set;
127 struct thread_db_info
129 struct thread_db_info *next;
131 /* Process id this object refers to. */
132 int pid;
134 /* Handle from dlopen for libthread_db.so. */
135 void *handle;
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;
141 /* Structure that identifies the child process for the
142 <proc_service.h> interface. */
143 struct ps_prochandle proc_handle;
145 /* Connection to the libthread_db library. */
146 td_thragent_t *thread_agent;
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;
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;
163 /* Location of the thread death event breakpoint. */
164 CORE_ADDR td_death_bp_addr;
166 /* Pointers to the libthread_db functions. */
168 td_err_e (*td_init_p) (void);
170 td_err_e (*td_ta_new_p) (struct ps_prochandle * ps,
171 td_thragent_t **ta);
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);
185 td_err_e (*td_ta_clear_event_p) (const td_thragent_t *ta,
186 td_thr_events_t *event);
187 td_err_e (*td_ta_event_getmsg_p) (const td_thragent_t *ta,
188 td_event_msg_t *msg);
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);
196 td_err_e (*td_thr_tls_get_addr_p) (const td_thrhandle_t *th,
197 psaddr_t map_address,
198 size_t offset, psaddr_t *address);
201 /* List of known processes using thread_db, and the required
202 bookkeeping. */
203 struct thread_db_info *thread_db_list;
205 static void thread_db_find_new_threads_1 (ptid_t ptid);
206 static void thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new);
208 /* Add the current inferior to the list of processes using libpthread.
209 Return a pointer to the newly allocated object that was added to
210 THREAD_DB_LIST. HANDLE is the handle returned by dlopen'ing
211 LIBTHREAD_DB_SO. */
213 static struct thread_db_info *
214 add_thread_db_info (void *handle)
216 struct thread_db_info *info;
218 info = xcalloc (1, sizeof (*info));
219 info->pid = ptid_get_pid (inferior_ptid);
220 info->handle = handle;
222 /* The workaround works by reading from /proc/pid/status, so it is
223 disabled for core files. */
224 if (target_has_execution)
225 info->need_stale_parent_threads_check = 1;
227 info->next = thread_db_list;
228 thread_db_list = info;
230 return info;
233 /* Return the thread_db_info object representing the bookkeeping
234 related to process PID, if any; NULL otherwise. */
236 static struct thread_db_info *
237 get_thread_db_info (int pid)
239 struct thread_db_info *info;
241 for (info = thread_db_list; info; info = info->next)
242 if (pid == info->pid)
243 return info;
245 return NULL;
248 /* When PID has exited or has been detached, we no longer want to keep
249 track of it as using libpthread. Call this function to discard
250 thread_db related info related to PID. Note that this closes
251 LIBTHREAD_DB_SO's dlopen'ed handle. */
253 static void
254 delete_thread_db_info (int pid)
256 struct thread_db_info *info, *info_prev;
258 info_prev = NULL;
260 for (info = thread_db_list; info; info_prev = info, info = info->next)
261 if (pid == info->pid)
262 break;
264 if (info == NULL)
265 return;
267 if (info->handle != NULL)
268 dlclose (info->handle);
270 xfree (info->filename);
272 if (info_prev)
273 info_prev->next = info->next;
274 else
275 thread_db_list = info->next;
277 xfree (info);
280 /* Prototypes for local functions. */
281 static int attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
282 const td_thrinfo_t *ti_p);
283 static void detach_thread (ptid_t ptid);
286 /* Use "struct private_thread_info" to cache thread state. This is
287 a substantial optimization. */
289 struct private_thread_info
291 /* Flag set when we see a TD_DEATH event for this thread. */
292 unsigned int dying:1;
294 /* Cached thread state. */
295 td_thrhandle_t th;
296 thread_t tid;
300 static char *
301 thread_db_err_str (td_err_e err)
303 static char buf[64];
305 switch (err)
307 case TD_OK:
308 return "generic 'call succeeded'";
309 case TD_ERR:
310 return "generic error";
311 case TD_NOTHR:
312 return "no thread to satisfy query";
313 case TD_NOSV:
314 return "no sync handle to satisfy query";
315 case TD_NOLWP:
316 return "no LWP to satisfy query";
317 case TD_BADPH:
318 return "invalid process handle";
319 case TD_BADTH:
320 return "invalid thread handle";
321 case TD_BADSH:
322 return "invalid synchronization handle";
323 case TD_BADTA:
324 return "invalid thread agent";
325 case TD_BADKEY:
326 return "invalid key";
327 case TD_NOMSG:
328 return "no event message for getmsg";
329 case TD_NOFPREGS:
330 return "FPU register set not available";
331 case TD_NOLIBTHREAD:
332 return "application not linked with libthread";
333 case TD_NOEVENT:
334 return "requested event is not supported";
335 case TD_NOCAPAB:
336 return "capability not available";
337 case TD_DBERR:
338 return "debugger service failed";
339 case TD_NOAPLIC:
340 return "operation not applicable to";
341 case TD_NOTSD:
342 return "no thread-specific data for this thread";
343 case TD_MALLOC:
344 return "malloc failed";
345 case TD_PARTIALREG:
346 return "only part of register set was written/read";
347 case TD_NOXREGS:
348 return "X register set not available for this thread";
349 #ifdef THREAD_DB_HAS_TD_NOTALLOC
350 case TD_NOTALLOC:
351 return "thread has not yet allocated TLS for given module";
352 #endif
353 #ifdef THREAD_DB_HAS_TD_VERSION
354 case TD_VERSION:
355 return "versions of libpthread and libthread_db do not match";
356 #endif
357 #ifdef THREAD_DB_HAS_TD_NOTLS
358 case TD_NOTLS:
359 return "there is no TLS segment in the given module";
360 #endif
361 default:
362 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
363 return buf;
367 /* Return 1 if any threads have been registered. There may be none if
368 the threading library is not fully initialized yet. */
370 static int
371 have_threads_callback (struct thread_info *thread, void *args)
373 int pid = * (int *) args;
375 if (ptid_get_pid (thread->ptid) != pid)
376 return 0;
378 return thread->private != NULL;
381 static int
382 have_threads (ptid_t ptid)
384 int pid = ptid_get_pid (ptid);
386 return iterate_over_threads (have_threads_callback, &pid) != NULL;
389 struct thread_get_info_inout
391 struct thread_info *thread_info;
392 struct thread_db_info *thread_db_info;
395 /* A callback function for td_ta_thr_iter, which we use to map all
396 threads to LWPs.
398 THP is a handle to the current thread; if INFOP is not NULL, the
399 struct thread_info associated with this thread is returned in
400 *INFOP.
402 If the thread is a zombie, TD_THR_ZOMBIE is returned. Otherwise,
403 zero is returned to indicate success. */
405 static int
406 thread_get_info_callback (const td_thrhandle_t *thp, void *argp)
408 td_thrinfo_t ti;
409 td_err_e err;
410 ptid_t thread_ptid;
411 struct thread_get_info_inout *inout;
412 struct thread_db_info *info;
414 inout = argp;
415 info = inout->thread_db_info;
417 err = info->td_thr_get_info_p (thp, &ti);
418 if (err != TD_OK)
419 error (_("thread_get_info_callback: cannot get thread info: %s"),
420 thread_db_err_str (err));
422 /* Fill the cache. */
423 thread_ptid = ptid_build (info->pid, ti.ti_lid, 0);
424 inout->thread_info = find_thread_ptid (thread_ptid);
426 if (inout->thread_info == NULL)
428 /* New thread. Attach to it now (why wait?). */
429 if (!have_threads (thread_ptid))
430 thread_db_find_new_threads_1 (thread_ptid);
431 else
432 attach_thread (thread_ptid, thp, &ti);
433 inout->thread_info = find_thread_ptid (thread_ptid);
434 gdb_assert (inout->thread_info != NULL);
437 return 0;
440 /* Fetch the user-level thread id of PTID. */
442 static void
443 thread_from_lwp (ptid_t ptid)
445 td_thrhandle_t th;
446 td_err_e err;
447 struct thread_db_info *info;
448 struct thread_get_info_inout io = {0};
450 /* Just in case td_ta_map_lwp2thr doesn't initialize it completely. */
451 th.th_unique = 0;
453 /* This ptid comes from linux-nat.c, which should always fill in the
454 LWP. */
455 gdb_assert (GET_LWP (ptid) != 0);
457 info = get_thread_db_info (GET_PID (ptid));
459 /* Access an lwp we know is stopped. */
460 info->proc_handle.ptid = ptid;
461 err = info->td_ta_map_lwp2thr_p (info->thread_agent, GET_LWP (ptid), &th);
462 if (err != TD_OK)
463 error (_("Cannot find user-level thread for LWP %ld: %s"),
464 GET_LWP (ptid), thread_db_err_str (err));
466 /* Long-winded way of fetching the thread info. */
467 io.thread_db_info = info;
468 io.thread_info = NULL;
469 thread_get_info_callback (&th, &io);
473 /* Attach to lwp PTID, doing whatever else is required to have this
474 LWP under the debugger's control --- e.g., enabling event
475 reporting. Returns true on success. */
477 thread_db_attach_lwp (ptid_t ptid)
479 td_thrhandle_t th;
480 td_thrinfo_t ti;
481 td_err_e err;
482 struct thread_db_info *info;
484 info = get_thread_db_info (GET_PID (ptid));
486 if (info == NULL)
487 return 0;
489 /* This ptid comes from linux-nat.c, which should always fill in the
490 LWP. */
491 gdb_assert (GET_LWP (ptid) != 0);
493 /* Access an lwp we know is stopped. */
494 info->proc_handle.ptid = ptid;
496 /* If we have only looked at the first thread before libpthread was
497 initialized, we may not know its thread ID yet. Make sure we do
498 before we add another thread to the list. */
499 if (!have_threads (ptid))
500 thread_db_find_new_threads_1 (ptid);
502 err = info->td_ta_map_lwp2thr_p (info->thread_agent, GET_LWP (ptid), &th);
503 if (err != TD_OK)
504 /* Cannot find user-level thread. */
505 return 0;
507 err = info->td_thr_get_info_p (&th, &ti);
508 if (err != TD_OK)
510 warning (_("Cannot get thread info: %s"), thread_db_err_str (err));
511 return 0;
514 attach_thread (ptid, &th, &ti);
515 return 1;
518 static void *
519 verbose_dlsym (void *handle, const char *name)
521 void *sym = dlsym (handle, name);
522 if (sym == NULL)
523 warning (_("Symbol \"%s\" not found in libthread_db: %s"),
524 name, dlerror ());
525 return sym;
528 static td_err_e
529 enable_thread_event (int event, CORE_ADDR *bp)
531 td_notify_t notify;
532 td_err_e err;
533 struct thread_db_info *info;
535 info = get_thread_db_info (GET_PID (inferior_ptid));
537 /* Access an lwp we know is stopped. */
538 info->proc_handle.ptid = inferior_ptid;
540 /* Get the breakpoint address for thread EVENT. */
541 err = info->td_ta_event_addr_p (info->thread_agent, event, &notify);
542 if (err != TD_OK)
543 return err;
545 /* Set up the breakpoint. */
546 gdb_assert (exec_bfd);
547 (*bp) = (gdbarch_convert_from_func_ptr_addr
548 (target_gdbarch (),
549 /* Do proper sign extension for the target. */
550 (bfd_get_sign_extend_vma (exec_bfd) > 0
551 ? (CORE_ADDR) (intptr_t) notify.u.bptaddr
552 : (CORE_ADDR) (uintptr_t) notify.u.bptaddr),
553 &current_target));
554 create_thread_event_breakpoint (target_gdbarch (), *bp);
556 return TD_OK;
559 /* Verify inferior's '\0'-terminated symbol VER_SYMBOL starts with "%d.%d" and
560 return 1 if this version is lower (and not equal) to
561 VER_MAJOR_MIN.VER_MINOR_MIN. Return 0 in all other cases. */
563 static int
564 inferior_has_bug (const char *ver_symbol, int ver_major_min, int ver_minor_min)
566 struct minimal_symbol *version_msym;
567 CORE_ADDR version_addr;
568 char *version;
569 int err, got, retval = 0;
571 version_msym = lookup_minimal_symbol (ver_symbol, NULL, NULL);
572 if (version_msym == NULL)
573 return 0;
575 version_addr = SYMBOL_VALUE_ADDRESS (version_msym);
576 got = target_read_string (version_addr, &version, 32, &err);
577 if (err == 0 && memchr (version, 0, got) == &version[got -1])
579 int major, minor;
581 retval = (sscanf (version, "%d.%d", &major, &minor) == 2
582 && (major < ver_major_min
583 || (major == ver_major_min && minor < ver_minor_min)));
585 xfree (version);
587 return retval;
590 static void
591 enable_thread_event_reporting (void)
593 td_thr_events_t events;
594 td_err_e err;
595 struct thread_db_info *info;
597 info = get_thread_db_info (GET_PID (inferior_ptid));
599 /* We cannot use the thread event reporting facility if these
600 functions aren't available. */
601 if (info->td_ta_event_addr_p == NULL
602 || info->td_ta_set_event_p == NULL
603 || info->td_ta_event_getmsg_p == NULL
604 || info->td_thr_event_enable_p == NULL)
605 return;
607 /* Set the process wide mask saying which events we're interested in. */
608 td_event_emptyset (&events);
609 td_event_addset (&events, TD_CREATE);
611 /* There is a bug fixed between linuxthreads 2.1.3 and 2.2 by
612 commit 2e4581e4fba917f1779cd0a010a45698586c190a
613 * manager.c (pthread_exited): Correctly report event as TD_REAP
614 instead of TD_DEATH. Fix comments.
615 where event reporting facility is broken for TD_DEATH events,
616 so don't enable it if we have glibc but a lower version. */
617 if (!inferior_has_bug ("__linuxthreads_version", 2, 2))
618 td_event_addset (&events, TD_DEATH);
620 err = info->td_ta_set_event_p (info->thread_agent, &events);
621 if (err != TD_OK)
623 warning (_("Unable to set global thread event mask: %s"),
624 thread_db_err_str (err));
625 return;
628 /* Delete previous thread event breakpoints, if any. */
629 remove_thread_event_breakpoints ();
630 info->td_create_bp_addr = 0;
631 info->td_death_bp_addr = 0;
633 /* Set up the thread creation event. */
634 err = enable_thread_event (TD_CREATE, &info->td_create_bp_addr);
635 if (err != TD_OK)
637 warning (_("Unable to get location for thread creation breakpoint: %s"),
638 thread_db_err_str (err));
639 return;
642 /* Set up the thread death event. */
643 err = enable_thread_event (TD_DEATH, &info->td_death_bp_addr);
644 if (err != TD_OK)
646 warning (_("Unable to get location for thread death breakpoint: %s"),
647 thread_db_err_str (err));
648 return;
652 /* Similar as thread_db_find_new_threads_1, but try to silently ignore errors
653 if appropriate.
655 Return 1 if the caller should abort libthread_db initialization. Return 0
656 otherwise. */
658 static int
659 thread_db_find_new_threads_silently (ptid_t ptid)
661 volatile struct gdb_exception except;
663 TRY_CATCH (except, RETURN_MASK_ERROR)
665 thread_db_find_new_threads_2 (ptid, 1);
668 if (except.reason < 0)
670 if (libthread_db_debug)
671 exception_fprintf (gdb_stderr, except,
672 "Warning: thread_db_find_new_threads_silently: ");
674 /* There is a bug fixed between nptl 2.6.1 and 2.7 by
675 commit 7d9d8bd18906fdd17364f372b160d7ab896ce909
676 where calls to td_thr_get_info fail with TD_ERR for statically linked
677 executables if td_thr_get_info is called before glibc has initialized
678 itself.
680 If the nptl bug is NOT present in the inferior and still thread_db
681 reports an error return 1. It means the inferior has corrupted thread
682 list and GDB should fall back only to LWPs.
684 If the nptl bug is present in the inferior return 0 to silently ignore
685 such errors, and let gdb enumerate threads again later. In such case
686 GDB cannot properly display LWPs if the inferior thread list is
687 corrupted. For core files it does not apply, no 'later enumeration'
688 is possible. */
690 if (!target_has_execution || !inferior_has_bug ("nptl_version", 2, 7))
692 exception_fprintf (gdb_stderr, except,
693 _("Warning: couldn't activate thread debugging "
694 "using libthread_db: "));
695 return 1;
698 return 0;
701 /* Lookup a library in which given symbol resides.
702 Note: this is looking in GDB process, not in the inferior.
703 Returns library name, or NULL. */
705 static const char *
706 dladdr_to_soname (const void *addr)
708 Dl_info info;
710 if (dladdr (addr, &info) != 0)
711 return info.dli_fname;
712 return NULL;
715 /* Attempt to initialize dlopen()ed libthread_db, described by INFO.
716 Return 1 on success.
717 Failure could happen if libthread_db does not have symbols we expect,
718 or when it refuses to work with the current inferior (e.g. due to
719 version mismatch between libthread_db and libpthread). */
721 static int
722 try_thread_db_load_1 (struct thread_db_info *info)
724 td_err_e err;
726 /* Initialize pointers to the dynamic library functions we will use.
727 Essential functions first. */
729 info->td_init_p = verbose_dlsym (info->handle, "td_init");
730 if (info->td_init_p == NULL)
731 return 0;
733 err = info->td_init_p ();
734 if (err != TD_OK)
736 warning (_("Cannot initialize libthread_db: %s"),
737 thread_db_err_str (err));
738 return 0;
741 info->td_ta_new_p = verbose_dlsym (info->handle, "td_ta_new");
742 if (info->td_ta_new_p == NULL)
743 return 0;
745 /* Initialize the structure that identifies the child process. */
746 info->proc_handle.ptid = inferior_ptid;
748 /* Now attempt to open a connection to the thread library. */
749 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
750 if (err != TD_OK)
752 if (libthread_db_debug)
753 printf_unfiltered (_("td_ta_new failed: %s\n"),
754 thread_db_err_str (err));
755 else
756 switch (err)
758 case TD_NOLIBTHREAD:
759 #ifdef THREAD_DB_HAS_TD_VERSION
760 case TD_VERSION:
761 #endif
762 /* The errors above are not unexpected and silently ignored:
763 they just mean we haven't found correct version of
764 libthread_db yet. */
765 break;
766 default:
767 warning (_("td_ta_new failed: %s"), thread_db_err_str (err));
769 return 0;
772 info->td_ta_map_id2thr_p = verbose_dlsym (info->handle, "td_ta_map_id2thr");
773 if (info->td_ta_map_id2thr_p == NULL)
774 return 0;
776 info->td_ta_map_lwp2thr_p = verbose_dlsym (info->handle,
777 "td_ta_map_lwp2thr");
778 if (info->td_ta_map_lwp2thr_p == NULL)
779 return 0;
781 info->td_ta_thr_iter_p = verbose_dlsym (info->handle, "td_ta_thr_iter");
782 if (info->td_ta_thr_iter_p == NULL)
783 return 0;
785 info->td_thr_validate_p = verbose_dlsym (info->handle, "td_thr_validate");
786 if (info->td_thr_validate_p == NULL)
787 return 0;
789 info->td_thr_get_info_p = verbose_dlsym (info->handle, "td_thr_get_info");
790 if (info->td_thr_get_info_p == NULL)
791 return 0;
793 /* These are not essential. */
794 info->td_ta_event_addr_p = dlsym (info->handle, "td_ta_event_addr");
795 info->td_ta_set_event_p = dlsym (info->handle, "td_ta_set_event");
796 info->td_ta_clear_event_p = dlsym (info->handle, "td_ta_clear_event");
797 info->td_ta_event_getmsg_p = dlsym (info->handle, "td_ta_event_getmsg");
798 info->td_thr_event_enable_p = dlsym (info->handle, "td_thr_event_enable");
799 info->td_thr_tls_get_addr_p = dlsym (info->handle, "td_thr_tls_get_addr");
801 if (thread_db_find_new_threads_silently (inferior_ptid) != 0)
803 /* Even if libthread_db initializes, if the thread list is
804 corrupted, we'd not manage to list any threads. Better reject this
805 thread_db, and fall back to at least listing LWPs. */
806 return 0;
809 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
811 if (libthread_db_debug || *libthread_db_search_path)
813 const char *library;
815 library = dladdr_to_soname (*info->td_ta_new_p);
816 if (library == NULL)
817 library = LIBTHREAD_DB_SO;
819 printf_unfiltered (_("Using host libthread_db library \"%s\".\n"),
820 library);
823 /* The thread library was detected. Activate the thread_db target
824 if this is the first process using it. */
825 if (thread_db_list->next == NULL)
826 push_target (&thread_db_ops);
828 /* Enable event reporting, but not when debugging a core file. */
829 if (target_has_execution)
830 enable_thread_event_reporting ();
832 return 1;
835 /* Attempt to use LIBRARY as libthread_db. LIBRARY could be absolute,
836 relative, or just LIBTHREAD_DB. */
838 static int
839 try_thread_db_load (const char *library)
841 void *handle;
842 struct thread_db_info *info;
844 if (libthread_db_debug)
845 printf_unfiltered (_("Trying host libthread_db library: %s.\n"),
846 library);
847 handle = dlopen (library, RTLD_NOW);
848 if (handle == NULL)
850 if (libthread_db_debug)
851 printf_unfiltered (_("dlopen failed: %s.\n"), dlerror ());
852 return 0;
855 if (libthread_db_debug && strchr (library, '/') == NULL)
857 void *td_init;
859 td_init = dlsym (handle, "td_init");
860 if (td_init != NULL)
862 const char *const libpath = dladdr_to_soname (td_init);
864 if (libpath != NULL)
865 printf_unfiltered (_("Host %s resolved to: %s.\n"),
866 library, libpath);
870 info = add_thread_db_info (handle);
872 /* Do not save system library name, that one is always trusted. */
873 if (strchr (library, '/') != NULL)
874 info->filename = gdb_realpath (library);
876 if (try_thread_db_load_1 (info))
877 return 1;
879 /* This library "refused" to work on current inferior. */
880 delete_thread_db_info (GET_PID (inferior_ptid));
881 return 0;
884 /* Subroutine of try_thread_db_load_from_pdir to simplify it.
885 Try loading libthread_db in directory(OBJ)/SUBDIR.
886 SUBDIR may be NULL. It may also be something like "../lib64".
887 The result is true for success. */
889 static int
890 try_thread_db_load_from_pdir_1 (struct objfile *obj, const char *subdir)
892 struct cleanup *cleanup;
893 char *path, *cp;
894 int result;
896 if (obj->name[0] != '/')
898 warning (_("Expected absolute pathname for libpthread in the"
899 " inferior, but got %s."), obj->name);
900 return 0;
903 path = xmalloc (strlen (obj->name) + (subdir ? strlen (subdir) + 1 : 0)
904 + 1 + strlen (LIBTHREAD_DB_SO) + 1);
905 cleanup = make_cleanup (xfree, path);
907 strcpy (path, obj->name);
908 cp = strrchr (path, '/');
909 /* This should at minimum hit the first character. */
910 gdb_assert (cp != NULL);
911 cp[1] = '\0';
912 if (subdir != NULL)
914 strcat (cp, subdir);
915 strcat (cp, "/");
917 strcat (cp, LIBTHREAD_DB_SO);
919 if (!file_is_auto_load_safe (path, _("auto-load: Loading libthread-db "
920 "library \"%s\" from $pdir.\n"),
921 path))
922 result = 0;
923 else
924 result = try_thread_db_load (path);
926 do_cleanups (cleanup);
927 return result;
930 /* Handle $pdir in libthread-db-search-path.
931 Look for libthread_db in directory(libpthread)/SUBDIR.
932 SUBDIR may be NULL. It may also be something like "../lib64".
933 The result is true for success. */
935 static int
936 try_thread_db_load_from_pdir (const char *subdir)
938 struct objfile *obj;
940 if (!auto_load_thread_db)
941 return 0;
943 ALL_OBJFILES (obj)
944 if (libpthread_name_p (obj->name))
946 if (try_thread_db_load_from_pdir_1 (obj, subdir))
947 return 1;
949 /* We may have found the separate-debug-info version of
950 libpthread, and it may live in a directory without a matching
951 libthread_db. */
952 if (obj->separate_debug_objfile_backlink != NULL)
953 return try_thread_db_load_from_pdir_1 (obj->separate_debug_objfile_backlink,
954 subdir);
956 return 0;
959 return 0;
962 /* Handle $sdir in libthread-db-search-path.
963 Look for libthread_db in the system dirs, or wherever a plain
964 dlopen(file_without_path) will look.
965 The result is true for success. */
967 static int
968 try_thread_db_load_from_sdir (void)
970 return try_thread_db_load (LIBTHREAD_DB_SO);
973 /* Try to load libthread_db from directory DIR of length DIR_LEN.
974 The result is true for success. */
976 static int
977 try_thread_db_load_from_dir (const char *dir, size_t dir_len)
979 struct cleanup *cleanup;
980 char *path;
981 int result;
983 if (!auto_load_thread_db)
984 return 0;
986 path = xmalloc (dir_len + 1 + strlen (LIBTHREAD_DB_SO) + 1);
987 cleanup = make_cleanup (xfree, path);
989 memcpy (path, dir, dir_len);
990 path[dir_len] = '/';
991 strcpy (path + dir_len + 1, LIBTHREAD_DB_SO);
993 if (!file_is_auto_load_safe (path, _("auto-load: Loading libthread-db "
994 "library \"%s\" from explicit "
995 "directory.\n"),
996 path))
997 result = 0;
998 else
999 result = try_thread_db_load (path);
1001 do_cleanups (cleanup);
1002 return result;
1005 /* Search libthread_db_search_path for libthread_db which "agrees"
1006 to work on current inferior.
1007 The result is true for success. */
1009 static int
1010 thread_db_load_search (void)
1012 VEC (char_ptr) *dir_vec;
1013 struct cleanup *cleanups;
1014 char *this_dir;
1015 int i, rc = 0;
1017 dir_vec = dirnames_to_char_ptr_vec (libthread_db_search_path);
1018 cleanups = make_cleanup_free_char_ptr_vec (dir_vec);
1020 for (i = 0; VEC_iterate (char_ptr, dir_vec, i, this_dir); ++i)
1022 const int pdir_len = sizeof ("$pdir") - 1;
1023 size_t this_dir_len;
1025 this_dir_len = strlen (this_dir);
1027 if (strncmp (this_dir, "$pdir", pdir_len) == 0
1028 && (this_dir[pdir_len] == '\0'
1029 || this_dir[pdir_len] == '/'))
1031 char *subdir = NULL;
1032 struct cleanup *free_subdir_cleanup = NULL;
1034 if (this_dir[pdir_len] == '/')
1036 subdir = xmalloc (strlen (this_dir));
1037 free_subdir_cleanup = make_cleanup (xfree, subdir);
1038 strcpy (subdir, this_dir + pdir_len + 1);
1040 rc = try_thread_db_load_from_pdir (subdir);
1041 if (free_subdir_cleanup != NULL)
1042 do_cleanups (free_subdir_cleanup);
1043 if (rc)
1044 break;
1046 else if (strcmp (this_dir, "$sdir") == 0)
1048 if (try_thread_db_load_from_sdir ())
1050 rc = 1;
1051 break;
1054 else
1056 if (try_thread_db_load_from_dir (this_dir, this_dir_len))
1058 rc = 1;
1059 break;
1064 do_cleanups (cleanups);
1065 if (libthread_db_debug)
1066 printf_unfiltered (_("thread_db_load_search returning %d\n"), rc);
1067 return rc;
1070 /* Return non-zero if the inferior has a libpthread. */
1072 static int
1073 has_libpthread (void)
1075 struct objfile *obj;
1077 ALL_OBJFILES (obj)
1078 if (libpthread_name_p (obj->name))
1079 return 1;
1081 return 0;
1084 /* Attempt to load and initialize libthread_db.
1085 Return 1 on success. */
1087 static int
1088 thread_db_load (void)
1090 struct thread_db_info *info;
1092 info = get_thread_db_info (GET_PID (inferior_ptid));
1094 if (info != NULL)
1095 return 1;
1097 /* Don't attempt to use thread_db on executables not running
1098 yet. */
1099 if (!target_has_registers)
1100 return 0;
1102 /* Don't attempt to use thread_db for remote targets. */
1103 if (!(target_can_run (&current_target) || core_bfd))
1104 return 0;
1106 if (thread_db_load_search ())
1107 return 1;
1109 /* We couldn't find a libthread_db.
1110 If the inferior has a libpthread warn the user. */
1111 if (has_libpthread ())
1113 warning (_("Unable to find libthread_db matching inferior's thread"
1114 " library, thread debugging will not be available."));
1115 return 0;
1118 /* Either this executable isn't using libpthread at all, or it is
1119 statically linked. Since we can't easily distinguish these two cases,
1120 no warning is issued. */
1121 return 0;
1124 static void
1125 disable_thread_event_reporting (struct thread_db_info *info)
1127 if (info->td_ta_clear_event_p != NULL)
1129 td_thr_events_t events;
1131 /* Set the process wide mask saying we aren't interested in any
1132 events anymore. */
1133 td_event_fillset (&events);
1134 info->td_ta_clear_event_p (info->thread_agent, &events);
1137 info->td_create_bp_addr = 0;
1138 info->td_death_bp_addr = 0;
1141 static void
1142 check_thread_signals (void)
1144 if (!thread_signals)
1146 sigset_t mask;
1147 int i;
1149 lin_thread_get_thread_signals (&mask);
1150 sigemptyset (&thread_stop_set);
1151 sigemptyset (&thread_print_set);
1153 for (i = 1; i < NSIG; i++)
1155 if (sigismember (&mask, i))
1157 if (signal_stop_update (gdb_signal_from_host (i), 0))
1158 sigaddset (&thread_stop_set, i);
1159 if (signal_print_update (gdb_signal_from_host (i), 0))
1160 sigaddset (&thread_print_set, i);
1161 thread_signals = 1;
1167 /* Check whether thread_db is usable. This function is called when
1168 an inferior is created (or otherwise acquired, e.g. attached to)
1169 and when new shared libraries are loaded into a running process. */
1171 void
1172 check_for_thread_db (void)
1174 /* Do nothing if we couldn't load libthread_db.so.1. */
1175 if (!thread_db_load ())
1176 return;
1179 /* This function is called via the new_objfile observer. */
1181 static void
1182 thread_db_new_objfile (struct objfile *objfile)
1184 /* This observer must always be called with inferior_ptid set
1185 correctly. */
1187 if (objfile != NULL
1188 /* libpthread with separate debug info has its debug info file already
1189 loaded (and notified without successful thread_db initialization)
1190 the time observer_notify_new_objfile is called for the library itself.
1191 Static executables have their separate debug info loaded already
1192 before the inferior has started. */
1193 && objfile->separate_debug_objfile_backlink == NULL
1194 /* Only check for thread_db if we loaded libpthread,
1195 or if this is the main symbol file.
1196 We need to check OBJF_MAINLINE to handle the case of debugging
1197 a statically linked executable AND the symbol file is specified AFTER
1198 the exec file is loaded (e.g., gdb -c core ; file foo).
1199 For dynamically linked executables, libpthread can be near the end
1200 of the list of shared libraries to load, and in an app of several
1201 thousand shared libraries, this can otherwise be painful. */
1202 && ((objfile->flags & OBJF_MAINLINE) != 0
1203 || libpthread_name_p (objfile->name)))
1204 check_for_thread_db ();
1207 /* This function is called via the inferior_created observer.
1208 This handles the case of debugging statically linked executables. */
1210 static void
1211 thread_db_inferior_created (struct target_ops *target, int from_tty)
1213 check_for_thread_db ();
1216 /* Attach to a new thread. This function is called when we receive a
1217 TD_CREATE event or when we iterate over all threads and find one
1218 that wasn't already in our list. Returns true on success. */
1220 static int
1221 attach_thread (ptid_t ptid, const td_thrhandle_t *th_p,
1222 const td_thrinfo_t *ti_p)
1224 struct private_thread_info *private;
1225 struct thread_info *tp;
1226 td_err_e err;
1227 struct thread_db_info *info;
1229 /* If we're being called after a TD_CREATE event, we may already
1230 know about this thread. There are two ways this can happen. We
1231 may have iterated over all threads between the thread creation
1232 and the TD_CREATE event, for instance when the user has issued
1233 the `info threads' command before the SIGTRAP for hitting the
1234 thread creation breakpoint was reported. Alternatively, the
1235 thread may have exited and a new one been created with the same
1236 thread ID. In the first case we don't need to do anything; in
1237 the second case we should discard information about the dead
1238 thread and attach to the new one. */
1239 tp = find_thread_ptid (ptid);
1240 if (tp != NULL)
1242 /* If tp->private is NULL, then GDB is already attached to this
1243 thread, but we do not know anything about it. We can learn
1244 about it here. This can only happen if we have some other
1245 way besides libthread_db to notice new threads (i.e.
1246 PTRACE_EVENT_CLONE); assume the same mechanism notices thread
1247 exit, so this can not be a stale thread recreated with the
1248 same ID. */
1249 if (tp->private != NULL)
1251 if (!tp->private->dying)
1252 return 0;
1254 delete_thread (ptid);
1255 tp = NULL;
1259 if (target_has_execution)
1260 check_thread_signals ();
1262 /* Under GNU/Linux, we have to attach to each and every thread. */
1263 if (target_has_execution
1264 && tp == NULL)
1266 int res;
1268 res = lin_lwp_attach_lwp (BUILD_LWP (ti_p->ti_lid, GET_PID (ptid)));
1269 if (res < 0)
1271 /* Error, stop iterating. */
1272 return 0;
1274 else if (res > 0)
1276 /* Pretend this thread doesn't exist yet, and keep
1277 iterating. */
1278 return 1;
1281 /* Otherwise, we sucessfully attached to the thread. */
1284 /* Construct the thread's private data. */
1285 private = xmalloc (sizeof (struct private_thread_info));
1286 memset (private, 0, sizeof (struct private_thread_info));
1288 /* A thread ID of zero may mean the thread library has not initialized
1289 yet. But we shouldn't even get here if that's the case. FIXME:
1290 if we change GDB to always have at least one thread in the thread
1291 list this will have to go somewhere else; maybe private == NULL
1292 until the thread_db target claims it. */
1293 gdb_assert (ti_p->ti_tid != 0);
1294 private->th = *th_p;
1295 private->tid = ti_p->ti_tid;
1296 if (ti_p->ti_state == TD_THR_UNKNOWN || ti_p->ti_state == TD_THR_ZOMBIE)
1297 private->dying = 1;
1299 /* Add the thread to GDB's thread list. */
1300 if (tp == NULL)
1301 add_thread_with_info (ptid, private);
1302 else
1303 tp->private = private;
1305 info = get_thread_db_info (GET_PID (ptid));
1307 /* Enable thread event reporting for this thread, except when
1308 debugging a core file. */
1309 if (target_has_execution)
1311 err = info->td_thr_event_enable_p (th_p, 1);
1312 if (err != TD_OK)
1313 error (_("Cannot enable thread event reporting for %s: %s"),
1314 target_pid_to_str (ptid), thread_db_err_str (err));
1317 return 1;
1320 static void
1321 detach_thread (ptid_t ptid)
1323 struct thread_info *thread_info;
1325 /* Don't delete the thread now, because it still reports as active
1326 until it has executed a few instructions after the event
1327 breakpoint - if we deleted it now, "info threads" would cause us
1328 to re-attach to it. Just mark it as having had a TD_DEATH
1329 event. This means that we won't delete it from our thread list
1330 until we notice that it's dead (via prune_threads), or until
1331 something re-uses its thread ID. We'll report the thread exit
1332 when the underlying LWP dies. */
1333 thread_info = find_thread_ptid (ptid);
1334 gdb_assert (thread_info != NULL && thread_info->private != NULL);
1335 thread_info->private->dying = 1;
1338 static void
1339 thread_db_detach (struct target_ops *ops, char *args, int from_tty)
1341 struct target_ops *target_beneath = find_target_beneath (ops);
1342 struct thread_db_info *info;
1344 info = get_thread_db_info (GET_PID (inferior_ptid));
1346 if (info)
1348 if (target_has_execution)
1350 disable_thread_event_reporting (info);
1352 /* Delete the old thread event breakpoints. Note that
1353 unlike when mourning, we can remove them here because
1354 there's still a live inferior to poke at. In any case,
1355 GDB will not try to insert anything in the inferior when
1356 removing a breakpoint. */
1357 remove_thread_event_breakpoints ();
1360 delete_thread_db_info (GET_PID (inferior_ptid));
1363 target_beneath->to_detach (target_beneath, args, from_tty);
1365 /* NOTE: From this point on, inferior_ptid is null_ptid. */
1367 /* If there are no more processes using libpthread, detach the
1368 thread_db target ops. */
1369 if (!thread_db_list)
1370 unpush_target (&thread_db_ops);
1373 /* Check if PID is currently stopped at the location of a thread event
1374 breakpoint location. If it is, read the event message and act upon
1375 the event. */
1377 static void
1378 check_event (ptid_t ptid)
1380 struct regcache *regcache = get_thread_regcache (ptid);
1381 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1382 td_event_msg_t msg;
1383 td_thrinfo_t ti;
1384 td_err_e err;
1385 CORE_ADDR stop_pc;
1386 int loop = 0;
1387 struct thread_db_info *info;
1389 info = get_thread_db_info (GET_PID (ptid));
1391 /* Bail out early if we're not at a thread event breakpoint. */
1392 stop_pc = regcache_read_pc (regcache)
1393 - gdbarch_decr_pc_after_break (gdbarch);
1394 if (stop_pc != info->td_create_bp_addr
1395 && stop_pc != info->td_death_bp_addr)
1396 return;
1398 /* Access an lwp we know is stopped. */
1399 info->proc_handle.ptid = ptid;
1401 /* If we have only looked at the first thread before libpthread was
1402 initialized, we may not know its thread ID yet. Make sure we do
1403 before we add another thread to the list. */
1404 if (!have_threads (ptid))
1405 thread_db_find_new_threads_1 (ptid);
1407 /* If we are at a create breakpoint, we do not know what new lwp
1408 was created and cannot specifically locate the event message for it.
1409 We have to call td_ta_event_getmsg() to get
1410 the latest message. Since we have no way of correlating whether
1411 the event message we get back corresponds to our breakpoint, we must
1412 loop and read all event messages, processing them appropriately.
1413 This guarantees we will process the correct message before continuing
1414 from the breakpoint.
1416 Currently, death events are not enabled. If they are enabled,
1417 the death event can use the td_thr_event_getmsg() interface to
1418 get the message specifically for that lwp and avoid looping
1419 below. */
1421 loop = 1;
1425 err = info->td_ta_event_getmsg_p (info->thread_agent, &msg);
1426 if (err != TD_OK)
1428 if (err == TD_NOMSG)
1429 return;
1431 error (_("Cannot get thread event message: %s"),
1432 thread_db_err_str (err));
1435 err = info->td_thr_get_info_p (msg.th_p, &ti);
1436 if (err != TD_OK)
1437 error (_("Cannot get thread info: %s"), thread_db_err_str (err));
1439 ptid = ptid_build (GET_PID (ptid), ti.ti_lid, 0);
1441 switch (msg.event)
1443 case TD_CREATE:
1444 /* Call attach_thread whether or not we already know about a
1445 thread with this thread ID. */
1446 attach_thread (ptid, msg.th_p, &ti);
1448 break;
1450 case TD_DEATH:
1452 if (!in_thread_list (ptid))
1453 error (_("Spurious thread death event."));
1455 detach_thread (ptid);
1457 break;
1459 default:
1460 error (_("Spurious thread event."));
1463 while (loop);
1466 static ptid_t
1467 thread_db_wait (struct target_ops *ops,
1468 ptid_t ptid, struct target_waitstatus *ourstatus,
1469 int options)
1471 struct thread_db_info *info;
1472 struct target_ops *beneath = find_target_beneath (ops);
1474 ptid = beneath->to_wait (beneath, ptid, ourstatus, options);
1476 if (ourstatus->kind == TARGET_WAITKIND_IGNORE)
1477 return ptid;
1479 if (ourstatus->kind == TARGET_WAITKIND_EXITED
1480 || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
1481 return ptid;
1483 info = get_thread_db_info (GET_PID (ptid));
1485 /* If this process isn't using thread_db, we're done. */
1486 if (info == NULL)
1487 return ptid;
1489 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1491 /* New image, it may or may not end up using thread_db. Assume
1492 not unless we find otherwise. */
1493 delete_thread_db_info (GET_PID (ptid));
1494 if (!thread_db_list)
1495 unpush_target (&thread_db_ops);
1497 /* Thread event breakpoints are deleted by
1498 update_breakpoints_after_exec. */
1500 return ptid;
1503 /* If we do not know about the main thread yet, this would be a good time to
1504 find it. */
1505 if (ourstatus->kind == TARGET_WAITKIND_STOPPED && !have_threads (ptid))
1506 thread_db_find_new_threads_1 (ptid);
1508 if (ourstatus->kind == TARGET_WAITKIND_STOPPED
1509 && ourstatus->value.sig == GDB_SIGNAL_TRAP)
1510 /* Check for a thread event. */
1511 check_event (ptid);
1513 if (have_threads (ptid))
1515 /* Fill in the thread's user-level thread id. */
1516 thread_from_lwp (ptid);
1519 return ptid;
1522 static void
1523 thread_db_mourn_inferior (struct target_ops *ops)
1525 struct target_ops *target_beneath = find_target_beneath (ops);
1527 delete_thread_db_info (GET_PID (inferior_ptid));
1529 target_beneath->to_mourn_inferior (target_beneath);
1531 /* Delete the old thread event breakpoints. Do this after mourning
1532 the inferior, so that we don't try to uninsert them. */
1533 remove_thread_event_breakpoints ();
1535 /* Detach thread_db target ops. */
1536 if (!thread_db_list)
1537 unpush_target (ops);
1540 struct callback_data
1542 struct thread_db_info *info;
1543 int new_threads;
1546 static int
1547 find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1549 td_thrinfo_t ti;
1550 td_err_e err;
1551 ptid_t ptid;
1552 struct thread_info *tp;
1553 struct callback_data *cb_data = data;
1554 struct thread_db_info *info = cb_data->info;
1556 err = info->td_thr_get_info_p (th_p, &ti);
1557 if (err != TD_OK)
1558 error (_("find_new_threads_callback: cannot get thread info: %s"),
1559 thread_db_err_str (err));
1561 if (ti.ti_tid == 0)
1563 /* A thread ID of zero means that this is the main thread, but
1564 glibc has not yet initialized thread-local storage and the
1565 pthread library. We do not know what the thread's TID will
1566 be yet. Just enable event reporting and otherwise ignore
1567 it. */
1569 /* In that case, we're not stopped in a fork syscall and don't
1570 need this glibc bug workaround. */
1571 info->need_stale_parent_threads_check = 0;
1573 if (target_has_execution)
1575 err = info->td_thr_event_enable_p (th_p, 1);
1576 if (err != TD_OK)
1577 error (_("Cannot enable thread event reporting for LWP %d: %s"),
1578 (int) ti.ti_lid, thread_db_err_str (err));
1581 return 0;
1584 /* Ignore stale parent threads, caused by glibc/BZ5983. This is a
1585 bit expensive, as it needs to open /proc/pid/status, so try to
1586 avoid doing the work if we know we don't have to. */
1587 if (info->need_stale_parent_threads_check)
1589 int tgid = linux_proc_get_tgid (ti.ti_lid);
1591 if (tgid != -1 && tgid != info->pid)
1592 return 0;
1595 ptid = ptid_build (info->pid, ti.ti_lid, 0);
1596 tp = find_thread_ptid (ptid);
1597 if (tp == NULL || tp->private == NULL)
1599 if (attach_thread (ptid, th_p, &ti))
1600 cb_data->new_threads += 1;
1601 else
1602 /* Problem attaching this thread; perhaps it exited before we
1603 could attach it?
1604 This could mean that the thread list inside glibc itself is in
1605 inconsistent state, and libthread_db could go on looping forever
1606 (observed with glibc-2.3.6). To prevent that, terminate
1607 iteration: thread_db_find_new_threads_2 will retry. */
1608 return 1;
1611 return 0;
1614 /* Helper for thread_db_find_new_threads_2.
1615 Returns number of new threads found. */
1617 static int
1618 find_new_threads_once (struct thread_db_info *info, int iteration,
1619 td_err_e *errp)
1621 volatile struct gdb_exception except;
1622 struct callback_data data;
1623 td_err_e err = TD_ERR;
1625 data.info = info;
1626 data.new_threads = 0;
1628 TRY_CATCH (except, RETURN_MASK_ERROR)
1630 /* Iterate over all user-space threads to discover new threads. */
1631 err = info->td_ta_thr_iter_p (info->thread_agent,
1632 find_new_threads_callback,
1633 &data,
1634 TD_THR_ANY_STATE,
1635 TD_THR_LOWEST_PRIORITY,
1636 TD_SIGNO_MASK,
1637 TD_THR_ANY_USER_FLAGS);
1640 if (libthread_db_debug)
1642 if (except.reason < 0)
1643 exception_fprintf (gdb_stderr, except,
1644 "Warning: find_new_threads_once: ");
1646 printf_filtered (_("Found %d new threads in iteration %d.\n"),
1647 data.new_threads, iteration);
1650 if (errp != NULL)
1651 *errp = err;
1653 return data.new_threads;
1656 /* Search for new threads, accessing memory through stopped thread
1657 PTID. If UNTIL_NO_NEW is true, repeat searching until several
1658 searches in a row do not discover any new threads. */
1660 static void
1661 thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new)
1663 td_err_e err = TD_OK;
1664 struct thread_db_info *info;
1665 int i, loop;
1667 info = get_thread_db_info (GET_PID (ptid));
1669 /* Access an lwp we know is stopped. */
1670 info->proc_handle.ptid = ptid;
1672 if (until_no_new)
1674 /* Require 4 successive iterations which do not find any new threads.
1675 The 4 is a heuristic: there is an inherent race here, and I have
1676 seen that 2 iterations in a row are not always sufficient to
1677 "capture" all threads. */
1678 for (i = 0, loop = 0; loop < 4 && err == TD_OK; ++i, ++loop)
1679 if (find_new_threads_once (info, i, &err) != 0)
1681 /* Found some new threads. Restart the loop from beginning. */
1682 loop = -1;
1685 else
1686 find_new_threads_once (info, 0, &err);
1688 if (err != TD_OK)
1689 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
1692 static void
1693 thread_db_find_new_threads_1 (ptid_t ptid)
1695 thread_db_find_new_threads_2 (ptid, 0);
1698 static int
1699 update_thread_core (struct lwp_info *info, void *closure)
1701 info->core = linux_common_core_of_thread (info->ptid);
1702 return 0;
1705 static void
1706 thread_db_find_new_threads (struct target_ops *ops)
1708 struct thread_db_info *info;
1709 struct inferior *inf;
1711 ALL_INFERIORS (inf)
1713 struct thread_info *thread;
1715 if (inf->pid == 0)
1716 continue;
1718 info = get_thread_db_info (inf->pid);
1719 if (info == NULL)
1720 continue;
1722 thread = any_live_thread_of_process (inf->pid);
1723 if (thread == NULL || thread->executing)
1724 continue;
1726 thread_db_find_new_threads_1 (thread->ptid);
1729 if (target_has_execution)
1730 iterate_over_lwps (minus_one_ptid /* iterate over all */,
1731 update_thread_core, NULL);
1734 static char *
1735 thread_db_pid_to_str (struct target_ops *ops, ptid_t ptid)
1737 struct thread_info *thread_info = find_thread_ptid (ptid);
1738 struct target_ops *beneath;
1740 if (thread_info != NULL && thread_info->private != NULL)
1742 static char buf[64];
1743 thread_t tid;
1745 tid = thread_info->private->tid;
1746 snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
1747 tid, GET_LWP (ptid));
1749 return buf;
1752 beneath = find_target_beneath (ops);
1753 if (beneath->to_pid_to_str (beneath, ptid))
1754 return beneath->to_pid_to_str (beneath, ptid);
1756 return normal_pid_to_str (ptid);
1759 /* Return a string describing the state of the thread specified by
1760 INFO. */
1762 static char *
1763 thread_db_extra_thread_info (struct thread_info *info)
1765 if (info->private == NULL)
1766 return NULL;
1768 if (info->private->dying)
1769 return "Exiting";
1771 return NULL;
1774 /* Get the address of the thread local variable in load module LM which
1775 is stored at OFFSET within the thread local storage for thread PTID. */
1777 static CORE_ADDR
1778 thread_db_get_thread_local_address (struct target_ops *ops,
1779 ptid_t ptid,
1780 CORE_ADDR lm,
1781 CORE_ADDR offset)
1783 struct thread_info *thread_info;
1784 struct target_ops *beneath;
1786 /* If we have not discovered any threads yet, check now. */
1787 if (!have_threads (ptid))
1788 thread_db_find_new_threads_1 (ptid);
1790 /* Find the matching thread. */
1791 thread_info = find_thread_ptid (ptid);
1793 if (thread_info != NULL && thread_info->private != NULL)
1795 td_err_e err;
1796 psaddr_t address;
1797 struct thread_db_info *info;
1799 info = get_thread_db_info (GET_PID (ptid));
1801 /* glibc doesn't provide the needed interface. */
1802 if (!info->td_thr_tls_get_addr_p)
1803 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1804 _("No TLS library support"));
1806 /* Caller should have verified that lm != 0. */
1807 gdb_assert (lm != 0);
1809 /* Finally, get the address of the variable. */
1810 /* Note the cast through uintptr_t: this interface only works if
1811 a target address fits in a psaddr_t, which is a host pointer.
1812 So a 32-bit debugger can not access 64-bit TLS through this. */
1813 err = info->td_thr_tls_get_addr_p (&thread_info->private->th,
1814 (psaddr_t)(uintptr_t) lm,
1815 offset, &address);
1817 #ifdef THREAD_DB_HAS_TD_NOTALLOC
1818 /* The memory hasn't been allocated, yet. */
1819 if (err == TD_NOTALLOC)
1820 /* Now, if libthread_db provided the initialization image's
1821 address, we *could* try to build a non-lvalue value from
1822 the initialization image. */
1823 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1824 _("TLS not allocated yet"));
1825 #endif
1827 /* Something else went wrong. */
1828 if (err != TD_OK)
1829 throw_error (TLS_GENERIC_ERROR,
1830 (("%s")), thread_db_err_str (err));
1832 /* Cast assuming host == target. Joy. */
1833 /* Do proper sign extension for the target. */
1834 gdb_assert (exec_bfd);
1835 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1836 ? (CORE_ADDR) (intptr_t) address
1837 : (CORE_ADDR) (uintptr_t) address);
1840 beneath = find_target_beneath (ops);
1841 if (beneath->to_get_thread_local_address)
1842 return beneath->to_get_thread_local_address (beneath, ptid, lm, offset);
1843 else
1844 throw_error (TLS_GENERIC_ERROR,
1845 _("TLS not supported on this target"));
1848 /* Callback routine used to find a thread based on the TID part of
1849 its PTID. */
1851 static int
1852 thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
1854 long *tid = (long *) data;
1856 if (thread->private->tid == *tid)
1857 return 1;
1859 return 0;
1862 /* Implement the to_get_ada_task_ptid target method for this target. */
1864 static ptid_t
1865 thread_db_get_ada_task_ptid (long lwp, long thread)
1867 struct thread_info *thread_info;
1869 thread_db_find_new_threads_1 (inferior_ptid);
1870 thread_info = iterate_over_threads (thread_db_find_thread_from_tid, &thread);
1872 gdb_assert (thread_info != NULL);
1874 return (thread_info->ptid);
1877 static void
1878 thread_db_resume (struct target_ops *ops,
1879 ptid_t ptid, int step, enum gdb_signal signo)
1881 struct target_ops *beneath = find_target_beneath (ops);
1882 struct thread_db_info *info;
1884 if (ptid_equal (ptid, minus_one_ptid))
1885 info = get_thread_db_info (GET_PID (inferior_ptid));
1886 else
1887 info = get_thread_db_info (GET_PID (ptid));
1889 /* This workaround is only needed for child fork lwps stopped in a
1890 PTRACE_O_TRACEFORK event. When the inferior is resumed, the
1891 workaround can be disabled. */
1892 if (info)
1893 info->need_stale_parent_threads_check = 0;
1895 beneath->to_resume (beneath, ptid, step, signo);
1898 /* qsort helper function for info_auto_load_libthread_db, sort the
1899 thread_db_info pointers primarily by their FILENAME and secondarily by their
1900 PID, both in ascending order. */
1902 static int
1903 info_auto_load_libthread_db_compare (const void *ap, const void *bp)
1905 struct thread_db_info *a = *(struct thread_db_info **) ap;
1906 struct thread_db_info *b = *(struct thread_db_info **) bp;
1907 int retval;
1909 retval = strcmp (a->filename, b->filename);
1910 if (retval)
1911 return retval;
1913 return (a->pid > b->pid) - (a->pid - b->pid);
1916 /* Implement 'info auto-load libthread-db'. */
1918 static void
1919 info_auto_load_libthread_db (char *args, int from_tty)
1921 struct ui_out *uiout = current_uiout;
1922 const char *cs = args ? args : "";
1923 struct thread_db_info *info, **array;
1924 unsigned info_count, unique_filenames;
1925 size_t max_filename_len, max_pids_len, pids_len;
1926 struct cleanup *back_to;
1927 char *pids;
1928 int i;
1930 cs = skip_spaces_const (cs);
1931 if (*cs)
1932 error (_("'info auto-load libthread-db' does not accept any parameters"));
1934 info_count = 0;
1935 for (info = thread_db_list; info; info = info->next)
1936 if (info->filename != NULL)
1937 info_count++;
1939 array = xmalloc (sizeof (*array) * info_count);
1940 back_to = make_cleanup (xfree, array);
1942 info_count = 0;
1943 for (info = thread_db_list; info; info = info->next)
1944 if (info->filename != NULL)
1945 array[info_count++] = info;
1947 /* Sort ARRAY by filenames and PIDs. */
1949 qsort (array, info_count, sizeof (*array),
1950 info_auto_load_libthread_db_compare);
1952 /* Calculate the number of unique filenames (rows) and the maximum string
1953 length of PIDs list for the unique filenames (columns). */
1955 unique_filenames = 0;
1956 max_filename_len = 0;
1957 max_pids_len = 0;
1958 pids_len = 0;
1959 for (i = 0; i < info_count; i++)
1961 int pid = array[i]->pid;
1962 size_t this_pid_len;
1964 for (this_pid_len = 0; pid != 0; pid /= 10)
1965 this_pid_len++;
1967 if (i == 0 || strcmp (array[i - 1]->filename, array[i]->filename) != 0)
1969 unique_filenames++;
1970 max_filename_len = max (max_filename_len,
1971 strlen (array[i]->filename));
1973 if (i > 0)
1975 pids_len -= strlen (", ");
1976 max_pids_len = max (max_pids_len, pids_len);
1978 pids_len = 0;
1980 pids_len += this_pid_len + strlen (", ");
1982 if (i)
1984 pids_len -= strlen (", ");
1985 max_pids_len = max (max_pids_len, pids_len);
1988 /* Table header shifted right by preceding "libthread-db: " would not match
1989 its columns. */
1990 if (info_count > 0 && args == auto_load_info_scripts_pattern_nl)
1991 ui_out_text (uiout, "\n");
1993 make_cleanup_ui_out_table_begin_end (uiout, 2, unique_filenames,
1994 "LinuxThreadDbTable");
1996 ui_out_table_header (uiout, max_filename_len, ui_left, "filename",
1997 "Filename");
1998 ui_out_table_header (uiout, pids_len, ui_left, "PIDs", "Pids");
1999 ui_out_table_body (uiout);
2001 pids = xmalloc (max_pids_len + 1);
2002 make_cleanup (xfree, pids);
2004 /* Note I is incremented inside the cycle, not at its end. */
2005 for (i = 0; i < info_count;)
2007 struct cleanup *chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
2008 char *pids_end;
2010 info = array[i];
2011 ui_out_field_string (uiout, "filename", info->filename);
2012 pids_end = pids;
2014 while (i < info_count && strcmp (info->filename, array[i]->filename) == 0)
2016 if (pids_end != pids)
2018 *pids_end++ = ',';
2019 *pids_end++ = ' ';
2021 pids_end += xsnprintf (pids_end, &pids[max_pids_len + 1] - pids_end,
2022 "%u", array[i]->pid);
2023 gdb_assert (pids_end < &pids[max_pids_len + 1]);
2025 i++;
2027 *pids_end = '\0';
2029 ui_out_field_string (uiout, "pids", pids);
2031 ui_out_text (uiout, "\n");
2032 do_cleanups (chain);
2035 do_cleanups (back_to);
2037 if (info_count == 0)
2038 ui_out_message (uiout, 0, _("No auto-loaded libthread-db.\n"));
2041 static void
2042 init_thread_db_ops (void)
2044 thread_db_ops.to_shortname = "multi-thread";
2045 thread_db_ops.to_longname = "multi-threaded child process.";
2046 thread_db_ops.to_doc = "Threads and pthreads support.";
2047 thread_db_ops.to_detach = thread_db_detach;
2048 thread_db_ops.to_wait = thread_db_wait;
2049 thread_db_ops.to_resume = thread_db_resume;
2050 thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
2051 thread_db_ops.to_find_new_threads = thread_db_find_new_threads;
2052 thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
2053 thread_db_ops.to_stratum = thread_stratum;
2054 thread_db_ops.to_has_thread_control = tc_schedlock;
2055 thread_db_ops.to_get_thread_local_address
2056 = thread_db_get_thread_local_address;
2057 thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
2058 thread_db_ops.to_get_ada_task_ptid = thread_db_get_ada_task_ptid;
2059 thread_db_ops.to_magic = OPS_MAGIC;
2062 /* Provide a prototype to silence -Wmissing-prototypes. */
2063 extern initialize_file_ftype _initialize_thread_db;
2065 void
2066 _initialize_thread_db (void)
2068 init_thread_db_ops ();
2069 add_target (&thread_db_ops);
2071 /* Defer loading of libthread_db.so until inferior is running.
2072 This allows gdb to load correct libthread_db for a given
2073 executable -- there could be mutiple versions of glibc,
2074 compiled with LinuxThreads or NPTL, and until there is
2075 a running inferior, we can't tell which libthread_db is
2076 the correct one to load. */
2078 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
2080 add_setshow_optional_filename_cmd ("libthread-db-search-path",
2081 class_support,
2082 &libthread_db_search_path, _("\
2083 Set search path for libthread_db."), _("\
2084 Show the current search path or libthread_db."), _("\
2085 This path is used to search for libthread_db to be loaded into \
2086 gdb itself.\n\
2087 Its value is a colon (':') separate list of directories to search.\n\
2088 Setting the search path to an empty list resets it to its default value."),
2089 set_libthread_db_search_path,
2090 NULL,
2091 &setlist, &showlist);
2093 add_setshow_zuinteger_cmd ("libthread-db", class_maintenance,
2094 &libthread_db_debug, _("\
2095 Set libthread-db debugging."), _("\
2096 Show libthread-db debugging."), _("\
2097 When non-zero, libthread-db debugging is enabled."),
2098 NULL,
2099 show_libthread_db_debug,
2100 &setdebuglist, &showdebuglist);
2102 add_setshow_boolean_cmd ("libthread-db", class_support,
2103 &auto_load_thread_db, _("\
2104 Enable or disable auto-loading of inferior specific libthread_db."), _("\
2105 Show whether auto-loading inferior specific libthread_db is enabled."), _("\
2106 If enabled, libthread_db will be searched in 'set libthread-db-search-path'\n\
2107 locations to load libthread_db compatible with the inferior.\n\
2108 Standard system libthread_db still gets loaded even with this option off.\n\
2109 This options has security implications for untrusted inferiors."),
2110 NULL, show_auto_load_thread_db,
2111 auto_load_set_cmdlist_get (),
2112 auto_load_show_cmdlist_get ());
2114 add_cmd ("libthread-db", class_info, info_auto_load_libthread_db,
2115 _("Print the list of loaded inferior specific libthread_db.\n\
2116 Usage: info auto-load libthread-db"),
2117 auto_load_info_cmdlist_get ());
2119 /* Add ourselves to objfile event chain. */
2120 observer_attach_new_objfile (thread_db_new_objfile);
2122 /* Add ourselves to inferior_created event chain.
2123 This is needed to handle debugging statically linked programs where
2124 the new_objfile observer won't get called for libpthread. */
2125 observer_attach_inferior_created (thread_db_inferior_created);