Set dynamic tag VMA and size from dynamic section when possible
[external/binutils.git] / gdb / linux-thread-db.c
1 /* libthread_db assisted debugging support, generic parts.
2
3    Copyright (C) 1999-2016 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-ptrace.h"
42 #include "nat/linux-osdata.h"
43 #include "auto-load.h"
44 #include "cli/cli-utils.h"
45 #include <signal.h>
46 #include <ctype.h>
47 #include "nat/linux-namespaces.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 both
58    more powerful and more complicated.  This implementation only works
59    for NPTL, the glibc threading library.  It assumes that each thread
60    is permanently assigned to a single light-weight process (LWP).  At
61    some point it also supported the older LinuxThreads library, but it
62    no longer does.
63
64    libthread_db-specific information is stored in the "private" field
65    of struct thread_info.  When the field is NULL we do not yet have
66    information about the new thread; this could be temporary (created,
67    but the thread library's data structures do not reflect it yet)
68    or permanent (created using clone instead of pthread_create).
69
70    Process IDs managed by linux-thread-db.c match those used by
71    linux-nat.c: a common PID for all processes, an LWP ID for each
72    thread, and no TID.  We save the TID in private.  Keeping it out
73    of the ptid_t prevents thread IDs changing when libpthread is
74    loaded or unloaded.  */
75
76 static char *libthread_db_search_path;
77
78 /* Set to non-zero if thread_db auto-loading is enabled
79    by the "set auto-load libthread-db" command.  */
80 static int auto_load_thread_db = 1;
81
82 /* "show" command for the auto_load_thread_db configuration variable.  */
83
84 static void
85 show_auto_load_thread_db (struct ui_file *file, int from_tty,
86                           struct cmd_list_element *c, const char *value)
87 {
88   fprintf_filtered (file, _("Auto-loading of inferior specific libthread_db "
89                             "is %s.\n"),
90                     value);
91 }
92
93 static void
94 set_libthread_db_search_path (char *ignored, int from_tty,
95                               struct cmd_list_element *c)
96 {
97   if (*libthread_db_search_path == '\0')
98     {
99       xfree (libthread_db_search_path);
100       libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
101     }
102 }
103
104 /* If non-zero, print details of libthread_db processing.  */
105
106 static unsigned int libthread_db_debug;
107
108 static void
109 show_libthread_db_debug (struct ui_file *file, int from_tty,
110                          struct cmd_list_element *c, const char *value)
111 {
112   fprintf_filtered (file, _("libthread-db debugging is %s.\n"), value);
113 }
114
115 /* If we're running on GNU/Linux, we must explicitly attach to any new
116    threads.  */
117
118 /* This module's target vector.  */
119 static struct target_ops thread_db_ops;
120
121 /* Non-zero if we have determined the signals used by the threads
122    library.  */
123 static int thread_signals;
124 static sigset_t thread_stop_set;
125 static sigset_t thread_print_set;
126
127 struct thread_db_info
128 {
129   struct thread_db_info *next;
130
131   /* Process id this object refers to.  */
132   int pid;
133
134   /* Handle from dlopen for libthread_db.so.  */
135   void *handle;
136
137   /* Absolute pathname from gdb_realpath to disk file used for dlopen-ing
138      HANDLE.  It may be NULL for system library.  */
139   char *filename;
140
141   /* Structure that identifies the child process for the
142      <proc_service.h> interface.  */
143   struct ps_prochandle proc_handle;
144
145   /* Connection to the libthread_db library.  */
146   td_thragent_t *thread_agent;
147
148   /* True if we need to apply the workaround for glibc/BZ5983.  When
149      we catch a PTRACE_O_TRACEFORK, and go query the child's thread
150      list, nptl_db returns the parent's threads in addition to the new
151      (single) child thread.  If this flag is set, we do extra work to
152      be able to ignore such stale entries.  */
153   int need_stale_parent_threads_check;
154
155   /* Pointers to the libthread_db functions.  */
156
157   td_init_ftype *td_init_p;
158   td_ta_new_ftype *td_ta_new_p;
159   td_ta_map_lwp2thr_ftype *td_ta_map_lwp2thr_p;
160   td_ta_thr_iter_ftype *td_ta_thr_iter_p;
161   td_thr_validate_ftype *td_thr_validate_p;
162   td_thr_get_info_ftype *td_thr_get_info_p;
163   td_thr_tls_get_addr_ftype *td_thr_tls_get_addr_p;
164   td_thr_tlsbase_ftype *td_thr_tlsbase_p;
165 };
166
167 /* List of known processes using thread_db, and the required
168    bookkeeping.  */
169 struct thread_db_info *thread_db_list;
170
171 static void thread_db_find_new_threads_1 (ptid_t ptid);
172 static void thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new);
173
174 static void check_thread_signals (void);
175
176 static struct thread_info *record_thread
177   (struct thread_db_info *info, struct thread_info *tp,
178    ptid_t ptid, const td_thrhandle_t *th_p, const td_thrinfo_t *ti_p);
179
180 /* Add the current inferior to the list of processes using libpthread.
181    Return a pointer to the newly allocated object that was added to
182    THREAD_DB_LIST.  HANDLE is the handle returned by dlopen'ing
183    LIBTHREAD_DB_SO.  */
184
185 static struct thread_db_info *
186 add_thread_db_info (void *handle)
187 {
188   struct thread_db_info *info = XCNEW (struct thread_db_info);
189
190   info->pid = ptid_get_pid (inferior_ptid);
191   info->handle = handle;
192
193   /* The workaround works by reading from /proc/pid/status, so it is
194      disabled for core files.  */
195   if (target_has_execution)
196     info->need_stale_parent_threads_check = 1;
197
198   info->next = thread_db_list;
199   thread_db_list = info;
200
201   return info;
202 }
203
204 /* Return the thread_db_info object representing the bookkeeping
205    related to process PID, if any; NULL otherwise.  */
206
207 static struct thread_db_info *
208 get_thread_db_info (int pid)
209 {
210   struct thread_db_info *info;
211
212   for (info = thread_db_list; info; info = info->next)
213     if (pid == info->pid)
214       return info;
215
216   return NULL;
217 }
218
219 /* When PID has exited or has been detached, we no longer want to keep
220    track of it as using libpthread.  Call this function to discard
221    thread_db related info related to PID.  Note that this closes
222    LIBTHREAD_DB_SO's dlopen'ed handle.  */
223
224 static void
225 delete_thread_db_info (int pid)
226 {
227   struct thread_db_info *info, *info_prev;
228
229   info_prev = NULL;
230
231   for (info = thread_db_list; info; info_prev = info, info = info->next)
232     if (pid == info->pid)
233       break;
234
235   if (info == NULL)
236     return;
237
238   if (info->handle != NULL)
239     dlclose (info->handle);
240
241   xfree (info->filename);
242
243   if (info_prev)
244     info_prev->next = info->next;
245   else
246     thread_db_list = info->next;
247
248   xfree (info);
249 }
250
251 /* Use "struct private_thread_info" to cache thread state.  This is
252    a substantial optimization.  */
253
254 struct private_thread_info
255 {
256   /* Flag set when we see a TD_DEATH event for this thread.  */
257   unsigned int dying:1;
258
259   /* Cached thread state.  */
260   td_thrhandle_t th;
261   thread_t tid;
262 };
263 \f
264
265 static char *
266 thread_db_err_str (td_err_e err)
267 {
268   static char buf[64];
269
270   switch (err)
271     {
272     case TD_OK:
273       return "generic 'call succeeded'";
274     case TD_ERR:
275       return "generic error";
276     case TD_NOTHR:
277       return "no thread to satisfy query";
278     case TD_NOSV:
279       return "no sync handle to satisfy query";
280     case TD_NOLWP:
281       return "no LWP to satisfy query";
282     case TD_BADPH:
283       return "invalid process handle";
284     case TD_BADTH:
285       return "invalid thread handle";
286     case TD_BADSH:
287       return "invalid synchronization handle";
288     case TD_BADTA:
289       return "invalid thread agent";
290     case TD_BADKEY:
291       return "invalid key";
292     case TD_NOMSG:
293       return "no event message for getmsg";
294     case TD_NOFPREGS:
295       return "FPU register set not available";
296     case TD_NOLIBTHREAD:
297       return "application not linked with libthread";
298     case TD_NOEVENT:
299       return "requested event is not supported";
300     case TD_NOCAPAB:
301       return "capability not available";
302     case TD_DBERR:
303       return "debugger service failed";
304     case TD_NOAPLIC:
305       return "operation not applicable to";
306     case TD_NOTSD:
307       return "no thread-specific data for this thread";
308     case TD_MALLOC:
309       return "malloc failed";
310     case TD_PARTIALREG:
311       return "only part of register set was written/read";
312     case TD_NOXREGS:
313       return "X register set not available for this thread";
314 #ifdef THREAD_DB_HAS_TD_NOTALLOC
315     case TD_NOTALLOC:
316       return "thread has not yet allocated TLS for given module";
317 #endif
318 #ifdef THREAD_DB_HAS_TD_VERSION
319     case TD_VERSION:
320       return "versions of libpthread and libthread_db do not match";
321 #endif
322 #ifdef THREAD_DB_HAS_TD_NOTLS
323     case TD_NOTLS:
324       return "there is no TLS segment in the given module";
325 #endif
326     default:
327       snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
328       return buf;
329     }
330 }
331
332 /* Fetch the user-level thread id of PTID.  */
333
334 static struct thread_info *
335 thread_from_lwp (ptid_t ptid)
336 {
337   td_thrhandle_t th;
338   td_thrinfo_t ti;
339   td_err_e err;
340   struct thread_db_info *info;
341   struct thread_info *tp;
342
343   /* Just in case td_ta_map_lwp2thr doesn't initialize it completely.  */
344   th.th_unique = 0;
345
346   /* This ptid comes from linux-nat.c, which should always fill in the
347      LWP.  */
348   gdb_assert (ptid_get_lwp (ptid) != 0);
349
350   info = get_thread_db_info (ptid_get_pid (ptid));
351
352   /* Access an lwp we know is stopped.  */
353   info->proc_handle.ptid = ptid;
354   err = info->td_ta_map_lwp2thr_p (info->thread_agent, ptid_get_lwp (ptid),
355                                    &th);
356   if (err != TD_OK)
357     error (_("Cannot find user-level thread for LWP %ld: %s"),
358            ptid_get_lwp (ptid), thread_db_err_str (err));
359
360   err = info->td_thr_get_info_p (&th, &ti);
361   if (err != TD_OK)
362     error (_("thread_get_info_callback: cannot get thread info: %s"),
363            thread_db_err_str (err));
364
365   /* Fill the cache.  */
366   tp = find_thread_ptid (ptid);
367   return record_thread (info, tp, ptid, &th, &ti);
368 }
369 \f
370
371 /* See linux-nat.h.  */
372
373 int
374 thread_db_notice_clone (ptid_t parent, ptid_t child)
375 {
376   struct thread_db_info *info;
377
378   info = get_thread_db_info (ptid_get_pid (child));
379
380   if (info == NULL)
381     return 0;
382
383   thread_from_lwp (child);
384
385   /* If we do not know about the main thread yet, this would be a good
386      time to find it.  */
387   thread_from_lwp (parent);
388   return 1;
389 }
390
391 static void *
392 verbose_dlsym (void *handle, const char *name)
393 {
394   void *sym = dlsym (handle, name);
395   if (sym == NULL)
396     warning (_("Symbol \"%s\" not found in libthread_db: %s"),
397              name, dlerror ());
398   return sym;
399 }
400
401 /* Verify inferior's '\0'-terminated symbol VER_SYMBOL starts with "%d.%d" and
402    return 1 if this version is lower (and not equal) to
403    VER_MAJOR_MIN.VER_MINOR_MIN.  Return 0 in all other cases.  */
404
405 static int
406 inferior_has_bug (const char *ver_symbol, int ver_major_min, int ver_minor_min)
407 {
408   struct bound_minimal_symbol version_msym;
409   CORE_ADDR version_addr;
410   char *version;
411   int err, got, retval = 0;
412
413   version_msym = lookup_minimal_symbol (ver_symbol, NULL, NULL);
414   if (version_msym.minsym == NULL)
415     return 0;
416
417   version_addr = BMSYMBOL_VALUE_ADDRESS (version_msym);
418   got = target_read_string (version_addr, &version, 32, &err);
419   if (err == 0 && memchr (version, 0, got) == &version[got -1])
420     {
421       int major, minor;
422
423       retval = (sscanf (version, "%d.%d", &major, &minor) == 2
424                 && (major < ver_major_min
425                     || (major == ver_major_min && minor < ver_minor_min)));
426     }
427   xfree (version);
428
429   return retval;
430 }
431
432 /* Similar as thread_db_find_new_threads_1, but try to silently ignore errors
433    if appropriate.
434
435    Return 1 if the caller should abort libthread_db initialization.  Return 0
436    otherwise.  */
437
438 static int
439 thread_db_find_new_threads_silently (ptid_t ptid)
440 {
441
442   TRY
443     {
444       thread_db_find_new_threads_2 (ptid, 1);
445     }
446
447   CATCH (except, RETURN_MASK_ERROR)
448     {
449       if (libthread_db_debug)
450         exception_fprintf (gdb_stdlog, except,
451                            "Warning: thread_db_find_new_threads_silently: ");
452
453       /* There is a bug fixed between nptl 2.6.1 and 2.7 by
454            commit 7d9d8bd18906fdd17364f372b160d7ab896ce909
455          where calls to td_thr_get_info fail with TD_ERR for statically linked
456          executables if td_thr_get_info is called before glibc has initialized
457          itself.
458          
459          If the nptl bug is NOT present in the inferior and still thread_db
460          reports an error return 1.  It means the inferior has corrupted thread
461          list and GDB should fall back only to LWPs.
462
463          If the nptl bug is present in the inferior return 0 to silently ignore
464          such errors, and let gdb enumerate threads again later.  In such case
465          GDB cannot properly display LWPs if the inferior thread list is
466          corrupted.  For core files it does not apply, no 'later enumeration'
467          is possible.  */
468
469       if (!target_has_execution || !inferior_has_bug ("nptl_version", 2, 7))
470         {
471           exception_fprintf (gdb_stderr, except,
472                              _("Warning: couldn't activate thread debugging "
473                                "using libthread_db: "));
474           return 1;
475         }
476     }
477   END_CATCH
478
479   return 0;
480 }
481
482 /* Lookup a library in which given symbol resides.
483    Note: this is looking in GDB process, not in the inferior.
484    Returns library name, or NULL.  */
485
486 static const char *
487 dladdr_to_soname (const void *addr)
488 {
489   Dl_info info;
490
491   if (dladdr (addr, &info) != 0)
492     return info.dli_fname;
493   return NULL;
494 }
495
496 /* Attempt to initialize dlopen()ed libthread_db, described by INFO.
497    Return 1 on success.
498    Failure could happen if libthread_db does not have symbols we expect,
499    or when it refuses to work with the current inferior (e.g. due to
500    version mismatch between libthread_db and libpthread).  */
501
502 static int
503 try_thread_db_load_1 (struct thread_db_info *info)
504 {
505   td_err_e err;
506
507   /* Initialize pointers to the dynamic library functions we will use.
508      Essential functions first.  */
509
510 #define TDB_VERBOSE_DLSYM(info, func)                   \
511   info->func ## _p = (func ## _ftype *) verbose_dlsym (info->handle, #func)
512
513 #define TDB_DLSYM(info, func)                   \
514   info->func ## _p = (func ## _ftype *) dlsym (info->handle, #func)
515
516 #define CHK(a)                                                          \
517   do                                                                    \
518     {                                                                   \
519       if ((a) == NULL)                                                  \
520         return 0;                                                       \
521   } while (0)
522
523   CHK (TDB_VERBOSE_DLSYM (info, td_init));
524
525   err = info->td_init_p ();
526   if (err != TD_OK)
527     {
528       warning (_("Cannot initialize libthread_db: %s"),
529                thread_db_err_str (err));
530       return 0;
531     }
532
533   CHK (TDB_VERBOSE_DLSYM (info, td_ta_new));
534
535   /* Initialize the structure that identifies the child process.  */
536   info->proc_handle.ptid = inferior_ptid;
537
538   /* Now attempt to open a connection to the thread library.  */
539   err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
540   if (err != TD_OK)
541     {
542       if (libthread_db_debug)
543         fprintf_unfiltered (gdb_stdlog, _("td_ta_new failed: %s\n"),
544                             thread_db_err_str (err));
545       else
546         switch (err)
547           {
548             case TD_NOLIBTHREAD:
549 #ifdef THREAD_DB_HAS_TD_VERSION
550             case TD_VERSION:
551 #endif
552               /* The errors above are not unexpected and silently ignored:
553                  they just mean we haven't found correct version of
554                  libthread_db yet.  */
555               break;
556             default:
557               warning (_("td_ta_new failed: %s"), thread_db_err_str (err));
558           }
559       return 0;
560     }
561
562   /* These are essential.  */
563   CHK (TDB_VERBOSE_DLSYM (info, td_ta_map_lwp2thr));
564   CHK (TDB_VERBOSE_DLSYM (info, td_thr_validate));
565   CHK (TDB_VERBOSE_DLSYM (info, td_thr_get_info));
566
567   /* These are not essential.  */
568   TDB_DLSYM (info, td_thr_tls_get_addr);
569   TDB_DLSYM (info, td_thr_tlsbase);
570
571   /* It's best to avoid td_ta_thr_iter if possible.  That walks data
572      structures in the inferior's address space that may be corrupted,
573      or, if the target is running, may change while we walk them.  If
574      there's execution (and /proc is mounted), then we're already
575      attached to all LWPs.  Use thread_from_lwp, which uses
576      td_ta_map_lwp2thr instead, which does not walk the thread list.
577
578      td_ta_map_lwp2thr uses ps_get_thread_area, but we can't use that
579      currently on core targets, as it uses ptrace directly.  */
580   if (target_has_execution
581       && linux_proc_task_list_dir_exists (ptid_get_pid (inferior_ptid)))
582     info->td_ta_thr_iter_p = NULL;
583   else
584     CHK (TDB_VERBOSE_DLSYM (info, td_ta_thr_iter));
585
586 #undef TDB_VERBOSE_DLSYM
587 #undef TDB_DLSYM
588 #undef CHK
589
590   if (info->td_ta_thr_iter_p == NULL)
591     {
592       struct lwp_info *lp;
593       int pid = ptid_get_pid (inferior_ptid);
594
595       linux_stop_and_wait_all_lwps ();
596
597       ALL_LWPS (lp)
598         if (ptid_get_pid (lp->ptid) == pid)
599           thread_from_lwp (lp->ptid);
600
601       linux_unstop_all_lwps ();
602     }
603   else if (thread_db_find_new_threads_silently (inferior_ptid) != 0)
604     {
605       /* Even if libthread_db initializes, if the thread list is
606          corrupted, we'd not manage to list any threads.  Better reject this
607          thread_db, and fall back to at least listing LWPs.  */
608       return 0;
609     }
610
611   printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
612
613   if (*libthread_db_search_path || libthread_db_debug)
614     {
615       struct ui_file *file;
616       const char *library;
617
618       library = dladdr_to_soname ((const void *) *info->td_ta_new_p);
619       if (library == NULL)
620         library = LIBTHREAD_DB_SO;
621
622       /* If we'd print this to gdb_stdout when debug output is
623          disabled, still print it to gdb_stdout if debug output is
624          enabled.  User visible output should not depend on debug
625          settings.  */
626       file = *libthread_db_search_path != '\0' ? gdb_stdout : gdb_stdlog;
627       fprintf_unfiltered (file, _("Using host libthread_db library \"%s\".\n"),
628                           library);
629     }
630
631   /* The thread library was detected.  Activate the thread_db target
632      if this is the first process using it.  */
633   if (thread_db_list->next == NULL)
634     push_target (&thread_db_ops);
635
636   return 1;
637 }
638
639 /* Attempt to use LIBRARY as libthread_db.  LIBRARY could be absolute,
640    relative, or just LIBTHREAD_DB.  */
641
642 static int
643 try_thread_db_load (const char *library, int check_auto_load_safe)
644 {
645   void *handle;
646   struct thread_db_info *info;
647
648   if (libthread_db_debug)
649     fprintf_unfiltered (gdb_stdlog,
650                         _("Trying host libthread_db library: %s.\n"),
651                         library);
652
653   if (check_auto_load_safe)
654     {
655       if (access (library, R_OK) != 0)
656         {
657           /* Do not print warnings by file_is_auto_load_safe if the library does
658              not exist at this place.  */
659           if (libthread_db_debug)
660             fprintf_unfiltered (gdb_stdlog, _("open failed: %s.\n"),
661                                 safe_strerror (errno));
662           return 0;
663         }
664
665       if (!file_is_auto_load_safe (library, _("auto-load: Loading libthread-db "
666                                               "library \"%s\" from explicit "
667                                               "directory.\n"),
668                                    library))
669         return 0;
670     }
671
672   handle = dlopen (library, RTLD_NOW);
673   if (handle == NULL)
674     {
675       if (libthread_db_debug)
676         fprintf_unfiltered (gdb_stdlog, _("dlopen failed: %s.\n"), dlerror ());
677       return 0;
678     }
679
680   if (libthread_db_debug && strchr (library, '/') == NULL)
681     {
682       void *td_init;
683
684       td_init = dlsym (handle, "td_init");
685       if (td_init != NULL)
686         {
687           const char *const libpath = dladdr_to_soname (td_init);
688
689           if (libpath != NULL)
690             fprintf_unfiltered (gdb_stdlog, _("Host %s resolved to: %s.\n"),
691                                library, libpath);
692         }
693     }
694
695   info = add_thread_db_info (handle);
696
697   /* Do not save system library name, that one is always trusted.  */
698   if (strchr (library, '/') != NULL)
699     info->filename = gdb_realpath (library);
700
701   if (try_thread_db_load_1 (info))
702     return 1;
703
704   /* This library "refused" to work on current inferior.  */
705   delete_thread_db_info (ptid_get_pid (inferior_ptid));
706   return 0;
707 }
708
709 /* Subroutine of try_thread_db_load_from_pdir to simplify it.
710    Try loading libthread_db in directory(OBJ)/SUBDIR.
711    SUBDIR may be NULL.  It may also be something like "../lib64".
712    The result is true for success.  */
713
714 static int
715 try_thread_db_load_from_pdir_1 (struct objfile *obj, const char *subdir)
716 {
717   struct cleanup *cleanup;
718   char *path, *cp;
719   int result;
720   const char *obj_name = objfile_name (obj);
721   int alloc_len;
722
723   if (obj_name[0] != '/')
724     {
725       warning (_("Expected absolute pathname for libpthread in the"
726                  " inferior, but got %s."), obj_name);
727       return 0;
728     }
729
730   alloc_len = (strlen (obj_name)
731                + (subdir ? strlen (subdir) + 1 : 0)
732                + 1 + strlen (LIBTHREAD_DB_SO) + 1);
733   path = (char *) xmalloc (alloc_len);
734   cleanup = make_cleanup (xfree, path);
735
736   strcpy (path, obj_name);
737   cp = strrchr (path, '/');
738   /* This should at minimum hit the first character.  */
739   gdb_assert (cp != NULL);
740   cp[1] = '\0';
741   if (subdir != NULL)
742     {
743       strcat (cp, subdir);
744       strcat (cp, "/");
745     }
746   strcat (cp, LIBTHREAD_DB_SO);
747
748   result = try_thread_db_load (path, 1);
749
750   do_cleanups (cleanup);
751   return result;
752 }
753
754 /* Handle $pdir in libthread-db-search-path.
755    Look for libthread_db in directory(libpthread)/SUBDIR.
756    SUBDIR may be NULL.  It may also be something like "../lib64".
757    The result is true for success.  */
758
759 static int
760 try_thread_db_load_from_pdir (const char *subdir)
761 {
762   struct objfile *obj;
763
764   if (!auto_load_thread_db)
765     return 0;
766
767   ALL_OBJFILES (obj)
768     if (libpthread_name_p (objfile_name (obj)))
769       {
770         if (try_thread_db_load_from_pdir_1 (obj, subdir))
771           return 1;
772
773         /* We may have found the separate-debug-info version of
774            libpthread, and it may live in a directory without a matching
775            libthread_db.  */
776         if (obj->separate_debug_objfile_backlink != NULL)
777           return try_thread_db_load_from_pdir_1 (obj->separate_debug_objfile_backlink,
778                                                  subdir);
779
780         return 0;
781       }
782
783   return 0;
784 }
785
786 /* Handle $sdir in libthread-db-search-path.
787    Look for libthread_db in the system dirs, or wherever a plain
788    dlopen(file_without_path) will look.
789    The result is true for success.  */
790
791 static int
792 try_thread_db_load_from_sdir (void)
793 {
794   return try_thread_db_load (LIBTHREAD_DB_SO, 0);
795 }
796
797 /* Try to load libthread_db from directory DIR of length DIR_LEN.
798    The result is true for success.  */
799
800 static int
801 try_thread_db_load_from_dir (const char *dir, size_t dir_len)
802 {
803   struct cleanup *cleanup;
804   char *path;
805   int result;
806
807   if (!auto_load_thread_db)
808     return 0;
809
810   path = (char *) xmalloc (dir_len + 1 + strlen (LIBTHREAD_DB_SO) + 1);
811   cleanup = make_cleanup (xfree, path);
812
813   memcpy (path, dir, dir_len);
814   path[dir_len] = '/';
815   strcpy (path + dir_len + 1, LIBTHREAD_DB_SO);
816
817   result = try_thread_db_load (path, 1);
818
819   do_cleanups (cleanup);
820   return result;
821 }
822
823 /* Search libthread_db_search_path for libthread_db which "agrees"
824    to work on current inferior.
825    The result is true for success.  */
826
827 static int
828 thread_db_load_search (void)
829 {
830   VEC (char_ptr) *dir_vec;
831   struct cleanup *cleanups;
832   char *this_dir;
833   int i, rc = 0;
834
835   dir_vec = dirnames_to_char_ptr_vec (libthread_db_search_path);
836   cleanups = make_cleanup_free_char_ptr_vec (dir_vec);
837
838   for (i = 0; VEC_iterate (char_ptr, dir_vec, i, this_dir); ++i)
839     {
840       const int pdir_len = sizeof ("$pdir") - 1;
841       size_t this_dir_len;
842
843       this_dir_len = strlen (this_dir);
844
845       if (strncmp (this_dir, "$pdir", pdir_len) == 0
846           && (this_dir[pdir_len] == '\0'
847               || this_dir[pdir_len] == '/'))
848         {
849           char *subdir = NULL;
850           struct cleanup *free_subdir_cleanup
851             = make_cleanup (null_cleanup, NULL);
852
853           if (this_dir[pdir_len] == '/')
854             {
855               subdir = (char *) xmalloc (strlen (this_dir));
856               make_cleanup (xfree, subdir);
857               strcpy (subdir, this_dir + pdir_len + 1);
858             }
859           rc = try_thread_db_load_from_pdir (subdir);
860           do_cleanups (free_subdir_cleanup);
861           if (rc)
862             break;
863         }
864       else if (strcmp (this_dir, "$sdir") == 0)
865         {
866           if (try_thread_db_load_from_sdir ())
867             {
868               rc = 1;
869               break;
870             }
871         }
872       else
873         {
874           if (try_thread_db_load_from_dir (this_dir, this_dir_len))
875             {
876               rc = 1;
877               break;
878             }
879         }
880     }
881
882   do_cleanups (cleanups);
883   if (libthread_db_debug)
884     fprintf_unfiltered (gdb_stdlog,
885                         _("thread_db_load_search returning %d\n"), rc);
886   return rc;
887 }
888
889 /* Return non-zero if the inferior has a libpthread.  */
890
891 static int
892 has_libpthread (void)
893 {
894   struct objfile *obj;
895
896   ALL_OBJFILES (obj)
897     if (libpthread_name_p (objfile_name (obj)))
898       return 1;
899
900   return 0;
901 }
902
903 /* Attempt to load and initialize libthread_db.
904    Return 1 on success.  */
905
906 static int
907 thread_db_load (void)
908 {
909   struct thread_db_info *info;
910
911   info = get_thread_db_info (ptid_get_pid (inferior_ptid));
912
913   if (info != NULL)
914     return 1;
915
916   /* Don't attempt to use thread_db on executables not running
917      yet.  */
918   if (!target_has_registers)
919     return 0;
920
921   /* Don't attempt to use thread_db for remote targets.  */
922   if (!(target_can_run (&current_target) || core_bfd))
923     return 0;
924
925   if (thread_db_load_search ())
926     return 1;
927
928   /* We couldn't find a libthread_db.
929      If the inferior has a libpthread warn the user.  */
930   if (has_libpthread ())
931     {
932       warning (_("Unable to find libthread_db matching inferior's thread"
933                  " library, thread debugging will not be available."));
934       return 0;
935     }
936
937   /* Either this executable isn't using libpthread at all, or it is
938      statically linked.  Since we can't easily distinguish these two cases,
939      no warning is issued.  */
940   return 0;
941 }
942
943 static void
944 check_thread_signals (void)
945 {
946   if (!thread_signals)
947     {
948       sigset_t mask;
949       int i;
950
951       lin_thread_get_thread_signals (&mask);
952       sigemptyset (&thread_stop_set);
953       sigemptyset (&thread_print_set);
954
955       for (i = 1; i < NSIG; i++)
956         {
957           if (sigismember (&mask, i))
958             {
959               if (signal_stop_update (gdb_signal_from_host (i), 0))
960                 sigaddset (&thread_stop_set, i);
961               if (signal_print_update (gdb_signal_from_host (i), 0))
962                 sigaddset (&thread_print_set, i);
963               thread_signals = 1;
964             }
965         }
966     }
967 }
968
969 /* Check whether thread_db is usable.  This function is called when
970    an inferior is created (or otherwise acquired, e.g. attached to)
971    and when new shared libraries are loaded into a running process.  */
972
973 void
974 check_for_thread_db (void)
975 {
976   /* Do nothing if we couldn't load libthread_db.so.1.  */
977   if (!thread_db_load ())
978     return;
979 }
980
981 /* This function is called via the new_objfile observer.  */
982
983 static void
984 thread_db_new_objfile (struct objfile *objfile)
985 {
986   /* This observer must always be called with inferior_ptid set
987      correctly.  */
988
989   if (objfile != NULL
990       /* libpthread with separate debug info has its debug info file already
991          loaded (and notified without successful thread_db initialization)
992          the time observer_notify_new_objfile is called for the library itself.
993          Static executables have their separate debug info loaded already
994          before the inferior has started.  */
995       && objfile->separate_debug_objfile_backlink == NULL
996       /* Only check for thread_db if we loaded libpthread,
997          or if this is the main symbol file.
998          We need to check OBJF_MAINLINE to handle the case of debugging
999          a statically linked executable AND the symbol file is specified AFTER
1000          the exec file is loaded (e.g., gdb -c core ; file foo).
1001          For dynamically linked executables, libpthread can be near the end
1002          of the list of shared libraries to load, and in an app of several
1003          thousand shared libraries, this can otherwise be painful.  */
1004       && ((objfile->flags & OBJF_MAINLINE) != 0
1005           || libpthread_name_p (objfile_name (objfile))))
1006     check_for_thread_db ();
1007 }
1008
1009 static void
1010 check_pid_namespace_match (void)
1011 {
1012   /* Check is only relevant for local targets targets.  */
1013   if (target_can_run (&current_target))
1014     {
1015       /* If the child is in a different PID namespace, its idea of its
1016          PID will differ from our idea of its PID.  When we scan the
1017          child's thread list, we'll mistakenly think it has no threads
1018          since the thread PID fields won't match the PID we give to
1019          libthread_db.  */
1020       if (!linux_ns_same (ptid_get_pid (inferior_ptid), LINUX_NS_PID))
1021         {
1022           warning (_ ("Target and debugger are in different PID "
1023                       "namespaces; thread lists and other data are "
1024                       "likely unreliable.  "
1025                       "Connect to gdbserver inside the container."));
1026         }
1027     }
1028 }
1029
1030 /* This function is called via the inferior_created observer.
1031    This handles the case of debugging statically linked executables.  */
1032
1033 static void
1034 thread_db_inferior_created (struct target_ops *target, int from_tty)
1035 {
1036   check_pid_namespace_match ();
1037   check_for_thread_db ();
1038 }
1039
1040 /* Update the thread's state (what's displayed in "info threads"),
1041    from libthread_db thread state information.  */
1042
1043 static void
1044 update_thread_state (struct private_thread_info *priv,
1045                      const td_thrinfo_t *ti_p)
1046 {
1047   priv->dying = (ti_p->ti_state == TD_THR_UNKNOWN
1048                  || ti_p->ti_state == TD_THR_ZOMBIE);
1049 }
1050
1051 /* Record a new thread in GDB's thread list.  Creates the thread's
1052    private info.  If TP is NULL or TP is marked as having exited,
1053    creates a new thread.  Otherwise, uses TP.  */
1054
1055 static struct thread_info *
1056 record_thread (struct thread_db_info *info,
1057                struct thread_info *tp,
1058                ptid_t ptid, const td_thrhandle_t *th_p,
1059                const td_thrinfo_t *ti_p)
1060 {
1061   struct private_thread_info *priv;
1062
1063   /* A thread ID of zero may mean the thread library has not
1064      initialized yet.  Leave private == NULL until the thread library
1065      has initialized.  */
1066   if (ti_p->ti_tid == 0)
1067     return tp;
1068
1069   /* Construct the thread's private data.  */
1070   priv = XCNEW (struct private_thread_info);
1071
1072   priv->th = *th_p;
1073   priv->tid = ti_p->ti_tid;
1074   update_thread_state (priv, ti_p);
1075
1076   /* Add the thread to GDB's thread list.  If we already know about a
1077      thread with this PTID, but it's marked exited, then the kernel
1078      reused the tid of an old thread.  */
1079   if (tp == NULL || tp->state == THREAD_EXITED)
1080     tp = add_thread_with_info (ptid, priv);
1081   else
1082     tp->priv = priv;
1083
1084   if (target_has_execution)
1085     check_thread_signals ();
1086
1087   return tp;
1088 }
1089
1090 static void
1091 thread_db_detach (struct target_ops *ops, const char *args, int from_tty)
1092 {
1093   struct target_ops *target_beneath = find_target_beneath (ops);
1094   struct thread_db_info *info;
1095
1096   info = get_thread_db_info (ptid_get_pid (inferior_ptid));
1097
1098   if (info)
1099     delete_thread_db_info (ptid_get_pid (inferior_ptid));
1100
1101   target_beneath->to_detach (target_beneath, args, from_tty);
1102
1103   /* NOTE: From this point on, inferior_ptid is null_ptid.  */
1104
1105   /* If there are no more processes using libpthread, detach the
1106      thread_db target ops.  */
1107   if (!thread_db_list)
1108     unpush_target (&thread_db_ops);
1109 }
1110
1111 static ptid_t
1112 thread_db_wait (struct target_ops *ops,
1113                 ptid_t ptid, struct target_waitstatus *ourstatus,
1114                 int options)
1115 {
1116   struct thread_db_info *info;
1117   struct target_ops *beneath = find_target_beneath (ops);
1118
1119   ptid = beneath->to_wait (beneath, ptid, ourstatus, options);
1120
1121   if (ourstatus->kind == TARGET_WAITKIND_IGNORE)
1122     return ptid;
1123
1124   if (ourstatus->kind == TARGET_WAITKIND_EXITED
1125       || ourstatus->kind == TARGET_WAITKIND_SIGNALLED)
1126     return ptid;
1127
1128   info = get_thread_db_info (ptid_get_pid (ptid));
1129
1130   /* If this process isn't using thread_db, we're done.  */
1131   if (info == NULL)
1132     return ptid;
1133
1134   if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1135     {
1136       /* New image, it may or may not end up using thread_db.  Assume
1137          not unless we find otherwise.  */
1138       delete_thread_db_info (ptid_get_pid (ptid));
1139       if (!thread_db_list)
1140         unpush_target (&thread_db_ops);
1141
1142       return ptid;
1143     }
1144
1145   /* Fill in the thread's user-level thread id and status.  */
1146   thread_from_lwp (ptid);
1147
1148   return ptid;
1149 }
1150
1151 static void
1152 thread_db_mourn_inferior (struct target_ops *ops)
1153 {
1154   struct target_ops *target_beneath = find_target_beneath (ops);
1155
1156   delete_thread_db_info (ptid_get_pid (inferior_ptid));
1157
1158   target_beneath->to_mourn_inferior (target_beneath);
1159
1160   /* Detach thread_db target ops.  */
1161   if (!thread_db_list)
1162     unpush_target (ops);
1163 }
1164
1165 struct callback_data
1166 {
1167   struct thread_db_info *info;
1168   int new_threads;
1169 };
1170
1171 static int
1172 find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1173 {
1174   td_thrinfo_t ti;
1175   td_err_e err;
1176   ptid_t ptid;
1177   struct thread_info *tp;
1178   struct callback_data *cb_data = (struct callback_data *) data;
1179   struct thread_db_info *info = cb_data->info;
1180
1181   err = info->td_thr_get_info_p (th_p, &ti);
1182   if (err != TD_OK)
1183     error (_("find_new_threads_callback: cannot get thread info: %s"),
1184            thread_db_err_str (err));
1185
1186   if (ti.ti_lid == -1)
1187     {
1188       /* A thread with kernel thread ID -1 is either a thread that
1189          exited and was joined, or a thread that is being created but
1190          hasn't started yet, and that is reusing the tcb/stack of a
1191          thread that previously exited and was joined.  (glibc marks
1192          terminated and joined threads with kernel thread ID -1.  See
1193          glibc PR17707.  */
1194       if (libthread_db_debug)
1195         fprintf_unfiltered (gdb_stdlog,
1196                             "thread_db: skipping exited and "
1197                             "joined thread (0x%lx)\n",
1198                             (unsigned long) ti.ti_tid);
1199       return 0;
1200     }
1201
1202   if (ti.ti_tid == 0)
1203     {
1204       /* A thread ID of zero means that this is the main thread, but
1205          glibc has not yet initialized thread-local storage and the
1206          pthread library.  We do not know what the thread's TID will
1207          be yet.  */
1208
1209       /* In that case, we're not stopped in a fork syscall and don't
1210          need this glibc bug workaround.  */
1211       info->need_stale_parent_threads_check = 0;
1212
1213       return 0;
1214     }
1215
1216   /* Ignore stale parent threads, caused by glibc/BZ5983.  This is a
1217      bit expensive, as it needs to open /proc/pid/status, so try to
1218      avoid doing the work if we know we don't have to.  */
1219   if (info->need_stale_parent_threads_check)
1220     {
1221       int tgid = linux_proc_get_tgid (ti.ti_lid);
1222
1223       if (tgid != -1 && tgid != info->pid)
1224         return 0;
1225     }
1226
1227   ptid = ptid_build (info->pid, ti.ti_lid, 0);
1228   tp = find_thread_ptid (ptid);
1229   if (tp == NULL || tp->priv == NULL)
1230     record_thread (info, tp, ptid, th_p, &ti);
1231
1232   return 0;
1233 }
1234
1235 /* Helper for thread_db_find_new_threads_2.
1236    Returns number of new threads found.  */
1237
1238 static int
1239 find_new_threads_once (struct thread_db_info *info, int iteration,
1240                        td_err_e *errp)
1241 {
1242   struct callback_data data;
1243   td_err_e err = TD_ERR;
1244
1245   data.info = info;
1246   data.new_threads = 0;
1247
1248   /* See comment in thread_db_update_thread_list.  */
1249   gdb_assert (info->td_ta_thr_iter_p != NULL);
1250
1251   TRY
1252     {
1253       /* Iterate over all user-space threads to discover new threads.  */
1254       err = info->td_ta_thr_iter_p (info->thread_agent,
1255                                     find_new_threads_callback,
1256                                     &data,
1257                                     TD_THR_ANY_STATE,
1258                                     TD_THR_LOWEST_PRIORITY,
1259                                     TD_SIGNO_MASK,
1260                                     TD_THR_ANY_USER_FLAGS);
1261     }
1262   CATCH (except, RETURN_MASK_ERROR)
1263     {
1264       if (libthread_db_debug)
1265         {
1266           exception_fprintf (gdb_stdlog, except,
1267                              "Warning: find_new_threads_once: ");
1268         }
1269     }
1270   END_CATCH
1271
1272   if (libthread_db_debug)
1273     {
1274       fprintf_unfiltered (gdb_stdlog,
1275                           _("Found %d new threads in iteration %d.\n"),
1276                           data.new_threads, iteration);
1277     }
1278
1279   if (errp != NULL)
1280     *errp = err;
1281
1282   return data.new_threads;
1283 }
1284
1285 /* Search for new threads, accessing memory through stopped thread
1286    PTID.  If UNTIL_NO_NEW is true, repeat searching until several
1287    searches in a row do not discover any new threads.  */
1288
1289 static void
1290 thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new)
1291 {
1292   td_err_e err = TD_OK;
1293   struct thread_db_info *info;
1294   int i, loop;
1295
1296   info = get_thread_db_info (ptid_get_pid (ptid));
1297
1298   /* Access an lwp we know is stopped.  */
1299   info->proc_handle.ptid = ptid;
1300
1301   if (until_no_new)
1302     {
1303       /* Require 4 successive iterations which do not find any new threads.
1304          The 4 is a heuristic: there is an inherent race here, and I have
1305          seen that 2 iterations in a row are not always sufficient to
1306          "capture" all threads.  */
1307       for (i = 0, loop = 0; loop < 4 && err == TD_OK; ++i, ++loop)
1308         if (find_new_threads_once (info, i, &err) != 0)
1309           {
1310             /* Found some new threads.  Restart the loop from beginning.  */
1311             loop = -1;
1312           }
1313     }
1314   else
1315     find_new_threads_once (info, 0, &err);
1316
1317   if (err != TD_OK)
1318     error (_("Cannot find new threads: %s"), thread_db_err_str (err));
1319 }
1320
1321 static void
1322 thread_db_find_new_threads_1 (ptid_t ptid)
1323 {
1324   thread_db_find_new_threads_2 (ptid, 0);
1325 }
1326
1327 /* Implement the to_update_thread_list target method for this
1328    target.  */
1329
1330 static void
1331 thread_db_update_thread_list (struct target_ops *ops)
1332 {
1333   struct thread_db_info *info;
1334   struct inferior *inf;
1335
1336   prune_threads ();
1337
1338   ALL_INFERIORS (inf)
1339     {
1340       struct thread_info *thread;
1341
1342       if (inf->pid == 0)
1343         continue;
1344
1345       info = get_thread_db_info (inf->pid);
1346       if (info == NULL)
1347         continue;
1348
1349       thread = any_live_thread_of_process (inf->pid);
1350       if (thread == NULL || thread->executing)
1351         continue;
1352
1353       /* It's best to avoid td_ta_thr_iter if possible.  That walks
1354          data structures in the inferior's address space that may be
1355          corrupted, or, if the target is running, the list may change
1356          while we walk it.  In the latter case, it's possible that a
1357          thread exits just at the exact time that causes GDB to get
1358          stuck in an infinite loop.  To avoid pausing all threads
1359          whenever the core wants to refresh the thread list, we
1360          instead use thread_from_lwp immediately when we see an LWP
1361          stop.  That uses thread_db entry points that do not walk
1362          libpthread's thread list, so should be safe, as well as more
1363          efficient.  */
1364       if (target_has_execution_1 (thread->ptid))
1365         continue;
1366
1367       thread_db_find_new_threads_1 (thread->ptid);
1368     }
1369
1370   /* Give the beneath target a chance to do extra processing.  */
1371   ops->beneath->to_update_thread_list (ops->beneath);
1372 }
1373
1374 static char *
1375 thread_db_pid_to_str (struct target_ops *ops, ptid_t ptid)
1376 {
1377   struct thread_info *thread_info = find_thread_ptid (ptid);
1378   struct target_ops *beneath;
1379
1380   if (thread_info != NULL && thread_info->priv != NULL)
1381     {
1382       static char buf[64];
1383       thread_t tid;
1384
1385       tid = thread_info->priv->tid;
1386       snprintf (buf, sizeof (buf), "Thread 0x%lx (LWP %ld)",
1387                 (unsigned long) tid, ptid_get_lwp (ptid));
1388
1389       return buf;
1390     }
1391
1392   beneath = find_target_beneath (ops);
1393   return beneath->to_pid_to_str (beneath, ptid);
1394 }
1395
1396 /* Return a string describing the state of the thread specified by
1397    INFO.  */
1398
1399 static char *
1400 thread_db_extra_thread_info (struct target_ops *self,
1401                              struct thread_info *info)
1402 {
1403   if (info->priv == NULL)
1404     return NULL;
1405
1406   if (info->priv->dying)
1407     return "Exiting";
1408
1409   return NULL;
1410 }
1411
1412 /* Get the address of the thread local variable in load module LM which
1413    is stored at OFFSET within the thread local storage for thread PTID.  */
1414
1415 static CORE_ADDR
1416 thread_db_get_thread_local_address (struct target_ops *ops,
1417                                     ptid_t ptid,
1418                                     CORE_ADDR lm,
1419                                     CORE_ADDR offset)
1420 {
1421   struct thread_info *thread_info;
1422   struct target_ops *beneath;
1423
1424   /* Find the matching thread.  */
1425   thread_info = find_thread_ptid (ptid);
1426
1427   /* We may not have discovered the thread yet.  */
1428   if (thread_info != NULL && thread_info->priv == NULL)
1429     thread_info = thread_from_lwp (ptid);
1430
1431   if (thread_info != NULL && thread_info->priv != NULL)
1432     {
1433       td_err_e err;
1434       psaddr_t address;
1435       struct thread_db_info *info;
1436
1437       info = get_thread_db_info (ptid_get_pid (ptid));
1438
1439       /* Finally, get the address of the variable.  */
1440       if (lm != 0)
1441         {
1442           /* glibc doesn't provide the needed interface.  */
1443           if (!info->td_thr_tls_get_addr_p)
1444             throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1445                          _("No TLS library support"));
1446
1447           /* Note the cast through uintptr_t: this interface only works if
1448              a target address fits in a psaddr_t, which is a host pointer.
1449              So a 32-bit debugger can not access 64-bit TLS through this.  */
1450           err = info->td_thr_tls_get_addr_p (&thread_info->priv->th,
1451                                              (psaddr_t)(uintptr_t) lm,
1452                                              offset, &address);
1453         }
1454       else
1455         {
1456           /* If glibc doesn't provide the needed interface throw an error
1457              that LM is zero - normally cases it should not be.  */
1458           if (!info->td_thr_tlsbase_p)
1459             throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1460                          _("TLS load module not found"));
1461
1462           /* This code path handles the case of -static -pthread executables:
1463              https://sourceware.org/ml/libc-help/2014-03/msg00024.html
1464              For older GNU libc r_debug.r_map is NULL.  For GNU libc after
1465              PR libc/16831 due to GDB PR threads/16954 LOAD_MODULE is also NULL.
1466              The constant number 1 depends on GNU __libc_setup_tls
1467              initialization of l_tls_modid to 1.  */
1468           err = info->td_thr_tlsbase_p (&thread_info->priv->th,
1469                                         1, &address);
1470           address = (char *) address + offset;
1471         }
1472
1473 #ifdef THREAD_DB_HAS_TD_NOTALLOC
1474       /* The memory hasn't been allocated, yet.  */
1475       if (err == TD_NOTALLOC)
1476           /* Now, if libthread_db provided the initialization image's
1477              address, we *could* try to build a non-lvalue value from
1478              the initialization image.  */
1479         throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1480                      _("TLS not allocated yet"));
1481 #endif
1482
1483       /* Something else went wrong.  */
1484       if (err != TD_OK)
1485         throw_error (TLS_GENERIC_ERROR,
1486                      (("%s")), thread_db_err_str (err));
1487
1488       /* Cast assuming host == target.  Joy.  */
1489       /* Do proper sign extension for the target.  */
1490       gdb_assert (exec_bfd);
1491       return (bfd_get_sign_extend_vma (exec_bfd) > 0
1492               ? (CORE_ADDR) (intptr_t) address
1493               : (CORE_ADDR) (uintptr_t) address);
1494     }
1495
1496   beneath = find_target_beneath (ops);
1497   return beneath->to_get_thread_local_address (beneath, ptid, lm, offset);
1498 }
1499
1500 /* Implement the to_get_ada_task_ptid target method for this target.  */
1501
1502 static ptid_t
1503 thread_db_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
1504 {
1505   /* NPTL uses a 1:1 model, so the LWP id suffices.  */
1506   return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
1507 }
1508
1509 static void
1510 thread_db_resume (struct target_ops *ops,
1511                   ptid_t ptid, int step, enum gdb_signal signo)
1512 {
1513   struct target_ops *beneath = find_target_beneath (ops);
1514   struct thread_db_info *info;
1515
1516   if (ptid_equal (ptid, minus_one_ptid))
1517     info = get_thread_db_info (ptid_get_pid (inferior_ptid));
1518   else
1519     info = get_thread_db_info (ptid_get_pid (ptid));
1520
1521   /* This workaround is only needed for child fork lwps stopped in a
1522      PTRACE_O_TRACEFORK event.  When the inferior is resumed, the
1523      workaround can be disabled.  */
1524   if (info)
1525     info->need_stale_parent_threads_check = 0;
1526
1527   beneath->to_resume (beneath, ptid, step, signo);
1528 }
1529
1530 /* qsort helper function for info_auto_load_libthread_db, sort the
1531    thread_db_info pointers primarily by their FILENAME and secondarily by their
1532    PID, both in ascending order.  */
1533
1534 static int
1535 info_auto_load_libthread_db_compare (const void *ap, const void *bp)
1536 {
1537   struct thread_db_info *a = *(struct thread_db_info **) ap;
1538   struct thread_db_info *b = *(struct thread_db_info **) bp;
1539   int retval;
1540
1541   retval = strcmp (a->filename, b->filename);
1542   if (retval)
1543     return retval;
1544
1545   return (a->pid > b->pid) - (a->pid - b->pid);
1546 }
1547
1548 /* Implement 'info auto-load libthread-db'.  */
1549
1550 static void
1551 info_auto_load_libthread_db (char *args, int from_tty)
1552 {
1553   struct ui_out *uiout = current_uiout;
1554   const char *cs = args ? args : "";
1555   struct thread_db_info *info, **array;
1556   unsigned info_count, unique_filenames;
1557   size_t max_filename_len, max_pids_len, pids_len;
1558   struct cleanup *back_to;
1559   char *pids;
1560   int i;
1561
1562   cs = skip_spaces_const (cs);
1563   if (*cs)
1564     error (_("'info auto-load libthread-db' does not accept any parameters"));
1565
1566   info_count = 0;
1567   for (info = thread_db_list; info; info = info->next)
1568     if (info->filename != NULL)
1569       info_count++;
1570
1571   array = XNEWVEC (struct thread_db_info *, info_count);
1572   back_to = make_cleanup (xfree, array);
1573
1574   info_count = 0;
1575   for (info = thread_db_list; info; info = info->next)
1576     if (info->filename != NULL)
1577       array[info_count++] = info;
1578
1579   /* Sort ARRAY by filenames and PIDs.  */
1580
1581   qsort (array, info_count, sizeof (*array),
1582          info_auto_load_libthread_db_compare);
1583
1584   /* Calculate the number of unique filenames (rows) and the maximum string
1585      length of PIDs list for the unique filenames (columns).  */
1586
1587   unique_filenames = 0;
1588   max_filename_len = 0;
1589   max_pids_len = 0;
1590   pids_len = 0;
1591   for (i = 0; i < info_count; i++)
1592     {
1593       int pid = array[i]->pid;
1594       size_t this_pid_len;
1595
1596       for (this_pid_len = 0; pid != 0; pid /= 10)
1597         this_pid_len++;
1598
1599       if (i == 0 || strcmp (array[i - 1]->filename, array[i]->filename) != 0)
1600         {
1601           unique_filenames++;
1602           max_filename_len = max (max_filename_len,
1603                                   strlen (array[i]->filename));
1604
1605           if (i > 0)
1606             {
1607               pids_len -= strlen (", ");
1608               max_pids_len = max (max_pids_len, pids_len);
1609             }
1610           pids_len = 0;
1611         }
1612       pids_len += this_pid_len + strlen (", ");
1613     }
1614   if (i)
1615     {
1616       pids_len -= strlen (", ");
1617       max_pids_len = max (max_pids_len, pids_len);
1618     }
1619
1620   /* Table header shifted right by preceding "libthread-db:  " would not match
1621      its columns.  */
1622   if (info_count > 0 && args == auto_load_info_scripts_pattern_nl)
1623     ui_out_text (uiout, "\n");
1624
1625   make_cleanup_ui_out_table_begin_end (uiout, 2, unique_filenames,
1626                                        "LinuxThreadDbTable");
1627
1628   ui_out_table_header (uiout, max_filename_len, ui_left, "filename",
1629                        "Filename");
1630   ui_out_table_header (uiout, pids_len, ui_left, "PIDs", "Pids");
1631   ui_out_table_body (uiout);
1632
1633   pids = (char *) xmalloc (max_pids_len + 1);
1634   make_cleanup (xfree, pids);
1635
1636   /* Note I is incremented inside the cycle, not at its end.  */
1637   for (i = 0; i < info_count;)
1638     {
1639       struct cleanup *chain = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
1640       char *pids_end;
1641
1642       info = array[i];
1643       ui_out_field_string (uiout, "filename", info->filename);
1644       pids_end = pids;
1645
1646       while (i < info_count && strcmp (info->filename, array[i]->filename) == 0)
1647         {
1648           if (pids_end != pids)
1649             {
1650               *pids_end++ = ',';
1651               *pids_end++ = ' ';
1652             }
1653           pids_end += xsnprintf (pids_end, &pids[max_pids_len + 1] - pids_end,
1654                                  "%u", array[i]->pid);
1655           gdb_assert (pids_end < &pids[max_pids_len + 1]);
1656
1657           i++;
1658         }
1659       *pids_end = '\0';
1660
1661       ui_out_field_string (uiout, "pids", pids);
1662
1663       ui_out_text (uiout, "\n");
1664       do_cleanups (chain);
1665     }
1666
1667   do_cleanups (back_to);
1668
1669   if (info_count == 0)
1670     ui_out_message (uiout, 0, _("No auto-loaded libthread-db.\n"));
1671 }
1672
1673 static void
1674 init_thread_db_ops (void)
1675 {
1676   thread_db_ops.to_shortname = "multi-thread";
1677   thread_db_ops.to_longname = "multi-threaded child process.";
1678   thread_db_ops.to_doc = "Threads and pthreads support.";
1679   thread_db_ops.to_detach = thread_db_detach;
1680   thread_db_ops.to_wait = thread_db_wait;
1681   thread_db_ops.to_resume = thread_db_resume;
1682   thread_db_ops.to_mourn_inferior = thread_db_mourn_inferior;
1683   thread_db_ops.to_update_thread_list = thread_db_update_thread_list;
1684   thread_db_ops.to_pid_to_str = thread_db_pid_to_str;
1685   thread_db_ops.to_stratum = thread_stratum;
1686   thread_db_ops.to_has_thread_control = tc_schedlock;
1687   thread_db_ops.to_get_thread_local_address
1688     = thread_db_get_thread_local_address;
1689   thread_db_ops.to_extra_thread_info = thread_db_extra_thread_info;
1690   thread_db_ops.to_get_ada_task_ptid = thread_db_get_ada_task_ptid;
1691   thread_db_ops.to_magic = OPS_MAGIC;
1692
1693   complete_target_initialization (&thread_db_ops);
1694 }
1695
1696 /* Provide a prototype to silence -Wmissing-prototypes.  */
1697 extern initialize_file_ftype _initialize_thread_db;
1698
1699 void
1700 _initialize_thread_db (void)
1701 {
1702   init_thread_db_ops ();
1703
1704   /* Defer loading of libthread_db.so until inferior is running.
1705      This allows gdb to load correct libthread_db for a given
1706      executable -- there could be multiple versions of glibc,
1707      and until there is a running inferior, we can't tell which
1708      libthread_db is the correct one to load.  */
1709
1710   libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
1711
1712   add_setshow_optional_filename_cmd ("libthread-db-search-path",
1713                                      class_support,
1714                                      &libthread_db_search_path, _("\
1715 Set search path for libthread_db."), _("\
1716 Show the current search path or libthread_db."), _("\
1717 This path is used to search for libthread_db to be loaded into \
1718 gdb itself.\n\
1719 Its value is a colon (':') separate list of directories to search.\n\
1720 Setting the search path to an empty list resets it to its default value."),
1721                             set_libthread_db_search_path,
1722                             NULL,
1723                             &setlist, &showlist);
1724
1725   add_setshow_zuinteger_cmd ("libthread-db", class_maintenance,
1726                              &libthread_db_debug, _("\
1727 Set libthread-db debugging."), _("\
1728 Show libthread-db debugging."), _("\
1729 When non-zero, libthread-db debugging is enabled."),
1730                              NULL,
1731                              show_libthread_db_debug,
1732                              &setdebuglist, &showdebuglist);
1733
1734   add_setshow_boolean_cmd ("libthread-db", class_support,
1735                            &auto_load_thread_db, _("\
1736 Enable or disable auto-loading of inferior specific libthread_db."), _("\
1737 Show whether auto-loading inferior specific libthread_db is enabled."), _("\
1738 If enabled, libthread_db will be searched in 'set libthread-db-search-path'\n\
1739 locations to load libthread_db compatible with the inferior.\n\
1740 Standard system libthread_db still gets loaded even with this option off.\n\
1741 This options has security implications for untrusted inferiors."),
1742                            NULL, show_auto_load_thread_db,
1743                            auto_load_set_cmdlist_get (),
1744                            auto_load_show_cmdlist_get ());
1745
1746   add_cmd ("libthread-db", class_info, info_auto_load_libthread_db,
1747            _("Print the list of loaded inferior specific libthread_db.\n\
1748 Usage: info auto-load libthread-db"),
1749            auto_load_info_cmdlist_get ());
1750
1751   /* Add ourselves to objfile event chain.  */
1752   observer_attach_new_objfile (thread_db_new_objfile);
1753
1754   /* Add ourselves to inferior_created event chain.
1755      This is needed to handle debugging statically linked programs where
1756      the new_objfile observer won't get called for libpthread.  */
1757   observer_attach_inferior_created (thread_db_inferior_created);
1758 }