ISO7816_4ErrorChecker.py :  » Mobile » pyscard » pyscard-1.6.10 » smartcard » sw » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Mobile » pyscard 
pyscard » pyscard 1.6.10 » smartcard » sw » ISO7816_4ErrorChecker.py
"""ISO7816-4 error checking strategy.

__author__ = "http://www.gemalto.com"

Copyright 2001-2010 gemalto
Author: Jean-Daniel Aussel, mailto:jean-daniel.aussel@gemalto.com

This file is part of pyscard.

pyscard is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.

pyscard 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 Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with pyscard; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
"""

from smartcard.sw.ErrorChecker import ErrorChecker
import smartcard.sw.SWExceptions

iso7816_4SW = {
    0x62:( smartcard.sw.SWExceptions.WarningProcessingException,
           { 0x00:"Response padded/ More APDU commands expected",
             0x81:"Part of returned data may be corrupted",
             0x82:"End of file/record reached before reading Le bytes",
             0x83:"File invalidated",
             0x84:"FCI not correctly formatted",
             0xFF:"Correct execution, response padded" } ),

    0x63:( smartcard.sw.SWExceptions.WarningProcessingException,
           { 0x00:"Authentication failed",
             0x81:"File filled up by the last write",
             0xC0:"PIN verification failed. 0 tries remaining before blocking PIN",
             0xC1:"PIN verification failed. 1 tries remaining before blocking PIN",
             0xC2:"PIN verification failed. 2 tries remaining before blocking PIN",
             0xC3:"PIN verification failed. 3 tries remaining before blocking PIN",
             0xC4:"PIN verification failed. 4 tries remaining before blocking PIN",
             0xC5:"PIN verification failed. 5 tries remaining before blocking PIN",
             0xC6:"PIN verification failed. 6 tries remaining before blocking PIN",
             0xC7:"PIN verification failed. 7 tries remaining before blocking PIN",
             0xC8:"PIN verification failed. 8 tries remaining before blocking PIN",
             0xC9:"PIN verification failed. 9 tries remaining before blocking PIN",
             0xCA:"PIN verification failed. 10 tries remaining before blocking PIN",
             0xCB:"PIN verification failed. 11 tries remaining before blocking PIN",
             0xCC:"PIN verification failed. 12 tries remaining before blocking PIN",
             0xCD:"PIN verification failed. 13 tries remaining before blocking PIN",
             0xCE:"PIN verification failed. 14 tries remaining before blocking PIN",
             0xCF:"PIN verification failed. 15 tries remaining before blocking PIN"  } ),

    0x64:( smartcard.sw.SWExceptions.ExecutionErrorException,
           { 0x00:"Integrity error detected in EEPROM" } ),

    0x67:( smartcard.sw.SWExceptions.CheckingErrorException,
           { 0x00:"Wrong length in Lc" } ),

    0x68:( smartcard.sw.SWExceptions.CheckingErrorException,
           { 0x81:"Logical channel not supported",
             0x82:"Secure messaging not supported" } ),

    0x69:( smartcard.sw.SWExceptions.CheckingErrorException,
           { 0x81:"Command incompatible with file structure.",
             0x82:"Security status not satisfied",
             0x83:"Authentification method blocked",
             0x84:"Referenced data invalid",
             0x85:"Conditions of use not satisfied",
             0x86:"Command not allowed (no current EF)",
             0x87:"Secure messaging data object missing.",
             0x88:"Secure messaging data object incorrect" } ),

    0x6A:( smartcard.sw.SWExceptions.CheckingErrorException,
           { 0x80:"Incorrect parameters in the data field",
             0x81:"Function not supported",
             0x82:"File not found",
             0x83:"Record not found",
             0x84:"Not enough memory space in the file",
             0x85:"Lc inconsistent with TLV structure",
             0x86:"Incorrect parameters P1-P2",
             0x87:"Lc is inconsistent with P1-P2",
             0x88:"Referenced data not found" } ),

    0x6B:( smartcard.sw.SWExceptions.CheckingErrorException,
           { 0x00:"Incorrect parameters P1-P2" } ),

    0x6D:( smartcard.sw.SWExceptions.CheckingErrorException,
           { 0x00:"Instruction (INS) not supported" } ),

    0x6E:( smartcard.sw.SWExceptions.CheckingErrorException,
           { 0x00:"Class (CLA) not supported" } ),

    0x6F:( smartcard.sw.SWExceptions.CheckingErrorException,
           { 0x00:"Fatal error" } ),
}


class ISO7816_4ErrorChecker( ErrorChecker ):
    """ISO7816-4 error checking strategy.

    This strategy raises the following exceptions:
    sw1 sw2
    62  00 81 82 83 84 FF   WarningProcessingException
    63  00 81 C0->CF        WarningProcessingException
    64  00                  ExecutionErrorException
    67  00                  CheckingErrorException
    68  81 82               CheckingErrorException
    69  81->88  99? c1?     CheckingErrorException
    6a  80->88              CheckingErrorException
    6b  00                  CheckingErrorException
    6d  00                  CheckingErrorException
    6e  00                  CheckingErrorException
    6f  00                  CheckingErrorException

    This checker does not raise exceptions on undefined sw1 values, e.g.:

    sw1 sw2
    65  any
    66  any
    6c  any

    and on undefined sw2 values, e.g.:

    sw1 sw2
    62  80 85
    6b  any except 00


    Use another checker in the error checking chain, e.g., the ISO7816_4SW1ErrorChecker,
    to raise exceptions on these undefined values.
    """
    def __call__( self, data, sw1, sw2 ):
        """Called to test data, sw1 and sw2 for error.

        data:       apdu response data
        sw1, sw2:   apdu data status words

        Derived classes must raise a smartcard.sw.SWException upon error."""
        if iso7816_4SW.has_key( sw1 ):
            exception, sw2dir = iso7816_4SW[sw1]
            if type(sw2dir)==type({}):
                try:
                    message = sw2dir[sw2]
                    raise exception( data, sw1, sw2, message )
                except KeyError:
                    pass

if __name__ == '__main__':
    """Small sample illustrating the use of ISO7816_4ErrorChecker."""
    ecs=ISO7816_4ErrorChecker()
    ecs( [], 0x90, 0x00 )
    try:
        ecs( [], 0x6b, 0x00 )
    except smartcard.sw.SWExceptions.CheckingErrorException, e:
        print e, "%x %x" % (e.sw1, e.sw2)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.