# CHIPSEC: Platform Security Assessment Framework # Copyright (c) 2023, 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 # from typing import List from unittest.mock import Mock import chipsec.helper.replay.replayhelper as rph from chipsec_main import ChipsecMain, parse_args from chipsec.chipset import clear_cs import chipsec.chipset as cs import chipsec.library.logger def run_chipsec_module(csm: ChipsecMain, module_replay_file: str) -> int: csm._cs.init(csm._platform, csm._pch, csm._helper, not csm._no_driver, csm._load_config, csm._ignore_platform) if module_replay_file: csm._helper.config_file = module_replay_file csm._helper._load() csm.load_module(csm._module, csm._module_argv) ret = csm.run_loaded_modules() return ret def setup_run_destroy_module_with_mock_logger_output(init_replay_file: str, module_str: str, module_args: str = "", module_replay_file: str = "", logging_fucntions_to_capture: List = ['log', 'log_error']) -> int: chipsec.library.logger._logger.remove_chipsec_logger() chipsec.library.logger._logger = Mock() chipsec.library.logger._logger.VERBOSE = False chipsec.library.logger._logger.DEBUG = False chipsec.library.logger._logger.HAL = False retval = setup_run_destroy_module(init_replay_file, module_str, module_args, module_replay_file) logger_calls = [] for func in logging_fucntions_to_capture: if hasattr(chipsec.library.logger._logger, func): logger_calls += getattr(chipsec.library.logger._logger, func).mock_calls clear_cs() chipsec.library.logger._logger = chipsec.library.logger.Logger() return retval, "\n ---".join([str(call.args[0]) for call in logger_calls]) def setup_run_destroy_module_with_mock_logger(init_replay_file: str, module_str: str, module_args: str = "", module_replay_file: str = "") -> int: retval, _ = setup_run_destroy_module_with_mock_logger_output(init_replay_file, module_str, module_args, module_replay_file) return retval def setup_run_destroy_module(init_replay_file: str, module_str: str, module_args: str = "", module_replay_file: str = "") -> int: arg_str = f" {module_args}" if module_args else "" cli_cmds = f"-m {module_str}{arg_str}".strip().split(' ') cs._chipset = None par = parse_args(cli_cmds) csm = ChipsecMain(par, cli_cmds) replayHelper = rph.ReplayHelper(init_replay_file) csm._helper = replayHelper chipsec_return = run_chipsec_module(csm, module_replay_file) clear_cs() return chipsec_return