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