|
@@ -96,40 +96,32 @@ def get_vtables_from_address(bin: "LinuxBinary", vt: Symbol) -> list[VTable]:
|
|
|
tblidx: int
|
|
|
possible_syms: set[Symbol]
|
|
|
|
|
|
- table_index = 0
|
|
|
function_list: list[VTableFunction] = []
|
|
|
- vtable_range = enumerate(range(vt.rebased_addr + 0x4 * 2, vt.rebased_addr + vt.size, 4))
|
|
|
- for n, addr in vtable_range:
|
|
|
- # get symbols that map to that address
|
|
|
- deref = bin.angr.loader.fast_memory_load_pointer(addr)
|
|
|
- fnsyms = set(vtda.syms_by_addr.get(deref) or set()) if deref else set()
|
|
|
- if not fnsyms:
|
|
|
- # vtable boundary; consume typeinfo so it doesn't get added to the list
|
|
|
- # NOTE: we don't actually care if the indices skip; all that matters is that the
|
|
|
- # functions are grouped correctly
|
|
|
- table_index += 1
|
|
|
- next(vtable_range)
|
|
|
- continue
|
|
|
-
|
|
|
- if len(fnsyms) == 1:
|
|
|
- function_list.append(VTableFunction(table_index, fnsyms))
|
|
|
- continue
|
|
|
- elif len(fnsyms) > 1:
|
|
|
- # function in vtable is referenced by multiple names; perform disambiguation
|
|
|
- matched_overload = None
|
|
|
- for related in vtda.get_possible_vtable_set_candidates(vt, n):
|
|
|
- matched_overload = vtda.resolve_ambiguous_vfn(n, fnsyms, related)
|
|
|
- if matched_overload:
|
|
|
- break
|
|
|
+ vptr_lists = vtda.get_vfptrs_from_table(vt)
|
|
|
+ for table_index, vptrs in enumerate(vptr_lists):
|
|
|
+ for n, vptr in enumerate(vptrs):
|
|
|
+ # get symbols that map to that address
|
|
|
+ fnsyms = set(vtda.syms_by_addr.get(vptr) or set()) if vptr else set()
|
|
|
+
|
|
|
+ if len(fnsyms) == 1:
|
|
|
+ function_list.append(VTableFunction(table_index, fnsyms))
|
|
|
+ continue
|
|
|
+ elif len(fnsyms) > 1:
|
|
|
+ # function in vtable is referenced by multiple names; perform disambiguation
|
|
|
+ matched_overload = None
|
|
|
+ for related in vtda.get_possible_vtable_set_candidates(vt, n):
|
|
|
+ matched_overload = vtda.resolve_ambiguous_vfn(n, fnsyms, related)
|
|
|
+ if matched_overload:
|
|
|
+ break
|
|
|
|
|
|
- # it's possible that the other function(s) is/are resolveable.
|
|
|
- # without doing multiple passes and saving the disambiguity somewhere it'll be difficult to match
|
|
|
+ # it's possible that the other function(s) is/are resolveable.
|
|
|
+ # without doing multiple passes and saving the disambiguity somewhere it'll be difficult to match
|
|
|
|
|
|
- if matched_overload:
|
|
|
- function_list.append(VTableFunction(table_index, {matched_overload}))
|
|
|
- continue
|
|
|
+ if matched_overload:
|
|
|
+ function_list.append(VTableFunction(table_index, {matched_overload}))
|
|
|
+ continue
|
|
|
|
|
|
- function_list.append(VTableFunction(table_index, fnsyms))
|
|
|
+ function_list.append(VTableFunction(table_index, fnsyms))
|
|
|
|
|
|
for n, vfn in enumerate(function_list):
|
|
|
if n == 0:
|