blob: 30df0b793d766657932b606f046d76c4f11d6a59 [file] [log] [blame]
Supreeth Herle8b72c272020-03-22 08:55:50 +01001# -*- coding: utf-8 -*-
2
3"""
Harald Welte16ec96a2021-04-21 10:46:19 +02004Various constants from 3GPP TS 31.103 V16.1.0
Supreeth Herle8b72c272020-03-22 08:55:50 +01005"""
6
7#
8# Copyright (C) 2020 Supreeth Herle <herlesupreeth@gmail.com>
Harald Welteb2edd142021-01-08 23:29:35 +01009# Copyright (C) 2021 Harald Welte <laforge@osmocom.org>
Supreeth Herle8b72c272020-03-22 08:55:50 +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
Harald Welteb2edd142021-01-08 23:29:35 +010025from pySim.filesystem import *
26from pySim.utils import *
Harald Welte14105dc2021-05-31 08:48:51 +020027from pySim.tlv import *
Harald Welte35dfe822021-04-21 10:50:12 +020028from pySim.ts_51_011 import EF_AD, EF_SMS, EF_SMSS, EF_SMSR, EF_SMSP
Harald Welte6f8a8702022-07-17 21:50:31 +020029from pySim.ts_31_102 import ADF_USIM, EF_FromPreferred
30from pySim.ts_31_102_telecom import EF_UServiceTable
Harald Welteb2edd142021-01-08 23:29:35 +010031import pySim.ts_102_221
Harald Weltefc4833e2021-05-02 21:46:06 +020032from pySim.ts_102_221 import EF_ARR
Harald Welteb2edd142021-01-08 23:29:35 +010033
Supreeth Herle8b72c272020-03-22 08:55:50 +010034# Mapping between ISIM Service Number and its description
35EF_IST_map = {
Harald Weltec91085e2022-02-10 18:05:45 +010036 1: 'P-CSCF address',
37 2: 'Generic Bootstrapping Architecture (GBA)',
38 3: 'HTTP Digest',
39 4: 'GBA-based Local Key Establishment Mechanism',
40 5: 'Support of P-CSCF discovery for IMS Local Break Out',
41 6: 'Short Message Storage (SMS)',
42 7: 'Short Message Status Reports (SMSR)',
43 8: 'Support for SM-over-IP including data download via SMS-PP as defined in TS 31.111 [31]',
44 9: 'Communication Control for IMS by ISIM',
45 10: 'Support of UICC access to IMS',
46 11: 'URI support by UICC',
47 12: 'Media Type support',
48 13: 'IMS call disconnection cause',
49 14: 'URI support for MO SHORT MESSAGE CONTROL',
50 15: 'MCPTT',
51 16: 'URI support for SMS-PP DOWNLOAD as defined in 3GPP TS 31.111 [31]',
52 17: 'From Preferred',
53 18: 'IMS configuration data',
54 19: 'XCAP Configuration Data',
55 20: 'WebRTC URI',
56 21: 'MuD and MiD configuration data',
Supreeth Herle8b72c272020-03-22 08:55:50 +010057}
herlesupreeth75c14c02020-12-23 09:41:07 +010058
59EF_ISIM_ADF_map = {
Harald Weltec91085e2022-02-10 18:05:45 +010060 'IST': '6F07',
61 'IMPI': '6F02',
62 'DOMAIN': '6F03',
63 'IMPU': '6F04',
64 'AD': '6FAD',
65 'ARR': '6F06',
66 'PCSCF': '6F09',
67 'GBAP': '6FD5',
68 'GBANL': '6FD7',
69 'NAFKCA': '6FDD',
70 'UICCIARI': '6FE7',
71 'SMS': '6F3C',
72 'SMSS': '6F43',
73 'SMSR': '6F47',
74 'SMSP': '6F42',
75 'FromPreferred': '6FF7',
76 'IMSConfigData': '6FF8',
77 'XCAPConfigData': '6FFC',
78 'WebRTCURI': '6FFA'
herlesupreeth75c14c02020-12-23 09:41:07 +010079}
Harald Welteb2edd142021-01-08 23:29:35 +010080
81# TS 31.103 Section 4.2.2
82class EF_IMPI(TransparentEF):
Harald Welte14105dc2021-05-31 08:48:51 +020083 class nai(BER_TLV_IE, tag=0x80):
84 _construct = GreedyString("utf8")
Harald Weltec91085e2022-02-10 18:05:45 +010085
Harald Welte6169c722022-02-12 09:05:15 +010086 def __init__(self, fid='6f02', sfid=0x02, name='EF.IMPI', desc='IMS private user identity', **kwargs):
87 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +020088 self._tlv = EF_IMPI.nai
Harald Welteb2edd142021-01-08 23:29:35 +010089
90# TS 31.103 Section 4.2.3
91class EF_DOMAIN(TransparentEF):
Harald Welte14105dc2021-05-31 08:48:51 +020092 class domain(BER_TLV_IE, tag=0x80):
93 _construct = GreedyString("utf8")
Harald Weltec91085e2022-02-10 18:05:45 +010094
æstrid smithb7f35ac2022-03-26 19:59:54 -070095 def __init__(self, fid='6f03', sfid=0x05, name='EF.DOMAIN', desc='Home Network Domain Name', **kwargs):
Harald Welte6169c722022-02-12 09:05:15 +010096 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +020097 self._tlv = EF_DOMAIN.domain
Harald Welteb2edd142021-01-08 23:29:35 +010098
99# TS 31.103 Section 4.2.4
100class EF_IMPU(LinFixedEF):
Harald Welte14105dc2021-05-31 08:48:51 +0200101 class impu(BER_TLV_IE, tag=0x80):
102 _construct = GreedyString("utf8")
Harald Weltec91085e2022-02-10 18:05:45 +0100103
Harald Welte6169c722022-02-12 09:05:15 +0100104 def __init__(self, fid='6f04', sfid=0x04, name='EF.IMPU', desc='IMS public user identity', **kwargs):
105 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200106 self._tlv = EF_IMPU.impu
Harald Welteb2edd142021-01-08 23:29:35 +0100107
Harald Welte6ca2fa72022-02-12 16:29:31 +0100108# TS 31.103 Section 4.2.7
109class EF_IST(EF_UServiceTable):
110 def __init__(self, **kwargs):
Harald Welte13edf302022-07-21 15:19:23 +0200111 super().__init__('6f07', 0x07, 'EF.IST', 'ISIM Service Table', (1, None), EF_IST_map)
Harald Welte6ca2fa72022-02-12 16:29:31 +0100112 # add those commands to the general commands of a TransparentEF
113 self.shell_commands += [self.AddlShellCommands()]
114
115 @with_default_category('File-Specific Commands')
116 class AddlShellCommands(CommandSet):
117 def __init__(self):
118 super().__init__()
119
120 def do_ist_service_activate(self, arg):
121 """Activate a service within EF.IST"""
122 self._cmd.card.update_ist(int(arg), 1)
123
124 def do_ist_service_deactivate(self, arg):
125 """Deactivate a service within EF.IST"""
126 self._cmd.card.update_ist(int(arg), 0)
127
128 def do_ist_service_check(self, arg):
Harald Welte3bb516b2022-02-12 21:53:18 +0100129 """Check consistency between services of this file and files present/activated.
130
131 Many services determine if one or multiple files shall be present/activated or if they shall be
132 absent/deactivated. This performs a consistency check to ensure that no services are activated
133 for files that are not - and vice-versa, no files are activated for services that are not. Error
134 messages are printed for every inconsistency found."""
Harald Weltea6c0f882022-07-17 14:23:17 +0200135 selected_file = self._cmd.lchan.selected_file
Harald Welte3bb516b2022-02-12 21:53:18 +0100136 num_problems = selected_file.ust_service_check(self._cmd)
137 self._cmd.poutput("===> %u service / file inconsistencies detected" % num_problems)
138
Harald Welte6ca2fa72022-02-12 16:29:31 +0100139
Harald Welteb2edd142021-01-08 23:29:35 +0100140# TS 31.103 Section 4.2.8
141class EF_PCSCF(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100142 def __init__(self, fid='6f09', sfid=None, name='EF.P-CSCF', desc='P-CSCF Address', **kwargs):
143 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Weltec91085e2022-02-10 18:05:45 +0100144
Harald Welteb2edd142021-01-08 23:29:35 +0100145 def _decode_record_hex(self, raw_hex):
Philipp Maier86b09da2021-04-30 15:13:57 +0200146 addr, addr_type = dec_addr_tlv(raw_hex)
147 return {"addr": addr, "addr_type": addr_type}
Harald Weltec91085e2022-02-10 18:05:45 +0100148
Harald Welteb2edd142021-01-08 23:29:35 +0100149 def _encode_record_hex(self, json_in):
Philipp Maier86b09da2021-04-30 15:13:57 +0200150 addr = json_in['addr']
151 addr_type = json_in['addr_type']
152 return enc_addr_tlv(addr, addr_type)
Harald Welteb2edd142021-01-08 23:29:35 +0100153
154# TS 31.103 Section 4.2.9
Harald Welte89e59542021-04-02 21:33:13 +0200155class EF_GBABP(TransparentEF):
Harald Welte6169c722022-02-12 09:05:15 +0100156 def __init__(self, fid='6fd5', sfid=None, name='EF.GBABP', desc='GBA Bootstrapping', **kwargs):
157 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welteb2edd142021-01-08 23:29:35 +0100158
159# TS 31.103 Section 4.2.10
160class EF_GBANL(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100161 def __init__(self, fid='6fd7', sfid=None, name='EF.GBANL', desc='GBA NAF List', **kwargs):
162 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welteb2edd142021-01-08 23:29:35 +0100163
164# TS 31.103 Section 4.2.11
165class EF_NAFKCA(LinFixedEF):
Harald Welte6169c722022-02-12 09:05:15 +0100166 def __init__(self, fid='6fdd', sfid=None, name='EF.NAFKCA', desc='NAF Key Centre Address', **kwargs):
167 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welteb2edd142021-01-08 23:29:35 +0100168
169# TS 31.103 Section 4.2.16
170class EF_UICCIARI(LinFixedEF):
Harald Welte14105dc2021-05-31 08:48:51 +0200171 class iari(BER_TLV_IE, tag=0x80):
172 _construct = GreedyString("utf8")
Harald Weltec91085e2022-02-10 18:05:45 +0100173
Harald Welte6169c722022-02-12 09:05:15 +0100174 def __init__(self, fid='6fe7', sfid=None, name='EF.UICCIARI', desc='UICC IARI', **kwargs):
175 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200176 self._tlv = EF_UICCIARI.iari
Harald Welteb2edd142021-01-08 23:29:35 +0100177
178# TS 31.103 Section 4.2.18
Harald Welte27881622021-04-21 11:16:31 +0200179class EF_IMSConfigData(BerTlvEF):
Harald Welte226b8662022-02-13 11:53:08 +0100180 class ImsConfigDataEncoding(BER_TLV_IE, tag=0x80):
181 _construct = HexAdapter(Bytes(1))
182 class ImsConfigData(BER_TLV_IE, tag=0x81):
183 _construct = GreedyString
184 # pylint: disable=undefined-variable
Harald Welteafe093c2022-07-17 21:39:51 +0200185 class ImsConfigDataCollection(TLV_IE_Collection, nested=[ImsConfigDataEncoding, ImsConfigData]):
Harald Welte226b8662022-02-13 11:53:08 +0100186 pass
Harald Welte6169c722022-02-12 09:05:15 +0100187 def __init__(self, fid='6ff8', sfid=None, name='EF.IMSConfigData', desc='IMS Configuration Data', **kwargs):
188 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte226b8662022-02-13 11:53:08 +0100189 self._tlv = EF_IMSConfigData.ImsConfigDataCollection
Harald Welteb2edd142021-01-08 23:29:35 +0100190
191# TS 31.103 Section 4.2.19
Harald Welte27881622021-04-21 11:16:31 +0200192class EF_XCAPConfigData(BerTlvEF):
Harald Welte226b8662022-02-13 11:53:08 +0100193 class Access(BER_TLV_IE, tag=0x81):
194 pass
195 class ApplicationName(BER_TLV_IE, tag=0x82):
196 pass
197 class ProviderID(BER_TLV_IE, tag=0x83):
198 pass
199 class URI(BER_TLV_IE, tag=0x84):
200 pass
201 class XcapAuthenticationUserName(BER_TLV_IE, tag=0x85):
202 pass
203 class XcapAuthenticationPassword(BER_TLV_IE, tag=0x86):
204 pass
205 class XcapAuthenticationType(BER_TLV_IE, tag=0x87):
206 pass
207 class AddressType(BER_TLV_IE, tag=0x88):
208 pass
209 class Address(BER_TLV_IE, tag=0x89):
210 pass
211 class PDPAuthenticationType(BER_TLV_IE, tag=0x8a):
212 pass
213 class PDPAuthenticationName(BER_TLV_IE, tag=0x8b):
214 pass
215 class PDPAuthenticationSecret(BER_TLV_IE, tag=0x8c):
216 pass
217
218 class AccessForXCAP(BER_TLV_IE, tag=0x81):
219 pass
220 class NumberOfXcapConnParPolicy(BER_TLV_IE, tag=0x82):
221 _construct = Int8ub
222 # pylint: disable=undefined-variable
223 class XcapConnParamsPolicyPart(BER_TLV_IE, tag=0xa1, nested=[Access, ApplicationName, ProviderID, URI,
224 XcapAuthenticationUserName, XcapAuthenticationPassword,
225 XcapAuthenticationType, AddressType, Address, PDPAuthenticationType,
226 PDPAuthenticationName, PDPAuthenticationSecret]):
227 pass
228 class XcapConnParamsPolicy(BER_TLV_IE, tag=0xa0, nested=[AccessForXCAP, NumberOfXcapConnParPolicy, XcapConnParamsPolicyPart]):
229 pass
230 class XcapConnParamsPolicyDO(BER_TLV_IE, tag=0x80, nested=[XcapConnParamsPolicy]):
231 pass
Harald Welte6169c722022-02-12 09:05:15 +0100232 def __init__(self, fid='6ffc', sfid=None, name='EF.XCAPConfigData', desc='XCAP Configuration Data', **kwargs):
233 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte226b8662022-02-13 11:53:08 +0100234 self._tlv = EF_XCAPConfigData.XcapConnParamsPolicy
Harald Welteb2edd142021-01-08 23:29:35 +0100235
236# TS 31.103 Section 4.2.20
237class EF_WebRTCURI(TransparentEF):
Harald Welte14105dc2021-05-31 08:48:51 +0200238 class uri(BER_TLV_IE, tag=0x80):
239 _construct = GreedyString("utf8")
Harald Weltec91085e2022-02-10 18:05:45 +0100240
Harald Welte6169c722022-02-12 09:05:15 +0100241 def __init__(self, fid='6ffa', sfid=None, name='EF.WebRTCURI', desc='WebRTC URI', **kwargs):
242 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte14105dc2021-05-31 08:48:51 +0200243 self._tlv = EF_WebRTCURI.uri
Harald Welteb2edd142021-01-08 23:29:35 +0100244
Harald Welte16ec96a2021-04-21 10:46:19 +0200245# TS 31.103 Section 4.2.21
Harald Welte27881622021-04-21 11:16:31 +0200246class EF_MuDMiDConfigData(BerTlvEF):
Harald Welte226b8662022-02-13 11:53:08 +0100247 class MudMidConfigDataEncoding(BER_TLV_IE, tag=0x80):
248 _construct = HexAdapter(Bytes(1))
249 class MudMidConfigData(BER_TLV_IE, tag=0x81):
250 _construct = GreedyString
251 # pylint: disable=undefined-variable
Harald Welteafe093c2022-07-17 21:39:51 +0200252 class MudMidConfigDataCollection(TLV_IE_Collection, nested=[MudMidConfigDataEncoding, MudMidConfigData]):
Harald Welte226b8662022-02-13 11:53:08 +0100253 pass
Harald Welte16ec96a2021-04-21 10:46:19 +0200254 def __init__(self, fid='6ffe', sfid=None, name='EF.MuDMiDConfigData',
Harald Welte6169c722022-02-12 09:05:15 +0100255 desc='MuD and MiD Configuration Data', **kwargs):
256 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
Harald Welte226b8662022-02-13 11:53:08 +0100257 self._tlv = EF_MuDMiDConfigData.MudMidConfigDataCollection
Harald Welte16ec96a2021-04-21 10:46:19 +0200258
Harald Welteb2edd142021-01-08 23:29:35 +0100259
260class ADF_ISIM(CardADF):
261 def __init__(self, aid='a0000000871004', name='ADF.ISIM', fid=None, sfid=None,
262 desc='ISIM Application'):
263 super().__init__(aid=aid, fid=fid, sfid=sfid, name=name, desc=desc)
264
265 files = [
266 EF_IMPI(),
267 EF_DOMAIN(),
268 EF_IMPU(),
269 EF_AD(),
Harald Weltefc4833e2021-05-02 21:46:06 +0200270 EF_ARR('6f06', 0x06),
Harald Welte6ca2fa72022-02-12 16:29:31 +0100271 EF_IST(),
Harald Welte6169c722022-02-12 09:05:15 +0100272 EF_PCSCF(service=5),
273 EF_GBABP(service=2),
274 EF_GBANL(service=2),
275 EF_NAFKCA(service=2),
276 EF_SMS(service=(6,8)),
277 EF_SMSS(service=(6,8)),
278 EF_SMSR(service=(7,8)),
279 EF_SMSP(service=8),
280 EF_UICCIARI(service=10),
281 EF_FromPreferred(service=17),
282 EF_IMSConfigData(service=18),
283 EF_XCAPConfigData(service=19),
284 EF_WebRTCURI(service=20),
285 EF_MuDMiDConfigData(service=21),
Harald Weltec91085e2022-02-10 18:05:45 +0100286 ]
Harald Welteb2edd142021-01-08 23:29:35 +0100287 self.add_files(files)
Harald Welte15fae982021-04-10 10:22:27 +0200288 # add those commands to the general commands of a TransparentEF
289 self.shell_commands += [ADF_USIM.AddlShellCommands()]
Harald Welteb2edd142021-01-08 23:29:35 +0100290
291 def decode_select_response(self, data_hex):
Philipp Maier5998a3a2021-11-16 15:16:39 +0100292 return pySim.ts_102_221.CardProfileUICC.decode_select_response(data_hex)
Harald Welteb2edd142021-01-08 23:29:35 +0100293
Harald Weltec91085e2022-02-10 18:05:45 +0100294
Harald Welteb2edd142021-01-08 23:29:35 +0100295# TS 31.103 Section 7.1
296sw_isim = {
297 'Security management': {
298 '9862': 'Authentication error, incorrect MAC',
299 '9864': 'Authentication error, security context not supported',
300 }
301}
302
Harald Weltec91085e2022-02-10 18:05:45 +0100303
Philipp Maier57f65ee2021-10-18 14:09:02 +0200304class CardApplicationISIM(CardApplication):
305 def __init__(self):
Harald Weltec91085e2022-02-10 18:05:45 +0100306 super().__init__('ISIM', adf=ADF_ISIM(), sw=sw_isim)