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