mirror of
https://github.com/hasherezade/tiny_tracer
synced 2026-06-08 14:36:37 +00:00
122 lines
3.2 KiB
C++
122 lines
3.2 KiB
C++
#include "FuncWatch.h"
|
|
|
|
#include <vector>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
|
|
bool WFuncInfo::load(const std::string &sline, char delimiter)
|
|
{
|
|
std::vector<std::string> args;
|
|
util::splitList(sline, delimiter, args);
|
|
if (args.size() < 2) return false;
|
|
|
|
this->dllName = args[0];
|
|
this->funcName = args[1];
|
|
this->paramCount = 0;
|
|
|
|
if (args.size() >= 3) {
|
|
this->paramCount = util::loadInt<size_t>(args[2]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool WFuncInfo::update(const WFuncInfo &func_info)
|
|
{
|
|
bool isUpdated = false;
|
|
if (this->paramCount < func_info.paramCount) {
|
|
this->paramCount = func_info.paramCount;
|
|
isUpdated = true;
|
|
}
|
|
return isUpdated;
|
|
}
|
|
|
|
//---
|
|
|
|
std::string WSyscallInfo::formatSyscallName(int syscallID)
|
|
{
|
|
std::stringstream ss;
|
|
ss << "SYSCALL:0x" << std::hex << (syscallID);
|
|
return ss.str();
|
|
}
|
|
|
|
bool WSyscallInfo::load(const std::string& sline, char delimiter)
|
|
{
|
|
std::vector<std::string> args;
|
|
util::splitList(sline, delimiter, args);
|
|
if (args.size() < 3) return false;
|
|
// Note: '<' and '>' are used to ensure this cannot overlap with a valid
|
|
// file or library name.
|
|
if (args[0] != "<SYSCALL>") return false;
|
|
|
|
// Parse syscall ID as a hexadecimal number
|
|
const int syscallId = util::loadInt<int>(args[1], true);
|
|
if (syscallId < 0) return false;
|
|
|
|
this->syscallId = static_cast<uint32_t>(syscallId);
|
|
this->paramCount = util::loadInt<size_t>(args[2]);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool WSyscallInfo::update(const WSyscallInfo& syscall_info)
|
|
{
|
|
bool isUpdated = false;
|
|
if (this->paramCount < syscall_info.paramCount) {
|
|
this->paramCount = syscall_info.paramCount;
|
|
isUpdated = true;
|
|
}
|
|
return isUpdated;
|
|
}
|
|
|
|
//---
|
|
|
|
void FuncWatchList::appendSyscall(WSyscallInfo& syscall_info)
|
|
{
|
|
std::map<uint32_t, WSyscallInfo>::iterator it = syscalls.find(syscall_info.syscallId);
|
|
if (it == syscalls.end()) {
|
|
syscalls[syscall_info.syscallId] = syscall_info;
|
|
}
|
|
else {
|
|
it->second.update(syscall_info);
|
|
}
|
|
}
|
|
|
|
size_t FuncWatchList::loadList(const char* filename, FuncList* exclusions)
|
|
{
|
|
std::ifstream myfile(filename);
|
|
if (!myfile.is_open()) {
|
|
#ifdef _DEBUG
|
|
std::cerr << "Could not open file: " << filename << std::endl;
|
|
#endif//_DEBUG
|
|
return 0;
|
|
}
|
|
const size_t count_before = funcs.size();
|
|
const size_t MAX_LINE = 300;
|
|
char line[MAX_LINE] = { 0 };
|
|
while (!myfile.eof()) {
|
|
|
|
myfile.getline(line, MAX_LINE);
|
|
const std::string str = line;
|
|
if (!str.size() || str[0] == '#') { // skip empty lines and comments
|
|
continue;
|
|
}
|
|
// Try to parse as a syscall
|
|
WSyscallInfo syscall_info;
|
|
if (syscall_info.load(str, FuncList::DELIM)) {
|
|
appendSyscall(syscall_info);
|
|
continue;
|
|
}
|
|
|
|
// Try to parse as a function
|
|
WFuncInfo func_info;
|
|
if (func_info.load(line, FuncList::DELIM)) {
|
|
if (exclusions && exclusions->contains(func_info.dllName, func_info.funcName)) {
|
|
//std::cout << ">> Skipping: " << func_info.funcName << std::endl;
|
|
continue;
|
|
}
|
|
appendFunc(func_info);
|
|
}
|
|
}
|
|
return funcs.size() - count_before;
|
|
}
|