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