Merge pull request #1369 from gcmoreira/logging_producer_information

Linux/Mac: Log producer metadata information
This commit is contained in:
ikelos
2024-11-29 10:27:32 +00:00
committed by GitHub
3 changed files with 65 additions and 13 deletions
@@ -142,11 +142,11 @@ class SymbolFinder(interfaces.automagic.AutomagicInterface):
)
for _, banner in banner_list:
vollog.debug(f"Identified banner: {repr(banner)}")
symbol_files = self.banners.get(banner, None)
if symbol_files:
isf_path = symbol_files
vollog.debug(f"Using symbol library: {symbol_files}")
vollog.debug(f"Identified banner: {banner!r}")
symbols_file = self.banners.get(banner, None)
if symbols_file:
isf_path = symbols_file
vollog.debug(f"Using symbol library: {symbols_file}")
clazz = self.symbol_class
# Set the discovered options
path_join = interfaces.configuration.path_join
@@ -160,8 +160,31 @@ class SymbolFinder(interfaces.automagic.AutomagicInterface):
path_join(config_path, requirement.name, "symbol_mask")
] = layer.address_mask
# Keep track of the existing table names so we know which ones were added
old_table_names = set(context.symbol_space)
# Construct the appropriate symbol table
requirement.construct(context, config_path)
new_table_names = set(context.symbol_space) - old_table_names
# It should add only one symbol table. Ignore the next steps if it doesn't
if len(new_table_names) == 1:
new_table_name = new_table_names.pop()
symbol_table = context.symbol_space[new_table_name]
producer_metadata = symbol_table.producer
vollog.debug(
f"producer_name: {producer_metadata.name}, producer_version: {producer_metadata.version_string}"
)
symbol_metadata = symbol_table.metadata
vollog.debug("Types:")
for types_source_dict in symbol_metadata.get_types_sources():
vollog.debug(f"\t{types_source_dict}")
vollog.debug("Symbols:")
for symbol_source_dict in symbol_metadata.get_symbols_sources():
vollog.debug(f"\t{symbol_source_dict}")
break
else:
vollog.debug(f"Symbol library path not found for: {banner}")
+11 -4
View File
@@ -738,10 +738,17 @@ class Version6Format(Version5Format):
@property
def metadata(self) -> Optional[interfaces.symbols.MetadataInterface]:
"""Returns a MetadataInterface object."""
if self._json_object.get("metadata", {}).get("windows"):
return metadata.WindowsMetadata(self._json_object["metadata"]["windows"])
if self._json_object.get("metadata", {}).get("linux"):
return metadata.LinuxMetadata(self._json_object["metadata"]["linux"])
if "metadata" not in self._json_object:
return None
json_metadata = self._json_object["metadata"]
if "windows" in json_metadata:
return metadata.WindowsMetadata(json_metadata["windows"])
if "linux" in json_metadata:
return metadata.LinuxMetadata(json_metadata["linux"])
if "mac" in json_metadata:
return metadata.MacMetadata(json_metadata["mac"])
return None
+26 -4
View File
@@ -4,8 +4,7 @@
import datetime
import logging
from typing import Optional, Tuple, Union
from typing import Optional, Tuple, Union, List, Dict
from volatility3.framework import constants, interfaces
vollog = logging.getLogger(__name__)
@@ -18,10 +17,17 @@ class ProducerMetadata(interfaces.symbols.MetadataInterface):
def name(self) -> Optional[str]:
return self._json_data.get("name", None)
@property
def version_string(self) -> str:
"""Returns the ISF file producer's version as a string.
If no version is present, an empty string is returned.
"""
return self._json_data.get("version", "")
@property
def version(self) -> Optional[Tuple[int]]:
"""Returns the version of the ISF file producer"""
version = self._json_data.get("version", None)
version = self.version_string()
if not version:
return None
if all(x in "0123456789." for x in version):
@@ -79,5 +85,21 @@ class WindowsMetadata(interfaces.symbols.MetadataInterface):
return self._json_data.get("pdb", {}).get("age", None)
class LinuxMetadata(interfaces.symbols.MetadataInterface):
class PosixMetadata(interfaces.symbols.MetadataInterface):
"""Base class to handle metadata of Posix-based ISF sources"""
def get_types_sources(self) -> List[Optional[Dict]]:
"""Returns the types sources metadata"""
return self._json_data.get("types", [])
def get_symbols_sources(self) -> List[Optional[Dict]]:
"""Returns the symbols sources metadata"""
return self._json_data.get("symbols", [])
class LinuxMetadata(PosixMetadata):
"""Class to handle the metadata from a Linux symbol table."""
class MacMetadata(PosixMetadata):
"""Class to handle the metadata from a Mac symbol table."""