1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/*-----------------------------------------------------------------------
File : cco_signals.c
Author: Stephan Schulz
Contents
Signal handler for limit signals...not really necessary, but may
work around some Solaris bugs.
Copyright 1998, 1999 by the author.
This code is released under the GNU General Public Licence and
the GNU Lesser General Public License.
See the file COPYING in the main E directory for details..
Run "eprover -h" for contact information.
Changes
<1> Fri Nov 6 14:50:28 MET 1998
New
-----------------------------------------------------------------------*/
#include "cio_signals.h"
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
rlim_t ScheduleTimeLimit = 0;
rlim_t SystemTimeLimit = RLIM_INFINITY;
rlim_t SoftTimeLimit = RLIM_INFINITY;
rlim_t HardTimeLimit = RLIM_INFINITY;
sig_atomic_t TimeIsUp = 0;
sig_atomic_t TimeLimitIsSoft = 0;
static sig_atomic_t fatal_error_in_progress = 0;
bool SilentTimeOut = false;
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Exported Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: ESignalSetup()
//
// Set up ESignalHandler() as handle for mysignal, check for
// errors.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
void ESignalSetup(int mysignal)
{
struct rlimit limit;
getrlimit(RLIMIT_CPU, &limit);
SystemTimeLimit = limit.rlim_max;
if(signal(mysignal, ESignalHandler) == SIG_ERR)
{
TmpErrno = errno;
SysError("Unable to set up signal handler", SYS_ERROR);
}
}
/*-----------------------------------------------------------------------
//
// Function: ESignalHandler()
//
// Handle signals...print message and exit or continue, depending on
// the signal.
//
// Global Variables: -
//
// Side Effects : May terminate program or print warning
//
/----------------------------------------------------------------------*/
void ESignalHandler(int mysignal)
{
struct rlimit limit;
switch(mysignal)
{
case SIGXCPU:
limit.rlim_max = SystemTimeLimit;
limit.rlim_cur = SystemTimeLimit;
if(setrlimit(RLIMIT_CPU, &limit))
{
TmpErrno = errno;
SysError("Unable to reset cpu time limit", SYS_ERROR);
}
VERBOSE(WriteStr(GlobalOutFD, "SIGXCPU caught.\n"););
if(TimeLimitIsSoft)
{
TimeIsUp = 1;
TimeLimitIsSoft = false;
limit.rlim_cur = MIN(HardTimeLimit, SystemTimeLimit);
if(setrlimit(RLIMIT_CPU, &limit))
{
TmpErrno = errno;
SysError("Unable to set cpu time limit to hard limit",
SYS_ERROR);
}
ESignalSetup(SIGXCPU); /* Reenable signal handler */
return;
}
if(SilentTimeOut)
{
exit(CPU_LIMIT_ERROR);
}
else
{
WriteStr(GlobalOutFD, "\n# Failure: Resource limit exceeded (time)\n");
TSTPOUTFD(GlobalOutFD, "ResourceOut");
Error("CPU time limit exceeded, terminating", CPU_LIMIT_ERROR);
}
break;
case SIGTERM:
case SIGINT:
VERBOSE(WriteStr(GlobalOutFD, "SIGTERM/SIGINT caught.\n"););
if(fatal_error_in_progress)
{
signal(mysignal, SIG_DFL);
raise(mysignal);
}
fatal_error_in_progress = 1;
TempFileCleanup();
raise(mysignal);
break;
default:
WriteStr(STDERR_FILENO, "Warning: ");
WriteStr(STDERR_FILENO, "Unexpected signal caught, continuing");
break;
}
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|