mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
f7fe1be074
E231, E201, E226 Signed-off-by: brentholtsclaw <brent.holtsclaw@intel.com>
78 lines
3.5 KiB
Python
78 lines
3.5 KiB
Python
#CHIPSEC: Platform Security Assessment Framework
|
|
#Copyright (c) 2010-2020, 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
|
|
#
|
|
|
|
|
|
|
|
"""
|
|
In 2006, `Security Issues Related to Pentium System Management Mode <http://www.ssi.gouv.fr/archive/fr/sciences/fichiers/lti/cansecwest2006-duflot.pdf>`_ outlined a configuration issue where compatibility SMRAM was not locked on some platforms. This means that ring 0 software was able to modify System Management Mode (SMM) code and data that should have been protected.
|
|
|
|
In Compatability SMRAM (CSEG), access to memory is defined by the SMRAMC register. When SMRAMC[D_LCK] is not set by the BIOS, SMRAM can be accessed even when the CPU is not in SMM. Such attacks were also described in `Using CPU SMM to Circumvent OS Security Functions <http://fawlty.cs.usfca.edu/~cruse/cs630f06/duflot.pdf>`_ and `Using SMM for Other Purposes <http://phrack.org/issues/65/7.html>`_.
|
|
|
|
This CHIPSEC module simply reads SMRAMC and checks that D_LCK is set.
|
|
"""
|
|
from collections import namedtuple
|
|
from chipsec.module_common import BaseModule, ModuleResult, MTAG_BIOS, MTAG_SMM
|
|
|
|
TAGS = [MTAG_BIOS, MTAG_SMM]
|
|
|
|
class smm(BaseModule):
|
|
|
|
def __init__(self):
|
|
BaseModule.__init__(self)
|
|
|
|
def is_supported(self):
|
|
if self.cs.is_core() and self.cs.is_register_defined('PCI0.0.0_SMRAMC'):
|
|
return True
|
|
self.res = ModuleResult.NOTAPPLICABLE
|
|
return False
|
|
|
|
def check_SMRAMC(self):
|
|
self.logger.start_test( "Compatible SMM memory (SMRAM) Protection" )
|
|
|
|
regval = self.cs.read_register( 'PCI0.0.0_SMRAMC' )
|
|
g_smrame = self.cs.get_register_field( 'PCI0.0.0_SMRAMC', regval, 'G_SMRAME' )
|
|
d_open = self.cs.get_register_field( 'PCI0.0.0_SMRAMC', regval, 'D_OPEN' )
|
|
d_lock = self.cs.get_register_field( 'PCI0.0.0_SMRAMC', regval, 'D_LCK' )
|
|
|
|
self.cs.print_register( 'PCI0.0.0_SMRAMC', regval )
|
|
|
|
if 1 == g_smrame:
|
|
self.logger.log( "[*] Compatible SMRAM is enabled" )
|
|
# When D_LCK is set HW clears D_OPEN so generally no need to check for D_OPEN but doesn't hurt double checking
|
|
if 1 == d_lock and 0 == d_open:
|
|
res = ModuleResult.PASSED
|
|
self.logger.log_passed_check( "Compatible SMRAM is locked down" )
|
|
else:
|
|
res = ModuleResult.FAILED
|
|
self.logger.log_failed_check( "Compatible SMRAM is not properly locked. Expected ( D_LCK = 1, D_OPEN = 0 )" )
|
|
else:
|
|
res = ModuleResult.SKIPPED
|
|
self.logger.log( "[*] Compatible SMRAM is not enabled. Skipping.." )
|
|
|
|
return res
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
|
# run( module_argv )
|
|
# Required function: run here all tests from this module
|
|
# --------------------------------------------------------------------------
|
|
def run( self, module_argv ):
|
|
return self.check_SMRAMC()
|