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