Files
2019-08-15 14:11:20 -07:00

104 lines
3.2 KiB
Python

#!/usr/bin/python
#CHIPSEC: Platform Security Assessment Framework
#Copyright (c) 2010-2019, 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 io command allows direct access to read and write I/O port space.
"""
import time
import chipsec_util
from chipsec.hal import iobar
from chipsec.command import BaseCommand
# Port I/O
class PortIOCommand(BaseCommand):
"""
>>> chipsec_util io list
>>> chipsec_util io <io_port> <width> [value]
Examples:
>>> chipsec_util io list
>>> chipsec_util io 0x61 1
>>> chipsec_util io 0x430 byte 0x0
"""
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 (PortIOCommand.__doc__)
return
try:
_iobar = iobar.IOBAR( self.cs )
except iobar.IOBARRuntimeError as msg:
print (msg)
return
op = self.argv[2]
if ( 'list' == op ):
_iobar.list_IO_BARs()
return
t = time.time()
if len(self.argv) < 3:
print (PortIOCommand.__doc__)
return
io_port = int(self.argv[2],16)
width = 0x1
if len(self.argv) > 3:
width = chipsec_util.get_option_width(self.argv[3]) if chipsec_util.is_option_valid_width(self.argv[3]) else int(self.argv[3],16)
if 5 == len(self.argv):
value = int(self.argv[4], 16)
self.logger.log( "[CHIPSEC] OUT 0x{:04X} <- 0x{:08X} (size = 0x{:02X})".format(io_port, value, width) )
if 0x1 == width: self.cs.io.write_port_byte( io_port, value )
elif 0x2 == width: self.cs.io.write_port_word( io_port, value )
elif 0x4 == width: self.cs.io.write_port_dword( io_port, value )
else:
self.logger.log( "Invalid write size requested. 1,2,4 supported")
return
else:
if 0x1 == width: value = self.cs.io.read_port_byte( io_port )
elif 0x2 == width: value = self.cs.io.read_port_word( io_port )
elif 0x4 == width: value = self.cs.io.read_port_dword( io_port )
else:
self.logger.log( "Invalid read size requested. 1,2,4 supported")
return
self.logger.log( "[CHIPSEC] IN 0x{:04X} -> 0x{:08X} (size = 0x{:02X})".format(io_port, value, width) )
self.logger.log( "[CHIPSEC] (io) time elapsed {:.3f}".format(time.time()-t) )
commands = { 'io': PortIOCommand }