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