blob: 24d752113621e5723e15a76117dff930bf9e65ef [file] [log] [blame]
Sylvain Munaute7c15cd2010-12-07 10:01:55 +01001# -*- coding: utf-8 -*-
2
3""" pySim: PCSC reader transport link base
4"""
5
Harald Welte6e0458d2021-04-03 11:52:37 +02006from typing import Optional
7
Harald Weltee79cc802021-01-21 14:10:43 +01008from pySim.exceptions import *
Harald Welte67d551a2021-01-21 14:50:01 +01009from pySim.utils import sw_match
Harald Weltee79cc802021-01-21 14:10:43 +010010
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010011#
12# Copyright (C) 2009-2010 Sylvain Munaut <tnt@246tNt.com>
13#
14# This program is free software: you can redistribute it and/or modify
15# it under the terms of the GNU General Public License as published by
16# the Free Software Foundation, either version 2 of the License, or
17# (at your option) any later version.
18#
19# This program is distributed in the hope that it will be useful,
20# but WITHOUT ANY WARRANTY; without even the implied warranty of
21# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22# GNU General Public License for more details.
23#
24# You should have received a copy of the GNU General Public License
25# along with this program. If not, see <http://www.gnu.org/licenses/>.
26#
27
28class LinkBase(object):
Harald Welteee3501f2021-04-02 13:00:18 +020029 """Base class for link/transport to card."""
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010030
Harald Welteee3501f2021-04-02 13:00:18 +020031 def wait_for_card(self, timeout:int=None, newcardonly:bool=False):
32 """Wait for a card and connect to it
Sylvain Munautbdca2522010-12-09 13:31:58 +010033
Harald Welteee3501f2021-04-02 13:00:18 +020034 Args:
35 timeout : Maximum wait time in seconds (None=no timeout)
36 newcardonly : Should we wait for a new card, or an already inserted one ?
Sylvain Munautbdca2522010-12-09 13:31:58 +010037 """
38 pass
39
40 def connect(self):
Harald Welteee3501f2021-04-02 13:00:18 +020041 """Connect to a card immediately
Sylvain Munautbdca2522010-12-09 13:31:58 +010042 """
43 pass
44
45 def disconnect(self):
Harald Welteee3501f2021-04-02 13:00:18 +020046 """Disconnect from card
Sylvain Munautbdca2522010-12-09 13:31:58 +010047 """
48 pass
49
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010050 def reset_card(self):
Harald Welteee3501f2021-04-02 13:00:18 +020051 """Resets the card (power down/up)
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010052 """
53 pass
54
Harald Welteee3501f2021-04-02 13:00:18 +020055 def send_apdu_raw(self, pdu:str):
56 """Sends an APDU with minimal processing
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010057
Harald Welteee3501f2021-04-02 13:00:18 +020058 Args:
59 pdu : string of hexadecimal characters (ex. "A0A40000023F00")
60 Returns:
61 tuple(data, sw), where
62 data : string (in hex) of returned data (ex. "074F4EFFFF")
63 sw : string (in hex) of status word (ex. "9000")
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010064 """
65 pass
66
67 def send_apdu(self, pdu):
Harald Welteee3501f2021-04-02 13:00:18 +020068 """Sends an APDU and auto fetch response data
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010069
Harald Welteee3501f2021-04-02 13:00:18 +020070 Args:
71 pdu : string of hexadecimal characters (ex. "A0A40000023F00")
72 Returns:
73 tuple(data, sw), where
74 data : string (in hex) of returned data (ex. "074F4EFFFF")
75 sw : string (in hex) of status word (ex. "9000")
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010076 """
77 data, sw = self.send_apdu_raw(pdu)
78
Philipp Maier859e0fd2018-06-12 18:40:24 +020079 # When whe have sent the first APDU, the SW may indicate that there are response bytes
80 # available. There are two SWs commonly used for this 9fxx (sim) and 61xx (usim), where
81 # xx is the number of response bytes available.
82 # See also:
83 # SW1=9F: 3GPP TS 51.011 9.4.1, Responses to commands which are correctly executed
84 # SW1=61: ISO/IEC 7816-4, Table 5 — General meaning of the interindustry values of SW1-SW2
85 if (sw is not None) and ((sw[0:2] == '9f') or (sw[0:2] == '61')):
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010086 pdu_gr = pdu[0:2] + 'c00000' + sw[2:4]
87 data, sw = self.send_apdu_raw(pdu_gr)
88
89 return data, sw
90
91 def send_apdu_checksw(self, pdu, sw="9000"):
Harald Welteee3501f2021-04-02 13:00:18 +020092 """Sends an APDU and check returned SW
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010093
Harald Welteee3501f2021-04-02 13:00:18 +020094 Args:
95 pdu : string of hexadecimal characters (ex. "A0A40000023F00")
96 sw : string of 4 hexadecimal characters (ex. "9000"). The user may mask out certain
97 digits using a '?' to add some ambiguity if needed.
98 Returns:
99 tuple(data, sw), where
100 data : string (in hex) of returned data (ex. "074F4EFFFF")
101 sw : string (in hex) of status word (ex. "9000")
Sylvain Munaute7c15cd2010-12-07 10:01:55 +0100102 """
103 rv = self.send_apdu(pdu)
Philipp Maierd4ebb6f2018-06-12 17:56:07 +0200104
Harald Welte67d551a2021-01-21 14:50:01 +0100105 if not sw_match(rv[1], sw):
Harald Weltee79cc802021-01-21 14:10:43 +0100106 raise SwMatchError(rv[1], sw.lower())
Sylvain Munaute7c15cd2010-12-07 10:01:55 +0100107 return rv
Harald Welte6e0458d2021-04-03 11:52:37 +0200108
109def init_reader(opts) -> Optional[LinkBase]:
110 """
111 Init card reader driver
112 """
113 sl = None # type : :Optional[LinkBase]
114 try:
115 if opts.pcsc_dev is not None:
116 print("Using PC/SC reader interface")
117 from pySim.transport.pcsc import PcscSimLink
118 sl = PcscSimLink(opts.pcsc_dev)
119 elif opts.osmocon_sock is not None:
120 print("Using Calypso-based (OsmocomBB) reader interface")
121 from pySim.transport.calypso import CalypsoSimLink
122 sl = CalypsoSimLink(sock_path=opts.osmocon_sock)
123 elif opts.modem_dev is not None:
124 print("Using modem for Generic SIM Access (3GPP TS 27.007)")
125 from pySim.transport.modem_atcmd import ModemATCommandLink
126 sl = ModemATCommandLink(device=opts.modem_dev, baudrate=opts.modem_baud)
127 else: # Serial reader is default
128 print("Using serial reader interface")
129 from pySim.transport.serial import SerialSimLink
130 sl = SerialSimLink(device=opts.device, baudrate=opts.baudrate)
131 return sl
132 except Exception as e:
133 print("Card reader initialization failed with exception:\n" + str(e))
134 return None