|
@@ -24,7 +24,7 @@ from .types import ByteSequence, ByteSignature, Code, IntLiteral
|
|
KEY_AS_IS = string.Template("${name}")
|
|
KEY_AS_IS = string.Template("${name}")
|
|
|
|
|
|
|
|
|
|
-def KEY_SUFFIX(s: str):
|
|
|
|
|
|
+def KEY_SUFFIX(s: str) -> string.Template:
|
|
return string.Template(f"${{name}} [{s}]")
|
|
return string.Template(f"${{name}} [{s}]")
|
|
|
|
|
|
|
|
|
|
@@ -36,7 +36,7 @@ eval_functions = {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-def convert_types(*types):
|
|
|
|
|
|
+def convert_types(*types) -> typing.Callable[[typing.Type, typing.Any], typing.Any]:
|
|
def _dec_hook(type: typing.Type, obj: typing.Any) -> typing.Any:
|
|
def _dec_hook(type: typing.Type, obj: typing.Any) -> typing.Any:
|
|
if type in types:
|
|
if type in types:
|
|
return type(obj)
|
|
return type(obj)
|
|
@@ -75,7 +75,7 @@ class BaseBinary:
|
|
self._mm = mmap.mmap(self._file.fileno(), 0, access=mmap.ACCESS_READ)
|
|
self._mm = mmap.mmap(self._file.fileno(), 0, access=mmap.ACCESS_READ)
|
|
|
|
|
|
@contextlib.contextmanager
|
|
@contextlib.contextmanager
|
|
- def mmap(self):
|
|
|
|
|
|
+ def mmap(self) -> typing.Generator[mmap.mmap, None, None]:
|
|
yield self._mm
|
|
yield self._mm
|
|
|
|
|
|
def read(self, address: int, size: int) -> bytes:
|
|
def read(self, address: int, size: int) -> bytes:
|
|
@@ -180,9 +180,9 @@ class VirtualFunctionEntry(BaseEntry, tag="vfn"):
|
|
raise ValueError("Missing vfn?")
|
|
raise ValueError("Missing vfn?")
|
|
|
|
|
|
@property
|
|
@property
|
|
- def typename_from_symbol(self):
|
|
|
|
|
|
+ def typename_from_symbol(self) -> str:
|
|
if not self.symbol.startswith("_ZN"):
|
|
if not self.symbol.startswith("_ZN"):
|
|
- return
|
|
|
|
|
|
+ return ""
|
|
start_range = 3
|
|
start_range = 3
|
|
if self.symbol.startswith("_ZNK"):
|
|
if self.symbol.startswith("_ZNK"):
|
|
start_range = 4
|
|
start_range = 4
|
|
@@ -250,11 +250,11 @@ class ByteSigEntry(LocationEntry, tag="bytesig", kw_only=True):
|
|
|
|
|
|
with bin.mmap() as memory:
|
|
with bin.mmap() as memory:
|
|
matches = self.contents.expr.finditer(memory)
|
|
matches = self.contents.expr.finditer(memory)
|
|
- match = next(matches, False)
|
|
|
|
|
|
+ match = next(matches, None)
|
|
if not match:
|
|
if not match:
|
|
# no matches found at all, fail validation
|
|
# no matches found at all, fail validation
|
|
raise AssertionError(f"No matches found for {self.contents.display_str}")
|
|
raise AssertionError(f"No matches found for {self.contents.display_str}")
|
|
- if not self.allow_multiple and next(matches, False):
|
|
|
|
|
|
+ if not self.allow_multiple and next(matches, None) is not None:
|
|
# non-unique byte pattern, fail validation
|
|
# non-unique byte pattern, fail validation
|
|
raise AssertionError(f"Multiple matches found for {self.contents.display_str}")
|
|
raise AssertionError(f"Multiple matches found for {self.contents.display_str}")
|
|
return outputs
|
|
return outputs
|