mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
140 lines
4.5 KiB
Python
140 lines
4.5 KiB
Python
# CHIPSEC: Platform Security Assessment Framework
|
|
# Copyright (c) 2010-2021, Intel Corporation
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; Version 2.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# Contact information:
|
|
# chipsec@intel.com
|
|
#
|
|
|
|
|
|
import re
|
|
import traceback
|
|
import chipsec.logger
|
|
from chipsec.module_common import ModuleResult
|
|
|
|
_importlib = True
|
|
try:
|
|
import importlib
|
|
except ImportError:
|
|
_importlib = False
|
|
|
|
MODPATH_RE = re.compile(r"^\w+(\.\w+)*$")
|
|
|
|
|
|
class Module:
|
|
def __init__(self, name):
|
|
self.logger = chipsec.logger.logger()
|
|
self.name = name
|
|
self.module = None
|
|
self.mod_obj = None
|
|
|
|
def __lt__(self, other):
|
|
return self.name < other.name
|
|
|
|
def __le__(self, other):
|
|
return self.name <= other.name
|
|
|
|
def __gt__(self, other):
|
|
return self.name > other.name
|
|
|
|
def __ge__(self, other):
|
|
return self.name >= other.name
|
|
|
|
def get_name(self):
|
|
return self.name
|
|
|
|
def do_import(self):
|
|
loaded = False
|
|
if not MODPATH_RE.match(self.get_name()):
|
|
self.logger.log_error(f'Invalid module path: {self.name}')
|
|
else:
|
|
try:
|
|
if _importlib:
|
|
self.module = importlib.import_module(self.name)
|
|
loaded = True
|
|
if self.logger.DEBUG:
|
|
self.logger.log_good(f'imported: {self.name}')
|
|
except BaseException as msg:
|
|
self.logger.log_error(f"Exception occurred during import of {self.name}: '{str(msg)}'")
|
|
if self.logger.DEBUG:
|
|
self.logger.log_bad(traceback.format_exc())
|
|
raise msg
|
|
return loaded
|
|
|
|
def run(self, module_argv):
|
|
result = self.get_module_object()
|
|
|
|
if self.mod_obj is not None and result == ModuleResult.PASSED:
|
|
if module_argv is not None:
|
|
self.logger.log(f'[*] Module arguments ({len(module_argv):d}):')
|
|
self.logger.log(module_argv)
|
|
else:
|
|
module_argv = []
|
|
|
|
if isinstance(self.mod_obj, chipsec.module_common.BaseModule):
|
|
if self.mod_obj.is_supported():
|
|
result = self.mod_obj.run(module_argv)
|
|
else:
|
|
result = ModuleResult.NOTAPPLICABLE
|
|
self.logger.log(f'Skipping module {self.name} since it is not applicable in this environment and/or platform')
|
|
|
|
return result
|
|
|
|
def get_module_object(self):
|
|
result = ModuleResult.PASSED
|
|
if self.mod_obj is None:
|
|
try:
|
|
if _importlib:
|
|
pkg = getattr(self.module, "__package__")
|
|
class_name = getattr(self.module, "__name__")
|
|
if pkg:
|
|
class_name = class_name.replace(pkg, '')
|
|
if class_name.startswith('.'):
|
|
class_name = class_name.replace('.', '')
|
|
for iname, iref in self.module.__dict__.items():
|
|
if isinstance(iref, type):
|
|
if issubclass(iref, chipsec.module_common.BaseModule):
|
|
if iname.lower() == class_name.lower():
|
|
self.mod_obj = iref()
|
|
if self.mod_obj is None:
|
|
result = ModuleResult.DEPRECATED
|
|
except (AttributeError, TypeError) as ae:
|
|
result = ModuleResult.DEPRECATED
|
|
return result
|
|
|
|
def get_location(self):
|
|
myfile = ''
|
|
try:
|
|
if _importlib:
|
|
myfile = getattr(self.module, "__file__")
|
|
except:
|
|
pass
|
|
return myfile
|
|
|
|
def get_tags(self):
|
|
module_tags = []
|
|
metadata_tags = []
|
|
try:
|
|
if _importlib:
|
|
module_tags = getattr(self.module, 'TAGS')
|
|
metadata_tags = getattr(self.module, 'MD_TAGS')
|
|
except:
|
|
pass
|
|
|
|
return module_tags, metadata_tags
|
|
|
|
def __str__(self):
|
|
return self.get_name()
|