Automatic date update in version.in
[deliverable/binutils-gdb.git] / gdb / darwin-nat.c
CommitLineData
a80b95ba 1/* Darwin support for GDB, the GNU debugger.
3666a048 2 Copyright (C) 2008-2021 Free Software Foundation, Inc.
a80b95ba
TG
3
4 Contributed by AdaCore.
5
6 This file is part of GDB.
7
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.
12
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.
17
18 You should have received a copy of the GNU General Public License
47d48711 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
a80b95ba
TG
20
21#include "defs.h"
4de283e4
TT
22#include "top.h"
23#include "inferior.h"
24#include "target.h"
25#include "symfile.h"
26#include "symtab.h"
27#include "objfiles.h"
28#include "gdbcmd.h"
29#include "gdbcore.h"
30#include "gdbthread.h"
31#include "regcache.h"
32#include "event-top.h"
33#include "inf-loop.h"
34#include <sys/stat.h>
35#include "inf-child.h"
36#include "value.h"
37#include "arch-utils.h"
38#include "bfd.h"
39#include "bfd/mach-o.h"
b1c896b3 40#include "gdbarch.h"
a80b95ba 41
b50a8b9a 42#include <copyfile.h>
4de283e4
TT
43#include <sys/ptrace.h>
44#include <sys/signal.h>
45#include <setjmp.h>
46#include <sys/types.h>
47#include <unistd.h>
48#include <signal.h>
a80b95ba 49#include <ctype.h>
4de283e4
TT
50#include <sys/sysctl.h>
51#include <sys/proc.h>
bb00b29d 52#include <libproc.h>
4de283e4
TT
53#include <sys/syscall.h>
54#include <spawn.h>
55
a80b95ba 56#include <mach/mach_error.h>
d55e5aa6 57#include <mach/mach_vm.h>
4de283e4
TT
58#include <mach/mach_init.h>
59#include <mach/vm_map.h>
d55e5aa6 60#include <mach/task.h>
4de283e4 61#include <mach/mach_port.h>
d55e5aa6 62#include <mach/thread_act.h>
4de283e4 63#include <mach/port.h>
a80b95ba 64
4de283e4
TT
65#include "darwin-nat.h"
66#include "filenames.h"
268a13a5
TT
67#include "gdbsupport/filestuff.h"
68#include "gdbsupport/gdb_unlinker.h"
69#include "gdbsupport/pathstuff.h"
70#include "gdbsupport/scoped_fd.h"
01ec7a27 71#include "nat/fork-inferior.h"
a80b95ba
TG
72
73/* Quick overview.
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).
76
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
83 on Mach ports.
84
85 Some Mach documentation is available for Apple xnu source package or
86 from the web. */
87
88
89#define PTRACE(CMD, PID, ADDR, SIG) \
90 darwin_ptrace(#CMD, CMD, (PID), (ADDR), (SIG))
91
a80b95ba
TG
92static void darwin_ptrace_me (void);
93
a41f2563
TG
94static void darwin_encode_reply (mig_reply_error_t *reply,
95 mach_msg_header_t *hdr, integer_t code);
96
82b19a4d
TG
97static void darwin_setup_request_notification (struct inferior *inf);
98static void darwin_deallocate_exception_ports (darwin_inferior *inf);
99static void darwin_setup_exceptions (struct inferior *inf);
100static void darwin_deallocate_threads (struct inferior *inf);
101
a80b95ba
TG
102/* Task identifier of gdb. */
103static task_t gdb_task;
104
105/* A copy of mach_host_self (). */
106mach_port_t darwin_host_self;
107
108/* Exception port. */
109mach_port_t darwin_ex_port;
110
a6290449 111/* Port set, to wait for answer on all ports. */
a80b95ba
TG
112mach_port_t darwin_port_set;
113
0963b4bd 114/* Page size. */
a80b95ba
TG
115static vm_size_t mach_page_size;
116
117/* If Set, catch all mach exceptions (before they are converted to signals
118 by the kernel). */
491144b5 119static bool enable_mach_exceptions;
a80b95ba 120
bb00b29d
TG
121/* Inferior that should report a fake stop event. */
122static struct inferior *darwin_inf_fake_stop;
123
b50a8b9a
TT
124/* If non-NULL, the shell we actually invoke. See maybe_cache_shell
125 for details. */
126static const char *copied_shell;
127
a80b95ba
TG
128#define PAGE_TRUNC(x) ((x) & ~(mach_page_size - 1))
129#define PAGE_ROUND(x) PAGE_TRUNC((x) + mach_page_size - 1)
130
bb00b29d 131/* This controls output of inferior debugging. */
ccce17b0 132static unsigned int darwin_debug_flag = 0;
a80b95ba 133
15c19d39
TG
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.
136
a6290449
TG
137 Once gdb is built, you must codesign it with any system-trusted signing
138 authority. See taskgated(8) for details. */
15c19d39
TG
139static 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"
145 "<dict>\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"
153 " <array>\n"
154 " <string>allowed</string>\n"
155 " <string>debug</string>\n"
156 " </array>\n"
157 "</dict>\n"
158 "</plist>\n";
159
77b64a49
PA
160static void inferior_debug (int level, const char *fmt, ...)
161 ATTRIBUTE_PRINTF (2, 3);
162
a80b95ba
TG
163static void
164inferior_debug (int level, const char *fmt, ...)
165{
166 va_list ap;
167
168 if (darwin_debug_flag < level)
169 return;
170
171 va_start (ap, fmt);
172 printf_unfiltered (_("[%d inferior]: "), getpid ());
173 vprintf_unfiltered (fmt, ap);
174 va_end (ap);
175}
176
177void
178mach_check_error (kern_return_t ret, const char *file,
dda83cd7 179 unsigned int line, const char *func)
a80b95ba
TG
180{
181 if (ret == KERN_SUCCESS)
182 return;
183 if (func == NULL)
184 func = _("[UNKNOWN]");
bb00b29d 185
4f1cdeec 186 warning (_("Mach error at \"%s:%u\" in function \"%s\": %s (0x%lx)"),
bb00b29d 187 file, line, func, mach_error_string (ret), (unsigned long) ret);
a80b95ba
TG
188}
189
190static const char *
191unparse_exception_type (unsigned int i)
192{
193 static char unknown_exception_buf[32];
194
195 switch (i)
196 {
197 case EXC_BAD_ACCESS:
198 return "EXC_BAD_ACCESS";
199 case EXC_BAD_INSTRUCTION:
200 return "EXC_BAD_INSTRUCTION";
201 case EXC_ARITHMETIC:
202 return "EXC_ARITHMETIC";
203 case EXC_EMULATION:
204 return "EXC_EMULATION";
205 case EXC_SOFTWARE:
206 return "EXC_SOFTWARE";
207 case EXC_BREAKPOINT:
208 return "EXC_BREAKPOINT";
209 case EXC_SYSCALL:
210 return "EXC_SYSCALL";
211 case EXC_MACH_SYSCALL:
212 return "EXC_MACH_SYSCALL";
213 case EXC_RPC_ALERT:
214 return "EXC_RPC_ALERT";
215 case EXC_CRASH:
216 return "EXC_CRASH";
217 default:
218 snprintf (unknown_exception_buf, 32, _("unknown (%d)"), i);
219 return unknown_exception_buf;
220 }
221}
222
a7aa0d73
JB
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
225 trace.
226
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. */
231
a80b95ba
TG
232static int
233darwin_ptrace (const char *name,
aa14fb50 234 int request, int pid, caddr_t arg3, int arg4)
a80b95ba
TG
235{
236 int ret;
237
a7aa0d73 238 errno = 0;
aa14fb50 239 ret = ptrace (request, pid, arg3, arg4);
a7aa0d73
JB
240 if (ret == -1 && errno == 0)
241 ret = 0;
a80b95ba 242
3eb831e0 243 inferior_debug (4, _("ptrace (%s, %d, 0x%lx, %d): %d (%s)\n"),
dda83cd7
SM
244 name, pid, (unsigned long) arg3, arg4, ret,
245 (ret != 0) ? safe_strerror (errno) : _("no error"));
a80b95ba
TG
246 return ret;
247}
248
249static int
250cmp_thread_t (const void *l, const void *r)
251{
bb00b29d
TG
252 thread_t tl = *(const thread_t *)l;
253 thread_t tr = *(const thread_t *)r;
254 return (int)(tl - tr);
a80b95ba
TG
255}
256
e7eee665
SM
257void
258darwin_nat_target::check_new_threads (inferior *inf)
a80b95ba
TG
259{
260 kern_return_t kret;
a80b95ba
TG
261 thread_array_t thread_list;
262 unsigned int new_nbr;
263 unsigned int old_nbr;
264 unsigned int new_ix, old_ix;
089354bb
SM
265 darwin_inferior *darwin_inf = get_darwin_inferior (inf);
266 std::vector<darwin_thread_t *> new_thread_vec;
a80b95ba 267
b5bddbbb
TT
268 if (darwin_inf == nullptr)
269 return;
270
a80b95ba 271 /* Get list of threads. */
bb00b29d 272 kret = task_threads (darwin_inf->task, &thread_list, &new_nbr);
a80b95ba
TG
273 MACH_CHECK_ERROR (kret);
274 if (kret != KERN_SUCCESS)
275 return;
276
bb00b29d 277 /* Sort the list. */
a80b95ba
TG
278 if (new_nbr > 1)
279 qsort (thread_list, new_nbr, sizeof (thread_t), cmp_thread_t);
280
089354bb 281 old_nbr = darwin_inf->threads.size ();
a80b95ba 282
bb00b29d
TG
283 /* Quick check for no changes. */
284 if (old_nbr == new_nbr)
285 {
089354bb
SM
286 size_t i;
287
bb00b29d 288 for (i = 0; i < new_nbr; i++)
089354bb 289 if (thread_list[i] != darwin_inf->threads[i]->gdb_port)
bb00b29d
TG
290 break;
291 if (i == new_nbr)
292 {
15a9128a
TG
293 /* Deallocate ports. */
294 for (i = 0; i < new_nbr; i++)
295 {
296 kret = mach_port_deallocate (mach_task_self (), thread_list[i]);
297 MACH_CHECK_ERROR (kret);
298 }
299
300 /* Deallocate the buffer. */
bb00b29d
TG
301 kret = vm_deallocate (gdb_task, (vm_address_t) thread_list,
302 new_nbr * sizeof (int));
303 MACH_CHECK_ERROR (kret);
15a9128a 304
bb00b29d
TG
305 return;
306 }
307 }
308
82b19a4d 309 /* Full handling: detect new threads, remove dead threads. */
089354bb
SM
310
311 new_thread_vec.reserve (new_nbr);
bb00b29d 312
a80b95ba
TG
313 for (new_ix = 0, old_ix = 0; new_ix < new_nbr || old_ix < old_nbr;)
314 {
089354bb
SM
315 thread_t new_id = (new_ix < new_nbr) ? thread_list[new_ix] : THREAD_NULL;
316 darwin_thread_t *old
317 = (old_ix < old_nbr) ? darwin_inf->threads[old_ix] : NULL;
318 thread_t old_id = old != NULL ? old->gdb_port : THREAD_NULL;
bb00b29d
TG
319
320 inferior_debug
c8c9911f 321 (12, _(" new_ix:%d/%d, old_ix:%d/%d, new_id:0x%x old_id:0x%x\n"),
bb00b29d 322 new_ix, new_nbr, old_ix, old_nbr, new_id, old_id);
a80b95ba
TG
323
324 if (old_id == new_id)
325 {
326 /* Thread still exist. */
089354bb 327 new_thread_vec.push_back (old);
a80b95ba
TG
328 new_ix++;
329 old_ix++;
330
15a9128a
TG
331 /* Deallocate the port. */
332 kret = mach_port_deallocate (gdb_task, new_id);
a80b95ba 333 MACH_CHECK_ERROR (kret);
15a9128a 334
a80b95ba
TG
335 continue;
336 }
bb00b29d
TG
337 if (new_ix < new_nbr && new_id == MACH_PORT_DEAD)
338 {
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. */
342 new_ix++;
343 continue;
344 }
345 if (new_ix < new_nbr && (old_ix == old_nbr || new_id < old_id))
a80b95ba
TG
346 {
347 /* A thread was created. */
7aabaf9d 348 darwin_thread_info *pti = new darwin_thread_info;
a80b95ba 349
bb00b29d
TG
350 pti->gdb_port = new_id;
351 pti->msg_state = DARWIN_RUNNING;
352
db665f42 353 /* Add the new thread. */
e7eee665 354 add_thread_with_info (this, ptid_t (inf->pid, 0, new_id), pti);
089354bb 355 new_thread_vec.push_back (pti);
a80b95ba
TG
356 new_ix++;
357 continue;
358 }
bb00b29d 359 if (old_ix < old_nbr && (new_ix == new_nbr || new_id > old_id))
a80b95ba
TG
360 {
361 /* A thread was removed. */
b7a08269 362 struct thread_info *thr
e7eee665 363 = find_thread_ptid (this, ptid_t (inf->pid, 0, old_id));
b7a08269 364 delete_thread (thr);
a80b95ba
TG
365 kret = mach_port_deallocate (gdb_task, old_id);
366 MACH_CHECK_ERROR (kret);
367 old_ix++;
bb00b29d 368 continue;
a80b95ba 369 }
f3574227 370 gdb_assert_not_reached ("unexpected thread case");
a80b95ba
TG
371 }
372
089354bb 373 darwin_inf->threads = std::move (new_thread_vec);
a80b95ba 374
15a9128a 375 /* Deallocate the buffer. */
a80b95ba
TG
376 kret = vm_deallocate (gdb_task, (vm_address_t) thread_list,
377 new_nbr * sizeof (int));
378 MACH_CHECK_ERROR (kret);
379}
380
bb00b29d
TG
381/* Return an inferior by task port. */
382static struct inferior *
383darwin_find_inferior_by_task (task_t port)
a80b95ba 384{
740480b8
TT
385 for (inferior *inf : all_inferiors ())
386 {
387 darwin_inferior *priv = get_darwin_inferior (inf);
388
389 if (priv != nullptr && priv->task == port)
390 return inf;
391 }
392 return nullptr;
bb00b29d 393}
a80b95ba 394
82b19a4d 395/* Return an inferior by pid port. */
bb00b29d 396static struct inferior *
82b19a4d 397darwin_find_inferior_by_pid (int pid)
bb00b29d 398{
740480b8
TT
399 for (inferior *inf : all_inferiors ())
400 {
401 if (inf->pid == pid)
402 return inf;
403 }
404 return nullptr;
bb00b29d 405}
a80b95ba 406
bb00b29d
TG
407/* Return a thread by port. */
408static darwin_thread_t *
409darwin_find_thread (struct inferior *inf, thread_t thread)
410{
089354bb
SM
411 darwin_inferior *priv = get_darwin_inferior (inf);
412
b5bddbbb
TT
413 if (priv != nullptr)
414 for (darwin_thread_t *t : priv->threads)
415 {
416 if (t->gdb_port == thread)
417 return t;
418 }
bb00b29d 419
bb00b29d
TG
420 return NULL;
421}
a80b95ba 422
bb00b29d 423/* Suspend (ie stop) an inferior at Mach level. */
a80b95ba 424
bb00b29d
TG
425static void
426darwin_suspend_inferior (struct inferior *inf)
427{
089354bb
SM
428 darwin_inferior *priv = get_darwin_inferior (inf);
429
b5bddbbb 430 if (priv != nullptr && !priv->suspended)
a80b95ba 431 {
bb00b29d 432 kern_return_t kret;
a80b95ba 433
089354bb 434 kret = task_suspend (priv->task);
bb00b29d 435 MACH_CHECK_ERROR (kret);
a80b95ba 436
089354bb 437 priv->suspended = 1;
bb00b29d
TG
438 }
439}
a80b95ba 440
bb00b29d 441/* Resume an inferior at Mach level. */
a80b95ba 442
bb00b29d
TG
443static void
444darwin_resume_inferior (struct inferior *inf)
445{
089354bb
SM
446 darwin_inferior *priv = get_darwin_inferior (inf);
447
b5bddbbb 448 if (priv != nullptr && priv->suspended)
bb00b29d
TG
449 {
450 kern_return_t kret;
a80b95ba 451
089354bb 452 kret = task_resume (priv->task);
bb00b29d
TG
453 MACH_CHECK_ERROR (kret);
454
089354bb 455 priv->suspended = 0;
a80b95ba
TG
456 }
457}
458
bb00b29d
TG
459static void
460darwin_dump_message (mach_msg_header_t *hdr, int disp_body)
461{
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);
469
470 if (disp_body)
471 {
472 const unsigned char *data;
a6290449 473 const unsigned int *ldata;
bb00b29d
TG
474 int size;
475 int i;
476
477 data = (unsigned char *)(hdr + 1);
478 size = hdr->msgh_size - sizeof (mach_msg_header_t);
479
480 if (hdr->msgh_bits & MACH_MSGH_BITS_COMPLEX)
481 {
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);
485 int k;
486 NDR_record_t *ndr;
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)
493 {
494 case MACH_MSG_PORT_DESCRIPTOR:
495 printf_unfiltered
496 (_(" descr %d: type=%u (port) name=0x%x, dispo=%d\n"),
497 k, desc[k].type, desc[k].name, desc[k].disposition);
498 break;
499 default:
500 printf_unfiltered (_(" descr %d: type=%u\n"),
501 k, desc[k].type);
502 break;
503 }
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);
509 printf_unfiltered
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);
516 }
517
518 printf_unfiltered (_(" data:"));
a6290449
TG
519 ldata = (const unsigned int *)data;
520 for (i = 0; i < size / sizeof (unsigned int); i++)
521 printf_unfiltered (" %08x", ldata[i]);
bb00b29d
TG
522 printf_unfiltered (_("\n"));
523 }
524}
525
82b19a4d
TG
526/* Adjust inferior data when a new task was created. */
527
528static struct inferior *
529darwin_find_new_inferior (task_t task_port, thread_t thread_port)
530{
531 int task_pid;
532 struct inferior *inf;
533 kern_return_t kret;
534 mach_port_t prev;
535
536 /* Find the corresponding pid. */
537 kret = pid_for_task (task_port, &task_pid);
538 if (kret != KERN_SUCCESS)
539 {
540 MACH_CHECK_ERROR (kret);
541 return NULL;
542 }
543
544 /* Find the inferior for this pid. */
545 inf = darwin_find_inferior_by_pid (task_pid);
546 if (inf == NULL)
547 return NULL;
548
089354bb
SM
549 darwin_inferior *priv = get_darwin_inferior (inf);
550
82b19a4d 551 /* Deallocate saved exception ports. */
089354bb 552 darwin_deallocate_exception_ports (priv);
82b19a4d
TG
553
554 /* No need to remove dead_name notification, but still... */
089354bb 555 kret = mach_port_request_notification (gdb_task, priv->task,
82b19a4d
TG
556 MACH_NOTIFY_DEAD_NAME, 0,
557 MACH_PORT_NULL,
558 MACH_MSG_TYPE_MAKE_SEND_ONCE,
559 &prev);
560 if (kret != KERN_INVALID_ARGUMENT)
561 MACH_CHECK_ERROR (kret);
562
563 /* Replace old task port. */
089354bb 564 kret = mach_port_deallocate (gdb_task, priv->task);
82b19a4d 565 MACH_CHECK_ERROR (kret);
089354bb 566 priv->task = task_port;
82b19a4d
TG
567
568 darwin_setup_request_notification (inf);
569 darwin_setup_exceptions (inf);
570
571 return inf;
572}
573
574/* Check data representation. */
575
576static int
577darwin_check_message_ndr (NDR_record_t *ndr)
578{
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)
585 return -1;
586 return 0;
587}
588
589/* Decode an exception message. */
590
e7eee665
SM
591int
592darwin_nat_target::decode_exception_message (mach_msg_header_t *hdr,
593 inferior **pinf,
594 darwin_thread_t **pthread)
a80b95ba 595{
bb00b29d
TG
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);
598 NDR_record_t *ndr;
599 integer_t *data;
600 struct inferior *inf;
601 darwin_thread_t *thread;
602 task_t task_port;
603 thread_t thread_port;
a80b95ba 604 kern_return_t kret;
bb00b29d 605 int i;
a80b95ba 606
a41f2563
TG
607 /* Check message destination. */
608 if (hdr->msgh_local_port != darwin_ex_port)
bb00b29d
TG
609 return -1;
610
611 /* Check message header. */
612 if (!(hdr->msgh_bits & MACH_MSGH_BITS_COMPLEX))
613 return -1;
614
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)
623 return -1;
624
625 /* Check data representation. */
626 ndr = (NDR_record_t *)(desc + 2);
82b19a4d 627 if (darwin_check_message_ndr (ndr) != 0)
bb00b29d
TG
628 return -1;
629
630 /* Ok, the hard work. */
631 data = (integer_t *)(ndr + 1);
632
bb00b29d
TG
633 task_port = desc[1].name;
634 thread_port = desc[0].name;
a41f2563 635
a41f2563 636 /* Find process by port. */
bb00b29d 637 inf = darwin_find_inferior_by_task (task_port);
bb00b29d 638 *pinf = inf;
82b19a4d
TG
639
640 if (inf == NULL && data[0] == EXC_SOFTWARE && data[1] == 2
641 && data[2] == EXC_SOFT_SIGNAL && data[3] == SIGTRAP)
642 {
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);
646 *pinf = inf;
647
648 if (inf == NULL)
649 {
650 /* Deallocate task_port, unless it was saved. */
651 kret = mach_port_deallocate (mach_task_self (), task_port);
652 MACH_CHECK_ERROR (kret);
653 }
654 }
655 else
656 {
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);
661 }
662
a41f2563
TG
663 if (inf == NULL)
664 {
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 ? */
a41f2563
TG
668 mig_reply_error_t reply;
669
82b19a4d
TG
670 inferior_debug
671 (4, _("darwin_decode_exception_message: unknown task 0x%x\n"),
672 task_port);
673
15a9128a
TG
674 /* Free thread port (we don't know it). */
675 kret = mach_port_deallocate (mach_task_self (), thread_port);
676 MACH_CHECK_ERROR (kret);
677
a41f2563
TG
678 darwin_encode_reply (&reply, hdr, KERN_SUCCESS);
679
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,
683 MACH_PORT_NULL);
684 MACH_CHECK_ERROR (kret);
685
686 return 0;
687 }
bb00b29d
TG
688
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. */
e7eee665 692 check_new_threads (inf);
bb00b29d 693
15a9128a
TG
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);
698
bb00b29d
TG
699 thread = darwin_find_thread (inf, thread_port);
700 if (thread == NULL)
701 return -1;
702 *pthread = thread;
703
a6290449
TG
704 /* The thread should be running. However we have observed cases where a
705 thread got a SIGTTIN message after being stopped. */
484a26a8
TG
706 gdb_assert (thread->msg_state != DARWIN_MESSAGE);
707
bb00b29d 708 /* Finish decoding. */
bb00b29d
TG
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];
714
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)))
718 return -1;
719 for (i = 0; i < data[1]; i++)
720 thread->event.ex_data[i] = data[2 + i];
721
722 thread->msg_state = DARWIN_MESSAGE;
723
724 return 0;
725}
726
82b19a4d
TG
727/* Decode dead_name notify message. */
728
729static int
730darwin_decode_notify_message (mach_msg_header_t *hdr, struct inferior **pinf)
731{
732 NDR_record_t *ndr = (NDR_record_t *)(hdr + 1);
733 integer_t *data = (integer_t *)(ndr + 1);
734 struct inferior *inf;
82b19a4d 735 task_t task_port;
82b19a4d
TG
736
737 /* Check message header. */
738 if (hdr->msgh_bits & MACH_MSGH_BITS_COMPLEX)
739 return -1;
740
741 /* Check descriptors. */
742 if (hdr->msgh_size < (sizeof (*hdr) + sizeof (*ndr) + sizeof (integer_t)))
743 return -2;
744
745 /* Check data representation. */
746 if (darwin_check_message_ndr (ndr) != 0)
747 return -3;
748
749 task_port = data[0];
750
751 /* Find process by port. */
752 inf = darwin_find_inferior_by_task (task_port);
753 *pinf = inf;
754
755 /* Check message destination. */
b5bddbbb
TT
756 if (inf != NULL)
757 {
758 darwin_inferior *priv = get_darwin_inferior (inf);
759 if (hdr->msgh_local_port != priv->notify_port)
760 return -4;
761 }
82b19a4d
TG
762
763 return 0;
764}
765
bb00b29d
TG
766static void
767darwin_encode_reply (mig_reply_error_t *reply, mach_msg_header_t *hdr,
768 integer_t code)
769{
770 mach_msg_header_t *rh = &reply->Head;
a6290449
TG
771
772 rh->msgh_bits = MACH_MSGH_BITS (MACH_MSGH_BITS_REMOTE (hdr->msgh_bits), 0);
bb00b29d 773 rh->msgh_remote_port = hdr->msgh_remote_port;
a6290449 774 rh->msgh_size = (mach_msg_size_t) sizeof (mig_reply_error_t);
bb00b29d
TG
775 rh->msgh_local_port = MACH_PORT_NULL;
776 rh->msgh_id = hdr->msgh_id + 100;
777
778 reply->NDR = NDR_record;
779 reply->RetCode = code;
a80b95ba
TG
780}
781
bb00b29d
TG
782static void
783darwin_send_reply (struct inferior *inf, darwin_thread_t *thread)
a80b95ba
TG
784{
785 kern_return_t kret;
bb00b29d 786 mig_reply_error_t reply;
089354bb 787 darwin_inferior *priv = get_darwin_inferior (inf);
a80b95ba 788
bb00b29d
TG
789 darwin_encode_reply (&reply, &thread->event.header, KERN_SUCCESS);
790
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,
794 MACH_PORT_NULL);
a80b95ba
TG
795 MACH_CHECK_ERROR (kret);
796
089354bb 797 priv->pending_messages--;
bb00b29d
TG
798}
799
6821842f
SM
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. */
803
804static int
805darwin_pthread_kill (darwin_thread_t *thread, int nsignal)
806{
807 DIAGNOSTIC_PUSH;
808 DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS;
809 int res = syscall (SYS___pthread_kill, thread->gdb_port, nsignal);
810 DIAGNOSTIC_POP;
811 return res;
812}
813
bb00b29d
TG
814static void
815darwin_resume_thread (struct inferior *inf, darwin_thread_t *thread,
816 int step, int nsignal)
817{
a80b95ba 818 inferior_debug
bb00b29d
TG
819 (3, _("darwin_resume_thread: state=%d, thread=0x%x, step=%d nsignal=%d\n"),
820 thread->msg_state, thread->gdb_port, step, nsignal);
821
822 switch (thread->msg_state)
a80b95ba 823 {
bb00b29d
TG
824 case DARWIN_MESSAGE:
825 if (thread->event.ex_type == EXC_SOFTWARE
826 && thread->event.ex_data[0] == EXC_SOFT_SIGNAL)
827 {
828 /* Either deliver a new signal or cancel the signal received. */
6821842f
SM
829 int res = PTRACE (PT_THUPDATE, inf->pid,
830 (caddr_t) (uintptr_t) thread->gdb_port, nsignal);
bb00b29d
TG
831 if (res < 0)
832 inferior_debug (1, _("ptrace THUP: res=%d\n"), res);
833 }
834 else if (nsignal)
835 {
836 /* Note: ptrace is allowed only if the process is stopped.
837 Directly send the signal to the thread. */
6821842f 838 int res = darwin_pthread_kill (thread, nsignal);
bb00b29d
TG
839 inferior_debug (4, _("darwin_resume_thread: kill 0x%x %d: %d\n"),
840 thread->gdb_port, nsignal, res);
841 thread->signaled = 1;
842 }
843
d987a266 844 /* Set or reset single step. */
aa14fb50
TG
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;
bb00b29d
TG
849
850 darwin_send_reply (inf, thread);
851 thread->msg_state = DARWIN_RUNNING;
852 break;
853
854 case DARWIN_RUNNING:
855 break;
856
857 case DARWIN_STOPPED:
6821842f 858 kern_return_t kret = thread_resume (thread->gdb_port);
bb00b29d
TG
859 MACH_CHECK_ERROR (kret);
860
861 thread->msg_state = DARWIN_RUNNING;
862 break;
a80b95ba 863 }
bb00b29d 864}
a80b95ba 865
bb00b29d 866/* Resume all threads of the inferior. */
a80b95ba 867
bb00b29d
TG
868static void
869darwin_resume_inferior_threads (struct inferior *inf, int step, int nsignal)
870{
089354bb 871 darwin_inferior *priv = get_darwin_inferior (inf);
bb00b29d 872
b5bddbbb
TT
873 if (priv != nullptr)
874 for (darwin_thread_t *thread : priv->threads)
875 darwin_resume_thread (inf, thread, step, nsignal);
a80b95ba
TG
876}
877
bb00b29d
TG
878/* Suspend all threads of INF. */
879
880static void
881darwin_suspend_inferior_threads (struct inferior *inf)
882{
089354bb 883 darwin_inferior *priv = get_darwin_inferior (inf);
bb00b29d 884
089354bb
SM
885 for (darwin_thread_t *thread : priv->threads)
886 {
887 switch (thread->msg_state)
888 {
889 case DARWIN_STOPPED:
890 case DARWIN_MESSAGE:
891 break;
892 case DARWIN_RUNNING:
893 {
894 kern_return_t kret = thread_suspend (thread->gdb_port);
895 MACH_CHECK_ERROR (kret);
896 thread->msg_state = DARWIN_STOPPED;
897 break;
898 }
899 }
900 }
bb00b29d 901}
a80b95ba 902
f6ac5f3d
PA
903void
904darwin_nat_target::resume (ptid_t ptid, int step, enum gdb_signal signal)
bb00b29d 905{
bb00b29d 906 int nsignal;
a80b95ba 907
bb00b29d 908 inferior_debug
3eb831e0 909 (2, _("darwin_resume: pid=%d, tid=0x%lx, step=%d, signal=%d\n"),
cc6bcb54 910 ptid.pid (), ptid.tid (), step, signal);
bb00b29d 911
a493e3e2 912 if (signal == GDB_SIGNAL_0)
bb00b29d
TG
913 nsignal = 0;
914 else
2ea28649 915 nsignal = gdb_signal_to_host (signal);
a80b95ba 916
bb00b29d
TG
917 /* Don't try to single step all threads. */
918 if (step)
919 ptid = inferior_ptid;
920
921 /* minus_one_ptid is RESUME_ALL. */
d7e15655 922 if (ptid == minus_one_ptid)
a80b95ba 923 {
bb00b29d 924 /* Resume threads. */
740480b8
TT
925 for (inferior *inf : all_inferiors ())
926 darwin_resume_inferior_threads (inf, step, nsignal);
927
bb00b29d 928 /* Resume tasks. */
740480b8
TT
929 for (inferior *inf : all_inferiors ())
930 darwin_resume_inferior (inf);
bb00b29d
TG
931 }
932 else
a80b95ba 933 {
e7eee665 934 inferior *inf = find_inferior_ptid (this, ptid);
cc6bcb54 935 long tid = ptid.tid ();
bb00b29d
TG
936
937 /* Stop the inferior (should be useless). */
938 darwin_suspend_inferior (inf);
939
940 if (tid == 0)
dda83cd7 941 darwin_resume_inferior_threads (inf, step, nsignal);
bb00b29d 942 else
dda83cd7
SM
943 {
944 darwin_thread_t *thread;
bb00b29d 945
dda83cd7
SM
946 /* Suspend threads of the task. */
947 darwin_suspend_inferior_threads (inf);
bb00b29d 948
dda83cd7
SM
949 /* Resume the selected thread. */
950 thread = darwin_find_thread (inf, tid);
951 gdb_assert (thread);
952 darwin_resume_thread (inf, thread, step, nsignal);
953 }
bb00b29d
TG
954
955 /* Resume the task. */
956 darwin_resume_inferior (inf);
a80b95ba 957 }
bb00b29d 958}
a80b95ba 959
e7eee665
SM
960ptid_t
961darwin_nat_target::decode_message (mach_msg_header_t *hdr,
962 darwin_thread_t **pthread,
963 inferior **pinf,
964 target_waitstatus *status)
bb00b29d
TG
965{
966 darwin_thread_t *thread;
967 struct inferior *inf;
a80b95ba 968
a41f2563
TG
969 /* Exception message. 2401 == 0x961 is exc. */
970 if (hdr->msgh_id == 2401)
a80b95ba 971 {
bb00b29d
TG
972 int res;
973
974 /* Decode message. */
e7eee665 975 res = decode_exception_message (hdr, &inf, &thread);
bb00b29d
TG
976
977 if (res < 0)
a80b95ba 978 {
bb00b29d 979 /* Should not happen... */
c8c9911f
JB
980 printf_unfiltered
981 (_("darwin_wait: ill-formatted message (id=0x%x)\n"), hdr->msgh_id);
bb00b29d 982 /* FIXME: send a failure reply? */
a41f2563
TG
983 status->kind = TARGET_WAITKIND_IGNORE;
984 return minus_one_ptid;
985 }
986 if (inf == NULL)
987 {
988 status->kind = TARGET_WAITKIND_IGNORE;
a80b95ba
TG
989 return minus_one_ptid;
990 }
bb00b29d
TG
991 *pinf = inf;
992 *pthread = thread;
089354bb
SM
993
994 darwin_inferior *priv = get_darwin_inferior (inf);
995
996 priv->pending_messages++;
a80b95ba
TG
997
998 status->kind = TARGET_WAITKIND_STOPPED;
bb00b29d
TG
999 thread->msg_state = DARWIN_MESSAGE;
1000
c8c9911f 1001 inferior_debug (4, _("darwin_wait: thread=0x%x, got %s\n"),
bb00b29d
TG
1002 thread->gdb_port,
1003 unparse_exception_type (thread->event.ex_type));
a80b95ba 1004
bb00b29d 1005 switch (thread->event.ex_type)
a80b95ba
TG
1006 {
1007 case EXC_BAD_ACCESS:
4e225075 1008 status->value.sig = GDB_EXC_BAD_ACCESS;
a80b95ba
TG
1009 break;
1010 case EXC_BAD_INSTRUCTION:
4e225075 1011 status->value.sig = GDB_EXC_BAD_INSTRUCTION;
a80b95ba
TG
1012 break;
1013 case EXC_ARITHMETIC:
4e225075 1014 status->value.sig = GDB_EXC_ARITHMETIC;
a80b95ba
TG
1015 break;
1016 case EXC_EMULATION:
4e225075 1017 status->value.sig = GDB_EXC_EMULATION;
a80b95ba
TG
1018 break;
1019 case EXC_SOFTWARE:
bb00b29d 1020 if (thread->event.ex_data[0] == EXC_SOFT_SIGNAL)
a80b95ba 1021 {
bb00b29d 1022 status->value.sig =
2ea28649 1023 gdb_signal_from_host (thread->event.ex_data[1]);
bb00b29d
TG
1024 inferior_debug (5, _(" (signal %d: %s)\n"),
1025 thread->event.ex_data[1],
2ea28649 1026 gdb_signal_to_name (status->value.sig));
bb00b29d
TG
1027
1028 /* If the thread is stopped because it has received a signal
1029 that gdb has just sent, continue. */
1030 if (thread->signaled)
1031 {
1032 thread->signaled = 0;
1033 darwin_send_reply (inf, thread);
1034 thread->msg_state = DARWIN_RUNNING;
1035 status->kind = TARGET_WAITKIND_IGNORE;
1036 }
a80b95ba
TG
1037 }
1038 else
4e225075 1039 status->value.sig = GDB_EXC_SOFTWARE;
a80b95ba
TG
1040 break;
1041 case EXC_BREAKPOINT:
1042 /* Many internal GDB routines expect breakpoints to be reported
4e225075 1043 as GDB_SIGNAL_TRAP, and will report GDB_EXC_BREAKPOINT
0963b4bd 1044 as a spurious signal. */
a493e3e2 1045 status->value.sig = GDB_SIGNAL_TRAP;
a80b95ba
TG
1046 break;
1047 default:
a493e3e2 1048 status->value.sig = GDB_SIGNAL_UNKNOWN;
a80b95ba
TG
1049 break;
1050 }
1051
fd79271b 1052 return ptid_t (inf->pid, 0, thread->gdb_port);
bb00b29d 1053 }
a41f2563 1054 else if (hdr->msgh_id == 0x48)
bb00b29d 1055 {
a41f2563 1056 /* MACH_NOTIFY_DEAD_NAME: notification for exit. */
82b19a4d
TG
1057 int res;
1058
1059 res = darwin_decode_notify_message (hdr, &inf);
1060
1061 if (res < 0)
1062 {
1063 /* Should not happen... */
1064 printf_unfiltered
1065 (_("darwin_wait: ill-formatted message (id=0x%x, res=%d)\n"),
1066 hdr->msgh_id, res);
1067 }
1068
a41f2563
TG
1069 *pinf = NULL;
1070 *pthread = NULL;
bb00b29d 1071
82b19a4d
TG
1072 if (res < 0 || inf == NULL)
1073 {
1074 status->kind = TARGET_WAITKIND_IGNORE;
1075 return minus_one_ptid;
1076 }
1077
a41f2563
TG
1078 if (inf != NULL)
1079 {
089354bb
SM
1080 darwin_inferior *priv = get_darwin_inferior (inf);
1081
1082 if (!priv->no_ptrace)
bb00b29d 1083 {
86108c13 1084 pid_t res_pid;
a41f2563
TG
1085 int wstatus;
1086
86108c13
TT
1087 res_pid = wait4 (inf->pid, &wstatus, 0, NULL);
1088 if (res_pid < 0 || res_pid != inf->pid)
a41f2563
TG
1089 {
1090 printf_unfiltered (_("wait4: res=%d: %s\n"),
86108c13 1091 res_pid, safe_strerror (errno));
a41f2563
TG
1092 status->kind = TARGET_WAITKIND_IGNORE;
1093 return minus_one_ptid;
1094 }
1095 if (WIFEXITED (wstatus))
1096 {
1097 status->kind = TARGET_WAITKIND_EXITED;
1098 status->value.integer = WEXITSTATUS (wstatus);
1099 }
1100 else
1101 {
1102 status->kind = TARGET_WAITKIND_SIGNALLED;
5ae00552 1103 status->value.sig = gdb_signal_from_host (WTERMSIG (wstatus));
a41f2563
TG
1104 }
1105
1106 inferior_debug (4, _("darwin_wait: pid=%d exit, status=0x%x\n"),
86108c13 1107 res_pid, wstatus);
a41f2563
TG
1108
1109 /* Looks necessary on Leopard and harmless... */
1110 wait4 (inf->pid, &wstatus, 0, NULL);
1111
fe7d6a8d 1112 return ptid_t (inf->pid);
bb00b29d
TG
1113 }
1114 else
1115 {
a41f2563
TG
1116 inferior_debug (4, _("darwin_wait: pid=%d\n"), inf->pid);
1117 status->kind = TARGET_WAITKIND_EXITED;
1118 status->value.integer = 0; /* Don't know. */
fd79271b 1119 return ptid_t (inf->pid, 0, 0);
bb00b29d 1120 }
bb00b29d
TG
1121 }
1122 }
1123
a41f2563 1124 /* Unknown message. */
86ad98c3 1125 warning (_("darwin: got unknown message, id: 0x%x"), hdr->msgh_id);
a41f2563 1126 status->kind = TARGET_WAITKIND_IGNORE;
bb00b29d
TG
1127 return minus_one_ptid;
1128}
1129
e7eee665
SM
1130int
1131darwin_nat_target::cancel_breakpoint (ptid_t ptid)
bb00b29d 1132{
0963b4bd 1133 /* Arrange for a breakpoint to be hit again later. We will handle
bb00b29d
TG
1134 the current event, eventually we will resume this thread, and this
1135 breakpoint will trap again.
1136
1137 If we do not do this, then we run the risk that the user will
1138 delete or disable the breakpoint, but the thread will have already
1139 tripped on it. */
1140
e7eee665 1141 struct regcache *regcache = get_thread_regcache (this, ptid);
ac7936df 1142 struct gdbarch *gdbarch = regcache->arch ();
bb00b29d 1143 CORE_ADDR pc;
a80b95ba 1144
527a273a 1145 pc = regcache_read_pc (regcache) - gdbarch_decr_pc_after_break (gdbarch);
a01bda52 1146 if (breakpoint_inserted_here_p (regcache->aspace (), pc))
bb00b29d 1147 {
3eb831e0 1148 inferior_debug (4, "cancel_breakpoint for thread 0x%lx\n",
cc6bcb54 1149 (unsigned long) ptid.tid ());
bb00b29d
TG
1150
1151 /* Back up the PC if necessary. */
527a273a 1152 if (gdbarch_decr_pc_after_break (gdbarch))
bb00b29d
TG
1153 regcache_write_pc (regcache, pc);
1154
1155 return 1;
a80b95ba 1156 }
bb00b29d
TG
1157 return 0;
1158}
1159
e7eee665
SM
1160ptid_t
1161darwin_nat_target::wait_1 (ptid_t ptid, struct target_waitstatus *status)
bb00b29d
TG
1162{
1163 kern_return_t kret;
1164 union
1165 {
1166 mach_msg_header_t hdr;
1167 char data[0x100];
1168 } msgin;
1169 mach_msg_header_t *hdr = &msgin.hdr;
1170 ptid_t res;
1171 darwin_thread_t *thread;
bb00b29d
TG
1172
1173 inferior_debug
1174 (2, _("darwin_wait: waiting for a message pid=%d thread=%lx\n"),
cc6bcb54 1175 ptid.pid (), ptid.tid ());
bb00b29d
TG
1176
1177 /* Handle fake stop events at first. */
1178 if (darwin_inf_fake_stop != NULL)
1179 {
ab53f382 1180 inferior *inf = darwin_inf_fake_stop;
bb00b29d
TG
1181 darwin_inf_fake_stop = NULL;
1182
089354bb
SM
1183 darwin_inferior *priv = get_darwin_inferior (inf);
1184
bb00b29d 1185 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 1186 status->value.sig = GDB_SIGNAL_TRAP;
089354bb 1187 thread = priv->threads[0];
bb00b29d 1188 thread->msg_state = DARWIN_STOPPED;
fd79271b 1189 return ptid_t (inf->pid, 0, thread->gdb_port);
bb00b29d
TG
1190 }
1191
1192 do
1193 {
1194 /* set_sigint_trap (); */
1195
1196 /* Wait for a message. */
1197 kret = mach_msg (&msgin.hdr, MACH_RCV_MSG | MACH_RCV_INTERRUPT, 0,
1198 sizeof (msgin.data), darwin_port_set, 0, MACH_PORT_NULL);
1199
1200 /* clear_sigint_trap (); */
1201
1202 if (kret == MACH_RCV_INTERRUPTED)
1203 {
1204 status->kind = TARGET_WAITKIND_IGNORE;
1205 return minus_one_ptid;
1206 }
1207
1208 if (kret != MACH_MSG_SUCCESS)
1209 {
c8c9911f 1210 inferior_debug (5, _("mach_msg: ret=0x%x\n"), kret);
bb00b29d
TG
1211 status->kind = TARGET_WAITKIND_SPURIOUS;
1212 return minus_one_ptid;
1213 }
1214
1215 /* Debug: display message. */
1216 if (darwin_debug_flag > 10)
1217 darwin_dump_message (hdr, darwin_debug_flag > 11);
1218
ab53f382 1219 inferior *inf;
e7eee665 1220 res = decode_message (hdr, &thread, &inf, status);
d7e15655 1221 if (res == minus_one_ptid)
a41f2563 1222 continue;
bb00b29d 1223
a41f2563 1224 /* Early return in case an inferior has exited. */
bb00b29d
TG
1225 if (inf == NULL)
1226 return res;
1227 }
1228 while (status->kind == TARGET_WAITKIND_IGNORE);
1229
1230 /* Stop all tasks. */
e7eee665
SM
1231 for (inferior *inf : all_inferiors (this))
1232 {
1233 darwin_suspend_inferior (inf);
1234 check_new_threads (inf);
1235 }
bb00b29d
TG
1236
1237 /* Read pending messages. */
1238 while (1)
a80b95ba 1239 {
bb00b29d
TG
1240 struct target_waitstatus status2;
1241 ptid_t ptid2;
1242
1243 kret = mach_msg (&msgin.hdr,
1244 MACH_RCV_MSG | MACH_RCV_TIMEOUT, 0,
1245 sizeof (msgin.data), darwin_port_set, 1, MACH_PORT_NULL);
1246
1247 if (kret == MACH_RCV_TIMED_OUT)
1248 break;
1249 if (kret != MACH_MSG_SUCCESS)
1250 {
1251 inferior_debug
c8c9911f 1252 (5, _("darwin_wait: mach_msg(pending) ret=0x%x\n"), kret);
bb00b29d
TG
1253 break;
1254 }
1255
a41f2563
TG
1256 /* Debug: display message. */
1257 if (darwin_debug_flag > 10)
1258 darwin_dump_message (hdr, darwin_debug_flag > 11);
1259
ab53f382 1260 inferior *inf;
e7eee665 1261 ptid2 = decode_message (hdr, &thread, &inf, &status2);
a80b95ba 1262
bb00b29d
TG
1263 if (inf != NULL && thread != NULL
1264 && thread->event.ex_type == EXC_BREAKPOINT)
a80b95ba 1265 {
bb00b29d 1266 if (thread->single_step
fd79271b 1267 || cancel_breakpoint (ptid_t (inf->pid, 0, thread->gdb_port)))
bb00b29d
TG
1268 {
1269 gdb_assert (thread->msg_state == DARWIN_MESSAGE);
1270 darwin_send_reply (inf, thread);
1271 thread->msg_state = DARWIN_RUNNING;
1272 }
1273 else
1274 inferior_debug
c8c9911f 1275 (3, _("darwin_wait: thread 0x%x hit a non-gdb breakpoint\n"),
bb00b29d 1276 thread->gdb_port);
a80b95ba 1277 }
bb00b29d
TG
1278 else
1279 inferior_debug (3, _("darwin_wait: unhandled pending message\n"));
1280 }
1281 return res;
1282}
a80b95ba 1283
f6ac5f3d
PA
1284ptid_t
1285darwin_nat_target::wait (ptid_t ptid, struct target_waitstatus *status,
b60cea74 1286 target_wait_flags options)
bb00b29d 1287{
e7eee665 1288 return wait_1 (ptid, status);
bb00b29d 1289}
a80b95ba 1290
f6ac5f3d
PA
1291void
1292darwin_nat_target::interrupt ()
bb00b29d
TG
1293{
1294 struct inferior *inf = current_inferior ();
089354bb 1295 darwin_inferior *priv = get_darwin_inferior (inf);
a80b95ba 1296
bb00b29d 1297 /* FIXME: handle in no_ptrace mode. */
089354bb 1298 gdb_assert (!priv->no_ptrace);
f6ac5f3d 1299 ::kill (inf->pid, SIGINT);
a80b95ba
TG
1300}
1301
82b19a4d
TG
1302/* Deallocate threads port and vector. */
1303
a80b95ba 1304static void
82b19a4d 1305darwin_deallocate_threads (struct inferior *inf)
a80b95ba 1306{
089354bb
SM
1307 darwin_inferior *priv = get_darwin_inferior (inf);
1308
1309 for (darwin_thread_t *t : priv->threads)
a80b95ba 1310 {
089354bb
SM
1311 kern_return_t kret = mach_port_deallocate (gdb_task, t->gdb_port);
1312 MACH_CHECK_ERROR (kret);
a80b95ba 1313 }
089354bb
SM
1314
1315 priv->threads.clear ();
82b19a4d 1316}
a80b95ba 1317
f6ac5f3d
PA
1318void
1319darwin_nat_target::mourn_inferior ()
82b19a4d
TG
1320{
1321 struct inferior *inf = current_inferior ();
089354bb 1322 darwin_inferior *priv = get_darwin_inferior (inf);
82b19a4d
TG
1323 kern_return_t kret;
1324 mach_port_t prev;
82b19a4d
TG
1325
1326 /* Deallocate threads. */
1327 darwin_deallocate_threads (inf);
1328
1329 /* Remove notify_port from darwin_port_set. */
bb00b29d 1330 kret = mach_port_move_member (gdb_task,
089354bb 1331 priv->notify_port, MACH_PORT_NULL);
fda184b6 1332 MACH_CHECK_ERROR (kret);
bb00b29d 1333
82b19a4d 1334 /* Remove task port dead_name notification. */
089354bb 1335 kret = mach_port_request_notification (gdb_task, priv->task,
a80b95ba 1336 MACH_NOTIFY_DEAD_NAME, 0,
bb00b29d 1337 MACH_PORT_NULL,
a80b95ba
TG
1338 MACH_MSG_TYPE_MAKE_SEND_ONCE,
1339 &prev);
1340 /* This can fail if the task is dead. */
c8c9911f 1341 inferior_debug (4, "task=0x%x, prev=0x%x, notify_port=0x%x\n",
089354bb 1342 priv->task, prev, priv->notify_port);
bb00b29d 1343
a80b95ba
TG
1344 if (kret == KERN_SUCCESS)
1345 {
1346 kret = mach_port_deallocate (gdb_task, prev);
1347 MACH_CHECK_ERROR (kret);
1348 }
1349
82b19a4d 1350 /* Destroy notify_port. */
089354bb 1351 kret = mach_port_destroy (gdb_task, priv->notify_port);
bb00b29d
TG
1352 MACH_CHECK_ERROR (kret);
1353
a80b95ba 1354 /* Deallocate saved exception ports. */
089354bb 1355 darwin_deallocate_exception_ports (priv);
a80b95ba 1356
82b19a4d 1357 /* Deallocate task port. */
089354bb 1358 kret = mach_port_deallocate (gdb_task, priv->task);
a80b95ba
TG
1359 MACH_CHECK_ERROR (kret);
1360
fe978cb0 1361 inf->priv = NULL;
a80b95ba 1362
f6ac5f3d 1363 inf_child_target::mourn_inferior ();
a80b95ba
TG
1364}
1365
1366static void
bb00b29d 1367darwin_reply_to_all_pending_messages (struct inferior *inf)
a80b95ba 1368{
089354bb 1369 darwin_inferior *priv = get_darwin_inferior (inf);
a80b95ba 1370
089354bb 1371 for (darwin_thread_t *t : priv->threads)
bb00b29d
TG
1372 {
1373 if (t->msg_state == DARWIN_MESSAGE)
1374 darwin_resume_thread (inf, t, 0, 0);
1375 }
a80b95ba
TG
1376}
1377
e7eee665
SM
1378void
1379darwin_nat_target::stop_inferior (inferior *inf)
a80b95ba
TG
1380{
1381 struct target_waitstatus wstatus;
1382 ptid_t ptid;
a80b95ba 1383 int res;
089354bb 1384 darwin_inferior *priv = get_darwin_inferior (inf);
a80b95ba 1385
bb00b29d 1386 gdb_assert (inf != NULL);
a80b95ba 1387
bb00b29d 1388 darwin_suspend_inferior (inf);
a80b95ba 1389
bb00b29d 1390 darwin_reply_to_all_pending_messages (inf);
a80b95ba 1391
089354bb 1392 if (priv->no_ptrace)
bb00b29d 1393 return;
a80b95ba 1394
e7eee665 1395 res = ::kill (inf->pid, SIGSTOP);
bb00b29d 1396 if (res != 0)
b37520b6 1397 warning (_("cannot kill: %s"), safe_strerror (errno));
a80b95ba 1398
bb00b29d
TG
1399 /* Wait until the process is really stopped. */
1400 while (1)
a80b95ba 1401 {
fe7d6a8d 1402 ptid = wait_1 (ptid_t (inf->pid), &wstatus);
bb00b29d 1403 if (wstatus.kind == TARGET_WAITKIND_STOPPED
a493e3e2 1404 && wstatus.value.sig == GDB_SIGNAL_STOP)
bb00b29d 1405 break;
a80b95ba
TG
1406 }
1407}
1408
1409static kern_return_t
1410darwin_save_exception_ports (darwin_inferior *inf)
1411{
1412 kern_return_t kret;
1413
1414 inf->exception_info.count =
1415 sizeof (inf->exception_info.ports) / sizeof (inf->exception_info.ports[0]);
1416
1417 kret = task_get_exception_ports
1418 (inf->task, EXC_MASK_ALL, inf->exception_info.masks,
1419 &inf->exception_info.count, inf->exception_info.ports,
1420 inf->exception_info.behaviors, inf->exception_info.flavors);
1421 return kret;
1422}
1423
1424static kern_return_t
1425darwin_restore_exception_ports (darwin_inferior *inf)
1426{
1427 int i;
1428 kern_return_t kret;
1429
1430 for (i = 0; i < inf->exception_info.count; i++)
1431 {
1432 kret = task_set_exception_ports
dda83cd7 1433 (inf->task, inf->exception_info.masks[i], inf->exception_info.ports[i],
a80b95ba
TG
1434 inf->exception_info.behaviors[i], inf->exception_info.flavors[i]);
1435 if (kret != KERN_SUCCESS)
dda83cd7 1436 return kret;
a80b95ba
TG
1437 }
1438
1439 return KERN_SUCCESS;
1440}
1441
82b19a4d
TG
1442/* Deallocate saved exception ports. */
1443
1444static void
1445darwin_deallocate_exception_ports (darwin_inferior *inf)
1446{
1447 int i;
1448 kern_return_t kret;
1449
1450 for (i = 0; i < inf->exception_info.count; i++)
1451 {
1452 kret = mach_port_deallocate (gdb_task, inf->exception_info.ports[i]);
1453 MACH_CHECK_ERROR (kret);
1454 }
1455 inf->exception_info.count = 0;
1456}
1457
1458static void
1459darwin_setup_exceptions (struct inferior *inf)
1460{
089354bb 1461 darwin_inferior *priv = get_darwin_inferior (inf);
82b19a4d 1462 kern_return_t kret;
82b19a4d
TG
1463 exception_mask_t mask;
1464
089354bb 1465 kret = darwin_save_exception_ports (priv);
82b19a4d
TG
1466 if (kret != KERN_SUCCESS)
1467 error (_("Unable to save exception ports, task_get_exception_ports"
1468 "returned: %d"),
1469 kret);
1470
1471 /* Set exception port. */
1472 if (enable_mach_exceptions)
1473 mask = EXC_MASK_ALL;
1474 else
1475 mask = EXC_MASK_SOFTWARE | EXC_MASK_BREAKPOINT;
089354bb 1476 kret = task_set_exception_ports (priv->task, mask, darwin_ex_port,
82b19a4d
TG
1477 EXCEPTION_DEFAULT, THREAD_STATE_NONE);
1478 if (kret != KERN_SUCCESS)
1479 error (_("Unable to set exception ports, task_set_exception_ports"
1480 "returned: %d"),
1481 kret);
1482}
1483
f6ac5f3d
PA
1484void
1485darwin_nat_target::kill ()
bb00b29d
TG
1486{
1487 struct inferior *inf = current_inferior ();
089354bb 1488 darwin_inferior *priv = get_darwin_inferior (inf);
bb00b29d
TG
1489 struct target_waitstatus wstatus;
1490 ptid_t ptid;
1491 kern_return_t kret;
bb00b29d
TG
1492 int res;
1493
d7e15655 1494 if (inferior_ptid == null_ptid)
bb00b29d
TG
1495 return;
1496
1497 gdb_assert (inf != NULL);
1498
089354bb 1499 kret = darwin_restore_exception_ports (priv);
ee41036f 1500 MACH_CHECK_ERROR (kret);
bb00b29d 1501
ee41036f 1502 darwin_reply_to_all_pending_messages (inf);
bb00b29d 1503
f6ac5f3d 1504 res = ::kill (inf->pid, 9);
bb00b29d 1505
ee41036f 1506 if (res == 0)
bb00b29d 1507 {
15843549 1508 /* On MacOS version Sierra, the darwin_restore_exception_ports call
dda83cd7
SM
1509 does not work as expected.
1510 When the kill function is called, the SIGKILL signal is received
1511 by gdb whereas it should have been received by the kernel since
1512 the exception ports have been restored.
1513 This behavior is not the expected one thus gdb does not reply to
1514 the received SIGKILL message. This situation leads to a "busy"
1515 resource from the kernel point of view and the inferior is never
1516 released, causing it to remain as a zombie process, even after
15843549 1517 GDB exits.
dda83cd7
SM
1518 To work around this, we mark all the threads of the inferior as
1519 signaled thus darwin_decode_message function knows that the kill
1520 signal was sent by gdb and will take the appropriate action
1521 (cancel signal and reply to the signal message). */
15843549 1522 for (darwin_thread_t *thread : priv->threads)
dda83cd7 1523 thread->signaled = 1;
15843549 1524
bb00b29d 1525 darwin_resume_inferior (inf);
a6290449 1526
fe7d6a8d 1527 ptid = wait_1 (ptid_t (inf->pid), &wstatus);
bb00b29d 1528 }
ee41036f
TG
1529 else if (errno != ESRCH)
1530 warning (_("Failed to kill inferior: kill (%d, 9) returned [%s]"),
1531 inf->pid, safe_strerror (errno));
bb00b29d 1532
fe7d6a8d 1533 target_mourn_inferior (ptid_t (inf->pid));
bb00b29d
TG
1534}
1535
82b19a4d
TG
1536static void
1537darwin_setup_request_notification (struct inferior *inf)
1538{
089354bb 1539 darwin_inferior *priv = get_darwin_inferior (inf);
82b19a4d
TG
1540 kern_return_t kret;
1541 mach_port_t prev_not;
1542
089354bb 1543 kret = mach_port_request_notification (gdb_task, priv->task,
82b19a4d 1544 MACH_NOTIFY_DEAD_NAME, 0,
089354bb 1545 priv->notify_port,
82b19a4d
TG
1546 MACH_MSG_TYPE_MAKE_SEND_ONCE,
1547 &prev_not);
1548 if (kret != KERN_SUCCESS)
1549 error (_("Termination notification request failed, "
1550 "mach_port_request_notification\n"
1551 "returned: %d"),
1552 kret);
1553 if (prev_not != MACH_PORT_NULL)
1554 {
1555 /* This is unexpected, as there should not be any previously
1556 registered notification request. But this is not a fatal
1557 issue, so just emit a warning. */
1558 warning (_("\
1559A task termination request was registered before the debugger registered\n\
1560its own. This is unexpected, but should otherwise not have any actual\n\
1561impact on the debugging session."));
1562 }
1563}
1564
bb00b29d
TG
1565static void
1566darwin_attach_pid (struct inferior *inf)
a80b95ba 1567{
a80b95ba 1568 kern_return_t kret;
a80b95ba 1569
089354bb
SM
1570 darwin_inferior *priv = new darwin_inferior;
1571 inf->priv.reset (priv);
bb00b29d 1572
a70b8144 1573 try
a80b95ba 1574 {
a50c11c6
TT
1575 kret = task_for_pid (gdb_task, inf->pid, &priv->task);
1576 if (kret != KERN_SUCCESS)
a80b95ba 1577 {
a50c11c6 1578 int status;
a80b95ba 1579
a50c11c6
TT
1580 if (!inf->attach_flag)
1581 {
1582 kill (inf->pid, 9);
1583 waitpid (inf->pid, &status, 0);
1584 }
a80b95ba 1585
a50c11c6
TT
1586 error
1587 (_("Unable to find Mach task port for process-id %d: %s (0x%lx).\n"
1588 " (please check gdb is codesigned - see taskgated(8))"),
1589 inf->pid, mach_error_string (kret), (unsigned long) kret);
1590 }
a80b95ba 1591
a50c11c6
TT
1592 inferior_debug (2, _("inferior task: 0x%x, pid: %d\n"),
1593 priv->task, inf->pid);
a80b95ba 1594
a50c11c6
TT
1595 if (darwin_ex_port == MACH_PORT_NULL)
1596 {
1597 /* Create a port to get exceptions. */
1598 kret = mach_port_allocate (gdb_task, MACH_PORT_RIGHT_RECEIVE,
1599 &darwin_ex_port);
1600 if (kret != KERN_SUCCESS)
1601 error (_("Unable to create exception port, mach_port_allocate "
1602 "returned: %d"),
1603 kret);
1604
1605 kret = mach_port_insert_right (gdb_task, darwin_ex_port,
1606 darwin_ex_port,
1607 MACH_MSG_TYPE_MAKE_SEND);
1608 if (kret != KERN_SUCCESS)
1609 error (_("Unable to create exception port, mach_port_insert_right "
1610 "returned: %d"),
1611 kret);
1612
1613 /* Create a port set and put ex_port in it. */
1614 kret = mach_port_allocate (gdb_task, MACH_PORT_RIGHT_PORT_SET,
1615 &darwin_port_set);
1616 if (kret != KERN_SUCCESS)
1617 error (_("Unable to create port set, mach_port_allocate "
1618 "returned: %d"),
1619 kret);
1620
1621 kret = mach_port_move_member (gdb_task, darwin_ex_port,
1622 darwin_port_set);
1623 if (kret != KERN_SUCCESS)
1624 error (_("Unable to move exception port into new port set, "
1625 "mach_port_move_member\n"
1626 "returned: %d"),
1627 kret);
1628 }
a80b95ba 1629
a50c11c6
TT
1630 /* Create a port to be notified when the child task terminates. */
1631 kret = mach_port_allocate (gdb_task, MACH_PORT_RIGHT_RECEIVE,
1632 &priv->notify_port);
fda184b6 1633 if (kret != KERN_SUCCESS)
a50c11c6 1634 error (_("Unable to create notification port, mach_port_allocate "
fda184b6
JB
1635 "returned: %d"),
1636 kret);
a80b95ba 1637
a50c11c6
TT
1638 kret = mach_port_move_member (gdb_task,
1639 priv->notify_port, darwin_port_set);
fda184b6 1640 if (kret != KERN_SUCCESS)
a50c11c6 1641 error (_("Unable to move notification port into new port set, "
fda184b6
JB
1642 "mach_port_move_member\n"
1643 "returned: %d"),
1644 kret);
a80b95ba 1645
a50c11c6 1646 darwin_setup_request_notification (inf);
a80b95ba 1647
a50c11c6
TT
1648 darwin_setup_exceptions (inf);
1649 }
230d2906 1650 catch (const gdb_exception &ex)
a50c11c6 1651 {
a7d0f0f0 1652 exit_inferior (inf);
fe7d6a8d 1653 switch_to_no_thread ();
a80b95ba 1654
eedc3f4f 1655 throw;
a50c11c6 1656 }
a80b95ba 1657
59f413d5 1658 target_ops *darwin_ops = get_native_target ();
c8fbd44a 1659 if (!inf->target_is_pushed (darwin_ops))
02980c56 1660 inf->push_target (darwin_ops);
a80b95ba
TG
1661}
1662
7aabaf9d 1663/* Get the thread_info object corresponding to this darwin_thread_info. */
db665f42
SM
1664
1665static struct thread_info *
7aabaf9d 1666thread_info_from_private_thread_info (darwin_thread_info *pti)
db665f42 1667{
61c9c421 1668 for (struct thread_info *it : all_threads ())
db665f42 1669 {
7aabaf9d
SM
1670 darwin_thread_info *iter_pti = get_darwin_thread_info (it);
1671
1672 if (iter_pti->gdb_port == pti->gdb_port)
08036331 1673 return it;
db665f42
SM
1674 }
1675
08036331 1676 gdb_assert_not_reached ("did not find gdb thread for darwin thread");
db665f42
SM
1677}
1678
e7eee665
SM
1679void
1680darwin_nat_target::init_thread_list (inferior *inf)
a80b95ba 1681{
e7eee665 1682 check_new_threads (inf);
a80b95ba 1683
089354bb 1684 darwin_inferior *priv = get_darwin_inferior (inf);
bb00b29d 1685
089354bb
SM
1686 gdb_assert (!priv->threads.empty ());
1687
7aabaf9d 1688 darwin_thread_info *first_pti = priv->threads.front ();
db665f42
SM
1689 struct thread_info *first_thread
1690 = thread_info_from_private_thread_info (first_pti);
1691
fe7d6a8d 1692 switch_to_thread (first_thread);
bb00b29d
TG
1693}
1694
1695/* The child must synchronize with gdb: gdb must set the exception port
1696 before the child call PTRACE_SIGEXC. We use a pipe to achieve this.
1697 FIXME: is there a lighter way ? */
1698static int ptrace_fds[2];
1699
1700static void
1701darwin_ptrace_me (void)
1702{
1703 int res;
1704 char c;
1705
1706 /* Close write end point. */
0db8980c
SDJ
1707 if (close (ptrace_fds[1]) < 0)
1708 trace_start_error_with_name ("close");
bb00b29d
TG
1709
1710 /* Wait until gdb is ready. */
1711 res = read (ptrace_fds[0], &c, 1);
fda184b6 1712 if (res != 0)
0db8980c
SDJ
1713 trace_start_error (_("unable to read from pipe, read returned: %d"), res);
1714
1715 if (close (ptrace_fds[0]) < 0)
1716 trace_start_error_with_name ("close");
bb00b29d
TG
1717
1718 /* Get rid of privileges. */
0db8980c
SDJ
1719 if (setegid (getgid ()) < 0)
1720 trace_start_error_with_name ("setegid");
bb00b29d
TG
1721
1722 /* Set TRACEME. */
0db8980c
SDJ
1723 if (PTRACE (PT_TRACE_ME, 0, 0, 0) < 0)
1724 trace_start_error_with_name ("PTRACE");
bb00b29d
TG
1725
1726 /* Redirect signals to exception port. */
0db8980c
SDJ
1727 if (PTRACE (PT_SIGEXC, 0, 0, 0) < 0)
1728 trace_start_error_with_name ("PTRACE");
bb00b29d
TG
1729}
1730
1731/* Dummy function to be sure fork_inferior uses fork(2) and not vfork(2). */
1732static void
1733darwin_pre_ptrace (void)
1734{
1735 if (pipe (ptrace_fds) != 0)
1736 {
1737 ptrace_fds[0] = -1;
1738 ptrace_fds[1] = -1;
1739 error (_("unable to create a pipe: %s"), safe_strerror (errno));
1740 }
21ff4686
TT
1741
1742 mark_fd_no_cloexec (ptrace_fds[0]);
1743 mark_fd_no_cloexec (ptrace_fds[1]);
a80b95ba
TG
1744}
1745
e7eee665
SM
1746void
1747darwin_nat_target::ptrace_him (int pid)
a80b95ba 1748{
bb00b29d 1749 struct inferior *inf = current_inferior ();
a80b95ba 1750
bb00b29d 1751 darwin_attach_pid (inf);
a80b95ba
TG
1752
1753 /* Let's the child run. */
e7eee665
SM
1754 ::close (ptrace_fds[0]);
1755 ::close (ptrace_fds[1]);
a80b95ba 1756
21ff4686
TT
1757 unmark_fd_no_cloexec (ptrace_fds[0]);
1758 unmark_fd_no_cloexec (ptrace_fds[1]);
1759
e7eee665 1760 init_thread_list (inf);
bb00b29d 1761
2090129c 1762 gdb_startup_inferior (pid, START_INFERIOR_TRAPS_EXPECTED);
a80b95ba
TG
1763}
1764
e69860f1
TG
1765static void
1766darwin_execvp (const char *file, char * const argv[], char * const env[])
1767{
1768 posix_spawnattr_t attr;
1769 short ps_flags = 0;
f00c55f8 1770 int res;
e69860f1 1771
f00c55f8
TG
1772 res = posix_spawnattr_init (&attr);
1773 if (res != 0)
e69860f1
TG
1774 {
1775 fprintf_unfiltered
dda83cd7 1776 (gdb_stderr, "Cannot initialize attribute for posix_spawn\n");
e69860f1
TG
1777 return;
1778 }
1779
1780 /* Do like execve: replace the image. */
1781 ps_flags = POSIX_SPAWN_SETEXEC;
1782
1783 /* Disable ASLR. The constant doesn't look to be available outside the
1784 kernel include files. */
1785#ifndef _POSIX_SPAWN_DISABLE_ASLR
1786#define _POSIX_SPAWN_DISABLE_ASLR 0x0100
1787#endif
1788 ps_flags |= _POSIX_SPAWN_DISABLE_ASLR;
f00c55f8
TG
1789 res = posix_spawnattr_setflags (&attr, ps_flags);
1790 if (res != 0)
e69860f1 1791 {
f00c55f8 1792 fprintf_unfiltered (gdb_stderr, "Cannot set posix_spawn flags\n");
e69860f1
TG
1793 return;
1794 }
1795
1796 posix_spawnp (NULL, argv[0], NULL, &attr, argv, env);
1797}
1798
b50a8b9a
TT
1799/* Read kernel version, and return TRUE if this host may have System
1800 Integrity Protection (Sierra or later). */
d6be54ef
XR
1801
1802static bool
b50a8b9a 1803may_have_sip ()
d6be54ef
XR
1804{
1805 char str[16];
1806 size_t sz = sizeof (str);
1807 int ret;
1808
1809 ret = sysctlbyname ("kern.osrelease", str, &sz, NULL, 0);
1810 if (ret == 0 && sz < sizeof (str))
1811 {
1812 unsigned long ver = strtoul (str, NULL, 10);
1813 if (ver >= 16)
dda83cd7 1814 return true;
d6be54ef
XR
1815 }
1816 return false;
1817}
1818
b50a8b9a
TT
1819/* A helper for maybe_cache_shell. This copies the shell to the
1820 cache. It will throw an exception on any failure. */
1821
1822static void
1823copy_shell_to_cache (const char *shell, const std::string &new_name)
1824{
1825 scoped_fd from_fd (gdb_open_cloexec (shell, O_RDONLY, 0));
1826 if (from_fd.get () < 0)
1827 error (_("Could not open shell (%s) for reading: %s"),
1828 shell, safe_strerror (errno));
1829
1830 std::string new_dir = ldirname (new_name.c_str ());
1831 if (!mkdir_recursive (new_dir.c_str ()))
1832 error (_("Could not make cache directory \"%s\": %s"),
1833 new_dir.c_str (), safe_strerror (errno));
1834
1835 gdb::char_vector temp_name = make_temp_filename (new_name);
1836 scoped_fd to_fd (gdb_mkostemp_cloexec (&temp_name[0]));
1837 gdb::unlinker unlink_file_on_error (temp_name.data ());
1838
1839 if (to_fd.get () < 0)
1840 error (_("Could not open temporary file \"%s\" for writing: %s"),
1841 temp_name.data (), safe_strerror (errno));
1842
1843 if (fcopyfile (from_fd.get (), to_fd.get (), nullptr,
1844 COPYFILE_STAT | COPYFILE_DATA) != 0)
1845 error (_("Could not copy shell to cache as \"%s\": %s"),
1846 temp_name.data (), safe_strerror (errno));
1847
1848 /* Be sure that the caching is atomic so that we don't get bad
1849 results from multiple copies of gdb running at the same time. */
1850 if (rename (temp_name.data (), new_name.c_str ()) != 0)
1851 error (_("Could not rename shell cache file to \"%s\": %s"),
1852 new_name.c_str (), safe_strerror (errno));
1853
1854 unlink_file_on_error.keep ();
1855}
1856
1857/* If $SHELL is restricted, try to cache a copy. Starting with El
1858 Capitan, macOS introduced System Integrity Protection. Among other
1859 things, this prevents certain executables from being ptrace'd. In
1860 particular, executables in /bin, like most shells, are affected.
1861 To work around this, while preserving command-line glob expansion
1862 and redirections, gdb will cache a copy of the shell. Return true
1863 if all is well -- either the shell is not subject to SIP or it has
1864 been successfully cached. Returns false if something failed. */
1865
1866static bool
1867maybe_cache_shell ()
1868{
1869 /* SF_RESTRICTED is defined in sys/stat.h and lets us determine if a
1870 given file is subject to SIP. */
1871#ifdef SF_RESTRICTED
1872
1873 /* If a check fails we want to revert -- maybe the user deleted the
1874 cache while gdb was running, or something like that. */
1875 copied_shell = nullptr;
1876
1877 const char *shell = get_shell ();
1878 if (!IS_ABSOLUTE_PATH (shell))
1879 {
1880 warning (_("This version of macOS has System Integrity Protection.\n\
1881Normally gdb would try to work around this by caching a copy of your shell,\n\
1882but because your shell (%s) is not an absolute path, this is being skipped."),
1883 shell);
1884 return false;
1885 }
1886
1887 struct stat sb;
1888 if (stat (shell, &sb) < 0)
1889 {
1890 warning (_("This version of macOS has System Integrity Protection.\n\
1891Normally gdb would try to work around this by caching a copy of your shell,\n\
1892but because gdb could not stat your shell (%s), this is being skipped.\n\
1893The error was: %s"),
1894 shell, safe_strerror (errno));
1895 return false;
1896 }
1897
1898 if ((sb.st_flags & SF_RESTRICTED) == 0)
1899 return true;
1900
1901 /* Put the copy somewhere like ~/Library/Caches/gdb/bin/sh. */
1902 std::string new_name = get_standard_cache_dir ();
1903 /* There's no need to insert a directory separator here, because
1904 SHELL is known to be absolute. */
1905 new_name.append (shell);
1906
1907 /* Maybe it was cached by some earlier gdb. */
1908 if (stat (new_name.c_str (), &sb) != 0 || !S_ISREG (sb.st_mode))
1909 {
a70b8144 1910 try
b50a8b9a
TT
1911 {
1912 copy_shell_to_cache (shell, new_name);
1913 }
230d2906 1914 catch (const gdb_exception_error &ex)
b50a8b9a
TT
1915 {
1916 warning (_("This version of macOS has System Integrity Protection.\n\
1917Because `startup-with-shell' is enabled, gdb tried to work around SIP by\n\
1918caching a copy of your shell. However, this failed:\n\
1919%s\n\
1920If you correct the problem, gdb will automatically try again the next time\n\
1921you \"run\". To prevent these attempts, you can use:\n\
1922 set startup-with-shell off"),
3d6e9d23 1923 ex.what ());
b50a8b9a
TT
1924 return false;
1925 }
b50a8b9a
TT
1926
1927 printf_filtered (_("Note: this version of macOS has System Integrity Protection.\n\
1928Because `startup-with-shell' is enabled, gdb has worked around this by\n\
1929caching a copy of your shell. The shell used by \"run\" is now:\n\
1930 %s\n"),
1931 new_name.c_str ());
1932 }
1933
1934 /* We need to make sure that the new name has the correct lifetime. */
1935 static std::string saved_shell = std::move (new_name);
1936 copied_shell = saved_shell.c_str ();
1937
1938#endif /* SF_RESTRICTED */
1939
1940 return true;
1941}
1942
f6ac5f3d
PA
1943void
1944darwin_nat_target::create_inferior (const char *exec_file,
1945 const std::string &allargs,
1946 char **env, int from_tty)
a80b95ba 1947{
b1f0c0b9 1948 gdb::optional<scoped_restore_tmpl<bool>> restore_startup_with_shell;
e7eee665 1949 darwin_nat_target *the_target = this;
d6be54ef 1950
b50a8b9a 1951 if (startup_with_shell && may_have_sip ())
d6be54ef 1952 {
b50a8b9a
TT
1953 if (!maybe_cache_shell ())
1954 {
1955 warning (_("startup-with-shell is now temporarily disabled"));
1956 restore_startup_with_shell.emplace (&startup_with_shell, 0);
1957 }
d6be54ef
XR
1958 }
1959
a80b95ba 1960 /* Do the hard work. */
db665f42 1961 fork_inferior (exec_file, allargs, env, darwin_ptrace_me,
e7eee665
SM
1962 [the_target] (int pid)
1963 {
1964 the_target->ptrace_him (pid);
1965 },
1966 darwin_pre_ptrace, copied_shell,
db665f42 1967 darwin_execvp);
a80b95ba
TG
1968}
1969\f
1970
726ce67c
JB
1971/* Set things up such that the next call to darwin_wait will immediately
1972 return a fake stop event for inferior INF.
1973
1974 This assumes that the inferior's thread list has been initialized,
1975 as it will suspend the inferior's first thread. */
1976
1977static void
1978darwin_setup_fake_stop_event (struct inferior *inf)
1979{
089354bb 1980 darwin_inferior *priv = get_darwin_inferior (inf);
726ce67c
JB
1981 darwin_thread_t *thread;
1982 kern_return_t kret;
1983
1984 gdb_assert (darwin_inf_fake_stop == NULL);
1985 darwin_inf_fake_stop = inf;
1986
1987 /* When detecting a fake pending stop event, darwin_wait returns
1988 an event saying that the first thread is in a DARWIN_STOPPED
1989 state. To make that accurate, we need to suspend that thread
1990 as well. Otherwise, we'll try resuming it when resuming the
1991 inferior, and get a warning because the thread's suspend count
1992 is already zero, making the resume request useless. */
089354bb 1993 thread = priv->threads[0];
726ce67c
JB
1994 kret = thread_suspend (thread->gdb_port);
1995 MACH_CHECK_ERROR (kret);
1996}
1997
a80b95ba
TG
1998/* Attach to process PID, then initialize for debugging it
1999 and wait for the trace-trap that results from attaching. */
f6ac5f3d
PA
2000void
2001darwin_nat_target::attach (const char *args, int from_tty)
a80b95ba
TG
2002{
2003 pid_t pid;
a80b95ba 2004 struct inferior *inf;
a80b95ba 2005
74164c56 2006 pid = parse_pid_to_attach (args);
a80b95ba 2007
74164c56 2008 if (pid == getpid ()) /* Trying to masturbate? */
a80b95ba
TG
2009 error (_("I refuse to debug myself!"));
2010
2011 if (from_tty)
bb00b29d 2012 {
d9fa87f4 2013 const char *exec_file = get_exec_file (0);
a80b95ba 2014
bb00b29d
TG
2015 if (exec_file)
2016 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 2017 target_pid_to_str (ptid_t (pid)).c_str ());
bb00b29d
TG
2018 else
2019 printf_unfiltered (_("Attaching to %s\n"),
a068643d 2020 target_pid_to_str (ptid_t (pid)).c_str ());
bb00b29d
TG
2021 }
2022
f6ac5f3d 2023 if (pid == 0 || ::kill (pid, 0) < 0)
bb00b29d 2024 error (_("Can't attach to process %d: %s (%d)"),
dda83cd7 2025 pid, safe_strerror (errno), errno);
a80b95ba 2026
6c95b8df
PA
2027 inf = current_inferior ();
2028 inferior_appeared (inf, pid);
a80b95ba 2029 inf->attach_flag = 1;
6c95b8df 2030
bb00b29d 2031 darwin_attach_pid (inf);
a80b95ba 2032
bb00b29d 2033 darwin_suspend_inferior (inf);
a80b95ba 2034
e7eee665 2035 init_thread_list (inf);
a80b95ba 2036
089354bb
SM
2037 darwin_inferior *priv = get_darwin_inferior (inf);
2038
cc6bcb54 2039 darwin_check_osabi (priv, inferior_ptid.tid ());
a80b95ba 2040
726ce67c
JB
2041 darwin_setup_fake_stop_event (inf);
2042
089354bb 2043 priv->no_ptrace = 1;
a80b95ba
TG
2044}
2045
2046/* Take a program previously attached to and detaches it.
2047 The program resumes execution and will no longer stop
2048 on signals, etc. We'd better not have left any breakpoints
2049 in the program or it'll die when it hits one. For this
2050 to work, it may be necessary for the process to have been
2051 previously attached. It *might* work if the program was
2052 started via fork. */
f6ac5f3d
PA
2053
2054void
2055darwin_nat_target::detach (inferior *inf, int from_tty)
a80b95ba 2056{
089354bb 2057 darwin_inferior *priv = get_darwin_inferior (inf);
a80b95ba
TG
2058 kern_return_t kret;
2059 int res;
2060
bb00b29d 2061 /* Display message. */
0f48b757 2062 target_announce_detach (from_tty);
a80b95ba 2063
bb00b29d 2064 /* If ptrace() is in use, stop the process. */
089354bb 2065 if (!priv->no_ptrace)
e7eee665 2066 stop_inferior (inf);
a80b95ba 2067
089354bb 2068 kret = darwin_restore_exception_ports (priv);
a80b95ba
TG
2069 MACH_CHECK_ERROR (kret);
2070
089354bb 2071 if (!priv->no_ptrace)
a80b95ba 2072 {
bb00b29d
TG
2073 res = PTRACE (PT_DETACH, inf->pid, 0, 0);
2074 if (res != 0)
2075 printf_unfiltered (_("Unable to detach from process-id %d: %s (%d)"),
2076 inf->pid, safe_strerror (errno), errno);
a80b95ba
TG
2077 }
2078
bb00b29d 2079 darwin_reply_to_all_pending_messages (inf);
a80b95ba 2080
5e9bc145
JB
2081 /* When using ptrace, we have just performed a PT_DETACH, which
2082 resumes the inferior. On the other hand, when we are not using
2083 ptrace, we need to resume its execution ourselves. */
089354bb 2084 if (priv->no_ptrace)
5e9bc145 2085 darwin_resume_inferior (inf);
a80b95ba 2086
f6ac5f3d 2087 mourn_inferior ();
a80b95ba
TG
2088}
2089
a068643d 2090std::string
f6ac5f3d 2091darwin_nat_target::pid_to_str (ptid_t ptid)
a80b95ba 2092{
cc6bcb54 2093 long tid = ptid.tid ();
bb00b29d
TG
2094
2095 if (tid != 0)
a068643d
TT
2096 return string_printf (_("Thread 0x%lx of process %u"),
2097 tid, ptid.pid ());
a80b95ba 2098
bb00b29d 2099 return normal_pid_to_str (ptid);
a80b95ba
TG
2100}
2101
57810aa7 2102bool
f6ac5f3d 2103darwin_nat_target::thread_alive (ptid_t ptid)
a80b95ba 2104{
57810aa7 2105 return true;
a80b95ba
TG
2106}
2107
2108/* If RDADDR is not NULL, read inferior task's LEN bytes from ADDR and
2109 copy it to RDADDR in gdb's address space.
2110 If WRADDR is not NULL, write gdb's LEN bytes from WRADDR and copy it
2111 to ADDR in inferior task's address space.
85102364 2112 Return 0 on failure; number of bytes read / written otherwise. */
3eb831e0 2113
a80b95ba
TG
2114static int
2115darwin_read_write_inferior (task_t task, CORE_ADDR addr,
b9dd1947 2116 gdb_byte *rdaddr, const gdb_byte *wraddr,
b55e14c7 2117 ULONGEST length)
a80b95ba 2118{
bb00b29d 2119 kern_return_t kret;
3eb831e0 2120 mach_vm_size_t res_length = 0;
a80b95ba 2121
b55e14c7
YQ
2122 inferior_debug (8, _("darwin_read_write_inferior(task=0x%x, %s, len=%s)\n"),
2123 task, core_addr_to_string (addr), pulongest (length));
bb00b29d 2124
3eb831e0
TG
2125 /* First read. */
2126 if (rdaddr != NULL)
a80b95ba 2127 {
3eb831e0 2128 mach_vm_size_t count;
a80b95ba 2129
3eb831e0
TG
2130 /* According to target.h(to_xfer_partial), one and only one may be
2131 non-null. */
2132 gdb_assert (wraddr == NULL);
a80b95ba 2133
3eb831e0
TG
2134 kret = mach_vm_read_overwrite (task, addr, length,
2135 (mach_vm_address_t) rdaddr, &count);
2136 if (kret != KERN_SUCCESS)
2137 {
2138 inferior_debug
2139 (1, _("darwin_read_write_inferior: mach_vm_read failed at %s: %s"),
2140 core_addr_to_string (addr), mach_error_string (kret));
2141 return 0;
2142 }
2143 return count;
2144 }
a80b95ba 2145
3eb831e0
TG
2146 /* See above. */
2147 gdb_assert (wraddr != NULL);
a80b95ba 2148
3eb831e0 2149 while (length != 0)
a80b95ba 2150 {
3eb831e0
TG
2151 mach_vm_address_t offset = addr & (mach_page_size - 1);
2152 mach_vm_address_t region_address = (mach_vm_address_t) (addr - offset);
2153 mach_vm_size_t aligned_length =
2154 (mach_vm_size_t) PAGE_ROUND (offset + length);
bb00b29d 2155 vm_region_submap_short_info_data_64_t info;
3eb831e0
TG
2156 mach_msg_type_number_t count = VM_REGION_SUBMAP_SHORT_INFO_COUNT_64;
2157 natural_t region_depth = 1000;
bb00b29d 2158 mach_vm_address_t region_start = region_address;
3eb831e0
TG
2159 mach_vm_size_t region_length;
2160 mach_vm_size_t write_length;
bb00b29d 2161
3eb831e0 2162 /* Read page protection. */
bb00b29d
TG
2163 kret = mach_vm_region_recurse
2164 (task, &region_start, &region_length, &region_depth,
2165 (vm_region_recurse_info_t) &info, &count);
2166
2167 if (kret != KERN_SUCCESS)
a80b95ba 2168 {
bb00b29d
TG
2169 inferior_debug (1, _("darwin_read_write_inferior: "
2170 "mach_vm_region_recurse failed at %s: %s\n"),
2171 core_addr_to_string (region_address),
2172 mach_error_string (kret));
3eb831e0 2173 return res_length;
a80b95ba
TG
2174 }
2175
bb00b29d
TG
2176 inferior_debug
2177 (9, _("darwin_read_write_inferior: "
2178 "mach_vm_region_recurse addr=%s, start=%s, len=%s\n"),
2179 core_addr_to_string (region_address),
2180 core_addr_to_string (region_start),
2181 core_addr_to_string (region_length));
2182
0963b4bd 2183 /* Check for holes in memory. */
bb00b29d 2184 if (region_start > region_address)
a80b95ba 2185 {
0963b4bd 2186 warning (_("No memory at %s (vs %s+0x%x). Nothing written"),
a80b95ba 2187 core_addr_to_string (region_address),
bb00b29d 2188 core_addr_to_string (region_start),
a80b95ba 2189 (unsigned)region_length);
3eb831e0 2190 return res_length;
a80b95ba
TG
2191 }
2192
bb00b29d
TG
2193 /* Adjust the length. */
2194 region_length -= (region_address - region_start);
3eb831e0
TG
2195 if (region_length > aligned_length)
2196 region_length = aligned_length;
bb00b29d 2197
3eb831e0
TG
2198 /* Make the pages RW. */
2199 if (!(info.protection & VM_PROT_WRITE))
a80b95ba 2200 {
3eb831e0
TG
2201 vm_prot_t prot = VM_PROT_READ | VM_PROT_WRITE;
2202
2203 kret = mach_vm_protect (task, region_address, region_length,
2204 FALSE, prot);
bb00b29d
TG
2205 if (kret != KERN_SUCCESS)
2206 {
3eb831e0
TG
2207 prot |= VM_PROT_COPY;
2208 kret = mach_vm_protect (task, region_address, region_length,
2209 FALSE, prot);
2210 }
2211 if (kret != KERN_SUCCESS)
2212 {
2213 warning (_("darwin_read_write_inferior: "
2214 "mach_vm_protect failed at %s "
2215 "(len=0x%lx, prot=0x%x): %s"),
bb00b29d 2216 core_addr_to_string (region_address),
3eb831e0 2217 (unsigned long) region_length, (unsigned) prot,
bb00b29d 2218 mach_error_string (kret));
3eb831e0 2219 return res_length;
bb00b29d 2220 }
a80b95ba
TG
2221 }
2222
3eb831e0
TG
2223 if (offset + length > region_length)
2224 write_length = region_length - offset;
2225 else
2226 write_length = length;
2227
2228 /* Write. */
2229 kret = mach_vm_write (task, addr, (vm_offset_t) wraddr, write_length);
2230 if (kret != KERN_SUCCESS)
2231 {
2232 warning (_("darwin_read_write_inferior: mach_vm_write failed: %s"),
2233 mach_error_string (kret));
2234 return res_length;
2235 }
2236
2237 /* Restore page rights. */
a80b95ba
TG
2238 if (!(info.protection & VM_PROT_WRITE))
2239 {
bb00b29d 2240 kret = mach_vm_protect (task, region_address, region_length,
3eb831e0 2241 FALSE, info.protection);
bb00b29d 2242 if (kret != KERN_SUCCESS)
a80b95ba 2243 {
3eb831e0
TG
2244 warning (_("darwin_read_write_inferior: "
2245 "mach_vm_protect restore failed at %s "
2246 "(len=0x%lx): %s"),
bb00b29d 2247 core_addr_to_string (region_address),
3eb831e0
TG
2248 (unsigned long) region_length,
2249 mach_error_string (kret));
a80b95ba
TG
2250 }
2251 }
a80b95ba 2252
3eb831e0
TG
2253 addr += write_length;
2254 wraddr += write_length;
2255 res_length += write_length;
2256 length -= write_length;
a80b95ba 2257 }
3eb831e0
TG
2258
2259 return res_length;
a80b95ba
TG
2260}
2261
f00c55f8 2262/* Read LENGTH bytes at offset ADDR of task_dyld_info for TASK, and copy them
ad2073b0 2263 to RDADDR (in big endian).
569283d4 2264 Return 0 on failure; number of bytes read / written otherwise. */
f00c55f8 2265
b967eb24 2266#ifdef TASK_DYLD_INFO_COUNT
569283d4 2267/* This is not available in Darwin 9. */
9b409511 2268static enum target_xfer_status
b9dd1947 2269darwin_read_dyld_info (task_t task, CORE_ADDR addr, gdb_byte *rdaddr,
9b409511 2270 ULONGEST length, ULONGEST *xfered_len)
f00c55f8
TG
2271{
2272 struct task_dyld_info task_dyld_info;
2273 mach_msg_type_number_t count = TASK_DYLD_INFO_COUNT;
f00c55f8
TG
2274 kern_return_t kret;
2275
ad2073b0 2276 if (addr != 0 || length > sizeof (mach_vm_address_t))
9b409511 2277 return TARGET_XFER_EOF;
f00c55f8 2278
ad2073b0
TG
2279 kret = task_info (task, TASK_DYLD_INFO,
2280 (task_info_t) &task_dyld_info, &count);
f00c55f8
TG
2281 MACH_CHECK_ERROR (kret);
2282 if (kret != KERN_SUCCESS)
2ed4b548 2283 return TARGET_XFER_E_IO;
ad2073b0
TG
2284
2285 store_unsigned_integer (rdaddr, length, BFD_ENDIAN_BIG,
2286 task_dyld_info.all_image_info_addr);
9b409511
YQ
2287 *xfered_len = (ULONGEST) length;
2288 return TARGET_XFER_OK;
f00c55f8 2289}
569283d4 2290#endif
f00c55f8 2291
a80b95ba 2292\f
a80b95ba 2293
f6ac5f3d
PA
2294enum target_xfer_status
2295darwin_nat_target::xfer_partial (enum target_object object, const char *annex,
2296 gdb_byte *readbuf, const gdb_byte *writebuf,
2297 ULONGEST offset, ULONGEST len,
2298 ULONGEST *xfered_len)
a80b95ba 2299{
bb00b29d 2300 struct inferior *inf = current_inferior ();
089354bb 2301 darwin_inferior *priv = get_darwin_inferior (inf);
bb00b29d
TG
2302
2303 inferior_debug
b55e14c7
YQ
2304 (8, _("darwin_xfer_partial(%s, %s, rbuf=%s, wbuf=%s) pid=%u\n"),
2305 core_addr_to_string (offset), pulongest (len),
854f4b0e
TG
2306 host_address_to_string (readbuf), host_address_to_string (writebuf),
2307 inf->pid);
a80b95ba 2308
f00c55f8
TG
2309 switch (object)
2310 {
2311 case TARGET_OBJECT_MEMORY:
9b409511 2312 {
089354bb 2313 int l = darwin_read_write_inferior (priv->task, offset,
9b409511
YQ
2314 readbuf, writebuf, len);
2315
2316 if (l == 0)
2317 return TARGET_XFER_EOF;
2318 else
2319 {
2320 gdb_assert (l > 0);
2321 *xfered_len = (ULONGEST) l;
2322 return TARGET_XFER_OK;
2323 }
2324 }
569283d4 2325#ifdef TASK_DYLD_INFO_COUNT
f00c55f8
TG
2326 case TARGET_OBJECT_DARWIN_DYLD_INFO:
2327 if (writebuf != NULL || readbuf == NULL)
dda83cd7
SM
2328 {
2329 /* Support only read. */
2330 return TARGET_XFER_E_IO;
2331 }
089354bb 2332 return darwin_read_dyld_info (priv->task, offset, readbuf, len,
9b409511 2333 xfered_len);
569283d4 2334#endif
f00c55f8 2335 default:
2ed4b548 2336 return TARGET_XFER_E_IO;
f00c55f8 2337 }
a80b95ba 2338
a80b95ba
TG
2339}
2340
2341static void
0fc76421 2342set_enable_mach_exceptions (const char *args, int from_tty,
a80b95ba
TG
2343 struct cmd_list_element *c)
2344{
d7e15655 2345 if (inferior_ptid != null_ptid)
a80b95ba 2346 {
bb00b29d 2347 struct inferior *inf = current_inferior ();
089354bb 2348 darwin_inferior *priv = get_darwin_inferior (inf);
a80b95ba
TG
2349 exception_mask_t mask;
2350 kern_return_t kret;
2351
2352 if (enable_mach_exceptions)
2353 mask = EXC_MASK_ALL;
2354 else
2355 {
089354bb 2356 darwin_restore_exception_ports (priv);
bb00b29d 2357 mask = EXC_MASK_SOFTWARE | EXC_MASK_BREAKPOINT;
a80b95ba 2358 }
089354bb 2359 kret = task_set_exception_ports (priv->task, mask, darwin_ex_port,
a80b95ba
TG
2360 EXCEPTION_DEFAULT, THREAD_STATE_NONE);
2361 MACH_CHECK_ERROR (kret);
2362 }
2363}
2364
f6ac5f3d
PA
2365char *
2366darwin_nat_target::pid_to_exec_file (int pid)
bb00b29d 2367{
b4ab256d 2368 static char path[PATH_MAX];
bb00b29d
TG
2369 int res;
2370
d8d2a3ee 2371 res = proc_pidinfo (pid, PROC_PIDPATHINFO, 0, path, PATH_MAX);
bb00b29d
TG
2372 if (res >= 0)
2373 return path;
2374 else
2375 return NULL;
2376}
2377
f6ac5f3d
PA
2378ptid_t
2379darwin_nat_target::get_ada_task_ptid (long lwp, long thread)
bb00b29d 2380{
bb00b29d 2381 struct inferior *inf = current_inferior ();
089354bb 2382 darwin_inferior *priv = get_darwin_inferior (inf);
bb00b29d
TG
2383 kern_return_t kret;
2384 mach_port_name_array_t names;
2385 mach_msg_type_number_t names_count;
2386 mach_port_type_array_t types;
2387 mach_msg_type_number_t types_count;
2388 long res = 0;
2389
2390 /* First linear search. */
089354bb
SM
2391 for (darwin_thread_t *t : priv->threads)
2392 {
2393 if (t->inf_port == lwp)
e99b03dc 2394 return ptid_t (inferior_ptid.pid (), 0, t->gdb_port);
089354bb 2395 }
bb00b29d
TG
2396
2397 /* Maybe the port was never extract. Do it now. */
2398
2399 /* First get inferior port names. */
089354bb 2400 kret = mach_port_names (priv->task, &names, &names_count, &types,
bb00b29d
TG
2401 &types_count);
2402 MACH_CHECK_ERROR (kret);
2403 if (kret != KERN_SUCCESS)
2404 return null_ptid;
2405
2406 /* For each name, copy the right in the gdb space and then compare with
2407 our view of the inferior threads. We don't forget to deallocate the
2408 right. */
089354bb 2409 for (int i = 0; i < names_count; i++)
bb00b29d
TG
2410 {
2411 mach_port_t local_name;
2412 mach_msg_type_name_t local_type;
2413
2414 /* We just need to know the corresponding name in gdb name space.
2415 So extract and deallocate the right. */
089354bb 2416 kret = mach_port_extract_right (priv->task, names[i],
bb00b29d
TG
2417 MACH_MSG_TYPE_COPY_SEND,
2418 &local_name, &local_type);
2419 if (kret != KERN_SUCCESS)
2420 continue;
2421 mach_port_deallocate (gdb_task, local_name);
2422
089354bb
SM
2423 for (darwin_thread_t *t : priv->threads)
2424 {
2425 if (t->gdb_port == local_name)
2426 {
2427 t->inf_port = names[i];
2428 if (names[i] == lwp)
2429 res = t->gdb_port;
2430 }
2431 }
bb00b29d
TG
2432 }
2433
2434 vm_deallocate (gdb_task, (vm_address_t) names,
dda83cd7 2435 names_count * sizeof (mach_port_t));
bb00b29d
TG
2436
2437 if (res)
fe7d6a8d 2438 return ptid_t (current_inferior ()->pid, 0, res);
bb00b29d
TG
2439 else
2440 return null_ptid;
2441}
2442
57810aa7 2443bool
f6ac5f3d 2444darwin_nat_target::supports_multi_process ()
bb00b29d 2445{
57810aa7 2446 return true;
bb00b29d
TG
2447}
2448
6c265988 2449void _initialize_darwin_nat ();
a80b95ba 2450void
f6ac5f3d 2451_initialize_darwin_nat ()
a80b95ba
TG
2452{
2453 kern_return_t kret;
2454
a80b95ba
TG
2455 gdb_task = mach_task_self ();
2456 darwin_host_self = mach_host_self ();
2457
2458 /* Read page size. */
2459 kret = host_page_size (darwin_host_self, &mach_page_size);
2460 if (kret != KERN_SUCCESS)
2461 {
2462 mach_page_size = 0x1000;
2463 MACH_CHECK_ERROR (kret);
2464 }
2465
3eb831e0
TG
2466 inferior_debug (2, _("GDB task: 0x%lx, pid: %d\n"),
2467 (unsigned long) mach_task_self (), getpid ());
a80b95ba 2468
ccce17b0
YQ
2469 add_setshow_zuinteger_cmd ("darwin", class_obscure,
2470 &darwin_debug_flag, _("\
a80b95ba
TG
2471Set if printing inferior communication debugging statements."), _("\
2472Show if printing inferior communication debugging statements."), NULL,
ccce17b0
YQ
2473 NULL, NULL,
2474 &setdebuglist, &showdebuglist);
a80b95ba
TG
2475
2476 add_setshow_boolean_cmd ("mach-exceptions", class_support,
2477 &enable_mach_exceptions, _("\
2478Set if mach exceptions are caught."), _("\
2479Show if mach exceptions are caught."), _("\
2480When this mode is on, all low level exceptions are reported before being\n\
2481reported by the kernel."),
2482 &set_enable_mach_exceptions, NULL,
2483 &setlist, &showlist);
2484}
This page took 1.439912 seconds and 4 git commands to generate.