open5gs/lib/nas/support/type-list.py

85 lines
3.7 KiB
Python

# Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
# This file is part of Open5GS.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 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 <https://www.gnu.org/licenses/>.
type_list["P-TMSI signature"]["decode"] = \
" *p_tmsi_signature = htobe32(*p_tmsi_signature);\n\n"
type_list["P-TMSI signature"]["encode"] = \
" *p_tmsi_signature = be32toh(*p_tmsi_signature);\n\n"
type_list["Location area identification"]["decode"] = \
" location_area_identification->lac = be16toh(location_area_identification->lac);\n\n"
type_list["Location area identification"]["encode"] = \
" target.lac = htobe16(location_area_identification->lac);\n\n"
type_list["Tracking area identity"]["decode"] = \
" tracking_area_identity->tac = be16toh(tracking_area_identity->tac);\n\n"
type_list["Tracking area identity"]["encode"] = \
" target.tac = htobe16(tracking_area_identity->tac);\n\n"
type_list["Mobile identity"]["decode"] = \
" if (mobile_identity->tmsi.type == OGS_NAS_MOBILE_IDENTITY_TMSI)\n" \
" {\n" \
" mobile_identity->tmsi.tmsi = be32toh(mobile_identity->tmsi.tmsi);\n" \
" }\n\n"
type_list["Mobile identity"]["encode"] = \
" if (mobile_identity->tmsi.type == OGS_NAS_MOBILE_IDENTITY_TMSI)\n" \
" {\n" \
" target.tmsi.tmsi = htobe32(mobile_identity->tmsi.tmsi);\n" \
" target.tmsi.spare = 0xf;\n" \
" }\n\n"
type_list["EPS mobile identity"]["decode"] = \
" if (eps_mobile_identity->guti.type == OGS_NAS_EPS_MOBILE_IDENTITY_GUTI)\n" \
" {\n" \
" eps_mobile_identity->guti.mme_gid = be16toh(eps_mobile_identity->guti.mme_gid);\n" \
" eps_mobile_identity->guti.m_tmsi = be32toh(eps_mobile_identity->guti.m_tmsi);\n" \
" }\n\n"
type_list["EPS mobile identity"]["encode"] = \
" if (target.guti.type == OGS_NAS_EPS_MOBILE_IDENTITY_GUTI)\n" \
" {\n" \
" target.guti.spare = 0xf;\n" \
" target.guti.mme_gid = htobe16(eps_mobile_identity->guti.mme_gid);\n" \
" target.guti.m_tmsi = htobe32(eps_mobile_identity->guti.m_tmsi);\n" \
" }\n\n"
type_list["Nonce"]["decode"] = \
" *nonce = be32toh(*nonce);\n\n"
type_list["Nonce"]["encode"] = \
" target = htobe32(*nonce);\n\n"
type_list["Header compression configuration"]["decode"] = \
" header_compression_configuration->max_cid = be16toh(header_compression_configuration->max_cid);\n\n"
type_list["Header compression configuration"]["encode"] = \
" target.max_cid = htobe16(header_compression_configuration->max_cid);\n\n"
type_list["Short MAC"]["decode"] = \
" *short_mac = be16toh(*short_mac);\n\n"
type_list["Short MAC"]["encode"] = \
" target = htobe16(*short_mac);\n\n"
type_list["Access point name"]["decode"] = \
" {\n" \
" char apn[OGS_MAX_APN_LEN];\n" \
" access_point_name->length = ogs_fqdn_parse(apn, access_point_name->apn, access_point_name->length);\n" \
" ogs_cpystrn(access_point_name->apn, apn, ogs_min(access_point_name->length, OGS_MAX_APN_LEN) + 1);\n" \
" }\n\n"
type_list["Access point name"]["encode"] = \
" target.length = ogs_fqdn_build(target.apn, access_point_name->apn, access_point_name->length);\n" \
" size = target.length + sizeof(target.length);\n\n"