Files
chipsec-chipsec/chipsec/modules/tools/cpu/sinkhole.py
T
brentholtsclaw 0e53326a83 Create exceptions.py for chipsec exceptions
Signed-off-by: brentholtsclaw <brent.holtsclaw@intel.com>
2021-08-26 10:50:51 -07:00

109 lines
5.4 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
#
"""
This module checks if CPU is affected by 'The SMM memory sinkhole' vulnerability by Christopher Domas
NOTE: The system may hang when running this test. In that case, the mitigation to this issue is likely working but we may not be handling the exception generated.
References:
The Memory Sinkhole by Christopher Domas: https://www.blackhat.com/docs/us-15/materials/us-15-Domas-The-Memory-Sinkhole-Unleashing-An-x86-Design-Flaw-Allowing-Universal-Privilege-Escalation.pdf (presentation) and https://www.blackhat.com/docs/us-15/materials/us-15-Domas-The-Memory-Sinkhole-Unleashing-An-x86-Design-Flaw-Allowing-Universal-Privilege-Escalation-wp.pdf (whitepaper).
"""
from chipsec.module_common import BaseModule, ModuleResult, MTAG_SMM
TAGS = [MTAG_SMM]
class sinkhole(BaseModule):
def __init__(self):
BaseModule.__init__(self)
def is_supported(self):
# @TODO: Currently this module doesn't work properly on (U)EFI
if not (self.cs.helper.is_windows() or self.cs.helper.is_linux()):
self.logger('Not a supported OS: Windows or Linux')
self.res = ModuleResult.NOTAPPLICABLE
return False
elif not self.cs.is_register_defined( 'IA32_APIC_BASE' ) or \
not self.cs.is_register_defined( 'IA32_SMRR_PHYSBASE' ) or \
not self.cs.is_register_defined( 'IA32_SMRR_PHYSMASK' ):
self.logger.error("Couldn't find definition of required configuration registers")
self.res = ModuleResult.ERROR
return False
else:
return True
def check_LAPIC_SMRR_overlap( self ):
smrr_physbase_msr = self.cs.read_register( 'IA32_SMRR_PHYSBASE', 0 )
apic_base_msr = self.cs.read_register( 'IA32_APIC_BASE', 0 )
self.cs.print_register( 'IA32_APIC_BASE', apic_base_msr )
self.cs.print_register( 'IA32_SMRR_PHYSBASE', smrr_physbase_msr )
smrrbase = self.cs.get_register_field( 'IA32_SMRR_PHYSBASE', smrr_physbase_msr, 'PhysBase' )
smrr_base = self.cs.get_register_field( 'IA32_SMRR_PHYSBASE', smrr_physbase_msr, 'PhysBase', True )
apicbase = self.cs.get_register_field( 'IA32_APIC_BASE', apic_base_msr, 'APICBase' )
apic_base = self.cs.get_register_field( 'IA32_APIC_BASE', apic_base_msr, 'APICBase', True )
self.logger.log( "[*] Local APIC Base: 0x{:016X}".format(apic_base) )
self.logger.log( "[*] SMRR Base : 0x{:016X}".format(smrr_base) )
self.logger.log("[*] Attempting to overlap Local APIC page with SMRR region")
self.logger.log( " Writing 0x{:X} to IA32_APIC_BASE[APICBase]..".format(smrrbase) )
self.logger.log_important( "NOTE: The system may hang or process may crash when running this test. In that case, the mitigation to this issue is likely working but we may not be handling the exception generated.")
res = self.cs.write_register_field( 'IA32_APIC_BASE', 'APICBase', smrrbase, preserve_field_position=False, cpu_thread=0 )
if res is None:
self.logger.log_important("Error encountered when attempting to modify IA32_APIC_BASE")
apic_base_msr_new = self.cs.read_register( 'IA32_APIC_BASE', 0 )
self.logger.log( "[*] New IA32_APIC_BASE: 0x{:016X}".format(apic_base_msr_new) )
if apic_base_msr_new == apic_base_msr:
res = ModuleResult.PASSED
self.logger.log_good("Could not modify IA32_APIC_BASE to overlap SMRR")
self.logger.log_passed("CPU does not seem to have SMM memory sinkhole vulnerability")
else:
self.logger.log_bad("Could modify IA32_APIC_BASE to overlap SMRR")
self.cs.write_register( 'IA32_APIC_BASE', apic_base_msr, 0 )
self.logger.log( "[*] Restored original value 0x{:016X}".format(apic_base_msr) )
res = ModuleResult.FAILED
self.logger.log_failed("CPU is susceptible to SMM memory sinkhole vulnerability. Verify that SMRR is programmed correctly.")
return res
# --------------------------------------------------------------------------
# run( module_argv )
# Required function: run here all tests from this module
# --------------------------------------------------------------------------
def run( self, module_argv ):
self.logger.start_test("x86 SMM Memory Sinkhole")
if self.cs.cpu.check_SMRR_supported():
self.logger.log_good("SMRR range protection is supported")
self.res = self.check_LAPIC_SMRR_overlap()
else:
self.logger.log_important("CPU does not support SMRR range protection of SMRAM")
self.res = ModuleResult.NOTAPPLICABLE
return self.res