HyperDbg/hyperdbg/libhyperdbg/code/debugger/commands/debugging-commands/prealloc.cpp
2026-06-14 14:55:02 +02:00

175 lines
5.7 KiB
C++

/**
* @file prealloc.cpp
* @author Sina Karvandi (sina@hyperdbg.org)
* @brief prealloc command
* @details
* @version 0.1
* @date 2020-11-13
*
* @copyright This project is released under the GNU Public License v3.
*
*/
#include "pch.h"
//
// Global Variables
//
extern BOOLEAN g_IsKdModuleLoaded;
/**
* @brief help of the prealloc command
*
* @return VOID
*/
VOID
CommandPreallocHelp()
{
ShowMessages("prealloc : pre-allocates buffer for special purposes.\n\n");
ShowMessages("syntax : \tprealloc [Type (string)] [Count (hex)]\n");
ShowMessages("\n");
ShowMessages("\t\te.g : prealloc thread-interception 8\n");
ShowMessages("\t\te.g : prealloc monitor 10\n");
ShowMessages("\t\te.g : prealloc epthook 5\n");
ShowMessages("\t\te.g : prealloc epthook2 3\n");
ShowMessages("\t\te.g : prealloc regular-event 12\n");
ShowMessages("\t\te.g : prealloc big-safe-buffert 1\n");
ShowMessages("\n");
ShowMessages("type of allocations:\n");
ShowMessages("\tthread-interception: used for pre-allocations of the thread holders for the thread interception mechanism\n");
ShowMessages("\tmonitor: used for pre-allocations of the '!monitor' EPT hooks\n");
ShowMessages("\tepthook: used for pre-allocations of the '!epthook' EPT hooks\n");
ShowMessages("\tepthook2: used for pre-allocations of the '!epthook2' EPT hooks\n");
ShowMessages("\tregular-event: used for pre-allocations of regular instant events\n");
ShowMessages("\tbig-event: used for pre-allocations of big instant events\n");
ShowMessages("\tregular-safe-buffer: used for pre-allocations of the regular event safe buffers ($buffer) for instant events\n");
ShowMessages("\tbig-safe-buffer: used for pre-allocations of the big event safe buffers ($buffer) for instant events\n");
}
/**
* @brief prealloc command handler
*
* @param CommandTokens
* @param Command
*
* @return VOID
*/
VOID
CommandPrealloc(vector<CommandToken> CommandTokens, string Command)
{
BOOL Status;
ULONG ReturnedLength;
UINT64 Count;
DEBUGGER_PREALLOC_COMMAND PreallocRequest = {};
string SecondParam;
if (CommandTokens.size() != 3)
{
ShowMessages("incorrect use of the '%s'\n\n",
GetCaseSensitiveStringFromCommandToken(CommandTokens.at(0)).c_str());
CommandPreallocHelp();
return;
}
SecondParam = GetLowerStringFromCommandToken(CommandTokens.at(1));
//
// Set the type of pre-allocation
//
if (!SecondParam.compare("thread-interception"))
{
PreallocRequest.Type = DEBUGGER_PREALLOC_COMMAND_TYPE_THREAD_INTERCEPTION;
}
else if (!SecondParam.compare("monitor") || !SecondParam.compare("!monitor"))
{
PreallocRequest.Type = DEBUGGER_PREALLOC_COMMAND_TYPE_MONITOR;
}
else if (!SecondParam.compare("epthook") || !SecondParam.compare("!epthook"))
{
PreallocRequest.Type = DEBUGGER_PREALLOC_COMMAND_TYPE_EPTHOOK;
}
else if (!SecondParam.compare("epthook2") || !SecondParam.compare("!epthook2"))
{
PreallocRequest.Type = DEBUGGER_PREALLOC_COMMAND_TYPE_EPTHOOK2;
}
else if (!SecondParam.compare("regular-event"))
{
PreallocRequest.Type = DEBUGGER_PREALLOC_COMMAND_TYPE_REGULAR_EVENT;
}
else if (!SecondParam.compare("big-event"))
{
PreallocRequest.Type = DEBUGGER_PREALLOC_COMMAND_TYPE_BIG_EVENT;
}
else if (!SecondParam.compare("regular-safe-buffer"))
{
PreallocRequest.Type = DEBUGGER_PREALLOC_COMMAND_TYPE_REGULAR_SAFE_BUFFER;
}
else if (!SecondParam.compare("big-safe-buffer"))
{
PreallocRequest.Type = DEBUGGER_PREALLOC_COMMAND_TYPE_BIG_SAFE_BUFFER;
}
else
{
//
// Couldn't resolve or unknown parameter
//
ShowMessages("err, couldn't resolve error at '%s'\n",
GetCaseSensitiveStringFromCommandToken(CommandTokens.at(1)).c_str());
return;
}
//
// Get the count of needed pre-allocated buffers
//
if (!SymbolConvertNameOrExprToAddress(GetCaseSensitiveStringFromCommandToken(CommandTokens.at(2)), &Count))
{
//
// Couldn't resolve or unknown parameter
//
ShowMessages("err, couldn't resolve error at '%s'\n",
GetCaseSensitiveStringFromCommandToken(CommandTokens.at(2)).c_str());
return;
}
//
// Set the counter
//
PreallocRequest.Count = (UINT32)Count;
AssertShowMessageReturnStmt(g_IsKdModuleLoaded, g_DeviceHandle, ASSERT_MESSAGE_KD_NOT_LOADED, ASSERT_MESSAGE_DRIVER_NOT_LOADED, AssertReturn);
//
// Send IOCTL
//
Status = PlatformDeviceIoControl(
g_DeviceHandle, // Handle to device
IOCTL_RESERVE_PRE_ALLOCATED_POOLS, // IO Control Code (IOCTL)
&PreallocRequest, // Input Buffer to driver.
SIZEOF_DEBUGGER_PREALLOC_COMMAND, // Input buffer length
&PreallocRequest, // Output Buffer from driver.
SIZEOF_DEBUGGER_PREALLOC_COMMAND, // Length of output
// buffer in bytes.
&ReturnedLength, // Bytes placed in buffer.
NULL // synchronous call
);
if (!Status)
{
ShowMessages("ioctl failed with code 0x%x\n", PlatformGetLastError());
return;
}
if (PreallocRequest.KernelStatus == DEBUGGER_OPERATION_WAS_SUCCESSFUL)
{
ShowMessages("the requested pools are allocated and reserved\n");
}
else
{
//
// An err occurred, no results
//
ShowErrorMessage(PreallocRequest.KernelStatus);
}
}