* configure.ac: Use AC_CHECK_TYPES to check for uintptr_t.
[deliverable/binutils-gdb.git] / gdb / sol-thread.c
CommitLineData
8d027a04
MK
1/* Solaris threads debugging interface.
2
d45b6f32
MK
3 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23/* This module implements a sort of half target that sits between the
8d027a04
MK
24 machine-independent parts of GDB and the /proc interface (procfs.c)
25 to provide access to the Solaris user-mode thread implementation.
26
27 Solaris threads are true user-mode threads, which are invoked via
28 the thr_* and pthread_* (native and POSIX respectivly) interfaces.
29 These are mostly implemented in user-space, with all thread context
30 kept in various structures that live in the user's heap. These
31 should not be confused with lightweight processes (LWPs), which are
32 implemented by the kernel, and scheduled without explicit
33 intervention by the process.
34
35 Just to confuse things a little, Solaris threads (both native and
36 POSIX) are actually implemented using LWPs. In general, there are
37 going to be more threads than LWPs. There is no fixed
38 correspondence between a thread and an LWP. When a thread wants to
39 run, it gets scheduled onto the first available LWP and can
40 therefore migrate from one LWP to another as time goes on. A
c906108c
SS
41 sleeping thread may not be associated with an LWP at all!
42
8d027a04
MK
43 To make it possible to mess with threads, Sun provides a library
44 called libthread_db.so.1 (not to be confused with
45 libthread_db.so.0, which doesn't have a published interface). This
46 interface has an upper part, which it provides, and a lower part
47 which we provide. The upper part consists of the td_* routines,
48 which allow us to find all the threads, query their state, etc...
49 The lower part consists of all of the ps_*, which are used by the
50 td_* routines to read/write memory, manipulate LWPs, lookup
51 symbols, etc... The ps_* routines actually do most of their work
52 by calling functions in procfs.c. */
c906108c
SS
53
54#include "defs.h"
55#include <thread.h>
56#include <proc_service.h>
57#include <thread_db.h>
58#include "gdbthread.h"
59#include "target.h"
60#include "inferior.h"
61#include <fcntl.h>
b8a92b82 62#include "gdb_stat.h"
c906108c
SS
63#include <dlfcn.h>
64#include "gdbcmd.h"
23e04971 65#include "gdbcore.h"
4e052eda 66#include "regcache.h"
d45b6f32 67#include "solib.h"
990f9fe3 68#include "symfile.h"
c906108c 69
6f4492c8
MK
70#include "gdb_string.h"
71
c5aa993b
JM
72extern struct target_ops sol_thread_ops; /* Forward declaration */
73extern struct target_ops sol_core_ops; /* Forward declaration */
c906108c
SS
74
75/* place to store core_ops before we overwrite it */
76static struct target_ops orig_core_ops;
77
78struct target_ops sol_thread_ops;
79struct target_ops sol_core_ops;
80
81extern int procfs_suppress_run;
c5aa993b
JM
82extern struct target_ops procfs_ops; /* target vector for procfs.c */
83extern struct target_ops core_ops; /* target vector for corelow.c */
39f77062 84extern char *procfs_pid_to_str (ptid_t ptid);
c906108c 85
c60c0f5f
MS
86/* Prototypes for supply_gregset etc. */
87#include "gregset.h"
c906108c 88
8d027a04
MK
89/* This struct is defined by us, but mainly used for the proc_service
90 interface. We don't have much use for it, except as a handy place
91 to get a real PID for memory accesses. */
c906108c
SS
92
93struct ps_prochandle
8d027a04
MK
94{
95 ptid_t ptid;
96};
c906108c
SS
97
98struct string_map
8d027a04
MK
99{
100 int num;
101 char *str;
102};
c906108c
SS
103
104static struct ps_prochandle main_ph;
105static td_thragent_t *main_ta;
106static int sol_thread_active = 0;
107
39f77062 108static void sol_thread_resume (ptid_t ptid, int step, enum target_signal signo);
39f77062 109static int sol_thread_alive (ptid_t ptid);
a14ed312
KB
110static void sol_core_close (int quitting);
111
112static void init_sol_thread_ops (void);
113static void init_sol_core_ops (void);
c906108c 114
8d027a04
MK
115/* Default definitions: These must be defined in tm.h if they are to
116 be shared with a process module such as procfs. */
d4f3574e 117
ca6724c1
KB
118#define GET_PID(ptid) ptid_get_pid (ptid)
119#define GET_LWP(ptid) ptid_get_lwp (ptid)
120#define GET_THREAD(ptid) ptid_get_tid (ptid)
121
122#define is_lwp(ptid) (GET_LWP (ptid) != 0)
123#define is_thread(ptid) (GET_THREAD (ptid) != 0)
124
125#define BUILD_LWP(lwp, pid) ptid_build (pid, lwp, 0)
126#define BUILD_THREAD(tid, pid) ptid_build (pid, 0, tid)
c906108c 127
8d027a04
MK
128/* Pointers to routines from libthread_db resolved by dlopen(). */
129
130static void (*p_td_log)(const int on_off);
131static td_err_e (*p_td_ta_new)(const struct ps_prochandle *ph_p,
132 td_thragent_t **ta_pp);
133static td_err_e (*p_td_ta_delete)(td_thragent_t *ta_p);
134static td_err_e (*p_td_init)(void);
135static td_err_e (*p_td_ta_get_ph)(const td_thragent_t *ta_p,
136 struct ps_prochandle **ph_pp);
137static td_err_e (*p_td_ta_get_nthreads)(const td_thragent_t *ta_p,
138 int *nthread_p);
139static td_err_e (*p_td_ta_tsd_iter)(const td_thragent_t *ta_p,
140 td_key_iter_f *cb, void *cbdata_p);
141static td_err_e (*p_td_ta_thr_iter)(const td_thragent_t *ta_p,
142 td_thr_iter_f *cb, void *cbdata_p,
143 td_thr_state_e state, int ti_pri,
144 sigset_t *ti_sigmask_p,
145 unsigned ti_user_flags);
146static td_err_e (*p_td_thr_validate)(const td_thrhandle_t *th_p);
147static td_err_e (*p_td_thr_tsd)(const td_thrhandle_t * th_p,
148 const thread_key_t key, void **data_pp);
149static td_err_e (*p_td_thr_get_info)(const td_thrhandle_t *th_p,
150 td_thrinfo_t *ti_p);
151static td_err_e (*p_td_thr_getfpregs)(const td_thrhandle_t *th_p,
152 prfpregset_t *fpregset);
153static td_err_e (*p_td_thr_getxregsize)(const td_thrhandle_t *th_p,
154 int *xregsize);
155static td_err_e (*p_td_thr_getxregs)(const td_thrhandle_t *th_p,
156 const caddr_t xregset);
157static td_err_e (*p_td_thr_sigsetmask)(const td_thrhandle_t *th_p,
158 const sigset_t ti_sigmask);
159static td_err_e (*p_td_thr_setprio)(const td_thrhandle_t *th_p,
160 const int ti_pri);
161static td_err_e (*p_td_thr_setsigpending)(const td_thrhandle_t *th_p,
162 const uchar_t ti_pending_flag,
163 const sigset_t ti_pending);
164static td_err_e (*p_td_thr_setfpregs)(const td_thrhandle_t *th_p,
165 const prfpregset_t *fpregset);
166static td_err_e (*p_td_thr_setxregs)(const td_thrhandle_t *th_p,
167 const caddr_t xregset);
168static td_err_e (*p_td_ta_map_id2thr)(const td_thragent_t *ta_p,
169 thread_t tid,
170 td_thrhandle_t *th_p);
171static td_err_e (*p_td_ta_map_lwp2thr)(const td_thragent_t *ta_p,
172 lwpid_t lwpid,
173 td_thrhandle_t *th_p);
174static td_err_e (*p_td_thr_getgregs)(const td_thrhandle_t *th_p,
175 prgregset_t regset);
176static td_err_e (*p_td_thr_setgregs)(const td_thrhandle_t *th_p,
177 const prgregset_t regset);
178\f
c906108c 179
8d027a04
MK
180/* Return the libthread_db error string associated with ERRCODE. If
181 ERRCODE is unknown, return an appropriate message. */
c906108c
SS
182
183static char *
fba45db2 184td_err_string (td_err_e errcode)
c906108c 185{
8d027a04 186 static struct string_map td_err_table[] =
c5aa993b 187 {
8d027a04
MK
188 { TD_OK, "generic \"call succeeded\"" },
189 { TD_ERR, "generic error." },
190 { TD_NOTHR, "no thread can be found to satisfy query" },
191 { TD_NOSV, "no synch. variable can be found to satisfy query" },
192 { TD_NOLWP, "no lwp can be found to satisfy query" },
193 { TD_BADPH, "invalid process handle" },
194 { TD_BADTH, "invalid thread handle" },
195 { TD_BADSH, "invalid synchronization handle" },
196 { TD_BADTA, "invalid thread agent" },
197 { TD_BADKEY, "invalid key" },
198 { TD_NOMSG, "td_thr_event_getmsg() called when there was no message" },
199 { TD_NOFPREGS, "FPU register set not available for given thread" },
200 { TD_NOLIBTHREAD, "application not linked with libthread" },
201 { TD_NOEVENT, "requested event is not supported" },
202 { TD_NOCAPAB, "capability not available" },
203 { TD_DBERR, "Debugger service failed" },
204 { TD_NOAPLIC, "Operation not applicable to" },
205 { TD_NOTSD, "No thread specific data for this thread" },
206 { TD_MALLOC, "Malloc failed" },
207 { TD_PARTIALREG, "Only part of register set was written/read" },
208 { TD_NOXREGS, "X register set not available for given thread" }
c5aa993b 209 };
c906108c
SS
210 const int td_err_size = sizeof td_err_table / sizeof (struct string_map);
211 int i;
212 static char buf[50];
213
214 for (i = 0; i < td_err_size; i++)
215 if (td_err_table[i].num == errcode)
216 return td_err_table[i].str;
c5aa993b 217
8d027a04 218 sprintf (buf, "Unknown libthread_db error code: %d", errcode);
c906108c
SS
219
220 return buf;
221}
c906108c 222
8d027a04
MK
223/* Return the the libthread_db state string assicoated with STATECODE.
224 If STATECODE is unknown, return an appropriate message. */
c906108c
SS
225
226static char *
fba45db2 227td_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
8d027a04 249 sprintf (buf, "Unknown libthread_db state code: %d", statecode);
c906108c
SS
250
251 return buf;
252}
253\f
c906108c 254
8d027a04
MK
255/* Convert a POSIX or Solaris thread ID into a LWP ID. If THREAD_ID
256 doesn't exist, that's an error. If it's an inactive thread, return
257 DEFAULT_LPW.
c906108c 258
8d027a04 259 NOTE: This function probably shouldn't call error(). */
c906108c 260
39f77062
KB
261static ptid_t
262thread_to_lwp (ptid_t thread_id, int default_lwp)
c906108c
SS
263{
264 td_thrinfo_t ti;
265 td_thrhandle_t th;
266 td_err_e val;
267
268 if (is_lwp (thread_id))
8d027a04 269 return thread_id; /* It's already an LWP ID. */
c906108c 270
8d027a04 271 /* It's a thread. Convert to LWP. */
c906108c
SS
272
273 val = p_td_ta_map_id2thr (main_ta, GET_THREAD (thread_id), &th);
274 if (val == TD_NOTHR)
8d027a04 275 return pid_to_ptid (-1); /* Thread must have terminated. */
c906108c 276 else if (val != TD_OK)
8a3fe4f8 277 error (_("thread_to_lwp: td_ta_map_id2thr %s"), td_err_string (val));
c906108c
SS
278
279 val = p_td_thr_get_info (&th, &ti);
280 if (val == TD_NOTHR)
8d027a04 281 return pid_to_ptid (-1); /* Thread must have terminated. */
c906108c 282 else if (val != TD_OK)
8a3fe4f8 283 error (_("thread_to_lwp: td_thr_get_info: %s"), td_err_string (val));
c906108c
SS
284
285 if (ti.ti_state != TD_THR_ACTIVE)
286 {
287 if (default_lwp != -1)
39f77062 288 return pid_to_ptid (default_lwp);
8a3fe4f8 289 error (_("thread_to_lwp: thread state not active: %s"),
c906108c
SS
290 td_state_string (ti.ti_state));
291 }
292
293 return BUILD_LWP (ti.ti_lid, PIDGET (thread_id));
294}
c906108c 295
8d027a04
MK
296/* Convert an LWP ID into a POSIX or Solaris thread ID. If LWP_ID
297 doesn't exists, that's an error.
c906108c 298
8d027a04 299 NOTE: This function probably shouldn't call error(). */
c906108c 300
39f77062
KB
301static ptid_t
302lwp_to_thread (ptid_t lwp)
c906108c
SS
303{
304 td_thrinfo_t ti;
305 td_thrhandle_t th;
306 td_err_e val;
307
308 if (is_thread (lwp))
8d027a04 309 return lwp; /* It's already a thread ID. */
c906108c 310
8d027a04 311 /* It's an LWP. Convert it to a thread ID. */
c906108c
SS
312
313 if (!sol_thread_alive (lwp))
8d027a04 314 return pid_to_ptid (-1); /* Must be a defunct LPW. */
c906108c
SS
315
316 val = p_td_ta_map_lwp2thr (main_ta, GET_LWP (lwp), &th);
317 if (val == TD_NOTHR)
8d027a04 318 return pid_to_ptid (-1); /* Thread must have terminated. */
c906108c 319 else if (val != TD_OK)
8a3fe4f8 320 error (_("lwp_to_thread: td_ta_map_lwp2thr: %s."), td_err_string (val));
c906108c
SS
321
322 val = p_td_thr_validate (&th);
323 if (val == TD_NOTHR)
8d027a04 324 return lwp; /* Unknown to libthread; just return LPW, */
c906108c 325 else if (val != TD_OK)
8a3fe4f8 326 error (_("lwp_to_thread: td_thr_validate: %s."), td_err_string (val));
c906108c
SS
327
328 val = p_td_thr_get_info (&th, &ti);
329 if (val == TD_NOTHR)
8d027a04 330 return pid_to_ptid (-1); /* Thread must have terminated. */
c906108c 331 else if (val != TD_OK)
8a3fe4f8 332 error (_("lwp_to_thread: td_thr_get_info: %s."), td_err_string (val));
c906108c
SS
333
334 return BUILD_THREAD (ti.ti_tid, PIDGET (lwp));
335}
336\f
c906108c 337
8d027a04
MK
338/* Most target vector functions from here on actually just pass
339 through to procfs.c, as they don't need to do anything specific for
340 threads. */
c906108c 341
c906108c 342static void
fba45db2 343sol_thread_open (char *arg, int from_tty)
c906108c
SS
344{
345 procfs_ops.to_open (arg, from_tty);
346}
347
8d027a04
MK
348/* Attach to process PID, then initialize for debugging it and wait
349 for the trace-trap that results from attaching. */
c906108c
SS
350
351static void
fba45db2 352sol_thread_attach (char *args, int from_tty)
c906108c
SS
353{
354 procfs_ops.to_attach (args, from_tty);
23715f29 355
8d027a04 356 /* Must get symbols from shared libraries before libthread_db can run! */
d45b6f32 357 solib_add (NULL, from_tty, (struct target_ops *) 0, auto_solib_add);
71150974 358
c906108c
SS
359 if (sol_thread_active)
360 {
361 printf_filtered ("sol-thread active.\n");
8d027a04 362 main_ph.ptid = inferior_ptid; /* Save for xfer_memory. */
c906108c 363 push_target (&sol_thread_ops);
39f77062
KB
364 inferior_ptid = lwp_to_thread (inferior_ptid);
365 if (PIDGET (inferior_ptid) == -1)
366 inferior_ptid = main_ph.ptid;
c906108c 367 else
39f77062 368 add_thread (inferior_ptid);
c906108c 369 }
8d027a04
MK
370
371 /* FIXME: Might want to iterate over all the threads and register
372 them. */
c906108c
SS
373}
374
8d027a04
MK
375/* Take a program previously attached to and detaches it. The program
376 resumes execution and will no longer stop on signals, etc. We'd
377 better not have left any breakpoints in the program or it'll die
378 when it hits one. For this to work, it may be necessary for the
379 process to have been previously attached. It *might* work if the
380 program was started via the normal ptrace (PTRACE_TRACEME). */
c906108c
SS
381
382static void
fba45db2 383sol_thread_detach (char *args, int from_tty)
c906108c 384{
39f77062 385 inferior_ptid = pid_to_ptid (PIDGET (main_ph.ptid));
c906108c
SS
386 unpush_target (&sol_thread_ops);
387 procfs_ops.to_detach (args, from_tty);
388}
389
8d027a04
MK
390/* Resume execution of process PTID. If STEP is nozero, then just
391 single step it. If SIGNAL is nonzero, restart it with that signal
392 activated. We may have to convert PTID from a thread ID to an LWP
393 ID for procfs. */
c906108c
SS
394
395static void
39f77062 396sol_thread_resume (ptid_t ptid, int step, enum target_signal signo)
c906108c
SS
397{
398 struct cleanup *old_chain;
399
39f77062 400 old_chain = save_inferior_ptid ();
c906108c 401
39f77062
KB
402 inferior_ptid = thread_to_lwp (inferior_ptid, PIDGET (main_ph.ptid));
403 if (PIDGET (inferior_ptid) == -1)
404 inferior_ptid = procfs_first_available ();
c906108c 405
39f77062 406 if (PIDGET (ptid) != -1)
c906108c 407 {
39f77062 408 ptid_t save_ptid = ptid;
c906108c 409
39f77062 410 ptid = thread_to_lwp (ptid, -2);
8d027a04 411 if (PIDGET (ptid) == -2) /* Inactive thread. */
8a3fe4f8 412 error (_("This version of Solaris can't start inactive threads."));
39f77062 413 if (info_verbose && PIDGET (ptid) == -1)
8a3fe4f8 414 warning (_("Specified thread %ld seems to have terminated"),
39f77062 415 GET_THREAD (save_ptid));
c906108c
SS
416 }
417
39f77062 418 procfs_ops.to_resume (ptid, step, signo);
c906108c
SS
419
420 do_cleanups (old_chain);
421}
422
8d027a04
MK
423/* Wait for any threads to stop. We may have to convert PIID from a
424 thread ID to an LWP ID, and vice versa on the way out. */
c906108c 425
39f77062
KB
426static ptid_t
427sol_thread_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
c906108c 428{
39f77062
KB
429 ptid_t rtnval;
430 ptid_t save_ptid;
c906108c
SS
431 struct cleanup *old_chain;
432
39f77062
KB
433 save_ptid = inferior_ptid;
434 old_chain = save_inferior_ptid ();
c906108c 435
39f77062
KB
436 inferior_ptid = thread_to_lwp (inferior_ptid, PIDGET (main_ph.ptid));
437 if (PIDGET (inferior_ptid) == -1)
438 inferior_ptid = procfs_first_available ();
c906108c 439
39f77062 440 if (PIDGET (ptid) != -1)
c906108c 441 {
39f77062 442 ptid_t save_ptid = ptid;
c906108c 443
39f77062 444 ptid = thread_to_lwp (ptid, -2);
8d027a04 445 if (PIDGET (ptid) == -2) /* Inactive thread. */
8a3fe4f8 446 error (_("This version of Solaris can't start inactive threads."));
39f77062 447 if (info_verbose && PIDGET (ptid) == -1)
8a3fe4f8 448 warning (_("Specified thread %ld seems to have terminated"),
39f77062 449 GET_THREAD (save_ptid));
c906108c
SS
450 }
451
39f77062 452 rtnval = procfs_ops.to_wait (ptid, ourstatus);
c906108c
SS
453
454 if (ourstatus->kind != TARGET_WAITKIND_EXITED)
455 {
8d027a04 456 /* Map the LWP of interest back to the appropriate thread ID. */
c906108c 457 rtnval = lwp_to_thread (rtnval);
39f77062
KB
458 if (PIDGET (rtnval) == -1)
459 rtnval = save_ptid;
c906108c 460
8d027a04 461 /* See if we have a new thread. */
c906108c 462 if (is_thread (rtnval)
39f77062 463 && !ptid_equal (rtnval, save_ptid)
c906108c
SS
464 && !in_thread_list (rtnval))
465 {
466 printf_filtered ("[New %s]\n", target_pid_to_str (rtnval));
467 add_thread (rtnval);
468 }
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
SS
474
475 do_cleanups (old_chain);
476
477 return rtnval;
478}
479
480static void
8d027a04 481sol_thread_fetch_registers (int regnum)
c906108c
SS
482{
483 thread_t thread;
484 td_thrhandle_t thandle;
485 td_err_e val;
486 prgregset_t gregset;
487 prfpregset_t fpregset;
488#if 0
489 int xregsize;
490 caddr_t xregset;
491#endif
492
39f77062 493 if (!is_thread (inferior_ptid))
8d027a04
MK
494 {
495 /* It's an LWP; pass the request on to procfs. */
c906108c 496 if (target_has_execution)
8d027a04 497 procfs_ops.to_fetch_registers (regnum);
c906108c 498 else
8d027a04 499 orig_core_ops.to_fetch_registers (regnum);
c906108c
SS
500 return;
501 }
502
8d027a04 503 /* Solaris thread: convert INFERIOR_PTID into a td_thrhandle_t. */
39f77062 504 thread = GET_THREAD (inferior_ptid);
c906108c 505 if (thread == 0)
8a3fe4f8 506 error (_("sol_thread_fetch_registers: thread == 0"));
c906108c
SS
507
508 val = p_td_ta_map_id2thr (main_ta, thread, &thandle);
509 if (val != TD_OK)
8a3fe4f8 510 error (_("sol_thread_fetch_registers: td_ta_map_id2thr: %s"),
c906108c
SS
511 td_err_string (val));
512
8d027a04 513 /* Get the general-purpose registers. */
c906108c
SS
514
515 val = p_td_thr_getgregs (&thandle, gregset);
8d027a04 516 if (val != TD_OK && val != TD_PARTIALREG)
8a3fe4f8 517 error (_("sol_thread_fetch_registers: td_thr_getgregs %s"),
c906108c
SS
518 td_err_string (val));
519
8d027a04
MK
520 /* For SPARC, TD_PARTIALREG means that only %i0...%i7, %l0..%l7, %pc
521 and %sp are saved (by a thread context switch). */
c906108c 522
8d027a04 523 /* And, now the floating-point registers. */
c906108c
SS
524
525 val = p_td_thr_getfpregs (&thandle, &fpregset);
8d027a04 526 if (val != TD_OK && val != TD_NOFPREGS)
8a3fe4f8 527 error (_("sol_thread_fetch_registers: td_thr_getfpregs %s"),
c906108c
SS
528 td_err_string (val));
529
8d027a04
MK
530 /* Note that we must call supply_gregset and supply_fpregset *after*
531 calling the td routines because the td routines call ps_lget*
532 which affect the values stored in the registers array. */
c906108c 533
8d027a04 534 supply_gregset ((gdb_gregset_t *) &gregset);
c60c0f5f 535 supply_fpregset ((gdb_fpregset_t *) &fpregset);
c906108c
SS
536
537#if 0
8d027a04 538 /* FIXME: libthread_db doesn't seem to handle this right. */
c906108c
SS
539 val = td_thr_getxregsize (&thandle, &xregsize);
540 if (val != TD_OK && val != TD_NOXREGS)
8a3fe4f8 541 error (_("sol_thread_fetch_registers: td_thr_getxregsize %s"),
c906108c
SS
542 td_err_string (val));
543
544 if (val == TD_OK)
545 {
546 xregset = alloca (xregsize);
547 val = td_thr_getxregs (&thandle, xregset);
548 if (val != TD_OK)
8a3fe4f8 549 error (_("sol_thread_fetch_registers: td_thr_getxregs %s"),
c906108c
SS
550 td_err_string (val));
551 }
552#endif
553}
554
555static void
8d027a04 556sol_thread_store_registers (int regnum)
c906108c
SS
557{
558 thread_t thread;
559 td_thrhandle_t thandle;
560 td_err_e val;
8d027a04 561 prgregset_t gregset;
c906108c
SS
562 prfpregset_t fpregset;
563#if 0
564 int xregsize;
565 caddr_t xregset;
566#endif
567
39f77062 568 if (!is_thread (inferior_ptid))
8d027a04
MK
569 {
570 /* It's an LWP; pass the request on to procfs.c. */
571 procfs_ops.to_store_registers (regnum);
c906108c
SS
572 return;
573 }
574
8d027a04 575 /* Solaris thread: convert INFERIOR_PTID into a td_thrhandle_t. */
39f77062 576 thread = GET_THREAD (inferior_ptid);
c906108c
SS
577
578 val = p_td_ta_map_id2thr (main_ta, thread, &thandle);
579 if (val != TD_OK)
8a3fe4f8 580 error (_("sol_thread_store_registers: td_ta_map_id2thr %s"),
c906108c
SS
581 td_err_string (val));
582
8d027a04
MK
583 if (regnum != -1)
584 {
585 /* Not writing all the registers. */
87232496 586 char old_value[MAX_REGISTER_SIZE];
6034ae49 587
87232496 588 /* Save new register value. */
822c9732 589 regcache_raw_collect (current_regcache, regnum, old_value);
c906108c 590
c60c0f5f 591 val = p_td_thr_getgregs (&thandle, gregset);
c906108c 592 if (val != TD_OK)
8a3fe4f8 593 error (_("sol_thread_store_registers: td_thr_getgregs %s"),
c906108c
SS
594 td_err_string (val));
595 val = p_td_thr_getfpregs (&thandle, &fpregset);
596 if (val != TD_OK)
8a3fe4f8 597 error (_("sol_thread_store_registers: td_thr_getfpregs %s"),
c906108c
SS
598 td_err_string (val));
599
87232496 600 /* Restore new register value. */
23a6d369 601 regcache_raw_supply (current_regcache, regnum, old_value);
c906108c
SS
602
603#if 0
8d027a04 604 /* FIXME: libthread_db doesn't seem to handle this right. */
c906108c
SS
605 val = td_thr_getxregsize (&thandle, &xregsize);
606 if (val != TD_OK && val != TD_NOXREGS)
8a3fe4f8 607 error (_("sol_thread_store_registers: td_thr_getxregsize %s"),
c906108c
SS
608 td_err_string (val));
609
610 if (val == TD_OK)
611 {
612 xregset = alloca (xregsize);
613 val = td_thr_getxregs (&thandle, xregset);
614 if (val != TD_OK)
8a3fe4f8 615 error (_("sol_thread_store_registers: td_thr_getxregs %s"),
c906108c
SS
616 td_err_string (val));
617 }
618#endif
619 }
620
8d027a04
MK
621 fill_gregset ((gdb_gregset_t *) &gregset, regnum);
622 fill_fpregset ((gdb_fpregset_t *) &fpregset, regnum);
c906108c 623
c60c0f5f 624 val = p_td_thr_setgregs (&thandle, gregset);
c906108c 625 if (val != TD_OK)
8a3fe4f8 626 error (_("sol_thread_store_registers: td_thr_setgregs %s"),
c906108c
SS
627 td_err_string (val));
628 val = p_td_thr_setfpregs (&thandle, &fpregset);
629 if (val != TD_OK)
8a3fe4f8 630 error (_("sol_thread_store_registers: td_thr_setfpregs %s"),
c906108c
SS
631 td_err_string (val));
632
633#if 0
8d027a04 634 /* FIXME: libthread_db doesn't seem to handle this right. */
c906108c
SS
635 val = td_thr_getxregsize (&thandle, &xregsize);
636 if (val != TD_OK && val != TD_NOXREGS)
8a3fe4f8 637 error (_("sol_thread_store_registers: td_thr_getxregsize %s"),
c906108c
SS
638 td_err_string (val));
639
8d027a04
MK
640 /* ??? Should probably do something about writing the xregs here,
641 but what are they? */
c906108c
SS
642#endif
643}
644
645/* Get ready to modify the registers array. On machines which store
8d027a04
MK
646 individual registers, this doesn't need to do anything. On
647 machines which store all the registers in one fell swoop, this
648 makes sure that registers contains all the registers from the
649 program being debugged. */
c906108c
SS
650
651static void
fba45db2 652sol_thread_prepare_to_store (void)
c906108c
SS
653{
654 procfs_ops.to_prepare_to_store ();
655}
656
c338868a
KB
657/* Transfer LEN bytes between GDB address MYADDR and target address
658 MEMADDR. If DOWRITE is non-zero, transfer them to the target,
659 otherwise transfer them from the target. TARGET is unused.
660
8d027a04 661 Returns the number of bytes transferred. */
c338868a 662
c906108c 663static int
c338868a 664sol_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int dowrite,
f4d650ec 665 struct mem_attrib *attrib,
c338868a 666 struct target_ops *target)
c906108c
SS
667{
668 int retval;
669 struct cleanup *old_chain;
670
39f77062 671 old_chain = save_inferior_ptid ();
c906108c 672
8d027a04
MK
673 if (is_thread (inferior_ptid) || !target_thread_alive (inferior_ptid))
674 {
675 /* It's either a thread or an LWP that isn't alive. Any live
676 LWP will do so use the first available.
677
678 NOTE: We don't need to call switch_to_thread; we're just
679 reading memory. */
680 inferior_ptid = procfs_first_available ();
681 }
c906108c
SS
682
683 if (target_has_execution)
c8e73a31
AC
684 retval = procfs_ops.deprecated_xfer_memory (memaddr, myaddr, len,
685 dowrite, attrib, target);
c906108c 686 else
c8e73a31
AC
687 retval = orig_core_ops.deprecated_xfer_memory (memaddr, myaddr, len,
688 dowrite, attrib, target);
c906108c
SS
689
690 do_cleanups (old_chain);
691
692 return retval;
693}
694
8d027a04
MK
695/* Perform partial transfers on OBJECT. See target_read_partial and
696 target_write_partial for details of each variant. One, and only
697 one, of readbuf or writebuf must be non-NULL. */
6034ae49
RM
698
699static LONGEST
700sol_thread_xfer_partial (struct target_ops *ops, enum target_object object,
701 const char *annex, void *readbuf,
702 const void *writebuf, ULONGEST offset, LONGEST len)
703{
704 int retval;
705 struct cleanup *old_chain;
706
707 old_chain = save_inferior_ptid ();
708
8d027a04
MK
709 if (is_thread (inferior_ptid) || !target_thread_alive (inferior_ptid))
710 {
711 /* It's either a thread or an LWP that isn't alive. Any live
712 LWP will do so use the first available.
713
714 NOTE: We don't need to call switch_to_thread; we're just
715 reading memory. */
716 inferior_ptid = procfs_first_available ();
717 }
6034ae49
RM
718
719 if (target_has_execution)
720 retval = procfs_ops.to_xfer_partial (ops, object, annex,
721 readbuf, writebuf, offset, len);
722 else
723 retval = orig_core_ops.to_xfer_partial (ops, object, annex,
724 readbuf, writebuf, offset, len);
725
726 do_cleanups (old_chain);
727
728 return retval;
729}
730
c906108c
SS
731/* Print status information about what we're accessing. */
732
733static void
fba45db2 734sol_thread_files_info (struct target_ops *ignore)
c906108c
SS
735{
736 procfs_ops.to_files_info (ignore);
737}
738
739static void
fba45db2 740sol_thread_kill_inferior (void)
c906108c
SS
741{
742 procfs_ops.to_kill ();
743}
744
745static void
39f77062 746sol_thread_notice_signals (ptid_t ptid)
c906108c 747{
39f77062 748 procfs_ops.to_notice_signals (pid_to_ptid (PIDGET (ptid)));
c906108c
SS
749}
750
751/* Fork an inferior process, and start debugging it with /proc. */
752
753static void
c27cda74
AC
754sol_thread_create_inferior (char *exec_file, char *allargs, char **env,
755 int from_tty)
c906108c 756{
c27cda74 757 procfs_ops.to_create_inferior (exec_file, allargs, env, from_tty);
c906108c 758
39f77062 759 if (sol_thread_active && !ptid_equal (inferior_ptid, null_ptid))
c906108c 760 {
8d027a04
MK
761 /* Save for xfer_memory. */
762 main_ph.ptid = inferior_ptid;
c906108c
SS
763
764 push_target (&sol_thread_ops);
765
39f77062
KB
766 inferior_ptid = lwp_to_thread (inferior_ptid);
767 if (PIDGET (inferior_ptid) == -1)
768 inferior_ptid = main_ph.ptid;
c906108c 769
39f77062
KB
770 if (!in_thread_list (inferior_ptid))
771 add_thread (inferior_ptid);
c906108c
SS
772 }
773}
774
8d027a04
MK
775/* This routine is called whenever a new symbol table is read in, or
776 when all symbol tables are removed. libthread_db can only be
777 initialized when it finds the right variables in libthread.so.
778 Since it's a shared library, those variables don't show up until
779 the library gets mapped and the symbol table is read in.
c906108c 780
8d027a04
MK
781 This new_objfile event is managed by a chained function pointer.
782 It is the callee's responsability to call the next client on the
783 chain. */
11cf8741
JM
784
785/* Saved pointer to previous owner of the new_objfile event. */
507f3c78 786static void (*target_new_objfile_chain) (struct objfile *);
11cf8741 787
c906108c 788void
fba45db2 789sol_thread_new_objfile (struct objfile *objfile)
c906108c
SS
790{
791 td_err_e val;
792
793 if (!objfile)
794 {
795 sol_thread_active = 0;
11cf8741 796 goto quit;
c906108c
SS
797 }
798
8d027a04
MK
799 /* Don't do anything if init failed to resolve the libthread_db
800 library. */
c906108c 801 if (!procfs_suppress_run)
11cf8741 802 goto quit;
c906108c 803
8d027a04
MK
804 /* Now, initialize libthread_db. This needs to be done after the
805 shared libraries are located because it needs information from
806 the user's thread library. */
c906108c
SS
807
808 val = p_td_init ();
809 if (val != TD_OK)
11cf8741 810 {
8a3fe4f8 811 warning (_("sol_thread_new_objfile: td_init: %s"), td_err_string (val));
11cf8741
JM
812 goto quit;
813 }
c906108c
SS
814
815 val = p_td_ta_new (&main_ph, &main_ta);
816 if (val == TD_NOLIBTHREAD)
11cf8741 817 goto quit;
c906108c 818 else if (val != TD_OK)
11cf8741 819 {
8a3fe4f8 820 warning (_("sol_thread_new_objfile: td_ta_new: %s"), td_err_string (val));
11cf8741
JM
821 goto quit;
822 }
c906108c
SS
823
824 sol_thread_active = 1;
8d027a04 825
11cf8741 826quit:
8d027a04 827 /* Call predecessor on chain, if any. */
11cf8741
JM
828 if (target_new_objfile_chain)
829 target_new_objfile_chain (objfile);
c906108c
SS
830}
831
832/* Clean up after the inferior dies. */
833
834static void
fba45db2 835sol_thread_mourn_inferior (void)
c906108c
SS
836{
837 unpush_target (&sol_thread_ops);
838 procfs_ops.to_mourn_inferior ();
839}
840
8d027a04
MK
841/* Mark our target-struct as eligible for stray "run" and "attach"
842 commands. */
c906108c
SS
843
844static int
fba45db2 845sol_thread_can_run (void)
c906108c
SS
846{
847 return procfs_suppress_run;
848}
849
6034ae49 850/*
c906108c 851
c5aa993b 852 LOCAL FUNCTION
c906108c 853
c5aa993b 854 sol_thread_alive - test thread for "aliveness"
c906108c 855
c5aa993b 856 SYNOPSIS
c906108c 857
39f77062 858 static bool sol_thread_alive (ptid_t ptid);
c906108c 859
c5aa993b 860 DESCRIPTION
c906108c 861
c5aa993b 862 returns true if thread still active in inferior.
c906108c
SS
863
864 */
865
8d027a04
MK
866/* Return true if PTID is still active in the inferior. */
867
c906108c 868static int
39f77062 869sol_thread_alive (ptid_t ptid)
c906108c 870{
8d027a04 871 if (is_thread (ptid))
c906108c 872 {
8d027a04 873 /* It's a (user-level) thread. */
c906108c
SS
874 td_err_e val;
875 td_thrhandle_t th;
39f77062 876 int pid;
c906108c 877
39f77062 878 pid = GET_THREAD (ptid);
c906108c 879 if ((val = p_td_ta_map_id2thr (main_ta, pid, &th)) != TD_OK)
8d027a04 880 return 0; /* Thread not found. */
c906108c 881 if ((val = p_td_thr_validate (&th)) != TD_OK)
8d027a04
MK
882 return 0; /* Thread not valid. */
883 return 1; /* Known thread. */
c906108c 884 }
c5aa993b 885 else
c906108c 886 {
8d027a04 887 /* It's an LPW; pass the request on to procfs. */
c906108c 888 if (target_has_execution)
39f77062 889 return procfs_ops.to_thread_alive (ptid);
c906108c 890 else
39f77062 891 return orig_core_ops.to_thread_alive (ptid);
c906108c
SS
892 }
893}
894
895static void
fba45db2 896sol_thread_stop (void)
c906108c
SS
897{
898 procfs_ops.to_stop ();
899}
900\f
8d027a04
MK
901/* These routines implement the lower half of the thread_db interface,
902 i.e. the ps_* routines. */
c906108c 903
8d027a04
MK
904/* Various versions of <proc_service.h> have slightly different
905 function prototypes. In particular, we have
c906108c 906
c5aa993b
JM
907 NEWER OLDER
908 struct ps_prochandle * const struct ps_prochandle *
909 void* char*
8d027a04
MK
910 const void* char*
911 int size_t
c906108c 912
8d027a04
MK
913 Which one you have depends on the Solaris version and what patches
914 you've applied. On the theory that there are only two major
915 variants, we have configure check the prototype of ps_pdwrite (),
916 and use that info to make appropriate typedefs here. */
c906108c
SS
917
918#ifdef PROC_SERVICE_IS_OLD
c5aa993b
JM
919typedef const struct ps_prochandle *gdb_ps_prochandle_t;
920typedef char *gdb_ps_read_buf_t;
921typedef char *gdb_ps_write_buf_t;
c906108c 922typedef int gdb_ps_size_t;
291dcb3e 923typedef paddr_t gdb_ps_addr_t;
c906108c 924#else
c5aa993b
JM
925typedef struct ps_prochandle *gdb_ps_prochandle_t;
926typedef void *gdb_ps_read_buf_t;
927typedef const void *gdb_ps_write_buf_t;
c906108c 928typedef size_t gdb_ps_size_t;
291dcb3e 929typedef psaddr_t gdb_ps_addr_t;
c906108c
SS
930#endif
931
8d027a04
MK
932/* The next four routines are called by libthread_db to tell us to
933 stop and stop a particular process or lwp. Since GDB ensures that
934 these are all stopped by the time we call anything in thread_db,
935 these routines need to do nothing. */
c906108c 936
8d027a04 937/* Process stop. */
d4f3574e 938
c906108c
SS
939ps_err_e
940ps_pstop (gdb_ps_prochandle_t ph)
941{
942 return PS_OK;
943}
944
8d027a04 945/* Process continue. */
d4f3574e 946
c906108c
SS
947ps_err_e
948ps_pcontinue (gdb_ps_prochandle_t ph)
949{
950 return PS_OK;
951}
952
8d027a04 953/* LWP stop. */
d4f3574e 954
c906108c
SS
955ps_err_e
956ps_lstop (gdb_ps_prochandle_t ph, lwpid_t lwpid)
957{
958 return PS_OK;
959}
960
8d027a04 961/* LWP continue. */
d4f3574e 962
c906108c
SS
963ps_err_e
964ps_lcontinue (gdb_ps_prochandle_t ph, lwpid_t lwpid)
965{
966 return PS_OK;
967}
968
d4f3574e
SS
969/* Looks up the symbol LD_SYMBOL_NAME in the debugger's symbol table. */
970
c906108c
SS
971ps_err_e
972ps_pglobal_lookup (gdb_ps_prochandle_t ph, const char *ld_object_name,
8d027a04 973 const char *ld_symbol_name, gdb_ps_addr_t *ld_symbol_addr)
c906108c
SS
974{
975 struct minimal_symbol *ms;
976
977 ms = lookup_minimal_symbol (ld_symbol_name, NULL, NULL);
c906108c
SS
978 if (!ms)
979 return PS_NOSYM;
980
981 *ld_symbol_addr = SYMBOL_VALUE_ADDRESS (ms);
c906108c
SS
982 return PS_OK;
983}
984
985/* Common routine for reading and writing memory. */
986
987static ps_err_e
291dcb3e 988rw_common (int dowrite, const struct ps_prochandle *ph, gdb_ps_addr_t addr,
c906108c
SS
989 char *buf, int size)
990{
991 struct cleanup *old_chain;
992
39f77062 993 old_chain = save_inferior_ptid ();
c906108c 994
8d027a04
MK
995 if (is_thread (inferior_ptid) || !target_thread_alive (inferior_ptid))
996 {
997 /* It's either a thread or an LWP that isn't alive. Any live
998 LWP will do so use the first available.
999
1000 NOTE: We don't need to call switch_to_thread; we're just
1001 reading memory. */
1002 inferior_ptid = procfs_first_available ();
1003 }
c906108c 1004
23e04971
MS
1005#if defined (__sparcv9)
1006 /* For Sparc64 cross Sparc32, make sure the address has not been
1007 accidentally sign-extended (or whatever) to beyond 32 bits. */
359431fb 1008 if (bfd_get_arch_size (exec_bfd) == 32)
23e04971
MS
1009 addr &= 0xffffffff;
1010#endif
1011
c906108c
SS
1012 while (size > 0)
1013 {
1014 int cc;
1015
f4d650ec 1016 /* FIXME: passing 0 as attrib argument. */
c906108c 1017 if (target_has_execution)
c8e73a31
AC
1018 cc = procfs_ops.deprecated_xfer_memory (addr, buf, size,
1019 dowrite, 0, &procfs_ops);
c906108c 1020 else
c8e73a31
AC
1021 cc = orig_core_ops.deprecated_xfer_memory (addr, buf, size,
1022 dowrite, 0, &core_ops);
c906108c
SS
1023
1024 if (cc < 0)
1025 {
1026 if (dowrite == 0)
1027 print_sys_errmsg ("rw_common (): read", errno);
1028 else
1029 print_sys_errmsg ("rw_common (): write", errno);
1030
1031 do_cleanups (old_chain);
1032
1033 return PS_ERR;
1034 }
d5cb3e0e
MS
1035 else if (cc == 0)
1036 {
1037 if (dowrite == 0)
8a3fe4f8 1038 warning (_("rw_common (): unable to read at addr 0x%lx"),
d5cb3e0e
MS
1039 (long) addr);
1040 else
8a3fe4f8 1041 warning (_("rw_common (): unable to write at addr 0x%lx"),
d5cb3e0e
MS
1042 (long) addr);
1043
1044 do_cleanups (old_chain);
1045
1046 return PS_ERR;
1047 }
1048
c906108c
SS
1049 size -= cc;
1050 buf += cc;
1051 }
1052
1053 do_cleanups (old_chain);
1054
1055 return PS_OK;
1056}
1057
d4f3574e
SS
1058/* Copies SIZE bytes from target process .data segment to debugger memory. */
1059
c906108c 1060ps_err_e
291dcb3e 1061ps_pdread (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
c906108c
SS
1062 gdb_ps_read_buf_t buf, gdb_ps_size_t size)
1063{
1064 return rw_common (0, ph, addr, buf, size);
1065}
1066
d4f3574e
SS
1067/* Copies SIZE bytes from debugger memory .data segment to target process. */
1068
c906108c 1069ps_err_e
291dcb3e 1070ps_pdwrite (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
c906108c
SS
1071 gdb_ps_write_buf_t buf, gdb_ps_size_t size)
1072{
c5aa993b 1073 return rw_common (1, ph, addr, (char *) buf, size);
c906108c
SS
1074}
1075
d4f3574e
SS
1076/* Copies SIZE bytes from target process .text segment to debugger memory. */
1077
c906108c 1078ps_err_e
291dcb3e 1079ps_ptread (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
c906108c
SS
1080 gdb_ps_read_buf_t buf, gdb_ps_size_t size)
1081{
1082 return rw_common (0, ph, addr, buf, size);
1083}
1084
d4f3574e
SS
1085/* Copies SIZE bytes from debugger memory .text segment to target process. */
1086
c906108c 1087ps_err_e
291dcb3e 1088ps_ptwrite (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
c906108c
SS
1089 gdb_ps_write_buf_t buf, gdb_ps_size_t size)
1090{
c5aa993b 1091 return rw_common (1, ph, addr, (char *) buf, size);
c906108c
SS
1092}
1093
8d027a04 1094/* Get general-purpose registers for LWP. */
c906108c
SS
1095
1096ps_err_e
8d027a04 1097ps_lgetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, prgregset_t gregset)
c906108c
SS
1098{
1099 struct cleanup *old_chain;
1100
39f77062 1101 old_chain = save_inferior_ptid ();
c906108c 1102
39f77062 1103 inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
c5aa993b 1104
c906108c
SS
1105 if (target_has_execution)
1106 procfs_ops.to_fetch_registers (-1);
1107 else
1108 orig_core_ops.to_fetch_registers (-1);
c60c0f5f 1109 fill_gregset ((gdb_gregset_t *) gregset, -1);
c906108c
SS
1110
1111 do_cleanups (old_chain);
1112
1113 return PS_OK;
1114}
1115
8d027a04 1116/* Set general-purpose registers for LWP. */
c906108c
SS
1117
1118ps_err_e
1119ps_lsetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1120 const prgregset_t gregset)
1121{
1122 struct cleanup *old_chain;
1123
39f77062 1124 old_chain = save_inferior_ptid ();
c906108c 1125
39f77062 1126 inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
c5aa993b 1127
c60c0f5f 1128 supply_gregset ((gdb_gregset_t *) gregset);
c906108c
SS
1129 if (target_has_execution)
1130 procfs_ops.to_store_registers (-1);
1131 else
1132 orig_core_ops.to_store_registers (-1);
1133
1134 do_cleanups (old_chain);
1135
1136 return PS_OK;
1137}
1138
d4f3574e
SS
1139/* Log a message (sends to gdb_stderr). */
1140
c906108c 1141void
8d027a04 1142ps_plog (const char *fmt, ...)
c906108c
SS
1143{
1144 va_list args;
1145
1146 va_start (args, fmt);
1147
1148 vfprintf_filtered (gdb_stderr, fmt, args);
1149}
1150
1151/* Get size of extra register set. Currently a noop. */
1152
1153ps_err_e
1154ps_lgetxregsize (gdb_ps_prochandle_t ph, lwpid_t lwpid, int *xregsize)
1155{
1156#if 0
1157 int lwp_fd;
1158 int regsize;
1159 ps_err_e val;
1160
1161 val = get_lwp_fd (ph, lwpid, &lwp_fd);
1162 if (val != PS_OK)
1163 return val;
1164
1165 if (ioctl (lwp_fd, PIOCGXREGSIZE, &regsize))
1166 {
1167 if (errno == EINVAL)
1168 return PS_NOFREGS; /* XXX Wrong code, but this is the closest
1169 thing in proc_service.h */
1170
1171 print_sys_errmsg ("ps_lgetxregsize (): PIOCGXREGSIZE", errno);
1172 return PS_ERR;
1173 }
1174#endif
1175
1176 return PS_OK;
1177}
1178
1179/* Get extra register set. Currently a noop. */
1180
1181ps_err_e
1182ps_lgetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset)
1183{
1184#if 0
1185 int lwp_fd;
1186 ps_err_e val;
1187
1188 val = get_lwp_fd (ph, lwpid, &lwp_fd);
1189 if (val != PS_OK)
1190 return val;
1191
1192 if (ioctl (lwp_fd, PIOCGXREG, xregset))
1193 {
1194 print_sys_errmsg ("ps_lgetxregs (): PIOCGXREG", errno);
1195 return PS_ERR;
1196 }
1197#endif
1198
1199 return PS_OK;
1200}
1201
1202/* Set extra register set. Currently a noop. */
1203
1204ps_err_e
1205ps_lsetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset)
1206{
1207#if 0
1208 int lwp_fd;
1209 ps_err_e val;
1210
1211 val = get_lwp_fd (ph, lwpid, &lwp_fd);
1212 if (val != PS_OK)
1213 return val;
1214
1215 if (ioctl (lwp_fd, PIOCSXREG, xregset))
1216 {
1217 print_sys_errmsg ("ps_lsetxregs (): PIOCSXREG", errno);
1218 return PS_ERR;
1219 }
1220#endif
1221
1222 return PS_OK;
1223}
1224
8d027a04 1225/* Get floating-point registers for LWP. */
c906108c
SS
1226
1227ps_err_e
1228ps_lgetfpregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
8d027a04 1229 prfpregset_t *fpregset)
c906108c
SS
1230{
1231 struct cleanup *old_chain;
1232
39f77062 1233 old_chain = save_inferior_ptid ();
c906108c 1234
39f77062 1235 inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
c906108c
SS
1236
1237 if (target_has_execution)
1238 procfs_ops.to_fetch_registers (-1);
1239 else
1240 orig_core_ops.to_fetch_registers (-1);
c60c0f5f 1241 fill_fpregset ((gdb_fpregset_t *) fpregset, -1);
c906108c
SS
1242
1243 do_cleanups (old_chain);
1244
1245 return PS_OK;
1246}
1247
d4f3574e 1248/* Set floating-point regs for LWP */
c906108c
SS
1249
1250ps_err_e
1251ps_lsetfpregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
c5aa993b 1252 const prfpregset_t * fpregset)
c906108c
SS
1253{
1254 struct cleanup *old_chain;
1255
39f77062 1256 old_chain = save_inferior_ptid ();
c906108c 1257
39f77062 1258 inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
c5aa993b 1259
c60c0f5f 1260 supply_fpregset ((gdb_fpregset_t *) fpregset);
c906108c
SS
1261 if (target_has_execution)
1262 procfs_ops.to_store_registers (-1);
1263 else
1264 orig_core_ops.to_store_registers (-1);
1265
1266 do_cleanups (old_chain);
1267
1268 return PS_OK;
1269}
1270
23715f29 1271#ifdef PR_MODEL_LP64
8d027a04
MK
1272/* Identify process as 32-bit or 64-bit. At the moment we're using
1273 BFD to do this. There might be a more Solaris-specific
1274 (e.g. procfs) method, but this ought to work. */
23e04971
MS
1275
1276ps_err_e
1277ps_pdmodel (gdb_ps_prochandle_t ph, int *data_model)
1278{
1279 if (exec_bfd == 0)
a95ac8b6
PS
1280 *data_model = PR_MODEL_UNKNOWN;
1281 else if (bfd_get_arch_size (exec_bfd) == 32)
23e04971
MS
1282 *data_model = PR_MODEL_ILP32;
1283 else
1284 *data_model = PR_MODEL_LP64;
1285
1286 return PS_OK;
1287}
23715f29 1288#endif /* PR_MODEL_LP64 */
23e04971 1289
c906108c
SS
1290#ifdef TM_I386SOL2_H
1291
d4f3574e
SS
1292/* Reads the local descriptor table of a LWP. */
1293
c906108c
SS
1294ps_err_e
1295ps_lgetLDT (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1296 struct ssd *pldt)
1297{
8d027a04 1298 /* NOTE: only used on Solaris, therefore OK to refer to procfs.c. */
39f77062 1299 extern struct ssd *procfs_find_LDT_entry (ptid_t);
05e28a7b 1300 struct ssd *ret;
c906108c 1301
8d027a04
MK
1302 /* FIXME: can't I get the process ID from the prochandle or
1303 something? */
2f09097b 1304
39f77062 1305 if (PIDGET (inferior_ptid) <= 0 || lwpid <= 0)
2f09097b
ND
1306 return PS_BADLID;
1307
39f77062 1308 ret = procfs_find_LDT_entry (BUILD_LWP (lwpid, PIDGET (inferior_ptid)));
05e28a7b 1309 if (ret)
c906108c 1310 {
05e28a7b
AC
1311 memcpy (pldt, ret, sizeof (struct ssd));
1312 return PS_OK;
c906108c 1313 }
8d027a04
MK
1314 else
1315 /* LDT not found. */
c906108c 1316 return PS_ERR;
c5aa993b 1317}
c906108c
SS
1318#endif /* TM_I386SOL2_H */
1319\f
8d027a04
MK
1320
1321/* Convert PTID to printable form. */
c906108c
SS
1322
1323char *
39f77062 1324solaris_pid_to_str (ptid_t ptid)
c906108c
SS
1325{
1326 static char buf[100];
1327
8d027a04 1328 /* In case init failed to resolve the libthread_db library. */
c906108c 1329 if (!procfs_suppress_run)
39f77062 1330 return procfs_pid_to_str (ptid);
c906108c 1331
39f77062 1332 if (is_thread (ptid))
c906108c 1333 {
39f77062 1334 ptid_t lwp;
c906108c 1335
39f77062 1336 lwp = thread_to_lwp (ptid, -2);
c906108c 1337
39f77062
KB
1338 if (PIDGET (lwp) == -1)
1339 sprintf (buf, "Thread %ld (defunct)", GET_THREAD (ptid));
1340 else if (PIDGET (lwp) != -2)
8d027a04
MK
1341 sprintf (buf, "Thread %ld (LWP %ld)",
1342 GET_THREAD (ptid), GET_LWP (lwp));
c906108c 1343 else
39f77062 1344 sprintf (buf, "Thread %ld ", GET_THREAD (ptid));
c906108c 1345 }
39f77062
KB
1346 else if (GET_LWP (ptid) != 0)
1347 sprintf (buf, "LWP %ld ", GET_LWP (ptid));
c906108c 1348 else
39f77062 1349 sprintf (buf, "process %d ", PIDGET (ptid));
c906108c
SS
1350
1351 return buf;
1352}
1353\f
1354
8d027a04
MK
1355/* Worker bee for find_new_threads. Callback function that gets
1356 called once per user-level thread (i.e. not for LWP's). */
c906108c
SS
1357
1358static int
fba45db2 1359sol_find_new_threads_callback (const td_thrhandle_t *th, void *ignored)
c906108c
SS
1360{
1361 td_err_e retval;
1362 td_thrinfo_t ti;
39f77062 1363 ptid_t ptid;
c906108c 1364
8d027a04
MK
1365 retval = p_td_thr_get_info (th, &ti);
1366 if (retval != TD_OK)
1367 return -1;
1368
39f77062
KB
1369 ptid = BUILD_THREAD (ti.ti_tid, PIDGET (inferior_ptid));
1370 if (!in_thread_list (ptid))
1371 add_thread (ptid);
c906108c
SS
1372
1373 return 0;
1374}
1375
d4f3574e 1376static void
fba45db2 1377sol_find_new_threads (void)
c906108c 1378{
8d027a04
MK
1379 /* Don't do anything if init failed to resolve the libthread_db
1380 library. */
c906108c
SS
1381 if (!procfs_suppress_run)
1382 return;
1383
39f77062 1384 if (PIDGET (inferior_ptid) == -1)
c906108c 1385 {
c5aa993b 1386 printf_filtered ("No process.\n");
c906108c
SS
1387 return;
1388 }
8d027a04
MK
1389
1390 /* First Find any new LWP's. */
1391 procfs_ops.to_find_new_threads ();
1392
1393 /* Then find any new user-level threads. */
c5aa993b 1394 p_td_ta_thr_iter (main_ta, sol_find_new_threads_callback, (void *) 0,
c906108c
SS
1395 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1396 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1397}
1398
1399static void
fba45db2 1400sol_core_open (char *filename, int from_tty)
c906108c
SS
1401{
1402 orig_core_ops.to_open (filename, from_tty);
1403}
1404
1405static void
fba45db2 1406sol_core_close (int quitting)
c906108c
SS
1407{
1408 orig_core_ops.to_close (quitting);
1409}
1410
1411static void
fba45db2 1412sol_core_detach (char *args, int from_tty)
c906108c
SS
1413{
1414 unpush_target (&core_ops);
1415 orig_core_ops.to_detach (args, from_tty);
1416}
1417
1418static void
fba45db2 1419sol_core_files_info (struct target_ops *t)
c906108c
SS
1420{
1421 orig_core_ops.to_files_info (t);
1422}
1423
8d027a04
MK
1424/* Worker bee for the "info sol-thread" command. This is a callback
1425 function that gets called once for each Solaris user-level thread
1426 (i.e. not for LWPs) in the inferior. Print anything interesting
1427 that we can think of. */
c906108c 1428
c5aa993b 1429static int
fba45db2 1430info_cb (const td_thrhandle_t *th, void *s)
c906108c
SS
1431{
1432 td_err_e ret;
1433 td_thrinfo_t ti;
c906108c 1434
8d027a04
MK
1435 ret = p_td_thr_get_info (th, &ti);
1436 if (ret == TD_OK)
c906108c 1437 {
c5aa993b
JM
1438 printf_filtered ("%s thread #%d, lwp %d, ",
1439 ti.ti_type == TD_THR_SYSTEM ? "system" : "user ",
c906108c 1440 ti.ti_tid, ti.ti_lid);
c5aa993b
JM
1441 switch (ti.ti_state)
1442 {
c906108c 1443 default:
c5aa993b
JM
1444 case TD_THR_UNKNOWN:
1445 printf_filtered ("<unknown state>");
1446 break;
1447 case TD_THR_STOPPED:
1448 printf_filtered ("(stopped)");
1449 break;
1450 case TD_THR_RUN:
1451 printf_filtered ("(run) ");
1452 break;
1453 case TD_THR_ACTIVE:
1454 printf_filtered ("(active) ");
1455 break;
1456 case TD_THR_ZOMBIE:
1457 printf_filtered ("(zombie) ");
1458 break;
1459 case TD_THR_SLEEP:
1460 printf_filtered ("(asleep) ");
1461 break;
1462 case TD_THR_STOPPED_ASLEEP:
1463 printf_filtered ("(stopped asleep)");
1464 break;
1465 }
8d027a04 1466 /* Print thr_create start function. */
c906108c 1467 if (ti.ti_startfunc != 0)
4ce44c66
JM
1468 {
1469 struct minimal_symbol *msym;
1470 msym = lookup_minimal_symbol_by_pc (ti.ti_startfunc);
1471 if (msym)
8d027a04
MK
1472 printf_filtered (" startfunc: %s\n",
1473 DEPRECATED_SYMBOL_NAME (msym));
4ce44c66
JM
1474 else
1475 printf_filtered (" startfunc: 0x%s\n", paddr (ti.ti_startfunc));
1476 }
c906108c 1477
8d027a04 1478 /* If thread is asleep, print function that went to sleep. */
c906108c 1479 if (ti.ti_state == TD_THR_SLEEP)
4ce44c66
JM
1480 {
1481 struct minimal_symbol *msym;
1482 msym = lookup_minimal_symbol_by_pc (ti.ti_pc);
1483 if (msym)
8d027a04
MK
1484 printf_filtered (" - Sleep func: %s\n",
1485 DEPRECATED_SYMBOL_NAME (msym));
4ce44c66
JM
1486 else
1487 printf_filtered (" - Sleep func: 0x%s\n", paddr (ti.ti_startfunc));
1488 }
c906108c 1489
8d027a04 1490 /* Wrap up line, if necessary. */
c906108c
SS
1491 if (ti.ti_state != TD_THR_SLEEP && ti.ti_startfunc == 0)
1492 printf_filtered ("\n"); /* don't you hate counting newlines? */
1493 }
1494 else
8a3fe4f8 1495 warning (_("info sol-thread: failed to get info for thread."));
c906108c 1496
c5aa993b 1497 return 0;
c906108c
SS
1498}
1499
8d027a04
MK
1500/* List some state about each Solaris user-level thread in the
1501 inferior. */
c906108c
SS
1502
1503static void
fba45db2 1504info_solthreads (char *args, int from_tty)
c906108c 1505{
c5aa993b 1506 p_td_ta_thr_iter (main_ta, info_cb, args,
c906108c
SS
1507 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1508 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1509}
c906108c 1510
be4d1333 1511static int
8d027a04
MK
1512sol_find_memory_regions (int (*func) (CORE_ADDR, unsigned long,
1513 int, int, int, void *),
be4d1333
MS
1514 void *data)
1515{
1516 return procfs_ops.to_find_memory_regions (func, data);
1517}
1518
1519static char *
1520sol_make_note_section (bfd *obfd, int *note_size)
1521{
1522 return procfs_ops.to_make_corefile_notes (obfd, note_size);
1523}
1524
c906108c 1525static int
65a19707 1526ignore (CORE_ADDR addr, gdb_byte *contents)
c906108c
SS
1527{
1528 return 0;
1529}
1530
c906108c 1531static void
fba45db2 1532init_sol_thread_ops (void)
c906108c
SS
1533{
1534 sol_thread_ops.to_shortname = "solaris-threads";
1535 sol_thread_ops.to_longname = "Solaris threads and pthread.";
1536 sol_thread_ops.to_doc = "Solaris threads and pthread support.";
1537 sol_thread_ops.to_open = sol_thread_open;
c906108c
SS
1538 sol_thread_ops.to_attach = sol_thread_attach;
1539 sol_thread_ops.to_detach = sol_thread_detach;
1540 sol_thread_ops.to_resume = sol_thread_resume;
1541 sol_thread_ops.to_wait = sol_thread_wait;
1542 sol_thread_ops.to_fetch_registers = sol_thread_fetch_registers;
1543 sol_thread_ops.to_store_registers = sol_thread_store_registers;
1544 sol_thread_ops.to_prepare_to_store = sol_thread_prepare_to_store;
c8e73a31 1545 sol_thread_ops.deprecated_xfer_memory = sol_thread_xfer_memory;
6034ae49 1546 sol_thread_ops.to_xfer_partial = sol_thread_xfer_partial;
c906108c
SS
1547 sol_thread_ops.to_files_info = sol_thread_files_info;
1548 sol_thread_ops.to_insert_breakpoint = memory_insert_breakpoint;
1549 sol_thread_ops.to_remove_breakpoint = memory_remove_breakpoint;
1550 sol_thread_ops.to_terminal_init = terminal_init_inferior;
1551 sol_thread_ops.to_terminal_inferior = terminal_inferior;
1552 sol_thread_ops.to_terminal_ours_for_output = terminal_ours_for_output;
1553 sol_thread_ops.to_terminal_ours = terminal_ours;
a790ad35 1554 sol_thread_ops.to_terminal_save_ours = terminal_save_ours;
c906108c
SS
1555 sol_thread_ops.to_terminal_info = child_terminal_info;
1556 sol_thread_ops.to_kill = sol_thread_kill_inferior;
c906108c
SS
1557 sol_thread_ops.to_create_inferior = sol_thread_create_inferior;
1558 sol_thread_ops.to_mourn_inferior = sol_thread_mourn_inferior;
1559 sol_thread_ops.to_can_run = sol_thread_can_run;
1560 sol_thread_ops.to_notice_signals = sol_thread_notice_signals;
1561 sol_thread_ops.to_thread_alive = sol_thread_alive;
ed9a39eb 1562 sol_thread_ops.to_pid_to_str = solaris_pid_to_str;
b83266a0 1563 sol_thread_ops.to_find_new_threads = sol_find_new_threads;
c906108c
SS
1564 sol_thread_ops.to_stop = sol_thread_stop;
1565 sol_thread_ops.to_stratum = process_stratum;
1566 sol_thread_ops.to_has_all_memory = 1;
1567 sol_thread_ops.to_has_memory = 1;
1568 sol_thread_ops.to_has_stack = 1;
1569 sol_thread_ops.to_has_registers = 1;
1570 sol_thread_ops.to_has_execution = 1;
1571 sol_thread_ops.to_has_thread_control = tc_none;
be4d1333
MS
1572 sol_thread_ops.to_find_memory_regions = sol_find_memory_regions;
1573 sol_thread_ops.to_make_corefile_notes = sol_make_note_section;
c906108c
SS
1574 sol_thread_ops.to_magic = OPS_MAGIC;
1575}
1576
c906108c 1577static void
fba45db2 1578init_sol_core_ops (void)
c906108c 1579{
c5aa993b
JM
1580 sol_core_ops.to_shortname = "solaris-core";
1581 sol_core_ops.to_longname = "Solaris core threads and pthread.";
1582 sol_core_ops.to_doc = "Solaris threads and pthread support for core files.";
1583 sol_core_ops.to_open = sol_core_open;
1584 sol_core_ops.to_close = sol_core_close;
1585 sol_core_ops.to_attach = sol_thread_attach;
1586 sol_core_ops.to_detach = sol_core_detach;
c5aa993b 1587 sol_core_ops.to_fetch_registers = sol_thread_fetch_registers;
c8e73a31 1588 sol_core_ops.deprecated_xfer_memory = sol_thread_xfer_memory;
6034ae49 1589 sol_core_ops.to_xfer_partial = sol_thread_xfer_partial;
c5aa993b
JM
1590 sol_core_ops.to_files_info = sol_core_files_info;
1591 sol_core_ops.to_insert_breakpoint = ignore;
1592 sol_core_ops.to_remove_breakpoint = ignore;
c5aa993b
JM
1593 sol_core_ops.to_create_inferior = sol_thread_create_inferior;
1594 sol_core_ops.to_stratum = core_stratum;
c5aa993b
JM
1595 sol_core_ops.to_has_memory = 1;
1596 sol_core_ops.to_has_stack = 1;
1597 sol_core_ops.to_has_registers = 1;
c5aa993b 1598 sol_core_ops.to_has_thread_control = tc_none;
db348f27 1599 sol_core_ops.to_thread_alive = sol_thread_alive;
ed9a39eb 1600 sol_core_ops.to_pid_to_str = solaris_pid_to_str;
8d027a04
MK
1601 /* On Solaris/x86, when debugging a threaded core file from process
1602 <n>, the following causes "info threads" to produce "procfs:
1603 couldn't find pid <n> in procinfo list" where <n> is the pid of
1604 the process that produced the core file. Disable it for now. */
1605#if 0
1606 sol_core_ops.to_find_new_threads = sol_find_new_threads;
1607#endif
c5aa993b 1608 sol_core_ops.to_magic = OPS_MAGIC;
c906108c
SS
1609}
1610
8d027a04
MK
1611/* We suppress the call to add_target of core_ops in corelow because
1612 if there are two targets in the stratum core_stratum,
1613 find_core_target won't know which one to return. See corelow.c for
1614 an additonal comment on coreops_suppress_target. */
c906108c
SS
1615int coreops_suppress_target = 1;
1616
1617void
fba45db2 1618_initialize_sol_thread (void)
c906108c
SS
1619{
1620 void *dlhandle;
1621
1622 init_sol_thread_ops ();
1623 init_sol_core_ops ();
1624
1625 dlhandle = dlopen ("libthread_db.so.1", RTLD_NOW);
1626 if (!dlhandle)
1627 goto die;
1628
1629#define resolve(X) \
1630 if (!(p_##X = dlsym (dlhandle, #X))) \
1631 goto die;
1632
1633 resolve (td_log);
1634 resolve (td_ta_new);
1635 resolve (td_ta_delete);
1636 resolve (td_init);
1637 resolve (td_ta_get_ph);
1638 resolve (td_ta_get_nthreads);
1639 resolve (td_ta_tsd_iter);
1640 resolve (td_ta_thr_iter);
1641 resolve (td_thr_validate);
1642 resolve (td_thr_tsd);
1643 resolve (td_thr_get_info);
1644 resolve (td_thr_getfpregs);
1645 resolve (td_thr_getxregsize);
1646 resolve (td_thr_getxregs);
1647 resolve (td_thr_sigsetmask);
1648 resolve (td_thr_setprio);
1649 resolve (td_thr_setsigpending);
1650 resolve (td_thr_setfpregs);
1651 resolve (td_thr_setxregs);
1652 resolve (td_ta_map_id2thr);
1653 resolve (td_ta_map_lwp2thr);
1654 resolve (td_thr_getgregs);
1655 resolve (td_thr_setgregs);
1656
1657 add_target (&sol_thread_ops);
1658
1659 procfs_suppress_run = 1;
1660
c5aa993b 1661 add_cmd ("sol-threads", class_maintenance, info_solthreads,
1a966eab 1662 _("Show info on Solaris user threads."), &maintenanceinfolist);
c906108c 1663
c5aa993b
JM
1664 memcpy (&orig_core_ops, &core_ops, sizeof (struct target_ops));
1665 memcpy (&core_ops, &sol_core_ops, sizeof (struct target_ops));
c906108c
SS
1666 add_target (&core_ops);
1667
8d027a04 1668 /* Hook into new_objfile notification. */
9a4105ab
AC
1669 target_new_objfile_chain = deprecated_target_new_objfile_hook;
1670 deprecated_target_new_objfile_hook = sol_thread_new_objfile;
c906108c
SS
1671 return;
1672
8d027a04
MK
1673 die:
1674 fprintf_unfiltered (gdb_stderr, "\
1675[GDB will not be able to debug user-mode threads: %s]\n", dlerror ());
c906108c
SS
1676
1677 if (dlhandle)
1678 dlclose (dlhandle);
1679
8d027a04 1680 /* Allow the user to debug non-threaded core files. */
c5aa993b 1681 add_target (&core_ops);
c906108c
SS
1682
1683 return;
1684}
This page took 0.674967 seconds and 4 git commands to generate.