blob: 3f3d06c0113bafec2b1a4e848a1a63868ce21e97 [file] [log] [blame]
Sylvain Munaut76504e02010-12-07 00:24:32 +01001# -*- coding: utf-8 -*-
2
Sylvain Munaut76504e02010-12-07 00:24:32 +01003# Copyright (C) 2009-2010 Sylvain Munaut <tnt@246tNt.com>
4# Copyright (C) 2010 Harald Welte <laforge@gnumonks.org>
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18#
19
Harald Weltef9f8d7a2023-07-09 17:06:16 +020020from typing import Optional
Harald Welteab6897c2023-07-09 16:21:23 +020021
Vadim Yanitskiyfa617ac2020-02-26 22:33:08 +070022from smartcard.CardConnection import CardConnection
Sylvain Munautbdca2522010-12-09 13:31:58 +010023from smartcard.CardRequest import CardRequest
Harald Welte2db843e2021-05-21 22:51:28 +020024from smartcard.Exceptions import NoCardException, CardRequestTimeoutException, CardConnectionException, CardConnectionException
Sylvain Munaut76504e02010-12-07 00:24:32 +010025from smartcard.System import readers
Sylvain Munaut76504e02010-12-07 00:24:32 +010026
Harald Welte2db843e2021-05-21 22:51:28 +020027from pySim.exceptions import NoCardError, ProtocolError, ReaderError
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010028from pySim.transport import LinkBase
Harald Weltef9f8d7a2023-07-09 17:06:16 +020029from pySim.utils import h2i, i2h, Hexstr, ResTuple
Sylvain Munaut76504e02010-12-07 00:24:32 +010030
31
Sylvain Munaute7c15cd2010-12-07 10:01:55 +010032class PcscSimLink(LinkBase):
Harald Weltec91085e2022-02-10 18:05:45 +010033 """ pySim: PCSC reader transport link."""
Sylvain Munaut76504e02010-12-07 00:24:32 +010034
Harald Weltec91085e2022-02-10 18:05:45 +010035 def __init__(self, reader_number: int = 0, **kwargs):
36 super().__init__(**kwargs)
Philipp Maier30773432023-10-23 10:18:04 +020037 print("Using PC/SC reader interface")
Harald Weltec91085e2022-02-10 18:05:45 +010038 r = readers()
39 if reader_number >= len(r):
Vadim Yanitskiye6b86872022-04-21 16:50:25 +030040 raise ReaderError('No reader found for number %d' % reader_number)
Harald Weltec91085e2022-02-10 18:05:45 +010041 self._reader = r[reader_number]
42 self._con = self._reader.createConnection()
Philipp Maier6bfa8a82023-10-09 13:32:49 +020043 self._reader_number = reader_number
Sylvain Munaut76504e02010-12-07 00:24:32 +010044
Harald Weltec91085e2022-02-10 18:05:45 +010045 def __del__(self):
46 try:
47 # FIXME: this causes multiple warnings in Python 3.5.3
48 self._con.disconnect()
49 except:
50 pass
51 return
Sylvain Munaut76504e02010-12-07 00:24:32 +010052
Harald Welteab6897c2023-07-09 16:21:23 +020053 def wait_for_card(self, timeout: Optional[int] = None, newcardonly: bool = False):
Harald Weltec91085e2022-02-10 18:05:45 +010054 cr = CardRequest(readers=[self._reader],
55 timeout=timeout, newcardonly=newcardonly)
56 try:
57 cr.waitforcard()
58 except CardRequestTimeoutException:
59 raise NoCardError()
60 self.connect()
Sylvain Munautbdca2522010-12-09 13:31:58 +010061
Harald Weltec91085e2022-02-10 18:05:45 +010062 def connect(self):
63 try:
64 # To avoid leakage of resources, make sure the reader
65 # is disconnected
66 self.disconnect()
Philipp Maier8bf21252021-09-22 15:30:21 +020067
Harald Weltec91085e2022-02-10 18:05:45 +010068 # Explicitly select T=0 communication protocol
69 self._con.connect(CardConnection.T0_protocol)
70 except CardConnectionException:
71 raise ProtocolError()
72 except NoCardException:
73 raise NoCardError()
Sylvain Munautbdca2522010-12-09 13:31:58 +010074
Harald Welteab6897c2023-07-09 16:21:23 +020075 def get_atr(self) -> Hexstr:
Harald Weltec91085e2022-02-10 18:05:45 +010076 return self._con.getATR()
Alexander Chemerisd2d660a2017-07-18 16:52:25 +030077
Harald Weltec91085e2022-02-10 18:05:45 +010078 def disconnect(self):
79 self._con.disconnect()
Sylvain Munautbdca2522010-12-09 13:31:58 +010080
Harald Weltec91085e2022-02-10 18:05:45 +010081 def reset_card(self):
82 self.disconnect()
83 self.connect()
84 return 1
Sylvain Munaut76504e02010-12-07 00:24:32 +010085
Harald Weltef9f8d7a2023-07-09 17:06:16 +020086 def _send_apdu_raw(self, pdu: Hexstr) -> ResTuple:
Sylvain Munaut76504e02010-12-07 00:24:32 +010087
Harald Weltec91085e2022-02-10 18:05:45 +010088 apdu = h2i(pdu)
Sylvain Munaut76504e02010-12-07 00:24:32 +010089
Harald Weltec91085e2022-02-10 18:05:45 +010090 data, sw1, sw2 = self._con.transmit(apdu)
Sylvain Munaut76504e02010-12-07 00:24:32 +010091
Harald Weltec91085e2022-02-10 18:05:45 +010092 sw = [sw1, sw2]
Sylvain Munaut76504e02010-12-07 00:24:32 +010093
Harald Weltec91085e2022-02-10 18:05:45 +010094 # Return value
95 return i2h(data), i2h(sw)
Philipp Maier6bfa8a82023-10-09 13:32:49 +020096
Philipp Maier58e89eb2023-10-10 11:59:03 +020097 def __str__(self) -> str:
Philipp Maier6bfa8a82023-10-09 13:32:49 +020098 return "PCSC:%u[%s]" % (self._reader_number, self._reader)