Add PR number to previous delta to the bfd/ directory.
[deliverable/binutils-gdb.git] / gdb / sol-thread.c
CommitLineData
8d027a04
MK
1/* Solaris threads debugging interface.
2
e2882c85 3 Copyright (C) 1996-2018 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 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/>. */
c906108c
SS
19
20/* This module implements a sort of half target that sits between the
8d027a04
MK
21 machine-independent parts of GDB and the /proc interface (procfs.c)
22 to provide access to the Solaris user-mode thread implementation.
23
24 Solaris threads are true user-mode threads, which are invoked via
25 the thr_* and pthread_* (native and POSIX respectivly) interfaces.
26 These are mostly implemented in user-space, with all thread context
27 kept in various structures that live in the user's heap. These
28 should not be confused with lightweight processes (LWPs), which are
29 implemented by the kernel, and scheduled without explicit
30 intervention by the process.
31
32 Just to confuse things a little, Solaris threads (both native and
33 POSIX) are actually implemented using LWPs. In general, there are
34 going to be more threads than LWPs. There is no fixed
35 correspondence between a thread and an LWP. When a thread wants to
36 run, it gets scheduled onto the first available LWP and can
37 therefore migrate from one LWP to another as time goes on. A
c906108c
SS
38 sleeping thread may not be associated with an LWP at all!
39
8d027a04
MK
40 To make it possible to mess with threads, Sun provides a library
41 called libthread_db.so.1 (not to be confused with
42 libthread_db.so.0, which doesn't have a published interface). This
43 interface has an upper part, which it provides, and a lower part
44 which we provide. The upper part consists of the td_* routines,
45 which allow us to find all the threads, query their state, etc...
46 The lower part consists of all of the ps_*, which are used by the
47 td_* routines to read/write memory, manipulate LWPs, lookup
48 symbols, etc... The ps_* routines actually do most of their work
49 by calling functions in procfs.c. */
c906108c
SS
50
51#include "defs.h"
52#include <thread.h>
53#include <proc_service.h>
54#include <thread_db.h>
55#include "gdbthread.h"
56#include "target.h"
57#include "inferior.h"
58#include <fcntl.h>
53ce3c39 59#include <sys/stat.h>
c906108c
SS
60#include <dlfcn.h>
61#include "gdbcmd.h"
23e04971 62#include "gdbcore.h"
4e052eda 63#include "regcache.h"
d45b6f32 64#include "solib.h"
990f9fe3 65#include "symfile.h"
76727919 66#include "observable.h"
d1a7880c 67#include "procfs.h"
d3c1a85f
JB
68#include "symtab.h"
69#include "minsyms.h"
70#include "objfiles.h"
6f4492c8 71
d9f719f1
PA
72static const target_info thread_db_target_info = {
73 "solaris-threads",
74 N_("Solaris threads and pthread."),
75 N_("Solaris threads and pthread support.")
76};
77
f6ac5f3d
PA
78class sol_thread_target final : public target_ops
79{
80public:
81 sol_thread_target ()
82 { this->to_stratum = thread_stratum; }
83
d9f719f1
PA
84 const target_info &info () const override
85 { return thread_db_target_info; }
f6ac5f3d
PA
86
87 void detach (inferior *, int) override;
88 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
89 void resume (ptid_t, int, enum gdb_signal) override;
90 void mourn_inferior () override;
91 const char *pid_to_str (ptid_t) override;
92 ptid_t get_ada_task_ptid (long lwp, long thread) override;
93
94 void fetch_registers (struct regcache *, int) override;
95 void store_registers (struct regcache *, int) override;
96
97 enum target_xfer_status xfer_partial (enum target_object object,
98 const char *annex,
99 gdb_byte *readbuf,
100 const gdb_byte *writebuf,
101 ULONGEST offset, ULONGEST len,
102 ULONGEST *xfered_len) override;
103
57810aa7 104 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
105 void update_thread_list () override;
106};
107
108static sol_thread_target sol_thread_ops;
c906108c 109
c378eb4e 110/* Prototypes for supply_gregset etc. */
c60c0f5f 111#include "gregset.h"
c906108c 112
8d027a04
MK
113/* This struct is defined by us, but mainly used for the proc_service
114 interface. We don't have much use for it, except as a handy place
115 to get a real PID for memory accesses. */
c906108c
SS
116
117struct ps_prochandle
8d027a04
MK
118{
119 ptid_t ptid;
120};
c906108c
SS
121
122struct string_map
8d027a04
MK
123{
124 int num;
995816ba 125 const char *str;
8d027a04 126};
c906108c
SS
127
128static struct ps_prochandle main_ph;
129static td_thragent_t *main_ta;
130static int sol_thread_active = 0;
131
8d027a04
MK
132/* Default definitions: These must be defined in tm.h if they are to
133 be shared with a process module such as procfs. */
d4f3574e 134
b196bc4c
RO
135/* Types of the libthread_db functions. */
136
137typedef void (td_log_ftype)(const int on_off);
138typedef td_err_e (td_ta_new_ftype)(const struct ps_prochandle *ph_p,
139 td_thragent_t **ta_pp);
140typedef td_err_e (td_ta_delete_ftype)(td_thragent_t *ta_p);
141typedef td_err_e (td_init_ftype)(void);
142typedef td_err_e (td_ta_get_ph_ftype)(const td_thragent_t *ta_p,
143 struct ps_prochandle **ph_pp);
144typedef td_err_e (td_ta_get_nthreads_ftype)(const td_thragent_t *ta_p,
145 int *nthread_p);
146typedef td_err_e (td_ta_tsd_iter_ftype)(const td_thragent_t *ta_p,
147 td_key_iter_f *cb, void *cbdata_p);
148typedef td_err_e (td_ta_thr_iter_ftype)(const td_thragent_t *ta_p,
149 td_thr_iter_f *cb, void *cbdata_p,
150 td_thr_state_e state, int ti_pri,
151 sigset_t *ti_sigmask_p,
152 unsigned ti_user_flags);
153typedef td_err_e (td_thr_validate_ftype)(const td_thrhandle_t *th_p);
154typedef td_err_e (td_thr_tsd_ftype)(const td_thrhandle_t * th_p,
155 const thread_key_t key, void **data_pp);
156typedef td_err_e (td_thr_get_info_ftype)(const td_thrhandle_t *th_p,
157 td_thrinfo_t *ti_p);
158typedef td_err_e (td_thr_getfpregs_ftype)(const td_thrhandle_t *th_p,
159 prfpregset_t *fpregset);
160typedef td_err_e (td_thr_getxregsize_ftype)(const td_thrhandle_t *th_p,
161 int *xregsize);
162typedef td_err_e (td_thr_getxregs_ftype)(const td_thrhandle_t *th_p,
163 const caddr_t xregset);
164typedef td_err_e (td_thr_sigsetmask_ftype)(const td_thrhandle_t *th_p,
165 const sigset_t ti_sigmask);
166typedef td_err_e (td_thr_setprio_ftype)(const td_thrhandle_t *th_p,
167 const int ti_pri);
168typedef td_err_e (td_thr_setsigpending_ftype)(const td_thrhandle_t *th_p,
169 const uchar_t ti_pending_flag,
170 const sigset_t ti_pending);
171typedef td_err_e (td_thr_setfpregs_ftype)(const td_thrhandle_t *th_p,
172 const prfpregset_t *fpregset);
173typedef td_err_e (td_thr_setxregs_ftype)(const td_thrhandle_t *th_p,
174 const caddr_t xregset);
175typedef td_err_e (td_ta_map_id2thr_ftype)(const td_thragent_t *ta_p,
176 thread_t tid,
177 td_thrhandle_t *th_p);
178typedef td_err_e (td_ta_map_lwp2thr_ftype)(const td_thragent_t *ta_p,
179 lwpid_t lwpid,
180 td_thrhandle_t *th_p);
181typedef td_err_e (td_thr_getgregs_ftype)(const td_thrhandle_t *th_p,
182 prgregset_t regset);
183typedef td_err_e (td_thr_setgregs_ftype)(const td_thrhandle_t *th_p,
184 const prgregset_t regset);
185
8d027a04
MK
186/* Pointers to routines from libthread_db resolved by dlopen(). */
187
b196bc4c
RO
188static td_log_ftype *p_td_log;
189static td_ta_new_ftype *p_td_ta_new;
190static td_ta_delete_ftype *p_td_ta_delete;
191static td_init_ftype *p_td_init;
192static td_ta_get_ph_ftype *p_td_ta_get_ph;
193static td_ta_get_nthreads_ftype *p_td_ta_get_nthreads;
194static td_ta_tsd_iter_ftype *p_td_ta_tsd_iter;
195static td_ta_thr_iter_ftype *p_td_ta_thr_iter;
196static td_thr_validate_ftype *p_td_thr_validate;
197static td_thr_tsd_ftype *p_td_thr_tsd;
198static td_thr_get_info_ftype *p_td_thr_get_info;
199static td_thr_getfpregs_ftype *p_td_thr_getfpregs;
200static td_thr_getxregsize_ftype *p_td_thr_getxregsize;
201static td_thr_getxregs_ftype *p_td_thr_getxregs;
202static td_thr_sigsetmask_ftype *p_td_thr_sigsetmask;
203static td_thr_setprio_ftype *p_td_thr_setprio;
204static td_thr_setsigpending_ftype *p_td_thr_setsigpending;
205static td_thr_setfpregs_ftype *p_td_thr_setfpregs;
206static td_thr_setxregs_ftype *p_td_thr_setxregs;
207static td_ta_map_id2thr_ftype *p_td_ta_map_id2thr;
208static td_ta_map_lwp2thr_ftype *p_td_ta_map_lwp2thr;
209static td_thr_getgregs_ftype *p_td_thr_getgregs;
210static td_thr_setgregs_ftype *p_td_thr_setgregs;
8d027a04 211\f
c906108c 212
8d027a04
MK
213/* Return the libthread_db error string associated with ERRCODE. If
214 ERRCODE is unknown, return an appropriate message. */
c906108c 215
995816ba 216static const char *
fba45db2 217td_err_string (td_err_e errcode)
c906108c 218{
8d027a04 219 static struct string_map td_err_table[] =
c5aa993b 220 {
8d027a04
MK
221 { TD_OK, "generic \"call succeeded\"" },
222 { TD_ERR, "generic error." },
223 { TD_NOTHR, "no thread can be found to satisfy query" },
224 { TD_NOSV, "no synch. variable can be found to satisfy query" },
225 { TD_NOLWP, "no lwp can be found to satisfy query" },
226 { TD_BADPH, "invalid process handle" },
227 { TD_BADTH, "invalid thread handle" },
228 { TD_BADSH, "invalid synchronization handle" },
229 { TD_BADTA, "invalid thread agent" },
230 { TD_BADKEY, "invalid key" },
231 { TD_NOMSG, "td_thr_event_getmsg() called when there was no message" },
232 { TD_NOFPREGS, "FPU register set not available for given thread" },
233 { TD_NOLIBTHREAD, "application not linked with libthread" },
234 { TD_NOEVENT, "requested event is not supported" },
235 { TD_NOCAPAB, "capability not available" },
236 { TD_DBERR, "Debugger service failed" },
237 { TD_NOAPLIC, "Operation not applicable to" },
238 { TD_NOTSD, "No thread specific data for this thread" },
239 { TD_MALLOC, "Malloc failed" },
240 { TD_PARTIALREG, "Only part of register set was written/read" },
241 { TD_NOXREGS, "X register set not available for given thread" }
c5aa993b 242 };
c906108c
SS
243 const int td_err_size = sizeof td_err_table / sizeof (struct string_map);
244 int i;
245 static char buf[50];
246
247 for (i = 0; i < td_err_size; i++)
248 if (td_err_table[i].num == errcode)
249 return td_err_table[i].str;
c5aa993b 250
8c042590
PM
251 xsnprintf (buf, sizeof (buf), "Unknown libthread_db error code: %d",
252 errcode);
c906108c
SS
253
254 return buf;
255}
c906108c 256
b021a221 257/* Return the libthread_db state string assicoated with STATECODE.
8d027a04 258 If STATECODE is unknown, return an appropriate message. */
c906108c 259
995816ba 260static const char *
fba45db2 261td_state_string (td_thr_state_e statecode)
c906108c 262{
8d027a04 263 static struct string_map td_thr_state_table[] =
c5aa993b 264 {
8d027a04
MK
265 { TD_THR_ANY_STATE, "any state" },
266 { TD_THR_UNKNOWN, "unknown" },
267 { TD_THR_STOPPED, "stopped" },
268 { TD_THR_RUN, "run" },
269 { TD_THR_ACTIVE, "active" },
270 { TD_THR_ZOMBIE, "zombie" },
271 { TD_THR_SLEEP, "sleep" },
272 { TD_THR_STOPPED_ASLEEP, "stopped asleep" }
c5aa993b 273 };
8d027a04
MK
274 const int td_thr_state_table_size =
275 sizeof td_thr_state_table / sizeof (struct string_map);
c906108c
SS
276 int i;
277 static char buf[50];
278
279 for (i = 0; i < td_thr_state_table_size; i++)
280 if (td_thr_state_table[i].num == statecode)
281 return td_thr_state_table[i].str;
c5aa993b 282
8c042590
PM
283 xsnprintf (buf, sizeof (buf), "Unknown libthread_db state code: %d",
284 statecode);
c906108c
SS
285
286 return buf;
287}
288\f
c906108c 289
8d027a04
MK
290/* Convert a POSIX or Solaris thread ID into a LWP ID. If THREAD_ID
291 doesn't exist, that's an error. If it's an inactive thread, return
2689673f 292 DEFAULT_LWP.
c906108c 293
8d027a04 294 NOTE: This function probably shouldn't call error(). */
c906108c 295
39f77062
KB
296static ptid_t
297thread_to_lwp (ptid_t thread_id, int default_lwp)
c906108c
SS
298{
299 td_thrinfo_t ti;
300 td_thrhandle_t th;
301 td_err_e val;
302
15a9e13e 303 if (thread_id.lwp_p ())
8d027a04 304 return thread_id; /* It's already an LWP ID. */
c906108c 305
8d027a04 306 /* It's a thread. Convert to LWP. */
c906108c 307
cc6bcb54 308 val = p_td_ta_map_id2thr (main_ta, thread_id.tid (), &th);
c906108c 309 if (val == TD_NOTHR)
f2907e49 310 return ptid_t (-1); /* Thread must have terminated. */
c906108c 311 else if (val != TD_OK)
8a3fe4f8 312 error (_("thread_to_lwp: td_ta_map_id2thr %s"), td_err_string (val));
c906108c
SS
313
314 val = p_td_thr_get_info (&th, &ti);
315 if (val == TD_NOTHR)
f2907e49 316 return ptid_t (-1); /* Thread must have terminated. */
c906108c 317 else if (val != TD_OK)
8a3fe4f8 318 error (_("thread_to_lwp: td_thr_get_info: %s"), td_err_string (val));
c906108c
SS
319
320 if (ti.ti_state != TD_THR_ACTIVE)
321 {
322 if (default_lwp != -1)
f2907e49 323 return ptid_t (default_lwp);
8a3fe4f8 324 error (_("thread_to_lwp: thread state not active: %s"),
c906108c
SS
325 td_state_string (ti.ti_state));
326 }
327
e99b03dc 328 return ptid_t (thread_id.pid (), ti.ti_lid, 0);
c906108c 329}
c906108c 330
8d027a04
MK
331/* Convert an LWP ID into a POSIX or Solaris thread ID. If LWP_ID
332 doesn't exists, that's an error.
c906108c 333
8d027a04 334 NOTE: This function probably shouldn't call error(). */
c906108c 335
39f77062
KB
336static ptid_t
337lwp_to_thread (ptid_t lwp)
c906108c
SS
338{
339 td_thrinfo_t ti;
340 td_thrhandle_t th;
341 td_err_e val;
342
d2a107e3 343 if (lwp.tid_p ())
8d027a04 344 return lwp; /* It's already a thread ID. */
c906108c 345
8d027a04 346 /* It's an LWP. Convert it to a thread ID. */
c906108c 347
28439f5e 348 if (!target_thread_alive (lwp))
f2907e49 349 return ptid_t (-1); /* Must be a defunct LPW. */
c906108c 350
e38504b3 351 val = p_td_ta_map_lwp2thr (main_ta, lwp.lwp (), &th);
c906108c 352 if (val == TD_NOTHR)
f2907e49 353 return ptid_t (-1); /* Thread must have terminated. */
c906108c 354 else if (val != TD_OK)
8a3fe4f8 355 error (_("lwp_to_thread: td_ta_map_lwp2thr: %s."), td_err_string (val));
c906108c
SS
356
357 val = p_td_thr_validate (&th);
358 if (val == TD_NOTHR)
8d027a04 359 return lwp; /* Unknown to libthread; just return LPW, */
c906108c 360 else if (val != TD_OK)
8a3fe4f8 361 error (_("lwp_to_thread: td_thr_validate: %s."), td_err_string (val));
c906108c
SS
362
363 val = p_td_thr_get_info (&th, &ti);
364 if (val == TD_NOTHR)
f2907e49 365 return ptid_t (-1); /* Thread must have terminated. */
c906108c 366 else if (val != TD_OK)
8a3fe4f8 367 error (_("lwp_to_thread: td_thr_get_info: %s."), td_err_string (val));
c906108c 368
e99b03dc 369 return ptid_t (lwp.pid (), 0 , ti.ti_tid);
c906108c
SS
370}
371\f
c906108c 372
8d027a04 373/* Most target vector functions from here on actually just pass
28439f5e
PA
374 through to the layer beneath, as they don't need to do anything
375 specific for threads. */
c906108c 376
8d027a04
MK
377/* Take a program previously attached to and detaches it. The program
378 resumes execution and will no longer stop on signals, etc. We'd
379 better not have left any breakpoints in the program or it'll die
380 when it hits one. For this to work, it may be necessary for the
381 process to have been previously attached. It *might* work if the
382 program was started via the normal ptrace (PTRACE_TRACEME). */
c906108c 383
f6ac5f3d
PA
384void
385sol_thread_target::detach (inferior *inf, int from_tty)
c906108c 386{
d6ca69cd 387 target_ops *beneath = this->beneath ();
28439f5e 388
2689673f 389 sol_thread_active = 0;
e99b03dc 390 inferior_ptid = ptid_t (main_ph.ptid.pid ());
f6ac5f3d
PA
391 unpush_target (this);
392 beneath->detach (inf, from_tty);
c906108c
SS
393}
394
8d027a04
MK
395/* Resume execution of process PTID. If STEP is nozero, then just
396 single step it. If SIGNAL is nonzero, restart it with that signal
397 activated. We may have to convert PTID from a thread ID to an LWP
398 ID for procfs. */
c906108c 399
f6ac5f3d
PA
400void
401sol_thread_target::resume (ptid_t ptid, int step, enum gdb_signal signo)
c906108c 402{
2989a365 403 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
c906108c 404
e99b03dc
TT
405 inferior_ptid = thread_to_lwp (inferior_ptid, main_ph.ptid.pid ());
406 if (inferior_ptid.pid () == -1)
39f77062 407 inferior_ptid = procfs_first_available ();
c906108c 408
e99b03dc 409 if (ptid.pid () != -1)
c906108c 410 {
39f77062 411 ptid_t save_ptid = ptid;
c906108c 412
39f77062 413 ptid = thread_to_lwp (ptid, -2);
e99b03dc 414 if (ptid.pid () == -2) /* Inactive thread. */
8a3fe4f8 415 error (_("This version of Solaris can't start inactive threads."));
e99b03dc 416 if (info_verbose && ptid.pid () == -1)
8a3fe4f8 417 warning (_("Specified thread %ld seems to have terminated"),
cc6bcb54 418 save_ptid.tid ());
c906108c
SS
419 }
420
d6ca69cd 421 beneath ()->resume (ptid, step, signo);
c906108c
SS
422}
423
2689673f 424/* Wait for any threads to stop. We may have to convert PTID from a
8d027a04 425 thread ID to an LWP ID, and vice versa on the way out. */
c906108c 426
f6ac5f3d
PA
427ptid_t
428sol_thread_target::wait (ptid_t ptid, struct target_waitstatus *ourstatus,
429 int options)
c906108c 430{
39f77062
KB
431 ptid_t rtnval;
432 ptid_t save_ptid;
c906108c 433
39f77062 434 save_ptid = inferior_ptid;
2989a365 435 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
c906108c 436
e99b03dc
TT
437 inferior_ptid = thread_to_lwp (inferior_ptid, main_ph.ptid.pid ());
438 if (inferior_ptid.pid () == -1)
39f77062 439 inferior_ptid = procfs_first_available ();
c906108c 440
e99b03dc 441 if (ptid.pid () != -1)
c906108c 442 {
f8740dc5 443 ptid_t ptid_for_warning = ptid;
c906108c 444
39f77062 445 ptid = thread_to_lwp (ptid, -2);
e99b03dc 446 if (ptid.pid () == -2) /* Inactive thread. */
8a3fe4f8 447 error (_("This version of Solaris can't start inactive threads."));
e99b03dc 448 if (info_verbose && ptid.pid () == -1)
8a3fe4f8 449 warning (_("Specified thread %ld seems to have terminated"),
f8740dc5 450 ptid_for_warning.tid ());
c906108c
SS
451 }
452
d6ca69cd 453 rtnval = beneath ()->wait (ptid, ourstatus, options);
c906108c
SS
454
455 if (ourstatus->kind != TARGET_WAITKIND_EXITED)
456 {
8d027a04 457 /* Map the LWP of interest back to the appropriate thread ID. */
c906108c 458 rtnval = lwp_to_thread (rtnval);
e99b03dc 459 if (rtnval.pid () == -1)
39f77062 460 rtnval = save_ptid;
c906108c 461
8d027a04 462 /* See if we have a new thread. */
24bce9bb
PA
463 if (rtnval.tid_p () && rtnval != save_ptid)
464 {
465 thread_info *thr = find_thread_ptid (rtnval);
466 if (thr == NULL || thr->state == THREAD_EXITED)
467 add_thread (rtnval);
468 }
c906108c
SS
469 }
470
8d027a04
MK
471 /* During process initialization, we may get here without the thread
472 package being initialized, since that can only happen after we've
473 found the shared libs. */
c906108c 474
c906108c
SS
475 return rtnval;
476}
477
f6ac5f3d
PA
478void
479sol_thread_target::fetch_registers (struct regcache *regcache, int regnum)
c906108c
SS
480{
481 thread_t thread;
482 td_thrhandle_t thandle;
483 td_err_e val;
484 prgregset_t gregset;
485 prfpregset_t fpregset;
e71c308d
DJ
486 gdb_gregset_t *gregset_p = &gregset;
487 gdb_fpregset_t *fpregset_p = &fpregset;
222312d3 488 ptid_t ptid = regcache->ptid ();
e71c308d 489
d2a107e3 490 if (!ptid.tid_p ())
8d027a04 491 {
28439f5e 492 /* It's an LWP; pass the request on to the layer beneath. */
d6ca69cd 493 beneath ()->fetch_registers (regcache, regnum);
c906108c
SS
494 return;
495 }
496
bcc0c096 497 /* Solaris thread: convert PTID into a td_thrhandle_t. */
cc6bcb54 498 thread = ptid.tid ();
c906108c 499 if (thread == 0)
8a3fe4f8 500 error (_("sol_thread_fetch_registers: thread == 0"));
c906108c
SS
501
502 val = p_td_ta_map_id2thr (main_ta, thread, &thandle);
503 if (val != TD_OK)
8a3fe4f8 504 error (_("sol_thread_fetch_registers: td_ta_map_id2thr: %s"),
c906108c
SS
505 td_err_string (val));
506
8d027a04 507 /* Get the general-purpose registers. */
c906108c
SS
508
509 val = p_td_thr_getgregs (&thandle, gregset);
8d027a04 510 if (val != TD_OK && val != TD_PARTIALREG)
8a3fe4f8 511 error (_("sol_thread_fetch_registers: td_thr_getgregs %s"),
c906108c
SS
512 td_err_string (val));
513
8d027a04
MK
514 /* For SPARC, TD_PARTIALREG means that only %i0...%i7, %l0..%l7, %pc
515 and %sp are saved (by a thread context switch). */
c906108c 516
8d027a04 517 /* And, now the floating-point registers. */
c906108c
SS
518
519 val = p_td_thr_getfpregs (&thandle, &fpregset);
8d027a04 520 if (val != TD_OK && val != TD_NOFPREGS)
8a3fe4f8 521 error (_("sol_thread_fetch_registers: td_thr_getfpregs %s"),
c906108c
SS
522 td_err_string (val));
523
8d027a04
MK
524 /* Note that we must call supply_gregset and supply_fpregset *after*
525 calling the td routines because the td routines call ps_lget*
526 which affect the values stored in the registers array. */
c906108c 527
e71c308d
DJ
528 supply_gregset (regcache, (const gdb_gregset_t *) gregset_p);
529 supply_fpregset (regcache, (const gdb_fpregset_t *) fpregset_p);
c906108c
SS
530}
531
f6ac5f3d
PA
532void
533sol_thread_target::store_registers (struct regcache *regcache, int regnum)
c906108c
SS
534{
535 thread_t thread;
536 td_thrhandle_t thandle;
537 td_err_e val;
8d027a04 538 prgregset_t gregset;
c906108c 539 prfpregset_t fpregset;
222312d3 540 ptid_t ptid = regcache->ptid ();
c906108c 541
d2a107e3 542 if (!ptid.tid_p ())
8d027a04 543 {
28439f5e 544 /* It's an LWP; pass the request on to the layer beneath. */
d6ca69cd 545 beneath ()->store_registers (regcache, regnum);
c906108c
SS
546 return;
547 }
548
bcc0c096 549 /* Solaris thread: convert PTID into a td_thrhandle_t. */
cc6bcb54 550 thread = ptid.tid ();
c906108c
SS
551
552 val = p_td_ta_map_id2thr (main_ta, thread, &thandle);
553 if (val != TD_OK)
8a3fe4f8 554 error (_("sol_thread_store_registers: td_ta_map_id2thr %s"),
c906108c
SS
555 td_err_string (val));
556
8d027a04
MK
557 if (regnum != -1)
558 {
c60c0f5f 559 val = p_td_thr_getgregs (&thandle, gregset);
c906108c 560 if (val != TD_OK)
8a3fe4f8 561 error (_("sol_thread_store_registers: td_thr_getgregs %s"),
c906108c
SS
562 td_err_string (val));
563 val = p_td_thr_getfpregs (&thandle, &fpregset);
564 if (val != TD_OK)
8a3fe4f8 565 error (_("sol_thread_store_registers: td_thr_getfpregs %s"),
c906108c 566 td_err_string (val));
c906108c
SS
567 }
568
56be3814
UW
569 fill_gregset (regcache, (gdb_gregset_t *) &gregset, regnum);
570 fill_fpregset (regcache, (gdb_fpregset_t *) &fpregset, regnum);
c906108c 571
c60c0f5f 572 val = p_td_thr_setgregs (&thandle, gregset);
c906108c 573 if (val != TD_OK)
8a3fe4f8 574 error (_("sol_thread_store_registers: td_thr_setgregs %s"),
c906108c
SS
575 td_err_string (val));
576 val = p_td_thr_setfpregs (&thandle, &fpregset);
577 if (val != TD_OK)
8a3fe4f8 578 error (_("sol_thread_store_registers: td_thr_setfpregs %s"),
c906108c 579 td_err_string (val));
c906108c
SS
580}
581
8d027a04
MK
582/* Perform partial transfers on OBJECT. See target_read_partial and
583 target_write_partial for details of each variant. One, and only
584 one, of readbuf or writebuf must be non-NULL. */
6034ae49 585
f6ac5f3d
PA
586enum target_xfer_status
587sol_thread_target::xfer_partial (enum target_object object,
588 const char *annex, gdb_byte *readbuf,
589 const gdb_byte *writebuf,
590 ULONGEST offset, ULONGEST len,
591 ULONGEST *xfered_len)
6034ae49 592{
2989a365 593 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
6034ae49 594
d2a107e3 595 if (inferior_ptid.tid_p () || !target_thread_alive (inferior_ptid))
8d027a04
MK
596 {
597 /* It's either a thread or an LWP that isn't alive. Any live
598 LWP will do so use the first available.
599
600 NOTE: We don't need to call switch_to_thread; we're just
601 reading memory. */
602 inferior_ptid = procfs_first_available ();
603 }
6034ae49 604
d6ca69cd
PA
605 return beneath ()->xfer_partial (object, annex, readbuf,
606 writebuf, offset, len, xfered_len);
6034ae49
RM
607}
608
c906108c 609static void
28439f5e 610check_for_thread_db (void)
c906108c 611{
28439f5e
PA
612 td_err_e err;
613 ptid_t ptid;
c906108c 614
9a362b9a 615 /* Don't attempt to use thread_db for remote targets. */
f6ac5f3d 616 if (!(target_can_run () || core_bfd))
9a362b9a
PA
617 return;
618
28439f5e
PA
619 /* Do nothing if we couldn't load libthread_db.so.1. */
620 if (p_td_ta_new == NULL)
621 return;
c906108c 622
28439f5e
PA
623 if (sol_thread_active)
624 /* Nothing to do. The thread library was already detected and the
625 target vector was already activated. */
626 return;
c906108c 627
28439f5e
PA
628 /* Now, initialize libthread_db. This needs to be done after the
629 shared libraries are located because it needs information from
630 the user's thread library. */
c906108c 631
28439f5e
PA
632 err = p_td_init ();
633 if (err != TD_OK)
634 {
635 warning (_("sol_thread_new_objfile: td_init: %s"), td_err_string (err));
636 return;
637 }
c906108c 638
28439f5e
PA
639 /* Now attempt to open a connection to the thread library. */
640 err = p_td_ta_new (&main_ph, &main_ta);
641 switch (err)
c906108c 642 {
28439f5e
PA
643 case TD_NOLIBTHREAD:
644 /* No thread library was detected. */
645 break;
2689673f 646
28439f5e
PA
647 case TD_OK:
648 printf_unfiltered (_("[Thread debugging using libthread_db enabled]\n"));
c906108c 649
28439f5e 650 /* The thread library was detected. Activate the sol_thread target. */
c906108c 651 push_target (&sol_thread_ops);
28439f5e 652 sol_thread_active = 1;
c906108c 653
28439f5e 654 main_ph.ptid = inferior_ptid; /* Save for xfer_memory. */
2689673f 655 ptid = lwp_to_thread (inferior_ptid);
e99b03dc 656 if (ptid.pid () != -1)
28439f5e
PA
657 inferior_ptid = ptid;
658
e8032dde 659 target_update_thread_list ();
28439f5e
PA
660 break;
661
662 default:
663 warning (_("Cannot initialize thread debugging library: %s"),
664 td_err_string (err));
665 break;
c906108c
SS
666 }
667}
668
8d027a04
MK
669/* This routine is called whenever a new symbol table is read in, or
670 when all symbol tables are removed. libthread_db can only be
671 initialized when it finds the right variables in libthread.so.
672 Since it's a shared library, those variables don't show up until
06d3b283 673 the library gets mapped and the symbol table is read in. */
c906108c 674
06d3b283 675static void
fba45db2 676sol_thread_new_objfile (struct objfile *objfile)
c906108c 677{
28439f5e
PA
678 if (objfile != NULL)
679 check_for_thread_db ();
c906108c
SS
680}
681
682/* Clean up after the inferior dies. */
683
f6ac5f3d
PA
684void
685sol_thread_target::mourn_inferior ()
c906108c 686{
d6ca69cd 687 target_ops *beneath = this->beneath ();
28439f5e 688
2689673f 689 sol_thread_active = 0;
c906108c 690
f6ac5f3d 691 unpush_target (this);
c906108c 692
f6ac5f3d 693 beneath->mourn_inferior ();
c906108c
SS
694}
695
8d027a04
MK
696/* Return true if PTID is still active in the inferior. */
697
57810aa7 698bool
f6ac5f3d 699sol_thread_target::thread_alive (ptid_t ptid)
c906108c 700{
d2a107e3 701 if (ptid.tid_p ())
c906108c 702 {
8d027a04 703 /* It's a (user-level) thread. */
c906108c
SS
704 td_err_e val;
705 td_thrhandle_t th;
39f77062 706 int pid;
c906108c 707
cc6bcb54 708 pid = ptid.tid ();
c475f569
RO
709 val = p_td_ta_map_id2thr (main_ta, pid, &th);
710 if (val != TD_OK)
57810aa7 711 return false; /* Thread not found. */
c475f569
RO
712 val = p_td_thr_validate (&th);
713 if (val != TD_OK)
57810aa7
PA
714 return false; /* Thread not valid. */
715 return true; /* Known thread. */
c906108c 716 }
c5aa993b 717 else
c906108c 718 {
28439f5e 719 /* It's an LPW; pass the request on to the layer below. */
d6ca69cd 720 return beneath ()->thread_alive (ptid);
c906108c
SS
721 }
722}
723
c906108c 724\f
8d027a04
MK
725/* These routines implement the lower half of the thread_db interface,
726 i.e. the ps_* routines. */
c906108c 727
8d027a04
MK
728/* The next four routines are called by libthread_db to tell us to
729 stop and stop a particular process or lwp. Since GDB ensures that
730 these are all stopped by the time we call anything in thread_db,
731 these routines need to do nothing. */
c906108c 732
8d027a04 733/* Process stop. */
d4f3574e 734
c906108c 735ps_err_e
281c4447 736ps_pstop (struct ps_prochandle *ph)
c906108c
SS
737{
738 return PS_OK;
739}
740
8d027a04 741/* Process continue. */
d4f3574e 742
c906108c 743ps_err_e
281c4447 744ps_pcontinue (struct ps_prochandle *ph)
c906108c
SS
745{
746 return PS_OK;
747}
748
8d027a04 749/* LWP stop. */
d4f3574e 750
c906108c 751ps_err_e
281c4447 752ps_lstop (struct ps_prochandle *ph, lwpid_t lwpid)
c906108c
SS
753{
754 return PS_OK;
755}
756
8d027a04 757/* LWP continue. */
d4f3574e 758
c906108c 759ps_err_e
281c4447 760ps_lcontinue (struct ps_prochandle *ph, lwpid_t lwpid)
c906108c
SS
761{
762 return PS_OK;
763}
764
d4f3574e
SS
765/* Looks up the symbol LD_SYMBOL_NAME in the debugger's symbol table. */
766
c906108c 767ps_err_e
281c4447
RO
768ps_pglobal_lookup (struct ps_prochandle *ph, const char *ld_object_name,
769 const char *ld_symbol_name, psaddr_t *ld_symbol_addr)
c906108c 770{
3b7344d5 771 struct bound_minimal_symbol ms;
c906108c
SS
772
773 ms = lookup_minimal_symbol (ld_symbol_name, NULL, NULL);
3b7344d5 774 if (!ms.minsym)
c906108c
SS
775 return PS_NOSYM;
776
d3c1a85f 777 *ld_symbol_addr = BMSYMBOL_VALUE_ADDRESS (ms);
c906108c
SS
778 return PS_OK;
779}
780
781/* Common routine for reading and writing memory. */
782
783static ps_err_e
281c4447 784rw_common (int dowrite, const struct ps_prochandle *ph, psaddr_t addr,
019c1128 785 gdb_byte *buf, int size)
c906108c 786{
28439f5e 787 int ret;
c906108c 788
2989a365 789 scoped_restore save_inferior_ptid = make_scoped_restore (&inferior_ptid);
c906108c 790
d2a107e3 791 if (inferior_ptid.tid_p () || !target_thread_alive (inferior_ptid))
8d027a04
MK
792 {
793 /* It's either a thread or an LWP that isn't alive. Any live
794 LWP will do so use the first available.
795
796 NOTE: We don't need to call switch_to_thread; we're just
797 reading memory. */
798 inferior_ptid = procfs_first_available ();
799 }
c906108c 800
23e04971
MS
801#if defined (__sparcv9)
802 /* For Sparc64 cross Sparc32, make sure the address has not been
803 accidentally sign-extended (or whatever) to beyond 32 bits. */
359431fb 804 if (bfd_get_arch_size (exec_bfd) == 32)
23e04971
MS
805 addr &= 0xffffffff;
806#endif
807
28439f5e 808 if (dowrite)
0c4f667c 809 ret = target_write_memory (addr, (gdb_byte *) buf, size);
28439f5e 810 else
0c4f667c 811 ret = target_read_memory (addr, (gdb_byte *) buf, size);
c906108c 812
28439f5e 813 return (ret == 0 ? PS_OK : PS_ERR);
c906108c
SS
814}
815
d4f3574e
SS
816/* Copies SIZE bytes from target process .data segment to debugger memory. */
817
c906108c 818ps_err_e
281c4447 819ps_pdread (struct ps_prochandle *ph, psaddr_t addr, void *buf, size_t size)
c906108c 820{
b196bc4c 821 return rw_common (0, ph, addr, (gdb_byte *) buf, size);
c906108c
SS
822}
823
d4f3574e
SS
824/* Copies SIZE bytes from debugger memory .data segment to target process. */
825
c906108c 826ps_err_e
281c4447
RO
827ps_pdwrite (struct ps_prochandle *ph, psaddr_t addr,
828 const void *buf, size_t size)
c906108c 829{
019c1128 830 return rw_common (1, ph, addr, (gdb_byte *) buf, size);
c906108c
SS
831}
832
d4f3574e
SS
833/* Copies SIZE bytes from target process .text segment to debugger memory. */
834
c906108c 835ps_err_e
281c4447 836ps_ptread (struct ps_prochandle *ph, psaddr_t addr, void *buf, size_t size)
c906108c 837{
b196bc4c 838 return rw_common (0, ph, addr, (gdb_byte *) buf, size);
c906108c
SS
839}
840
d4f3574e
SS
841/* Copies SIZE bytes from debugger memory .text segment to target process. */
842
c906108c 843ps_err_e
281c4447
RO
844ps_ptwrite (struct ps_prochandle *ph, psaddr_t addr,
845 const void *buf, size_t size)
c906108c 846{
019c1128 847 return rw_common (1, ph, addr, (gdb_byte *) buf, size);
c906108c
SS
848}
849
8d027a04 850/* Get general-purpose registers for LWP. */
c906108c
SS
851
852ps_err_e
281c4447 853ps_lgetregs (struct ps_prochandle *ph, lwpid_t lwpid, prgregset_t gregset)
c906108c 854{
e99b03dc 855 ptid_t ptid = ptid_t (inferior_ptid.pid (), lwpid, 0);
3e00d44f
SM
856 struct regcache *regcache
857 = get_thread_arch_regcache (ptid, target_gdbarch ());
c5aa993b 858
28439f5e 859 target_fetch_registers (regcache, -1);
594f7785 860 fill_gregset (regcache, (gdb_gregset_t *) gregset, -1);
c906108c 861
c906108c
SS
862 return PS_OK;
863}
864
8d027a04 865/* Set general-purpose registers for LWP. */
c906108c
SS
866
867ps_err_e
281c4447 868ps_lsetregs (struct ps_prochandle *ph, lwpid_t lwpid,
c906108c
SS
869 const prgregset_t gregset)
870{
e99b03dc 871 ptid_t ptid = ptid_t (inferior_ptid.pid (), lwpid, 0);
3e00d44f
SM
872 struct regcache *regcache
873 = get_thread_arch_regcache (ptid, target_gdbarch ());
c5aa993b 874
594f7785 875 supply_gregset (regcache, (const gdb_gregset_t *) gregset);
28439f5e 876 target_store_registers (regcache, -1);
c906108c 877
c906108c
SS
878 return PS_OK;
879}
880
d4f3574e
SS
881/* Log a message (sends to gdb_stderr). */
882
c906108c 883void
8d027a04 884ps_plog (const char *fmt, ...)
c906108c
SS
885{
886 va_list args;
887
888 va_start (args, fmt);
889
890 vfprintf_filtered (gdb_stderr, fmt, args);
891}
892
c1357578
JB
893/* Get size of extra register set. Currently a noop. */
894
895ps_err_e
281c4447 896ps_lgetxregsize (struct ps_prochandle *ph, lwpid_t lwpid, int *xregsize)
c1357578
JB
897{
898 return PS_OK;
899}
900
901/* Get extra register set. Currently a noop. */
902
903ps_err_e
281c4447 904ps_lgetxregs (struct ps_prochandle *ph, lwpid_t lwpid, caddr_t xregset)
c1357578
JB
905{
906 return PS_OK;
907}
908
909/* Set extra register set. Currently a noop. */
910
911ps_err_e
281c4447 912ps_lsetxregs (struct ps_prochandle *ph, lwpid_t lwpid, caddr_t xregset)
c1357578
JB
913{
914 return PS_OK;
915}
916
8d027a04 917/* Get floating-point registers for LWP. */
c906108c
SS
918
919ps_err_e
281c4447 920ps_lgetfpregs (struct ps_prochandle *ph, lwpid_t lwpid,
8d027a04 921 prfpregset_t *fpregset)
c906108c 922{
e99b03dc 923 ptid_t ptid = ptid_t (inferior_ptid.pid (), lwpid, 0);
3e00d44f
SM
924 struct regcache *regcache
925 = get_thread_arch_regcache (ptid, target_gdbarch ());
c906108c 926
28439f5e 927 target_fetch_registers (regcache, -1);
594f7785 928 fill_fpregset (regcache, (gdb_fpregset_t *) fpregset, -1);
c906108c 929
c906108c
SS
930 return PS_OK;
931}
932
c378eb4e 933/* Set floating-point regs for LWP. */
c906108c
SS
934
935ps_err_e
281c4447 936ps_lsetfpregs (struct ps_prochandle *ph, lwpid_t lwpid,
c5aa993b 937 const prfpregset_t * fpregset)
c906108c 938{
e99b03dc 939 ptid_t ptid = ptid_t (inferior_ptid.pid (), lwpid, 0);
3e00d44f
SM
940 struct regcache *regcache
941 = get_thread_arch_regcache (ptid, target_gdbarch ());
c5aa993b 942
594f7785 943 supply_fpregset (regcache, (const gdb_fpregset_t *) fpregset);
28439f5e 944 target_store_registers (regcache, -1);
c906108c 945
c906108c
SS
946 return PS_OK;
947}
948
8d027a04
MK
949/* Identify process as 32-bit or 64-bit. At the moment we're using
950 BFD to do this. There might be a more Solaris-specific
951 (e.g. procfs) method, but this ought to work. */
23e04971
MS
952
953ps_err_e
281c4447 954ps_pdmodel (struct ps_prochandle *ph, int *data_model)
23e04971
MS
955{
956 if (exec_bfd == 0)
a95ac8b6
PS
957 *data_model = PR_MODEL_UNKNOWN;
958 else if (bfd_get_arch_size (exec_bfd) == 32)
23e04971
MS
959 *data_model = PR_MODEL_ILP32;
960 else
961 *data_model = PR_MODEL_LP64;
962
963 return PS_OK;
964}
965
965b60ee 966#if (defined(__i386__) || defined(__x86_64__)) && defined (sun)
c906108c 967
965b60ee
JB
968/* Reads the local descriptor table of a LWP.
969
970 This function is necessary on x86-solaris only. Without it, the loading
971 of libthread_db would fail because of ps_lgetLDT being undefined. */
d4f3574e 972
c906108c 973ps_err_e
c475f569 974ps_lgetLDT (struct ps_prochandle *ph, lwpid_t lwpid, struct ssd *pldt) /* ARI: editCase function */
c906108c 975{
8d027a04 976 /* NOTE: only used on Solaris, therefore OK to refer to procfs.c. */
05e28a7b 977 struct ssd *ret;
c906108c 978
8d027a04
MK
979 /* FIXME: can't I get the process ID from the prochandle or
980 something? */
2f09097b 981
e99b03dc 982 if (inferior_ptid.pid () <= 0 || lwpid <= 0)
2f09097b
ND
983 return PS_BADLID;
984
e99b03dc 985 ret = procfs_find_LDT_entry (ptid_t (inferior_ptid.pid (),
dfd4cc63 986 lwpid, 0));
05e28a7b 987 if (ret)
c906108c 988 {
05e28a7b
AC
989 memcpy (pldt, ret, sizeof (struct ssd));
990 return PS_OK;
c906108c 991 }
8d027a04
MK
992 else
993 /* LDT not found. */
c906108c 994 return PS_ERR;
c5aa993b 995}
965b60ee 996#endif
c906108c 997\f
8d027a04
MK
998
999/* Convert PTID to printable form. */
c906108c 1000
f6ac5f3d
PA
1001const char *
1002sol_thread_target::pid_to_str (ptid_t ptid)
c906108c
SS
1003{
1004 static char buf[100];
1005
d2a107e3 1006 if (ptid.tid_p ())
c906108c 1007 {
39f77062 1008 ptid_t lwp;
c906108c 1009
39f77062 1010 lwp = thread_to_lwp (ptid, -2);
c906108c 1011
e99b03dc 1012 if (lwp.pid () == -1)
8c042590 1013 xsnprintf (buf, sizeof (buf), "Thread %ld (defunct)",
cc6bcb54 1014 ptid.tid ());
e99b03dc 1015 else if (lwp.pid () != -2)
8c042590 1016 xsnprintf (buf, sizeof (buf), "Thread %ld (LWP %ld)",
cc6bcb54 1017 ptid.tid (), lwp.lwp ());
c906108c 1018 else
dfd4cc63 1019 xsnprintf (buf, sizeof (buf), "Thread %ld ",
cc6bcb54 1020 ptid.tid ());
c906108c 1021 }
e38504b3
TT
1022 else if (ptid.lwp () != 0)
1023 xsnprintf (buf, sizeof (buf), "LWP %ld ", ptid.lwp ());
c906108c 1024 else
e99b03dc 1025 xsnprintf (buf, sizeof (buf), "process %d ", ptid.pid ());
c906108c
SS
1026
1027 return buf;
1028}
1029\f
1030
e8032dde 1031/* Worker bee for update_thread_list. Callback function that gets
8d027a04 1032 called once per user-level thread (i.e. not for LWP's). */
c906108c
SS
1033
1034static int
e8032dde 1035sol_update_thread_list_callback (const td_thrhandle_t *th, void *ignored)
c906108c
SS
1036{
1037 td_err_e retval;
1038 td_thrinfo_t ti;
c906108c 1039
8d027a04
MK
1040 retval = p_td_thr_get_info (th, &ti);
1041 if (retval != TD_OK)
1042 return -1;
1043
24bce9bb
PA
1044 ptid_t ptid = ptid_t (inferior_ptid.pid (), 0, ti.ti_tid);
1045 thread_info *thr = find_thread_ptid (ptid);
1046 if (thr == NULL || thr->state == THREAD_EXITED)
39f77062 1047 add_thread (ptid);
c906108c
SS
1048
1049 return 0;
1050}
1051
f6ac5f3d
PA
1052void
1053sol_thread_target::update_thread_list ()
c906108c 1054{
e8032dde
PA
1055 /* Delete dead threads. */
1056 prune_threads ();
1057
1058 /* Find any new LWP's. */
d6ca69cd 1059 beneath ()->update_thread_list ();
8d027a04
MK
1060
1061 /* Then find any new user-level threads. */
e8032dde 1062 p_td_ta_thr_iter (main_ta, sol_update_thread_list_callback, (void *) 0,
c906108c
SS
1063 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1064 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1065}
1066
8d027a04
MK
1067/* Worker bee for the "info sol-thread" command. This is a callback
1068 function that gets called once for each Solaris user-level thread
1069 (i.e. not for LWPs) in the inferior. Print anything interesting
1070 that we can think of. */
c906108c 1071
c5aa993b 1072static int
fba45db2 1073info_cb (const td_thrhandle_t *th, void *s)
c906108c
SS
1074{
1075 td_err_e ret;
1076 td_thrinfo_t ti;
c906108c 1077
8d027a04
MK
1078 ret = p_td_thr_get_info (th, &ti);
1079 if (ret == TD_OK)
c906108c 1080 {
c5aa993b
JM
1081 printf_filtered ("%s thread #%d, lwp %d, ",
1082 ti.ti_type == TD_THR_SYSTEM ? "system" : "user ",
c906108c 1083 ti.ti_tid, ti.ti_lid);
c5aa993b
JM
1084 switch (ti.ti_state)
1085 {
c906108c 1086 default:
c5aa993b
JM
1087 case TD_THR_UNKNOWN:
1088 printf_filtered ("<unknown state>");
1089 break;
1090 case TD_THR_STOPPED:
1091 printf_filtered ("(stopped)");
1092 break;
1093 case TD_THR_RUN:
1094 printf_filtered ("(run) ");
1095 break;
1096 case TD_THR_ACTIVE:
1097 printf_filtered ("(active) ");
1098 break;
1099 case TD_THR_ZOMBIE:
1100 printf_filtered ("(zombie) ");
1101 break;
1102 case TD_THR_SLEEP:
1103 printf_filtered ("(asleep) ");
1104 break;
1105 case TD_THR_STOPPED_ASLEEP:
1106 printf_filtered ("(stopped asleep)");
1107 break;
1108 }
8d027a04 1109 /* Print thr_create start function. */
c906108c 1110 if (ti.ti_startfunc != 0)
4ce44c66 1111 {
5812197c
JB
1112 const struct bound_minimal_symbol msym
1113 = lookup_minimal_symbol_by_pc (ti.ti_startfunc);
1114
17e760ae
JB
1115 printf_filtered (" startfunc=%s",
1116 msym.minsym
d3c1a85f 1117 ? MSYMBOL_PRINT_NAME (msym.minsym)
17e760ae 1118 : paddress (target_gdbarch (), ti.ti_startfunc));
4ce44c66 1119 }
c906108c 1120
8d027a04 1121 /* If thread is asleep, print function that went to sleep. */
c906108c 1122 if (ti.ti_state == TD_THR_SLEEP)
4ce44c66 1123 {
5812197c
JB
1124 const struct bound_minimal_symbol msym
1125 = lookup_minimal_symbol_by_pc (ti.ti_pc);
1126
17e760ae
JB
1127 printf_filtered (" sleepfunc=%s",
1128 msym.minsym
d3c1a85f 1129 ? MSYMBOL_PRINT_NAME (msym.minsym)
17e760ae 1130 : paddress (target_gdbarch (), ti.ti_pc));
4ce44c66 1131 }
c906108c 1132
c0f5f490 1133 printf_filtered ("\n");
c906108c
SS
1134 }
1135 else
8a3fe4f8 1136 warning (_("info sol-thread: failed to get info for thread."));
c906108c 1137
c5aa993b 1138 return 0;
c906108c
SS
1139}
1140
8d027a04
MK
1141/* List some state about each Solaris user-level thread in the
1142 inferior. */
c906108c
SS
1143
1144static void
e8020e54 1145info_solthreads (const char *args, int from_tty)
c906108c 1146{
e8020e54 1147 p_td_ta_thr_iter (main_ta, info_cb, (void *) args,
c906108c
SS
1148 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1149 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1150}
c906108c 1151
3caf13b4
JB
1152/* Callback routine used to find a thread based on the TID part of
1153 its PTID. */
1154
1155static int
1156thread_db_find_thread_from_tid (struct thread_info *thread, void *data)
1157{
1158 long *tid = (long *) data;
1159
cc6bcb54 1160 if (thread->ptid.tid () == *tid)
3caf13b4
JB
1161 return 1;
1162
1163 return 0;
1164}
1165
f6ac5f3d
PA
1166ptid_t
1167sol_thread_target::get_ada_task_ptid (long lwp, long thread)
3caf13b4
JB
1168{
1169 struct thread_info *thread_info =
1170 iterate_over_threads (thread_db_find_thread_from_tid, &thread);
1171
1172 if (thread_info == NULL)
1173 {
1174 /* The list of threads is probably not up to date. Find any
1175 thread that is missing from the list, and try again. */
f6ac5f3d 1176 update_thread_list ();
3caf13b4
JB
1177 thread_info = iterate_over_threads (thread_db_find_thread_from_tid,
1178 &thread);
1179 }
1180
1181 gdb_assert (thread_info != NULL);
1182
1183 return (thread_info->ptid);
1184}
1185
c906108c 1186void
fba45db2 1187_initialize_sol_thread (void)
c906108c
SS
1188{
1189 void *dlhandle;
1190
c906108c
SS
1191 dlhandle = dlopen ("libthread_db.so.1", RTLD_NOW);
1192 if (!dlhandle)
1193 goto die;
1194
1195#define resolve(X) \
b196bc4c 1196 if (!(p_##X = (X ## _ftype *) dlsym (dlhandle, #X))) \
c906108c
SS
1197 goto die;
1198
1199 resolve (td_log);
1200 resolve (td_ta_new);
1201 resolve (td_ta_delete);
1202 resolve (td_init);
1203 resolve (td_ta_get_ph);
1204 resolve (td_ta_get_nthreads);
1205 resolve (td_ta_tsd_iter);
1206 resolve (td_ta_thr_iter);
1207 resolve (td_thr_validate);
1208 resolve (td_thr_tsd);
1209 resolve (td_thr_get_info);
1210 resolve (td_thr_getfpregs);
1211 resolve (td_thr_getxregsize);
1212 resolve (td_thr_getxregs);
1213 resolve (td_thr_sigsetmask);
1214 resolve (td_thr_setprio);
1215 resolve (td_thr_setsigpending);
1216 resolve (td_thr_setfpregs);
1217 resolve (td_thr_setxregs);
1218 resolve (td_ta_map_id2thr);
1219 resolve (td_ta_map_lwp2thr);
1220 resolve (td_thr_getgregs);
1221 resolve (td_thr_setgregs);
1222
c5aa993b 1223 add_cmd ("sol-threads", class_maintenance, info_solthreads,
1a966eab 1224 _("Show info on Solaris user threads."), &maintenanceinfolist);
c906108c 1225
8d027a04 1226 /* Hook into new_objfile notification. */
76727919 1227 gdb::observers::new_objfile.attach (sol_thread_new_objfile);
c906108c
SS
1228 return;
1229
8d027a04
MK
1230 die:
1231 fprintf_unfiltered (gdb_stderr, "\
1232[GDB will not be able to debug user-mode threads: %s]\n", dlerror ());
c906108c
SS
1233
1234 if (dlhandle)
1235 dlclose (dlhandle);
1236
c906108c
SS
1237 return;
1238}
This page took 3.264106 seconds and 4 git commands to generate.