mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
c377a72e28
* merge * Add Debian packaging * cleanup * Removed incorrect info into Copyright. * One more: removed incorrect info in Copyright.
155 lines
6.4 KiB
Python
155 lines
6.4 KiB
Python
#!/usr/bin/python
|
|
#CHIPSEC: Platform Security Assessment Framework
|
|
#Copyright (c) 2010-2015, 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
|
|
#
|
|
|
|
|
|
|
|
"""
|
|
The pci command can enumerate PCI/PCIe devices, enumerate expansion ROMs and allow direct access to PCI configuration registers via bus/device/function.
|
|
"""
|
|
|
|
__version__ = '1.0'
|
|
|
|
import time
|
|
|
|
import chipsec_util
|
|
|
|
from chipsec.command import BaseCommand
|
|
from chipsec.hal.pci import *
|
|
from chipsec.logger import pretty_print_hex_buffer
|
|
|
|
# PCIe Devices and Configuration Registers
|
|
class PCICommand(BaseCommand):
|
|
"""
|
|
>>> chipsec_util pci enumerate
|
|
>>> chipsec_util pci <bus> <device> <function> <offset> [width] [value]
|
|
>>> chipsec_util pci dump [<bus> <device> <function>]
|
|
>>> chipsec_util pci xrom [<bus> <device> <function>] [xrom_address]
|
|
|
|
Examples:
|
|
|
|
>>> chipsec_util pci enumerate
|
|
>>> chipsec_util pci 0 0 0 0x00
|
|
>>> chipsec_util pci 0 0 0 0x88 byte 0x1A
|
|
>>> chipsec_util pci 0 0x1F 0 0xDC 1 0x1
|
|
>>> chipsec_util pci 0 0 0 0x98 dword 0x004E0040
|
|
>>> chipsec_util pci dump
|
|
>>> chipsec_util pci dump 0 0 0
|
|
>>> chipsec_util pci xrom
|
|
>>> chipsec_util pci xrom 3 0 0 0xFEDF0000
|
|
"""
|
|
|
|
def requires_driver(self):
|
|
# No driver required when printing the util documentation
|
|
if len(self.argv) < 3:
|
|
return False
|
|
return True
|
|
|
|
def run(self):
|
|
if len(self.argv) < 3:
|
|
print PCICommand.__doc__
|
|
return
|
|
|
|
op = self.argv[2]
|
|
t = time.time()
|
|
|
|
if ( 'enumerate' == op ):
|
|
self.logger.log( "[CHIPSEC] Enumerating available PCIe devices.." )
|
|
print_pci_devices( self.cs.pci.enumerate_devices() )
|
|
self.logger.log( "[CHIPSEC] (pci) time elapsed %.3f" % (time.time()-t) )
|
|
return
|
|
|
|
elif ( 'dump' == op ):
|
|
|
|
if len(self.argv) == 3:
|
|
self.logger.log( "[CHIPSEC] dumping configuration of available PCI devices.." )
|
|
self.cs.pci.print_pci_config_all()
|
|
|
|
elif len(self.argv) > 5:
|
|
bus = int(self.argv[3],16)
|
|
device = int(self.argv[4],16)
|
|
function = int(self.argv[5],16)
|
|
self.logger.log( "[CHIPSEC] PCI device %02X:%02X.%02X configuration:" % (bus,device,function) )
|
|
cfg_buf = self.cs.pci.dump_pci_config( bus, device, function )
|
|
pretty_print_hex_buffer( cfg_buf )
|
|
else:
|
|
print PCICommand.__doc__
|
|
return
|
|
|
|
elif ( 'xrom' == op ):
|
|
|
|
if len(self.argv) < 5:
|
|
self.logger.log( "[CHIPSEC] enumerating PCI expansion ROMs.." )
|
|
xrom_addr = int(self.argv[3],16) if len(self.argv) == 4 else None
|
|
_xroms = self.cs.pci.enumerate_xroms( True, True, xrom_addr )
|
|
self.logger.log( "[CHIPSEC] found %d PCI expansion ROMs" % len(_xroms) )
|
|
if len(_xroms) > 0: print_pci_XROMs( _xroms )
|
|
elif len(self.argv) > 5:
|
|
bus = int(self.argv[3],16)
|
|
device = int(self.argv[4],16)
|
|
function = int(self.argv[5],16)
|
|
xrom_addr = int(self.argv[6],16) if len(self.argv) > 6 else None
|
|
self.logger.log( "[CHIPSEC] locating PCI expansion ROM (XROM) of %02X:%02X.%02X..." % (bus,device,function) )
|
|
exists,xrom = self.cs.pci.find_XROM( bus, device, function, True, True, xrom_addr )
|
|
if exists:
|
|
self.logger.log( "[CHIPSEC] found XROM of %02X:%02X.%02X" % (bus,device,function) )
|
|
if xrom is not None:
|
|
self.logger.log( "[CHIPSEC] XROM enabled = %d, base = 0x%08X, size = 0x%08X" % (xrom.en,xrom.base,xrom.size) )
|
|
if xrom.header is not None: self.logger.log( "[CHIPSEC] XROM header: %s" % xrom.header )
|
|
else:
|
|
self.logger.log( "[CHIPSEC] coudn't find XROM of %02X:%02X.%02X" % (bus,device,function) )
|
|
else:
|
|
print PCICommand.__doc__
|
|
return
|
|
|
|
else:
|
|
|
|
if len(self.argv) < 6:
|
|
print PCICommand.__doc__
|
|
return
|
|
|
|
bus = int(self.argv[2],16)
|
|
device = int(self.argv[3],16)
|
|
function = int(self.argv[4],16)
|
|
offset = int(self.argv[5],16)
|
|
width = 4
|
|
if len(self.argv) > 6:
|
|
width = chipsec_util.get_option_width(self.argv[6]) if chipsec_util.is_option_valid_width(self.argv[6]) else int(self.argv[6],16)
|
|
|
|
if 8 == len(self.argv):
|
|
value = int(self.argv[7], 16)
|
|
self.logger.log( "[CHIPSEC] write 0x%X to PCI %02X:%02X.%02X + 0x%02X" % (value, bus, device, function, offset) )
|
|
if 1 == width: self.cs.pci.write_byte ( bus, device, function, offset, value )
|
|
elif 2 == width: self.cs.pci.write_word ( bus, device, function, offset, value )
|
|
elif 4 == width: self.cs.pci.write_dword( bus, device, function, offset, value )
|
|
else: self.logger.error( "width should be one of %s" % chipsec_util.CMD_OPTS_WIDTH )
|
|
else:
|
|
if 1 == width: pci_value = self.cs.pci.read_byte (bus, device, function, offset)
|
|
elif 2 == width: pci_value = self.cs.pci.read_word (bus, device, function, offset)
|
|
elif 4 == width: pci_value = self.cs.pci.read_dword(bus, device, function, offset)
|
|
else:
|
|
self.logger.error( "width should be one of %s" % chipsec_util.CMD_OPTS_WIDTH )
|
|
return
|
|
self.logger.log( "[CHIPSEC] PCI %02X:%02X.%02X + 0x%02X: 0x%X" % (bus, device, function, offset, pci_value) )
|
|
|
|
self.logger.log( "[CHIPSEC] (pci) time elapsed %.3f" % (time.time()-t) )
|
|
|
|
commands = { 'pci': PCICommand }
|