1 /* Darwin support for GDB, the GNU debugger.
2 Copyright (C) 2008-2020 Free Software Foundation, Inc.
4 Contributed by AdaCore.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
30 #include "gdbthread.h"
32 #include "event-top.h"
35 #include "inf-child.h"
37 #include "arch-utils.h"
39 #include "bfd/mach-o.h"
43 #include <sys/ptrace.h>
44 #include <sys/signal.h>
46 #include <sys/types.h>
50 #include <sys/sysctl.h>
53 #include <sys/syscall.h>
56 #include <mach/mach_error.h>
57 #include <mach/mach_vm.h>
58 #include <mach/mach_init.h>
59 #include <mach/vm_map.h>
60 #include <mach/task.h>
61 #include <mach/mach_port.h>
62 #include <mach/thread_act.h>
63 #include <mach/port.h>
65 #include "darwin-nat.h"
66 #include "filenames.h"
67 #include "gdbsupport/filestuff.h"
68 #include "gdbsupport/gdb_unlinker.h"
69 #include "gdbsupport/pathstuff.h"
70 #include "gdbsupport/scoped_fd.h"
71 #include "nat/fork-inferior.h"
74 Darwin kernel is Mach + BSD derived kernel. Note that they share the
75 same memory space and are linked together (ie there is no micro-kernel).
77 Although ptrace(2) is available on Darwin, it is not complete. We have
78 to use Mach calls to read and write memory and to modify registers. We
79 also use Mach to get inferior faults. As we cannot use select(2) or
80 signals with Mach port (the Mach communication channel), signals are
81 reported to gdb as an exception. Furthermore we detect death of the
82 inferior through a Mach notification message. This way we only wait
85 Some Mach documentation is available for Apple xnu source package or
89 #define PTRACE(CMD, PID, ADDR, SIG) \
90 darwin_ptrace(#CMD, CMD, (PID), (ADDR), (SIG))
92 static void darwin_ptrace_me (void);
94 static void darwin_encode_reply (mig_reply_error_t
*reply
,
95 mach_msg_header_t
*hdr
, integer_t code
);
97 static void darwin_setup_request_notification (struct inferior
*inf
);
98 static void darwin_deallocate_exception_ports (darwin_inferior
*inf
);
99 static void darwin_setup_exceptions (struct inferior
*inf
);
100 static void darwin_deallocate_threads (struct inferior
*inf
);
102 /* Task identifier of gdb. */
103 static task_t gdb_task
;
105 /* A copy of mach_host_self (). */
106 mach_port_t darwin_host_self
;
108 /* Exception port. */
109 mach_port_t darwin_ex_port
;
111 /* Port set, to wait for answer on all ports. */
112 mach_port_t darwin_port_set
;
115 static vm_size_t mach_page_size
;
117 /* If Set, catch all mach exceptions (before they are converted to signals
119 static bool enable_mach_exceptions
;
121 /* Inferior that should report a fake stop event. */
122 static struct inferior
*darwin_inf_fake_stop
;
124 /* If non-NULL, the shell we actually invoke. See maybe_cache_shell
126 static const char *copied_shell
;
128 #define PAGE_TRUNC(x) ((x) & ~(mach_page_size - 1))
129 #define PAGE_ROUND(x) PAGE_TRUNC((x) + mach_page_size - 1)
131 /* This controls output of inferior debugging. */
132 static unsigned int darwin_debug_flag
= 0;
134 /* Create a __TEXT __info_plist section in the executable so that gdb could
135 be signed. This is required to get an authorization for task_for_pid.
137 Once gdb is built, you must codesign it with any system-trusted signing
138 authority. See taskgated(8) for details. */
139 static const unsigned char info_plist
[]
140 __attribute__ ((section ("__TEXT,__info_plist"),used
)) =
141 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
142 "<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\""
143 " \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
144 "<plist version=\"1.0\">\n"
146 " <key>CFBundleIdentifier</key>\n"
147 " <string>org.gnu.gdb</string>\n"
148 " <key>CFBundleName</key>\n"
149 " <string>gdb</string>\n"
150 " <key>CFBundleVersion</key>\n"
151 " <string>1.0</string>\n"
152 " <key>SecTaskAccess</key>\n"
154 " <string>allowed</string>\n"
155 " <string>debug</string>\n"
160 static void inferior_debug (int level
, const char *fmt
, ...)
161 ATTRIBUTE_PRINTF (2, 3);
164 inferior_debug (int level
, const char *fmt
, ...)
168 if (darwin_debug_flag
< level
)
172 printf_unfiltered (_("[%d inferior]: "), getpid ());
173 vprintf_unfiltered (fmt
, ap
);
178 mach_check_error (kern_return_t ret
, const char *file
,
179 unsigned int line
, const char *func
)
181 if (ret
== KERN_SUCCESS
)
184 func
= _("[UNKNOWN]");
186 warning (_("Mach error at \"%s:%u\" in function \"%s\": %s (0x%lx)"),
187 file
, line
, func
, mach_error_string (ret
), (unsigned long) ret
);
191 unparse_exception_type (unsigned int i
)
193 static char unknown_exception_buf
[32];
198 return "EXC_BAD_ACCESS";
199 case EXC_BAD_INSTRUCTION
:
200 return "EXC_BAD_INSTRUCTION";
202 return "EXC_ARITHMETIC";
204 return "EXC_EMULATION";
206 return "EXC_SOFTWARE";
208 return "EXC_BREAKPOINT";
210 return "EXC_SYSCALL";
211 case EXC_MACH_SYSCALL
:
212 return "EXC_MACH_SYSCALL";
214 return "EXC_RPC_ALERT";
218 snprintf (unknown_exception_buf
, 32, _("unknown (%d)"), i
);
219 return unknown_exception_buf
;
223 /* Set errno to zero, and then call ptrace with the given arguments.
224 If inferior debugging traces are on, then also print a debug
227 The returned value is the same as the value returned by ptrace,
228 except in the case where that value is -1 but errno is zero.
229 This case is documented to be a non-error situation, so we
230 return zero in that case. */
233 darwin_ptrace (const char *name
,
234 int request
, int pid
, caddr_t arg3
, int arg4
)
239 ret
= ptrace (request
, pid
, arg3
, arg4
);
240 if (ret
== -1 && errno
== 0)
243 inferior_debug (4, _("ptrace (%s, %d, 0x%lx, %d): %d (%s)\n"),
244 name
, pid
, (unsigned long) arg3
, arg4
, ret
,
245 (ret
!= 0) ? safe_strerror (errno
) : _("no error"));
250 cmp_thread_t (const void *l
, const void *r
)
252 thread_t tl
= *(const thread_t
*)l
;
253 thread_t tr
= *(const thread_t
*)r
;
254 return (int)(tl
- tr
);
258 darwin_nat_target::check_new_threads (inferior
*inf
)
261 thread_array_t thread_list
;
262 unsigned int new_nbr
;
263 unsigned int old_nbr
;
264 unsigned int new_ix
, old_ix
;
265 darwin_inferior
*darwin_inf
= get_darwin_inferior (inf
);
266 std::vector
<darwin_thread_t
*> new_thread_vec
;
268 if (darwin_inf
== nullptr)
271 /* Get list of threads. */
272 kret
= task_threads (darwin_inf
->task
, &thread_list
, &new_nbr
);
273 MACH_CHECK_ERROR (kret
);
274 if (kret
!= KERN_SUCCESS
)
279 qsort (thread_list
, new_nbr
, sizeof (thread_t
), cmp_thread_t
);
281 old_nbr
= darwin_inf
->threads
.size ();
283 /* Quick check for no changes. */
284 if (old_nbr
== new_nbr
)
288 for (i
= 0; i
< new_nbr
; i
++)
289 if (thread_list
[i
] != darwin_inf
->threads
[i
]->gdb_port
)
293 /* Deallocate ports. */
294 for (i
= 0; i
< new_nbr
; i
++)
296 kret
= mach_port_deallocate (mach_task_self (), thread_list
[i
]);
297 MACH_CHECK_ERROR (kret
);
300 /* Deallocate the buffer. */
301 kret
= vm_deallocate (gdb_task
, (vm_address_t
) thread_list
,
302 new_nbr
* sizeof (int));
303 MACH_CHECK_ERROR (kret
);
309 /* Full handling: detect new threads, remove dead threads. */
311 new_thread_vec
.reserve (new_nbr
);
313 for (new_ix
= 0, old_ix
= 0; new_ix
< new_nbr
|| old_ix
< old_nbr
;)
315 thread_t new_id
= (new_ix
< new_nbr
) ? thread_list
[new_ix
] : THREAD_NULL
;
317 = (old_ix
< old_nbr
) ? darwin_inf
->threads
[old_ix
] : NULL
;
318 thread_t old_id
= old
!= NULL
? old
->gdb_port
: THREAD_NULL
;
321 (12, _(" new_ix:%d/%d, old_ix:%d/%d, new_id:0x%x old_id:0x%x\n"),
322 new_ix
, new_nbr
, old_ix
, old_nbr
, new_id
, old_id
);
324 if (old_id
== new_id
)
326 /* Thread still exist. */
327 new_thread_vec
.push_back (old
);
331 /* Deallocate the port. */
332 kret
= mach_port_deallocate (gdb_task
, new_id
);
333 MACH_CHECK_ERROR (kret
);
337 if (new_ix
< new_nbr
&& new_id
== MACH_PORT_DEAD
)
339 /* Ignore dead ports.
340 In some weird cases, we might get dead ports. They should
341 correspond to dead thread so they could safely be ignored. */
345 if (new_ix
< new_nbr
&& (old_ix
== old_nbr
|| new_id
< old_id
))
347 /* A thread was created. */
348 darwin_thread_info
*pti
= new darwin_thread_info
;
350 pti
->gdb_port
= new_id
;
351 pti
->msg_state
= DARWIN_RUNNING
;
353 /* Add the new thread. */
354 add_thread_with_info (this, ptid_t (inf
->pid
, 0, new_id
), pti
);
355 new_thread_vec
.push_back (pti
);
359 if (old_ix
< old_nbr
&& (new_ix
== new_nbr
|| new_id
> old_id
))
361 /* A thread was removed. */
362 struct thread_info
*thr
363 = find_thread_ptid (this, ptid_t (inf
->pid
, 0, old_id
));
365 kret
= mach_port_deallocate (gdb_task
, old_id
);
366 MACH_CHECK_ERROR (kret
);
370 gdb_assert_not_reached ("unexpected thread case");
373 darwin_inf
->threads
= std::move (new_thread_vec
);
375 /* Deallocate the buffer. */
376 kret
= vm_deallocate (gdb_task
, (vm_address_t
) thread_list
,
377 new_nbr
* sizeof (int));
378 MACH_CHECK_ERROR (kret
);
381 /* Return an inferior by task port. */
382 static struct inferior
*
383 darwin_find_inferior_by_task (task_t port
)
385 for (inferior
*inf
: all_inferiors ())
387 darwin_inferior
*priv
= get_darwin_inferior (inf
);
389 if (priv
!= nullptr && priv
->task
== port
)
395 /* Return an inferior by pid port. */
396 static struct inferior
*
397 darwin_find_inferior_by_pid (int pid
)
399 for (inferior
*inf
: all_inferiors ())
407 /* Return a thread by port. */
408 static darwin_thread_t
*
409 darwin_find_thread (struct inferior
*inf
, thread_t thread
)
411 darwin_inferior
*priv
= get_darwin_inferior (inf
);
414 for (darwin_thread_t
*t
: priv
->threads
)
416 if (t
->gdb_port
== thread
)
423 /* Suspend (ie stop) an inferior at Mach level. */
426 darwin_suspend_inferior (struct inferior
*inf
)
428 darwin_inferior
*priv
= get_darwin_inferior (inf
);
430 if (priv
!= nullptr && !priv
->suspended
)
434 kret
= task_suspend (priv
->task
);
435 MACH_CHECK_ERROR (kret
);
441 /* Resume an inferior at Mach level. */
444 darwin_resume_inferior (struct inferior
*inf
)
446 darwin_inferior
*priv
= get_darwin_inferior (inf
);
448 if (priv
!= nullptr && priv
->suspended
)
452 kret
= task_resume (priv
->task
);
453 MACH_CHECK_ERROR (kret
);
460 darwin_dump_message (mach_msg_header_t
*hdr
, int disp_body
)
462 printf_unfiltered (_("message header:\n"));
463 printf_unfiltered (_(" bits: 0x%x\n"), hdr
->msgh_bits
);
464 printf_unfiltered (_(" size: 0x%x\n"), hdr
->msgh_size
);
465 printf_unfiltered (_(" remote-port: 0x%x\n"), hdr
->msgh_remote_port
);
466 printf_unfiltered (_(" local-port: 0x%x\n"), hdr
->msgh_local_port
);
467 printf_unfiltered (_(" reserved: 0x%x\n"), hdr
->msgh_reserved
);
468 printf_unfiltered (_(" id: 0x%x\n"), hdr
->msgh_id
);
472 const unsigned char *data
;
473 const unsigned int *ldata
;
477 data
= (unsigned char *)(hdr
+ 1);
478 size
= hdr
->msgh_size
- sizeof (mach_msg_header_t
);
480 if (hdr
->msgh_bits
& MACH_MSGH_BITS_COMPLEX
)
482 mach_msg_body_t
*bod
= (mach_msg_body_t
*)data
;
483 mach_msg_port_descriptor_t
*desc
=
484 (mach_msg_port_descriptor_t
*)(bod
+ 1);
487 printf_unfiltered (_("body: descriptor_count=%u\n"),
488 bod
->msgh_descriptor_count
);
489 data
+= sizeof (mach_msg_body_t
);
490 size
-= sizeof (mach_msg_body_t
);
491 for (k
= 0; k
< bod
->msgh_descriptor_count
; k
++)
492 switch (desc
[k
].type
)
494 case MACH_MSG_PORT_DESCRIPTOR
:
496 (_(" descr %d: type=%u (port) name=0x%x, dispo=%d\n"),
497 k
, desc
[k
].type
, desc
[k
].name
, desc
[k
].disposition
);
500 printf_unfiltered (_(" descr %d: type=%u\n"),
504 data
+= bod
->msgh_descriptor_count
505 * sizeof (mach_msg_port_descriptor_t
);
506 size
-= bod
->msgh_descriptor_count
507 * sizeof (mach_msg_port_descriptor_t
);
508 ndr
= (NDR_record_t
*)(desc
+ bod
->msgh_descriptor_count
);
510 (_("NDR: mig=%02x if=%02x encod=%02x "
511 "int=%02x char=%02x float=%02x\n"),
512 ndr
->mig_vers
, ndr
->if_vers
, ndr
->mig_encoding
,
513 ndr
->int_rep
, ndr
->char_rep
, ndr
->float_rep
);
514 data
+= sizeof (NDR_record_t
);
515 size
-= sizeof (NDR_record_t
);
518 printf_unfiltered (_(" data:"));
519 ldata
= (const unsigned int *)data
;
520 for (i
= 0; i
< size
/ sizeof (unsigned int); i
++)
521 printf_unfiltered (" %08x", ldata
[i
]);
522 printf_unfiltered (_("\n"));
526 /* Adjust inferior data when a new task was created. */
528 static struct inferior
*
529 darwin_find_new_inferior (task_t task_port
, thread_t thread_port
)
532 struct inferior
*inf
;
536 /* Find the corresponding pid. */
537 kret
= pid_for_task (task_port
, &task_pid
);
538 if (kret
!= KERN_SUCCESS
)
540 MACH_CHECK_ERROR (kret
);
544 /* Find the inferior for this pid. */
545 inf
= darwin_find_inferior_by_pid (task_pid
);
549 darwin_inferior
*priv
= get_darwin_inferior (inf
);
551 /* Deallocate saved exception ports. */
552 darwin_deallocate_exception_ports (priv
);
554 /* No need to remove dead_name notification, but still... */
555 kret
= mach_port_request_notification (gdb_task
, priv
->task
,
556 MACH_NOTIFY_DEAD_NAME
, 0,
558 MACH_MSG_TYPE_MAKE_SEND_ONCE
,
560 if (kret
!= KERN_INVALID_ARGUMENT
)
561 MACH_CHECK_ERROR (kret
);
563 /* Replace old task port. */
564 kret
= mach_port_deallocate (gdb_task
, priv
->task
);
565 MACH_CHECK_ERROR (kret
);
566 priv
->task
= task_port
;
568 darwin_setup_request_notification (inf
);
569 darwin_setup_exceptions (inf
);
574 /* Check data representation. */
577 darwin_check_message_ndr (NDR_record_t
*ndr
)
579 if (ndr
->mig_vers
!= NDR_PROTOCOL_2_0
580 || ndr
->if_vers
!= NDR_PROTOCOL_2_0
581 || ndr
->mig_encoding
!= NDR_record
.mig_encoding
582 || ndr
->int_rep
!= NDR_record
.int_rep
583 || ndr
->char_rep
!= NDR_record
.char_rep
584 || ndr
->float_rep
!= NDR_record
.float_rep
)
589 /* Decode an exception message. */
592 darwin_nat_target::decode_exception_message (mach_msg_header_t
*hdr
,
594 darwin_thread_t
**pthread
)
596 mach_msg_body_t
*bod
= (mach_msg_body_t
*)(hdr
+ 1);
597 mach_msg_port_descriptor_t
*desc
= (mach_msg_port_descriptor_t
*)(bod
+ 1);
600 struct inferior
*inf
;
601 darwin_thread_t
*thread
;
603 thread_t thread_port
;
607 /* Check message destination. */
608 if (hdr
->msgh_local_port
!= darwin_ex_port
)
611 /* Check message header. */
612 if (!(hdr
->msgh_bits
& MACH_MSGH_BITS_COMPLEX
))
615 /* Check descriptors. */
616 if (hdr
->msgh_size
< (sizeof (*hdr
) + sizeof (*bod
) + 2 * sizeof (*desc
)
617 + sizeof (*ndr
) + 2 * sizeof (integer_t
))
618 || bod
->msgh_descriptor_count
!= 2
619 || desc
[0].type
!= MACH_MSG_PORT_DESCRIPTOR
620 || desc
[0].disposition
!= MACH_MSG_TYPE_MOVE_SEND
621 || desc
[1].type
!= MACH_MSG_PORT_DESCRIPTOR
622 || desc
[1].disposition
!= MACH_MSG_TYPE_MOVE_SEND
)
625 /* Check data representation. */
626 ndr
= (NDR_record_t
*)(desc
+ 2);
627 if (darwin_check_message_ndr (ndr
) != 0)
630 /* Ok, the hard work. */
631 data
= (integer_t
*)(ndr
+ 1);
633 task_port
= desc
[1].name
;
634 thread_port
= desc
[0].name
;
636 /* Find process by port. */
637 inf
= darwin_find_inferior_by_task (task_port
);
640 if (inf
== NULL
&& data
[0] == EXC_SOFTWARE
&& data
[1] == 2
641 && data
[2] == EXC_SOFT_SIGNAL
&& data
[3] == SIGTRAP
)
643 /* Not a known inferior, but a sigtrap. This happens on darwin 16.1.0,
644 as a new Mach task is created when a process exec. */
645 inf
= darwin_find_new_inferior (task_port
, thread_port
);
650 /* Deallocate task_port, unless it was saved. */
651 kret
= mach_port_deallocate (mach_task_self (), task_port
);
652 MACH_CHECK_ERROR (kret
);
657 /* We got new rights to the task, get rid of it. Do not get rid of
658 thread right, as we will need it to find the thread. */
659 kret
= mach_port_deallocate (mach_task_self (), task_port
);
660 MACH_CHECK_ERROR (kret
);
665 /* Not a known inferior. This could happen if the child fork, as
666 the created process will inherit its exception port.
667 FIXME: should the exception port be restored ? */
668 mig_reply_error_t reply
;
671 (4, _("darwin_decode_exception_message: unknown task 0x%x\n"),
674 /* Free thread port (we don't know it). */
675 kret
= mach_port_deallocate (mach_task_self (), thread_port
);
676 MACH_CHECK_ERROR (kret
);
678 darwin_encode_reply (&reply
, hdr
, KERN_SUCCESS
);
680 kret
= mach_msg (&reply
.Head
, MACH_SEND_MSG
| MACH_SEND_INTERRUPT
,
681 reply
.Head
.msgh_size
, 0,
682 MACH_PORT_NULL
, MACH_MSG_TIMEOUT_NONE
,
684 MACH_CHECK_ERROR (kret
);
689 /* Find thread by port. */
690 /* Check for new threads. Do it early so that the port in the exception
691 message can be deallocated. */
692 check_new_threads (inf
);
694 /* Free the thread port (as gdb knows the thread, it has already has a right
695 for it, so this just decrement a reference counter). */
696 kret
= mach_port_deallocate (mach_task_self (), thread_port
);
697 MACH_CHECK_ERROR (kret
);
699 thread
= darwin_find_thread (inf
, thread_port
);
704 /* The thread should be running. However we have observed cases where a
705 thread got a SIGTTIN message after being stopped. */
706 gdb_assert (thread
->msg_state
!= DARWIN_MESSAGE
);
708 /* Finish decoding. */
709 thread
->event
.header
= *hdr
;
710 thread
->event
.thread_port
= thread_port
;
711 thread
->event
.task_port
= task_port
;
712 thread
->event
.ex_type
= data
[0];
713 thread
->event
.data_count
= data
[1];
715 if (hdr
->msgh_size
< (sizeof (*hdr
) + sizeof (*bod
) + 2 * sizeof (*desc
)
716 + sizeof (*ndr
) + 2 * sizeof (integer_t
)
717 + data
[1] * sizeof (integer_t
)))
719 for (i
= 0; i
< data
[1]; i
++)
720 thread
->event
.ex_data
[i
] = data
[2 + i
];
722 thread
->msg_state
= DARWIN_MESSAGE
;
727 /* Decode dead_name notify message. */
730 darwin_decode_notify_message (mach_msg_header_t
*hdr
, struct inferior
**pinf
)
732 NDR_record_t
*ndr
= (NDR_record_t
*)(hdr
+ 1);
733 integer_t
*data
= (integer_t
*)(ndr
+ 1);
734 struct inferior
*inf
;
737 /* Check message header. */
738 if (hdr
->msgh_bits
& MACH_MSGH_BITS_COMPLEX
)
741 /* Check descriptors. */
742 if (hdr
->msgh_size
< (sizeof (*hdr
) + sizeof (*ndr
) + sizeof (integer_t
)))
745 /* Check data representation. */
746 if (darwin_check_message_ndr (ndr
) != 0)
751 /* Find process by port. */
752 inf
= darwin_find_inferior_by_task (task_port
);
755 /* Check message destination. */
758 darwin_inferior
*priv
= get_darwin_inferior (inf
);
759 if (hdr
->msgh_local_port
!= priv
->notify_port
)
767 darwin_encode_reply (mig_reply_error_t
*reply
, mach_msg_header_t
*hdr
,
770 mach_msg_header_t
*rh
= &reply
->Head
;
772 rh
->msgh_bits
= MACH_MSGH_BITS (MACH_MSGH_BITS_REMOTE (hdr
->msgh_bits
), 0);
773 rh
->msgh_remote_port
= hdr
->msgh_remote_port
;
774 rh
->msgh_size
= (mach_msg_size_t
) sizeof (mig_reply_error_t
);
775 rh
->msgh_local_port
= MACH_PORT_NULL
;
776 rh
->msgh_id
= hdr
->msgh_id
+ 100;
778 reply
->NDR
= NDR_record
;
779 reply
->RetCode
= code
;
783 darwin_send_reply (struct inferior
*inf
, darwin_thread_t
*thread
)
786 mig_reply_error_t reply
;
787 darwin_inferior
*priv
= get_darwin_inferior (inf
);
789 darwin_encode_reply (&reply
, &thread
->event
.header
, KERN_SUCCESS
);
791 kret
= mach_msg (&reply
.Head
, MACH_SEND_MSG
| MACH_SEND_INTERRUPT
,
792 reply
.Head
.msgh_size
, 0,
793 MACH_PORT_NULL
, MACH_MSG_TIMEOUT_NONE
,
795 MACH_CHECK_ERROR (kret
);
797 priv
->pending_messages
--;
800 /* Wrapper around the __pthread_kill syscall. We use this instead of the
801 pthread_kill function to be able to send a signal to any kind of thread,
802 including GCD threads. */
805 darwin_pthread_kill (darwin_thread_t
*thread
, int nsignal
)
808 DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS
;
809 int res
= syscall (SYS___pthread_kill
, thread
->gdb_port
, nsignal
);
815 darwin_resume_thread (struct inferior
*inf
, darwin_thread_t
*thread
,
816 int step
, int nsignal
)
819 (3, _("darwin_resume_thread: state=%d, thread=0x%x, step=%d nsignal=%d\n"),
820 thread
->msg_state
, thread
->gdb_port
, step
, nsignal
);
822 switch (thread
->msg_state
)
825 if (thread
->event
.ex_type
== EXC_SOFTWARE
826 && thread
->event
.ex_data
[0] == EXC_SOFT_SIGNAL
)
828 /* Either deliver a new signal or cancel the signal received. */
829 int res
= PTRACE (PT_THUPDATE
, inf
->pid
,
830 (caddr_t
) (uintptr_t) thread
->gdb_port
, nsignal
);
832 inferior_debug (1, _("ptrace THUP: res=%d\n"), res
);
836 /* Note: ptrace is allowed only if the process is stopped.
837 Directly send the signal to the thread. */
838 int res
= darwin_pthread_kill (thread
, nsignal
);
839 inferior_debug (4, _("darwin_resume_thread: kill 0x%x %d: %d\n"),
840 thread
->gdb_port
, nsignal
, res
);
841 thread
->signaled
= 1;
844 /* Set or reset single step. */
845 inferior_debug (4, _("darwin_set_sstep (thread=0x%x, enable=%d)\n"),
846 thread
->gdb_port
, step
);
847 darwin_set_sstep (thread
->gdb_port
, step
);
848 thread
->single_step
= step
;
850 darwin_send_reply (inf
, thread
);
851 thread
->msg_state
= DARWIN_RUNNING
;
858 kern_return_t kret
= thread_resume (thread
->gdb_port
);
859 MACH_CHECK_ERROR (kret
);
861 thread
->msg_state
= DARWIN_RUNNING
;
866 /* Resume all threads of the inferior. */
869 darwin_resume_inferior_threads (struct inferior
*inf
, int step
, int nsignal
)
871 darwin_inferior
*priv
= get_darwin_inferior (inf
);
874 for (darwin_thread_t
*thread
: priv
->threads
)
875 darwin_resume_thread (inf
, thread
, step
, nsignal
);
878 /* Suspend all threads of INF. */
881 darwin_suspend_inferior_threads (struct inferior
*inf
)
883 darwin_inferior
*priv
= get_darwin_inferior (inf
);
885 for (darwin_thread_t
*thread
: priv
->threads
)
887 switch (thread
->msg_state
)
894 kern_return_t kret
= thread_suspend (thread
->gdb_port
);
895 MACH_CHECK_ERROR (kret
);
896 thread
->msg_state
= DARWIN_STOPPED
;
904 darwin_nat_target::resume (ptid_t ptid
, int step
, enum gdb_signal signal
)
906 struct target_waitstatus status
;
911 (2, _("darwin_resume: pid=%d, tid=0x%lx, step=%d, signal=%d\n"),
912 ptid
.pid (), ptid
.tid (), step
, signal
);
914 if (signal
== GDB_SIGNAL_0
)
917 nsignal
= gdb_signal_to_host (signal
);
919 /* Don't try to single step all threads. */
921 ptid
= inferior_ptid
;
923 /* minus_one_ptid is RESUME_ALL. */
924 if (ptid
== minus_one_ptid
)
926 /* Resume threads. */
927 for (inferior
*inf
: all_inferiors ())
928 darwin_resume_inferior_threads (inf
, step
, nsignal
);
931 for (inferior
*inf
: all_inferiors ())
932 darwin_resume_inferior (inf
);
936 inferior
*inf
= find_inferior_ptid (this, ptid
);
937 long tid
= ptid
.tid ();
939 /* Stop the inferior (should be useless). */
940 darwin_suspend_inferior (inf
);
943 darwin_resume_inferior_threads (inf
, step
, nsignal
);
946 darwin_thread_t
*thread
;
948 /* Suspend threads of the task. */
949 darwin_suspend_inferior_threads (inf
);
951 /* Resume the selected thread. */
952 thread
= darwin_find_thread (inf
, tid
);
954 darwin_resume_thread (inf
, thread
, step
, nsignal
);
957 /* Resume the task. */
958 darwin_resume_inferior (inf
);
963 darwin_nat_target::decode_message (mach_msg_header_t
*hdr
,
964 darwin_thread_t
**pthread
,
966 target_waitstatus
*status
)
968 darwin_thread_t
*thread
;
969 struct inferior
*inf
;
971 /* Exception message. 2401 == 0x961 is exc. */
972 if (hdr
->msgh_id
== 2401)
976 /* Decode message. */
977 res
= decode_exception_message (hdr
, &inf
, &thread
);
981 /* Should not happen... */
983 (_("darwin_wait: ill-formatted message (id=0x%x)\n"), hdr
->msgh_id
);
984 /* FIXME: send a failure reply? */
985 status
->kind
= TARGET_WAITKIND_IGNORE
;
986 return minus_one_ptid
;
990 status
->kind
= TARGET_WAITKIND_IGNORE
;
991 return minus_one_ptid
;
996 darwin_inferior
*priv
= get_darwin_inferior (inf
);
998 priv
->pending_messages
++;
1000 status
->kind
= TARGET_WAITKIND_STOPPED
;
1001 thread
->msg_state
= DARWIN_MESSAGE
;
1003 inferior_debug (4, _("darwin_wait: thread=0x%x, got %s\n"),
1005 unparse_exception_type (thread
->event
.ex_type
));
1007 switch (thread
->event
.ex_type
)
1009 case EXC_BAD_ACCESS
:
1010 status
->value
.sig
= GDB_EXC_BAD_ACCESS
;
1012 case EXC_BAD_INSTRUCTION
:
1013 status
->value
.sig
= GDB_EXC_BAD_INSTRUCTION
;
1015 case EXC_ARITHMETIC
:
1016 status
->value
.sig
= GDB_EXC_ARITHMETIC
;
1019 status
->value
.sig
= GDB_EXC_EMULATION
;
1022 if (thread
->event
.ex_data
[0] == EXC_SOFT_SIGNAL
)
1025 gdb_signal_from_host (thread
->event
.ex_data
[1]);
1026 inferior_debug (5, _(" (signal %d: %s)\n"),
1027 thread
->event
.ex_data
[1],
1028 gdb_signal_to_name (status
->value
.sig
));
1030 /* If the thread is stopped because it has received a signal
1031 that gdb has just sent, continue. */
1032 if (thread
->signaled
)
1034 thread
->signaled
= 0;
1035 darwin_send_reply (inf
, thread
);
1036 thread
->msg_state
= DARWIN_RUNNING
;
1037 status
->kind
= TARGET_WAITKIND_IGNORE
;
1041 status
->value
.sig
= GDB_EXC_SOFTWARE
;
1043 case EXC_BREAKPOINT
:
1044 /* Many internal GDB routines expect breakpoints to be reported
1045 as GDB_SIGNAL_TRAP, and will report GDB_EXC_BREAKPOINT
1046 as a spurious signal. */
1047 status
->value
.sig
= GDB_SIGNAL_TRAP
;
1050 status
->value
.sig
= GDB_SIGNAL_UNKNOWN
;
1054 return ptid_t (inf
->pid
, 0, thread
->gdb_port
);
1056 else if (hdr
->msgh_id
== 0x48)
1058 /* MACH_NOTIFY_DEAD_NAME: notification for exit. */
1061 res
= darwin_decode_notify_message (hdr
, &inf
);
1065 /* Should not happen... */
1067 (_("darwin_wait: ill-formatted message (id=0x%x, res=%d)\n"),
1074 if (res
< 0 || inf
== NULL
)
1076 status
->kind
= TARGET_WAITKIND_IGNORE
;
1077 return minus_one_ptid
;
1082 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1084 if (!priv
->no_ptrace
)
1089 res_pid
= wait4 (inf
->pid
, &wstatus
, 0, NULL
);
1090 if (res_pid
< 0 || res_pid
!= inf
->pid
)
1092 printf_unfiltered (_("wait4: res=%d: %s\n"),
1093 res_pid
, safe_strerror (errno
));
1094 status
->kind
= TARGET_WAITKIND_IGNORE
;
1095 return minus_one_ptid
;
1097 if (WIFEXITED (wstatus
))
1099 status
->kind
= TARGET_WAITKIND_EXITED
;
1100 status
->value
.integer
= WEXITSTATUS (wstatus
);
1104 status
->kind
= TARGET_WAITKIND_SIGNALLED
;
1105 status
->value
.sig
= gdb_signal_from_host (WTERMSIG (wstatus
));
1108 inferior_debug (4, _("darwin_wait: pid=%d exit, status=0x%x\n"),
1111 /* Looks necessary on Leopard and harmless... */
1112 wait4 (inf
->pid
, &wstatus
, 0, NULL
);
1114 return ptid_t (inf
->pid
);
1118 inferior_debug (4, _("darwin_wait: pid=%d\n"), inf
->pid
);
1119 status
->kind
= TARGET_WAITKIND_EXITED
;
1120 status
->value
.integer
= 0; /* Don't know. */
1121 return ptid_t (inf
->pid
, 0, 0);
1126 /* Unknown message. */
1127 warning (_("darwin: got unknown message, id: 0x%x"), hdr
->msgh_id
);
1128 status
->kind
= TARGET_WAITKIND_IGNORE
;
1129 return minus_one_ptid
;
1133 darwin_nat_target::cancel_breakpoint (ptid_t ptid
)
1135 /* Arrange for a breakpoint to be hit again later. We will handle
1136 the current event, eventually we will resume this thread, and this
1137 breakpoint will trap again.
1139 If we do not do this, then we run the risk that the user will
1140 delete or disable the breakpoint, but the thread will have already
1143 struct regcache
*regcache
= get_thread_regcache (this, ptid
);
1144 struct gdbarch
*gdbarch
= regcache
->arch ();
1147 pc
= regcache_read_pc (regcache
) - gdbarch_decr_pc_after_break (gdbarch
);
1148 if (breakpoint_inserted_here_p (regcache
->aspace (), pc
))
1150 inferior_debug (4, "cancel_breakpoint for thread 0x%lx\n",
1151 (unsigned long) ptid
.tid ());
1153 /* Back up the PC if necessary. */
1154 if (gdbarch_decr_pc_after_break (gdbarch
))
1155 regcache_write_pc (regcache
, pc
);
1163 darwin_nat_target::wait_1 (ptid_t ptid
, struct target_waitstatus
*status
)
1168 mach_msg_header_t hdr
;
1171 mach_msg_header_t
*hdr
= &msgin
.hdr
;
1173 darwin_thread_t
*thread
;
1176 (2, _("darwin_wait: waiting for a message pid=%d thread=%lx\n"),
1177 ptid
.pid (), ptid
.tid ());
1179 /* Handle fake stop events at first. */
1180 if (darwin_inf_fake_stop
!= NULL
)
1182 inferior
*inf
= darwin_inf_fake_stop
;
1183 darwin_inf_fake_stop
= NULL
;
1185 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1187 status
->kind
= TARGET_WAITKIND_STOPPED
;
1188 status
->value
.sig
= GDB_SIGNAL_TRAP
;
1189 thread
= priv
->threads
[0];
1190 thread
->msg_state
= DARWIN_STOPPED
;
1191 return ptid_t (inf
->pid
, 0, thread
->gdb_port
);
1196 /* set_sigint_trap (); */
1198 /* Wait for a message. */
1199 kret
= mach_msg (&msgin
.hdr
, MACH_RCV_MSG
| MACH_RCV_INTERRUPT
, 0,
1200 sizeof (msgin
.data
), darwin_port_set
, 0, MACH_PORT_NULL
);
1202 /* clear_sigint_trap (); */
1204 if (kret
== MACH_RCV_INTERRUPTED
)
1206 status
->kind
= TARGET_WAITKIND_IGNORE
;
1207 return minus_one_ptid
;
1210 if (kret
!= MACH_MSG_SUCCESS
)
1212 inferior_debug (5, _("mach_msg: ret=0x%x\n"), kret
);
1213 status
->kind
= TARGET_WAITKIND_SPURIOUS
;
1214 return minus_one_ptid
;
1217 /* Debug: display message. */
1218 if (darwin_debug_flag
> 10)
1219 darwin_dump_message (hdr
, darwin_debug_flag
> 11);
1222 res
= decode_message (hdr
, &thread
, &inf
, status
);
1223 if (res
== minus_one_ptid
)
1226 /* Early return in case an inferior has exited. */
1230 while (status
->kind
== TARGET_WAITKIND_IGNORE
);
1232 /* Stop all tasks. */
1233 for (inferior
*inf
: all_inferiors (this))
1235 darwin_suspend_inferior (inf
);
1236 check_new_threads (inf
);
1239 /* Read pending messages. */
1242 struct target_waitstatus status2
;
1245 kret
= mach_msg (&msgin
.hdr
,
1246 MACH_RCV_MSG
| MACH_RCV_TIMEOUT
, 0,
1247 sizeof (msgin
.data
), darwin_port_set
, 1, MACH_PORT_NULL
);
1249 if (kret
== MACH_RCV_TIMED_OUT
)
1251 if (kret
!= MACH_MSG_SUCCESS
)
1254 (5, _("darwin_wait: mach_msg(pending) ret=0x%x\n"), kret
);
1258 /* Debug: display message. */
1259 if (darwin_debug_flag
> 10)
1260 darwin_dump_message (hdr
, darwin_debug_flag
> 11);
1263 ptid2
= decode_message (hdr
, &thread
, &inf
, &status2
);
1265 if (inf
!= NULL
&& thread
!= NULL
1266 && thread
->event
.ex_type
== EXC_BREAKPOINT
)
1268 if (thread
->single_step
1269 || cancel_breakpoint (ptid_t (inf
->pid
, 0, thread
->gdb_port
)))
1271 gdb_assert (thread
->msg_state
== DARWIN_MESSAGE
);
1272 darwin_send_reply (inf
, thread
);
1273 thread
->msg_state
= DARWIN_RUNNING
;
1277 (3, _("darwin_wait: thread 0x%x hit a non-gdb breakpoint\n"),
1281 inferior_debug (3, _("darwin_wait: unhandled pending message\n"));
1287 darwin_nat_target::wait (ptid_t ptid
, struct target_waitstatus
*status
,
1288 target_wait_flags options
)
1290 return wait_1 (ptid
, status
);
1294 darwin_nat_target::interrupt ()
1296 struct inferior
*inf
= current_inferior ();
1297 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1299 /* FIXME: handle in no_ptrace mode. */
1300 gdb_assert (!priv
->no_ptrace
);
1301 ::kill (inf
->pid
, SIGINT
);
1304 /* Deallocate threads port and vector. */
1307 darwin_deallocate_threads (struct inferior
*inf
)
1309 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1311 for (darwin_thread_t
*t
: priv
->threads
)
1313 kern_return_t kret
= mach_port_deallocate (gdb_task
, t
->gdb_port
);
1314 MACH_CHECK_ERROR (kret
);
1317 priv
->threads
.clear ();
1321 darwin_nat_target::mourn_inferior ()
1323 struct inferior
*inf
= current_inferior ();
1324 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1328 /* Deallocate threads. */
1329 darwin_deallocate_threads (inf
);
1331 /* Remove notify_port from darwin_port_set. */
1332 kret
= mach_port_move_member (gdb_task
,
1333 priv
->notify_port
, MACH_PORT_NULL
);
1334 MACH_CHECK_ERROR (kret
);
1336 /* Remove task port dead_name notification. */
1337 kret
= mach_port_request_notification (gdb_task
, priv
->task
,
1338 MACH_NOTIFY_DEAD_NAME
, 0,
1340 MACH_MSG_TYPE_MAKE_SEND_ONCE
,
1342 /* This can fail if the task is dead. */
1343 inferior_debug (4, "task=0x%x, prev=0x%x, notify_port=0x%x\n",
1344 priv
->task
, prev
, priv
->notify_port
);
1346 if (kret
== KERN_SUCCESS
)
1348 kret
= mach_port_deallocate (gdb_task
, prev
);
1349 MACH_CHECK_ERROR (kret
);
1352 /* Destroy notify_port. */
1353 kret
= mach_port_destroy (gdb_task
, priv
->notify_port
);
1354 MACH_CHECK_ERROR (kret
);
1356 /* Deallocate saved exception ports. */
1357 darwin_deallocate_exception_ports (priv
);
1359 /* Deallocate task port. */
1360 kret
= mach_port_deallocate (gdb_task
, priv
->task
);
1361 MACH_CHECK_ERROR (kret
);
1365 inf_child_target::mourn_inferior ();
1369 darwin_reply_to_all_pending_messages (struct inferior
*inf
)
1371 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1373 for (darwin_thread_t
*t
: priv
->threads
)
1375 if (t
->msg_state
== DARWIN_MESSAGE
)
1376 darwin_resume_thread (inf
, t
, 0, 0);
1381 darwin_nat_target::stop_inferior (inferior
*inf
)
1383 struct target_waitstatus wstatus
;
1386 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1388 gdb_assert (inf
!= NULL
);
1390 darwin_suspend_inferior (inf
);
1392 darwin_reply_to_all_pending_messages (inf
);
1394 if (priv
->no_ptrace
)
1397 res
= ::kill (inf
->pid
, SIGSTOP
);
1399 warning (_("cannot kill: %s"), safe_strerror (errno
));
1401 /* Wait until the process is really stopped. */
1404 ptid
= wait_1 (ptid_t (inf
->pid
), &wstatus
);
1405 if (wstatus
.kind
== TARGET_WAITKIND_STOPPED
1406 && wstatus
.value
.sig
== GDB_SIGNAL_STOP
)
1411 static kern_return_t
1412 darwin_save_exception_ports (darwin_inferior
*inf
)
1416 inf
->exception_info
.count
=
1417 sizeof (inf
->exception_info
.ports
) / sizeof (inf
->exception_info
.ports
[0]);
1419 kret
= task_get_exception_ports
1420 (inf
->task
, EXC_MASK_ALL
, inf
->exception_info
.masks
,
1421 &inf
->exception_info
.count
, inf
->exception_info
.ports
,
1422 inf
->exception_info
.behaviors
, inf
->exception_info
.flavors
);
1426 static kern_return_t
1427 darwin_restore_exception_ports (darwin_inferior
*inf
)
1432 for (i
= 0; i
< inf
->exception_info
.count
; i
++)
1434 kret
= task_set_exception_ports
1435 (inf
->task
, inf
->exception_info
.masks
[i
], inf
->exception_info
.ports
[i
],
1436 inf
->exception_info
.behaviors
[i
], inf
->exception_info
.flavors
[i
]);
1437 if (kret
!= KERN_SUCCESS
)
1441 return KERN_SUCCESS
;
1444 /* Deallocate saved exception ports. */
1447 darwin_deallocate_exception_ports (darwin_inferior
*inf
)
1452 for (i
= 0; i
< inf
->exception_info
.count
; i
++)
1454 kret
= mach_port_deallocate (gdb_task
, inf
->exception_info
.ports
[i
]);
1455 MACH_CHECK_ERROR (kret
);
1457 inf
->exception_info
.count
= 0;
1461 darwin_setup_exceptions (struct inferior
*inf
)
1463 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1465 exception_mask_t mask
;
1467 kret
= darwin_save_exception_ports (priv
);
1468 if (kret
!= KERN_SUCCESS
)
1469 error (_("Unable to save exception ports, task_get_exception_ports"
1473 /* Set exception port. */
1474 if (enable_mach_exceptions
)
1475 mask
= EXC_MASK_ALL
;
1477 mask
= EXC_MASK_SOFTWARE
| EXC_MASK_BREAKPOINT
;
1478 kret
= task_set_exception_ports (priv
->task
, mask
, darwin_ex_port
,
1479 EXCEPTION_DEFAULT
, THREAD_STATE_NONE
);
1480 if (kret
!= KERN_SUCCESS
)
1481 error (_("Unable to set exception ports, task_set_exception_ports"
1487 darwin_nat_target::kill ()
1489 struct inferior
*inf
= current_inferior ();
1490 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1491 struct target_waitstatus wstatus
;
1496 if (inferior_ptid
== null_ptid
)
1499 gdb_assert (inf
!= NULL
);
1501 kret
= darwin_restore_exception_ports (priv
);
1502 MACH_CHECK_ERROR (kret
);
1504 darwin_reply_to_all_pending_messages (inf
);
1506 res
= ::kill (inf
->pid
, 9);
1510 /* On MacOS version Sierra, the darwin_restore_exception_ports call
1511 does not work as expected.
1512 When the kill function is called, the SIGKILL signal is received
1513 by gdb whereas it should have been received by the kernel since
1514 the exception ports have been restored.
1515 This behavior is not the expected one thus gdb does not reply to
1516 the received SIGKILL message. This situation leads to a "busy"
1517 resource from the kernel point of view and the inferior is never
1518 released, causing it to remain as a zombie process, even after
1520 To work around this, we mark all the threads of the inferior as
1521 signaled thus darwin_decode_message function knows that the kill
1522 signal was sent by gdb and will take the appropriate action
1523 (cancel signal and reply to the signal message). */
1524 for (darwin_thread_t
*thread
: priv
->threads
)
1525 thread
->signaled
= 1;
1527 darwin_resume_inferior (inf
);
1529 ptid
= wait_1 (ptid_t (inf
->pid
), &wstatus
);
1531 else if (errno
!= ESRCH
)
1532 warning (_("Failed to kill inferior: kill (%d, 9) returned [%s]"),
1533 inf
->pid
, safe_strerror (errno
));
1535 target_mourn_inferior (ptid_t (inf
->pid
));
1539 darwin_setup_request_notification (struct inferior
*inf
)
1541 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1543 mach_port_t prev_not
;
1545 kret
= mach_port_request_notification (gdb_task
, priv
->task
,
1546 MACH_NOTIFY_DEAD_NAME
, 0,
1548 MACH_MSG_TYPE_MAKE_SEND_ONCE
,
1550 if (kret
!= KERN_SUCCESS
)
1551 error (_("Termination notification request failed, "
1552 "mach_port_request_notification\n"
1555 if (prev_not
!= MACH_PORT_NULL
)
1557 /* This is unexpected, as there should not be any previously
1558 registered notification request. But this is not a fatal
1559 issue, so just emit a warning. */
1561 A task termination request was registered before the debugger registered\n\
1562 its own. This is unexpected, but should otherwise not have any actual\n\
1563 impact on the debugging session."));
1568 darwin_attach_pid (struct inferior
*inf
)
1572 darwin_inferior
*priv
= new darwin_inferior
;
1573 inf
->priv
.reset (priv
);
1577 kret
= task_for_pid (gdb_task
, inf
->pid
, &priv
->task
);
1578 if (kret
!= KERN_SUCCESS
)
1582 if (!inf
->attach_flag
)
1585 waitpid (inf
->pid
, &status
, 0);
1589 (_("Unable to find Mach task port for process-id %d: %s (0x%lx).\n"
1590 " (please check gdb is codesigned - see taskgated(8))"),
1591 inf
->pid
, mach_error_string (kret
), (unsigned long) kret
);
1594 inferior_debug (2, _("inferior task: 0x%x, pid: %d\n"),
1595 priv
->task
, inf
->pid
);
1597 if (darwin_ex_port
== MACH_PORT_NULL
)
1599 /* Create a port to get exceptions. */
1600 kret
= mach_port_allocate (gdb_task
, MACH_PORT_RIGHT_RECEIVE
,
1602 if (kret
!= KERN_SUCCESS
)
1603 error (_("Unable to create exception port, mach_port_allocate "
1607 kret
= mach_port_insert_right (gdb_task
, darwin_ex_port
,
1609 MACH_MSG_TYPE_MAKE_SEND
);
1610 if (kret
!= KERN_SUCCESS
)
1611 error (_("Unable to create exception port, mach_port_insert_right "
1615 /* Create a port set and put ex_port in it. */
1616 kret
= mach_port_allocate (gdb_task
, MACH_PORT_RIGHT_PORT_SET
,
1618 if (kret
!= KERN_SUCCESS
)
1619 error (_("Unable to create port set, mach_port_allocate "
1623 kret
= mach_port_move_member (gdb_task
, darwin_ex_port
,
1625 if (kret
!= KERN_SUCCESS
)
1626 error (_("Unable to move exception port into new port set, "
1627 "mach_port_move_member\n"
1632 /* Create a port to be notified when the child task terminates. */
1633 kret
= mach_port_allocate (gdb_task
, MACH_PORT_RIGHT_RECEIVE
,
1634 &priv
->notify_port
);
1635 if (kret
!= KERN_SUCCESS
)
1636 error (_("Unable to create notification port, mach_port_allocate "
1640 kret
= mach_port_move_member (gdb_task
,
1641 priv
->notify_port
, darwin_port_set
);
1642 if (kret
!= KERN_SUCCESS
)
1643 error (_("Unable to move notification port into new port set, "
1644 "mach_port_move_member\n"
1648 darwin_setup_request_notification (inf
);
1650 darwin_setup_exceptions (inf
);
1652 catch (const gdb_exception
&ex
)
1654 exit_inferior (inf
);
1655 switch_to_no_thread ();
1660 target_ops
*darwin_ops
= get_native_target ();
1661 if (!target_is_pushed (darwin_ops
))
1662 push_target (darwin_ops
);
1665 /* Get the thread_info object corresponding to this darwin_thread_info. */
1667 static struct thread_info
*
1668 thread_info_from_private_thread_info (darwin_thread_info
*pti
)
1670 for (struct thread_info
*it
: all_threads ())
1672 darwin_thread_info
*iter_pti
= get_darwin_thread_info (it
);
1674 if (iter_pti
->gdb_port
== pti
->gdb_port
)
1678 gdb_assert_not_reached ("did not find gdb thread for darwin thread");
1682 darwin_nat_target::init_thread_list (inferior
*inf
)
1684 check_new_threads (inf
);
1686 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1688 gdb_assert (!priv
->threads
.empty ());
1690 darwin_thread_info
*first_pti
= priv
->threads
.front ();
1691 struct thread_info
*first_thread
1692 = thread_info_from_private_thread_info (first_pti
);
1694 switch_to_thread (first_thread
);
1697 /* The child must synchronize with gdb: gdb must set the exception port
1698 before the child call PTRACE_SIGEXC. We use a pipe to achieve this.
1699 FIXME: is there a lighter way ? */
1700 static int ptrace_fds
[2];
1703 darwin_ptrace_me (void)
1708 /* Close write end point. */
1709 if (close (ptrace_fds
[1]) < 0)
1710 trace_start_error_with_name ("close");
1712 /* Wait until gdb is ready. */
1713 res
= read (ptrace_fds
[0], &c
, 1);
1715 trace_start_error (_("unable to read from pipe, read returned: %d"), res
);
1717 if (close (ptrace_fds
[0]) < 0)
1718 trace_start_error_with_name ("close");
1720 /* Get rid of privileges. */
1721 if (setegid (getgid ()) < 0)
1722 trace_start_error_with_name ("setegid");
1725 if (PTRACE (PT_TRACE_ME
, 0, 0, 0) < 0)
1726 trace_start_error_with_name ("PTRACE");
1728 /* Redirect signals to exception port. */
1729 if (PTRACE (PT_SIGEXC
, 0, 0, 0) < 0)
1730 trace_start_error_with_name ("PTRACE");
1733 /* Dummy function to be sure fork_inferior uses fork(2) and not vfork(2). */
1735 darwin_pre_ptrace (void)
1737 if (pipe (ptrace_fds
) != 0)
1741 error (_("unable to create a pipe: %s"), safe_strerror (errno
));
1744 mark_fd_no_cloexec (ptrace_fds
[0]);
1745 mark_fd_no_cloexec (ptrace_fds
[1]);
1749 darwin_nat_target::ptrace_him (int pid
)
1751 struct inferior
*inf
= current_inferior ();
1753 darwin_attach_pid (inf
);
1755 /* Let's the child run. */
1756 ::close (ptrace_fds
[0]);
1757 ::close (ptrace_fds
[1]);
1759 unmark_fd_no_cloexec (ptrace_fds
[0]);
1760 unmark_fd_no_cloexec (ptrace_fds
[1]);
1762 init_thread_list (inf
);
1764 gdb_startup_inferior (pid
, START_INFERIOR_TRAPS_EXPECTED
);
1768 darwin_execvp (const char *file
, char * const argv
[], char * const env
[])
1770 posix_spawnattr_t attr
;
1774 res
= posix_spawnattr_init (&attr
);
1778 (gdb_stderr
, "Cannot initialize attribute for posix_spawn\n");
1782 /* Do like execve: replace the image. */
1783 ps_flags
= POSIX_SPAWN_SETEXEC
;
1785 /* Disable ASLR. The constant doesn't look to be available outside the
1786 kernel include files. */
1787 #ifndef _POSIX_SPAWN_DISABLE_ASLR
1788 #define _POSIX_SPAWN_DISABLE_ASLR 0x0100
1790 ps_flags
|= _POSIX_SPAWN_DISABLE_ASLR
;
1791 res
= posix_spawnattr_setflags (&attr
, ps_flags
);
1794 fprintf_unfiltered (gdb_stderr
, "Cannot set posix_spawn flags\n");
1798 posix_spawnp (NULL
, argv
[0], NULL
, &attr
, argv
, env
);
1801 /* Read kernel version, and return TRUE if this host may have System
1802 Integrity Protection (Sierra or later). */
1808 size_t sz
= sizeof (str
);
1811 ret
= sysctlbyname ("kern.osrelease", str
, &sz
, NULL
, 0);
1812 if (ret
== 0 && sz
< sizeof (str
))
1814 unsigned long ver
= strtoul (str
, NULL
, 10);
1821 /* A helper for maybe_cache_shell. This copies the shell to the
1822 cache. It will throw an exception on any failure. */
1825 copy_shell_to_cache (const char *shell
, const std::string
&new_name
)
1827 scoped_fd
from_fd (gdb_open_cloexec (shell
, O_RDONLY
, 0));
1828 if (from_fd
.get () < 0)
1829 error (_("Could not open shell (%s) for reading: %s"),
1830 shell
, safe_strerror (errno
));
1832 std::string new_dir
= ldirname (new_name
.c_str ());
1833 if (!mkdir_recursive (new_dir
.c_str ()))
1834 error (_("Could not make cache directory \"%s\": %s"),
1835 new_dir
.c_str (), safe_strerror (errno
));
1837 gdb::char_vector temp_name
= make_temp_filename (new_name
);
1838 scoped_fd
to_fd (gdb_mkostemp_cloexec (&temp_name
[0]));
1839 gdb::unlinker
unlink_file_on_error (temp_name
.data ());
1841 if (to_fd
.get () < 0)
1842 error (_("Could not open temporary file \"%s\" for writing: %s"),
1843 temp_name
.data (), safe_strerror (errno
));
1845 if (fcopyfile (from_fd
.get (), to_fd
.get (), nullptr,
1846 COPYFILE_STAT
| COPYFILE_DATA
) != 0)
1847 error (_("Could not copy shell to cache as \"%s\": %s"),
1848 temp_name
.data (), safe_strerror (errno
));
1850 /* Be sure that the caching is atomic so that we don't get bad
1851 results from multiple copies of gdb running at the same time. */
1852 if (rename (temp_name
.data (), new_name
.c_str ()) != 0)
1853 error (_("Could not rename shell cache file to \"%s\": %s"),
1854 new_name
.c_str (), safe_strerror (errno
));
1856 unlink_file_on_error
.keep ();
1859 /* If $SHELL is restricted, try to cache a copy. Starting with El
1860 Capitan, macOS introduced System Integrity Protection. Among other
1861 things, this prevents certain executables from being ptrace'd. In
1862 particular, executables in /bin, like most shells, are affected.
1863 To work around this, while preserving command-line glob expansion
1864 and redirections, gdb will cache a copy of the shell. Return true
1865 if all is well -- either the shell is not subject to SIP or it has
1866 been successfully cached. Returns false if something failed. */
1869 maybe_cache_shell ()
1871 /* SF_RESTRICTED is defined in sys/stat.h and lets us determine if a
1872 given file is subject to SIP. */
1873 #ifdef SF_RESTRICTED
1875 /* If a check fails we want to revert -- maybe the user deleted the
1876 cache while gdb was running, or something like that. */
1877 copied_shell
= nullptr;
1879 const char *shell
= get_shell ();
1880 if (!IS_ABSOLUTE_PATH (shell
))
1882 warning (_("This version of macOS has System Integrity Protection.\n\
1883 Normally gdb would try to work around this by caching a copy of your shell,\n\
1884 but because your shell (%s) is not an absolute path, this is being skipped."),
1890 if (stat (shell
, &sb
) < 0)
1892 warning (_("This version of macOS has System Integrity Protection.\n\
1893 Normally gdb would try to work around this by caching a copy of your shell,\n\
1894 but because gdb could not stat your shell (%s), this is being skipped.\n\
1895 The error was: %s"),
1896 shell
, safe_strerror (errno
));
1900 if ((sb
.st_flags
& SF_RESTRICTED
) == 0)
1903 /* Put the copy somewhere like ~/Library/Caches/gdb/bin/sh. */
1904 std::string new_name
= get_standard_cache_dir ();
1905 /* There's no need to insert a directory separator here, because
1906 SHELL is known to be absolute. */
1907 new_name
.append (shell
);
1909 /* Maybe it was cached by some earlier gdb. */
1910 if (stat (new_name
.c_str (), &sb
) != 0 || !S_ISREG (sb
.st_mode
))
1914 copy_shell_to_cache (shell
, new_name
);
1916 catch (const gdb_exception_error
&ex
)
1918 warning (_("This version of macOS has System Integrity Protection.\n\
1919 Because `startup-with-shell' is enabled, gdb tried to work around SIP by\n\
1920 caching a copy of your shell. However, this failed:\n\
1922 If you correct the problem, gdb will automatically try again the next time\n\
1923 you \"run\". To prevent these attempts, you can use:\n\
1924 set startup-with-shell off"),
1929 printf_filtered (_("Note: this version of macOS has System Integrity Protection.\n\
1930 Because `startup-with-shell' is enabled, gdb has worked around this by\n\
1931 caching a copy of your shell. The shell used by \"run\" is now:\n\
1936 /* We need to make sure that the new name has the correct lifetime. */
1937 static std::string saved_shell
= std::move (new_name
);
1938 copied_shell
= saved_shell
.c_str ();
1940 #endif /* SF_RESTRICTED */
1946 darwin_nat_target::create_inferior (const char *exec_file
,
1947 const std::string
&allargs
,
1948 char **env
, int from_tty
)
1950 gdb::optional
<scoped_restore_tmpl
<bool>> restore_startup_with_shell
;
1951 darwin_nat_target
*the_target
= this;
1953 if (startup_with_shell
&& may_have_sip ())
1955 if (!maybe_cache_shell ())
1957 warning (_("startup-with-shell is now temporarily disabled"));
1958 restore_startup_with_shell
.emplace (&startup_with_shell
, 0);
1962 /* Do the hard work. */
1963 fork_inferior (exec_file
, allargs
, env
, darwin_ptrace_me
,
1964 [the_target
] (int pid
)
1966 the_target
->ptrace_him (pid
);
1968 darwin_pre_ptrace
, copied_shell
,
1973 /* Set things up such that the next call to darwin_wait will immediately
1974 return a fake stop event for inferior INF.
1976 This assumes that the inferior's thread list has been initialized,
1977 as it will suspend the inferior's first thread. */
1980 darwin_setup_fake_stop_event (struct inferior
*inf
)
1982 darwin_inferior
*priv
= get_darwin_inferior (inf
);
1983 darwin_thread_t
*thread
;
1986 gdb_assert (darwin_inf_fake_stop
== NULL
);
1987 darwin_inf_fake_stop
= inf
;
1989 /* When detecting a fake pending stop event, darwin_wait returns
1990 an event saying that the first thread is in a DARWIN_STOPPED
1991 state. To make that accurate, we need to suspend that thread
1992 as well. Otherwise, we'll try resuming it when resuming the
1993 inferior, and get a warning because the thread's suspend count
1994 is already zero, making the resume request useless. */
1995 thread
= priv
->threads
[0];
1996 kret
= thread_suspend (thread
->gdb_port
);
1997 MACH_CHECK_ERROR (kret
);
2000 /* Attach to process PID, then initialize for debugging it
2001 and wait for the trace-trap that results from attaching. */
2003 darwin_nat_target::attach (const char *args
, int from_tty
)
2006 struct inferior
*inf
;
2008 pid
= parse_pid_to_attach (args
);
2010 if (pid
== getpid ()) /* Trying to masturbate? */
2011 error (_("I refuse to debug myself!"));
2015 const char *exec_file
= get_exec_file (0);
2018 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file
,
2019 target_pid_to_str (ptid_t (pid
)).c_str ());
2021 printf_unfiltered (_("Attaching to %s\n"),
2022 target_pid_to_str (ptid_t (pid
)).c_str ());
2025 if (pid
== 0 || ::kill (pid
, 0) < 0)
2026 error (_("Can't attach to process %d: %s (%d)"),
2027 pid
, safe_strerror (errno
), errno
);
2029 inf
= current_inferior ();
2030 inferior_appeared (inf
, pid
);
2031 inf
->attach_flag
= 1;
2033 darwin_attach_pid (inf
);
2035 darwin_suspend_inferior (inf
);
2037 init_thread_list (inf
);
2039 darwin_inferior
*priv
= get_darwin_inferior (inf
);
2041 darwin_check_osabi (priv
, inferior_ptid
.tid ());
2043 darwin_setup_fake_stop_event (inf
);
2045 priv
->no_ptrace
= 1;
2048 /* Take a program previously attached to and detaches it.
2049 The program resumes execution and will no longer stop
2050 on signals, etc. We'd better not have left any breakpoints
2051 in the program or it'll die when it hits one. For this
2052 to work, it may be necessary for the process to have been
2053 previously attached. It *might* work if the program was
2054 started via fork. */
2057 darwin_nat_target::detach (inferior
*inf
, int from_tty
)
2059 darwin_inferior
*priv
= get_darwin_inferior (inf
);
2063 /* Display message. */
2064 target_announce_detach (from_tty
);
2066 /* If ptrace() is in use, stop the process. */
2067 if (!priv
->no_ptrace
)
2068 stop_inferior (inf
);
2070 kret
= darwin_restore_exception_ports (priv
);
2071 MACH_CHECK_ERROR (kret
);
2073 if (!priv
->no_ptrace
)
2075 res
= PTRACE (PT_DETACH
, inf
->pid
, 0, 0);
2077 printf_unfiltered (_("Unable to detach from process-id %d: %s (%d)"),
2078 inf
->pid
, safe_strerror (errno
), errno
);
2081 darwin_reply_to_all_pending_messages (inf
);
2083 /* When using ptrace, we have just performed a PT_DETACH, which
2084 resumes the inferior. On the other hand, when we are not using
2085 ptrace, we need to resume its execution ourselves. */
2086 if (priv
->no_ptrace
)
2087 darwin_resume_inferior (inf
);
2093 darwin_nat_target::pid_to_str (ptid_t ptid
)
2095 long tid
= ptid
.tid ();
2098 return string_printf (_("Thread 0x%lx of process %u"),
2101 return normal_pid_to_str (ptid
);
2105 darwin_nat_target::thread_alive (ptid_t ptid
)
2110 /* If RDADDR is not NULL, read inferior task's LEN bytes from ADDR and
2111 copy it to RDADDR in gdb's address space.
2112 If WRADDR is not NULL, write gdb's LEN bytes from WRADDR and copy it
2113 to ADDR in inferior task's address space.
2114 Return 0 on failure; number of bytes read / written otherwise. */
2117 darwin_read_write_inferior (task_t task
, CORE_ADDR addr
,
2118 gdb_byte
*rdaddr
, const gdb_byte
*wraddr
,
2122 mach_vm_size_t res_length
= 0;
2124 inferior_debug (8, _("darwin_read_write_inferior(task=0x%x, %s, len=%s)\n"),
2125 task
, core_addr_to_string (addr
), pulongest (length
));
2130 mach_vm_size_t count
;
2132 /* According to target.h(to_xfer_partial), one and only one may be
2134 gdb_assert (wraddr
== NULL
);
2136 kret
= mach_vm_read_overwrite (task
, addr
, length
,
2137 (mach_vm_address_t
) rdaddr
, &count
);
2138 if (kret
!= KERN_SUCCESS
)
2141 (1, _("darwin_read_write_inferior: mach_vm_read failed at %s: %s"),
2142 core_addr_to_string (addr
), mach_error_string (kret
));
2149 gdb_assert (wraddr
!= NULL
);
2153 mach_vm_address_t offset
= addr
& (mach_page_size
- 1);
2154 mach_vm_address_t region_address
= (mach_vm_address_t
) (addr
- offset
);
2155 mach_vm_size_t aligned_length
=
2156 (mach_vm_size_t
) PAGE_ROUND (offset
+ length
);
2157 vm_region_submap_short_info_data_64_t info
;
2158 mach_msg_type_number_t count
= VM_REGION_SUBMAP_SHORT_INFO_COUNT_64
;
2159 natural_t region_depth
= 1000;
2160 mach_vm_address_t region_start
= region_address
;
2161 mach_vm_size_t region_length
;
2162 mach_vm_size_t write_length
;
2164 /* Read page protection. */
2165 kret
= mach_vm_region_recurse
2166 (task
, ®ion_start
, ®ion_length
, ®ion_depth
,
2167 (vm_region_recurse_info_t
) &info
, &count
);
2169 if (kret
!= KERN_SUCCESS
)
2171 inferior_debug (1, _("darwin_read_write_inferior: "
2172 "mach_vm_region_recurse failed at %s: %s\n"),
2173 core_addr_to_string (region_address
),
2174 mach_error_string (kret
));
2179 (9, _("darwin_read_write_inferior: "
2180 "mach_vm_region_recurse addr=%s, start=%s, len=%s\n"),
2181 core_addr_to_string (region_address
),
2182 core_addr_to_string (region_start
),
2183 core_addr_to_string (region_length
));
2185 /* Check for holes in memory. */
2186 if (region_start
> region_address
)
2188 warning (_("No memory at %s (vs %s+0x%x). Nothing written"),
2189 core_addr_to_string (region_address
),
2190 core_addr_to_string (region_start
),
2191 (unsigned)region_length
);
2195 /* Adjust the length. */
2196 region_length
-= (region_address
- region_start
);
2197 if (region_length
> aligned_length
)
2198 region_length
= aligned_length
;
2200 /* Make the pages RW. */
2201 if (!(info
.protection
& VM_PROT_WRITE
))
2203 vm_prot_t prot
= VM_PROT_READ
| VM_PROT_WRITE
;
2205 kret
= mach_vm_protect (task
, region_address
, region_length
,
2207 if (kret
!= KERN_SUCCESS
)
2209 prot
|= VM_PROT_COPY
;
2210 kret
= mach_vm_protect (task
, region_address
, region_length
,
2213 if (kret
!= KERN_SUCCESS
)
2215 warning (_("darwin_read_write_inferior: "
2216 "mach_vm_protect failed at %s "
2217 "(len=0x%lx, prot=0x%x): %s"),
2218 core_addr_to_string (region_address
),
2219 (unsigned long) region_length
, (unsigned) prot
,
2220 mach_error_string (kret
));
2225 if (offset
+ length
> region_length
)
2226 write_length
= region_length
- offset
;
2228 write_length
= length
;
2231 kret
= mach_vm_write (task
, addr
, (vm_offset_t
) wraddr
, write_length
);
2232 if (kret
!= KERN_SUCCESS
)
2234 warning (_("darwin_read_write_inferior: mach_vm_write failed: %s"),
2235 mach_error_string (kret
));
2239 /* Restore page rights. */
2240 if (!(info
.protection
& VM_PROT_WRITE
))
2242 kret
= mach_vm_protect (task
, region_address
, region_length
,
2243 FALSE
, info
.protection
);
2244 if (kret
!= KERN_SUCCESS
)
2246 warning (_("darwin_read_write_inferior: "
2247 "mach_vm_protect restore failed at %s "
2249 core_addr_to_string (region_address
),
2250 (unsigned long) region_length
,
2251 mach_error_string (kret
));
2255 addr
+= write_length
;
2256 wraddr
+= write_length
;
2257 res_length
+= write_length
;
2258 length
-= write_length
;
2264 /* Read LENGTH bytes at offset ADDR of task_dyld_info for TASK, and copy them
2265 to RDADDR (in big endian).
2266 Return 0 on failure; number of bytes read / written otherwise. */
2268 #ifdef TASK_DYLD_INFO_COUNT
2269 /* This is not available in Darwin 9. */
2270 static enum target_xfer_status
2271 darwin_read_dyld_info (task_t task
, CORE_ADDR addr
, gdb_byte
*rdaddr
,
2272 ULONGEST length
, ULONGEST
*xfered_len
)
2274 struct task_dyld_info task_dyld_info
;
2275 mach_msg_type_number_t count
= TASK_DYLD_INFO_COUNT
;
2278 if (addr
!= 0 || length
> sizeof (mach_vm_address_t
))
2279 return TARGET_XFER_EOF
;
2281 kret
= task_info (task
, TASK_DYLD_INFO
,
2282 (task_info_t
) &task_dyld_info
, &count
);
2283 MACH_CHECK_ERROR (kret
);
2284 if (kret
!= KERN_SUCCESS
)
2285 return TARGET_XFER_E_IO
;
2287 store_unsigned_integer (rdaddr
, length
, BFD_ENDIAN_BIG
,
2288 task_dyld_info
.all_image_info_addr
);
2289 *xfered_len
= (ULONGEST
) length
;
2290 return TARGET_XFER_OK
;
2296 enum target_xfer_status
2297 darwin_nat_target::xfer_partial (enum target_object object
, const char *annex
,
2298 gdb_byte
*readbuf
, const gdb_byte
*writebuf
,
2299 ULONGEST offset
, ULONGEST len
,
2300 ULONGEST
*xfered_len
)
2302 struct inferior
*inf
= current_inferior ();
2303 darwin_inferior
*priv
= get_darwin_inferior (inf
);
2306 (8, _("darwin_xfer_partial(%s, %s, rbuf=%s, wbuf=%s) pid=%u\n"),
2307 core_addr_to_string (offset
), pulongest (len
),
2308 host_address_to_string (readbuf
), host_address_to_string (writebuf
),
2313 case TARGET_OBJECT_MEMORY
:
2315 int l
= darwin_read_write_inferior (priv
->task
, offset
,
2316 readbuf
, writebuf
, len
);
2319 return TARGET_XFER_EOF
;
2323 *xfered_len
= (ULONGEST
) l
;
2324 return TARGET_XFER_OK
;
2327 #ifdef TASK_DYLD_INFO_COUNT
2328 case TARGET_OBJECT_DARWIN_DYLD_INFO
:
2329 if (writebuf
!= NULL
|| readbuf
== NULL
)
2331 /* Support only read. */
2332 return TARGET_XFER_E_IO
;
2334 return darwin_read_dyld_info (priv
->task
, offset
, readbuf
, len
,
2338 return TARGET_XFER_E_IO
;
2344 set_enable_mach_exceptions (const char *args
, int from_tty
,
2345 struct cmd_list_element
*c
)
2347 if (inferior_ptid
!= null_ptid
)
2349 struct inferior
*inf
= current_inferior ();
2350 darwin_inferior
*priv
= get_darwin_inferior (inf
);
2351 exception_mask_t mask
;
2354 if (enable_mach_exceptions
)
2355 mask
= EXC_MASK_ALL
;
2358 darwin_restore_exception_ports (priv
);
2359 mask
= EXC_MASK_SOFTWARE
| EXC_MASK_BREAKPOINT
;
2361 kret
= task_set_exception_ports (priv
->task
, mask
, darwin_ex_port
,
2362 EXCEPTION_DEFAULT
, THREAD_STATE_NONE
);
2363 MACH_CHECK_ERROR (kret
);
2368 darwin_nat_target::pid_to_exec_file (int pid
)
2370 static char path
[PATH_MAX
];
2373 res
= proc_pidinfo (pid
, PROC_PIDPATHINFO
, 0, path
, PATH_MAX
);
2381 darwin_nat_target::get_ada_task_ptid (long lwp
, long thread
)
2383 struct inferior
*inf
= current_inferior ();
2384 darwin_inferior
*priv
= get_darwin_inferior (inf
);
2386 mach_port_name_array_t names
;
2387 mach_msg_type_number_t names_count
;
2388 mach_port_type_array_t types
;
2389 mach_msg_type_number_t types_count
;
2392 /* First linear search. */
2393 for (darwin_thread_t
*t
: priv
->threads
)
2395 if (t
->inf_port
== lwp
)
2396 return ptid_t (inferior_ptid
.pid (), 0, t
->gdb_port
);
2399 /* Maybe the port was never extract. Do it now. */
2401 /* First get inferior port names. */
2402 kret
= mach_port_names (priv
->task
, &names
, &names_count
, &types
,
2404 MACH_CHECK_ERROR (kret
);
2405 if (kret
!= KERN_SUCCESS
)
2408 /* For each name, copy the right in the gdb space and then compare with
2409 our view of the inferior threads. We don't forget to deallocate the
2411 for (int i
= 0; i
< names_count
; i
++)
2413 mach_port_t local_name
;
2414 mach_msg_type_name_t local_type
;
2416 /* We just need to know the corresponding name in gdb name space.
2417 So extract and deallocate the right. */
2418 kret
= mach_port_extract_right (priv
->task
, names
[i
],
2419 MACH_MSG_TYPE_COPY_SEND
,
2420 &local_name
, &local_type
);
2421 if (kret
!= KERN_SUCCESS
)
2423 mach_port_deallocate (gdb_task
, local_name
);
2425 for (darwin_thread_t
*t
: priv
->threads
)
2427 if (t
->gdb_port
== local_name
)
2429 t
->inf_port
= names
[i
];
2430 if (names
[i
] == lwp
)
2436 vm_deallocate (gdb_task
, (vm_address_t
) names
,
2437 names_count
* sizeof (mach_port_t
));
2440 return ptid_t (current_inferior ()->pid
, 0, res
);
2446 darwin_nat_target::supports_multi_process ()
2451 void _initialize_darwin_nat ();
2453 _initialize_darwin_nat ()
2457 gdb_task
= mach_task_self ();
2458 darwin_host_self
= mach_host_self ();
2460 /* Read page size. */
2461 kret
= host_page_size (darwin_host_self
, &mach_page_size
);
2462 if (kret
!= KERN_SUCCESS
)
2464 mach_page_size
= 0x1000;
2465 MACH_CHECK_ERROR (kret
);
2468 inferior_debug (2, _("GDB task: 0x%lx, pid: %d\n"),
2469 (unsigned long) mach_task_self (), getpid ());
2471 add_setshow_zuinteger_cmd ("darwin", class_obscure
,
2472 &darwin_debug_flag
, _("\
2473 Set if printing inferior communication debugging statements."), _("\
2474 Show if printing inferior communication debugging statements."), NULL
,
2476 &setdebuglist
, &showdebuglist
);
2478 add_setshow_boolean_cmd ("mach-exceptions", class_support
,
2479 &enable_mach_exceptions
, _("\
2480 Set if mach exceptions are caught."), _("\
2481 Show if mach exceptions are caught."), _("\
2482 When this mode is on, all low level exceptions are reported before being\n\
2483 reported by the kernel."),
2484 &set_enable_mach_exceptions
, NULL
,
2485 &setlist
, &showlist
);