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