util-cleanup-20071031
[openafs.git] / src / util / softsig.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  *
9  * Portions Copyright (c) 2003 Apple Computer, Inc.
10  */
11
12 #include <afsconfig.h>
13 #include <afs/param.h>
14
15 #define _POSIX_PTHREAD_SEMANTICS
16 #include <afs/param.h>
17 #include <assert.h>
18 #include <stdlib.h>
19 #include <stdio.h>
20 #ifndef  AFS_NT40_ENV
21 #include <signal.h>
22 #include <unistd.h>
23 #else
24 #include <afs/procmgmt.h>
25 #endif
26 #include <pthread.h>
27
28 #include "pthread_nosigs.h"
29
30 /*------------------------------------------------------------------------
31  * Under Darwin 6.x (including 7.0), sigwait() is broken, so we use
32  * sigsuspend() instead.  We also don't block signals we don't know
33  * about, so they should kill us, rather than us returning zero status.
34  *------------------------------------------------------------------------*/
35
36 static pthread_t softsig_tid;
37 static struct {
38     void (*handler) (int);
39     int pending;
40 #if !defined(AFS_DARWIN60_ENV) || defined(AFS_NBSD30_ENV) || !defined(AFS_NBSD_ENV)
41     int fatal;
42 #endif /* !defined(AFS_DARWIN60_ENV) || !defined(AFS_NBSD_ENV) */
43     int inited;
44 } softsig_sigs[NSIG];
45
46 static void *
47 softsig_thread(void *arg)
48 {
49     sigset_t ss, os;
50     int i;
51
52     sigemptyset(&ss);
53     /* get the list of signals _not_ blocked by AFS_SIGSET_CLEAR() */
54     pthread_sigmask(SIG_BLOCK, &ss, &os);
55     pthread_sigmask(SIG_SETMASK, &os, NULL);
56     sigaddset(&ss, SIGUSR1);
57 #if defined(AFS_DARWIN60_ENV) || (defined(AFS_NBSD_ENV) && !defined(AFS_NBSD30_ENV))
58     pthread_sigmask (SIG_BLOCK, &ss, NULL);
59     sigdelset (&os, SIGUSR1);
60 #else /* !defined(AFS_DARWIN60_ENV) && !defined(AFS_NBSD_ENV) */
61     for (i = 0; i < NSIG; i++) {
62         if (!sigismember(&os, i) && i != SIGSTOP && i != SIGKILL) {
63             sigaddset(&ss, i);
64             softsig_sigs[i].fatal = 1;
65         }
66     }
67 #endif /* defined(AFS_DARWIN60_ENV) || defined(AFS_NBSD_ENV) */
68
69     while (1) {
70         void (*h) (int);
71         int sigw;
72
73         h = NULL;
74
75         for (i = 0; i < NSIG; i++) {
76             if (softsig_sigs[i].handler && !softsig_sigs[i].inited) {
77                 sigaddset(&ss, i);
78 #if defined(AFS_DARWIN60_ENV) || (defined(AFS_NBSD_ENV) && !defined(AFS_NBSD30_ENV))
79                 pthread_sigmask (SIG_BLOCK, &ss, NULL);
80                 sigdelset (&os, i);
81 #endif /* defined(AFS_DARWIN60_ENV) || defined(AFS_NBSD_ENV) */
82                 softsig_sigs[i].inited = 1;
83             }
84             if (softsig_sigs[i].pending) {
85                 softsig_sigs[i].pending = 0;
86                 h = softsig_sigs[i].handler;
87                 break;
88             }
89         }
90         if (i == NSIG) {
91 #if defined(AFS_DARWIN60_ENV) || (defined(AFS_NBSD_ENV) && !defined(AFS_NBSD30_ENV))
92             sigsuspend (&os);
93 #else /* !defined(AFS_DARWIN60_ENV) && !defined(AFS_NBSD_ENV) */
94             sigwait(&ss, &sigw);
95             if (sigw != SIGUSR1) {
96                 if (softsig_sigs[sigw].fatal)
97                     exit(0);
98                 softsig_sigs[sigw].pending = 1;
99             }
100 #endif /* defined(AFS_DARWIN60_ENV) || defined(AFS_NBSD_ENV) */
101         } else if (h)
102             h(i);
103     }
104 }
105
106 static void
107 softsig_usr1(int signo)
108 {
109     signal (SIGUSR1, softsig_usr1);
110 }
111
112 void
113 softsig_init()
114 {
115     int rc;
116     AFS_SIGSET_DECL;
117     AFS_SIGSET_CLEAR();
118     rc = pthread_create(&softsig_tid, NULL, &softsig_thread, NULL);
119     assert(0 == rc);
120     AFS_SIGSET_RESTORE();
121     signal (SIGUSR1, softsig_usr1);
122 }
123
124 static void
125 softsig_handler(int signo)
126 {
127     signal(signo, softsig_handler);
128     softsig_sigs[signo].pending = 1;
129     pthread_kill(softsig_tid, SIGUSR1);
130 }
131
132 void
133 softsig_signal(int signo, void (*handler) (int))
134 {
135     softsig_sigs[signo].handler = handler;
136     softsig_sigs[signo].inited = 0;
137     signal(signo, softsig_handler);
138     pthread_kill(softsig_tid, SIGUSR1);
139 }
140
141 #if defined(TEST)
142 static void
143 print_foo(int signo)
144 {
145     printf("foo, signo = %d, tid = %d\n", signo, pthread_self());
146 }
147
148 int
149 main()
150 {
151     softsig_init();
152     softsig_signal(SIGINT, print_foo);
153     printf("main is tid %d\n", pthread_self());
154     while (1)
155         sleep(60);
156 }
157 #endif