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