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