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