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