mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-21 14:02:22 +02:00
This change is quite signficant, and requires that TranslationLayers get all additional parameters that they need through their requirements. These are now automatically enumerated and populated on object construction based on the requirements, so should not require lots of repetitive filling out of fields. It does come with the downside that TranslationLayers can only be contructed with a context (and appropiate config), but TLs in particular always require a context (to contain the base layer) and blank configs can be constructed relatively easily (convenience functions can be added if necessary). This allows configuration trees to be built up, and their configs spliced into an existing config (as if it were being loaded from a file). Not all ConstructableRequirements use this method, since SymbolTables (for example) do not have access to the context or config_path in order to get to any parameters stored in the context's config. They therefore are still passed their requirement values as __init__ parameters instead.
140 lines
5.4 KiB
Python
140 lines
5.4 KiB
Python
"""
|
|
Created on 6 May 2013
|
|
|
|
@author: mike
|
|
"""
|
|
|
|
import os.path
|
|
|
|
from volatility.framework import exceptions, interfaces
|
|
from volatility.framework.configuration import requirements
|
|
|
|
|
|
class BufferDataLayer(interfaces.layers.DataLayerInterface):
|
|
"""A DataLayer class backed by a buffer in memory, designed for testing and swift data access"""
|
|
|
|
provides = {"type": "physical"}
|
|
priority = 10
|
|
|
|
def __init__(self, context, config_path, name, buffer):
|
|
super().__init__(context, config_path, name)
|
|
self._buffer = self._check_type(buffer, bytes)
|
|
|
|
@property
|
|
def maximum_address(self):
|
|
"""Returns the largest available address in the space"""
|
|
return len(self._buffer) - 1
|
|
|
|
@property
|
|
def minimum_address(self):
|
|
"""Returns the smallest available address in the space"""
|
|
return 0
|
|
|
|
def is_valid(self, offset, length = 1):
|
|
"""Returns whether the offset is valid or not"""
|
|
return (self.minimum_address <= offset <= self.maximum_address and
|
|
self.minimum_address <= offset + length - 1 <= self.maximum_address)
|
|
|
|
def read(self, address, length, pad = False):
|
|
"""Reads the data from the buffer"""
|
|
if not self.is_valid(address, length):
|
|
invalid_address = address
|
|
if self.minimum_address < address and address <= self.maximum_address:
|
|
invalid_address = self.maximum_address + 1
|
|
raise exceptions.InvalidAddressException(self.name, invalid_address,
|
|
"Offset outside of the buffer boundaries")
|
|
return self._buffer[address:address + length]
|
|
|
|
def write(self, address, data):
|
|
"""Writes the data from to the buffer"""
|
|
self._check_type(data, bytes)
|
|
self._buffer = self._buffer[:address] + data + self._buffer[address + len(data):]
|
|
|
|
@classmethod
|
|
def get_requirements(cls):
|
|
# No real requirements (only the buffer). Need to figure out if there's a better way of representing this
|
|
return [requirements.BytesRequirement(name = 'buffer', description = "The direct bytes to interact with",
|
|
optional = False)]
|
|
|
|
|
|
class FileLayer(interfaces.layers.DataLayerInterface):
|
|
"""a DataLayer backed by a file on the filesystem"""
|
|
|
|
provides = {"type": "physical"}
|
|
priority = 20
|
|
|
|
def __init__(self, context, config_path, name):
|
|
super().__init__(context, config_path, name)
|
|
|
|
self._filename = self.config["filename"]
|
|
self._file_ = None
|
|
self._size = os.path.getsize(self._filename)
|
|
|
|
@property
|
|
def _file(self):
|
|
"""Property to prevent the initializer storing an unserializable open file (for context cloning)"""
|
|
# FIXME: Add "+" to the mode once we've determined whether write mode is enabled
|
|
mode = "rb"
|
|
if not self._file_:
|
|
self._file_ = open(self._filename, mode)
|
|
return self._file_
|
|
|
|
@property
|
|
def maximum_address(self):
|
|
"""Returns the largest available address in the space"""
|
|
# Zero based, so we return the size of the file minus 1
|
|
return self._size - 1
|
|
|
|
@property
|
|
def minimum_address(self):
|
|
"""Returns the smallest available address in the space"""
|
|
return 0
|
|
|
|
def is_valid(self, offset, length = 1):
|
|
"""Returns whether the offset is valid or not"""
|
|
if length <= 0:
|
|
raise TypeError("Length must be positive")
|
|
return (self.minimum_address <= offset <= self.maximum_address and
|
|
self.minimum_address <= offset + length - 1 <= self.maximum_address)
|
|
|
|
def read(self, offset, length, pad = False):
|
|
"""Reads from the file at offset for length"""
|
|
if not self.is_valid(offset, length):
|
|
invalid_address = offset
|
|
if self.minimum_address < offset and offset <= self.maximum_address:
|
|
invalid_address = self.maximum_address + 1
|
|
raise exceptions.InvalidAddressException(self.name, invalid_address,
|
|
"Offset outside of the buffer boundaries")
|
|
self._file.seek(offset)
|
|
data = self._file.read(length)
|
|
if len(data) < length:
|
|
if pad:
|
|
data += (b"\x00" * (length - len(data)))
|
|
else:
|
|
raise exceptions.InvalidAddressException(self.name, offset + len(data),
|
|
"Could not read sufficient bytes from the " +
|
|
self.name + " file")
|
|
return data
|
|
|
|
def write(self, offset, data):
|
|
"""Writes to the file
|
|
|
|
This will technically allow writes beyond the extent of the file
|
|
"""
|
|
if not self.is_valid(offset, len(data)):
|
|
invalid_address = offset
|
|
if self.minimum_address < offset and offset <= self.maximum_address:
|
|
invalid_address = self.maximum_address + 1
|
|
raise exceptions.InvalidAddressException(self.name, invalid_address,
|
|
"Data segment outside of the " + self.name + " file boundaries")
|
|
self._file.seek(offset)
|
|
self._file.write(data)
|
|
|
|
def destroy(self):
|
|
"""Closes the file handle"""
|
|
self._file.close()
|
|
|
|
@classmethod
|
|
def get_requirements(cls):
|
|
return [requirements.StringRequirement(name = 'filename', optional = False)]
|