blob: b1adcf226927ac7cc18c666e8460375c4cadfb2e [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
Philipp Maiera42ee6f2023-08-16 10:44:57 +020026from pySim.ts_102_221 import EF_DIR
Harald Weltef8d2e2b2023-07-09 17:58:38 +020027from 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
72
73class SimCardBase(CardBase):
Harald Welte263fb082023-07-09 17:15:36 +020074 """Here we only add methods for commands specified in TS 51.011, without
75 any higher-layer processing."""
Harald Welte263fb082023-07-09 17:15:36 +020076 name = 'SIM'
77
Harald Welte172c28e2023-07-10 22:20:40 +020078 def __init__(self, scc: LinkBase):
79 super(SimCardBase, self).__init__(scc)
80 self._scc.cla_byte = "A0"
Harald Welte659d7c12023-07-10 22:25:58 +020081 self._scc.sel_ctrl = "0000"
Harald Welte172c28e2023-07-10 22:20:40 +020082
Harald Weltea3961292023-07-09 21:44:52 +020083 def probe(self) -> bool:
Harald Weltef8d2e2b2023-07-09 17:58:38 +020084 df_gsm = DF_GSM()
85 return self.file_exists(df_gsm.fid)
Harald Welte263fb082023-07-09 17:15:36 +020086
87
88class UiccCardBase(SimCardBase):
89 name = 'UICC'
90
Harald Welte775ab012023-07-10 22:23:07 +020091 def __init__(self, scc: LinkBase):
92 super(UiccCardBase, self).__init__(scc)
Harald Welte172c28e2023-07-10 22:20:40 +020093 self._scc.cla_byte = "00"
Harald Welte659d7c12023-07-10 22:25:58 +020094 self._scc.sel_ctrl = "0004" # request an FCP
Harald Welte172c28e2023-07-10 22:20:40 +020095 # See also: ETSI TS 102 221, Table 9.3
Philipp Maier3175d612023-07-20 17:28:10 +020096 self._adm_chv_num = 0x0A
Harald Welte263fb082023-07-09 17:15:36 +020097
Harald Weltea3961292023-07-09 21:44:52 +020098 def probe(self) -> bool:
Harald Weltef8d2e2b2023-07-09 17:58:38 +020099 # EF.DIR is a mandatory EF on all ICCIDs; however it *may* also exist on a TS 51.011 SIM
100 ef_dir = EF_DIR()
101 return self.file_exists(ef_dir.fid)
Harald Welte263fb082023-07-09 17:15:36 +0200102
Harald Weltea3961292023-07-09 21:44:52 +0200103 def read_aids(self) -> List[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100104 """Fetch all the AIDs present on UICC"""
105 self._aids = []
106 try:
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200107 ef_dir = EF_DIR()
Harald Weltec91085e2022-02-10 18:05:45 +0100108 # Find out how many records the EF.DIR has
109 # and store all the AIDs in the UICC
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200110 rec_cnt = self._scc.record_count(ef_dir.fid)
Harald Weltec91085e2022-02-10 18:05:45 +0100111 for i in range(0, rec_cnt):
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200112 rec = self._scc.read_record(ef_dir.fid, i + 1)
Harald Weltec91085e2022-02-10 18:05:45 +0100113 if (rec[0][0:2], rec[0][4:6]) == ('61', '4f') and len(rec[0]) > 12 \
114 and rec[0][8:8 + int(rec[0][6:8], 16) * 2] not in self._aids:
115 self._aids.append(rec[0][8:8 + int(rec[0][6:8], 16) * 2])
116 except Exception as e:
117 print("Can't read AIDs from SIM -- %s" % (str(e),))
118 self._aids = []
119 return self._aids
Supreeth Herlee4e98312020-03-18 11:33:14 +0100120
Harald Weltec91085e2022-02-10 18:05:45 +0100121 @staticmethod
Harald Weltea3961292023-07-09 21:44:52 +0200122 def _get_aid(adf="usim") -> Optional[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100123 aid_map = {}
124 # First (known) halves of the U/ISIM AID
125 aid_map["usim"] = "a0000000871002"
126 aid_map["isim"] = "a0000000871004"
127 adf = adf.lower()
128 if adf in aid_map:
129 return aid_map[adf]
130 return None
Philipp Maier46c61542021-11-16 16:36:50 +0100131
Harald Weltea3961292023-07-09 21:44:52 +0200132 def _complete_aid(self, aid: Hexstr) -> Optional[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100133 """find the complete version of an ADF.U/ISIM AID"""
134 # Find full AID by partial AID:
135 if is_hex(aid):
136 for aid_known in self._aids:
137 if len(aid_known) >= len(aid) and aid == aid_known[0:len(aid)]:
138 return aid_known
139 return None
Philipp Maier46c61542021-11-16 16:36:50 +0100140
Harald Weltea3961292023-07-09 21:44:52 +0200141 def adf_present(self, adf: str = "usim") -> bool:
Philipp Maier84902402023-02-10 18:23:36 +0100142 """Check if the AID of the specified ADF is present in EF.DIR (call read_aids before use)"""
143 aid = self._get_aid(adf)
144 if aid:
145 aid_full = self._complete_aid(aid)
146 if aid_full:
147 return True
148 return False
149
Harald Weltea3961292023-07-09 21:44:52 +0200150 def select_adf_by_aid(self, adf: str = "usim") -> Tuple[Optional[Hexstr], Optional[SwHexstr]]:
Harald Weltec91085e2022-02-10 18:05:45 +0100151 """Select ADF.U/ISIM in the Card using its full AID"""
152 if is_hex(adf):
153 aid = adf
154 else:
155 aid = self._get_aid(adf)
156 if aid:
157 aid_full = self._complete_aid(aid)
158 if aid_full:
159 return self._scc.select_adf(aid_full)
160 else:
161 # If we cannot get the full AID, try with short AID
162 return self._scc.select_adf(aid)
163 return (None, None)
Supreeth Herlef9f3e5e2020-03-22 08:04:59 +0100164
Harald Weltea3961292023-07-09 21:44:52 +0200165def card_detect(scc: LinkBase) -> Optional[CardBase]:
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200166 # UICC always has higher preference, as a UICC might also contain a SIM application
167 uicc = UiccCardBase(scc)
168 if uicc.probe():
169 return uicc
Philipp Maierbda52832022-06-14 16:18:12 +0200170
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200171 # this is for detecting a real, classic TS 11.11 SIM card without any UICC support
172 sim = SimCardBase(scc)
173 if sim.probe():
174 return sim
Harald Welteca673942020-06-03 15:19:40 +0200175
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200176 return None