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