mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-17 02:48:34 +03:00
gen_install_parameters() had contradictory logic: the outer guard required all three arguments to be non-None/non-empty (making them mutually inclusive), while the inner checks then treated each one as optional. Make each parameter independently optional (defaulting to None) and remove the all-or-nothing guard from both the function and its caller. Simplify the function body to a straightforward single-pass construction of system_specific_params. Change-Id: I8756fb38016cdf0527fe2e21edb44381d1dc557f
73 lines
2.6 KiB
Python
73 lines
2.6 KiB
Python
# GlobalPlatform install parameter generator
|
|
#
|
|
# (C) 2024 by sysmocom - s.f.m.c. GmbH
|
|
# All Rights Reserved
|
|
#
|
|
# 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 typing import Optional
|
|
|
|
from osmocom.construct import *
|
|
from osmocom.utils import *
|
|
from osmocom.tlv import *
|
|
|
|
class AppSpecificParams(BER_TLV_IE, tag=0xC9):
|
|
# GPD_SPE_013, table 11-49
|
|
_construct = GreedyBytes
|
|
|
|
class VolatileMemoryQuota(BER_TLV_IE, tag=0xC7):
|
|
# GPD_SPE_013, table 11-49
|
|
_construct = StripHeaderAdapter(GreedyBytes, 4, steps = [2,4])
|
|
|
|
class NonVolatileMemoryQuota(BER_TLV_IE, tag=0xC8):
|
|
# GPD_SPE_013, table 11-49
|
|
_construct = StripHeaderAdapter(GreedyBytes, 4, steps = [2,4])
|
|
|
|
class StkParameter(BER_TLV_IE, tag=0xCA):
|
|
# GPD_SPE_013, table 11-49
|
|
# ETSI TS 102 226, section 8.2.1.3.2.1
|
|
_construct = GreedyBytes
|
|
|
|
class SystemSpecificParams(BER_TLV_IE, tag=0xEF, nested=[VolatileMemoryQuota, NonVolatileMemoryQuota, StkParameter]):
|
|
# GPD_SPE_013 v1.1 Table 6-5
|
|
pass
|
|
|
|
class InstallParams(TLV_IE_Collection, nested=[AppSpecificParams, SystemSpecificParams]):
|
|
# GPD_SPE_013, table 11-49
|
|
pass
|
|
|
|
def gen_install_parameters(non_volatile_memory_quota: Optional[int] = None,
|
|
volatile_memory_quota: Optional[int] = None,
|
|
stk_parameter: Optional[str] = None):
|
|
|
|
# GPD_SPE_013, table 11-49
|
|
|
|
#Mandatory
|
|
install_params = InstallParams()
|
|
install_params_dict = [{'app_specific_params': None}]
|
|
|
|
system_specific_params = []
|
|
if non_volatile_memory_quota is not None:
|
|
system_specific_params.append({'non_volatile_memory_quota': non_volatile_memory_quota})
|
|
if volatile_memory_quota is not None:
|
|
system_specific_params.append({'volatile_memory_quota': volatile_memory_quota})
|
|
if stk_parameter is not None:
|
|
system_specific_params.append({'stk_parameter': stk_parameter})
|
|
if system_specific_params:
|
|
install_params_dict.append({'system_specific_params': system_specific_params})
|
|
|
|
install_params.from_dict(install_params_dict)
|
|
return b2h(install_params.to_bytes())
|