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