Tue May 7 19:00:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[platform/upstream/glibc.git] / hurd / hurdsig.c
1 /* Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA.  */
18
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <hurd.h>
22 #include <hurd/signal.h>
23 #include <cthreads.h>           /* For `struct mutex'.  */
24 #include <string.h>
25 #include "hurdfault.h"
26 #include "hurdmalloc.h"         /* XXX */
27
28 const char *_hurdsig_getenv (const char *);
29
30 struct mutex _hurd_siglock;
31 int _hurd_stopped;
32
33 /* Port that receives signals and other miscellaneous messages.  */
34 mach_port_t _hurd_msgport;
35
36 /* Thread listening on it.  */
37 thread_t _hurd_msgport_thread;
38
39 /* Thread which receives task-global signals.  */
40 thread_t _hurd_sigthread;
41
42 /* Linked-list of per-thread signal state.  */
43 struct hurd_sigstate *_hurd_sigstates;
44
45 /* Timeout for RPC's after interrupt_operation. */
46 mach_msg_timeout_t _hurd_interrupted_rpc_timeout = 3000;
47 \f
48 static void
49 default_sigaction (struct sigaction actions[NSIG])
50 {
51   int signo;
52
53   __sigemptyset (&actions[0].sa_mask);
54   actions[0].sa_flags = SA_RESTART;
55   actions[0].sa_handler = SIG_DFL;
56
57   for (signo = 1; signo < NSIG; ++signo)
58     actions[signo] = actions[0];
59 }
60
61 struct hurd_sigstate *
62 _hurd_thread_sigstate (thread_t thread)
63 {
64   struct hurd_sigstate *ss;
65   __mutex_lock (&_hurd_siglock);
66   for (ss = _hurd_sigstates; ss != NULL; ss = ss->next)
67     if (ss->thread == thread)
68        break;
69   if (ss == NULL)
70     {
71       ss = malloc (sizeof (*ss));
72       if (ss == NULL)
73         __libc_fatal ("hurd: Can't allocate thread sigstate\n");
74       ss->thread = thread;
75       __spin_lock_init (&ss->lock);
76
77       /* Initialize default state.  */
78       __sigemptyset (&ss->blocked);
79       __sigemptyset (&ss->pending);
80       memset (&ss->sigaltstack, 0, sizeof (ss->sigaltstack));
81       ss->preempters = NULL;
82       ss->suspended = 0;
83       ss->intr_port = MACH_PORT_NULL;
84       ss->context = NULL;
85
86       /* Initialize the sigaction vector from the default signal receiving
87          thread's state, and its from the system defaults.  */
88       if (thread == _hurd_sigthread)
89         default_sigaction (ss->actions);
90       else
91         {
92           struct hurd_sigstate *s;
93           for (s = _hurd_sigstates; s != NULL; s = s->next)
94             if (s->thread == _hurd_sigthread)
95               break;
96           if (s)
97             {
98               __spin_lock (&s->lock);
99               memcpy (ss->actions, s->actions, sizeof (s->actions));
100               __spin_unlock (&s->lock);
101             }
102           else
103             default_sigaction (ss->actions);
104         }
105
106       ss->next = _hurd_sigstates;
107       _hurd_sigstates = ss;
108     }
109   __mutex_unlock (&_hurd_siglock);
110   return ss;
111 }
112 \f
113 /* Signal delivery itself is on this page.  */
114
115 #include <hurd/fd.h>
116 #include <hurd/crash.h>
117 #include <hurd/paths.h>
118 #include <setjmp.h>
119 #include <fcntl.h>
120 #include <sys/wait.h>
121 #include "thread_state.h"
122 #include <hurd/msg_server.h>
123 #include <hurd/msg_reply.h>     /* For __msg_sig_post_reply.  */
124 #include <hurd/interrupt.h>
125 #include <assert.h>
126 #include <unistd.h>
127
128 int _hurd_core_limit;   /* XXX */
129
130 /* Call the crash dump server to mummify us before we die.
131    Returns nonzero if a core file was written.  */
132 static int
133 write_corefile (int signo, const struct hurd_signal_detail *detail)
134 {
135   error_t err;
136   mach_port_t coreserver;
137   file_t file, coredir;
138   const char *name;
139
140   /* XXX RLIMIT_CORE:
141      When we have a protocol to make the server return an error
142      for RLIMIT_FSIZE, then tell the corefile fs server the RLIMIT_CORE
143      value in place of the RLIMIT_FSIZE value.  */
144
145   /* First get a port to the core dumping server.  */
146   coreserver = MACH_PORT_NULL;
147   name = _hurdsig_getenv ("CRASHSERVER");
148   if (name != NULL)
149     coreserver = __file_name_lookup (name, 0, 0);
150   if (coreserver == MACH_PORT_NULL)
151     coreserver = __file_name_lookup (_SERVERS_CRASH, 0, 0);
152   if (coreserver == MACH_PORT_NULL)
153     return 0;
154
155   /* Get a port to the directory where the new core file will reside.  */
156   name = _hurdsig_getenv ("COREFILE");
157   if (name == NULL)
158     name = "core";
159   coredir = __file_name_split (name, (char **) &name);
160   if (coredir == MACH_PORT_NULL)
161     return 0;
162   /* Create the new file, but don't link it into the directory yet.  */
163   if (err = __dir_mkfile (coredir, O_WRONLY|O_CREAT,
164                           0600 & ~_hurd_umask, /* XXX ? */
165                           &file))
166     return 0;
167
168   /* Call the core dumping server to write the core file.  */
169   err = __crash_dump_task (coreserver,
170                            __mach_task_self (),
171                            file,
172                            signo, detail->code, detail->error,
173                            detail->exc, detail->exc_code, detail->exc_subcode,
174                            _hurd_ports[INIT_PORT_CTTYID].port,
175                            MACH_MSG_TYPE_COPY_SEND);
176   __mach_port_deallocate (__mach_task_self (), coreserver);
177   if (! err)
178     /* The core dump into FILE succeeded, so now link it into the
179        directory.  */
180     err = __dir_link (file, coredir, name, 1);
181   __mach_port_deallocate (__mach_task_self (), file);
182   __mach_port_deallocate (__mach_task_self (), coredir);
183   return !err;
184 }
185
186
187 /* The lowest-numbered thread state flavor value is 1,
188    so we use bit 0 in machine_thread_all_state.set to
189    record whether we have done thread_abort.  */
190 #define THREAD_ABORTED 1
191
192 /* SS->thread is suspended.  Abort the thread and get its basic state.  */
193 static void
194 abort_thread (struct hurd_sigstate *ss, struct machine_thread_all_state *state,
195               void (*reply) (void))
196 {
197   if (!(state->set & THREAD_ABORTED))
198     {
199       error_t err = __thread_abort (ss->thread);
200       assert_perror (err);
201       /* Clear all thread state flavor set bits, because thread_abort may
202          have changed the state.  */
203       state->set = THREAD_ABORTED;
204     }
205
206   if (reply)
207     (*reply) ();
208
209   machine_get_basic_state (ss->thread, state);
210 }
211
212 /* Find the location of the MiG reply port cell in use by the thread whose
213    state is described by THREAD_STATE.  If SIGTHREAD is nonzero, make sure
214    that this location can be set without faulting, or else return NULL.  */
215
216 static mach_port_t *
217 interrupted_reply_port_location (struct machine_thread_all_state *thread_state,
218                                  int sigthread)
219 {
220   mach_port_t *portloc = (mach_port_t *) __hurd_threadvar_location_from_sp
221     (_HURD_THREADVAR_MIG_REPLY, (void *) thread_state->basic.SP);
222
223   if (sigthread && _hurdsig_catch_memory_fault (portloc))
224     /* Faulted trying to read the stack.  */
225     return NULL;
226
227   /* Fault now if this pointer is bogus.  */
228   *(volatile mach_port_t *) portloc = *portloc;
229
230   if (sigthread)
231     _hurdsig_end_catch_fault ();
232
233   return portloc;
234 }
235 \f
236 #include <hurd/sigpreempt.h>
237 #include "intr-msg.h"
238
239 /* Timeout on interrupt_operation calls.  */
240 mach_msg_timeout_t _hurdsig_interrupt_timeout = 1000;
241
242 /* SS->thread is suspended.
243
244    Abort any interruptible RPC operation the thread is doing.
245
246    This uses only the constant member SS->thread and the unlocked, atomically
247    set member SS->intr_port, so no locking is needed.
248
249    If successfully sent an interrupt_operation and therefore the thread should
250    wait for its pending RPC to return (possibly EINTR) before taking the
251    incoming signal, returns the reply port to be received on.  Otherwise
252    returns MACH_PORT_NULL.
253
254    SIGNO is used to find the applicable SA_RESTART bit.  If SIGNO is zero,
255    the RPC fails with EINTR instead of restarting (thread_cancel).
256
257    *STATE_CHANGE is set nonzero if STATE->basic was modified and should
258    be applied back to the thread if it might ever run again, else zero.  */
259
260 mach_port_t
261 _hurdsig_abort_rpcs (struct hurd_sigstate *ss, int signo, int sigthread,
262                      struct machine_thread_all_state *state, int *state_change,
263                      void (*reply) (void))
264 {
265   extern const void _hurd_intr_rpc_msg_in_trap;
266   mach_port_t rcv_port = MACH_PORT_NULL;
267   mach_port_t intr_port;
268
269   *state_change = 0;
270
271   intr_port = ss->intr_port;
272   if (intr_port == MACH_PORT_NULL)
273     /* No interruption needs done.  */
274     return MACH_PORT_NULL;
275
276   /* Abort the thread's kernel context, so any pending message send or
277      receive completes immediately or aborts.  */
278   abort_thread (ss, state, reply);
279
280   if (state->basic.PC < (natural_t) &_hurd_intr_rpc_msg_in_trap)
281     {
282       /* The thread is about to do the RPC, but hasn't yet entered
283          mach_msg.  Mutate the thread's state so it knows not to try
284          the RPC.  */
285       INTR_MSG_BACK_OUT (&state->basic);
286       MACHINE_THREAD_STATE_SET_PC (&state->basic,
287                                    &_hurd_intr_rpc_msg_in_trap);
288       state->basic.SYSRETURN = MACH_SEND_INTERRUPTED;
289       *state_change = 1;
290     }
291   else if (state->basic.PC == (natural_t) &_hurd_intr_rpc_msg_in_trap &&
292            /* The thread was blocked in the system call.  After thread_abort,
293               the return value register indicates what state the RPC was in
294               when interrupted.  */
295            state->basic.SYSRETURN == MACH_RCV_INTERRUPTED)
296       {
297         /* The RPC request message was sent and the thread was waiting for
298            the reply message; now the message receive has been aborted, so
299            the mach_msg call will return MACH_RCV_INTERRUPTED.  We must tell
300            the server to interrupt the pending operation.  The thread must
301            wait for the reply message before running the signal handler (to
302            guarantee that the operation has finished being interrupted), so
303            our nonzero return tells the trampoline code to finish the message
304            receive operation before running the handler.  */
305
306         mach_port_t *reply = interrupted_reply_port_location (state,
307                                                               sigthread);
308         error_t err = __interrupt_operation (intr_port, _hurdsig_interrupt_timeout);
309
310         if (err)
311           {
312             if (reply)
313               {
314                 /* The interrupt didn't work.
315                    Destroy the receive right the thread is blocked on.  */
316                 __mach_port_destroy (__mach_task_self (), *reply);
317                 *reply = MACH_PORT_NULL;
318               }
319
320             /* The system call return value register now contains
321                MACH_RCV_INTERRUPTED; when mach_msg resumes, it will retry the
322                call.  Since we have just destroyed the receive right, the
323                retry will fail with MACH_RCV_INVALID_NAME.  Instead, just
324                change the return value here to EINTR so mach_msg will not
325                retry and the EINTR error code will propagate up.  */
326             state->basic.SYSRETURN = EINTR;
327             *state_change = 1;
328           }
329         else if (reply)
330           rcv_port = *reply;
331
332         /* All threads whose RPCs were interrupted by the interrupt_operation
333            call above will retry their RPCs unless we clear SS->intr_port.
334            So we clear it for the thread taking a signal when SA_RESTART is
335            clear, so that its call returns EINTR.  */
336         if (! signo || !(ss->actions[signo].sa_flags & SA_RESTART))
337           ss->intr_port = MACH_PORT_NULL;
338       }
339
340   return rcv_port;
341 }
342
343
344 /* Abort the RPCs being run by all threads but this one;
345    all other threads should be suspended.  If LIVE is nonzero, those
346    threads may run again, so they should be adjusted as necessary to be
347    happy when resumed.  STATE is clobbered as a scratch area; its initial
348    contents are ignored, and its contents on return are not useful.  */
349
350 static void
351 abort_all_rpcs (int signo, struct machine_thread_all_state *state, int live)
352 {
353   /* We can just loop over the sigstates.  Any thread doing something
354      interruptible must have one.  We needn't bother locking because all
355      other threads are stopped.  */
356
357   struct hurd_sigstate *ss;
358   size_t nthreads;
359   mach_port_t *reply_ports;
360
361   /* First loop over the sigstates to count them.
362      We need to know how big a vector we will need for REPLY_PORTS.  */
363   nthreads = 0;
364   for (ss = _hurd_sigstates; ss != NULL; ss = ss->next)
365     ++nthreads;
366
367   reply_ports = alloca (nthreads * sizeof *reply_ports);
368
369   nthreads = 0;
370   for (ss = _hurd_sigstates; ss != NULL; ss = ss->next, ++nthreads)
371     if (ss->thread == _hurd_msgport_thread)
372       reply_ports[nthreads] = MACH_PORT_NULL;
373     else
374       {
375         int state_changed;
376         state->set = 0;         /* Reset scratch area.  */
377
378         /* Abort any operation in progress with interrupt_operation.
379            Record the reply port the thread is waiting on.
380            We will wait for all the replies below.  */
381         reply_ports[nthreads] = _hurdsig_abort_rpcs (ss, signo, 1,
382                                                      state, &state_changed,
383                                                      NULL);
384         if (live)
385           {
386             if (reply_ports[nthreads] != MACH_PORT_NULL)
387               {
388                 /* We will wait for the reply to this RPC below, so the
389                    thread must issue a new RPC rather than waiting for the
390                    reply to the one it sent.  */
391                 state->basic.SYSRETURN = EINTR;
392                 state_changed = 1;
393               }
394             if (state_changed)
395               /* Aborting the RPC needed to change this thread's state,
396                  and it might ever run again.  So write back its state.  */
397               __thread_set_state (ss->thread, MACHINE_THREAD_STATE_FLAVOR,
398                                   (natural_t *) &state->basic,
399                                   MACHINE_THREAD_STATE_COUNT);
400           }
401       }
402
403   /* Wait for replies from all the successfully interrupted RPCs.  */
404   while (nthreads-- > 0)
405     if (reply_ports[nthreads] != MACH_PORT_NULL)
406       {
407         error_t err;
408         mach_msg_header_t head;
409         err = __mach_msg (&head, MACH_RCV_MSG|MACH_RCV_TIMEOUT, 0, sizeof head,
410                           reply_ports[nthreads],
411                           _hurd_interrupted_rpc_timeout, MACH_PORT_NULL);
412         switch (err)
413           {
414           case MACH_RCV_TIMED_OUT:
415           case MACH_RCV_TOO_LARGE:
416             break;
417
418           default:
419             assert_perror (err);
420           }
421       }
422 }
423
424 struct hurd_signal_preempter *_hurdsig_preempters;
425 sigset_t _hurdsig_preempted_set;
426
427 /* Mask of stop signals.  */
428 #define STOPSIGS (sigmask (SIGTTIN) | sigmask (SIGTTOU) | \
429                   sigmask (SIGSTOP) | sigmask (SIGTSTP))
430
431 /* Deliver a signal.  SS is not locked.  */
432 void
433 _hurd_internal_post_signal (struct hurd_sigstate *ss,
434                             int signo, struct hurd_signal_detail *detail,
435                             mach_port_t reply_port,
436                             mach_msg_type_name_t reply_port_type,
437                             int untraced)
438 {
439   error_t err;
440   struct machine_thread_all_state thread_state;
441   enum { stop, ignore, core, term, handle } act;
442   struct hurd_signal_preempter *pe;
443   sighandler_t handler;
444   sigset_t pending;
445   int ss_suspended;
446
447   /* Reply to this sig_post message.  */
448   __typeof (__msg_sig_post_reply) *reply_rpc
449     = (untraced ? __msg_sig_post_untraced_reply : __msg_sig_post_reply);
450   void reply (void)
451     {
452       error_t err;
453       if (reply_port == MACH_PORT_NULL)
454         return;
455       err = (*reply_rpc) (reply_port, reply_port_type, 0);
456       reply_port = MACH_PORT_NULL;
457       if (err != MACH_SEND_INVALID_DEST) /* Ignore dead reply port.  */
458         assert_perror (err);
459     }
460
461   /* Mark the signal as pending.  */
462   void mark_pending (void)
463     {
464       __sigaddset (&ss->pending, signo);
465       /* Save the details to be given to the handler when SIGNO is
466          unblocked.  */
467       ss->pending_data[signo] = *detail;
468     }
469
470   /* Suspend the process with SIGNO.  */
471   void suspend (void)
472     {
473       /* Stop all other threads and mark ourselves stopped.  */
474       __USEPORT (PROC,
475                  ({
476                    /* Hold the siglock while stopping other threads to be
477                       sure it is not held by another thread afterwards.  */
478                    __mutex_lock (&_hurd_siglock);
479                    __proc_dostop (port, _hurd_msgport_thread);
480                    __mutex_unlock (&_hurd_siglock);
481                    abort_all_rpcs (signo, &thread_state, 1);
482                    reply ();
483                    __proc_mark_stop (port, signo, detail->code);
484                  }));
485       _hurd_stopped = 1;
486     }
487   /* Resume the process after a suspension.  */
488   void resume (void)
489     {
490       /* Resume the process from being stopped.  */
491       thread_t *threads;
492       mach_msg_type_number_t nthreads, i;
493       error_t err;
494
495       if (! _hurd_stopped)
496         return;
497
498       /* Tell the proc server we are continuing.  */
499       __USEPORT (PROC, __proc_mark_cont (port));
500       /* Fetch ports to all our threads and resume them.  */
501       err = __task_threads (__mach_task_self (), &threads, &nthreads);
502       assert_perror (err);
503       for (i = 0; i < nthreads; ++i)
504         {
505           if (threads[i] != _hurd_msgport_thread &&
506               (act != handle || threads[i] != ss->thread))
507             {
508               err = __thread_resume (threads[i]);
509               assert_perror (err);
510             }
511           err = __mach_port_deallocate (__mach_task_self (),
512                                         threads[i]);
513           assert_perror (err);
514         }
515       __vm_deallocate (__mach_task_self (),
516                        (vm_address_t) threads,
517                        nthreads * sizeof *threads);
518       _hurd_stopped = 0;
519       /* The thread that will run the handler is already suspended.  */
520       ss_suspended = 1;
521     }
522
523   if (signo == 0)
524     {
525       if (untraced)
526         /* This is PTRACE_CONTINUE.  */
527         resume ();
528
529       /* This call is just to check for pending signals.  */
530       __spin_lock (&ss->lock);
531       goto check_pending_signals;
532     }
533
534  post_signal:
535
536   thread_state.set = 0;         /* We know nothing.  */
537
538   __spin_lock (&ss->lock);
539
540   /* Check for a preempted signal.  Preempted signals can arrive during
541      critical sections.  */
542
543   handler = SIG_ERR;
544   for (pe = ss->preempters; pe && handler == SIG_ERR; pe = pe->next)
545     if (HURD_PREEMPT_SIGNAL_P (pe, signo, detail->code))
546       handler = (*pe->preempter) (pe, ss, &signo, detail);
547
548   if (handler == SIG_ERR && (__sigmask (signo) & _hurdsig_preempted_set))
549     {
550       __mutex_lock (&_hurd_siglock);
551       for (pe = _hurdsig_preempters; pe && handler == SIG_ERR; pe = pe->next)
552         if (HURD_PREEMPT_SIGNAL_P (pe, signo, detail->code))
553           handler = (*pe->preempter) (pe, ss, &signo, detail);
554       __mutex_unlock (&_hurd_siglock);
555     }
556
557   ss_suspended = 0;
558
559   if (handler == SIG_IGN)
560     /* Ignore the signal altogether.  */
561     act = ignore;
562   if (handler != SIG_ERR)
563     /* Run the preemption-provided handler.  */
564     act = handle;
565   else
566     {
567       /* No preemption.  Do normal handling.  */
568
569       if (!untraced && __sigismember (&_hurdsig_traced, signo))
570         {
571           /* We are being traced.  Stop to tell the debugger of the signal.  */
572           if (_hurd_stopped)
573             /* Already stopped.  Mark the signal as pending;
574                when resumed, we will notice it and stop again.  */
575             mark_pending ();
576           else
577             suspend ();
578           __spin_unlock (&ss->lock);
579           reply ();
580           return;
581         }
582
583       handler = ss->actions[signo].sa_handler;
584
585       if (handler == SIG_DFL)
586         /* Figure out the default action for this signal.  */
587         switch (signo)
588           {
589           case 0:
590             /* A sig_post msg with SIGNO==0 is sent to
591                tell us to check for pending signals.  */
592             act = ignore;
593             break;
594
595           case SIGTTIN:
596           case SIGTTOU:
597           case SIGSTOP:
598           case SIGTSTP:
599             act = stop;
600             break;
601
602           case SIGCONT:
603           case SIGIO:
604           case SIGURG:
605           case SIGCHLD:
606           case SIGWINCH:
607             act = ignore;
608             break;
609
610           case SIGQUIT:
611           case SIGILL:
612           case SIGTRAP:
613           case SIGIOT:
614           case SIGEMT:
615           case SIGFPE:
616           case SIGBUS:
617           case SIGSEGV:
618           case SIGSYS:
619             act = core;
620             break;
621
622           case SIGINFO:
623             if (_hurd_pgrp == _hurd_pid)
624               {
625                 /* We are the process group leader.  Since there is no
626                    user-specified handler for SIGINFO, we use a default one
627                    which prints something interesting.  We use the normal
628                    handler mechanism instead of just doing it here to avoid
629                    the signal thread faulting or blocking in this
630                    potentially hairy operation.  */
631                 act = handle;
632                 handler = _hurd_siginfo_handler;
633               }
634             else
635               act = ignore;
636             break;
637
638           default:
639             act = term;
640             break;
641           }
642       else if (handler == SIG_IGN)
643         act = ignore;
644       else
645         act = handle;
646
647       if (__sigmask (signo) & STOPSIGS)
648         /* Stop signals clear a pending SIGCONT even if they
649            are handled or ignored (but not if preempted).  */
650         ss->pending &= ~sigmask (SIGCONT);
651       else
652         {
653           if (signo == SIGCONT)
654             /* Even if handled or ignored (but not preempted), SIGCONT clears
655                stop signals and resumes the process.  */
656             ss->pending &= ~STOPSIGS;
657
658           if (_hurd_stopped && act != stop && (untraced || signo == SIGCONT))
659             resume ();
660         }
661     }
662
663   if (_hurd_orphaned && act == stop &&
664       (__sigmask (signo) & (__sigmask (SIGTTIN) | __sigmask (SIGTTOU) |
665                             __sigmask (SIGTSTP))))
666     {
667       /* If we would ordinarily stop for a job control signal, but we are
668          orphaned so noone would ever notice and continue us again, we just
669          quietly die, alone and in the dark.  */
670       detail->code = signo;
671       signo = SIGKILL;
672       act = term;
673     }
674
675   /* Handle receipt of a blocked signal, or any signal while stopped.  */
676   if (__sigismember (&ss->blocked, signo) ||
677       (signo != SIGKILL && _hurd_stopped))
678     {
679       mark_pending ();
680       act = ignore;
681     }
682
683   /* Perform the chosen action for the signal.  */
684   switch (act)
685     {
686     case stop:
687       if (_hurd_stopped)
688         {
689           /* We are already stopped, but receiving an untraced stop
690              signal.  Instead of resuming and suspending again, just
691              notify the proc server of the new stop signal.  */
692           error_t err = __USEPORT (PROC, __proc_mark_stop
693                                    (port, signo, detail->code));
694           assert_perror (err);
695         }
696       else
697         /* Suspend the process.  */
698         suspend ();
699       break;
700
701     case ignore:
702       /* Nobody cares about this signal.  */
703       break;
704
705     sigbomb:
706       /* We got a fault setting up the stack frame for the handler.
707          Nothing to do but die; BSD gets SIGILL in this case.  */
708       detail->code = signo;     /* XXX ? */
709       signo = SIGILL;
710       act = core;
711       /* FALLTHROUGH */
712
713     case term:                  /* Time to die.  */
714     case core:                  /* And leave a rotting corpse.  */
715       /* Have the proc server stop all other threads in our task.  */
716       err = __USEPORT (PROC, __proc_dostop (port, _hurd_msgport_thread));
717       assert_perror (err);
718       /* No more user instructions will be executed.
719          The signal can now be considered delivered.  */
720       reply ();
721       /* Abort all server operations now in progress.  */
722       abort_all_rpcs (signo, &thread_state, 0);
723
724       {
725         int status = W_EXITCODE (0, signo);
726         /* Do a core dump if desired.  Only set the wait status bit saying we
727            in fact dumped core if the operation was actually successful.  */
728         if (act == core && write_corefile (signo, detail))
729           status |= WCOREFLAG;
730         /* Tell proc how we died and then stick the saber in the gut.  */
731         _hurd_exit (status);
732         /* NOTREACHED */
733       }
734
735     case handle:
736       /* Call a handler for this signal.  */
737       {
738         struct sigcontext *scp, ocontext;
739         int wait_for_reply, state_changed;
740
741         /* Stop the thread and abort its pending RPC operations.  */
742         if (! ss_suspended)
743           {
744             err = __thread_suspend (ss->thread);
745             assert_perror (err);
746           }
747
748         /* Abort the thread's kernel context, so any pending message send
749            or receive completes immediately or aborts.  If an interruptible
750            RPC is in progress, abort_rpcs will do this.  But we must always
751            do it before fetching the thread's state, because
752            thread_get_state is never kosher before thread_abort.  */
753         abort_thread (ss, &thread_state, NULL);
754
755         if (ss->context)
756           {
757             /* We have a previous sigcontext that sigreturn was about
758                to restore when another signal arrived.  */
759
760             mach_port_t *loc;
761
762             if (_hurdsig_catch_memory_fault (ss->context))
763               {
764                 /* We faulted reading the thread's stack.  Forget that
765                    context and pretend it wasn't there.  It almost
766                    certainly crash if this handler returns, but that's it's
767                    problem.  */
768                 ss->context = NULL;
769               }
770             else
771               {
772                 /* Copy the context from the thread's stack before
773                    we start diddling the stack to set up the handler.  */
774                 ocontext = *ss->context;
775                 ss->context = &ocontext;
776               }
777             _hurdsig_end_catch_fault ();
778
779             if (! machine_get_basic_state (ss->thread, &thread_state))
780               goto sigbomb;
781             loc = interrupted_reply_port_location (&thread_state, 1);
782             if (loc && *loc != MACH_PORT_NULL)
783               /* This is the reply port for the context which called
784                  sigreturn.  Since we are abandoning that context entirely
785                  and restoring SS->context instead, destroy this port.  */
786               __mach_port_destroy (__mach_task_self (), *loc);
787
788             /* The thread was in sigreturn, not in any interruptible RPC.  */
789             wait_for_reply = 0;
790
791             assert (! __spin_lock_locked (&ss->critical_section_lock));
792           }
793         else
794           {
795             wait_for_reply
796               = (_hurdsig_abort_rpcs (ss, signo, 1,
797                                       &thread_state, &state_changed,
798                                       &reply)
799                  != MACH_PORT_NULL);
800
801             if (__spin_lock_locked (&ss->critical_section_lock))
802               {
803                 /* The thread is in a critical section.  Mark the signal as
804                    pending.  When it finishes the critical section, it will
805                    check for pending signals.  */
806                 mark_pending ();
807                 assert (! state_changed);
808                 __thread_resume (ss->thread);
809                 break;
810               }
811           }
812
813         /* Call the machine-dependent function to set the thread up
814            to run the signal handler, and preserve its old context.  */
815         scp = _hurd_setup_sighandler (ss, handler, signo, detail,
816                                       wait_for_reply, &thread_state);
817         if (scp == NULL)
818           goto sigbomb;
819
820         /* Set the machine-independent parts of the signal context.  */
821
822         {
823           /* Fetch the thread variable for the MiG reply port,
824              and set it to MACH_PORT_NULL.  */
825           mach_port_t *loc = interrupted_reply_port_location (&thread_state,
826                                                               1);
827           if (loc)
828             {
829               scp->sc_reply_port = *loc;
830               *loc = MACH_PORT_NULL;
831             }
832           else
833             scp->sc_reply_port = MACH_PORT_NULL;
834
835           /* Save the intr_port in use by the interrupted code,
836              and clear the cell before running the trampoline.  */
837           scp->sc_intr_port = ss->intr_port;
838           ss->intr_port = MACH_PORT_NULL;
839
840           if (ss->context)
841             {
842               /* After the handler runs we will restore to the state in
843                  SS->context, not the state of the thread now.  So restore
844                  that context's reply port and intr port.  */
845
846               scp->sc_reply_port = ss->context->sc_reply_port;
847               scp->sc_intr_port = ss->context->sc_intr_port;
848
849               ss->context = NULL;
850             }
851         }
852
853         /* Backdoor extra argument to signal handler.  */
854         scp->sc_error = detail->error;
855
856         /* Block SIGNO and requested signals while running the handler.  */
857         scp->sc_mask = ss->blocked;
858         ss->blocked |= __sigmask (signo) | ss->actions[signo].sa_mask;
859
860         /* Start the thread running the handler (or possibly waiting for an
861            RPC reply before running the handler).  */
862         err = __thread_set_state (ss->thread, MACHINE_THREAD_STATE_FLAVOR,
863                                   (natural_t *) &thread_state.basic,
864                                   MACHINE_THREAD_STATE_COUNT);
865         assert_perror (err);
866         err = __thread_resume (ss->thread);
867         assert_perror (err);
868         thread_state.set = 0;   /* Everything we know is now wrong.  */
869         break;
870       }
871     }
872
873   /* The signal has either been ignored or is now being handled.  We can
874      consider it delivered and reply to the killer.  */
875   reply ();
876
877   /* We get here unless the signal was fatal.  We still hold SS->lock.
878      Check for pending signals, and loop to post them.  */
879   {
880     /* Return nonzero if SS has any signals pending we should worry about.
881        We don't worry about any pending signals if we are stopped, nor if
882        SS is in a critical section.  We are guaranteed to get a sig_post
883        message before any of them become deliverable: either the SIGCONT
884        signal, or a sig_post with SIGNO==0 as an explicit poll when the
885        thread finishes its critical section.  */
886     inline int signals_pending (void)
887       {
888         if (_hurd_stopped || __spin_lock_locked (&ss->critical_section_lock))
889           return 0;
890         return pending = ss->pending & ~ss->blocked;
891       }
892
893   check_pending_signals:
894     untraced = 0;
895
896     if (signals_pending ())
897       {
898       pending:
899         for (signo = 1; signo < NSIG; ++signo)
900           if (__sigismember (&pending, signo))
901             {
902               __sigdelset (&ss->pending, signo);
903               *detail = ss->pending_data[signo];
904               __spin_unlock (&ss->lock);
905               goto post_signal;
906             }
907       }
908
909     /* No pending signals left undelivered for this thread.
910        If we were sent signal 0, we need to check for pending
911        signals for all threads.  */
912     if (signo == 0)
913       {
914         __spin_unlock (&ss->lock);
915         __mutex_lock (&_hurd_siglock);
916         for (ss = _hurd_sigstates; ss != NULL; ss = ss->next)
917           {
918             __spin_lock (&ss->lock);
919             if (signals_pending ())
920               goto pending;
921             __spin_unlock (&ss->lock);
922           }
923         __mutex_unlock (&_hurd_siglock);
924       }
925     else
926       {
927         /* No more signals pending; SS->lock is still locked.
928            Wake up any sigsuspend call that is blocking SS->thread.  */
929         if (ss->suspended != MACH_PORT_NULL)
930           {
931             /* There is a sigsuspend waiting.  Tell it to wake up.  */
932             error_t err;
933             mach_msg_header_t msg;
934             err = __mach_port_insert_right (__mach_task_self (),
935                                             ss->suspended, ss->suspended,
936                                             MACH_MSG_TYPE_MAKE_SEND);
937             assert_perror (err);
938             msg.msgh_bits = MACH_MSGH_BITS (MACH_MSG_TYPE_MOVE_SEND, 0);
939             msg.msgh_remote_port = ss->suspended;
940             msg.msgh_local_port = MACH_PORT_NULL;
941             /* These values do not matter.  */
942             msg.msgh_id = 8675309; /* Jenny, Jenny.  */
943             msg.msgh_seqno = 17; /* Random.  */
944             ss->suspended = MACH_PORT_NULL;
945             err = __mach_msg (&msg, MACH_SEND_MSG, sizeof msg, 0,
946                               MACH_PORT_NULL, MACH_MSG_TIMEOUT_NONE,
947                               MACH_PORT_NULL);
948             assert_perror (err);
949           }
950         __spin_unlock (&ss->lock);
951       }
952   }
953
954   /* All pending signals delivered to all threads.
955      Now we can send the reply message even for signal 0.  */
956   reply ();
957 }
958 \f
959 /* Decide whether REFPORT enables the sender to send us a SIGNO signal.
960    Returns zero if so, otherwise the error code to return to the sender.  */
961
962 static error_t
963 signal_allowed (int signo, mach_port_t refport)
964 {
965   if (signo < 0 || signo >= NSIG)
966     return EINVAL;
967
968   if (refport == __mach_task_self ())
969     /* Can send any signal.  */
970     goto win;
971
972   /* Avoid needing to check for this below.  */
973   if (refport == MACH_PORT_NULL)
974     return EPERM;
975
976   switch (signo)
977     {
978     case SIGINT:
979     case SIGQUIT:
980     case SIGTSTP:
981     case SIGHUP:
982     case SIGINFO:
983     case SIGTTIN:
984     case SIGTTOU:
985       /* Job control signals can be sent by the controlling terminal.  */
986       if (__USEPORT (CTTYID, port == refport))
987         goto win;
988       break;
989
990     case SIGCONT:
991       {
992         /* A continue signal can be sent by anyone in the session.  */
993         mach_port_t sessport;
994         if (! __USEPORT (PROC, __proc_getsidport (port, &sessport)))
995           {
996             __mach_port_deallocate (__mach_task_self (), sessport);
997             if (refport == sessport)
998               goto win;
999           }
1000       }
1001       break;
1002
1003     case SIGIO:
1004     case SIGURG:
1005       {
1006         /* Any io object a file descriptor refers to might send us
1007            one of these signals using its async ID port for REFPORT.
1008
1009            This is pretty wide open; it is not unlikely that some random
1010            process can at least open for reading something we have open,
1011            get its async ID port, and send us a spurious SIGIO or SIGURG
1012            signal.  But BSD is actually wider open than that!--you can set
1013            the owner of an io object to any process or process group
1014            whatsoever and send them gratuitous signals.
1015
1016            Someday we could implement some reasonable scheme for
1017            authorizing SIGIO and SIGURG signals properly.  */
1018
1019         int d;
1020         int lucky = 0;          /* True if we find a match for REFPORT.  */
1021         __mutex_lock (&_hurd_dtable_lock);
1022         for (d = 0; !lucky && (unsigned) d < (unsigned) _hurd_dtablesize; ++d)
1023           {
1024             struct hurd_userlink ulink;
1025             io_t port;
1026             mach_port_t asyncid;
1027             if (_hurd_dtable[d] == NULL)
1028               continue;
1029             port = _hurd_port_get (&_hurd_dtable[d]->port, &ulink);
1030             if (! __io_get_icky_async_id (port, &asyncid))
1031               {
1032                 if (refport == asyncid)
1033                   /* Break out of the loop on the next iteration.  */
1034                   lucky = 1;
1035                 __mach_port_deallocate (__mach_task_self (), asyncid);
1036               }
1037             _hurd_port_free (&_hurd_dtable[d]->port, &ulink, port);
1038           }
1039         /* If we found a lucky winner, we've set D to -1 in the loop.  */
1040         if (lucky)
1041           goto win;
1042       }
1043     }
1044
1045   /* If this signal is legit, we have done `goto win' by now.
1046      When we return the error, mig deallocates REFPORT.  */
1047   return EPERM;
1048
1049  win:
1050   /* Deallocate the REFPORT send right; we are done with it.  */
1051   __mach_port_deallocate (__mach_task_self (), refport);
1052
1053   return 0;
1054 }
1055
1056 /* Implement the sig_post RPC from <hurd/msg.defs>;
1057    sent when someone wants us to get a signal.  */
1058 kern_return_t
1059 _S_msg_sig_post (mach_port_t me,
1060                  mach_port_t reply_port, mach_msg_type_name_t reply_port_type,
1061                  int signo, natural_t sigcode,
1062                  mach_port_t refport)
1063 {
1064   error_t err;
1065   struct hurd_signal_detail d;
1066
1067   if (err = signal_allowed (signo, refport))
1068     return err;
1069
1070   d.code = sigcode;
1071   d.exc = 0;
1072
1073   /* Post the signal to the designated signal-receiving thread.  This will
1074      reply when the signal can be considered delivered.  */
1075   _hurd_internal_post_signal (_hurd_thread_sigstate (_hurd_sigthread),
1076                               signo, &d, reply_port, reply_port_type,
1077                               0); /* Stop if traced.  */
1078
1079   return MIG_NO_REPLY;          /* Already replied.  */
1080 }
1081
1082 /* Implement the sig_post_untraced RPC from <hurd/msg.defs>;
1083    sent when the debugger wants us to really get a signal
1084    even if we are traced.  */
1085 kern_return_t
1086 _S_msg_sig_post_untraced (mach_port_t me,
1087                           mach_port_t reply_port,
1088                           mach_msg_type_name_t reply_port_type,
1089                           int signo, natural_t sigcode,
1090                           mach_port_t refport)
1091 {
1092   error_t err;
1093   struct hurd_signal_detail d;
1094
1095   if (err = signal_allowed (signo, refport))
1096     return err;
1097
1098   d.code = sigcode;
1099   d.exc = 0;
1100
1101   /* Post the signal to the designated signal-receiving thread.  This will
1102      reply when the signal can be considered delivered.  */
1103   _hurd_internal_post_signal (_hurd_thread_sigstate (_hurd_sigthread),
1104                               signo, &d, reply_port, reply_port_type,
1105                               1); /* Untraced flag. */
1106
1107   return MIG_NO_REPLY;          /* Already replied.  */
1108 }
1109 \f
1110 extern void __mig_init (void *);
1111
1112 #include <mach/task_special_ports.h>
1113
1114 /* Initialize the message port and _hurd_sigthread and start the signal
1115    thread.  */
1116
1117 void
1118 _hurdsig_init (void)
1119 {
1120   error_t err;
1121   vm_size_t stacksize;
1122
1123   __mutex_init (&_hurd_siglock);
1124
1125   err = __mach_port_allocate (__mach_task_self (),
1126                               MACH_PORT_RIGHT_RECEIVE,
1127                               &_hurd_msgport);
1128   assert_perror (err);
1129
1130   /* Make a send right to the signal port.  */
1131   err = __mach_port_insert_right (__mach_task_self (),
1132                                   _hurd_msgport,
1133                                   _hurd_msgport,
1134                                   MACH_MSG_TYPE_MAKE_SEND);
1135   assert_perror (err);
1136
1137   /* Set the default thread to receive task-global signals
1138      to this one, the main (first) user thread.  */
1139   _hurd_sigthread = __mach_thread_self ();
1140
1141   /* Start the signal thread listening on the message port.  */
1142
1143   err = __thread_create (__mach_task_self (), &_hurd_msgport_thread);
1144   assert_perror (err);
1145
1146   stacksize = __vm_page_size * 4; /* Small stack for signal thread.  */
1147   err = __mach_setup_thread (__mach_task_self (), _hurd_msgport_thread,
1148                              _hurd_msgport_receive,
1149                              (vm_address_t *) &__hurd_sigthread_stack_base,
1150                              &stacksize);
1151   assert_perror (err);
1152
1153   __hurd_sigthread_stack_end = __hurd_sigthread_stack_base + stacksize;
1154   __hurd_sigthread_variables =
1155     malloc (__hurd_threadvar_max * sizeof (unsigned long int));
1156   if (__hurd_sigthread_variables == NULL)
1157     __libc_fatal ("hurd: Can't allocate thread variables for signal thread\n");
1158
1159   /* Reinitialize the MiG support routines so they will use a per-thread
1160      variable for the cached reply port.  */
1161   __mig_init ((void *) __hurd_sigthread_stack_base);
1162
1163   err = __thread_resume (_hurd_msgport_thread);
1164   assert_perror (err);
1165
1166   /* Receive exceptions on the signal port.  */
1167   __task_set_special_port (__mach_task_self (),
1168                            TASK_EXCEPTION_PORT, _hurd_msgport);
1169 }
1170 \f                               /* XXXX */
1171 /* Reauthenticate with the proc server.  */
1172
1173 static void
1174 reauth_proc (mach_port_t new)
1175 {
1176   mach_port_t ref, ignore;
1177
1178   ref = __mach_reply_port ();
1179   if (! HURD_PORT_USE (&_hurd_ports[INIT_PORT_PROC],
1180                        __proc_reauthenticate (port, ref,
1181                                               MACH_MSG_TYPE_MAKE_SEND) ||
1182                        __auth_user_authenticate (new, ref,
1183                                                  MACH_MSG_TYPE_MAKE_SEND,
1184                                                  &ignore))
1185       && ignore != MACH_PORT_NULL)
1186     __mach_port_deallocate (__mach_task_self (), ignore);
1187   __mach_port_destroy (__mach_task_self (), ref);
1188
1189   (void) &reauth_proc;          /* Silence compiler warning.  */
1190 }
1191 text_set_element (_hurd_reauth_hook, reauth_proc);
1192 \f
1193 /* Like `getenv', but safe for the signal thread to run.
1194    If the environment is trashed, this will just return NULL.  */
1195
1196 const char *
1197 _hurdsig_getenv (const char *variable)
1198 {
1199   if (_hurdsig_catch_memory_fault (__environ))
1200     /* We bombed in getenv.  */
1201     return NULL;
1202   else
1203     {
1204       const size_t len = strlen (variable);
1205       char *value = NULL;
1206       char *volatile *ep = __environ;
1207       while (*ep)
1208         {
1209           const char *p = *ep;
1210           _hurdsig_fault_preempter.first = (long int) p;
1211           _hurdsig_fault_preempter.last = VM_MAX_ADDRESS;
1212           if (! strncmp (p, variable, len) && p[len] == '=')
1213             {
1214               char *value;
1215               size_t valuelen;
1216               p += len + 1;
1217               valuelen = strlen (p);
1218               _hurdsig_fault_preempter.last = (long int) (p + valuelen);
1219               value = malloc (++valuelen);
1220               if (value)
1221                 memcpy (value, p, valuelen);
1222               break;
1223             }
1224           _hurdsig_fault_preempter.first = (long int) ++ep;
1225           _hurdsig_fault_preempter.last = (long int) (ep + 1);
1226         }
1227       _hurdsig_end_catch_fault ();
1228       return value;
1229     }
1230 }