Phase 1 of the ptid_t changes.
[deliverable/binutils-gdb.git] / gdb / sol-thread.c
1 /* Low level interface for debugging Solaris threads for GDB, the GNU debugger.
2 Copyright 1996, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
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. */
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>
58 #include <sys/stat.h>
59 #include <dlfcn.h>
60 #include "gdbcmd.h"
61 #include "gdbcore.h"
62 #include "regcache.h"
63
64 extern struct target_ops sol_thread_ops; /* Forward declaration */
65 extern struct target_ops sol_core_ops; /* Forward declaration */
66
67 /* place to store core_ops before we overwrite it */
68 static struct target_ops orig_core_ops;
69
70 struct target_ops sol_thread_ops;
71 struct target_ops sol_core_ops;
72
73 extern int procfs_suppress_run;
74 extern struct target_ops procfs_ops; /* target vector for procfs.c */
75 extern struct target_ops core_ops; /* target vector for corelow.c */
76 extern char *procfs_pid_to_str (ptid_t ptid);
77
78 /* Prototypes for supply_gregset etc. */
79 #include "gregset.h"
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
85 struct ps_prochandle
86 {
87 ptid_t ptid;
88 };
89
90 struct string_map
91 {
92 int num;
93 char *str;
94 };
95
96 static struct ps_prochandle main_ph;
97 static td_thragent_t *main_ta;
98 static int sol_thread_active = 0;
99
100 static struct cleanup *save_inferior_ptid (void);
101 static void restore_inferior_ptid (void *pid);
102 static char *td_err_string (td_err_e errcode);
103 static char *td_state_string (td_thr_state_e statecode);
104 static ptid_t thread_to_lwp (ptid_t thread_id, int default_lwp);
105 static void sol_thread_resume (ptid_t ptid, int step, enum target_signal signo);
106 static ptid_t lwp_to_thread (ptid_t lwp);
107 static int sol_thread_alive (ptid_t ptid);
108 static void sol_core_close (int quitting);
109
110 static void init_sol_thread_ops (void);
111 static void init_sol_core_ops (void);
112
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
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)
122
123 #define BUILD_THREAD(TID, PID) (MERGEPID (PID, TID) | THREAD_FLAG)
124
125 /* Pointers to routines from lithread_db resolved by dlopen() */
126
127 static void (*p_td_log) (const int on_off);
128 static td_err_e (*p_td_ta_new) (const struct ps_prochandle * ph_p,
129 td_thragent_t ** ta_pp);
130 static td_err_e (*p_td_ta_delete) (td_thragent_t * ta_p);
131 static td_err_e (*p_td_init) (void);
132 static td_err_e (*p_td_ta_get_ph) (const td_thragent_t * ta_p,
133 struct ps_prochandle ** ph_pp);
134 static td_err_e (*p_td_ta_get_nthreads) (const td_thragent_t * ta_p,
135 int *nthread_p);
136 static td_err_e (*p_td_ta_tsd_iter) (const td_thragent_t * ta_p,
137 td_key_iter_f * cb,
138 void *cbdata_p);
139 static 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);
146 static td_err_e (*p_td_thr_validate) (const td_thrhandle_t * th_p);
147 static td_err_e (*p_td_thr_tsd) (const td_thrhandle_t * th_p,
148 const thread_key_t key,
149 void **data_pp);
150 static td_err_e (*p_td_thr_get_info) (const td_thrhandle_t * th_p,
151 td_thrinfo_t * ti_p);
152 static td_err_e (*p_td_thr_getfpregs) (const td_thrhandle_t * th_p,
153 prfpregset_t * fpregset);
154 static td_err_e (*p_td_thr_getxregsize) (const td_thrhandle_t * th_p,
155 int *xregsize);
156 static td_err_e (*p_td_thr_getxregs) (const td_thrhandle_t * th_p,
157 const caddr_t xregset);
158 static td_err_e (*p_td_thr_sigsetmask) (const td_thrhandle_t * th_p,
159 const sigset_t ti_sigmask);
160 static td_err_e (*p_td_thr_setprio) (const td_thrhandle_t * th_p,
161 const int ti_pri);
162 static 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);
165 static td_err_e (*p_td_thr_setfpregs) (const td_thrhandle_t * th_p,
166 const prfpregset_t * fpregset);
167 static td_err_e (*p_td_thr_setxregs) (const td_thrhandle_t * th_p,
168 const caddr_t xregset);
169 static td_err_e (*p_td_ta_map_id2thr) (const td_thragent_t * ta_p,
170 thread_t tid,
171 td_thrhandle_t * th_p);
172 static td_err_e (*p_td_ta_map_lwp2thr) (const td_thragent_t * ta_p,
173 lwpid_t lwpid,
174 td_thrhandle_t * th_p);
175 static td_err_e (*p_td_thr_getgregs) (const td_thrhandle_t * th_p,
176 prgregset_t regset);
177 static td_err_e (*p_td_thr_setgregs) (const td_thrhandle_t * th_p,
178 const prgregset_t regset);
179
180 /*
181
182 LOCAL FUNCTION
183
184 td_err_string - Convert a thread_db error code to a string
185
186 SYNOPSIS
187
188 char * td_err_string (errcode)
189
190 DESCRIPTION
191
192 Return the thread_db error string associated with errcode. If errcode
193 is unknown, then return a message.
194
195 */
196
197 static char *
198 td_err_string (td_err_e errcode)
199 {
200 static struct string_map
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"},
222 {TD_PARTIALREG, "Only part of register set was written/read"},
223 {TD_NOXREGS, "X register set not available for given thread"}
224 };
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;
232
233 sprintf (buf, "Unknown thread_db error code: %d", errcode);
234
235 return buf;
236 }
237 \f
238 /*
239
240 LOCAL FUNCTION
241
242 td_state_string - Convert a thread_db state code to a string
243
244 SYNOPSIS
245
246 char * td_state_string (statecode)
247
248 DESCRIPTION
249
250 Return the thread_db state string associated with statecode. If
251 statecode is unknown, then return a message.
252
253 */
254
255 static char *
256 td_state_string (td_thr_state_e statecode)
257 {
258 static struct string_map
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 };
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;
277
278 sprintf (buf, "Unknown thread_db state code: %d", statecode);
279
280 return buf;
281 }
282 \f
283 /*
284
285 LOCAL FUNCTION
286
287 thread_to_lwp - Convert a Posix or Solaris thread id to a LWP id.
288
289 SYNOPSIS
290
291 tpid_t thread_to_lwp (thread_id, default_lwp)
292
293 DESCRIPTION
294
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.
298
299 NOTES
300
301 This function probably shouldn't call error()...
302
303 */
304
305 static ptid_t
306 thread_to_lwp (ptid_t thread_id, int default_lwp)
307 {
308 td_thrinfo_t ti;
309 td_thrhandle_t th;
310 td_err_e val;
311
312 if (is_lwp (thread_id))
313 return thread_id; /* It's already an LWP id */
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)
319 return pid_to_ptid (-1); /* thread must have terminated */
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)
325 return pid_to_ptid (-1); /* thread must have terminated */
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)
332 return pid_to_ptid (default_lwp);
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
342 LOCAL FUNCTION
343
344 lwp_to_thread - Convert a LWP id to a Posix or Solaris thread id.
345
346 SYNOPSIS
347
348 int lwp_to_thread (lwp_id)
349
350 DESCRIPTION
351
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.
354
355 NOTES
356
357 This function probably shouldn't call error()...
358
359 */
360
361 static ptid_t
362 lwp_to_thread (ptid_t lwp)
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))
374 return pid_to_ptid (-1); /* defunct lwp */
375
376 val = p_td_ta_map_lwp2thr (main_ta, GET_LWP (lwp), &th);
377 if (val == TD_NOTHR)
378 return pid_to_ptid (-1); /* thread must have terminated */
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)
384 return lwp; /* libthread doesn't know about it;
385 just return lwp */
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)
391 return pid_to_ptid (-1); /* thread must have terminated */
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
400 LOCAL FUNCTION
401
402 save_inferior_ptid - Save inferior_ptid on the cleanup list
403 restore_inferior_ptid - Restore inferior_ptid from the cleanup list
404
405 SYNOPSIS
406
407 struct cleanup *save_inferior_ptid ()
408 void restore_inferior_ptid (int pid)
409
410 DESCRIPTION
411
412 These two functions act in unison to restore inferior_ptid in
413 case of an error.
414
415 NOTES
416
417 inferior_ptid is a global variable that needs to be changed by many of
418 these routines before calling functions in procfs.c. In order to
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
421 function, you should invoke do_cleanups to restore it.
422
423 */
424
425
426 static struct cleanup *
427 save_inferior_ptid (void)
428 {
429 ptid_t *saved_ptid = xmalloc (sizeof (ptid_t));
430 *saved_ptid = inferior_ptid;
431 return make_cleanup (restore_inferior_ptid, saved_ptid);
432 }
433
434 static void
435 restore_inferior_ptid (void *data)
436 {
437 ptid_t *saved_ptid = data;
438 inferior_ptid = *saved_ptid;
439 xfree (saved_ptid);
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 */
448 static void
449 sol_thread_open (char *arg, int from_tty)
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
457 static void
458 sol_thread_attach (char *args, int from_tty)
459 {
460 procfs_ops.to_attach (args, from_tty);
461
462 /* Must get symbols from solibs before libthread_db can run! */
463 SOLIB_ADD ((char *) 0, from_tty, (struct target_ops *) 0);
464
465 if (sol_thread_active)
466 {
467 printf_filtered ("sol-thread active.\n");
468 main_ph.ptid = inferior_ptid; /* Save for xfer_memory */
469 push_target (&sol_thread_ops);
470 inferior_ptid = lwp_to_thread (inferior_ptid);
471 if (PIDGET (inferior_ptid) == -1)
472 inferior_ptid = main_ph.ptid;
473 else
474 add_thread (inferior_ptid);
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
487 static void
488 sol_thread_detach (char *args, int from_tty)
489 {
490 inferior_ptid = pid_to_ptid (PIDGET (main_ph.ptid));
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
500 static void
501 sol_thread_resume (ptid_t ptid, int step, enum target_signal signo)
502 {
503 struct cleanup *old_chain;
504
505 old_chain = save_inferior_ptid ();
506
507 inferior_ptid = thread_to_lwp (inferior_ptid, PIDGET (main_ph.ptid));
508 if (PIDGET (inferior_ptid) == -1)
509 inferior_ptid = procfs_first_available ();
510
511 if (PIDGET (ptid) != -1)
512 {
513 ptid_t save_ptid = ptid;
514
515 ptid = thread_to_lwp (ptid, -2);
516 if (PIDGET (ptid) == -2) /* Inactive thread */
517 error ("This version of Solaris can't start inactive threads.");
518 if (info_verbose && PIDGET (ptid) == -1)
519 warning ("Specified thread %ld seems to have terminated",
520 GET_THREAD (save_ptid));
521 }
522
523 procfs_ops.to_resume (ptid, step, signo);
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
531 static ptid_t
532 sol_thread_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
533 {
534 ptid_t rtnval;
535 ptid_t save_ptid;
536 struct cleanup *old_chain;
537
538 save_ptid = inferior_ptid;
539 old_chain = save_inferior_ptid ();
540
541 inferior_ptid = thread_to_lwp (inferior_ptid, PIDGET (main_ph.ptid));
542 if (PIDGET (inferior_ptid) == -1)
543 inferior_ptid = procfs_first_available ();
544
545 if (PIDGET (ptid) != -1)
546 {
547 ptid_t save_ptid = ptid;
548
549 ptid = thread_to_lwp (ptid, -2);
550 if (PIDGET (ptid) == -2) /* Inactive thread */
551 error ("This version of Solaris can't start inactive threads.");
552 if (info_verbose && PIDGET (ptid) == -1)
553 warning ("Specified thread %ld seems to have terminated",
554 GET_THREAD (save_ptid));
555 }
556
557 rtnval = procfs_ops.to_wait (ptid, ourstatus);
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);
563 if (PIDGET (rtnval) == -1)
564 rtnval = save_ptid;
565
566 /* See if we have a new thread */
567 if (is_thread (rtnval)
568 && !ptid_equal (rtnval, save_ptid)
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
585 static void
586 sol_thread_fetch_registers (int regno)
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
598 if (!is_thread (inferior_ptid))
599 { /* LWP: pass the request on to procfs.c */
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
607 /* Solaris thread: convert inferior_ptid into a td_thrhandle_t */
608
609 thread = GET_THREAD (inferior_ptid);
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
642 supply_gregset ((gdb_gregset_t *) &gregset);
643 supply_fpregset ((gdb_fpregset_t *) &fpregset);
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
663 static void
664 sol_thread_store_registers (int regno)
665 {
666 thread_t thread;
667 td_thrhandle_t thandle;
668 td_err_e val;
669 prgregset_t gregset;
670 prfpregset_t fpregset;
671 #if 0
672 int xregsize;
673 caddr_t xregset;
674 #endif
675
676 if (!is_thread (inferior_ptid))
677 { /* LWP: pass the request on to procfs.c */
678 procfs_ops.to_store_registers (regno);
679 return;
680 }
681
682 /* Solaris thread: convert inferior_ptid into a td_thrhandle_t */
683
684 thread = GET_THREAD (inferior_ptid);
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 */
694 char* old_value = (char*) alloca (REGISTER_SIZE);
695 memcpy (old_value, &registers[REGISTER_BYTE (regno)], REGISTER_SIZE);
696
697 val = p_td_thr_getgregs (&thandle, gregset);
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 */
707 memcpy (&registers[REGISTER_BYTE (regno)], old_value, REGISTER_SIZE);
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
727 fill_gregset ((gdb_gregset_t *) &gregset, regno);
728 fill_fpregset ((gdb_fpregset_t *) &fpregset, regno);
729
730 val = p_td_thr_setgregs (&thandle, gregset);
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
757 static void
758 sol_thread_prepare_to_store (void)
759 {
760 procfs_ops.to_prepare_to_store ();
761 }
762
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
769 static int
770 sol_thread_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int dowrite,
771 struct mem_attrib *attrib,
772 struct target_ops *target)
773 {
774 int retval;
775 struct cleanup *old_chain;
776
777 old_chain = save_inferior_ptid ();
778
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. */
782 /* Note: don't need to call switch_to_thread; we're just reading memory. */
783
784 if (target_has_execution)
785 retval = procfs_ops.to_xfer_memory (memaddr, myaddr, len,
786 dowrite, attrib, target);
787 else
788 retval = orig_core_ops.to_xfer_memory (memaddr, myaddr, len,
789 dowrite, attrib, target);
790
791 do_cleanups (old_chain);
792
793 return retval;
794 }
795
796 /* Print status information about what we're accessing. */
797
798 static void
799 sol_thread_files_info (struct target_ops *ignore)
800 {
801 procfs_ops.to_files_info (ignore);
802 }
803
804 static void
805 sol_thread_kill_inferior (void)
806 {
807 procfs_ops.to_kill ();
808 }
809
810 static void
811 sol_thread_notice_signals (ptid_t ptid)
812 {
813 procfs_ops.to_notice_signals (pid_to_ptid (PIDGET (ptid)));
814 }
815
816 /* Fork an inferior process, and start debugging it with /proc. */
817
818 static void
819 sol_thread_create_inferior (char *exec_file, char *allargs, char **env)
820 {
821 procfs_ops.to_create_inferior (exec_file, allargs, env);
822
823 if (sol_thread_active && !ptid_equal (inferior_ptid, null_ptid))
824 {
825 main_ph.ptid = inferior_ptid; /* Save for xfer_memory */
826
827 push_target (&sol_thread_ops);
828
829 inferior_ptid = lwp_to_thread (inferior_ptid);
830 if (PIDGET (inferior_ptid) == -1)
831 inferior_ptid = main_ph.ptid;
832
833 if (!in_thread_list (inferior_ptid))
834 add_thread (inferior_ptid);
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
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. */
849 static void (*target_new_objfile_chain) (struct objfile *);
850
851 void
852 sol_thread_new_objfile (struct objfile *objfile)
853 {
854 td_err_e val;
855
856 if (!objfile)
857 {
858 sol_thread_active = 0;
859 goto quit;
860 }
861
862 /* don't do anything if init failed to resolve the libthread_db library */
863 if (!procfs_suppress_run)
864 goto quit;
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)
872 {
873 warning ("sol_thread_new_objfile: td_init: %s", td_err_string (val));
874 goto quit;
875 }
876
877 val = p_td_ta_new (&main_ph, &main_ta);
878 if (val == TD_NOLIBTHREAD)
879 goto quit;
880 else if (val != TD_OK)
881 {
882 warning ("sol_thread_new_objfile: td_ta_new: %s", td_err_string (val));
883 goto quit;
884 }
885
886 sol_thread_active = 1;
887 quit:
888 /* Call predecessor on chain, if any. */
889 if (target_new_objfile_chain)
890 target_new_objfile_chain (objfile);
891 }
892
893 /* Clean up after the inferior dies. */
894
895 static void
896 sol_thread_mourn_inferior (void)
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
904 static int
905 sol_thread_can_run (void)
906 {
907 return procfs_suppress_run;
908 }
909
910 /*
911
912 LOCAL FUNCTION
913
914 sol_thread_alive - test thread for "aliveness"
915
916 SYNOPSIS
917
918 static bool sol_thread_alive (ptid_t ptid);
919
920 DESCRIPTION
921
922 returns true if thread still active in inferior.
923
924 */
925
926 static int
927 sol_thread_alive (ptid_t ptid)
928 {
929 if (is_thread (ptid)) /* non-kernel thread */
930 {
931 td_err_e val;
932 td_thrhandle_t th;
933 int pid;
934
935 pid = GET_THREAD (ptid);
936 if ((val = p_td_ta_map_id2thr (main_ta, pid, &th)) != TD_OK)
937 return 0; /* thread not found */
938 if ((val = p_td_thr_validate (&th)) != TD_OK)
939 return 0; /* thread not valid */
940 return 1; /* known thread: return true */
941 }
942 else
943 /* kernel thread (LWP): let procfs test it */
944 {
945 if (target_has_execution)
946 return procfs_ops.to_thread_alive (ptid);
947 else
948 return orig_core_ops.to_thread_alive (ptid);
949 }
950 }
951
952 static void
953 sol_thread_stop (void)
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
964 NEWER OLDER
965 struct ps_prochandle * const struct ps_prochandle *
966 void* char*
967 const void* char*
968 int size_t
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
977 typedef const struct ps_prochandle *gdb_ps_prochandle_t;
978 typedef char *gdb_ps_read_buf_t;
979 typedef char *gdb_ps_write_buf_t;
980 typedef int gdb_ps_size_t;
981 typedef paddr_t gdb_ps_addr_t;
982 #else
983 typedef struct ps_prochandle *gdb_ps_prochandle_t;
984 typedef void *gdb_ps_read_buf_t;
985 typedef const void *gdb_ps_write_buf_t;
986 typedef size_t gdb_ps_size_t;
987 typedef psaddr_t gdb_ps_addr_t;
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
996 /* Process stop */
997
998 ps_err_e
999 ps_pstop (gdb_ps_prochandle_t ph)
1000 {
1001 return PS_OK;
1002 }
1003
1004 /* Process continue */
1005
1006 ps_err_e
1007 ps_pcontinue (gdb_ps_prochandle_t ph)
1008 {
1009 return PS_OK;
1010 }
1011
1012 /* LWP stop */
1013
1014 ps_err_e
1015 ps_lstop (gdb_ps_prochandle_t ph, lwpid_t lwpid)
1016 {
1017 return PS_OK;
1018 }
1019
1020 /* LWP continue */
1021
1022 ps_err_e
1023 ps_lcontinue (gdb_ps_prochandle_t ph, lwpid_t lwpid)
1024 {
1025 return PS_OK;
1026 }
1027
1028 /* Looks up the symbol LD_SYMBOL_NAME in the debugger's symbol table. */
1029
1030 ps_err_e
1031 ps_pglobal_lookup (gdb_ps_prochandle_t ph, const char *ld_object_name,
1032 const char *ld_symbol_name, gdb_ps_addr_t * ld_symbol_addr)
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
1048 static ps_err_e
1049 rw_common (int dowrite, const struct ps_prochandle *ph, gdb_ps_addr_t addr,
1050 char *buf, int size)
1051 {
1052 struct cleanup *old_chain;
1053
1054 old_chain = save_inferior_ptid ();
1055
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. */
1059 /* Note: don't need to call switch_to_thread; we're just reading memory. */
1060
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. */
1064 if (bfd_get_arch_size (exec_bfd) == 32)
1065 addr &= 0xffffffff;
1066 #endif
1067
1068 while (size > 0)
1069 {
1070 int cc;
1071
1072 /* FIXME: passing 0 as attrib argument. */
1073 if (target_has_execution)
1074 cc = procfs_ops.to_xfer_memory (addr, buf, size,
1075 dowrite, 0, &procfs_ops);
1076 else
1077 cc = orig_core_ops.to_xfer_memory (addr, buf, size,
1078 dowrite, 0, &core_ops);
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 }
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
1105 size -= cc;
1106 buf += cc;
1107 }
1108
1109 do_cleanups (old_chain);
1110
1111 return PS_OK;
1112 }
1113
1114 /* Copies SIZE bytes from target process .data segment to debugger memory. */
1115
1116 ps_err_e
1117 ps_pdread (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
1118 gdb_ps_read_buf_t buf, gdb_ps_size_t size)
1119 {
1120 return rw_common (0, ph, addr, buf, size);
1121 }
1122
1123 /* Copies SIZE bytes from debugger memory .data segment to target process. */
1124
1125 ps_err_e
1126 ps_pdwrite (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
1127 gdb_ps_write_buf_t buf, gdb_ps_size_t size)
1128 {
1129 return rw_common (1, ph, addr, (char *) buf, size);
1130 }
1131
1132 /* Copies SIZE bytes from target process .text segment to debugger memory. */
1133
1134 ps_err_e
1135 ps_ptread (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
1136 gdb_ps_read_buf_t buf, gdb_ps_size_t size)
1137 {
1138 return rw_common (0, ph, addr, buf, size);
1139 }
1140
1141 /* Copies SIZE bytes from debugger memory .text segment to target process. */
1142
1143 ps_err_e
1144 ps_ptwrite (gdb_ps_prochandle_t ph, gdb_ps_addr_t addr,
1145 gdb_ps_write_buf_t buf, gdb_ps_size_t size)
1146 {
1147 return rw_common (1, ph, addr, (char *) buf, size);
1148 }
1149
1150 /* Get integer regs for LWP */
1151
1152 ps_err_e
1153 ps_lgetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1154 prgregset_t gregset)
1155 {
1156 struct cleanup *old_chain;
1157
1158 old_chain = save_inferior_ptid ();
1159
1160 inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
1161
1162 if (target_has_execution)
1163 procfs_ops.to_fetch_registers (-1);
1164 else
1165 orig_core_ops.to_fetch_registers (-1);
1166 fill_gregset ((gdb_gregset_t *) gregset, -1);
1167
1168 do_cleanups (old_chain);
1169
1170 return PS_OK;
1171 }
1172
1173 /* Set integer regs for LWP */
1174
1175 ps_err_e
1176 ps_lsetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1177 const prgregset_t gregset)
1178 {
1179 struct cleanup *old_chain;
1180
1181 old_chain = save_inferior_ptid ();
1182
1183 inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
1184
1185 supply_gregset ((gdb_gregset_t *) gregset);
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
1196 /* Log a message (sends to gdb_stderr). */
1197
1198 void
1199 ps_plog (const char *fmt,...)
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
1210 ps_err_e
1211 ps_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
1238 ps_err_e
1239 ps_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
1261 ps_err_e
1262 ps_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
1282 /* Get floating-point regs for LWP */
1283
1284 ps_err_e
1285 ps_lgetfpregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1286 prfpregset_t * fpregset)
1287 {
1288 struct cleanup *old_chain;
1289
1290 old_chain = save_inferior_ptid ();
1291
1292 inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
1293
1294 if (target_has_execution)
1295 procfs_ops.to_fetch_registers (-1);
1296 else
1297 orig_core_ops.to_fetch_registers (-1);
1298 fill_fpregset ((gdb_fpregset_t *) fpregset, -1);
1299
1300 do_cleanups (old_chain);
1301
1302 return PS_OK;
1303 }
1304
1305 /* Set floating-point regs for LWP */
1306
1307 ps_err_e
1308 ps_lsetfpregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1309 const prfpregset_t * fpregset)
1310 {
1311 struct cleanup *old_chain;
1312
1313 old_chain = save_inferior_ptid ();
1314
1315 inferior_ptid = BUILD_LWP (lwpid, PIDGET (inferior_ptid));
1316
1317 supply_fpregset ((gdb_fpregset_t *) fpregset);
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
1328 #ifdef PR_MODEL_LP64
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
1334 ps_err_e
1335 ps_pdmodel (gdb_ps_prochandle_t ph, int *data_model)
1336 {
1337 if (exec_bfd == 0)
1338 *data_model = PR_MODEL_UNKNOWN;
1339 else if (bfd_get_arch_size (exec_bfd) == 32)
1340 *data_model = PR_MODEL_ILP32;
1341 else
1342 *data_model = PR_MODEL_LP64;
1343
1344 return PS_OK;
1345 }
1346 #endif /* PR_MODEL_LP64 */
1347
1348 #ifdef TM_I386SOL2_H
1349
1350 /* Reads the local descriptor table of a LWP. */
1351
1352 ps_err_e
1353 ps_lgetLDT (gdb_ps_prochandle_t ph, lwpid_t lwpid,
1354 struct ssd *pldt)
1355 {
1356 /* NOTE: only used on Solaris, therefore OK to refer to procfs.c */
1357 extern struct ssd *procfs_find_LDT_entry (ptid_t);
1358 struct ssd *ret;
1359
1360 /* FIXME: can't I get the process ID from the prochandle or something?
1361 */
1362
1363 if (PIDGET (inferior_ptid) <= 0 || lwpid <= 0)
1364 return PS_BADLID;
1365
1366 ret = procfs_find_LDT_entry (BUILD_LWP (lwpid, PIDGET (inferior_ptid)));
1367 if (ret)
1368 {
1369 memcpy (pldt, ret, sizeof (struct ssd));
1370 return PS_OK;
1371 }
1372 else /* LDT not found. */
1373 return PS_ERR;
1374 }
1375 #endif /* TM_I386SOL2_H */
1376 \f
1377 /* Convert a pid to printable form. */
1378
1379 char *
1380 solaris_pid_to_str (ptid_t ptid)
1381 {
1382 static char buf[100];
1383
1384 /* in case init failed to resolve the libthread_db library */
1385 if (!procfs_suppress_run)
1386 return procfs_pid_to_str (ptid);
1387
1388 if (is_thread (ptid))
1389 {
1390 ptid_t lwp;
1391
1392 lwp = thread_to_lwp (ptid, -2);
1393
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));
1398 else
1399 sprintf (buf, "Thread %ld ", GET_THREAD (ptid));
1400 }
1401 else if (GET_LWP (ptid) != 0)
1402 sprintf (buf, "LWP %ld ", GET_LWP (ptid));
1403 else
1404 sprintf (buf, "process %d ", PIDGET (ptid));
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
1414 static int
1415 sol_find_new_threads_callback (const td_thrhandle_t *th, void *ignored)
1416 {
1417 td_err_e retval;
1418 td_thrinfo_t ti;
1419 ptid_t ptid;
1420
1421 if ((retval = p_td_thr_get_info (th, &ti)) != TD_OK)
1422 {
1423 return -1;
1424 }
1425 ptid = BUILD_THREAD (ti.ti_tid, PIDGET (inferior_ptid));
1426 if (!in_thread_list (ptid))
1427 add_thread (ptid);
1428
1429 return 0;
1430 }
1431
1432 static void
1433 sol_find_new_threads (void)
1434 {
1435 /* don't do anything if init failed to resolve the libthread_db library */
1436 if (!procfs_suppress_run)
1437 return;
1438
1439 if (PIDGET (inferior_ptid) == -1)
1440 {
1441 printf_filtered ("No process.\n");
1442 return;
1443 }
1444 procfs_ops.to_find_new_threads (); /* first find new kernel threads */
1445 p_td_ta_thr_iter (main_ta, sol_find_new_threads_callback, (void *) 0,
1446 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1447 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1448 }
1449
1450 static void
1451 sol_core_open (char *filename, int from_tty)
1452 {
1453 orig_core_ops.to_open (filename, from_tty);
1454 }
1455
1456 static void
1457 sol_core_close (int quitting)
1458 {
1459 orig_core_ops.to_close (quitting);
1460 }
1461
1462 static void
1463 sol_core_detach (char *args, int from_tty)
1464 {
1465 unpush_target (&core_ops);
1466 orig_core_ops.to_detach (args, from_tty);
1467 }
1468
1469 static void
1470 sol_core_files_info (struct target_ops *t)
1471 {
1472 orig_core_ops.to_files_info (t);
1473 }
1474
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
1479 static int
1480 info_cb (const td_thrhandle_t *th, void *s)
1481 {
1482 td_err_e ret;
1483 td_thrinfo_t ti;
1484
1485 if ((ret = p_td_thr_get_info (th, &ti)) == TD_OK)
1486 {
1487 printf_filtered ("%s thread #%d, lwp %d, ",
1488 ti.ti_type == TD_THR_SYSTEM ? "system" : "user ",
1489 ti.ti_tid, ti.ti_lid);
1490 switch (ti.ti_state)
1491 {
1492 default:
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 }
1515 /* Print thr_create start function: */
1516 if (ti.ti_startfunc != 0)
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 }
1525
1526 /* If thread is asleep, print function that went to sleep: */
1527 if (ti.ti_state == TD_THR_SLEEP)
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 }
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
1544 return 0;
1545 }
1546
1547 /* List some state about each Solaris user thread in the inferior. */
1548
1549 static void
1550 info_solthreads (char *args, int from_tty)
1551 {
1552 p_td_ta_thr_iter (main_ta, info_cb, args,
1553 TD_THR_ANY_STATE, TD_THR_LOWEST_PRIORITY,
1554 TD_SIGNO_MASK, TD_THR_ANY_USER_FLAGS);
1555 }
1556
1557 static int
1558 ignore (CORE_ADDR addr, char *contents)
1559 {
1560 return 0;
1561 }
1562
1563
1564 static void
1565 init_sol_thread_ops (void)
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;
1596 sol_thread_ops.to_pid_to_str = solaris_pid_to_str;
1597 sol_thread_ops.to_find_new_threads = sol_find_new_threads;
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
1612 static void
1613 init_sol_core_ops (void)
1614 {
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;
1622 /* sol_core_ops.to_resume = 0; */
1623 /* sol_core_ops.to_wait = 0; */
1624 sol_core_ops.to_fetch_registers = sol_thread_fetch_registers;
1625 /* sol_core_ops.to_store_registers = 0; */
1626 /* sol_core_ops.to_prepare_to_store = 0; */
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;
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; */
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;
1647 sol_core_ops.to_thread_alive = sol_thread_alive;
1648 sol_core_ops.to_pid_to_str = solaris_pid_to_str;
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; */
1654 sol_core_ops.to_sections = 0;
1655 sol_core_ops.to_sections_end = 0;
1656 sol_core_ops.to_magic = OPS_MAGIC;
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. */
1663 int coreops_suppress_target = 1;
1664
1665 void
1666 _initialize_sol_thread (void)
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
1709 add_cmd ("sol-threads", class_maintenance, info_solthreads,
1710 "Show info on Solaris user threads.\n", &maintenanceinfolist);
1711
1712 memcpy (&orig_core_ops, &core_ops, sizeof (struct target_ops));
1713 memcpy (&core_ops, &sol_core_ops, sizeof (struct target_ops));
1714 add_target (&core_ops);
1715
1716 /* Hook into new_objfile notification. */
1717 target_new_objfile_chain = target_new_objfile_hook;
1718 target_new_objfile_hook = sol_thread_new_objfile;
1719 return;
1720
1721 die:
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 */
1729 add_target (&core_ops);
1730
1731 return;
1732 }
This page took 0.108016 seconds and 4 git commands to generate.