[idd] debug: full Unicode handling and log as UTF-8

This commit makes `CDebug` use Unicode internally instead of whatever
random code page is in use. It also gets rid of the horrible character
counting and replaces that with `vasprintf` and `vaswprintf` helpers
(partially inspired by Linux) which allocates a buffer.

For HRESULT logging, the error code in both hex and decimal are included.

The output is now guaranteed to be UTF-8.
This commit is contained in:
Quantum
2025-09-14 04:42:21 -04:00
committed by Geoffrey McRae
parent e2bc1856b6
commit daa78bcf47
4 changed files with 203 additions and 122 deletions

View File

@@ -21,6 +21,7 @@
#include <Windows.h> #include <Windows.h>
#include <string> #include <string>
#include <stdio.h>
#include <malloc.h> #include <malloc.h>
#include <strsafe.h> #include <strsafe.h>
@@ -28,45 +29,106 @@
CDebug g_debug; CDebug g_debug;
inline static void iso8601(char *buf, size_t count) const char *CDebug::s_levelStr[CDebug::LEVEL_MAX] =
{
" ",
"I",
"W",
"E",
"T",
"!",
"F"
};
int vasprintf(char **pstr, const char *fmt, va_list args)
{
int len = _vscprintf(fmt, args);
if (len < 0)
return -1;
char *str = (char *)malloc(len + 1);
if (!str)
return -1;
int r = vsprintf_s(str, len + 1, fmt, args);
if (r < 0)
{
free(str);
return -1;
}
*pstr = str;
return r;
}
int vaswprintf(wchar_t **pstr, const wchar_t *fmt, va_list args)
{
int len = _vscwprintf(fmt, args);
if (len < 0)
return -1;
wchar_t *str = (wchar_t *)malloc((len + 1) * sizeof(wchar_t));
if (!str)
return -1;
int r = vswprintf_s(str, len + 1, fmt, args);
if (r < 0)
{
free(str);
return -1;
}
*pstr = str;
return r;
}
int aswprintf(wchar_t **pstr, const wchar_t *fmt, ...) {
va_list ap;
va_start(ap, fmt);
int r = vaswprintf(pstr, fmt, ap);
va_end(ap);
return r;
}
inline static void iso8601(wchar_t *buf, size_t count)
{ {
struct tm utc; struct tm utc;
time_t unix; time_t unix;
time(&unix); time(&unix);
gmtime_s(&utc, &unix); gmtime_s(&utc, &unix);
strftime(buf, count, "%Y-%m-%d %H:%M:%SZ", &utc); wcsftime(buf, count, L"%Y-%m-%d %H:%M:%SZ", &utc);
} }
void CDebug::Init(const char * name) void CDebug::Init(const wchar_t * name)
{ {
// don't redirect the debug output if running under a debugger // don't redirect the debug output if running under a debugger
if (IsDebuggerPresent()) if (IsDebuggerPresent())
return; return;
std::string folder = "C:\\ProgramData\\Looking Glass (IDD)\\"; std::wstring folder = L"C:\\ProgramData\\Looking Glass (IDD)\\";
std::string baseName = name; std::wstring baseName = name;
std::string ext = ".txt"; std::wstring ext = L".txt";
std::string logFile = folder + baseName + ext; std::wstring logFile = folder + baseName + ext;
//rotate out old logs //rotate out old logs
DeleteFileA((folder + baseName + ".4" + ext).c_str()); DeleteFileW((folder + baseName + L".4" + ext).c_str());
for (int i = 3; i >= 0; --i) for (int i = 3; i >= 0; --i)
{ {
std::string oldPath; std::wstring oldPath;
std::string newPath; std::wstring newPath;
if (i == 0) if (i == 0)
{ {
oldPath = logFile; oldPath = logFile;
newPath = folder + baseName + ".1" + ext; newPath = folder + baseName + L".1" + ext;
} }
else else
{ {
oldPath = folder + baseName + "." + std::to_string(i) + ext; oldPath = folder + baseName + L"." + std::to_wstring(i) + ext;
newPath = folder + baseName + "." + std::to_string(i + 1) + ext; newPath = folder + baseName + L"." + std::to_wstring(i + 1) + ext;
} }
MoveFileA(oldPath.c_str(), newPath.c_str()); MoveFileW(oldPath.c_str(), newPath.c_str());
} }
/// open the new log file /// open the new log file
@@ -76,50 +138,45 @@ void CDebug::Init(const char * name)
DEBUG_ERROR_HR(GetLastError(), "Failed to open the log file %s", logFile.c_str()); DEBUG_ERROR_HR(GetLastError(), "Failed to open the log file %s", logFile.c_str());
return; return;
} }
else
DEBUG_INFO("Logging to: %s", logFile.c_str());
DEBUG_INFO(L"Logging to: %s", logFile.c_str());
m_stream = std::move(stream); m_stream = std::move(stream);
} }
void CDebug::Log_va(CDebug::Level level, const char* function, int line, const char* fmt, va_list args) void CDebug::LogStr(CDebug::Level level, const char *function, int line, bool wide, const void *str)
{ {
if (level < 0 || level >= LEVEL_MAX) if (level < 0 || level >= LEVEL_MAX)
level = LEVEL_NONE; level = LEVEL_NONE;
char timestamp[50]; wchar_t timestamp[50];
iso8601(timestamp, sizeof timestamp); iso8601(timestamp, ARRAYSIZE(timestamp));
static const char* fmtTemplate = "[%s] [%s] %40s:%-4d | "; wchar_t *result;
const char* levelStr = m_levelStr[level]; if (aswprintf(&result, wide ? L"[%s] [%S] %40S:%-4d | %s\n" : L"[%s] [%S] %40S:%-4d | %S\n",
timestamp, s_levelStr[level], function, line, str) < 0)
int length = 0; {
length = _scprintf(fmtTemplate, timestamp, levelStr, function, line); Write(L"Out of memory while logging");
length += _vscprintf(fmt, args);
length += 2;
/* Depending on the size of the format string, allocate space on the stack or the heap. */
PCHAR buffer;
buffer = (PCHAR)_malloca(length);
if (!buffer)
return; return;
}
/* Populate the buffer with the contents of the format string. */ Write(result);
StringCbPrintfA(buffer, length, fmtTemplate, timestamp, levelStr, function, line); free(result);
size_t offset = 0;
StringCbLengthA(buffer, length, &offset);
StringCbVPrintfA(&buffer[offset], length - offset, fmt, args);
buffer[length - 2] = '\n';
buffer[length - 1] = '\0';
Write(buffer);
_freea(buffer);
} }
void CDebug::Log(CDebug::Level level, const char * function, int line, const char * fmt, ...) void CDebug::Log_va(CDebug::Level level, const char *function, int line, const char *fmt, va_list args)
{
char *result;
if (vasprintf(&result, fmt, args) < 0)
{
Write(L"Out of memory while logging");
return;
}
LogStr(level, function, line, false, result);
free(result);
}
void CDebug::Log(CDebug::Level level, const char *function, int line, const char *fmt, ...)
{ {
va_list args; va_list args;
va_start(args, fmt); va_start(args, fmt);
@@ -127,84 +184,112 @@ void CDebug::Log(CDebug::Level level, const char * function, int line, const cha
va_end(args); va_end(args);
} }
void CDebug::LogHR(CDebug::Level level, HRESULT hr, const char * function, int line, const char * fmt, ...) void CDebug::Log_va(CDebug::Level level, const char *function, int line, const wchar_t *fmt, va_list args)
{ {
if (level < 0 || level >= LEVEL_MAX) wchar_t *result;
level = LEVEL_NONE; if (vaswprintf(&result, fmt, args) < 0)
{
Write(L"Out of memory while logging");
return;
}
char * hrBuffer; LogStr(level, function, line, true, result);
if (!FormatMessageA( free(result);
}
void CDebug::Log(CDebug::Level level, const char *function, int line, const wchar_t *fmt, ...)
{
va_list args;
va_start(args, fmt);
Log_va(level, function, line, fmt, args);
va_end(args);
}
void CDebug::LogStrHR(CDebug::Level level, HRESULT hr, const char *function, int line, bool wide, const void *str)
{
wchar_t *hrBuffer;
if (!FormatMessageW(
FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS, FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS,
NULL, NULL,
hr, hr,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(char*)&hrBuffer, (LPWSTR)&hrBuffer,
1024, 1024,
NULL NULL
)) ))
{ {
DEBUG_INFO("FormatMessage failed with code 0x%08x", GetLastError()); DEBUG_ERROR("FormatMessage for 0x%08lX (%u) failed with code 0x%08x", hr, hr, GetLastError());
LogStr(level, function, line, wide, str);
va_list args;
va_start(args, fmt);
Log_va(level, function, line, fmt, args);
va_end(args);
return; return;
} }
// Remove trailing CRLF in hrBuffer // Remove trailing CRLF in hrBuffer
size_t len = strlen(hrBuffer); size_t len = wcslen(hrBuffer);
while (len && (hrBuffer[len - 1] == '\n' || hrBuffer[len - 1] == '\r')) while (len && (hrBuffer[len - 1] == L'\n' || hrBuffer[len - 1] == L'\r'))
hrBuffer[--len] = '\0'; hrBuffer[--len] = L'\0';
char timestamp[50]; wchar_t *result;
iso8601(timestamp, sizeof timestamp); if (aswprintf(&result, wide ? L"%s (0x%08lX (%u): %s)" : L"%S (0x%08lX (%u): %s)", str, hr, hr, hrBuffer) < 0)
static const char* fmtTemplate = "[%s] [%s] %40s:%-4d | ";
const char* levelStr = m_levelStr[level];
va_list args;
va_start(args, fmt);
int length = 0;
length = _scprintf(fmtTemplate, timestamp, levelStr, function, line);
length += _vscprintf(fmt, args);
length += 16 + (int)strlen(hrBuffer) + 1;
/* Depending on the size of the format string, allocate space on the stack or the heap. */
PCHAR buffer;
buffer = (PCHAR)_malloca(length);
if (!buffer)
{ {
va_end(args); Write(L"Out of memory while logging");
return; return;
} }
/* Populate the buffer with the contents of the format string. */ LogStr(level, function, line, true, result);
StringCbPrintfA(buffer, length, fmtTemplate, timestamp, levelStr, function, line); free(result);
size_t offset = 0;
StringCbLengthA(buffer, length, &offset);
StringCbVPrintfA(&buffer[offset], length - offset, fmt, args);
va_end(args);
/* append the formatted error */
StringCbLengthA(buffer, length, &offset);
StringCbPrintfA(&buffer[offset], length - offset, " (0x%08X: %s)\n", hr, hrBuffer);
Write(buffer);
_freea(buffer);
LocalFree(hrBuffer);
} }
void CDebug::Write(const char * line) void CDebug::LogHR(CDebug::Level level, HRESULT hr, const char *function, int line, const char *fmt, ...)
{ {
if (m_stream.is_open()) char *result;
va_list args;
va_start(args, fmt);
if (vasprintf(&result, fmt, args) < 0)
{ {
m_stream << line; va_end(args);
m_stream.flush(); Write(L"Out of memory while logging");
return;
} }
else
OutputDebugStringA(line); va_end(args);
LogStrHR(level, hr, function, line, false, result);
free(result);
}
void CDebug::LogHR(CDebug::Level level, HRESULT hr, const char *function, int line, const wchar_t *fmt, ...)
{
wchar_t *result;
va_list args;
va_start(args, fmt);
if (vaswprintf(&result, fmt, args) < 0)
{
va_end(args);
Write(L"Out of memory while logging");
return;
}
va_end(args);
LogStrHR(level, hr, function, line, true, result);
free(result);
}
void CDebug::Write(const wchar_t *line)
{
if (!m_stream.is_open())
{
OutputDebugStringW(line);
return;
}
DWORD cbRequired = WideCharToMultiByte(CP_UTF8, 0, line, -1, NULL, 0, NULL, NULL);
LPSTR utf8 = (LPSTR) malloc(cbRequired);
if (!utf8)
{
m_stream << "Out of memory while logging" << std::endl;
return;
}
WideCharToMultiByte(CP_UTF8, 0, line, -1, utf8, cbRequired, NULL, NULL);
m_stream << utf8 << std::flush;
free(utf8);
} }

View File

@@ -1,4 +1,4 @@
/** /**
* Looking Glass * Looking Glass
* Copyright © 2017-2025 The Looking Glass Authors * Copyright © 2017-2025 The Looking Glass Authors
* https://looking-glass.io * https://looking-glass.io
@@ -27,7 +27,7 @@ class CDebug
{ {
private: private:
std::ofstream m_stream; std::ofstream m_stream;
void Write(const char * line); void Write(const wchar_t *line);
public: public:
@@ -44,22 +44,18 @@ class CDebug
LEVEL_MAX LEVEL_MAX
}; };
void Init(const char * name); void Init(const wchar_t * name);
void Log_va(CDebug::Level level, const char* function, int line, const char* fmt, va_list args); void Log_va(CDebug::Level level, const char *function, int line, const wchar_t *fmt, va_list args);
void Log(CDebug::Level level, const char * function, int line, const char * fmt, ...); void Log(CDebug::Level level, const char *function, int line, const wchar_t *fmt, ...);
void LogHR(CDebug::Level level, HRESULT hr, const char* function, int line, const char* fmt, ...); void Log_va(CDebug::Level level, const char *function, int line, const char *fmt, va_list args);
void Log(CDebug::Level level, const char *function, int line, const char *fmt, ...);
void LogHR(CDebug::Level level, HRESULT hr, const char *function, int line, const char *fmt, ...);
void LogHR(CDebug::Level level, HRESULT hr, const char *function, int line, const wchar_t *fmt, ...);
private: private:
const char* m_levelStr[LEVEL_MAX] = void LogStr(CDebug::Level level, const char *function, int line, bool wide, const void *str);
{ void LogStrHR(CDebug::Level level, HRESULT hr, const char *function, int line, bool wide, const void *str);
" ", static const char *s_levelStr[LEVEL_MAX];
"I",
"W",
"E",
"T",
"!",
"F"
};
}; };
extern CDebug g_debug; extern CDebug g_debug;

View File

@@ -1,4 +1,4 @@
/** /**
* Looking Glass * Looking Glass
* Copyright © 2017-2025 The Looking Glass Authors * Copyright © 2017-2025 The Looking Glass Authors
* https://looking-glass.io * https://looking-glass.io
@@ -28,7 +28,7 @@
NTSTATUS DriverEntry(_In_ PDRIVER_OBJECT DriverObject, _In_ PUNICODE_STRING RegistryPath) NTSTATUS DriverEntry(_In_ PDRIVER_OBJECT DriverObject, _In_ PUNICODE_STRING RegistryPath)
{ {
g_debug.Init("looking-glass-idd"); g_debug.Init(L"looking-glass-idd");
DEBUG_INFO("Looking Glass IDD Driver (" LG_VERSION_STR ")"); DEBUG_INFO("Looking Glass IDD Driver (" LG_VERSION_STR ")");
NTSTATUS status = STATUS_SUCCESS; NTSTATUS status = STATUS_SUCCESS;

View File

@@ -52,7 +52,7 @@ int WINAPI WinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _
if (argc == 1) if (argc == 1)
{ {
g_debug.Init("looking-glass-idd-service"); g_debug.Init(L"looking-glass-idd-service");
DEBUG_INFO("Looking Glass IDD Helper Service (" LG_VERSION_STR ")"); DEBUG_INFO("Looking Glass IDD Helper Service (" LG_VERSION_STR ")");
if (!HandleService()) if (!HandleService())
return EXIT_FAILURE; return EXIT_FAILURE;
@@ -63,7 +63,7 @@ int WINAPI WinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _
return EXIT_FAILURE; return EXIT_FAILURE;
// child process // child process
g_debug.Init("looking-glass-idd-helper"); g_debug.Init(L"looking-glass-idd-helper");
DEBUG_INFO("Looking Glass IDD Helper Process (" LG_VERSION_STR ")"); DEBUG_INFO("Looking Glass IDD Helper Process (" LG_VERSION_STR ")");
HandleT<HANDLENullTraits> hParent(OpenProcess(SYNCHRONIZE, FALSE, std::stoul(args[1]))); HandleT<HANDLENullTraits> hParent(OpenProcess(SYNCHRONIZE, FALSE, std::stoul(args[1])));