2014-05-01 20:37:14 +04:00
/*
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
* Copyright ( C ) 2004 - 2014 Red Hat , Inc . All rights reserved .
*
* This file is part of LVM2 .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License v .2 .1 .
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program ; if not , write to the Free Software Foundation ,
2016-01-21 13:49:46 +03:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2014-05-01 20:37:14 +04:00
*/
# include "lib.h"
# include "lvm-signal.h"
2015-10-22 11:45:58 +03:00
# include "memlock.h"
2014-05-01 20:37:14 +04:00
# include <signal.h>
2014-05-01 23:07:17 +04:00
static sigset_t _oldset ;
static int _signals_blocked = 0 ;
static volatile sig_atomic_t _sigint_caught = 0 ;
2014-05-02 19:30:27 +04:00
static volatile sig_atomic_t _handler_installed ;
/* Support 3 level nesting, increase if needed more */
# define MAX_SIGINTS 3
static struct sigaction _oldhandler [ MAX_SIGINTS ] ;
static int _oldmasked [ MAX_SIGINTS ] ;
2014-05-01 23:07:17 +04:00
static void _catch_sigint ( int unused __attribute__ ( ( unused ) ) )
{
_sigint_caught = 1 ;
}
int sigint_caught ( void ) {
if ( _sigint_caught )
log_error ( " Interrupted... " ) ;
return _sigint_caught ;
}
void sigint_clear ( void )
{
_sigint_caught = 0 ;
}
/*
* Temporarily allow keyboard interrupts to be intercepted and noted ;
* saves interrupt handler state for sigint_restore ( ) . Users should
* use the sigint_caught ( ) predicate to check whether interrupt was
* requested and act appropriately . Interrupt flags are never
* cleared automatically by this code , but the tools clear the flag
* before running each command in lvm_run_command ( ) . All other places
* where the flag needs to be cleared need to call sigint_clear ( ) .
*/
void sigint_allow ( void )
{
struct sigaction handler ;
sigset_t sigs ;
2015-10-22 11:45:58 +03:00
if ( memlock_count_daemon ( ) )
return ;
2014-05-01 23:07:17 +04:00
/*
* Do not overwrite the backed - up handler data -
* just increase nesting count .
*/
2014-05-02 19:30:27 +04:00
if ( + + _handler_installed > = MAX_SIGINTS )
2014-05-01 23:07:17 +04:00
return ;
/* Grab old sigaction for SIGINT: shall not fail. */
2014-05-02 19:34:22 +04:00
if ( sigaction ( SIGINT , NULL , & handler ) )
log_sys_debug ( " sigaction " , " SIGINT " ) ;
2014-05-01 23:07:17 +04:00
handler . sa_flags & = ~ SA_RESTART ; /* Clear restart flag */
handler . sa_handler = _catch_sigint ;
/* Override the signal handler: shall not fail. */
2014-05-02 19:30:27 +04:00
if ( sigaction ( SIGINT , & handler , & _oldhandler [ _handler_installed - 1 ] ) )
2014-05-02 19:34:22 +04:00
log_sys_debug ( " sigaction " , " SIGINT " ) ;
2014-05-01 23:07:17 +04:00
/* Unmask SIGINT. Remember to mask it again on restore. */
2014-05-02 19:34:22 +04:00
if ( sigprocmask ( 0 , NULL , & sigs ) )
log_sys_debug ( " sigprocmask " , " " ) ;
2014-05-02 19:30:27 +04:00
if ( ( _oldmasked [ _handler_installed ] = sigismember ( & sigs , SIGINT ) ) ) {
2014-05-01 23:07:17 +04:00
sigdelset ( & sigs , SIGINT ) ;
2014-05-02 19:34:22 +04:00
if ( sigprocmask ( SIG_SETMASK , & sigs , NULL ) )
log_sys_debug ( " sigprocmask " , " SIG_SETMASK " ) ;
2014-05-01 23:07:17 +04:00
}
}
void sigint_restore ( void )
{
2015-10-22 11:45:58 +03:00
if ( memlock_count_daemon ( ) )
return ;
2014-05-02 19:30:27 +04:00
if ( ! _handler_installed | |
- - _handler_installed > = MAX_SIGINTS )
2014-05-01 23:07:17 +04:00
return ;
2015-07-06 18:15:11 +03:00
/* Nesting count went below MAX_SIGINTS. */
2014-05-02 19:30:27 +04:00
if ( _oldmasked [ _handler_installed ] ) {
2014-05-01 23:07:17 +04:00
sigset_t sigs ;
sigprocmask ( 0 , NULL , & sigs ) ;
sigaddset ( & sigs , SIGINT ) ;
2014-05-02 19:34:22 +04:00
if ( sigprocmask ( SIG_SETMASK , & sigs , NULL ) )
log_sys_debug ( " sigprocmask " , " SIG_SETMASK " ) ;
2014-05-01 23:07:17 +04:00
}
2014-05-02 19:30:27 +04:00
if ( sigaction ( SIGINT , & _oldhandler [ _handler_installed ] , NULL ) )
2014-05-02 19:34:22 +04:00
log_sys_debug ( " sigaction " , " SIGINT restore " ) ;
2014-05-01 23:07:17 +04:00
}
void block_signals ( uint32_t flags __attribute__ ( ( unused ) ) )
{
sigset_t set ;
2015-10-22 11:45:58 +03:00
if ( memlock_count_daemon ( ) )
return ;
2014-05-01 23:07:17 +04:00
if ( _signals_blocked )
return ;
if ( sigfillset ( & set ) ) {
log_sys_error ( " sigfillset " , " _block_signals " ) ;
return ;
}
if ( sigprocmask ( SIG_SETMASK , & set , & _oldset ) ) {
log_sys_error ( " sigprocmask " , " _block_signals " ) ;
return ;
}
_signals_blocked = 1 ;
}
void unblock_signals ( void )
{
2015-10-22 11:45:58 +03:00
if ( memlock_count_daemon ( ) )
return ;
2014-05-01 23:07:17 +04:00
/* Don't unblock signals while any locks are held */
if ( ! _signals_blocked )
return ;
if ( sigprocmask ( SIG_SETMASK , & _oldset , NULL ) ) {
log_sys_error ( " sigprocmask " , " _block_signals " ) ;
return ;
}
_signals_blocked = 0 ;
}