mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
79f81bbb7e
This commit fixes whitespace errors from checkers W291,W292,W293,W391. They were found by running "flake8 ." from the root directory. These are errors defined by "pycodestyle", and have no functional impact to the source. This is simply fixing whitespace as defined by CHIPSEC's .flake8 configuration. background: https://www.flake8rules.com/rules/W291.html https://www.flake8rules.com/rules/W292.html https://www.flake8rules.com/rules/W293.html https://www.flake8rules.com/rules/W391.html tool versions: flake8 v7.3.0, python v3.13.11 Signed-off-by: William Leara <william.leara@dell.com>
107 lines
3.7 KiB
Python
107 lines
3.7 KiB
Python
# CHIPSEC: Platform Security Assessment Framework
|
|
# Copyright (c) 2018, Eclypsium, Inc.
|
|
# Copyright (c) 2019-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.
|
|
#
|
|
|
|
"""
|
|
This module checks if memory configuration is locked to protect SMM
|
|
|
|
Reference:
|
|
- https://github.com/coreboot/coreboot/blob/master/src/cpu/intel/model_206ax/finalize.c
|
|
- https://github.com/coreboot/coreboot/blob/master/src/soc/intel/broadwell/include/soc/msr.h
|
|
|
|
This module checks the following:
|
|
- LT_LOCK_MEMORY MSR (0x2E7) - Bit [0]
|
|
|
|
The module returns the following results:
|
|
- **FAILED** : LT_LOCK_MEMORY[0] is not set
|
|
- **PASSED** : LT_LOCK_MEMORY[0] is set
|
|
- **ERROR** : Problem reading LT_LOCK_MEMORY values
|
|
|
|
Usage:
|
|
``chipsec_main -m common.memlock``
|
|
|
|
Example:
|
|
>>> chipsec_main.py -m common.memlock
|
|
|
|
Registers used:
|
|
- LT_LOCK_MEMORY
|
|
|
|
.. note::
|
|
- This module will not run on Atom based platforms.
|
|
|
|
"""
|
|
|
|
from chipsec.module_common import BaseModule, HWCONFIG
|
|
from chipsec.library.returncode import ModuleResult
|
|
from chipsec.library.exceptions import HWAccessViolationError
|
|
from typing import List
|
|
|
|
TAGS = [HWCONFIG]
|
|
METADATA_TAGS = ['OPENSOURCE', 'IA', 'COMMON', 'MEMLOCK']
|
|
|
|
_MODULE_NAME = 'memlock'
|
|
|
|
|
|
class memlock(BaseModule):
|
|
|
|
def __init__(self):
|
|
BaseModule.__init__(self)
|
|
self.is_read_error = False
|
|
self.cs.set_scope({
|
|
"LT_LOCK_MEMORY": "8086.MSR",
|
|
})
|
|
|
|
|
|
def is_supported(self) -> bool:
|
|
# Workaround for Atom based processors. Accessing this MSR on these systems
|
|
# causes a GP fault and can't be caught in UEFI Shell.
|
|
if not self.cs.is_atom():
|
|
if self.cs.register.has_field('LT_LOCK_MEMORY', 'LT_LOCK'):
|
|
return True
|
|
else:
|
|
self.logger.log_important("'LT_LOCK_MEMORY.LT_LOCK' not defined for platform. Skipping module.")
|
|
else:
|
|
self.logger.log_important('Found an Atom based platform. Skipping module.')
|
|
return False
|
|
|
|
def check_LT_LOCK_MEMORY(self) -> bool:
|
|
self.logger.log('[*] Checking LT_LOCK_MEMORY status')
|
|
ltlockreg = self.cs.register.get_list_by_name('LT_LOCK_MEMORY')
|
|
try:
|
|
ltlockreg.read_and_verbose_print()
|
|
except HWAccessViolationError:
|
|
self.logger.log_important('Could not read LT_LOCK_MEMORY')
|
|
self.is_read_error = True
|
|
return False
|
|
return ltlockreg.is_all_field_value(0, 'LT_LOCK')
|
|
|
|
|
|
def run(self, module_argv: List[str]) -> int:
|
|
self.logger.start_test('Check LT_LOCK_MEMORY')
|
|
check_LT_LOCK_MEMORY_test_fail = self.check_LT_LOCK_MEMORY()
|
|
|
|
if self.is_read_error:
|
|
self.logger.log_error('There was a problem reading LT_LOCK_MEMORY.')
|
|
self.logger.log_important('Possible the environment or a platform feature is preventing these reads.')
|
|
self.res = ModuleResult.ERROR
|
|
self.result.setStatusBit(self.result.status.ACCESS_RW)
|
|
elif check_LT_LOCK_MEMORY_test_fail is True:
|
|
self.logger.log_failed('LT_LOCK_MEMORY.LT_LOCK bit is not configured correctly')
|
|
self.res = ModuleResult.FAILED
|
|
self.result.setStatusBit(self.result.status.LOCKS)
|
|
else:
|
|
self.logger.log_passed('LT_LOCK_MEMORY.LT_LOCK bit is set')
|
|
self.res = ModuleResult.PASSED
|
|
|
|
return self.result.getReturnCode(self.res)
|