summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Rowe <mrowe@bdash.net.nz>2025-05-15 22:15:26 -0700
committerkat <kat@vector35.com>2025-05-30 11:51:34 -0400
commitfa8ecc11840135ae2050b8af16373d3e3ffeebbc (patch)
tree0b953abe683e83cf8c737439b2b02c5314d8b34e
parent85d51eeefdca18ec9efe8c4b85d9e5b457ad9e11 (diff)
[ObjC] Fix another case where a category's class name was not being resolved
Handle the case where the `class` field of the category is a direct reference to an external symbol via a bind fixup. In that case, the pointer's value when read from the view is 0. To determine the class name it is necessary to look up the relocation for the pointer's address and parse the class name from the symbol's name.
-rw-r--r--objectivec/objc.cpp93
-rw-r--r--objectivec/objc.h2
2 files changed, 64 insertions, 31 deletions
diff --git a/objectivec/objc.cpp b/objectivec/objc.cpp
index f66c0a47..c7052c22 100644
--- a/objectivec/objc.cpp
+++ b/objectivec/objc.cpp
@@ -1,8 +1,33 @@
#include "objc.h"
#include "inttypes.h"
+#include <optional>
using namespace BinaryNinja;
+namespace {
+
+// Attempt to recover an Objective-C class name from the symbol's name.
+// Note: classes defined in the current image should be looked up in m_classes
+// rather than using this function.
+std::optional<std::string> ClassNameFromSymbolName(const Ref<Symbol>& symbol)
+{
+ std::string_view symbolName = symbol->GetFullNameRef();
+
+ // Symbols named `_OBJC_CLASS_$_` are references to external classes.
+ if (symbolName.size() > 14 && symbolName.rfind("_OBJC_CLASS_$_", 0) == 0)
+ return std::string(symbolName.substr(14));
+
+ // Symbols named `cls_` are classes defined in a loaded image other than
+ // the image currently being analyzed.
+ if (symbolName.size() > 4 && symbolName.rfind("cls_", 0) == 0)
+ return std::string(symbolName.substr(4));
+
+ return std::nullopt;
+}
+
+} // namespace
+
+
Ref<Metadata> ObjCProcessor::SerializeMethod(uint64_t loc, const Method& method)
{
std::map<std::string, Ref<Metadata>> methodMeta;
@@ -530,6 +555,39 @@ void ObjCProcessor::LoadClasses(ObjCReader* reader, Ref<Section> classPtrSection
}
}
+std::optional<std::string> ObjCProcessor::ClassNameForTargetOfPointerAt(ObjCReader* reader, uint64_t offset)
+{
+ auto savedOffset = reader->GetOffset();
+ reader->Seek(offset);
+ auto target = ReadPointerAccountingForRelocations(reader);
+ reader->Seek(savedOffset);
+
+ if (target) {
+ // Classes defined in the current image must be looked up in m_classes
+ // as adding their symbol may be deferred.
+ if (auto it = m_classes.find(target); it != m_classes.end())
+ return it->second.name;
+
+ // Classes defined in other images are looked up by their symbol name.
+ // This is common for cross-image references in the shared cache.
+ if (auto symbol = GetSymbol(target))
+ {
+ if (auto className = ClassNameFromSymbolName(symbol))
+ return *className;
+ }
+ }
+
+ // If there's no target, or we can't find a symbol for it, check whether the pointer has a relocation
+ // that contains a symbol. This is the case for cross-image references outside of the shared cache.
+ for (const auto& relocation : m_data->GetRelocationsAt(offset))
+ {
+ if (auto symbol = relocation->GetSymbol())
+ return ClassNameFromSymbolName(symbol);
+ }
+
+ return std::nullopt;
+}
+
void ObjCProcessor::LoadCategories(ObjCReader* reader, Ref<Section> classPtrSection)
{
if (!classPtrSection)
@@ -569,29 +627,9 @@ void ObjCProcessor::LoadCategories(ObjCReader* reader, Ref<Section> classPtrSect
}
std::string categoryAdditionsName;
- std::string categoryBaseClassName;
+ std::string categoryBaseClassName =
+ ClassNameForTargetOfPointerAt(reader, catLocation + ptrSize).value_or(std::string());
- if (const auto& it = m_classes.find(cat.cls); it != m_classes.end())
- {
- categoryBaseClassName = it->second.name;
- category.associatedName = it->second.associatedName;
- }
- else if (const auto symbol = GetSymbol(cat.cls))
- {
- if (symbol->GetType() == ImportedDataSymbol || symbol->GetType() == ImportAddressSymbol
- || symbol->GetType() == DataSymbol || symbol->GetType() == ExternalSymbol)
- {
- // Symbols named `_OBJC_CLASS_$_` are references to external classes.
- // Symbols named `cls_` are classes defined in a loaded image other than
- // the image currently being analyzed. Classes from the current image
- // are found via `m_classes`.
- const std::string_view symbolName = symbol->GetFullNameRef();
- if (symbolName.size() > 14 && symbolName.rfind("_OBJC_CLASS_$_", 0) == 0)
- categoryBaseClassName = symbolName.substr(14);
- else if (symbolName.size() > 4 && symbolName.rfind("cls_", 0) == 0)
- categoryBaseClassName = symbolName.substr(4);
- }
- }
if (categoryBaseClassName.empty())
{
m_logger->LogInfo("Using base address as stand-in classname for category at 0x%llx", catLocation);
@@ -1166,15 +1204,8 @@ void ObjCProcessor::PostProcessObjCSections(ObjCReader* reader)
auto type = Type::PointerType(ptrSize, Type::NamedType(m_data, m_typeNames.cls));
for (view_ptr_t i = start; i < end; i += ptrSize)
{
- reader->Seek(i);
- auto clsLoc = ReadPointerAccountingForRelocations(reader);
- if (const auto& it = m_classes.find(clsLoc); it != m_classes.end())
- {
- auto& cls = it->second;
- std::string name = cls.name;
- if (!name.empty())
- DefineObjCSymbol(DataSymbol, type, "clsRef_" + name, i, true);
- }
+ if (auto className = ClassNameForTargetOfPointerAt(reader, i))
+ DefineObjCSymbol(DataSymbol, type, "clsRef_" + *className, i, true);
}
}
if (auto superRefs = GetSectionWithName("__objc_superrefs"))
diff --git a/objectivec/objc.h b/objectivec/objc.h
index 9aeb159a..1cff9401 100644
--- a/objectivec/objc.h
+++ b/objectivec/objc.h
@@ -313,6 +313,8 @@ namespace BinaryNinja {
bool ApplyMethodType(Class& cls, Method& method, bool isInstanceMethod);
void ApplyMethodTypes(Class& cls);
+ std::optional<std::string> ClassNameForTargetOfPointerAt(ObjCReader* reader, uint64_t offset);
+
void PostProcessObjCSections(ObjCReader* reader);
protected: