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