blob: 6b69990ea68fce182150c73778316853690ef37d [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 Weltee8947492022-02-10 10:33:20 +010029from pySim.ts_31_102 import ADF_USIM, EF_FromPreferred, EF_UServiceTable
Harald Welteb2edd142021-01-08 23:29:35 +010030import pySim.ts_102_221
Harald Weltefc4833e2021-05-02 21:46:06 +020031from pySim.ts_102_221 import EF_ARR
Harald Welteb2edd142021-01-08 23:29:35 +010032
Supreeth Herle8b72c272020-03-22 08:55:50 +010033# Mapping between ISIM Service Number and its description
34EF_IST_map = {
35 1: 'P-CSCF address',
36 2: 'Generic Bootstrapping Architecture (GBA)',
37 3: 'HTTP Digest',
38 4: 'GBA-based Local Key Establishment Mechanism',
39 5: 'Support of P-CSCF discovery for IMS Local Break Out',
40 6: 'Short Message Storage (SMS)',
41 7: 'Short Message Status Reports (SMSR)',
42 8: 'Support for SM-over-IP including data download via SMS-PP as defined in TS 31.111 [31]',
43 9: 'Communication Control for IMS by ISIM',
44 10: 'Support of UICC access to IMS',
45 11: 'URI support by UICC',
46 12: 'Media Type support',
47 13: 'IMS call disconnection cause',
48 14: 'URI support for MO SHORT MESSAGE CONTROL',
49 15: 'MCPTT',
50 16: 'URI support for SMS-PP DOWNLOAD as defined in 3GPP TS 31.111 [31]',
51 17: 'From Preferred',
52 18: 'IMS configuration data',
Supreeth Herle28484d02020-03-25 15:00:20 +010053 19: 'XCAP Configuration Data',
54 20: 'WebRTC URI',
Harald Welte16ec96a2021-04-21 10:46:19 +020055 21: 'MuD and MiD configuration data',
Supreeth Herle8b72c272020-03-22 08:55:50 +010056}
herlesupreeth75c14c02020-12-23 09:41:07 +010057
58EF_ISIM_ADF_map = {
59 'IST': '6F07',
60 'IMPI': '6F02',
61 'DOMAIN': '6F03',
62 'IMPU': '6F04',
63 'AD': '6FAD',
64 'ARR': '6F06',
65 'PCSCF': '6F09',
66 'GBAP': '6FD5',
67 'GBANL': '6FD7',
68 'NAFKCA': '6FDD',
69 'UICCIARI': '6FE7',
70 'SMS': '6F3C',
71 'SMSS': '6F43',
72 'SMSR': '6F47',
73 'SMSP': '6F42',
74 'FromPreferred': '6FF7',
75 'IMSConfigData': '6FF8',
76 'XCAPConfigData': '6FFC',
77 'WebRTCURI': '6FFA'
78}
Harald Welteb2edd142021-01-08 23:29:35 +010079
80# TS 31.103 Section 4.2.2
81class EF_IMPI(TransparentEF):
Harald Welte14105dc2021-05-31 08:48:51 +020082 class nai(BER_TLV_IE, tag=0x80):
83 _construct = GreedyString("utf8")
Harald Welteb2edd142021-01-08 23:29:35 +010084 def __init__(self, fid='6f02', sfid=0x02, name='EF.IMPI', desc='IMS private user identity'):
85 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
Harald Welte14105dc2021-05-31 08:48:51 +020086 self._tlv = EF_IMPI.nai
Harald Welteb2edd142021-01-08 23:29:35 +010087
88# TS 31.103 Section 4.2.3
89class EF_DOMAIN(TransparentEF):
Harald Welte14105dc2021-05-31 08:48:51 +020090 class domain(BER_TLV_IE, tag=0x80):
91 _construct = GreedyString("utf8")
Harald Welteb2edd142021-01-08 23:29:35 +010092 def __init__(self, fid='6f05', sfid=0x05, name='EF.DOMAIN', desc='Home Network Domain Name'):
93 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
Harald Welte14105dc2021-05-31 08:48:51 +020094 self._tlv = EF_DOMAIN.domain
Harald Welteb2edd142021-01-08 23:29:35 +010095
96# TS 31.103 Section 4.2.4
97class EF_IMPU(LinFixedEF):
Harald Welte14105dc2021-05-31 08:48:51 +020098 class impu(BER_TLV_IE, tag=0x80):
99 _construct = GreedyString("utf8")
Harald Welteb2edd142021-01-08 23:29:35 +0100100 def __init__(self, fid='6f04', sfid=0x04, name='EF.IMPU', desc='IMS public user identity'):
101 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
Harald Welte14105dc2021-05-31 08:48:51 +0200102 self._tlv = EF_IMPU.impu
Harald Welteb2edd142021-01-08 23:29:35 +0100103
Harald Welteb2edd142021-01-08 23:29:35 +0100104# TS 31.103 Section 4.2.8
105class EF_PCSCF(LinFixedEF):
106 def __init__(self, fid='6f09', sfid=None, name='EF.P-CSCF', desc='P-CSCF Address'):
107 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
108 def _decode_record_hex(self, raw_hex):
Philipp Maier86b09da2021-04-30 15:13:57 +0200109 addr, addr_type = dec_addr_tlv(raw_hex)
110 return {"addr": addr, "addr_type": addr_type}
Harald Welteb2edd142021-01-08 23:29:35 +0100111 def _encode_record_hex(self, json_in):
Philipp Maier86b09da2021-04-30 15:13:57 +0200112 addr = json_in['addr']
113 addr_type = json_in['addr_type']
114 return enc_addr_tlv(addr, addr_type)
Harald Welteb2edd142021-01-08 23:29:35 +0100115
116# TS 31.103 Section 4.2.9
Harald Welte89e59542021-04-02 21:33:13 +0200117class EF_GBABP(TransparentEF):
Harald Weltec9cdce32021-04-11 10:28:28 +0200118 def __init__(self, fid='6fd5', sfid=None, name='EF.GBABP', desc='GBA Bootstrapping'):
Harald Welteb2edd142021-01-08 23:29:35 +0100119 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
120
121# TS 31.103 Section 4.2.10
122class EF_GBANL(LinFixedEF):
123 def __init__(self, fid='6fd7', sfid=None, name='EF.GBANL', desc='GBA NAF List'):
124 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
125
126# TS 31.103 Section 4.2.11
127class EF_NAFKCA(LinFixedEF):
128 def __init__(self, fid='6fdd', sfid=None, name='EF.NAFKCA', desc='NAF Key Centre Address'):
129 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
130
131# TS 31.103 Section 4.2.16
132class EF_UICCIARI(LinFixedEF):
Harald Welte14105dc2021-05-31 08:48:51 +0200133 class iari(BER_TLV_IE, tag=0x80):
134 _construct = GreedyString("utf8")
Harald Welteb2edd142021-01-08 23:29:35 +0100135 def __init__(self, fid='6fe7', sfid=None, name='EF.UICCIARI', desc='UICC IARI'):
136 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
Harald Welte14105dc2021-05-31 08:48:51 +0200137 self._tlv = EF_UICCIARI.iari
Harald Welteb2edd142021-01-08 23:29:35 +0100138
139# TS 31.103 Section 4.2.18
Harald Welte27881622021-04-21 11:16:31 +0200140class EF_IMSConfigData(BerTlvEF):
Harald Welteb2edd142021-01-08 23:29:35 +0100141 def __init__(self, fid='6ff8', sfid=None, name='EF.IMSConfigData', desc='IMS Configuration Data'):
142 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
143
144# TS 31.103 Section 4.2.19
Harald Welte27881622021-04-21 11:16:31 +0200145class EF_XCAPConfigData(BerTlvEF):
Harald Welteb2edd142021-01-08 23:29:35 +0100146 def __init__(self, fid='6ffc', sfid=None, name='EF.XCAPConfigData', desc='XCAP Configuration Data'):
147 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
148
149# TS 31.103 Section 4.2.20
150class EF_WebRTCURI(TransparentEF):
Harald Welte14105dc2021-05-31 08:48:51 +0200151 class uri(BER_TLV_IE, tag=0x80):
152 _construct = GreedyString("utf8")
Harald Welteb2edd142021-01-08 23:29:35 +0100153 def __init__(self, fid='6ffa', sfid=None, name='EF.WebRTCURI', desc='WebRTC URI'):
154 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
Harald Welte14105dc2021-05-31 08:48:51 +0200155 self._tlv = EF_WebRTCURI.uri
Harald Welteb2edd142021-01-08 23:29:35 +0100156
Harald Welte16ec96a2021-04-21 10:46:19 +0200157# TS 31.103 Section 4.2.21
Harald Welte27881622021-04-21 11:16:31 +0200158class EF_MuDMiDConfigData(BerTlvEF):
Harald Welte16ec96a2021-04-21 10:46:19 +0200159 def __init__(self, fid='6ffe', sfid=None, name='EF.MuDMiDConfigData',
160 desc='MuD and MiD Configuration Data'):
161 super().__init__(fid=fid, sfid=sfid, name=name, desc=desc)
162
Harald Welteb2edd142021-01-08 23:29:35 +0100163
164class ADF_ISIM(CardADF):
165 def __init__(self, aid='a0000000871004', name='ADF.ISIM', fid=None, sfid=None,
166 desc='ISIM Application'):
167 super().__init__(aid=aid, fid=fid, sfid=sfid, name=name, desc=desc)
168
169 files = [
170 EF_IMPI(),
171 EF_DOMAIN(),
172 EF_IMPU(),
173 EF_AD(),
Harald Weltefc4833e2021-05-02 21:46:06 +0200174 EF_ARR('6f06', 0x06),
Harald Weltee8947492022-02-10 10:33:20 +0100175 EF_UServiceTable('6f07', 0x07, 'EF.IST', 'ISIM Service Table', {1,None}, EF_IST_map),
Harald Welteb2edd142021-01-08 23:29:35 +0100176 EF_PCSCF(),
177 EF_GBABP(),
178 EF_GBANL(),
179 EF_NAFKCA(),
Harald Welte35dfe822021-04-21 10:50:12 +0200180 EF_SMS(),
181 EF_SMSS(),
182 EF_SMSR(),
183 EF_SMSP(),
Harald Welteb2edd142021-01-08 23:29:35 +0100184 EF_UICCIARI(),
Harald Welte71290072021-04-21 10:58:24 +0200185 EF_FromPreferred(),
Harald Welteb2edd142021-01-08 23:29:35 +0100186 EF_IMSConfigData(),
187 EF_XCAPConfigData(),
188 EF_WebRTCURI(),
Harald Welte16ec96a2021-04-21 10:46:19 +0200189 EF_MuDMiDConfigData(),
Harald Welteb2edd142021-01-08 23:29:35 +0100190 ]
191 self.add_files(files)
Harald Welte15fae982021-04-10 10:22:27 +0200192 # add those commands to the general commands of a TransparentEF
193 self.shell_commands += [ADF_USIM.AddlShellCommands()]
Harald Welteb2edd142021-01-08 23:29:35 +0100194
195 def decode_select_response(self, data_hex):
Philipp Maier5998a3a2021-11-16 15:16:39 +0100196 return pySim.ts_102_221.CardProfileUICC.decode_select_response(data_hex)
Harald Welteb2edd142021-01-08 23:29:35 +0100197
198# TS 31.103 Section 7.1
199sw_isim = {
200 'Security management': {
201 '9862': 'Authentication error, incorrect MAC',
202 '9864': 'Authentication error, security context not supported',
203 }
204}
205
Philipp Maier57f65ee2021-10-18 14:09:02 +0200206class CardApplicationISIM(CardApplication):
207 def __init__(self):
208 super().__init__('ISIM', adf=ADF_ISIM(), sw=sw_isim)