Make target_ops::has_execution take an 'inferior *' instead of a ptid_t
[deliverable/binutils-gdb.git] / gdb / linux-thread-db.c
CommitLineData
fb0e1ba7 1/* libthread_db assisted debugging support, generic parts.
1bac305b 2
b811d2c2 3 Copyright (C) 1999-2020 Free Software Foundation, Inc.
fb0e1ba7
MK
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
fb0e1ba7
MK
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
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
fb0e1ba7
MK
19
20#include "defs.h"
fb0e1ba7
MK
21#include <dlfcn.h>
22#include "gdb_proc_service.h"
125f8a3d 23#include "nat/gdb_thread_db.h"
268a13a5 24#include "gdbsupport/gdb_vecs.h"
bda9cb72 25#include "bfd.h"
17a37d48 26#include "command.h"
17a37d48 27#include "gdbcmd.h"
fb0e1ba7
MK
28#include "gdbthread.h"
29#include "inferior.h"
45741a9c 30#include "infrun.h"
bda9cb72
MK
31#include "symfile.h"
32#include "objfiles.h"
fb0e1ba7 33#include "target.h"
4e052eda 34#include "regcache.h"
17a37d48 35#include "solib.h"
3f47be5c 36#include "solib-svr4.h"
16451949 37#include "gdbcore.h"
76727919 38#include "observable.h"
0ec9a092 39#include "linux-nat.h"
125f8a3d 40#include "nat/linux-procfs.h"
c1a747c1 41#include "nat/linux-ptrace.h"
125f8a3d 42#include "nat/linux-osdata.h"
bf88dd68 43#include "auto-load.h"
529480d0 44#include "cli/cli-utils.h"
979894f2 45#include <signal.h>
bf88dd68 46#include <ctype.h>
9bc3a976 47#include "nat/linux-namespaces.h"
325fac50 48#include <algorithm>
268a13a5 49#include "gdbsupport/pathstuff.h"
5045b3d7 50#include "valprint.h"
9d636d67 51#include "cli/cli-style.h"
979894f2 52
17faa917
DJ
53/* GNU/Linux libthread_db support.
54
55 libthread_db is a library, provided along with libpthread.so, which
56 exposes the internals of the thread library to a debugger. It
57 allows GDB to find existing threads, new threads as they are
58 created, thread IDs (usually, the result of pthread_self), and
59 thread-local variables.
60
4a6ed09b
PA
61 The libthread_db interface originates on Solaris, where it is both
62 more powerful and more complicated. This implementation only works
63 for NPTL, the glibc threading library. It assumes that each thread
64 is permanently assigned to a single light-weight process (LWP). At
65 some point it also supported the older LinuxThreads library, but it
66 no longer does.
17faa917
DJ
67
68 libthread_db-specific information is stored in the "private" field
69 of struct thread_info. When the field is NULL we do not yet have
70 information about the new thread; this could be temporary (created,
71 but the thread library's data structures do not reflect it yet)
72 or permanent (created using clone instead of pthread_create).
73
74 Process IDs managed by linux-thread-db.c match those used by
75 linux-nat.c: a common PID for all processes, an LWP ID for each
76 thread, and no TID. We save the TID in private. Keeping it out
77 of the ptid_t prevents thread IDs changing when libpthread is
78 loaded or unloaded. */
79
d9f719f1
PA
80static const target_info thread_db_target_info = {
81 "multi-thread",
82 N_("multi-threaded child process."),
83 N_("Threads and pthreads support.")
84};
85
f6ac5f3d
PA
86class thread_db_target final : public target_ops
87{
88public:
d9f719f1
PA
89 const target_info &info () const override
90 { return thread_db_target_info; }
f6ac5f3d 91
66b4deae
PA
92 strata stratum () const override { return thread_stratum; }
93
f6ac5f3d
PA
94 void detach (inferior *, int) override;
95 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
96 void resume (ptid_t, int, enum gdb_signal) override;
97 void mourn_inferior () override;
98 void update_thread_list () override;
a068643d 99 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
100 CORE_ADDR get_thread_local_address (ptid_t ptid,
101 CORE_ADDR load_module_addr,
102 CORE_ADDR offset) override;
103 const char *extra_thread_info (struct thread_info *) override;
104 ptid_t get_ada_task_ptid (long lwp, long thread) override;
105
106 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
107 int handle_len,
108 inferior *inf) override;
3d6c6204 109 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *) override;
f6ac5f3d
PA
110};
111
17a37d48
PP
112static char *libthread_db_search_path;
113
491144b5 114/* Set to true if thread_db auto-loading is enabled
bf88dd68 115 by the "set auto-load libthread-db" command. */
491144b5 116static bool auto_load_thread_db = true;
bf88dd68 117
491144b5 118/* Set to true if load-time libthread_db tests have been enabled
85102364 119 by the "maintenance set check-libthread-db" command. */
491144b5 120static bool check_thread_db_on_load = false;
5045b3d7 121
bf88dd68
JK
122/* "show" command for the auto_load_thread_db configuration variable. */
123
124static void
125show_auto_load_thread_db (struct ui_file *file, int from_tty,
126 struct cmd_list_element *c, const char *value)
127{
128 fprintf_filtered (file, _("Auto-loading of inferior specific libthread_db "
129 "is %s.\n"),
130 value);
131}
132
84e578fb 133static void
eb4c3f4a 134set_libthread_db_search_path (const char *ignored, int from_tty,
84e578fb
DE
135 struct cmd_list_element *c)
136{
137 if (*libthread_db_search_path == '\0')
138 {
139 xfree (libthread_db_search_path);
140 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
141 }
142}
143
02d868e8
PP
144/* If non-zero, print details of libthread_db processing. */
145
ccce17b0 146static unsigned int libthread_db_debug;
02d868e8
PP
147
148static void
149show_libthread_db_debug (struct ui_file *file, int from_tty,
150 struct cmd_list_element *c, const char *value)
151{
152 fprintf_filtered (file, _("libthread-db debugging is %s.\n"), value);
153}
154
8605d56e
AC
155/* If we're running on GNU/Linux, we must explicitly attach to any new
156 threads. */
fb0e1ba7 157
fb0e1ba7 158/* This module's target vector. */
f6ac5f3d 159static thread_db_target the_thread_db_target;
fb0e1ba7 160
fb0e1ba7
MK
161/* Non-zero if we have determined the signals used by the threads
162 library. */
163static int thread_signals;
164static sigset_t thread_stop_set;
165static sigset_t thread_print_set;
166
d90e17a7
PA
167struct thread_db_info
168{
169 struct thread_db_info *next;
170
171 /* Process id this object refers to. */
172 int pid;
173
174 /* Handle from dlopen for libthread_db.so. */
175 void *handle;
176
bf88dd68
JK
177 /* Absolute pathname from gdb_realpath to disk file used for dlopen-ing
178 HANDLE. It may be NULL for system library. */
179 char *filename;
180
d90e17a7
PA
181 /* Structure that identifies the child process for the
182 <proc_service.h> interface. */
183 struct ps_prochandle proc_handle;
184
185 /* Connection to the libthread_db library. */
186 td_thragent_t *thread_agent;
187
4d062f1a
PA
188 /* True if we need to apply the workaround for glibc/BZ5983. When
189 we catch a PTRACE_O_TRACEFORK, and go query the child's thread
190 list, nptl_db returns the parent's threads in addition to the new
191 (single) child thread. If this flag is set, we do extra work to
192 be able to ignore such stale entries. */
193 int need_stale_parent_threads_check;
194
d90e17a7 195 /* Pointers to the libthread_db functions. */
fb0e1ba7 196
96e9210f
PA
197 td_init_ftype *td_init_p;
198 td_ta_new_ftype *td_ta_new_p;
a2419b98 199 td_ta_delete_ftype *td_ta_delete_p;
96e9210f
PA
200 td_ta_map_lwp2thr_ftype *td_ta_map_lwp2thr_p;
201 td_ta_thr_iter_ftype *td_ta_thr_iter_p;
96e9210f 202 td_thr_get_info_ftype *td_thr_get_info_p;
96e9210f
PA
203 td_thr_tls_get_addr_ftype *td_thr_tls_get_addr_p;
204 td_thr_tlsbase_ftype *td_thr_tlsbase_p;
d90e17a7
PA
205};
206
207/* List of known processes using thread_db, and the required
208 bookkeeping. */
209struct thread_db_info *thread_db_list;
210
00431a78
PA
211static void thread_db_find_new_threads_1 (thread_info *stopped);
212static void thread_db_find_new_threads_2 (thread_info *stopped,
213 bool until_no_new);
d90e17a7 214
2db9a427
PA
215static void check_thread_signals (void);
216
be550b6e
DE
217static struct thread_info *record_thread
218 (struct thread_db_info *info, struct thread_info *tp,
219 ptid_t ptid, const td_thrhandle_t *th_p, const td_thrinfo_t *ti_p);
2db9a427 220
d90e17a7
PA
221/* Add the current inferior to the list of processes using libpthread.
222 Return a pointer to the newly allocated object that was added to
223 THREAD_DB_LIST. HANDLE is the handle returned by dlopen'ing
224 LIBTHREAD_DB_SO. */
225
226static struct thread_db_info *
227add_thread_db_info (void *handle)
228{
8d749320 229 struct thread_db_info *info = XCNEW (struct thread_db_info);
d90e17a7 230
e99b03dc 231 info->pid = inferior_ptid.pid ();
d90e17a7 232 info->handle = handle;
856d6f99
PA
233
234 /* The workaround works by reading from /proc/pid/status, so it is
235 disabled for core files. */
236 if (target_has_execution)
237 info->need_stale_parent_threads_check = 1;
d90e17a7
PA
238
239 info->next = thread_db_list;
240 thread_db_list = info;
241
242 return info;
243}
244
245/* Return the thread_db_info object representing the bookkeeping
246 related to process PID, if any; NULL otherwise. */
247
248static struct thread_db_info *
249get_thread_db_info (int pid)
250{
251 struct thread_db_info *info;
252
253 for (info = thread_db_list; info; info = info->next)
254 if (pid == info->pid)
255 return info;
256
257 return NULL;
258}
259
a2419b98
PW
260static const char *thread_db_err_str (td_err_e err);
261
d90e17a7
PA
262/* When PID has exited or has been detached, we no longer want to keep
263 track of it as using libpthread. Call this function to discard
264 thread_db related info related to PID. Note that this closes
265 LIBTHREAD_DB_SO's dlopen'ed handle. */
266
267static void
268delete_thread_db_info (int pid)
269{
270 struct thread_db_info *info, *info_prev;
271
272 info_prev = NULL;
273
274 for (info = thread_db_list; info; info_prev = info, info = info->next)
275 if (pid == info->pid)
276 break;
277
278 if (info == NULL)
279 return;
280
a2419b98
PW
281 if (info->thread_agent != NULL && info->td_ta_delete_p != NULL)
282 {
283 td_err_e err = info->td_ta_delete_p (info->thread_agent);
284
285 if (err != TD_OK)
286 warning (_("Cannot deregister process %d from libthread_db: %s"),
287 pid, thread_db_err_str (err));
288 info->thread_agent = NULL;
289 }
290
d90e17a7
PA
291 if (info->handle != NULL)
292 dlclose (info->handle);
293
bf88dd68
JK
294 xfree (info->filename);
295
d90e17a7
PA
296 if (info_prev)
297 info_prev->next = info->next;
298 else
299 thread_db_list = info->next;
300
301 xfree (info);
302}
fb0e1ba7 303
5365276c
DJ
304/* Use "struct private_thread_info" to cache thread state. This is
305 a substantial optimization. */
306
7aabaf9d 307struct thread_db_thread_info : public private_thread_info
fb0e1ba7 308{
a2f23071 309 /* Flag set when we see a TD_DEATH event for this thread. */
7aabaf9d 310 bool dying = false;
a2f23071 311
5365276c 312 /* Cached thread state. */
7aabaf9d
SM
313 td_thrhandle_t th {};
314 thread_t tid {};
fb0e1ba7 315};
7aabaf9d
SM
316
317static thread_db_thread_info *
318get_thread_db_thread_info (thread_info *thread)
319{
320 return static_cast<thread_db_thread_info *> (thread->priv.get ());
321}
21bf60fe 322
a121b7c1 323static const char *
fb0e1ba7
MK
324thread_db_err_str (td_err_e err)
325{
326 static char buf[64];
327
328 switch (err)
329 {
330 case TD_OK:
331 return "generic 'call succeeded'";
332 case TD_ERR:
333 return "generic error";
334 case TD_NOTHR:
335 return "no thread to satisfy query";
336 case TD_NOSV:
337 return "no sync handle to satisfy query";
338 case TD_NOLWP:
339 return "no LWP to satisfy query";
340 case TD_BADPH:
341 return "invalid process handle";
342 case TD_BADTH:
343 return "invalid thread handle";
344 case TD_BADSH:
345 return "invalid synchronization handle";
346 case TD_BADTA:
347 return "invalid thread agent";
348 case TD_BADKEY:
349 return "invalid key";
350 case TD_NOMSG:
351 return "no event message for getmsg";
352 case TD_NOFPREGS:
353 return "FPU register set not available";
354 case TD_NOLIBTHREAD:
355 return "application not linked with libthread";
356 case TD_NOEVENT:
357 return "requested event is not supported";
358 case TD_NOCAPAB:
359 return "capability not available";
360 case TD_DBERR:
361 return "debugger service failed";
362 case TD_NOAPLIC:
363 return "operation not applicable to";
364 case TD_NOTSD:
365 return "no thread-specific data for this thread";
366 case TD_MALLOC:
367 return "malloc failed";
368 case TD_PARTIALREG:
369 return "only part of register set was written/read";
370 case TD_NOXREGS:
371 return "X register set not available for this thread";
59f80f10
DJ
372#ifdef THREAD_DB_HAS_TD_NOTALLOC
373 case TD_NOTALLOC:
374 return "thread has not yet allocated TLS for given module";
375#endif
376#ifdef THREAD_DB_HAS_TD_VERSION
377 case TD_VERSION:
378 return "versions of libpthread and libthread_db do not match";
379#endif
380#ifdef THREAD_DB_HAS_TD_NOTLS
381 case TD_NOTLS:
382 return "there is no TLS segment in the given module";
383#endif
fb0e1ba7
MK
384 default:
385 snprintf (buf, sizeof (buf), "unknown thread_db error '%d'", err);
386 return buf;
387 }
388}
4105de34 389
00431a78
PA
390/* Fetch the user-level thread id of PTID. STOPPED is a stopped
391 thread that we can use to access memory. */
fb0e1ba7 392
be550b6e 393static struct thread_info *
00431a78 394thread_from_lwp (thread_info *stopped, ptid_t ptid)
fb0e1ba7 395{
fb0e1ba7 396 td_thrhandle_t th;
2db9a427 397 td_thrinfo_t ti;
fb0e1ba7 398 td_err_e err;
d90e17a7 399 struct thread_db_info *info;
2db9a427 400 struct thread_info *tp;
fb0e1ba7 401
6cb9b55b
PP
402 /* Just in case td_ta_map_lwp2thr doesn't initialize it completely. */
403 th.th_unique = 0;
404
17faa917
DJ
405 /* This ptid comes from linux-nat.c, which should always fill in the
406 LWP. */
e38504b3 407 gdb_assert (ptid.lwp () != 0);
fb0e1ba7 408
e99b03dc 409 info = get_thread_db_info (ptid.pid ());
d90e17a7 410
4c28f408 411 /* Access an lwp we know is stopped. */
00431a78 412 info->proc_handle.thread = stopped;
e38504b3 413 err = info->td_ta_map_lwp2thr_p (info->thread_agent, ptid.lwp (),
dfd4cc63 414 &th);
fb0e1ba7 415 if (err != TD_OK)
8a3fe4f8 416 error (_("Cannot find user-level thread for LWP %ld: %s"),
e38504b3 417 ptid.lwp (), thread_db_err_str (err));
fb0e1ba7 418
2db9a427
PA
419 err = info->td_thr_get_info_p (&th, &ti);
420 if (err != TD_OK)
421 error (_("thread_get_info_callback: cannot get thread info: %s"),
422 thread_db_err_str (err));
423
424 /* Fill the cache. */
425 tp = find_thread_ptid (ptid);
be550b6e 426 return record_thread (info, tp, ptid, &th, &ti);
fb0e1ba7
MK
427}
428\f
429
2db9a427
PA
430/* See linux-nat.h. */
431
4c28f408 432int
2db9a427 433thread_db_notice_clone (ptid_t parent, ptid_t child)
4c28f408 434{
d90e17a7 435 struct thread_db_info *info;
4c28f408 436
e99b03dc 437 info = get_thread_db_info (child.pid ());
d90e17a7
PA
438
439 if (info == NULL)
4c28f408
PA
440 return 0;
441
00431a78 442 thread_info *stopped = find_thread_ptid (parent);
4c28f408 443
00431a78
PA
444 thread_from_lwp (stopped, child);
445
446 /* If we do not know about the main thread's pthread info yet, this
447 would be a good time to find it. */
448 thread_from_lwp (stopped, parent);
4c28f408
PA
449 return 1;
450}
451
5220ea4c
AC
452static void *
453verbose_dlsym (void *handle, const char *name)
454{
455 void *sym = dlsym (handle, name);
456 if (sym == NULL)
3e43a32a
MS
457 warning (_("Symbol \"%s\" not found in libthread_db: %s"),
458 name, dlerror ());
5220ea4c
AC
459 return sym;
460}
461
fcb44371
JK
462/* Verify inferior's '\0'-terminated symbol VER_SYMBOL starts with "%d.%d" and
463 return 1 if this version is lower (and not equal) to
464 VER_MAJOR_MIN.VER_MINOR_MIN. Return 0 in all other cases. */
465
466static int
467inferior_has_bug (const char *ver_symbol, int ver_major_min, int ver_minor_min)
468{
3b7344d5 469 struct bound_minimal_symbol version_msym;
fcb44371 470 CORE_ADDR version_addr;
e83e4e24 471 gdb::unique_xmalloc_ptr<char> version;
fcb44371
JK
472 int err, got, retval = 0;
473
474 version_msym = lookup_minimal_symbol (ver_symbol, NULL, NULL);
3b7344d5 475 if (version_msym.minsym == NULL)
fcb44371
JK
476 return 0;
477
77e371c0 478 version_addr = BMSYMBOL_VALUE_ADDRESS (version_msym);
fcb44371 479 got = target_read_string (version_addr, &version, 32, &err);
e83e4e24 480 if (err == 0 && memchr (version.get (), 0, got) == version.get () + got - 1)
fcb44371
JK
481 {
482 int major, minor;
483
e83e4e24 484 retval = (sscanf (version.get (), "%d.%d", &major, &minor) == 2
fcb44371
JK
485 && (major < ver_major_min
486 || (major == ver_major_min && minor < ver_minor_min)));
487 }
fcb44371
JK
488
489 return retval;
490}
491
fcb44371
JK
492/* Similar as thread_db_find_new_threads_1, but try to silently ignore errors
493 if appropriate.
456b0e24 494
fcb44371
JK
495 Return 1 if the caller should abort libthread_db initialization. Return 0
496 otherwise. */
497
498static int
00431a78 499thread_db_find_new_threads_silently (thread_info *stopped)
456b0e24 500{
456b0e24 501
a70b8144 502 try
456b0e24 503 {
00431a78 504 thread_db_find_new_threads_2 (stopped, true);
456b0e24
PP
505 }
506
230d2906 507 catch (const gdb_exception_error &except)
e0881a8e 508 {
fcb44371 509 if (libthread_db_debug)
883ed13e 510 exception_fprintf (gdb_stdlog, except,
fcb44371
JK
511 "Warning: thread_db_find_new_threads_silently: ");
512
513 /* There is a bug fixed between nptl 2.6.1 and 2.7 by
514 commit 7d9d8bd18906fdd17364f372b160d7ab896ce909
515 where calls to td_thr_get_info fail with TD_ERR for statically linked
516 executables if td_thr_get_info is called before glibc has initialized
517 itself.
518
519 If the nptl bug is NOT present in the inferior and still thread_db
520 reports an error return 1. It means the inferior has corrupted thread
521 list and GDB should fall back only to LWPs.
522
523 If the nptl bug is present in the inferior return 0 to silently ignore
524 such errors, and let gdb enumerate threads again later. In such case
525 GDB cannot properly display LWPs if the inferior thread list is
889003ed
JK
526 corrupted. For core files it does not apply, no 'later enumeration'
527 is possible. */
fcb44371 528
889003ed 529 if (!target_has_execution || !inferior_has_bug ("nptl_version", 2, 7))
fcb44371
JK
530 {
531 exception_fprintf (gdb_stderr, except,
532 _("Warning: couldn't activate thread debugging "
533 "using libthread_db: "));
534 return 1;
535 }
e0881a8e 536 }
492d29ea 537
fcb44371 538 return 0;
456b0e24
PP
539}
540
d90e17a7
PA
541/* Lookup a library in which given symbol resides.
542 Note: this is looking in GDB process, not in the inferior.
543 Returns library name, or NULL. */
544
545static const char *
546dladdr_to_soname (const void *addr)
547{
548 Dl_info info;
549
550 if (dladdr (addr, &info) != 0)
551 return info.dli_fname;
552 return NULL;
553}
554
5045b3d7
GB
555/* State for check_thread_db_callback. */
556
557struct check_thread_db_info
558{
559 /* The libthread_db under test. */
560 struct thread_db_info *info;
561
562 /* True if progress should be logged. */
563 bool log_progress;
564
565 /* True if the callback was called. */
566 bool threads_seen;
567
568 /* Name of last libthread_db function called. */
569 const char *last_call;
570
571 /* Value returned by last libthread_db call. */
572 td_err_e last_result;
573};
574
575static struct check_thread_db_info *tdb_testinfo;
576
577/* Callback for check_thread_db. */
578
579static int
580check_thread_db_callback (const td_thrhandle_t *th, void *arg)
581{
582 gdb_assert (tdb_testinfo != NULL);
583 tdb_testinfo->threads_seen = true;
584
585#define LOG(fmt, args...) \
586 do \
587 { \
588 if (tdb_testinfo->log_progress) \
589 { \
590 debug_printf (fmt, ## args); \
591 gdb_flush (gdb_stdlog); \
592 } \
593 } \
594 while (0)
595
596#define CHECK_1(expr, args...) \
597 do \
598 { \
599 if (!(expr)) \
600 { \
601 LOG (" ... FAIL!\n"); \
602 error (args); \
603 } \
604 } \
605 while (0)
606
607#define CHECK(expr) \
608 CHECK_1 (expr, "(%s) == false", #expr)
609
610#define CALL_UNCHECKED(func, args...) \
611 do \
612 { \
613 tdb_testinfo->last_call = #func; \
614 tdb_testinfo->last_result \
615 = tdb_testinfo->info->func ## _p (args); \
616 } \
617 while (0)
618
619#define CHECK_CALL() \
620 CHECK_1 (tdb_testinfo->last_result == TD_OK, \
621 _("%s failed: %s"), \
622 tdb_testinfo->last_call, \
623 thread_db_err_str (tdb_testinfo->last_result)) \
624
625#define CALL(func, args...) \
626 do \
627 { \
628 CALL_UNCHECKED (func, args); \
629 CHECK_CALL (); \
630 } \
631 while (0)
632
633 LOG (" Got thread");
634
635 /* Check td_ta_thr_iter passed consistent arguments. */
636 CHECK (th != NULL);
637 CHECK (arg == (void *) tdb_testinfo);
638 CHECK (th->th_ta_p == tdb_testinfo->info->thread_agent);
639
640 LOG (" %s", core_addr_to_string_nz ((CORE_ADDR) th->th_unique));
641
642 /* Check td_thr_get_info. */
643 td_thrinfo_t ti;
644 CALL (td_thr_get_info, th, &ti);
645
646 LOG (" => %d", ti.ti_lid);
647
648 CHECK (ti.ti_ta_p == th->th_ta_p);
649 CHECK (ti.ti_tid == (thread_t) th->th_unique);
650
651 /* Check td_ta_map_lwp2thr. */
652 td_thrhandle_t th2;
653 memset (&th2, 23, sizeof (td_thrhandle_t));
654 CALL_UNCHECKED (td_ta_map_lwp2thr, th->th_ta_p, ti.ti_lid, &th2);
655
656 if (tdb_testinfo->last_result == TD_ERR && !target_has_execution)
657 {
658 /* Some platforms require execution for td_ta_map_lwp2thr. */
659 LOG (_("; can't map_lwp2thr"));
660 }
661 else
662 {
663 CHECK_CALL ();
664
665 LOG (" => %s", core_addr_to_string_nz ((CORE_ADDR) th2.th_unique));
666
667 CHECK (memcmp (th, &th2, sizeof (td_thrhandle_t)) == 0);
668 }
669
670 /* Attempt TLS access. Assuming errno is TLS, this calls
671 thread_db_get_thread_local_address, which in turn calls
672 td_thr_tls_get_addr for live inferiors or td_thr_tlsbase
673 for core files. This test is skipped if the thread has
674 not been recorded; proceeding in that case would result
675 in the test having the side-effect of noticing threads
676 which seems wrong.
677
678 Note that in glibc's libthread_db td_thr_tls_get_addr is
679 a thin wrapper around td_thr_tlsbase; this check always
680 hits the bulk of the code.
681
682 Note also that we don't actually check any libthread_db
683 calls are made, we just assume they were; future changes
684 to how GDB accesses TLS could result in this passing
685 without exercising the calls it's supposed to. */
fd79271b 686 ptid_t ptid = ptid_t (tdb_testinfo->info->pid, ti.ti_lid, 0);
5045b3d7
GB
687 struct thread_info *thread_info = find_thread_ptid (ptid);
688 if (thread_info != NULL && thread_info->priv != NULL)
689 {
690 LOG ("; errno");
691
692 scoped_restore_current_thread restore_current_thread;
693 switch_to_thread (ptid);
694
695 expression_up expr = parse_expression ("(int) errno");
696 struct value *val = evaluate_expression (expr.get ());
697
698 if (tdb_testinfo->log_progress)
699 {
700 struct value_print_options opts;
701
702 get_user_print_options (&opts);
703 LOG (" = ");
704 value_print (val, gdb_stdlog, &opts);
705 }
706 }
707
708 LOG (" ... OK\n");
709
710#undef LOG
711#undef CHECK_1
712#undef CHECK
713#undef CALL_UNCHECKED
714#undef CHECK_CALL
715#undef CALL
716
717 return 0;
718}
719
720/* Run integrity checks on the dlopen()ed libthread_db described by
721 INFO. Returns true on success, displays a warning and returns
722 false on failure. Logs progress messages to gdb_stdlog during
723 the test if LOG_PROGRESS is true. */
724
725static bool
726check_thread_db (struct thread_db_info *info, bool log_progress)
727{
728 bool test_passed = true;
729
730 if (log_progress)
731 debug_printf (_("Running libthread_db integrity checks:\n"));
732
733 /* GDB avoids using td_ta_thr_iter wherever possible (see comment
734 in try_thread_db_load_1 below) so in order to test it we may
735 have to locate it ourselves. */
736 td_ta_thr_iter_ftype *td_ta_thr_iter_p = info->td_ta_thr_iter_p;
737 if (td_ta_thr_iter_p == NULL)
738 {
739 void *thr_iter = verbose_dlsym (info->handle, "td_ta_thr_iter");
740 if (thr_iter == NULL)
741 return 0;
742
743 td_ta_thr_iter_p = (td_ta_thr_iter_ftype *) thr_iter;
744 }
745
746 /* Set up the test state we share with the callback. */
747 gdb_assert (tdb_testinfo == NULL);
748 struct check_thread_db_info tdb_testinfo_buf;
749 tdb_testinfo = &tdb_testinfo_buf;
750
751 memset (tdb_testinfo, 0, sizeof (struct check_thread_db_info));
752 tdb_testinfo->info = info;
753 tdb_testinfo->log_progress = log_progress;
754
755 /* td_ta_thr_iter shouldn't be used on running processes. Note that
756 it's possible the inferior will stop midway through modifying one
757 of its thread lists, in which case the check will spuriously
758 fail. */
759 linux_stop_and_wait_all_lwps ();
760
a70b8144 761 try
5045b3d7
GB
762 {
763 td_err_e err = td_ta_thr_iter_p (info->thread_agent,
764 check_thread_db_callback,
765 tdb_testinfo,
766 TD_THR_ANY_STATE,
767 TD_THR_LOWEST_PRIORITY,
768 TD_SIGNO_MASK,
769 TD_THR_ANY_USER_FLAGS);
770
771 if (err != TD_OK)
772 error (_("td_ta_thr_iter failed: %s"), thread_db_err_str (err));
773
774 if (!tdb_testinfo->threads_seen)
775 error (_("no threads seen"));
776 }
230d2906 777 catch (const gdb_exception_error &except)
5045b3d7
GB
778 {
779 if (warning_pre_print)
780 fputs_unfiltered (warning_pre_print, gdb_stderr);
781
782 exception_fprintf (gdb_stderr, except,
783 _("libthread_db integrity checks failed: "));
784
785 test_passed = false;
786 }
5045b3d7
GB
787
788 if (test_passed && log_progress)
789 debug_printf (_("libthread_db integrity checks passed.\n"));
790
791 tdb_testinfo = NULL;
792
793 linux_unstop_all_lwps ();
794
795 return test_passed;
796}
797
2471d008 798/* Attempt to initialize dlopen()ed libthread_db, described by INFO.
9ddc1af1 799 Return true on success.
17a37d48
PP
800 Failure could happen if libthread_db does not have symbols we expect,
801 or when it refuses to work with the current inferior (e.g. due to
802 version mismatch between libthread_db and libpthread). */
803
9ddc1af1 804static bool
d90e17a7 805try_thread_db_load_1 (struct thread_db_info *info)
17a37d48
PP
806{
807 td_err_e err;
808
809 /* Initialize pointers to the dynamic library functions we will use.
810 Essential functions first. */
811
96e9210f
PA
812#define TDB_VERBOSE_DLSYM(info, func) \
813 info->func ## _p = (func ## _ftype *) verbose_dlsym (info->handle, #func)
814
815#define TDB_DLSYM(info, func) \
816 info->func ## _p = (func ## _ftype *) dlsym (info->handle, #func)
817
818#define CHK(a) \
819 do \
820 { \
821 if ((a) == NULL) \
9ddc1af1 822 return false; \
96e9210f
PA
823 } while (0)
824
825 CHK (TDB_VERBOSE_DLSYM (info, td_init));
17a37d48 826
d90e17a7 827 err = info->td_init_p ();
17a37d48
PP
828 if (err != TD_OK)
829 {
3e43a32a
MS
830 warning (_("Cannot initialize libthread_db: %s"),
831 thread_db_err_str (err));
9ddc1af1 832 return false;
17a37d48
PP
833 }
834
96e9210f 835 CHK (TDB_VERBOSE_DLSYM (info, td_ta_new));
17a37d48
PP
836
837 /* Initialize the structure that identifies the child process. */
00431a78 838 info->proc_handle.thread = inferior_thread ();
17a37d48
PP
839
840 /* Now attempt to open a connection to the thread library. */
d90e17a7 841 err = info->td_ta_new_p (&info->proc_handle, &info->thread_agent);
17a37d48
PP
842 if (err != TD_OK)
843 {
02d868e8 844 if (libthread_db_debug)
883ed13e
PA
845 fprintf_unfiltered (gdb_stdlog, _("td_ta_new failed: %s\n"),
846 thread_db_err_str (err));
17a37d48
PP
847 else
848 switch (err)
849 {
850 case TD_NOLIBTHREAD:
851#ifdef THREAD_DB_HAS_TD_VERSION
852 case TD_VERSION:
853#endif
854 /* The errors above are not unexpected and silently ignored:
855 they just mean we haven't found correct version of
856 libthread_db yet. */
857 break;
858 default:
859 warning (_("td_ta_new failed: %s"), thread_db_err_str (err));
860 }
9ddc1af1 861 return false;
17a37d48
PP
862 }
863
96e9210f
PA
864 /* These are essential. */
865 CHK (TDB_VERBOSE_DLSYM (info, td_ta_map_lwp2thr));
96e9210f 866 CHK (TDB_VERBOSE_DLSYM (info, td_thr_get_info));
17a37d48
PP
867
868 /* These are not essential. */
96e9210f
PA
869 TDB_DLSYM (info, td_thr_tls_get_addr);
870 TDB_DLSYM (info, td_thr_tlsbase);
a2419b98 871 TDB_DLSYM (info, td_ta_delete);
96e9210f 872
2db9a427
PA
873 /* It's best to avoid td_ta_thr_iter if possible. That walks data
874 structures in the inferior's address space that may be corrupted,
875 or, if the target is running, may change while we walk them. If
876 there's execution (and /proc is mounted), then we're already
877 attached to all LWPs. Use thread_from_lwp, which uses
878 td_ta_map_lwp2thr instead, which does not walk the thread list.
879
880 td_ta_map_lwp2thr uses ps_get_thread_area, but we can't use that
881 currently on core targets, as it uses ptrace directly. */
882 if (target_has_execution
e99b03dc 883 && linux_proc_task_list_dir_exists (inferior_ptid.pid ()))
1eb2dbb8
PA
884 info->td_ta_thr_iter_p = NULL;
885 else
886 CHK (TDB_VERBOSE_DLSYM (info, td_ta_thr_iter));
887
888#undef TDB_VERBOSE_DLSYM
889#undef TDB_DLSYM
890#undef CHK
891
5045b3d7
GB
892 /* Run integrity checks if requested. */
893 if (check_thread_db_on_load)
894 {
895 if (!check_thread_db (info, libthread_db_debug))
9ddc1af1 896 return false;
5045b3d7
GB
897 }
898
1eb2dbb8 899 if (info->td_ta_thr_iter_p == NULL)
2db9a427
PA
900 {
901 struct lwp_info *lp;
e99b03dc 902 int pid = inferior_ptid.pid ();
00431a78 903 thread_info *curr_thread = inferior_thread ();
2db9a427
PA
904
905 linux_stop_and_wait_all_lwps ();
906
907 ALL_LWPS (lp)
e99b03dc 908 if (lp->ptid.pid () == pid)
00431a78 909 thread_from_lwp (curr_thread, lp->ptid);
2db9a427
PA
910
911 linux_unstop_all_lwps ();
912 }
00431a78 913 else if (thread_db_find_new_threads_silently (inferior_thread ()) != 0)
fcb44371
JK
914 {
915 /* Even if libthread_db initializes, if the thread list is
916 corrupted, we'd not manage to list any threads. Better reject this
917 thread_db, and fall back to at least listing LWPs. */
9ddc1af1 918 return false;
fcb44371
JK
919 }
920
17a37d48
PP
921 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
922
883ed13e 923 if (*libthread_db_search_path || libthread_db_debug)
d90e17a7 924 {
883ed13e 925 struct ui_file *file;
d90e17a7 926 const char *library;
17a37d48 927
f8708a14 928 library = dladdr_to_soname ((const void *) *info->td_ta_new_p);
d90e17a7
PA
929 if (library == NULL)
930 library = LIBTHREAD_DB_SO;
17a37d48 931
883ed13e
PA
932 /* If we'd print this to gdb_stdout when debug output is
933 disabled, still print it to gdb_stdout if debug output is
934 enabled. User visible output should not depend on debug
935 settings. */
936 file = *libthread_db_search_path != '\0' ? gdb_stdout : gdb_stdlog;
9d636d67
TT
937 fprintf_unfiltered (file,
938 _("Using host libthread_db library \"%ps\".\n"),
939 styled_string (file_name_style.style (), library));
d90e17a7 940 }
17a37d48 941
d90e17a7
PA
942 /* The thread library was detected. Activate the thread_db target
943 if this is the first process using it. */
944 if (thread_db_list->next == NULL)
f6ac5f3d 945 push_target (&the_thread_db_target);
17a37d48 946
9ddc1af1 947 return true;
17a37d48
PP
948}
949
950/* Attempt to use LIBRARY as libthread_db. LIBRARY could be absolute,
951 relative, or just LIBTHREAD_DB. */
952
9ddc1af1
SM
953static bool
954try_thread_db_load (const char *library, bool check_auto_load_safe)
17a37d48
PP
955{
956 void *handle;
d90e17a7 957 struct thread_db_info *info;
17a37d48 958
02d868e8 959 if (libthread_db_debug)
883ed13e
PA
960 fprintf_unfiltered (gdb_stdlog,
961 _("Trying host libthread_db library: %s.\n"),
962 library);
fde4f8ed
JK
963
964 if (check_auto_load_safe)
965 {
966 if (access (library, R_OK) != 0)
967 {
968 /* Do not print warnings by file_is_auto_load_safe if the library does
969 not exist at this place. */
970 if (libthread_db_debug)
883ed13e
PA
971 fprintf_unfiltered (gdb_stdlog, _("open failed: %s.\n"),
972 safe_strerror (errno));
9ddc1af1 973 return false;
fde4f8ed
JK
974 }
975
976 if (!file_is_auto_load_safe (library, _("auto-load: Loading libthread-db "
977 "library \"%s\" from explicit "
978 "directory.\n"),
979 library))
9ddc1af1 980 return false;
fde4f8ed
JK
981 }
982
17a37d48
PP
983 handle = dlopen (library, RTLD_NOW);
984 if (handle == NULL)
985 {
02d868e8 986 if (libthread_db_debug)
883ed13e 987 fprintf_unfiltered (gdb_stdlog, _("dlopen failed: %s.\n"), dlerror ());
9ddc1af1 988 return false;
17a37d48
PP
989 }
990
02d868e8 991 if (libthread_db_debug && strchr (library, '/') == NULL)
17a37d48
PP
992 {
993 void *td_init;
994
995 td_init = dlsym (handle, "td_init");
996 if (td_init != NULL)
997 {
998 const char *const libpath = dladdr_to_soname (td_init);
999
1000 if (libpath != NULL)
883ed13e 1001 fprintf_unfiltered (gdb_stdlog, _("Host %s resolved to: %s.\n"),
17a37d48
PP
1002 library, libpath);
1003 }
1004 }
1005
d90e17a7
PA
1006 info = add_thread_db_info (handle);
1007
bf88dd68
JK
1008 /* Do not save system library name, that one is always trusted. */
1009 if (strchr (library, '/') != NULL)
14278e1f 1010 info->filename = gdb_realpath (library).release ();
bf88dd68 1011
d90e17a7 1012 if (try_thread_db_load_1 (info))
9ddc1af1 1013 return true;
17a37d48
PP
1014
1015 /* This library "refused" to work on current inferior. */
e99b03dc 1016 delete_thread_db_info (inferior_ptid.pid ());
9ddc1af1 1017 return false;
17a37d48
PP
1018}
1019
290351b8 1020/* Subroutine of try_thread_db_load_from_pdir to simplify it.
e6712ff1
DE
1021 Try loading libthread_db in directory(OBJ)/SUBDIR.
1022 SUBDIR may be NULL. It may also be something like "../lib64".
290351b8
DE
1023 The result is true for success. */
1024
9ddc1af1 1025static bool
e6712ff1 1026try_thread_db_load_from_pdir_1 (struct objfile *obj, const char *subdir)
290351b8 1027{
4262abfb 1028 const char *obj_name = objfile_name (obj);
290351b8 1029
4262abfb 1030 if (obj_name[0] != '/')
290351b8
DE
1031 {
1032 warning (_("Expected absolute pathname for libpthread in the"
9d636d67
TT
1033 " inferior, but got %ps."),
1034 styled_string (file_name_style.style (), obj_name));
9ddc1af1 1035 return false;
290351b8 1036 }
05386e9e 1037
9b292f68
TT
1038 std::string path = obj_name;
1039 size_t cp = path.rfind ('/');
05386e9e 1040 /* This should at minimum hit the first character. */
9b292f68
TT
1041 gdb_assert (cp != std::string::npos);
1042 path.resize (cp + 1);
e6712ff1 1043 if (subdir != NULL)
9b292f68
TT
1044 path = path + subdir + "/";
1045 path += LIBTHREAD_DB_SO;
bccbefd2 1046
9ddc1af1 1047 return try_thread_db_load (path.c_str (), true);
290351b8
DE
1048}
1049
98a5dd13 1050/* Handle $pdir in libthread-db-search-path.
e6712ff1
DE
1051 Look for libthread_db in directory(libpthread)/SUBDIR.
1052 SUBDIR may be NULL. It may also be something like "../lib64".
98a5dd13
DE
1053 The result is true for success. */
1054
9ddc1af1 1055static bool
e6712ff1 1056try_thread_db_load_from_pdir (const char *subdir)
98a5dd13 1057{
bf88dd68 1058 if (!auto_load_thread_db)
9ddc1af1 1059 return false;
bf88dd68 1060
2030c079 1061 for (objfile *obj : current_program_space->objfiles ())
4262abfb 1062 if (libpthread_name_p (objfile_name (obj)))
98a5dd13 1063 {
e6712ff1 1064 if (try_thread_db_load_from_pdir_1 (obj, subdir))
9ddc1af1 1065 return true;
290351b8
DE
1066
1067 /* We may have found the separate-debug-info version of
1068 libpthread, and it may live in a directory without a matching
1069 libthread_db. */
1070 if (obj->separate_debug_objfile_backlink != NULL)
e6712ff1
DE
1071 return try_thread_db_load_from_pdir_1 (obj->separate_debug_objfile_backlink,
1072 subdir);
290351b8 1073
9ddc1af1 1074 return false;
98a5dd13
DE
1075 }
1076
9ddc1af1 1077 return false;
98a5dd13
DE
1078}
1079
1080/* Handle $sdir in libthread-db-search-path.
1081 Look for libthread_db in the system dirs, or wherever a plain
1082 dlopen(file_without_path) will look.
1083 The result is true for success. */
1084
9ddc1af1 1085static bool
98a5dd13
DE
1086try_thread_db_load_from_sdir (void)
1087{
9ddc1af1 1088 return try_thread_db_load (LIBTHREAD_DB_SO, false);
98a5dd13
DE
1089}
1090
1091/* Try to load libthread_db from directory DIR of length DIR_LEN.
1092 The result is true for success. */
1093
9ddc1af1 1094static bool
98a5dd13
DE
1095try_thread_db_load_from_dir (const char *dir, size_t dir_len)
1096{
bf88dd68 1097 if (!auto_load_thread_db)
9ddc1af1 1098 return false;
bf88dd68 1099
9b292f68 1100 std::string path = std::string (dir, dir_len) + "/" + LIBTHREAD_DB_SO;
bccbefd2 1101
9ddc1af1 1102 return try_thread_db_load (path.c_str (), true);
98a5dd13
DE
1103}
1104
17a37d48 1105/* Search libthread_db_search_path for libthread_db which "agrees"
98a5dd13
DE
1106 to work on current inferior.
1107 The result is true for success. */
17a37d48 1108
9ddc1af1 1109static bool
17a37d48
PP
1110thread_db_load_search (void)
1111{
9ddc1af1 1112 bool rc = false;
17a37d48 1113
e80aaf61
SM
1114 std::vector<gdb::unique_xmalloc_ptr<char>> dir_vec
1115 = dirnames_to_char_ptr_vec (libthread_db_search_path);
e6712ff1 1116
e80aaf61 1117 for (const gdb::unique_xmalloc_ptr<char> &this_dir_up : dir_vec)
17a37d48 1118 {
e80aaf61 1119 const char *this_dir = this_dir_up.get ();
e6712ff1 1120 const int pdir_len = sizeof ("$pdir") - 1;
98a5dd13 1121 size_t this_dir_len;
e0881a8e 1122
e6712ff1 1123 this_dir_len = strlen (this_dir);
17a37d48 1124
e6712ff1
DE
1125 if (strncmp (this_dir, "$pdir", pdir_len) == 0
1126 && (this_dir[pdir_len] == '\0'
1127 || this_dir[pdir_len] == '/'))
98a5dd13 1128 {
9b292f68 1129 const char *subdir = NULL;
e6712ff1 1130
9b292f68 1131 std::string subdir_holder;
e6712ff1 1132 if (this_dir[pdir_len] == '/')
98a5dd13 1133 {
9b292f68
TT
1134 subdir_holder = std::string (this_dir + pdir_len + 1);
1135 subdir = subdir_holder.c_str ();
98a5dd13 1136 }
e6712ff1 1137 rc = try_thread_db_load_from_pdir (subdir);
e6712ff1
DE
1138 if (rc)
1139 break;
17a37d48 1140 }
e6712ff1 1141 else if (strcmp (this_dir, "$sdir") == 0)
98a5dd13
DE
1142 {
1143 if (try_thread_db_load_from_sdir ())
1144 {
1145 rc = 1;
1146 break;
1147 }
1148 }
1149 else
17a37d48 1150 {
98a5dd13
DE
1151 if (try_thread_db_load_from_dir (this_dir, this_dir_len))
1152 {
1153 rc = 1;
1154 break;
1155 }
17a37d48
PP
1156 }
1157 }
98a5dd13
DE
1158
1159 if (libthread_db_debug)
883ed13e
PA
1160 fprintf_unfiltered (gdb_stdlog,
1161 _("thread_db_load_search returning %d\n"), rc);
17a37d48
PP
1162 return rc;
1163}
1164
9ddc1af1 1165/* Return true if the inferior has a libpthread. */
98a5dd13 1166
9ddc1af1 1167static bool
98a5dd13
DE
1168has_libpthread (void)
1169{
2030c079 1170 for (objfile *obj : current_program_space->objfiles ())
4262abfb 1171 if (libpthread_name_p (objfile_name (obj)))
9ddc1af1 1172 return true;
98a5dd13 1173
9ddc1af1 1174 return false;
98a5dd13
DE
1175}
1176
17a37d48 1177/* Attempt to load and initialize libthread_db.
1777feb0 1178 Return 1 on success. */
17a37d48 1179
9ddc1af1 1180static bool
17a37d48
PP
1181thread_db_load (void)
1182{
d90e17a7 1183 struct thread_db_info *info;
17a37d48 1184
e99b03dc 1185 info = get_thread_db_info (inferior_ptid.pid ());
d90e17a7
PA
1186
1187 if (info != NULL)
9ddc1af1 1188 return true;
17a37d48 1189
856d6f99
PA
1190 /* Don't attempt to use thread_db on executables not running
1191 yet. */
1192 if (!target_has_registers)
9ddc1af1 1193 return false;
17a37d48
PP
1194
1195 /* Don't attempt to use thread_db for remote targets. */
f6ac5f3d 1196 if (!(target_can_run () || core_bfd))
9ddc1af1 1197 return false;
17a37d48
PP
1198
1199 if (thread_db_load_search ())
9ddc1af1 1200 return true;
17a37d48 1201
98a5dd13
DE
1202 /* We couldn't find a libthread_db.
1203 If the inferior has a libpthread warn the user. */
1204 if (has_libpthread ())
1205 {
1206 warning (_("Unable to find libthread_db matching inferior's thread"
1207 " library, thread debugging will not be available."));
9ddc1af1 1208 return false;
17a37d48 1209 }
98a5dd13 1210
17a37d48
PP
1211 /* Either this executable isn't using libpthread at all, or it is
1212 statically linked. Since we can't easily distinguish these two cases,
1213 no warning is issued. */
9ddc1af1 1214 return false;
17a37d48
PP
1215}
1216
fb0e1ba7
MK
1217static void
1218check_thread_signals (void)
1219{
21bf60fe 1220 if (!thread_signals)
fb0e1ba7
MK
1221 {
1222 sigset_t mask;
1223 int i;
1224
669211f5 1225 lin_thread_get_thread_signals (&mask);
fb0e1ba7
MK
1226 sigemptyset (&thread_stop_set);
1227 sigemptyset (&thread_print_set);
1228
b9569773 1229 for (i = 1; i < NSIG; i++)
fb0e1ba7
MK
1230 {
1231 if (sigismember (&mask, i))
1232 {
2ea28649 1233 if (signal_stop_update (gdb_signal_from_host (i), 0))
fb0e1ba7 1234 sigaddset (&thread_stop_set, i);
2ea28649 1235 if (signal_print_update (gdb_signal_from_host (i), 0))
fb0e1ba7
MK
1236 sigaddset (&thread_print_set, i);
1237 thread_signals = 1;
1238 }
1239 }
1240 }
fb0e1ba7
MK
1241}
1242
0ec9a092
DJ
1243/* Check whether thread_db is usable. This function is called when
1244 an inferior is created (or otherwise acquired, e.g. attached to)
1245 and when new shared libraries are loaded into a running process. */
1246
1247void
1248check_for_thread_db (void)
fb0e1ba7 1249{
b5057acd 1250 /* Do nothing if we couldn't load libthread_db.so.1. */
17a37d48 1251 if (!thread_db_load ())
b5057acd 1252 return;
0ec9a092
DJ
1253}
1254
0838fb57
DE
1255/* This function is called via the new_objfile observer. */
1256
0ec9a092
DJ
1257static void
1258thread_db_new_objfile (struct objfile *objfile)
1259{
d90e17a7
PA
1260 /* This observer must always be called with inferior_ptid set
1261 correctly. */
1262
0838fb57 1263 if (objfile != NULL
fcb44371 1264 /* libpthread with separate debug info has its debug info file already
7d0e21ad 1265 loaded (and notified without successful thread_db initialization)
76727919 1266 the time gdb::observers::new_objfile.notify is called for the library itself.
fcb44371
JK
1267 Static executables have their separate debug info loaded already
1268 before the inferior has started. */
1269 && objfile->separate_debug_objfile_backlink == NULL
0838fb57
DE
1270 /* Only check for thread_db if we loaded libpthread,
1271 or if this is the main symbol file.
1272 We need to check OBJF_MAINLINE to handle the case of debugging
1273 a statically linked executable AND the symbol file is specified AFTER
1274 the exec file is loaded (e.g., gdb -c core ; file foo).
1275 For dynamically linked executables, libpthread can be near the end
1276 of the list of shared libraries to load, and in an app of several
1277 thousand shared libraries, this can otherwise be painful. */
1278 && ((objfile->flags & OBJF_MAINLINE) != 0
4262abfb 1279 || libpthread_name_p (objfile_name (objfile))))
0ec9a092 1280 check_for_thread_db ();
fb0e1ba7
MK
1281}
1282
015de688
DC
1283static void
1284check_pid_namespace_match (void)
1285{
1286 /* Check is only relevant for local targets targets. */
f6ac5f3d 1287 if (target_can_run ())
015de688
DC
1288 {
1289 /* If the child is in a different PID namespace, its idea of its
1290 PID will differ from our idea of its PID. When we scan the
1291 child's thread list, we'll mistakenly think it has no threads
1292 since the thread PID fields won't match the PID we give to
1293 libthread_db. */
e99b03dc 1294 if (!linux_ns_same (inferior_ptid.pid (), LINUX_NS_PID))
015de688
DC
1295 {
1296 warning (_ ("Target and debugger are in different PID "
1297 "namespaces; thread lists and other data are "
708bf0a1
JK
1298 "likely unreliable. "
1299 "Connect to gdbserver inside the container."));
015de688 1300 }
015de688
DC
1301 }
1302}
1303
0838fb57
DE
1304/* This function is called via the inferior_created observer.
1305 This handles the case of debugging statically linked executables. */
1306
1307static void
1308thread_db_inferior_created (struct target_ops *target, int from_tty)
1309{
015de688 1310 check_pid_namespace_match ();
0838fb57
DE
1311 check_for_thread_db ();
1312}
1313
c1a747c1
PA
1314/* Update the thread's state (what's displayed in "info threads"),
1315 from libthread_db thread state information. */
1316
1317static void
7aabaf9d 1318update_thread_state (thread_db_thread_info *priv,
c1a747c1
PA
1319 const td_thrinfo_t *ti_p)
1320{
fe978cb0
PA
1321 priv->dying = (ti_p->ti_state == TD_THR_UNKNOWN
1322 || ti_p->ti_state == TD_THR_ZOMBIE);
c1a747c1
PA
1323}
1324
2db9a427 1325/* Record a new thread in GDB's thread list. Creates the thread's
be550b6e
DE
1326 private info. If TP is NULL or TP is marked as having exited,
1327 creates a new thread. Otherwise, uses TP. */
2db9a427 1328
be550b6e 1329static struct thread_info *
2db9a427
PA
1330record_thread (struct thread_db_info *info,
1331 struct thread_info *tp,
1332 ptid_t ptid, const td_thrhandle_t *th_p,
1333 const td_thrinfo_t *ti_p)
1334{
2db9a427
PA
1335 /* A thread ID of zero may mean the thread library has not
1336 initialized yet. Leave private == NULL until the thread library
1337 has initialized. */
1338 if (ti_p->ti_tid == 0)
be550b6e 1339 return tp;
2db9a427 1340
17faa917 1341 /* Construct the thread's private data. */
7aabaf9d 1342 thread_db_thread_info *priv = new thread_db_thread_info;
17faa917 1343
fe978cb0
PA
1344 priv->th = *th_p;
1345 priv->tid = ti_p->ti_tid;
1346 update_thread_state (priv, ti_p);
17faa917 1347
4eec2deb
PA
1348 /* Add the thread to GDB's thread list. If we already know about a
1349 thread with this PTID, but it's marked exited, then the kernel
1350 reused the tid of an old thread. */
1351 if (tp == NULL || tp->state == THREAD_EXITED)
fe978cb0 1352 tp = add_thread_with_info (ptid, priv);
17faa917 1353 else
7aabaf9d 1354 tp->priv.reset (priv);
5365276c 1355
2db9a427
PA
1356 if (target_has_execution)
1357 check_thread_signals ();
be550b6e
DE
1358
1359 return tp;
fb0e1ba7
MK
1360}
1361
f6ac5f3d
PA
1362void
1363thread_db_target::detach (inferior *inf, int from_tty)
fb0e1ba7 1364{
bc09b0c1 1365 delete_thread_db_info (inf->pid);
4105de34 1366
d6ca69cd 1367 beneath ()->detach (inf, from_tty);
d90e17a7
PA
1368
1369 /* NOTE: From this point on, inferior_ptid is null_ptid. */
1370
1371 /* If there are no more processes using libpthread, detach the
1372 thread_db target ops. */
1373 if (!thread_db_list)
f6ac5f3d 1374 unpush_target (this);
fb0e1ba7
MK
1375}
1376
f6ac5f3d
PA
1377ptid_t
1378thread_db_target::wait (ptid_t ptid, struct target_waitstatus *ourstatus,
1379 int options)
fb0e1ba7 1380{
d90e17a7 1381 struct thread_db_info *info;
117de6a9 1382
d6ca69cd 1383 ptid = beneath ()->wait (ptid, ourstatus, options);
fb0e1ba7 1384
aa01bd36
PA
1385 switch (ourstatus->kind)
1386 {
1387 case TARGET_WAITKIND_IGNORE:
1388 case TARGET_WAITKIND_EXITED:
1389 case TARGET_WAITKIND_THREAD_EXITED:
1390 case TARGET_WAITKIND_SIGNALLED:
1391 return ptid;
1392 }
fb0e1ba7 1393
e99b03dc 1394 info = get_thread_db_info (ptid.pid ());
d90e17a7
PA
1395
1396 /* If this process isn't using thread_db, we're done. */
1397 if (info == NULL)
1398 return ptid;
1399
3f64f7b1
DJ
1400 if (ourstatus->kind == TARGET_WAITKIND_EXECD)
1401 {
d90e17a7
PA
1402 /* New image, it may or may not end up using thread_db. Assume
1403 not unless we find otherwise. */
e99b03dc 1404 delete_thread_db_info (ptid.pid ());
d90e17a7 1405 if (!thread_db_list)
f6ac5f3d 1406 unpush_target (&the_thread_db_target);
3f64f7b1 1407
49fd4a42 1408 return ptid;
3f64f7b1
DJ
1409 }
1410
2db9a427 1411 /* Fill in the thread's user-level thread id and status. */
00431a78 1412 thread_from_lwp (find_thread_ptid (ptid), ptid);
fb0e1ba7 1413
b9b5d7ea 1414 return ptid;
fb0e1ba7
MK
1415}
1416
f6ac5f3d
PA
1417void
1418thread_db_target::mourn_inferior ()
fb0e1ba7 1419{
e99b03dc 1420 delete_thread_db_info (inferior_ptid.pid ());
fb0e1ba7 1421
d6ca69cd 1422 beneath ()->mourn_inferior ();
d90e17a7 1423
b26a6851 1424 /* Detach thread_db target ops. */
d90e17a7 1425 if (!thread_db_list)
f6ac5f3d 1426 unpush_target (&the_thread_db_target);
fb0e1ba7
MK
1427}
1428
02c6c942
PP
1429struct callback_data
1430{
1431 struct thread_db_info *info;
1432 int new_threads;
1433};
1434
fb0e1ba7
MK
1435static int
1436find_new_threads_callback (const td_thrhandle_t *th_p, void *data)
1437{
1438 td_thrinfo_t ti;
1439 td_err_e err;
403fe197 1440 struct thread_info *tp;
9a3c8263 1441 struct callback_data *cb_data = (struct callback_data *) data;
02c6c942 1442 struct thread_db_info *info = cb_data->info;
fb0e1ba7 1443
d90e17a7 1444 err = info->td_thr_get_info_p (th_p, &ti);
fb0e1ba7 1445 if (err != TD_OK)
8a3fe4f8 1446 error (_("find_new_threads_callback: cannot get thread info: %s"),
3197744f 1447 thread_db_err_str (err));
fb0e1ba7 1448
a33e3959
PA
1449 if (ti.ti_lid == -1)
1450 {
1451 /* A thread with kernel thread ID -1 is either a thread that
1452 exited and was joined, or a thread that is being created but
1453 hasn't started yet, and that is reusing the tcb/stack of a
1454 thread that previously exited and was joined. (glibc marks
1455 terminated and joined threads with kernel thread ID -1. See
1456 glibc PR17707. */
d6c146e9
PA
1457 if (libthread_db_debug)
1458 fprintf_unfiltered (gdb_stdlog,
1459 "thread_db: skipping exited and "
d41401ac
DE
1460 "joined thread (0x%lx)\n",
1461 (unsigned long) ti.ti_tid);
a33e3959
PA
1462 return 0;
1463 }
1464
254f582e 1465 if (ti.ti_tid == 0)
4105de34
DJ
1466 {
1467 /* A thread ID of zero means that this is the main thread, but
1468 glibc has not yet initialized thread-local storage and the
1469 pthread library. We do not know what the thread's TID will
c2c2a31f 1470 be yet. */
4105de34 1471
4d062f1a
PA
1472 /* In that case, we're not stopped in a fork syscall and don't
1473 need this glibc bug workaround. */
1474 info->need_stale_parent_threads_check = 0;
1475
4105de34
DJ
1476 return 0;
1477 }
1478
4d062f1a
PA
1479 /* Ignore stale parent threads, caused by glibc/BZ5983. This is a
1480 bit expensive, as it needs to open /proc/pid/status, so try to
1481 avoid doing the work if we know we don't have to. */
1482 if (info->need_stale_parent_threads_check)
1483 {
1484 int tgid = linux_proc_get_tgid (ti.ti_lid);
e0881a8e 1485
4d062f1a
PA
1486 if (tgid != -1 && tgid != info->pid)
1487 return 0;
1488 }
1489
00431a78 1490 ptid_t ptid (info->pid, ti.ti_lid);
e09875d4 1491 tp = find_thread_ptid (ptid);
fe978cb0 1492 if (tp == NULL || tp->priv == NULL)
60269a4a 1493 record_thread (info, tp, ptid, th_p, &ti);
fb0e1ba7
MK
1494
1495 return 0;
1496}
1497
02c6c942
PP
1498/* Helper for thread_db_find_new_threads_2.
1499 Returns number of new threads found. */
1500
1501static int
1502find_new_threads_once (struct thread_db_info *info, int iteration,
fb169834 1503 td_err_e *errp)
02c6c942 1504{
02c6c942 1505 struct callback_data data;
fb169834 1506 td_err_e err = TD_ERR;
02c6c942
PP
1507
1508 data.info = info;
1509 data.new_threads = 0;
1510
2db9a427 1511 /* See comment in thread_db_update_thread_list. */
1eb2dbb8 1512 gdb_assert (info->td_ta_thr_iter_p != NULL);
2db9a427 1513
a70b8144 1514 try
02c6c942
PP
1515 {
1516 /* Iterate over all user-space threads to discover new threads. */
1517 err = info->td_ta_thr_iter_p (info->thread_agent,
1518 find_new_threads_callback,
1519 &data,
1520 TD_THR_ANY_STATE,
1521 TD_THR_LOWEST_PRIORITY,
1522 TD_SIGNO_MASK,
1523 TD_THR_ANY_USER_FLAGS);
1524 }
230d2906 1525 catch (const gdb_exception_error &except)
02c6c942 1526 {
6c63c96a 1527 if (libthread_db_debug)
492d29ea
PA
1528 {
1529 exception_fprintf (gdb_stdlog, except,
1530 "Warning: find_new_threads_once: ");
1531 }
6c63c96a 1532 }
02c6c942 1533
6c63c96a
PA
1534 if (libthread_db_debug)
1535 {
883ed13e
PA
1536 fprintf_unfiltered (gdb_stdlog,
1537 _("Found %d new threads in iteration %d.\n"),
1538 data.new_threads, iteration);
02c6c942
PP
1539 }
1540
1541 if (errp != NULL)
1542 *errp = err;
1543
1544 return data.new_threads;
1545}
1546
4c28f408 1547/* Search for new threads, accessing memory through stopped thread
02c6c942
PP
1548 PTID. If UNTIL_NO_NEW is true, repeat searching until several
1549 searches in a row do not discover any new threads. */
4c28f408 1550
fb0e1ba7 1551static void
00431a78 1552thread_db_find_new_threads_2 (thread_info *stopped, bool until_no_new)
fb0e1ba7 1553{
fcb44371 1554 td_err_e err = TD_OK;
d90e17a7 1555 struct thread_db_info *info;
02c6c942 1556 int i, loop;
4c28f408 1557
00431a78 1558 info = get_thread_db_info (stopped->ptid.pid ());
d90e17a7 1559
4c28f408 1560 /* Access an lwp we know is stopped. */
00431a78 1561 info->proc_handle.thread = stopped;
02c6c942
PP
1562
1563 if (until_no_new)
1564 {
1565 /* Require 4 successive iterations which do not find any new threads.
1566 The 4 is a heuristic: there is an inherent race here, and I have
1567 seen that 2 iterations in a row are not always sufficient to
1568 "capture" all threads. */
fcb44371
JK
1569 for (i = 0, loop = 0; loop < 4 && err == TD_OK; ++i, ++loop)
1570 if (find_new_threads_once (info, i, &err) != 0)
1571 {
1572 /* Found some new threads. Restart the loop from beginning. */
1573 loop = -1;
1574 }
02c6c942
PP
1575 }
1576 else
fcb44371
JK
1577 find_new_threads_once (info, 0, &err);
1578
1579 if (err != TD_OK)
1580 error (_("Cannot find new threads: %s"), thread_db_err_str (err));
fb0e1ba7
MK
1581}
1582
02c6c942 1583static void
00431a78 1584thread_db_find_new_threads_1 (thread_info *stopped)
02c6c942 1585{
00431a78 1586 thread_db_find_new_threads_2 (stopped, 0);
02c6c942
PP
1587}
1588
a6904d5a
PA
1589/* Implement the to_update_thread_list target method for this
1590 target. */
2db9a427 1591
f6ac5f3d
PA
1592void
1593thread_db_target::update_thread_list ()
28439f5e 1594{
d90e17a7
PA
1595 struct thread_db_info *info;
1596
e8032dde
PA
1597 prune_threads ();
1598
08036331 1599 for (inferior *inf : all_inferiors ())
c65b3e0d
PA
1600 {
1601 struct thread_info *thread;
d90e17a7 1602
c65b3e0d
PA
1603 if (inf->pid == 0)
1604 continue;
d90e17a7 1605
c65b3e0d
PA
1606 info = get_thread_db_info (inf->pid);
1607 if (info == NULL)
1608 continue;
1609
00431a78 1610 thread = any_live_thread_of_inferior (inf);
c65b3e0d
PA
1611 if (thread == NULL || thread->executing)
1612 continue;
1613
a6904d5a
PA
1614 /* It's best to avoid td_ta_thr_iter if possible. That walks
1615 data structures in the inferior's address space that may be
1616 corrupted, or, if the target is running, the list may change
1617 while we walk it. In the latter case, it's possible that a
1618 thread exits just at the exact time that causes GDB to get
1619 stuck in an infinite loop. To avoid pausing all threads
1620 whenever the core wants to refresh the thread list, we
1621 instead use thread_from_lwp immediately when we see an LWP
1622 stop. That uses thread_db entry points that do not walk
1623 libpthread's thread list, so should be safe, as well as more
1624 efficient. */
5018ce90 1625 if (thread->inf->has_execution ())
a6904d5a
PA
1626 continue;
1627
00431a78 1628 thread_db_find_new_threads_1 (thread);
c65b3e0d 1629 }
2db9a427 1630
a6904d5a 1631 /* Give the beneath target a chance to do extra processing. */
b6a8c27b 1632 this->beneath ()->update_thread_list ();
28439f5e
PA
1633}
1634
a068643d 1635std::string
f6ac5f3d 1636thread_db_target::pid_to_str (ptid_t ptid)
fb0e1ba7 1637{
e09875d4 1638 struct thread_info *thread_info = find_thread_ptid (ptid);
17faa917 1639
fe978cb0 1640 if (thread_info != NULL && thread_info->priv != NULL)
fb0e1ba7 1641 {
7aabaf9d 1642 thread_db_thread_info *priv = get_thread_db_thread_info (thread_info);
fb0e1ba7 1643
a068643d
TT
1644 return string_printf ("Thread 0x%lx (LWP %ld)",
1645 (unsigned long) priv->tid, ptid.lwp ());
fb0e1ba7
MK
1646 }
1647
d6ca69cd 1648 return beneath ()->pid_to_str (ptid);
fb0e1ba7
MK
1649}
1650
28b17333
DJ
1651/* Return a string describing the state of the thread specified by
1652 INFO. */
1653
f6ac5f3d
PA
1654const char *
1655thread_db_target::extra_thread_info (thread_info *info)
28b17333 1656{
fe978cb0 1657 if (info->priv == NULL)
17faa917
DJ
1658 return NULL;
1659
7aabaf9d
SM
1660 thread_db_thread_info *priv = get_thread_db_thread_info (info);
1661
1662 if (priv->dying)
28b17333
DJ
1663 return "Exiting";
1664
1665 return NULL;
1666}
1667
e04ee09e
KB
1668/* Return pointer to the thread_info struct which corresponds to
1669 THREAD_HANDLE (having length HANDLE_LEN). */
1670
f6ac5f3d
PA
1671thread_info *
1672thread_db_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
1673 int handle_len,
1674 inferior *inf)
e04ee09e 1675{
e04ee09e
KB
1676 thread_t handle_tid;
1677
6bdfee81
KB
1678 /* When debugging a 32-bit target from a 64-bit host, handle_len
1679 will be 4 and sizeof (handle_tid) will be 8. This requires
1680 a different cast than the more straightforward case where
1681 the sizes are the same.
1682
1683 Use "--target_board unix/-m32" from a native x86_64 linux build
1684 to test the 32/64-bit case. */
1685 if (handle_len == 4 && sizeof (handle_tid) == 8)
1686 handle_tid = (thread_t) * (const uint32_t *) thread_handle;
1687 else if (handle_len == sizeof (handle_tid))
1688 handle_tid = * (const thread_t *) thread_handle;
1689 else
e04ee09e
KB
1690 error (_("Thread handle size mismatch: %d vs %zu (from libthread_db)"),
1691 handle_len, sizeof (handle_tid));
1692
08036331 1693 for (thread_info *tp : inf->non_exited_threads ())
e04ee09e 1694 {
7aabaf9d
SM
1695 thread_db_thread_info *priv = get_thread_db_thread_info (tp);
1696
08036331 1697 if (priv != NULL && handle_tid == priv->tid)
e04ee09e
KB
1698 return tp;
1699 }
1700
1701 return NULL;
1702}
3d6c6204
KB
1703
1704/* Return the thread handle associated the thread_info pointer TP. */
1705
1706gdb::byte_vector
1707thread_db_target::thread_info_to_thread_handle (struct thread_info *tp)
1708{
1709 thread_db_thread_info *priv = get_thread_db_thread_info (tp);
1710
1711 if (priv == NULL)
1712 return gdb::byte_vector ();
1713
1714 int handle_size = sizeof (priv->tid);
1715 gdb::byte_vector rv (handle_size);
1716
1717 memcpy (rv.data (), &priv->tid, handle_size);
1718
1719 return rv;
1720}
e04ee09e 1721
b2756930
KB
1722/* Get the address of the thread local variable in load module LM which
1723 is stored at OFFSET within the thread local storage for thread PTID. */
3f47be5c 1724
f6ac5f3d
PA
1725CORE_ADDR
1726thread_db_target::get_thread_local_address (ptid_t ptid,
1727 CORE_ADDR lm,
1728 CORE_ADDR offset)
3f47be5c 1729{
17faa917
DJ
1730 struct thread_info *thread_info;
1731
17faa917 1732 /* Find the matching thread. */
e09875d4 1733 thread_info = find_thread_ptid (ptid);
4105de34 1734
e0fd7c47
UW
1735 /* We may not have discovered the thread yet. */
1736 if (thread_info != NULL && thread_info->priv == NULL)
00431a78 1737 thread_info = thread_from_lwp (thread_info, ptid);
e0fd7c47 1738
fe978cb0 1739 if (thread_info != NULL && thread_info->priv != NULL)
3f47be5c 1740 {
3f47be5c 1741 td_err_e err;
00f515da 1742 psaddr_t address;
e99b03dc 1743 thread_db_info *info = get_thread_db_info (ptid.pid ());
7aabaf9d 1744 thread_db_thread_info *priv = get_thread_db_thread_info (thread_info);
3f47be5c 1745
3f47be5c 1746 /* Finally, get the address of the variable. */
5876f503
JK
1747 if (lm != 0)
1748 {
1749 /* glibc doesn't provide the needed interface. */
1750 if (!info->td_thr_tls_get_addr_p)
1751 throw_error (TLS_NO_LIBRARY_SUPPORT_ERROR,
1752 _("No TLS library support"));
1753
1754 /* Note the cast through uintptr_t: this interface only works if
1755 a target address fits in a psaddr_t, which is a host pointer.
1756 So a 32-bit debugger can not access 64-bit TLS through this. */
7aabaf9d 1757 err = info->td_thr_tls_get_addr_p (&priv->th,
5876f503
JK
1758 (psaddr_t)(uintptr_t) lm,
1759 offset, &address);
1760 }
1761 else
1762 {
1763 /* If glibc doesn't provide the needed interface throw an error
1764 that LM is zero - normally cases it should not be. */
1765 if (!info->td_thr_tlsbase_p)
1766 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1767 _("TLS load module not found"));
1768
1769 /* This code path handles the case of -static -pthread executables:
1770 https://sourceware.org/ml/libc-help/2014-03/msg00024.html
1771 For older GNU libc r_debug.r_map is NULL. For GNU libc after
1772 PR libc/16831 due to GDB PR threads/16954 LOAD_MODULE is also NULL.
1773 The constant number 1 depends on GNU __libc_setup_tls
1774 initialization of l_tls_modid to 1. */
7aabaf9d 1775 err = info->td_thr_tlsbase_p (&priv->th, 1, &address);
5876f503
JK
1776 address = (char *) address + offset;
1777 }
3f47be5c
EZ
1778
1779#ifdef THREAD_DB_HAS_TD_NOTALLOC
1780 /* The memory hasn't been allocated, yet. */
1781 if (err == TD_NOTALLOC)
b4acd559
JJ
1782 /* Now, if libthread_db provided the initialization image's
1783 address, we *could* try to build a non-lvalue value from
1784 the initialization image. */
109c3e39
AC
1785 throw_error (TLS_NOT_ALLOCATED_YET_ERROR,
1786 _("TLS not allocated yet"));
3f47be5c
EZ
1787#endif
1788
1789 /* Something else went wrong. */
1790 if (err != TD_OK)
109c3e39
AC
1791 throw_error (TLS_GENERIC_ERROR,
1792 (("%s")), thread_db_err_str (err));
3f47be5c
EZ
1793
1794 /* Cast assuming host == target. Joy. */
16451949
AS
1795 /* Do proper sign extension for the target. */
1796 gdb_assert (exec_bfd);
1797 return (bfd_get_sign_extend_vma (exec_bfd) > 0
1798 ? (CORE_ADDR) (intptr_t) address
1799 : (CORE_ADDR) (uintptr_t) address);
3f47be5c
EZ
1800 }
1801
d6ca69cd 1802 return beneath ()->get_thread_local_address (ptid, lm, offset);
3f47be5c
EZ
1803}
1804
0ef643c8
JB
1805/* Implement the to_get_ada_task_ptid target method for this target. */
1806
f6ac5f3d
PA
1807ptid_t
1808thread_db_target::get_ada_task_ptid (long lwp, long thread)
0ef643c8 1809{
2db9a427 1810 /* NPTL uses a 1:1 model, so the LWP id suffices. */
e99b03dc 1811 return ptid_t (inferior_ptid.pid (), lwp, 0);
0ef643c8
JB
1812}
1813
f6ac5f3d
PA
1814void
1815thread_db_target::resume (ptid_t ptid, int step, enum gdb_signal signo)
4d062f1a 1816{
4d062f1a
PA
1817 struct thread_db_info *info;
1818
d7e15655 1819 if (ptid == minus_one_ptid)
e99b03dc 1820 info = get_thread_db_info (inferior_ptid.pid ());
4d062f1a 1821 else
e99b03dc 1822 info = get_thread_db_info (ptid.pid ());
4d062f1a
PA
1823
1824 /* This workaround is only needed for child fork lwps stopped in a
1825 PTRACE_O_TRACEFORK event. When the inferior is resumed, the
1826 workaround can be disabled. */
1827 if (info)
1828 info->need_stale_parent_threads_check = 0;
1829
d6ca69cd 1830 beneath ()->resume (ptid, step, signo);
4d062f1a
PA
1831}
1832
9b292f68 1833/* std::sort helper function for info_auto_load_libthread_db, sort the
bf88dd68
JK
1834 thread_db_info pointers primarily by their FILENAME and secondarily by their
1835 PID, both in ascending order. */
1836
9b292f68
TT
1837static bool
1838info_auto_load_libthread_db_compare (const struct thread_db_info *a,
1839 const struct thread_db_info *b)
bf88dd68 1840{
bf88dd68
JK
1841 int retval;
1842
1843 retval = strcmp (a->filename, b->filename);
1844 if (retval)
9b292f68 1845 return retval < 0;
bf88dd68 1846
9b292f68 1847 return a->pid < b->pid;
bf88dd68
JK
1848}
1849
1850/* Implement 'info auto-load libthread-db'. */
1851
1852static void
5fed81ff 1853info_auto_load_libthread_db (const char *args, int from_tty)
bf88dd68
JK
1854{
1855 struct ui_out *uiout = current_uiout;
1856 const char *cs = args ? args : "";
9b292f68
TT
1857 struct thread_db_info *info;
1858 unsigned unique_filenames;
1859 size_t max_filename_len, pids_len;
bf88dd68
JK
1860 int i;
1861
f1735a53 1862 cs = skip_spaces (cs);
bf88dd68
JK
1863 if (*cs)
1864 error (_("'info auto-load libthread-db' does not accept any parameters"));
1865
9b292f68 1866 std::vector<struct thread_db_info *> array;
bf88dd68
JK
1867 for (info = thread_db_list; info; info = info->next)
1868 if (info->filename != NULL)
9b292f68 1869 array.push_back (info);
bf88dd68
JK
1870
1871 /* Sort ARRAY by filenames and PIDs. */
9b292f68
TT
1872 std::sort (array.begin (), array.end (),
1873 info_auto_load_libthread_db_compare);
bf88dd68
JK
1874
1875 /* Calculate the number of unique filenames (rows) and the maximum string
1876 length of PIDs list for the unique filenames (columns). */
1877
1878 unique_filenames = 0;
1879 max_filename_len = 0;
bf88dd68 1880 pids_len = 0;
9b292f68 1881 for (i = 0; i < array.size (); i++)
bf88dd68
JK
1882 {
1883 int pid = array[i]->pid;
1884 size_t this_pid_len;
1885
1886 for (this_pid_len = 0; pid != 0; pid /= 10)
1887 this_pid_len++;
1888
1889 if (i == 0 || strcmp (array[i - 1]->filename, array[i]->filename) != 0)
1890 {
1891 unique_filenames++;
325fac50
PA
1892 max_filename_len = std::max (max_filename_len,
1893 strlen (array[i]->filename));
bf88dd68
JK
1894
1895 if (i > 0)
9b292f68 1896 pids_len -= strlen (", ");
bf88dd68
JK
1897 pids_len = 0;
1898 }
1899 pids_len += this_pid_len + strlen (", ");
1900 }
1901 if (i)
9b292f68 1902 pids_len -= strlen (", ");
bf88dd68
JK
1903
1904 /* Table header shifted right by preceding "libthread-db: " would not match
1905 its columns. */
9b292f68 1906 if (array.size () > 0 && args == auto_load_info_scripts_pattern_nl)
112e8700 1907 uiout->text ("\n");
bf88dd68 1908
4a2b031d
TT
1909 {
1910 ui_out_emit_table table_emitter (uiout, 2, unique_filenames,
1911 "LinuxThreadDbTable");
bf88dd68 1912
4a2b031d
TT
1913 uiout->table_header (max_filename_len, ui_left, "filename", "Filename");
1914 uiout->table_header (pids_len, ui_left, "PIDs", "Pids");
1915 uiout->table_body ();
bf88dd68 1916
4a2b031d 1917 /* Note I is incremented inside the cycle, not at its end. */
9b292f68 1918 for (i = 0; i < array.size ();)
4a2b031d
TT
1919 {
1920 ui_out_emit_tuple tuple_emitter (uiout, NULL);
bf88dd68 1921
4a2b031d
TT
1922 info = array[i];
1923 uiout->field_string ("filename", info->filename);
bf88dd68 1924
9b292f68
TT
1925 std::string pids;
1926 while (i < array.size () && strcmp (info->filename,
1927 array[i]->filename) == 0)
4a2b031d 1928 {
9b292f68
TT
1929 if (!pids.empty ())
1930 pids += ", ";
1931 string_appendf (pids, "%u", array[i]->pid);
4a2b031d
TT
1932 i++;
1933 }
bf88dd68 1934
9b292f68 1935 uiout->field_string ("pids", pids.c_str ());
bf88dd68 1936
4a2b031d
TT
1937 uiout->text ("\n");
1938 }
1939 }
bf88dd68 1940
9b292f68 1941 if (array.empty ())
112e8700 1942 uiout->message (_("No auto-loaded libthread-db.\n"));
bf88dd68
JK
1943}
1944
5045b3d7
GB
1945/* Implement 'maintenance check libthread-db'. */
1946
1947static void
1948maintenance_check_libthread_db (const char *args, int from_tty)
1949{
e99b03dc 1950 int inferior_pid = inferior_ptid.pid ();
5045b3d7
GB
1951 struct thread_db_info *info;
1952
1953 if (inferior_pid == 0)
1954 error (_("No inferior running"));
1955
1956 info = get_thread_db_info (inferior_pid);
1957 if (info == NULL)
1958 error (_("No libthread_db loaded"));
1959
1960 check_thread_db (info, true);
1961}
1962
fb0e1ba7
MK
1963void
1964_initialize_thread_db (void)
1965{
17a37d48
PP
1966 /* Defer loading of libthread_db.so until inferior is running.
1967 This allows gdb to load correct libthread_db for a given
4a6ed09b
PA
1968 executable -- there could be multiple versions of glibc,
1969 and until there is a running inferior, we can't tell which
1970 libthread_db is the correct one to load. */
17a37d48
PP
1971
1972 libthread_db_search_path = xstrdup (LIBTHREAD_DB_SEARCH_PATH);
1973
1974 add_setshow_optional_filename_cmd ("libthread-db-search-path",
1975 class_support,
1976 &libthread_db_search_path, _("\
1977Set search path for libthread_db."), _("\
1978Show the current search path or libthread_db."), _("\
1979This path is used to search for libthread_db to be loaded into \
84e578fb
DE
1980gdb itself.\n\
1981Its value is a colon (':') separate list of directories to search.\n\
1982Setting the search path to an empty list resets it to its default value."),
1983 set_libthread_db_search_path,
17a37d48
PP
1984 NULL,
1985 &setlist, &showlist);
02d868e8 1986
ccce17b0
YQ
1987 add_setshow_zuinteger_cmd ("libthread-db", class_maintenance,
1988 &libthread_db_debug, _("\
02d868e8
PP
1989Set libthread-db debugging."), _("\
1990Show libthread-db debugging."), _("\
1991When non-zero, libthread-db debugging is enabled."),
ccce17b0
YQ
1992 NULL,
1993 show_libthread_db_debug,
1994 &setdebuglist, &showdebuglist);
02d868e8 1995
bf88dd68
JK
1996 add_setshow_boolean_cmd ("libthread-db", class_support,
1997 &auto_load_thread_db, _("\
1998Enable or disable auto-loading of inferior specific libthread_db."), _("\
1999Show whether auto-loading inferior specific libthread_db is enabled."), _("\
2000If enabled, libthread_db will be searched in 'set libthread-db-search-path'\n\
2001locations to load libthread_db compatible with the inferior.\n\
2002Standard system libthread_db still gets loaded even with this option off.\n\
8d8c087f 2003This option has security implications for untrusted inferiors."),
bf88dd68
JK
2004 NULL, show_auto_load_thread_db,
2005 auto_load_set_cmdlist_get (),
2006 auto_load_show_cmdlist_get ());
2007
2008 add_cmd ("libthread-db", class_info, info_auto_load_libthread_db,
2009 _("Print the list of loaded inferior specific libthread_db.\n\
2010Usage: info auto-load libthread-db"),
2011 auto_load_info_cmdlist_get ());
2012
5045b3d7
GB
2013 add_cmd ("libthread-db", class_maintenance,
2014 maintenance_check_libthread_db, _("\
2015Run integrity checks on the current inferior's libthread_db."),
2016 &maintenancechecklist);
2017
2018 add_setshow_boolean_cmd ("check-libthread-db",
2019 class_maintenance,
2020 &check_thread_db_on_load, _("\
2021Set whether to check libthread_db at load time."), _("\
2022Show whether to check libthread_db at load time."), _("\
2023If enabled GDB will run integrity checks on inferior specific libthread_db\n\
2024as they are loaded."),
2025 NULL,
2026 NULL,
2027 &maintenance_set_cmdlist,
2028 &maintenance_show_cmdlist);
2029
17a37d48 2030 /* Add ourselves to objfile event chain. */
76727919 2031 gdb::observers::new_objfile.attach (thread_db_new_objfile);
0838fb57
DE
2032
2033 /* Add ourselves to inferior_created event chain.
2034 This is needed to handle debugging statically linked programs where
2035 the new_objfile observer won't get called for libpthread. */
76727919 2036 gdb::observers::inferior_created.attach (thread_db_inferior_created);
fb0e1ba7 2037}
This page took 1.868962 seconds and 4 git commands to generate.