Remove ptid_get_pid
[deliverable/binutils-gdb.git] / gdb / gnu-nat.c
1 /* Interface GDB to the GNU Hurd.
2 Copyright (C) 1992-2018 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 Written by Miles Bader <miles@gnu.ai.mit.edu>
7
8 Some code and ideas from m3-nat.c by Jukka Virtanen <jtv@hut.fi>
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22
23 /* Mach/Hurd headers are not yet ready for C++ compilation. */
24 extern "C"
25 {
26 #include <mach.h>
27 #include <mach_error.h>
28 #include <mach/exception.h>
29 #include <mach/message.h>
30 #include <mach/notify.h>
31 #include <mach/vm_attributes.h>
32
33 #include <hurd.h>
34 #include <hurd/interrupt.h>
35 #include <hurd/msg.h>
36 #include <hurd/msg_request.h>
37 #include <hurd/process.h>
38 /* Defined in <hurd/process.h>, but we need forward declarations from
39 <hurd/process_request.h> as well. */
40 #undef _process_user_
41 #include <hurd/process_request.h>
42 #include <hurd/signal.h>
43 #include <hurd/sigpreempt.h>
44
45 #include <portinfo.h>
46 }
47
48 #include "defs.h"
49
50 #include <ctype.h>
51 #include <limits.h>
52 #include <setjmp.h>
53 #include <signal.h>
54 #include <sys/ptrace.h>
55 #include <elf.h>
56 #include <link.h>
57
58 #include "inferior.h"
59 #include "symtab.h"
60 #include "value.h"
61 #include "language.h"
62 #include "target.h"
63 #include "gdb_wait.h"
64 #include "gdbcmd.h"
65 #include "gdbcore.h"
66 #include "gdbthread.h"
67 #include "gdb_obstack.h"
68 #include "tid-parse.h"
69
70 #include "gnu-nat.h"
71 #include "inf-child.h"
72
73 /* MIG stubs are not yet ready for C++ compilation. */
74 extern "C"
75 {
76 #include "exc_request_S.h"
77 #include "notify_S.h"
78 #include "process_reply_S.h"
79 #include "msg_reply_S.h"
80 #include "exc_request_U.h"
81 #include "msg_U.h"
82 }
83
84 static process_t proc_server = MACH_PORT_NULL;
85
86 /* If we've sent a proc_wait_request to the proc server, the pid of the
87 process we asked about. We can only ever have one outstanding. */
88 int proc_wait_pid = 0;
89
90 /* The number of wait requests we've sent, and expect replies from. */
91 int proc_waits_pending = 0;
92
93 int gnu_debug_flag = 0;
94
95 /* Forward decls */
96
97 static struct inf *make_inf ();
98 void inf_clear_wait (struct inf *inf);
99 void inf_cleanup (struct inf *inf);
100 void inf_startup (struct inf *inf, int pid);
101 int inf_update_suspends (struct inf *inf);
102 void inf_set_pid (struct inf *inf, pid_t pid);
103 void inf_validate_procs (struct inf *inf);
104 void inf_steal_exc_ports (struct inf *inf);
105 void inf_restore_exc_ports (struct inf *inf);
106 void inf_set_threads_resume_sc (struct inf *inf,
107 struct proc *run_thread,
108 int run_others);
109 int inf_set_threads_resume_sc_for_signal_thread (struct inf *inf);
110 void inf_suspend (struct inf *inf);
111 void inf_resume (struct inf *inf);
112 void inf_set_step_thread (struct inf *inf, struct proc *proc);
113 void inf_detach (struct inf *inf);
114 void inf_attach (struct inf *inf, int pid);
115 void inf_signal (struct inf *inf, enum gdb_signal sig);
116 void inf_continue (struct inf *inf);
117
118 #define inf_debug(_inf, msg, args...) \
119 do { struct inf *__inf = (_inf); \
120 debug ("{inf %d %s}: " msg, __inf->pid, \
121 host_address_to_string (__inf) , ##args); } while (0)
122
123 void proc_abort (struct proc *proc, int force);
124 struct proc *make_proc (struct inf *inf, mach_port_t port, int tid);
125 struct proc *_proc_free (struct proc *proc);
126 int proc_update_sc (struct proc *proc);
127 kern_return_t proc_get_exception_port (struct proc *proc, mach_port_t * port);
128 kern_return_t proc_set_exception_port (struct proc *proc, mach_port_t port);
129 static mach_port_t _proc_get_exc_port (struct proc *proc);
130 void proc_steal_exc_port (struct proc *proc, mach_port_t exc_port);
131 void proc_restore_exc_port (struct proc *proc);
132 int proc_trace (struct proc *proc, int set);
133
134 /* Evaluate RPC_EXPR in a scope with the variables MSGPORT and REFPORT bound
135 to INF's msg port and task port respectively. If it has no msg port,
136 EIEIO is returned. INF must refer to a running process! */
137 #define INF_MSGPORT_RPC(inf, rpc_expr) \
138 HURD_MSGPORT_RPC (proc_getmsgport (proc_server, inf->pid, &msgport), \
139 (refport = inf->task->port, 0), 0, \
140 msgport ? (rpc_expr) : EIEIO)
141
142 /* Like INF_MSGPORT_RPC, but will also resume the signal thread to ensure
143 there's someone around to deal with the RPC (and resuspend things
144 afterwards). This effects INF's threads' resume_sc count. */
145 #define INF_RESUME_MSGPORT_RPC(inf, rpc_expr) \
146 (inf_set_threads_resume_sc_for_signal_thread (inf) \
147 ? ({ kern_return_t __e; \
148 inf_resume (inf); \
149 __e = INF_MSGPORT_RPC (inf, rpc_expr); \
150 inf_suspend (inf); \
151 __e; }) \
152 : EIEIO)
153
154 \f
155 /* The state passed by an exception message. */
156 struct exc_state
157 {
158 int exception; /* The exception code. */
159 int code, subcode;
160 mach_port_t handler; /* The real exception port to handle this. */
161 mach_port_t reply; /* The reply port from the exception call. */
162 };
163
164 /* The results of the last wait an inf did. */
165 struct inf_wait
166 {
167 struct target_waitstatus status; /* The status returned to gdb. */
168 struct exc_state exc; /* The exception that caused us to return. */
169 struct proc *thread; /* The thread in question. */
170 int suppress; /* Something trivial happened. */
171 };
172
173 /* The state of an inferior. */
174 struct inf
175 {
176 /* Fields describing the current inferior. */
177
178 struct proc *task; /* The mach task. */
179 struct proc *threads; /* A linked list of all threads in TASK. */
180
181 /* True if THREADS needn't be validated by querying the task. We
182 assume that we and the task in question are the only ones
183 frobbing the thread list, so as long as we don't let any code
184 run, we don't have to worry about THREADS changing. */
185 int threads_up_to_date;
186
187 pid_t pid; /* The real system PID. */
188
189 struct inf_wait wait; /* What to return from target_wait. */
190
191 /* One thread proc in INF may be in `single-stepping mode'. This
192 is it. */
193 struct proc *step_thread;
194
195 /* The thread we think is the signal thread. */
196 struct proc *signal_thread;
197
198 mach_port_t event_port; /* Where we receive various msgs. */
199
200 /* True if we think at least one thread in the inferior could currently be
201 running. */
202 unsigned int running:1;
203
204 /* True if the process has stopped (in the proc server sense). Note that
205 since a proc server `stop' leaves the signal thread running, the inf can
206 be RUNNING && STOPPED... */
207 unsigned int stopped:1;
208
209 /* True if the inferior has no message port. */
210 unsigned int nomsg:1;
211
212 /* True if the inferior is traced. */
213 unsigned int traced:1;
214
215 /* True if we shouldn't try waiting for the inferior, usually because we
216 can't for some reason. */
217 unsigned int no_wait:1;
218
219 /* When starting a new inferior, we don't try to validate threads until all
220 the proper execs have been done, which this flag states we still
221 expect to happen. */
222 unsigned int pending_execs:1;
223
224 /* Fields describing global state. */
225
226 /* The task suspend count used when gdb has control. This is normally 1 to
227 make things easier for us, but sometimes (like when attaching to vital
228 system servers) it may be desirable to let the task continue to run
229 (pausing individual threads as necessary). */
230 int pause_sc;
231
232 /* The task suspend count left when detaching from a task. */
233 int detach_sc;
234
235 /* The initial values used for the run_sc and pause_sc of newly discovered
236 threads -- see the definition of those fields in struct proc. */
237 int default_thread_run_sc;
238 int default_thread_pause_sc;
239 int default_thread_detach_sc;
240
241 /* True if the process should be traced when started/attached. Newly
242 started processes *must* be traced at first to exec them properly, but
243 if this is false, tracing is turned off as soon it has done so. */
244 int want_signals;
245
246 /* True if exceptions from the inferior process should be trapped. This
247 must be on to use breakpoints. */
248 int want_exceptions;
249 };
250
251
252 int
253 __proc_pid (struct proc *proc)
254 {
255 return proc->inf->pid;
256 }
257
258 \f
259 /* Update PROC's real suspend count to match it's desired one. Returns true
260 if we think PROC is now in a runnable state. */
261 int
262 proc_update_sc (struct proc *proc)
263 {
264 int running;
265 int err = 0;
266 int delta = proc->sc - proc->cur_sc;
267
268 if (delta)
269 proc_debug (proc, "sc: %d --> %d", proc->cur_sc, proc->sc);
270
271 if (proc->sc == 0 && proc->state_changed)
272 /* Since PROC may start running, we must write back any state changes. */
273 {
274 gdb_assert (proc_is_thread (proc));
275 proc_debug (proc, "storing back changed thread state");
276 err = thread_set_state (proc->port, THREAD_STATE_FLAVOR,
277 (thread_state_t) &proc->state, THREAD_STATE_SIZE);
278 if (!err)
279 proc->state_changed = 0;
280 }
281
282 if (delta > 0)
283 {
284 while (delta-- > 0 && !err)
285 {
286 if (proc_is_task (proc))
287 err = task_suspend (proc->port);
288 else
289 err = thread_suspend (proc->port);
290 }
291 }
292 else
293 {
294 while (delta++ < 0 && !err)
295 {
296 if (proc_is_task (proc))
297 err = task_resume (proc->port);
298 else
299 err = thread_resume (proc->port);
300 }
301 }
302 if (!err)
303 proc->cur_sc = proc->sc;
304
305 /* If we got an error, then the task/thread has disappeared. */
306 running = !err && proc->sc == 0;
307
308 proc_debug (proc, "is %s", err ? "dead" : running ? "running" : "suspended");
309 if (err)
310 proc_debug (proc, "err = %s", safe_strerror (err));
311
312 if (running)
313 {
314 proc->aborted = 0;
315 proc->state_valid = proc->state_changed = 0;
316 proc->fetched_regs = 0;
317 }
318
319 return running;
320 }
321
322 \f
323 /* Thread_abort is called on PROC if needed. PROC must be a thread proc.
324 If PROC is deemed `precious', then nothing is done unless FORCE is true.
325 In particular, a thread is precious if it's running (in which case forcing
326 it includes suspending it first), or if it has an exception pending. */
327 void
328 proc_abort (struct proc *proc, int force)
329 {
330 gdb_assert (proc_is_thread (proc));
331
332 if (!proc->aborted)
333 {
334 struct inf *inf = proc->inf;
335 int running = (proc->cur_sc == 0 && inf->task->cur_sc == 0);
336
337 if (running && force)
338 {
339 proc->sc = 1;
340 inf_update_suspends (proc->inf);
341 running = 0;
342 warning (_("Stopped %s."), proc_string (proc));
343 }
344 else if (proc == inf->wait.thread && inf->wait.exc.reply && !force)
345 /* An exception is pending on PROC, which don't mess with. */
346 running = 1;
347
348 if (!running)
349 /* We only abort the thread if it's not actually running. */
350 {
351 thread_abort (proc->port);
352 proc_debug (proc, "aborted");
353 proc->aborted = 1;
354 }
355 else
356 proc_debug (proc, "not aborting");
357 }
358 }
359
360 /* Make sure that the state field in PROC is up to date, and return a pointer
361 to it, or 0 if something is wrong. If WILL_MODIFY is true, makes sure
362 that the thread is stopped and aborted first, and sets the state_changed
363 field in PROC to true. */
364 thread_state_t
365 proc_get_state (struct proc *proc, int will_modify)
366 {
367 int was_aborted = proc->aborted;
368
369 proc_debug (proc, "updating state info%s",
370 will_modify ? " (with intention to modify)" : "");
371
372 proc_abort (proc, will_modify);
373
374 if (!was_aborted && proc->aborted)
375 /* PROC's state may have changed since we last fetched it. */
376 proc->state_valid = 0;
377
378 if (!proc->state_valid)
379 {
380 mach_msg_type_number_t state_size = THREAD_STATE_SIZE;
381 kern_return_t err =
382 thread_get_state (proc->port, THREAD_STATE_FLAVOR,
383 (thread_state_t) &proc->state, &state_size);
384
385 proc_debug (proc, "getting thread state");
386 proc->state_valid = !err;
387 }
388
389 if (proc->state_valid)
390 {
391 if (will_modify)
392 proc->state_changed = 1;
393 return (thread_state_t) &proc->state;
394 }
395 else
396 return 0;
397 }
398
399 \f
400 /* Set PORT to PROC's exception port. */
401 kern_return_t
402 proc_get_exception_port (struct proc * proc, mach_port_t * port)
403 {
404 if (proc_is_task (proc))
405 return task_get_exception_port (proc->port, port);
406 else
407 return thread_get_exception_port (proc->port, port);
408 }
409
410 /* Set PROC's exception port to PORT. */
411 kern_return_t
412 proc_set_exception_port (struct proc * proc, mach_port_t port)
413 {
414 proc_debug (proc, "setting exception port: %lu", port);
415 if (proc_is_task (proc))
416 return task_set_exception_port (proc->port, port);
417 else
418 return thread_set_exception_port (proc->port, port);
419 }
420
421 /* Get PROC's exception port, cleaning up a bit if proc has died. */
422 static mach_port_t
423 _proc_get_exc_port (struct proc *proc)
424 {
425 mach_port_t exc_port;
426 kern_return_t err = proc_get_exception_port (proc, &exc_port);
427
428 if (err)
429 /* PROC must be dead. */
430 {
431 if (proc->exc_port)
432 mach_port_deallocate (mach_task_self (), proc->exc_port);
433 proc->exc_port = MACH_PORT_NULL;
434 if (proc->saved_exc_port)
435 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
436 proc->saved_exc_port = MACH_PORT_NULL;
437 }
438
439 return exc_port;
440 }
441
442 /* Replace PROC's exception port with EXC_PORT, unless it's already
443 been done. Stash away any existing exception port so we can
444 restore it later. */
445 void
446 proc_steal_exc_port (struct proc *proc, mach_port_t exc_port)
447 {
448 mach_port_t cur_exc_port = _proc_get_exc_port (proc);
449
450 if (cur_exc_port)
451 {
452 kern_return_t err = 0;
453
454 proc_debug (proc, "inserting exception port: %lu", exc_port);
455
456 if (cur_exc_port != exc_port)
457 /* Put in our exception port. */
458 err = proc_set_exception_port (proc, exc_port);
459
460 if (err || cur_exc_port == proc->exc_port)
461 /* We previously set the exception port, and it's still set. So we
462 just keep the old saved port which is what the proc set. */
463 {
464 if (cur_exc_port)
465 mach_port_deallocate (mach_task_self (), cur_exc_port);
466 }
467 else
468 /* Keep a copy of PROC's old exception port so it can be restored. */
469 {
470 if (proc->saved_exc_port)
471 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
472 proc->saved_exc_port = cur_exc_port;
473 }
474
475 proc_debug (proc, "saved exception port: %lu", proc->saved_exc_port);
476
477 if (!err)
478 proc->exc_port = exc_port;
479 else
480 warning (_("Error setting exception port for %s: %s"),
481 proc_string (proc), safe_strerror (err));
482 }
483 }
484
485 /* If we previously replaced PROC's exception port, put back what we
486 found there at the time, unless *our* exception port has since been
487 overwritten, in which case who knows what's going on. */
488 void
489 proc_restore_exc_port (struct proc *proc)
490 {
491 mach_port_t cur_exc_port = _proc_get_exc_port (proc);
492
493 if (cur_exc_port)
494 {
495 kern_return_t err = 0;
496
497 proc_debug (proc, "restoring real exception port");
498
499 if (proc->exc_port == cur_exc_port)
500 /* Our's is still there. */
501 err = proc_set_exception_port (proc, proc->saved_exc_port);
502
503 if (proc->saved_exc_port)
504 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
505 proc->saved_exc_port = MACH_PORT_NULL;
506
507 if (!err)
508 proc->exc_port = MACH_PORT_NULL;
509 else
510 warning (_("Error setting exception port for %s: %s"),
511 proc_string (proc), safe_strerror (err));
512 }
513 }
514
515 \f
516 /* Turns hardware tracing in PROC on or off when SET is true or false,
517 respectively. Returns true on success. */
518 int
519 proc_trace (struct proc *proc, int set)
520 {
521 thread_state_t state = proc_get_state (proc, 1);
522
523 if (!state)
524 return 0; /* The thread must be dead. */
525
526 proc_debug (proc, "tracing %s", set ? "on" : "off");
527
528 if (set)
529 {
530 /* XXX We don't get the exception unless the thread has its own
531 exception port???? */
532 if (proc->exc_port == MACH_PORT_NULL)
533 proc_steal_exc_port (proc, proc->inf->event_port);
534 THREAD_STATE_SET_TRACED (state);
535 }
536 else
537 THREAD_STATE_CLEAR_TRACED (state);
538
539 return 1;
540 }
541
542 \f
543 /* A variable from which to assign new TIDs. */
544 static int next_thread_id = 1;
545
546 /* Returns a new proc structure with the given fields. Also adds a
547 notification for PORT becoming dead to be sent to INF's notify port. */
548 struct proc *
549 make_proc (struct inf *inf, mach_port_t port, int tid)
550 {
551 kern_return_t err;
552 mach_port_t prev_port = MACH_PORT_NULL;
553 struct proc *proc = XNEW (struct proc);
554
555 proc->port = port;
556 proc->tid = tid;
557 proc->inf = inf;
558 proc->next = 0;
559 proc->saved_exc_port = MACH_PORT_NULL;
560 proc->exc_port = MACH_PORT_NULL;
561
562 proc->sc = 0;
563 proc->cur_sc = 0;
564
565 /* Note that these are all the values for threads; the task simply uses the
566 corresponding field in INF directly. */
567 proc->run_sc = inf->default_thread_run_sc;
568 proc->pause_sc = inf->default_thread_pause_sc;
569 proc->detach_sc = inf->default_thread_detach_sc;
570 proc->resume_sc = proc->run_sc;
571
572 proc->aborted = 0;
573 proc->dead = 0;
574 proc->state_valid = 0;
575 proc->state_changed = 0;
576
577 proc_debug (proc, "is new");
578
579 /* Get notified when things die. */
580 err =
581 mach_port_request_notification (mach_task_self (), port,
582 MACH_NOTIFY_DEAD_NAME, 1,
583 inf->event_port,
584 MACH_MSG_TYPE_MAKE_SEND_ONCE,
585 &prev_port);
586 if (err)
587 warning (_("Couldn't request notification for port %lu: %s"),
588 port, safe_strerror (err));
589 else
590 {
591 proc_debug (proc, "notifications to: %lu", inf->event_port);
592 if (prev_port != MACH_PORT_NULL)
593 mach_port_deallocate (mach_task_self (), prev_port);
594 }
595
596 if (inf->want_exceptions)
597 {
598 if (proc_is_task (proc))
599 /* Make the task exception port point to us. */
600 proc_steal_exc_port (proc, inf->event_port);
601 else
602 /* Just clear thread exception ports -- they default to the
603 task one. */
604 proc_steal_exc_port (proc, MACH_PORT_NULL);
605 }
606
607 return proc;
608 }
609
610 /* Frees PROC and any resources it uses, and returns the value of PROC's
611 next field. */
612 struct proc *
613 _proc_free (struct proc *proc)
614 {
615 struct inf *inf = proc->inf;
616 struct proc *next = proc->next;
617
618 proc_debug (proc, "freeing...");
619
620 if (proc == inf->step_thread)
621 /* Turn off single stepping. */
622 inf_set_step_thread (inf, 0);
623 if (proc == inf->wait.thread)
624 inf_clear_wait (inf);
625 if (proc == inf->signal_thread)
626 inf->signal_thread = 0;
627
628 if (proc->port != MACH_PORT_NULL)
629 {
630 if (proc->exc_port != MACH_PORT_NULL)
631 /* Restore the original exception port. */
632 proc_restore_exc_port (proc);
633 if (proc->cur_sc != 0)
634 /* Resume the thread/task. */
635 {
636 proc->sc = 0;
637 proc_update_sc (proc);
638 }
639 mach_port_deallocate (mach_task_self (), proc->port);
640 }
641
642 xfree (proc);
643 return next;
644 }
645
646 \f
647 static struct inf *
648 make_inf (void)
649 {
650 struct inf *inf = XNEW (struct inf);
651
652 inf->task = 0;
653 inf->threads = 0;
654 inf->threads_up_to_date = 0;
655 inf->pid = 0;
656 inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS;
657 inf->wait.thread = 0;
658 inf->wait.exc.handler = MACH_PORT_NULL;
659 inf->wait.exc.reply = MACH_PORT_NULL;
660 inf->step_thread = 0;
661 inf->signal_thread = 0;
662 inf->event_port = MACH_PORT_NULL;
663 inf->running = 0;
664 inf->stopped = 0;
665 inf->nomsg = 1;
666 inf->traced = 0;
667 inf->no_wait = 0;
668 inf->pending_execs = 0;
669 inf->pause_sc = 1;
670 inf->detach_sc = 0;
671 inf->default_thread_run_sc = 0;
672 inf->default_thread_pause_sc = 0;
673 inf->default_thread_detach_sc = 0;
674 inf->want_signals = 1; /* By default */
675 inf->want_exceptions = 1; /* By default */
676
677 return inf;
678 }
679
680 /* Clear INF's target wait status. */
681 void
682 inf_clear_wait (struct inf *inf)
683 {
684 inf_debug (inf, "clearing wait");
685 inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS;
686 inf->wait.thread = 0;
687 inf->wait.suppress = 0;
688 if (inf->wait.exc.handler != MACH_PORT_NULL)
689 {
690 mach_port_deallocate (mach_task_self (), inf->wait.exc.handler);
691 inf->wait.exc.handler = MACH_PORT_NULL;
692 }
693 if (inf->wait.exc.reply != MACH_PORT_NULL)
694 {
695 mach_port_deallocate (mach_task_self (), inf->wait.exc.reply);
696 inf->wait.exc.reply = MACH_PORT_NULL;
697 }
698 }
699
700 \f
701 void
702 inf_cleanup (struct inf *inf)
703 {
704 inf_debug (inf, "cleanup");
705
706 inf_clear_wait (inf);
707
708 inf_set_pid (inf, -1);
709 inf->pid = 0;
710 inf->running = 0;
711 inf->stopped = 0;
712 inf->nomsg = 1;
713 inf->traced = 0;
714 inf->no_wait = 0;
715 inf->pending_execs = 0;
716
717 if (inf->event_port)
718 {
719 mach_port_destroy (mach_task_self (), inf->event_port);
720 inf->event_port = MACH_PORT_NULL;
721 }
722 }
723
724 void
725 inf_startup (struct inf *inf, int pid)
726 {
727 kern_return_t err;
728
729 inf_debug (inf, "startup: pid = %d", pid);
730
731 inf_cleanup (inf);
732
733 /* Make the port on which we receive all events. */
734 err = mach_port_allocate (mach_task_self (),
735 MACH_PORT_RIGHT_RECEIVE, &inf->event_port);
736 if (err)
737 error (_("Error allocating event port: %s"), safe_strerror (err));
738
739 /* Make a send right for it, so we can easily copy it for other people. */
740 mach_port_insert_right (mach_task_self (), inf->event_port,
741 inf->event_port, MACH_MSG_TYPE_MAKE_SEND);
742 inf_set_pid (inf, pid);
743 }
744
745 \f
746 /* Close current process, if any, and attach INF to process PORT. */
747 void
748 inf_set_pid (struct inf *inf, pid_t pid)
749 {
750 task_t task_port;
751 struct proc *task = inf->task;
752
753 inf_debug (inf, "setting pid: %d", pid);
754
755 if (pid < 0)
756 task_port = MACH_PORT_NULL;
757 else
758 {
759 kern_return_t err = proc_pid2task (proc_server, pid, &task_port);
760
761 if (err)
762 error (_("Error getting task for pid %d: %s"),
763 pid, safe_strerror (err));
764 }
765
766 inf_debug (inf, "setting task: %lu", task_port);
767
768 if (inf->pause_sc)
769 task_suspend (task_port);
770
771 if (task && task->port != task_port)
772 {
773 inf->task = 0;
774 inf_validate_procs (inf); /* Trash all the threads. */
775 _proc_free (task); /* And the task. */
776 }
777
778 if (task_port != MACH_PORT_NULL)
779 {
780 inf->task = make_proc (inf, task_port, PROC_TID_TASK);
781 inf->threads_up_to_date = 0;
782 }
783
784 if (inf->task)
785 {
786 inf->pid = pid;
787 if (inf->pause_sc)
788 /* Reflect task_suspend above. */
789 inf->task->sc = inf->task->cur_sc = 1;
790 }
791 else
792 inf->pid = -1;
793 }
794
795 \f
796 /* Validates INF's stopped, nomsg and traced field from the actual
797 proc server state. Note that the traced field is only updated from
798 the proc server state if we do not have a message port. If we do
799 have a message port we'd better look at the tracemask itself. */
800 static void
801 inf_validate_procinfo (struct inf *inf)
802 {
803 char *noise;
804 mach_msg_type_number_t noise_len = 0;
805 struct procinfo *pi;
806 mach_msg_type_number_t pi_len = 0;
807 int info_flags = 0;
808 kern_return_t err =
809 proc_getprocinfo (proc_server, inf->pid, &info_flags,
810 (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
811
812 if (!err)
813 {
814 inf->stopped = !!(pi->state & PI_STOPPED);
815 inf->nomsg = !!(pi->state & PI_NOMSG);
816 if (inf->nomsg)
817 inf->traced = !!(pi->state & PI_TRACED);
818 vm_deallocate (mach_task_self (), (vm_address_t) pi,
819 pi_len * sizeof (*(procinfo_t) 0));
820 if (noise_len > 0)
821 vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len);
822 }
823 }
824
825 /* Validates INF's task suspend count. If it's higher than we expect,
826 verify with the user before `stealing' the extra count. */
827 static void
828 inf_validate_task_sc (struct inf *inf)
829 {
830 char *noise;
831 mach_msg_type_number_t noise_len = 0;
832 struct procinfo *pi;
833 mach_msg_type_number_t pi_len = 0;
834 int info_flags = PI_FETCH_TASKINFO;
835 int suspend_count = -1;
836 kern_return_t err;
837
838 retry:
839 err = proc_getprocinfo (proc_server, inf->pid, &info_flags,
840 (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
841 if (err)
842 {
843 inf->task->dead = 1; /* oh well */
844 return;
845 }
846
847 if (inf->task->cur_sc < pi->taskinfo.suspend_count && suspend_count == -1)
848 {
849 /* The proc server might have suspended the task while stopping
850 it. This happens when the task is handling a traced signal.
851 Refetch the suspend count. The proc server should be
852 finished stopping the task by now. */
853 suspend_count = pi->taskinfo.suspend_count;
854 goto retry;
855 }
856
857 suspend_count = pi->taskinfo.suspend_count;
858
859 vm_deallocate (mach_task_self (), (vm_address_t) pi,
860 pi_len * sizeof (*(procinfo_t) 0));
861 if (noise_len > 0)
862 vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len);
863
864 if (inf->task->cur_sc < suspend_count)
865 {
866 if (!query (_("Pid %d has an additional task suspend count of %d;"
867 " clear it? "), inf->pid,
868 suspend_count - inf->task->cur_sc))
869 error (_("Additional task suspend count left untouched."));
870
871 inf->task->cur_sc = suspend_count;
872 }
873 }
874
875 /* Turns tracing for INF on or off, depending on ON, unless it already
876 is. If INF is running, the resume_sc count of INF's threads will
877 be modified, and the signal thread will briefly be run to change
878 the trace state. */
879 static void
880 inf_set_traced (struct inf *inf, int on)
881 {
882 if (on == inf->traced)
883 return;
884
885 if (inf->task && !inf->task->dead)
886 /* Make it take effect immediately. */
887 {
888 sigset_t mask = on ? ~(sigset_t) 0 : 0;
889 kern_return_t err =
890 INF_RESUME_MSGPORT_RPC (inf, msg_set_init_int (msgport, refport,
891 INIT_TRACEMASK, mask));
892
893 if (err == EIEIO)
894 {
895 if (on)
896 warning (_("Can't modify tracing state for pid %d: %s"),
897 inf->pid, "No signal thread");
898 inf->traced = on;
899 }
900 else if (err)
901 warning (_("Can't modify tracing state for pid %d: %s"),
902 inf->pid, safe_strerror (err));
903 else
904 inf->traced = on;
905 }
906 else
907 inf->traced = on;
908 }
909
910 \f
911 /* Makes all the real suspend count deltas of all the procs in INF
912 match the desired values. Careful to always do thread/task suspend
913 counts in the safe order. Returns true if at least one thread is
914 thought to be running. */
915 int
916 inf_update_suspends (struct inf *inf)
917 {
918 struct proc *task = inf->task;
919
920 /* We don't have to update INF->threads even though we're iterating over it
921 because we'll change a thread only if it already has an existing proc
922 entry. */
923 inf_debug (inf, "updating suspend counts");
924
925 if (task)
926 {
927 struct proc *thread;
928 int task_running = (task->sc == 0), thread_running = 0;
929
930 if (task->sc > task->cur_sc)
931 /* The task is becoming _more_ suspended; do before any threads. */
932 task_running = proc_update_sc (task);
933
934 if (inf->pending_execs)
935 /* When we're waiting for an exec, things may be happening behind our
936 back, so be conservative. */
937 thread_running = 1;
938
939 /* Do all the thread suspend counts. */
940 for (thread = inf->threads; thread; thread = thread->next)
941 thread_running |= proc_update_sc (thread);
942
943 if (task->sc != task->cur_sc)
944 /* We didn't do the task first, because we wanted to wait for the
945 threads; do it now. */
946 task_running = proc_update_sc (task);
947
948 inf_debug (inf, "%srunning...",
949 (thread_running && task_running) ? "" : "not ");
950
951 inf->running = thread_running && task_running;
952
953 /* Once any thread has executed some code, we can't depend on the
954 threads list any more. */
955 if (inf->running)
956 inf->threads_up_to_date = 0;
957
958 return inf->running;
959 }
960
961 return 0;
962 }
963
964 \f
965 /* Converts a GDB pid to a struct proc. */
966 struct proc *
967 inf_tid_to_thread (struct inf *inf, int tid)
968 {
969 struct proc *thread = inf->threads;
970
971 while (thread)
972 if (thread->tid == tid)
973 return thread;
974 else
975 thread = thread->next;
976 return 0;
977 }
978
979 /* Converts a thread port to a struct proc. */
980 static struct proc *
981 inf_port_to_thread (struct inf *inf, mach_port_t port)
982 {
983 struct proc *thread = inf->threads;
984
985 while (thread)
986 if (thread->port == port)
987 return thread;
988 else
989 thread = thread->next;
990 return 0;
991 }
992
993 /* See gnu-nat.h. */
994
995 void
996 inf_threads (struct inf *inf, inf_threads_ftype *f, void *arg)
997 {
998 struct proc *thread;
999
1000 for (thread = inf->threads; thread; thread = thread->next)
1001 f (thread, arg);
1002 }
1003
1004 \f
1005 /* Make INF's list of threads be consistent with reality of TASK. */
1006 void
1007 inf_validate_procs (struct inf *inf)
1008 {
1009 thread_array_t threads;
1010 mach_msg_type_number_t num_threads, i;
1011 struct proc *task = inf->task;
1012
1013 /* If no threads are currently running, this function will guarantee that
1014 things are up to date. The exception is if there are zero threads --
1015 then it is almost certainly in an odd state, and probably some outside
1016 agent will create threads. */
1017 inf->threads_up_to_date = inf->threads ? !inf->running : 0;
1018
1019 if (task)
1020 {
1021 kern_return_t err = task_threads (task->port, &threads, &num_threads);
1022
1023 inf_debug (inf, "fetching threads");
1024 if (err)
1025 /* TASK must be dead. */
1026 {
1027 task->dead = 1;
1028 task = 0;
1029 }
1030 }
1031
1032 if (!task)
1033 {
1034 num_threads = 0;
1035 inf_debug (inf, "no task");
1036 }
1037
1038 {
1039 /* Make things normally linear. */
1040 mach_msg_type_number_t search_start = 0;
1041 /* Which thread in PROCS corresponds to each task thread, & the task. */
1042 struct proc *matched[num_threads + 1];
1043 /* The last thread in INF->threads, so we can add to the end. */
1044 struct proc *last = 0;
1045 /* The current thread we're considering. */
1046 struct proc *thread = inf->threads;
1047
1048 memset (matched, 0, sizeof (matched));
1049
1050 while (thread)
1051 {
1052 mach_msg_type_number_t left;
1053
1054 for (i = search_start, left = num_threads; left; i++, left--)
1055 {
1056 if (i >= num_threads)
1057 i -= num_threads; /* I wrapped around. */
1058 if (thread->port == threads[i])
1059 /* We already know about this thread. */
1060 {
1061 matched[i] = thread;
1062 last = thread;
1063 thread = thread->next;
1064 search_start++;
1065 break;
1066 }
1067 }
1068
1069 if (!left)
1070 {
1071 proc_debug (thread, "died!");
1072 thread->port = MACH_PORT_NULL;
1073 thread = _proc_free (thread); /* THREAD is dead. */
1074 if (last)
1075 last->next = thread;
1076 else
1077 inf->threads = thread;
1078 }
1079 }
1080
1081 for (i = 0; i < num_threads; i++)
1082 {
1083 if (matched[i])
1084 /* Throw away the duplicate send right. */
1085 mach_port_deallocate (mach_task_self (), threads[i]);
1086 else
1087 /* THREADS[I] is a thread we don't know about yet! */
1088 {
1089 ptid_t ptid;
1090
1091 thread = make_proc (inf, threads[i], next_thread_id++);
1092 if (last)
1093 last->next = thread;
1094 else
1095 inf->threads = thread;
1096 last = thread;
1097 proc_debug (thread, "new thread: %lu", threads[i]);
1098
1099 ptid = ptid_t (inf->pid, thread->tid, 0);
1100
1101 /* Tell GDB's generic thread code. */
1102
1103 if (ptid_equal (inferior_ptid, ptid_t (inf->pid)))
1104 /* This is the first time we're hearing about thread
1105 ids, after a fork-child. */
1106 thread_change_ptid (inferior_ptid, ptid);
1107 else if (inf->pending_execs != 0)
1108 /* This is a shell thread. */
1109 add_thread_silent (ptid);
1110 else
1111 add_thread (ptid);
1112 }
1113 }
1114
1115 vm_deallocate (mach_task_self (),
1116 (vm_address_t) threads, (num_threads * sizeof (thread_t)));
1117 }
1118 }
1119
1120 \f
1121 /* Makes sure that INF's thread list is synced with the actual process. */
1122 int
1123 inf_update_procs (struct inf *inf)
1124 {
1125 if (!inf->task)
1126 return 0;
1127 if (!inf->threads_up_to_date)
1128 inf_validate_procs (inf);
1129 return !!inf->task;
1130 }
1131
1132 /* Sets the resume_sc of each thread in inf. That of RUN_THREAD is set to 0,
1133 and others are set to their run_sc if RUN_OTHERS is true, and otherwise
1134 their pause_sc. */
1135 void
1136 inf_set_threads_resume_sc (struct inf *inf,
1137 struct proc *run_thread, int run_others)
1138 {
1139 struct proc *thread;
1140
1141 inf_update_procs (inf);
1142 for (thread = inf->threads; thread; thread = thread->next)
1143 if (thread == run_thread)
1144 thread->resume_sc = 0;
1145 else if (run_others)
1146 thread->resume_sc = thread->run_sc;
1147 else
1148 thread->resume_sc = thread->pause_sc;
1149 }
1150
1151 \f
1152 /* Cause INF to continue execution immediately; individual threads may still
1153 be suspended (but their suspend counts will be updated). */
1154 void
1155 inf_resume (struct inf *inf)
1156 {
1157 struct proc *thread;
1158
1159 inf_update_procs (inf);
1160
1161 for (thread = inf->threads; thread; thread = thread->next)
1162 thread->sc = thread->resume_sc;
1163
1164 if (inf->task)
1165 {
1166 if (!inf->pending_execs)
1167 /* Try to make sure our task count is correct -- in the case where
1168 we're waiting for an exec though, things are too volatile, so just
1169 assume things will be reasonable (which they usually will be). */
1170 inf_validate_task_sc (inf);
1171 inf->task->sc = 0;
1172 }
1173
1174 inf_update_suspends (inf);
1175 }
1176
1177 /* Cause INF to stop execution immediately; individual threads may still
1178 be running. */
1179 void
1180 inf_suspend (struct inf *inf)
1181 {
1182 struct proc *thread;
1183
1184 inf_update_procs (inf);
1185
1186 for (thread = inf->threads; thread; thread = thread->next)
1187 thread->sc = thread->pause_sc;
1188
1189 if (inf->task)
1190 inf->task->sc = inf->pause_sc;
1191
1192 inf_update_suspends (inf);
1193 }
1194
1195 \f
1196 /* INF has one thread PROC that is in single-stepping mode. This
1197 function changes it to be PROC, changing any old step_thread to be
1198 a normal one. A PROC of 0 clears any existing value. */
1199 void
1200 inf_set_step_thread (struct inf *inf, struct proc *thread)
1201 {
1202 gdb_assert (!thread || proc_is_thread (thread));
1203
1204 if (thread)
1205 inf_debug (inf, "setting step thread: %d/%d", inf->pid, thread->tid);
1206 else
1207 inf_debug (inf, "clearing step thread");
1208
1209 if (inf->step_thread != thread)
1210 {
1211 if (inf->step_thread && inf->step_thread->port != MACH_PORT_NULL)
1212 if (!proc_trace (inf->step_thread, 0))
1213 return;
1214 if (thread && proc_trace (thread, 1))
1215 inf->step_thread = thread;
1216 else
1217 inf->step_thread = 0;
1218 }
1219 }
1220
1221 \f
1222 /* Set up the thread resume_sc's so that only the signal thread is running
1223 (plus whatever other thread are set to always run). Returns true if we
1224 did so, or false if we can't find a signal thread. */
1225 int
1226 inf_set_threads_resume_sc_for_signal_thread (struct inf *inf)
1227 {
1228 if (inf->signal_thread)
1229 {
1230 inf_set_threads_resume_sc (inf, inf->signal_thread, 0);
1231 return 1;
1232 }
1233 else
1234 return 0;
1235 }
1236
1237 static void
1238 inf_update_signal_thread (struct inf *inf)
1239 {
1240 /* XXX for now we assume that if there's a msgport, the 2nd thread is
1241 the signal thread. */
1242 inf->signal_thread = inf->threads ? inf->threads->next : 0;
1243 }
1244
1245 \f
1246 /* Detachs from INF's inferior task, letting it run once again... */
1247 void
1248 inf_detach (struct inf *inf)
1249 {
1250 struct proc *task = inf->task;
1251
1252 inf_debug (inf, "detaching...");
1253
1254 inf_clear_wait (inf);
1255 inf_set_step_thread (inf, 0);
1256
1257 if (task)
1258 {
1259 struct proc *thread;
1260
1261 inf_validate_procinfo (inf);
1262
1263 inf_set_traced (inf, 0);
1264 if (inf->stopped)
1265 {
1266 if (inf->nomsg)
1267 inf_continue (inf);
1268 else
1269 inf_signal (inf, GDB_SIGNAL_0);
1270 }
1271
1272 proc_restore_exc_port (task);
1273 task->sc = inf->detach_sc;
1274
1275 for (thread = inf->threads; thread; thread = thread->next)
1276 {
1277 proc_restore_exc_port (thread);
1278 thread->sc = thread->detach_sc;
1279 }
1280
1281 inf_update_suspends (inf);
1282 }
1283
1284 inf_cleanup (inf);
1285 }
1286
1287 /* Attaches INF to the process with process id PID, returning it in a
1288 suspended state suitable for debugging. */
1289 void
1290 inf_attach (struct inf *inf, int pid)
1291 {
1292 inf_debug (inf, "attaching: %d", pid);
1293
1294 if (inf->pid)
1295 inf_detach (inf);
1296
1297 inf_startup (inf, pid);
1298 }
1299
1300 \f
1301 /* Makes sure that we've got our exception ports entrenched in the process. */
1302 void
1303 inf_steal_exc_ports (struct inf *inf)
1304 {
1305 struct proc *thread;
1306
1307 inf_debug (inf, "stealing exception ports");
1308
1309 inf_set_step_thread (inf, 0); /* The step thread is special. */
1310
1311 proc_steal_exc_port (inf->task, inf->event_port);
1312 for (thread = inf->threads; thread; thread = thread->next)
1313 proc_steal_exc_port (thread, MACH_PORT_NULL);
1314 }
1315
1316 /* Makes sure the process has its own exception ports. */
1317 void
1318 inf_restore_exc_ports (struct inf *inf)
1319 {
1320 struct proc *thread;
1321
1322 inf_debug (inf, "restoring exception ports");
1323
1324 inf_set_step_thread (inf, 0); /* The step thread is special. */
1325
1326 proc_restore_exc_port (inf->task);
1327 for (thread = inf->threads; thread; thread = thread->next)
1328 proc_restore_exc_port (thread);
1329 }
1330
1331 \f
1332 /* Deliver signal SIG to INF. If INF is stopped, delivering a signal, even
1333 signal 0, will continue it. INF is assumed to be in a paused state, and
1334 the resume_sc's of INF's threads may be affected. */
1335 void
1336 inf_signal (struct inf *inf, enum gdb_signal sig)
1337 {
1338 kern_return_t err = 0;
1339 int host_sig = gdb_signal_to_host (sig);
1340
1341 #define NAME gdb_signal_to_name (sig)
1342
1343 if (host_sig >= _NSIG)
1344 /* A mach exception. Exceptions are encoded in the signal space by
1345 putting them after _NSIG; this assumes they're positive (and not
1346 extremely large)! */
1347 {
1348 struct inf_wait *w = &inf->wait;
1349
1350 if (w->status.kind == TARGET_WAITKIND_STOPPED
1351 && w->status.value.sig == sig
1352 && w->thread && !w->thread->aborted)
1353 /* We're passing through the last exception we received. This is
1354 kind of bogus, because exceptions are per-thread whereas gdb
1355 treats signals as per-process. We just forward the exception to
1356 the correct handler, even it's not for the same thread as TID --
1357 i.e., we pretend it's global. */
1358 {
1359 struct exc_state *e = &w->exc;
1360
1361 inf_debug (inf, "passing through exception:"
1362 " task = %lu, thread = %lu, exc = %d"
1363 ", code = %d, subcode = %d",
1364 w->thread->port, inf->task->port,
1365 e->exception, e->code, e->subcode);
1366 err =
1367 exception_raise_request (e->handler,
1368 e->reply, MACH_MSG_TYPE_MOVE_SEND_ONCE,
1369 w->thread->port, inf->task->port,
1370 e->exception, e->code, e->subcode);
1371 }
1372 else
1373 error (_("Can't forward spontaneous exception (%s)."), NAME);
1374 }
1375 else
1376 /* A Unix signal. */
1377 if (inf->stopped)
1378 /* The process is stopped and expecting a signal. Just send off a
1379 request and let it get handled when we resume everything. */
1380 {
1381 inf_debug (inf, "sending %s to stopped process", NAME);
1382 err =
1383 INF_MSGPORT_RPC (inf,
1384 msg_sig_post_untraced_request (msgport,
1385 inf->event_port,
1386 MACH_MSG_TYPE_MAKE_SEND_ONCE,
1387 host_sig, 0,
1388 refport));
1389 if (!err)
1390 /* Posting an untraced signal automatically continues it.
1391 We clear this here rather than when we get the reply
1392 because we'd rather assume it's not stopped when it
1393 actually is, than the reverse. */
1394 inf->stopped = 0;
1395 }
1396 else
1397 /* It's not expecting it. We have to let just the signal thread
1398 run, and wait for it to get into a reasonable state before we
1399 can continue the rest of the process. When we finally resume the
1400 process the signal we request will be the very first thing that
1401 happens. */
1402 {
1403 inf_debug (inf, "sending %s to unstopped process"
1404 " (so resuming signal thread)", NAME);
1405 err =
1406 INF_RESUME_MSGPORT_RPC (inf,
1407 msg_sig_post_untraced (msgport, host_sig,
1408 0, refport));
1409 }
1410
1411 if (err == EIEIO)
1412 /* Can't do too much... */
1413 warning (_("Can't deliver signal %s: No signal thread."), NAME);
1414 else if (err)
1415 warning (_("Delivering signal %s: %s"), NAME, safe_strerror (err));
1416
1417 #undef NAME
1418 }
1419
1420 \f
1421 /* Continue INF without delivering a signal. This is meant to be used
1422 when INF does not have a message port. */
1423 void
1424 inf_continue (struct inf *inf)
1425 {
1426 process_t proc;
1427 kern_return_t err = proc_pid2proc (proc_server, inf->pid, &proc);
1428
1429 if (!err)
1430 {
1431 inf_debug (inf, "continuing process");
1432
1433 err = proc_mark_cont (proc);
1434 if (!err)
1435 {
1436 struct proc *thread;
1437
1438 for (thread = inf->threads; thread; thread = thread->next)
1439 thread_resume (thread->port);
1440
1441 inf->stopped = 0;
1442 }
1443 }
1444
1445 if (err)
1446 warning (_("Can't continue process: %s"), safe_strerror (err));
1447 }
1448
1449 \f
1450 /* The inferior used for all gdb target ops. */
1451 struct inf *gnu_current_inf = 0;
1452
1453 /* The inferior being waited for by gnu_wait. Since GDB is decidely not
1454 multi-threaded, we don't bother to lock this. */
1455 struct inf *waiting_inf;
1456
1457 /* MIG stubs are not yet ready for C++ compilation. */
1458 extern "C" int exc_server (mach_msg_header_t *, mach_msg_header_t *);
1459 extern "C" int msg_reply_server (mach_msg_header_t *, mach_msg_header_t *);
1460 extern "C" int notify_server (mach_msg_header_t *, mach_msg_header_t *);
1461 extern "C" int process_reply_server (mach_msg_header_t *, mach_msg_header_t *);
1462
1463 /* Wait for something to happen in the inferior, returning what in STATUS. */
1464
1465 ptid_t
1466 gnu_nat_target::wait (ptid_t ptid, struct target_waitstatus *status,
1467 int options)
1468 {
1469 struct msg
1470 {
1471 mach_msg_header_t hdr;
1472 mach_msg_type_t type;
1473 int data[8000];
1474 } msg;
1475 kern_return_t err;
1476 struct proc *thread;
1477 struct inf *inf = gnu_current_inf;
1478
1479 gdb_assert (inf->task);
1480
1481 if (!inf->threads && !inf->pending_execs)
1482 /* No threads! Assume that maybe some outside agency is frobbing our
1483 task, and really look for new threads. If we can't find any, just tell
1484 the user to try again later. */
1485 {
1486 inf_validate_procs (inf);
1487 if (!inf->threads && !inf->task->dead)
1488 error (_("There are no threads; try again later."));
1489 }
1490
1491 waiting_inf = inf;
1492
1493 inf_debug (inf, "waiting for: %s", target_pid_to_str (ptid));
1494
1495 rewait:
1496 if (proc_wait_pid != inf->pid && !inf->no_wait)
1497 /* Always get information on events from the proc server. */
1498 {
1499 inf_debug (inf, "requesting wait on pid %d", inf->pid);
1500
1501 if (proc_wait_pid)
1502 /* The proc server is single-threaded, and only allows a single
1503 outstanding wait request, so we have to cancel the previous one. */
1504 {
1505 inf_debug (inf, "cancelling previous wait on pid %d", proc_wait_pid);
1506 interrupt_operation (proc_server, 0);
1507 }
1508
1509 err =
1510 proc_wait_request (proc_server, inf->event_port, inf->pid, WUNTRACED);
1511 if (err)
1512 warning (_("wait request failed: %s"), safe_strerror (err));
1513 else
1514 {
1515 inf_debug (inf, "waits pending: %d", proc_waits_pending);
1516 proc_wait_pid = inf->pid;
1517 /* Even if proc_waits_pending was > 0 before, we still won't
1518 get any other replies, because it was either from a
1519 different INF, or a different process attached to INF --
1520 and the event port, which is the wait reply port, changes
1521 when you switch processes. */
1522 proc_waits_pending = 1;
1523 }
1524 }
1525
1526 inf_clear_wait (inf);
1527
1528 /* What can happen? (1) Dead name notification; (2) Exceptions arrive;
1529 (3) wait reply from the proc server. */
1530
1531 inf_debug (inf, "waiting for an event...");
1532 err = mach_msg (&msg.hdr, MACH_RCV_MSG | MACH_RCV_INTERRUPT,
1533 0, sizeof (struct msg), inf->event_port,
1534 MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
1535
1536 /* Re-suspend the task. */
1537 inf_suspend (inf);
1538
1539 if (!inf->task && inf->pending_execs)
1540 /* When doing an exec, it's possible that the old task wasn't reused
1541 (e.g., setuid execs). So if the task seems to have disappeared,
1542 attempt to refetch it, as the pid should still be the same. */
1543 inf_set_pid (inf, inf->pid);
1544
1545 if (err == EMACH_RCV_INTERRUPTED)
1546 inf_debug (inf, "interrupted");
1547 else if (err)
1548 error (_("Couldn't wait for an event: %s"), safe_strerror (err));
1549 else
1550 {
1551 struct
1552 {
1553 mach_msg_header_t hdr;
1554 mach_msg_type_t err_type;
1555 kern_return_t err;
1556 char noise[200];
1557 }
1558 reply;
1559
1560 inf_debug (inf, "event: msgid = %d", msg.hdr.msgh_id);
1561
1562 /* Handle what we got. */
1563 if (!notify_server (&msg.hdr, &reply.hdr)
1564 && !exc_server (&msg.hdr, &reply.hdr)
1565 && !process_reply_server (&msg.hdr, &reply.hdr)
1566 && !msg_reply_server (&msg.hdr, &reply.hdr))
1567 /* Whatever it is, it's something strange. */
1568 error (_("Got a strange event, msg id = %d."), msg.hdr.msgh_id);
1569
1570 if (reply.err)
1571 error (_("Handling event, msgid = %d: %s"),
1572 msg.hdr.msgh_id, safe_strerror (reply.err));
1573 }
1574
1575 if (inf->pending_execs)
1576 /* We're waiting for the inferior to finish execing. */
1577 {
1578 struct inf_wait *w = &inf->wait;
1579 enum target_waitkind kind = w->status.kind;
1580
1581 if (kind == TARGET_WAITKIND_SPURIOUS)
1582 /* Since gdb is actually counting the number of times the inferior
1583 stops, expecting one stop per exec, we only return major events
1584 while execing. */
1585 {
1586 w->suppress = 1;
1587 inf_debug (inf, "pending_execs, ignoring minor event");
1588 }
1589 else if (kind == TARGET_WAITKIND_STOPPED
1590 && w->status.value.sig == GDB_SIGNAL_TRAP)
1591 /* Ah hah! A SIGTRAP from the inferior while starting up probably
1592 means we've succesfully completed an exec! */
1593 {
1594 inf_debug (inf, "one pending exec completed");
1595 }
1596 else if (kind == TARGET_WAITKIND_STOPPED)
1597 /* It's possible that this signal is because of a crashed process
1598 being handled by the hurd crash server; in this case, the process
1599 will have an extra task suspend, which we need to know about.
1600 Since the code in inf_resume that normally checks for this is
1601 disabled while INF->pending_execs, we do the check here instead. */
1602 inf_validate_task_sc (inf);
1603 }
1604
1605 if (inf->wait.suppress)
1606 /* Some totally spurious event happened that we don't consider
1607 worth returning to gdb. Just keep waiting. */
1608 {
1609 inf_debug (inf, "suppressing return, rewaiting...");
1610 inf_resume (inf);
1611 goto rewait;
1612 }
1613
1614 /* Pass back out our results. */
1615 memcpy (status, &inf->wait.status, sizeof (*status));
1616
1617 thread = inf->wait.thread;
1618 if (thread)
1619 ptid = ptid_t (inf->pid, thread->tid, 0);
1620 else if (ptid_equal (ptid, minus_one_ptid))
1621 thread = inf_tid_to_thread (inf, -1);
1622 else
1623 thread = inf_tid_to_thread (inf, ptid_get_lwp (ptid));
1624
1625 if (!thread || thread->port == MACH_PORT_NULL)
1626 {
1627 /* TID is dead; try and find a new thread. */
1628 if (inf_update_procs (inf) && inf->threads)
1629 ptid = ptid_t (inf->pid, inf->threads->tid, 0); /* The first
1630 available
1631 thread. */
1632 else
1633 ptid = inferior_ptid; /* let wait_for_inferior handle exit case */
1634 }
1635
1636 if (thread
1637 && !ptid_equal (ptid, minus_one_ptid)
1638 && status->kind != TARGET_WAITKIND_SPURIOUS
1639 && inf->pause_sc == 0 && thread->pause_sc == 0)
1640 /* If something actually happened to THREAD, make sure we
1641 suspend it. */
1642 {
1643 thread->sc = 1;
1644 inf_update_suspends (inf);
1645 }
1646
1647 inf_debug (inf, "returning ptid = %s, status = %s (%d)",
1648 target_pid_to_str (ptid),
1649 status->kind == TARGET_WAITKIND_EXITED ? "EXITED"
1650 : status->kind == TARGET_WAITKIND_STOPPED ? "STOPPED"
1651 : status->kind == TARGET_WAITKIND_SIGNALLED ? "SIGNALLED"
1652 : status->kind == TARGET_WAITKIND_LOADED ? "LOADED"
1653 : status->kind == TARGET_WAITKIND_SPURIOUS ? "SPURIOUS"
1654 : "?",
1655 status->value.integer);
1656
1657 return ptid;
1658 }
1659
1660 \f
1661 /* The rpc handler called by exc_server. */
1662 kern_return_t
1663 S_exception_raise_request (mach_port_t port, mach_port_t reply_port,
1664 thread_t thread_port, task_t task_port,
1665 int exception, int code, int subcode)
1666 {
1667 struct inf *inf = waiting_inf;
1668 struct proc *thread = inf_port_to_thread (inf, thread_port);
1669
1670 inf_debug (waiting_inf,
1671 "thread = %lu, task = %lu, exc = %d, code = %d, subcode = %d",
1672 thread_port, task_port, exception, code, subcode);
1673
1674 if (!thread)
1675 /* We don't know about thread? */
1676 {
1677 inf_update_procs (inf);
1678 thread = inf_port_to_thread (inf, thread_port);
1679 if (!thread)
1680 /* Give up, the generating thread is gone. */
1681 return 0;
1682 }
1683
1684 mach_port_deallocate (mach_task_self (), thread_port);
1685 mach_port_deallocate (mach_task_self (), task_port);
1686
1687 if (!thread->aborted)
1688 /* THREAD hasn't been aborted since this exception happened (abortion
1689 clears any exception state), so it must be real. */
1690 {
1691 /* Store away the details; this will destroy any previous info. */
1692 inf->wait.thread = thread;
1693
1694 inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
1695
1696 if (exception == EXC_BREAKPOINT)
1697 /* GDB likes to get SIGTRAP for breakpoints. */
1698 {
1699 inf->wait.status.value.sig = GDB_SIGNAL_TRAP;
1700 mach_port_deallocate (mach_task_self (), reply_port);
1701 }
1702 else
1703 /* Record the exception so that we can forward it later. */
1704 {
1705 if (thread->exc_port == port)
1706 {
1707 inf_debug (waiting_inf, "Handler is thread exception port <%lu>",
1708 thread->saved_exc_port);
1709 inf->wait.exc.handler = thread->saved_exc_port;
1710 }
1711 else
1712 {
1713 inf_debug (waiting_inf, "Handler is task exception port <%lu>",
1714 inf->task->saved_exc_port);
1715 inf->wait.exc.handler = inf->task->saved_exc_port;
1716 gdb_assert (inf->task->exc_port == port);
1717 }
1718 if (inf->wait.exc.handler != MACH_PORT_NULL)
1719 /* Add a reference to the exception handler. */
1720 mach_port_mod_refs (mach_task_self (),
1721 inf->wait.exc.handler, MACH_PORT_RIGHT_SEND,
1722 1);
1723
1724 inf->wait.exc.exception = exception;
1725 inf->wait.exc.code = code;
1726 inf->wait.exc.subcode = subcode;
1727 inf->wait.exc.reply = reply_port;
1728
1729 /* Exceptions are encoded in the signal space by putting
1730 them after _NSIG; this assumes they're positive (and not
1731 extremely large)! */
1732 inf->wait.status.value.sig =
1733 gdb_signal_from_host (_NSIG + exception);
1734 }
1735 }
1736 else
1737 /* A supppressed exception, which ignore. */
1738 {
1739 inf->wait.suppress = 1;
1740 mach_port_deallocate (mach_task_self (), reply_port);
1741 }
1742
1743 return 0;
1744 }
1745
1746 \f
1747 /* Fill in INF's wait field after a task has died without giving us more
1748 detailed information. */
1749 static void
1750 inf_task_died_status (struct inf *inf)
1751 {
1752 warning (_("Pid %d died with unknown exit status, using SIGKILL."),
1753 inf->pid);
1754 inf->wait.status.kind = TARGET_WAITKIND_SIGNALLED;
1755 inf->wait.status.value.sig = GDB_SIGNAL_KILL;
1756 }
1757
1758 /* Notify server routines. The only real one is dead name notification. */
1759 kern_return_t
1760 do_mach_notify_dead_name (mach_port_t notify, mach_port_t dead_port)
1761 {
1762 struct inf *inf = waiting_inf;
1763
1764 inf_debug (waiting_inf, "port = %lu", dead_port);
1765
1766 if (inf->task && inf->task->port == dead_port)
1767 {
1768 proc_debug (inf->task, "is dead");
1769 inf->task->port = MACH_PORT_NULL;
1770 if (proc_wait_pid == inf->pid)
1771 /* We have a wait outstanding on the process, which will return more
1772 detailed information, so delay until we get that. */
1773 inf->wait.suppress = 1;
1774 else
1775 /* We never waited for the process (maybe it wasn't a child), so just
1776 pretend it got a SIGKILL. */
1777 inf_task_died_status (inf);
1778 }
1779 else
1780 {
1781 struct proc *thread = inf_port_to_thread (inf, dead_port);
1782
1783 if (thread)
1784 {
1785 proc_debug (thread, "is dead");
1786 thread->port = MACH_PORT_NULL;
1787 }
1788
1789 if (inf->task->dead)
1790 /* Since the task is dead, its threads are dying with it. */
1791 inf->wait.suppress = 1;
1792 }
1793
1794 mach_port_deallocate (mach_task_self (), dead_port);
1795 inf->threads_up_to_date = 0; /* Just in case. */
1796
1797 return 0;
1798 }
1799
1800 \f
1801 #define ILL_RPC(fun, ...) \
1802 extern kern_return_t fun (__VA_ARGS__); \
1803 kern_return_t fun (__VA_ARGS__) \
1804 { \
1805 warning (_("illegal rpc: %s"), #fun); \
1806 return 0; \
1807 }
1808
1809 ILL_RPC (do_mach_notify_no_senders,
1810 mach_port_t notify, mach_port_mscount_t count)
1811 ILL_RPC (do_mach_notify_port_deleted,
1812 mach_port_t notify, mach_port_t name)
1813 ILL_RPC (do_mach_notify_msg_accepted,
1814 mach_port_t notify, mach_port_t name)
1815 ILL_RPC (do_mach_notify_port_destroyed,
1816 mach_port_t notify, mach_port_t name)
1817 ILL_RPC (do_mach_notify_send_once,
1818 mach_port_t notify)
1819 \f
1820 /* Process_reply server routines. We only use process_wait_reply. */
1821
1822 kern_return_t
1823 S_proc_wait_reply (mach_port_t reply, kern_return_t err,
1824 int status, int sigcode, rusage_t rusage, pid_t pid)
1825 {
1826 struct inf *inf = waiting_inf;
1827
1828 inf_debug (inf, "err = %s, pid = %d, status = 0x%x, sigcode = %d",
1829 err ? safe_strerror (err) : "0", pid, status, sigcode);
1830
1831 if (err && proc_wait_pid && (!inf->task || !inf->task->port))
1832 /* Ack. The task has died, but the task-died notification code didn't
1833 tell anyone because it thought a more detailed reply from the
1834 procserver was forthcoming. However, we now learn that won't
1835 happen... So we have to act like the task just died, and this time,
1836 tell the world. */
1837 inf_task_died_status (inf);
1838
1839 if (--proc_waits_pending == 0)
1840 /* PROC_WAIT_PID represents the most recent wait. We will always get
1841 replies in order because the proc server is single threaded. */
1842 proc_wait_pid = 0;
1843
1844 inf_debug (inf, "waits pending now: %d", proc_waits_pending);
1845
1846 if (err)
1847 {
1848 if (err != EINTR)
1849 {
1850 warning (_("Can't wait for pid %d: %s"),
1851 inf->pid, safe_strerror (err));
1852 inf->no_wait = 1;
1853
1854 /* Since we can't see the inferior's signals, don't trap them. */
1855 inf_set_traced (inf, 0);
1856 }
1857 }
1858 else if (pid == inf->pid)
1859 {
1860 store_waitstatus (&inf->wait.status, status);
1861 if (inf->wait.status.kind == TARGET_WAITKIND_STOPPED)
1862 /* The process has sent us a signal, and stopped itself in a sane
1863 state pending our actions. */
1864 {
1865 inf_debug (inf, "process has stopped itself");
1866 inf->stopped = 1;
1867 }
1868 }
1869 else
1870 inf->wait.suppress = 1; /* Something odd happened. Ignore. */
1871
1872 return 0;
1873 }
1874
1875 ILL_RPC (S_proc_setmsgport_reply,
1876 mach_port_t reply_port, kern_return_t return_code,
1877 mach_port_t oldmsgport)
1878 ILL_RPC (S_proc_getmsgport_reply,
1879 mach_port_t reply_port, kern_return_t return_code,
1880 mach_port_t msgports)
1881 ILL_RPC (S_proc_pid2task_reply,
1882 mach_port_t reply_port, kern_return_t return_code, mach_port_t task)
1883 ILL_RPC (S_proc_task2pid_reply,
1884 mach_port_t reply_port, kern_return_t return_code, pid_t pid)
1885 ILL_RPC (S_proc_task2proc_reply,
1886 mach_port_t reply_port, kern_return_t return_code, mach_port_t proc)
1887 ILL_RPC (S_proc_proc2task_reply,
1888 mach_port_t reply_port, kern_return_t return_code, mach_port_t task)
1889 ILL_RPC (S_proc_pid2proc_reply,
1890 mach_port_t reply_port, kern_return_t return_code, mach_port_t proc)
1891 ILL_RPC (S_proc_getprocinfo_reply,
1892 mach_port_t reply_port, kern_return_t return_code,
1893 int flags, procinfo_t procinfo, mach_msg_type_number_t procinfoCnt,
1894 data_t threadwaits, mach_msg_type_number_t threadwaitsCnt)
1895 ILL_RPC (S_proc_getprocargs_reply,
1896 mach_port_t reply_port, kern_return_t return_code,
1897 data_t procargs, mach_msg_type_number_t procargsCnt)
1898 ILL_RPC (S_proc_getprocenv_reply,
1899 mach_port_t reply_port, kern_return_t return_code,
1900 data_t procenv, mach_msg_type_number_t procenvCnt)
1901 ILL_RPC (S_proc_getloginid_reply,
1902 mach_port_t reply_port, kern_return_t return_code, pid_t login_id)
1903 ILL_RPC (S_proc_getloginpids_reply,
1904 mach_port_t reply_port, kern_return_t return_code,
1905 pidarray_t pids, mach_msg_type_number_t pidsCnt)
1906 ILL_RPC (S_proc_getlogin_reply,
1907 mach_port_t reply_port, kern_return_t return_code, string_t logname)
1908 ILL_RPC (S_proc_getsid_reply,
1909 mach_port_t reply_port, kern_return_t return_code, pid_t sid)
1910 ILL_RPC (S_proc_getsessionpgids_reply,
1911 mach_port_t reply_port, kern_return_t return_code,
1912 pidarray_t pgidset, mach_msg_type_number_t pgidsetCnt)
1913 ILL_RPC (S_proc_getsessionpids_reply,
1914 mach_port_t reply_port, kern_return_t return_code,
1915 pidarray_t pidset, mach_msg_type_number_t pidsetCnt)
1916 ILL_RPC (S_proc_getsidport_reply,
1917 mach_port_t reply_port, kern_return_t return_code,
1918 mach_port_t sessport)
1919 ILL_RPC (S_proc_getpgrp_reply,
1920 mach_port_t reply_port, kern_return_t return_code, pid_t pgrp)
1921 ILL_RPC (S_proc_getpgrppids_reply,
1922 mach_port_t reply_port, kern_return_t return_code,
1923 pidarray_t pidset, mach_msg_type_number_t pidsetCnt)
1924 ILL_RPC (S_proc_get_tty_reply,
1925 mach_port_t reply_port, kern_return_t return_code, mach_port_t tty)
1926 ILL_RPC (S_proc_getnports_reply,
1927 mach_port_t reply_port, kern_return_t return_code,
1928 mach_msg_type_number_t nports)
1929 ILL_RPC (S_proc_is_important_reply,
1930 mach_port_t reply_port, kern_return_t return_code,
1931 boolean_t essential)
1932 ILL_RPC (S_proc_get_code_reply,
1933 mach_port_t reply_port, kern_return_t return_code,
1934 vm_address_t start_code, vm_address_t end_code)
1935 \f
1936 /* Msg_reply server routines. We only use msg_sig_post_untraced_reply. */
1937
1938 kern_return_t
1939 S_msg_sig_post_untraced_reply (mach_port_t reply, kern_return_t err)
1940 {
1941 struct inf *inf = waiting_inf;
1942
1943 if (err == EBUSY)
1944 /* EBUSY is what we get when the crash server has grabbed control of the
1945 process and doesn't like what signal we tried to send it. Just act
1946 like the process stopped (using a signal of 0 should mean that the
1947 *next* time the user continues, it will pass signal 0, which the crash
1948 server should like). */
1949 {
1950 inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
1951 inf->wait.status.value.sig = GDB_SIGNAL_0;
1952 }
1953 else if (err)
1954 warning (_("Signal delivery failed: %s"), safe_strerror (err));
1955
1956 if (err)
1957 /* We only get this reply when we've posted a signal to a process which we
1958 thought was stopped, and which we expected to continue after the signal.
1959 Given that the signal has failed for some reason, it's reasonable to
1960 assume it's still stopped. */
1961 inf->stopped = 1;
1962 else
1963 inf->wait.suppress = 1;
1964
1965 return 0;
1966 }
1967
1968 ILL_RPC (S_msg_sig_post_reply,
1969 mach_port_t reply, kern_return_t err)
1970 \f
1971 /* Returns the number of messages queued for the receive right PORT. */
1972 static mach_port_msgcount_t
1973 port_msgs_queued (mach_port_t port)
1974 {
1975 struct mach_port_status status;
1976 kern_return_t err =
1977 mach_port_get_receive_status (mach_task_self (), port, &status);
1978
1979 if (err)
1980 return 0;
1981 else
1982 return status.mps_msgcount;
1983 }
1984
1985 \f
1986 /* Resume execution of the inferior process.
1987
1988 If STEP is nonzero, single-step it.
1989 If SIGNAL is nonzero, give it that signal.
1990
1991 TID STEP:
1992 -1 true Single step the current thread allowing other threads to run.
1993 -1 false Continue the current thread allowing other threads to run.
1994 X true Single step the given thread, don't allow any others to run.
1995 X false Continue the given thread, do not allow any others to run.
1996 (Where X, of course, is anything except -1)
1997
1998 Note that a resume may not `take' if there are pending exceptions/&c
1999 still unprocessed from the last resume we did (any given resume may result
2000 in multiple events returned by wait). */
2001
2002 void
2003 gnu_nat_target::resume (ptid_t ptid, int step, enum gdb_signal sig)
2004 {
2005 struct proc *step_thread = 0;
2006 int resume_all;
2007 struct inf *inf = gnu_current_inf;
2008
2009 inf_debug (inf, "ptid = %s, step = %d, sig = %d",
2010 target_pid_to_str (ptid), step, sig);
2011
2012 inf_validate_procinfo (inf);
2013
2014 if (sig != GDB_SIGNAL_0 || inf->stopped)
2015 {
2016 if (sig == GDB_SIGNAL_0 && inf->nomsg)
2017 inf_continue (inf);
2018 else
2019 inf_signal (inf, sig);
2020 }
2021 else if (inf->wait.exc.reply != MACH_PORT_NULL)
2022 /* We received an exception to which we have chosen not to forward, so
2023 abort the faulting thread, which will perhaps retake it. */
2024 {
2025 proc_abort (inf->wait.thread, 1);
2026 warning (_("Aborting %s with unforwarded exception %s."),
2027 proc_string (inf->wait.thread),
2028 gdb_signal_to_name (inf->wait.status.value.sig));
2029 }
2030
2031 if (port_msgs_queued (inf->event_port))
2032 /* If there are still messages in our event queue, don't bother resuming
2033 the process, as we're just going to stop it right away anyway. */
2034 return;
2035
2036 inf_update_procs (inf);
2037
2038 /* A specific PTID means `step only this process id'. */
2039 resume_all = ptid_equal (ptid, minus_one_ptid);
2040
2041 if (resume_all)
2042 /* Allow all threads to run, except perhaps single-stepping one. */
2043 {
2044 inf_debug (inf, "running all threads; tid = %d",
2045 inferior_ptid.pid ());
2046 ptid = inferior_ptid; /* What to step. */
2047 inf_set_threads_resume_sc (inf, 0, 1);
2048 }
2049 else
2050 /* Just allow a single thread to run. */
2051 {
2052 struct proc *thread = inf_tid_to_thread (inf, ptid_get_lwp (ptid));
2053
2054 if (!thread)
2055 error (_("Can't run single thread id %s: no such thread!"),
2056 target_pid_to_str (ptid));
2057 inf_debug (inf, "running one thread: %s", target_pid_to_str (ptid));
2058 inf_set_threads_resume_sc (inf, thread, 0);
2059 }
2060
2061 if (step)
2062 {
2063 step_thread = inf_tid_to_thread (inf, ptid_get_lwp (ptid));
2064 if (!step_thread)
2065 warning (_("Can't step thread id %s: no such thread."),
2066 target_pid_to_str (ptid));
2067 else
2068 inf_debug (inf, "stepping thread: %s", target_pid_to_str (ptid));
2069 }
2070 if (step_thread != inf->step_thread)
2071 inf_set_step_thread (inf, step_thread);
2072
2073 inf_debug (inf, "here we go...");
2074 inf_resume (inf);
2075 }
2076
2077 \f
2078 void
2079 gnu_nat_target::kill ()
2080 {
2081 struct proc *task = gnu_current_inf->task;
2082
2083 if (task)
2084 {
2085 proc_debug (task, "terminating...");
2086 task_terminate (task->port);
2087 inf_set_pid (gnu_current_inf, -1);
2088 }
2089 target_mourn_inferior (inferior_ptid);
2090 }
2091
2092 /* Clean up after the inferior dies. */
2093 void
2094 gnu_nat_target::mourn_inferior ()
2095 {
2096 inf_debug (gnu_current_inf, "rip");
2097 inf_detach (gnu_current_inf);
2098 inf_child_target::mourn_inferior ();
2099 }
2100
2101 \f
2102 /* Fork an inferior process, and start debugging it. */
2103
2104 /* Set INFERIOR_PID to the first thread available in the child, if any. */
2105 static int
2106 inf_pick_first_thread (void)
2107 {
2108 if (gnu_current_inf->task && gnu_current_inf->threads)
2109 /* The first thread. */
2110 return gnu_current_inf->threads->tid;
2111 else
2112 /* What may be the next thread. */
2113 return next_thread_id;
2114 }
2115
2116 static struct inf *
2117 cur_inf (void)
2118 {
2119 if (!gnu_current_inf)
2120 gnu_current_inf = make_inf ();
2121 return gnu_current_inf;
2122 }
2123
2124 static void
2125 gnu_ptrace_me (void)
2126 {
2127 /* We're in the child; make this process stop as soon as it execs. */
2128 struct inf *inf = cur_inf ();
2129 inf_debug (inf, "tracing self");
2130 if (ptrace (PTRACE_TRACEME) != 0)
2131 trace_start_error_with_name ("ptrace");
2132 }
2133
2134 void
2135 gnu_nat_target::create_inferior (const char *exec_file,
2136 const std::string &allargs,
2137 char **env,
2138 int from_tty)
2139 {
2140 struct inf *inf = cur_inf ();
2141 int pid;
2142
2143 inf_debug (inf, "creating inferior");
2144
2145 pid = fork_inferior (exec_file, allargs, env, gnu_ptrace_me,
2146 NULL, NULL, NULL, NULL);
2147
2148 /* We have something that executes now. We'll be running through
2149 the shell at this point (if startup-with-shell is true), but the
2150 pid shouldn't change. */
2151 add_thread_silent (ptid_t (pid));
2152
2153 /* Attach to the now stopped child, which is actually a shell... */
2154 inf_debug (inf, "attaching to child: %d", pid);
2155
2156 inf_attach (inf, pid);
2157
2158 push_target (this);
2159
2160 inf->pending_execs = 1;
2161 inf->nomsg = 1;
2162 inf->traced = 1;
2163
2164 /* Now let the child run again, knowing that it will stop
2165 immediately because of the ptrace. */
2166 inf_resume (inf);
2167
2168 /* We now have thread info. */
2169 thread_change_ptid (inferior_ptid,
2170 ptid_t (inf->pid, inf_pick_first_thread (), 0));
2171
2172 gdb_startup_inferior (pid, START_INFERIOR_TRAPS_EXPECTED);
2173
2174 inf->pending_execs = 0;
2175 /* Get rid of the old shell threads. */
2176 prune_threads ();
2177
2178 inf_validate_procinfo (inf);
2179 inf_update_signal_thread (inf);
2180 inf_set_traced (inf, inf->want_signals);
2181
2182 /* Execing the process will have trashed our exception ports; steal them
2183 back (or make sure they're restored if the user wants that). */
2184 if (inf->want_exceptions)
2185 inf_steal_exc_ports (inf);
2186 else
2187 inf_restore_exc_ports (inf);
2188 }
2189
2190 \f
2191 /* Attach to process PID, then initialize for debugging it
2192 and wait for the trace-trap that results from attaching. */
2193 void
2194 gnu_nat_target::attach (const char *args, int from_tty)
2195 {
2196 int pid;
2197 char *exec_file;
2198 struct inf *inf = cur_inf ();
2199 struct inferior *inferior;
2200
2201 pid = parse_pid_to_attach (args);
2202
2203 if (pid == getpid ()) /* Trying to masturbate? */
2204 error (_("I refuse to debug myself!"));
2205
2206 if (from_tty)
2207 {
2208 exec_file = (char *) get_exec_file (0);
2209
2210 if (exec_file)
2211 printf_unfiltered ("Attaching to program `%s', pid %d\n",
2212 exec_file, pid);
2213 else
2214 printf_unfiltered ("Attaching to pid %d\n", pid);
2215
2216 gdb_flush (gdb_stdout);
2217 }
2218
2219 inf_debug (inf, "attaching to pid: %d", pid);
2220
2221 inf_attach (inf, pid);
2222
2223 push_target (this);
2224
2225 inferior = current_inferior ();
2226 inferior_appeared (inferior, pid);
2227 inferior->attach_flag = 1;
2228
2229 inf_update_procs (inf);
2230
2231 inferior_ptid = ptid_t (pid, inf_pick_first_thread (), 0);
2232
2233 /* We have to initialize the terminal settings now, since the code
2234 below might try to restore them. */
2235 target_terminal::init ();
2236
2237 /* If the process was stopped before we attached, make it continue the next
2238 time the user does a continue. */
2239 inf_validate_procinfo (inf);
2240
2241 inf_update_signal_thread (inf);
2242 inf_set_traced (inf, inf->want_signals);
2243
2244 #if 0 /* Do we need this? */
2245 renumber_threads (0); /* Give our threads reasonable names. */
2246 #endif
2247 }
2248
2249 \f
2250 /* Take a program previously attached to and detaches it.
2251 The program resumes execution and will no longer stop
2252 on signals, etc. We'd better not have left any breakpoints
2253 in the program or it'll die when it hits one. For this
2254 to work, it may be necessary for the process to have been
2255 previously attached. It *might* work if the program was
2256 started via fork. */
2257 void
2258 gnu_nat_target::detach (inferior *inf, int from_tty)
2259 {
2260 int pid;
2261
2262 if (from_tty)
2263 {
2264 char *exec_file = get_exec_file (0);
2265
2266 if (exec_file)
2267 printf_unfiltered ("Detaching from program `%s' pid %d\n",
2268 exec_file, gnu_current_inf->pid);
2269 else
2270 printf_unfiltered ("Detaching from pid %d\n", gnu_current_inf->pid);
2271 gdb_flush (gdb_stdout);
2272 }
2273
2274 pid = gnu_current_inf->pid;
2275
2276 inf_detach (gnu_current_inf);
2277
2278 inferior_ptid = null_ptid;
2279 detach_inferior (pid);
2280
2281 inf_child_maybe_unpush_target (ops);
2282 }
2283 \f
2284
2285 void
2286 gnu_nat_target::stop (ptid_t ptid)
2287 {
2288 error (_("stop target function not implemented"));
2289 }
2290
2291 bool
2292 gnu_nat_target::thread_alive (ptid_t ptid)
2293 {
2294 inf_update_procs (gnu_current_inf);
2295 return !!inf_tid_to_thread (gnu_current_inf,
2296 ptid_get_lwp (ptid));
2297 }
2298
2299 \f
2300 /* Read inferior task's LEN bytes from ADDR and copy it to MYADDR in
2301 gdb's address space. Return 0 on failure; number of bytes read
2302 otherwise. */
2303 static int
2304 gnu_read_inferior (task_t task, CORE_ADDR addr, gdb_byte *myaddr, int length)
2305 {
2306 kern_return_t err;
2307 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2308 vm_size_t aligned_length =
2309 (vm_size_t) round_page (addr + length) - low_address;
2310 pointer_t copied;
2311 mach_msg_type_number_t copy_count;
2312
2313 /* Get memory from inferior with page aligned addresses. */
2314 err = vm_read (task, low_address, aligned_length, &copied, &copy_count);
2315 if (err)
2316 return 0;
2317
2318 err = hurd_safe_copyin (myaddr, (void *) (addr - low_address + copied),
2319 length);
2320 if (err)
2321 {
2322 warning (_("Read from inferior faulted: %s"), safe_strerror (err));
2323 length = 0;
2324 }
2325
2326 err = vm_deallocate (mach_task_self (), copied, copy_count);
2327 if (err)
2328 warning (_("gnu_read_inferior vm_deallocate failed: %s"),
2329 safe_strerror (err));
2330
2331 return length;
2332 }
2333
2334 #define CHK_GOTO_OUT(str,ret) \
2335 do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0)
2336
2337 struct vm_region_list
2338 {
2339 struct vm_region_list *next;
2340 vm_prot_t protection;
2341 vm_address_t start;
2342 vm_size_t length;
2343 };
2344
2345 struct obstack region_obstack;
2346
2347 /* Write gdb's LEN bytes from MYADDR and copy it to ADDR in inferior
2348 task's address space. */
2349 static int
2350 gnu_write_inferior (task_t task, CORE_ADDR addr,
2351 const gdb_byte *myaddr, int length)
2352 {
2353 kern_return_t err;
2354 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2355 vm_size_t aligned_length =
2356 (vm_size_t) round_page (addr + length) - low_address;
2357 pointer_t copied;
2358 mach_msg_type_number_t copy_count;
2359 int deallocate = 0;
2360
2361 char *errstr = "Bug in gnu_write_inferior";
2362
2363 struct vm_region_list *region_element;
2364 struct vm_region_list *region_head = NULL;
2365
2366 /* Get memory from inferior with page aligned addresses. */
2367 err = vm_read (task,
2368 low_address,
2369 aligned_length,
2370 &copied,
2371 &copy_count);
2372 CHK_GOTO_OUT ("gnu_write_inferior vm_read failed", err);
2373
2374 deallocate++;
2375
2376 err = hurd_safe_copyout ((void *) (addr - low_address + copied),
2377 myaddr, length);
2378 CHK_GOTO_OUT ("Write to inferior faulted", err);
2379
2380 obstack_init (&region_obstack);
2381
2382 /* Do writes atomically.
2383 First check for holes and unwritable memory. */
2384 {
2385 vm_size_t remaining_length = aligned_length;
2386 vm_address_t region_address = low_address;
2387
2388 struct vm_region_list *scan;
2389
2390 while (region_address < low_address + aligned_length)
2391 {
2392 vm_prot_t protection;
2393 vm_prot_t max_protection;
2394 vm_inherit_t inheritance;
2395 boolean_t shared;
2396 mach_port_t object_name;
2397 vm_offset_t offset;
2398 vm_size_t region_length = remaining_length;
2399 vm_address_t old_address = region_address;
2400
2401 err = vm_region (task,
2402 &region_address,
2403 &region_length,
2404 &protection,
2405 &max_protection,
2406 &inheritance,
2407 &shared,
2408 &object_name,
2409 &offset);
2410 CHK_GOTO_OUT ("vm_region failed", err);
2411
2412 /* Check for holes in memory. */
2413 if (old_address != region_address)
2414 {
2415 warning (_("No memory at 0x%lx. Nothing written"),
2416 old_address);
2417 err = KERN_SUCCESS;
2418 length = 0;
2419 goto out;
2420 }
2421
2422 if (!(max_protection & VM_PROT_WRITE))
2423 {
2424 warning (_("Memory at address 0x%lx is unwritable. "
2425 "Nothing written"),
2426 old_address);
2427 err = KERN_SUCCESS;
2428 length = 0;
2429 goto out;
2430 }
2431
2432 /* Chain the regions for later use. */
2433 region_element = XOBNEW (&region_obstack, struct vm_region_list);
2434
2435 region_element->protection = protection;
2436 region_element->start = region_address;
2437 region_element->length = region_length;
2438
2439 /* Chain the regions along with protections. */
2440 region_element->next = region_head;
2441 region_head = region_element;
2442
2443 region_address += region_length;
2444 remaining_length = remaining_length - region_length;
2445 }
2446
2447 /* If things fail after this, we give up.
2448 Somebody is messing up inferior_task's mappings. */
2449
2450 /* Enable writes to the chained vm regions. */
2451 for (scan = region_head; scan; scan = scan->next)
2452 {
2453 if (!(scan->protection & VM_PROT_WRITE))
2454 {
2455 err = vm_protect (task,
2456 scan->start,
2457 scan->length,
2458 FALSE,
2459 scan->protection | VM_PROT_WRITE);
2460 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2461 }
2462 }
2463
2464 err = vm_write (task,
2465 low_address,
2466 copied,
2467 aligned_length);
2468 CHK_GOTO_OUT ("vm_write failed", err);
2469
2470 /* Set up the original region protections, if they were changed. */
2471 for (scan = region_head; scan; scan = scan->next)
2472 {
2473 if (!(scan->protection & VM_PROT_WRITE))
2474 {
2475 err = vm_protect (task,
2476 scan->start,
2477 scan->length,
2478 FALSE,
2479 scan->protection);
2480 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2481 }
2482 }
2483 }
2484
2485 out:
2486 if (deallocate)
2487 {
2488 obstack_free (&region_obstack, 0);
2489
2490 (void) vm_deallocate (mach_task_self (),
2491 copied,
2492 copy_count);
2493 }
2494
2495 if (err != KERN_SUCCESS)
2496 {
2497 warning (_("%s: %s"), errstr, mach_error_string (err));
2498 return 0;
2499 }
2500
2501 return length;
2502 }
2503
2504 \f
2505
2506 /* Implement the to_xfer_partial target_ops method for
2507 TARGET_OBJECT_MEMORY. */
2508
2509 static enum target_xfer_status
2510 gnu_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
2511 CORE_ADDR memaddr, ULONGEST len, ULONGEST *xfered_len)
2512 {
2513 task_t task = (gnu_current_inf
2514 ? (gnu_current_inf->task
2515 ? gnu_current_inf->task->port : 0)
2516 : 0);
2517 int res;
2518
2519 if (task == MACH_PORT_NULL)
2520 return TARGET_XFER_E_IO;
2521
2522 if (writebuf != NULL)
2523 {
2524 inf_debug (gnu_current_inf, "writing %s[%s] <-- %s",
2525 paddress (target_gdbarch (), memaddr), pulongest (len),
2526 host_address_to_string (writebuf));
2527 res = gnu_write_inferior (task, memaddr, writebuf, len);
2528 }
2529 else
2530 {
2531 inf_debug (gnu_current_inf, "reading %s[%s] --> %s",
2532 paddress (target_gdbarch (), memaddr), pulongest (len),
2533 host_address_to_string (readbuf));
2534 res = gnu_read_inferior (task, memaddr, readbuf, len);
2535 }
2536 gdb_assert (res >= 0);
2537 if (res == 0)
2538 return TARGET_XFER_E_IO;
2539 else
2540 {
2541 *xfered_len = (ULONGEST) res;
2542 return TARGET_XFER_OK;
2543 }
2544 }
2545
2546 /* GNU does not have auxv, but we can at least fake the AT_ENTRY entry for PIE
2547 binaries. */
2548 static enum target_xfer_status
2549 gnu_xfer_auxv (gdb_byte *readbuf, const gdb_byte *writebuf,
2550 CORE_ADDR memaddr, ULONGEST len, ULONGEST *xfered_len)
2551 {
2552 task_t task = (gnu_current_inf
2553 ? (gnu_current_inf->task
2554 ? gnu_current_inf->task->port : 0)
2555 : 0);
2556 process_t proc;
2557 int res;
2558 kern_return_t err;
2559 vm_address_t entry;
2560 ElfW(auxv_t) auxv[2];
2561
2562 if (task == MACH_PORT_NULL)
2563 return TARGET_XFER_E_IO;
2564 if (writebuf != NULL)
2565 return TARGET_XFER_E_IO;
2566
2567 if (memaddr == sizeof (auxv))
2568 return TARGET_XFER_EOF;
2569 if (memaddr > sizeof (auxv))
2570 return TARGET_XFER_E_IO;
2571
2572 err = proc_task2proc (proc_server, task, &proc);
2573 if (err != 0)
2574 return TARGET_XFER_E_IO;
2575
2576 /* Get entry from proc server. */
2577 err = proc_get_entry (proc, &entry);
2578 if (err != 0)
2579 return TARGET_XFER_E_IO;
2580
2581 /* Fake auxv entry. */
2582 auxv[0].a_type = AT_ENTRY;
2583 auxv[0].a_un.a_val = entry;
2584 auxv[1].a_type = AT_NULL;
2585 auxv[1].a_un.a_val = 0;
2586
2587 inf_debug (gnu_current_inf, "reading auxv %s[%s] --> %s",
2588 paddress (target_gdbarch (), memaddr), pulongest (len),
2589 host_address_to_string (readbuf));
2590
2591 if (memaddr + len > sizeof (auxv))
2592 len = sizeof (auxv) - memaddr;
2593
2594 memcpy (readbuf, (gdb_byte *) &auxv + memaddr, len);
2595 *xfered_len = len;
2596
2597 return TARGET_XFER_OK;
2598 }
2599
2600 /* Target to_xfer_partial implementation. */
2601
2602 enum target_xfer_status
2603 gnu_nat_target::xfer_partial (enum target_object object,
2604 const char *annex, gdb_byte *readbuf,
2605 const gdb_byte *writebuf, ULONGEST offset,
2606 ULONGEST len, ULONGEST *xfered_len)
2607 {
2608 switch (object)
2609 {
2610 case TARGET_OBJECT_MEMORY:
2611 return gnu_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
2612 case TARGET_OBJECT_AUXV:
2613 return gnu_xfer_auxv (readbuf, writebuf, offset, len, xfered_len);
2614 default:
2615 return TARGET_XFER_E_IO;
2616 }
2617 }
2618
2619 /* Call FUNC on each memory region in the task. */
2620
2621 int
2622 gnu_nat_target::find_memory_regions (find_memory_region_ftype func,
2623 void *data)
2624 {
2625 kern_return_t err;
2626 task_t task;
2627 vm_address_t region_address, last_region_address, last_region_end;
2628 vm_prot_t last_protection;
2629
2630 if (gnu_current_inf == 0 || gnu_current_inf->task == 0)
2631 return 0;
2632 task = gnu_current_inf->task->port;
2633 if (task == MACH_PORT_NULL)
2634 return 0;
2635
2636 region_address = last_region_address = last_region_end = VM_MIN_ADDRESS;
2637 last_protection = VM_PROT_NONE;
2638 while (region_address < VM_MAX_ADDRESS)
2639 {
2640 vm_prot_t protection;
2641 vm_prot_t max_protection;
2642 vm_inherit_t inheritance;
2643 boolean_t shared;
2644 mach_port_t object_name;
2645 vm_offset_t offset;
2646 vm_size_t region_length = VM_MAX_ADDRESS - region_address;
2647 vm_address_t old_address = region_address;
2648
2649 err = vm_region (task,
2650 &region_address,
2651 &region_length,
2652 &protection,
2653 &max_protection,
2654 &inheritance,
2655 &shared,
2656 &object_name,
2657 &offset);
2658 if (err == KERN_NO_SPACE)
2659 break;
2660 if (err != KERN_SUCCESS)
2661 {
2662 warning (_("vm_region failed: %s"), mach_error_string (err));
2663 return -1;
2664 }
2665
2666 if (protection == last_protection && region_address == last_region_end)
2667 /* This region is contiguous with and indistinguishable from
2668 the previous one, so we just extend that one. */
2669 last_region_end = region_address += region_length;
2670 else
2671 {
2672 /* This region is distinct from the last one we saw, so report
2673 that previous one. */
2674 if (last_protection != VM_PROT_NONE)
2675 (*func) (last_region_address,
2676 last_region_end - last_region_address,
2677 last_protection & VM_PROT_READ,
2678 last_protection & VM_PROT_WRITE,
2679 last_protection & VM_PROT_EXECUTE,
2680 1, /* MODIFIED is unknown, pass it as true. */
2681 data);
2682 last_region_address = region_address;
2683 last_region_end = region_address += region_length;
2684 last_protection = protection;
2685 }
2686 }
2687
2688 /* Report the final region. */
2689 if (last_region_end > last_region_address && last_protection != VM_PROT_NONE)
2690 (*func) (last_region_address, last_region_end - last_region_address,
2691 last_protection & VM_PROT_READ,
2692 last_protection & VM_PROT_WRITE,
2693 last_protection & VM_PROT_EXECUTE,
2694 1, /* MODIFIED is unknown, pass it as true. */
2695 data);
2696
2697 return 0;
2698 }
2699
2700 \f
2701 /* Return printable description of proc. */
2702 char *
2703 proc_string (struct proc *proc)
2704 {
2705 static char tid_str[80];
2706
2707 if (proc_is_task (proc))
2708 xsnprintf (tid_str, sizeof (tid_str), "process %d", proc->inf->pid);
2709 else
2710 xsnprintf (tid_str, sizeof (tid_str), "Thread %d.%d",
2711 proc->inf->pid, proc->tid);
2712 return tid_str;
2713 }
2714
2715 const char *
2716 gnu_nat_target::pid_to_str (ptid_t ptid)
2717 {
2718 struct inf *inf = gnu_current_inf;
2719 int tid = ptid_get_lwp (ptid);
2720 struct proc *thread = inf_tid_to_thread (inf, tid);
2721
2722 if (thread)
2723 return proc_string (thread);
2724 else
2725 {
2726 static char tid_str[80];
2727
2728 xsnprintf (tid_str, sizeof (tid_str), "bogus thread id %d", tid);
2729 return tid_str;
2730 }
2731 }
2732
2733 \f
2734 /* User task commands. */
2735
2736 static struct cmd_list_element *set_task_cmd_list = 0;
2737 static struct cmd_list_element *show_task_cmd_list = 0;
2738 /* User thread commands. */
2739
2740 /* Commands with a prefix of `set/show thread'. */
2741 extern struct cmd_list_element *thread_cmd_list;
2742 struct cmd_list_element *set_thread_cmd_list = NULL;
2743 struct cmd_list_element *show_thread_cmd_list = NULL;
2744
2745 /* Commands with a prefix of `set/show thread default'. */
2746 struct cmd_list_element *set_thread_default_cmd_list = NULL;
2747 struct cmd_list_element *show_thread_default_cmd_list = NULL;
2748
2749 static void
2750 set_thread_cmd (const char *args, int from_tty)
2751 {
2752 printf_unfiltered ("\"set thread\" must be followed by the "
2753 "name of a thread property, or \"default\".\n");
2754 }
2755
2756 static void
2757 show_thread_cmd (const char *args, int from_tty)
2758 {
2759 printf_unfiltered ("\"show thread\" must be followed by the "
2760 "name of a thread property, or \"default\".\n");
2761 }
2762
2763 static void
2764 set_thread_default_cmd (const char *args, int from_tty)
2765 {
2766 printf_unfiltered ("\"set thread default\" must be followed "
2767 "by the name of a thread property.\n");
2768 }
2769
2770 static void
2771 show_thread_default_cmd (const char *args, int from_tty)
2772 {
2773 printf_unfiltered ("\"show thread default\" must be followed "
2774 "by the name of a thread property.\n");
2775 }
2776
2777 static int
2778 parse_int_arg (const char *args, char *cmd_prefix)
2779 {
2780 if (args)
2781 {
2782 char *arg_end;
2783 int val = strtoul (args, &arg_end, 10);
2784
2785 if (*args && *arg_end == '\0')
2786 return val;
2787 }
2788 error (_("Illegal argument for \"%s\" command, should be an integer."),
2789 cmd_prefix);
2790 }
2791
2792 static int
2793 _parse_bool_arg (const char *args, char *t_val, char *f_val, char *cmd_prefix)
2794 {
2795 if (!args || strcmp (args, t_val) == 0)
2796 return 1;
2797 else if (strcmp (args, f_val) == 0)
2798 return 0;
2799 else
2800 error (_("Illegal argument for \"%s\" command, "
2801 "should be \"%s\" or \"%s\"."),
2802 cmd_prefix, t_val, f_val);
2803 }
2804
2805 #define parse_bool_arg(args, cmd_prefix) \
2806 _parse_bool_arg (args, "on", "off", cmd_prefix)
2807
2808 static void
2809 check_empty (const char *args, char *cmd_prefix)
2810 {
2811 if (args)
2812 error (_("Garbage after \"%s\" command: `%s'"), cmd_prefix, args);
2813 }
2814
2815 /* Returns the alive thread named by INFERIOR_PID, or signals an error. */
2816 static struct proc *
2817 cur_thread (void)
2818 {
2819 struct inf *inf = cur_inf ();
2820 struct proc *thread = inf_tid_to_thread (inf,
2821 ptid_get_lwp (inferior_ptid));
2822 if (!thread)
2823 error (_("No current thread."));
2824 return thread;
2825 }
2826
2827 /* Returns the current inferior, but signals an error if it has no task. */
2828 static struct inf *
2829 active_inf (void)
2830 {
2831 struct inf *inf = cur_inf ();
2832
2833 if (!inf->task)
2834 error (_("No current process."));
2835 return inf;
2836 }
2837
2838 \f
2839 static void
2840 set_task_pause_cmd (int arg, int from_tty)
2841 {
2842 struct inf *inf = cur_inf ();
2843 int old_sc = inf->pause_sc;
2844
2845 inf->pause_sc = arg;
2846
2847 if (old_sc == 0 && inf->pause_sc != 0)
2848 /* If the task is currently unsuspended, immediately suspend it,
2849 otherwise wait until the next time it gets control. */
2850 inf_suspend (inf);
2851 }
2852
2853 static void
2854 set_task_pause_cmd (const char *args, int from_tty)
2855 {
2856 set_task_pause_cmd (parse_bool_arg (args, "set task pause"), from_tty);
2857 }
2858
2859 static void
2860 show_task_pause_cmd (const char *args, int from_tty)
2861 {
2862 struct inf *inf = cur_inf ();
2863
2864 check_empty (args, "show task pause");
2865 printf_unfiltered ("The inferior task %s suspended while gdb has control.\n",
2866 inf->task
2867 ? (inf->pause_sc == 0 ? "isn't" : "is")
2868 : (inf->pause_sc == 0 ? "won't be" : "will be"));
2869 }
2870
2871 static void
2872 set_task_detach_sc_cmd (const char *args, int from_tty)
2873 {
2874 cur_inf ()->detach_sc = parse_int_arg (args,
2875 "set task detach-suspend-count");
2876 }
2877
2878 static void
2879 show_task_detach_sc_cmd (const char *args, int from_tty)
2880 {
2881 check_empty (args, "show task detach-suspend-count");
2882 printf_unfiltered ("The inferior task will be left with a "
2883 "suspend count of %d when detaching.\n",
2884 cur_inf ()->detach_sc);
2885 }
2886
2887 \f
2888 static void
2889 set_thread_default_pause_cmd (const char *args, int from_tty)
2890 {
2891 struct inf *inf = cur_inf ();
2892
2893 inf->default_thread_pause_sc =
2894 parse_bool_arg (args, "set thread default pause") ? 0 : 1;
2895 }
2896
2897 static void
2898 show_thread_default_pause_cmd (const char *args, int from_tty)
2899 {
2900 struct inf *inf = cur_inf ();
2901 int sc = inf->default_thread_pause_sc;
2902
2903 check_empty (args, "show thread default pause");
2904 printf_unfiltered ("New threads %s suspended while gdb has control%s.\n",
2905 sc ? "are" : "aren't",
2906 !sc && inf->pause_sc ? " (but the task is)" : "");
2907 }
2908
2909 static void
2910 set_thread_default_run_cmd (const char *args, int from_tty)
2911 {
2912 struct inf *inf = cur_inf ();
2913
2914 inf->default_thread_run_sc =
2915 parse_bool_arg (args, "set thread default run") ? 0 : 1;
2916 }
2917
2918 static void
2919 show_thread_default_run_cmd (const char *args, int from_tty)
2920 {
2921 struct inf *inf = cur_inf ();
2922
2923 check_empty (args, "show thread default run");
2924 printf_unfiltered ("New threads %s allowed to run.\n",
2925 inf->default_thread_run_sc == 0 ? "are" : "aren't");
2926 }
2927
2928 static void
2929 set_thread_default_detach_sc_cmd (const char *args, int from_tty)
2930 {
2931 cur_inf ()->default_thread_detach_sc =
2932 parse_int_arg (args, "set thread default detach-suspend-count");
2933 }
2934
2935 static void
2936 show_thread_default_detach_sc_cmd (const char *args, int from_tty)
2937 {
2938 check_empty (args, "show thread default detach-suspend-count");
2939 printf_unfiltered ("New threads will get a detach-suspend-count of %d.\n",
2940 cur_inf ()->default_thread_detach_sc);
2941 }
2942
2943 \f
2944 /* Steal a send right called NAME in the inferior task, and make it PROC's
2945 saved exception port. */
2946 static void
2947 steal_exc_port (struct proc *proc, mach_port_t name)
2948 {
2949 kern_return_t err;
2950 mach_port_t port;
2951 mach_msg_type_name_t port_type;
2952
2953 if (!proc || !proc->inf->task)
2954 error (_("No inferior task."));
2955
2956 err = mach_port_extract_right (proc->inf->task->port,
2957 name, MACH_MSG_TYPE_COPY_SEND,
2958 &port, &port_type);
2959 if (err)
2960 error (_("Couldn't extract send right %lu from inferior: %s"),
2961 name, safe_strerror (err));
2962
2963 if (proc->saved_exc_port)
2964 /* Get rid of our reference to the old one. */
2965 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
2966
2967 proc->saved_exc_port = port;
2968
2969 if (!proc->exc_port)
2970 /* If PROC is a thread, we may not have set its exception port
2971 before. We can't use proc_steal_exc_port because it also sets
2972 saved_exc_port. */
2973 {
2974 proc->exc_port = proc->inf->event_port;
2975 err = proc_set_exception_port (proc, proc->exc_port);
2976 error (_("Can't set exception port for %s: %s"),
2977 proc_string (proc), safe_strerror (err));
2978 }
2979 }
2980
2981 static void
2982 set_task_exc_port_cmd (const char *args, int from_tty)
2983 {
2984 struct inf *inf = cur_inf ();
2985
2986 if (!args)
2987 error (_("No argument to \"set task exception-port\" command."));
2988 steal_exc_port (inf->task, parse_and_eval_address (args));
2989 }
2990
2991 static void
2992 set_stopped_cmd (const char *args, int from_tty)
2993 {
2994 cur_inf ()->stopped = _parse_bool_arg (args, "yes", "no", "set stopped");
2995 }
2996
2997 static void
2998 show_stopped_cmd (const char *args, int from_tty)
2999 {
3000 struct inf *inf = active_inf ();
3001
3002 check_empty (args, "show stopped");
3003 printf_unfiltered ("The inferior process %s stopped.\n",
3004 inf->stopped ? "is" : "isn't");
3005 }
3006
3007 static void
3008 set_sig_thread_cmd (const char *args, int from_tty)
3009 {
3010 struct inf *inf = cur_inf ();
3011
3012 if (!args || (!isdigit (*args) && strcmp (args, "none") != 0))
3013 error (_("Illegal argument to \"set signal-thread\" command.\n"
3014 "Should be a thread ID, or \"none\"."));
3015
3016 if (strcmp (args, "none") == 0)
3017 inf->signal_thread = 0;
3018 else
3019 {
3020 struct thread_info *tp = parse_thread_id (args, NULL);
3021 inf->signal_thread = inf_tid_to_thread (inf, ptid_get_lwp (tp->ptid));
3022 }
3023 }
3024
3025 static void
3026 show_sig_thread_cmd (const char *args, int from_tty)
3027 {
3028 struct inf *inf = active_inf ();
3029
3030 check_empty (args, "show signal-thread");
3031 if (inf->signal_thread)
3032 printf_unfiltered ("The signal thread is %s.\n",
3033 proc_string (inf->signal_thread));
3034 else
3035 printf_unfiltered ("There is no signal thread.\n");
3036 }
3037
3038 \f
3039 static void
3040 set_signals_cmd (int arg, int from_tty)
3041 {
3042 struct inf *inf = cur_inf ();
3043
3044 inf->want_signals = arg;
3045
3046 if (inf->task && inf->want_signals != inf->traced)
3047 /* Make this take effect immediately in a running process. */
3048 inf_set_traced (inf, inf->want_signals);
3049 }
3050
3051 static void
3052 set_signals_cmd (const char *args, int from_tty)
3053 {
3054 set_signals_cmd(parse_bool_arg (args, "set signals"), from_tty);
3055 }
3056
3057 static void
3058 show_signals_cmd (const char *args, int from_tty)
3059 {
3060 struct inf *inf = cur_inf ();
3061
3062 check_empty (args, "show signals");
3063 printf_unfiltered ("The inferior process's signals %s intercepted.\n",
3064 inf->task
3065 ? (inf->traced ? "are" : "aren't")
3066 : (inf->want_signals ? "will be" : "won't be"));
3067 }
3068
3069 static void
3070 set_exceptions_cmd (int arg, int from_tty)
3071 {
3072 struct inf *inf = cur_inf ();
3073
3074 /* Make this take effect immediately in a running process. */
3075 /* XXX */ ;
3076
3077 inf->want_exceptions = arg;
3078 }
3079
3080 static void
3081 set_exceptions_cmd (const char *args, int from_tty)
3082 {
3083 set_exceptions_cmd (parse_bool_arg (args, "set exceptions"), from_tty);
3084 }
3085
3086 static void
3087 show_exceptions_cmd (const char *args, int from_tty)
3088 {
3089 struct inf *inf = cur_inf ();
3090
3091 check_empty (args, "show exceptions");
3092 printf_unfiltered ("Exceptions in the inferior %s trapped.\n",
3093 inf->task
3094 ? (inf->want_exceptions ? "are" : "aren't")
3095 : (inf->want_exceptions ? "will be" : "won't be"));
3096 }
3097
3098 \f
3099 static void
3100 set_task_cmd (const char *args, int from_tty)
3101 {
3102 printf_unfiltered ("\"set task\" must be followed by the name"
3103 " of a task property.\n");
3104 }
3105
3106 static void
3107 show_task_cmd (const char *args, int from_tty)
3108 {
3109 struct inf *inf = cur_inf ();
3110
3111 check_empty (args, "show task");
3112
3113 show_signals_cmd (0, from_tty);
3114 show_exceptions_cmd (0, from_tty);
3115 show_task_pause_cmd (0, from_tty);
3116
3117 if (inf->pause_sc == 0)
3118 show_thread_default_pause_cmd (0, from_tty);
3119 show_thread_default_run_cmd (0, from_tty);
3120
3121 if (inf->task)
3122 {
3123 show_stopped_cmd (0, from_tty);
3124 show_sig_thread_cmd (0, from_tty);
3125 }
3126
3127 if (inf->detach_sc != 0)
3128 show_task_detach_sc_cmd (0, from_tty);
3129 if (inf->default_thread_detach_sc != 0)
3130 show_thread_default_detach_sc_cmd (0, from_tty);
3131 }
3132
3133 \f
3134 static void
3135 set_noninvasive_cmd (const char *args, int from_tty)
3136 {
3137 /* Invert the sense of the arg for each component. */
3138 int inv_arg = parse_bool_arg (args, "set noninvasive") ? 0 : 1;
3139
3140 set_task_pause_cmd (inv_arg, from_tty);
3141 set_signals_cmd (inv_arg, from_tty);
3142 set_exceptions_cmd (inv_arg, from_tty);
3143 }
3144
3145 \f
3146 static void
3147 info_port_rights (const char *args, mach_port_type_t only)
3148 {
3149 struct inf *inf = active_inf ();
3150 struct value *vmark = value_mark ();
3151
3152 if (args)
3153 /* Explicit list of port rights. */
3154 {
3155 while (*args)
3156 {
3157 struct value *val = parse_to_comma_and_eval (&args);
3158 long right = value_as_long (val);
3159 error_t err =
3160 print_port_info (right, 0, inf->task->port, PORTINFO_DETAILS,
3161 stdout);
3162
3163 if (err)
3164 error (_("%ld: %s."), right, safe_strerror (err));
3165 }
3166 }
3167 else
3168 /* Print all of them. */
3169 {
3170 error_t err =
3171 print_task_ports_info (inf->task->port, only, PORTINFO_DETAILS,
3172 stdout);
3173 if (err)
3174 error (_("%s."), safe_strerror (err));
3175 }
3176
3177 value_free_to_mark (vmark);
3178 }
3179
3180 static void
3181 info_send_rights_cmd (const char *args, int from_tty)
3182 {
3183 info_port_rights (args, MACH_PORT_TYPE_SEND);
3184 }
3185
3186 static void
3187 info_recv_rights_cmd (const char *args, int from_tty)
3188 {
3189 info_port_rights (args, MACH_PORT_TYPE_RECEIVE);
3190 }
3191
3192 static void
3193 info_port_sets_cmd (const char *args, int from_tty)
3194 {
3195 info_port_rights (args, MACH_PORT_TYPE_PORT_SET);
3196 }
3197
3198 static void
3199 info_dead_names_cmd (const char *args, int from_tty)
3200 {
3201 info_port_rights (args, MACH_PORT_TYPE_DEAD_NAME);
3202 }
3203
3204 static void
3205 info_port_rights_cmd (const char *args, int from_tty)
3206 {
3207 info_port_rights (args, ~0);
3208 }
3209
3210 \f
3211 static void
3212 add_task_commands (void)
3213 {
3214 add_cmd ("pause", class_run, set_thread_default_pause_cmd, _("\
3215 Set whether the new threads are suspended while gdb has control.\n\
3216 This property normally has no effect because the whole task is\n\
3217 suspended, however, that may be disabled with \"set task pause off\".\n\
3218 The default value is \"off\"."),
3219 &set_thread_default_cmd_list);
3220 add_cmd ("pause", no_class, show_thread_default_pause_cmd, _("\
3221 Show whether new threads are suspended while gdb has control."),
3222 &show_thread_default_cmd_list);
3223
3224 add_cmd ("run", class_run, set_thread_default_run_cmd, _("\
3225 Set whether new threads are allowed to run (once gdb has noticed them)."),
3226 &set_thread_default_cmd_list);
3227 add_cmd ("run", no_class, show_thread_default_run_cmd, _("\
3228 Show whether new threads are allowed to run (once gdb has noticed them)."),
3229 &show_thread_default_cmd_list);
3230
3231 add_cmd ("detach-suspend-count", class_run, set_thread_default_detach_sc_cmd,
3232 _("Set the default detach-suspend-count value for new threads."),
3233 &set_thread_default_cmd_list);
3234 add_cmd ("detach-suspend-count", no_class, show_thread_default_detach_sc_cmd,
3235 _("Show the default detach-suspend-count value for new threads."),
3236 &show_thread_default_cmd_list);
3237
3238 add_cmd ("signals", class_run, set_signals_cmd, _("\
3239 Set whether the inferior process's signals will be intercepted.\n\
3240 Mach exceptions (such as breakpoint traps) are not affected."),
3241 &setlist);
3242 add_alias_cmd ("sigs", "signals", class_run, 1, &setlist);
3243 add_cmd ("signals", no_class, show_signals_cmd, _("\
3244 Show whether the inferior process's signals will be intercepted."),
3245 &showlist);
3246 add_alias_cmd ("sigs", "signals", no_class, 1, &showlist);
3247
3248 add_cmd ("signal-thread", class_run, set_sig_thread_cmd, _("\
3249 Set the thread that gdb thinks is the libc signal thread.\n\
3250 This thread is run when delivering a signal to a non-stopped process."),
3251 &setlist);
3252 add_alias_cmd ("sigthread", "signal-thread", class_run, 1, &setlist);
3253 add_cmd ("signal-thread", no_class, show_sig_thread_cmd, _("\
3254 Set the thread that gdb thinks is the libc signal thread."),
3255 &showlist);
3256 add_alias_cmd ("sigthread", "signal-thread", no_class, 1, &showlist);
3257
3258 add_cmd ("stopped", class_run, set_stopped_cmd, _("\
3259 Set whether gdb thinks the inferior process is stopped as with SIGSTOP.\n\
3260 Stopped process will be continued by sending them a signal."),
3261 &setlist);
3262 add_cmd ("stopped", no_class, show_stopped_cmd, _("\
3263 Show whether gdb thinks the inferior process is stopped as with SIGSTOP."),
3264 &showlist);
3265
3266 add_cmd ("exceptions", class_run, set_exceptions_cmd, _("\
3267 Set whether exceptions in the inferior process will be trapped.\n\
3268 When exceptions are turned off, neither breakpoints nor single-stepping\n\
3269 will work."),
3270 &setlist);
3271 /* Allow `set exc' despite conflict with `set exception-port'. */
3272 add_alias_cmd ("exc", "exceptions", class_run, 1, &setlist);
3273 add_cmd ("exceptions", no_class, show_exceptions_cmd, _("\
3274 Show whether exceptions in the inferior process will be trapped."),
3275 &showlist);
3276
3277 add_prefix_cmd ("task", no_class, set_task_cmd,
3278 _("Command prefix for setting task attributes."),
3279 &set_task_cmd_list, "set task ", 0, &setlist);
3280 add_prefix_cmd ("task", no_class, show_task_cmd,
3281 _("Command prefix for showing task attributes."),
3282 &show_task_cmd_list, "show task ", 0, &showlist);
3283
3284 add_cmd ("pause", class_run, set_task_pause_cmd, _("\
3285 Set whether the task is suspended while gdb has control.\n\
3286 A value of \"on\" takes effect immediately, otherwise nothing happens\n\
3287 until the next time the program is continued.\n\
3288 When setting this to \"off\", \"set thread default pause on\" can be\n\
3289 used to pause individual threads by default instead."),
3290 &set_task_cmd_list);
3291 add_cmd ("pause", no_class, show_task_pause_cmd,
3292 _("Show whether the task is suspended while gdb has control."),
3293 &show_task_cmd_list);
3294
3295 add_cmd ("detach-suspend-count", class_run, set_task_detach_sc_cmd,
3296 _("Set the suspend count will leave on the thread when detaching."),
3297 &set_task_cmd_list);
3298 add_cmd ("detach-suspend-count", no_class, show_task_detach_sc_cmd,
3299 _("Show the suspend count will leave "
3300 "on the thread when detaching."),
3301 &show_task_cmd_list);
3302
3303 add_cmd ("exception-port", no_class, set_task_exc_port_cmd, _("\
3304 Set the task exception port to which we forward exceptions.\n\
3305 The argument should be the value of the send right in the task."),
3306 &set_task_cmd_list);
3307 add_alias_cmd ("excp", "exception-port", no_class, 1, &set_task_cmd_list);
3308 add_alias_cmd ("exc-port", "exception-port", no_class, 1,
3309 &set_task_cmd_list);
3310
3311 /* A convenient way of turning on all options require to noninvasively
3312 debug running tasks. */
3313 add_cmd ("noninvasive", no_class, set_noninvasive_cmd, _("\
3314 Set task options so that we interfere as little as possible.\n\
3315 This is the same as setting `task pause', `exceptions', and\n\
3316 `signals' to the opposite value."),
3317 &setlist);
3318
3319 /* Commands to show information about the task's ports. */
3320 add_info ("send-rights", info_send_rights_cmd,
3321 _("Show information about the task's send rights"));
3322 add_info ("receive-rights", info_recv_rights_cmd,
3323 _("Show information about the task's receive rights"));
3324 add_info ("port-rights", info_port_rights_cmd,
3325 _("Show information about the task's port rights"));
3326 add_info ("port-sets", info_port_sets_cmd,
3327 _("Show information about the task's port sets"));
3328 add_info ("dead-names", info_dead_names_cmd,
3329 _("Show information about the task's dead names"));
3330 add_info_alias ("ports", "port-rights", 1);
3331 add_info_alias ("port", "port-rights", 1);
3332 add_info_alias ("psets", "port-sets", 1);
3333 }
3334
3335 \f
3336 static void
3337 set_thread_pause_cmd (const char *args, int from_tty)
3338 {
3339 struct proc *thread = cur_thread ();
3340 int old_sc = thread->pause_sc;
3341
3342 thread->pause_sc = parse_bool_arg (args, "set thread pause");
3343 if (old_sc == 0 && thread->pause_sc != 0 && thread->inf->pause_sc == 0)
3344 /* If the task is currently unsuspended, immediately suspend it,
3345 otherwise wait until the next time it gets control. */
3346 inf_suspend (thread->inf);
3347 }
3348
3349 static void
3350 show_thread_pause_cmd (const char *args, int from_tty)
3351 {
3352 struct proc *thread = cur_thread ();
3353 int sc = thread->pause_sc;
3354
3355 check_empty (args, "show task pause");
3356 printf_unfiltered ("Thread %s %s suspended while gdb has control%s.\n",
3357 proc_string (thread),
3358 sc ? "is" : "isn't",
3359 !sc && thread->inf->pause_sc ? " (but the task is)" : "");
3360 }
3361
3362 static void
3363 set_thread_run_cmd (const char *args, int from_tty)
3364 {
3365 struct proc *thread = cur_thread ();
3366
3367 thread->run_sc = parse_bool_arg (args, "set thread run") ? 0 : 1;
3368 }
3369
3370 static void
3371 show_thread_run_cmd (const char *args, int from_tty)
3372 {
3373 struct proc *thread = cur_thread ();
3374
3375 check_empty (args, "show thread run");
3376 printf_unfiltered ("Thread %s %s allowed to run.",
3377 proc_string (thread),
3378 thread->run_sc == 0 ? "is" : "isn't");
3379 }
3380
3381 static void
3382 set_thread_detach_sc_cmd (const char *args, int from_tty)
3383 {
3384 cur_thread ()->detach_sc = parse_int_arg (args,
3385 "set thread detach-suspend-count");
3386 }
3387
3388 static void
3389 show_thread_detach_sc_cmd (const char *args, int from_tty)
3390 {
3391 struct proc *thread = cur_thread ();
3392
3393 check_empty (args, "show thread detach-suspend-count");
3394 printf_unfiltered ("Thread %s will be left with a suspend count"
3395 " of %d when detaching.\n",
3396 proc_string (thread),
3397 thread->detach_sc);
3398 }
3399
3400 static void
3401 set_thread_exc_port_cmd (const char *args, int from_tty)
3402 {
3403 struct proc *thread = cur_thread ();
3404
3405 if (!args)
3406 error (_("No argument to \"set thread exception-port\" command."));
3407 steal_exc_port (thread, parse_and_eval_address (args));
3408 }
3409
3410 #if 0
3411 static void
3412 show_thread_cmd (char *args, int from_tty)
3413 {
3414 struct proc *thread = cur_thread ();
3415
3416 check_empty (args, "show thread");
3417 show_thread_run_cmd (0, from_tty);
3418 show_thread_pause_cmd (0, from_tty);
3419 if (thread->detach_sc != 0)
3420 show_thread_detach_sc_cmd (0, from_tty);
3421 }
3422 #endif
3423
3424 static void
3425 thread_takeover_sc_cmd (const char *args, int from_tty)
3426 {
3427 struct proc *thread = cur_thread ();
3428
3429 thread_basic_info_data_t _info;
3430 thread_basic_info_t info = &_info;
3431 mach_msg_type_number_t info_len = THREAD_BASIC_INFO_COUNT;
3432 kern_return_t err =
3433 thread_info (thread->port, THREAD_BASIC_INFO, (int *) &info, &info_len);
3434 if (err)
3435 error (("%s."), safe_strerror (err));
3436 thread->sc = info->suspend_count;
3437 if (from_tty)
3438 printf_unfiltered ("Suspend count was %d.\n", thread->sc);
3439 if (info != &_info)
3440 vm_deallocate (mach_task_self (), (vm_address_t) info,
3441 info_len * sizeof (int));
3442 }
3443
3444 \f
3445 static void
3446 add_thread_commands (void)
3447 {
3448 add_prefix_cmd ("thread", no_class, set_thread_cmd,
3449 _("Command prefix for setting thread properties."),
3450 &set_thread_cmd_list, "set thread ", 0, &setlist);
3451 add_prefix_cmd ("default", no_class, show_thread_cmd,
3452 _("Command prefix for setting default thread properties."),
3453 &set_thread_default_cmd_list, "set thread default ", 0,
3454 &set_thread_cmd_list);
3455 add_prefix_cmd ("thread", no_class, set_thread_default_cmd,
3456 _("Command prefix for showing thread properties."),
3457 &show_thread_cmd_list, "show thread ", 0, &showlist);
3458 add_prefix_cmd ("default", no_class, show_thread_default_cmd,
3459 _("Command prefix for showing default thread properties."),
3460 &show_thread_default_cmd_list, "show thread default ", 0,
3461 &show_thread_cmd_list);
3462
3463 add_cmd ("pause", class_run, set_thread_pause_cmd, _("\
3464 Set whether the current thread is suspended while gdb has control.\n\
3465 A value of \"on\" takes effect immediately, otherwise nothing happens\n\
3466 until the next time the program is continued. This property normally\n\
3467 has no effect because the whole task is suspended, however, that may\n\
3468 be disabled with \"set task pause off\".\n\
3469 The default value is \"off\"."),
3470 &set_thread_cmd_list);
3471 add_cmd ("pause", no_class, show_thread_pause_cmd, _("\
3472 Show whether the current thread is suspended while gdb has control."),
3473 &show_thread_cmd_list);
3474
3475 add_cmd ("run", class_run, set_thread_run_cmd,
3476 _("Set whether the current thread is allowed to run."),
3477 &set_thread_cmd_list);
3478 add_cmd ("run", no_class, show_thread_run_cmd,
3479 _("Show whether the current thread is allowed to run."),
3480 &show_thread_cmd_list);
3481
3482 add_cmd ("detach-suspend-count", class_run, set_thread_detach_sc_cmd, _("\
3483 Set the suspend count will leave on the thread when detaching.\n\
3484 Note that this is relative to suspend count when gdb noticed the thread;\n\
3485 use the `thread takeover-suspend-count' to force it to an absolute value."),
3486 &set_thread_cmd_list);
3487 add_cmd ("detach-suspend-count", no_class, show_thread_detach_sc_cmd, _("\
3488 Show the suspend count will leave on the thread when detaching.\n\
3489 Note that this is relative to suspend count when gdb noticed the thread;\n\
3490 use the `thread takeover-suspend-count' to force it to an absolute value."),
3491 &show_thread_cmd_list);
3492
3493 add_cmd ("exception-port", no_class, set_thread_exc_port_cmd, _("\
3494 Set the thread exception port to which we forward exceptions.\n\
3495 This overrides the task exception port.\n\
3496 The argument should be the value of the send right in the task."),
3497 &set_thread_cmd_list);
3498 add_alias_cmd ("excp", "exception-port", no_class, 1, &set_thread_cmd_list);
3499 add_alias_cmd ("exc-port", "exception-port", no_class, 1,
3500 &set_thread_cmd_list);
3501
3502 add_cmd ("takeover-suspend-count", no_class, thread_takeover_sc_cmd, _("\
3503 Force the threads absolute suspend-count to be gdb's.\n\
3504 Prior to giving this command, gdb's thread suspend-counts are relative\n\
3505 to the thread's initial suspend-count when gdb notices the threads."),
3506 &thread_cmd_list);
3507 }
3508
3509 void
3510 _initialize_gnu_nat (void)
3511 {
3512 proc_server = getproc ();
3513
3514 add_task_commands ();
3515 add_thread_commands ();
3516 add_setshow_boolean_cmd ("gnu-nat", class_maintenance,
3517 &gnu_debug_flag,
3518 _("Set debugging output for the gnu backend."),
3519 _("Show debugging output for the gnu backend."),
3520 NULL,
3521 NULL,
3522 NULL,
3523 &setdebuglist,
3524 &showdebuglist);
3525 }
3526 \f
3527 #ifdef FLUSH_INFERIOR_CACHE
3528
3529 /* When over-writing code on some machines the I-Cache must be flushed
3530 explicitly, because it is not kept coherent by the lazy hardware.
3531 This definitely includes breakpoints, for instance, or else we
3532 end up looping in mysterious Bpt traps. */
3533
3534 void
3535 flush_inferior_icache (CORE_ADDR pc, int amount)
3536 {
3537 vm_machine_attribute_val_t flush = MATTR_VAL_ICACHE_FLUSH;
3538 kern_return_t ret;
3539
3540 ret = vm_machine_attribute (gnu_current_inf->task->port,
3541 pc,
3542 amount,
3543 MATTR_CACHE,
3544 &flush);
3545 if (ret != KERN_SUCCESS)
3546 warning (_("Error flushing inferior's cache : %s"), safe_strerror (ret));
3547 }
3548 #endif /* FLUSH_INFERIOR_CACHE */
This page took 0.100005 seconds and 5 git commands to generate.