8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-26 08:03:03 +01:00
firebird-mirror/src/common/fb_exception.cpp
2011-12-29 16:11:28 +00:00

540 lines
12 KiB
C++

#include "firebird.h"
//#include "fb_exception.h"
#include <string.h>
#include <errno.h>
#include <stdarg.h>
#include "gen/iberror.h"
#include "../common/classes/alloc.h"
#include "../common/classes/init.h"
#include "../common/classes/array.h"
#include "../common/thd.h"
#ifdef WIN_NT
#include <windows.h>
#else
#include <pthread.h>
#include <signal.h>
#include <setjmp.h>
#include "../common/classes/fb_tls.h"
#endif
namespace {
class StringsBuffer
{
private:
class ThreadBuffer : public Firebird::GlobalStorage
{
private:
const static size_t BUFFER_SIZE = 4096;
char buffer[BUFFER_SIZE];
char* buffer_ptr;
FB_THREAD_ID thread;
public:
explicit ThreadBuffer(FB_THREAD_ID thr) : buffer_ptr(buffer), thread(thr) { }
const char* alloc(const char* string, size_t& length)
{
// if string is already in our buffer - return it
// it was already saved in our buffer once
if (string >= buffer && string < &buffer[BUFFER_SIZE])
return string;
// if string too long, truncate it
if (length > BUFFER_SIZE / 4)
length = BUFFER_SIZE / 4;
// If there isn't any more room in the buffer, start at the beginning again
if (buffer_ptr + length + 1 > buffer + BUFFER_SIZE)
buffer_ptr = buffer;
char* new_string = buffer_ptr;
memcpy(new_string, string, length);
new_string[length] = 0;
buffer_ptr += length + 1;
return new_string;
}
bool thisThread(FB_THREAD_ID currTID)
{
#ifdef WIN_NT
if (thread != currTID)
{
HANDLE hThread = OpenThread(THREAD_QUERY_INFORMATION, false, thread);
// commented exit code check - looks like OS does not return handle
// for already exited thread
//DWORD exitCode = STILL_ACTIVE;
if (hThread)
{
//GetExitCodeThread(hThread, &exitCode);
CloseHandle(hThread);
}
//if ((!hThread) || (exitCode != STILL_ACTIVE))
if (!hThread)
{
// Thread does not exist any more
thread = currTID;
}
}
#else
if (thread != currTID)
{
sigjmp_buf sigenv;
if (sigsetjmp(sigenv, 1) == 0)
{
Firebird::sync_signals_set(&sigenv);
if (pthread_kill(thread, 0) == ESRCH)
{
// Thread does not exist any more
thread = currTID;
}
}
else
{
// segfault in pthread_kill() - thread does not exist any more
thread = currTID;
}
Firebird::sync_signals_reset();
}
#endif
return thread == currTID;
}
};
typedef Firebird::Array<ThreadBuffer*> ProcessBuffer;
ProcessBuffer processBuffer;
Firebird::Mutex mutex;
public:
explicit StringsBuffer(Firebird::MemoryPool& p) : processBuffer(p) { }
~StringsBuffer()
{ }
private:
size_t position(FB_THREAD_ID thr)
{
// mutex should be locked when this function is called
for (size_t i = 0; i < processBuffer.getCount(); ++i)
{
if (processBuffer[i]->thisThread(thr))
{
return i;
}
}
return processBuffer.getCount();
}
ThreadBuffer* getThreadBuffer(FB_THREAD_ID thr)
{
Firebird::MutexLockGuard guard(mutex);
size_t p = position(thr);
if (p < processBuffer.getCount())
{
return processBuffer[p];
}
ThreadBuffer* b = new ThreadBuffer(thr);
processBuffer.add(b);
return b;
}
public:
const char* alloc(const char* s, size_t& len, FB_THREAD_ID thr = getThreadId())
{
return getThreadBuffer(thr)->alloc(s, len);
}
};
Firebird::GlobalPtr<StringsBuffer> allStrings;
} // namespace
namespace Firebird {
// Before using thr parameter, make sure that thread is not going to work with
// this functions itself.
// CVC: Do not let "perm" be incremented before "trans", because it may lead to serious memory errors,
// since several places in our code blindly pass the same vector twice.
void makePermanentVector(ISC_STATUS* perm, const ISC_STATUS* trans, FB_THREAD_ID thr) throw()
{
try
{
while (true)
{
const ISC_STATUS type = *perm++ = *trans++;
switch (type)
{
case isc_arg_end:
return;
case isc_arg_cstring:
{
size_t len = *perm++ = *trans++;
const char* temp = reinterpret_cast<char*>(*trans++);
*perm++ = (ISC_STATUS)(IPTR) (allStrings->alloc(temp, len, thr));
perm[-2] = len;
}
break;
case isc_arg_string:
case isc_arg_interpreted:
case isc_arg_sql_state:
{
const char* temp = reinterpret_cast<char*>(*trans++);
size_t len = strlen(temp);
*perm++ = (ISC_STATUS)(IPTR) (allStrings->alloc(temp, len, thr));
}
break;
default:
*perm++ = *trans++;
break;
}
}
}
catch (const system_call_failed& ex)
{
memcpy(perm, ex.value(), sizeof(ISC_STATUS_ARRAY));
}
catch (const BadAlloc& ex)
{
ex.stuff_exception(perm);
}
catch (...)
{
*perm++ = isc_arg_gds;
*perm++ = isc_random;
*perm++ = isc_arg_string;
*perm++ = (ISC_STATUS)(IPTR) "Unexpected exception in makePermanentVector()";
*perm++ = isc_arg_end;
}
}
void makePermanentVector(ISC_STATUS* v, FB_THREAD_ID thr) throw()
{
makePermanentVector(v, v, thr);
}
// ********************************* Exception *******************************
Exception::~Exception() throw() { }
// ********************************* status_exception *******************************
status_exception::status_exception() throw()
{
memset(m_status_vector, 0, sizeof(m_status_vector));
}
status_exception::status_exception(const ISC_STATUS *status_vector) throw()
{
memset(m_status_vector, 0, sizeof(m_status_vector));
if (status_vector)
{
set_status(status_vector);
}
}
void status_exception::set_status(const ISC_STATUS *new_vector) throw()
{
fb_assert(new_vector != 0);
makePermanentVector(m_status_vector, new_vector);
}
status_exception::~status_exception() throw()
{
}
const char* status_exception::what() const throw()
{
return "Firebird::status_exception";
}
void status_exception::raise(const ISC_STATUS *status_vector)
{
throw status_exception(status_vector);
}
void status_exception::raise(const Arg::StatusVector& statusVector)
{
throw status_exception(statusVector.value());
}
ISC_STATUS status_exception::stuff_exception(ISC_STATUS* const status_vector) const throw()
{
const ISC_STATUS *ptr = value();
ISC_STATUS *sv = status_vector;
// Copy status vector
while (true)
{
const ISC_STATUS type = *sv++ = *ptr++;
if (type == isc_arg_end)
break;
if (type == isc_arg_cstring)
*sv++ = *ptr++;
*sv++ = *ptr++;
}
return status_vector[1];
}
// ********************************* BadAlloc ****************************
void BadAlloc::raise()
{
throw BadAlloc();
}
ISC_STATUS BadAlloc::stuff_exception(ISC_STATUS* const status_vector) const throw()
{
ISC_STATUS *sv = status_vector;
*sv++ = isc_arg_gds;
*sv++ = isc_virmemexh;
*sv++ = isc_arg_end;
return status_vector[1];
}
const char* BadAlloc::what() const throw()
{
return "Firebird::BadAlloc";
}
// ********************************* LongJump ***************************
void LongJump::raise()
{
throw LongJump();
}
ISC_STATUS LongJump::stuff_exception(ISC_STATUS* const status_vector) const throw()
{
/*
* Do nothing for a while - not all utilities are ready,
* status_vector is passed in them by other means.
* Ideally status_exception should be always used for it,
* and we should activate the following code:
ISC_STATUS *sv = status_vector;
*sv++ = isc_arg_gds;
*sv++ = isc_random;
*sv++ = isc_arg_string;
*sv++ = (ISC_STATUS)(IPTR) "Unexpected Firebird::LongJump";
*sv++ = isc_arg_end;
*/
return status_vector[1];
}
const char* LongJump::what() const throw()
{
return "Firebird::LongJump";
}
// ********************************* system_error ***************************
system_error::system_error(const char* syscall, int error_code) :
status_exception(), errorCode(error_code)
{
Arg::Gds temp(isc_sys_request);
temp << Arg::Str(syscall);
temp << SYS_ERR(errorCode);
set_status(temp.value());
}
void system_error::raise(const char* syscall, int error_code)
{
throw system_error(syscall, error_code);
}
void system_error::raise(const char* syscall)
{
throw system_error(syscall, getSystemError());
}
int system_error::getSystemError()
{
#ifdef WIN_NT
return GetLastError();
#else
return errno;
#endif
}
// ********************************* system_call_failed ***************************
system_call_failed::system_call_failed(const char* syscall, int error_code) :
system_error(syscall, error_code)
{
#ifndef SUPERCLIENT
// NS: something unexpected has happened. Log the error to log file
// In the future we may consider terminating the process even in PROD_BUILD
gds__log("Operating system call %s failed. Error code %d", syscall, error_code);
#endif
#ifdef DEV_BUILD
// raised failed system call exception in DEV_BUILD in 99.99% means
// problems with the code - let's create memory dump now
abort();
#endif
}
void system_call_failed::raise(const char* syscall, int error_code)
{
throw system_call_failed(syscall, error_code);
}
void system_call_failed::raise(const char* syscall)
{
throw system_call_failed(syscall, getSystemError());
}
// ********************************* fatal_exception *******************************
fatal_exception::fatal_exception(const char* message) :
status_exception()
{
const ISC_STATUS temp[] =
{
isc_arg_gds,
isc_random,
isc_arg_string,
(ISC_STATUS)(IPTR) message,
isc_arg_end
};
set_status(temp);
}
// Keep in sync with the constructor above, please; "message" becomes 4th element
// after initialization of status vector in constructor.
const char* fatal_exception::what() const throw()
{
return reinterpret_cast<const char*>(value()[3]);
}
void fatal_exception::raise(const char* message)
{
throw fatal_exception(message);
}
void fatal_exception::raiseFmt(const char* format, ...)
{
va_list args;
va_start(args, format);
char buffer[1024];
VSNPRINTF(buffer, sizeof(buffer), format, args);
buffer[sizeof(buffer) - 1] = 0;
va_end(args);
throw fatal_exception(buffer);
}
// ************************** exception handling routines **************************
// Serialize exception into status_vector
ISC_STATUS stuff_exception(ISC_STATUS *status_vector, const Firebird::Exception& ex) throw()
{
return ex.stuff_exception(status_vector);
}
#ifdef UNIX
static TLS_DECLARE(sigjmp_buf*, sigjmp_ptr);
static void longjmp_sig_handler(int);
// Here we can't use atomic counter instead mutex/counter pair - or some thread may leave sync_signals_set()
// before signals are actually set in the other thread, which incremented counter first
static Firebird::GlobalPtr<Firebird::Mutex> sync_enter_mutex;
static int sync_enter_counter = 0;
#if defined FREEBSD || defined NETBSD || defined DARWIN || defined HPUX
#define sigset signal
#endif
void sync_signals_set(void* arg)
{
/**************************************
*
* T H D _ s y n c _ s i g n a l s _ s e t ( U N I X )
*
**************************************
*
* Functional description
* Set all the synchronous signals for a particular thread
*
**************************************/
sigjmp_buf* const sigenv = static_cast<sigjmp_buf*>(arg);
TLS_SET(sigjmp_ptr, sigenv);
Firebird::MutexLockGuard g(sync_enter_mutex);
if (sync_enter_counter++ == 0)
{
sigset(SIGILL, longjmp_sig_handler);
sigset(SIGFPE, longjmp_sig_handler);
sigset(SIGBUS, longjmp_sig_handler);
sigset(SIGSEGV, longjmp_sig_handler);
}
}
void sync_signals_reset()
{
/**************************************
*
* s y n c _ s i g n a l s _ r e s e t ( U N I X )
*
**************************************
*
* Functional description
* Reset all the synchronous signals for a particular thread
* to default.
*
**************************************/
Firebird::MutexLockGuard g(sync_enter_mutex);
fb_assert(sync_enter_counter > 0);
if (--sync_enter_counter == 0)
{
sigset(SIGILL, SIG_DFL);
sigset(SIGFPE, SIG_DFL);
sigset(SIGBUS, SIG_DFL);
sigset(SIGSEGV, SIG_DFL);
}
}
static void longjmp_sig_handler(int sig_num)
{
/**************************************
*
* l o n g j m p _ s i g _ h a n d l e r
*
**************************************
*
* Functional description
* The generic signal handler for all signals in a thread.
*
**************************************/
siglongjmp(*TLS_GET(sigjmp_ptr), sig_num);
}
#endif
} // namespace Firebird