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