hurd: add gnu_target pointer to fix thread API calls
[deliverable/binutils-gdb.git] / gdb / gnu-nat.c
1 /* Interface GDB to the GNU Hurd.
2 Copyright (C) 1992-2020 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 "gdbarch.h"
68 #include "gdbcmd.h"
69 #include "gdbcore.h"
70 #include "gdbthread.h"
71 #include "gdb_obstack.h"
72 #include "tid-parse.h"
73 #include "nat/fork-inferior.h"
74
75 #include "inf-child.h"
76
77 /* MIG stubs are not yet ready for C++ compilation. */
78 extern "C"
79 {
80 #include "exc_request_S.h"
81 #include "notify_S.h"
82 #include "process_reply_S.h"
83 #include "msg_reply_S.h"
84 #include "exc_request_U.h"
85 #include "msg_U.h"
86 }
87
88 struct gnu_nat_target *gnu_target;
89
90 static process_t proc_server = MACH_PORT_NULL;
91
92 /* If we've sent a proc_wait_request to the proc server, the pid of the
93 process we asked about. We can only ever have one outstanding. */
94 int proc_wait_pid = 0;
95
96 /* The number of wait requests we've sent, and expect replies from. */
97 int proc_waits_pending = 0;
98
99 bool gnu_debug_flag = false;
100
101 /* Forward decls */
102
103 static struct inf *make_inf ();
104 void inf_clear_wait (struct inf *inf);
105 void inf_cleanup (struct inf *inf);
106 void inf_startup (struct inf *inf, int pid);
107 int inf_update_suspends (struct inf *inf);
108 void inf_set_pid (struct inf *inf, pid_t pid);
109 void inf_validate_procs (struct inf *inf);
110 void inf_steal_exc_ports (struct inf *inf);
111 void inf_restore_exc_ports (struct inf *inf);
112 void inf_set_threads_resume_sc (struct inf *inf,
113 struct proc *run_thread,
114 int run_others);
115 int inf_set_threads_resume_sc_for_signal_thread (struct inf *inf);
116 void inf_suspend (struct inf *inf);
117 void inf_resume (struct inf *inf);
118 void inf_set_step_thread (struct inf *inf, struct proc *proc);
119 void inf_detach (struct inf *inf);
120 void inf_attach (struct inf *inf, int pid);
121 void inf_signal (struct inf *inf, enum gdb_signal sig);
122 void inf_continue (struct inf *inf);
123
124 #define inf_debug(_inf, msg, args...) \
125 do { struct inf *__inf = (_inf); \
126 debug ("{inf %d %s}: " msg, __inf->pid, \
127 host_address_to_string (__inf) , ##args); } while (0)
128
129 void proc_abort (struct proc *proc, int force);
130 struct proc *make_proc (struct inf *inf, mach_port_t port, int tid);
131 struct proc *_proc_free (struct proc *proc);
132 int proc_update_sc (struct proc *proc);
133 kern_return_t proc_get_exception_port (struct proc *proc, mach_port_t * port);
134 kern_return_t proc_set_exception_port (struct proc *proc, mach_port_t port);
135 static mach_port_t _proc_get_exc_port (struct proc *proc);
136 void proc_steal_exc_port (struct proc *proc, mach_port_t exc_port);
137 void proc_restore_exc_port (struct proc *proc);
138 int proc_trace (struct proc *proc, int set);
139
140 /* Evaluate RPC_EXPR in a scope with the variables MSGPORT and REFPORT bound
141 to INF's msg port and task port respectively. If it has no msg port,
142 EIEIO is returned. INF must refer to a running process! */
143 #define INF_MSGPORT_RPC(inf, rpc_expr) \
144 HURD_MSGPORT_RPC (proc_getmsgport (proc_server, inf->pid, &msgport), \
145 (refport = inf->task->port, 0), 0, \
146 msgport ? (rpc_expr) : EIEIO)
147
148 /* Like INF_MSGPORT_RPC, but will also resume the signal thread to ensure
149 there's someone around to deal with the RPC (and resuspend things
150 afterwards). This effects INF's threads' resume_sc count. */
151 #define INF_RESUME_MSGPORT_RPC(inf, rpc_expr) \
152 (inf_set_threads_resume_sc_for_signal_thread (inf) \
153 ? ({ kern_return_t __e; \
154 inf_resume (inf); \
155 __e = INF_MSGPORT_RPC (inf, rpc_expr); \
156 inf_suspend (inf); \
157 __e; }) \
158 : EIEIO)
159
160 \f
161 /* The state passed by an exception message. */
162 struct exc_state
163 {
164 int exception; /* The exception code. */
165 int code, subcode;
166 mach_port_t handler; /* The real exception port to handle this. */
167 mach_port_t reply; /* The reply port from the exception call. */
168 };
169
170 /* The results of the last wait an inf did. */
171 struct inf_wait
172 {
173 struct target_waitstatus status; /* The status returned to gdb. */
174 struct exc_state exc; /* The exception that caused us to return. */
175 struct proc *thread; /* The thread in question. */
176 int suppress; /* Something trivial happened. */
177 };
178
179 /* The state of an inferior. */
180 struct inf
181 {
182 /* Fields describing the current inferior. */
183
184 struct proc *task; /* The mach task. */
185 struct proc *threads; /* A linked list of all threads in TASK. */
186
187 /* True if THREADS needn't be validated by querying the task. We
188 assume that we and the task in question are the only ones
189 frobbing the thread list, so as long as we don't let any code
190 run, we don't have to worry about THREADS changing. */
191 int threads_up_to_date;
192
193 pid_t pid; /* The real system PID. */
194
195 struct inf_wait wait; /* What to return from target_wait. */
196
197 /* One thread proc in INF may be in `single-stepping mode'. This
198 is it. */
199 struct proc *step_thread;
200
201 /* The thread we think is the signal thread. */
202 struct proc *signal_thread;
203
204 mach_port_t event_port; /* Where we receive various msgs. */
205
206 /* True if we think at least one thread in the inferior could currently be
207 running. */
208 unsigned int running:1;
209
210 /* True if the process has stopped (in the proc server sense). Note that
211 since a proc server `stop' leaves the signal thread running, the inf can
212 be RUNNING && STOPPED... */
213 unsigned int stopped:1;
214
215 /* True if the inferior has no message port. */
216 unsigned int nomsg:1;
217
218 /* True if the inferior is traced. */
219 unsigned int traced:1;
220
221 /* True if we shouldn't try waiting for the inferior, usually because we
222 can't for some reason. */
223 unsigned int no_wait:1;
224
225 /* When starting a new inferior, we don't try to validate threads until all
226 the proper execs have been done, which this flag states we still
227 expect to happen. */
228 unsigned int pending_execs:1;
229
230 /* Fields describing global state. */
231
232 /* The task suspend count used when gdb has control. This is normally 1 to
233 make things easier for us, but sometimes (like when attaching to vital
234 system servers) it may be desirable to let the task continue to run
235 (pausing individual threads as necessary). */
236 int pause_sc;
237
238 /* The task suspend count left when detaching from a task. */
239 int detach_sc;
240
241 /* The initial values used for the run_sc and pause_sc of newly discovered
242 threads -- see the definition of those fields in struct proc. */
243 int default_thread_run_sc;
244 int default_thread_pause_sc;
245 int default_thread_detach_sc;
246
247 /* True if the process should be traced when started/attached. Newly
248 started processes *must* be traced at first to exec them properly, but
249 if this is false, tracing is turned off as soon it has done so. */
250 int want_signals;
251
252 /* True if exceptions from the inferior process should be trapped. This
253 must be on to use breakpoints. */
254 int want_exceptions;
255 };
256
257
258 int
259 __proc_pid (struct proc *proc)
260 {
261 return proc->inf->pid;
262 }
263
264 \f
265 /* Update PROC's real suspend count to match it's desired one. Returns true
266 if we think PROC is now in a runnable state. */
267 int
268 proc_update_sc (struct proc *proc)
269 {
270 int running;
271 int err = 0;
272 int delta = proc->sc - proc->cur_sc;
273
274 if (delta)
275 proc_debug (proc, "sc: %d --> %d", proc->cur_sc, proc->sc);
276
277 if (proc->sc == 0 && proc->state_changed)
278 /* Since PROC may start running, we must write back any state changes. */
279 {
280 gdb_assert (proc_is_thread (proc));
281 proc_debug (proc, "storing back changed thread state");
282 err = thread_set_state (proc->port, THREAD_STATE_FLAVOR,
283 (thread_state_t) &proc->state, THREAD_STATE_SIZE);
284 if (!err)
285 proc->state_changed = 0;
286 }
287
288 if (delta > 0)
289 {
290 while (delta-- > 0 && !err)
291 {
292 if (proc_is_task (proc))
293 err = task_suspend (proc->port);
294 else
295 err = thread_suspend (proc->port);
296 }
297 }
298 else
299 {
300 while (delta++ < 0 && !err)
301 {
302 if (proc_is_task (proc))
303 err = task_resume (proc->port);
304 else
305 err = thread_resume (proc->port);
306 }
307 }
308 if (!err)
309 proc->cur_sc = proc->sc;
310
311 /* If we got an error, then the task/thread has disappeared. */
312 running = !err && proc->sc == 0;
313
314 proc_debug (proc, "is %s", err ? "dead" : running ? "running" : "suspended");
315 if (err)
316 proc_debug (proc, "err = %s", safe_strerror (err));
317
318 if (running)
319 {
320 proc->aborted = 0;
321 proc->state_valid = proc->state_changed = 0;
322 proc->fetched_regs = 0;
323 }
324
325 return running;
326 }
327
328 \f
329 /* Thread_abort is called on PROC if needed. PROC must be a thread proc.
330 If PROC is deemed `precious', then nothing is done unless FORCE is true.
331 In particular, a thread is precious if it's running (in which case forcing
332 it includes suspending it first), or if it has an exception pending. */
333 void
334 proc_abort (struct proc *proc, int force)
335 {
336 gdb_assert (proc_is_thread (proc));
337
338 if (!proc->aborted)
339 {
340 struct inf *inf = proc->inf;
341 int running = (proc->cur_sc == 0 && inf->task->cur_sc == 0);
342
343 if (running && force)
344 {
345 proc->sc = 1;
346 inf_update_suspends (proc->inf);
347 running = 0;
348 warning (_("Stopped %s."), proc_string (proc));
349 }
350 else if (proc == inf->wait.thread && inf->wait.exc.reply && !force)
351 /* An exception is pending on PROC, which don't mess with. */
352 running = 1;
353
354 if (!running)
355 /* We only abort the thread if it's not actually running. */
356 {
357 thread_abort (proc->port);
358 proc_debug (proc, "aborted");
359 proc->aborted = 1;
360 }
361 else
362 proc_debug (proc, "not aborting");
363 }
364 }
365
366 /* Make sure that the state field in PROC is up to date, and return a pointer
367 to it, or 0 if something is wrong. If WILL_MODIFY is true, makes sure
368 that the thread is stopped and aborted first, and sets the state_changed
369 field in PROC to true. */
370 thread_state_t
371 proc_get_state (struct proc *proc, int will_modify)
372 {
373 int was_aborted = proc->aborted;
374
375 proc_debug (proc, "updating state info%s",
376 will_modify ? " (with intention to modify)" : "");
377
378 proc_abort (proc, will_modify);
379
380 if (!was_aborted && proc->aborted)
381 /* PROC's state may have changed since we last fetched it. */
382 proc->state_valid = 0;
383
384 if (!proc->state_valid)
385 {
386 mach_msg_type_number_t state_size = THREAD_STATE_SIZE;
387 kern_return_t err =
388 thread_get_state (proc->port, THREAD_STATE_FLAVOR,
389 (thread_state_t) &proc->state, &state_size);
390
391 proc_debug (proc, "getting thread state");
392 proc->state_valid = !err;
393 }
394
395 if (proc->state_valid)
396 {
397 if (will_modify)
398 proc->state_changed = 1;
399 return (thread_state_t) &proc->state;
400 }
401 else
402 return 0;
403 }
404
405 \f
406 /* Set PORT to PROC's exception port. */
407 kern_return_t
408 proc_get_exception_port (struct proc * proc, mach_port_t * port)
409 {
410 if (proc_is_task (proc))
411 return task_get_exception_port (proc->port, port);
412 else
413 return thread_get_exception_port (proc->port, port);
414 }
415
416 /* Set PROC's exception port to PORT. */
417 kern_return_t
418 proc_set_exception_port (struct proc * proc, mach_port_t port)
419 {
420 proc_debug (proc, "setting exception port: %lu", port);
421 if (proc_is_task (proc))
422 return task_set_exception_port (proc->port, port);
423 else
424 return thread_set_exception_port (proc->port, port);
425 }
426
427 /* Get PROC's exception port, cleaning up a bit if proc has died. */
428 static mach_port_t
429 _proc_get_exc_port (struct proc *proc)
430 {
431 mach_port_t exc_port;
432 kern_return_t err = proc_get_exception_port (proc, &exc_port);
433
434 if (err)
435 /* PROC must be dead. */
436 {
437 if (proc->exc_port)
438 mach_port_deallocate (mach_task_self (), proc->exc_port);
439 proc->exc_port = MACH_PORT_NULL;
440 if (proc->saved_exc_port)
441 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
442 proc->saved_exc_port = MACH_PORT_NULL;
443 }
444
445 return exc_port;
446 }
447
448 /* Replace PROC's exception port with EXC_PORT, unless it's already
449 been done. Stash away any existing exception port so we can
450 restore it later. */
451 void
452 proc_steal_exc_port (struct proc *proc, mach_port_t exc_port)
453 {
454 mach_port_t cur_exc_port = _proc_get_exc_port (proc);
455
456 if (cur_exc_port)
457 {
458 kern_return_t err = 0;
459
460 proc_debug (proc, "inserting exception port: %lu", exc_port);
461
462 if (cur_exc_port != exc_port)
463 /* Put in our exception port. */
464 err = proc_set_exception_port (proc, exc_port);
465
466 if (err || cur_exc_port == proc->exc_port)
467 /* We previously set the exception port, and it's still set. So we
468 just keep the old saved port which is what the proc set. */
469 {
470 if (cur_exc_port)
471 mach_port_deallocate (mach_task_self (), cur_exc_port);
472 }
473 else
474 /* Keep a copy of PROC's old exception port so it can be restored. */
475 {
476 if (proc->saved_exc_port)
477 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
478 proc->saved_exc_port = cur_exc_port;
479 }
480
481 proc_debug (proc, "saved exception port: %lu", proc->saved_exc_port);
482
483 if (!err)
484 proc->exc_port = exc_port;
485 else
486 warning (_("Error setting exception port for %s: %s"),
487 proc_string (proc), safe_strerror (err));
488 }
489 }
490
491 /* If we previously replaced PROC's exception port, put back what we
492 found there at the time, unless *our* exception port has since been
493 overwritten, in which case who knows what's going on. */
494 void
495 proc_restore_exc_port (struct proc *proc)
496 {
497 mach_port_t cur_exc_port = _proc_get_exc_port (proc);
498
499 if (cur_exc_port)
500 {
501 kern_return_t err = 0;
502
503 proc_debug (proc, "restoring real exception port");
504
505 if (proc->exc_port == cur_exc_port)
506 /* Our's is still there. */
507 err = proc_set_exception_port (proc, proc->saved_exc_port);
508
509 if (proc->saved_exc_port)
510 mach_port_deallocate (mach_task_self (), proc->saved_exc_port);
511 proc->saved_exc_port = MACH_PORT_NULL;
512
513 if (!err)
514 proc->exc_port = MACH_PORT_NULL;
515 else
516 warning (_("Error setting exception port for %s: %s"),
517 proc_string (proc), safe_strerror (err));
518 }
519 }
520
521 \f
522 /* Turns hardware tracing in PROC on or off when SET is true or false,
523 respectively. Returns true on success. */
524 int
525 proc_trace (struct proc *proc, int set)
526 {
527 thread_state_t state = proc_get_state (proc, 1);
528
529 if (!state)
530 return 0; /* The thread must be dead. */
531
532 proc_debug (proc, "tracing %s", set ? "on" : "off");
533
534 if (set)
535 {
536 /* XXX We don't get the exception unless the thread has its own
537 exception port???? */
538 if (proc->exc_port == MACH_PORT_NULL)
539 proc_steal_exc_port (proc, proc->inf->event_port);
540 THREAD_STATE_SET_TRACED (state);
541 }
542 else
543 THREAD_STATE_CLEAR_TRACED (state);
544
545 return 1;
546 }
547
548 \f
549 /* A variable from which to assign new TIDs. */
550 static int next_thread_id = 1;
551
552 /* Returns a new proc structure with the given fields. Also adds a
553 notification for PORT becoming dead to be sent to INF's notify port. */
554 struct proc *
555 make_proc (struct inf *inf, mach_port_t port, int tid)
556 {
557 kern_return_t err;
558 mach_port_t prev_port = MACH_PORT_NULL;
559 struct proc *proc = XNEW (struct proc);
560
561 proc->port = port;
562 proc->tid = tid;
563 proc->inf = inf;
564 proc->next = 0;
565 proc->saved_exc_port = MACH_PORT_NULL;
566 proc->exc_port = MACH_PORT_NULL;
567
568 proc->sc = 0;
569 proc->cur_sc = 0;
570
571 /* Note that these are all the values for threads; the task simply uses the
572 corresponding field in INF directly. */
573 proc->run_sc = inf->default_thread_run_sc;
574 proc->pause_sc = inf->default_thread_pause_sc;
575 proc->detach_sc = inf->default_thread_detach_sc;
576 proc->resume_sc = proc->run_sc;
577
578 proc->aborted = 0;
579 proc->dead = 0;
580 proc->state_valid = 0;
581 proc->state_changed = 0;
582
583 proc_debug (proc, "is new");
584
585 /* Get notified when things die. */
586 err =
587 mach_port_request_notification (mach_task_self (), port,
588 MACH_NOTIFY_DEAD_NAME, 1,
589 inf->event_port,
590 MACH_MSG_TYPE_MAKE_SEND_ONCE,
591 &prev_port);
592 if (err)
593 warning (_("Couldn't request notification for port %lu: %s"),
594 port, safe_strerror (err));
595 else
596 {
597 proc_debug (proc, "notifications to: %lu", inf->event_port);
598 if (prev_port != MACH_PORT_NULL)
599 mach_port_deallocate (mach_task_self (), prev_port);
600 }
601
602 if (inf->want_exceptions)
603 {
604 if (proc_is_task (proc))
605 /* Make the task exception port point to us. */
606 proc_steal_exc_port (proc, inf->event_port);
607 else
608 /* Just clear thread exception ports -- they default to the
609 task one. */
610 proc_steal_exc_port (proc, MACH_PORT_NULL);
611 }
612
613 return proc;
614 }
615
616 /* Frees PROC and any resources it uses, and returns the value of PROC's
617 next field. */
618 struct proc *
619 _proc_free (struct proc *proc)
620 {
621 struct inf *inf = proc->inf;
622 struct proc *next = proc->next;
623
624 proc_debug (proc, "freeing...");
625
626 if (proc == inf->step_thread)
627 /* Turn off single stepping. */
628 inf_set_step_thread (inf, 0);
629 if (proc == inf->wait.thread)
630 inf_clear_wait (inf);
631 if (proc == inf->signal_thread)
632 inf->signal_thread = 0;
633
634 if (proc->port != MACH_PORT_NULL)
635 {
636 if (proc->exc_port != MACH_PORT_NULL)
637 /* Restore the original exception port. */
638 proc_restore_exc_port (proc);
639 if (proc->cur_sc != 0)
640 /* Resume the thread/task. */
641 {
642 proc->sc = 0;
643 proc_update_sc (proc);
644 }
645 mach_port_deallocate (mach_task_self (), proc->port);
646 }
647
648 xfree (proc);
649 return next;
650 }
651
652 \f
653 static struct inf *
654 make_inf (void)
655 {
656 struct inf *inf = XNEW (struct inf);
657
658 inf->task = 0;
659 inf->threads = 0;
660 inf->threads_up_to_date = 0;
661 inf->pid = 0;
662 inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS;
663 inf->wait.thread = 0;
664 inf->wait.exc.handler = MACH_PORT_NULL;
665 inf->wait.exc.reply = MACH_PORT_NULL;
666 inf->step_thread = 0;
667 inf->signal_thread = 0;
668 inf->event_port = MACH_PORT_NULL;
669 inf->running = 0;
670 inf->stopped = 0;
671 inf->nomsg = 1;
672 inf->traced = 0;
673 inf->no_wait = 0;
674 inf->pending_execs = 0;
675 inf->pause_sc = 1;
676 inf->detach_sc = 0;
677 inf->default_thread_run_sc = 0;
678 inf->default_thread_pause_sc = 0;
679 inf->default_thread_detach_sc = 0;
680 inf->want_signals = 1; /* By default */
681 inf->want_exceptions = 1; /* By default */
682
683 return inf;
684 }
685
686 /* Clear INF's target wait status. */
687 void
688 inf_clear_wait (struct inf *inf)
689 {
690 inf_debug (inf, "clearing wait");
691 inf->wait.status.kind = TARGET_WAITKIND_SPURIOUS;
692 inf->wait.thread = 0;
693 inf->wait.suppress = 0;
694 if (inf->wait.exc.handler != MACH_PORT_NULL)
695 {
696 mach_port_deallocate (mach_task_self (), inf->wait.exc.handler);
697 inf->wait.exc.handler = MACH_PORT_NULL;
698 }
699 if (inf->wait.exc.reply != MACH_PORT_NULL)
700 {
701 mach_port_deallocate (mach_task_self (), inf->wait.exc.reply);
702 inf->wait.exc.reply = MACH_PORT_NULL;
703 }
704 }
705
706 \f
707 void
708 inf_cleanup (struct inf *inf)
709 {
710 inf_debug (inf, "cleanup");
711
712 inf_clear_wait (inf);
713
714 inf_set_pid (inf, -1);
715 inf->pid = 0;
716 inf->running = 0;
717 inf->stopped = 0;
718 inf->nomsg = 1;
719 inf->traced = 0;
720 inf->no_wait = 0;
721 inf->pending_execs = 0;
722
723 if (inf->event_port)
724 {
725 mach_port_destroy (mach_task_self (), inf->event_port);
726 inf->event_port = MACH_PORT_NULL;
727 }
728 }
729
730 void
731 inf_startup (struct inf *inf, int pid)
732 {
733 kern_return_t err;
734
735 inf_debug (inf, "startup: pid = %d", pid);
736
737 inf_cleanup (inf);
738
739 /* Make the port on which we receive all events. */
740 err = mach_port_allocate (mach_task_self (),
741 MACH_PORT_RIGHT_RECEIVE, &inf->event_port);
742 if (err)
743 error (_("Error allocating event port: %s"), safe_strerror (err));
744
745 /* Make a send right for it, so we can easily copy it for other people. */
746 mach_port_insert_right (mach_task_self (), inf->event_port,
747 inf->event_port, MACH_MSG_TYPE_MAKE_SEND);
748 inf_set_pid (inf, pid);
749 }
750
751 \f
752 /* Close current process, if any, and attach INF to process PORT. */
753 void
754 inf_set_pid (struct inf *inf, pid_t pid)
755 {
756 task_t task_port;
757 struct proc *task = inf->task;
758
759 inf_debug (inf, "setting pid: %d", pid);
760
761 if (pid < 0)
762 task_port = MACH_PORT_NULL;
763 else
764 {
765 kern_return_t err = proc_pid2task (proc_server, pid, &task_port);
766
767 if (err)
768 error (_("Error getting task for pid %d: %s"),
769 pid, safe_strerror (err));
770 }
771
772 inf_debug (inf, "setting task: %lu", task_port);
773
774 if (inf->pause_sc)
775 task_suspend (task_port);
776
777 if (task && task->port != task_port)
778 {
779 inf->task = 0;
780 inf_validate_procs (inf); /* Trash all the threads. */
781 _proc_free (task); /* And the task. */
782 }
783
784 if (task_port != MACH_PORT_NULL)
785 {
786 inf->task = make_proc (inf, task_port, PROC_TID_TASK);
787 inf->threads_up_to_date = 0;
788 }
789
790 if (inf->task)
791 {
792 inf->pid = pid;
793 if (inf->pause_sc)
794 /* Reflect task_suspend above. */
795 inf->task->sc = inf->task->cur_sc = 1;
796 }
797 else
798 inf->pid = -1;
799 }
800
801 \f
802 /* Validates INF's stopped, nomsg and traced field from the actual
803 proc server state. Note that the traced field is only updated from
804 the proc server state if we do not have a message port. If we do
805 have a message port we'd better look at the tracemask itself. */
806 static void
807 inf_validate_procinfo (struct inf *inf)
808 {
809 char *noise;
810 mach_msg_type_number_t noise_len = 0;
811 struct procinfo *pi;
812 mach_msg_type_number_t pi_len = 0;
813 int info_flags = 0;
814 kern_return_t err =
815 proc_getprocinfo (proc_server, inf->pid, &info_flags,
816 (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
817
818 if (!err)
819 {
820 inf->stopped = !!(pi->state & PI_STOPPED);
821 inf->nomsg = !!(pi->state & PI_NOMSG);
822 if (inf->nomsg)
823 inf->traced = !!(pi->state & PI_TRACED);
824 vm_deallocate (mach_task_self (), (vm_address_t) pi,
825 pi_len * sizeof (*(procinfo_t) 0));
826 if (noise_len > 0)
827 vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len);
828 }
829 }
830
831 /* Validates INF's task suspend count. If it's higher than we expect,
832 verify with the user before `stealing' the extra count. */
833 static void
834 inf_validate_task_sc (struct inf *inf)
835 {
836 char *noise;
837 mach_msg_type_number_t noise_len = 0;
838 struct procinfo *pi;
839 mach_msg_type_number_t pi_len = 0;
840 int info_flags = PI_FETCH_TASKINFO;
841 int suspend_count = -1;
842 kern_return_t err;
843
844 retry:
845 err = proc_getprocinfo (proc_server, inf->pid, &info_flags,
846 (procinfo_t *) &pi, &pi_len, &noise, &noise_len);
847 if (err)
848 {
849 inf->task->dead = 1; /* oh well */
850 return;
851 }
852
853 if (inf->task->cur_sc < pi->taskinfo.suspend_count && suspend_count == -1)
854 {
855 /* The proc server might have suspended the task while stopping
856 it. This happens when the task is handling a traced signal.
857 Refetch the suspend count. The proc server should be
858 finished stopping the task by now. */
859 suspend_count = pi->taskinfo.suspend_count;
860 goto retry;
861 }
862
863 suspend_count = pi->taskinfo.suspend_count;
864
865 vm_deallocate (mach_task_self (), (vm_address_t) pi,
866 pi_len * sizeof (*(procinfo_t) 0));
867 if (noise_len > 0)
868 vm_deallocate (mach_task_self (), (vm_address_t) noise, noise_len);
869
870 if (inf->task->cur_sc < suspend_count)
871 {
872 if (!query (_("Pid %d has an additional task suspend count of %d;"
873 " clear it? "), inf->pid,
874 suspend_count - inf->task->cur_sc))
875 error (_("Additional task suspend count left untouched."));
876
877 inf->task->cur_sc = suspend_count;
878 }
879 }
880
881 /* Turns tracing for INF on or off, depending on ON, unless it already
882 is. If INF is running, the resume_sc count of INF's threads will
883 be modified, and the signal thread will briefly be run to change
884 the trace state. */
885 static void
886 inf_set_traced (struct inf *inf, int on)
887 {
888 if (on == inf->traced)
889 return;
890
891 if (inf->task && !inf->task->dead)
892 /* Make it take effect immediately. */
893 {
894 sigset_t mask = on ? ~(sigset_t) 0 : 0;
895 kern_return_t err =
896 INF_RESUME_MSGPORT_RPC (inf, msg_set_init_int (msgport, refport,
897 INIT_TRACEMASK, mask));
898
899 if (err == EIEIO)
900 {
901 if (on)
902 warning (_("Can't modify tracing state for pid %d: %s"),
903 inf->pid, "No signal thread");
904 inf->traced = on;
905 }
906 else if (err)
907 warning (_("Can't modify tracing state for pid %d: %s"),
908 inf->pid, safe_strerror (err));
909 else
910 inf->traced = on;
911 }
912 else
913 inf->traced = on;
914 }
915
916 \f
917 /* Makes all the real suspend count deltas of all the procs in INF
918 match the desired values. Careful to always do thread/task suspend
919 counts in the safe order. Returns true if at least one thread is
920 thought to be running. */
921 int
922 inf_update_suspends (struct inf *inf)
923 {
924 struct proc *task = inf->task;
925
926 /* We don't have to update INF->threads even though we're iterating over it
927 because we'll change a thread only if it already has an existing proc
928 entry. */
929 inf_debug (inf, "updating suspend counts");
930
931 if (task)
932 {
933 struct proc *thread;
934 int task_running = (task->sc == 0), thread_running = 0;
935
936 if (task->sc > task->cur_sc)
937 /* The task is becoming _more_ suspended; do before any threads. */
938 task_running = proc_update_sc (task);
939
940 if (inf->pending_execs)
941 /* When we're waiting for an exec, things may be happening behind our
942 back, so be conservative. */
943 thread_running = 1;
944
945 /* Do all the thread suspend counts. */
946 for (thread = inf->threads; thread; thread = thread->next)
947 thread_running |= proc_update_sc (thread);
948
949 if (task->sc != task->cur_sc)
950 /* We didn't do the task first, because we wanted to wait for the
951 threads; do it now. */
952 task_running = proc_update_sc (task);
953
954 inf_debug (inf, "%srunning...",
955 (thread_running && task_running) ? "" : "not ");
956
957 inf->running = thread_running && task_running;
958
959 /* Once any thread has executed some code, we can't depend on the
960 threads list any more. */
961 if (inf->running)
962 inf->threads_up_to_date = 0;
963
964 return inf->running;
965 }
966
967 return 0;
968 }
969
970 \f
971 /* Converts a GDB pid to a struct proc. */
972 struct proc *
973 inf_tid_to_thread (struct inf *inf, int tid)
974 {
975 struct proc *thread = inf->threads;
976
977 while (thread)
978 if (thread->tid == tid)
979 return thread;
980 else
981 thread = thread->next;
982 return 0;
983 }
984
985 /* Converts a thread port to a struct proc. */
986 static struct proc *
987 inf_port_to_thread (struct inf *inf, mach_port_t port)
988 {
989 struct proc *thread = inf->threads;
990
991 while (thread)
992 if (thread->port == port)
993 return thread;
994 else
995 thread = thread->next;
996 return 0;
997 }
998
999 /* See gnu-nat.h. */
1000
1001 void
1002 inf_threads (struct inf *inf, inf_threads_ftype *f, void *arg)
1003 {
1004 struct proc *thread;
1005
1006 for (thread = inf->threads; thread; thread = thread->next)
1007 f (thread, arg);
1008 }
1009
1010 \f
1011 /* Make INF's list of threads be consistent with reality of TASK. */
1012 void
1013 inf_validate_procs (struct inf *inf)
1014 {
1015 thread_array_t threads;
1016 mach_msg_type_number_t num_threads, i;
1017 struct proc *task = inf->task;
1018
1019 /* If no threads are currently running, this function will guarantee that
1020 things are up to date. The exception is if there are zero threads --
1021 then it is almost certainly in an odd state, and probably some outside
1022 agent will create threads. */
1023 inf->threads_up_to_date = inf->threads ? !inf->running : 0;
1024
1025 if (task)
1026 {
1027 kern_return_t err = task_threads (task->port, &threads, &num_threads);
1028
1029 inf_debug (inf, "fetching threads");
1030 if (err)
1031 /* TASK must be dead. */
1032 {
1033 task->dead = 1;
1034 task = 0;
1035 }
1036 }
1037
1038 if (!task)
1039 {
1040 num_threads = 0;
1041 inf_debug (inf, "no task");
1042 }
1043
1044 {
1045 /* Make things normally linear. */
1046 mach_msg_type_number_t search_start = 0;
1047 /* Which thread in PROCS corresponds to each task thread, & the task. */
1048 struct proc *matched[num_threads + 1];
1049 /* The last thread in INF->threads, so we can add to the end. */
1050 struct proc *last = 0;
1051 /* The current thread we're considering. */
1052 struct proc *thread = inf->threads;
1053
1054 memset (matched, 0, sizeof (matched));
1055
1056 while (thread)
1057 {
1058 mach_msg_type_number_t left;
1059
1060 for (i = search_start, left = num_threads; left; i++, left--)
1061 {
1062 if (i >= num_threads)
1063 i -= num_threads; /* I wrapped around. */
1064 if (thread->port == threads[i])
1065 /* We already know about this thread. */
1066 {
1067 matched[i] = thread;
1068 last = thread;
1069 thread = thread->next;
1070 search_start++;
1071 break;
1072 }
1073 }
1074
1075 if (!left)
1076 {
1077 proc_debug (thread, "died!");
1078 thread->port = MACH_PORT_NULL;
1079 thread = _proc_free (thread); /* THREAD is dead. */
1080 if (last)
1081 last->next = thread;
1082 else
1083 inf->threads = thread;
1084 }
1085 }
1086
1087 for (i = 0; i < num_threads; i++)
1088 {
1089 if (matched[i])
1090 /* Throw away the duplicate send right. */
1091 mach_port_deallocate (mach_task_self (), threads[i]);
1092 else
1093 /* THREADS[I] is a thread we don't know about yet! */
1094 {
1095 ptid_t ptid;
1096
1097 thread = make_proc (inf, threads[i], next_thread_id++);
1098 if (last)
1099 last->next = thread;
1100 else
1101 inf->threads = thread;
1102 last = thread;
1103 proc_debug (thread, "new thread: %lu", threads[i]);
1104
1105 ptid = ptid_t (inf->pid, thread->tid, 0);
1106
1107 /* Tell GDB's generic thread code. */
1108
1109 if (inferior_ptid == ptid_t (inf->pid))
1110 /* This is the first time we're hearing about thread
1111 ids, after a fork-child. */
1112 thread_change_ptid (gnu_target, inferior_ptid, ptid);
1113 else if (inf->pending_execs != 0)
1114 /* This is a shell thread. */
1115 add_thread_silent (gnu_target, ptid);
1116 else
1117 add_thread (gnu_target, ptid);
1118 }
1119 }
1120
1121 vm_deallocate (mach_task_self (),
1122 (vm_address_t) threads, (num_threads * sizeof (thread_t)));
1123 }
1124 }
1125
1126 \f
1127 /* Makes sure that INF's thread list is synced with the actual process. */
1128 int
1129 inf_update_procs (struct inf *inf)
1130 {
1131 if (!inf->task)
1132 return 0;
1133 if (!inf->threads_up_to_date)
1134 inf_validate_procs (inf);
1135 return !!inf->task;
1136 }
1137
1138 /* Sets the resume_sc of each thread in inf. That of RUN_THREAD is set to 0,
1139 and others are set to their run_sc if RUN_OTHERS is true, and otherwise
1140 their pause_sc. */
1141 void
1142 inf_set_threads_resume_sc (struct inf *inf,
1143 struct proc *run_thread, int run_others)
1144 {
1145 struct proc *thread;
1146
1147 inf_update_procs (inf);
1148 for (thread = inf->threads; thread; thread = thread->next)
1149 if (thread == run_thread)
1150 thread->resume_sc = 0;
1151 else if (run_others)
1152 thread->resume_sc = thread->run_sc;
1153 else
1154 thread->resume_sc = thread->pause_sc;
1155 }
1156
1157 \f
1158 /* Cause INF to continue execution immediately; individual threads may still
1159 be suspended (but their suspend counts will be updated). */
1160 void
1161 inf_resume (struct inf *inf)
1162 {
1163 struct proc *thread;
1164
1165 inf_update_procs (inf);
1166
1167 for (thread = inf->threads; thread; thread = thread->next)
1168 thread->sc = thread->resume_sc;
1169
1170 if (inf->task)
1171 {
1172 if (!inf->pending_execs)
1173 /* Try to make sure our task count is correct -- in the case where
1174 we're waiting for an exec though, things are too volatile, so just
1175 assume things will be reasonable (which they usually will be). */
1176 inf_validate_task_sc (inf);
1177 inf->task->sc = 0;
1178 }
1179
1180 inf_update_suspends (inf);
1181 }
1182
1183 /* Cause INF to stop execution immediately; individual threads may still
1184 be running. */
1185 void
1186 inf_suspend (struct inf *inf)
1187 {
1188 struct proc *thread;
1189
1190 inf_update_procs (inf);
1191
1192 for (thread = inf->threads; thread; thread = thread->next)
1193 thread->sc = thread->pause_sc;
1194
1195 if (inf->task)
1196 inf->task->sc = inf->pause_sc;
1197
1198 inf_update_suspends (inf);
1199 }
1200
1201 \f
1202 /* INF has one thread PROC that is in single-stepping mode. This
1203 function changes it to be PROC, changing any old step_thread to be
1204 a normal one. A PROC of 0 clears any existing value. */
1205 void
1206 inf_set_step_thread (struct inf *inf, struct proc *thread)
1207 {
1208 gdb_assert (!thread || proc_is_thread (thread));
1209
1210 if (thread)
1211 inf_debug (inf, "setting step thread: %d/%d", inf->pid, thread->tid);
1212 else
1213 inf_debug (inf, "clearing step thread");
1214
1215 if (inf->step_thread != thread)
1216 {
1217 if (inf->step_thread && inf->step_thread->port != MACH_PORT_NULL)
1218 if (!proc_trace (inf->step_thread, 0))
1219 return;
1220 if (thread && proc_trace (thread, 1))
1221 inf->step_thread = thread;
1222 else
1223 inf->step_thread = 0;
1224 }
1225 }
1226
1227 \f
1228 /* Set up the thread resume_sc's so that only the signal thread is running
1229 (plus whatever other thread are set to always run). Returns true if we
1230 did so, or false if we can't find a signal thread. */
1231 int
1232 inf_set_threads_resume_sc_for_signal_thread (struct inf *inf)
1233 {
1234 if (inf->signal_thread)
1235 {
1236 inf_set_threads_resume_sc (inf, inf->signal_thread, 0);
1237 return 1;
1238 }
1239 else
1240 return 0;
1241 }
1242
1243 static void
1244 inf_update_signal_thread (struct inf *inf)
1245 {
1246 /* XXX for now we assume that if there's a msgport, the 2nd thread is
1247 the signal thread. */
1248 inf->signal_thread = inf->threads ? inf->threads->next : 0;
1249 }
1250
1251 \f
1252 /* Detachs from INF's inferior task, letting it run once again... */
1253 void
1254 inf_detach (struct inf *inf)
1255 {
1256 struct proc *task = inf->task;
1257
1258 inf_debug (inf, "detaching...");
1259
1260 inf_clear_wait (inf);
1261 inf_set_step_thread (inf, 0);
1262
1263 if (task)
1264 {
1265 struct proc *thread;
1266
1267 inf_validate_procinfo (inf);
1268
1269 inf_set_traced (inf, 0);
1270 if (inf->stopped)
1271 {
1272 if (inf->nomsg)
1273 inf_continue (inf);
1274 else
1275 inf_signal (inf, GDB_SIGNAL_0);
1276 }
1277
1278 proc_restore_exc_port (task);
1279 task->sc = inf->detach_sc;
1280
1281 for (thread = inf->threads; thread; thread = thread->next)
1282 {
1283 proc_restore_exc_port (thread);
1284 thread->sc = thread->detach_sc;
1285 }
1286
1287 inf_update_suspends (inf);
1288 }
1289
1290 inf_cleanup (inf);
1291 }
1292
1293 /* Attaches INF to the process with process id PID, returning it in a
1294 suspended state suitable for debugging. */
1295 void
1296 inf_attach (struct inf *inf, int pid)
1297 {
1298 inf_debug (inf, "attaching: %d", pid);
1299
1300 if (inf->pid)
1301 inf_detach (inf);
1302
1303 inf_startup (inf, pid);
1304 }
1305
1306 \f
1307 /* Makes sure that we've got our exception ports entrenched in the process. */
1308 void
1309 inf_steal_exc_ports (struct inf *inf)
1310 {
1311 struct proc *thread;
1312
1313 inf_debug (inf, "stealing exception ports");
1314
1315 inf_set_step_thread (inf, 0); /* The step thread is special. */
1316
1317 proc_steal_exc_port (inf->task, inf->event_port);
1318 for (thread = inf->threads; thread; thread = thread->next)
1319 proc_steal_exc_port (thread, MACH_PORT_NULL);
1320 }
1321
1322 /* Makes sure the process has its own exception ports. */
1323 void
1324 inf_restore_exc_ports (struct inf *inf)
1325 {
1326 struct proc *thread;
1327
1328 inf_debug (inf, "restoring exception ports");
1329
1330 inf_set_step_thread (inf, 0); /* The step thread is special. */
1331
1332 proc_restore_exc_port (inf->task);
1333 for (thread = inf->threads; thread; thread = thread->next)
1334 proc_restore_exc_port (thread);
1335 }
1336
1337 \f
1338 /* Deliver signal SIG to INF. If INF is stopped, delivering a signal, even
1339 signal 0, will continue it. INF is assumed to be in a paused state, and
1340 the resume_sc's of INF's threads may be affected. */
1341 void
1342 inf_signal (struct inf *inf, enum gdb_signal sig)
1343 {
1344 kern_return_t err = 0;
1345 int host_sig = gdb_signal_to_host (sig);
1346
1347 #define NAME gdb_signal_to_name (sig)
1348
1349 if (host_sig >= _NSIG)
1350 /* A mach exception. Exceptions are encoded in the signal space by
1351 putting them after _NSIG; this assumes they're positive (and not
1352 extremely large)! */
1353 {
1354 struct inf_wait *w = &inf->wait;
1355
1356 if (w->status.kind == TARGET_WAITKIND_STOPPED
1357 && w->status.value.sig == sig
1358 && w->thread && !w->thread->aborted)
1359 /* We're passing through the last exception we received. This is
1360 kind of bogus, because exceptions are per-thread whereas gdb
1361 treats signals as per-process. We just forward the exception to
1362 the correct handler, even it's not for the same thread as TID --
1363 i.e., we pretend it's global. */
1364 {
1365 struct exc_state *e = &w->exc;
1366
1367 inf_debug (inf, "passing through exception:"
1368 " task = %lu, thread = %lu, exc = %d"
1369 ", code = %d, subcode = %d",
1370 w->thread->port, inf->task->port,
1371 e->exception, e->code, e->subcode);
1372 err =
1373 exception_raise_request (e->handler,
1374 e->reply, MACH_MSG_TYPE_MOVE_SEND_ONCE,
1375 w->thread->port, inf->task->port,
1376 e->exception, e->code, e->subcode);
1377 }
1378 else
1379 error (_("Can't forward spontaneous exception (%s)."), NAME);
1380 }
1381 else
1382 /* A Unix signal. */
1383 if (inf->stopped)
1384 /* The process is stopped and expecting a signal. Just send off a
1385 request and let it get handled when we resume everything. */
1386 {
1387 inf_debug (inf, "sending %s to stopped process", NAME);
1388 err =
1389 INF_MSGPORT_RPC (inf,
1390 msg_sig_post_untraced_request (msgport,
1391 inf->event_port,
1392 MACH_MSG_TYPE_MAKE_SEND_ONCE,
1393 host_sig, 0,
1394 refport));
1395 if (!err)
1396 /* Posting an untraced signal automatically continues it.
1397 We clear this here rather than when we get the reply
1398 because we'd rather assume it's not stopped when it
1399 actually is, than the reverse. */
1400 inf->stopped = 0;
1401 }
1402 else
1403 /* It's not expecting it. We have to let just the signal thread
1404 run, and wait for it to get into a reasonable state before we
1405 can continue the rest of the process. When we finally resume the
1406 process the signal we request will be the very first thing that
1407 happens. */
1408 {
1409 inf_debug (inf, "sending %s to unstopped process"
1410 " (so resuming signal thread)", NAME);
1411 err =
1412 INF_RESUME_MSGPORT_RPC (inf,
1413 msg_sig_post_untraced (msgport, host_sig,
1414 0, refport));
1415 }
1416
1417 if (err == EIEIO)
1418 /* Can't do too much... */
1419 warning (_("Can't deliver signal %s: No signal thread."), NAME);
1420 else if (err)
1421 warning (_("Delivering signal %s: %s"), NAME, safe_strerror (err));
1422
1423 #undef NAME
1424 }
1425
1426 \f
1427 /* Continue INF without delivering a signal. This is meant to be used
1428 when INF does not have a message port. */
1429 void
1430 inf_continue (struct inf *inf)
1431 {
1432 process_t proc;
1433 kern_return_t err = proc_pid2proc (proc_server, inf->pid, &proc);
1434
1435 if (!err)
1436 {
1437 inf_debug (inf, "continuing process");
1438
1439 err = proc_mark_cont (proc);
1440 if (!err)
1441 {
1442 struct proc *thread;
1443
1444 for (thread = inf->threads; thread; thread = thread->next)
1445 thread_resume (thread->port);
1446
1447 inf->stopped = 0;
1448 }
1449 }
1450
1451 if (err)
1452 warning (_("Can't continue process: %s"), safe_strerror (err));
1453 }
1454
1455 \f
1456 /* The inferior used for all gdb target ops. */
1457 struct inf *gnu_current_inf = 0;
1458
1459 /* The inferior being waited for by gnu_wait. Since GDB is decidely not
1460 multi-threaded, we don't bother to lock this. */
1461 struct inf *waiting_inf;
1462
1463 /* MIG stubs are not yet ready for C++ compilation. */
1464 extern "C" int exc_server (mach_msg_header_t *, mach_msg_header_t *);
1465 extern "C" int msg_reply_server (mach_msg_header_t *, mach_msg_header_t *);
1466 extern "C" int notify_server (mach_msg_header_t *, mach_msg_header_t *);
1467 extern "C" int process_reply_server (mach_msg_header_t *, mach_msg_header_t *);
1468
1469 /* Wait for something to happen in the inferior, returning what in STATUS. */
1470
1471 ptid_t
1472 gnu_nat_target::wait (ptid_t ptid, struct target_waitstatus *status,
1473 int options)
1474 {
1475 struct msg
1476 {
1477 mach_msg_header_t hdr;
1478 mach_msg_type_t type;
1479 int data[8000];
1480 } msg;
1481 kern_return_t err;
1482 struct proc *thread;
1483 struct inf *inf = gnu_current_inf;
1484
1485 gdb_assert (inf->task);
1486
1487 if (!inf->threads && !inf->pending_execs)
1488 /* No threads! Assume that maybe some outside agency is frobbing our
1489 task, and really look for new threads. If we can't find any, just tell
1490 the user to try again later. */
1491 {
1492 inf_validate_procs (inf);
1493 if (!inf->threads && !inf->task->dead)
1494 error (_("There are no threads; try again later."));
1495 }
1496
1497 waiting_inf = inf;
1498
1499 inf_debug (inf, "waiting for: %s", target_pid_to_str (ptid).c_str ());
1500
1501 rewait:
1502 if (proc_wait_pid != inf->pid && !inf->no_wait)
1503 /* Always get information on events from the proc server. */
1504 {
1505 inf_debug (inf, "requesting wait on pid %d", inf->pid);
1506
1507 if (proc_wait_pid)
1508 /* The proc server is single-threaded, and only allows a single
1509 outstanding wait request, so we have to cancel the previous one. */
1510 {
1511 inf_debug (inf, "cancelling previous wait on pid %d", proc_wait_pid);
1512 interrupt_operation (proc_server, 0);
1513 }
1514
1515 err =
1516 proc_wait_request (proc_server, inf->event_port, inf->pid, WUNTRACED);
1517 if (err)
1518 warning (_("wait request failed: %s"), safe_strerror (err));
1519 else
1520 {
1521 inf_debug (inf, "waits pending: %d", proc_waits_pending);
1522 proc_wait_pid = inf->pid;
1523 /* Even if proc_waits_pending was > 0 before, we still won't
1524 get any other replies, because it was either from a
1525 different INF, or a different process attached to INF --
1526 and the event port, which is the wait reply port, changes
1527 when you switch processes. */
1528 proc_waits_pending = 1;
1529 }
1530 }
1531
1532 inf_clear_wait (inf);
1533
1534 /* What can happen? (1) Dead name notification; (2) Exceptions arrive;
1535 (3) wait reply from the proc server. */
1536
1537 inf_debug (inf, "waiting for an event...");
1538 err = mach_msg (&msg.hdr, MACH_RCV_MSG | MACH_RCV_INTERRUPT,
1539 0, sizeof (struct msg), inf->event_port,
1540 MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL);
1541
1542 /* Re-suspend the task. */
1543 inf_suspend (inf);
1544
1545 if (!inf->task && inf->pending_execs)
1546 /* When doing an exec, it's possible that the old task wasn't reused
1547 (e.g., setuid execs). So if the task seems to have disappeared,
1548 attempt to refetch it, as the pid should still be the same. */
1549 inf_set_pid (inf, inf->pid);
1550
1551 if (err == EMACH_RCV_INTERRUPTED)
1552 inf_debug (inf, "interrupted");
1553 else if (err)
1554 error (_("Couldn't wait for an event: %s"), safe_strerror (err));
1555 else
1556 {
1557 struct
1558 {
1559 mach_msg_header_t hdr;
1560 mach_msg_type_t err_type;
1561 kern_return_t err;
1562 char noise[200];
1563 }
1564 reply;
1565
1566 inf_debug (inf, "event: msgid = %d", msg.hdr.msgh_id);
1567
1568 /* Handle what we got. */
1569 if (!notify_server (&msg.hdr, &reply.hdr)
1570 && !exc_server (&msg.hdr, &reply.hdr)
1571 && !process_reply_server (&msg.hdr, &reply.hdr)
1572 && !msg_reply_server (&msg.hdr, &reply.hdr))
1573 /* Whatever it is, it's something strange. */
1574 error (_("Got a strange event, msg id = %d."), msg.hdr.msgh_id);
1575
1576 if (reply.err)
1577 error (_("Handling event, msgid = %d: %s"),
1578 msg.hdr.msgh_id, safe_strerror (reply.err));
1579 }
1580
1581 if (inf->pending_execs)
1582 /* We're waiting for the inferior to finish execing. */
1583 {
1584 struct inf_wait *w = &inf->wait;
1585 enum target_waitkind kind = w->status.kind;
1586
1587 if (kind == TARGET_WAITKIND_SPURIOUS)
1588 /* Since gdb is actually counting the number of times the inferior
1589 stops, expecting one stop per exec, we only return major events
1590 while execing. */
1591 {
1592 w->suppress = 1;
1593 inf_debug (inf, "pending_execs, ignoring minor event");
1594 }
1595 else if (kind == TARGET_WAITKIND_STOPPED
1596 && w->status.value.sig == GDB_SIGNAL_TRAP)
1597 /* Ah hah! A SIGTRAP from the inferior while starting up probably
1598 means we've succesfully completed an exec! */
1599 {
1600 inf_debug (inf, "one pending exec completed");
1601 }
1602 else if (kind == TARGET_WAITKIND_STOPPED)
1603 /* It's possible that this signal is because of a crashed process
1604 being handled by the hurd crash server; in this case, the process
1605 will have an extra task suspend, which we need to know about.
1606 Since the code in inf_resume that normally checks for this is
1607 disabled while INF->pending_execs, we do the check here instead. */
1608 inf_validate_task_sc (inf);
1609 }
1610
1611 if (inf->wait.suppress)
1612 /* Some totally spurious event happened that we don't consider
1613 worth returning to gdb. Just keep waiting. */
1614 {
1615 inf_debug (inf, "suppressing return, rewaiting...");
1616 inf_resume (inf);
1617 goto rewait;
1618 }
1619
1620 /* Pass back out our results. */
1621 memcpy (status, &inf->wait.status, sizeof (*status));
1622
1623 thread = inf->wait.thread;
1624 if (thread)
1625 ptid = ptid_t (inf->pid, thread->tid, 0);
1626 else if (ptid == minus_one_ptid)
1627 thread = inf_tid_to_thread (inf, -1);
1628 else
1629 thread = inf_tid_to_thread (inf, ptid.lwp ());
1630
1631 if (!thread || thread->port == MACH_PORT_NULL)
1632 {
1633 /* TID is dead; try and find a new thread. */
1634 if (inf_update_procs (inf) && inf->threads)
1635 ptid = ptid_t (inf->pid, inf->threads->tid, 0); /* The first
1636 available
1637 thread. */
1638 else
1639 ptid = inferior_ptid; /* let wait_for_inferior handle exit case */
1640 }
1641
1642 if (thread
1643 && ptid != minus_one_ptid
1644 && status->kind != TARGET_WAITKIND_SPURIOUS
1645 && inf->pause_sc == 0 && thread->pause_sc == 0)
1646 /* If something actually happened to THREAD, make sure we
1647 suspend it. */
1648 {
1649 thread->sc = 1;
1650 inf_update_suspends (inf);
1651 }
1652
1653 inf_debug (inf, "returning ptid = %s, %s",
1654 target_pid_to_str (ptid).c_str (),
1655 target_waitstatus_to_string (status).c_str ());
1656
1657 return ptid;
1658 }
1659
1660 \f
1661 /* The rpc handler called by exc_server. */
1662 kern_return_t
1663 S_exception_raise_request (mach_port_t port, mach_port_t reply_port,
1664 thread_t thread_port, task_t task_port,
1665 int exception, int code, int subcode)
1666 {
1667 struct inf *inf = waiting_inf;
1668 struct proc *thread = inf_port_to_thread (inf, thread_port);
1669
1670 inf_debug (waiting_inf,
1671 "thread = %lu, task = %lu, exc = %d, code = %d, subcode = %d",
1672 thread_port, task_port, exception, code, subcode);
1673
1674 if (!thread)
1675 /* We don't know about thread? */
1676 {
1677 inf_update_procs (inf);
1678 thread = inf_port_to_thread (inf, thread_port);
1679 if (!thread)
1680 /* Give up, the generating thread is gone. */
1681 return 0;
1682 }
1683
1684 mach_port_deallocate (mach_task_self (), thread_port);
1685 mach_port_deallocate (mach_task_self (), task_port);
1686
1687 if (!thread->aborted)
1688 /* THREAD hasn't been aborted since this exception happened (abortion
1689 clears any exception state), so it must be real. */
1690 {
1691 /* Store away the details; this will destroy any previous info. */
1692 inf->wait.thread = thread;
1693
1694 inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
1695
1696 if (exception == EXC_BREAKPOINT)
1697 /* GDB likes to get SIGTRAP for breakpoints. */
1698 {
1699 inf->wait.status.value.sig = GDB_SIGNAL_TRAP;
1700 mach_port_deallocate (mach_task_self (), reply_port);
1701 }
1702 else
1703 /* Record the exception so that we can forward it later. */
1704 {
1705 if (thread->exc_port == port)
1706 {
1707 inf_debug (waiting_inf, "Handler is thread exception port <%lu>",
1708 thread->saved_exc_port);
1709 inf->wait.exc.handler = thread->saved_exc_port;
1710 }
1711 else
1712 {
1713 inf_debug (waiting_inf, "Handler is task exception port <%lu>",
1714 inf->task->saved_exc_port);
1715 inf->wait.exc.handler = inf->task->saved_exc_port;
1716 gdb_assert (inf->task->exc_port == port);
1717 }
1718 if (inf->wait.exc.handler != MACH_PORT_NULL)
1719 /* Add a reference to the exception handler. */
1720 mach_port_mod_refs (mach_task_self (),
1721 inf->wait.exc.handler, MACH_PORT_RIGHT_SEND,
1722 1);
1723
1724 inf->wait.exc.exception = exception;
1725 inf->wait.exc.code = code;
1726 inf->wait.exc.subcode = subcode;
1727 inf->wait.exc.reply = reply_port;
1728
1729 /* Exceptions are encoded in the signal space by putting
1730 them after _NSIG; this assumes they're positive (and not
1731 extremely large)! */
1732 inf->wait.status.value.sig =
1733 gdb_signal_from_host (_NSIG + exception);
1734 }
1735 }
1736 else
1737 /* A suppressed exception, which ignore. */
1738 {
1739 inf->wait.suppress = 1;
1740 mach_port_deallocate (mach_task_self (), reply_port);
1741 }
1742
1743 return 0;
1744 }
1745
1746 \f
1747 /* Fill in INF's wait field after a task has died without giving us more
1748 detailed information. */
1749 static void
1750 inf_task_died_status (struct inf *inf)
1751 {
1752 warning (_("Pid %d died with unknown exit status, using SIGKILL."),
1753 inf->pid);
1754 inf->wait.status.kind = TARGET_WAITKIND_SIGNALLED;
1755 inf->wait.status.value.sig = GDB_SIGNAL_KILL;
1756 }
1757
1758 /* Notify server routines. The only real one is dead name notification. */
1759 kern_return_t
1760 do_mach_notify_dead_name (mach_port_t notify, mach_port_t dead_port)
1761 {
1762 struct inf *inf = waiting_inf;
1763
1764 inf_debug (waiting_inf, "port = %lu", dead_port);
1765
1766 if (inf->task && inf->task->port == dead_port)
1767 {
1768 proc_debug (inf->task, "is dead");
1769 inf->task->port = MACH_PORT_NULL;
1770 if (proc_wait_pid == inf->pid)
1771 /* We have a wait outstanding on the process, which will return more
1772 detailed information, so delay until we get that. */
1773 inf->wait.suppress = 1;
1774 else
1775 /* We never waited for the process (maybe it wasn't a child), so just
1776 pretend it got a SIGKILL. */
1777 inf_task_died_status (inf);
1778 }
1779 else
1780 {
1781 struct proc *thread = inf_port_to_thread (inf, dead_port);
1782
1783 if (thread)
1784 {
1785 proc_debug (thread, "is dead");
1786 thread->port = MACH_PORT_NULL;
1787 }
1788
1789 if (inf->task->dead)
1790 /* Since the task is dead, its threads are dying with it. */
1791 inf->wait.suppress = 1;
1792 }
1793
1794 mach_port_deallocate (mach_task_self (), dead_port);
1795 inf->threads_up_to_date = 0; /* Just in case. */
1796
1797 return 0;
1798 }
1799
1800 \f
1801 #define ILL_RPC(fun, ...) \
1802 extern kern_return_t fun (__VA_ARGS__); \
1803 kern_return_t fun (__VA_ARGS__) \
1804 { \
1805 warning (_("illegal rpc: %s"), #fun); \
1806 return 0; \
1807 }
1808
1809 ILL_RPC (do_mach_notify_no_senders,
1810 mach_port_t notify, mach_port_mscount_t count)
1811 ILL_RPC (do_mach_notify_port_deleted,
1812 mach_port_t notify, mach_port_t name)
1813 ILL_RPC (do_mach_notify_msg_accepted,
1814 mach_port_t notify, mach_port_t name)
1815 ILL_RPC (do_mach_notify_port_destroyed,
1816 mach_port_t notify, mach_port_t name)
1817 ILL_RPC (do_mach_notify_send_once,
1818 mach_port_t notify)
1819 \f
1820 /* Process_reply server routines. We only use process_wait_reply. */
1821
1822 kern_return_t
1823 S_proc_wait_reply (mach_port_t reply, kern_return_t err,
1824 int status, int sigcode, rusage_t rusage, pid_t pid)
1825 {
1826 struct inf *inf = waiting_inf;
1827
1828 inf_debug (inf, "err = %s, pid = %d, status = 0x%x, sigcode = %d",
1829 err ? safe_strerror (err) : "0", pid, status, sigcode);
1830
1831 if (err && proc_wait_pid && (!inf->task || !inf->task->port))
1832 /* Ack. The task has died, but the task-died notification code didn't
1833 tell anyone because it thought a more detailed reply from the
1834 procserver was forthcoming. However, we now learn that won't
1835 happen... So we have to act like the task just died, and this time,
1836 tell the world. */
1837 inf_task_died_status (inf);
1838
1839 if (--proc_waits_pending == 0)
1840 /* PROC_WAIT_PID represents the most recent wait. We will always get
1841 replies in order because the proc server is single threaded. */
1842 proc_wait_pid = 0;
1843
1844 inf_debug (inf, "waits pending now: %d", proc_waits_pending);
1845
1846 if (err)
1847 {
1848 if (err != EINTR)
1849 {
1850 warning (_("Can't wait for pid %d: %s"),
1851 inf->pid, safe_strerror (err));
1852 inf->no_wait = 1;
1853
1854 /* Since we can't see the inferior's signals, don't trap them. */
1855 inf_set_traced (inf, 0);
1856 }
1857 }
1858 else if (pid == inf->pid)
1859 {
1860 store_waitstatus (&inf->wait.status, status);
1861 if (inf->wait.status.kind == TARGET_WAITKIND_STOPPED)
1862 /* The process has sent us a signal, and stopped itself in a sane
1863 state pending our actions. */
1864 {
1865 inf_debug (inf, "process has stopped itself");
1866 inf->stopped = 1;
1867 }
1868 }
1869 else
1870 inf->wait.suppress = 1; /* Something odd happened. Ignore. */
1871
1872 return 0;
1873 }
1874
1875 ILL_RPC (S_proc_setmsgport_reply,
1876 mach_port_t reply_port, kern_return_t return_code,
1877 mach_port_t oldmsgport)
1878 ILL_RPC (S_proc_getmsgport_reply,
1879 mach_port_t reply_port, kern_return_t return_code,
1880 mach_port_t msgports, mach_msg_type_name_t msgportsPoly)
1881 ILL_RPC (S_proc_pid2task_reply,
1882 mach_port_t reply_port, kern_return_t return_code, mach_port_t task)
1883 ILL_RPC (S_proc_task2pid_reply,
1884 mach_port_t reply_port, kern_return_t return_code, pid_t pid)
1885 ILL_RPC (S_proc_task2proc_reply,
1886 mach_port_t reply_port, kern_return_t return_code,
1887 mach_port_t proc, mach_msg_type_name_t procPoly)
1888 ILL_RPC (S_proc_proc2task_reply,
1889 mach_port_t reply_port, kern_return_t return_code, mach_port_t task)
1890 ILL_RPC (S_proc_pid2proc_reply,
1891 mach_port_t reply_port, kern_return_t return_code,
1892 mach_port_t proc, mach_msg_type_name_t procPoly)
1893 ILL_RPC (S_proc_getprocinfo_reply,
1894 mach_port_t reply_port, kern_return_t return_code,
1895 int flags, procinfo_t procinfo, mach_msg_type_number_t procinfoCnt,
1896 data_t threadwaits, mach_msg_type_number_t threadwaitsCnt)
1897 ILL_RPC (S_proc_getprocargs_reply,
1898 mach_port_t reply_port, kern_return_t return_code,
1899 data_t procargs, mach_msg_type_number_t procargsCnt)
1900 ILL_RPC (S_proc_getprocenv_reply,
1901 mach_port_t reply_port, kern_return_t return_code,
1902 data_t procenv, mach_msg_type_number_t procenvCnt)
1903 ILL_RPC (S_proc_getloginid_reply,
1904 mach_port_t reply_port, kern_return_t return_code, pid_t login_id)
1905 ILL_RPC (S_proc_getloginpids_reply,
1906 mach_port_t reply_port, kern_return_t return_code,
1907 pidarray_t pids, mach_msg_type_number_t pidsCnt)
1908 ILL_RPC (S_proc_getlogin_reply,
1909 mach_port_t reply_port, kern_return_t return_code, string_t logname)
1910 ILL_RPC (S_proc_getsid_reply,
1911 mach_port_t reply_port, kern_return_t return_code, pid_t sid)
1912 ILL_RPC (S_proc_getsessionpgids_reply,
1913 mach_port_t reply_port, kern_return_t return_code,
1914 pidarray_t pgidset, mach_msg_type_number_t pgidsetCnt)
1915 ILL_RPC (S_proc_getsessionpids_reply,
1916 mach_port_t reply_port, kern_return_t return_code,
1917 pidarray_t pidset, mach_msg_type_number_t pidsetCnt)
1918 ILL_RPC (S_proc_getsidport_reply,
1919 mach_port_t reply_port, kern_return_t return_code,
1920 mach_port_t sessport)
1921 ILL_RPC (S_proc_getpgrp_reply,
1922 mach_port_t reply_port, kern_return_t return_code, pid_t pgrp)
1923 ILL_RPC (S_proc_getpgrppids_reply,
1924 mach_port_t reply_port, kern_return_t return_code,
1925 pidarray_t pidset, mach_msg_type_number_t pidsetCnt)
1926 ILL_RPC (S_proc_get_tty_reply,
1927 mach_port_t reply_port, kern_return_t return_code, mach_port_t tty)
1928 ILL_RPC (S_proc_getnports_reply,
1929 mach_port_t reply_port, kern_return_t return_code,
1930 mach_msg_type_number_t nports)
1931 ILL_RPC (S_proc_is_important_reply,
1932 mach_port_t reply_port, kern_return_t return_code,
1933 boolean_t essential)
1934 ILL_RPC (S_proc_get_code_reply,
1935 mach_port_t reply_port, kern_return_t return_code,
1936 vm_address_t start_code, vm_address_t end_code)
1937 \f
1938 /* Msg_reply server routines. We only use msg_sig_post_untraced_reply. */
1939
1940 kern_return_t
1941 S_msg_sig_post_untraced_reply (mach_port_t reply, kern_return_t err)
1942 {
1943 struct inf *inf = waiting_inf;
1944
1945 if (err == EBUSY)
1946 /* EBUSY is what we get when the crash server has grabbed control of the
1947 process and doesn't like what signal we tried to send it. Just act
1948 like the process stopped (using a signal of 0 should mean that the
1949 *next* time the user continues, it will pass signal 0, which the crash
1950 server should like). */
1951 {
1952 inf->wait.status.kind = TARGET_WAITKIND_STOPPED;
1953 inf->wait.status.value.sig = GDB_SIGNAL_0;
1954 }
1955 else if (err)
1956 warning (_("Signal delivery failed: %s"), safe_strerror (err));
1957
1958 if (err)
1959 /* We only get this reply when we've posted a signal to a process which we
1960 thought was stopped, and which we expected to continue after the signal.
1961 Given that the signal has failed for some reason, it's reasonable to
1962 assume it's still stopped. */
1963 inf->stopped = 1;
1964 else
1965 inf->wait.suppress = 1;
1966
1967 return 0;
1968 }
1969
1970 ILL_RPC (S_msg_sig_post_reply,
1971 mach_port_t reply, kern_return_t err)
1972 \f
1973 /* Returns the number of messages queued for the receive right PORT. */
1974 static mach_port_msgcount_t
1975 port_msgs_queued (mach_port_t port)
1976 {
1977 struct mach_port_status status;
1978 kern_return_t err =
1979 mach_port_get_receive_status (mach_task_self (), port, &status);
1980
1981 if (err)
1982 return 0;
1983 else
1984 return status.mps_msgcount;
1985 }
1986
1987 \f
1988 /* Resume execution of the inferior process.
1989
1990 If STEP is nonzero, single-step it.
1991 If SIGNAL is nonzero, give it that signal.
1992
1993 TID STEP:
1994 -1 true Single step the current thread allowing other threads to run.
1995 -1 false Continue the current thread allowing other threads to run.
1996 X true Single step the given thread, don't allow any others to run.
1997 X false Continue the given thread, do not allow any others to run.
1998 (Where X, of course, is anything except -1)
1999
2000 Note that a resume may not `take' if there are pending exceptions/&c
2001 still unprocessed from the last resume we did (any given resume may result
2002 in multiple events returned by wait). */
2003
2004 void
2005 gnu_nat_target::resume (ptid_t ptid, int step, enum gdb_signal sig)
2006 {
2007 struct proc *step_thread = 0;
2008 int resume_all;
2009 struct inf *inf = gnu_current_inf;
2010
2011 inf_debug (inf, "ptid = %s, step = %d, sig = %d",
2012 target_pid_to_str (ptid).c_str (), step, sig);
2013
2014 inf_validate_procinfo (inf);
2015
2016 if (sig != GDB_SIGNAL_0 || inf->stopped)
2017 {
2018 if (sig == GDB_SIGNAL_0 && inf->nomsg)
2019 inf_continue (inf);
2020 else
2021 inf_signal (inf, sig);
2022 }
2023 else if (inf->wait.exc.reply != MACH_PORT_NULL)
2024 /* We received an exception to which we have chosen not to forward, so
2025 abort the faulting thread, which will perhaps retake it. */
2026 {
2027 proc_abort (inf->wait.thread, 1);
2028 warning (_("Aborting %s with unforwarded exception %s."),
2029 proc_string (inf->wait.thread),
2030 gdb_signal_to_name (inf->wait.status.value.sig));
2031 }
2032
2033 if (port_msgs_queued (inf->event_port))
2034 /* If there are still messages in our event queue, don't bother resuming
2035 the process, as we're just going to stop it right away anyway. */
2036 return;
2037
2038 inf_update_procs (inf);
2039
2040 /* A specific PTID means `step only this process id'. */
2041 resume_all = ptid == minus_one_ptid;
2042
2043 if (resume_all)
2044 /* Allow all threads to run, except perhaps single-stepping one. */
2045 {
2046 inf_debug (inf, "running all threads; tid = %d",
2047 inferior_ptid.pid ());
2048 ptid = inferior_ptid; /* What to step. */
2049 inf_set_threads_resume_sc (inf, 0, 1);
2050 }
2051 else
2052 /* Just allow a single thread to run. */
2053 {
2054 struct proc *thread = inf_tid_to_thread (inf, ptid.lwp ());
2055
2056 if (!thread)
2057 error (_("Can't run single thread id %s: no such thread!"),
2058 target_pid_to_str (ptid).c_str ());
2059 inf_debug (inf, "running one thread: %s",
2060 target_pid_to_str (ptid).c_str ());
2061 inf_set_threads_resume_sc (inf, thread, 0);
2062 }
2063
2064 if (step)
2065 {
2066 step_thread = inf_tid_to_thread (inf, ptid.lwp ());
2067 if (!step_thread)
2068 warning (_("Can't step thread id %s: no such thread."),
2069 target_pid_to_str (ptid).c_str ());
2070 else
2071 inf_debug (inf, "stepping thread: %s",
2072 target_pid_to_str (ptid).c_str ());
2073 }
2074 if (step_thread != inf->step_thread)
2075 inf_set_step_thread (inf, step_thread);
2076
2077 inf_debug (inf, "here we go...");
2078 inf_resume (inf);
2079 }
2080
2081 \f
2082 void
2083 gnu_nat_target::kill ()
2084 {
2085 struct proc *task = gnu_current_inf->task;
2086
2087 if (task)
2088 {
2089 proc_debug (task, "terminating...");
2090 task_terminate (task->port);
2091 inf_set_pid (gnu_current_inf, -1);
2092 }
2093 target_mourn_inferior (inferior_ptid);
2094 }
2095
2096 /* Clean up after the inferior dies. */
2097 void
2098 gnu_nat_target::mourn_inferior ()
2099 {
2100 inf_debug (gnu_current_inf, "rip");
2101 inf_detach (gnu_current_inf);
2102 inf_child_target::mourn_inferior ();
2103 }
2104
2105 \f
2106 /* Fork an inferior process, and start debugging it. */
2107
2108 /* Set INFERIOR_PID to the first thread available in the child, if any. */
2109 static int
2110 inf_pick_first_thread (void)
2111 {
2112 if (gnu_current_inf->task && gnu_current_inf->threads)
2113 /* The first thread. */
2114 return gnu_current_inf->threads->tid;
2115 else
2116 /* What may be the next thread. */
2117 return next_thread_id;
2118 }
2119
2120 static struct inf *
2121 cur_inf (void)
2122 {
2123 if (!gnu_current_inf)
2124 gnu_current_inf = make_inf ();
2125 return gnu_current_inf;
2126 }
2127
2128 static void
2129 gnu_ptrace_me (void)
2130 {
2131 /* We're in the child; make this process stop as soon as it execs. */
2132 struct inf *inf = cur_inf ();
2133 inf_debug (inf, "tracing self");
2134 if (ptrace (PTRACE_TRACEME) != 0)
2135 trace_start_error_with_name ("ptrace");
2136 }
2137
2138 void
2139 gnu_nat_target::create_inferior (const char *exec_file,
2140 const std::string &allargs,
2141 char **env,
2142 int from_tty)
2143 {
2144 struct inf *inf = cur_inf ();
2145 int pid;
2146
2147 inf_debug (inf, "creating inferior");
2148
2149 pid = fork_inferior (exec_file, allargs, env, gnu_ptrace_me,
2150 NULL, NULL, NULL, NULL);
2151
2152 /* We have something that executes now. We'll be running through
2153 the shell at this point (if startup-with-shell is true), but the
2154 pid shouldn't change. */
2155 add_thread_silent (gnu_target, ptid_t (pid));
2156
2157 /* Attach to the now stopped child, which is actually a shell... */
2158 inf_debug (inf, "attaching to child: %d", pid);
2159
2160 inf_attach (inf, pid);
2161
2162 push_target (this);
2163
2164 inf->pending_execs = 1;
2165 inf->nomsg = 1;
2166 inf->traced = 1;
2167
2168 /* Now let the child run again, knowing that it will stop
2169 immediately because of the ptrace. */
2170 inf_resume (inf);
2171
2172 /* We now have thread info. */
2173 thread_change_ptid (gnu_target, inferior_ptid,
2174 ptid_t (inf->pid, inf_pick_first_thread (), 0));
2175
2176 gdb_startup_inferior (pid, START_INFERIOR_TRAPS_EXPECTED);
2177
2178 inf->pending_execs = 0;
2179 /* Get rid of the old shell threads. */
2180 prune_threads ();
2181
2182 inf_validate_procinfo (inf);
2183 inf_update_signal_thread (inf);
2184 inf_set_traced (inf, inf->want_signals);
2185
2186 /* Execing the process will have trashed our exception ports; steal them
2187 back (or make sure they're restored if the user wants that). */
2188 if (inf->want_exceptions)
2189 inf_steal_exc_ports (inf);
2190 else
2191 inf_restore_exc_ports (inf);
2192 }
2193
2194 \f
2195 /* Attach to process PID, then initialize for debugging it
2196 and wait for the trace-trap that results from attaching. */
2197 void
2198 gnu_nat_target::attach (const char *args, int from_tty)
2199 {
2200 int pid;
2201 struct inf *inf = cur_inf ();
2202 struct inferior *inferior;
2203
2204 pid = parse_pid_to_attach (args);
2205
2206 if (pid == getpid ()) /* Trying to masturbate? */
2207 error (_("I refuse to debug myself!"));
2208
2209 if (from_tty)
2210 {
2211 const char *exec_file = get_exec_file (0);
2212
2213 if (exec_file)
2214 printf_unfiltered ("Attaching to program `%s', pid %d\n",
2215 exec_file, pid);
2216 else
2217 printf_unfiltered ("Attaching to pid %d\n", pid);
2218 }
2219
2220 inf_debug (inf, "attaching to pid: %d", pid);
2221
2222 inf_attach (inf, pid);
2223
2224 push_target (this);
2225
2226 inferior = current_inferior ();
2227 inferior_appeared (inferior, pid);
2228 inferior->attach_flag = 1;
2229
2230 inf_update_procs (inf);
2231
2232 inferior_ptid = ptid_t (pid, inf_pick_first_thread (), 0);
2233
2234 /* We have to initialize the terminal settings now, since the code
2235 below might try to restore them. */
2236 target_terminal::init ();
2237
2238 /* If the process was stopped before we attached, make it continue the next
2239 time the user does a continue. */
2240 inf_validate_procinfo (inf);
2241
2242 inf_update_signal_thread (inf);
2243 inf_set_traced (inf, inf->want_signals);
2244
2245 #if 0 /* Do we need this? */
2246 renumber_threads (0); /* Give our threads reasonable names. */
2247 #endif
2248 }
2249
2250 \f
2251 /* Take a program previously attached to and detaches it.
2252 The program resumes execution and will no longer stop
2253 on signals, etc. We'd better not have left any breakpoints
2254 in the program or it'll die when it hits one. For this
2255 to work, it may be necessary for the process to have been
2256 previously attached. It *might* work if the program was
2257 started via fork. */
2258 void
2259 gnu_nat_target::detach (inferior *inf, int from_tty)
2260 {
2261 int pid;
2262
2263 if (from_tty)
2264 {
2265 const char *exec_file = get_exec_file (0);
2266
2267 if (exec_file)
2268 printf_unfiltered ("Detaching from program `%s' pid %d\n",
2269 exec_file, gnu_current_inf->pid);
2270 else
2271 printf_unfiltered ("Detaching from pid %d\n", gnu_current_inf->pid);
2272 }
2273
2274 pid = gnu_current_inf->pid;
2275
2276 inf_detach (gnu_current_inf);
2277
2278 inferior_ptid = null_ptid;
2279 detach_inferior (find_inferior_pid (gnu_target, pid));
2280
2281 maybe_unpush_target ();
2282 }
2283 \f
2284
2285 void
2286 gnu_nat_target::stop (ptid_t ptid)
2287 {
2288 error (_("stop target function not implemented"));
2289 }
2290
2291 bool
2292 gnu_nat_target::thread_alive (ptid_t ptid)
2293 {
2294 inf_update_procs (gnu_current_inf);
2295 return !!inf_tid_to_thread (gnu_current_inf,
2296 ptid.lwp ());
2297 }
2298
2299 \f
2300 /* Read inferior task's LEN bytes from ADDR and copy it to MYADDR in
2301 gdb's address space. Return 0 on failure; number of bytes read
2302 otherwise. */
2303 static int
2304 gnu_read_inferior (task_t task, CORE_ADDR addr, gdb_byte *myaddr, int length)
2305 {
2306 kern_return_t err;
2307 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2308 vm_size_t aligned_length =
2309 (vm_size_t) round_page (addr + length) - low_address;
2310 pointer_t copied;
2311 mach_msg_type_number_t copy_count;
2312
2313 /* Get memory from inferior with page aligned addresses. */
2314 err = vm_read (task, low_address, aligned_length, &copied, &copy_count);
2315 if (err)
2316 return 0;
2317
2318 err = hurd_safe_copyin (myaddr, (void *) (addr - low_address + copied),
2319 length);
2320 if (err)
2321 {
2322 warning (_("Read from inferior faulted: %s"), safe_strerror (err));
2323 length = 0;
2324 }
2325
2326 err = vm_deallocate (mach_task_self (), copied, copy_count);
2327 if (err)
2328 warning (_("gnu_read_inferior vm_deallocate failed: %s"),
2329 safe_strerror (err));
2330
2331 return length;
2332 }
2333
2334 #define CHK_GOTO_OUT(str,ret) \
2335 do if (ret != KERN_SUCCESS) { errstr = #str; goto out; } while(0)
2336
2337 struct vm_region_list
2338 {
2339 struct vm_region_list *next;
2340 vm_prot_t protection;
2341 vm_address_t start;
2342 vm_size_t length;
2343 };
2344
2345 struct obstack region_obstack;
2346
2347 /* Write gdb's LEN bytes from MYADDR and copy it to ADDR in inferior
2348 task's address space. */
2349 static int
2350 gnu_write_inferior (task_t task, CORE_ADDR addr,
2351 const gdb_byte *myaddr, int length)
2352 {
2353 kern_return_t err;
2354 vm_address_t low_address = (vm_address_t) trunc_page (addr);
2355 vm_size_t aligned_length =
2356 (vm_size_t) round_page (addr + length) - low_address;
2357 pointer_t copied;
2358 mach_msg_type_number_t copy_count;
2359 int deallocate = 0;
2360
2361 const char *errstr = "Bug in gnu_write_inferior";
2362
2363 struct vm_region_list *region_element;
2364 struct vm_region_list *region_head = NULL;
2365
2366 /* Get memory from inferior with page aligned addresses. */
2367 err = vm_read (task,
2368 low_address,
2369 aligned_length,
2370 &copied,
2371 &copy_count);
2372 CHK_GOTO_OUT ("gnu_write_inferior vm_read failed", err);
2373
2374 deallocate++;
2375
2376 err = hurd_safe_copyout ((void *) (addr - low_address + copied),
2377 myaddr, length);
2378 CHK_GOTO_OUT ("Write to inferior faulted", err);
2379
2380 obstack_init (&region_obstack);
2381
2382 /* Do writes atomically.
2383 First check for holes and unwritable memory. */
2384 {
2385 vm_size_t remaining_length = aligned_length;
2386 vm_address_t region_address = low_address;
2387
2388 struct vm_region_list *scan;
2389
2390 while (region_address < low_address + aligned_length)
2391 {
2392 vm_prot_t protection;
2393 vm_prot_t max_protection;
2394 vm_inherit_t inheritance;
2395 boolean_t shared;
2396 mach_port_t object_name;
2397 vm_offset_t offset;
2398 vm_size_t region_length = remaining_length;
2399 vm_address_t old_address = region_address;
2400
2401 err = vm_region (task,
2402 &region_address,
2403 &region_length,
2404 &protection,
2405 &max_protection,
2406 &inheritance,
2407 &shared,
2408 &object_name,
2409 &offset);
2410 CHK_GOTO_OUT ("vm_region failed", err);
2411
2412 /* Check for holes in memory. */
2413 if (old_address != region_address)
2414 {
2415 warning (_("No memory at 0x%lx. Nothing written"),
2416 old_address);
2417 err = KERN_SUCCESS;
2418 length = 0;
2419 goto out;
2420 }
2421
2422 if (!(max_protection & VM_PROT_WRITE))
2423 {
2424 warning (_("Memory at address 0x%lx is unwritable. "
2425 "Nothing written"),
2426 old_address);
2427 err = KERN_SUCCESS;
2428 length = 0;
2429 goto out;
2430 }
2431
2432 /* Chain the regions for later use. */
2433 region_element = XOBNEW (&region_obstack, struct vm_region_list);
2434
2435 region_element->protection = protection;
2436 region_element->start = region_address;
2437 region_element->length = region_length;
2438
2439 /* Chain the regions along with protections. */
2440 region_element->next = region_head;
2441 region_head = region_element;
2442
2443 region_address += region_length;
2444 remaining_length = remaining_length - region_length;
2445 }
2446
2447 /* If things fail after this, we give up.
2448 Somebody is messing up inferior_task's mappings. */
2449
2450 /* Enable writes to the chained vm regions. */
2451 for (scan = region_head; scan; scan = scan->next)
2452 {
2453 if (!(scan->protection & VM_PROT_WRITE))
2454 {
2455 err = vm_protect (task,
2456 scan->start,
2457 scan->length,
2458 FALSE,
2459 scan->protection | VM_PROT_WRITE);
2460 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2461 }
2462 }
2463
2464 err = vm_write (task,
2465 low_address,
2466 copied,
2467 aligned_length);
2468 CHK_GOTO_OUT ("vm_write failed", err);
2469
2470 /* Set up the original region protections, if they were changed. */
2471 for (scan = region_head; scan; scan = scan->next)
2472 {
2473 if (!(scan->protection & VM_PROT_WRITE))
2474 {
2475 err = vm_protect (task,
2476 scan->start,
2477 scan->length,
2478 FALSE,
2479 scan->protection);
2480 CHK_GOTO_OUT ("vm_protect: enable write failed", err);
2481 }
2482 }
2483 }
2484
2485 out:
2486 if (deallocate)
2487 {
2488 obstack_free (&region_obstack, 0);
2489
2490 (void) vm_deallocate (mach_task_self (),
2491 copied,
2492 copy_count);
2493 }
2494
2495 if (err != KERN_SUCCESS)
2496 {
2497 warning (_("%s: %s"), errstr, mach_error_string (err));
2498 return 0;
2499 }
2500
2501 return length;
2502 }
2503
2504 \f
2505
2506 /* Implement the to_xfer_partial target_ops method for
2507 TARGET_OBJECT_MEMORY. */
2508
2509 static enum target_xfer_status
2510 gnu_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
2511 CORE_ADDR memaddr, ULONGEST len, ULONGEST *xfered_len)
2512 {
2513 task_t task = (gnu_current_inf
2514 ? (gnu_current_inf->task
2515 ? gnu_current_inf->task->port : 0)
2516 : 0);
2517 int res;
2518
2519 if (task == MACH_PORT_NULL)
2520 return TARGET_XFER_E_IO;
2521
2522 if (writebuf != NULL)
2523 {
2524 inf_debug (gnu_current_inf, "writing %s[%s] <-- %s",
2525 paddress (target_gdbarch (), memaddr), pulongest (len),
2526 host_address_to_string (writebuf));
2527 res = gnu_write_inferior (task, memaddr, writebuf, len);
2528 }
2529 else
2530 {
2531 inf_debug (gnu_current_inf, "reading %s[%s] --> %s",
2532 paddress (target_gdbarch (), memaddr), pulongest (len),
2533 host_address_to_string (readbuf));
2534 res = gnu_read_inferior (task, memaddr, readbuf, len);
2535 }
2536 gdb_assert (res >= 0);
2537 if (res == 0)
2538 return TARGET_XFER_E_IO;
2539 else
2540 {
2541 *xfered_len = (ULONGEST) res;
2542 return TARGET_XFER_OK;
2543 }
2544 }
2545
2546 /* GNU does not have auxv, but we can at least fake the AT_ENTRY entry for PIE
2547 binaries. */
2548 static enum target_xfer_status
2549 gnu_xfer_auxv (gdb_byte *readbuf, const gdb_byte *writebuf,
2550 CORE_ADDR memaddr, ULONGEST len, ULONGEST *xfered_len)
2551 {
2552 task_t task = (gnu_current_inf
2553 ? (gnu_current_inf->task
2554 ? gnu_current_inf->task->port : 0)
2555 : 0);
2556 process_t proc;
2557 kern_return_t err;
2558 vm_address_t entry;
2559 ElfW(auxv_t) auxv[2];
2560
2561 if (task == MACH_PORT_NULL)
2562 return TARGET_XFER_E_IO;
2563 if (writebuf != NULL)
2564 return TARGET_XFER_E_IO;
2565
2566 if (memaddr == sizeof (auxv))
2567 return TARGET_XFER_EOF;
2568 if (memaddr > sizeof (auxv))
2569 return TARGET_XFER_E_IO;
2570
2571 err = proc_task2proc (proc_server, task, &proc);
2572 if (err != 0)
2573 return TARGET_XFER_E_IO;
2574
2575 /* Get entry from proc server. */
2576 err = proc_get_entry (proc, &entry);
2577 if (err != 0)
2578 return TARGET_XFER_E_IO;
2579
2580 /* Fake auxv entry. */
2581 auxv[0].a_type = AT_ENTRY;
2582 auxv[0].a_un.a_val = entry;
2583 auxv[1].a_type = AT_NULL;
2584 auxv[1].a_un.a_val = 0;
2585
2586 inf_debug (gnu_current_inf, "reading auxv %s[%s] --> %s",
2587 paddress (target_gdbarch (), memaddr), pulongest (len),
2588 host_address_to_string (readbuf));
2589
2590 if (memaddr + len > sizeof (auxv))
2591 len = sizeof (auxv) - memaddr;
2592
2593 memcpy (readbuf, (gdb_byte *) &auxv + memaddr, len);
2594 *xfered_len = len;
2595
2596 return TARGET_XFER_OK;
2597 }
2598
2599 /* Target to_xfer_partial implementation. */
2600
2601 enum target_xfer_status
2602 gnu_nat_target::xfer_partial (enum target_object object,
2603 const char *annex, gdb_byte *readbuf,
2604 const gdb_byte *writebuf, ULONGEST offset,
2605 ULONGEST len, ULONGEST *xfered_len)
2606 {
2607 switch (object)
2608 {
2609 case TARGET_OBJECT_MEMORY:
2610 return gnu_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
2611 case TARGET_OBJECT_AUXV:
2612 return gnu_xfer_auxv (readbuf, writebuf, offset, len, xfered_len);
2613 default:
2614 return TARGET_XFER_E_IO;
2615 }
2616 }
2617
2618 /* Call FUNC on each memory region in the task. */
2619
2620 int
2621 gnu_nat_target::find_memory_regions (find_memory_region_ftype func,
2622 void *data)
2623 {
2624 kern_return_t err;
2625 task_t task;
2626 vm_address_t region_address, last_region_address, last_region_end;
2627 vm_prot_t last_protection;
2628
2629 if (gnu_current_inf == 0 || gnu_current_inf->task == 0)
2630 return 0;
2631 task = gnu_current_inf->task->port;
2632 if (task == MACH_PORT_NULL)
2633 return 0;
2634
2635 region_address = last_region_address = last_region_end = VM_MIN_ADDRESS;
2636 last_protection = VM_PROT_NONE;
2637 while (region_address < VM_MAX_ADDRESS)
2638 {
2639 vm_prot_t protection;
2640 vm_prot_t max_protection;
2641 vm_inherit_t inheritance;
2642 boolean_t shared;
2643 mach_port_t object_name;
2644 vm_offset_t offset;
2645 vm_size_t region_length = VM_MAX_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 _initialize_gnu_nat ();
3505 void
3506 _initialize_gnu_nat ()
3507 {
3508 proc_server = getproc ();
3509
3510 add_task_commands ();
3511 add_thread_commands ();
3512 add_setshow_boolean_cmd ("gnu-nat", class_maintenance,
3513 &gnu_debug_flag,
3514 _("Set debugging output for the gnu backend."),
3515 _("Show debugging output for the gnu backend."),
3516 NULL,
3517 NULL,
3518 NULL,
3519 &setdebuglist,
3520 &showdebuglist);
3521 }
3522 \f
3523 #ifdef FLUSH_INFERIOR_CACHE
3524
3525 /* When over-writing code on some machines the I-Cache must be flushed
3526 explicitly, because it is not kept coherent by the lazy hardware.
3527 This definitely includes breakpoints, for instance, or else we
3528 end up looping in mysterious Bpt traps. */
3529
3530 void
3531 flush_inferior_icache (CORE_ADDR pc, int amount)
3532 {
3533 vm_machine_attribute_val_t flush = MATTR_VAL_ICACHE_FLUSH;
3534 kern_return_t ret;
3535
3536 ret = vm_machine_attribute (gnu_current_inf->task->port,
3537 pc,
3538 amount,
3539 MATTR_CACHE,
3540 &flush);
3541 if (ret != KERN_SUCCESS)
3542 warning (_("Error flushing inferior's cache : %s"), safe_strerror (ret));
3543 }
3544 #endif /* FLUSH_INFERIOR_CACHE */
This page took 0.100506 seconds and 5 git commands to generate.