]> Git Repo - binutils.git/blob - gdb/uw-thread.c
Fix 2 bugs with parsing the resource dependency tables.
[binutils.git] / gdb / uw-thread.c
1 /* Low level interface for debugging UnixWare user-mode threads for
2    GDB, the GNU debugger.
3
4    Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
5    Written by Nick Duffek <[email protected]>.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 59 Temple Place - Suite 330,
22    Boston, MA 02111-1307, USA.  */
23
24
25 /* Like many systems, UnixWare implements two classes of threads:
26    kernel-mode threads, which are scheduled by the kernel; and
27    user-mode threads, which are scheduled by a library.  UnixWare
28    calls these two classes lightweight processes (LWPs) and threads,
29    respectively.
30
31    This module deals with user-mode threads.  It calls procfs_ops
32    functions to deal with LWPs and processes and core_ops functions to
33    deal with core files.
34
35    As of this writing, the user-mode thread debugging interface is not
36    documented beyond the comments in <thread.h>.  The following
37    description has been gleaned from experience and from information
38    provided by SCO.
39
40    libthread.so, against which all UnixWare user-mode thread programs
41    link, provides a global thread_debug structure named _thr_debug.
42    It has three fields:
43
44      (1) thr_map is a pointer to a pointer to an element of a
45          thread_map ring.  A thread_map contains a single thread's id
46          number, state, LWP pointer, recent register state, and other
47          useful information.
48
49      (2) thr_brk is a pointer to a stub function that libthread.so
50          calls when it changes a thread's state, e.g. by creating it,
51          switching it to an LWP, or causing it to exit.
52
53      (3) thr_debug_on controls whether libthread.so calls thr_brk().
54
55    Debuggers are able to track thread activity by setting a private
56    breakpoint on thr_brk() and setting thr_debug_on to 1.
57
58    thr_brk() receives two arguments:
59
60      (1) a pointer to a thread_map describing the thread being
61          changed; and
62
63      (2) an enum thread_change specifying one of the following
64          changes:
65
66          invalid                 unknown
67          thread_create           thread has just been created
68          thread_exit             thread has just exited
69          switch_begin            thread will be switched to an LWP
70          switch_complete         thread has been switched to an LWP
71          cancel_complete         thread wasn't switched to an LWP
72          thread_suspend          thread has been thr_suspend()ed
73          thread_suspend_pending  thread will be thr_suspend()ed
74          thread_continue         thread has been thr_continue()d
75
76    The thread_map argument to thr_brk() is NULL under the following
77    circumstances:
78
79      - The main thread is being acted upon.  The main thread always
80        has id 1, so its thread_map is easy to find by scanning through
81        _thr_debug.thr_map.
82
83      - A "switch_complete" change is occurring, which means that the
84        thread specified in the most recent "switch_begin" change has
85        moved to an LWP.
86
87      - A "cancel_complete" change is occurring, which means that the
88        thread specified in the most recent "switch_begin" change has
89        not moved to an LWP after all.
90
91      - A spurious "switch_begin" change is occurring after a
92        "thread_exit" change.
93
94    Between switch_begin and switch_complete or cancel_complete, the
95    affected thread's LWP pointer is not reliable.  It is possible that
96    other parts of the thread's thread_map are also unreliable during
97    that time. */
98
99
100 #include "defs.h"
101 #include "gdbthread.h"
102 #include "target.h"
103 #include "inferior.h"
104 #include "regcache.h"
105 #include <fcntl.h>
106
107 /* <thread.h> includes <sys/priocntl.h>, which requires boolean_t from
108    <sys/types.h>, which doesn't typedef boolean_t with gcc. */
109
110 #define boolean_t int
111 #include <thread.h>
112 #undef boolean_t
113
114 #include <synch.h>              /* for UnixWare 2.x */
115
116 /* Prototypes for supply_gregset etc. */
117 #include "gregset.h"
118
119 /* Whether to emit debugging output. */
120
121 #define DEBUG 0
122
123 /* Default debugging output file, overridden by envvar UWTHR_DEBUG. */
124
125 #define DEBUG_FILE "/dev/tty"
126
127 /* #if DEBUG, write string S to the debugging output channel. */
128
129 #if !DEBUG
130 # define DBG(fmt_and_args)
131 # define DBG2(fmt_and_args)
132 #else
133 # define DBG(fmt_and_args) dbg fmt_and_args
134 # define DBG2(fmt_and_args)
135 #endif
136
137 /* Back end to CALL_BASE() and TRY_BASE(): evaluate CALL, then convert
138    inferior_pid to a composite thread/process id. */
139
140 #define CALL_BASE_1(call)               \
141 do {                                    \
142   DBG2(("CALL_BASE(" #call ")"));       \
143   call;                                 \
144   do_cleanups (infpid_cleanup);         \
145 } while (0)
146
147 /* If inferior_pid can be converted to a composite lwp/process id, do so,
148    evaluate base_ops function CALL, and then convert inferior_pid back to a
149    composite thread/process id.
150
151    Otherwise, issue an error message and return nonlocally. */
152
153 #define CALL_BASE(call)                 \
154 do {                                    \
155   if (!lwp_infpid ())                   \
156     error ("uw-thread: no lwp");        \
157   CALL_BASE_1 (call);                   \
158 } while (0)
159
160 /* Like CALL_BASE(), but instead of returning nonlocally on error, set
161    *CALLED to whether the inferior_pid conversion was successful. */
162
163 #define TRY_BASE(call, called)          \
164 do {                                    \
165   if ((*(called) = lwp_infpid ()))      \
166     CALL_BASE_1 (call);                 \
167 } while (0)
168
169 /* Information passed by thread_iter() to its callback parameter. */
170
171 typedef struct {
172   struct thread_map map;
173   __lwp_desc_t lwp;
174   CORE_ADDR mapp;
175 } iter_t;
176
177 /* Private thread data for the thread_info struct. */
178
179 struct private_thread_info {
180   int stable;           /* 0 if libthread.so is modifying thread map */
181   int thrid;            /* thread id assigned by libthread.so */
182   int lwpid;            /* thread's lwp if .stable, 0 means no lwp */
183   CORE_ADDR mapp;       /* address of thread's map structure */
184 };
185
186
187 /* procfs.c's target-specific operations. */
188 extern struct target_ops procfs_ops;
189
190 /* Flag to prevent procfs.c from starting inferior processes. */
191 extern int procfs_suppress_run;
192
193 /* This module's target-specific operations. */
194 static struct target_ops uw_thread_ops;
195
196 /* Copy of the target over which uw_thread_ops is pushed.  This is
197    more convenient than a pointer to procfs_ops or core_ops, because
198    they lack current_target's default callbacks. */
199 static struct target_ops base_ops;
200
201 /* Saved pointer to previous owner of target_new_objfile_hook. */
202 static void (*target_new_objfile_chain)(struct objfile *);
203
204 /* Whether we are debugging a user-space thread program.  This isn't
205    set until after libthread.so is loaded by the program being
206    debugged.
207
208    Except for module one-time intialization and where otherwise
209    documented, no functions in this module get called when
210    !uw_thread_active. */
211 static int uw_thread_active;
212
213 /* For efficiency, cache the addresses of libthread.so's _thr_debug
214    structure, its thr_brk stub function, and the main thread's map. */
215 static CORE_ADDR thr_debug_addr;
216 static CORE_ADDR thr_brk_addr;
217 static CORE_ADDR thr_map_main;
218
219 /* Remember the thread most recently marked as switching.  Necessary because
220    libthread.so passes null map when calling stub with tc_*_complete. */
221 static struct thread_info *switchto_thread;
222
223 /* Cleanup chain for safely restoring inferior_pid after CALL_BASE. */
224 static struct cleanup *infpid_cleanup;
225
226
227 #if DEBUG
228 /* Helper function for DBG() macro: if printf-style FMT is non-null, format it
229    with args and display the result on the debugging output channel. */
230
231 static void
232 dbg (char *fmt, ...)
233 {
234   static int fd = -1, len;
235   va_list args;
236   char buf[1024];
237   char *path;
238
239   if (!fmt)
240     return;
241
242   if (fd < 0)
243     {
244       path = getenv ("UWTHR_DEBUG");
245       if (!path)
246         path = DEBUG_FILE;
247       if ((fd = open (path, O_WRONLY | O_CREAT | O_TRUNC, 0664)) < 0)
248         error ("can't open %s\n", path);
249     }
250
251   va_start (args, fmt);
252   vsprintf (buf, fmt, args);
253   va_end (args);
254
255   len = strlen (buf);
256   buf[len] = '\n';
257   (void)write (fd, buf, len + 1);
258 }
259
260 #if 0
261 /* Return a string representing composite PID's components. */
262
263 static char *
264 dbgpid (int pid)
265 {
266   static char *buf, buf1[80], buf2[80];
267   if (!buf || buf == buf2)
268     buf = buf1;
269   else
270     buf = buf2;
271
272   if (pid <= 0)
273     sprintf (buf, "%d", pid);
274   else
275     sprintf (buf, "%s %d/%d", ISTID (pid) ? "thr" : "lwp",
276              TIDGET (pid), PIDGET (pid));
277
278   return buf;
279 }
280
281 /* Return a string representing thread state CHANGE. */
282
283 static char *
284 dbgchange (enum thread_change change)
285 {
286   switch (change) {
287   case tc_invalid:                      return "invalid";
288   case tc_thread_create:                return "thread_create";
289   case tc_thread_exit:                  return "thread_exit";
290   case tc_switch_begin:                 return "switch_begin";
291   case tc_switch_complete:              return "switch_complete";
292   case tc_cancel_complete:              return "cancel_complete";
293   case tc_thread_suspend:               return "thread_suspend";
294   case tc_thread_suspend_pending:       return "thread_suspend_pending";
295   case tc_thread_continue:              return "thread_continue";
296   default:                              return "unknown";
297   }
298 }
299
300 /* Return a string representing thread STATE. */
301
302 static char *
303 dbgstate (int state)
304 {
305   switch (state) {
306   case TS_ONPROC:       return "running";
307   case TS_SLEEP:        return "sleeping";
308   case TS_RUNNABLE:     return "runnable";
309   case TS_ZOMBIE:       return "zombie";
310   case TS_SUSPENDED:    return "suspended";
311 #ifdef TS_FORK
312   case TS_FORK:         return "forking";
313 #endif
314   default:              return "confused";
315   }
316 }
317 #endif  /* 0 */
318 #endif  /* DEBUG */
319
320
321 /* Read the contents of _thr_debug into *DEBUGP.  Return success. */
322
323 static int
324 read_thr_debug (struct thread_debug *debugp)
325 {
326   return base_ops.to_xfer_memory (thr_debug_addr, (char *)debugp,
327                                   sizeof (*debugp), 0, NULL, &base_ops);
328 }
329
330 /* Read into MAP the contents of the thread map at inferior process address
331    MAPP.  Return success. */
332
333 static int
334 read_map (CORE_ADDR mapp, struct thread_map *map)
335 {
336   return base_ops.to_xfer_memory ((CORE_ADDR)THR_MAP (mapp), (char *)map,
337                                   sizeof (*map), 0, NULL, &base_ops);
338 }
339
340 /* Read into LWP the contents of the lwp decriptor at inferior process address
341    LWPP.  Return success. */
342
343 static int
344 read_lwp (CORE_ADDR lwpp, __lwp_desc_t *lwp)
345 {
346   return base_ops.to_xfer_memory (lwpp, (char *)lwp,
347                                   sizeof (*lwp), 0, NULL, &base_ops);
348 }
349
350 /* Iterate through all user threads, applying FUNC(<map>, <lwp>, DATA) until
351      (a) FUNC returns nonzero,
352      (b) FUNC has been applied to all threads, or
353      (c) an error occurs,
354    where <map> is the thread's struct thread_map and <lwp> if non-null is the
355    thread's current __lwp_desc_t.
356
357    If a call to FUNC returns nonzero, return that value; otherwise, return 0. */
358
359 static int
360 thread_iter (int (*func)(iter_t *, void *), void *data)
361 {
362   struct thread_debug debug;
363   CORE_ADDR first, mapp;
364   iter_t iter;
365   int ret;
366
367   if (!read_thr_debug (&debug))
368     return 0;
369   if (!base_ops.to_xfer_memory ((CORE_ADDR)debug.thr_map, (char *)&mapp,
370                                 sizeof (mapp), 0, NULL, &base_ops))
371     return 0;
372   if (!mapp)
373     return 0;
374
375   for (first = mapp;;)
376     {
377       if (!read_map (mapp, &iter.map))
378         return 0;
379
380       if (iter.map.thr_lwpp)
381         if (!read_lwp ((CORE_ADDR)iter.map.thr_lwpp, &iter.lwp))
382           return 0;
383
384       iter.mapp = mapp;
385       if ((ret = func (&iter, data)))
386         return ret;
387
388       mapp = (CORE_ADDR)iter.map.thr_next;
389       if (mapp == first)
390         return 0;
391     }
392 }
393
394 /* Deactivate user-mode thread support. */
395
396 static void
397 deactivate_uw_thread (void)
398 {
399   remove_thread_event_breakpoints ();
400   uw_thread_active = 0;
401   unpush_target (&uw_thread_ops);
402 }
403
404 /* Return the composite lwp/process id corresponding to composite
405    id PID.  If PID is a thread with no lwp, return 0. */
406
407 static int
408 thr_to_lwp (int pid)
409 {
410   struct thread_info *info;
411   int lid;
412
413   if (!ISTID (pid))
414     lid = pid;
415   else if (!(info = find_thread_pid (pid)))
416     lid = 0;
417   else if (!info->private->lwpid)
418     lid = 0;
419   else
420     lid = MKLID (pid, info->private->lwpid);
421
422   DBG2(("  thr_to_lwp(%s) = %s", dbgpid (pid), dbgpid (lid)));
423   return lid;
424 }
425
426 /* find_thread_lwp() callback: return whether TP describes a thread
427    associated with lwp id DATA. */
428
429 static int
430 find_thread_lwp_callback (struct thread_info *tp, void *data)
431 {
432   int lwpid = (int)data;
433
434   if (!ISTID (tp->pid))
435     return 0;
436   if (!tp->private->stable)
437     return 0;
438   if (lwpid != tp->private->lwpid)
439     return 0;
440
441   /* match */
442   return 1;
443 }
444
445 /* If a thread is associated with lwp id LWPID, return the corresponding
446    member of the global thread list; otherwise, return null. */
447
448 static struct thread_info *
449 find_thread_lwp (int lwpid)
450 {
451   return iterate_over_threads (find_thread_lwp_callback, (void *)lwpid);
452 }
453
454 /* Return the composite thread/process id corresponding to composite
455    id PID.  If PID is an lwp with no thread, return PID. */
456
457 static int
458 lwp_to_thr (int pid)
459 {
460   struct thread_info *info;
461   int tid = pid, lwpid;
462
463   if (ISTID (pid))
464     goto done;
465   if (!(lwpid = LIDGET (pid)))
466     goto done;
467   if (!(info = find_thread_lwp (lwpid)))
468     goto done;
469   tid = MKTID (pid, info->private->thrid);
470
471  done:
472   DBG2((ISTID (tid) ? NULL : "lwp_to_thr: no thr for %s", dbgpid (pid)));
473   return tid;
474 }
475
476 /* do_cleanups() callback: convert inferior_pid to a composite
477    thread/process id after having made a procfs call. */
478
479 static void
480 thr_infpid (void *unused)
481 {
482   int pid = lwp_to_thr (inferior_pid);
483   DBG2((" inferior_pid from procfs: %s => %s",
484         dbgpid (inferior_pid), dbgpid (pid)));
485   inferior_pid = pid;
486 }
487
488 /* If possible, convert inferior_pid to a composite lwp/process id in
489    preparation for making a procfs call.  Return success. */
490
491 static int
492 lwp_infpid (void)
493 {
494   int pid = thr_to_lwp (inferior_pid);
495   DBG2((" inferior_pid to procfs: %s => %s",
496         dbgpid (inferior_pid), dbgpid (pid)));
497
498   if (!pid)
499     return 0;
500
501   inferior_pid = pid;
502   infpid_cleanup = make_cleanup (thr_infpid, NULL);
503   return 1;
504 }
505
506 /* Add to the global thread list a new user-mode thread with system id THRID,
507    lwp id LWPID, map address MAPP, and composite thread/process PID. */
508
509 static void
510 add_thread_uw (int thrid, int lwpid, CORE_ADDR mapp, int pid)
511 {
512   struct thread_info *newthread;
513
514   if ((newthread = add_thread (pid)) == NULL)
515     error ("failed to create new thread structure");
516
517   newthread->private = xmalloc (sizeof (struct private_thread_info));
518   newthread->private->stable = 1;
519   newthread->private->thrid = thrid;
520   newthread->private->lwpid = lwpid;
521   newthread->private->mapp = mapp;
522
523   if (target_has_execution)
524     printf_unfiltered ("[New %s]\n", target_pid_to_str (pid));
525 }
526
527 /* notice_threads() and find_main() callback: if the thread list doesn't
528    already contain the thread described by ITER, add it if it's the main
529    thread or if !DATA. */
530
531 static int
532 notice_thread (iter_t *iter, void *data)
533 {
534   int thrid = iter->map.thr_tid;
535   int lwpid = !iter->map.thr_lwpp ? 0 : iter->lwp.lwp_id;
536   int pid = MKTID (inferior_pid, thrid);
537
538   if (!find_thread_pid (pid) && (!data || thrid == 1))
539     add_thread_uw (thrid, lwpid, iter->mapp, pid);
540
541   return 0;
542 }
543
544 /* Add to the thread list any threads it doesn't already contain. */
545
546 static void
547 notice_threads (void)
548 {
549   thread_iter (notice_thread, NULL);
550 }
551
552 /* Return the address of the main thread's map.  On error, return 0. */
553
554 static CORE_ADDR
555 find_main (void)
556 {
557   if (!thr_map_main)
558     {
559       struct thread_info *info;
560       thread_iter (notice_thread, (void *)1);
561       if ((info = find_thread_pid (MKTID (inferior_pid, 1))))
562         thr_map_main = info->private->mapp;
563     }
564   return thr_map_main;
565 }
566
567 /* Attach to process specified by ARGS, then initialize for debugging it
568    and wait for the trace-trap that results from attaching.
569
570    This function only gets called with uw_thread_active == 0. */
571
572 static void
573 uw_thread_attach (char *args, int from_tty)
574 {
575   procfs_ops.to_attach (args, from_tty);
576   if (uw_thread_active)
577     thr_infpid (NULL);
578 }
579
580 /* Detach from the process attached to by uw_thread_attach(). */
581
582 static void
583 uw_thread_detach (char *args, int from_tty)
584 {
585   deactivate_uw_thread ();
586   base_ops.to_detach (args, from_tty);
587 }
588
589 /* Tell the inferior process to continue running thread PID if >= 0
590    and all threads otherwise. */
591
592 static void
593 uw_thread_resume (int pid, int step, enum target_signal signo)
594 {
595   if (pid > 0 && !(pid = thr_to_lwp (pid)))
596     pid = -1;
597
598   CALL_BASE (base_ops.to_resume (pid, step, signo));
599 }
600
601 /* If the trap we just received from lwp PID was due to a breakpoint
602    on the libthread.so debugging stub, update this module's state
603    accordingly. */
604
605 static void
606 libthread_stub (int pid)
607 {
608   CORE_ADDR sp, mapp, mapp_main;
609   enum thread_change change;
610   struct thread_map map;
611   __lwp_desc_t lwp;
612   int tid = 0, lwpid;
613   struct thread_info *info;
614
615   /* Check for stub breakpoint. */
616   if (read_pc_pid (pid) - DECR_PC_AFTER_BREAK != thr_brk_addr)
617     return;
618
619   /* Retrieve stub args. */
620   sp = read_register_pid (SP_REGNUM, pid);
621   if (!base_ops.to_xfer_memory (sp + SP_ARG0, (char *)&mapp,
622                                 sizeof (mapp), 0, NULL, &base_ops))
623     goto err;
624   if (!base_ops.to_xfer_memory (sp + SP_ARG0 + sizeof (mapp), (char *)&change,
625                                 sizeof (change), 0, NULL, &base_ops))
626     goto err;
627
628   /* create_inferior() may not have finished yet, so notice the main
629      thread to ensure that it's displayed first by add_thread(). */
630   mapp_main = find_main ();
631
632   /* Notice thread creation, deletion, or stability change. */
633   switch (change) {
634   case tc_switch_begin:
635     if (!mapp)                          /* usually means main thread */
636       mapp = mapp_main;
637     /* fall through */
638
639   case tc_thread_create:
640   case tc_thread_exit:
641     if (!mapp)
642       break;
643     if (!read_map (mapp, &map))
644       goto err;
645     tid = MKTID (pid, map.thr_tid);
646
647     switch (change) {
648     case tc_thread_create:              /* new thread */
649       if (!map.thr_lwpp)
650         lwpid = 0;
651       else if (!read_lwp ((CORE_ADDR)map.thr_lwpp, &lwp))
652         goto err;
653       else
654         lwpid = lwp.lwp_id;
655       add_thread_uw (map.thr_tid, lwpid, mapp, tid);
656       break;
657
658     case tc_thread_exit:                /* thread has exited */
659       printf_unfiltered ("[Exited %s]\n", target_pid_to_str (tid));
660       delete_thread (tid);
661       if (tid == inferior_pid)
662         inferior_pid = pid;
663       break;
664
665     case tc_switch_begin:               /* lwp is switching threads */
666       if (switchto_thread)
667         goto err;
668       if (!(switchto_thread = find_thread_pid (tid)))
669         goto err;
670       switchto_thread->private->stable = 0;
671       break;
672
673     default:
674       break;
675     }
676     break;
677
678   case tc_switch_complete:              /* lwp has switched threads */
679   case tc_cancel_complete:              /* lwp didn't switch threads */
680     if (!switchto_thread)
681       goto err;
682
683     if (change == tc_switch_complete)
684       {
685         /* If switchto_thread is the main thread, then (a) the corresponding
686            tc_switch_begin probably received a null map argument and therefore
687            (b) it may have been a spurious switch following a tc_thread_exit.
688
689            Therefore, explicitly query the thread's lwp before caching it in
690            its thread list entry. */
691
692         if (!read_map (switchto_thread->private->mapp, &map))
693           goto err;
694         if (map.thr_lwpp)
695           {
696             if (!read_lwp ((CORE_ADDR)map.thr_lwpp, &lwp))
697               goto err;
698             if ((info = find_thread_lwp (lwp.lwp_id)))
699               info->private->lwpid = 0;
700             switchto_thread->private->lwpid = lwp.lwp_id;
701           }
702       }
703
704     switchto_thread->private->stable = 1;
705     switchto_thread = NULL;
706     break;
707
708   case tc_invalid:
709   case tc_thread_suspend:
710   case tc_thread_suspend_pending:
711   case tc_thread_continue:
712   err:
713     DBG(("unexpected condition in libthread_stub()"));
714     break;
715   }
716
717   DBG2(("libthread_stub(%s): %s %s %s", dbgpid (pid), dbgpid (tid),
718         dbgchange (change), tid ? dbgstate (map.thr_state) : ""));
719 }
720
721 /* Wait for thread/lwp/process ID if >= 0 or for any thread otherwise. */
722
723 static int
724 uw_thread_wait (int pid, struct target_waitstatus *status)
725 {
726   if (pid > 0)
727     pid = thr_to_lwp (pid);
728   CALL_BASE (pid = base_ops.to_wait (pid > 0 ? pid : -1, status));
729
730   if (status->kind == TARGET_WAITKIND_STOPPED &&
731       status->value.sig == TARGET_SIGNAL_TRAP)
732     libthread_stub (pid);
733
734   return lwp_to_thr (pid);
735 }
736
737 /* Tell gdb about the registers in the thread/lwp/process specified by
738    inferior_pid. */
739
740 static void
741 uw_thread_fetch_registers (int regno)
742 {
743   int called;
744   struct thread_info *info;
745   struct thread_map map;
746
747   TRY_BASE (base_ops.to_fetch_registers (regno), &called);
748   if (called)
749     return;
750
751   if (!(info = find_thread_pid (inferior_pid)))
752     return;
753   if (!read_map (info->private->mapp, &map))
754     return;
755
756   supply_gregset (&map.thr_ucontext.uc_mcontext.gregs);
757   supply_fpregset (&map.thr_ucontext.uc_mcontext.fpregs);
758 }
759
760 /* Store gdb's current view of the register set into the thread/lwp/process
761    specified by inferior_pid. */
762
763 static void
764 uw_thread_store_registers (int regno)
765 {
766   CALL_BASE (base_ops.to_store_registers (regno));
767 }
768
769 /* Prepare to modify the registers array. */
770
771 static void
772 uw_thread_prepare_to_store (void)
773 {
774   CALL_BASE (base_ops.to_prepare_to_store ());
775 }
776
777 /* Fork an inferior process and start debugging it.
778
779    This function only gets called with uw_thread_active == 0. */
780
781 static void
782 uw_thread_create_inferior (char *exec_file, char *allargs, char **env)
783 {
784   if (uw_thread_active)
785     deactivate_uw_thread ();
786
787   procfs_ops.to_create_inferior (exec_file, allargs, env);
788   if (uw_thread_active)
789     {
790       find_main ();
791       thr_infpid (NULL);
792     }
793 }
794
795 /* Kill and forget about the inferior process. */
796
797 static void
798 uw_thread_kill (void)
799 {
800   base_ops.to_kill ();
801 }
802
803 /* Clean up after the inferior exits. */
804
805 static void
806 uw_thread_mourn_inferior (void)
807 {
808   deactivate_uw_thread ();
809   base_ops.to_mourn_inferior ();
810 }
811
812 /* Return whether this module can attach to and run processes.
813
814    This function only gets called with uw_thread_active == 0. */
815
816 static int
817 uw_thread_can_run (void)
818 {
819   return procfs_suppress_run;
820 }
821
822 /* Return whether thread PID is still valid. */
823
824 static int
825 uw_thread_alive (int pid)
826 {
827   if (!ISTID (pid))
828     return base_ops.to_thread_alive (pid);
829
830   /* If it's in the thread list, it's valid, because otherwise
831      libthread_stub() would have deleted it. */
832   return in_thread_list (pid);
833 }
834
835 /* Add to the thread list any threads and lwps it doesn't already contain. */
836
837 static void
838 uw_thread_find_new_threads (void)
839 {
840   CALL_BASE (if (base_ops.to_find_new_threads)
841                base_ops.to_find_new_threads ());
842   notice_threads ();
843 }
844
845 /* Return a string for pretty-printing PID in "info threads" output.
846    This may be called by either procfs.c or by generic gdb. */
847
848 static char *
849 uw_thread_pid_to_str (int pid)
850 {
851 #define FMT "Thread %d"
852   static char buf[sizeof (FMT) + 3 * sizeof (pid)];
853
854   if (!ISTID (pid))
855     /* core_ops says "process foo", so call procfs_ops explicitly. */
856     return procfs_ops.to_pid_to_str (pid);
857
858   sprintf (buf, FMT, TIDGET (pid));
859 #undef FMT
860   return buf;
861 }
862
863 /* Return a string displaying INFO state information in "info threads"
864    output. */
865
866 static char *
867 uw_extra_thread_info (struct thread_info *info)
868 {
869   static char buf[80];
870   struct thread_map map;
871   __lwp_desc_t lwp;
872   int lwpid;
873   char *name;
874
875   if (!ISTID (info->pid))
876     return NULL;
877
878   if (!info->private->stable)
879     return "switching";
880
881   if (!read_map (info->private->mapp, &map))
882     return NULL;
883
884   if (!map.thr_lwpp || !read_lwp ((CORE_ADDR)map.thr_lwpp, &lwp))
885     lwpid = 0;
886   else
887     lwpid = lwp.lwp_id;
888
889   switch (map.thr_state) {
890   case TS_ONPROC:       name = "running";       break;
891   case TS_SLEEP:        name = "sleeping";      break;
892   case TS_RUNNABLE:     name = "runnable";      break;
893   case TS_ZOMBIE:       name = "zombie";        break;
894   case TS_SUSPENDED:    name = "suspended";     break;
895 #ifdef TS_FORK
896   case TS_FORK:         name = "forking";       break;
897 #endif
898   default:              name = "confused";      break;
899   }
900
901   if (!lwpid)
902     return name;
903
904   sprintf (buf, "%s, LWP %d", name, lwpid);
905   return buf;
906 }
907
908 /* Check whether libthread.so has just been loaded, and if so, try to
909    initialize user-space thread debugging support.
910
911    libthread.so loading happens while (a) an inferior process is being
912    started by procfs and (b) a core image is being loaded.
913
914    This function often gets called with uw_thread_active == 0. */
915
916 static void
917 libthread_init (void)
918 {
919   struct minimal_symbol *ms;
920   struct thread_debug debug;
921   CORE_ADDR onp;
922   struct breakpoint *b;
923   int one = 1;
924
925   /* Don't initialize twice. */
926   if (uw_thread_active)
927     return;
928
929   /* Check whether libthread.so has been loaded. */
930   if (!(ms = lookup_minimal_symbol ("_thr_debug", NULL, NULL)))
931     return;
932
933   /* Cache _thr_debug's address. */
934   if (!(thr_debug_addr = SYMBOL_VALUE_ADDRESS (ms)))
935     return;
936
937   /* Initialize base_ops.to_xfer_memory(). */
938   base_ops = current_target;
939
940   /* Load _thr_debug's current contents. */
941   if (!read_thr_debug (&debug))
942     return;
943
944   /* User code (e.g. my test programs) may dereference _thr_debug,
945      making it availble to GDB before shared libs are loaded. */
946   if (!debug.thr_map)
947     return;
948
949   /* libthread.so has been loaded, and the current_target should now
950      reflect core_ops or procfs_ops. */
951   push_target (&uw_thread_ops);         /* must precede notice_threads() */
952   uw_thread_active = 1;
953
954   if (!target_has_execution)
955
956     /* Locate threads in core file. */
957     notice_threads ();
958
959   else
960     {
961       /* Set a breakpoint on the stub function provided by libthread.so. */
962       thr_brk_addr = (CORE_ADDR)debug.thr_brk;
963       if (!(b = create_thread_event_breakpoint (thr_brk_addr)))
964         goto err;
965
966       /* Activate the stub function. */
967       onp = (CORE_ADDR)&((struct thread_debug *)thr_debug_addr)->thr_debug_on;
968       if (!base_ops.to_xfer_memory ((CORE_ADDR)onp, (char *)&one,
969                                     sizeof (one), 1, NULL, &base_ops))
970         {
971           delete_breakpoint (b);
972           goto err;
973         }
974
975       /* Prepare for finding the main thread, which doesn't yet exist. */
976       thr_map_main = 0;
977     }
978
979   return;
980
981  err:
982   warning ("uw-thread: unable to initialize user-mode thread debugging\n");
983   deactivate_uw_thread ();
984 }
985
986 /* target_new_objfile_hook callback.
987
988    If OBJFILE is non-null, check whether libthread.so was just loaded,
989    and if so, prepare for user-mode thread debugging.
990
991    If OBJFILE is null, libthread.so has gone away, so stop debugging
992    user-mode threads.
993
994    This function often gets called with uw_thread_active == 0. */
995
996 static void
997 uw_thread_new_objfile (struct objfile *objfile)
998 {
999   if (objfile)
1000     libthread_init ();
1001
1002   else if (uw_thread_active)
1003     deactivate_uw_thread ();
1004
1005   if (target_new_objfile_chain)
1006     target_new_objfile_chain (objfile);
1007 }
1008
1009 /* Initialize uw_thread_ops. */
1010
1011 static void
1012 init_uw_thread_ops (void)
1013 {
1014   uw_thread_ops.to_shortname          = "unixware-threads";
1015   uw_thread_ops.to_longname           = "UnixWare threads and pthread.";
1016   uw_thread_ops.to_doc        = "UnixWare threads and pthread support.";
1017   uw_thread_ops.to_attach             = uw_thread_attach;
1018   uw_thread_ops.to_detach             = uw_thread_detach;
1019   uw_thread_ops.to_resume             = uw_thread_resume;
1020   uw_thread_ops.to_wait               = uw_thread_wait;
1021   uw_thread_ops.to_fetch_registers    = uw_thread_fetch_registers;
1022   uw_thread_ops.to_store_registers    = uw_thread_store_registers;
1023   uw_thread_ops.to_prepare_to_store   = uw_thread_prepare_to_store;
1024   uw_thread_ops.to_create_inferior    = uw_thread_create_inferior;
1025   uw_thread_ops.to_kill               = uw_thread_kill;
1026   uw_thread_ops.to_mourn_inferior     = uw_thread_mourn_inferior;
1027   uw_thread_ops.to_can_run            = uw_thread_can_run;
1028   uw_thread_ops.to_thread_alive       = uw_thread_alive;
1029   uw_thread_ops.to_find_new_threads   = uw_thread_find_new_threads;
1030   uw_thread_ops.to_pid_to_str         = uw_thread_pid_to_str;
1031   uw_thread_ops.to_extra_thread_info  = uw_extra_thread_info;
1032   uw_thread_ops.to_stratum            = thread_stratum;
1033   uw_thread_ops.to_magic              = OPS_MAGIC;
1034 }
1035
1036 /* Module startup initialization function, automagically called by
1037    init.c. */
1038
1039 void
1040 _initialize_uw_thread (void)
1041 {
1042   init_uw_thread_ops ();
1043   add_target (&uw_thread_ops);
1044
1045   procfs_suppress_run = 1;
1046
1047   /* Notice when libthread.so gets loaded. */
1048   target_new_objfile_chain = target_new_objfile_hook;
1049   target_new_objfile_hook = uw_thread_new_objfile;
1050 }
This page took 0.081623 seconds and 4 git commands to generate.