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