make-config.in: complete path (leftover of [807f64e2], 2015-12-26!)
[s-mailx.git] / signal.c
blobccbed4d83042168aa3fc7f5fd84635f83af79d36
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Signal related stuff as well as NotYetDead functions.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2018 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
6 * SPDX-License-Identifier: BSD-3-Clause TODO ISC (better: drop)
7 */
8 /*
9 * Copyright (c) 1980, 1993
10 * The Regents of the University of California. All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
36 #undef n_FILE
37 #define n_FILE signal
39 #ifndef HAVE_AMALGAMATION
40 # include "nail.h"
41 #endif
44 * TODO At the beginning of November 2015 -- for v14.9 -- i've tried for one
45 * TODO and a half week to convert this codebase to SysV style signal handling,
46 * TODO meaning no SA_RESTART and EINTR in a lot of places and error reporting
47 * TODO up the chain. I failed miserably, not only because S/MIME / SSL but
48 * TODO also because of general frustration. Directly after v14.9 i will strip
49 * TODO ANYTHING off the codebase (socket stuff etc.) and keep only the very
50 * TODO core, doing namespace and type cleanup and convert this core to a clean
51 * TODO approach, from which i plan to start this thing anew.
52 * TODO For now i introduced the n_sigman, yet another hack, to be used in a
53 * TODO few places.
54 * TODO The real solution:
55 * TODO - No SA_RESTART. Just like for my C++ library: encapsulate EINTR in
56 * TODO userspace at the systemcall (I/O rewrite: drop stdio), normal
57 * TODO interface auto-restarts, special _intr() series return EINTR.
58 * TODO Do n_sigman_poll()/peek()/whatever whenever desired for the former,
59 * TODO report errors up the call chain, have places where operations can be
60 * TODO "properly" aborted.
61 * TODO - We save the initial signal settings upon program startup.
62 * TODO - We register our sigman handlers once, at program startup.
63 * TODO Maximally, and most likely only due to lack of atomic CAS, ignore
64 * TODO or block some signals temporarily. Best if not.
65 * TODO The signal handlers only set a flag. Block all signals for handler
66 * TODO execution, like this we are safe to "set the first signal was x".
67 * TODO - In interactive context, ignore SIGTERM.
68 * TODO I.e., see the POSIX standard for what a shell does.
69 * TODO - In non-interactive context, don't know anything about job control!?!
70 * TODO - Place child processes in their own process group. Restore the signal
71 * TODO mask back to the saved original one for them, before exec.
72 * TODO - Except for job control related (<-> interactive) ignore any signals
73 * TODO while we are "behind" a child that occupies the terminal. For those,
74 * TODO perform proper terminal attribute handling. For childs that don't
75 * TODO occupy the terminal we "are the shell" and should therefore manage
76 * TODO them accordingly, including termination request as necessary.
77 * TODO And if we have a worker in a pipeline, we need to manage it and deal
78 * TODO with it properly, WITHOUT temporary signal overwrites.
79 * TODO - No more jumps.
80 * TODO - (When sockets will be reintroduced, non-blocking.)
81 * TODO - (When SSL is reintroduced, memory BIO. It MAY be necessary to
82 * TODO temporarily block signals during a few SSL functions? Read SSL docu!
83 * TODO But i prefer blocking since it's a single syscall, not temporary
84 * TODO SA_RESTART setting, since that has to be done for every signal.)
87 #ifdef HAVE_NYD
88 struct nyd_info {
89 char const *ni_file;
90 char const *ni_fun;
91 ui32_t ni_chirp_line;
92 ui32_t ni_level;
94 #endif
96 /* {hold,rele}_all_sigs() */
97 static size_t _alls_depth;
98 static sigset_t _alls_nset, _alls_oset;
100 /* {hold,rele}_sigs() */
101 static size_t _hold_sigdepth;
102 static sigset_t _hold_nset, _hold_oset;
104 /* NYD, memory pool debug */
105 #ifdef HAVE_NYD
106 static ui32_t _nyd_curr, _nyd_level;
107 static struct nyd_info _nyd_infos[NYD_CALLS_MAX];
108 #endif
110 /* */
111 static void a_signal_dummyhdl(int sig);
113 /* */
114 #ifdef HAVE_NYD
115 static void _nyd_print(int fd, struct nyd_info *nip);
116 #endif
118 static void
119 a_signal_dummyhdl(int sig){
120 n_UNUSED(sig);
123 #ifdef HAVE_NYD
124 static void
125 _nyd_print(int fd, struct nyd_info *nip)
127 char buf[80];
128 union {int i; size_t z;} u;
130 u.i = snprintf(buf, sizeof buf,
131 "%c [%2" PRIu32 "] %.25s (%.40s:%" PRIu32 ")\n",
132 "=><"[(nip->ni_chirp_line >> 29) & 0x3], nip->ni_level, nip->ni_fun,
133 nip->ni_file, (nip->ni_chirp_line & 0x1FFFFFFFu));
134 if (u.i > 0) {
135 u.z = u.i;
136 if (u.z > sizeof buf)
137 u.z = sizeof buf - 1; /* (Skip \0) */
138 write(fd, buf, u.z);
141 #endif
143 FL int
144 c_sleep(void *v){ /* XXX installs sighdl+ due to outer jumps and SA_RESTART! */
145 sigset_t nset, oset;
146 struct sigaction nact, oact;
147 bool_t ignint;
148 uiz_t sec, msec;
149 char **argv;
150 NYD_ENTER;
152 argv = v;
154 if((n_idec_uiz_cp(&sec, argv[0], 0, NULL) &
155 (n_IDEC_STATE_EMASK | n_IDEC_STATE_CONSUMED)
156 ) != n_IDEC_STATE_CONSUMED)
157 goto jesyn;
159 if(argv[1] == NULL){
160 msec = 0;
161 ignint = FAL0;
162 }else if((n_idec_uiz_cp(&msec, argv[1], 0, NULL) &
163 (n_IDEC_STATE_EMASK | n_IDEC_STATE_CONSUMED)
164 ) != n_IDEC_STATE_CONSUMED)
165 goto jesyn;
166 else
167 ignint = (argv[2] != NULL);
169 if(UIZ_MAX / n_DATE_MILLISSEC < sec)
170 goto jeover;
171 sec *= n_DATE_MILLISSEC;
173 if(UIZ_MAX - sec < msec)
174 goto jeover;
175 msec += sec;
177 /* XXX This requires a terrible mess of signal handling:
178 * - we usually have our SA_RESTART handler, that must be replaced
179 * - we most often have a sigsetjmp() to overcome SA_RESTART
180 * - TODO for now hold_all_sigs() most often on in robot mode,
181 * TODO therefore we also need sigprocmask(), to block anything
182 * TODO except SIGINT, and to unblock SIGINT, thus! */
183 memset(&nact, 0, sizeof nact);
184 nact.sa_handler = &a_signal_dummyhdl;
185 sigemptyset(&nact.sa_mask);
186 sigaddset(&nact.sa_mask, SIGINT);
187 sigaction(SIGINT, &nact, &oact);
189 sigfillset(&nset);
190 sigdelset(&nset, SIGINT);
191 sigprocmask(SIG_BLOCK, &nset, &oset);
192 sigemptyset(&nset);
193 sigaddset(&nset, SIGINT);
194 sigprocmask(SIG_UNBLOCK, &nset, NULL);
196 n_pstate_err_no = (n_msleep(msec, ignint) > 0) ? n_ERR_INTR : n_ERR_NONE;
198 sigprocmask(SIG_SETMASK, &oset, NULL);
199 sigaction(SIGINT, &oact, NULL);
200 jleave:
201 NYD_LEAVE;
202 return (argv == NULL);
203 jeover:
204 n_err(_("`sleep': argument(s) overflow(s) datatype\n"));
205 n_pstate_err_no = n_ERR_OVERFLOW;
206 argv = NULL;
207 goto jleave;
208 jesyn:
209 n_err(_("Synopsis: sleep: <seconds> [<milliseconds>] [uninterruptible]\n"));
210 n_pstate_err_no = n_ERR_INVAL;
211 argv = NULL;
212 goto jleave;
216 #ifdef HAVE_DEVEL
217 FL int
218 c_sigstate(void *vp){ /* TODO remove again */
219 struct{
220 int val;
221 char const name[12];
222 } const *hdlp, hdla[] = {
223 {SIGINT, "SIGINT"}, {SIGHUP, "SIGHUP"}, {SIGQUIT, "SIGQUIT"},
224 {SIGTSTP, "SIGTSTP"}, {SIGTTIN, "SIGTTIN"}, {SIGTTOU, "SIGTTOU"},
225 {SIGCHLD, "SIGCHLD"}, {SIGPIPE, "SIGPIPE"}
227 char const *cp;
228 NYD2_ENTER;
230 if((cp = vp) != NULL && cp[0] != '\0'){
231 if(!asccasecmp(&cp[1], "all")){
232 if(cp[0] == '+')
233 hold_all_sigs();
234 else
235 rele_all_sigs();
236 }else if(!asccasecmp(&cp[1], "hold")){
237 if(cp[0] == '+')
238 hold_sigs();
239 else
240 rele_sigs();
244 fprintf(n_stdout, "alls_depth %zu, hold_sigdepth %zu\nHandlers:\n",
245 _alls_depth, _hold_sigdepth);
246 for(hdlp = hdla; hdlp < &hdla[n_NELEM(hdla)]; ++hdlp){
247 sighandler_type shp;
249 shp = safe_signal(hdlp->val, SIG_IGN);
250 safe_signal(hdlp->val, shp);
251 fprintf(n_stdout, " %s: %p (%s)\n", hdlp->name, shp,
252 (shp == SIG_ERR ? "ERR" : (shp == SIG_DFL ? "DFL"
253 : (shp == SIG_IGN ? "IGN" : "ptf?"))));
255 NYD2_LEAVE;
256 return OKAY;
258 #endif /* HAVE_DEVEL */
260 FL void
261 n_raise(int signo)
263 NYD2_ENTER;
264 if(n_pid == 0)
265 n_pid = getpid();
266 kill(n_pid, signo);
267 NYD2_LEAVE;
270 FL sighandler_type
271 safe_signal(int signum, sighandler_type handler)
273 struct sigaction nact, oact;
274 sighandler_type rv;
275 NYD2_ENTER;
277 nact.sa_handler = handler;
278 sigfillset(&nact.sa_mask);
279 nact.sa_flags = SA_RESTART;
280 rv = (sigaction(signum, &nact, &oact) != 0) ? SIG_ERR : oact.sa_handler;
281 NYD2_LEAVE;
282 return rv;
285 FL n_sighdl_t
286 n_signal(int signo, n_sighdl_t hdl){
287 struct sigaction nact, oact;
288 NYD2_ENTER;
290 nact.sa_handler = hdl;
291 sigfillset(&nact.sa_mask);
292 nact.sa_flags = 0;
293 hdl = (sigaction(signo, &nact, &oact) != 0) ? SIG_ERR : oact.sa_handler;
294 NYD2_LEAVE;
295 return hdl;
298 FL void
299 hold_all_sigs(void)
301 NYD2_ENTER;
302 if (_alls_depth++ == 0) {
303 sigfillset(&_alls_nset);
304 sigdelset(&_alls_nset, SIGABRT);
305 #ifdef SIGBUS
306 sigdelset(&_alls_nset, SIGBUS);
307 #endif
308 sigdelset(&_alls_nset, SIGFPE);
309 sigdelset(&_alls_nset, SIGILL);
310 sigdelset(&_alls_nset, SIGKILL);
311 sigdelset(&_alls_nset, SIGSEGV);
312 sigdelset(&_alls_nset, SIGSTOP);
314 sigdelset(&_alls_nset, SIGCHLD);
315 sigprocmask(SIG_BLOCK, &_alls_nset, &_alls_oset);
317 NYD2_LEAVE;
320 FL void
321 rele_all_sigs(void)
323 NYD2_ENTER;
324 if (--_alls_depth == 0)
325 sigprocmask(SIG_SETMASK, &_alls_oset, (sigset_t*)NULL);
326 NYD2_LEAVE;
329 FL void
330 hold_sigs(void)
332 NYD2_ENTER;
333 if (_hold_sigdepth++ == 0) {
334 sigemptyset(&_hold_nset);
335 sigaddset(&_hold_nset, SIGHUP);
336 sigaddset(&_hold_nset, SIGINT);
337 sigaddset(&_hold_nset, SIGQUIT);
338 sigprocmask(SIG_BLOCK, &_hold_nset, &_hold_oset);
340 NYD2_LEAVE;
343 FL void
344 rele_sigs(void)
346 NYD2_ENTER;
347 if (--_hold_sigdepth == 0)
348 sigprocmask(SIG_SETMASK, &_hold_oset, NULL);
349 NYD2_LEAVE;
352 /* TODO This is temporary gracyness */
353 static struct n_sigman *n__sigman;
354 static void n__sigman_hdl(int signo);
355 static void
356 n__sigman_hdl(int signo){
357 NYD_X; /* Signal handler */
358 n__sigman->sm_signo = signo;
359 siglongjmp(n__sigman->sm_jump, 1);
362 FL int
363 n__sigman_enter(struct n_sigman *self, int flags){
364 /* TODO no error checking when installing sighdls */
365 int rv;
366 NYD2_ENTER;
368 if((int)flags >= 0){
369 self->sm_flags = (enum n_sigman_flags)flags;
370 self->sm_signo = 0;
371 self->sm_outer = n__sigman;
372 if(flags & n_SIGMAN_HUP)
373 self->sm_ohup = safe_signal(SIGHUP, &n__sigman_hdl);
374 if(flags & n_SIGMAN_INT)
375 self->sm_oint = safe_signal(SIGINT, &n__sigman_hdl);
376 if(flags & n_SIGMAN_QUIT)
377 self->sm_oquit = safe_signal(SIGQUIT, &n__sigman_hdl);
378 if(flags & n_SIGMAN_PIPE)
379 self->sm_opipe = safe_signal(SIGPIPE, &n__sigman_hdl);
380 n__sigman = self;
381 rv = 0;
382 }else{
383 flags = self->sm_flags;
385 /* Just in case of a race (signal while holding and ignoring? really?) */
386 if(!(flags & n__SIGMAN_PING)){
387 if(flags & n_SIGMAN_HUP)
388 safe_signal(SIGHUP, SIG_IGN);
389 if(flags & n_SIGMAN_INT)
390 safe_signal(SIGINT, SIG_IGN);
391 if(flags & n_SIGMAN_QUIT)
392 safe_signal(SIGQUIT, SIG_IGN);
393 if(flags & n_SIGMAN_PIPE)
394 safe_signal(SIGPIPE, SIG_IGN);
396 rv = self->sm_signo;
397 /* The signal mask has been restored, but of course rele_sigs() has
398 * already been called: account for restoration due to jump */
399 ++_hold_sigdepth;
401 rele_sigs();
402 NYD2_LEAVE;
403 return rv;
406 FL void
407 n_sigman_cleanup_ping(struct n_sigman *self){
408 ui32_t f;
409 NYD2_ENTER;
411 hold_sigs();
413 f = self->sm_flags;
414 f |= n__SIGMAN_PING;
415 self->sm_flags = f;
417 if(f & n_SIGMAN_HUP)
418 safe_signal(SIGHUP, SIG_IGN);
419 if(f & n_SIGMAN_INT)
420 safe_signal(SIGINT, SIG_IGN);
421 if(f & n_SIGMAN_QUIT)
422 safe_signal(SIGQUIT, SIG_IGN);
423 if(f & n_SIGMAN_PIPE)
424 safe_signal(SIGPIPE, SIG_IGN);
426 rele_sigs();
427 NYD2_LEAVE;
430 FL void
431 n_sigman_leave(struct n_sigman *self,
432 enum n_sigman_flags reraise_flags){
433 ui32_t f;
434 int sig;
435 NYD2_ENTER;
437 hold_sigs();
438 n__sigman = self->sm_outer;
440 f = self->sm_flags;
441 if(f & n_SIGMAN_HUP)
442 safe_signal(SIGHUP, self->sm_ohup);
443 if(f & n_SIGMAN_INT)
444 safe_signal(SIGINT, self->sm_oint);
445 if(f & n_SIGMAN_QUIT)
446 safe_signal(SIGQUIT, self->sm_oquit);
447 if(f & n_SIGMAN_PIPE)
448 safe_signal(SIGPIPE, self->sm_opipe);
450 rele_sigs();
452 sig = 0;
453 switch(self->sm_signo){
454 case SIGPIPE:
455 if((reraise_flags & n_SIGMAN_PIPE) ||
456 ((reraise_flags & n_SIGMAN_NTTYOUT_PIPE) &&
457 !(n_psonce & n_PSO_TTYOUT)))
458 sig = SIGPIPE;
459 break;
460 case SIGHUP:
461 if(reraise_flags & n_SIGMAN_HUP)
462 sig = SIGHUP;
463 break;
464 case SIGINT:
465 if(reraise_flags & n_SIGMAN_INT)
466 sig = SIGINT;
467 break;
468 case SIGQUIT:
469 if(reraise_flags & n_SIGMAN_QUIT)
470 sig = SIGQUIT;
471 break;
472 default:
473 break;
476 NYD2_LEAVE;
477 if(sig != 0){
478 sigset_t cset;
480 sigemptyset(&cset);
481 sigaddset(&cset, sig);
482 sigprocmask(SIG_UNBLOCK, &cset, NULL);
483 n_raise(sig);
487 FL int
488 n_sigman_peek(void){
489 int rv;
490 NYD2_ENTER;
491 rv = 0;
492 NYD2_LEAVE;
493 return rv;
496 FL void
497 n_sigman_consume(void){
498 NYD2_ENTER;
499 NYD2_LEAVE;
502 #ifdef HAVE_NYD
503 FL void
504 _nyd_chirp(ui8_t act, char const *file, ui32_t line, char const *fun)
506 struct nyd_info *nip = _nyd_infos;
508 if (_nyd_curr != n_NELEM(_nyd_infos))
509 nip += _nyd_curr++;
510 else
511 _nyd_curr = 1;
512 nip->ni_file = file;
513 nip->ni_fun = fun;
514 nip->ni_chirp_line = ((ui32_t)(act & 0x3) << 29) | (line & 0x1FFFFFFFu);
515 nip->ni_level = ((act == 0) ? _nyd_level
516 : (act == 1) ? ++_nyd_level : _nyd_level--);
519 FL void
520 _nyd_oncrash(int signo)
522 char pathbuf[PATH_MAX], s2ibuf[32], *cp;
523 struct sigaction xact;
524 sigset_t xset;
525 struct nyd_info *nip;
526 int fd;
527 size_t i, fnl;
528 char const *tmpdir;
530 n_LCTA(sizeof("./") -1 + sizeof(VAL_UAGENT) -1 + sizeof(".dat") < PATH_MAX,
531 "System limits too low for fixed-size buffer operation");
533 xact.sa_handler = SIG_DFL;
534 sigemptyset(&xact.sa_mask);
535 xact.sa_flags = 0;
536 sigaction(signo, &xact, NULL);
538 i = strlen(tmpdir = ok_vlook(TMPDIR));
539 fnl = sizeof(VAL_UAGENT) -1;
541 if (i + 1 + fnl + 1 + sizeof(".dat") > sizeof(pathbuf)) {
542 (cp = pathbuf)[0] = '.';
543 i = 1;
544 } else
545 memcpy(cp = pathbuf, tmpdir, i);
546 cp[i++] = '/'; /* xxx pathsep */
547 memcpy(cp += i, VAL_UAGENT, fnl);
548 i += fnl;
549 memcpy(cp += fnl, ".dat", sizeof(".dat"));
550 fnl = i + sizeof(".dat") -1;
552 if ((fd = open(pathbuf, O_WRONLY | O_CREAT | O_EXCL, 0666)) == -1)
553 fd = STDERR_FILENO;
555 # undef _X
556 # define _X(X) (X), sizeof(X) -1
557 write(fd, _X("\n\nNYD: program dying due to signal "));
559 cp = s2ibuf + sizeof(s2ibuf) -1;
560 *cp = '\0';
561 i = signo;
562 do {
563 *--cp = "0123456789"[i % 10];
564 i /= 10;
565 } while (i != 0);
566 write(fd, cp, PTR2SIZE((s2ibuf + sizeof(s2ibuf) -1) - cp));
568 write(fd, _X(":\n"));
570 if (_nyd_infos[n_NELEM(_nyd_infos) - 1].ni_file != NULL)
571 for (i = _nyd_curr, nip = _nyd_infos + i; i < n_NELEM(_nyd_infos); ++i)
572 _nyd_print(fd, nip++);
573 for (i = 0, nip = _nyd_infos; i < _nyd_curr; ++i)
574 _nyd_print(fd, nip++);
576 write(fd, _X("----------\nCome up to the lab and see what's on the slab\n"));
578 if (fd != STDERR_FILENO) {
579 write(STDERR_FILENO, _X("Crash NYD listing written to "));
580 write(STDERR_FILENO, pathbuf, fnl);
581 write(STDERR_FILENO, _X("\n"));
582 # undef _X
584 close(fd);
587 sigemptyset(&xset);
588 sigaddset(&xset, signo);
589 sigprocmask(SIG_UNBLOCK, &xset, NULL);
590 n_raise(signo);
591 for (;;)
592 _exit(n_EXIT_ERR);
594 #endif /* HAVE_NYD */
596 /* s-it-mode */