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