2003-06-05 09:14:21 +02:00
|
|
|
/* signal.c - signal handling
|
2006-04-19 13:26:11 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
|
|
|
* 2005 Free Software Foundation, Inc.
|
2003-06-05 09:14:21 +02:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-06-05 09:14:21 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2003-06-05 09:14:21 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
#include "gpg.h"
|
2003-06-05 09:14:21 +02:00
|
|
|
#include "options.h"
|
2007-11-19 17:03:50 +01:00
|
|
|
#include "status.h"
|
2003-06-05 09:14:21 +02:00
|
|
|
#include "util.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "ttyio.h"
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
#ifdef HAVE_DOSISH_SYSTEM
|
|
|
|
void init_signals(void) {}
|
|
|
|
#else
|
2003-06-05 09:14:21 +02:00
|
|
|
static volatile int caught_fatal_sig = 0;
|
|
|
|
static volatile int caught_sigusr1 = 0;
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_one_signal (int sig, RETSIGTYPE (*handler)(int), int check_ign )
|
|
|
|
{
|
2003-09-23 19:48:33 +02:00
|
|
|
#if defined(HAVE_SIGACTION) && defined(HAVE_STRUCT_SIGACTION)
|
2003-06-05 09:14:21 +02:00
|
|
|
struct sigaction oact, nact;
|
|
|
|
|
|
|
|
if (check_ign) {
|
|
|
|
/* we don't want to change an IGN handler */
|
|
|
|
sigaction (sig, NULL, &oact );
|
|
|
|
if (oact.sa_handler == SIG_IGN )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nact.sa_handler = handler;
|
|
|
|
sigemptyset (&nact.sa_mask);
|
|
|
|
nact.sa_flags = 0;
|
|
|
|
sigaction ( sig, &nact, NULL);
|
2011-02-04 12:57:53 +01:00
|
|
|
#else
|
2003-06-05 09:14:21 +02:00
|
|
|
RETSIGTYPE (*ohandler)(int);
|
|
|
|
|
|
|
|
ohandler = signal (sig, handler);
|
|
|
|
if (check_ign && ohandler == SIG_IGN) {
|
|
|
|
/* Change it back if it was already set to IGN */
|
|
|
|
signal (sig, SIG_IGN);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static RETSIGTYPE
|
|
|
|
got_fatal_signal( int sig )
|
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
|
|
|
|
if( caught_fatal_sig )
|
|
|
|
raise( sig );
|
|
|
|
caught_fatal_sig = 1;
|
|
|
|
|
2003-06-18 21:56:13 +02:00
|
|
|
gcry_control (GCRYCTL_TERM_SECMEM );
|
2006-04-19 13:26:11 +02:00
|
|
|
|
2006-09-21 15:30:45 +02:00
|
|
|
tty_cleanup_rl_after_signal ();
|
2009-05-26 11:29:02 +02:00
|
|
|
tty_cleanup_after_signal ();
|
2006-04-19 13:26:11 +02:00
|
|
|
|
|
|
|
/* Better don't translate these messages. */
|
2003-06-05 09:14:21 +02:00
|
|
|
write(2, "\n", 1 );
|
2006-04-19 13:26:11 +02:00
|
|
|
s = log_get_name(); if( s ) write(2, s, strlen(s) );
|
2003-06-05 09:14:21 +02:00
|
|
|
write(2, ": ", 2 );
|
2006-04-19 13:26:11 +02:00
|
|
|
|
|
|
|
#if HAVE_DECL_SYS_SIGLIST && defined(NSIG)
|
|
|
|
s = (sig >= 0 && sig < NSIG) ? sys_siglist[sig] : "?";
|
|
|
|
write (2, s, strlen(s) );
|
|
|
|
#else
|
|
|
|
write (2, "signal ", 7 );
|
|
|
|
if (sig < 0 || sig >=100)
|
|
|
|
write (2, "?", 1);
|
|
|
|
else {
|
|
|
|
if (sig >= 10)
|
|
|
|
write (2, "0123456789"+(sig/10), 1 );
|
|
|
|
write (2, "0123456789"+(sig%10), 1 );
|
|
|
|
}
|
|
|
|
#endif
|
2003-06-05 09:14:21 +02:00
|
|
|
write(2, " caught ... exiting\n", 20 );
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
/* Reset action to default action and raise signal again. */
|
2003-06-05 09:14:21 +02:00
|
|
|
init_one_signal (sig, SIG_DFL, 0);
|
2003-06-18 21:56:13 +02:00
|
|
|
dotlock_remove_lockfiles ();
|
2003-06-05 09:14:21 +02:00
|
|
|
#ifdef __riscos__
|
|
|
|
riscos_close_fds ();
|
|
|
|
#endif /* __riscos__ */
|
|
|
|
raise( sig );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static RETSIGTYPE
|
|
|
|
got_usr_signal( int sig )
|
|
|
|
{
|
|
|
|
caught_sigusr1 = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
init_signals()
|
|
|
|
{
|
|
|
|
init_one_signal (SIGINT, got_fatal_signal, 1 );
|
|
|
|
init_one_signal (SIGHUP, got_fatal_signal, 1 );
|
|
|
|
init_one_signal (SIGTERM, got_fatal_signal, 1 );
|
|
|
|
init_one_signal (SIGQUIT, got_fatal_signal, 1 );
|
|
|
|
init_one_signal (SIGSEGV, got_fatal_signal, 1 );
|
|
|
|
init_one_signal (SIGUSR1, got_usr_signal, 0 );
|
|
|
|
init_one_signal (SIGPIPE, SIG_IGN, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-04-19 13:26:11 +02:00
|
|
|
/* Disabled - see comment in tdbio.c:tdbio_begin_transaction() */
|
|
|
|
#if 0
|
2003-06-05 09:14:21 +02:00
|
|
|
static void
|
|
|
|
do_block( int block )
|
|
|
|
{
|
|
|
|
static int is_blocked;
|
2003-09-23 19:48:33 +02:00
|
|
|
#if defined(HAVE_SIGPROCMASK) && defined(HAVE_SIGSET_T)
|
2003-06-05 09:14:21 +02:00
|
|
|
static sigset_t oldmask;
|
|
|
|
|
|
|
|
if( block ) {
|
|
|
|
sigset_t newmask;
|
|
|
|
|
|
|
|
if( is_blocked )
|
|
|
|
log_bug("signals are already blocked\n");
|
|
|
|
sigfillset( &newmask );
|
|
|
|
sigprocmask( SIG_BLOCK, &newmask, &oldmask );
|
|
|
|
is_blocked = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( !is_blocked )
|
|
|
|
log_bug("signals are not blocked\n");
|
|
|
|
sigprocmask( SIG_SETMASK, &oldmask, NULL );
|
|
|
|
is_blocked = 0;
|
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
#else /*! HAVE_SIGPROCMASK && HAVE_SIGSET_T */
|
2003-09-23 19:48:33 +02:00
|
|
|
|
|
|
|
#if defined(NSIG)
|
2006-04-19 13:26:11 +02:00
|
|
|
#define SIGSMAX (NSIG)
|
2003-09-23 19:48:33 +02:00
|
|
|
#elif defined(MAXSIG)
|
2006-04-19 13:26:11 +02:00
|
|
|
#define SIGSMAX (MAXSIG+1)
|
2003-09-23 19:48:33 +02:00
|
|
|
#else
|
2006-04-19 13:26:11 +02:00
|
|
|
#error "define SIGSMAX to the number of signals on your platform plus one"
|
2003-09-23 19:48:33 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static void (*disposition[SIGSMAX])(int);
|
2003-06-05 09:14:21 +02:00
|
|
|
int sig;
|
|
|
|
|
|
|
|
if( block ) {
|
|
|
|
if( is_blocked )
|
|
|
|
log_bug("signals are already blocked\n");
|
2003-09-23 19:48:33 +02:00
|
|
|
for (sig=1; sig < SIGSMAX; sig++) {
|
2003-06-05 09:14:21 +02:00
|
|
|
disposition[sig] = sigset (sig, SIG_HOLD);
|
|
|
|
}
|
|
|
|
is_blocked = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( !is_blocked )
|
|
|
|
log_bug("signals are not blocked\n");
|
2003-09-23 19:48:33 +02:00
|
|
|
for (sig=1; sig < SIGSMAX; sig++) {
|
2003-06-05 09:14:21 +02:00
|
|
|
sigset (sig, disposition[sig]);
|
|
|
|
}
|
|
|
|
is_blocked = 0;
|
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
#endif /*! HAVE_SIGPROCMASK && HAVE_SIGSET_T */
|
2003-06-05 09:14:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
block_all_signals()
|
|
|
|
{
|
|
|
|
do_block(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
unblock_all_signals()
|
|
|
|
{
|
|
|
|
do_block(0);
|
|
|
|
}
|
2006-04-19 13:26:11 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* !HAVE_DOSISH_SYSTEM */
|