blob: 3acc7aa4066389eb766fbb14ad13c434776c429a [file] [log] [blame]
Sylvain Munaut76504e02010-12-07 00:24:32 +01001# -*- coding: utf-8 -*-
2
3""" pySim: Card programmation logic
4"""
5
6#
7# Copyright (C) 2009-2010 Sylvain Munaut <tnt@246tNt.com>
Harald Welte263fb082023-07-09 17:15:36 +02008# Copyright (C) 2011-2023 Harald Welte <laforge@gnumonks.org>
Alexander Chemeriseb6807d2017-07-18 17:04:38 +03009# Copyright (C) 2017 Alexander.Chemeris <Alexander.Chemeris@gmail.com>
Sylvain Munaut76504e02010-12-07 00:24:32 +010010#
11# This program is free software: you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation, either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program. If not, see <http://www.gnu.org/licenses/>.
23#
24
Vadim Yanitskiy03c67f72021-05-02 02:10:39 +020025from typing import Optional, Dict, Tuple
Harald Weltef8d2e2b2023-07-09 17:58:38 +020026from pySim.ts_102_221 import EF_DIR, EF_ICCID
27from pySim.ts_51_011 import DF_GSM
Harald Weltea3961292023-07-09 21:44:52 +020028from pySim.transport import LinkBase
Vadim Yanitskiy85302d62021-05-02 02:18:42 +020029import abc
Vadim Yanitskiy03c67f72021-05-02 02:10:39 +020030
Alexander Chemeriseb6807d2017-07-18 17:04:38 +030031from pySim.utils import *
Harald Weltea3961292023-07-09 21:44:52 +020032from pySim.commands import Path
Harald Welte263fb082023-07-09 17:15:36 +020033
34class CardBase:
35 """General base class for some kind of telecommunications card."""
Harald Weltea3961292023-07-09 21:44:52 +020036 def __init__(self, scc: LinkBase):
Harald Welte263fb082023-07-09 17:15:36 +020037 self._scc = scc
38 self._aids = []
39
Harald Weltea3961292023-07-09 21:44:52 +020040 def reset(self) -> Optional[Hexstr]:
Harald Welte263fb082023-07-09 17:15:36 +020041 rc = self._scc.reset_card()
42 if rc == 1:
43 return self._scc.get_atr()
44 else:
45 return None
46
Harald Weltea3961292023-07-09 21:44:52 +020047 def set_apdu_parameter(self, cla: Hexstr, sel_ctrl: Hexstr) -> None:
Harald Welte263fb082023-07-09 17:15:36 +020048 """Set apdu parameters (class byte and selection control bytes)"""
49 self._scc.cla_byte = cla
50 self._scc.sel_ctrl = sel_ctrl
51
Harald Weltea3961292023-07-09 21:44:52 +020052 def get_apdu_parameter(self) -> Tuple[Hexstr, Hexstr]:
Harald Welte263fb082023-07-09 17:15:36 +020053 """Get apdu parameters (class byte and selection control bytes)"""
54 return (self._scc.cla_byte, self._scc.sel_ctrl)
55
56 def erase(self):
57 print("warning: erasing is not supported for specified card type!")
58 return
59
Harald Weltea3961292023-07-09 21:44:52 +020060 def file_exists(self, fid: Path) -> bool:
Harald Welte263fb082023-07-09 17:15:36 +020061 res_arr = self._scc.try_select_path(fid)
62 for res in res_arr:
63 if res[1] != '9000':
64 return False
65 return True
66
Harald Weltea3961292023-07-09 21:44:52 +020067 def read_aids(self) -> List[Hexstr]:
Harald Welte263fb082023-07-09 17:15:36 +020068 # a non-UICC doesn't have any applications. Convenience helper to avoid
69 # callers having to do hasattr('read_aids') ahead of every call.
70 return []
71
Harald Weltea3961292023-07-09 21:44:52 +020072 def read_iccid(self) -> Tuple[Optional[Hexstr], SwHexstr]:
Harald Weltef8d2e2b2023-07-09 17:58:38 +020073 ef_iccid = EF_ICCID()
74 (res, sw) = self._scc.read_binary(ef_iccid.fid)
75 if sw == '9000':
76 return (dec_iccid(res), sw)
77 else:
78 return (None, sw)
79
Harald Welte263fb082023-07-09 17:15:36 +020080
81class SimCardBase(CardBase):
Harald Welte263fb082023-07-09 17:15:36 +020082 """Here we only add methods for commands specified in TS 51.011, without
83 any higher-layer processing."""
Harald Welte263fb082023-07-09 17:15:36 +020084 name = 'SIM'
85
Harald Weltea3961292023-07-09 21:44:52 +020086 def probe(self) -> bool:
Harald Weltef8d2e2b2023-07-09 17:58:38 +020087 df_gsm = DF_GSM()
88 return self.file_exists(df_gsm.fid)
Harald Welte263fb082023-07-09 17:15:36 +020089
90
91class UiccCardBase(SimCardBase):
92 name = 'UICC'
93
Harald Weltea3961292023-07-09 21:44:52 +020094 def __init__(self, ssc: LinkBase):
Harald Welte263fb082023-07-09 17:15:36 +020095 super(UiccCardBase, self).__init__(ssc)
96 # See also: ETSI TS 102 221, Table 9.3
97 self._adm_chv_num = 0xA0
98
Harald Weltea3961292023-07-09 21:44:52 +020099 def probe(self) -> bool:
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200100 # EF.DIR is a mandatory EF on all ICCIDs; however it *may* also exist on a TS 51.011 SIM
101 ef_dir = EF_DIR()
102 return self.file_exists(ef_dir.fid)
Harald Welte263fb082023-07-09 17:15:36 +0200103
Harald Weltea3961292023-07-09 21:44:52 +0200104 def read_aids(self) -> List[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100105 """Fetch all the AIDs present on UICC"""
106 self._aids = []
107 try:
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200108 ef_dir = EF_DIR()
Harald Weltec91085e2022-02-10 18:05:45 +0100109 # Find out how many records the EF.DIR has
110 # and store all the AIDs in the UICC
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200111 rec_cnt = self._scc.record_count(ef_dir.fid)
Harald Weltec91085e2022-02-10 18:05:45 +0100112 for i in range(0, rec_cnt):
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200113 rec = self._scc.read_record(ef_dir.fid, i + 1)
Harald Weltec91085e2022-02-10 18:05:45 +0100114 if (rec[0][0:2], rec[0][4:6]) == ('61', '4f') and len(rec[0]) > 12 \
115 and rec[0][8:8 + int(rec[0][6:8], 16) * 2] not in self._aids:
116 self._aids.append(rec[0][8:8 + int(rec[0][6:8], 16) * 2])
117 except Exception as e:
118 print("Can't read AIDs from SIM -- %s" % (str(e),))
119 self._aids = []
120 return self._aids
Supreeth Herlee4e98312020-03-18 11:33:14 +0100121
Harald Weltec91085e2022-02-10 18:05:45 +0100122 @staticmethod
Harald Weltea3961292023-07-09 21:44:52 +0200123 def _get_aid(adf="usim") -> Optional[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100124 aid_map = {}
125 # First (known) halves of the U/ISIM AID
126 aid_map["usim"] = "a0000000871002"
127 aid_map["isim"] = "a0000000871004"
128 adf = adf.lower()
129 if adf in aid_map:
130 return aid_map[adf]
131 return None
Philipp Maier46c61542021-11-16 16:36:50 +0100132
Harald Weltea3961292023-07-09 21:44:52 +0200133 def _complete_aid(self, aid: Hexstr) -> Optional[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100134 """find the complete version of an ADF.U/ISIM AID"""
135 # Find full AID by partial AID:
136 if is_hex(aid):
137 for aid_known in self._aids:
138 if len(aid_known) >= len(aid) and aid == aid_known[0:len(aid)]:
139 return aid_known
140 return None
Philipp Maier46c61542021-11-16 16:36:50 +0100141
Harald Weltea3961292023-07-09 21:44:52 +0200142 def adf_present(self, adf: str = "usim") -> bool:
Philipp Maier84902402023-02-10 18:23:36 +0100143 """Check if the AID of the specified ADF is present in EF.DIR (call read_aids before use)"""
144 aid = self._get_aid(adf)
145 if aid:
146 aid_full = self._complete_aid(aid)
147 if aid_full:
148 return True
149 return False
150
Harald Weltea3961292023-07-09 21:44:52 +0200151 def select_adf_by_aid(self, adf: str = "usim") -> Tuple[Optional[Hexstr], Optional[SwHexstr]]:
Harald Weltec91085e2022-02-10 18:05:45 +0100152 """Select ADF.U/ISIM in the Card using its full AID"""
153 if is_hex(adf):
154 aid = adf
155 else:
156 aid = self._get_aid(adf)
157 if aid:
158 aid_full = self._complete_aid(aid)
159 if aid_full:
160 return self._scc.select_adf(aid_full)
161 else:
162 # If we cannot get the full AID, try with short AID
163 return self._scc.select_adf(aid)
164 return (None, None)
Supreeth Herlef9f3e5e2020-03-22 08:04:59 +0100165
Harald Weltea3961292023-07-09 21:44:52 +0200166def card_detect(scc: LinkBase) -> Optional[CardBase]:
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200167 # UICC always has higher preference, as a UICC might also contain a SIM application
168 uicc = UiccCardBase(scc)
169 if uicc.probe():
170 return uicc
Philipp Maierbda52832022-06-14 16:18:12 +0200171
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200172 # this is for detecting a real, classic TS 11.11 SIM card without any UICC support
173 sim = SimCardBase(scc)
174 if sim.probe():
175 return sim
Harald Welteca673942020-06-03 15:19:40 +0200176
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200177 return None