aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2023-06-06 10:32:46 +0200
committerHarald Welte <laforge@osmocom.org>2023-06-06 17:36:39 +0200
commite619105249167d8f14e90f2a72ec77ea7aeb1140 (patch)
treec7052906055f422b9feb13ebc02414f0601ac7d0
parentd75fa3f7c90541db51127ddff97ccf6c3f03734e (diff)
HPSIM application support
Support HPSIM as specified in 3GPP TS 31.104 Change-Id: I2729fd2b88cd13c36d7128753ad8d3e3d08a9b52
-rwxr-xr-xpySim-shell.py2
-rw-r--r--pySim/ts_31_104.py60
2 files changed, 62 insertions, 0 deletions
diff --git a/pySim-shell.py b/pySim-shell.py
index 2b8c0be..fc825ef 100755
--- a/pySim-shell.py
+++ b/pySim-shell.py
@@ -61,6 +61,7 @@ from pySim.ts_102_221 import CardProfileUICC
from pySim.ts_102_222 import Ts102222Commands
from pySim.ts_31_102 import CardApplicationUSIM
from pySim.ts_31_103 import CardApplicationISIM
+from pySim.ts_31_104 import CardApplicationHPSIM
from pySim.ara_m import CardApplicationARAM
from pySim.global_platform import CardApplicationISD
from pySim.gsm_r import DF_EIRENE
@@ -123,6 +124,7 @@ def init_card(sl):
if isinstance(profile, CardProfileUICC):
profile.add_application(CardApplicationUSIM())
profile.add_application(CardApplicationISIM())
+ profile.add_application(CardApplicationHPSIM())
profile.add_application(CardApplicationARAM())
profile.add_application(CardApplicationISD())
diff --git a/pySim/ts_31_104.py b/pySim/ts_31_104.py
new file mode 100644
index 0000000..0adafba
--- /dev/null
+++ b/pySim/ts_31_104.py
@@ -0,0 +1,60 @@
+# -*- coding: utf-8 -*-
+
+"""
+Support for 3GPP TS 31.104 V17.0.0
+"""
+
+# Copyright (C) 2023 Harald Welte <laforge@osmocom.org>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+from pySim.filesystem import *
+from pySim.utils import *
+from pySim.tlv import *
+from pySim.ts_31_102 import ADF_USIM
+from pySim.ts_51_011 import EF_IMSI, EF_AD
+import pySim.ts_102_221
+from pySim.ts_102_221 import EF_ARR
+
+
+class ADF_HPSIM(CardADF):
+ def __init__(self, aid='a000000087100A', name='ADF.HPSIM', fid=None, sfid=None,
+ desc='HPSIM Application'):
+ super().__init__(aid=aid, fid=fid, sfid=sfid, name=name, desc=desc)
+
+ files = [
+ EF_ARR(fid='6f06', sfid=0x06),
+ EF_IMSI(fid='6f07', sfid=0x07),
+ EF_AD(fid='6fad', sfid=0x03),
+ ]
+ self.add_files(files)
+ # add those commands to the general commands of a TransparentEF
+ self.shell_commands += [ADF_USIM.AddlShellCommands()]
+
+ def decode_select_response(self, data_hex):
+ return pySim.ts_102_221.CardProfileUICC.decode_select_response(data_hex)
+
+
+# TS 31.104 Section 7.1
+sw_hpsim = {
+ 'Security management': {
+ '9862': 'Authentication error, incorrect MAC',
+ }
+}
+
+
+class CardApplicationHPSIM(CardApplication):
+ def __init__(self):
+ super().__init__('HPSIM', adf=ADF_HPSIM(), sw=sw_hpsim)