]>
Commit | Line | Data |
---|---|---|
a80b95ba | 1 | /* Darwin support for GDB, the GNU debugger. |
28e7fd62 | 2 | Copyright (C) 2008-2013 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 | |
19 | along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 | */ | |
21 | ||
22 | #include "defs.h" | |
23 | #include "top.h" | |
24 | #include "inferior.h" | |
25 | #include "target.h" | |
26 | #include "symfile.h" | |
27 | #include "symtab.h" | |
28 | #include "objfiles.h" | |
29 | #include "gdb.h" | |
30 | #include "gdbcmd.h" | |
31 | #include "gdbcore.h" | |
32 | #include "gdbthread.h" | |
33 | #include "regcache.h" | |
34 | #include "event-top.h" | |
35 | #include "inf-loop.h" | |
36 | #include "gdb_stat.h" | |
37 | #include "exceptions.h" | |
38 | #include "inf-child.h" | |
39 | #include "value.h" | |
40 | #include "arch-utils.h" | |
41 | #include "bfd.h" | |
ece0061f | 42 | #include "bfd/mach-o.h" |
a80b95ba TG |
43 | |
44 | #include <sys/ptrace.h> | |
45 | #include <sys/signal.h> | |
46 | #include <machine/setjmp.h> | |
47 | #include <sys/types.h> | |
48 | #include <unistd.h> | |
49 | #include <signal.h> | |
50 | #include <string.h> | |
51 | #include <ctype.h> | |
52 | #include <sys/param.h> | |
53 | #include <sys/sysctl.h> | |
54 | #include <sys/proc.h> | |
bb00b29d TG |
55 | #include <libproc.h> |
56 | #include <sys/syscall.h> | |
e69860f1 | 57 | #include <spawn.h> |
a80b95ba TG |
58 | |
59 | #include <mach/mach_error.h> | |
60 | #include <mach/mach_vm.h> | |
61 | #include <mach/mach_init.h> | |
62 | #include <mach/vm_map.h> | |
63 | #include <mach/task.h> | |
64 | #include <mach/mach_port.h> | |
65 | #include <mach/thread_act.h> | |
66 | #include <mach/port.h> | |
67 | ||
68 | #include "darwin-nat.h" | |
69 | ||
70 | /* Quick overview. | |
71 | Darwin kernel is Mach + BSD derived kernel. Note that they share the | |
72 | same memory space and are linked together (ie there is no micro-kernel). | |
73 | ||
74 | Although ptrace(2) is available on Darwin, it is not complete. We have | |
75 | to use Mach calls to read and write memory and to modify registers. We | |
76 | also use Mach to get inferior faults. As we cannot use select(2) or | |
77 | signals with Mach port (the Mach communication channel), signals are | |
78 | reported to gdb as an exception. Furthermore we detect death of the | |
79 | inferior through a Mach notification message. This way we only wait | |
80 | on Mach ports. | |
81 | ||
82 | Some Mach documentation is available for Apple xnu source package or | |
83 | from the web. */ | |
84 | ||
85 | ||
86 | #define PTRACE(CMD, PID, ADDR, SIG) \ | |
87 | darwin_ptrace(#CMD, CMD, (PID), (ADDR), (SIG)) | |
88 | ||
89 | extern boolean_t exc_server (mach_msg_header_t *in, mach_msg_header_t *out); | |
90 | ||
91 | static void darwin_stop (ptid_t); | |
92 | ||
bb00b29d | 93 | static void darwin_resume_to (struct target_ops *ops, ptid_t ptid, int step, |
2ea28649 | 94 | enum gdb_signal signal); |
bb00b29d | 95 | static void darwin_resume (ptid_t ptid, int step, |
2ea28649 | 96 | enum gdb_signal signal); |
bb00b29d TG |
97 | |
98 | static ptid_t darwin_wait_to (struct target_ops *ops, ptid_t ptid, | |
99 | struct target_waitstatus *status, int options); | |
100 | static ptid_t darwin_wait (ptid_t ptid, struct target_waitstatus *status); | |
101 | ||
a80b95ba TG |
102 | static void darwin_mourn_inferior (struct target_ops *ops); |
103 | ||
2ab1c2d9 | 104 | static void darwin_kill_inferior (struct target_ops *ops); |
a80b95ba TG |
105 | |
106 | static void darwin_ptrace_me (void); | |
107 | ||
108 | static void darwin_ptrace_him (int pid); | |
109 | ||
110 | static void darwin_create_inferior (struct target_ops *ops, char *exec_file, | |
111 | char *allargs, char **env, int from_tty); | |
112 | ||
113 | static void darwin_files_info (struct target_ops *ops); | |
114 | ||
bb00b29d TG |
115 | static char *darwin_pid_to_str (struct target_ops *ops, ptid_t tpid); |
116 | ||
117 | static int darwin_thread_alive (struct target_ops *ops, ptid_t tpid); | |
a80b95ba TG |
118 | |
119 | /* Target operations for Darwin. */ | |
120 | static struct target_ops *darwin_ops; | |
121 | ||
122 | /* Task identifier of gdb. */ | |
123 | static task_t gdb_task; | |
124 | ||
125 | /* A copy of mach_host_self (). */ | |
126 | mach_port_t darwin_host_self; | |
127 | ||
128 | /* Exception port. */ | |
129 | mach_port_t darwin_ex_port; | |
130 | ||
a80b95ba TG |
131 | /* Port set. */ |
132 | mach_port_t darwin_port_set; | |
133 | ||
0963b4bd | 134 | /* Page size. */ |
a80b95ba TG |
135 | static vm_size_t mach_page_size; |
136 | ||
137 | /* If Set, catch all mach exceptions (before they are converted to signals | |
138 | by the kernel). */ | |
139 | static int enable_mach_exceptions; | |
140 | ||
bb00b29d TG |
141 | /* Inferior that should report a fake stop event. */ |
142 | static struct inferior *darwin_inf_fake_stop; | |
143 | ||
a80b95ba TG |
144 | #define PAGE_TRUNC(x) ((x) & ~(mach_page_size - 1)) |
145 | #define PAGE_ROUND(x) PAGE_TRUNC((x) + mach_page_size - 1) | |
146 | ||
bb00b29d | 147 | /* This controls output of inferior debugging. */ |
ccce17b0 | 148 | static unsigned int darwin_debug_flag = 0; |
a80b95ba | 149 | |
15c19d39 TG |
150 | /* Create a __TEXT __info_plist section in the executable so that gdb could |
151 | be signed. This is required to get an authorization for task_for_pid. | |
152 | ||
153 | Once gdb is built, you can either: | |
154 | * make it setgid procmod | |
155 | * or codesign it with any system-trusted signing authority. | |
156 | See taskgated(8) for details. */ | |
157 | static const unsigned char info_plist[] | |
158 | __attribute__ ((section ("__TEXT,__info_plist"),used)) = | |
159 | "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" | |
160 | "<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\"" | |
161 | " \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n" | |
162 | "<plist version=\"1.0\">\n" | |
163 | "<dict>\n" | |
164 | " <key>CFBundleIdentifier</key>\n" | |
165 | " <string>org.gnu.gdb</string>\n" | |
166 | " <key>CFBundleName</key>\n" | |
167 | " <string>gdb</string>\n" | |
168 | " <key>CFBundleVersion</key>\n" | |
169 | " <string>1.0</string>\n" | |
170 | " <key>SecTaskAccess</key>\n" | |
171 | " <array>\n" | |
172 | " <string>allowed</string>\n" | |
173 | " <string>debug</string>\n" | |
174 | " </array>\n" | |
175 | "</dict>\n" | |
176 | "</plist>\n"; | |
177 | ||
a80b95ba TG |
178 | static void |
179 | inferior_debug (int level, const char *fmt, ...) | |
180 | { | |
181 | va_list ap; | |
182 | ||
183 | if (darwin_debug_flag < level) | |
184 | return; | |
185 | ||
186 | va_start (ap, fmt); | |
187 | printf_unfiltered (_("[%d inferior]: "), getpid ()); | |
188 | vprintf_unfiltered (fmt, ap); | |
189 | va_end (ap); | |
190 | } | |
191 | ||
192 | void | |
193 | mach_check_error (kern_return_t ret, const char *file, | |
194 | unsigned int line, const char *func) | |
195 | { | |
196 | if (ret == KERN_SUCCESS) | |
197 | return; | |
198 | if (func == NULL) | |
199 | func = _("[UNKNOWN]"); | |
bb00b29d | 200 | |
4f1cdeec | 201 | warning (_("Mach error at \"%s:%u\" in function \"%s\": %s (0x%lx)"), |
bb00b29d | 202 | file, line, func, mach_error_string (ret), (unsigned long) ret); |
a80b95ba TG |
203 | } |
204 | ||
205 | static const char * | |
206 | unparse_exception_type (unsigned int i) | |
207 | { | |
208 | static char unknown_exception_buf[32]; | |
209 | ||
210 | switch (i) | |
211 | { | |
212 | case EXC_BAD_ACCESS: | |
213 | return "EXC_BAD_ACCESS"; | |
214 | case EXC_BAD_INSTRUCTION: | |
215 | return "EXC_BAD_INSTRUCTION"; | |
216 | case EXC_ARITHMETIC: | |
217 | return "EXC_ARITHMETIC"; | |
218 | case EXC_EMULATION: | |
219 | return "EXC_EMULATION"; | |
220 | case EXC_SOFTWARE: | |
221 | return "EXC_SOFTWARE"; | |
222 | case EXC_BREAKPOINT: | |
223 | return "EXC_BREAKPOINT"; | |
224 | case EXC_SYSCALL: | |
225 | return "EXC_SYSCALL"; | |
226 | case EXC_MACH_SYSCALL: | |
227 | return "EXC_MACH_SYSCALL"; | |
228 | case EXC_RPC_ALERT: | |
229 | return "EXC_RPC_ALERT"; | |
230 | case EXC_CRASH: | |
231 | return "EXC_CRASH"; | |
232 | default: | |
233 | snprintf (unknown_exception_buf, 32, _("unknown (%d)"), i); | |
234 | return unknown_exception_buf; | |
235 | } | |
236 | } | |
237 | ||
a7aa0d73 JB |
238 | /* Set errno to zero, and then call ptrace with the given arguments. |
239 | If inferior debugging traces are on, then also print a debug | |
240 | trace. | |
241 | ||
242 | The returned value is the same as the value returned by ptrace, | |
243 | except in the case where that value is -1 but errno is zero. | |
244 | This case is documented to be a non-error situation, so we | |
245 | return zero in that case. */ | |
246 | ||
a80b95ba TG |
247 | static int |
248 | darwin_ptrace (const char *name, | |
249 | int request, int pid, PTRACE_TYPE_ARG3 arg3, int arg4) | |
250 | { | |
251 | int ret; | |
252 | ||
a7aa0d73 | 253 | errno = 0; |
a80b95ba | 254 | ret = ptrace (request, pid, (caddr_t) arg3, arg4); |
a7aa0d73 JB |
255 | if (ret == -1 && errno == 0) |
256 | ret = 0; | |
a80b95ba | 257 | |
bb00b29d | 258 | inferior_debug (4, _("ptrace (%s, %d, 0x%x, %d): %d (%s)\n"), |
a80b95ba | 259 | name, pid, arg3, arg4, ret, |
a3224241 | 260 | (ret != 0) ? safe_strerror (errno) : _("no error")); |
a80b95ba TG |
261 | return ret; |
262 | } | |
263 | ||
264 | static int | |
265 | cmp_thread_t (const void *l, const void *r) | |
266 | { | |
bb00b29d TG |
267 | thread_t tl = *(const thread_t *)l; |
268 | thread_t tr = *(const thread_t *)r; | |
269 | return (int)(tl - tr); | |
a80b95ba TG |
270 | } |
271 | ||
272 | static void | |
bb00b29d | 273 | darwin_check_new_threads (struct inferior *inf) |
a80b95ba TG |
274 | { |
275 | kern_return_t kret; | |
276 | unsigned int i; | |
277 | thread_array_t thread_list; | |
278 | unsigned int new_nbr; | |
279 | unsigned int old_nbr; | |
280 | unsigned int new_ix, old_ix; | |
bb00b29d TG |
281 | darwin_inferior *darwin_inf = inf->private; |
282 | VEC (darwin_thread_t) *thread_vec; | |
a80b95ba TG |
283 | |
284 | /* Get list of threads. */ | |
bb00b29d | 285 | kret = task_threads (darwin_inf->task, &thread_list, &new_nbr); |
a80b95ba TG |
286 | MACH_CHECK_ERROR (kret); |
287 | if (kret != KERN_SUCCESS) | |
288 | return; | |
289 | ||
bb00b29d | 290 | /* Sort the list. */ |
a80b95ba TG |
291 | if (new_nbr > 1) |
292 | qsort (thread_list, new_nbr, sizeof (thread_t), cmp_thread_t); | |
293 | ||
bb00b29d TG |
294 | if (darwin_inf->threads) |
295 | old_nbr = VEC_length (darwin_thread_t, darwin_inf->threads); | |
a80b95ba TG |
296 | else |
297 | old_nbr = 0; | |
298 | ||
bb00b29d TG |
299 | /* Quick check for no changes. */ |
300 | if (old_nbr == new_nbr) | |
301 | { | |
302 | for (i = 0; i < new_nbr; i++) | |
303 | if (thread_list[i] | |
304 | != VEC_index (darwin_thread_t, darwin_inf->threads, i)->gdb_port) | |
305 | break; | |
306 | if (i == new_nbr) | |
307 | { | |
308 | kret = vm_deallocate (gdb_task, (vm_address_t) thread_list, | |
309 | new_nbr * sizeof (int)); | |
310 | MACH_CHECK_ERROR (kret); | |
311 | return; | |
312 | } | |
313 | } | |
314 | ||
315 | thread_vec = VEC_alloc (darwin_thread_t, new_nbr); | |
316 | ||
a80b95ba TG |
317 | for (new_ix = 0, old_ix = 0; new_ix < new_nbr || old_ix < old_nbr;) |
318 | { | |
319 | thread_t new_id = (new_ix < new_nbr) ? | |
320 | thread_list[new_ix] : THREAD_NULL; | |
bb00b29d TG |
321 | darwin_thread_t *old = (old_ix < old_nbr) ? |
322 | VEC_index (darwin_thread_t, darwin_inf->threads, old_ix) : NULL; | |
323 | thread_t old_id = old ? old->gdb_port : THREAD_NULL; | |
324 | ||
325 | inferior_debug | |
326 | (12, _(" new_ix:%d/%d, old_ix:%d/%d, new_id:%x old_id:%x\n"), | |
327 | new_ix, new_nbr, old_ix, old_nbr, new_id, old_id); | |
a80b95ba TG |
328 | |
329 | if (old_id == new_id) | |
330 | { | |
331 | /* Thread still exist. */ | |
bb00b29d | 332 | VEC_safe_push (darwin_thread_t, thread_vec, old); |
a80b95ba TG |
333 | new_ix++; |
334 | old_ix++; | |
335 | ||
336 | kret = mach_port_deallocate (gdb_task, old_id); | |
337 | MACH_CHECK_ERROR (kret); | |
338 | continue; | |
339 | } | |
bb00b29d TG |
340 | if (new_ix < new_nbr && new_id == MACH_PORT_DEAD) |
341 | { | |
342 | /* Ignore dead ports. | |
343 | In some weird cases, we might get dead ports. They should | |
344 | correspond to dead thread so they could safely be ignored. */ | |
345 | new_ix++; | |
346 | continue; | |
347 | } | |
348 | if (new_ix < new_nbr && (old_ix == old_nbr || new_id < old_id)) | |
a80b95ba TG |
349 | { |
350 | /* A thread was created. */ | |
351 | struct thread_info *tp; | |
bb00b29d | 352 | struct private_thread_info *pti; |
a80b95ba | 353 | |
bb00b29d TG |
354 | pti = XZALLOC (struct private_thread_info); |
355 | pti->gdb_port = new_id; | |
356 | pti->msg_state = DARWIN_RUNNING; | |
357 | ||
358 | /* Add a new thread unless this is the first one ever met. */ | |
359 | if (!(old_nbr == 0 && new_ix == 0)) | |
360 | tp = add_thread_with_info (ptid_build (inf->pid, 0, new_id), pti); | |
361 | else | |
362 | { | |
363 | tp = find_thread_ptid (ptid_build (inf->pid, 0, 0)); | |
364 | gdb_assert (tp); | |
365 | tp->private = pti; | |
366 | } | |
367 | VEC_safe_push (darwin_thread_t, thread_vec, pti); | |
a80b95ba TG |
368 | new_ix++; |
369 | continue; | |
370 | } | |
bb00b29d | 371 | if (old_ix < old_nbr && (new_ix == new_nbr || new_id > old_id)) |
a80b95ba TG |
372 | { |
373 | /* A thread was removed. */ | |
374 | delete_thread (ptid_build (inf->pid, 0, old_id)); | |
375 | kret = mach_port_deallocate (gdb_task, old_id); | |
376 | MACH_CHECK_ERROR (kret); | |
377 | old_ix++; | |
bb00b29d | 378 | continue; |
a80b95ba | 379 | } |
f3574227 | 380 | gdb_assert_not_reached ("unexpected thread case"); |
a80b95ba TG |
381 | } |
382 | ||
bb00b29d TG |
383 | if (darwin_inf->threads) |
384 | VEC_free (darwin_thread_t, darwin_inf->threads); | |
385 | darwin_inf->threads = thread_vec; | |
a80b95ba TG |
386 | |
387 | kret = vm_deallocate (gdb_task, (vm_address_t) thread_list, | |
388 | new_nbr * sizeof (int)); | |
389 | MACH_CHECK_ERROR (kret); | |
390 | } | |
391 | ||
bb00b29d TG |
392 | static int |
393 | find_inferior_task_it (struct inferior *inf, void *port_ptr) | |
a80b95ba | 394 | { |
bb00b29d TG |
395 | return inf->private->task == *(task_t*)port_ptr; |
396 | } | |
a80b95ba | 397 | |
bb00b29d TG |
398 | static int |
399 | find_inferior_notify_it (struct inferior *inf, void *port_ptr) | |
400 | { | |
401 | return inf->private->notify_port == *(task_t*)port_ptr; | |
a80b95ba TG |
402 | } |
403 | ||
bb00b29d TG |
404 | /* Return an inferior by task port. */ |
405 | static struct inferior * | |
406 | darwin_find_inferior_by_task (task_t port) | |
a80b95ba | 407 | { |
bb00b29d TG |
408 | return iterate_over_inferiors (&find_inferior_task_it, &port); |
409 | } | |
a80b95ba | 410 | |
bb00b29d TG |
411 | /* Return an inferior by notification port. */ |
412 | static struct inferior * | |
413 | darwin_find_inferior_by_notify (mach_port_t port) | |
414 | { | |
415 | return iterate_over_inferiors (&find_inferior_notify_it, &port); | |
416 | } | |
a80b95ba | 417 | |
bb00b29d TG |
418 | /* Return a thread by port. */ |
419 | static darwin_thread_t * | |
420 | darwin_find_thread (struct inferior *inf, thread_t thread) | |
421 | { | |
422 | darwin_thread_t *t; | |
423 | int k; | |
424 | ||
425 | for (k = 0; | |
426 | VEC_iterate (darwin_thread_t, inf->private->threads, k, t); | |
427 | k++) | |
428 | if (t->gdb_port == thread) | |
429 | return t; | |
430 | return NULL; | |
431 | } | |
a80b95ba | 432 | |
bb00b29d | 433 | /* Suspend (ie stop) an inferior at Mach level. */ |
a80b95ba | 434 | |
bb00b29d TG |
435 | static void |
436 | darwin_suspend_inferior (struct inferior *inf) | |
437 | { | |
438 | if (!inf->private->suspended) | |
a80b95ba | 439 | { |
bb00b29d | 440 | kern_return_t kret; |
a80b95ba | 441 | |
bb00b29d TG |
442 | kret = task_suspend (inf->private->task); |
443 | MACH_CHECK_ERROR (kret); | |
a80b95ba | 444 | |
bb00b29d TG |
445 | inf->private->suspended = 1; |
446 | } | |
447 | } | |
a80b95ba | 448 | |
bb00b29d | 449 | /* Resume an inferior at Mach level. */ |
a80b95ba | 450 | |
bb00b29d TG |
451 | static void |
452 | darwin_resume_inferior (struct inferior *inf) | |
453 | { | |
454 | if (inf->private->suspended) | |
455 | { | |
456 | kern_return_t kret; | |
a80b95ba | 457 | |
bb00b29d TG |
458 | kret = task_resume (inf->private->task); |
459 | MACH_CHECK_ERROR (kret); | |
460 | ||
461 | inf->private->suspended = 0; | |
a80b95ba TG |
462 | } |
463 | } | |
464 | ||
bb00b29d TG |
465 | /* Iterator functions. */ |
466 | ||
467 | static int | |
468 | darwin_suspend_inferior_it (struct inferior *inf, void *arg) | |
a80b95ba | 469 | { |
bb00b29d TG |
470 | darwin_suspend_inferior (inf); |
471 | darwin_check_new_threads (inf); | |
472 | return 0; | |
473 | } | |
474 | ||
475 | static int | |
476 | darwin_resume_inferior_it (struct inferior *inf, void *arg) | |
477 | { | |
478 | darwin_resume_inferior (inf); | |
479 | return 0; | |
a80b95ba TG |
480 | } |
481 | ||
bb00b29d TG |
482 | static void |
483 | darwin_dump_message (mach_msg_header_t *hdr, int disp_body) | |
484 | { | |
485 | printf_unfiltered (_("message header:\n")); | |
486 | printf_unfiltered (_(" bits: 0x%x\n"), hdr->msgh_bits); | |
487 | printf_unfiltered (_(" size: 0x%x\n"), hdr->msgh_size); | |
488 | printf_unfiltered (_(" remote-port: 0x%x\n"), hdr->msgh_remote_port); | |
489 | printf_unfiltered (_(" local-port: 0x%x\n"), hdr->msgh_local_port); | |
490 | printf_unfiltered (_(" reserved: 0x%x\n"), hdr->msgh_reserved); | |
491 | printf_unfiltered (_(" id: 0x%x\n"), hdr->msgh_id); | |
492 | ||
493 | if (disp_body) | |
494 | { | |
495 | const unsigned char *data; | |
496 | const unsigned long *ldata; | |
497 | int size; | |
498 | int i; | |
499 | ||
500 | data = (unsigned char *)(hdr + 1); | |
501 | size = hdr->msgh_size - sizeof (mach_msg_header_t); | |
502 | ||
503 | if (hdr->msgh_bits & MACH_MSGH_BITS_COMPLEX) | |
504 | { | |
505 | mach_msg_body_t *bod = (mach_msg_body_t*)data; | |
506 | mach_msg_port_descriptor_t *desc = | |
507 | (mach_msg_port_descriptor_t *)(bod + 1); | |
508 | int k; | |
509 | NDR_record_t *ndr; | |
510 | printf_unfiltered (_("body: descriptor_count=%u\n"), | |
511 | bod->msgh_descriptor_count); | |
512 | data += sizeof (mach_msg_body_t); | |
513 | size -= sizeof (mach_msg_body_t); | |
514 | for (k = 0; k < bod->msgh_descriptor_count; k++) | |
515 | switch (desc[k].type) | |
516 | { | |
517 | case MACH_MSG_PORT_DESCRIPTOR: | |
518 | printf_unfiltered | |
519 | (_(" descr %d: type=%u (port) name=0x%x, dispo=%d\n"), | |
520 | k, desc[k].type, desc[k].name, desc[k].disposition); | |
521 | break; | |
522 | default: | |
523 | printf_unfiltered (_(" descr %d: type=%u\n"), | |
524 | k, desc[k].type); | |
525 | break; | |
526 | } | |
527 | data += bod->msgh_descriptor_count | |
528 | * sizeof (mach_msg_port_descriptor_t); | |
529 | size -= bod->msgh_descriptor_count | |
530 | * sizeof (mach_msg_port_descriptor_t); | |
531 | ndr = (NDR_record_t *)(desc + bod->msgh_descriptor_count); | |
532 | printf_unfiltered | |
533 | (_("NDR: mig=%02x if=%02x encod=%02x " | |
534 | "int=%02x char=%02x float=%02x\n"), | |
535 | ndr->mig_vers, ndr->if_vers, ndr->mig_encoding, | |
536 | ndr->int_rep, ndr->char_rep, ndr->float_rep); | |
537 | data += sizeof (NDR_record_t); | |
538 | size -= sizeof (NDR_record_t); | |
539 | } | |
540 | ||
541 | printf_unfiltered (_(" data:")); | |
542 | ldata = (const unsigned long *)data; | |
543 | for (i = 0; i < size / sizeof (unsigned long); i++) | |
544 | printf_unfiltered (" %08lx", ldata[i]); | |
545 | printf_unfiltered (_("\n")); | |
546 | } | |
547 | } | |
548 | ||
549 | static int | |
550 | darwin_decode_exception_message (mach_msg_header_t *hdr, | |
551 | struct inferior **pinf, | |
552 | darwin_thread_t **pthread) | |
a80b95ba | 553 | { |
bb00b29d TG |
554 | mach_msg_body_t *bod = (mach_msg_body_t*)(hdr + 1); |
555 | mach_msg_port_descriptor_t *desc = (mach_msg_port_descriptor_t *)(bod + 1); | |
556 | NDR_record_t *ndr; | |
557 | integer_t *data; | |
558 | struct inferior *inf; | |
559 | darwin_thread_t *thread; | |
560 | task_t task_port; | |
561 | thread_t thread_port; | |
a80b95ba | 562 | kern_return_t kret; |
bb00b29d | 563 | int i; |
a80b95ba | 564 | |
bb00b29d TG |
565 | /* Check message identifier. 2401 is exc. */ |
566 | if (hdr->msgh_id != 2401) | |
567 | return -1; | |
568 | ||
569 | /* Check message header. */ | |
570 | if (!(hdr->msgh_bits & MACH_MSGH_BITS_COMPLEX)) | |
571 | return -1; | |
572 | ||
573 | /* Check descriptors. */ | |
574 | if (hdr->msgh_size < (sizeof (*hdr) + sizeof (*bod) + 2 * sizeof (*desc) | |
575 | + sizeof (*ndr) + 2 * sizeof (integer_t)) | |
576 | || bod->msgh_descriptor_count != 2 | |
577 | || desc[0].type != MACH_MSG_PORT_DESCRIPTOR | |
578 | || desc[0].disposition != MACH_MSG_TYPE_MOVE_SEND | |
579 | || desc[1].type != MACH_MSG_PORT_DESCRIPTOR | |
580 | || desc[1].disposition != MACH_MSG_TYPE_MOVE_SEND) | |
581 | return -1; | |
582 | ||
583 | /* Check data representation. */ | |
584 | ndr = (NDR_record_t *)(desc + 2); | |
585 | if (ndr->mig_vers != NDR_PROTOCOL_2_0 | |
586 | || ndr->if_vers != NDR_PROTOCOL_2_0 | |
587 | || ndr->mig_encoding != NDR_record.mig_encoding | |
588 | || ndr->int_rep != NDR_record.int_rep | |
589 | || ndr->char_rep != NDR_record.char_rep | |
590 | || ndr->float_rep != NDR_record.float_rep) | |
591 | return -1; | |
592 | ||
593 | /* Ok, the hard work. */ | |
594 | data = (integer_t *)(ndr + 1); | |
595 | ||
596 | /* Find process by port. */ | |
597 | task_port = desc[1].name; | |
598 | thread_port = desc[0].name; | |
599 | inf = darwin_find_inferior_by_task (task_port); | |
600 | if (inf == NULL) | |
601 | return -1; | |
602 | *pinf = inf; | |
603 | ||
604 | /* Find thread by port. */ | |
605 | /* Check for new threads. Do it early so that the port in the exception | |
606 | message can be deallocated. */ | |
607 | darwin_check_new_threads (inf); | |
608 | ||
609 | /* We got new rights to the task and the thread. Get rid of them. */ | |
a80b95ba TG |
610 | kret = mach_port_deallocate (mach_task_self (), task_port); |
611 | MACH_CHECK_ERROR (kret); | |
612 | kret = mach_port_deallocate (mach_task_self (), thread_port); | |
613 | MACH_CHECK_ERROR (kret); | |
614 | ||
bb00b29d TG |
615 | thread = darwin_find_thread (inf, thread_port); |
616 | if (thread == NULL) | |
617 | return -1; | |
618 | *pthread = thread; | |
619 | ||
484a26a8 TG |
620 | /* The thread should be running. However we have observed cases where a thread |
621 | got a SIGTTIN message after being stopped. */ | |
622 | gdb_assert (thread->msg_state != DARWIN_MESSAGE); | |
623 | ||
bb00b29d | 624 | /* Finish decoding. */ |
bb00b29d TG |
625 | thread->event.header = *hdr; |
626 | thread->event.thread_port = thread_port; | |
627 | thread->event.task_port = task_port; | |
628 | thread->event.ex_type = data[0]; | |
629 | thread->event.data_count = data[1]; | |
630 | ||
631 | if (hdr->msgh_size < (sizeof (*hdr) + sizeof (*bod) + 2 * sizeof (*desc) | |
632 | + sizeof (*ndr) + 2 * sizeof (integer_t) | |
633 | + data[1] * sizeof (integer_t))) | |
634 | return -1; | |
635 | for (i = 0; i < data[1]; i++) | |
636 | thread->event.ex_data[i] = data[2 + i]; | |
637 | ||
638 | thread->msg_state = DARWIN_MESSAGE; | |
639 | ||
640 | return 0; | |
641 | } | |
642 | ||
643 | static void | |
644 | darwin_encode_reply (mig_reply_error_t *reply, mach_msg_header_t *hdr, | |
645 | integer_t code) | |
646 | { | |
647 | mach_msg_header_t *rh = &reply->Head; | |
648 | rh->msgh_bits = MACH_MSGH_BITS(MACH_MSGH_BITS_REMOTE(hdr->msgh_bits), 0); | |
649 | rh->msgh_remote_port = hdr->msgh_remote_port; | |
650 | rh->msgh_size = (mach_msg_size_t)sizeof(mig_reply_error_t); | |
651 | rh->msgh_local_port = MACH_PORT_NULL; | |
652 | rh->msgh_id = hdr->msgh_id + 100; | |
653 | ||
654 | reply->NDR = NDR_record; | |
655 | reply->RetCode = code; | |
a80b95ba TG |
656 | } |
657 | ||
bb00b29d TG |
658 | static void |
659 | darwin_send_reply (struct inferior *inf, darwin_thread_t *thread) | |
a80b95ba TG |
660 | { |
661 | kern_return_t kret; | |
bb00b29d | 662 | mig_reply_error_t reply; |
a80b95ba | 663 | |
bb00b29d TG |
664 | darwin_encode_reply (&reply, &thread->event.header, KERN_SUCCESS); |
665 | ||
666 | kret = mach_msg (&reply.Head, MACH_SEND_MSG | MACH_SEND_INTERRUPT, | |
667 | reply.Head.msgh_size, 0, | |
668 | MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE, | |
669 | MACH_PORT_NULL); | |
a80b95ba TG |
670 | MACH_CHECK_ERROR (kret); |
671 | ||
bb00b29d TG |
672 | inf->private->pending_messages--; |
673 | } | |
674 | ||
675 | static void | |
676 | darwin_resume_thread (struct inferior *inf, darwin_thread_t *thread, | |
677 | int step, int nsignal) | |
678 | { | |
679 | kern_return_t kret; | |
680 | int res; | |
681 | ||
a80b95ba | 682 | inferior_debug |
bb00b29d TG |
683 | (3, _("darwin_resume_thread: state=%d, thread=0x%x, step=%d nsignal=%d\n"), |
684 | thread->msg_state, thread->gdb_port, step, nsignal); | |
685 | ||
686 | switch (thread->msg_state) | |
a80b95ba | 687 | { |
bb00b29d TG |
688 | case DARWIN_MESSAGE: |
689 | if (thread->event.ex_type == EXC_SOFTWARE | |
690 | && thread->event.ex_data[0] == EXC_SOFT_SIGNAL) | |
691 | { | |
692 | /* Either deliver a new signal or cancel the signal received. */ | |
693 | res = PTRACE (PT_THUPDATE, inf->pid, | |
694 | (void *)(uintptr_t)thread->gdb_port, nsignal); | |
695 | if (res < 0) | |
696 | inferior_debug (1, _("ptrace THUP: res=%d\n"), res); | |
697 | } | |
698 | else if (nsignal) | |
699 | { | |
700 | /* Note: ptrace is allowed only if the process is stopped. | |
701 | Directly send the signal to the thread. */ | |
702 | res = syscall (SYS___pthread_kill, thread->gdb_port, nsignal); | |
703 | inferior_debug (4, _("darwin_resume_thread: kill 0x%x %d: %d\n"), | |
704 | thread->gdb_port, nsignal, res); | |
705 | thread->signaled = 1; | |
706 | } | |
707 | ||
d987a266 TG |
708 | /* Set or reset single step. */ |
709 | if (step != thread->single_step) | |
710 | { | |
711 | inferior_debug (4, _("darwin_set_sstep (thread=%x, enable=%d)\n"), | |
712 | thread->gdb_port, step); | |
713 | darwin_set_sstep (thread->gdb_port, step); | |
714 | thread->single_step = step; | |
715 | } | |
bb00b29d TG |
716 | |
717 | darwin_send_reply (inf, thread); | |
718 | thread->msg_state = DARWIN_RUNNING; | |
719 | break; | |
720 | ||
721 | case DARWIN_RUNNING: | |
722 | break; | |
723 | ||
724 | case DARWIN_STOPPED: | |
725 | kret = thread_resume (thread->gdb_port); | |
726 | MACH_CHECK_ERROR (kret); | |
727 | ||
728 | thread->msg_state = DARWIN_RUNNING; | |
729 | break; | |
a80b95ba | 730 | } |
bb00b29d | 731 | } |
a80b95ba | 732 | |
bb00b29d | 733 | /* Resume all threads of the inferior. */ |
a80b95ba | 734 | |
bb00b29d TG |
735 | static void |
736 | darwin_resume_inferior_threads (struct inferior *inf, int step, int nsignal) | |
737 | { | |
738 | darwin_thread_t *thread; | |
739 | int k; | |
740 | ||
741 | for (k = 0; | |
742 | VEC_iterate (darwin_thread_t, inf->private->threads, k, thread); | |
743 | k++) | |
744 | darwin_resume_thread (inf, thread, step, nsignal); | |
a80b95ba TG |
745 | } |
746 | ||
bb00b29d | 747 | struct resume_inferior_threads_param |
a80b95ba | 748 | { |
bb00b29d TG |
749 | int step; |
750 | int nsignal; | |
751 | }; | |
752 | ||
753 | static int | |
754 | darwin_resume_inferior_threads_it (struct inferior *inf, void *param) | |
755 | { | |
756 | int step = ((struct resume_inferior_threads_param *)param)->step; | |
757 | int nsignal = ((struct resume_inferior_threads_param *)param)->nsignal; | |
758 | ||
759 | darwin_resume_inferior_threads (inf, step, nsignal); | |
760 | ||
761 | return 0; | |
762 | } | |
763 | ||
764 | /* Suspend all threads of INF. */ | |
765 | ||
766 | static void | |
767 | darwin_suspend_inferior_threads (struct inferior *inf) | |
768 | { | |
769 | darwin_thread_t *thread; | |
a80b95ba | 770 | kern_return_t kret; |
bb00b29d TG |
771 | int k; |
772 | ||
773 | for (k = 0; | |
774 | VEC_iterate (darwin_thread_t, inf->private->threads, k, thread); | |
775 | k++) | |
776 | switch (thread->msg_state) | |
777 | { | |
778 | case DARWIN_STOPPED: | |
779 | case DARWIN_MESSAGE: | |
780 | break; | |
781 | case DARWIN_RUNNING: | |
782 | kret = thread_suspend (thread->gdb_port); | |
783 | MACH_CHECK_ERROR (kret); | |
784 | thread->msg_state = DARWIN_STOPPED; | |
785 | break; | |
786 | } | |
787 | } | |
a80b95ba | 788 | |
bb00b29d | 789 | static void |
2ea28649 | 790 | darwin_resume (ptid_t ptid, int step, enum gdb_signal signal) |
bb00b29d TG |
791 | { |
792 | struct target_waitstatus status; | |
793 | int pid; | |
a80b95ba | 794 | |
bb00b29d TG |
795 | kern_return_t kret; |
796 | int res; | |
797 | int nsignal; | |
798 | struct inferior *inf; | |
a80b95ba | 799 | |
bb00b29d TG |
800 | inferior_debug |
801 | (2, _("darwin_resume: pid=%d, tid=0x%x, step=%d, signal=%d\n"), | |
802 | ptid_get_pid (ptid), ptid_get_tid (ptid), step, signal); | |
803 | ||
a493e3e2 | 804 | if (signal == GDB_SIGNAL_0) |
bb00b29d TG |
805 | nsignal = 0; |
806 | else | |
2ea28649 | 807 | nsignal = gdb_signal_to_host (signal); |
a80b95ba | 808 | |
bb00b29d TG |
809 | /* Don't try to single step all threads. */ |
810 | if (step) | |
811 | ptid = inferior_ptid; | |
812 | ||
813 | /* minus_one_ptid is RESUME_ALL. */ | |
814 | if (ptid_equal (ptid, minus_one_ptid)) | |
a80b95ba | 815 | { |
bb00b29d TG |
816 | struct resume_inferior_threads_param param; |
817 | ||
818 | param.nsignal = nsignal; | |
819 | param.step = step; | |
a80b95ba | 820 | |
bb00b29d TG |
821 | /* Resume threads. */ |
822 | iterate_over_inferiors (darwin_resume_inferior_threads_it, ¶m); | |
823 | /* Resume tasks. */ | |
824 | iterate_over_inferiors (darwin_resume_inferior_it, NULL); | |
825 | } | |
826 | else | |
a80b95ba | 827 | { |
bb00b29d TG |
828 | struct inferior *inf = find_inferior_pid (ptid_get_pid (ptid)); |
829 | long tid = ptid_get_tid (ptid); | |
830 | ||
831 | /* Stop the inferior (should be useless). */ | |
832 | darwin_suspend_inferior (inf); | |
833 | ||
834 | if (tid == 0) | |
835 | darwin_resume_inferior_threads (inf, step, nsignal); | |
836 | else | |
837 | { | |
838 | darwin_thread_t *thread; | |
839 | ||
840 | /* Suspend threads of the task. */ | |
841 | darwin_suspend_inferior_threads (inf); | |
842 | ||
843 | /* Resume the selected thread. */ | |
844 | thread = darwin_find_thread (inf, tid); | |
845 | gdb_assert (thread); | |
846 | darwin_resume_thread (inf, thread, step, nsignal); | |
847 | } | |
848 | ||
849 | /* Resume the task. */ | |
850 | darwin_resume_inferior (inf); | |
a80b95ba | 851 | } |
bb00b29d | 852 | } |
a80b95ba | 853 | |
bb00b29d TG |
854 | static void |
855 | darwin_resume_to (struct target_ops *ops, ptid_t ptid, int step, | |
2ea28649 | 856 | enum gdb_signal signal) |
bb00b29d TG |
857 | { |
858 | return darwin_resume (ptid, step, signal); | |
859 | } | |
860 | ||
861 | static ptid_t | |
862 | darwin_decode_message (mach_msg_header_t *hdr, | |
863 | darwin_thread_t **pthread, | |
864 | struct inferior **pinf, | |
865 | struct target_waitstatus *status) | |
866 | { | |
867 | darwin_thread_t *thread; | |
868 | struct inferior *inf; | |
a80b95ba TG |
869 | |
870 | /* Exception message. */ | |
871 | if (hdr->msgh_local_port == darwin_ex_port) | |
872 | { | |
bb00b29d TG |
873 | int res; |
874 | ||
875 | /* Decode message. */ | |
876 | res = darwin_decode_exception_message (hdr, &inf, &thread); | |
877 | ||
878 | if (res < 0) | |
a80b95ba | 879 | { |
bb00b29d TG |
880 | /* Should not happen... */ |
881 | printf_unfiltered (_("darwin_wait: ill-formatted message (id=%x)\n"), | |
a80b95ba | 882 | hdr->msgh_id); |
bb00b29d | 883 | /* FIXME: send a failure reply? */ |
a80b95ba TG |
884 | status->kind = TARGET_WAITKIND_SPURIOUS; |
885 | return minus_one_ptid; | |
886 | } | |
bb00b29d TG |
887 | *pinf = inf; |
888 | *pthread = thread; | |
889 | inf->private->pending_messages++; | |
a80b95ba TG |
890 | |
891 | status->kind = TARGET_WAITKIND_STOPPED; | |
bb00b29d TG |
892 | thread->msg_state = DARWIN_MESSAGE; |
893 | ||
894 | inferior_debug (4, _("darwin_wait: thread=%x, got %s\n"), | |
895 | thread->gdb_port, | |
896 | unparse_exception_type (thread->event.ex_type)); | |
a80b95ba | 897 | |
bb00b29d | 898 | switch (thread->event.ex_type) |
a80b95ba TG |
899 | { |
900 | case EXC_BAD_ACCESS: | |
901 | status->value.sig = TARGET_EXC_BAD_ACCESS; | |
902 | break; | |
903 | case EXC_BAD_INSTRUCTION: | |
904 | status->value.sig = TARGET_EXC_BAD_INSTRUCTION; | |
905 | break; | |
906 | case EXC_ARITHMETIC: | |
907 | status->value.sig = TARGET_EXC_ARITHMETIC; | |
908 | break; | |
909 | case EXC_EMULATION: | |
910 | status->value.sig = TARGET_EXC_EMULATION; | |
911 | break; | |
912 | case EXC_SOFTWARE: | |
bb00b29d | 913 | if (thread->event.ex_data[0] == EXC_SOFT_SIGNAL) |
a80b95ba | 914 | { |
bb00b29d | 915 | status->value.sig = |
2ea28649 | 916 | gdb_signal_from_host (thread->event.ex_data[1]); |
bb00b29d TG |
917 | inferior_debug (5, _(" (signal %d: %s)\n"), |
918 | thread->event.ex_data[1], | |
2ea28649 | 919 | gdb_signal_to_name (status->value.sig)); |
bb00b29d TG |
920 | |
921 | /* If the thread is stopped because it has received a signal | |
922 | that gdb has just sent, continue. */ | |
923 | if (thread->signaled) | |
924 | { | |
925 | thread->signaled = 0; | |
926 | darwin_send_reply (inf, thread); | |
927 | thread->msg_state = DARWIN_RUNNING; | |
928 | status->kind = TARGET_WAITKIND_IGNORE; | |
929 | } | |
a80b95ba TG |
930 | } |
931 | else | |
bb00b29d | 932 | status->value.sig = TARGET_EXC_SOFTWARE; |
a80b95ba TG |
933 | break; |
934 | case EXC_BREAKPOINT: | |
935 | /* Many internal GDB routines expect breakpoints to be reported | |
a493e3e2 | 936 | as GDB_SIGNAL_TRAP, and will report TARGET_EXC_BREAKPOINT |
0963b4bd | 937 | as a spurious signal. */ |
a493e3e2 | 938 | status->value.sig = GDB_SIGNAL_TRAP; |
a80b95ba TG |
939 | break; |
940 | default: | |
a493e3e2 | 941 | status->value.sig = GDB_SIGNAL_UNKNOWN; |
a80b95ba TG |
942 | break; |
943 | } | |
944 | ||
bb00b29d TG |
945 | return ptid_build (inf->pid, 0, thread->gdb_port); |
946 | } | |
947 | ||
948 | *pinf = NULL; | |
949 | *pthread = NULL; | |
950 | ||
951 | inf = darwin_find_inferior_by_notify (hdr->msgh_local_port); | |
952 | if (inf != NULL) | |
953 | { | |
954 | if (!inf->private->no_ptrace) | |
955 | { | |
956 | pid_t res; | |
957 | int wstatus; | |
958 | ||
959 | res = wait4 (inf->pid, &wstatus, 0, NULL); | |
960 | if (res < 0 || res != inf->pid) | |
961 | { | |
962 | printf_unfiltered (_("wait4: res=%d: %s\n"), | |
963 | res, safe_strerror (errno)); | |
964 | status->kind = TARGET_WAITKIND_SPURIOUS; | |
965 | return minus_one_ptid; | |
966 | } | |
967 | if (WIFEXITED (wstatus)) | |
968 | { | |
969 | status->kind = TARGET_WAITKIND_EXITED; | |
970 | status->value.integer = WEXITSTATUS (wstatus); | |
971 | } | |
972 | else | |
973 | { | |
974 | status->kind = TARGET_WAITKIND_SIGNALLED; | |
975 | status->value.sig = WTERMSIG (wstatus); | |
976 | } | |
977 | ||
978 | inferior_debug (4, _("darwin_wait: pid=%d exit, status=%x\n"), | |
979 | res, wstatus); | |
980 | ||
981 | /* Looks necessary on Leopard and harmless... */ | |
982 | wait4 (inf->pid, &wstatus, 0, NULL); | |
983 | ||
984 | return ptid_build (inf->pid, 0, 0); | |
985 | } | |
986 | else | |
987 | { | |
988 | inferior_debug (4, _("darwin_wait: pid=%d\n"), inf->pid); | |
989 | status->kind = TARGET_WAITKIND_EXITED; | |
990 | status->value.integer = 0; /* Don't know. */ | |
991 | return ptid_build (inf->pid, 0, 0); | |
992 | } | |
993 | } | |
994 | ||
995 | printf_unfiltered (_("Bad local-port: %x\n"), hdr->msgh_local_port); | |
996 | status->kind = TARGET_WAITKIND_SPURIOUS; | |
997 | return minus_one_ptid; | |
998 | } | |
999 | ||
1000 | static int | |
1001 | cancel_breakpoint (ptid_t ptid) | |
1002 | { | |
0963b4bd | 1003 | /* Arrange for a breakpoint to be hit again later. We will handle |
bb00b29d TG |
1004 | the current event, eventually we will resume this thread, and this |
1005 | breakpoint will trap again. | |
1006 | ||
1007 | If we do not do this, then we run the risk that the user will | |
1008 | delete or disable the breakpoint, but the thread will have already | |
1009 | tripped on it. */ | |
1010 | ||
1011 | struct regcache *regcache = get_thread_regcache (ptid); | |
1012 | struct gdbarch *gdbarch = get_regcache_arch (regcache); | |
1013 | CORE_ADDR pc; | |
a80b95ba | 1014 | |
bb00b29d | 1015 | pc = regcache_read_pc (regcache) - gdbarch_decr_pc_after_break (gdbarch); |
40625c9d | 1016 | if (breakpoint_inserted_here_p (get_regcache_aspace (regcache), pc)) |
bb00b29d TG |
1017 | { |
1018 | inferior_debug (4, "cancel_breakpoint for thread %x\n", | |
1019 | ptid_get_tid (ptid)); | |
1020 | ||
1021 | /* Back up the PC if necessary. */ | |
1022 | if (gdbarch_decr_pc_after_break (gdbarch)) | |
1023 | regcache_write_pc (regcache, pc); | |
1024 | ||
1025 | return 1; | |
a80b95ba | 1026 | } |
bb00b29d TG |
1027 | return 0; |
1028 | } | |
1029 | ||
1030 | static ptid_t | |
1031 | darwin_wait (ptid_t ptid, struct target_waitstatus *status) | |
1032 | { | |
1033 | kern_return_t kret; | |
1034 | union | |
1035 | { | |
1036 | mach_msg_header_t hdr; | |
1037 | char data[0x100]; | |
1038 | } msgin; | |
1039 | mach_msg_header_t *hdr = &msgin.hdr; | |
1040 | ptid_t res; | |
1041 | darwin_thread_t *thread; | |
1042 | struct inferior *inf; | |
1043 | ||
1044 | inferior_debug | |
1045 | (2, _("darwin_wait: waiting for a message pid=%d thread=%lx\n"), | |
1046 | ptid_get_pid (ptid), ptid_get_tid (ptid)); | |
1047 | ||
1048 | /* Handle fake stop events at first. */ | |
1049 | if (darwin_inf_fake_stop != NULL) | |
1050 | { | |
1051 | inf = darwin_inf_fake_stop; | |
1052 | darwin_inf_fake_stop = NULL; | |
1053 | ||
1054 | status->kind = TARGET_WAITKIND_STOPPED; | |
a493e3e2 | 1055 | status->value.sig = GDB_SIGNAL_TRAP; |
bb00b29d TG |
1056 | thread = VEC_index (darwin_thread_t, inf->private->threads, 0); |
1057 | thread->msg_state = DARWIN_STOPPED; | |
1058 | return ptid_build (inf->pid, 0, thread->gdb_port); | |
1059 | } | |
1060 | ||
1061 | do | |
1062 | { | |
1063 | /* set_sigint_trap (); */ | |
1064 | ||
1065 | /* Wait for a message. */ | |
1066 | kret = mach_msg (&msgin.hdr, MACH_RCV_MSG | MACH_RCV_INTERRUPT, 0, | |
1067 | sizeof (msgin.data), darwin_port_set, 0, MACH_PORT_NULL); | |
1068 | ||
1069 | /* clear_sigint_trap (); */ | |
1070 | ||
1071 | if (kret == MACH_RCV_INTERRUPTED) | |
1072 | { | |
1073 | status->kind = TARGET_WAITKIND_IGNORE; | |
1074 | return minus_one_ptid; | |
1075 | } | |
1076 | ||
1077 | if (kret != MACH_MSG_SUCCESS) | |
1078 | { | |
1079 | inferior_debug (5, _("mach_msg: ret=%x\n"), kret); | |
1080 | status->kind = TARGET_WAITKIND_SPURIOUS; | |
1081 | return minus_one_ptid; | |
1082 | } | |
1083 | ||
1084 | /* Debug: display message. */ | |
1085 | if (darwin_debug_flag > 10) | |
1086 | darwin_dump_message (hdr, darwin_debug_flag > 11); | |
1087 | ||
1088 | res = darwin_decode_message (hdr, &thread, &inf, status); | |
1089 | ||
1090 | if (inf == NULL) | |
1091 | return res; | |
1092 | } | |
1093 | while (status->kind == TARGET_WAITKIND_IGNORE); | |
1094 | ||
1095 | /* Stop all tasks. */ | |
1096 | iterate_over_inferiors (darwin_suspend_inferior_it, NULL); | |
1097 | ||
1098 | /* Read pending messages. */ | |
1099 | while (1) | |
a80b95ba | 1100 | { |
bb00b29d TG |
1101 | struct target_waitstatus status2; |
1102 | ptid_t ptid2; | |
1103 | ||
1104 | kret = mach_msg (&msgin.hdr, | |
1105 | MACH_RCV_MSG | MACH_RCV_TIMEOUT, 0, | |
1106 | sizeof (msgin.data), darwin_port_set, 1, MACH_PORT_NULL); | |
1107 | ||
1108 | if (kret == MACH_RCV_TIMED_OUT) | |
1109 | break; | |
1110 | if (kret != MACH_MSG_SUCCESS) | |
1111 | { | |
1112 | inferior_debug | |
1113 | (5, _("darwin_wait: mach_msg(pending) ret=%x\n"), kret); | |
1114 | break; | |
1115 | } | |
1116 | ||
1117 | ptid2 = darwin_decode_message (hdr, &thread, &inf, &status2); | |
a80b95ba | 1118 | |
bb00b29d TG |
1119 | if (inf != NULL && thread != NULL |
1120 | && thread->event.ex_type == EXC_BREAKPOINT) | |
a80b95ba | 1121 | { |
bb00b29d TG |
1122 | if (thread->single_step |
1123 | || cancel_breakpoint (ptid_build (inf->pid, 0, thread->gdb_port))) | |
1124 | { | |
1125 | gdb_assert (thread->msg_state == DARWIN_MESSAGE); | |
1126 | darwin_send_reply (inf, thread); | |
1127 | thread->msg_state = DARWIN_RUNNING; | |
1128 | } | |
1129 | else | |
1130 | inferior_debug | |
1131 | (3, _("darwin_wait: thread %x hit a non-gdb breakpoint\n"), | |
1132 | thread->gdb_port); | |
a80b95ba | 1133 | } |
bb00b29d TG |
1134 | else |
1135 | inferior_debug (3, _("darwin_wait: unhandled pending message\n")); | |
1136 | } | |
1137 | return res; | |
1138 | } | |
a80b95ba | 1139 | |
bb00b29d TG |
1140 | static ptid_t |
1141 | darwin_wait_to (struct target_ops *ops, | |
1142 | ptid_t ptid, struct target_waitstatus *status, int options) | |
1143 | { | |
1144 | return darwin_wait (ptid, status); | |
1145 | } | |
a80b95ba | 1146 | |
bb00b29d TG |
1147 | static void |
1148 | darwin_stop (ptid_t t) | |
1149 | { | |
1150 | struct inferior *inf = current_inferior (); | |
a80b95ba | 1151 | |
bb00b29d TG |
1152 | /* FIXME: handle in no_ptrace mode. */ |
1153 | gdb_assert (!inf->private->no_ptrace); | |
1154 | kill (inf->pid, SIGINT); | |
a80b95ba TG |
1155 | } |
1156 | ||
1157 | static void | |
1158 | darwin_mourn_inferior (struct target_ops *ops) | |
1159 | { | |
1160 | struct inferior *inf = current_inferior (); | |
1161 | kern_return_t kret; | |
1162 | mach_port_t prev; | |
1163 | int i; | |
1164 | ||
1165 | unpush_target (darwin_ops); | |
1166 | ||
1167 | /* Deallocate threads. */ | |
bb00b29d | 1168 | if (inf->private->threads) |
a80b95ba TG |
1169 | { |
1170 | int k; | |
bb00b29d TG |
1171 | darwin_thread_t *t; |
1172 | for (k = 0; | |
1173 | VEC_iterate (darwin_thread_t, inf->private->threads, k, t); | |
1174 | k++) | |
a80b95ba | 1175 | { |
bb00b29d | 1176 | kret = mach_port_deallocate (gdb_task, t->gdb_port); |
a80b95ba TG |
1177 | MACH_CHECK_ERROR (kret); |
1178 | } | |
bb00b29d TG |
1179 | VEC_free (darwin_thread_t, inf->private->threads); |
1180 | inf->private->threads = NULL; | |
a80b95ba TG |
1181 | } |
1182 | ||
bb00b29d TG |
1183 | kret = mach_port_move_member (gdb_task, |
1184 | inf->private->notify_port, MACH_PORT_NULL); | |
1185 | gdb_assert (kret == KERN_SUCCESS); | |
1186 | ||
1187 | kret = mach_port_request_notification (gdb_task, inf->private->task, | |
a80b95ba | 1188 | MACH_NOTIFY_DEAD_NAME, 0, |
bb00b29d | 1189 | MACH_PORT_NULL, |
a80b95ba TG |
1190 | MACH_MSG_TYPE_MAKE_SEND_ONCE, |
1191 | &prev); | |
1192 | /* This can fail if the task is dead. */ | |
bb00b29d TG |
1193 | inferior_debug (4, "task=%x, prev=%x, notify_port=%x\n", |
1194 | inf->private->task, prev, inf->private->notify_port); | |
1195 | ||
a80b95ba TG |
1196 | if (kret == KERN_SUCCESS) |
1197 | { | |
1198 | kret = mach_port_deallocate (gdb_task, prev); | |
1199 | MACH_CHECK_ERROR (kret); | |
1200 | } | |
1201 | ||
bb00b29d TG |
1202 | kret = mach_port_destroy (gdb_task, inf->private->notify_port); |
1203 | MACH_CHECK_ERROR (kret); | |
1204 | ||
1205 | ||
a80b95ba | 1206 | /* Deallocate saved exception ports. */ |
bb00b29d | 1207 | for (i = 0; i < inf->private->exception_info.count; i++) |
a80b95ba TG |
1208 | { |
1209 | kret = mach_port_deallocate | |
bb00b29d | 1210 | (gdb_task, inf->private->exception_info.ports[i]); |
a80b95ba TG |
1211 | MACH_CHECK_ERROR (kret); |
1212 | } | |
bb00b29d | 1213 | inf->private->exception_info.count = 0; |
a80b95ba | 1214 | |
bb00b29d | 1215 | kret = mach_port_deallocate (gdb_task, inf->private->task); |
a80b95ba TG |
1216 | MACH_CHECK_ERROR (kret); |
1217 | ||
bb00b29d TG |
1218 | xfree (inf->private); |
1219 | inf->private = NULL; | |
a80b95ba TG |
1220 | |
1221 | generic_mourn_inferior (); | |
1222 | } | |
1223 | ||
1224 | static void | |
bb00b29d | 1225 | darwin_reply_to_all_pending_messages (struct inferior *inf) |
a80b95ba | 1226 | { |
bb00b29d TG |
1227 | int k; |
1228 | darwin_thread_t *t; | |
a80b95ba | 1229 | |
bb00b29d TG |
1230 | for (k = 0; |
1231 | VEC_iterate (darwin_thread_t, inf->private->threads, k, t); | |
1232 | k++) | |
1233 | { | |
1234 | if (t->msg_state == DARWIN_MESSAGE) | |
1235 | darwin_resume_thread (inf, t, 0, 0); | |
1236 | } | |
a80b95ba TG |
1237 | } |
1238 | ||
1239 | static void | |
bb00b29d | 1240 | darwin_stop_inferior (struct inferior *inf) |
a80b95ba TG |
1241 | { |
1242 | struct target_waitstatus wstatus; | |
1243 | ptid_t ptid; | |
1244 | kern_return_t kret; | |
1245 | int status; | |
1246 | int res; | |
1247 | ||
bb00b29d | 1248 | gdb_assert (inf != NULL); |
a80b95ba | 1249 | |
bb00b29d | 1250 | darwin_suspend_inferior (inf); |
a80b95ba | 1251 | |
bb00b29d | 1252 | darwin_reply_to_all_pending_messages (inf); |
a80b95ba | 1253 | |
bb00b29d TG |
1254 | if (inf->private->no_ptrace) |
1255 | return; | |
a80b95ba | 1256 | |
bb00b29d TG |
1257 | res = kill (inf->pid, SIGSTOP); |
1258 | if (res != 0) | |
b37520b6 | 1259 | warning (_("cannot kill: %s"), safe_strerror (errno)); |
a80b95ba | 1260 | |
bb00b29d TG |
1261 | /* Wait until the process is really stopped. */ |
1262 | while (1) | |
a80b95ba | 1263 | { |
bb00b29d TG |
1264 | ptid = darwin_wait (inferior_ptid, &wstatus); |
1265 | if (wstatus.kind == TARGET_WAITKIND_STOPPED | |
a493e3e2 | 1266 | && wstatus.value.sig == GDB_SIGNAL_STOP) |
bb00b29d | 1267 | break; |
a80b95ba TG |
1268 | } |
1269 | } | |
1270 | ||
1271 | static kern_return_t | |
1272 | darwin_save_exception_ports (darwin_inferior *inf) | |
1273 | { | |
1274 | kern_return_t kret; | |
1275 | ||
1276 | inf->exception_info.count = | |
1277 | sizeof (inf->exception_info.ports) / sizeof (inf->exception_info.ports[0]); | |
1278 | ||
1279 | kret = task_get_exception_ports | |
1280 | (inf->task, EXC_MASK_ALL, inf->exception_info.masks, | |
1281 | &inf->exception_info.count, inf->exception_info.ports, | |
1282 | inf->exception_info.behaviors, inf->exception_info.flavors); | |
1283 | return kret; | |
1284 | } | |
1285 | ||
1286 | static kern_return_t | |
1287 | darwin_restore_exception_ports (darwin_inferior *inf) | |
1288 | { | |
1289 | int i; | |
1290 | kern_return_t kret; | |
1291 | ||
1292 | for (i = 0; i < inf->exception_info.count; i++) | |
1293 | { | |
1294 | kret = task_set_exception_ports | |
1295 | (inf->task, inf->exception_info.masks[i], inf->exception_info.ports[i], | |
1296 | inf->exception_info.behaviors[i], inf->exception_info.flavors[i]); | |
1297 | if (kret != KERN_SUCCESS) | |
1298 | return kret; | |
1299 | } | |
1300 | ||
1301 | return KERN_SUCCESS; | |
1302 | } | |
1303 | ||
1304 | static void | |
bb00b29d TG |
1305 | darwin_kill_inferior (struct target_ops *ops) |
1306 | { | |
1307 | struct inferior *inf = current_inferior (); | |
1308 | struct target_waitstatus wstatus; | |
1309 | ptid_t ptid; | |
1310 | kern_return_t kret; | |
1311 | int status; | |
1312 | int res; | |
1313 | ||
1314 | if (ptid_equal (inferior_ptid, null_ptid)) | |
1315 | return; | |
1316 | ||
1317 | gdb_assert (inf != NULL); | |
1318 | ||
ee41036f TG |
1319 | kret = darwin_restore_exception_ports (inf->private); |
1320 | MACH_CHECK_ERROR (kret); | |
bb00b29d | 1321 | |
ee41036f | 1322 | darwin_reply_to_all_pending_messages (inf); |
bb00b29d | 1323 | |
ee41036f | 1324 | res = kill (inf->pid, 9); |
bb00b29d | 1325 | |
ee41036f | 1326 | if (res == 0) |
bb00b29d | 1327 | { |
bb00b29d | 1328 | darwin_resume_inferior (inf); |
ee41036f | 1329 | |
bb00b29d TG |
1330 | ptid = darwin_wait (inferior_ptid, &wstatus); |
1331 | } | |
ee41036f TG |
1332 | else if (errno != ESRCH) |
1333 | warning (_("Failed to kill inferior: kill (%d, 9) returned [%s]"), | |
1334 | inf->pid, safe_strerror (errno)); | |
bb00b29d TG |
1335 | |
1336 | target_mourn_inferior (); | |
1337 | } | |
1338 | ||
1339 | static void | |
1340 | darwin_attach_pid (struct inferior *inf) | |
a80b95ba | 1341 | { |
a80b95ba TG |
1342 | kern_return_t kret; |
1343 | mach_port_t prev_port; | |
1344 | int traps_expected; | |
bb00b29d | 1345 | mach_port_t prev_not; |
a80b95ba TG |
1346 | exception_mask_t mask; |
1347 | ||
bb00b29d TG |
1348 | inf->private = XZALLOC (darwin_inferior); |
1349 | ||
1350 | kret = task_for_pid (gdb_task, inf->pid, &inf->private->task); | |
a80b95ba TG |
1351 | if (kret != KERN_SUCCESS) |
1352 | { | |
1353 | int status; | |
a80b95ba TG |
1354 | |
1355 | if (!inf->attach_flag) | |
1356 | { | |
bb00b29d TG |
1357 | kill (inf->pid, 9); |
1358 | waitpid (inf->pid, &status, 0); | |
a80b95ba TG |
1359 | } |
1360 | ||
1361 | error (_("Unable to find Mach task port for process-id %d: %s (0x%lx).\n" | |
15c19d39 | 1362 | " (please check gdb is codesigned - see taskgated(8))"), |
bb00b29d | 1363 | inf->pid, mach_error_string (kret), (unsigned long) kret); |
a80b95ba TG |
1364 | } |
1365 | ||
bb00b29d TG |
1366 | inferior_debug (2, _("inferior task: 0x%x, pid: %d\n"), |
1367 | inf->private->task, inf->pid); | |
a80b95ba TG |
1368 | |
1369 | if (darwin_ex_port == MACH_PORT_NULL) | |
1370 | { | |
1371 | /* Create a port to get exceptions. */ | |
1372 | kret = mach_port_allocate (gdb_task, MACH_PORT_RIGHT_RECEIVE, | |
1373 | &darwin_ex_port); | |
1374 | gdb_assert (kret == KERN_SUCCESS); | |
1375 | ||
1376 | kret = mach_port_insert_right (gdb_task, darwin_ex_port, darwin_ex_port, | |
1377 | MACH_MSG_TYPE_MAKE_SEND); | |
1378 | gdb_assert (kret == KERN_SUCCESS); | |
1379 | ||
1380 | /* Create a port set and put ex_port in it. */ | |
1381 | kret = mach_port_allocate (gdb_task, MACH_PORT_RIGHT_PORT_SET, | |
1382 | &darwin_port_set); | |
1383 | gdb_assert (kret == KERN_SUCCESS); | |
1384 | ||
1385 | kret = mach_port_move_member (gdb_task, darwin_ex_port, darwin_port_set); | |
1386 | gdb_assert (kret == KERN_SUCCESS); | |
bb00b29d | 1387 | } |
a80b95ba | 1388 | |
bb00b29d TG |
1389 | /* Create a port to be notified when the child task terminates. */ |
1390 | kret = mach_port_allocate (gdb_task, MACH_PORT_RIGHT_RECEIVE, | |
1391 | &inf->private->notify_port); | |
1392 | gdb_assert (kret == KERN_SUCCESS); | |
a80b95ba | 1393 | |
bb00b29d TG |
1394 | kret = mach_port_move_member (gdb_task, |
1395 | inf->private->notify_port, darwin_port_set); | |
1396 | gdb_assert (kret == KERN_SUCCESS); | |
a80b95ba | 1397 | |
bb00b29d | 1398 | kret = mach_port_request_notification (gdb_task, inf->private->task, |
a80b95ba | 1399 | MACH_NOTIFY_DEAD_NAME, 0, |
bb00b29d | 1400 | inf->private->notify_port, |
a80b95ba | 1401 | MACH_MSG_TYPE_MAKE_SEND_ONCE, |
bb00b29d | 1402 | &prev_not); |
a80b95ba | 1403 | gdb_assert (kret == KERN_SUCCESS); |
bb00b29d | 1404 | gdb_assert (prev_not == MACH_PORT_NULL); |
a80b95ba | 1405 | |
bb00b29d | 1406 | kret = darwin_save_exception_ports (inf->private); |
a80b95ba TG |
1407 | gdb_assert (kret == KERN_SUCCESS); |
1408 | ||
1409 | /* Set exception port. */ | |
1410 | if (enable_mach_exceptions) | |
1411 | mask = EXC_MASK_ALL; | |
1412 | else | |
bb00b29d TG |
1413 | mask = EXC_MASK_SOFTWARE | EXC_MASK_BREAKPOINT; |
1414 | kret = task_set_exception_ports (inf->private->task, mask, darwin_ex_port, | |
1415 | EXCEPTION_DEFAULT, THREAD_STATE_NONE); | |
a80b95ba TG |
1416 | gdb_assert (kret == KERN_SUCCESS); |
1417 | ||
1418 | push_target (darwin_ops); | |
1419 | } | |
1420 | ||
1421 | static void | |
bb00b29d | 1422 | darwin_init_thread_list (struct inferior *inf) |
a80b95ba | 1423 | { |
bb00b29d TG |
1424 | darwin_thread_t *thread; |
1425 | ptid_t new_ptid; | |
a80b95ba TG |
1426 | |
1427 | darwin_check_new_threads (inf); | |
1428 | ||
bb00b29d TG |
1429 | gdb_assert (inf->private->threads |
1430 | && VEC_length (darwin_thread_t, inf->private->threads) > 0); | |
1431 | thread = VEC_index (darwin_thread_t, inf->private->threads, 0); | |
1432 | ||
1433 | /* Note: fork_inferior automatically add a thead but it uses a wrong ptid. | |
1434 | Fix up. */ | |
1435 | new_ptid = ptid_build (inf->pid, 0, thread->gdb_port); | |
1436 | thread_change_ptid (inferior_ptid, new_ptid); | |
1437 | inferior_ptid = new_ptid; | |
1438 | } | |
1439 | ||
1440 | /* The child must synchronize with gdb: gdb must set the exception port | |
1441 | before the child call PTRACE_SIGEXC. We use a pipe to achieve this. | |
1442 | FIXME: is there a lighter way ? */ | |
1443 | static int ptrace_fds[2]; | |
1444 | ||
1445 | static void | |
1446 | darwin_ptrace_me (void) | |
1447 | { | |
1448 | int res; | |
1449 | char c; | |
1450 | ||
1451 | /* Close write end point. */ | |
1452 | close (ptrace_fds[1]); | |
1453 | ||
1454 | /* Wait until gdb is ready. */ | |
1455 | res = read (ptrace_fds[0], &c, 1); | |
1456 | gdb_assert (res == 0); | |
1457 | close (ptrace_fds[0]); | |
1458 | ||
1459 | /* Get rid of privileges. */ | |
1460 | setegid (getgid ()); | |
1461 | ||
1462 | /* Set TRACEME. */ | |
1463 | PTRACE (PT_TRACE_ME, 0, 0, 0); | |
1464 | ||
1465 | /* Redirect signals to exception port. */ | |
1466 | PTRACE (PT_SIGEXC, 0, 0, 0); | |
1467 | } | |
1468 | ||
1469 | /* Dummy function to be sure fork_inferior uses fork(2) and not vfork(2). */ | |
1470 | static void | |
1471 | darwin_pre_ptrace (void) | |
1472 | { | |
1473 | if (pipe (ptrace_fds) != 0) | |
1474 | { | |
1475 | ptrace_fds[0] = -1; | |
1476 | ptrace_fds[1] = -1; | |
1477 | error (_("unable to create a pipe: %s"), safe_strerror (errno)); | |
1478 | } | |
a80b95ba TG |
1479 | } |
1480 | ||
1481 | static void | |
1482 | darwin_ptrace_him (int pid) | |
1483 | { | |
1484 | task_t itask; | |
1485 | kern_return_t kret; | |
1486 | mach_port_t prev_port; | |
1487 | int traps_expected; | |
bb00b29d | 1488 | struct inferior *inf = current_inferior (); |
a80b95ba | 1489 | |
bb00b29d | 1490 | darwin_attach_pid (inf); |
a80b95ba TG |
1491 | |
1492 | /* Let's the child run. */ | |
1493 | close (ptrace_fds[0]); | |
1494 | close (ptrace_fds[1]); | |
1495 | ||
bb00b29d TG |
1496 | darwin_init_thread_list (inf); |
1497 | ||
a80b95ba TG |
1498 | startup_inferior (START_INFERIOR_TRAPS_EXPECTED); |
1499 | } | |
1500 | ||
e69860f1 TG |
1501 | static void |
1502 | darwin_execvp (const char *file, char * const argv[], char * const env[]) | |
1503 | { | |
1504 | posix_spawnattr_t attr; | |
1505 | short ps_flags = 0; | |
f00c55f8 | 1506 | int res; |
e69860f1 | 1507 | |
f00c55f8 TG |
1508 | res = posix_spawnattr_init (&attr); |
1509 | if (res != 0) | |
e69860f1 TG |
1510 | { |
1511 | fprintf_unfiltered | |
1512 | (gdb_stderr, "Cannot initialize attribute for posix_spawn\n"); | |
1513 | return; | |
1514 | } | |
1515 | ||
1516 | /* Do like execve: replace the image. */ | |
1517 | ps_flags = POSIX_SPAWN_SETEXEC; | |
1518 | ||
1519 | /* Disable ASLR. The constant doesn't look to be available outside the | |
1520 | kernel include files. */ | |
1521 | #ifndef _POSIX_SPAWN_DISABLE_ASLR | |
1522 | #define _POSIX_SPAWN_DISABLE_ASLR 0x0100 | |
1523 | #endif | |
1524 | ps_flags |= _POSIX_SPAWN_DISABLE_ASLR; | |
f00c55f8 TG |
1525 | res = posix_spawnattr_setflags (&attr, ps_flags); |
1526 | if (res != 0) | |
e69860f1 | 1527 | { |
f00c55f8 | 1528 | fprintf_unfiltered (gdb_stderr, "Cannot set posix_spawn flags\n"); |
e69860f1 TG |
1529 | return; |
1530 | } | |
1531 | ||
1532 | posix_spawnp (NULL, argv[0], NULL, &attr, argv, env); | |
1533 | } | |
1534 | ||
a80b95ba TG |
1535 | static void |
1536 | darwin_create_inferior (struct target_ops *ops, char *exec_file, | |
1537 | char *allargs, char **env, int from_tty) | |
1538 | { | |
1539 | /* Do the hard work. */ | |
1540 | fork_inferior (exec_file, allargs, env, darwin_ptrace_me, darwin_ptrace_him, | |
e69860f1 | 1541 | darwin_pre_ptrace, NULL, darwin_execvp); |
bb00b29d | 1542 | |
a80b95ba TG |
1543 | /* Return now in case of error. */ |
1544 | if (ptid_equal (inferior_ptid, null_ptid)) | |
1545 | return; | |
1546 | } | |
1547 | \f | |
1548 | ||
1549 | /* Attach to process PID, then initialize for debugging it | |
1550 | and wait for the trace-trap that results from attaching. */ | |
1551 | static void | |
1552 | darwin_attach (struct target_ops *ops, char *args, int from_tty) | |
1553 | { | |
1554 | pid_t pid; | |
1555 | pid_t pid2; | |
1556 | int wstatus; | |
1557 | int res; | |
1558 | struct inferior *inf; | |
bb00b29d | 1559 | kern_return_t kret; |
a80b95ba | 1560 | |
74164c56 | 1561 | pid = parse_pid_to_attach (args); |
a80b95ba | 1562 | |
74164c56 | 1563 | if (pid == getpid ()) /* Trying to masturbate? */ |
a80b95ba TG |
1564 | error (_("I refuse to debug myself!")); |
1565 | ||
1566 | if (from_tty) | |
bb00b29d TG |
1567 | { |
1568 | char *exec_file = get_exec_file (0); | |
a80b95ba | 1569 | |
bb00b29d TG |
1570 | if (exec_file) |
1571 | printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file, | |
1572 | target_pid_to_str (pid_to_ptid (pid))); | |
1573 | else | |
1574 | printf_unfiltered (_("Attaching to %s\n"), | |
1575 | target_pid_to_str (pid_to_ptid (pid))); | |
1576 | ||
1577 | gdb_flush (gdb_stdout); | |
1578 | } | |
1579 | ||
1580 | if (pid == 0 || kill (pid, 0) < 0) | |
1581 | error (_("Can't attach to process %d: %s (%d)"), | |
1582 | pid, safe_strerror (errno), errno); | |
a80b95ba | 1583 | |
bb00b29d | 1584 | inferior_ptid = pid_to_ptid (pid); |
6c95b8df PA |
1585 | inf = current_inferior (); |
1586 | inferior_appeared (inf, pid); | |
a80b95ba | 1587 | inf->attach_flag = 1; |
6c95b8df | 1588 | |
bb00b29d TG |
1589 | /* Always add a main thread. */ |
1590 | add_thread_silent (inferior_ptid); | |
a80b95ba | 1591 | |
bb00b29d | 1592 | darwin_attach_pid (inf); |
a80b95ba | 1593 | |
bb00b29d | 1594 | darwin_suspend_inferior (inf); |
a80b95ba | 1595 | |
bb00b29d | 1596 | darwin_init_thread_list (inf); |
a80b95ba | 1597 | |
bb00b29d | 1598 | darwin_check_osabi (inf->private, ptid_get_tid (inferior_ptid)); |
a80b95ba | 1599 | |
bb00b29d TG |
1600 | gdb_assert (darwin_inf_fake_stop == NULL); |
1601 | darwin_inf_fake_stop = inf; | |
1602 | inf->private->no_ptrace = 1; | |
a80b95ba TG |
1603 | } |
1604 | ||
1605 | /* Take a program previously attached to and detaches it. | |
1606 | The program resumes execution and will no longer stop | |
1607 | on signals, etc. We'd better not have left any breakpoints | |
1608 | in the program or it'll die when it hits one. For this | |
1609 | to work, it may be necessary for the process to have been | |
1610 | previously attached. It *might* work if the program was | |
1611 | started via fork. */ | |
1612 | static void | |
1613 | darwin_detach (struct target_ops *ops, char *args, int from_tty) | |
1614 | { | |
bb00b29d TG |
1615 | pid_t pid = ptid_get_pid (inferior_ptid); |
1616 | struct inferior *inf = current_inferior (); | |
a80b95ba TG |
1617 | kern_return_t kret; |
1618 | int res; | |
1619 | ||
bb00b29d | 1620 | /* Display message. */ |
a80b95ba TG |
1621 | if (from_tty) |
1622 | { | |
1623 | char *exec_file = get_exec_file (0); | |
1624 | if (exec_file == 0) | |
1625 | exec_file = ""; | |
bb00b29d TG |
1626 | printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file, |
1627 | target_pid_to_str (pid_to_ptid (pid))); | |
a80b95ba TG |
1628 | gdb_flush (gdb_stdout); |
1629 | } | |
1630 | ||
bb00b29d TG |
1631 | /* If ptrace() is in use, stop the process. */ |
1632 | if (!inf->private->no_ptrace) | |
1633 | darwin_stop_inferior (inf); | |
a80b95ba | 1634 | |
bb00b29d | 1635 | kret = darwin_restore_exception_ports (inf->private); |
a80b95ba TG |
1636 | MACH_CHECK_ERROR (kret); |
1637 | ||
bb00b29d | 1638 | if (!inf->private->no_ptrace) |
a80b95ba | 1639 | { |
bb00b29d TG |
1640 | res = PTRACE (PT_DETACH, inf->pid, 0, 0); |
1641 | if (res != 0) | |
1642 | printf_unfiltered (_("Unable to detach from process-id %d: %s (%d)"), | |
1643 | inf->pid, safe_strerror (errno), errno); | |
a80b95ba TG |
1644 | } |
1645 | ||
bb00b29d | 1646 | darwin_reply_to_all_pending_messages (inf); |
a80b95ba | 1647 | |
5e9bc145 JB |
1648 | /* When using ptrace, we have just performed a PT_DETACH, which |
1649 | resumes the inferior. On the other hand, when we are not using | |
1650 | ptrace, we need to resume its execution ourselves. */ | |
1651 | if (inf->private->no_ptrace) | |
1652 | darwin_resume_inferior (inf); | |
a80b95ba TG |
1653 | |
1654 | darwin_mourn_inferior (ops); | |
1655 | } | |
1656 | ||
1657 | static void | |
1658 | darwin_files_info (struct target_ops *ops) | |
1659 | { | |
a80b95ba TG |
1660 | } |
1661 | ||
1662 | static char * | |
117de6a9 | 1663 | darwin_pid_to_str (struct target_ops *ops, ptid_t ptid) |
a80b95ba | 1664 | { |
bb00b29d TG |
1665 | static char buf[80]; |
1666 | long tid = ptid_get_tid (ptid); | |
1667 | ||
1668 | if (tid != 0) | |
1669 | { | |
1670 | snprintf (buf, sizeof (buf), _("Thread 0x%lx of process %u"), | |
1671 | tid, ptid_get_pid (ptid)); | |
1672 | return buf; | |
1673 | } | |
a80b95ba | 1674 | |
bb00b29d | 1675 | return normal_pid_to_str (ptid); |
a80b95ba TG |
1676 | } |
1677 | ||
1678 | static int | |
28439f5e | 1679 | darwin_thread_alive (struct target_ops *ops, ptid_t ptid) |
a80b95ba TG |
1680 | { |
1681 | return 1; | |
1682 | } | |
1683 | ||
1684 | /* If RDADDR is not NULL, read inferior task's LEN bytes from ADDR and | |
1685 | copy it to RDADDR in gdb's address space. | |
1686 | If WRADDR is not NULL, write gdb's LEN bytes from WRADDR and copy it | |
1687 | to ADDR in inferior task's address space. | |
f00c55f8 | 1688 | Return 0 on failure; number of bytes read / writen otherwise. */ |
a80b95ba TG |
1689 | static int |
1690 | darwin_read_write_inferior (task_t task, CORE_ADDR addr, | |
b9dd1947 JB |
1691 | gdb_byte *rdaddr, const gdb_byte *wraddr, |
1692 | int length) | |
a80b95ba | 1693 | { |
bb00b29d | 1694 | kern_return_t kret; |
a80b95ba TG |
1695 | mach_vm_address_t offset = addr & (mach_page_size - 1); |
1696 | mach_vm_address_t low_address = (mach_vm_address_t) (addr - offset); | |
1697 | mach_vm_size_t aligned_length = (mach_vm_size_t) PAGE_ROUND (offset + length); | |
1698 | pointer_t copied; | |
b9dd1947 | 1699 | mach_msg_type_number_t copy_count; |
a80b95ba TG |
1700 | mach_vm_size_t remaining_length; |
1701 | mach_vm_address_t region_address; | |
1702 | mach_vm_size_t region_length; | |
1703 | ||
bb00b29d TG |
1704 | inferior_debug (8, _("darwin_read_write_inferior(task=%x, %s, len=%d)\n"), |
1705 | task, core_addr_to_string (addr), length); | |
1706 | ||
0963b4bd | 1707 | /* Get memory from inferior with page aligned addresses. */ |
bb00b29d | 1708 | kret = mach_vm_read (task, low_address, aligned_length, |
a80b95ba | 1709 | &copied, ©_count); |
bb00b29d | 1710 | if (kret != KERN_SUCCESS) |
a80b95ba | 1711 | { |
bb00b29d TG |
1712 | inferior_debug |
1713 | (1, _("darwin_read_write_inferior: mach_vm_read failed at %s: %s"), | |
1714 | core_addr_to_string (addr), mach_error_string (kret)); | |
a80b95ba TG |
1715 | return 0; |
1716 | } | |
1717 | ||
1718 | if (rdaddr != NULL) | |
1719 | memcpy (rdaddr, (char *)copied + offset, length); | |
1720 | ||
1721 | if (wraddr == NULL) | |
1722 | goto out; | |
1723 | ||
1724 | memcpy ((char *)copied + offset, wraddr, length); | |
1725 | ||
1726 | /* Do writes atomically. | |
1727 | First check for holes and unwritable memory. */ | |
1728 | for (region_address = low_address, remaining_length = aligned_length; | |
1729 | region_address < low_address + aligned_length; | |
1730 | region_address += region_length, remaining_length -= region_length) | |
1731 | { | |
bb00b29d TG |
1732 | vm_region_submap_short_info_data_64_t info; |
1733 | mach_vm_address_t region_start = region_address; | |
a80b95ba | 1734 | mach_msg_type_number_t count; |
bb00b29d TG |
1735 | natural_t region_depth; |
1736 | ||
1737 | region_depth = 100000; | |
1738 | count = VM_REGION_SUBMAP_SHORT_INFO_COUNT_64; | |
1739 | kret = mach_vm_region_recurse | |
1740 | (task, ®ion_start, ®ion_length, ®ion_depth, | |
1741 | (vm_region_recurse_info_t) &info, &count); | |
1742 | ||
1743 | if (kret != KERN_SUCCESS) | |
a80b95ba | 1744 | { |
bb00b29d TG |
1745 | inferior_debug (1, _("darwin_read_write_inferior: " |
1746 | "mach_vm_region_recurse failed at %s: %s\n"), | |
1747 | core_addr_to_string (region_address), | |
1748 | mach_error_string (kret)); | |
a80b95ba TG |
1749 | goto out; |
1750 | } | |
1751 | ||
bb00b29d TG |
1752 | inferior_debug |
1753 | (9, _("darwin_read_write_inferior: " | |
1754 | "mach_vm_region_recurse addr=%s, start=%s, len=%s\n"), | |
1755 | core_addr_to_string (region_address), | |
1756 | core_addr_to_string (region_start), | |
1757 | core_addr_to_string (region_length)); | |
1758 | ||
0963b4bd | 1759 | /* Check for holes in memory. */ |
bb00b29d | 1760 | if (region_start > region_address) |
a80b95ba | 1761 | { |
0963b4bd | 1762 | warning (_("No memory at %s (vs %s+0x%x). Nothing written"), |
a80b95ba | 1763 | core_addr_to_string (region_address), |
bb00b29d | 1764 | core_addr_to_string (region_start), |
a80b95ba TG |
1765 | (unsigned)region_length); |
1766 | length = 0; | |
1767 | goto out; | |
1768 | } | |
1769 | ||
bb00b29d TG |
1770 | /* Adjust the length. */ |
1771 | region_length -= (region_address - region_start); | |
1772 | ||
a80b95ba TG |
1773 | if (!(info.max_protection & VM_PROT_WRITE)) |
1774 | { | |
bb00b29d TG |
1775 | kret = mach_vm_protect |
1776 | (task, region_address, region_length, | |
1777 | TRUE, info.max_protection | VM_PROT_WRITE | VM_PROT_COPY); | |
1778 | if (kret != KERN_SUCCESS) | |
1779 | { | |
1780 | warning (_("darwin_read_write_inf: " | |
1781 | "mach_vm_protect max failed at %s: %s"), | |
1782 | core_addr_to_string (region_address), | |
1783 | mach_error_string (kret)); | |
1784 | length = 0; | |
1785 | goto out; | |
1786 | } | |
a80b95ba TG |
1787 | } |
1788 | ||
1789 | if (!(info.protection & VM_PROT_WRITE)) | |
1790 | { | |
bb00b29d | 1791 | kret = mach_vm_protect (task, region_address, region_length, |
a80b95ba | 1792 | FALSE, info.protection | VM_PROT_WRITE); |
bb00b29d | 1793 | if (kret != KERN_SUCCESS) |
a80b95ba | 1794 | { |
bb00b29d TG |
1795 | warning (_("darwin_read_write_inf: " |
1796 | "mach_vm_protect failed at %s (len=0x%lx): %s"), | |
1797 | core_addr_to_string (region_address), | |
1798 | (unsigned long)region_length, mach_error_string (kret)); | |
a80b95ba TG |
1799 | length = 0; |
1800 | goto out; | |
1801 | } | |
1802 | } | |
1803 | } | |
1804 | ||
bb00b29d | 1805 | kret = mach_vm_write (task, low_address, copied, aligned_length); |
a80b95ba | 1806 | |
bb00b29d | 1807 | if (kret != KERN_SUCCESS) |
a80b95ba TG |
1808 | { |
1809 | warning (_("darwin_read_write_inferior: mach_vm_write failed: %s"), | |
bb00b29d | 1810 | mach_error_string (kret)); |
a80b95ba TG |
1811 | length = 0; |
1812 | } | |
1813 | out: | |
1814 | mach_vm_deallocate (mach_task_self (), copied, copy_count); | |
1815 | return length; | |
1816 | } | |
1817 | ||
f00c55f8 TG |
1818 | /* Read LENGTH bytes at offset ADDR of task_dyld_info for TASK, and copy them |
1819 | to RDADDR. | |
569283d4 | 1820 | Return 0 on failure; number of bytes read / written otherwise. */ |
f00c55f8 | 1821 | |
b967eb24 | 1822 | #ifdef TASK_DYLD_INFO_COUNT |
569283d4 | 1823 | /* This is not available in Darwin 9. */ |
f00c55f8 | 1824 | static int |
b9dd1947 JB |
1825 | darwin_read_dyld_info (task_t task, CORE_ADDR addr, gdb_byte *rdaddr, |
1826 | int length) | |
f00c55f8 TG |
1827 | { |
1828 | struct task_dyld_info task_dyld_info; | |
1829 | mach_msg_type_number_t count = TASK_DYLD_INFO_COUNT; | |
1830 | int sz = TASK_DYLD_INFO_COUNT * sizeof (natural_t); | |
1831 | kern_return_t kret; | |
1832 | ||
1833 | if (addr >= sz) | |
1834 | return 0; | |
1835 | ||
1836 | kret = task_info (task, TASK_DYLD_INFO, (task_info_t) &task_dyld_info, &count); | |
1837 | MACH_CHECK_ERROR (kret); | |
1838 | if (kret != KERN_SUCCESS) | |
1839 | return -1; | |
1840 | /* Truncate. */ | |
1841 | if (addr + length > sz) | |
1842 | length = sz - addr; | |
1843 | memcpy (rdaddr, (char *)&task_dyld_info + addr, length); | |
1844 | return length; | |
1845 | } | |
569283d4 | 1846 | #endif |
f00c55f8 | 1847 | |
a80b95ba TG |
1848 | \f |
1849 | /* Return 0 on failure, number of bytes handled otherwise. TARGET | |
0963b4bd | 1850 | is ignored. */ |
a80b95ba TG |
1851 | static int |
1852 | darwin_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write, | |
1853 | struct mem_attrib *attrib, struct target_ops *target) | |
1854 | { | |
bb00b29d TG |
1855 | struct inferior *inf = current_inferior (); |
1856 | task_t task = inf->private->task; | |
a80b95ba TG |
1857 | |
1858 | if (task == MACH_PORT_NULL) | |
1859 | return 0; | |
1860 | ||
1861 | inferior_debug (8, _("darwin_xfer_memory(%s, %d, %c)\n"), | |
1862 | core_addr_to_string (memaddr), len, write ? 'w' : 'r'); | |
1863 | ||
1864 | if (write) | |
1865 | return darwin_read_write_inferior (task, memaddr, NULL, myaddr, len); | |
1866 | else | |
1867 | return darwin_read_write_inferior (task, memaddr, myaddr, NULL, len); | |
1868 | } | |
1869 | ||
1870 | static LONGEST | |
1871 | darwin_xfer_partial (struct target_ops *ops, | |
1872 | enum target_object object, const char *annex, | |
1873 | gdb_byte *readbuf, const gdb_byte *writebuf, | |
1874 | ULONGEST offset, LONGEST len) | |
1875 | { | |
bb00b29d TG |
1876 | struct inferior *inf = current_inferior (); |
1877 | ||
1878 | inferior_debug | |
854f4b0e TG |
1879 | (8, _("darwin_xfer_partial(%s, %d, rbuf=%s, wbuf=%s) pid=%u\n"), |
1880 | core_addr_to_string (offset), (int)len, | |
1881 | host_address_to_string (readbuf), host_address_to_string (writebuf), | |
1882 | inf->pid); | |
a80b95ba | 1883 | |
f00c55f8 TG |
1884 | switch (object) |
1885 | { | |
1886 | case TARGET_OBJECT_MEMORY: | |
1887 | return darwin_read_write_inferior (inf->private->task, offset, | |
1888 | readbuf, writebuf, len); | |
569283d4 | 1889 | #ifdef TASK_DYLD_INFO_COUNT |
f00c55f8 TG |
1890 | case TARGET_OBJECT_DARWIN_DYLD_INFO: |
1891 | if (writebuf != NULL || readbuf == NULL) | |
1892 | { | |
1893 | /* Support only read. */ | |
1894 | return -1; | |
1895 | } | |
1896 | return darwin_read_dyld_info (inf->private->task, offset, readbuf, len); | |
569283d4 | 1897 | #endif |
f00c55f8 TG |
1898 | default: |
1899 | return -1; | |
1900 | } | |
a80b95ba | 1901 | |
a80b95ba TG |
1902 | } |
1903 | ||
1904 | static void | |
1905 | set_enable_mach_exceptions (char *args, int from_tty, | |
1906 | struct cmd_list_element *c) | |
1907 | { | |
bb00b29d | 1908 | if (!ptid_equal (inferior_ptid, null_ptid)) |
a80b95ba | 1909 | { |
bb00b29d | 1910 | struct inferior *inf = current_inferior (); |
a80b95ba TG |
1911 | exception_mask_t mask; |
1912 | kern_return_t kret; | |
1913 | ||
1914 | if (enable_mach_exceptions) | |
1915 | mask = EXC_MASK_ALL; | |
1916 | else | |
1917 | { | |
bb00b29d TG |
1918 | darwin_restore_exception_ports (inf->private); |
1919 | mask = EXC_MASK_SOFTWARE | EXC_MASK_BREAKPOINT; | |
a80b95ba | 1920 | } |
bb00b29d | 1921 | kret = task_set_exception_ports (inf->private->task, mask, darwin_ex_port, |
a80b95ba TG |
1922 | EXCEPTION_DEFAULT, THREAD_STATE_NONE); |
1923 | MACH_CHECK_ERROR (kret); | |
1924 | } | |
1925 | } | |
1926 | ||
bb00b29d TG |
1927 | static char * |
1928 | darwin_pid_to_exec_file (int pid) | |
1929 | { | |
1930 | char *path; | |
1931 | int res; | |
1932 | ||
1933 | path = xmalloc (MAXPATHLEN); | |
1934 | make_cleanup (xfree, path); | |
1935 | ||
1936 | res = proc_pidinfo (pid, PROC_PIDPATHINFO, 0, path, MAXPATHLEN); | |
1937 | if (res >= 0) | |
1938 | return path; | |
1939 | else | |
1940 | return NULL; | |
1941 | } | |
1942 | ||
1943 | static ptid_t | |
1944 | darwin_get_ada_task_ptid (long lwp, long thread) | |
1945 | { | |
1946 | int i; | |
1947 | darwin_thread_t *t; | |
1948 | int k; | |
1949 | struct inferior *inf = current_inferior (); | |
1950 | kern_return_t kret; | |
1951 | mach_port_name_array_t names; | |
1952 | mach_msg_type_number_t names_count; | |
1953 | mach_port_type_array_t types; | |
1954 | mach_msg_type_number_t types_count; | |
1955 | long res = 0; | |
1956 | ||
1957 | /* First linear search. */ | |
1958 | for (k = 0; | |
1959 | VEC_iterate (darwin_thread_t, inf->private->threads, k, t); | |
1960 | k++) | |
1961 | if (t->inf_port == lwp) | |
1962 | return ptid_build (ptid_get_pid (inferior_ptid), 0, t->gdb_port); | |
1963 | ||
1964 | /* Maybe the port was never extract. Do it now. */ | |
1965 | ||
1966 | /* First get inferior port names. */ | |
1967 | kret = mach_port_names (inf->private->task, &names, &names_count, &types, | |
1968 | &types_count); | |
1969 | MACH_CHECK_ERROR (kret); | |
1970 | if (kret != KERN_SUCCESS) | |
1971 | return null_ptid; | |
1972 | ||
1973 | /* For each name, copy the right in the gdb space and then compare with | |
1974 | our view of the inferior threads. We don't forget to deallocate the | |
1975 | right. */ | |
1976 | for (i = 0; i < names_count; i++) | |
1977 | { | |
1978 | mach_port_t local_name; | |
1979 | mach_msg_type_name_t local_type; | |
1980 | ||
1981 | /* We just need to know the corresponding name in gdb name space. | |
1982 | So extract and deallocate the right. */ | |
1983 | kret = mach_port_extract_right (inf->private->task, names[i], | |
1984 | MACH_MSG_TYPE_COPY_SEND, | |
1985 | &local_name, &local_type); | |
1986 | if (kret != KERN_SUCCESS) | |
1987 | continue; | |
1988 | mach_port_deallocate (gdb_task, local_name); | |
1989 | ||
1990 | for (k = 0; | |
1991 | VEC_iterate (darwin_thread_t, inf->private->threads, k, t); | |
1992 | k++) | |
1993 | if (t->gdb_port == local_name) | |
1994 | { | |
1995 | t->inf_port = names[i]; | |
1996 | if (names[i] == lwp) | |
1997 | res = t->gdb_port; | |
1998 | } | |
1999 | } | |
2000 | ||
2001 | vm_deallocate (gdb_task, (vm_address_t) names, | |
2002 | names_count * sizeof (mach_port_t)); | |
2003 | ||
2004 | if (res) | |
2005 | return ptid_build (ptid_get_pid (inferior_ptid), 0, res); | |
2006 | else | |
2007 | return null_ptid; | |
2008 | } | |
2009 | ||
2010 | static int | |
2011 | darwin_supports_multi_process (void) | |
2012 | { | |
2013 | return 1; | |
2014 | } | |
2015 | ||
c381a3f6 JB |
2016 | /* -Wmissing-prototypes */ |
2017 | extern initialize_file_ftype _initialize_darwin_inferior; | |
2018 | ||
a80b95ba | 2019 | void |
bb00b29d | 2020 | _initialize_darwin_inferior (void) |
a80b95ba TG |
2021 | { |
2022 | kern_return_t kret; | |
2023 | ||
a80b95ba TG |
2024 | gdb_task = mach_task_self (); |
2025 | darwin_host_self = mach_host_self (); | |
2026 | ||
2027 | /* Read page size. */ | |
2028 | kret = host_page_size (darwin_host_self, &mach_page_size); | |
2029 | if (kret != KERN_SUCCESS) | |
2030 | { | |
2031 | mach_page_size = 0x1000; | |
2032 | MACH_CHECK_ERROR (kret); | |
2033 | } | |
2034 | ||
a80b95ba TG |
2035 | darwin_ops = inf_child_target (); |
2036 | ||
2037 | darwin_ops->to_shortname = "darwin-child"; | |
2038 | darwin_ops->to_longname = _("Darwin child process"); | |
2039 | darwin_ops->to_doc = | |
2040 | _("Darwin child process (started by the \"run\" command)."); | |
2041 | darwin_ops->to_create_inferior = darwin_create_inferior; | |
2042 | darwin_ops->to_attach = darwin_attach; | |
2043 | darwin_ops->to_attach_no_wait = 0; | |
2044 | darwin_ops->to_detach = darwin_detach; | |
2045 | darwin_ops->to_files_info = darwin_files_info; | |
bb00b29d | 2046 | darwin_ops->to_wait = darwin_wait_to; |
a80b95ba TG |
2047 | darwin_ops->to_mourn_inferior = darwin_mourn_inferior; |
2048 | darwin_ops->to_kill = darwin_kill_inferior; | |
2049 | darwin_ops->to_stop = darwin_stop; | |
bb00b29d | 2050 | darwin_ops->to_resume = darwin_resume_to; |
a80b95ba TG |
2051 | darwin_ops->to_thread_alive = darwin_thread_alive; |
2052 | darwin_ops->to_pid_to_str = darwin_pid_to_str; | |
bb00b29d | 2053 | darwin_ops->to_pid_to_exec_file = darwin_pid_to_exec_file; |
a80b95ba TG |
2054 | darwin_ops->to_load = NULL; |
2055 | darwin_ops->deprecated_xfer_memory = darwin_xfer_memory; | |
2056 | darwin_ops->to_xfer_partial = darwin_xfer_partial; | |
bb00b29d TG |
2057 | darwin_ops->to_supports_multi_process = darwin_supports_multi_process; |
2058 | darwin_ops->to_get_ada_task_ptid = darwin_get_ada_task_ptid; | |
a80b95ba TG |
2059 | |
2060 | darwin_complete_target (darwin_ops); | |
2061 | ||
2062 | add_target (darwin_ops); | |
2063 | ||
2064 | inferior_debug (2, _("GDB task: 0x%lx, pid: %d\n"), mach_task_self (), | |
2065 | getpid ()); | |
2066 | ||
ccce17b0 YQ |
2067 | add_setshow_zuinteger_cmd ("darwin", class_obscure, |
2068 | &darwin_debug_flag, _("\ | |
a80b95ba TG |
2069 | Set if printing inferior communication debugging statements."), _("\ |
2070 | Show if printing inferior communication debugging statements."), NULL, | |
ccce17b0 YQ |
2071 | NULL, NULL, |
2072 | &setdebuglist, &showdebuglist); | |
a80b95ba TG |
2073 | |
2074 | add_setshow_boolean_cmd ("mach-exceptions", class_support, | |
2075 | &enable_mach_exceptions, _("\ | |
2076 | Set if mach exceptions are caught."), _("\ | |
2077 | Show if mach exceptions are caught."), _("\ | |
2078 | When this mode is on, all low level exceptions are reported before being\n\ | |
2079 | reported by the kernel."), | |
2080 | &set_enable_mach_exceptions, NULL, | |
2081 | &setlist, &showlist); | |
2082 | } |