blob: 5e430ea3f943a42ada00475b4bc90fa7f108637b [file] [log] [blame]
Alexander Chemeris067f69c2017-07-18 16:44:26 +03001# -*- coding: utf-8 -*-
2
Harald Welte14105dc2021-05-31 08:48:51 +02003# without this, pylint will fail when inner classes are used
4# within the 'nested' kwarg of our TlvMeta metaclass on python 3.7 :(
5# pylint: disable=undefined-variable
6
Harald Welteb2edd142021-01-08 23:29:35 +01007""" Various constants from ETSI TS 151.011 +
8Representation of the GSM SIM/USIM/ISIM filesystem hierarchy.
9
10The File (and its derived classes) uses the classes of pySim.filesystem in
11order to describe the files specified in the relevant ETSI + 3GPP specifications.
Alexander Chemeris067f69c2017-07-18 16:44:26 +030012"""
13
14#
15# Copyright (C) 2017 Alexander.Chemeris <Alexander.Chemeris@gmail.com>
Harald Welteb2edd142021-01-08 23:29:35 +010016# Copyright (C) 2021 Harald Welte <laforge@osmocom.org>
Alexander Chemeris067f69c2017-07-18 16:44:26 +030017#
18# This program is free software: you can redistribute it and/or modify
19# it under the terms of the GNU General Public License as published by
20# the Free Software Foundation, either version 2 of the License, or
21# (at your option) any later version.
22#
23# This program is distributed in the hope that it will be useful,
24# but WITHOUT ANY WARRANTY; without even the implied warranty of
25# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26# GNU General Public License for more details.
27#
28# You should have received a copy of the GNU General Public License
29# along with this program. If not, see <http://www.gnu.org/licenses/>.
30#
31
Harald Weltec91085e2022-02-10 18:05:45 +010032from pySim.profile import match_sim
33from pySim.profile import CardProfile
34from pySim.filesystem import *
35import enum
36from pySim.construct import *
37from construct import Optional as COptional
38from construct import *
39from struct import pack, unpack
40from typing import Tuple
41from pySim.tlv import *
42from pySim.utils import *
Alexander Chemeris067f69c2017-07-18 16:44:26 +030043MF_num = '3F00'
44
45DF_num = {
Harald Weltec91085e2022-02-10 18:05:45 +010046 'TELECOM': '7F10',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030047
Harald Weltec91085e2022-02-10 18:05:45 +010048 'GSM': '7F20',
49 'IS-41': '7F22',
50 'FP-CTS': '7F23',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030051
Harald Weltec91085e2022-02-10 18:05:45 +010052 'GRAPHICS': '5F50',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030053
Harald Weltec91085e2022-02-10 18:05:45 +010054 'IRIDIUM': '5F30',
55 'GLOBST': '5F31',
56 'ICO': '5F32',
57 'ACeS': '5F33',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030058
Harald Weltec91085e2022-02-10 18:05:45 +010059 'EIA/TIA-553': '5F40',
60 'CTS': '5F60',
61 'SOLSA': '5F70',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030062
Harald Weltec91085e2022-02-10 18:05:45 +010063 'MExE': '5F3C',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030064}
65
66EF_num = {
Harald Weltec91085e2022-02-10 18:05:45 +010067 # MF
68 'ICCID': '2FE2',
69 'ELP': '2F05',
70 'DIR': '2F00',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030071
Harald Weltec91085e2022-02-10 18:05:45 +010072 # DF_TELECOM
73 'ADN': '6F3A',
74 'FDN': '6F3B',
75 'SMS': '6F3C',
76 'CCP': '6F3D',
77 'MSISDN': '6F40',
78 'SMSP': '6F42',
79 'SMSS': '6F43',
80 'LND': '6F44',
81 'SMSR': '6F47',
82 'SDN': '6F49',
83 'EXT1': '6F4A',
84 'EXT2': '6F4B',
85 'EXT3': '6F4C',
86 'BDN': '6F4D',
87 'EXT4': '6F4E',
88 'CMI': '6F58',
89 'ECCP': '6F4F',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030090
Harald Weltec91085e2022-02-10 18:05:45 +010091 # DF_GRAPHICS
92 'IMG': '4F20',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030093
Harald Weltec91085e2022-02-10 18:05:45 +010094 # DF_SoLSA
95 'SAI': '4F30',
96 'SLL': '4F31',
Alexander Chemeris067f69c2017-07-18 16:44:26 +030097
Harald Weltec91085e2022-02-10 18:05:45 +010098 # DF_MExE
99 'MExE-ST': '4F40',
100 'ORPK': '4F41',
101 'ARPK': '4F42',
102 'TPRPK': '4F43',
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300103
Harald Weltec91085e2022-02-10 18:05:45 +0100104 # DF_GSM
105 'LP': '6F05',
106 'IMSI': '6F07',
107 'Kc': '6F20',
108 'DCK': '6F2C',
109 'PLMNsel': '6F30',
110 'HPPLMN': '6F31',
111 'CNL': '6F32',
112 'ACMmax': '6F37',
113 'SST': '6F38',
114 'ACM': '6F39',
115 'GID1': '6F3E',
116 'GID2': '6F3F',
117 'PUCT': '6F41',
118 'CBMI': '6F45',
119 'SPN': '6F46',
120 'CBMID': '6F48',
121 'BCCH': '6F74',
122 'ACC': '6F78',
123 'FPLMN': '6F7B',
124 'LOCI': '6F7E',
125 'AD': '6FAD',
126 'PHASE': '6FAE',
127 'VGCS': '6FB1',
128 'VGCSS': '6FB2',
129 'VBS': '6FB3',
130 'VBSS': '6FB4',
131 'eMLPP': '6FB5',
132 'AAeM': '6FB6',
133 'ECC': '6FB7',
134 'CBMIR': '6F50',
135 'NIA': '6F51',
136 'KcGPRS': '6F52',
137 'LOCIGPRS': '6F53',
138 'SUME': '6F54',
139 'PLMNwAcT': '6F60',
140 'OPLMNwAcT': '6F61',
141 # Figure 8 names it HPLMNAcT, but in the text it's names it HPLMNwAcT
142 'HPLMNAcT': '6F62',
143 'HPLMNwAcT': '6F62',
144 'CPBCCH': '6F63',
145 'INVSCAN': '6F64',
146 'PNN': '6FC5',
147 'OPL': '6FC6',
148 'MBDN': '6FC7',
149 'EXT6': '6FC8',
150 'MBI': '6FC9',
151 'MWIS': '6FCA',
152 'CFIS': '6FCB',
153 'EXT7': '6FCC',
154 'SPDI': '6FCD',
155 'MMSN': '6FCE',
156 'EXT8': '6FCF',
157 'MMSICP': '6FD0',
158 'MMSUP': '6FD1',
159 'MMSUCP': '6FD2',
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300160}
161
162DF = {
Harald Weltec91085e2022-02-10 18:05:45 +0100163 'TELECOM': [MF_num, DF_num['TELECOM']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300164
Harald Weltec91085e2022-02-10 18:05:45 +0100165 'GSM': [MF_num, DF_num['GSM']],
166 'IS-41': [MF_num, DF_num['IS-41']],
167 'FP-CTS': [MF_num, DF_num['FP-CTS']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300168
Harald Weltec91085e2022-02-10 18:05:45 +0100169 'GRAPHICS': [MF_num, DF_num['GRAPHICS']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300170
Harald Weltec91085e2022-02-10 18:05:45 +0100171 'IRIDIUM': [MF_num, DF_num['IRIDIUM']],
172 'GLOBST': [MF_num, DF_num['GLOBST']],
173 'ICO': [MF_num, DF_num['ICO']],
174 'ACeS': [MF_num, DF_num['ACeS']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300175
Harald Weltec91085e2022-02-10 18:05:45 +0100176 'EIA/TIA-553': [MF_num, DF_num['EIA/TIA-553']],
177 'CTS': [MF_num, DF_num['CTS']],
178 'SoLSA': [MF_num, DF_num['SOLSA']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300179
Harald Weltec91085e2022-02-10 18:05:45 +0100180 'MExE': [MF_num, DF_num['MExE']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300181}
182
183
184EF = {
Harald Weltec91085e2022-02-10 18:05:45 +0100185 'ICCID': [MF_num, EF_num['ICCID']],
186 'ELP': [MF_num, EF_num['ELP']],
187 'DIR': [MF_num, EF_num['DIR']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300188
Harald Weltec91085e2022-02-10 18:05:45 +0100189 'ADN': DF['TELECOM']+[EF_num['ADN']],
190 'FDN': DF['TELECOM']+[EF_num['FDN']],
191 'SMS': DF['TELECOM']+[EF_num['SMS']],
192 'CCP': DF['TELECOM']+[EF_num['CCP']],
193 'MSISDN': DF['TELECOM']+[EF_num['MSISDN']],
194 'SMSP': DF['TELECOM']+[EF_num['SMSP']],
195 'SMSS': DF['TELECOM']+[EF_num['SMSS']],
196 'LND': DF['TELECOM']+[EF_num['LND']],
197 'SMSR': DF['TELECOM']+[EF_num['SMSR']],
198 'SDN': DF['TELECOM']+[EF_num['SDN']],
199 'EXT1': DF['TELECOM']+[EF_num['EXT1']],
200 'EXT2': DF['TELECOM']+[EF_num['EXT2']],
201 'EXT3': DF['TELECOM']+[EF_num['EXT3']],
202 'BDN': DF['TELECOM']+[EF_num['BDN']],
203 'EXT4': DF['TELECOM']+[EF_num['EXT4']],
204 'CMI': DF['TELECOM']+[EF_num['CMI']],
205 'ECCP': DF['TELECOM']+[EF_num['ECCP']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300206
Harald Weltec91085e2022-02-10 18:05:45 +0100207 'IMG': DF['GRAPHICS']+[EF_num['IMG']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300208
Harald Weltec91085e2022-02-10 18:05:45 +0100209 'SAI': DF['SoLSA']+[EF_num['SAI']],
210 'SLL': DF['SoLSA']+[EF_num['SLL']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300211
Harald Weltec91085e2022-02-10 18:05:45 +0100212 'MExE-ST': DF['MExE']+[EF_num['MExE-ST']],
213 'ORPK': DF['MExE']+[EF_num['ORPK']],
214 'ARPK': DF['MExE']+[EF_num['ARPK']],
215 'TPRPK': DF['MExE']+[EF_num['TPRPK']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300216
Harald Weltec91085e2022-02-10 18:05:45 +0100217 'LP': DF['GSM']+[EF_num['LP']],
218 'IMSI': DF['GSM']+[EF_num['IMSI']],
219 'Kc': DF['GSM']+[EF_num['Kc']],
220 'DCK': DF['GSM']+[EF_num['DCK']],
221 'PLMNsel': DF['GSM']+[EF_num['PLMNsel']],
222 'HPPLMN': DF['GSM']+[EF_num['HPPLMN']],
223 'CNL': DF['GSM']+[EF_num['CNL']],
224 'ACMmax': DF['GSM']+[EF_num['ACMmax']],
225 'SST': DF['GSM']+[EF_num['SST']],
226 'ACM': DF['GSM']+[EF_num['ACM']],
227 'GID1': DF['GSM']+[EF_num['GID1']],
228 'GID2': DF['GSM']+[EF_num['GID2']],
229 'PUCT': DF['GSM']+[EF_num['PUCT']],
230 'CBMI': DF['GSM']+[EF_num['CBMI']],
231 'SPN': DF['GSM']+[EF_num['SPN']],
232 'CBMID': DF['GSM']+[EF_num['CBMID']],
233 'BCCH': DF['GSM']+[EF_num['BCCH']],
234 'ACC': DF['GSM']+[EF_num['ACC']],
235 'FPLMN': DF['GSM']+[EF_num['FPLMN']],
236 'LOCI': DF['GSM']+[EF_num['LOCI']],
237 'AD': DF['GSM']+[EF_num['AD']],
238 'PHASE': DF['GSM']+[EF_num['PHASE']],
239 'VGCS': DF['GSM']+[EF_num['VGCS']],
240 'VGCSS': DF['GSM']+[EF_num['VGCSS']],
241 'VBS': DF['GSM']+[EF_num['VBS']],
242 'VBSS': DF['GSM']+[EF_num['VBSS']],
243 'eMLPP': DF['GSM']+[EF_num['eMLPP']],
244 'AAeM': DF['GSM']+[EF_num['AAeM']],
245 'ECC': DF['GSM']+[EF_num['ECC']],
246 'CBMIR': DF['GSM']+[EF_num['CBMIR']],
247 'NIA': DF['GSM']+[EF_num['NIA']],
248 'KcGPRS': DF['GSM']+[EF_num['KcGPRS']],
249 'LOCIGPRS': DF['GSM']+[EF_num['LOCIGPRS']],
250 'SUME': DF['GSM']+[EF_num['SUME']],
251 'PLMNwAcT': DF['GSM']+[EF_num['PLMNwAcT']],
252 'OPLMNwAcT': DF['GSM']+[EF_num['OPLMNwAcT']],
253 # Figure 8 names it HPLMNAcT, but in the text it's names it HPLMNwAcT
254 'HPLMNAcT': DF['GSM']+[EF_num['HPLMNAcT']],
255 'HPLMNwAcT': DF['GSM']+[EF_num['HPLMNAcT']],
256 'CPBCCH': DF['GSM']+[EF_num['CPBCCH']],
257 'INVSCAN': DF['GSM']+[EF_num['INVSCAN']],
258 'PNN': DF['GSM']+[EF_num['PNN']],
259 'OPL': DF['GSM']+[EF_num['OPL']],
260 'MBDN': DF['GSM']+[EF_num['MBDN']],
261 'EXT6': DF['GSM']+[EF_num['EXT6']],
262 'MBI': DF['GSM']+[EF_num['MBI']],
263 'MWIS': DF['GSM']+[EF_num['MWIS']],
264 'CFIS': DF['GSM']+[EF_num['CFIS']],
265 'EXT7': DF['GSM']+[EF_num['EXT7']],
266 'SPDI': DF['GSM']+[EF_num['SPDI']],
267 'MMSN': DF['GSM']+[EF_num['MMSN']],
268 'EXT8': DF['GSM']+[EF_num['EXT8']],
269 'MMSICP': DF['GSM']+[EF_num['MMSICP']],
270 'MMSUP': DF['GSM']+[EF_num['MMSUP']],
271 'MMSUCP': DF['GSM']+[EF_num['MMSUCP']],
Alexander Chemeris067f69c2017-07-18 16:44:26 +0300272}
Supreeth Herlebf5d6022020-03-20 15:18:27 +0100273
274# Mapping between SIM Service Number and its description
275EF_SST_map = {
Harald Weltec91085e2022-02-10 18:05:45 +0100276 1: 'CHV1 disable function',
277 2: 'Abbreviated Dialling Numbers (ADN)',
278 3: 'Fixed Dialling Numbers (FDN)',
279 4: 'Short Message Storage (SMS)',
280 5: 'Advice of Charge (AoC)',
281 6: 'Capability Configuration Parameters (CCP)',
282 7: 'PLMN selector',
283 8: 'RFU',
284 9: 'MSISDN',
285 10: 'Extension1',
286 11: 'Extension2',
287 12: 'SMS Parameters',
288 13: 'Last Number Dialled (LND)',
289 14: 'Cell Broadcast Message Identifier',
290 15: 'Group Identifier Level 1',
291 16: 'Group Identifier Level 2',
292 17: 'Service Provider Name',
293 18: 'Service Dialling Numbers (SDN)',
294 19: 'Extension3',
295 20: 'RFU',
296 21: 'VGCS Group Identifier List (EFVGCS and EFVGCSS)',
297 22: 'VBS Group Identifier List (EFVBS and EFVBSS)',
298 23: 'enhanced Multi-Level Precedence and Pre-emption Service',
299 24: 'Automatic Answer for eMLPP',
300 25: 'Data download via SMS-CB',
301 26: 'Data download via SMS-PP',
302 27: 'Menu selection',
303 28: 'Call control',
304 29: 'Proactive SIM',
305 30: 'Cell Broadcast Message Identifier Ranges',
306 31: 'Barred Dialling Numbers (BDN)',
307 32: 'Extension4',
308 33: 'De-personalization Control Keys',
309 34: 'Co-operative Network List',
310 35: 'Short Message Status Reports',
311 36: 'Network\'s indication of alerting in the MS',
312 37: 'Mobile Originated Short Message control by SIM',
313 38: 'GPRS',
314 39: 'Image (IMG)',
315 40: 'SoLSA (Support of Local Service Area)',
316 41: 'USSD string data object supported in Call Control',
317 42: 'RUN AT COMMAND command',
318 43: 'User controlled PLMN Selector with Access Technology',
319 44: 'Operator controlled PLMN Selector with Access Technology',
320 45: 'HPLMN Selector with Access Technology',
321 46: 'CPBCCH Information',
322 47: 'Investigation Scan',
323 48: 'Extended Capability Configuration Parameters',
324 49: 'MExE',
325 50: 'Reserved and shall be ignored',
326 51: 'PLMN Network Name',
327 52: 'Operator PLMN List',
328 53: 'Mailbox Dialling Numbers',
329 54: 'Message Waiting Indication Status',
330 55: 'Call Forwarding Indication Status',
331 56: 'Service Provider Display Information',
332 57: 'Multimedia Messaging Service (MMS)',
333 58: 'Extension 8',
334 59: 'MMS User Connectivity Parameters',
Vadim Yanitskiydfe3dbb2020-07-28 05:26:02 +0700335}
336
Harald Welteb2edd142021-01-08 23:29:35 +0100337
338######################################################################
339# DF.TELECOM
340######################################################################
341
342# TS 51.011 Section 10.5.1
343class EF_ADN(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100344 def __init__(self, fid='6f3a', sfid=None, name='EF.ADN', desc='Abbreviated Dialing Numbers', **kwargs):
345 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len={14, 30}, **kwargs)
Harald Welte1e73d222022-02-13 11:32:50 +0100346 self._construct = Struct('alpha_id'/COptional(GsmStringAdapter(Rpad(Bytes(this._.total_len-14)), codec='ascii')),
347 'len_of_bcd'/Int8ub,
348 'ton_npi'/TonNpi,
349 'dialing_nr'/BcdAdapter(Rpad(Bytes(10))),
350 'cap_conf_id'/Int8ub,
351 'ext1_record_id'/Int8ub)
Harald Welteb2edd142021-01-08 23:29:35 +0100352
353# TS 51.011 Section 10.5.5
Harald Welteec7d0da2021-04-02 22:01:19 +0200354class EF_SMS(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100355 def __init__(self, fid='6f3c', sfid=None, name='EF.SMS', desc='Short messages', **kwargs):
356 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len={176, 176}, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100357
Harald Welteec7d0da2021-04-02 22:01:19 +0200358 def _decode_record_bin(self, raw_bin_data):
359 def decode_status(status):
360 if status & 0x01 == 0x00:
361 return (None, 'free_space')
362 elif status & 0x07 == 0x01:
363 return ('mt', 'message_read')
364 elif status & 0x07 == 0x03:
365 return ('mt', 'message_to_be_read')
366 elif status & 0x07 == 0x07:
367 return ('mo', 'message_to_be_sent')
368 elif status & 0x1f == 0x05:
369 return ('mo', 'sent_status_not_requested')
370 elif status & 0x1f == 0x0d:
371 return ('mo', 'sent_status_req_but_not_received')
372 elif status & 0x1f == 0x15:
373 return ('mo', 'sent_status_req_rx_not_stored_smsr')
374 elif status & 0x1f == 0x1d:
375 return ('mo', 'sent_status_req_rx_stored_smsr')
376 else:
377 return (None, 'rfu')
378
379 status = decode_status(raw_bin_data[0])
380 remainder = raw_bin_data[1:]
381 return {'direction': status[0], 'status': status[1], 'remainder': b2h(remainder)}
382
383
384# TS 51.011 Section 10.5.5
Harald Welteb2edd142021-01-08 23:29:35 +0100385class EF_MSISDN(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100386 def __init__(self, fid='6f40', sfid=None, name='EF.MSISDN', desc='MSISDN', **kwargs):
387 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len={15, 34}, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100388
Harald Welteb2edd142021-01-08 23:29:35 +0100389 def _decode_record_hex(self, raw_hex_data):
390 return {'msisdn': dec_msisdn(raw_hex_data)}
Harald Weltec91085e2022-02-10 18:05:45 +0100391
Harald Welteb2edd142021-01-08 23:29:35 +0100392 def _encode_record_hex(self, abstract):
Philipp Maierf9cbe092021-04-23 19:37:36 +0200393 msisdn = abstract['msisdn']
394 if type(msisdn) == str:
395 encoded_msisdn = enc_msisdn(msisdn)
396 else:
Harald Weltec91085e2022-02-10 18:05:45 +0100397 encoded_msisdn = enc_msisdn(msisdn[2], msisdn[0], msisdn[1])
398 alpha_identifier = (list(self.rec_len)[
399 0] - len(encoded_msisdn) // 2) * "ff"
Philipp Maierb46cb3f2021-04-20 22:38:21 +0200400 return alpha_identifier + encoded_msisdn
Harald Welteb2edd142021-01-08 23:29:35 +0100401
402# TS 51.011 Section 10.5.6
403class EF_SMSP(LinFixedEF):
Harald Weltebc0e2092022-02-13 10:54:58 +0100404 class ValidityPeriodAdapter(Adapter):
405 def _decode(self, obj, context, path):
406 if obj <= 143:
407 return obj + 1 * 5
408 elif obj <= 167:
409 return 12 * 60 + ((obj - 143) * 30)
410 elif obj <= 196:
411 return (obj - 166) * (24 * 60)
412 elif obj <= 255:
413 return (obj - 192) * (7 * 24 * 60)
414 else:
415 raise ValueError
416 def _encode(self, obj, context, path):
417 if obj <= 12*60:
418 return obj/5 - 1
419 elif obj <= 24*60:
420 return 143 + ((obj - (12 * 60)) / 30)
421 elif obj <= 30 * 24 * 60:
422 return 166 + (obj / (24 * 60))
423 elif obj <= 63 * 7 * 24 * 60:
424 return 192 + (obj / (7 * 24 * 60))
425 else:
426 raise ValueError
427
Harald Welte6169c722022-02-12 09:05:15 +0100428 def __init__(self, fid='6f42', sfid=None, name='EF.SMSP', desc='Short message service parameters', **kwargs):
429 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len={28, None}, **kwargs)
Harald Weltebc0e2092022-02-13 10:54:58 +0100430 ScAddr = Struct('length'/Int8ub, 'ton_npi'/TonNpi, 'call_number'/BcdAdapter(Rpad(Bytes(10))))
431 self._construct = Struct('alpha_id'/COptional(GsmStringAdapter(Rpad(Bytes(this._.total_len-28)))),
432 'parameter_indicators'/InvertAdapter(FlagsEnum(Byte, tp_dest_addr=1, tp_sc_addr=2,
433 tp_pid=3, tp_dcs=4, tp_vp=5)),
434 'tp_dest_addr'/ScAddr,
435 'tp_sc_addr'/ScAddr,
436
437 'tp_pid'/HexAdapter(Bytes(1)),
438 'tp_dcs'/HexAdapter(Bytes(1)),
439 'tp_vp_minutes'/EF_SMSP.ValidityPeriodAdapter(Byte))
Harald Welteb2edd142021-01-08 23:29:35 +0100440
Harald Welte790b2702021-04-11 00:01:35 +0200441# TS 51.011 Section 10.5.7
442class EF_SMSS(TransparentEF):
443 class MemCapAdapter(Adapter):
444 def _decode(self, obj, context, path):
445 return False if obj & 1 else True
Harald Weltec91085e2022-02-10 18:05:45 +0100446
Harald Welte790b2702021-04-11 00:01:35 +0200447 def _encode(self, obj, context, path):
448 return 0 if obj else 1
Harald Weltec91085e2022-02-10 18:05:45 +0100449
Harald Welte6169c722022-02-12 09:05:15 +0100450 def __init__(self, fid='6f43', sfid=None, name='EF.SMSS', desc='SMS status', size={2, 8}, **kwargs):
451 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100452 self._construct = Struct(
453 'last_used_tpmr'/Int8ub, 'memory_capacity_exceeded'/self.MemCapAdapter(Int8ub))
Harald Welte790b2702021-04-11 00:01:35 +0200454
455# TS 51.011 Section 10.5.8
456class EF_SMSR(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100457 def __init__(self, fid='6f47', sfid=None, name='EF.SMSR', desc='SMS status reports', rec_len={30, 30}, **kwargs):
458 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100459 self._construct = Struct(
460 'sms_record_id'/Int8ub, 'sms_status_report'/HexAdapter(Bytes(29)))
461
Harald Welte790b2702021-04-11 00:01:35 +0200462
463class EF_EXT(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100464 def __init__(self, fid, sfid=None, name='EF.EXT', desc='Extension', rec_len={13, 13}, **kwargs):
465 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100466 self._construct = Struct(
467 'record_type'/Int8ub, 'extension_data'/HexAdapter(Bytes(11)), 'identifier'/Int8ub)
Harald Welte790b2702021-04-11 00:01:35 +0200468
469# TS 51.011 Section 10.5.16
470class EF_CMI(LinFixedEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100471 def __init__(self, fid='6f58', sfid=None, name='EF.CMI', rec_len={2, 21},
Harald Welte6169c722022-02-12 09:05:15 +0100472 desc='Comparison Method Information', **kwargs):
473 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100474 self._construct = Struct(
Harald Welte540adb02022-02-13 11:33:21 +0100475 'alpha_id'/GsmStringAdapter(Rpad(Bytes(this._.total_len-1))), 'comparison_method_id'/Int8ub)
Harald Weltec91085e2022-02-10 18:05:45 +0100476
Harald Welte790b2702021-04-11 00:01:35 +0200477
Harald Welteb2edd142021-01-08 23:29:35 +0100478class DF_TELECOM(CardDF):
Harald Welte6169c722022-02-12 09:05:15 +0100479 def __init__(self, fid='7f10', name='DF.TELECOM', desc=None, **kwargs):
480 super().__init__(fid=fid, name=name, desc=desc, **kwargs)
Harald Welteb2edd142021-01-08 23:29:35 +0100481 files = [
Harald Weltec91085e2022-02-10 18:05:45 +0100482 EF_ADN(),
483 EF_ADN(fid='6f3b', name='EF.FDN', desc='Fixed dialling numbers'),
484 EF_SMS(),
485 LinFixedEF(fid='6f3d', name='EF.CCP',
486 desc='Capability Configuration Parameters', rec_len={14, 14}),
487 LinFixedEF(fid='6f4f', name='EF.ECCP',
488 desc='Extended Capability Configuration Parameters', rec_len={15, 32}),
489 EF_MSISDN(),
490 EF_SMSP(),
491 EF_SMSS(),
492 # LND, SDN
493 EF_EXT('6f4a', None, 'EF.EXT1', 'Extension1 (ADN/SSC)'),
494 EF_EXT('6f4b', None, 'EF.EXT2', 'Extension2 (FDN/SSC)'),
495 EF_EXT('6f4c', None, 'EF.EXT3', 'Extension3 (SDN)'),
496 EF_ADN(fid='6f4d', name='EF.BDN', desc='Barred Dialling Numbers'),
497 EF_EXT('6f4e', None, 'EF.EXT4', 'Extension4 (BDN/SSC)'),
498 EF_SMSR(),
499 EF_CMI(),
500 ]
Harald Welteb2edd142021-01-08 23:29:35 +0100501 self.add_files(files)
502
Harald Welteb2edd142021-01-08 23:29:35 +0100503######################################################################
504# DF.GSM
505######################################################################
506
507# TS 51.011 Section 10.3.1
508class EF_LP(TransRecEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100509 def __init__(self, fid='6f05', sfid=None, name='EF.LP', size={1, None}, rec_len=1,
Harald Welteb2edd142021-01-08 23:29:35 +0100510 desc='Language Preference'):
511 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len)
Harald Weltec91085e2022-02-10 18:05:45 +0100512
Harald Welteb2edd142021-01-08 23:29:35 +0100513 def _decode_record_bin(self, in_bin):
514 return b2h(in_bin)
Harald Weltec91085e2022-02-10 18:05:45 +0100515
Harald Welteb2edd142021-01-08 23:29:35 +0100516 def _encode_record_bin(self, in_json):
517 return h2b(in_json)
518
519# TS 51.011 Section 10.3.2
520class EF_IMSI(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100521 def __init__(self, fid='6f07', sfid=None, name='EF.IMSI', desc='IMSI', size={9, 9}):
Harald Welteb2edd142021-01-08 23:29:35 +0100522 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size)
Bjoern Riemere91405e2021-12-17 15:16:35 +0100523 # add those commands to the general commands of a TransparentEF
524 self.shell_commands += [self.AddlShellCommands(self)]
Harald Weltec91085e2022-02-10 18:05:45 +0100525
Harald Welteb2edd142021-01-08 23:29:35 +0100526 def _decode_hex(self, raw_hex):
527 return {'imsi': dec_imsi(raw_hex)}
Harald Weltec91085e2022-02-10 18:05:45 +0100528
Harald Welteb2edd142021-01-08 23:29:35 +0100529 def _encode_hex(self, abstract):
530 return enc_imsi(abstract['imsi'])
Harald Weltec91085e2022-02-10 18:05:45 +0100531
Bjoern Riemere91405e2021-12-17 15:16:35 +0100532 @with_default_category('File-Specific Commands')
533 class AddlShellCommands(CommandSet):
Harald Weltec91085e2022-02-10 18:05:45 +0100534 def __init__(self, ef: TransparentEF):
Bjoern Riemere91405e2021-12-17 15:16:35 +0100535 super().__init__()
Harald Weltec91085e2022-02-10 18:05:45 +0100536 self._ef = ef
Bjoern Riemere91405e2021-12-17 15:16:35 +0100537
538 def do_update_imsi_plmn(self, arg: str):
539 """Change the plmn part of the IMSI"""
540 plmn = arg.strip()
541 if len(plmn) == 5 or len(plmn) == 6:
542 (data, sw) = self._cmd.rs.read_binary_dec()
543 if sw == '9000' and len(data['imsi'])-len(plmn) == 10:
544 imsi = data['imsi']
545 msin = imsi[len(plmn):]
Harald Weltec91085e2022-02-10 18:05:45 +0100546 (data, sw) = self._cmd.rs.update_binary_dec(
547 {'imsi': plmn+msin})
Bjoern Riemere91405e2021-12-17 15:16:35 +0100548 if sw == '9000' and data:
Harald Weltec91085e2022-02-10 18:05:45 +0100549 self._cmd.poutput_json(
550 self._cmd.rs.selected_file.decode_hex(data))
Bjoern Riemere91405e2021-12-17 15:16:35 +0100551 else:
552 raise ValueError("PLMN length does not match IMSI length")
553 else:
554 raise ValueError("PLMN has wrong length!")
555
Harald Welteb2edd142021-01-08 23:29:35 +0100556
557# TS 51.011 Section 10.3.4
558class EF_PLMNsel(TransRecEF):
559 def __init__(self, fid='6f30', sfid=None, name='EF.PLMNsel', desc='PLMN selector',
Harald Welte6169c722022-02-12 09:05:15 +0100560 size={24, None}, rec_len=3, **kwargs):
561 super().__init__(fid, name=name, sfid=sfid, desc=desc, size=size, rec_len=rec_len, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100562
Harald Welteb2edd142021-01-08 23:29:35 +0100563 def _decode_record_hex(self, in_hex):
564 if in_hex[:6] == "ffffff":
565 return None
566 else:
567 return dec_plmn(in_hex)
Harald Weltec91085e2022-02-10 18:05:45 +0100568
Harald Welteb2edd142021-01-08 23:29:35 +0100569 def _encode_record_hex(self, in_json):
570 if in_json == None:
571 return "ffffff"
572 else:
573 return enc_plmn(in_json['mcc'], in_json['mnc'])
574
Harald Welte790b2702021-04-11 00:01:35 +0200575# TS 51.011 Section 10.3.6
576class EF_ACMmax(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100577 def __init__(self, fid='6f37', sfid=None, name='EF.ACMmax', size={3, 3},
Harald Welte6169c722022-02-12 09:05:15 +0100578 desc='ACM maximum value', **kwargs):
579 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Welte790b2702021-04-11 00:01:35 +0200580 self._construct = Struct('acm_max'/Int24ub)
581
Harald Welteb2edd142021-01-08 23:29:35 +0100582# TS 51.011 Section 10.3.7
583class EF_ServiceTable(TransparentEF):
584 def __init__(self, fid, sfid, name, desc, size, table):
585 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size)
586 self.table = table
Harald Weltec91085e2022-02-10 18:05:45 +0100587
Harald Welte7a8aa862021-10-14 20:46:19 +0200588 @staticmethod
Harald Weltec91085e2022-02-10 18:05:45 +0100589 def _bit_byte_offset_for_service(service: int) -> Tuple[int, int]:
Harald Welte7a8aa862021-10-14 20:46:19 +0200590 i = service - 1
591 byte_offset = i//4
592 bit_offset = (i % 4) * 2
593 return (byte_offset, bit_offset)
Harald Weltec91085e2022-02-10 18:05:45 +0100594
Harald Welteb2edd142021-01-08 23:29:35 +0100595 def _decode_bin(self, raw_bin):
596 ret = {}
597 for i in range(0, len(raw_bin)*4):
598 service_nr = i+1
599 byte = int(raw_bin[i//4])
600 bit_offset = (i % 4) * 2
601 bits = (byte >> bit_offset) & 3
602 ret[service_nr] = {
Harald Weltec91085e2022-02-10 18:05:45 +0100603 'description': self.table[service_nr] if service_nr in self.table else None,
604 'allocated': True if bits & 1 else False,
605 'activated': True if bits & 2 else False,
606 }
Harald Welteb2edd142021-01-08 23:29:35 +0100607 return ret
Harald Weltec91085e2022-02-10 18:05:45 +0100608
Harald Welte7a8aa862021-10-14 20:46:19 +0200609 def _encode_bin(self, in_json):
610 # compute the required binary size
611 bin_len = 0
612 for srv in in_json.keys():
613 service_nr = int(srv)
Harald Weltec91085e2022-02-10 18:05:45 +0100614 (byte_offset, bit_offset) = EF_ServiceTable._bit_byte_offset_for_service(
615 service_nr)
Harald Welte7a8aa862021-10-14 20:46:19 +0200616 if byte_offset >= bin_len:
617 bin_len = byte_offset+1
618 # encode the actual data
619 out = bytearray(b'\x00' * bin_len)
620 for srv in in_json.keys():
621 service_nr = int(srv)
Harald Weltec91085e2022-02-10 18:05:45 +0100622 (byte_offset, bit_offset) = EF_ServiceTable._bit_byte_offset_for_service(
623 service_nr)
Harald Welte7a8aa862021-10-14 20:46:19 +0200624 bits = 0
625 if in_json[srv]['allocated'] == True:
626 bits |= 1
627 if in_json[srv]['activated'] == True:
628 bits |= 2
629 out[byte_offset] |= ((bits & 3) << bit_offset)
630 return out
Harald Welteb2edd142021-01-08 23:29:35 +0100631
632# TS 51.011 Section 10.3.11
633class EF_SPN(TransparentEF):
Harald Welte6169c722022-02-12 09:05:15 +0100634 def __init__(self, fid='6f46', sfid=None, name='EF.SPN',
635 desc='Service Provider Name', size={17, 17}, **kwargs):
636 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Robert Falkenbergb07a3e92021-05-07 15:23:20 +0200637 self._construct = BitStruct(
638 # Byte 1
639 'rfu'/BitsRFU(6),
640 'hide_in_oplmn'/Flag,
641 'show_in_hplmn'/Flag,
642 # Bytes 2..17
643 'spn'/Bytewise(GsmString(16))
644 )
Harald Welteb2edd142021-01-08 23:29:35 +0100645
646# TS 51.011 Section 10.3.13
647class EF_CBMI(TransRecEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100648 def __init__(self, fid='6f45', sfid=None, name='EF.CBMI', size={2, None}, rec_len=2,
Harald Welte6169c722022-02-12 09:05:15 +0100649 desc='Cell Broadcast message identifier selection', **kwargs):
650 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200651 self._construct = GreedyRange(Int16ub)
Harald Welteb2edd142021-01-08 23:29:35 +0100652
653# TS 51.011 Section 10.3.15
654class EF_ACC(TransparentEF):
Harald Welte6169c722022-02-12 09:05:15 +0100655 def __init__(self, fid='6f78', sfid=None, name='EF.ACC',
656 desc='Access Control Class', size={2, 2}, **kwargs):
657 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Welte1e73d222022-02-13 11:32:50 +0100658 self._construct = HexAdapter(Bytes(2))
Harald Welteb2edd142021-01-08 23:29:35 +0100659
Harald Welte790b2702021-04-11 00:01:35 +0200660# TS 51.011 Section 10.3.16
661class EF_LOCI(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100662 def __init__(self, fid='6f7e', sfid=None, name='EF.LOCI', desc='Location Information', size={11, 11}):
Harald Welte790b2702021-04-11 00:01:35 +0200663 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size)
664 self._construct = Struct('tmsi'/Bytes(4), 'lai'/Bytes(5), 'tmsi_time'/Int8ub,
665 'lu_status'/Enum(Byte, updated=0, not_updated=1, plmn_not_allowed=2,
666 location_area_not_allowed=3))
667
Harald Welteb2edd142021-01-08 23:29:35 +0100668# TS 51.011 Section 10.3.18
669class EF_AD(TransparentEF):
Robert Falkenberg9d16fbc2021-04-12 11:43:22 +0200670 class OP_MODE(enum.IntEnum):
Harald Weltec91085e2022-02-10 18:05:45 +0100671 normal = 0x00
672 type_approval = 0x80
673 normal_and_specific_facilities = 0x01
674 type_approval_and_specific_facilities = 0x81
675 maintenance_off_line = 0x02
676 cell_test = 0x04
Robert Falkenberg9d16fbc2021-04-12 11:43:22 +0200677 #OP_MODE_DICT = {int(v) : str(v) for v in EF_AD.OP_MODE}
678 #OP_MODE_DICT_REVERSED = {str(v) : int(v) for v in EF_AD.OP_MODE}
679
Harald Weltec91085e2022-02-10 18:05:45 +0100680 def __init__(self, fid='6fad', sfid=None, name='EF.AD', desc='Administrative Data', size={3, 4}):
Harald Welteb2edd142021-01-08 23:29:35 +0100681 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size)
Robert Falkenberg9d16fbc2021-04-12 11:43:22 +0200682 self._construct = BitStruct(
683 # Byte 1
684 'ms_operation_mode'/Bytewise(Enum(Byte, EF_AD.OP_MODE)),
685 # Byte 2
686 'rfu1'/Bytewise(ByteRFU),
687 # Byte 3
688 'rfu2'/BitsRFU(7),
689 'ofm'/Flag,
690 # Byte 4 (optional),
691 'extensions'/COptional(Struct(
692 'rfu3'/BitsRFU(4),
693 'mnc_len'/BitsInteger(4),
694 # Byte 5..N-4 (optional, RFU)
695 'extensions'/Bytewise(GreedyBytesRFU)
696 ))
697 )
Harald Welteb2edd142021-01-08 23:29:35 +0100698
Harald Welte790b2702021-04-11 00:01:35 +0200699# TS 51.011 Section 10.3.20 / 10.3.22
700class EF_VGCS(TransRecEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100701 def __init__(self, fid='6fb1', sfid=None, name='EF.VGCS', size={4, 200}, rec_len=4,
Harald Welte6169c722022-02-12 09:05:15 +0100702 desc='Voice Group Call Service', **kwargs):
703 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len, **kwargs)
Harald Welte790b2702021-04-11 00:01:35 +0200704 self._construct = BcdAdapter(Bytes(4))
705
706# TS 51.011 Section 10.3.21 / 10.3.23
707class EF_VGCSS(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100708 def __init__(self, fid='6fb2', sfid=None, name='EF.VGCSS', size={7, 7},
Harald Welte6169c722022-02-12 09:05:15 +0100709 desc='Voice Group Call Service Status', **kwargs):
710 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100711 self._construct = BitStruct(
712 'flags'/Bit[50], Padding(6, pattern=b'\xff'))
Harald Welte790b2702021-04-11 00:01:35 +0200713
714# TS 51.011 Section 10.3.24
715class EF_eMLPP(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100716 def __init__(self, fid='6fb5', sfid=None, name='EF.eMLPP', size={2, 2},
Harald Welte6169c722022-02-12 09:05:15 +0100717 desc='enhanced Multi Level Pre-emption and Priority', **kwargs):
718 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100719 FlagsConstruct = FlagsEnum(
720 Byte, A=1, B=2, zero=4, one=8, two=16, three=32, four=64)
721 self._construct = Struct(
722 'levels'/FlagsConstruct, 'fast_call_setup_cond'/FlagsConstruct)
Harald Welte790b2702021-04-11 00:01:35 +0200723
724# TS 51.011 Section 10.3.25
725class EF_AAeM(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100726 def __init__(self, fid='6fb6', sfid=None, name='EF.AAeM', size={1, 1},
Harald Welte6169c722022-02-12 09:05:15 +0100727 desc='Automatic Answer for eMLPP Service', **kwargs):
728 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100729 FlagsConstruct = FlagsEnum(
730 Byte, A=1, B=2, zero=4, one=8, two=16, three=32, four=64)
Harald Welte790b2702021-04-11 00:01:35 +0200731 self._construct = Struct('auto_answer_prio_levels'/FlagsConstruct)
732
733# TS 51.011 Section 10.3.26
Harald Welteb2edd142021-01-08 23:29:35 +0100734class EF_CBMID(EF_CBMI):
Harald Weltec91085e2022-02-10 18:05:45 +0100735 def __init__(self, fid='6f48', sfid=None, name='EF.CBMID', size={2, None}, rec_len=2,
Harald Welte6169c722022-02-12 09:05:15 +0100736 desc='Cell Broadcast Message Identifier for Data Download', **kwargs):
737 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200738 self._construct = GreedyRange(Int16ub)
Harald Welteb2edd142021-01-08 23:29:35 +0100739
Harald Welte89e59542021-04-02 21:33:13 +0200740# TS 51.011 Section 10.3.27
741class EF_ECC(TransRecEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100742 def __init__(self, fid='6fb7', sfid=None, name='EF.ECC', size={3, 15}, rec_len=3,
Harald Welte6169c722022-02-12 09:05:15 +0100743 desc='Emergency Call Codes', **kwargs):
744 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200745 self._construct = GreedyRange(BcdAdapter(Bytes(3)))
Harald Welteb2edd142021-01-08 23:29:35 +0100746
747# TS 51.011 Section 10.3.28
748class EF_CBMIR(TransRecEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100749 def __init__(self, fid='6f50', sfid=None, name='EF.CBMIR', size={4, None}, rec_len=4,
Harald Welte6169c722022-02-12 09:05:15 +0100750 desc='Cell Broadcast message identifier range selection', **kwargs):
751 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200752 self._construct = GreedyRange(Struct('lower'/Int16ub, 'upper'/Int16ub))
Harald Welteb2edd142021-01-08 23:29:35 +0100753
Harald Welte790b2702021-04-11 00:01:35 +0200754# TS 51.011 Section 10.3.29
755class EF_DCK(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100756 def __init__(self, fid='6f2c', sfid=None, name='EF.DCK', size={16, 16},
Harald Welte6169c722022-02-12 09:05:15 +0100757 desc='Depersonalisation Control Keys', **kwargs):
758 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Welte790b2702021-04-11 00:01:35 +0200759 self._construct = Struct('network'/BcdAdapter(Bytes(4)),
760 'network_subset'/BcdAdapter(Bytes(4)),
761 'service_provider'/BcdAdapter(Bytes(4)),
762 'corporate'/BcdAdapter(Bytes(4)))
763# TS 51.011 Section 10.3.30
764class EF_CNL(TransRecEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100765 def __init__(self, fid='6f32', sfid=None, name='EF.CNL', size={6, None}, rec_len=6,
Harald Welte6169c722022-02-12 09:05:15 +0100766 desc='Co-operative Network List', **kwargs):
767 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100768
Harald Welte790b2702021-04-11 00:01:35 +0200769 def _decode_record_hex(self, in_hex):
770 (in_plmn, sub, svp, corp) = unpack('!3sBBB', h2b(in_hex))
771 res = dec_plmn(b2h(in_plmn))
772 res['network_subset'] = sub
773 res['service_provider_id'] = svp
774 res['corporate_id'] = corp
775 return res
Harald Weltec91085e2022-02-10 18:05:45 +0100776
Harald Welte790b2702021-04-11 00:01:35 +0200777 def _encode_record_hex(self, in_json):
778 plmn = enc_plmn(in_json['mcc'], in_json['mnc'])
Vadim Yanitskiy1a95d2b2021-05-02 01:42:09 +0200779 return b2h(pack('!3sBBB',
780 h2b(plmn),
781 in_json['network_subset'],
782 in_json['service_provider_id'],
783 in_json['corporate_id']))
Harald Welte790b2702021-04-11 00:01:35 +0200784
785# TS 51.011 Section 10.3.31
786class EF_NIA(LinFixedEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100787 def __init__(self, fid='6f51', sfid=None, name='EF.NIA', rec_len={1, 32},
Harald Welte6169c722022-02-12 09:05:15 +0100788 desc='Network\'s Indication of Alerting', **kwargs):
789 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100790 self._construct = Struct(
791 'alerting_category'/Int8ub, 'category'/GreedyBytes)
Harald Welte790b2702021-04-11 00:01:35 +0200792
793# TS 51.011 Section 10.3.32
794class EF_Kc(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100795 def __init__(self, fid='6f20', sfid=None, name='EF.Kc', desc='Ciphering key Kc', size={9, 9}):
Harald Welte790b2702021-04-11 00:01:35 +0200796 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size)
797 self._construct = Struct('kc'/HexAdapter(Bytes(8)), 'cksn'/Int8ub)
798
799# TS 51.011 Section 10.3.33
800class EF_LOCIGPRS(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100801 def __init__(self, fid='6f53', sfid=None, name='EF.LOCIGPRS', desc='GPRS Location Information', size={14, 14}):
Harald Welte790b2702021-04-11 00:01:35 +0200802 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size)
803 self._construct = Struct('ptmsi'/Bytes(4), 'ptmsi_sig'/Int8ub, 'rai'/Bytes(6),
804 'rau_status'/Enum(Byte, updated=0, not_updated=1, plmn_not_allowed=2,
805 routing_area_not_allowed=3))
Harald Welteb2edd142021-01-08 23:29:35 +0100806
807# TS 51.011 Section 10.3.35..37
808class EF_xPLMNwAcT(TransRecEF):
Harald Welte6169c722022-02-12 09:05:15 +0100809 def __init__(self, fid, sfid=None, name=None, desc=None, size={40, None}, rec_len=5, **kwargs):
810 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100811
Harald Welteb2edd142021-01-08 23:29:35 +0100812 def _decode_record_hex(self, in_hex):
813 if in_hex[:6] == "ffffff":
814 return None
815 else:
816 return dec_xplmn_w_act(in_hex)
Harald Weltec91085e2022-02-10 18:05:45 +0100817
Harald Welteb2edd142021-01-08 23:29:35 +0100818 def _encode_record_hex(self, in_json):
819 if in_json == None:
820 return "ffffff0000"
821 else:
822 hplmn = enc_plmn(in_json['mcc'], in_json['mnc'])
823 act = self.enc_act(in_json['act'])
824 return hplmn + act
Harald Weltec91085e2022-02-10 18:05:45 +0100825
Harald Welteb2edd142021-01-08 23:29:35 +0100826 @staticmethod
827 def enc_act(in_list):
828 u16 = 0
829 # first the simple ones
830 if 'UTRAN' in in_list:
831 u16 |= 0x8000
832 if 'NG-RAN' in in_list:
833 u16 |= 0x0800
834 if 'GSM COMPACT' in in_list:
835 u16 |= 0x0040
836 if 'cdma2000 HRPD' in in_list:
837 u16 |= 0x0020
838 if 'cdma2000 1xRTT' in in_list:
839 u16 |= 0x0010
840 # E-UTRAN
Philipp Maiere7d41792021-04-29 16:20:07 +0200841 if 'E-UTRAN' in in_list:
842 u16 |= 0x4000
Vadim Yanitskiy5452d642021-03-07 21:45:34 +0100843 if 'E-UTRAN WB-S1' in in_list:
844 u16 |= 0x6000
845 if 'E-UTRAN NB-S1' in in_list:
846 u16 |= 0x5000
Harald Welteb2edd142021-01-08 23:29:35 +0100847 # GSM mess
848 if 'GSM' in in_list and 'EC-GSM-IoT' in in_list:
849 u16 |= 0x008C
850 elif 'GSM' in in_list:
851 u16 |= 0x0084
852 elif 'EC-GSM-IuT' in in_list:
853 u16 |= 0x0088
Harald Weltec91085e2022-02-10 18:05:45 +0100854 return '%04X' % (u16)
Harald Welteb2edd142021-01-08 23:29:35 +0100855
Harald Welte790b2702021-04-11 00:01:35 +0200856# TS 51.011 Section 10.3.38
857class EF_CPBCCH(TransRecEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100858 def __init__(self, fid='6f63', sfid=None, name='EF.CPBCCH', size={2, 14}, rec_len=2,
Harald Welte790b2702021-04-11 00:01:35 +0200859 desc='CPBCCH Information'):
860 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, rec_len=rec_len)
861 self._construct = Struct('cpbcch'/Int16ub)
862
863# TS 51.011 Section 10.3.39
864class EF_InvScan(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100865 def __init__(self, fid='6f64', sfid=None, name='EF.InvScan', size={1, 1},
Harald Welte790b2702021-04-11 00:01:35 +0200866 desc='IOnvestigation Scan'):
867 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size)
Harald Weltec91085e2022-02-10 18:05:45 +0100868 self._construct = FlagsEnum(
869 Byte, in_limited_service_mode=1, after_successful_plmn_selection=2)
Harald Welte790b2702021-04-11 00:01:35 +0200870
Harald Welte14105dc2021-05-31 08:48:51 +0200871# TS 51.011 Section 4.2.58
872class EF_PNN(LinFixedEF):
873 class FullNameForNetwork(BER_TLV_IE, tag=0x43):
874 # TS 24.008 10.5.3.5a
875 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100876
Harald Welte14105dc2021-05-31 08:48:51 +0200877 class ShortNameForNetwork(BER_TLV_IE, tag=0x45):
878 # TS 24.008 10.5.3.5a
879 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100880
Harald Welte14105dc2021-05-31 08:48:51 +0200881 class NetworkNameCollection(TLV_IE_Collection, nested=[FullNameForNetwork, ShortNameForNetwork]):
882 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100883
Harald Welte6169c722022-02-12 09:05:15 +0100884 def __init__(self, fid='6fc5', sfid=None, name='EF.PNN', desc='PLMN Network Name', **kwargs):
885 super().__init__(fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200886 self._tlv = EF_PNN.NetworkNameCollection
887
Harald Welte790b2702021-04-11 00:01:35 +0200888# TS 51.011 Section 10.3.42
889class EF_OPL(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100890 def __init__(self, fid='6fc6', sfid=None, name='EF.OPL', rec_len={8, 8}, desc='Operator PLMN List', **kwargs):
891 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Welte790b2702021-04-11 00:01:35 +0200892 self._construct = Struct('lai'/Bytes(5), 'pnn_record_id'/Int8ub)
893
894# TS 51.011 Section 10.3.44 + TS 31.102 4.2.62
895class EF_MBI(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100896 def __init__(self, fid='6fc9', sfid=None, name='EF.MBI', rec_len={4, 5}, desc='Mailbox Identifier', **kwargs):
897 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Welte790b2702021-04-11 00:01:35 +0200898 self._construct = Struct('mbi_voicemail'/Int8ub, 'mbi_fax'/Int8ub, 'mbi_email'/Int8ub,
899 'mbi_other'/Int8ub, 'mbi_videocall'/COptional(Int8ub))
900
901# TS 51.011 Section 10.3.45 + TS 31.102 4.2.63
902class EF_MWIS(LinFixedEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100903 def __init__(self, fid='6fca', sfid=None, name='EF.MWIS', rec_len={5, 6},
Harald Welte6169c722022-02-12 09:05:15 +0100904 desc='Message Waiting Indication Status', **kwargs):
905 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Welte790b2702021-04-11 00:01:35 +0200906 self._construct = Struct('mwi_status'/FlagsEnum(Byte, voicemail=1, fax=2, email=4, other=8, videomail=16),
907 'num_waiting_voicemail'/Int8ub,
908 'num_waiting_fax'/Int8ub, 'num_waiting_email'/Int8ub,
909 'num_waiting_other'/Int8ub, 'num_waiting_videomail'/COptional(Int8ub))
910
Harald Welte14105dc2021-05-31 08:48:51 +0200911# TS 51.011 Section 10.3.66
912class EF_SPDI(TransparentEF):
913 class ServiceProviderPLMN(BER_TLV_IE, tag=0x80):
914 # flexible numbers of 3-byte PLMN records
915 _construct = GreedyRange(BcdAdapter(Bytes(3)))
Harald Weltec91085e2022-02-10 18:05:45 +0100916
Harald Welte14105dc2021-05-31 08:48:51 +0200917 class SPDI(BER_TLV_IE, tag=0xA3, nested=[ServiceProviderPLMN]):
918 pass
919 def __init__(self, fid='6fcd', sfid=None, name='EF.SPDI',
Harald Welte6169c722022-02-12 09:05:15 +0100920 desc='Service Provider Display Information', **kwargs):
921 super().__init__(fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200922 self._tlv = EF_SPDI.SPDI
923
Harald Welte790b2702021-04-11 00:01:35 +0200924# TS 51.011 Section 10.3.51
925class EF_MMSN(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100926 def __init__(self, fid='6fce', sfid=None, name='EF.MMSN', rec_len={4, 20}, desc='MMS Notification', **kwargs):
927 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Welte790b2702021-04-11 00:01:35 +0200928 self._construct = Struct('mms_status'/Bytes(2), 'mms_implementation'/Bytes(1),
929 'mms_notification'/Bytes(this._.total_len-4), 'ext_record_nr'/Byte)
930
Harald Welte14105dc2021-05-31 08:48:51 +0200931# TS 51.011 Annex K.1
932class MMS_Implementation(BER_TLV_IE, tag=0x80):
933 _construct = FlagsEnum(Byte, WAP=1)
934
Harald Welte790b2702021-04-11 00:01:35 +0200935# TS 51.011 Section 10.3.53
936class EF_MMSICP(TransparentEF):
Harald Welte14105dc2021-05-31 08:48:51 +0200937 class MMS_Relay_Server(BER_TLV_IE, tag=0x81):
938 # 3GPP TS 23.140
939 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100940
Harald Welte14105dc2021-05-31 08:48:51 +0200941 class Interface_to_CN(BER_TLV_IE, tag=0x82):
942 # 3GPP TS 23.140
943 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100944
Harald Welte14105dc2021-05-31 08:48:51 +0200945 class Gateway(BER_TLV_IE, tag=0x83):
946 # Address, Type of address, Port, Service, AuthType, AuthId, AuthPass / 3GPP TS 23.140
947 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100948
Harald Welte14105dc2021-05-31 08:48:51 +0200949 class MMS_ConnectivityParamters(TLV_IE_Collection,
Harald Weltec91085e2022-02-10 18:05:45 +0100950 nested=[MMS_Implementation, MMS_Relay_Server, Interface_to_CN, Gateway]):
Harald Welte14105dc2021-05-31 08:48:51 +0200951 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100952 def __init__(self, fid='6fd0', sfid=None, name='EF.MMSICP', size={1, None},
Harald Welte6169c722022-02-12 09:05:15 +0100953 desc='MMS Issuer Connectivity Parameters', **kwargs):
954 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200955 self._tlv = EF_MMSICP.MMS_ConnectivityParamters
Harald Welte790b2702021-04-11 00:01:35 +0200956
957# TS 51.011 Section 10.3.54
958class EF_MMSUP(LinFixedEF):
Harald Welte14105dc2021-05-31 08:48:51 +0200959 class MMS_UserPref_ProfileName(BER_TLV_IE, tag=0x81):
960 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100961
Harald Welte14105dc2021-05-31 08:48:51 +0200962 class MMS_UserPref_Info(BER_TLV_IE, tag=0x82):
963 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100964
Harald Welte14105dc2021-05-31 08:48:51 +0200965 class MMS_User_Preferences(TLV_IE_Collection,
Harald Weltec91085e2022-02-10 18:05:45 +0100966 nested=[MMS_Implementation, MMS_UserPref_ProfileName, MMS_UserPref_Info]):
Harald Welte14105dc2021-05-31 08:48:51 +0200967 pass
Harald Weltec91085e2022-02-10 18:05:45 +0100968 def __init__(self, fid='6fd1', sfid=None, name='EF.MMSUP', rec_len={1, None},
Harald Welte6169c722022-02-12 09:05:15 +0100969 desc='MMS User Preferences', **kwargs):
970 super().__init__(fid, sfid=sfid, name=name, desc=desc, rec_len=rec_len, **kwargs)
Harald Welte6113fe92022-01-21 15:51:35 +0100971 self._tlv = EF_MMSUP.MMS_User_Preferences
Harald Welte790b2702021-04-11 00:01:35 +0200972
973# TS 51.011 Section 10.3.55
974class EF_MMSUCP(TransparentEF):
Harald Weltec91085e2022-02-10 18:05:45 +0100975 def __init__(self, fid='6fd2', sfid=None, name='EF.MMSUCP', size={1, None},
Harald Welte6169c722022-02-12 09:05:15 +0100976 desc='MMS User Connectivity Parameters', **kwargs):
977 super().__init__(fid, sfid=sfid, name=name, desc=desc, size=size, **kwargs)
Harald Welte790b2702021-04-11 00:01:35 +0200978
Harald Welteb2edd142021-01-08 23:29:35 +0100979
980class DF_GSM(CardDF):
981 def __init__(self, fid='7f20', name='DF.GSM', desc='GSM Network related files'):
982 super().__init__(fid=fid, name=name, desc=desc)
983 files = [
Harald Weltec91085e2022-02-10 18:05:45 +0100984 EF_LP(),
985 EF_IMSI(),
986 EF_Kc(),
987 EF_PLMNsel(),
988 TransparentEF('6f31', None, 'EF.HPPLMN',
989 'Higher Priority PLMN search period'),
990 EF_ACMmax(),
991 EF_ServiceTable('6f38', None, 'EF.SST',
992 'SIM service table', table=EF_SST_map, size={2, 16}),
993 CyclicEF('6f39', None, 'EF.ACM',
994 'Accumulated call meter', rec_len={3, 3}),
995 TransparentEF('6f3e', None, 'EF.GID1', 'Group Identifier Level 1'),
996 TransparentEF('6f3f', None, 'EF.GID2', 'Group Identifier Level 2'),
997 EF_SPN(),
998 TransparentEF('6f41', None, 'EF.PUCT',
999 'Price per unit and currency table', size={5, 5}),
1000 EF_CBMI(),
1001 TransparentEF('6f7f', None, 'EF.BCCH',
1002 'Broadcast control channels', size={16, 16}),
1003 EF_ACC(),
1004 EF_PLMNsel('6f7b', None, 'EF.FPLMN',
1005 'Forbidden PLMNs', size={12, 12}),
1006 EF_LOCI(),
1007 EF_AD(),
1008 TransparentEF('6fa3', None, 'EF.Phase',
1009 'Phase identification', size={1, 1}),
1010 EF_VGCS(),
1011 EF_VGCSS(),
1012 EF_VGCS('6fb3', None, 'EF.VBS', 'Voice Broadcast Service'),
1013 EF_VGCSS('6fb4', None, 'EF.VBSS',
1014 'Voice Broadcast Service Status'),
1015 EF_eMLPP(),
1016 EF_AAeM(),
1017 EF_CBMID(),
1018 EF_ECC(),
1019 EF_CBMIR(),
1020 EF_DCK(),
1021 EF_CNL(),
1022 EF_NIA(),
1023 EF_Kc('6f52', None, 'EF.KcGPRS', 'GPRS Ciphering key KcGPRS'),
1024 EF_LOCIGPRS(),
1025 TransparentEF('6f54', None, 'EF.SUME', 'SetUpMenu Elements'),
1026 EF_xPLMNwAcT('6f60', None, 'EF.PLMNwAcT',
1027 'User controlled PLMN Selector with Access Technology'),
1028 EF_xPLMNwAcT('6f61', None, 'EF.OPLMNwAcT',
1029 'Operator controlled PLMN Selector with Access Technology'),
1030 EF_xPLMNwAcT('6f62', None, 'EF.HPLMNwAcT',
1031 'HPLMN Selector with Access Technology'),
1032 EF_CPBCCH(),
1033 EF_InvScan(),
1034 EF_PNN(),
1035 EF_OPL(),
1036 EF_ADN('6fc7', None, 'EF.MBDN', 'Mailbox Dialling Numbers'),
1037 EF_MBI(),
1038 EF_MWIS(),
1039 EF_ADN('6fcb', None, 'EF.CFIS',
1040 'Call Forwarding Indication Status'),
1041 EF_EXT('6fc8', None, 'EF.EXT6', 'Externsion6 (MBDN)'),
1042 EF_EXT('6fcc', None, 'EF.EXT7', 'Externsion7 (CFIS)'),
1043 EF_SPDI(),
1044 EF_MMSN(),
1045 EF_EXT('6fcf', None, 'EF.EXT8', 'Extension8 (MMSN)'),
1046 EF_MMSICP(),
1047 EF_MMSUP(),
1048 EF_MMSUCP(),
1049 ]
Harald Welteb2edd142021-01-08 23:29:35 +01001050 self.add_files(files)
1051
Harald Weltec91085e2022-02-10 18:05:45 +01001052
Philipp Maierc8387dc2021-10-29 17:59:50 +02001053class CardProfileSIM(CardProfile):
Philipp Maiera028c7d2021-11-08 16:12:03 +01001054
1055 ORDER = 2
1056
Philipp Maierc8387dc2021-10-29 17:59:50 +02001057 def __init__(self):
Philipp Maiera4df9422021-11-10 17:13:40 +01001058 sw = {
Harald Weltec91085e2022-02-10 18:05:45 +01001059 'Normal': {
1060 '9000': 'Normal ending of the command',
1061 '91xx': 'normal ending of the command, with extra information from the proactive SIM containing a command for the ME',
1062 '9exx': 'length XX of the response data given in case of a SIM data download error',
1063 '9fxx': 'length XX of the response data',
Philipp Maiera4df9422021-11-10 17:13:40 +01001064 },
Harald Weltec91085e2022-02-10 18:05:45 +01001065 'Postponed processing': {
1066 '9300': 'SIM Application Toolkit is busy. Command cannot be executed at present, further normal commands are allowed',
Philipp Maiera4df9422021-11-10 17:13:40 +01001067 },
Harald Weltec91085e2022-02-10 18:05:45 +01001068 'Memory management': {
1069 '920x': 'command successful but after using an internal update retry routine X times',
1070 '9240': 'memory problem',
Philipp Maiera4df9422021-11-10 17:13:40 +01001071 },
Harald Weltec91085e2022-02-10 18:05:45 +01001072 'Referencing management': {
1073 '9400': 'no EF selected',
1074 '9402': 'out of range (invalid address)',
1075 '9404': 'file ID not found or pattern not found',
1076 '9408': 'file is inconsistent with the command',
Philipp Maiera4df9422021-11-10 17:13:40 +01001077 },
Harald Weltec91085e2022-02-10 18:05:45 +01001078 'Security management': {
1079 '9802': 'no CHV initialized',
1080 '9804': 'access condition not fulfilled, unsuccessful CHV verification or authentication failed',
1081 '9808': 'in contradiction with CHV status',
1082 '9810': 'in contradiction with invalidation status',
1083 '9840': 'unsuccessful verification, CHV blocked, UNBLOCK CHV blocked',
1084 '9850': 'increase cannot be performed, Max value reached',
Philipp Maiera4df9422021-11-10 17:13:40 +01001085 },
Harald Weltec91085e2022-02-10 18:05:45 +01001086 'Application independent errors': {
1087 '67xx': 'incorrect parameter P3',
1088 '6bxx': 'incorrect parameter P1 or P2',
1089 '6dxx': 'unknown instruction code given in the command',
1090 '6exx': 'wrong instruction class given in the command',
1091 '6fxx': 'technical problem with no diagnostic given',
Philipp Maiera4df9422021-11-10 17:13:40 +01001092 },
Harald Weltec91085e2022-02-10 18:05:45 +01001093 }
Philipp Maiera4df9422021-11-10 17:13:40 +01001094
Harald Weltec91085e2022-02-10 18:05:45 +01001095 super().__init__('SIM', desc='GSM SIM Card', cla="a0",
1096 sel_ctrl="0000", files_in_mf=[DF_TELECOM(), DF_GSM()], sw=sw)
Philipp Maier4ab971c2021-11-11 11:53:49 +01001097
Philipp Maier5998a3a2021-11-16 15:16:39 +01001098 @staticmethod
Harald Weltec91085e2022-02-10 18:05:45 +01001099 def decode_select_response(resp_hex: str) -> object:
Philipp Maier4ab971c2021-11-11 11:53:49 +01001100 resp_bin = h2b(resp_hex)
1101 struct_of_file_map = {
1102 0: 'transparent',
1103 1: 'linear_fixed',
1104 3: 'cyclic'
Harald Weltec91085e2022-02-10 18:05:45 +01001105 }
Philipp Maier4ab971c2021-11-11 11:53:49 +01001106 type_of_file_map = {
1107 1: 'mf',
1108 2: 'df',
1109 4: 'working_ef'
Harald Weltec91085e2022-02-10 18:05:45 +01001110 }
Philipp Maier4ab971c2021-11-11 11:53:49 +01001111 ret = {
1112 'file_descriptor': {},
1113 'proprietary_info': {},
Harald Weltec91085e2022-02-10 18:05:45 +01001114 }
Philipp Maier4ab971c2021-11-11 11:53:49 +01001115 ret['file_id'] = b2h(resp_bin[4:6])
Harald Weltec91085e2022-02-10 18:05:45 +01001116 ret['proprietary_info']['available_memory'] = int.from_bytes(
1117 resp_bin[2:4], 'big')
1118 file_type = type_of_file_map[resp_bin[6]
1119 ] if resp_bin[6] in type_of_file_map else resp_bin[6]
Philipp Maier4ab971c2021-11-11 11:53:49 +01001120 ret['file_descriptor']['file_type'] = file_type
1121 if file_type in ['mf', 'df']:
1122 ret['file_characteristics'] = b2h(resp_bin[13:14])
1123 ret['num_direct_child_df'] = resp_bin[14]
1124 ret['num_direct_child_ef'] = resp_bin[15]
1125 ret['num_chv_unblock_adm_codes'] = int(resp_bin[16])
1126 # CHV / UNBLOCK CHV stats
1127 elif file_type in ['working_ef']:
Harald Weltec91085e2022-02-10 18:05:45 +01001128 file_struct = struct_of_file_map[resp_bin[13]
1129 ] if resp_bin[13] in struct_of_file_map else resp_bin[13]
Philipp Maier4ab971c2021-11-11 11:53:49 +01001130 ret['file_descriptor']['structure'] = file_struct
1131 ret['access_conditions'] = b2h(resp_bin[8:10])
1132 if resp_bin[11] & 0x01 == 0:
1133 ret['life_cycle_status_int'] = 'operational_activated'
1134 elif resp_bin[11] & 0x04:
1135 ret['life_cycle_status_int'] = 'operational_deactivated'
1136 else:
1137 ret['life_cycle_status_int'] = 'terminated'
1138 return ret
Philipp Maiera028c7d2021-11-08 16:12:03 +01001139
1140 @staticmethod
Harald Weltec91085e2022-02-10 18:05:45 +01001141 def match_with_card(scc: SimCardCommands) -> bool:
Philipp Maiera028c7d2021-11-08 16:12:03 +01001142 return match_sim(scc)