iw4x-client/src/Components/Modules/Exception.cpp

161 lines
4.4 KiB
C++
Raw Normal View History

2016-07-11 11:14:58 -04:00
#include "STDInclude.hpp"
// Stuff causes warnings
#pragma warning(push)
#pragma warning(disable: 4091)
#include <dbghelp.h>
#pragma comment(lib, "dbghelp.lib")
#pragma warning(pop)
namespace Components
{
2016-08-28 14:52:47 -04:00
Utils::Hook Exception::SetFilterHook;
2016-08-05 14:30:44 -04:00
bool Exception::UploadMinidump(std::string filename)
2016-07-31 14:46:22 -04:00
{
2016-08-05 14:30:44 -04:00
if (Utils::IO::FileExists(filename))
{
2016-08-26 06:14:59 -04:00
Utils::WebIO webio("Firefucks", "https://reich.io/upload.php");
2016-08-05 14:30:44 -04:00
std::string buffer = Utils::IO::ReadFile(filename);
2016-08-26 06:14:59 -04:00
std::string result = webio.PostFile("minidump.dmp", "files[]", buffer);
2016-08-05 14:30:44 -04:00
std::string errors;
json11::Json object = json11::Json::parse(result, errors);
if (!object.is_object()) return false;
json11::Json success = object["success"];
if (!success.is_bool() || !success.bool_value()) return false;
json11::Json files = object["files"];
if (!files.is_array()) return false;
for (auto file : files.array_items())
{
json11::Json url = file["url"];
json11::Json hash = file["hash"];
if (hash.is_string() && url.is_string())
{
if (Utils::String::ToLower(Utils::Cryptography::SHA1::Compute(buffer, true)) == Utils::String::ToLower(hash.string_value()))
{
MessageBoxA(0, url.string_value().data(), 0, 0);
return true;
}
}
}
}
return false;
2016-07-31 14:46:22 -04:00
}
2016-07-11 11:14:58 -04:00
LONG WINAPI Exception::ExceptionFilter(LPEXCEPTION_POINTERS ExceptionInfo)
{
char filename[MAX_PATH];
__time64_t time;
2016-07-12 12:33:25 -04:00
tm ltime;
2016-07-11 11:14:58 -04:00
_time64(&time);
2016-07-12 12:33:25 -04:00
_localtime64_s(&ltime, &time);
strftime(filename, sizeof(filename) - 1, "iw4x-" VERSION_STR "-%Y%m%d%H%M%S.dmp", &ltime);
2016-07-11 11:14:58 -04:00
HANDLE hFile = CreateFileA(filename, GENERIC_WRITE, FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (hFile && hFile != INVALID_HANDLE_VALUE)
{
2016-07-31 14:46:22 -04:00
MINIDUMP_EXCEPTION_INFORMATION ex = { GetCurrentThreadId(), ExceptionInfo, FALSE };
2016-07-11 11:14:58 -04:00
MiniDumpWriteDump(GetCurrentProcess(), GetCurrentProcessId(), hFile, MiniDumpNormal, &ex, NULL, NULL);
CloseHandle(hFile);
}
2016-08-28 15:21:25 -04:00
else
{
MessageBoxA(0, "Failed to create file!", "ERROR", MB_ICONERROR);
}
2016-07-11 11:14:58 -04:00
2016-08-07 15:46:30 -04:00
//Exception::UploadMinidump(filename);
2016-07-31 14:46:22 -04:00
2016-07-11 11:14:58 -04:00
if (ExceptionInfo->ExceptionRecord->ExceptionCode == EXCEPTION_STACK_OVERFLOW)
{
Logger::Error("Termination because of a stack overflow.\n");
TerminateProcess(GetCurrentProcess(), EXCEPTION_STACK_OVERFLOW);
}
else
{
2016-07-31 14:46:22 -04:00
Logger::Error("Fatal error (0x%08X) at 0x%08X.", ExceptionInfo->ExceptionRecord->ExceptionCode, ExceptionInfo->ExceptionRecord->ExceptionAddress);
2016-07-11 11:14:58 -04:00
}
return EXCEPTION_CONTINUE_SEARCH;
}
LPTOP_LEVEL_EXCEPTION_FILTER WINAPI Exception::SetUnhandledExceptionFilterStub(LPTOP_LEVEL_EXCEPTION_FILTER lpTopLevelExceptionFilter)
{
2016-08-28 14:52:47 -04:00
Exception::SetFilterHook.Uninstall();
2016-07-11 11:14:58 -04:00
SetUnhandledExceptionFilter(&Exception::ExceptionFilter);
2016-08-28 14:52:47 -04:00
Exception::SetFilterHook.Install();
2016-07-11 11:14:58 -04:00
return lpTopLevelExceptionFilter;
}
Exception::Exception()
{
#ifdef DEBUG
// Display DEBUG branding, so we know we're on a debug build
Renderer::OnFrame([] ()
{
Game::Font* font = Game::R_RegisterFont("fonts/normalFont");
float color[4] = { 1.0f, 1.0f, 1.0f, 1.0f };
// Change the color when attaching a debugger
if (IsDebuggerPresent())
{
color[0] = 0.6588f;
color[1] = 1.0000f;
color[2] = 0.0000f;
}
Game::R_AddCmdDrawText("DEBUG-BUILD", 0x7FFFFFFF, font, 15.0f, 10.0f + Game::R_TextHeight(font), 1.0f, 1.0f, 0.0f, color, Game::ITEM_TEXTSTYLE_SHADOWED);
});
#else
2016-08-28 14:52:47 -04:00
Exception::SetFilterHook.Initialize(SetUnhandledExceptionFilter, Exception::SetUnhandledExceptionFilterStub, HOOK_JUMP);
Exception::SetFilterHook.Install();
2016-07-11 11:14:58 -04:00
SetUnhandledExceptionFilter(&Exception::ExceptionFilter);
#endif
Command::Add("mapTest", [] (Command::Params params)
{
std::string command;
int max = (params.Length() >= 2 ? atoi(params[1]) : 16), current = 0;
for (int i =0;;)
{
2016-07-31 15:07:08 -04:00
char* mapname = Game::mapnames[i];
2016-07-11 11:14:58 -04:00
if (!*mapname)
{
i = 0;
continue;
}
if(!(i % 2)) command.append(fmt::sprintf("wait 250;disconnect;wait 750;", mapname)); // Test a disconnect
else command.append(fmt::sprintf("wait 500;", mapname)); // Test direct map switch
command.append(fmt::sprintf("map %s;", mapname));
++i, ++current;
if (current >= max) break;
}
Command::Execute(command, false);
});
}
2016-08-28 14:52:47 -04:00
Exception::~Exception()
{
Exception::SetFilterHook.Uninstall();
}
2016-07-11 11:14:58 -04:00
}