diff options
| author | Mason Reed <mason@vector35.com> | 2025-04-03 13:00:47 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-04-03 13:00:47 -0400 |
| commit | 578c5e77a60957a4d04eaac000679de3e5534e7b (patch) | |
| tree | 8353c7e6c4be46b9b0781fd72f82d6f4cca2c634 /view/sharedcache/workflow/SharedCacheWorkflow.cpp | |
| parent | 254fd7b1f48c0e79889e4c786c7e507e7ac2e067 (diff) | |
[SharedCache] Identify unloaded symbols that are called in standard functions
Fixes https://github.com/Vector35/binaryninja-api/issues/6550
Diffstat (limited to 'view/sharedcache/workflow/SharedCacheWorkflow.cpp')
| -rw-r--r-- | view/sharedcache/workflow/SharedCacheWorkflow.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/view/sharedcache/workflow/SharedCacheWorkflow.cpp b/view/sharedcache/workflow/SharedCacheWorkflow.cpp index 7dde4089..186ba85a 100644 --- a/view/sharedcache/workflow/SharedCacheWorkflow.cpp +++ b/view/sharedcache/workflow/SharedCacheWorkflow.cpp @@ -220,6 +220,15 @@ void AnalyzeStubFunction(Ref<Function> func, Ref<MediumLevelILFunction> mlil, Sh void AnalyzeStandardFunction(Ref<Function> func, Ref<MediumLevelILFunction> mlil, SharedCacheController& controller) { auto view = func->GetView(); + auto identifyUnmappedSymbol = [&](uint64_t symbolAddr) { + // Skip if already loaded. + if (view->IsValidOffset(symbolAddr)) + return false; + const auto symbol = controller.GetSymbolAt(symbolAddr); + view->DefineAutoSymbol(symbol->GetBNSymbol(*view)); + return true; + }; + auto loadStubIslandRegion = [&](uint64_t regionAddr) { // Skip if already loaded. if (view->IsValidOffset(regionAddr)) @@ -239,6 +248,7 @@ void AnalyzeStandardFunction(Ref<Function> func, Ref<MediumLevelILFunction> mlil { case MLIL_CONST_PTR: loadStubIslandRegion(expr.GetConstant<MLIL_CONST_PTR>()); + identifyUnmappedSymbol(expr.GetConstant<MLIL_CONST_PTR>()); break; default: break; |
