premiere-libtorrent/src/assert.cpp

311 lines
7.7 KiB
C++
Raw Normal View History

/*
2014-02-23 20:12:25 +01:00
Copyright (c) 2007-2014, Arvid Norberg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
2011-08-15 01:55:41 +02:00
#include "libtorrent/config.hpp"
#include "libtorrent/assert.hpp"
2011-08-15 01:55:41 +02:00
#ifdef TORRENT_PRODUCTION_ASSERTS
#include <boost/atomic.hpp>
#endif
#if (defined TORRENT_DEBUG && TORRENT_USE_ASSERTS) \
2014-11-30 11:07:19 +01:00
|| defined TORRENT_ASIO_DEBUGGING \
|| defined TORRENT_PROFILE_CALLS \
2015-04-19 15:18:54 +02:00
|| defined TORRENT_RELEASE_ASSERTS \
2014-11-30 11:07:19 +01:00
|| defined TORRENT_DEBUG_BUFFERS
2012-02-16 19:24:53 +01:00
#ifdef __APPLE__
#include <AvailabilityMacros.h>
#endif
2007-12-27 07:15:52 +01:00
#include <string>
2008-04-29 23:46:32 +02:00
#include <cstring>
2007-12-27 07:15:52 +01:00
#include <stdlib.h>
2014-07-06 21:18:00 +02:00
#include <stdarg.h>
2007-12-27 07:15:52 +01:00
2009-10-20 18:44:11 +02:00
// uClibc++ doesn't have cxxabi.h
#if defined __GNUC__ && __GNUC__ >= 3 \
&& !defined __UCLIBCXX_MAJOR__
2009-10-20 18:44:11 +02:00
#include <cxxabi.h>
2007-12-27 07:15:52 +01:00
std::string demangle(char const* name)
{
// in case this string comes
// this is needed on linux
2007-12-27 07:15:52 +01:00
char const* start = strchr(name, '(');
if (start != 0)
{
++start;
}
else
{
// this is needed on macos x
start = strstr(name, "0x");
if (start != 0)
{
start = strchr(start, ' ');
if (start != 0) ++start;
else start = name;
}
else start = name;
}
2007-12-27 07:15:52 +01:00
char const* end = strchr(start, '+');
if (end) while (*(end-1) == ' ') --end;
2007-12-27 07:15:52 +01:00
std::string in;
if (end == 0) in.assign(start);
else in.assign(start, end);
size_t len;
int status;
char* unmangled = ::abi::__cxa_demangle(in.c_str(), 0, &len, &status);
if (unmangled == 0) return in;
std::string ret(unmangled);
free(unmangled);
return ret;
}
2012-01-26 11:33:39 +01:00
#elif defined WIN32
#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0501 // XP
#include "windows.h"
#include "dbghelp.h"
std::string demangle(char const* name)
{
char demangled_name[256];
if (UnDecorateSymbolName(name, demangled_name, sizeof(demangled_name), UNDNAME_NO_THROW_SIGNATURES) == 0)
demangled_name[0] = 0;
return demangled_name;
}
2007-12-27 07:15:52 +01:00
2009-10-20 18:44:11 +02:00
#else
std::string demangle(char const* name) { return name; }
2007-12-27 07:15:52 +01:00
#endif
2007-09-01 06:08:39 +02:00
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include "libtorrent/version.hpp"
2013-05-26 23:36:20 +02:00
#if TORRENT_USE_EXECINFO
#include <execinfo.h>
TORRENT_EXPORT void print_backtrace(char* out, int len, int max_depth)
{
void* stack[50];
int size = backtrace(stack, 50);
char** symbols = backtrace_symbols(stack, size);
for (int i = 1; i < size && len > 0; ++i)
{
int ret = snprintf(out, len, "%d: %s\n", i, demangle(symbols[i]).c_str());
out += ret;
len -= ret;
2012-04-01 02:42:31 +02:00
if (i - 1 == max_depth && max_depth > 0) break;
}
free(symbols);
}
2012-01-26 11:33:39 +01:00
2012-06-14 17:08:21 +02:00
// visual studio 9 and up appears to support this
#elif defined WIN32 && _MSC_VER >= 1500
2012-01-26 11:33:39 +01:00
#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0501 // XP
#include "windows.h"
#include "libtorrent/utf8.hpp"
#include "winbase.h"
#include "dbghelp.h"
TORRENT_EXPORT void print_backtrace(char* out, int len, int max_depth)
2012-01-26 11:33:39 +01:00
{
typedef USHORT (WINAPI *RtlCaptureStackBackTrace_t)(
2012-01-26 11:33:39 +01:00
__in ULONG FramesToSkip,
__in ULONG FramesToCapture,
__out PVOID *BackTrace,
__out_opt PULONG BackTraceHash);
static RtlCaptureStackBackTrace_t RtlCaptureStackBackTrace = 0;
if (RtlCaptureStackBackTrace == 0)
{
// we don't actually have to free this library, everyone has it loaded
HMODULE lib = LoadLibrary(TEXT("kernel32.dll"));
RtlCaptureStackBackTrace = (RtlCaptureStackBackTrace_t)GetProcAddress(lib, "RtlCaptureStackBackTrace");
if (RtlCaptureStackBackTrace == 0)
{
out[0] = 0;
return;
}
}
int i;
void* stack[50];
int size = CaptureStackBackTrace(0, 50, stack, 0);
SYMBOL_INFO* symbol = (SYMBOL_INFO*)calloc(sizeof(SYMBOL_INFO) + MAX_SYM_NAME * sizeof(TCHAR), 1);
symbol->MaxNameLen = MAX_SYM_NAME;
symbol->SizeOfStruct = sizeof(SYMBOL_INFO);
HANDLE p = GetCurrentProcess();
static bool sym_initialized = false;
if (!sym_initialized)
{
sym_initialized = true;
SymInitialize(p, NULL, true);
}
for (i = 0; i < size && len > 0; ++i)
{
int ret;
if (SymFromAddr(p, uintptr_t(stack[i]), 0, symbol))
ret = snprintf(out, len, "%d: %s\n", i, symbol->Name);
else
ret = snprintf(out, len, "%d: <unknown>\n", i);
out += ret;
len -= ret;
2012-04-01 02:42:31 +02:00
if (i == max_depth && max_depth > 0) break;
2012-01-26 11:33:39 +01:00
}
free(symbol);
}
#else
2014-07-06 21:18:00 +02:00
TORRENT_EXPORT void print_backtrace(char* out, int len, int max_depth)
{ out[0] = 0; }
#endif
2014-01-08 06:45:13 +01:00
#endif
#if TORRENT_USE_ASSERTS || defined TORRENT_ASIO_DEBUGGING
2014-01-08 06:45:13 +01:00
#ifdef TORRENT_PRODUCTION_ASSERTS
char const* libtorrent_assert_log = "asserts.log";
// the number of asserts we've printed to the log
boost::atomic<int> assert_counter(0);
#endif
#if defined __GNUC__ || defined __clang__
__attribute__((format(printf, 1, 2)))
#endif
2014-07-06 21:18:00 +02:00
TORRENT_EXPORT void assert_print(char const* fmt, ...)
{
#ifdef TORRENT_PRODUCTION_ASSERTS
2014-07-06 21:18:00 +02:00
if (assert_counter > 500) return;
FILE* out = fopen(libtorrent_assert_log, "a+");
2010-05-06 04:18:08 +02:00
if (out == 0) out = stderr;
#else
FILE* out = stderr;
#endif
2014-07-06 21:18:00 +02:00
va_list va;
va_start(va, fmt);
vfprintf(out, fmt, va);
va_end(va);
#ifdef TORRENT_PRODUCTION_ASSERTS
2014-07-06 21:18:00 +02:00
if (out != stderr) fclose(out);
#endif
}
TORRENT_NO_RETURN TORRENT_EXPORT void assert_fail(char const* expr, int line
, char const* file, char const* function, char const* value, int kind)
2014-07-06 21:18:00 +02:00
{
#ifdef TORRENT_PRODUCTION_ASSERTS
2014-07-06 21:18:00 +02:00
// no need to flood the assert log with infinite number of asserts
if (assert_counter.fetch_add(1) + 1 > 500) return;
2014-07-06 21:18:00 +02:00
#endif
2010-05-06 04:18:08 +02:00
char stack[8192];
2013-09-04 07:50:40 +02:00
stack[0] = '\0';
2012-04-01 02:42:31 +02:00
print_backtrace(stack, sizeof(stack), 0);
char const* message = "assertion failed. Please file a bugreport at "
2013-03-02 22:48:20 +01:00
"http://code.google.com/p/libtorrent/issues\n"
"Please include the following information:\n\n"
"version: " LIBTORRENT_VERSION "\n"
LIBTORRENT_REVISION "\n";
switch (kind)
{
case 1:
message = "A precondition of a libtorrent function has been violated.\n"
"This indicates a bug in the client application using libtorrent\n";
}
2014-07-06 21:18:00 +02:00
assert_print("%s\n"
#ifdef TORRENT_PRODUCTION_ASSERTS
2014-07-06 21:18:00 +02:00
"#: %d\n"
#endif
"file: '%s'\n"
"line: %d\n"
2007-09-01 06:08:39 +02:00
"function: %s\n"
"expression: %s\n"
"%s%s\n"
"stack:\n"
"%s\n"
2014-07-06 21:18:00 +02:00
, message
#ifdef TORRENT_PRODUCTION_ASSERTS
, assert_counter.load()
2014-07-06 21:18:00 +02:00
#endif
, file, line, function, expr
, value ? value : "", value ? "\n" : ""
, stack);
2010-05-06 04:18:08 +02:00
// if production asserts are defined, don't abort, just print the error
2014-07-06 21:18:00 +02:00
#ifndef TORRENT_PRODUCTION_ASSERTS
// send SIGINT to the current process
// to break into the debugger
raise(SIGINT);
abort();
2010-05-06 04:18:08 +02:00
#endif
}
#else
#if defined __GNUC__ || defined __clang__
__attribute__((format(printf, 1, 2)))
#endif
2015-04-19 15:18:54 +02:00
TORRENT_EXPORT void assert_print(char const*, ...) {}
2015-04-22 02:59:35 +02:00
TORRENT_EXPORT void assert_fail(char const*, int, char const*
2015-04-19 15:18:54 +02:00
, char const*, char const*, int) {}
#endif