lokinet/llarp/win32/exception.cpp
Jeff 871c3e3281
changeset for windows port
* wintun vpn platform for windows
* bundle config snippets into nsis installer for exit node, keyfile persisting, reduced hops mode.
* use wintun for vpn platform
* isolate all windows platform specific code into their own compilation units and libraries
* split up internal libraries into more specific components
* rename liblokinet.a target to liblokinet-amalgum.a to elimiate ambiguity with liblokinet.so
* DNS platform for win32
* rename llarp/ev/ev_libuv.{c,h}pp to llarp/ev/libuv.{c,h}pp as the old name was idiotic
* split up net platform into win32 and posix specific compilation units
* rename lokinet_init.c to easter_eggs.cpp as that is what they are for and it does not need to be a c compilation target
* add cmake option STRIP_SYMBOLS for seperating out debug symbols for windows builds
* intercept dns traffic on all interfaces on windows using windivert and feed it into lokinet
2022-09-08 14:24:59 -04:00

40 lines
1.1 KiB
C++

#include "windows.h"
#include "exception.hpp"
#include <llarp/util/str.hpp>
#include <array>
namespace llarp::win32
{
error::error(std::string msg) : error{GetLastError(), std::move(msg)}
{}
error::error(DWORD err, std::string msg)
: std::runtime_error{fmt::format("{}: {} (code={})", msg, error_to_string(err), err)}
{}
std::string
error_to_string(DWORD err)
{
// mostly yoinked from https://stackoverflow.com/a/45565001
LPTSTR psz{nullptr};
const DWORD cchMsg = FormatMessage(
FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS | FORMAT_MESSAGE_ALLOCATE_BUFFER,
nullptr,
err,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
reinterpret_cast<LPTSTR>(&psz),
0,
nullptr);
if (cchMsg <= 0)
{
// cannot get message for error, reset the last error here so it does not propagate
::SetLastError(0);
return "unknown error";
}
auto deleter = [](void* p) { ::LocalFree(p); };
std::unique_ptr<TCHAR, decltype(deleter)> ptrBuffer{psz, deleter};
return std::string{ptrBuffer.get(), cchMsg};
}
} // namespace llarp::win32