1998-03-19 16:27:29 +01:00
|
|
|
/* signal.c - signal handling
|
2002-06-29 15:46:34 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
1998-03-19 16:27:29 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1998-03-19 16:27:29 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1998-03-19 16:27:29 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1998-03-19 16:27:29 +01:00
|
|
|
* 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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "options.h"
|
|
|
|
#include "errors.h"
|
2002-06-29 15:46:34 +02:00
|
|
|
#include "memory.h"
|
1998-03-19 16:27:29 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "ttyio.h"
|
|
|
|
|
|
|
|
|
1998-07-31 18:45:58 +02:00
|
|
|
static volatile int caught_fatal_sig = 0;
|
|
|
|
static volatile int caught_sigusr1 = 0;
|
1998-03-19 16:27:29 +01:00
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
static void
|
|
|
|
init_one_signal (int sig, RETSIGTYPE (*handler)(int), int check_ign )
|
|
|
|
{
|
|
|
|
#ifndef HAVE_DOSISH_SYSTEM
|
|
|
|
#ifdef HAVE_SIGACTION
|
|
|
|
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);
|
|
|
|
#else
|
|
|
|
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
|
|
|
|
#endif /*!HAVE_DOSISH_SYSTEM*/
|
|
|
|
}
|
|
|
|
|
1998-07-31 18:45:58 +02:00
|
|
|
static const char *
|
1999-09-13 10:56:45 +02:00
|
|
|
get_signal_name( int signum )
|
1998-07-31 18:45:58 +02:00
|
|
|
{
|
1999-08-30 20:48:57 +02:00
|
|
|
#if defined(SYS_SIGLIST_DECLARED) && defined(NSIG)
|
|
|
|
return (signum >= 0 && signum < NSIG) ? sys_siglist[signum] : "?";
|
1998-03-19 16:27:29 +01:00
|
|
|
#else
|
1999-09-13 10:56:45 +02:00
|
|
|
return "some signal";
|
1998-03-19 16:27:29 +01:00
|
|
|
#endif
|
1998-07-31 18:45:58 +02:00
|
|
|
}
|
|
|
|
|
1999-09-13 10:56:45 +02:00
|
|
|
|
1998-07-31 18:45:58 +02:00
|
|
|
static RETSIGTYPE
|
|
|
|
got_fatal_signal( int sig )
|
|
|
|
{
|
1999-09-13 10:56:45 +02:00
|
|
|
const char *s;
|
|
|
|
|
1998-07-31 18:45:58 +02:00
|
|
|
if( caught_fatal_sig )
|
|
|
|
raise( sig );
|
|
|
|
caught_fatal_sig = 1;
|
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
secmem_term();
|
2000-07-14 19:34:53 +02:00
|
|
|
/* better don't transtale these messages */
|
1999-09-13 10:56:45 +02:00
|
|
|
write(2, "\n", 1 );
|
|
|
|
s = log_get_name(); if( s ) write(2, s, strlen(s) );
|
|
|
|
write(2, ": ", 2 );
|
|
|
|
s = get_signal_name(sig); write(2, s, strlen(s) );
|
2002-06-29 15:46:34 +02:00
|
|
|
write(2, " caught ... exiting\n", 20 );
|
|
|
|
|
|
|
|
/* reset action to default action and raise signal again */
|
|
|
|
init_one_signal (sig, SIG_DFL, 0);
|
|
|
|
remove_lockfiles ();
|
|
|
|
#ifdef __riscos__
|
|
|
|
close_fds ();
|
|
|
|
#endif /* __riscos__ */
|
2000-07-14 19:34:53 +02:00
|
|
|
raise( sig );
|
1998-07-31 18:45:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static RETSIGTYPE
|
|
|
|
got_usr_signal( int sig )
|
|
|
|
{
|
|
|
|
caught_sigusr1 = 1;
|
|
|
|
}
|
|
|
|
|
1998-03-19 16:27:29 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
init_signals()
|
|
|
|
{
|
1999-02-10 17:22:40 +01:00
|
|
|
#ifndef HAVE_DOSISH_SYSTEM
|
2002-06-29 15:46:34 +02:00
|
|
|
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 );
|
1998-10-06 14:10:02 +02:00
|
|
|
#endif
|
1998-03-19 16:27:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-07-31 18:45:58 +02:00
|
|
|
void
|
|
|
|
pause_on_sigusr( int which )
|
|
|
|
{
|
1999-02-10 17:22:40 +01:00
|
|
|
#ifndef HAVE_DOSISH_SYSTEM
|
2002-06-29 15:46:34 +02:00
|
|
|
#ifdef HAVE_SIGPROCMASK
|
1998-07-31 18:45:58 +02:00
|
|
|
sigset_t mask, oldmask;
|
|
|
|
|
|
|
|
assert( which == 1 );
|
|
|
|
sigemptyset( &mask );
|
|
|
|
sigaddset( &mask, SIGUSR1 );
|
|
|
|
|
|
|
|
sigprocmask( SIG_BLOCK, &mask, &oldmask );
|
|
|
|
while( !caught_sigusr1 )
|
|
|
|
sigsuspend( &oldmask );
|
|
|
|
caught_sigusr1 = 0;
|
|
|
|
sigprocmask( SIG_UNBLOCK, &mask, NULL );
|
2002-06-29 15:46:34 +02:00
|
|
|
#else
|
|
|
|
assert (which == 1);
|
|
|
|
sighold (SIGUSR1);
|
|
|
|
while (!caught_sigusr1)
|
|
|
|
sigpause(SIGUSR1);
|
|
|
|
caught_sigusr1 = 0;
|
|
|
|
sigrelse(SIGUSR1); ????
|
|
|
|
#endif /*!HAVE_SIGPROCMASK*/
|
1998-10-06 14:10:02 +02:00
|
|
|
#endif
|
1998-07-31 18:45:58 +02:00
|
|
|
}
|
|
|
|
|
1998-11-03 20:38:58 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
do_block( int block )
|
|
|
|
{
|
2002-06-29 15:46:34 +02:00
|
|
|
#ifndef HAVE_DOSISH_SYSTEM
|
1998-11-03 20:38:58 +01:00
|
|
|
static int is_blocked;
|
2002-06-29 15:46:34 +02:00
|
|
|
#ifdef HAVE_SIGPROCMASK
|
1998-11-03 20:38:58 +01:00
|
|
|
static sigset_t oldmask;
|
|
|
|
|
|
|
|
if( block ) {
|
2002-06-29 15:46:34 +02:00
|
|
|
sigset_t newmask;
|
1998-11-03 20:38:58 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2002-06-29 15:46:34 +02:00
|
|
|
#else /*!HAVE_SIGPROCMASK*/
|
|
|
|
static void (*disposition[MAXSIG])();
|
|
|
|
int sig;
|
|
|
|
|
|
|
|
if( block ) {
|
|
|
|
if( is_blocked )
|
|
|
|
log_bug("signals are already blocked\n");
|
|
|
|
for (sig=1; sig < MAXSIG; sig++) {
|
|
|
|
disposition[sig] = sigset (sig, SIG_HOLD);
|
|
|
|
}
|
|
|
|
is_blocked = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if( !is_blocked )
|
|
|
|
log_bug("signals are not blocked\n");
|
|
|
|
for (sig=1; sig < MAXSIG; sig++) {
|
|
|
|
sigset (sig, disposition[sig]);
|
|
|
|
}
|
|
|
|
is_blocked = 0;
|
|
|
|
}
|
|
|
|
#endif /*!HAVE_SIGPROCMASK*/
|
|
|
|
#endif /*HAVE_DOSISH_SYSTEM*/
|
1998-11-03 20:38:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
block_all_signals()
|
|
|
|
{
|
|
|
|
do_block(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
unblock_all_signals()
|
|
|
|
{
|
|
|
|
do_block(0);
|
|
|
|
}
|