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