mirror of
https://github.com/mandiant/capa.git
synced 2026-06-30 18:16:48 -07:00
f55086c212
contains the call ids for all the calls within the sequence, so we know where to look for related matched. sequence: refactor SequenceMatcher sequence: don't use sequence addresses sequence: remove sequence address
200 lines
5.0 KiB
Python
200 lines
5.0 KiB
Python
# Copyright 2022 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import abc
|
|
|
|
|
|
class Address(abc.ABC):
|
|
@abc.abstractmethod
|
|
def __eq__(self, other): ...
|
|
|
|
@abc.abstractmethod
|
|
def __lt__(self, other):
|
|
# implement < so that addresses can be sorted from low to high
|
|
...
|
|
|
|
@abc.abstractmethod
|
|
def __hash__(self):
|
|
# implement hash so that addresses can be used in sets and dicts
|
|
...
|
|
|
|
@abc.abstractmethod
|
|
def __repr__(self):
|
|
# implement repr to help during debugging
|
|
...
|
|
|
|
|
|
class AbsoluteVirtualAddress(int, Address):
|
|
"""an absolute memory address"""
|
|
|
|
def __new__(cls, v):
|
|
assert v >= 0
|
|
return int.__new__(cls, v)
|
|
|
|
def __repr__(self):
|
|
return f"absolute(0x{self:x})"
|
|
|
|
def __hash__(self):
|
|
return int.__hash__(self)
|
|
|
|
|
|
class ProcessAddress(Address):
|
|
"""an address of a process in a dynamic execution trace"""
|
|
|
|
def __init__(self, pid: int, ppid: int = 0):
|
|
assert ppid >= 0
|
|
assert pid > 0
|
|
self.ppid = ppid
|
|
self.pid = pid
|
|
|
|
def __repr__(self):
|
|
return "process(%s%s)" % (
|
|
f"ppid: {self.ppid}, " if self.ppid > 0 else "",
|
|
f"pid: {self.pid}",
|
|
)
|
|
|
|
def __hash__(self):
|
|
return hash((self.ppid, self.pid))
|
|
|
|
def __eq__(self, other):
|
|
assert isinstance(other, ProcessAddress)
|
|
return (self.ppid, self.pid) == (other.ppid, other.pid)
|
|
|
|
def __lt__(self, other):
|
|
assert isinstance(other, ProcessAddress)
|
|
return (self.ppid, self.pid) < (other.ppid, other.pid)
|
|
|
|
|
|
class ThreadAddress(Address):
|
|
"""addresses a thread in a dynamic execution trace"""
|
|
|
|
def __init__(self, process: ProcessAddress, tid: int):
|
|
assert tid >= 0
|
|
self.process = process
|
|
self.tid = tid
|
|
|
|
def __repr__(self):
|
|
return f"{self.process}, thread(tid: {self.tid})"
|
|
|
|
def __hash__(self):
|
|
return hash((self.process, self.tid))
|
|
|
|
def __eq__(self, other):
|
|
assert isinstance(other, ThreadAddress)
|
|
return (self.process, self.tid) == (other.process, other.tid)
|
|
|
|
def __lt__(self, other):
|
|
assert isinstance(other, ThreadAddress)
|
|
return (self.process, self.tid) < (other.process, other.tid)
|
|
|
|
|
|
class DynamicCallAddress(Address):
|
|
"""addresses a call in a dynamic execution trace"""
|
|
|
|
def __init__(self, thread: ThreadAddress, id: int):
|
|
assert id >= 0
|
|
self.thread = thread
|
|
self.id = id
|
|
|
|
def __repr__(self):
|
|
return f"{self.thread}, call(id: {self.id})"
|
|
|
|
def __hash__(self):
|
|
return hash((self.thread, self.id))
|
|
|
|
def __eq__(self, other):
|
|
return isinstance(other, DynamicCallAddress) and (self.thread, self.id) == (other.thread, other.id)
|
|
|
|
def __lt__(self, other):
|
|
assert isinstance(other, DynamicCallAddress)
|
|
return (self.thread, self.id) < (other.thread, other.id)
|
|
|
|
|
|
class RelativeVirtualAddress(int, Address):
|
|
"""a memory address relative to a base address"""
|
|
|
|
def __repr__(self):
|
|
return f"relative(0x{self:x})"
|
|
|
|
def __hash__(self):
|
|
return int.__hash__(self)
|
|
|
|
|
|
class FileOffsetAddress(int, Address):
|
|
"""an address relative to the start of a file"""
|
|
|
|
def __new__(cls, v):
|
|
assert v >= 0
|
|
return int.__new__(cls, v)
|
|
|
|
def __repr__(self):
|
|
return f"file(0x{self:x})"
|
|
|
|
def __hash__(self):
|
|
return int.__hash__(self)
|
|
|
|
|
|
class DNTokenAddress(int, Address):
|
|
"""a .NET token"""
|
|
|
|
def __new__(cls, token: int):
|
|
return int.__new__(cls, token)
|
|
|
|
def __repr__(self):
|
|
return f"token(0x{self:x})"
|
|
|
|
def __hash__(self):
|
|
return int.__hash__(self)
|
|
|
|
|
|
class DNTokenOffsetAddress(Address):
|
|
"""an offset into an object specified by a .NET token"""
|
|
|
|
def __init__(self, token: int, offset: int):
|
|
assert offset >= 0
|
|
self.token = token
|
|
self.offset = offset
|
|
|
|
def __eq__(self, other):
|
|
return (self.token, self.offset) == (other.token, other.offset)
|
|
|
|
def __lt__(self, other):
|
|
return (self.token, self.offset) < (other.token, other.offset)
|
|
|
|
def __hash__(self):
|
|
return hash((self.token, self.offset))
|
|
|
|
def __repr__(self):
|
|
return f"token(0x{self.token:x})+(0x{self.offset:x})"
|
|
|
|
def __index__(self):
|
|
return self.token + self.offset
|
|
|
|
|
|
class _NoAddress(Address):
|
|
def __eq__(self, other):
|
|
return True
|
|
|
|
def __lt__(self, other):
|
|
return False
|
|
|
|
def __hash__(self):
|
|
return hash(0)
|
|
|
|
def __repr__(self):
|
|
return "no address"
|
|
|
|
|
|
NO_ADDRESS = _NoAddress()
|