Files
chipsec-chipsec/chipsec/utilcmd/io_cmd.py
T
abazhaniuk c377a72e28 Deb package (#135)
* merge

* Add Debian packaging

* cleanup

* Removed incorrect info into Copyright.

* One more: removed incorrect info in Copyright.
2017-01-06 12:57:13 -08:00

99 lines
2.9 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 io command allows direct access to read and write I/O port space.
"""
__version__ = '1.0'
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, 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)" % (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:
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 )
self.logger.log( "[CHIPSEC] IN 0x%04X -> 0x%08X (size = 0x%02x)" % (io_port, value, width) )
self.logger.log( "[CHIPSEC] (io) time elapsed %.3f" % (time.time()-t) )
commands = { 'io': PortIOCommand }