laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/33183 )
Change subject: HPSIM application support ......................................................................
HPSIM application support
Support HPSIM as specified in 3GPP TS 31.104
Change-Id: I2729fd2b88cd13c36d7128753ad8d3e3d08a9b52 --- M pySim-shell.py A pySim/ts_31_104.py 2 files changed, 73 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/83/33183/1
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_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 @@ 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..4473462 --- /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_isim = { + 'Security management': { + '9862': 'Authentication error, incorrect MAC', + } +} + + +class CardApplicationHPSIM(CardApplication): + def __init__(self): + super().__init__('HPSIM', adf=ADF_HPSIM(), sw=sw_isim)