blob: 772ea522d999b82b893cce6d0fab0cafba72a7f8 [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 Welte172c28e2023-07-10 22:20:40 +020086 def __init__(self, scc: LinkBase):
87 super(SimCardBase, self).__init__(scc)
88 self._scc.cla_byte = "A0"
89
Harald Weltea3961292023-07-09 21:44:52 +020090 def probe(self) -> bool:
Harald Weltef8d2e2b2023-07-09 17:58:38 +020091 df_gsm = DF_GSM()
92 return self.file_exists(df_gsm.fid)
Harald Welte263fb082023-07-09 17:15:36 +020093
94
95class UiccCardBase(SimCardBase):
96 name = 'UICC'
97
Harald Welte775ab012023-07-10 22:23:07 +020098 def __init__(self, scc: LinkBase):
99 super(UiccCardBase, self).__init__(scc)
Harald Welte172c28e2023-07-10 22:20:40 +0200100 self._scc.cla_byte = "00"
101 # See also: ETSI TS 102 221, Table 9.3
Harald Welte263fb082023-07-09 17:15:36 +0200102 self._adm_chv_num = 0xA0
103
Harald Weltea3961292023-07-09 21:44:52 +0200104 def probe(self) -> bool:
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200105 # EF.DIR is a mandatory EF on all ICCIDs; however it *may* also exist on a TS 51.011 SIM
106 ef_dir = EF_DIR()
107 return self.file_exists(ef_dir.fid)
Harald Welte263fb082023-07-09 17:15:36 +0200108
Harald Weltea3961292023-07-09 21:44:52 +0200109 def read_aids(self) -> List[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100110 """Fetch all the AIDs present on UICC"""
111 self._aids = []
112 try:
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200113 ef_dir = EF_DIR()
Harald Weltec91085e2022-02-10 18:05:45 +0100114 # Find out how many records the EF.DIR has
115 # and store all the AIDs in the UICC
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200116 rec_cnt = self._scc.record_count(ef_dir.fid)
Harald Weltec91085e2022-02-10 18:05:45 +0100117 for i in range(0, rec_cnt):
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200118 rec = self._scc.read_record(ef_dir.fid, i + 1)
Harald Weltec91085e2022-02-10 18:05:45 +0100119 if (rec[0][0:2], rec[0][4:6]) == ('61', '4f') and len(rec[0]) > 12 \
120 and rec[0][8:8 + int(rec[0][6:8], 16) * 2] not in self._aids:
121 self._aids.append(rec[0][8:8 + int(rec[0][6:8], 16) * 2])
122 except Exception as e:
123 print("Can't read AIDs from SIM -- %s" % (str(e),))
124 self._aids = []
125 return self._aids
Supreeth Herlee4e98312020-03-18 11:33:14 +0100126
Harald Weltec91085e2022-02-10 18:05:45 +0100127 @staticmethod
Harald Weltea3961292023-07-09 21:44:52 +0200128 def _get_aid(adf="usim") -> Optional[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100129 aid_map = {}
130 # First (known) halves of the U/ISIM AID
131 aid_map["usim"] = "a0000000871002"
132 aid_map["isim"] = "a0000000871004"
133 adf = adf.lower()
134 if adf in aid_map:
135 return aid_map[adf]
136 return None
Philipp Maier46c61542021-11-16 16:36:50 +0100137
Harald Weltea3961292023-07-09 21:44:52 +0200138 def _complete_aid(self, aid: Hexstr) -> Optional[Hexstr]:
Harald Weltec91085e2022-02-10 18:05:45 +0100139 """find the complete version of an ADF.U/ISIM AID"""
140 # Find full AID by partial AID:
141 if is_hex(aid):
142 for aid_known in self._aids:
143 if len(aid_known) >= len(aid) and aid == aid_known[0:len(aid)]:
144 return aid_known
145 return None
Philipp Maier46c61542021-11-16 16:36:50 +0100146
Harald Weltea3961292023-07-09 21:44:52 +0200147 def adf_present(self, adf: str = "usim") -> bool:
Philipp Maier84902402023-02-10 18:23:36 +0100148 """Check if the AID of the specified ADF is present in EF.DIR (call read_aids before use)"""
149 aid = self._get_aid(adf)
150 if aid:
151 aid_full = self._complete_aid(aid)
152 if aid_full:
153 return True
154 return False
155
Harald Weltea3961292023-07-09 21:44:52 +0200156 def select_adf_by_aid(self, adf: str = "usim") -> Tuple[Optional[Hexstr], Optional[SwHexstr]]:
Harald Weltec91085e2022-02-10 18:05:45 +0100157 """Select ADF.U/ISIM in the Card using its full AID"""
158 if is_hex(adf):
159 aid = adf
160 else:
161 aid = self._get_aid(adf)
162 if aid:
163 aid_full = self._complete_aid(aid)
164 if aid_full:
165 return self._scc.select_adf(aid_full)
166 else:
167 # If we cannot get the full AID, try with short AID
168 return self._scc.select_adf(aid)
169 return (None, None)
Supreeth Herlef9f3e5e2020-03-22 08:04:59 +0100170
Harald Weltea3961292023-07-09 21:44:52 +0200171def card_detect(scc: LinkBase) -> Optional[CardBase]:
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200172 # UICC always has higher preference, as a UICC might also contain a SIM application
173 uicc = UiccCardBase(scc)
174 if uicc.probe():
175 return uicc
Philipp Maierbda52832022-06-14 16:18:12 +0200176
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200177 # this is for detecting a real, classic TS 11.11 SIM card without any UICC support
178 sim = SimCardBase(scc)
179 if sim.probe():
180 return sim
Harald Welteca673942020-06-03 15:19:40 +0200181
Harald Weltef8d2e2b2023-07-09 17:58:38 +0200182 return None