]> git.proxmox.com Git - mirror_frr.git/blob - lib/sigevent.c
Merge pull request #486 from LabNConsulting/working/3.0/patch/issue483
[mirror_frr.git] / lib / sigevent.c
1 /* Quagga signal handling functions.
2 * Copyright (C) 2004 Paul Jakma,
3 *
4 * This file is part of Quagga.
5 *
6 * Quagga is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * Quagga is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with Quagga; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22 #include <zebra.h>
23 #include <sigevent.h>
24 #include <log.h>
25 #include <memory.h>
26
27 #ifdef SA_SIGINFO
28 #ifdef HAVE_UCONTEXT_H
29 #ifdef GNU_LINUX
30 /* get REG_EIP from ucontext.h */
31 #ifndef __USE_GNU
32 #define __USE_GNU
33 #endif /* __USE_GNU */
34 #endif /* GNU_LINUX */
35 #include <ucontext.h>
36 #endif /* HAVE_UCONTEXT_H */
37 #endif /* SA_SIGINFO */
38
39
40 /* master signals descriptor struct */
41 struct quagga_sigevent_master_t
42 {
43 struct thread *t;
44
45 struct quagga_signal_t *signals;
46 int sigc;
47
48 volatile sig_atomic_t caught;
49 } sigmaster;
50
51 /* Generic signal handler
52 * Schedules signal event thread
53 */
54 static void
55 quagga_signal_handler (int signo)
56 {
57 int i;
58 struct quagga_signal_t *sig;
59
60 for (i = 0; i < sigmaster.sigc; i++)
61 {
62 sig = &(sigmaster.signals[i]);
63
64 if (sig->signal == signo)
65 sig->caught = 1;
66 }
67
68 sigmaster.caught = 1;
69 }
70
71 /* check if signals have been caught and run appropriate handlers */
72 int
73 quagga_sigevent_process (void)
74 {
75 struct quagga_signal_t *sig;
76 int i;
77 #ifdef SIGEVENT_BLOCK_SIGNALS
78 /* shouldnt need to block signals, but potentially may be needed */
79 sigset_t newmask, oldmask;
80
81 /*
82 * Block most signals, but be careful not to defer SIGTRAP because
83 * doing so breaks gdb, at least on NetBSD 2.0. Avoid asking to
84 * block SIGKILL, just because we shouldn't be able to do so.
85 */
86 sigfillset (&newmask);
87 sigdelset (&newmask, SIGTRAP);
88 sigdelset (&newmask, SIGKILL);
89
90 if ( (sigprocmask (SIG_BLOCK, &newmask, &oldmask)) < 0)
91 {
92 zlog_err ("quagga_signal_timer: couldnt block signals!");
93 return -1;
94 }
95 #endif /* SIGEVENT_BLOCK_SIGNALS */
96
97 if (sigmaster.caught > 0)
98 {
99 sigmaster.caught = 0;
100 /* must not read or set sigmaster.caught after here,
101 * race condition with per-sig caught flags if one does
102 */
103
104 for (i = 0; i < sigmaster.sigc; i++)
105 {
106 sig = &(sigmaster.signals[i]);
107
108 if (sig->caught > 0)
109 {
110 sig->caught = 0;
111 if (sig->handler)
112 sig->handler ();
113 }
114 }
115 }
116
117 #ifdef SIGEVENT_BLOCK_SIGNALS
118 if ( sigprocmask (SIG_UNBLOCK, &oldmask, NULL) < 0 );
119 return -1;
120 #endif /* SIGEVENT_BLOCK_SIGNALS */
121
122 return 0;
123 }
124
125 #ifdef SIGEVENT_SCHEDULE_THREAD
126 /* timer thread to check signals. Shouldnt be needed */
127 int
128 quagga_signal_timer (struct thread *t)
129 {
130 struct quagga_sigevent_master_t *sigm;
131 struct quagga_signal_t *sig;
132 int i;
133
134 sigm = THREAD_ARG (t);
135 sigm->t = thread_add_timer (sigm->t->master, quagga_signal_timer, &sigmaster,
136 QUAGGA_SIGNAL_TIMER_INTERVAL);
137 return quagga_sigevent_process ();
138 }
139 #endif /* SIGEVENT_SCHEDULE_THREAD */
140
141 /* Initialization of signal handles. */
142 /* Signal wrapper. */
143 static int
144 signal_set (int signo)
145 {
146 int ret;
147 struct sigaction sig;
148 struct sigaction osig;
149
150 sig.sa_handler = &quagga_signal_handler;
151 sigfillset (&sig.sa_mask);
152 sig.sa_flags = 0;
153 if (signo == SIGALRM) {
154 #ifdef SA_INTERRUPT
155 sig.sa_flags |= SA_INTERRUPT; /* SunOS */
156 #endif
157 } else {
158 #ifdef SA_RESTART
159 sig.sa_flags |= SA_RESTART;
160 #endif /* SA_RESTART */
161 }
162
163 ret = sigaction (signo, &sig, &osig);
164 if (ret < 0)
165 return ret;
166 else
167 return 0;
168 }
169
170 #ifdef SA_SIGINFO
171
172 /* XXX This function should be enhanced to support more platforms
173 (it currently works only on Linux/x86). */
174 static void *
175 program_counter(void *context)
176 {
177 #ifdef HAVE_UCONTEXT_H
178 #ifdef GNU_LINUX
179 /* these are from GNU libc, rather than Linux, strictly speaking */
180 # if defined(REG_EIP)
181 # define REG_INDEX REG_EIP
182 # elif defined(REG_RIP)
183 # define REG_INDEX REG_RIP
184 # elif defined(__powerpc__)
185 # define REG_INDEX 32
186 # endif
187 #elif defined(SUNOS_5) /* !GNU_LINUX */
188 # define REG_INDEX REG_PC
189 #endif /* GNU_LINUX */
190
191 #ifdef REG_INDEX
192 # ifdef HAVE_UCONTEXT_T_UC_MCONTEXT_GREGS
193 # define REGS gregs[REG_INDEX]
194 # elif defined(HAVE_UCONTEXT_T_UC_MCONTEXT_UC_REGS)
195 # define REGS uc_regs->gregs[REG_INDEX]
196 # endif /* HAVE_UCONTEXT_T_UC_MCONTEXT_GREGS */
197 #endif /* REG_INDEX */
198
199 #ifdef REGS
200 if (context)
201 return (void *)(((ucontext_t *)context)->uc_mcontext.REGS);
202 #elif defined(HAVE_UCONTEXT_T_UC_MCONTEXT_REGS__NIP)
203 /* older Linux / struct pt_regs ? */
204 if (context)
205 return (void *)(((ucontext_t *)context)->uc_mcontext.regs->nip);
206 #endif /* REGS */
207
208 #endif /* HAVE_UCONTEXT_H */
209 return NULL;
210 }
211
212 #endif /* SA_SIGINFO */
213
214 static void __attribute__ ((noreturn))
215 exit_handler(int signo
216 #ifdef SA_SIGINFO
217 , siginfo_t *siginfo, void *context
218 #endif
219 )
220 {
221 zlog_signal(signo, "exiting..."
222 #ifdef SA_SIGINFO
223 , siginfo, program_counter(context)
224 #endif
225 );
226 _exit(128+signo);
227 }
228
229 static void __attribute__ ((noreturn))
230 core_handler(int signo
231 #ifdef SA_SIGINFO
232 , siginfo_t *siginfo, void *context
233 #endif
234 )
235 {
236 zlog_signal(signo, "aborting..."
237 #ifdef SA_SIGINFO
238 , siginfo, program_counter(context)
239 #endif
240 );
241 /* dump memory stats on core */
242 log_memstats_stderr ("core_handler");
243 abort();
244 }
245
246 static void
247 trap_default_signals(void)
248 {
249 static const int core_signals[] = {
250 SIGQUIT,
251 SIGILL,
252 #ifdef SIGEMT
253 SIGEMT,
254 #endif
255 SIGFPE,
256 SIGBUS,
257 SIGSEGV,
258 #ifdef SIGSYS
259 SIGSYS,
260 #endif
261 #ifdef SIGXCPU
262 SIGXCPU,
263 #endif
264 #ifdef SIGXFSZ
265 SIGXFSZ,
266 #endif
267 };
268 static const int exit_signals[] = {
269 SIGHUP,
270 SIGINT,
271 SIGALRM,
272 SIGTERM,
273 SIGUSR1,
274 SIGUSR2,
275 #ifdef SIGPOLL
276 SIGPOLL,
277 #endif
278 #ifdef SIGVTALRM
279 SIGVTALRM,
280 #endif
281 #ifdef SIGSTKFLT
282 SIGSTKFLT,
283 #endif
284 };
285 static const int ignore_signals[] = {
286 SIGPIPE,
287 };
288 static const struct {
289 const int *sigs;
290 u_int nsigs;
291 void (*handler)(int signo
292 #ifdef SA_SIGINFO
293 , siginfo_t *info, void *context
294 #endif
295 );
296 } sigmap[] = {
297 { core_signals, array_size(core_signals), core_handler},
298 { exit_signals, array_size(exit_signals), exit_handler},
299 { ignore_signals, array_size(ignore_signals), NULL},
300 };
301 u_int i;
302
303 for (i = 0; i < array_size(sigmap); i++)
304 {
305 u_int j;
306
307 for (j = 0; j < sigmap[i].nsigs; j++)
308 {
309 struct sigaction oact;
310 if ((sigaction(sigmap[i].sigs[j],NULL,&oact) == 0) &&
311 (oact.sa_handler == SIG_DFL))
312 {
313 struct sigaction act;
314 sigfillset (&act.sa_mask);
315 if (sigmap[i].handler == NULL)
316 {
317 act.sa_handler = SIG_IGN;
318 act.sa_flags = 0;
319 }
320 else
321 {
322 #ifdef SA_SIGINFO
323 /* Request extra arguments to signal handler. */
324 act.sa_sigaction = sigmap[i].handler;
325 act.sa_flags = SA_SIGINFO;
326 #else
327 act.sa_handler = sigmap[i].handler;
328 act.sa_flags = 0;
329 #endif
330 }
331 if (sigaction(sigmap[i].sigs[j],&act,NULL) < 0)
332 zlog_warn("Unable to set signal handler for signal %d: %s",
333 sigmap[i].sigs[j],safe_strerror(errno));
334
335 }
336 }
337 }
338 }
339
340 void
341 signal_init (struct thread_master *m, int sigc,
342 struct quagga_signal_t signals[])
343 {
344
345 int i = 0;
346 struct quagga_signal_t *sig;
347
348 /* First establish some default handlers that can be overridden by
349 the application. */
350 trap_default_signals();
351
352 while (i < sigc)
353 {
354 sig = &signals[i];
355 if ( signal_set (sig->signal) < 0 )
356 exit (-1);
357 i++;
358 }
359
360 sigmaster.sigc = sigc;
361 sigmaster.signals = signals;
362
363 #ifdef SIGEVENT_SCHEDULE_THREAD
364 sigmaster.t =
365 thread_add_timer (m, quagga_signal_timer, &sigmaster,
366 QUAGGA_SIGNAL_TIMER_INTERVAL);
367 #endif /* SIGEVENT_SCHEDULE_THREAD */
368 }