1 /* Interface GDB to Mach 3.0 operating systems.
2 (Most) Mach 3.0 related routines live in this file.
4 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
5 Free Software Foundation, Inc.
7 This file is part of GDB.
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.
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.
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. */
25 * Author: Jukka Virtanen <jtv@hut.fi>
27 * Helsinki University of Technology
30 * Thanks to my friends who helped with ideas and testing:
32 * Johannes Helander, Antti Louko, Tero Mononen,
33 * jvh@cs.hut.fi alo@hut.fi tmo@cs.hut.fi
35 * Tero Kivinen and Eamonn McManus
36 * kivinen@cs.hut.fi emcmanus@gr.osf.org
43 #include <servers/netname.h>
44 #include <servers/machid.h>
45 #include <mach/message.h>
46 #include <mach/notify.h>
47 #include <mach_error.h>
48 #include <mach/exception.h>
49 #include <mach/vm_attributes.h>
63 #include <servers/machid_lib.h>
65 #define MACH_TYPE_TASK 1
66 #define MACH_TYPE_THREAD 2
69 /* Included only for signal names and NSIG
71 * note: There are many problems in signal handling with
72 * gdb in Mach 3.0 in general.
75 #define SIG_UNKNOWN 0 /* Exception that has no matching unix signal */
79 /* This is what a cproc looks like. This is here partly because
80 cthread_internals.h is not a header we can just #include, partly with
81 an eye towards perhaps getting this to work with cross-debugging
82 someday. Best solution is if CMU publishes a real interface to this
84 #define CPROC_NEXT_OFFSET 0
85 #define CPROC_NEXT_SIZE (TARGET_PTR_BIT / HOST_CHAR_BIT)
86 #define CPROC_INCARNATION_OFFSET (CPROC_NEXT_OFFSET + CPROC_NEXT_SIZE)
87 #define CPROC_INCARNATION_SIZE (sizeof (cthread_t))
88 #define CPROC_LIST_OFFSET (CPROC_INCARNATION_OFFSET + CPROC_INCARNATION_SIZE)
89 #define CPROC_LIST_SIZE (TARGET_PTR_BIT / HOST_CHAR_BIT)
90 #define CPROC_WAIT_OFFSET (CPROC_LIST_OFFSET + CPROC_LIST_SIZE)
91 #define CPROC_WAIT_SIZE (TARGET_PTR_BIT / HOST_CHAR_BIT)
92 #define CPROC_REPLY_OFFSET (CPROC_WAIT_OFFSET + CPROC_WAIT_SIZE)
93 #define CPROC_REPLY_SIZE (sizeof (mach_port_t))
94 #define CPROC_CONTEXT_OFFSET (CPROC_REPLY_OFFSET + CPROC_REPLY_SIZE)
95 #define CPROC_CONTEXT_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
96 #define CPROC_LOCK_OFFSET (CPROC_CONTEXT_OFFSET + CPROC_CONTEXT_SIZE)
97 #define CPROC_LOCK_SIZE (sizeof (spin_lock_t))
98 #define CPROC_STATE_OFFSET (CPROC_LOCK_OFFSET + CPROC_LOCK_SIZE)
99 #define CPROC_STATE_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
100 #define CPROC_WIRED_OFFSET (CPROC_STATE_OFFSET + CPROC_STATE_SIZE)
101 #define CPROC_WIRED_SIZE (sizeof (mach_port_t))
102 #define CPROC_BUSY_OFFSET (CPROC_WIRED_OFFSET + CPROC_WIRED_SIZE)
103 #define CPROC_BUSY_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
104 #define CPROC_MSG_OFFSET (CPROC_BUSY_OFFSET + CPROC_BUSY_SIZE)
105 #define CPROC_MSG_SIZE (sizeof (mach_msg_header_t))
106 #define CPROC_BASE_OFFSET (CPROC_MSG_OFFSET + CPROC_MSG_SIZE)
107 #define CPROC_BASE_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
108 #define CPROC_SIZE_OFFSET (CPROC_BASE_OFFSET + CPROC_BASE_SIZE)
109 #define CPROC_SIZE_SIZE (TARGET_INT_BIT / HOST_CHAR_BIT)
110 #define CPROC_SIZE (CPROC_SIZE_OFFSET + CPROC_SIZE_SIZE)
112 /* Values for the state field in the cproc. */
113 #define CPROC_RUNNING 0
114 #define CPROC_SWITCHING 1
115 #define CPROC_BLOCKED 2
116 #define CPROC_CONDWAIT 4
118 /* For cproc and kernel thread mapping */
119 typedef struct gdb_thread
125 boolean_t in_emulator
;
128 /* This is for the mthreads list. It points to the cproc list.
129 Perhaps the two lists should be merged (or perhaps it was a mistake
130 to make them both use a struct gdb_thread). */
131 struct gdb_thread
*cproc
;
133 /* These are for the cproc list, which is linked through the next field
134 of the struct gdb_thread. */
135 char raw_cproc
[CPROC_SIZE
];
136 /* The cthread which is pointed to by the incarnation field from the
137 cproc. This points to the copy we've read into GDB. */
139 /* Point back to the mthreads list. */
141 struct gdb_thread
*next
;
146 * Actions for Mach exceptions.
148 * sigmap field maps the exception to corresponding Unix signal.
150 * I do not know how to map the exception to unix signal
151 * if SIG_UNKNOWN is specified.
154 struct exception_list
164 "not_mach3_exception", FALSE
, TRUE
, SIG_UNKNOWN
168 "EXC_BAD_ACCESS", FALSE
, TRUE
, SIGSEGV
172 "EXC_BAD_INSTRUCTION", FALSE
, TRUE
, SIGILL
176 "EXC_ARITHMETIC", FALSE
, TRUE
, SIGFPE
180 "EXC_EMULATION", FALSE
, TRUE
, SIGEMT
184 "EXC_SOFTWARE", FALSE
, TRUE
, SIG_UNKNOWN
188 "EXC_BREAKPOINT", FALSE
, FALSE
, SIGTRAP
192 /* Mach exception table size */
193 int max_exception
= sizeof (exception_map
) / sizeof (struct exception_list
) - 1;
195 #define MAX_EXCEPTION max_exception
197 WAITTYPE wait_status
;
199 /* If you define this, intercepted bsd server calls will be
200 * dumped while waiting the inferior to EXEC the correct
203 /* #define DUMP_SYSCALL /* debugging interceptor */
205 /* xx_debug() outputs messages if this is nonzero.
206 * If > 1, DUMP_SYSCALL will dump message contents.
210 /* "Temporary" debug stuff */
212 xx_debug (char *fmt
, int a
, int b
, int c
)
215 warning (fmt
, a
, b
, c
);
218 /* This is in libmach.a */
219 extern mach_port_t name_server_port
;
221 /* Set in catch_exception_raise */
222 int stop_exception
, stop_code
, stop_subcode
;
223 int stopped_in_exception
;
225 /* Thread that was the active thread when we stopped */
226 thread_t stop_thread
= MACH_PORT_NULL
;
230 /* Set when task is attached or created */
231 boolean_t emulator_present
= FALSE
;
233 task_t inferior_task
;
234 thread_t current_thread
;
236 /* Exception ports for inferior task */
237 mach_port_t inferior_exception_port
= MACH_PORT_NULL
;
238 mach_port_t inferior_old_exception_port
= MACH_PORT_NULL
;
240 /* task exceptions and notifications */
241 mach_port_t inferior_wait_port_set
= MACH_PORT_NULL
;
242 mach_port_t our_notify_port
= MACH_PORT_NULL
;
244 /* This is "inferior_wait_port_set" when not single stepping, and
245 * "singlestepped_thread_port" when we are single stepping.
247 * This is protected by a cleanup function: discard_single_step()
249 mach_port_t currently_waiting_for
= MACH_PORT_NULL
;
251 /* A port for external messages to gdb.
252 * External in the meaning that they do not come
253 * from the inferior_task, but rather from external
256 * As a debugging feature:
257 * A debugger debugging another debugger can stop the
258 * inferior debugger by the following command sequence
259 * (without running external programs)
261 * (top-gdb) set stop_inferior_gdb ()
264 mach_port_t our_message_port
= MACH_PORT_NULL
;
266 /* For single stepping */
267 mach_port_t thread_exception_port
= MACH_PORT_NULL
;
268 mach_port_t thread_saved_exception_port
= MACH_PORT_NULL
;
269 mach_port_t singlestepped_thread_port
= MACH_PORT_NULL
;
271 /* For machid calls */
272 mach_port_t mid_server
= MACH_PORT_NULL
;
273 mach_port_t mid_auth
= MACH_PORT_NULL
;
275 /* If gdb thinks the inferior task is not suspended, it
276 * must take suspend/abort the threads when it reads the state.
278 int must_suspend_thread
= 0;
280 /* When single stepping, we switch the port that mach_really_wait() listens to.
281 * This cleanup is a guard to prevent the port set from being left to
282 * the singlestepped_thread_port when error() is called.
283 * This is nonzero only when we are single stepping.
285 #define NULL_CLEANUP (struct cleanup *)0
286 struct cleanup
*cleanup_step
= NULL_CLEANUP
;
289 static struct target_ops m3_ops
;
291 static void m3_kill_inferior ();
294 #define MACH_TYPE_EXCEPTION_PORT -1
297 /* Chain of ports to remember requested notifications. */
301 struct port_chain
*next
;
304 int mid
; /* Now only valid with MACH_TYPE_THREAD and */
305 /* MACH_TYPE_THREAD */
307 typedef struct port_chain
*port_chain_t
;
309 /* Room for chain nodes comes from pchain_obstack */
310 struct obstack pchain_obstack
;
311 struct obstack
*port_chain_obstack
= &pchain_obstack
;
313 /* For thread handling */
314 struct obstack Cproc_obstack
;
315 struct obstack
*cproc_obstack
= &Cproc_obstack
;
317 /* the list of notified ports */
318 port_chain_t notify_chain
= (port_chain_t
) NULL
;
321 port_chain_insert (port_chain_t list
, mach_port_t name
, int type
)
327 if (!MACH_PORT_VALID (name
))
330 if (type
== MACH_TYPE_TASK
|| type
== MACH_TYPE_THREAD
)
332 if (!MACH_PORT_VALID (mid_server
))
334 warning ("Machid server port invalid, can not map port 0x%x to MID",
340 ret
= machid_mach_register (mid_server
, mid_auth
, name
, type
, &mid
);
342 if (ret
!= KERN_SUCCESS
)
344 warning ("Can not map name (0x%x) to MID with machid", name
);
350 internal_error (__FILE__
, __LINE__
, "failed internal consistency check");
352 new = (port_chain_t
) obstack_alloc (port_chain_obstack
,
353 sizeof (struct port_chain
));
363 port_chain_delete (port_chain_t list
, mach_port_t elem
)
366 if (list
->port
== elem
)
371 if (list
->next
->port
== elem
)
372 list
->next
= list
->next
->next
; /* GCd with obstack_free() */
380 port_chain_destroy (struct obstack
*ostack
)
382 obstack_free (ostack
, 0);
383 obstack_init (ostack
);
387 port_chain_member (port_chain_t list
, mach_port_t elem
)
391 if (list
->port
== elem
)
395 return (port_chain_t
) NULL
;
399 map_port_name_to_mid (mach_port_t name
, int type
)
403 if (!MACH_PORT_VALID (name
))
406 elem
= port_chain_member (notify_chain
, name
);
408 if (elem
&& (elem
->type
== type
))
414 if (!MACH_PORT_VALID (mid_server
))
416 warning ("Machid server port invalid, can not map port 0x%x to mid",
425 ret
= machid_mach_register (mid_server
, mid_auth
, name
, type
, &mid
);
427 if (ret
!= KERN_SUCCESS
)
429 warning ("Can not map name (0x%x) to mid with machid", name
);
436 /* Guard for currently_waiting_for and singlestepped_thread_port */
438 discard_single_step (thread_t thread
)
440 currently_waiting_for
= inferior_wait_port_set
;
442 cleanup_step
= NULL_CLEANUP
;
443 if (MACH_PORT_VALID (thread
) && MACH_PORT_VALID (singlestepped_thread_port
))
444 setup_single_step (thread
, FALSE
);
447 setup_single_step (thread_t thread
, boolean_t start_step
)
451 if (!MACH_PORT_VALID (thread
))
452 error ("Invalid thread supplied to setup_single_step");
457 /* Get the current thread exception port */
458 ret
= thread_get_exception_port (thread
, &teport
);
459 CHK ("Getting thread's exception port", ret
);
463 if (MACH_PORT_VALID (singlestepped_thread_port
))
465 warning ("Singlestepped_thread_port (0x%x) is still valid?",
466 singlestepped_thread_port
);
467 singlestepped_thread_port
= MACH_PORT_NULL
;
470 /* If we are already stepping this thread */
471 if (MACH_PORT_VALID (teport
) && teport
== thread_exception_port
)
473 ret
= mach_port_deallocate (mach_task_self (), teport
);
474 CHK ("Could not deallocate thread exception port", ret
);
478 ret
= thread_set_exception_port (thread
, thread_exception_port
);
479 CHK ("Setting exception port for thread", ret
);
481 /* Insert thread exception port to wait port set */
482 ret
= mach_port_move_member (mach_task_self (),
483 thread_exception_port
,
484 inferior_wait_port_set
);
485 CHK ("Moving thread exception port to inferior_wait_port_set",
488 thread_saved_exception_port
= teport
;
491 thread_trace (thread
, TRUE
);
493 singlestepped_thread_port
= thread_exception_port
;
494 currently_waiting_for
= singlestepped_thread_port
;
495 cleanup_step
= make_cleanup (discard_single_step
, thread
);
499 if (!MACH_PORT_VALID (teport
))
500 error ("Single stepped thread had an invalid exception port?");
502 if (teport
!= thread_exception_port
)
503 error ("Single stepped thread had an unknown exception port?");
505 ret
= mach_port_deallocate (mach_task_self (), teport
);
506 CHK ("Couldn't deallocate thread exception port", ret
);
508 /* Remove thread exception port from wait port set */
509 ret
= mach_port_move_member (mach_task_self (),
510 thread_exception_port
,
512 CHK ("Removing thread exception port from inferior_wait_port_set",
515 /* Restore thread's old exception port */
516 ret
= thread_set_exception_port (thread
,
517 thread_saved_exception_port
);
518 CHK ("Restoring stepped thread's exception port", ret
);
520 if (MACH_PORT_VALID (thread_saved_exception_port
))
521 (void) mach_port_deallocate (mach_task_self (),
522 thread_saved_exception_port
);
524 thread_trace (thread
, FALSE
);
526 singlestepped_thread_port
= MACH_PORT_NULL
;
527 currently_waiting_for
= inferior_wait_port_set
;
529 discard_cleanups (cleanup_step
);
535 request_notify (mach_port_t name
, mach_msg_id_t variant
, int type
)
538 mach_port_t previous_port_dummy
= MACH_PORT_NULL
;
540 if (!MACH_PORT_VALID (name
))
543 if (port_chain_member (notify_chain
, name
))
546 ret
= mach_port_request_notification (mach_task_self (),
551 MACH_MSG_TYPE_MAKE_SEND_ONCE
,
552 &previous_port_dummy
);
553 CHK ("Serious: request_notify failed", ret
);
555 (void) mach_port_deallocate (mach_task_self (),
556 previous_port_dummy
);
558 notify_chain
= port_chain_insert (notify_chain
, name
, type
);
561 reverse_msg_bits (mach_msg_header_t
*msgp
, int type
)
564 rbits
= MACH_MSGH_BITS_REMOTE (msgp
->msgh_bits
);
567 (msgp
->msgh_bits
& ~MACH_MSGH_BITS_PORTS_MASK
) |
568 MACH_MSGH_BITS (lbits
, rbits
);
571 /* On the third day He said:
574 and then it was global.
576 When creating the inferior fork, the
577 child code in inflow.c sets the name of the
578 bootstrap_port in its address space to this
581 The name is transferred to our address space
582 with mach3_read_inferior().
584 Thou shalt not do this with
585 task_get_bootstrap_port() in this task, since
586 the name in the inferior task is different than
589 For blessed are the meek, as they shall inherit
592 mach_port_t original_server_port_name
= MACH_PORT_NULL
;
595 /* Called from inferior after FORK but before EXEC */
601 /* Get the NAME of the bootstrap port in this task
602 so that GDB can read it */
603 ret
= task_get_bootstrap_port (mach_task_self (),
604 &original_server_port_name
);
605 if (ret
!= KERN_SUCCESS
)
606 internal_error (__FILE__
, __LINE__
, "failed internal consistency check");
607 ret
= mach_port_deallocate (mach_task_self (),
608 original_server_port_name
);
609 if (ret
!= KERN_SUCCESS
)
610 internal_error (__FILE__
, __LINE__
, "failed internal consistency check");
612 /* Suspend this task to let the parent change my ports.
613 Resumed by the debugger */
614 ret
= task_suspend (mach_task_self ());
615 if (ret
!= KERN_SUCCESS
)
616 internal_error (__FILE__
, __LINE__
, "failed internal consistency check");
620 * Intercept system calls to Unix server.
621 * After EXEC_COUNTER calls to exec(), return.
623 * Pre-assertion: Child is suspended. (Not verified)
624 * Post-condition: Child is suspended after EXEC_COUNTER exec() calls.
628 intercept_exec_calls (int exec_counter
)
630 int terminal_initted
= 0;
634 mach_msg_header_t header
;
635 mach_msg_type_t type
;
636 char room
[2000]; /* Enuff space */
639 struct syscall_msg_t syscall_in
, syscall_out
;
641 mach_port_t fake_server
;
642 mach_port_t original_server_send
;
643 mach_port_t original_exec_reply
;
644 mach_port_t exec_reply
;
645 mach_port_t exec_reply_send
;
646 mach_msg_type_name_t acquired
;
647 mach_port_t emulator_server_port_name
;
648 struct task_basic_info info
;
649 mach_msg_type_number_t info_count
;
653 if (exec_counter
<= 0)
654 return; /* We are already set up in the correct program */
656 ret
= mach_port_allocate (mach_task_self (),
657 MACH_PORT_RIGHT_RECEIVE
,
659 CHK ("create inferior_fake_server port failed", ret
);
661 /* Wait for inferior_task to suspend itself */
664 info_count
= sizeof (info
);
665 ret
= task_info (inferior_task
,
667 (task_info_t
) & info
,
669 CHK ("Task info", ret
);
671 if (info
.suspend_count
)
674 /* Note that the definition of the parameter was undefined
675 * at the time of this writing, so I just use an `ad hoc' value.
677 (void) swtch_pri (42); /* Universal Priority Value */
680 /* Read the inferior's bootstrap port name */
681 if (!mach3_read_inferior (&original_server_port_name
,
682 &original_server_port_name
,
683 sizeof (original_server_port_name
)))
684 error ("Can't read inferior task bootstrap port name");
686 /* @@ BUG: If more than 1 send right GDB will FAIL!!! */
687 /* Should get refs, and set them back when restoring */
688 /* Steal the original bsd server send right from inferior */
689 ret
= mach_port_extract_right (inferior_task
,
690 original_server_port_name
,
691 MACH_MSG_TYPE_MOVE_SEND
,
692 &original_server_send
,
694 CHK ("mach_port_extract_right (bsd server send)", ret
);
696 if (acquired
!= MACH_MSG_TYPE_PORT_SEND
)
697 error ("Incorrect right extracted, send right to bsd server expected");
699 ret
= mach_port_insert_right (inferior_task
,
700 original_server_port_name
,
702 MACH_MSG_TYPE_MAKE_SEND
);
703 CHK ("mach_port_insert_right (fake server send)", ret
);
705 xx_debug ("inferior task bsd server ports set up \nfs %x, ospn %x, oss %x\n",
707 original_server_port_name
, original_server_send
);
709 /* A receive right to the reply generated by unix server exec() request */
710 ret
= mach_port_allocate (mach_task_self (),
711 MACH_PORT_RIGHT_RECEIVE
,
713 CHK ("create intercepted_reply_port port failed", ret
);
715 /* Pass this send right to Unix server so it replies to us after exec() */
716 ret
= mach_port_extract_right (mach_task_self (),
718 MACH_MSG_TYPE_MAKE_SEND_ONCE
,
721 CHK ("mach_port_extract_right (exec_reply)", ret
);
723 if (acquired
!= MACH_MSG_TYPE_PORT_SEND_ONCE
)
724 error ("Incorrect right extracted, send once expected for exec reply");
726 ret
= mach_port_move_member (mach_task_self (),
728 inferior_wait_port_set
);
729 CHK ("Moving fake syscall port to inferior_wait_port_set", ret
);
731 xx_debug ("syscall fake server set up, resuming inferior\n");
733 ret
= task_resume (inferior_task
);
734 CHK ("task_resume (startup)", ret
);
736 /* Read requests from the inferior.
737 Pass directly through everything else except exec() calls.
739 while (exec_counter
> 0)
741 ret
= mach_msg (&syscall_in
.header
, /* header */
742 MACH_RCV_MSG
, /* options */
744 sizeof (struct syscall_msg_t
), /* receive size */
745 inferior_wait_port_set
, /* receive_name */
746 MACH_MSG_TIMEOUT_NONE
,
748 CHK ("mach_msg (intercepted sycall)", ret
);
751 print_msg (&syscall_in
.header
);
754 /* ASSERT : msgh_local_port == fake_server */
756 if (notify_server (&syscall_in
.header
, &syscall_out
.header
))
757 error ("received a notify while intercepting syscalls");
759 if (syscall_in
.header
.msgh_id
== MIG_EXEC_SYSCALL_ID
)
761 xx_debug ("Received EXEC SYSCALL, counter = %d\n", exec_counter
);
762 if (exec_counter
== 1)
764 original_exec_reply
= syscall_in
.header
.msgh_remote_port
;
765 syscall_in
.header
.msgh_remote_port
= exec_reply_send
;
768 if (!terminal_initted
)
770 /* Now that the child has exec'd we know it has already set its
771 process group. On POSIX systems, tcsetpgrp will fail with
772 EPERM if we try it before the child's setpgid. */
774 /* Set up the "saved terminal modes" of the inferior
775 based on what modes we are starting it with. */
776 target_terminal_init ();
778 /* Install inferior's terminal modes. */
779 target_terminal_inferior ();
781 terminal_initted
= 1;
787 syscall_in
.header
.msgh_local_port
= syscall_in
.header
.msgh_remote_port
;
788 syscall_in
.header
.msgh_remote_port
= original_server_send
;
790 reverse_msg_bits (&syscall_in
.header
, MACH_MSG_TYPE_COPY_SEND
);
792 ret
= mach_msg_send (&syscall_in
.header
);
793 CHK ("Forwarded syscall", ret
);
796 ret
= mach_port_move_member (mach_task_self (),
799 CHK ("Moving fake syscall out of inferior_wait_port_set", ret
);
801 ret
= mach_port_move_member (mach_task_self (),
803 inferior_wait_port_set
);
804 CHK ("Moving exec_reply to inferior_wait_port_set", ret
);
806 ret
= mach_msg (&syscall_in
.header
, /* header */
807 MACH_RCV_MSG
, /* options */
809 sizeof (struct syscall_msg_t
), /* receive size */
810 inferior_wait_port_set
, /* receive_name */
811 MACH_MSG_TIMEOUT_NONE
,
813 CHK ("mach_msg (exec reply)", ret
);
815 ret
= task_suspend (inferior_task
);
816 CHK ("Suspending inferior after last exec", ret
);
818 must_suspend_thread
= 0;
820 xx_debug ("Received exec reply from bsd server, suspended inferior task\n");
823 print_msg (&syscall_in
.header
);
826 /* Message should appear as if it came from the unix server */
827 syscall_in
.header
.msgh_local_port
= MACH_PORT_NULL
;
829 /* and go to the inferior task original reply port */
830 syscall_in
.header
.msgh_remote_port
= original_exec_reply
;
832 reverse_msg_bits (&syscall_in
.header
, MACH_MSG_TYPE_MOVE_SEND_ONCE
);
834 ret
= mach_msg_send (&syscall_in
.header
);
835 CHK ("Forwarding exec reply to inferior", ret
);
837 /* Garbage collect */
838 ret
= mach_port_deallocate (inferior_task
,
839 original_server_port_name
);
840 CHK ("deallocating fake server send right", ret
);
842 ret
= mach_port_insert_right (inferior_task
,
843 original_server_port_name
,
844 original_server_send
,
845 MACH_MSG_TYPE_MOVE_SEND
);
846 CHK ("Restoring the original bsd server send right", ret
);
848 ret
= mach_port_destroy (mach_task_self (),
850 fake_server
= MACH_PORT_DEAD
;
851 CHK ("mach_port_destroy (fake_server)", ret
);
853 ret
= mach_port_destroy (mach_task_self (),
855 exec_reply
= MACH_PORT_DEAD
;
856 CHK ("mach_port_destroy (exec_reply)", ret
);
858 xx_debug ("Done with exec call interception\n");
862 consume_send_rights (thread_array_t thread_list
, int thread_count
)
869 for (index
= 0; index
< thread_count
; index
++)
871 /* Since thread kill command kills threads, don't check ret */
872 (void) mach_port_deallocate (mach_task_self (),
877 /* suspend/abort/resume a thread. */
878 setup_thread (mach_port_t thread
, int what
)
884 ret
= thread_suspend (thread
);
885 CHK ("setup_thread thread_suspend", ret
);
887 ret
= thread_abort (thread
);
888 CHK ("setup_thread thread_abort", ret
);
892 ret
= thread_resume (thread
);
893 CHK ("setup_thread thread_resume", ret
);
898 map_slot_to_mid (int slot
, thread_array_t threads
, int thread_count
)
908 ret
= task_threads (inferior_task
, &threads
, &thread_count
);
909 CHK ("Can not select a thread from a dead task", ret
);
912 if (slot
< 0 || slot
>= thread_count
)
916 consume_send_rights (threads
, thread_count
);
917 (void) vm_deallocate (mach_task_self (), (vm_address_t
) threads
,
918 (thread_count
* sizeof (mach_port_t
)));
921 error ("invalid slot number");
926 mid
= map_port_name_to_mid (threads
[slot
], MACH_TYPE_THREAD
);
930 consume_send_rights (threads
, thread_count
);
931 (void) vm_deallocate (mach_task_self (), (vm_address_t
) threads
,
932 (thread_count
* sizeof (mach_port_t
)));
939 parse_thread_id (char *arg
, int thread_count
, int slots
)
949 while (*arg
&& (*arg
== ' ' || *arg
== '\t'))
955 /* Currently parse MID and @SLOTNUMBER */
960 error ("valid thread mid expected");
968 error ("invalid slot number");
970 /* If you want slot numbers to remain slot numbers, set slots.
972 * Well, since 0 is reserved, return the ordinal number
973 * of the thread rather than the slot number. Awk, this
974 * counts as a kludge.
979 if (thread_count
&& slot
>= thread_count
)
982 mid
= map_slot_to_mid (slot
);
987 /* THREAD_ID 0 is special; it selects the first kernel
988 * thread from the list (i.e. SLOTNUMBER 0)
989 * This is used when starting the program with 'run' or when attaching.
991 * If FLAG is 0 the context is not changed, and the registers, frame, etc
992 * will continue to describe the old thread.
994 * If FLAG is nonzero, really select the thread.
995 * If FLAG is 2, the THREAD_ID is a slotnumber instead of a mid.
999 select_thread (mach_port_t task
, int thread_id
, int flag
)
1001 thread_array_t thread_list
;
1005 thread_t new_thread
= MACH_PORT_NULL
;
1008 error ("Can't select cprocs without kernel thread");
1010 ret
= task_threads (task
, &thread_list
, &thread_count
);
1011 if (ret
!= KERN_SUCCESS
)
1013 warning ("Can not select a thread from a dead task");
1014 m3_kill_inferior ();
1015 return KERN_FAILURE
;
1018 if (thread_count
== 0)
1020 /* The task can not do anything anymore, but it still
1021 * exists as a container for memory and ports.
1023 registers_changed ();
1024 warning ("Task %d has no threads",
1025 map_port_name_to_mid (task
, MACH_TYPE_TASK
));
1026 current_thread
= MACH_PORT_NULL
;
1027 (void) vm_deallocate (mach_task_self (),
1028 (vm_address_t
) thread_list
,
1029 (thread_count
* sizeof (mach_port_t
)));
1030 return KERN_FAILURE
;
1033 if (!thread_id
|| flag
== 2)
1035 /* First thread or a slotnumber */
1037 new_thread
= thread_list
[0];
1040 if (thread_id
< thread_count
)
1041 new_thread
= thread_list
[thread_id
];
1044 (void) vm_deallocate (mach_task_self (),
1045 (vm_address_t
) thread_list
,
1046 (thread_count
* sizeof (mach_port_t
)));
1047 error ("No such thread slot number : %d", thread_id
);
1053 for (index
= 0; index
< thread_count
; index
++)
1054 if (thread_id
== map_port_name_to_mid (thread_list
[index
],
1057 new_thread
= thread_list
[index
];
1063 error ("No thread with mid %d", thread_id
);
1066 /* Notify when the selected thread dies */
1067 request_notify (new_thread
, MACH_NOTIFY_DEAD_NAME
, MACH_TYPE_THREAD
);
1069 ret
= vm_deallocate (mach_task_self (),
1070 (vm_address_t
) thread_list
,
1071 (thread_count
* sizeof (mach_port_t
)));
1072 CHK ("vm_deallocate", ret
);
1075 current_thread
= new_thread
;
1079 if (MACH_PORT_VALID (current_thread
))
1081 /* Store the gdb's view of the thread we are deselecting
1083 * @@ I think gdb updates registers immediately when they are
1084 * changed, so don't do this.
1086 ret
= thread_abort (current_thread
);
1087 CHK ("Could not abort system calls when saving state of old thread",
1089 target_prepare_to_store ();
1090 target_store_registers (-1);
1094 registers_changed ();
1096 current_thread
= new_thread
;
1098 ret
= thread_abort (current_thread
);
1099 CHK ("Could not abort system calls when selecting a thread", ret
);
1101 stop_pc
= read_pc ();
1102 flush_cached_frames ();
1104 select_frame (get_current_frame (), 0);
1107 return KERN_SUCCESS
;
1111 * Switch to use thread named NEW_THREAD.
1115 switch_to_thread (thread_t new_thread
)
1117 thread_t saved_thread
= current_thread
;
1120 mid
= map_port_name_to_mid (new_thread
,
1123 warning ("Can't map thread name 0x%x to mid", new_thread
);
1124 else if (select_thread (inferior_task
, mid
, 1) != KERN_SUCCESS
)
1127 current_thread
= saved_thread
;
1128 error ("Could not select thread %d", mid
);
1134 /* Do this in gdb after doing FORK but before STARTUP_INFERIOR.
1135 * Note that the registers are not yet valid in the inferior task.
1138 m3_trace_him (int pid
)
1142 push_target (&m3_ops
);
1144 inferior_task
= task_by_pid (pid
);
1146 if (!MACH_PORT_VALID (inferior_task
))
1147 error ("Can not map Unix pid %d to Mach task", pid
);
1149 /* Clean up previous notifications and create new ones */
1150 setup_notify_port (1);
1152 /* When notification appears, the inferior task has died */
1153 request_notify (inferior_task
, MACH_NOTIFY_DEAD_NAME
, MACH_TYPE_TASK
);
1155 emulator_present
= have_emulator_p (inferior_task
);
1157 /* By default, select the first thread,
1158 * If task has no threads, gives a warning
1159 * Does not fetch registers, since they are not yet valid.
1161 select_thread (inferior_task
, 0, 0);
1163 inferior_exception_port
= MACH_PORT_NULL
;
1165 setup_exception_port ();
1167 xx_debug ("Now the debugged task is created\n");
1169 /* One trap to exec the shell, one to exec the program being debugged. */
1170 intercept_exec_calls (2);
1175 setup_exception_port (void)
1179 ret
= mach_port_allocate (mach_task_self (),
1180 MACH_PORT_RIGHT_RECEIVE
,
1181 &inferior_exception_port
);
1182 CHK ("mach_port_allocate", ret
);
1184 /* add send right */
1185 ret
= mach_port_insert_right (mach_task_self (),
1186 inferior_exception_port
,
1187 inferior_exception_port
,
1188 MACH_MSG_TYPE_MAKE_SEND
);
1189 CHK ("mach_port_insert_right", ret
);
1191 ret
= mach_port_move_member (mach_task_self (),
1192 inferior_exception_port
,
1193 inferior_wait_port_set
);
1194 CHK ("mach_port_move_member", ret
);
1196 ret
= task_get_special_port (inferior_task
,
1197 TASK_EXCEPTION_PORT
,
1198 &inferior_old_exception_port
);
1199 CHK ("task_get_special_port(old exc)", ret
);
1201 ret
= task_set_special_port (inferior_task
,
1202 TASK_EXCEPTION_PORT
,
1203 inferior_exception_port
);
1204 CHK ("task_set_special_port", ret
);
1206 ret
= mach_port_deallocate (mach_task_self (),
1207 inferior_exception_port
);
1208 CHK ("mack_port_deallocate", ret
);
1211 /* When notify appears, the inferior_task's exception
1212 * port has been destroyed.
1214 * Not used, since the dead_name_notification already
1215 * appears when task dies.
1218 request_notify (inferior_exception_port
,
1219 MACH_NOTIFY_NO_SENDERS
,
1220 MACH_TYPE_EXCEPTION_PORT
);
1224 /* Nonzero if gdb is waiting for a message */
1225 int mach_really_waiting
;
1227 /* Wait for the inferior to stop for some reason.
1228 - Loop on notifications until inferior_task dies.
1229 - Loop on exceptions until stopped_in_exception comes true.
1230 (e.g. we receive a single step trace trap)
1231 - a message arrives to gdb's message port
1233 There is no other way to exit this loop.
1235 Returns the inferior_pid for rest of gdb.
1236 Side effects: Set *OURSTATUS. */
1238 mach_really_wait (int pid
, struct target_waitstatus
*ourstatus
)
1245 mach_msg_header_t header
;
1246 mach_msg_type_t foo
;
1251 /* Either notify (death), exception or message can stop the inferior */
1252 stopped_in_exception
= FALSE
;
1258 stop_exception
= stop_code
= stop_subcode
= -1;
1259 stop_thread
= MACH_PORT_NULL
;
1261 mach_really_waiting
= 1;
1262 ret
= mach_msg (&in_msg
.header
, /* header */
1263 MACH_RCV_MSG
, /* options */
1265 sizeof (struct msg
), /* receive size */
1266 currently_waiting_for
, /* receive name */
1267 MACH_MSG_TIMEOUT_NONE
,
1269 mach_really_waiting
= 0;
1270 CHK ("mach_msg (receive)", ret
);
1272 /* Check if we received a notify of the childs' death */
1273 if (notify_server (&in_msg
.header
, &out_msg
.header
))
1275 /* If inferior_task is null then the inferior has
1276 gone away and we want to return to command level.
1277 Otherwise it was just an informative message and we
1278 need to look to see if there are any more. */
1279 if (inferior_task
!= MACH_PORT_NULL
)
1283 /* Collect Unix exit status for gdb */
1285 wait3 (&w
, WNOHANG
, 0);
1287 /* This mess is here to check that the rest of
1288 * gdb knows that the inferior died. It also
1289 * tries to hack around the fact that Mach 3.0 (mk69)
1290 * unix server (ux28) does not always know what
1291 * has happened to it's children when mach-magic
1292 * is applied on them.
1294 if ((!WIFEXITED (w
) && WIFSTOPPED (w
)) ||
1295 (WIFEXITED (w
) && WEXITSTATUS (w
) > 0377))
1298 warning ("Using exit value 0 for terminated task");
1300 else if (!WIFEXITED (w
))
1302 int sig
= WTERMSIG (w
);
1304 /* Signals cause problems. Warn the user. */
1305 if (sig
!= SIGKILL
) /* Bad luck if garbage matches this */
1306 warning ("The terminating signal stuff may be nonsense");
1307 else if (sig
> NSIG
)
1310 warning ("Using exit value 0 for terminated task");
1313 store_waitstatus (ourstatus
, w
);
1314 return inferior_pid
;
1318 /* Hmm. Check for exception, as it was not a notification.
1319 exc_server() does an upcall to catch_exception_raise()
1320 if this rpc is an exception. Further actions are decided
1323 if (!exc_server (&in_msg
.header
, &out_msg
.header
))
1326 /* Not an exception, check for message.
1328 * Messages don't come from the inferior, or if they
1329 * do they better be asynchronous or it will hang.
1331 if (gdb_message_server (&in_msg
.header
))
1334 error ("Unrecognized message received in mach_really_wait");
1337 /* Send the reply of the exception rpc to the suspended task */
1338 ret
= mach_msg_send (&out_msg
.header
);
1339 CHK ("mach_msg_send (exc reply)", ret
);
1341 if (stopped_in_exception
)
1343 /* Get unix state. May be changed in mach3_exception_actions() */
1344 wait3 (&w
, WNOHANG
, 0);
1346 mach3_exception_actions (&w
, FALSE
, "Task");
1348 store_waitstatus (ourstatus
, w
);
1349 return inferior_pid
;
1354 /* Called by macro DO_QUIT() in utils.c(quit).
1355 * This is called just before calling error() to return to command level
1363 if (mach_really_waiting
)
1365 ret
= task_suspend (inferior_task
);
1367 if (ret
!= KERN_SUCCESS
)
1369 warning ("Could not suspend task for interrupt: %s",
1370 mach_error_string (ret
));
1371 mach_really_waiting
= 0;
1376 must_suspend_thread
= 0;
1377 mach_really_waiting
= 0;
1379 mid
= map_port_name_to_mid (current_thread
, MACH_TYPE_THREAD
);
1382 warning ("Selecting first existing kernel thread");
1386 current_thread
= MACH_PORT_NULL
; /* Force setup */
1387 select_thread (inferior_task
, mid
, 1);
1393 /* bogus bogus bogus. It is NOT OK to quit out of target_wait. */
1395 /* If ^C is typed when we are waiting for a message
1396 * and your Unix server is able to notice that we
1399 * Called by REQUEST_QUIT() from utils.c(request_quit)
1402 mach3_request_quit (void)
1404 if (mach_really_waiting
)
1410 * Gdb message server.
1411 * Currently implemented is the STOP message, that causes
1412 * gdb to return to the command level like ^C had been typed from terminal.
1415 gdb_message_server (mach_msg_header_t
*InP
)
1420 if (InP
->msgh_local_port
== our_message_port
)
1422 /* A message coming to our_message_port. Check validity */
1423 switch (InP
->msgh_id
)
1426 case GDB_MESSAGE_ID_STOP
:
1427 ret
= task_suspend (inferior_task
);
1428 if (ret
!= KERN_SUCCESS
)
1429 warning ("Could not suspend task for stop message: %s",
1430 mach_error_string (ret
));
1432 /* QUIT in mach_really_wait() loop. */
1437 warning ("Invalid message id %d received, ignored.",
1445 /* Message not handled by this server */
1449 /* NOTE: This is not an RPC call. It is a simpleroutine.
1451 * This is not called from this gdb code.
1453 * It may be called by another debugger to cause this
1454 * debugger to enter command level:
1456 * (gdb) set stop_inferior_gdb ()
1459 * External program "stop-gdb" implements this also.
1462 stop_inferior_gdb (void)
1466 /* Code generated by mig, with minor cleanups :-)
1468 * simpleroutine stop_inferior_gdb (our_message_port : mach_port_t);
1473 mach_msg_header_t Head
;
1479 register Request
*InP
= &Mess
;
1481 InP
->Head
.msgh_bits
= MACH_MSGH_BITS (MACH_MSG_TYPE_COPY_SEND
, 0);
1483 /* msgh_size passed as argument */
1484 InP
->Head
.msgh_remote_port
= our_message_port
;
1485 InP
->Head
.msgh_local_port
= MACH_PORT_NULL
;
1486 InP
->Head
.msgh_seqno
= 0;
1487 InP
->Head
.msgh_id
= GDB_MESSAGE_ID_STOP
;
1489 ret
= mach_msg (&InP
->Head
,
1490 MACH_SEND_MSG
| MACH_MSG_OPTION_NONE
,
1494 MACH_MSG_TIMEOUT_NONE
,
1498 #ifdef THREAD_ALLOWED_TO_BREAK
1500 * Return 1 if the MID specifies the thread that caused the
1502 * Since catch_exception_raise() selects the thread causing
1503 * the last exception to current_thread, we just check that
1504 * it is selected and the last exception was a breakpoint.
1507 mach_thread_for_breakpoint (int mid
)
1509 int cmid
= map_port_name_to_mid (current_thread
, MACH_TYPE_THREAD
);
1513 mid
= map_slot_to_mid (-(mid
+ 1), 0, 0);
1515 return 0; /* Don't stop, no such slot */
1518 if (!mid
|| cmid
== -1)
1519 return 1; /* stop */
1521 return cmid
== mid
&& stop_exception
== EXC_BREAKPOINT
;
1523 #endif /* THREAD_ALLOWED_TO_BREAK */
1525 #ifdef THREAD_PARSE_ID
1527 * Map a thread id string (MID or a @SLOTNUMBER)
1530 * 0 matches all threads.
1531 * Otherwise the meaning is defined only in this file.
1532 * (mach_thread_for_breakpoint uses it)
1534 * @@ This allows non-existent MIDs to be specified.
1535 * It now also allows non-existent slots to be
1536 * specified. (Slot numbers stored are negative,
1537 * and the magnitude is one greater than the actual
1538 * slot index. (Since 0 is reserved))
1541 mach_thread_parse_id (char *arg
)
1545 error ("thread id expected");
1546 mid
= parse_thread_id (arg
, 0, 1);
1550 #endif /* THREAD_PARSE_ID */
1552 #ifdef THREAD_OUTPUT_ID
1554 mach_thread_output_id (int mid
)
1556 static char foobar
[20];
1559 sprintf (foobar
, "mid %d", mid
);
1561 sprintf (foobar
, "@%d", -(mid
+ 1));
1563 sprintf (foobar
, "*any thread*");
1567 #endif /* THREAD_OUTPUT_ID */
1569 /* Called with hook PREPARE_TO_PROCEED() from infrun.c.
1571 * If we have switched threads and stopped at breakpoint return 1 otherwise 0.
1573 * if SELECT_IT is nonzero, reselect the thread that was active when
1574 * we stopped at a breakpoint.
1578 mach3_prepare_to_proceed (int select_it
)
1581 stop_thread
!= current_thread
&&
1582 stop_exception
== EXC_BREAKPOINT
)
1589 mid
= switch_to_thread (stop_thread
);
1597 /* this stuff here is an upcall via libmach/excServer.c
1598 and mach_really_wait which does the actual upcall.
1600 The code will pass the exception to the inferior if:
1602 - The task that signaled is not the inferior task
1603 (e.g. when debugging another debugger)
1605 - The user has explicitely requested to pass on the exceptions.
1606 (e.g to the default unix exception handler, which maps
1607 exceptions to signals, or the user has her own exception handler)
1609 - If the thread that signaled is being single-stepped and it
1610 has set it's own exception port and the exception is not
1611 EXC_BREAKPOINT. (Maybe this is not desirable?)
1615 catch_exception_raise (mach_port_t port
, thread_t thread
, task_t task
,
1616 int exception
, int code
, int subcode
)
1619 boolean_t signal_thread
;
1620 int mid
= map_port_name_to_mid (thread
, MACH_TYPE_THREAD
);
1622 if (!MACH_PORT_VALID (thread
))
1624 /* If the exception was sent and thread dies before we
1625 receive it, THREAD will be MACH_PORT_DEAD
1628 current_thread
= thread
= MACH_PORT_NULL
;
1629 error ("Received exception from nonexistent thread");
1632 /* Check if the task died in transit.
1633 * @@ Isn't the thread also invalid in such case?
1635 if (!MACH_PORT_VALID (task
))
1637 current_thread
= thread
= MACH_PORT_NULL
;
1638 error ("Received exception from nonexistent task");
1641 if (exception
< 0 || exception
> MAX_EXCEPTION
)
1642 internal_error (__FILE__
, __LINE__
,
1643 "catch_exception_raise: unknown exception code %d thread %d",
1647 if (!MACH_PORT_VALID (inferior_task
))
1648 error ("got an exception, but inferior_task is null or dead");
1650 stop_exception
= exception
;
1652 stop_subcode
= subcode
;
1653 stop_thread
= thread
;
1655 signal_thread
= exception
!= EXC_BREAKPOINT
&&
1656 port
== singlestepped_thread_port
&&
1657 MACH_PORT_VALID (thread_saved_exception_port
);
1659 /* If it was not our inferior or if we want to forward
1660 * the exception to the inferior's handler, do it here
1662 * Note: If you have forwarded EXC_BREAKPOINT I trust you know why.
1664 if (task
!= inferior_task
||
1666 exception_map
[exception
].forward
)
1668 mach_port_t eport
= inferior_old_exception_port
;
1673 GDB now forwards the exeption to thread's original handler,
1674 since the user propably knows what he is doing.
1675 Give a message, though.
1678 mach3_exception_actions ((WAITTYPE
*) NULL
, TRUE
, "Thread");
1679 eport
= thread_saved_exception_port
;
1682 /* Send the exception to the original handler */
1683 ret
= exception_raise (eport
,
1690 (void) mach_port_deallocate (mach_task_self (), task
);
1691 (void) mach_port_deallocate (mach_task_self (), thread
);
1693 /* If we come here, we don't want to trace any more, since we
1694 * will never stop for tracing anyway.
1696 discard_single_step (thread
);
1698 /* Do not stop the inferior */
1702 /* Now gdb handles the exception */
1703 stopped_in_exception
= TRUE
;
1705 ret
= task_suspend (task
);
1706 CHK ("Error suspending inferior after exception", ret
);
1708 must_suspend_thread
= 0;
1710 if (current_thread
!= thread
)
1712 if (MACH_PORT_VALID (singlestepped_thread_port
))
1713 /* Cleanup discards single stepping */
1714 error ("Exception from thread %d while singlestepping thread %d",
1716 map_port_name_to_mid (current_thread
, MACH_TYPE_THREAD
));
1718 /* Then select the thread that caused the exception */
1719 if (select_thread (inferior_task
, mid
, 0) != KERN_SUCCESS
)
1720 error ("Could not select thread %d causing exception", mid
);
1722 warning ("Gdb selected thread %d", mid
);
1725 /* If we receive an exception that is not breakpoint
1726 * exception, we interrupt the single step and return to
1727 * debugger. Trace condition is cleared.
1729 if (MACH_PORT_VALID (singlestepped_thread_port
))
1731 if (stop_exception
!= EXC_BREAKPOINT
)
1732 warning ("Single step interrupted by exception");
1733 else if (port
== singlestepped_thread_port
)
1735 /* Single step exception occurred, remove trace bit
1736 * and return to gdb.
1738 if (!MACH_PORT_VALID (current_thread
))
1739 error ("Single stepped thread is not valid");
1741 /* Resume threads, but leave the task suspended */
1742 resume_all_threads (0);
1745 warning ("Breakpoint while single stepping?");
1747 discard_single_step (current_thread
);
1750 (void) mach_port_deallocate (mach_task_self (), task
);
1751 (void) mach_port_deallocate (mach_task_self (), thread
);
1753 return KERN_SUCCESS
;
1757 port_valid (mach_port_t port
, int mask
)
1760 mach_port_type_t type
;
1762 ret
= mach_port_type (mach_task_self (),
1765 if (ret
!= KERN_SUCCESS
|| (type
& mask
) != mask
)
1770 /* @@ No vm read cache implemented yet */
1771 boolean_t vm_read_cache_valid
= FALSE
;
1774 * Read inferior task's LEN bytes from ADDR and copy it to MYADDR
1775 * in gdb's address space.
1777 * Return 0 on failure; number of bytes read otherwise.
1780 mach3_read_inferior (CORE_ADDR addr
, char *myaddr
, int length
)
1783 vm_address_t low_address
= (vm_address_t
) trunc_page (addr
);
1784 vm_size_t aligned_length
=
1785 (vm_size_t
) round_page (addr
+ length
) - low_address
;
1786 pointer_t copied_memory
;
1789 /* Get memory from inferior with page aligned addresses */
1790 ret
= vm_read (inferior_task
,
1795 if (ret
!= KERN_SUCCESS
)
1797 /* the problem is that the inferior might be killed for whatever reason
1798 * before we go to mach_really_wait. This is one place that ought to
1799 * catch many of those errors.
1800 * @@ A better fix would be to make all external events to GDB
1801 * to arrive via a SINGLE port set. (Including user input!)
1804 if (!port_valid (inferior_task
, MACH_PORT_TYPE_SEND
))
1806 m3_kill_inferior ();
1807 error ("Inferior killed (task port invalid)");
1813 /* valprint.c gives nicer format if this does not
1814 screw it. Eamonn seems to like this, so I enable
1815 it if OSF is defined...
1817 warning ("[read inferior %x failed: %s]",
1818 addr
, mach_error_string (ret
));
1825 memcpy (myaddr
, (char *) addr
- low_address
+ copied_memory
, length
);
1827 ret
= vm_deallocate (mach_task_self (),
1830 CHK ("mach3_read_inferior vm_deallocate failed", ret
);
1835 #define CHK_GOTO_OUT(str,ret) \
1836 do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0)
1838 struct vm_region_list
1840 struct vm_region_list
*next
;
1841 vm_prot_t protection
;
1846 struct obstack region_obstack
;
1849 * Write inferior task's LEN bytes from ADDR and copy it to MYADDR
1850 * in gdb's address space.
1853 mach3_write_inferior (CORE_ADDR addr
, char *myaddr
, int length
)
1856 vm_address_t low_address
= (vm_address_t
) trunc_page (addr
);
1857 vm_size_t aligned_length
=
1858 (vm_size_t
) round_page (addr
+ length
) - low_address
;
1859 pointer_t copied_memory
;
1863 char *errstr
= "Bug in mach3_write_inferior";
1865 struct vm_region_list
*region_element
;
1866 struct vm_region_list
*region_head
= (struct vm_region_list
*) NULL
;
1868 /* Get memory from inferior with page aligned addresses */
1869 ret
= vm_read (inferior_task
,
1874 CHK_GOTO_OUT ("mach3_write_inferior vm_read failed", ret
);
1878 memcpy ((char *) addr
- low_address
+ copied_memory
, myaddr
, length
);
1880 obstack_init (®ion_obstack
);
1882 /* Do writes atomically.
1883 * First check for holes and unwritable memory.
1886 vm_size_t remaining_length
= aligned_length
;
1887 vm_address_t region_address
= low_address
;
1889 struct vm_region_list
*scan
;
1891 while (region_address
< low_address
+ aligned_length
)
1893 vm_prot_t protection
;
1894 vm_prot_t max_protection
;
1895 vm_inherit_t inheritance
;
1897 mach_port_t object_name
;
1899 vm_size_t region_length
= remaining_length
;
1900 vm_address_t old_address
= region_address
;
1902 ret
= vm_region (inferior_task
,
1911 CHK_GOTO_OUT ("vm_region failed", ret
);
1913 /* Check for holes in memory */
1914 if (old_address
!= region_address
)
1916 warning ("No memory at 0x%x. Nothing written",
1923 if (!(max_protection
& VM_PROT_WRITE
))
1925 warning ("Memory at address 0x%x is unwritable. Nothing written",
1932 /* Chain the regions for later use */
1934 (struct vm_region_list
*)
1935 obstack_alloc (®ion_obstack
, sizeof (struct vm_region_list
));
1937 region_element
->protection
= protection
;
1938 region_element
->start
= region_address
;
1939 region_element
->length
= region_length
;
1941 /* Chain the regions along with protections */
1942 region_element
->next
= region_head
;
1943 region_head
= region_element
;
1945 region_address
+= region_length
;
1946 remaining_length
= remaining_length
- region_length
;
1949 /* If things fail after this, we give up.
1950 * Somebody is messing up inferior_task's mappings.
1953 /* Enable writes to the chained vm regions */
1954 for (scan
= region_head
; scan
; scan
= scan
->next
)
1956 boolean_t protection_changed
= FALSE
;
1958 if (!(scan
->protection
& VM_PROT_WRITE
))
1960 ret
= vm_protect (inferior_task
,
1964 scan
->protection
| VM_PROT_WRITE
);
1965 CHK_GOTO_OUT ("vm_protect: enable write failed", ret
);
1969 ret
= vm_write (inferior_task
,
1973 CHK_GOTO_OUT ("vm_write failed", ret
);
1975 /* Set up the original region protections, if they were changed */
1976 for (scan
= region_head
; scan
; scan
= scan
->next
)
1978 boolean_t protection_changed
= FALSE
;
1980 if (!(scan
->protection
& VM_PROT_WRITE
))
1982 ret
= vm_protect (inferior_task
,
1987 CHK_GOTO_OUT ("vm_protect: enable write failed", ret
);
1995 obstack_free (®ion_obstack
, 0);
1997 (void) vm_deallocate (mach_task_self (),
2002 if (ret
!= KERN_SUCCESS
)
2004 warning ("%s %s", errstr
, mach_error_string (ret
));
2011 /* Return 0 on failure, number of bytes handled otherwise. TARGET is
2014 m3_xfer_memory (CORE_ADDR memaddr
, char *myaddr
, int len
, int write
,
2015 struct target_ops
*target
)
2020 result
= mach3_write_inferior (memaddr
, myaddr
, len
);
2022 result
= mach3_read_inferior (memaddr
, myaddr
, len
);
2029 translate_state (int state
)
2033 case TH_STATE_RUNNING
:
2035 case TH_STATE_STOPPED
:
2037 case TH_STATE_WAITING
:
2039 case TH_STATE_UNINTERRUPTIBLE
:
2041 case TH_STATE_HALTED
:
2049 translate_cstate (int state
)
2055 case CPROC_SWITCHING
:
2059 case CPROC_CONDWAIT
:
2061 case CPROC_CONDWAIT
| CPROC_SWITCHING
:
2068 /* type == MACH_MSG_TYPE_COPY_SEND || type == MACH_MSG_TYPE_MAKE_SEND */
2070 mach_port_t
/* no mach_port_name_t found in include files. */
2071 map_inferior_port_name (mach_port_t inferior_name
, mach_msg_type_name_t type
)
2074 mach_msg_type_name_t acquired
;
2077 ret
= mach_port_extract_right (inferior_task
,
2082 CHK ("mach_port_extract_right (map_inferior_port_name)", ret
);
2084 if (acquired
!= MACH_MSG_TYPE_PORT_SEND
)
2085 error ("Incorrect right extracted, (map_inferior_port_name)");
2087 ret
= mach_port_deallocate (mach_task_self (),
2089 CHK ("Deallocating mapped port (map_inferior_port_name)", ret
);
2095 * Naming convention:
2096 * Always return user defined name if found.
2097 * _K == A kernel thread with no matching CPROC
2098 * _C == A cproc with no current cthread
2099 * _t == A cthread with no user defined name
2101 * The digits that follow the _names are the SLOT number of the
2102 * kernel thread if there is such a thing, otherwise just a negation
2103 * of the sequential number of such cprocs.
2109 get_thread_name (gdb_thread_t one_cproc
, int id
)
2112 if (one_cproc
->cthread
== NULL
)
2114 /* cproc not mapped to any cthread */
2115 sprintf (buf
, "_C%d", id
);
2117 else if (!one_cproc
->cthread
->name
)
2119 /* cproc and cthread, but no name */
2120 sprintf (buf
, "_t%d", id
);
2123 return (char *) (one_cproc
->cthread
->name
);
2127 warning ("Inconsistency in thread name id %d", id
);
2129 /* Kernel thread without cproc */
2130 sprintf (buf
, "_K%d", id
);
2137 fetch_thread_info (mach_port_t task
, gdb_thread_t
*mthreads_out
)
2140 thread_array_t th_table
;
2142 gdb_thread_t mthreads
= NULL
;
2145 ret
= task_threads (task
, &th_table
, &th_count
);
2146 if (ret
!= KERN_SUCCESS
)
2148 warning ("Error getting inferior's thread list:%s",
2149 mach_error_string (ret
));
2150 m3_kill_inferior ();
2154 mthreads
= (gdb_thread_t
)
2157 th_count
* sizeof (struct gdb_thread
));
2159 for (index
= 0; index
< th_count
; index
++)
2161 thread_t saved_thread
= MACH_PORT_NULL
;
2164 if (must_suspend_thread
)
2165 setup_thread (th_table
[index
], 1);
2167 if (th_table
[index
] != current_thread
)
2169 saved_thread
= current_thread
;
2171 mid
= switch_to_thread (th_table
[index
]);
2174 mthreads
[index
].name
= th_table
[index
];
2175 mthreads
[index
].cproc
= NULL
; /* map_cprocs_to_kernel_threads() */
2176 mthreads
[index
].in_emulator
= FALSE
;
2177 mthreads
[index
].slotid
= index
;
2179 mthreads
[index
].sp
= read_register (SP_REGNUM
);
2180 mthreads
[index
].fp
= read_register (FP_REGNUM
);
2181 mthreads
[index
].pc
= read_pc ();
2183 if (MACH_PORT_VALID (saved_thread
))
2184 mid
= switch_to_thread (saved_thread
);
2186 if (must_suspend_thread
)
2187 setup_thread (th_table
[index
], 0);
2190 consume_send_rights (th_table
, th_count
);
2191 ret
= vm_deallocate (mach_task_self (), (vm_address_t
) th_table
,
2192 (th_count
* sizeof (mach_port_t
)));
2193 if (ret
!= KERN_SUCCESS
)
2195 warning ("Error trying to deallocate thread list : %s",
2196 mach_error_string (ret
));
2199 *mthreads_out
= mthreads
;
2206 * Current emulator always saves the USP on top of
2207 * emulator stack below struct emul_stack_top stuff.
2210 fetch_usp_from_emulator_stack (CORE_ADDR sp
)
2212 CORE_ADDR stack_pointer
;
2214 sp
= (sp
& ~(EMULATOR_STACK_SIZE
- 1)) +
2215 EMULATOR_STACK_SIZE
- sizeof (struct emul_stack_top
);
2217 if (mach3_read_inferior (sp
,
2219 sizeof (CORE_ADDR
)) != sizeof (CORE_ADDR
))
2221 warning ("Can't read user sp from emulator stack address 0x%x", sp
);
2225 return stack_pointer
;
2230 /* get_emulation_vector() interface was changed after mk67 */
2231 #define EMUL_VECTOR_COUNT 400 /* Value does not matter too much */
2235 /* Check if the emulator exists at task's address space.
2238 have_emulator_p (task_t task
)
2241 #ifndef EMUL_VECTOR_COUNT
2242 vm_offset_t
*emulation_vector
;
2245 vm_offset_t emulation_vector
[EMUL_VECTOR_COUNT
];
2246 int n
= EMUL_VECTOR_COUNT
;
2251 ret
= task_get_emulation_vector (task
,
2253 #ifndef EMUL_VECTOR_COUNT
2259 CHK ("task_get_emulation_vector", ret
);
2260 xx_debug ("%d vectors from %d at 0x%08x\n",
2261 n
, vector_start
, emulation_vector
);
2263 for (i
= 0; i
< n
; i
++)
2265 vm_offset_t entry
= emulation_vector
[i
];
2267 if (EMULATOR_BASE
<= entry
&& entry
<= EMULATOR_END
)
2271 static boolean_t informed
= FALSE
;
2274 warning ("Emulation vector address 0x08%x outside emulator space",
2283 /* Map cprocs to kernel threads and vice versa. */
2286 map_cprocs_to_kernel_threads (gdb_thread_t cprocs
, gdb_thread_t mthreads
,
2291 boolean_t all_mapped
= TRUE
;
2295 for (scan
= cprocs
; scan
; scan
= scan
->next
)
2297 /* Default to: no kernel thread for this cproc */
2298 scan
->reverse_map
= -1;
2300 /* Check if the cproc is found by its stack */
2301 for (index
= 0; index
< thread_count
; index
++)
2304 extract_signed_integer (scan
->raw_cproc
+ CPROC_BASE_OFFSET
,
2307 extract_signed_integer (scan
->raw_cproc
+ CPROC_SIZE_OFFSET
,
2309 if ((mthreads
+ index
)->sp
> stack_base
&&
2310 (mthreads
+ index
)->sp
<= stack_base
+ stack_size
)
2312 (mthreads
+ index
)->cproc
= scan
;
2313 scan
->reverse_map
= index
;
2317 all_mapped
&= (scan
->reverse_map
!= -1);
2320 /* Check for threads that are currently in the emulator.
2321 * If so, they have a different stack, and the still unmapped
2322 * cprocs may well get mapped to these threads.
2325 * - cproc stack does not match any kernel thread stack pointer
2326 * - there is at least one extra kernel thread
2327 * that has no cproc mapped above.
2328 * - some kernel thread stack pointer points to emulator space
2329 * then we find the user stack pointer saved in the emulator
2330 * stack, and try to map that to the cprocs.
2332 * Also set in_emulator for kernel threads.
2335 if (emulator_present
)
2337 for (index
= 0; index
< thread_count
; index
++)
2342 gdb_thread_t mthread
= (mthreads
+ index
);
2343 emul_sp
= mthread
->sp
;
2345 if (mthread
->cproc
== NULL
&&
2346 EMULATOR_BASE
<= emul_sp
&& emul_sp
<= EMULATOR_END
)
2348 mthread
->in_emulator
= emulator_present
;
2350 if (!all_mapped
&& cprocs
)
2352 usp
= fetch_usp_from_emulator_stack (emul_sp
);
2354 /* @@ Could be more accurate */
2356 error ("Zero stack pointer read from emulator?");
2358 /* Try to match this stack pointer to the cprocs that
2359 * don't yet have a kernel thread.
2361 for (scan
= cprocs
; scan
; scan
= scan
->next
)
2364 /* Check is this unmapped CPROC stack contains
2365 * the user stack pointer saved in the
2368 if (scan
->reverse_map
== -1)
2371 extract_signed_integer
2372 (scan
->raw_cproc
+ CPROC_BASE_OFFSET
,
2375 extract_signed_integer
2376 (scan
->raw_cproc
+ CPROC_SIZE_OFFSET
,
2378 if (usp
> stack_base
&&
2379 usp
<= stack_base
+ stack_size
)
2381 mthread
->cproc
= scan
;
2382 scan
->reverse_map
= index
;
2394 * Format of the thread_list command
2396 * slot mid sel name emul ks susp cstate wired address
2398 #define TL_FORMAT "%-2.2s %5d%c %-10.10s %1.1s%s%-5.5s %-2.2s %-5.5s "
2400 #define TL_HEADER "\n@ MID Name KState CState Where\n"
2403 print_tl_address (struct ui_file
*stream
, CORE_ADDR pc
)
2405 if (!lookup_minimal_symbol_by_pc (pc
))
2406 fprintf_filtered (stream
, local_hex_format (), pc
);
2409 extern int addressprint
;
2410 extern int asm_demangle
;
2412 int store
= addressprint
;
2414 print_address_symbolic (pc
, stream
, asm_demangle
, "");
2415 addressprint
= store
;
2419 /* For thread names, but also for gdb_message_port external name */
2420 #define MAX_NAME_LEN 50
2422 /* Returns the address of variable NAME or 0 if not found */
2424 lookup_address_of_variable (char *name
)
2427 CORE_ADDR symaddr
= 0;
2428 struct minimal_symbol
*msymbol
;
2430 sym
= lookup_symbol (name
,
2431 (struct block
*) NULL
,
2434 (struct symtab
**) NULL
);
2437 symaddr
= SYMBOL_VALUE (sym
);
2441 msymbol
= lookup_minimal_symbol (name
, NULL
, NULL
);
2443 if (msymbol
&& msymbol
->type
== mst_data
)
2444 symaddr
= SYMBOL_VALUE_ADDRESS (msymbol
);
2453 gdb_thread_t cproc_head
;
2454 gdb_thread_t cproc_copy
;
2455 CORE_ADDR their_cprocs
;
2461 buf
= alloca (TARGET_PTR_BIT
/ HOST_CHAR_BIT
);
2462 symaddr
= lookup_address_of_variable ("cproc_list");
2466 /* cproc_list is not in a file compiled with debugging
2467 symbols, but don't give up yet */
2469 symaddr
= lookup_address_of_variable ("cprocs");
2473 static int informed
= 0;
2477 warning ("Your program is loaded with an old threads library.");
2478 warning ("GDB does not know the old form of threads");
2479 warning ("so things may not work.");
2484 /* Stripped or no -lthreads loaded or "cproc_list" is in wrong segment. */
2488 /* Get the address of the first cproc in the task */
2489 if (!mach3_read_inferior (symaddr
,
2491 TARGET_PTR_BIT
/ HOST_CHAR_BIT
))
2492 error ("Can't read cproc master list at address (0x%x).", symaddr
);
2493 their_cprocs
= extract_address (buf
, TARGET_PTR_BIT
/ HOST_CHAR_BIT
);
2495 /* Scan the CPROCs in the task.
2496 CPROCs are chained with LIST field, not NEXT field, which
2497 chains mutexes, condition variables and queues */
2501 while (their_cprocs
!= (CORE_ADDR
) 0)
2503 CORE_ADDR cproc_copy_incarnation
;
2504 cproc_copy
= (gdb_thread_t
) obstack_alloc (cproc_obstack
,
2505 sizeof (struct gdb_thread
));
2507 if (!mach3_read_inferior (their_cprocs
,
2508 &cproc_copy
->raw_cproc
[0],
2510 error ("Can't read next cproc at 0x%x.", their_cprocs
);
2513 extract_address (cproc_copy
->raw_cproc
+ CPROC_LIST_OFFSET
,
2515 cproc_copy_incarnation
=
2516 extract_address (cproc_copy
->raw_cproc
+ CPROC_INCARNATION_OFFSET
,
2517 CPROC_INCARNATION_SIZE
);
2519 if (cproc_copy_incarnation
== (CORE_ADDR
) 0)
2520 cproc_copy
->cthread
= NULL
;
2523 /* This CPROC has an attached CTHREAD. Get its name */
2524 cthread
= (cthread_t
) obstack_alloc (cproc_obstack
,
2525 sizeof (struct cthread
));
2527 if (!mach3_read_inferior (cproc_copy_incarnation
,
2529 sizeof (struct cthread
)))
2530 error ("Can't read next thread at 0x%x.",
2531 cproc_copy_incarnation
);
2533 cproc_copy
->cthread
= cthread
;
2537 name
= (char *) obstack_alloc (cproc_obstack
, MAX_NAME_LEN
);
2539 if (!mach3_read_inferior (cthread
->name
, name
, MAX_NAME_LEN
))
2540 error ("Can't read next thread's name at 0x%x.", cthread
->name
);
2542 cthread
->name
= name
;
2546 /* insert in front */
2547 cproc_copy
->next
= cproc_head
;
2548 cproc_head
= cproc_copy
;
2553 #ifndef FETCH_CPROC_STATE
2555 * Check if your machine does not grok the way this routine
2556 * fetches the FP,PC and SP of a cproc that is not
2557 * currently attached to any kernel thread (e.g. its cproc.context
2558 * field points to the place in stack where the context
2561 * If it doesn't, define your own routine.
2563 #define FETCH_CPROC_STATE(mth) mach3_cproc_state (mth)
2566 mach3_cproc_state (gdb_thread_t mthread
)
2570 if (!mthread
|| !mthread
->cproc
)
2573 context
= extract_signed_integer
2574 (mthread
->cproc
->raw_cproc
+ CPROC_CONTEXT_OFFSET
,
2575 CPROC_CONTEXT_SIZE
);
2579 mthread
->sp
= context
+ MACHINE_CPROC_SP_OFFSET
;
2581 if (mach3_read_inferior (context
+ MACHINE_CPROC_PC_OFFSET
,
2583 sizeof (CORE_ADDR
)) != sizeof (CORE_ADDR
))
2585 warning ("Can't read cproc pc from inferior");
2589 if (mach3_read_inferior (context
+ MACHINE_CPROC_FP_OFFSET
,
2591 sizeof (CORE_ADDR
)) != sizeof (CORE_ADDR
))
2593 warning ("Can't read cproc fp from inferior");
2599 #endif /* FETCH_CPROC_STATE */
2603 thread_list_command (void)
2605 thread_basic_info_data_t ths
;
2607 gdb_thread_t cprocs
;
2615 mach_port_t mid_or_port
;
2616 gdb_thread_t their_threads
;
2617 gdb_thread_t kthread
;
2621 char *fmt
= "There are %d kernel threads in task %d.\n";
2623 int tmid
= map_port_name_to_mid (inferior_task
, MACH_TYPE_TASK
);
2625 MACH_ERROR_NO_INFERIOR
;
2627 thread_count
= fetch_thread_info (inferior_task
,
2629 if (thread_count
== -1)
2632 if (thread_count
== 1)
2633 fmt
= "There is %d kernel thread in task %d.\n";
2635 printf_filtered (fmt
, thread_count
, tmid
);
2637 puts_filtered (TL_HEADER
);
2639 cprocs
= get_cprocs ();
2641 map_cprocs_to_kernel_threads (cprocs
, their_threads
, thread_count
);
2643 for (scan
= cprocs
; scan
; scan
= scan
->next
)
2649 extract_signed_integer
2650 (scan
->raw_cproc
+ CPROC_STATE_OFFSET
, CPROC_STATE_SIZE
);
2654 /* a wired cproc? */
2655 wired
= (extract_address (scan
->raw_cproc
+ CPROC_WIRED_OFFSET
,
2659 if (scan
->reverse_map
!= -1)
2660 kthread
= (their_threads
+ scan
->reverse_map
);
2666 /* These cprocs have a kernel thread */
2668 mid
= map_port_name_to_mid (kthread
->name
, MACH_TYPE_THREAD
);
2670 infoCnt
= THREAD_BASIC_INFO_COUNT
;
2672 ret
= thread_info (kthread
->name
,
2674 (thread_info_t
) & ths
,
2677 if (ret
!= KERN_SUCCESS
)
2679 warning ("Unable to get basic info on thread %d : %s",
2681 mach_error_string (ret
));
2685 /* Who is the first to have more than 100 threads */
2686 sprintf (slot
, "%d", kthread
->slotid
% 100);
2688 if (kthread
->name
== current_thread
)
2691 if (ths
.suspend_count
)
2692 sprintf (buf
, "%d", ths
.suspend_count
);
2697 if (ths
.flags
& TH_FLAGS_SWAPPED
)
2701 if (ths
.flags
& TH_FLAGS_IDLE
)
2704 printf_filtered (TL_FORMAT
,
2708 get_thread_name (scan
, kthread
->slotid
),
2709 kthread
->in_emulator
? "E" : "",
2710 translate_state (ths
.run_state
),
2712 translate_cstate (cproc_state
),
2714 print_tl_address (gdb_stdout
, kthread
->pc
);
2718 /* These cprocs don't have a kernel thread.
2719 * find out the calling frame with
2720 * FETCH_CPROC_STATE.
2723 struct gdb_thread state
;
2726 /* jtv -> emcmanus: why do you want this here? */
2727 if (scan
->incarnation
== NULL
)
2728 continue; /* EMcM */
2731 printf_filtered (TL_FORMAT
,
2733 -neworder
, /* Pseudo MID */
2735 get_thread_name (scan
, -neworder
),
2737 "-", /* kernel state */
2739 translate_cstate (cproc_state
),
2743 if (FETCH_CPROC_STATE (&state
) == -1)
2744 puts_filtered ("???");
2746 print_tl_address (gdb_stdout
, state
.pc
);
2750 puts_filtered ("\n");
2753 /* Scan for kernel threads without cprocs */
2754 for (index
= 0; index
< thread_count
; index
++)
2756 if (!their_threads
[index
].cproc
)
2763 mach_port_t name
= their_threads
[index
].name
;
2765 mid
= map_port_name_to_mid (name
, MACH_TYPE_THREAD
);
2767 infoCnt
= THREAD_BASIC_INFO_COUNT
;
2769 ret
= thread_info (name
,
2771 (thread_info_t
) & ths
,
2774 if (ret
!= KERN_SUCCESS
)
2776 warning ("Unable to get basic info on thread %d : %s",
2778 mach_error_string (ret
));
2782 sprintf (slot
, "%d", index
% 100);
2784 if (name
== current_thread
)
2789 if (ths
.suspend_count
)
2790 sprintf (buf
, "%d", ths
.suspend_count
);
2795 if (ths
.flags
& TH_FLAGS_SWAPPED
)
2799 if (ths
.flags
& TH_FLAGS_IDLE
)
2802 printf_filtered (TL_FORMAT
,
2806 get_thread_name (NULL
, index
),
2807 their_threads
[index
].in_emulator
? "E" : "",
2808 translate_state (ths
.run_state
),
2810 "", /* No cproc state */
2811 ""); /* Can't be wired */
2812 print_tl_address (gdb_stdout
, their_threads
[index
].pc
);
2813 puts_filtered ("\n");
2817 obstack_free (cproc_obstack
, 0);
2818 obstack_init (cproc_obstack
);
2822 thread_select_command (char *args
, int from_tty
)
2825 thread_array_t thread_list
;
2830 MACH_ERROR_NO_INFERIOR
;
2833 error_no_arg ("MID or @SLOTNUMBER to specify a thread to select");
2835 while (*args
== ' ' || *args
== '\t')
2847 if (!is_slot
|| *args
!= '0') /* Rudimentary checks */
2848 error ("You must select threads by MID or @SLOTNUMBER");
2850 if (select_thread (inferior_task
, mid
, is_slot
? 2 : 1) != KERN_SUCCESS
)
2854 printf_filtered ("Thread %d selected\n",
2855 is_slot
? map_port_name_to_mid (current_thread
,
2856 MACH_TYPE_THREAD
) : mid
);
2859 thread_trace (mach_port_t thread
, boolean_t set
)
2861 int flavor
= TRACE_FLAVOR
;
2862 unsigned int stateCnt
= TRACE_FLAVOR_SIZE
;
2864 thread_state_data_t state
;
2866 if (!MACH_PORT_VALID (thread
))
2868 warning ("thread_trace: invalid thread");
2872 if (must_suspend_thread
)
2873 setup_thread (thread
, 1);
2875 ret
= thread_get_state (thread
, flavor
, state
, &stateCnt
);
2876 CHK ("thread_trace: error reading thread state", ret
);
2880 TRACE_SET (thread
, state
);
2884 if (!TRACE_CLEAR (thread
, state
))
2886 if (must_suspend_thread
)
2887 setup_thread (thread
, 0);
2892 ret
= thread_set_state (thread
, flavor
, state
, stateCnt
);
2893 CHK ("thread_trace: error writing thread state", ret
);
2894 if (must_suspend_thread
)
2895 setup_thread (thread
, 0);
2898 #ifdef FLUSH_INFERIOR_CACHE
2900 /* When over-writing code on some machines the I-Cache must be flushed
2901 explicitly, because it is not kept coherent by the lazy hardware.
2902 This definitely includes breakpoints, for instance, or else we
2903 end up looping in mysterious Bpt traps */
2905 flush_inferior_icache (CORE_ADDR pc
, int amount
)
2907 vm_machine_attribute_val_t flush
= MATTR_VAL_ICACHE_FLUSH
;
2910 ret
= vm_machine_attribute (inferior_task
,
2915 if (ret
!= KERN_SUCCESS
)
2916 warning ("Error flushing inferior's cache : %s",
2917 mach_error_string (ret
));
2919 #endif /* FLUSH_INFERIOR_CACHE */
2923 suspend_all_threads (int from_tty
)
2926 thread_array_t thread_list
;
2927 int thread_count
, index
;
2929 thread_basic_info_data_t th_info
;
2932 ret
= task_threads (inferior_task
, &thread_list
, &thread_count
);
2933 if (ret
!= KERN_SUCCESS
)
2935 warning ("Could not suspend inferior threads.");
2936 m3_kill_inferior ();
2937 return_to_top_level (RETURN_ERROR
);
2940 for (index
= 0; index
< thread_count
; index
++)
2944 mid
= map_port_name_to_mid (thread_list
[index
],
2947 ret
= thread_suspend (thread_list
[index
]);
2949 if (ret
!= KERN_SUCCESS
)
2950 warning ("Error trying to suspend thread %d : %s",
2951 mid
, mach_error_string (ret
));
2955 infoCnt
= THREAD_BASIC_INFO_COUNT
;
2956 ret
= thread_info (thread_list
[index
],
2958 (thread_info_t
) & th_info
,
2960 CHK ("suspend can't get thread info", ret
);
2962 warning ("Thread %d suspend count is %d",
2963 mid
, th_info
.suspend_count
);
2967 consume_send_rights (thread_list
, thread_count
);
2968 ret
= vm_deallocate (mach_task_self (),
2969 (vm_address_t
) thread_list
,
2970 (thread_count
* sizeof (int)));
2971 CHK ("Error trying to deallocate thread list", ret
);
2975 thread_suspend_command (char *args
, int from_tty
)
2979 mach_port_t saved_thread
;
2981 thread_basic_info_data_t th_info
;
2983 MACH_ERROR_NO_INFERIOR
;
2985 if (!strcasecmp (args
, "all"))
2987 suspend_all_threads (from_tty
);
2991 saved_thread
= current_thread
;
2993 mid
= parse_thread_id (args
, 0, 0);
2996 error ("You can suspend only existing kernel threads with MID or @SLOTNUMBER");
2999 mid
= map_port_name_to_mid (current_thread
, MACH_TYPE_THREAD
);
3000 else if (select_thread (inferior_task
, mid
, 0) != KERN_SUCCESS
)
3003 current_thread
= saved_thread
;
3004 error ("Could not select thread %d", mid
);
3007 ret
= thread_suspend (current_thread
);
3008 if (ret
!= KERN_SUCCESS
)
3009 warning ("thread_suspend failed : %s",
3010 mach_error_string (ret
));
3012 infoCnt
= THREAD_BASIC_INFO_COUNT
;
3013 ret
= thread_info (current_thread
,
3015 (thread_info_t
) & th_info
,
3017 CHK ("suspend can't get thread info", ret
);
3019 warning ("Thread %d suspend count is %d", mid
, th_info
.suspend_count
);
3021 current_thread
= saved_thread
;
3024 resume_all_threads (int from_tty
)
3027 thread_array_t thread_list
;
3028 int thread_count
, index
;
3031 thread_basic_info_data_t th_info
;
3033 ret
= task_threads (inferior_task
, &thread_list
, &thread_count
);
3034 if (ret
!= KERN_SUCCESS
)
3036 m3_kill_inferior ();
3037 error ("task_threads", mach_error_string (ret
));
3040 for (index
= 0; index
< thread_count
; index
++)
3042 infoCnt
= THREAD_BASIC_INFO_COUNT
;
3043 ret
= thread_info (thread_list
[index
],
3045 (thread_info_t
) & th_info
,
3047 CHK ("resume_all can't get thread info", ret
);
3049 mid
= map_port_name_to_mid (thread_list
[index
],
3052 if (!th_info
.suspend_count
)
3054 if (mid
!= -1 && from_tty
)
3055 warning ("Thread %d is not suspended", mid
);
3059 ret
= thread_resume (thread_list
[index
]);
3061 if (ret
!= KERN_SUCCESS
)
3062 warning ("Error trying to resume thread %d : %s",
3063 mid
, mach_error_string (ret
));
3064 else if (mid
!= -1 && from_tty
)
3065 warning ("Thread %d suspend count is %d",
3066 mid
, --th_info
.suspend_count
);
3069 consume_send_rights (thread_list
, thread_count
);
3070 ret
= vm_deallocate (mach_task_self (),
3071 (vm_address_t
) thread_list
,
3072 (thread_count
* sizeof (int)));
3073 CHK ("Error trying to deallocate thread list", ret
);
3077 thread_resume_command (char *args
, int from_tty
)
3080 mach_port_t saved_thread
;
3082 thread_basic_info_data_t th_info
;
3083 int infoCnt
= THREAD_BASIC_INFO_COUNT
;
3085 MACH_ERROR_NO_INFERIOR
;
3087 if (!strcasecmp (args
, "all"))
3089 resume_all_threads (from_tty
);
3093 saved_thread
= current_thread
;
3095 mid
= parse_thread_id (args
, 0, 0);
3098 error ("You can resume only existing kernel threads with MID or @SLOTNUMBER");
3101 mid
= map_port_name_to_mid (current_thread
, MACH_TYPE_THREAD
);
3102 else if (select_thread (inferior_task
, mid
, 0) != KERN_SUCCESS
)
3105 current_thread
= saved_thread
;
3106 return_to_top_level (RETURN_ERROR
);
3109 ret
= thread_info (current_thread
,
3111 (thread_info_t
) & th_info
,
3113 CHK ("resume can't get thread info", ret
);
3115 if (!th_info
.suspend_count
)
3117 warning ("Thread %d is not suspended", mid
);
3121 ret
= thread_resume (current_thread
);
3122 if (ret
!= KERN_SUCCESS
)
3123 warning ("thread_resume failed : %s",
3124 mach_error_string (ret
));
3127 th_info
.suspend_count
--;
3128 warning ("Thread %d suspend count is %d", mid
, th_info
.suspend_count
);
3132 current_thread
= saved_thread
;
3136 thread_kill_command (char *args
, int from_tty
)
3141 thread_array_t thread_table
;
3143 mach_port_t thread_to_kill
= MACH_PORT_NULL
;
3146 MACH_ERROR_NO_INFERIOR
;
3149 error_no_arg ("thread mid to kill from the inferior task");
3151 mid
= parse_thread_id (args
, 0, 0);
3154 error ("You can kill only existing kernel threads with MID or @SLOTNUMBER");
3158 ret
= machid_mach_port (mid_server
, mid_auth
, mid
, &thread_to_kill
);
3159 CHK ("thread_kill_command: machid_mach_port map failed", ret
);
3162 mid
= map_port_name_to_mid (current_thread
, MACH_TYPE_THREAD
);
3164 /* Don't allow gdb to kill *any* thread in the system. Use mkill program for that */
3165 ret
= task_threads (inferior_task
, &thread_table
, &thread_count
);
3166 CHK ("Error getting inferior's thread list", ret
);
3168 if (thread_to_kill
== current_thread
)
3170 ret
= thread_terminate (thread_to_kill
);
3171 CHK ("Thread could not be terminated", ret
);
3173 if (select_thread (inferior_task
, 0, 1) != KERN_SUCCESS
)
3174 warning ("Last thread was killed, use \"kill\" command to kill task");
3177 for (index
= 0; index
< thread_count
; index
++)
3178 if (thread_table
[index
] == thread_to_kill
)
3180 ret
= thread_terminate (thread_to_kill
);
3181 CHK ("Thread could not be terminated", ret
);
3184 if (thread_count
> 1)
3185 consume_send_rights (thread_table
, thread_count
);
3187 ret
= vm_deallocate (mach_task_self (), (vm_address_t
) thread_table
,
3188 (thread_count
* sizeof (mach_port_t
)));
3189 CHK ("Error trying to deallocate thread list", ret
);
3191 warning ("Thread %d killed", mid
);
3195 /* Task specific commands; add more if you like */
3198 task_resume_command (char *args
, int from_tty
)
3201 task_basic_info_data_t ta_info
;
3202 int infoCnt
= TASK_BASIC_INFO_COUNT
;
3203 int mid
= map_port_name_to_mid (inferior_task
, MACH_TYPE_TASK
);
3205 MACH_ERROR_NO_INFERIOR
;
3207 /* Would be trivial to change, but is it desirable? */
3209 error ("Currently gdb can resume only it's inferior task");
3211 ret
= task_info (inferior_task
,
3213 (task_info_t
) & ta_info
,
3215 CHK ("task_resume_command: task_info failed", ret
);
3217 if (ta_info
.suspend_count
== 0)
3218 error ("Inferior task %d is not suspended", mid
);
3219 else if (ta_info
.suspend_count
== 1 &&
3221 !query ("Suspend count is now 1. Do you know what you are doing? "))
3222 error ("Task not resumed");
3224 ret
= task_resume (inferior_task
);
3225 CHK ("task_resume_command: task_resume", ret
);
3227 if (ta_info
.suspend_count
== 1)
3229 warning ("Inferior task %d is no longer suspended", mid
);
3230 must_suspend_thread
= 1;
3231 /* @@ This is not complete: Registers change all the time when not
3233 registers_changed ();
3236 warning ("Inferior task %d suspend count is now %d",
3237 mid
, ta_info
.suspend_count
- 1);
3242 task_suspend_command (char *args
, int from_tty
)
3245 task_basic_info_data_t ta_info
;
3246 int infoCnt
= TASK_BASIC_INFO_COUNT
;
3247 int mid
= map_port_name_to_mid (inferior_task
, MACH_TYPE_TASK
);
3249 MACH_ERROR_NO_INFERIOR
;
3251 /* Would be trivial to change, but is it desirable? */
3253 error ("Currently gdb can suspend only it's inferior task");
3255 ret
= task_suspend (inferior_task
);
3256 CHK ("task_suspend_command: task_suspend", ret
);
3258 must_suspend_thread
= 0;
3260 ret
= task_info (inferior_task
,
3262 (task_info_t
) & ta_info
,
3264 CHK ("task_suspend_command: task_info failed", ret
);
3266 warning ("Inferior task %d suspend count is now %d",
3267 mid
, ta_info
.suspend_count
);
3271 get_size (int bytes
)
3273 static char size
[30];
3274 int zz
= bytes
/ 1024;
3277 sprintf (size
, "%-2.1f M", ((float) bytes
) / (1024.0 * 1024.0));
3279 sprintf (size
, "%d K", zz
);
3284 /* Does this require the target task to be suspended?? I don't think so. */
3286 task_info_command (char *args
, int from_tty
)
3291 task_basic_info_data_t ta_info
;
3292 int infoCnt
= TASK_BASIC_INFO_COUNT
;
3293 int page_size
= round_page (1);
3294 int thread_count
= 0;
3296 if (MACH_PORT_VALID (inferior_task
))
3297 mid
= map_port_name_to_mid (inferior_task
,
3300 task
= inferior_task
;
3304 int tmid
= atoi (args
);
3307 error ("Invalid mid %d for task info", tmid
);
3312 ret
= machid_mach_port (mid_server
, mid_auth
, tmid
, &task
);
3313 CHK ("task_info_command: machid_mach_port map failed", ret
);
3318 error ("You have to give the task MID as an argument");
3320 ret
= task_info (task
,
3322 (task_info_t
) & ta_info
,
3324 CHK ("task_info_command: task_info failed", ret
);
3326 printf_filtered ("\nTask info for task %d:\n\n", mid
);
3327 printf_filtered (" Suspend count : %d\n", ta_info
.suspend_count
);
3328 printf_filtered (" Base priority : %d\n", ta_info
.base_priority
);
3329 printf_filtered (" Virtual size : %s\n", get_size (ta_info
.virtual_size
));
3330 printf_filtered (" Resident size : %s\n", get_size (ta_info
.resident_size
));
3333 thread_array_t thread_list
;
3335 ret
= task_threads (task
, &thread_list
, &thread_count
);
3336 CHK ("task_info_command: task_threads", ret
);
3338 printf_filtered (" Thread count : %d\n", thread_count
);
3340 consume_send_rights (thread_list
, thread_count
);
3341 ret
= vm_deallocate (mach_task_self (),
3342 (vm_address_t
) thread_list
,
3343 (thread_count
* sizeof (int)));
3344 CHK ("Error trying to deallocate thread list", ret
);
3346 if (have_emulator_p (task
))
3347 printf_filtered (" Emulator at : 0x%x..0x%x\n",
3348 EMULATOR_BASE
, EMULATOR_END
);
3350 printf_filtered (" No emulator.\n");
3352 if (thread_count
&& task
== inferior_task
)
3353 printf_filtered ("\nUse the \"thread list\" command to see the threads\n");
3356 /* You may either FORWARD the exception to the inferior, or KEEP
3357 * it and return to GDB command level.
3359 * exception mid [ forward | keep ]
3363 exception_command (char *args
, int from_tty
)
3370 error_no_arg ("exception number action");
3372 while (*scan
== ' ' || *scan
== '\t')
3375 if ('0' <= *scan
&& *scan
<= '9')
3376 while ('0' <= *scan
&& *scan
<= '9')
3379 error ("exception number action");
3381 exception
= atoi (args
);
3382 if (exception
<= 0 || exception
> MAX_EXCEPTION
)
3383 error ("Allowed exception numbers are in range 1..%d",
3386 if (*scan
!= ' ' && *scan
!= '\t')
3387 error ("exception number must be followed by a space");
3389 while (*scan
== ' ' || *scan
== '\t')
3401 error ("exception number action");
3403 if (!strncasecmp (args
, "forward", len
))
3404 exception_map
[exception
].forward
= TRUE
;
3405 else if (!strncasecmp (args
, "keep", len
))
3406 exception_map
[exception
].forward
= FALSE
;
3408 error ("exception action is either \"keep\" or \"forward\"");
3412 print_exception_info (int exception
)
3414 boolean_t forward
= exception_map
[exception
].forward
;
3416 printf_filtered ("%s\t(%d): ", exception_map
[exception
].name
,
3419 if (exception_map
[exception
].sigmap
!= SIG_UNKNOWN
)
3420 printf_filtered ("keep and handle as signal %d\n",
3421 exception_map
[exception
].sigmap
);
3423 printf_filtered ("keep and handle as unknown signal %d\n",
3424 exception_map
[exception
].sigmap
);
3426 printf_filtered ("forward exception to inferior\n");
3430 exception_info (char *args
, int from_tty
)
3435 for (exception
= 1; exception
<= MAX_EXCEPTION
; exception
++)
3436 print_exception_info (exception
);
3439 exception
= atoi (args
);
3441 if (exception
<= 0 || exception
> MAX_EXCEPTION
)
3442 error ("Invalid exception number, values from 1 to %d allowed",
3444 print_exception_info (exception
);
3448 /* Check for actions for mach exceptions.
3450 mach3_exception_actions (WAITTYPE
*w
, boolean_t force_print_only
, char *who
)
3452 boolean_t force_print
= FALSE
;
3455 if (force_print_only
||
3456 exception_map
[stop_exception
].sigmap
== SIG_UNKNOWN
)
3459 WSETSTOP (*w
, exception_map
[stop_exception
].sigmap
);
3461 if (exception_map
[stop_exception
].print
|| force_print
)
3463 target_terminal_ours ();
3465 printf_filtered ("\n%s received %s exception : ",
3467 exception_map
[stop_exception
].name
);
3471 switch (stop_exception
)
3473 case EXC_BAD_ACCESS
:
3474 printf_filtered ("referencing address 0x%x : %s\n",
3476 mach_error_string (stop_code
));
3478 case EXC_BAD_INSTRUCTION
:
3480 ("illegal or undefined instruction. code %d subcode %d\n",
3481 stop_code
, stop_subcode
);
3483 case EXC_ARITHMETIC
:
3484 printf_filtered ("code %d\n", stop_code
);
3487 printf_filtered ("code %d subcode %d\n", stop_code
, stop_subcode
);
3490 printf_filtered ("%s specific, code 0x%x\n",
3491 stop_code
< 0xffff ? "hardware" : "os emulation",
3494 case EXC_BREAKPOINT
:
3495 printf_filtered ("type %d (machine dependent)\n",
3499 internal_error (__FILE__
, __LINE__
,
3500 "Unknown exception");
3505 setup_notify_port (int create_new
)
3509 if (MACH_PORT_VALID (our_notify_port
))
3511 ret
= mach_port_destroy (mach_task_self (), our_notify_port
);
3512 CHK ("Could not destroy our_notify_port", ret
);
3515 our_notify_port
= MACH_PORT_NULL
;
3516 notify_chain
= (port_chain_t
) NULL
;
3517 port_chain_destroy (port_chain_obstack
);
3521 ret
= mach_port_allocate (mach_task_self (),
3522 MACH_PORT_RIGHT_RECEIVE
,
3524 if (ret
!= KERN_SUCCESS
)
3525 internal_error (__FILE__
, __LINE__
,
3526 "Creating notify port %s", mach_error_string (ret
));
3528 ret
= mach_port_move_member (mach_task_self (),
3530 inferior_wait_port_set
);
3531 if (ret
!= KERN_SUCCESS
)
3532 internal_error (__FILE__
, __LINE__
,
3533 "initial move member %s", mach_error_string (ret
));
3538 * Register our message port to the net name server
3540 * Currently used only by the external stop-gdb program
3541 * since ^C does not work if you would like to enter
3542 * gdb command level while debugging your program.
3544 * NOTE: If the message port is sometimes used for other
3545 * purposes also, the NAME must not be a guessable one.
3546 * Then, there should be a way to change it.
3549 char registered_name
[MAX_NAME_LEN
];
3552 message_port_info (char *args
, int from_tty
)
3554 if (registered_name
[0])
3555 printf_filtered ("gdb's message port name: '%s'\n",
3558 printf_filtered ("gdb's message port is not currently registered\n");
3562 gdb_register_port (char *name
, mach_port_t port
)
3565 static int already_signed
= 0;
3568 if (!MACH_PORT_VALID (port
) || !name
|| !*name
)
3570 warning ("Invalid registration request");
3574 if (!already_signed
)
3576 ret
= mach_port_insert_right (mach_task_self (),
3579 MACH_MSG_TYPE_MAKE_SEND
);
3580 CHK ("Failed to create a signature to our_message_port", ret
);
3583 else if (already_signed
> 1)
3585 ret
= netname_check_out (name_server_port
,
3588 CHK ("Failed to check out gdb's message port", ret
);
3589 registered_name
[0] = '\000';
3593 ret
= netname_check_in (name_server_port
, /* Name server port */
3594 name
, /* Name of service */
3595 our_message_port
, /* Signature */
3596 port
); /* Creates a new send right */
3597 CHK ("Failed to check in the port", ret
);
3600 while (len
< MAX_NAME_LEN
&& *(name
+ len
))
3602 registered_name
[len
] = *(name
+ len
);
3605 registered_name
[len
] = '\000';
3609 struct cmd_list_element
*cmd_thread_list
;
3610 struct cmd_list_element
*cmd_task_list
;
3614 thread_command (char *arg
, int from_tty
)
3616 printf_unfiltered ("\"thread\" must be followed by the name of a thread command.\n");
3617 help_list (cmd_thread_list
, "thread ", -1, gdb_stdout
);
3622 task_command (char *arg
, int from_tty
)
3624 printf_unfiltered ("\"task\" must be followed by the name of a task command.\n");
3625 help_list (cmd_task_list
, "task ", -1, gdb_stdout
);
3628 add_mach_specific_commands (void)
3630 /* Thread handling commands */
3632 /* FIXME: Move our thread support into the generic thread.c stuff so we
3633 can share that code. */
3634 add_prefix_cmd ("mthread", class_stack
, thread_command
,
3635 "Generic command for handling Mach threads in the debugged task.",
3636 &cmd_thread_list
, "thread ", 0, &cmdlist
);
3638 add_com_alias ("th", "mthread", class_stack
, 1);
3640 add_cmd ("select", class_stack
, thread_select_command
,
3641 "Select and print MID of the selected thread",
3643 add_cmd ("list", class_stack
, thread_list_command
,
3644 "List info of task's threads. Selected thread is marked with '*'",
3646 add_cmd ("suspend", class_run
, thread_suspend_command
,
3647 "Suspend one or all of the threads in the selected task.",
3649 add_cmd ("resume", class_run
, thread_resume_command
,
3650 "Resume one or all of the threads in the selected task.",
3652 add_cmd ("kill", class_run
, thread_kill_command
,
3653 "Kill the specified thread MID from inferior task.",
3656 /* The rest of this support (condition_thread) was not merged. It probably
3657 should not be merged in this form, but instead added to the generic GDB
3659 add_cmd ("break", class_breakpoint
, condition_thread
,
3660 "Breakpoint N will only be effective for thread MID or @SLOT\n\
3661 If MID/@SLOT is omitted allow all threads to break at breakpoint",
3664 /* Thread command shorthands (for backward compatibility) */
3665 add_alias_cmd ("ts", "mthread select", 0, 0, &cmdlist
);
3666 add_alias_cmd ("tl", "mthread list", 0, 0, &cmdlist
);
3668 /* task handling commands */
3670 add_prefix_cmd ("task", class_stack
, task_command
,
3671 "Generic command for handling debugged task.",
3672 &cmd_task_list
, "task ", 0, &cmdlist
);
3674 add_com_alias ("ta", "task", class_stack
, 1);
3676 add_cmd ("suspend", class_run
, task_suspend_command
,
3677 "Suspend the inferior task.",
3679 add_cmd ("resume", class_run
, task_resume_command
,
3680 "Resume the inferior task.",
3682 add_cmd ("info", no_class
, task_info_command
,
3683 "Print information about the specified task.",
3686 /* Print my message port name */
3688 add_info ("message-port", message_port_info
,
3689 "Returns the name of gdb's message port in the netnameserver");
3691 /* Exception commands */
3693 add_info ("exceptions", exception_info
,
3694 "What debugger does when program gets various exceptions.\n\
3695 Specify an exception number as argument to print info on that\n\
3698 add_com ("exception", class_run
, exception_command
,
3699 "Specify how to handle an exception.\n\
3700 Args are exception number followed by \"forward\" or \"keep\".\n\
3701 `Forward' means forward the exception to the program's normal exception\n\
3703 `Keep' means reenter debugger if this exception happens, and GDB maps\n\
3704 the exception to some signal (see info exception)\n\
3705 Normally \"keep\" is used to return to GDB on exception.");
3709 do_mach_notify_dead_name (mach_port_t notify
, mach_port_t name
)
3711 kern_return_t kr
= KERN_SUCCESS
;
3713 /* Find the thing that notified */
3714 port_chain_t element
= port_chain_member (notify_chain
, name
);
3716 /* Take name of from unreceived dead name notification list */
3717 notify_chain
= port_chain_delete (notify_chain
, name
);
3720 error ("Received a dead name notify from unchained port (0x%x)", name
);
3722 switch (element
->type
)
3725 case MACH_TYPE_THREAD
:
3726 target_terminal_ours_for_output ();
3727 if (name
== current_thread
)
3729 printf_filtered ("\nCurrent thread %d died", element
->mid
);
3730 current_thread
= MACH_PORT_NULL
;
3733 printf_filtered ("\nThread %d died", element
->mid
);
3737 case MACH_TYPE_TASK
:
3738 target_terminal_ours_for_output ();
3739 if (name
!= inferior_task
)
3740 printf_filtered ("Task %d died, but it was not the selected task",
3744 printf_filtered ("Current task %d died", element
->mid
);
3746 mach_port_destroy (mach_task_self (), name
);
3747 inferior_task
= MACH_PORT_NULL
;
3750 warning ("There were still unreceived dead_name_notifications???");
3752 /* Destroy the old notifications */
3753 setup_notify_port (0);
3759 error ("Unregistered dead_name 0x%x notification received. Type is %d, mid is 0x%x",
3760 name
, element
->type
, element
->mid
);
3764 return KERN_SUCCESS
;
3768 do_mach_notify_msg_accepted (mach_port_t notify
, mach_port_t name
)
3770 warning ("do_mach_notify_msg_accepted : notify %x, name %x",
3772 return KERN_SUCCESS
;
3776 do_mach_notify_no_senders (mach_port_t notify
, mach_port_mscount_t mscount
)
3778 warning ("do_mach_notify_no_senders : notify %x, mscount %x",
3780 return KERN_SUCCESS
;
3784 do_mach_notify_port_deleted (mach_port_t notify
, mach_port_t name
)
3786 warning ("do_mach_notify_port_deleted : notify %x, name %x",
3788 return KERN_SUCCESS
;
3792 do_mach_notify_port_destroyed (mach_port_t notify
, mach_port_t rights
)
3794 warning ("do_mach_notify_port_destroyed : notify %x, rights %x",
3796 return KERN_SUCCESS
;
3800 do_mach_notify_send_once (mach_port_t notify
)
3803 /* MANY of these are generated. */
3804 warning ("do_mach_notify_send_once : notify %x",
3807 return KERN_SUCCESS
;
3810 /* Kills the inferior. It's gone when you call this */
3812 kill_inferior_fast (void)
3816 if (inferior_pid
== 0 || inferior_pid
== 1)
3819 /* kill() it, since the Unix server does not otherwise notice when
3820 * killed with task_terminate().
3822 if (inferior_pid
> 0)
3823 kill (inferior_pid
, SIGKILL
);
3825 /* It's propably terminate already */
3826 (void) task_terminate (inferior_task
);
3828 inferior_task
= MACH_PORT_NULL
;
3829 current_thread
= MACH_PORT_NULL
;
3831 wait3 (&w
, WNOHANG
, 0);
3833 setup_notify_port (0);
3837 m3_kill_inferior (void)
3839 kill_inferior_fast ();
3840 target_mourn_inferior ();
3843 /* Clean up after the inferior dies. */
3846 m3_mourn_inferior (void)
3848 unpush_target (&m3_ops
);
3849 generic_mourn_inferior ();
3853 /* Fork an inferior process, and start debugging it. */
3856 m3_create_inferior (char *exec_file
, char *allargs
, char **env
)
3858 fork_inferior (exec_file
, allargs
, env
, m3_trace_me
, m3_trace_him
, NULL
, NULL
);
3859 /* We are at the first instruction we care about. */
3860 /* Pedal to the metal... */
3861 proceed ((CORE_ADDR
) -1, 0, 0);
3864 /* Mark our target-struct as eligible for stray "run" and "attach"
3872 /* Mach 3.0 does not need ptrace for anything
3873 * Make sure nobody uses it on mach.
3875 ptrace (int a
, int b
, int c
, int d
)
3877 error ("Lose, Lose! Somebody called ptrace\n");
3880 /* Resume execution of the inferior process.
3881 If STEP is nonzero, single-step it.
3882 If SIGNAL is nonzero, give it that signal. */
3885 m3_resume (int pid
, int step
, enum target_signal signal
)
3891 thread_basic_info_data_t th_info
;
3892 unsigned int infoCnt
= THREAD_BASIC_INFO_COUNT
;
3894 /* There is no point in single stepping when current_thread
3897 if (!MACH_PORT_VALID (current_thread
))
3898 error ("No thread selected; can not single step");
3900 /* If current_thread is suspended, tracing it would never return.
3902 ret
= thread_info (current_thread
,
3904 (thread_info_t
) & th_info
,
3906 CHK ("child_resume: can't get thread info", ret
);
3908 if (th_info
.suspend_count
)
3909 error ("Can't trace a suspended thread. Use \"thread resume\" command to resume it");
3912 vm_read_cache_valid
= FALSE
;
3914 if (signal
&& inferior_pid
> 0) /* Do not signal, if attached by MID */
3915 kill (inferior_pid
, target_signal_to_host (signal
));
3919 suspend_all_threads (0);
3921 setup_single_step (current_thread
, TRUE
);
3923 ret
= thread_resume (current_thread
);
3924 CHK ("thread_resume", ret
);
3927 ret
= task_resume (inferior_task
);
3928 if (ret
== KERN_FAILURE
)
3929 warning ("Task was not suspended");
3931 CHK ("Resuming task", ret
);
3933 /* HACK HACK This is needed by the multiserver system HACK HACK */
3934 while ((ret
= task_resume (inferior_task
)) == KERN_SUCCESS
)
3935 /* make sure it really runs */ ;
3936 /* HACK HACK This is needed by the multiserver system HACK HACK */
3939 #ifdef ATTACH_DETACH
3941 /* Start debugging the process with the given task */
3943 task_attach (task_t tid
)
3946 inferior_task
= tid
;
3948 ret
= task_suspend (inferior_task
);
3949 CHK ("task_attach: task_suspend", ret
);
3951 must_suspend_thread
= 0;
3953 setup_notify_port (1);
3955 request_notify (inferior_task
, MACH_NOTIFY_DEAD_NAME
, MACH_TYPE_TASK
);
3957 setup_exception_port ();
3959 emulator_present
= have_emulator_p (inferior_task
);
3964 /* Well, we can call error also here and leave the
3965 * target stack inconsistent. Sigh.
3966 * Fix this sometime (the only way to fail here is that
3967 * the task has no threads at all, which is rare, but
3968 * possible; or if the target task has died, which is also
3969 * possible, but unlikely, since it has been suspended.
3970 * (Someone must have killed it))
3973 attach_to_thread (void)
3975 if (select_thread (inferior_task
, 0, 1) != KERN_SUCCESS
)
3976 error ("Could not select any threads to attach to");
3979 mid_attach (int mid
)
3983 ret
= machid_mach_port (mid_server
, mid_auth
, mid
, &inferior_task
);
3984 CHK ("mid_attach: machid_mach_port", ret
);
3986 task_attach (inferior_task
);
3992 * Start debugging the process whose unix process-id is PID.
3993 * A negative "pid" value is legal and signifies a mach_id not a unix pid.
3995 * Prevent (possible unwanted) dangerous operations by enabled users
3996 * like "atta 0" or "atta foo" (equal to the previous :-) and
3997 * "atta pidself". Anyway, the latter is allowed by specifying a MID.
4000 m3_do_attach (int pid
)
4005 error ("MID=0, Debugging the master unix server does not compute");
4007 /* Foo. This assumes gdb has a unix pid */
4008 if (pid
== getpid ())
4009 error ("I will debug myself only by mid. (Gdb would suspend itself!)");
4013 mid_attach (-(pid
));
4015 /* inferior_pid will be NEGATIVE! */
4018 return inferior_pid
;
4021 inferior_task
= task_by_pid (pid
);
4022 if (!MACH_PORT_VALID (inferior_task
))
4023 error ("Cannot map Unix pid %d to Mach task port", pid
);
4025 task_attach (inferior_task
);
4029 return inferior_pid
;
4032 /* Attach to process PID, then initialize for debugging it
4033 and wait for the trace-trap that results from attaching. */
4036 m3_attach (char *args
, int from_tty
)
4042 error_no_arg ("process-id to attach");
4046 if (pid
== getpid ()) /* Trying to masturbate? */
4047 error ("I refuse to debug myself!");
4051 exec_file
= (char *) get_exec_file (0);
4054 printf_unfiltered ("Attaching to program `%s', %s\n", exec_file
, target_pid_to_str (pid
));
4056 printf_unfiltered ("Attaching to %s\n", target_pid_to_str (pid
));
4058 gdb_flush (gdb_stdout
);
4063 push_target (&m3_ops
);
4067 deallocate_inferior_ports (void)
4070 thread_array_t thread_list
;
4071 int thread_count
, index
;
4073 if (!MACH_PORT_VALID (inferior_task
))
4076 ret
= task_threads (inferior_task
, &thread_list
, &thread_count
);
4077 if (ret
!= KERN_SUCCESS
)
4079 warning ("deallocate_inferior_ports: task_threads",
4080 mach_error_string (ret
));
4084 /* Get rid of send rights to task threads */
4085 for (index
= 0; index
< thread_count
; index
++)
4088 ret
= mach_port_get_refs (mach_task_self (),
4090 MACH_PORT_RIGHT_SEND
,
4092 CHK ("deallocate_inferior_ports: get refs", ret
);
4096 ret
= mach_port_mod_refs (mach_task_self (),
4098 MACH_PORT_RIGHT_SEND
,
4100 CHK ("deallocate_inferior_ports: mod refs", ret
);
4104 ret
= mach_port_mod_refs (mach_task_self (),
4105 inferior_exception_port
,
4106 MACH_PORT_RIGHT_RECEIVE
,
4108 CHK ("deallocate_inferior_ports: cannot get rid of exception port", ret
);
4110 ret
= mach_port_deallocate (mach_task_self (),
4112 CHK ("deallocate_task_port: deallocating inferior_task", ret
);
4114 current_thread
= MACH_PORT_NULL
;
4115 inferior_task
= MACH_PORT_NULL
;
4118 /* Stop debugging the process whose number is PID
4119 and continue it with signal number SIGNAL.
4120 SIGNAL = 0 means just continue it. */
4123 m3_do_detach (int signal
)
4127 MACH_ERROR_NO_INFERIOR
;
4129 if (current_thread
!= MACH_PORT_NULL
)
4131 /* Store the gdb's view of the thread we are deselecting
4133 * @@ I am really not sure if this is ever needeed.
4135 target_prepare_to_store ();
4136 target_store_registers (-1);
4139 ret
= task_set_special_port (inferior_task
,
4140 TASK_EXCEPTION_PORT
,
4141 inferior_old_exception_port
);
4142 CHK ("task_set_special_port", ret
);
4144 /* Discard all requested notifications */
4145 setup_notify_port (0);
4147 if (remove_breakpoints ())
4148 warning ("Could not remove breakpoints when detaching");
4150 if (signal
&& inferior_pid
> 0)
4151 kill (inferior_pid
, signal
);
4153 /* the task might be dead by now */
4154 (void) task_resume (inferior_task
);
4156 deallocate_inferior_ports ();
4161 /* Take a program previously attached to and detaches it.
4162 The program resumes execution and will no longer stop
4163 on signals, etc. We'd better not have left any breakpoints
4164 in the program or it'll die when it hits one. For this
4165 to work, it may be necessary for the process to have been
4166 previously attached. It *might* work if the program was
4167 started via fork. */
4170 m3_detach (char *args
, int from_tty
)
4176 char *exec_file
= get_exec_file (0);
4179 printf_unfiltered ("Detaching from program: %s %s\n",
4180 exec_file
, target_pid_to_str (inferior_pid
));
4181 gdb_flush (gdb_stdout
);
4184 siggnal
= atoi (args
);
4186 m3_do_detach (siggnal
);
4188 unpush_target (&m3_ops
); /* Pop out of handling an inferior */
4190 #endif /* ATTACH_DETACH */
4192 /* Get ready to modify the registers array. On machines which store
4193 individual registers, this doesn't need to do anything. On machines
4194 which store all the registers in one fell swoop, this makes sure
4195 that registers contains all the registers from the program being
4199 m3_prepare_to_store (void)
4201 #ifdef CHILD_PREPARE_TO_STORE
4202 CHILD_PREPARE_TO_STORE ();
4206 /* Print status information about what we're accessing. */
4209 m3_files_info (struct target_ops
*ignore
)
4211 /* FIXME: should print MID and all that crap. */
4212 printf_unfiltered ("\tUsing the running image of %s %s.\n",
4213 attach_flag
? "attached" : "child", target_pid_to_str (inferior_pid
));
4217 m3_open (char *arg
, int from_tty
)
4219 error ("Use the \"run\" command to start a Unix child process.");
4225 char *bsd1_names
[] =
4294 int bsd1_nnames
= sizeof (bsd1_names
) / sizeof (bsd1_names
[0]);
4297 name_str (int name
, char *buf
)
4301 case MACH_MSG_TYPE_BOOLEAN
:
4303 case MACH_MSG_TYPE_INTEGER_16
:
4305 case MACH_MSG_TYPE_INTEGER_32
:
4307 case MACH_MSG_TYPE_CHAR
:
4309 case MACH_MSG_TYPE_BYTE
:
4311 case MACH_MSG_TYPE_REAL
:
4313 case MACH_MSG_TYPE_STRING
:
4316 sprintf (buf
, "%d", name
);
4322 id_str (int id
, char *buf
)
4325 if (id
>= 101000 && id
< 101000 + bsd1_nnames
)
4327 if (p
= bsd1_names
[id
- 101000])
4331 return "psignal_retry";
4334 sprintf (buf
, "%d", id
);
4338 print_msg (mach_msg_header_t
*mp
)
4340 char *fmt_x
= "%20s : 0x%08x\n";
4341 char *fmt_d
= "%20s : %10d\n";
4342 char *fmt_s
= "%20s : %s\n";
4345 puts_filtered ("\n");
4346 #define pr(fmt,h,x) printf_filtered(fmt,STR(x),(h).x)
4347 pr (fmt_x
, (*mp
), msgh_bits
);
4348 pr (fmt_d
, (*mp
), msgh_size
);
4349 pr (fmt_x
, (*mp
), msgh_remote_port
);
4350 pr (fmt_x
, (*mp
), msgh_local_port
);
4351 pr (fmt_d
, (*mp
), msgh_kind
);
4352 printf_filtered (fmt_s
, STR (msgh_id
), id_str (mp
->msgh_id
, buf
));
4354 if (debug_level
> 1)
4359 ep
= p
+ mp
->msgh_size
;
4361 for (; p
< ep
; p
+= plen
)
4363 mach_msg_type_t
*tp
;
4364 mach_msg_type_long_t
*tlp
;
4365 int name
, size
, number
;
4366 tp
= (mach_msg_type_t
*) p
;
4367 if (tp
->msgt_longform
)
4369 tlp
= (mach_msg_type_long_t
*) tp
;
4370 name
= tlp
->msgtl_name
;
4371 size
= tlp
->msgtl_size
;
4372 number
= tlp
->msgtl_number
;
4373 plen
= sizeof (*tlp
);
4377 name
= tp
->msgt_name
;
4378 size
= tp
->msgt_size
;
4379 number
= tp
->msgt_number
;
4380 plen
= sizeof (*tp
);
4382 printf_filtered ("name=%-16s size=%2d number=%7d inline=%d long=%d deal=%d\n",
4383 name_str (name
, buf
), size
, number
, tp
->msgt_inline
,
4384 tp
->msgt_longform
, tp
->msgt_deallocate
);
4386 if (tp
->msgt_inline
)
4389 l
= size
* number
/ 8;
4390 l
= (l
+ sizeof (long) - 1) & ~((sizeof (long)) - 1);
4392 print_data (dp
, size
, number
);
4396 plen
+= sizeof (int *);
4398 printf_filtered ("plen=%d\n", plen
);
4403 print_data (char *p
, int size
, int number
)
4412 for (i
= 0; i
< number
; i
++)
4414 printf_filtered (" %02x", p
[i
]);
4419 for (i
= 0; i
< number
; i
++)
4421 printf_filtered (" %04x", sp
[i
]);
4426 for (i
= 0; i
< number
; i
++)
4428 printf_filtered (" %08x", ip
[i
]);
4432 puts_filtered ("\n");
4434 #endif /* DUMP_SYSCALL */
4439 error ("to_stop target function not implemented");
4443 m3_pid_to_exec_file (int pid
)
4445 error ("to_pid_to_exec_file target function not implemented");
4446 return NULL
; /* To keep all compilers happy. */
4452 m3_ops
.to_shortname
= "mach";
4453 m3_ops
.to_longname
= "Mach child process";
4454 m3_ops
.to_doc
= "Mach child process (started by the \"run\" command).";
4455 m3_ops
.to_open
= m3_open
;
4456 m3_ops
.to_attach
= m3_attach
;
4457 m3_ops
.to_detach
= m3_detach
;
4458 m3_ops
.to_resume
= m3_resume
;
4459 m3_ops
.to_wait
= mach_really__wait
;
4460 m3_ops
.to_fetch_registers
= fetch_inferior_registers
;
4461 m3_ops
.to_store_registers
= store_inferior_registers
;
4462 m3_ops
.to_prepare_to_store
= m3_prepare_to_store
;
4463 m3_ops
.to_xfer_memory
= m3_xfer_memory
;
4464 m3_ops
.to_files_info
= m3_files_info
;
4465 m3_ops
.to_insert_breakpoint
= memory_insert_breakpoint
;
4466 m3_ops
.to_remove_breakpoint
= memory_remove_breakpoint
;
4467 m3_ops
.to_terminal_init
= terminal_init_inferior
;
4468 m3_ops
.to_terminal_inferior
= terminal_inferior
;
4469 m3_ops
.to_terminal_ours_for_output
= terminal_ours_for_output
;
4470 m3_ops
.to_terminal_ours
= terminal_ours
;
4471 m3_ops
.to_terminal_info
= child_terminal_info
;
4472 m3_ops
.to_kill
= m3_kill_inferior
;
4473 m3_ops
.to_create_inferior
= m3_create_inferior
;
4474 m3_ops
.to_mourn_inferior
= m3_mourn_inferior
;
4475 m3_ops
.to_can_run
= m3_can_run
;
4476 m3_ops
.to_stop
= m3_stop
;
4477 m3_ops
.to_pid_to_exec_file
= m3_pid_to_exec_file
;
4478 m3_ops
.to_stratum
= process_stratum
;
4479 m3_ops
.to_has_all_memory
= 1;
4480 m3_ops
.to_has_memory
= 1;
4481 m3_ops
.to_has_stack
= 1;
4482 m3_ops
.to_has_registers
= 1;
4483 m3_ops
.to_has_execution
= 1;
4484 m3_ops
.to_magic
= OPS_MAGIC
;
4488 _initialize_m3_nat (void)
4493 add_target (&m3_ops
);
4495 ret
= mach_port_allocate (mach_task_self (),
4496 MACH_PORT_RIGHT_PORT_SET
,
4497 &inferior_wait_port_set
);
4498 if (ret
!= KERN_SUCCESS
)
4499 internal_error (__FILE__
, __LINE__
,
4500 "initial port set %s", mach_error_string (ret
));
4502 /* mach_really_wait now waits for this */
4503 currently_waiting_for
= inferior_wait_port_set
;
4505 ret
= netname_look_up (name_server_port
, hostname
, "MachID", &mid_server
);
4506 if (ret
!= KERN_SUCCESS
)
4508 mid_server
= MACH_PORT_NULL
;
4510 warning ("initialize machid: netname_lookup_up(MachID) : %s",
4511 mach_error_string (ret
));
4512 warning ("Some (most?) features disabled...");
4515 mid_auth
= mach_privileged_host_port ();
4516 if (mid_auth
== MACH_PORT_NULL
)
4517 mid_auth
= mach_task_self ();
4519 obstack_init (port_chain_obstack
);
4521 ret
= mach_port_allocate (mach_task_self (),
4522 MACH_PORT_RIGHT_RECEIVE
,
4523 &thread_exception_port
);
4524 CHK ("Creating thread_exception_port for single stepping", ret
);
4526 ret
= mach_port_insert_right (mach_task_self (),
4527 thread_exception_port
,
4528 thread_exception_port
,
4529 MACH_MSG_TYPE_MAKE_SEND
);
4530 CHK ("Inserting send right to thread_exception_port", ret
);
4532 /* Allocate message port */
4533 ret
= mach_port_allocate (mach_task_self (),
4534 MACH_PORT_RIGHT_RECEIVE
,
4536 if (ret
!= KERN_SUCCESS
)
4537 warning ("Creating message port %s", mach_error_string (ret
));
4540 char buf
[MAX_NAME_LEN
];
4541 ret
= mach_port_move_member (mach_task_self (),
4543 inferior_wait_port_set
);
4544 if (ret
!= KERN_SUCCESS
)
4545 warning ("message move member %s", mach_error_string (ret
));
4548 /* @@@@ No way to change message port name currently */
4549 /* Foo. This assumes gdb has a unix pid */
4550 sprintf (buf
, "gdb-%d", getpid ());
4551 gdb_register_port (buf
, our_message_port
);
4554 /* Heap for thread commands */
4555 obstack_init (cproc_obstack
);
4557 add_mach_specific_commands ();