mirror of
https://github.com/hasherezade/tiny_tracer
synced 2026-06-08 14:36:37 +00:00
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
#include "ProcessInfo.h"
|
|
|
|
//----
|
|
|
|
bool is_my_name(const std::string &module_name, std::string my_name)
|
|
{
|
|
std::size_t found = module_name.find(my_name);
|
|
if (found != std::string::npos) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void ProcessInfo::addModuleSections(IMG Image, ADDRINT ImageBase)
|
|
{
|
|
// enumerate sections within the analysed module
|
|
for (SEC sec = IMG_SecHead(Image); SEC_Valid(sec); sec = SEC_Next(sec)) {
|
|
s_module section;
|
|
init_section(section, ImageBase, sec);
|
|
m_Sections[section.start] = section;
|
|
}
|
|
}
|
|
|
|
bool ProcessInfo::addModule(IMG Image)
|
|
{
|
|
// if this module is an object of observation, add its sections also
|
|
if (m_myPid == 0 && is_my_name(IMG_Name(Image), m_AnalysedApp)) {
|
|
m_myPid = PIN_GetPid();
|
|
myModuleBase = IMG_LoadOffset(Image);
|
|
addModuleSections(Image, myModuleBase);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
const bool ProcessInfo::updateTracedModuleSection(ADDRINT Rva)
|
|
{
|
|
// saved section (of the target module)
|
|
static s_module* prevSec = nullptr;
|
|
|
|
// current section of the target module (by RVA)
|
|
const s_module* currSec = getSecByAddr(Rva);
|
|
|
|
if (prevSec != currSec) {
|
|
// update the stored section
|
|
prevSec = (s_module*)currSec;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|