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