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