cyberflex-shell/readers.py

364 lines
13 KiB
Python
Raw Normal View History

try:
import smartcard, smartcard.CardRequest
except ImportError:
print >>sys.stderr, """Could not import smartcard module. Please install pyscard
from http://pyscard.sourceforge.net/
If you can't install pyscard and want to continue using
pycsc you'll need to downgrade to SVN revision 246.
"""
raise
import sys, utils, getopt, binascii, time
class Smartcard_Reader(object):
def list_readers(cls):
"Return a list of tuples: (reader name, implementing object)"
return []
list_readers = classmethod(list_readers)
_CONNECT_NO_CARD = object()
_CONNECT_MUTE_CARD = object()
_CONNECT_DONE = object()
def _internal_connect(self):
"""Must implement the iterator protocol and yield
one of self._CONNECT_NO_CARD, self._CONNECT_MUTE_CARD or self._CONNECT_DONE.
The iterator will not be called again after yielding _CONNECT_DONE, so it must
clean itself up before that."""
raise NotImplementedError, "Please implement in a sub-class"
def connect(self):
have_card = False
printed = False
for result in self._internal_connect():
if result is self._CONNECT_DONE:
have_card = True
break
elif result is self._CONNECT_MUTE_CARD:
print "Card is mute or absent. Please retry."
elif result is self._CONNECT_NO_CARD:
if not printed:
print "Please insert card ..."
printed = True
return have_card
def get_ATR(self):
"Get the ATR of the inserted card as a binary string"
raise NotImplementedError, "Please implement in a sub-class"
def transceive(self, data):
"Send a binary blob, receive a binary blob"
raise NotImplementedError, "Please implement in a sub-class"
def disconnect(self):
"Disconnect from the card and release all resources"
raise NotImplementedError, "Please implement in a sub-class"
class PCSC_Reader(Smartcard_Reader):
def __init__(self, reader):
self._reader = reader
self._name = str(reader)
self._cardservice = None
name = property(lambda self: self._name, None, None, "The human readable name of the reader")
def list_readers(cls):
try:
return [ (str(r), cls(r)) for r in smartcard.System.readers() ]
except smartcard.pcsc.PCSCExceptions.EstablishContextException:
return []
list_readers = classmethod(list_readers)
def _internal_connect(self):
unpatched = False
while True:
try:
if not unpatched:
cardrequest = smartcard.CardRequest.CardRequest( readers=[self._reader], timeout=0.1 )
else:
cardrequest = smartcard.CardRequest.CardRequest( readers=[self._reader], timeout=1 )
self._cardservice = cardrequest.waitforcard()
self._cardservice.connection.connect()
del cardrequest
yield self._CONNECT_DONE
except TypeError:
unpatched = True
except (KeyboardInterrupt, SystemExit):
raise
except smartcard.Exceptions.CardRequestException:
if sys.exc_info()[1].message.endswith("Command timeout."):
yield self._CONNECT_NO_CARD
else:
raise
except smartcard.Exceptions.CardRequestTimeoutException:
yield self._CONNECT_NO_CARD
except smartcard.Exceptions.NoCardException:
yield self._CONNECT_MUTE_CARD
except smartcard.Exceptions.CardConnectionException:
yield self._CONNECT_MUTE_CARD
def get_ATR(self):
return smartcard.util.toASCIIString(self._cardservice.connection.getATR())
def get_protocol(self):
hresult, reader, state, protocol, atr = smartcard.scard.SCardStatus( self._cardservice.connection.component.hcard )
return ((protocol == smartcard.scard.SCARD_PROTOCOL_T0) and (0,) or (1,))[0]
PROTOMAP = {
0: smartcard.scard.SCARD_PCI_T0,
1: smartcard.scard.SCARD_PCI_T1,
}
def transceive(self, data):
data_bytes = map(lambda x: ord(x), data)
data, sw1, sw2 = self._cardservice.connection.transmit(data_bytes, protocol=self.PROTOMAP[self.get_protocol()])
result_binary = map(lambda x: chr(x), data + [sw1,sw2])
return result_binary
def disconnect(self):
self._cardservice.connection.disconnect()
del self._cardservice
self._cardservice = None
class ACR122_Reader(Smartcard_Reader):
"""This class implements ISO 14443-4 access through the
PN532 in an ACR122 reader with firmware version 1.x"""
def list_readers(cls):
pcsc_readers = PCSC_Reader.list_readers()
readers = []
for name, obj in pcsc_readers:
if name.startswith("ACS ACR 38U-CCID"):
reader = cls(obj)
readers.append( (reader.name, reader) )
return readers
list_readers = classmethod(list_readers)
name = property(lambda self: self._name, None, None, "The human readable name of the reader")
def __init__(self, parent):
self._parent = parent
self._name = self._parent.name+"-RFID"
self._current_target = None
self._current_target_number = 0
def pn532_transceive_raw(self, command):
c_apdu = "\xff\x00\x00\x00" + chr(len(command)) + command
r_apdu = self._parent.transceive(c_apdu)
if len(r_apdu) == 2 and r_apdu[0] == "\x61":
c_apdu = "\xff\xc0\x00\x00" + r_apdu[1]
r_apdu = self._parent.transceive(c_apdu)
return r_apdu
def pn532_transceive(self, command):
response = self.pn532_transceive_raw(command)
if len(response) < 2 or response[-2:] != ["\x90", "\x00"]:
raise IOError, "Couldn't communicate with PN532"
if not (response[0] == "\xd5" and ord(response[1]) == ord(command[1])+1 ):
raise IOError, "Wrong response from PN532"
return "".join(response[:-2])
def pn532_acquire_card(self):
# Turn antenna power off and on to forcefully reinitialize the card
self.pn532_transceive("\xd4\x32\x01\x00")
self.pn532_transceive("\xd4\x32\x01\x01")
self._last_ats = []
response = self.pn532_transceive("\xd4\x4a\x01\x00")
r = utils.PN532_Frame(response)
r.parse_result(0)
if len(r.targets) > 0:
self._current_target_number, self._current_target = r.targets.items()[0]
return True
else:
response = self.pn532_transceive("\xd4\x4a\x01\x03\x00")
r = utils.PN532_Frame(response)
r.parse_result(3)
if len(r.targets) > 0:
self._current_target_number, self._current_target = r.targets.items()[0]
return True
def _internal_connect(self):
self._parent.connect()
self.pn532_transceive("\xd4\x32\x05\x00\x00\x00")
while True:
if self.pn532_acquire_card():
yield self._CONNECT_DONE
else:
yield self._CONNECT_NO_CARD
time.sleep(1)
2010-03-03 04:34:50 +00:00
@staticmethod
def _extract_historical_bytes_from_ats(ats):
hist_bytes = []
if ats[0] > 1:
interface_bytes = 0
if ats[1] & 0x40: interface_bytes = interface_bytes + 1
if ats[1] & 0x20: interface_bytes = interface_bytes + 1
if ats[1] & 0x10: interface_bytes = interface_bytes + 1
hist_bytes = ats[ (2+interface_bytes): ]
return hist_bytes
def get_ATR(self):
# FIXME Properly implement for PC/SC version 2
if self._current_target is None: return ""
hist_bytes = []
if self._current_target.type == utils.PN532_Target.TYPE_ISO14443A:
if len(self._current_target.ats) > 0:
# Quick and dirty: Extract historical bytes from ATS
ats = self._current_target.ats
2010-03-03 04:34:50 +00:00
hist_bytes = self._extract_historical_bytes_from_ats(ats)
if len(hist_bytes) > 15: hist_bytes = hist_bytes[:15]
else:
return "\x3b\x80\x80\x01\x01"
elif self._current_target.type == utils.PN532_Target.TYPE_ISO14443B:
hist_bytes = self._current_target.atqb[5:9] + self._current_target.atqb[5:12]
if len(self._current_target.attrib_res) > 0:
hist_bytes.append(self._current_target.attrib_res[0] & 0xf0)
else:
hist_bytes.append(0)
else:
return ""
# The ISO 14443-4 A or -3 B code paths should have filled the hist_bytes list
atr = [0x3b, 0x80 + len(hist_bytes), 0x80, 0x01] + hist_bytes
atr.append( reduce(lambda a,b: a ^ b, atr) ^ 0x3b )
return "".join(map(chr, atr))
def transceive(self, data):
2010-03-03 04:34:50 +00:00
try:
command = utils.C_APDU(data)
result = []
error = None
response = None
if command.cla == 0xff and command.ins == 0xca:
if command.p1 == 0x00:
# Get UID/PUPI
if self._current_target is None:
error = "\x6a\x81"
elif self._current_target.type == utils.PN532_Target.TYPE_ISO14443A:
result = self._current_target.nfcid
elif self._current_target.type == utils.PN532_Target.TYPE_ISO14443B:
result = self._current_target.atqb[1:5]
else:
error = "\x6a\x81"
elif command.p1 == 0x01:
# Get ATS historical bytes
if self._current_target is None:
error = "\x6a\x81"
elif self._current_target.type == utils.PN532_Target.TYPE_ISO14443A:
ats = self._current_target.ats
result = self._extract_historical_bytes_from_ats(ats)
else:
error = "\x6a\x81"
else:
error = "\x6a\x81"
if error is not None:
response = utils.R_APDU(error)
else:
if command.le is 0 or command.le == len(result):
response = utils.R_APDU(data=result, sw1=0x90, sw2=0)
elif command.le < len(result):
response = utils.R_APDU(sw1=0x6c, sw2=len(result))
elif command.le > len(result):
response = utils.R_APDU(data=result + [0] * (command.le-len(result)),
sw1=0x62, sw2=0x82)
if response is not None:
return response.render()
except:
# Just go on and try to process the data normally
pass
2010-03-03 03:51:56 +00:00
response = self.pn532_transceive("\xd4\x40" + chr(self._current_target_number) + data)
if response[2] != "\x00":
# FIXME Proper error processing
raise IOError, "Error while transceiving"
return response[3:]
def disconnect(self):
self._parent.disconnect()
def list_readers():
"Collect readers from all known drivers"
readers = PCSC_Reader.list_readers()
readers.extend( ACR122_Reader.list_readers() )
return readers
def connect_to(reader):
"Open the connection to a reader"
readerObject = None
readers = list_readers()
if isinstance(reader, int) or reader.isdigit():
reader = int(reader)
readerObject = readers[reader][1]
else:
for i, name, obj in readers:
if str(name).startswith(reader):
readerObject = obj
if readerObject is None:
readerObject = readers[0][1]
print "Using reader: %s" % readerObject.name
readerObject.connect()
print "ATR: %s" % utils.hexdump(readerObject.get_ATR(), short = True)
return readerObject
class CommandLineArgumentHelper:
OPTIONS = "r:l"
LONG_OPTIONS = ["reader=", "list-readers"]
exit_now = False
reader = None
def connect(self):
"Open the connection to a card"
if self.reader is None:
self.reader = 0
return connect_to(self.reader)
def getopt(self, argv, opts="", long_opts=[]):
"Wrapper around getopt.gnu_getopt. Handles common arguments, returns everything else."
(options, arguments) = getopt.gnu_getopt(sys.argv[1:], self.OPTIONS+opts, self.LONG_OPTIONS+long_opts)
unrecognized = []
for (option, value) in options:
if option in ("-r","--reader"):
self.reader = value
elif option in ("-l","--list-readers"):
for i, (name, obj) in enumerate(list_readers()):
print "%i: %s" % (i,name)
self.exit_now = True
else:
unrecognized.append( (option, value) )
if self.exit_now:
sys.exit()
return unrecognized, arguments
if __name__ == "__main__":
list_readers()