HyperDbg/hyperdbg/hprdbgctrl/Source Files/Debugger/Essentials/symbol.cpp
2021-09-26 02:13:09 +03:30

456 lines
13 KiB
C++

/**
* @file symbol.cpp
* @author Alee Amini (aleeaminiz@gmail.com)
* @author Sina Karvandi (sina@rayanfam.com)
* @brief symbol parser
* @details
* @version 0.1
* @date 2021-05-20
*
* @copyright This project is released under the GNU Public License v3.
*
*/
#include "..\hprdbgctrl\pch.h"
//
// Global Variables
//
extern BOOLEAN g_IsSerialConnectedToRemoteDebugger;
//
// Global Variables
//
extern PMODULE_SYMBOL_DETAIL g_SymbolTable;
extern UINT32 g_SymbolTableSize;
extern BOOLEAN g_IsExecutingSymbolLoadingRoutines;
/**
* @brief Initial reload of symbols (for previously download symbols)
*
* @return VOID
*/
VOID
SymbolInitialReload()
{
//
// Load already downloaded symbol (won't download at this point)
//
SymbolReloadOrDownloadSymbols(FALSE, TRUE);
}
/**
* @brief Initial and send the results of serial for the debugger
* in the case of debugger mode
*
* @return VOID
*/
VOID
SymbolPrepareDebuggerWithSymbolInfo()
{
//
// Load already downloaded symbol (won't download at this point)
//
SymbolBuildSymbolTable(&g_SymbolTable, &g_SymbolTableSize, TRUE);
}
/**
* @brief Build and show symbol table details
*
* @return VOID
*/
VOID
SymbolBuildAndShowSymbolTable()
{
//
// Build the symbol table
//
SymbolBuildSymbolTable(&g_SymbolTable, &g_SymbolTableSize, FALSE);
//
// Test, should be removed
// show packet details
//
for (size_t i = 0; i < g_SymbolTableSize / sizeof(MODULE_SYMBOL_DETAIL); i++)
{
ShowMessages("is pdb details available? : %s\n", g_SymbolTable[i].IsSymbolDetailsFound ? "true" : "false");
ShowMessages("is pdb a path instead of module name? : %s\n", g_SymbolTable[i].IsLocalSymbolPath ? "true" : "false");
ShowMessages("base address : %llx\n", g_SymbolTable[i].BaseAddress);
ShowMessages("file path : %s\n", g_SymbolTable[i].FilePath);
ShowMessages("guid and age : %s\n", g_SymbolTable[i].ModuleSymbolGuidAndAge);
ShowMessages("module symbol path/name : %s\n", g_SymbolTable[i].ModuleSymbolPath);
ShowMessages("========================================================================\n");
}
}
/**
* @brief Reload or download symbols
* @param IsDownload Download from remote server if not available locally
* @param SilentLoad Load without any message
*
* @return BOOLEAN
*/
BOOLEAN
SymbolReloadOrDownloadSymbols(BOOLEAN IsDownload, BOOLEAN SilentLoad)
{
WCHAR ConfigPath[MAX_PATH] = {0};
inipp::Ini<char> Ini;
string SymbolServer = "";
BOOLEAN Result = FALSE;
//
// Build the symbol table
//
SymbolBuildSymbolTable(&g_SymbolTable, &g_SymbolTableSize, FALSE);
//
// *** Read symbol path/server from config file ***
//
//
// Get config file path
//
GetConfigFilePath(ConfigPath);
if (!IsFileExistW(ConfigPath))
{
ShowMessages("please configure the symbol path (use 'help .sympath' for more information)\n");
return FALSE;
}
ifstream Is(ConfigPath);
//
// Read config file
//
Ini.parse(Is);
//
// Show config file
//
// Ini.generate(std::cout);
inipp::get_value(Ini.sections["DEFAULT"], "SymbolServer", SymbolServer);
Is.close();
if (SymbolServer.empty())
{
ShowMessages("err, invalid config for symbol server/path\n");
return FALSE;
}
//
// *** Load or download available symbols **
//
//
// Indicate that we're in loading routines
//
g_IsExecutingSymbolLoadingRoutines = TRUE;
Result = ScriptEngineSymbolInitLoadWrapper(g_SymbolTable,
g_SymbolTableSize,
IsDownload,
SymbolServer.c_str(),
SilentLoad);
//
// Not in loading routines anymore
//
g_IsExecutingSymbolLoadingRoutines = FALSE;
return Result;
}
/**
* @brief check and convert string to a 64 bit unsigned interger and also
* check for symbol object names and evaluate expressions
*
* @param TextToConvert the target string
* @param Result result will be save to the pointer
*
* @return BOOLEAN shows whether the conversion was successful or not
*/
BOOLEAN
SymbolConvertNameOrExprToAddress(string TextToConvert, PUINT64 Result)
{
BOOLEAN IsFound = FALSE;
BOOLEAN HasError = NULL;
UINT64 Address = NULL;
string ConstTextToConvert = TextToConvert;
if (!ConvertStringToUInt64(TextToConvert, &Address))
{
//
// Check for symbol object names
//
Address = ScriptEngineConvertNameToAddressWrapper(ConstTextToConvert.c_str(), &IsFound);
if (!IsFound)
{
//
// It's neither a number, nor a founded object name,
// as the last resort, we have to test whether it's an expression or not
// if we're in the Debugger Mode then we have to send it the kernel to get
// the evaluation, if we're in VMI mode, then we evaluate it here with all
// registers set to Zero
//
Address = ScriptEngineEvalSingleExpression(TextToConvert, &HasError);
if (HasError)
{
//
// Not found or has error
//
IsFound = FALSE;
}
else
{
//
// Expression evaluated successfully
//
IsFound = TRUE;
}
}
else
{
//
// Object name is found
//
IsFound = TRUE;
}
}
else
{
//
// It's a hex number
//
IsFound = TRUE;
}
//
// Set the number if the address is founded
//
if (IsFound)
{
*Result = Address;
}
return IsFound;
}
/**
* @brief make the initial packet required for symbol server
* or reload packet
*
* @param BufferToStoreDetails Pointer to a buffer to store the symbols details
* this buffer will be allocated by this function and needs to be freed by caller
* @param StoredLength The length that stored on the BufferToStoreDetails
* @param SendOverSerial Shows whether the packet should be sent to the debugger
* over the serial or not
*
* @return BOOLEAN shows whether the operation was successful or not
*/
BOOLEAN
SymbolBuildSymbolTable(PMODULE_SYMBOL_DETAIL * BufferToStoreDetails,
PUINT32 StoredLength,
BOOLEAN SendOverSerial)
{
PRTL_PROCESS_MODULES ModuleInfo;
NTSTATUS Status;
PMODULE_SYMBOL_DETAIL ModuleSymDetailArray = NULL;
char SystemRoot[MAX_PATH] = {0};
char ModuleSymbolPath[MAX_PATH] = {0};
char ModuleSymbolGuidAndAge[MAXIMUM_GUID_AND_AGE_SIZE] = {0};
BOOLEAN IsSymbolPdbDetailAvailable = FALSE;
//
// Check if we found an already built symbol table
//
if (g_SymbolTable != NULL)
{
free(g_SymbolTable);
g_SymbolTable = NULL;
g_SymbolTableSize = NULL;
}
//
// Get system root
//
if (GetSystemDirectoryA(SystemRoot, MAX_PATH) == NULL)
{
ShowMessages("err, unable to get system directory (%d)\n",
GetLastError());
return FALSE;
}
string SystemRootString(SystemRoot);
//
// Convert root path to lower-case
//
transform(SystemRootString.begin(),
SystemRootString.end(),
SystemRootString.begin(),
[](unsigned char c) { return std::tolower(c); });
//
// Remove system32 from the root
//
Replace(SystemRootString, "\\system32", "");
//
// Allocate memory for the module list
//
ModuleInfo = (PRTL_PROCESS_MODULES)VirtualAlloc(
NULL,
1024 * 1024,
MEM_COMMIT | MEM_RESERVE,
PAGE_READWRITE);
if (!ModuleInfo)
{
ShowMessages("err, unable to allocate memory for module list (%d)\n",
GetLastError());
return FALSE;
}
//
// 11 = SystemModuleInformation
//
if (!NT_SUCCESS(
Status = NtQuerySystemInformation((SYSTEM_INFORMATION_CLASS)11,
ModuleInfo,
1024 * 1024,
NULL)))
{
ShowMessages("err, unable to query module list (%#x)\n", Status);
VirtualFree(ModuleInfo, 0, MEM_RELEASE);
return FALSE;
}
//
// Allocate Details buffer
//
ModuleSymDetailArray = (PMODULE_SYMBOL_DETAIL)malloc(ModuleInfo->NumberOfModules * sizeof(MODULE_SYMBOL_DETAIL));
if (ModuleSymDetailArray == NULL)
{
ShowMessages("err, unable to allocate memory for module list (%d)\n",
GetLastError());
return FALSE;
}
//
// Make sure buffer is zero
//
RtlZeroMemory(ModuleSymDetailArray, ModuleInfo->NumberOfModules * sizeof(MODULE_SYMBOL_DETAIL));
for (int i = 0; i < ModuleInfo->NumberOfModules; i++)
{
auto PathName = ModuleInfo->Modules[i].FullPathName + ModuleInfo->Modules[i].OffsetToFileName;
//
// Read symbol signature details
//
RtlZeroMemory(ModuleSymbolPath, sizeof(ModuleSymbolPath));
RtlZeroMemory(ModuleSymbolGuidAndAge, sizeof(ModuleSymbolGuidAndAge));
string ModuleFullPath((const char *)ModuleInfo->Modules[i].FullPathName);
if (ModuleFullPath.rfind("\\SystemRoot\\", 0) == 0)
{
//
// Path starts with \SystemRoot\
// we should change it to the real system root
// path
//
Replace(ModuleFullPath, "\\SystemRoot", SystemRootString);
}
if (ScriptEngineConvertFileToPdbFileAndGuidAndAgeDetailsWrapper(ModuleFullPath.c_str(), ModuleSymbolPath, ModuleSymbolGuidAndAge))
{
IsSymbolPdbDetailAvailable = TRUE;
//
// ShowMessages("Hash : %s , Symbol path : %s\n", ModuleSymbolGuidAndAge, ModuleSymbolPath);
//
}
else
{
IsSymbolPdbDetailAvailable = FALSE;
//
// ShowMessages("err, unable to get module pdb details\n");
//
}
//
// Build the structure for this module
//
ModuleSymDetailArray[i].BaseAddress = (UINT64)ModuleInfo->Modules[i].ImageBase;
memcpy(ModuleSymDetailArray[i].FilePath, ModuleFullPath.c_str(), ModuleFullPath.size());
if (IsSymbolPdbDetailAvailable)
{
ModuleSymDetailArray[i].IsSymbolDetailsFound = TRUE;
memcpy(ModuleSymDetailArray[i].ModuleSymbolGuidAndAge, ModuleSymbolGuidAndAge, MAXIMUM_GUID_AND_AGE_SIZE);
memcpy(ModuleSymDetailArray[i].ModuleSymbolPath, ModuleSymbolPath, MAX_PATH);
//
// Check if pdb file name is a real path or a module name
//
string ModuleSymbolPathString(ModuleSymbolPath);
if (ModuleSymbolPathString.find(":\\") != std::string::npos)
ModuleSymDetailArray[i].IsLocalSymbolPath = TRUE;
else
ModuleSymDetailArray[i].IsLocalSymbolPath = FALSE;
}
else
{
ModuleSymDetailArray[i].IsSymbolDetailsFound = FALSE;
}
//
// Check if it should be send to the remote debugger over serial
// and also make sure that we're connected to the remote debugger
// and this is a debuggee
//
if (SendOverSerial)
{
KdSendSymbolDetailPacket(&ModuleSymDetailArray[i], i, ModuleInfo->NumberOfModules);
}
}
//
// Store the buffer and length of module symbols details
//
*BufferToStoreDetails = ModuleSymDetailArray;
*StoredLength = ModuleInfo->NumberOfModules * sizeof(MODULE_SYMBOL_DETAIL);
VirtualFree(ModuleInfo, 0, MEM_RELEASE);
return TRUE;
}
/**
* @brief Allocate (build) and update the symbol table whenever a debuggee is attached
* on the debugger mode
*
* @param SymbolDetail Pointer to a buffer that was received as the single
* symbol info
* @param CurrentSymbolTableIndex Current Index in the symbol table
* @param TotalSymbols Total number of symbols in the debuggee
*
* @return BOOLEAN shows whether the operation was successful or not
*/
BOOLEAN
SymbolBuildAndUpdateSymbolTable(PMODULE_SYMBOL_DETAIL SymbolDetail,
UINT32 CurrentSymbolTableIndex,
UINT32 TotalSymbols)
{
// printf("Detail of symbol : %s | %s\n", SymbolDetail->FilePath, SymbolDetail->ModuleSymbolGuidAndAge);
return TRUE;
}