open5gs/lib/nas/nas_ies.c

2956 lines
101 KiB
C
Raw Normal View History

2017-03-21 04:50:40 +00:00
/*
2017-07-10 05:33:46 +00:00
* Copyright (c) 2017, NextEPC Group
2017-03-21 04:50:40 +00:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*******************************************************************************
* This file had been created by gtpv2c_tlv.py script v0.1.0
* Please do not modify this file but regenerate it via script.
2017-08-19 11:16:00 +00:00
* Created on: 2017-08-19 20:12:24.335882 by acetcom
2017-04-09 08:14:32 +00:00
* from 24301-d80.docx
2017-03-21 04:50:40 +00:00
******************************************************************************/
2017-08-01 02:34:15 +00:00
#define TRACE_MODULE _nas_ies
2017-02-15 11:16:50 +00:00
#include "core_debug.h"
2017-02-16 04:59:44 +00:00
#include "core_lib.h"
2017-02-15 11:16:50 +00:00
#include "nas_ies.h"
2017-03-20 14:43:52 +00:00
c_int16_t nas_encode_optional_type(pkbuf_t *pkbuf, c_uint8_t type)
2017-02-16 13:25:12 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(c_uint8_t);
2017-02-16 13:25:12 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 14:55:53 +00:00
memcpy(pkbuf->payload - size, &type, size);
2017-02-16 13:25:12 +00:00
return size;
}
2017-04-26 06:14:56 +00:00
/* 9.9.2.0 Additional information
* O TLV 3-n */
c_int16_t nas_decode_additional_information(nas_additional_information_t *additional_information, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_additional_information_t *source = pkbuf->payload;
additional_information->length = source->length;
size = additional_information->length + sizeof(additional_information->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(additional_information, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " ADDITIONAL_INFORMATION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_additional_information(pkbuf_t *pkbuf, nas_additional_information_t *additional_information)
{
c_uint16_t size = additional_information->length + sizeof(additional_information->length);
nas_additional_information_t target;
memcpy(&target, additional_information, sizeof(nas_additional_information_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " ADDITIONAL_INFORMATION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.2.0A Device properties
* O TV 1 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_device_properties(nas_device_properties_t *device_properties, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
memcpy(device_properties, pkbuf->payload - 1, 1);
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " DEVICE_PROPERTIES - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
return 0;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_device_properties(pkbuf_t *pkbuf, nas_device_properties_t *device_properties)
{
c_uint16_t size = sizeof(nas_device_properties_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, device_properties, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " DEVICE_PROPERTIES - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-04-25 11:08:03 +00:00
/* 9.9.2.1 EPS bearer context status
* O TLV 4 */
c_int16_t nas_decode_eps_bearer_context_status(nas_eps_bearer_context_status_t *eps_bearer_context_status, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_eps_bearer_context_status_t *source = pkbuf->payload;
eps_bearer_context_status->length = source->length;
size = eps_bearer_context_status->length + sizeof(eps_bearer_context_status->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(eps_bearer_context_status, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_BEARER_CONTEXT_STATUS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
c_int16_t nas_encode_eps_bearer_context_status(pkbuf_t *pkbuf, nas_eps_bearer_context_status_t *eps_bearer_context_status)
{
c_uint16_t size = eps_bearer_context_status->length + sizeof(eps_bearer_context_status->length);
nas_eps_bearer_context_status_t target;
memcpy(&target, eps_bearer_context_status, sizeof(nas_eps_bearer_context_status_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_BEARER_CONTEXT_STATUS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.2.10 Supported Codec List
* O TLV 5-n */
c_int16_t nas_decode_supported_codec_list(nas_supported_codec_list_t *supported_codec_list, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_supported_codec_list_t *source = pkbuf->payload;
supported_codec_list->length = source->length;
size = supported_codec_list->length + sizeof(supported_codec_list->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(supported_codec_list, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SUPPORTED_CODEC_LIST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_supported_codec_list(pkbuf_t *pkbuf, nas_supported_codec_list_t *supported_codec_list)
{
c_uint16_t size = supported_codec_list->length + sizeof(supported_codec_list->length);
nas_supported_codec_list_t target;
memcpy(&target, supported_codec_list, sizeof(nas_supported_codec_list_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SUPPORTED_CODEC_LIST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.2.2 Location area identification
* O TV 6 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_location_area_identification(nas_location_area_identification_t *location_area_identification, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_location_area_identification_t);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 09:11:01 +00:00
memcpy(location_area_identification, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
location_area_identification->lac = ntohs(location_area_identification->lac);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " LOCATION_AREA_IDENTIFICATION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_location_area_identification(pkbuf_t *pkbuf, nas_location_area_identification_t *location_area_identification)
2017-02-16 14:55:53 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_location_area_identification_t);
2017-02-16 14:55:53 +00:00
nas_location_area_identification_t target;
2017-03-21 04:50:40 +00:00
memcpy(&target, location_area_identification, size);
2017-02-16 14:55:53 +00:00
target.lac = htons(location_area_identification->lac);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 14:55:53 +00:00
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LOCATION_AREA_IDENTIFICATION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
/* 9.9.2.3 Mobile identity
* O TLV 7-10 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_mobile_identity(nas_mobile_identity_t *mobile_identity, pkbuf_t *pkbuf)
2017-02-16 14:55:53 +00:00
{
c_uint16_t size = 0;
2017-03-21 04:50:40 +00:00
nas_mobile_identity_t *source = pkbuf->payload;
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
mobile_identity->length = source->length;
2017-02-16 14:55:53 +00:00
size = mobile_identity->length + sizeof(mobile_identity->length);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(mobile_identity, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
2017-04-13 04:54:39 +00:00
if (mobile_identity->tmsi.type == NAS_MOBILE_IDENTITY_TMSI)
2017-02-16 14:55:53 +00:00
{
2017-03-21 04:50:40 +00:00
if (mobile_identity->tmsi.spare != 0xf)
d_warn("Spec warning : mobile_identity->tmsi.spare = 0x%x", mobile_identity->tmsi.spare);
mobile_identity->tmsi.tmsi = ntohl(mobile_identity->tmsi.tmsi);
2017-02-16 14:55:53 +00:00
}
2017-08-01 02:34:15 +00:00
d_trace(5, " MOBILE_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_mobile_identity(pkbuf_t *pkbuf, nas_mobile_identity_t *mobile_identity)
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = mobile_identity->length + sizeof(mobile_identity->length);
nas_mobile_identity_t target;
2017-03-21 04:50:40 +00:00
memcpy(&target, mobile_identity, sizeof(nas_mobile_identity_t));
2017-04-13 04:54:39 +00:00
if (mobile_identity->tmsi.type == NAS_MOBILE_IDENTITY_TMSI)
2017-03-21 04:50:40 +00:00
{
target.tmsi.tmsi = htonl(mobile_identity->tmsi.tmsi);
target.tmsi.spare = 0xf;
}
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " MOBILE_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.2.4 Mobile station classmark 2
* O TLV 5 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_mobile_station_classmark_2(nas_mobile_station_classmark_2_t *mobile_station_classmark_2, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
c_uint16_t size = 0;
nas_mobile_station_classmark_2_t *source = pkbuf->payload;
mobile_station_classmark_2->length = source->length;
2017-03-21 04:50:40 +00:00
size = mobile_station_classmark_2->length + sizeof(mobile_station_classmark_2->length);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 04:59:44 +00:00
memcpy(mobile_station_classmark_2, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " MOBILE_STATION_CLASSMARK_2 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_mobile_station_classmark_2(pkbuf_t *pkbuf, nas_mobile_station_classmark_2_t *mobile_station_classmark_2)
2017-02-16 04:59:44 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = mobile_station_classmark_2->length + sizeof(mobile_station_classmark_2->length);
nas_mobile_station_classmark_2_t target;
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
memcpy(&target, mobile_station_classmark_2, sizeof(nas_mobile_station_classmark_2_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " MOBILE_STATION_CLASSMARK_2 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
/* 9.9.2.5 Mobile station classmark 3
* O TLV 2-34 */
c_int16_t nas_decode_mobile_station_classmark_3(nas_mobile_station_classmark_3_t *mobile_station_classmark_3, pkbuf_t *pkbuf)
2017-02-16 14:55:53 +00:00
{
c_uint16_t size = 0;
2017-03-21 04:50:40 +00:00
nas_mobile_station_classmark_3_t *source = pkbuf->payload;
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
mobile_station_classmark_3->length = source->length;
size = mobile_station_classmark_3->length + sizeof(mobile_station_classmark_3->length);
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(mobile_station_classmark_3, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " MOBILE_STATION_CLASSMARK_3 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_mobile_station_classmark_3(pkbuf_t *pkbuf, nas_mobile_station_classmark_3_t *mobile_station_classmark_3)
2017-02-16 04:59:44 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = mobile_station_classmark_3->length + sizeof(mobile_station_classmark_3->length);
nas_mobile_station_classmark_3_t target;
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
memcpy(&target, mobile_station_classmark_3, sizeof(nas_mobile_station_classmark_3_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " MOBILE_STATION_CLASSMARK_3 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
/* 9.9.2.8 PLMN list
* O TLV 5-47 */
c_int16_t nas_decode_plmn_list(nas_plmn_list_t *plmn_list, pkbuf_t *pkbuf)
2017-02-16 14:55:53 +00:00
{
c_uint16_t size = 0;
2017-03-21 04:50:40 +00:00
nas_plmn_list_t *source = pkbuf->payload;
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
plmn_list->length = source->length;
size = plmn_list->length + sizeof(plmn_list->length);
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(plmn_list, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " PLMN_LIST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_plmn_list(pkbuf_t *pkbuf, nas_plmn_list_t *plmn_list)
2017-03-06 03:25:50 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = plmn_list->length + sizeof(plmn_list->length);
nas_plmn_list_t target;
2017-03-06 03:25:50 +00:00
2017-03-21 04:50:40 +00:00
memcpy(&target, plmn_list, sizeof(nas_plmn_list_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-03-06 03:25:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " PLMN_LIST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-06 03:25:50 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.0A Additional update result
* O TV 1 */
c_int16_t nas_decode_additional_update_result(nas_additional_update_result_t *additional_update_result, pkbuf_t *pkbuf)
2017-03-06 03:25:50 +00:00
{
2017-03-21 04:50:40 +00:00
memcpy(additional_update_result, pkbuf->payload - 1, 1);
2017-03-06 03:25:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " ADDITIONAL_UPDATE_RESULT - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-03-21 04:50:40 +00:00
return 0;
}
2017-03-06 03:25:50 +00:00
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_additional_update_result(pkbuf_t *pkbuf, nas_additional_update_result_t *additional_update_result)
{
c_uint16_t size = sizeof(nas_additional_update_result_t);
2017-03-06 08:55:50 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, additional_update_result, size);
2017-03-06 03:25:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " ADDITIONAL_UPDATE_RESULT - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-06 03:25:50 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.0B Additional update type
* O TV 1 */
c_int16_t nas_decode_additional_update_type(nas_additional_update_type_t *additional_update_type, pkbuf_t *pkbuf)
2017-03-06 03:25:50 +00:00
{
2017-03-21 04:50:40 +00:00
memcpy(additional_update_type, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " ADDITIONAL_UPDATE_TYPE - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-03-21 04:50:40 +00:00
return 0;
}
2017-03-06 03:25:50 +00:00
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_additional_update_type(pkbuf_t *pkbuf, nas_additional_update_type_t *additional_update_type)
{
c_uint16_t size = sizeof(nas_additional_update_type_t);
2017-03-06 03:25:50 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, additional_update_type, size);
2017-03-06 03:25:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " ADDITIONAL_UPDATE_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-06 03:25:50 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.1 Authentication failure parameter
* O TLV 16 */
c_int16_t nas_decode_authentication_failure_parameter(nas_authentication_failure_parameter_t *authentication_failure_parameter, pkbuf_t *pkbuf)
2017-03-06 03:25:50 +00:00
{
c_uint16_t size = 0;
2017-03-21 04:50:40 +00:00
nas_authentication_failure_parameter_t *source = pkbuf->payload;
2017-03-06 03:25:50 +00:00
2017-03-21 04:50:40 +00:00
authentication_failure_parameter->length = source->length;
size = authentication_failure_parameter->length + sizeof(authentication_failure_parameter->length);
2017-03-06 03:25:50 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(authentication_failure_parameter, pkbuf->payload - size, size);
2017-03-06 03:25:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " AUTHENTICATION_FAILURE_PARAMETER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-06 03:25:50 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_authentication_failure_parameter(pkbuf_t *pkbuf, nas_authentication_failure_parameter_t *authentication_failure_parameter)
2017-02-16 04:59:44 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = authentication_failure_parameter->length + sizeof(authentication_failure_parameter->length);
nas_authentication_failure_parameter_t target;
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
memcpy(&target, authentication_failure_parameter, sizeof(nas_authentication_failure_parameter_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " AUTHENTICATION_FAILURE_PARAMETER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.10 EPS attach result
* M V 1/2 */
c_int16_t nas_decode_eps_attach_result(nas_eps_attach_result_t *eps_attach_result, pkbuf_t *pkbuf)
2017-02-16 14:55:53 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_eps_attach_result_t);
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(eps_attach_result, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_ATTACH_RESULT - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_eps_attach_result(pkbuf_t *pkbuf, nas_eps_attach_result_t *eps_attach_result)
2017-03-06 03:25:50 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_eps_attach_result_t);
nas_eps_attach_result_t target;
2017-03-06 03:25:50 +00:00
2017-03-21 04:50:40 +00:00
memcpy(&target, eps_attach_result, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-03-06 03:25:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_ATTACH_RESULT - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-06 03:25:50 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.11 EPS attach type
2017-02-16 14:55:53 +00:00
* M V 1/2 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_eps_attach_type(nas_eps_attach_type_t *eps_attach_type, pkbuf_t *pkbuf)
2017-02-16 14:55:53 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_eps_attach_type_t);
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(eps_attach_type, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_ATTACH_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_eps_attach_type(pkbuf_t *pkbuf, nas_eps_attach_type_t *eps_attach_type)
2017-02-15 11:16:50 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_eps_attach_type_t);
nas_eps_attach_type_t target;
2017-02-15 11:16:50 +00:00
2017-03-21 04:50:40 +00:00
memcpy(&target, eps_attach_type, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_ATTACH_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-15 11:16:50 +00:00
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.12 EPS mobile identity
* M LV 5-12 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_eps_mobile_identity(nas_eps_mobile_identity_t *eps_mobile_identity, pkbuf_t *pkbuf)
2017-02-15 11:16:50 +00:00
{
c_uint16_t size = 0;
2017-02-16 04:59:44 +00:00
nas_eps_mobile_identity_t *source = pkbuf->payload;
2017-02-15 11:16:50 +00:00
2017-02-16 04:59:44 +00:00
eps_mobile_identity->length = source->length;
size = eps_mobile_identity->length + sizeof(eps_mobile_identity->length);
2017-02-15 11:16:50 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 04:59:44 +00:00
memcpy(eps_mobile_identity, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
2017-04-13 04:54:39 +00:00
if (eps_mobile_identity->guti.type == NAS_EPS_MOBILE_IDENTITY_GUTI)
2017-02-15 11:16:50 +00:00
{
2017-03-05 09:09:34 +00:00
if (eps_mobile_identity->guti.spare != 0xf)
2017-03-21 04:50:40 +00:00
d_warn("Spec warning : eps_mobile_identy->spare = 0x%x", eps_mobile_identity->guti.spare);
2017-04-13 04:54:39 +00:00
eps_mobile_identity->guti.mme_gid = ntohs(eps_mobile_identity->guti.mme_gid);
2017-03-21 04:50:40 +00:00
eps_mobile_identity->guti.m_tmsi = ntohl(eps_mobile_identity->guti.m_tmsi);
2017-02-15 11:16:50 +00:00
}
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_MOBILE_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_eps_mobile_identity(pkbuf_t *pkbuf, nas_eps_mobile_identity_t *eps_mobile_identity)
2017-02-16 12:47:48 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = eps_mobile_identity->length + sizeof(eps_mobile_identity->length);
2017-02-16 12:47:48 +00:00
nas_eps_mobile_identity_t target;
memcpy(&target, eps_mobile_identity, sizeof(nas_eps_mobile_identity_t));
2017-04-13 04:54:39 +00:00
if (target.guti.type == NAS_EPS_MOBILE_IDENTITY_GUTI)
2017-02-16 12:47:48 +00:00
{
2017-03-05 09:09:34 +00:00
target.guti.spare = 0xf;
2017-04-13 04:54:39 +00:00
target.guti.mme_gid = htons(eps_mobile_identity->guti.mme_gid);
2017-03-21 04:50:40 +00:00
target.guti.m_tmsi = htonl(eps_mobile_identity->guti.m_tmsi);
2017-02-16 12:47:48 +00:00
}
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 12:47:48 +00:00
memcpy(pkbuf->payload - size, &target, size);
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_MOBILE_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.12A EPS network feature support
2017-02-16 14:55:53 +00:00
* O TLV 3 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_eps_network_feature_support(nas_eps_network_feature_support_t *eps_network_feature_support, pkbuf_t *pkbuf)
2017-02-16 14:55:53 +00:00
{
c_uint16_t size = 0;
2017-03-21 04:50:40 +00:00
nas_eps_network_feature_support_t *source = pkbuf->payload;
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
eps_network_feature_support->length = source->length;
size = eps_network_feature_support->length + sizeof(eps_network_feature_support->length);
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(eps_network_feature_support, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_NETWORK_FEATURE_SUPPORT - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_eps_network_feature_support(pkbuf_t *pkbuf, nas_eps_network_feature_support_t *eps_network_feature_support)
{
c_uint16_t size = eps_network_feature_support->length + sizeof(eps_network_feature_support->length);
nas_eps_network_feature_support_t target;
memcpy(&target, eps_network_feature_support, sizeof(nas_eps_network_feature_support_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_NETWORK_FEATURE_SUPPORT - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-02-16 12:47:48 +00:00
2017-04-25 11:08:03 +00:00
/* 9.9.3.13 EPS update result
* M V 1/2 */
c_int16_t nas_decode_eps_update_result(nas_eps_update_result_t *eps_update_result, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_eps_update_result_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(eps_update_result, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_UPDATE_RESULT - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
c_int16_t nas_encode_eps_update_result(pkbuf_t *pkbuf, nas_eps_update_result_t *eps_update_result)
{
c_uint16_t size = sizeof(nas_eps_update_result_t);
nas_eps_update_result_t target;
memcpy(&target, eps_update_result, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_UPDATE_RESULT - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
/* 9.9.3.14 EPS update type
* M V 1/2 */
c_int16_t nas_decode_eps_update_type(nas_eps_update_type_t *eps_update_type, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_eps_update_type_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(eps_update_type, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_UPDATE_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
c_int16_t nas_encode_eps_update_type(pkbuf_t *pkbuf, nas_eps_update_type_t *eps_update_type)
{
c_uint16_t size = sizeof(nas_eps_update_type_t);
nas_eps_update_type_t target;
memcpy(&target, eps_update_type, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_UPDATE_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.15 ESM message container
* M LV-E 5-n */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_esm_message_container(nas_esm_message_container_t *esm_message_container, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
c_uint16_t size = 0;
nas_esm_message_container_t *source = pkbuf->payload;
2017-04-09 05:26:19 +00:00
esm_message_container->len = ntohs(source->len);
size = esm_message_container->len + sizeof(esm_message_container->len);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-04-09 05:26:19 +00:00
esm_message_container->data = pkbuf->payload - size + sizeof(esm_message_container->len);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " ESM_MESSAGE_CONTAINER - ");
d_trace_hex(5, esm_message_container->data, esm_message_container->len);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_esm_message_container(pkbuf_t *pkbuf, nas_esm_message_container_t *esm_message_container)
2017-02-16 09:11:01 +00:00
{
c_uint16_t size = 0;
2017-02-16 12:47:48 +00:00
c_uint16_t target;
2017-02-16 09:11:01 +00:00
d_assert(esm_message_container, return -1, "Null param");
2017-04-09 05:26:19 +00:00
d_assert(esm_message_container->data, return -1, "Null param");
2017-02-16 09:11:01 +00:00
2017-04-09 05:26:19 +00:00
size = sizeof(esm_message_container->len);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-04-09 05:26:19 +00:00
target = htons(esm_message_container->len);
2017-02-16 12:47:48 +00:00
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 09:11:01 +00:00
2017-04-09 05:26:19 +00:00
size = esm_message_container->len;
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-04-09 05:26:19 +00:00
memcpy(pkbuf->payload - size, esm_message_container->data, size);
2017-02-16 09:11:01 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " ESM_MESSAGE_CONTAINER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-09 05:26:19 +00:00
return esm_message_container->len + sizeof(esm_message_container->len);
2017-02-16 09:11:01 +00:00
}
2017-02-16 14:55:53 +00:00
/* 9.9.3.16 GPRS timer
2017-03-21 04:50:40 +00:00
* M V 1 */
c_int16_t nas_decode_gprs_timer(nas_gprs_timer_t *gprs_timer, pkbuf_t *pkbuf)
2017-02-16 14:55:53 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_gprs_timer_t);
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(gprs_timer, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " GPRS_TIMER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_gprs_timer(pkbuf_t *pkbuf, nas_gprs_timer_t *gprs_timer)
{
c_uint16_t size = sizeof(nas_gprs_timer_t);
nas_gprs_timer_t target;
memcpy(&target, gprs_timer, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " GPRS_TIMER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.16A GPRS timer 2
* O TLV 3 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_gprs_timer_2(nas_gprs_timer_2_t *gprs_timer_2, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
c_uint16_t size = 0;
nas_gprs_timer_2_t *source = pkbuf->payload;
2017-02-16 09:11:01 +00:00
gprs_timer_2->length = source->length;
size = gprs_timer_2->length + sizeof(gprs_timer_2->length);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 09:11:01 +00:00
memcpy(gprs_timer_2, pkbuf->payload - size, size);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " GPRS_TIMER_2 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_gprs_timer_2(pkbuf_t *pkbuf, nas_gprs_timer_2_t *gprs_timer_2)
{
c_uint16_t size = gprs_timer_2->length + sizeof(gprs_timer_2->length);
nas_gprs_timer_2_t target;
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
memcpy(&target, gprs_timer_2, sizeof(nas_gprs_timer_2_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " GPRS_TIMER_2 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.16B GPRS timer 3
* O TLV 3 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_gprs_timer_3(nas_gprs_timer_3_t *gprs_timer_3, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
c_uint16_t size = 0;
nas_gprs_timer_3_t *source = pkbuf->payload;
2017-02-16 09:11:01 +00:00
gprs_timer_3->length = source->length;
size = gprs_timer_3->length + sizeof(gprs_timer_3->length);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 09:11:01 +00:00
memcpy(gprs_timer_3, pkbuf->payload - size, size);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " GPRS_TIMER_3 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_gprs_timer_3(pkbuf_t *pkbuf, nas_gprs_timer_3_t *gprs_timer_3)
{
c_uint16_t size = gprs_timer_3->length + sizeof(gprs_timer_3->length);
nas_gprs_timer_3_t target;
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
memcpy(&target, gprs_timer_3, sizeof(nas_gprs_timer_3_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 14:55:53 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " GPRS_TIMER_3 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
2017-03-21 06:02:16 +00:00
/* 9.9.3.17 Identity type 2
* M V 1/2 */
c_int16_t nas_decode_identity_type_2(nas_identity_type_2_t *identity_type_2, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_identity_type_2_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(identity_type_2, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " IDENTITY_TYPE_2 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 06:02:16 +00:00
return size;
}
c_int16_t nas_encode_identity_type_2(pkbuf_t *pkbuf, nas_identity_type_2_t *identity_type_2)
{
c_uint16_t size = sizeof(nas_identity_type_2_t);
nas_identity_type_2_t target;
memcpy(&target, identity_type_2, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " IDENTITY_TYPE_2 - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 06:02:16 +00:00
return size;
}
/* 9.9.3.18 IMEISV request
* O TV 1 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_imeisv_request(nas_imeisv_request_t *imeisv_request, pkbuf_t *pkbuf)
{
memcpy(imeisv_request, pkbuf->payload - 1, 1);
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " IMEISV_REQUEST - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
return 0;
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_imeisv_request(pkbuf_t *pkbuf, nas_imeisv_request_t *imeisv_request)
{
c_uint16_t size = sizeof(nas_imeisv_request_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, imeisv_request, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " IMEISV_REQUEST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-04-26 00:33:26 +00:00
/* 9.9.3.19 KSI and sequence number
* M V 1 */
c_int16_t nas_decode_ksi_and_sequence_number(nas_ksi_and_sequence_number_t *ksi_and_sequence_number, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_ksi_and_sequence_number_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(ksi_and_sequence_number, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " KSI_AND_SEQUENCE_NUMBER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 00:33:26 +00:00
return size;
}
c_int16_t nas_encode_ksi_and_sequence_number(pkbuf_t *pkbuf, nas_ksi_and_sequence_number_t *ksi_and_sequence_number)
{
c_uint16_t size = sizeof(nas_ksi_and_sequence_number_t);
nas_ksi_and_sequence_number_t target;
memcpy(&target, ksi_and_sequence_number, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " KSI_AND_SEQUENCE_NUMBER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 00:33:26 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.2 Authentication parameter AUTN
* M LV 17 */
c_int16_t nas_decode_authentication_parameter_autn(nas_authentication_parameter_autn_t *authentication_parameter_autn, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_authentication_parameter_autn_t *source = pkbuf->payload;
authentication_parameter_autn->length = source->length;
size = authentication_parameter_autn->length + sizeof(authentication_parameter_autn->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(authentication_parameter_autn, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " AUTHENTICATION_PARAMETER_AUTN - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_authentication_parameter_autn(pkbuf_t *pkbuf, nas_authentication_parameter_autn_t *authentication_parameter_autn)
{
c_uint16_t size = authentication_parameter_autn->length + sizeof(authentication_parameter_autn->length);
nas_authentication_parameter_autn_t target;
memcpy(&target, authentication_parameter_autn, sizeof(nas_authentication_parameter_autn_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " AUTHENTICATION_PARAMETER_AUTN - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.20 MS network capability
* O TLV 4-10 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_ms_network_capability(nas_ms_network_capability_t *ms_network_capability, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
c_uint16_t size = 0;
nas_ms_network_capability_t *source = pkbuf->payload;
ms_network_capability->length = source->length;
size = ms_network_capability->length + sizeof(ms_network_capability->length);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 04:59:44 +00:00
memcpy(ms_network_capability, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " MS_NETWORK_CAPABILITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_ms_network_capability(pkbuf_t *pkbuf, nas_ms_network_capability_t *ms_network_capability)
{
c_uint16_t size = ms_network_capability->length + sizeof(ms_network_capability->length);
nas_ms_network_capability_t target;
memcpy(&target, ms_network_capability, sizeof(nas_ms_network_capability_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " MS_NETWORK_CAPABILITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
/* 9.9.3.20A MS network feature support
2017-02-16 04:59:44 +00:00
* O TV 1 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_ms_network_feature_support(nas_ms_network_feature_support_t *ms_network_feature_support, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
memcpy(ms_network_feature_support, pkbuf->payload - 1, 1);
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " MS_NETWORK_FEATURE_SUPPORT - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
return 0;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_ms_network_feature_support(pkbuf_t *pkbuf, nas_ms_network_feature_support_t *ms_network_feature_support)
{
c_uint16_t size = sizeof(nas_ms_network_feature_support_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, ms_network_feature_support, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " MS_NETWORK_FEATURE_SUPPORT - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
/* 9.9.3.21 key set identifier
2017-04-25 11:08:03 +00:00
* O TV 1 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_key_set_identifier(nas_key_set_identifier_t *key_set_identifier, pkbuf_t *pkbuf)
2017-03-06 03:25:50 +00:00
{
2017-04-25 11:08:03 +00:00
memcpy(key_set_identifier, pkbuf->payload - 1, 1);
2017-03-06 03:25:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " KEY_SET_IDENTIFIER - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-25 11:08:03 +00:00
return 0;
2017-03-21 04:50:40 +00:00
}
2017-03-06 03:25:50 +00:00
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_key_set_identifier(pkbuf_t *pkbuf, nas_key_set_identifier_t *key_set_identifier)
{
c_uint16_t size = sizeof(nas_key_set_identifier_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-04-25 11:08:03 +00:00
memcpy(pkbuf->payload - size, key_set_identifier, size);
2017-03-06 03:25:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " KEY_SET_IDENTIFIER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-06 03:25:50 +00:00
return size;
}
2017-04-26 06:14:56 +00:00
/* 9.9.3.22 message container
* M LV 3-252 */
c_int16_t nas_decode_message_container(nas_message_container_t *message_container, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_message_container_t *source = pkbuf->payload;
message_container->length = source->length;
size = message_container->length + sizeof(message_container->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(message_container, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " MESSAGE_CONTAINER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_message_container(pkbuf_t *pkbuf, nas_message_container_t *message_container)
{
c_uint16_t size = message_container->length + sizeof(message_container->length);
nas_message_container_t target;
memcpy(&target, message_container, sizeof(nas_message_container_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " MESSAGE_CONTAINER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.23 security algorithms
* M V 1 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_security_algorithms(nas_security_algorithms_t *security_algorithms, pkbuf_t *pkbuf)
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_security_algorithms_t);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(security_algorithms, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SECURITY_ALGORITHMS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_security_algorithms(pkbuf_t *pkbuf, nas_security_algorithms_t *security_algorithms)
{
c_uint16_t size = sizeof(nas_security_algorithms_t);
nas_security_algorithms_t target;
memcpy(&target, security_algorithms, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SECURITY_ALGORITHMS - ");
d_trace_hex(5, pkbuf->payload - size, size);
return size;
}
2017-04-13 15:17:56 +00:00
/* 9.9.3.24 Network name
* O TLV 3-n */
c_int16_t nas_decode_network_name(nas_network_name_t *network_name, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_network_name_t *source = pkbuf->payload;
network_name->length = source->length;
size = network_name->length + sizeof(network_name->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(network_name, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " NETWORK_NAME - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-13 15:17:56 +00:00
return size;
}
c_int16_t nas_encode_network_name(pkbuf_t *pkbuf, nas_network_name_t *network_name)
{
c_uint16_t size = network_name->length + sizeof(network_name->length);
nas_network_name_t target;
memcpy(&target, network_name, sizeof(nas_network_name_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " NETWORK_NAME - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-13 15:17:56 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.24A Network resource identifier container
* O TLV 4 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_network_resource_identifier_container(nas_network_resource_identifier_container_t *network_resource_identifier_container, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
c_uint16_t size = 0;
nas_network_resource_identifier_container_t *source = pkbuf->payload;
2017-02-16 09:11:01 +00:00
network_resource_identifier_container->length = source->length;
2017-03-21 04:50:40 +00:00
size = network_resource_identifier_container->length + sizeof(network_resource_identifier_container->length);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 09:11:01 +00:00
memcpy(network_resource_identifier_container, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " NETWORK_RESOURCE_IDENTIFIER_CONTAINER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_network_resource_identifier_container(pkbuf_t *pkbuf, nas_network_resource_identifier_container_t *network_resource_identifier_container)
{
c_uint16_t size = network_resource_identifier_container->length + sizeof(network_resource_identifier_container->length);
nas_network_resource_identifier_container_t target;
memcpy(&target, network_resource_identifier_container, sizeof(nas_network_resource_identifier_container_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " NETWORK_RESOURCE_IDENTIFIER_CONTAINER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
/* 9.9.3.25 Nonce
* O TV 5 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_nonce(nas_nonce_t *nonce, pkbuf_t *pkbuf)
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_nonce_t);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(nonce, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
*nonce = ntohl(*nonce);
2017-08-01 02:34:15 +00:00
d_trace(5, " NONCE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_nonce(pkbuf_t *pkbuf, nas_nonce_t *nonce)
{
c_uint16_t size = sizeof(nas_nonce_t);
nas_nonce_t target;
2017-03-21 04:50:40 +00:00
memcpy(&target, nonce, size);
target = htonl(*nonce);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " NONCE - ");
d_trace_hex(5, pkbuf->payload - size, size);
return size;
}
2017-04-26 06:14:56 +00:00
/* 9.9.3.25A Paging identity
* M V 1 */
c_int16_t nas_decode_paging_identity(nas_paging_identity_t *paging_identity, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_paging_identity_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(paging_identity, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " PAGING_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_paging_identity(pkbuf_t *pkbuf, nas_paging_identity_t *paging_identity)
{
c_uint16_t size = sizeof(nas_paging_identity_t);
nas_paging_identity_t target;
memcpy(&target, paging_identity, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " PAGING_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.26 P-TMSI signature
2017-02-16 04:59:44 +00:00
* O TV 4 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_p_tmsi_signature(nas_p_tmsi_signature_t *p_tmsi_signature, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = 3;
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 09:11:01 +00:00
memcpy(p_tmsi_signature, pkbuf->payload - size, size);
2017-02-15 11:16:50 +00:00
2017-03-21 04:50:40 +00:00
*p_tmsi_signature = htonl(*p_tmsi_signature);
2017-08-01 02:34:15 +00:00
d_trace(5, " P_TMSI_SIGNATURE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_p_tmsi_signature(pkbuf_t *pkbuf, nas_p_tmsi_signature_t *p_tmsi_signature)
{
c_uint16_t size = 3;
nas_p_tmsi_signature_t target;
memcpy(&target, p_tmsi_signature, size);
2017-02-16 09:11:01 +00:00
*p_tmsi_signature = ntohl(*p_tmsi_signature);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " P_TMSI_SIGNATURE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.26A Extended EMM cause
* O TV 1 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_extended_emm_cause(nas_extended_emm_cause_t *extended_emm_cause, pkbuf_t *pkbuf)
{
2017-03-21 04:50:40 +00:00
memcpy(extended_emm_cause, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " EXTENDED_EMM_CAUSE - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-03-21 04:50:40 +00:00
return 0;
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_extended_emm_cause(pkbuf_t *pkbuf, nas_extended_emm_cause_t *extended_emm_cause)
{
c_uint16_t size = sizeof(nas_extended_emm_cause_t);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, extended_emm_cause, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EXTENDED_EMM_CAUSE - ");
d_trace_hex(5, pkbuf->payload - size, size);
return size;
}
2017-04-25 11:08:03 +00:00
/* 9.9.3.27 Service type
* M V 1/2 */
c_int16_t nas_decode_service_type(nas_service_type_t *service_type, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_service_type_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(service_type, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SERVICE_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
c_int16_t nas_encode_service_type(pkbuf_t *pkbuf, nas_service_type_t *service_type)
{
c_uint16_t size = sizeof(nas_service_type_t);
nas_service_type_t target;
memcpy(&target, service_type, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SERVICE_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
2017-04-26 00:33:26 +00:00
/* 9.9.3.28 Short MAC
* M V 2 */
c_int16_t nas_decode_short_mac(nas_short_mac_t *short_mac, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_short_mac_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(short_mac, pkbuf->payload - size, size);
*short_mac = ntohs(*short_mac);
2017-08-01 02:34:15 +00:00
d_trace(5, " SHORT_MAC - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 00:33:26 +00:00
return size;
}
c_int16_t nas_encode_short_mac(pkbuf_t *pkbuf, nas_short_mac_t *short_mac)
{
c_uint16_t size = sizeof(nas_short_mac_t);
nas_short_mac_t target;
memcpy(&target, short_mac, size);
target = htons(*short_mac);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SHORT_MAC - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 00:33:26 +00:00
return size;
}
2017-04-13 15:17:56 +00:00
/* 9.9.3.29 Time zone
* O TV 2 */
c_int16_t nas_decode_time_zone(nas_time_zone_t *time_zone, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_time_zone_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(time_zone, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TIME_ZONE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-13 15:17:56 +00:00
return size;
}
c_int16_t nas_encode_time_zone(pkbuf_t *pkbuf, nas_time_zone_t *time_zone)
{
c_uint16_t size = sizeof(nas_time_zone_t);
nas_time_zone_t target;
memcpy(&target, time_zone, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TIME_ZONE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-13 15:17:56 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.3 Authentication parameter RAND
* M V 16 */
c_int16_t nas_decode_authentication_parameter_rand(nas_authentication_parameter_rand_t *authentication_parameter_rand, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_authentication_parameter_rand_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(authentication_parameter_rand, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " AUTHENTICATION_PARAMETER_RAND - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_authentication_parameter_rand(pkbuf_t *pkbuf, nas_authentication_parameter_rand_t *authentication_parameter_rand)
{
c_uint16_t size = sizeof(nas_authentication_parameter_rand_t);
nas_authentication_parameter_rand_t target;
memcpy(&target, authentication_parameter_rand, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " AUTHENTICATION_PARAMETER_RAND - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-04-13 15:17:56 +00:00
/* 9.9.3.30 Time zone and time
* O TV 8 */
c_int16_t nas_decode_time_zone_and_time(nas_time_zone_and_time_t *time_zone_and_time, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_time_zone_and_time_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(time_zone_and_time, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TIME_ZONE_AND_TIME - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-13 15:17:56 +00:00
return size;
}
c_int16_t nas_encode_time_zone_and_time(pkbuf_t *pkbuf, nas_time_zone_and_time_t *time_zone_and_time)
{
c_uint16_t size = sizeof(nas_time_zone_and_time_t);
nas_time_zone_and_time_t target;
memcpy(&target, time_zone_and_time, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TIME_ZONE_AND_TIME - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-13 15:17:56 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.31 TMSI status
* O TV 1 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_tmsi_status(nas_tmsi_status_t *tmsi_status, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
memcpy(tmsi_status, pkbuf->payload - 1, 1);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " TMSI_STATUS - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
return 0;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_tmsi_status(pkbuf_t *pkbuf, nas_tmsi_status_t *tmsi_status)
{
c_uint16_t size = sizeof(nas_tmsi_status_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, tmsi_status, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TMSI_STATUS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.32 Tracking area identity
* O TV 6 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_tracking_area_identity(nas_tracking_area_identity_t *tracking_area_identity, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = sizeof(nas_tracking_area_identity_t);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 09:11:01 +00:00
memcpy(tracking_area_identity, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
2017-02-16 09:11:01 +00:00
tracking_area_identity->tac = ntohs(tracking_area_identity->tac);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " TRACKING_AREA_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-15 11:16:50 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_tracking_area_identity(pkbuf_t *pkbuf, nas_tracking_area_identity_t *tracking_area_identity)
{
c_uint16_t size = sizeof(nas_tracking_area_identity_t);
nas_tracking_area_identity_t target;
memcpy(&target, tracking_area_identity, size);
target.tac = htons(tracking_area_identity->tac);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TRACKING_AREA_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-02-16 14:55:53 +00:00
/* 9.9.3.33 Tracking area identity list
* M LV 7-97 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_tracking_area_identity_list(nas_tracking_area_identity_list_t *tracking_area_identity_list, pkbuf_t *pkbuf)
2017-02-16 14:55:53 +00:00
{
c_uint16_t size = 0;
2017-03-21 04:50:40 +00:00
nas_tracking_area_identity_list_t *source = pkbuf->payload;
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
tracking_area_identity_list->length = source->length;
size = tracking_area_identity_list->length + sizeof(tracking_area_identity_list->length);
2017-02-16 14:55:53 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(tracking_area_identity_list, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
{
2017-08-19 07:49:44 +00:00
int i = 0;
2017-04-13 04:54:39 +00:00
if (tracking_area_identity_list->type == NAS_TRACKING_AREA_IDENTITY_LIST_ONE_PLMN_NON_CONSECUTIVE_TACS)
for (i = 0; i < tracking_area_identity_list->num + 1 && i < NAS_MAX_TRACKING_AREA_IDENTITY; i++)
2017-03-21 04:50:40 +00:00
tracking_area_identity_list->type0.tac[i] = ntohs(tracking_area_identity_list->type0.tac[i]);
2017-04-13 04:54:39 +00:00
else if (tracking_area_identity_list->type == NAS_TRACKING_AREA_IDENTITY_LIST_ONE_PLMN_CONSECUTIVE_TACS)
2017-03-21 04:50:40 +00:00
tracking_area_identity_list->type1.tac = ntohs(tracking_area_identity_list->type1.tac);
2017-04-13 04:54:39 +00:00
else if (tracking_area_identity_list->type == NAS_TRACKING_AREA_IDENTITY_LIST_MANY_PLMNS)
for (i = 0; i < tracking_area_identity_list->num + 1 && i < NAS_MAX_TRACKING_AREA_IDENTITY; i++)
2017-03-21 04:50:40 +00:00
tracking_area_identity_list->type2.tai[i].tac = ntohs(tracking_area_identity_list->type2.tai[i].tac);
else
return -1;
2017-02-16 14:55:53 +00:00
}
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " TRACKING_AREA_IDENTITY_LIST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_tracking_area_identity_list(pkbuf_t *pkbuf, nas_tracking_area_identity_list_t *tracking_area_identity_list)
{
c_uint16_t size = tracking_area_identity_list->length + sizeof(tracking_area_identity_list->length);
nas_tracking_area_identity_list_t target;
memcpy(&target, tracking_area_identity_list, sizeof(nas_tracking_area_identity_list_t));
2017-02-16 14:55:53 +00:00
{
2017-08-19 07:49:44 +00:00
int i = 0;
2017-04-13 04:54:39 +00:00
if (tracking_area_identity_list->type == NAS_TRACKING_AREA_IDENTITY_LIST_ONE_PLMN_NON_CONSECUTIVE_TACS)
for (i = 0; i < tracking_area_identity_list->num + 1 && i < NAS_MAX_TRACKING_AREA_IDENTITY; i++)
2017-03-21 04:50:40 +00:00
target.type0.tac[i] = htons(tracking_area_identity_list->type0.tac[i]);
2017-04-13 04:54:39 +00:00
else if (tracking_area_identity_list->type == NAS_TRACKING_AREA_IDENTITY_LIST_ONE_PLMN_CONSECUTIVE_TACS)
2017-03-21 04:50:40 +00:00
target.type1.tac = htons(tracking_area_identity_list->type1.tac);
2017-04-13 04:54:39 +00:00
else if (tracking_area_identity_list->type == NAS_TRACKING_AREA_IDENTITY_LIST_MANY_PLMNS)
for (i = 0; i < tracking_area_identity_list->num + 1 && i < NAS_MAX_TRACKING_AREA_IDENTITY; i++)
2017-03-21 04:50:40 +00:00
target.type2.tai[i].tac = htons(tracking_area_identity_list->type2.tai[i].tac);
else
return -1;
2017-02-16 14:55:53 +00:00
}
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 14:55:53 +00:00
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TRACKING_AREA_IDENTITY_LIST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 14:55:53 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.34 UE network capability
* M LV 3-14 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_ue_network_capability(nas_ue_network_capability_t *ue_network_capability, pkbuf_t *pkbuf)
2017-02-15 11:16:50 +00:00
{
c_uint16_t size = 0;
2017-02-16 04:59:44 +00:00
nas_ue_network_capability_t *source = pkbuf->payload;
ue_network_capability->length = source->length;
2017-03-21 04:50:40 +00:00
size = ue_network_capability->length + sizeof(ue_network_capability->length);
2017-02-15 11:16:50 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 04:59:44 +00:00
memcpy(ue_network_capability, pkbuf->payload - size, size);
2017-02-15 11:16:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " UE_NETWORK_CAPABILITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-15 11:16:50 +00:00
}
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_ue_network_capability(pkbuf_t *pkbuf, nas_ue_network_capability_t *ue_network_capability)
{
c_uint16_t size = ue_network_capability->length + sizeof(ue_network_capability->length);
nas_ue_network_capability_t target;
memcpy(&target, ue_network_capability, sizeof(nas_ue_network_capability_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " UE_NETWORK_CAPABILITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-04-25 11:08:03 +00:00
/* 9.9.3.35 UE radio capability information update needed
* O TV 1 */
c_int16_t nas_decode_ue_radio_capability_information_update_needed(nas_ue_radio_capability_information_update_needed_t *ue_radio_capability_information_update_needed, pkbuf_t *pkbuf)
{
memcpy(ue_radio_capability_information_update_needed, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " UE_RADIO_CAPABILITY_INFORMATION_UPDATE_NEEDED - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-25 11:08:03 +00:00
return 0;
}
c_int16_t nas_encode_ue_radio_capability_information_update_needed(pkbuf_t *pkbuf, nas_ue_radio_capability_information_update_needed_t *ue_radio_capability_information_update_needed)
{
c_uint16_t size = sizeof(nas_ue_radio_capability_information_update_needed_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, ue_radio_capability_information_update_needed, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " UE_RADIO_CAPABILITY_INFORMATION_UPDATE_NEEDED - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
/* 9.9.3.36 UE security capability
* M LV 3-6 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_ue_security_capability(nas_ue_security_capability_t *ue_security_capability, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
2017-03-21 04:50:40 +00:00
nas_ue_security_capability_t *source = pkbuf->payload;
2017-03-21 04:50:40 +00:00
ue_security_capability->length = source->length;
size = ue_security_capability->length + sizeof(ue_security_capability->length);
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(ue_security_capability, pkbuf->payload - size, size);
2017-03-06 08:55:50 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " UE_SECURITY_CAPABILITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_ue_security_capability(pkbuf_t *pkbuf, nas_ue_security_capability_t *ue_security_capability)
{
c_uint16_t size = ue_security_capability->length + sizeof(ue_security_capability->length);
nas_ue_security_capability_t target;
memcpy(&target, ue_security_capability, sizeof(nas_ue_security_capability_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " UE_SECURITY_CAPABILITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.37 Emergency number list
2017-03-20 08:07:27 +00:00
* O TLV 5-50 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_emergency_number_list(nas_emergency_number_list_t *emergency_number_list, pkbuf_t *pkbuf)
2017-03-20 08:07:27 +00:00
{
c_uint16_t size = 0;
2017-03-21 04:50:40 +00:00
nas_emergency_number_list_t *source = pkbuf->payload;
emergency_number_list->length = source->length;
size = emergency_number_list->length + sizeof(emergency_number_list->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(emergency_number_list, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EMERGENCY_NUMBER_LIST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_emergency_number_list(pkbuf_t *pkbuf, nas_emergency_number_list_t *emergency_number_list)
{
c_uint16_t size = emergency_number_list->length + sizeof(emergency_number_list->length);
2017-03-20 08:07:27 +00:00
nas_emergency_number_list_t target;
memcpy(&target, emergency_number_list, sizeof(nas_emergency_number_list_t));
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-03-20 08:07:27 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EMERGENCY_NUMBER_LIST - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-03-20 08:07:27 +00:00
2017-04-26 06:14:56 +00:00
/* 9.9.3.38 CLI
* O TLV 3-14 */
c_int16_t nas_decode_cli(nas_cli_t *cli, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_cli_t *source = pkbuf->payload;
cli->length = source->length;
size = cli->length + sizeof(cli->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(cli, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " CLI - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_cli(pkbuf_t *pkbuf, nas_cli_t *cli)
{
c_uint16_t size = cli->length + sizeof(cli->length);
nas_cli_t target;
memcpy(&target, cli, sizeof(nas_cli_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " CLI - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
/* 9.9.3.39 SS Code
* O TV 2 */
c_int16_t nas_decode_ss_code(nas_ss_code_t *ss_code, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_ss_code_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(ss_code, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SS_CODE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_ss_code(pkbuf_t *pkbuf, nas_ss_code_t *ss_code)
{
c_uint16_t size = sizeof(nas_ss_code_t);
nas_ss_code_t target;
memcpy(&target, ss_code, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SS_CODE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.4 Authentication response parameter
* M LV 5-17 */
c_int16_t nas_decode_authentication_response_parameter(nas_authentication_response_parameter_t *authentication_response_parameter, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_authentication_response_parameter_t *source = pkbuf->payload;
authentication_response_parameter->length = source->length;
size = authentication_response_parameter->length + sizeof(authentication_response_parameter->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(authentication_response_parameter, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " AUTHENTICATION_RESPONSE_PARAMETER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_authentication_response_parameter(pkbuf_t *pkbuf, nas_authentication_response_parameter_t *authentication_response_parameter)
{
c_uint16_t size = authentication_response_parameter->length + sizeof(authentication_response_parameter->length);
nas_authentication_response_parameter_t target;
memcpy(&target, authentication_response_parameter, sizeof(nas_authentication_response_parameter_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-03-20 08:07:27 +00:00
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " AUTHENTICATION_RESPONSE_PARAMETER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-20 08:07:27 +00:00
return size;
}
2017-04-26 06:14:56 +00:00
/* 9.9.3.40 LCS indicator
* O TV 2 */
c_int16_t nas_decode_lcs_indicator(nas_lcs_indicator_t *lcs_indicator, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_lcs_indicator_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(lcs_indicator, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LCS_INDICATOR - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_lcs_indicator(pkbuf_t *pkbuf, nas_lcs_indicator_t *lcs_indicator)
{
c_uint16_t size = sizeof(nas_lcs_indicator_t);
nas_lcs_indicator_t target;
memcpy(&target, lcs_indicator, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LCS_INDICATOR - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
/* 9.9.3.41 LCS client identity
* O TLV 3-257 */
c_int16_t nas_decode_lcs_client_identity(nas_lcs_client_identity_t *lcs_client_identity, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_lcs_client_identity_t *source = pkbuf->payload;
lcs_client_identity->length = source->length;
size = lcs_client_identity->length + sizeof(lcs_client_identity->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(lcs_client_identity, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LCS_CLIENT_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_lcs_client_identity(pkbuf_t *pkbuf, nas_lcs_client_identity_t *lcs_client_identity)
{
c_uint16_t size = lcs_client_identity->length + sizeof(lcs_client_identity->length);
nas_lcs_client_identity_t target;
memcpy(&target, lcs_client_identity, sizeof(nas_lcs_client_identity_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LCS_CLIENT_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
/* 9.9.3.42 Generic message container type
* M V 1 */
c_int16_t nas_decode_generic_message_container_type(nas_generic_message_container_type_t *generic_message_container_type, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_generic_message_container_type_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(generic_message_container_type, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " GENERIC_MESSAGE_CONTAINER_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_generic_message_container_type(pkbuf_t *pkbuf, nas_generic_message_container_type_t *generic_message_container_type)
{
c_uint16_t size = sizeof(nas_generic_message_container_type_t);
nas_generic_message_container_type_t target;
memcpy(&target, generic_message_container_type, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " GENERIC_MESSAGE_CONTAINER_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return size;
}
/* 9.9.3.43 Generic message container
* M LV-E 3-n */
c_int16_t nas_decode_generic_message_container(nas_generic_message_container_t *generic_message_container, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_generic_message_container_t *source = pkbuf->payload;
generic_message_container->len = ntohs(source->len);
size = generic_message_container->len + sizeof(generic_message_container->len);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
generic_message_container->data = pkbuf->payload - size + sizeof(generic_message_container->len);
2017-08-01 02:34:15 +00:00
d_trace(5, " GENERIC_MESSAGE_CONTAINER - ");
d_trace_hex(5, generic_message_container->data, generic_message_container->len);
2017-04-26 06:14:56 +00:00
return size;
}
c_int16_t nas_encode_generic_message_container(pkbuf_t *pkbuf, nas_generic_message_container_t *generic_message_container)
{
c_uint16_t size = 0;
c_uint16_t target;
d_assert(generic_message_container, return -1, "Null param");
d_assert(generic_message_container->data, return -1, "Null param");
size = sizeof(generic_message_container->len);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
target = htons(generic_message_container->len);
memcpy(pkbuf->payload - size, &target, size);
size = generic_message_container->len;
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, generic_message_container->data, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " GENERIC_MESSAGE_CONTAINER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:14:56 +00:00
return generic_message_container->len + sizeof(generic_message_container->len);
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.44 Voice domain preference and UE usage setting
2017-02-16 04:59:44 +00:00
* O TLV 3 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_voice_domain_preference_and_ue_usage_setting(nas_voice_domain_preference_and_ue_usage_setting_t *voice_domain_preference_and_ue_usage_setting, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
c_uint16_t size = 0;
nas_voice_domain_preference_and_ue_usage_setting_t *source = pkbuf->payload;
voice_domain_preference_and_ue_usage_setting->length = source->length;
2017-03-21 04:50:40 +00:00
size = voice_domain_preference_and_ue_usage_setting->length + sizeof(voice_domain_preference_and_ue_usage_setting->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(voice_domain_preference_and_ue_usage_setting, pkbuf->payload - size, size);
2017-02-16 04:59:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " VOICE_DOMAIN_PREFERENCE_AND_UE_USAGE_SETTING - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_voice_domain_preference_and_ue_usage_setting(pkbuf_t *pkbuf, nas_voice_domain_preference_and_ue_usage_setting_t *voice_domain_preference_and_ue_usage_setting)
{
c_uint16_t size = voice_domain_preference_and_ue_usage_setting->length + sizeof(voice_domain_preference_and_ue_usage_setting->length);
nas_voice_domain_preference_and_ue_usage_setting_t target;
memcpy(&target, voice_domain_preference_and_ue_usage_setting, sizeof(nas_voice_domain_preference_and_ue_usage_setting_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " VOICE_DOMAIN_PREFERENCE_AND_UE_USAGE_SETTING - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
/* 9.9.3.45 GUTI type
2017-02-16 04:59:44 +00:00
* O TV 1 */
2017-03-20 14:43:52 +00:00
c_int16_t nas_decode_guti_type(nas_guti_type_t *guti_type, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
memcpy(guti_type, pkbuf->payload - 1, 1);
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " GUTI_TYPE - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
return 0;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_guti_type(pkbuf_t *pkbuf, nas_guti_type_t *guti_type)
{
c_uint16_t size = sizeof(nas_guti_type_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, guti_type, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " GUTI_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-02-16 04:59:44 +00:00
/* 9.9.3.46 Extended DRX parameters
* O TLV 3 */
2017-03-21 04:50:40 +00:00
c_int16_t nas_decode_extended_drx_parameters(nas_extended_drx_parameters_t *extended_drx_parameters, pkbuf_t *pkbuf)
2017-02-16 04:59:44 +00:00
{
c_uint16_t size = 0;
nas_extended_drx_parameters_t *source = pkbuf->payload;
extended_drx_parameters->length = source->length;
2017-03-21 04:50:40 +00:00
size = extended_drx_parameters->length + sizeof(extended_drx_parameters->length);
2017-02-16 04:59:44 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-02-16 04:59:44 +00:00
memcpy(extended_drx_parameters, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EXTENDED_DRX_PARAMETERS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 12:47:48 +00:00
return size;
2017-02-16 04:59:44 +00:00
}
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_extended_drx_parameters(pkbuf_t *pkbuf, nas_extended_drx_parameters_t *extended_drx_parameters)
2017-02-16 09:11:01 +00:00
{
2017-03-21 04:50:40 +00:00
c_uint16_t size = extended_drx_parameters->length + sizeof(extended_drx_parameters->length);
nas_extended_drx_parameters_t target;
memcpy(&target, extended_drx_parameters, sizeof(nas_extended_drx_parameters_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EXTENDED_DRX_PARAMETERS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-04-25 11:08:03 +00:00
/* 9.9.3.4a Ciphering key sequence number
* O TV 1 */
c_int16_t nas_decode_ciphering_key_sequence_number(nas_ciphering_key_sequence_number_t *ciphering_key_sequence_number, pkbuf_t *pkbuf)
{
memcpy(ciphering_key_sequence_number, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " CIPHERING_KEY_SEQUENCE_NUMBER - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-25 11:08:03 +00:00
return 0;
}
c_int16_t nas_encode_ciphering_key_sequence_number(pkbuf_t *pkbuf, nas_ciphering_key_sequence_number_t *ciphering_key_sequence_number)
{
c_uint16_t size = sizeof(nas_ciphering_key_sequence_number_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, ciphering_key_sequence_number, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " CIPHERING_KEY_SEQUENCE_NUMBER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
/* 9.9.3.5 CSFB response
* O TV 1 */
c_int16_t nas_decode_csfb_response(nas_csfb_response_t *csfb_response, pkbuf_t *pkbuf)
{
memcpy(csfb_response, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " CSFB_RESPONSE - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-25 11:08:03 +00:00
return 0;
}
c_int16_t nas_encode_csfb_response(pkbuf_t *pkbuf, nas_csfb_response_t *csfb_response)
{
c_uint16_t size = sizeof(nas_csfb_response_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, csfb_response, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " CSFB_RESPONSE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
2017-04-13 15:17:56 +00:00
/* 9.9.3.6 Daylight saving time
* O TLV 3 */
c_int16_t nas_decode_daylight_saving_time(nas_daylight_saving_time_t *daylight_saving_time, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_daylight_saving_time_t *source = pkbuf->payload;
daylight_saving_time->length = source->length;
size = daylight_saving_time->length + sizeof(daylight_saving_time->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(daylight_saving_time, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " DAYLIGHT_SAVING_TIME - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-13 15:17:56 +00:00
return size;
}
c_int16_t nas_encode_daylight_saving_time(pkbuf_t *pkbuf, nas_daylight_saving_time_t *daylight_saving_time)
{
c_uint16_t size = daylight_saving_time->length + sizeof(daylight_saving_time->length);
nas_daylight_saving_time_t target;
memcpy(&target, daylight_saving_time, sizeof(nas_daylight_saving_time_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " DAYLIGHT_SAVING_TIME - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-13 15:17:56 +00:00
return size;
}
2017-04-25 11:08:03 +00:00
/* 9.9.3.7 Detach type
* M V 1/2 */
c_int16_t nas_decode_detach_type(nas_detach_type_t *detach_type, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_detach_type_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(detach_type, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " DETACH_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
c_int16_t nas_encode_detach_type(pkbuf_t *pkbuf, nas_detach_type_t *detach_type)
{
c_uint16_t size = sizeof(nas_detach_type_t);
nas_detach_type_t target;
memcpy(&target, detach_type, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " DETACH_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.8 DRX parameter
* O TV 3 */
c_int16_t nas_decode_drx_parameter(nas_drx_parameter_t *drx_parameter, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_drx_parameter_t);
2017-02-16 09:11:01 +00:00
2017-03-21 04:50:40 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(drx_parameter, pkbuf->payload - size, size);
2017-02-16 09:11:01 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " DRX_PARAMETER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-02-16 12:47:48 +00:00
2017-03-21 04:50:40 +00:00
c_int16_t nas_encode_drx_parameter(pkbuf_t *pkbuf, nas_drx_parameter_t *drx_parameter)
{
c_uint16_t size = sizeof(nas_drx_parameter_t);
nas_drx_parameter_t target;
memcpy(&target, drx_parameter, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-02-16 09:11:01 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " DRX_PARAMETER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-02-16 09:11:01 +00:00
return size;
}
2017-03-21 04:50:40 +00:00
/* 9.9.3.9 EMM cause
* O TV 2 */
c_int16_t nas_decode_emm_cause(nas_emm_cause_t *emm_cause, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_emm_cause_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(emm_cause, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EMM_CAUSE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
c_int16_t nas_encode_emm_cause(pkbuf_t *pkbuf, nas_emm_cause_t *emm_cause)
{
c_uint16_t size = sizeof(nas_emm_cause_t);
nas_emm_cause_t target;
memcpy(&target, emm_cause, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EMM_CAUSE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-03-21 04:50:40 +00:00
return size;
}
2017-04-07 14:36:08 +00:00
/* 9.9.4.1 Access point name
2017-04-12 15:08:12 +00:00
* M LV 2-101 */
2017-04-07 14:36:08 +00:00
c_int16_t nas_decode_access_point_name(nas_access_point_name_t *access_point_name, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_access_point_name_t *source = pkbuf->payload;
access_point_name->length = source->length;
size = access_point_name->length + sizeof(access_point_name->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(access_point_name, pkbuf->payload - size, size);
2017-08-19 11:16:00 +00:00
{
c_int8_t apn[MAX_APN_LEN];
access_point_name->length = apn_parse(apn, access_point_name->apn, access_point_name->length);
core_cpystrn(access_point_name->apn, apn, c_min(access_point_name->length, MAX_APN_LEN) + 1);
}
2017-08-19 07:49:44 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " ACCESS_POINT_NAME - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
c_int16_t nas_encode_access_point_name(pkbuf_t *pkbuf, nas_access_point_name_t *access_point_name)
{
c_uint16_t size = access_point_name->length + sizeof(access_point_name->length);
nas_access_point_name_t target;
memcpy(&target, access_point_name, sizeof(nas_access_point_name_t));
2017-08-19 11:16:00 +00:00
target.length = apn_build(target.apn, access_point_name->apn, access_point_name->length);
size = target.length + sizeof(target.length);
2017-08-19 07:49:44 +00:00
2017-04-07 14:36:08 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " ACCESS_POINT_NAME - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
/* 9.9.4.11 Protocol configuration options
* O TLV 3-253 */
c_int16_t nas_decode_protocol_configuration_options(nas_protocol_configuration_options_t *protocol_configuration_options, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_protocol_configuration_options_t *source = pkbuf->payload;
protocol_configuration_options->length = source->length;
size = protocol_configuration_options->length + sizeof(protocol_configuration_options->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(protocol_configuration_options, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " PROTOCOL_CONFIGURATION_OPTIONS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
c_int16_t nas_encode_protocol_configuration_options(pkbuf_t *pkbuf, nas_protocol_configuration_options_t *protocol_configuration_options)
{
c_uint16_t size = protocol_configuration_options->length + sizeof(protocol_configuration_options->length);
nas_protocol_configuration_options_t target;
memcpy(&target, protocol_configuration_options, sizeof(nas_protocol_configuration_options_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " PROTOCOL_CONFIGURATION_OPTIONS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
2017-04-12 15:08:12 +00:00
/* 9.9.4.12 Quality of service
* O TLV 14-22 */
c_int16_t nas_decode_quality_of_service(nas_quality_of_service_t *quality_of_service, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_quality_of_service_t *source = pkbuf->payload;
quality_of_service->length = source->length;
size = quality_of_service->length + sizeof(quality_of_service->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(quality_of_service, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " QUALITY_OF_SERVICE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
c_int16_t nas_encode_quality_of_service(pkbuf_t *pkbuf, nas_quality_of_service_t *quality_of_service)
{
c_uint16_t size = quality_of_service->length + sizeof(quality_of_service->length);
nas_quality_of_service_t target;
memcpy(&target, quality_of_service, sizeof(nas_quality_of_service_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " QUALITY_OF_SERVICE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
/* 9.9.4.13 Radio priority
* O TV 1 */
c_int16_t nas_decode_radio_priority(nas_radio_priority_t *radio_priority, pkbuf_t *pkbuf)
{
memcpy(radio_priority, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " RADIO_PRIORITY - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-12 15:08:12 +00:00
return 0;
}
c_int16_t nas_encode_radio_priority(pkbuf_t *pkbuf, nas_radio_priority_t *radio_priority)
{
c_uint16_t size = sizeof(nas_radio_priority_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, radio_priority, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " RADIO_PRIORITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
2017-04-09 07:34:31 +00:00
/* 9.9.4.13A Re-attempt indicator
* O TLV 3 */
c_int16_t nas_decode_re_attempt_indicator(nas_re_attempt_indicator_t *re_attempt_indicator, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_re_attempt_indicator_t *source = pkbuf->payload;
re_attempt_indicator->length = source->length;
size = re_attempt_indicator->length + sizeof(re_attempt_indicator->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(re_attempt_indicator, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " RE_ATTEMPT_INDICATOR - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-09 07:34:31 +00:00
return size;
}
c_int16_t nas_encode_re_attempt_indicator(pkbuf_t *pkbuf, nas_re_attempt_indicator_t *re_attempt_indicator)
{
c_uint16_t size = re_attempt_indicator->length + sizeof(re_attempt_indicator->length);
nas_re_attempt_indicator_t target;
memcpy(&target, re_attempt_indicator, sizeof(nas_re_attempt_indicator_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " RE_ATTEMPT_INDICATOR - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-09 07:34:31 +00:00
return size;
}
2017-04-07 14:36:08 +00:00
/* 9.9.4.14 Request type
* M V 1/2 */
c_int16_t nas_decode_request_type(nas_request_type_t *request_type, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_request_type_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(request_type, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " REQUEST_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
c_int16_t nas_encode_request_type(pkbuf_t *pkbuf, nas_request_type_t *request_type)
{
c_uint16_t size = sizeof(nas_request_type_t);
nas_request_type_t target;
memcpy(&target, request_type, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " REQUEST_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
2017-04-26 06:45:46 +00:00
/* 9.9.4.15 Traffic flow aggregate description
* M LV 2-256 */
c_int16_t nas_decode_traffic_flow_aggregate_description(nas_traffic_flow_aggregate_description_t *traffic_flow_aggregate_description, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_traffic_flow_aggregate_description_t *source = pkbuf->payload;
traffic_flow_aggregate_description->length = source->length;
size = traffic_flow_aggregate_description->length + sizeof(traffic_flow_aggregate_description->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(traffic_flow_aggregate_description, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TRAFFIC_FLOW_AGGREGATE_DESCRIPTION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:45:46 +00:00
return size;
}
c_int16_t nas_encode_traffic_flow_aggregate_description(pkbuf_t *pkbuf, nas_traffic_flow_aggregate_description_t *traffic_flow_aggregate_description)
{
c_uint16_t size = traffic_flow_aggregate_description->length + sizeof(traffic_flow_aggregate_description->length);
nas_traffic_flow_aggregate_description_t target;
memcpy(&target, traffic_flow_aggregate_description, sizeof(nas_traffic_flow_aggregate_description_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TRAFFIC_FLOW_AGGREGATE_DESCRIPTION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:45:46 +00:00
return size;
}
2017-04-26 06:40:46 +00:00
/* 9.9.4.16 Traffic flow template
* M LV 2-256 */
c_int16_t nas_decode_traffic_flow_template(nas_traffic_flow_template_t *traffic_flow_template, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_traffic_flow_template_t *source = pkbuf->payload;
traffic_flow_template->length = source->length;
size = traffic_flow_template->length + sizeof(traffic_flow_template->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(traffic_flow_template, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TRAFFIC_FLOW_TEMPLATE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:40:46 +00:00
return size;
}
c_int16_t nas_encode_traffic_flow_template(pkbuf_t *pkbuf, nas_traffic_flow_template_t *traffic_flow_template)
{
c_uint16_t size = traffic_flow_template->length + sizeof(traffic_flow_template->length);
nas_traffic_flow_template_t target;
memcpy(&target, traffic_flow_template, sizeof(nas_traffic_flow_template_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TRAFFIC_FLOW_TEMPLATE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-26 06:40:46 +00:00
return size;
}
2017-04-12 15:08:12 +00:00
/* 9.9.4.17 Transaction identifier
* O TLV 3-4 */
c_int16_t nas_decode_transaction_identifier(nas_transaction_identifier_t *transaction_identifier, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_transaction_identifier_t *source = pkbuf->payload;
transaction_identifier->length = source->length;
size = transaction_identifier->length + sizeof(transaction_identifier->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(transaction_identifier, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TRANSACTION_IDENTIFIER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
c_int16_t nas_encode_transaction_identifier(pkbuf_t *pkbuf, nas_transaction_identifier_t *transaction_identifier)
{
c_uint16_t size = transaction_identifier->length + sizeof(transaction_identifier->length);
nas_transaction_identifier_t target;
memcpy(&target, transaction_identifier, sizeof(nas_transaction_identifier_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " TRANSACTION_IDENTIFIER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
/* 9.9.4.18 WLAN offload acceptability
* O TV 1 */
c_int16_t nas_decode_wlan_offload_acceptability(nas_wlan_offload_acceptability_t *wlan_offload_acceptability, pkbuf_t *pkbuf)
{
memcpy(wlan_offload_acceptability, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " WLAN_OFFLOAD_ACCEPTABILITY - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-12 15:08:12 +00:00
return 0;
}
c_int16_t nas_encode_wlan_offload_acceptability(pkbuf_t *pkbuf, nas_wlan_offload_acceptability_t *wlan_offload_acceptability)
{
c_uint16_t size = sizeof(nas_wlan_offload_acceptability_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, wlan_offload_acceptability, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " WLAN_OFFLOAD_ACCEPTABILITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
2017-04-07 14:36:08 +00:00
/* 9.9.4.19 NBIFOM container
* O TLV 3-257 */
c_int16_t nas_decode_nbifom_container(nas_nbifom_container_t *nbifom_container, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_nbifom_container_t *source = pkbuf->payload;
nbifom_container->length = source->length;
size = nbifom_container->length + sizeof(nbifom_container->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(nbifom_container, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " NBIFOM_CONTAINER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
c_int16_t nas_encode_nbifom_container(pkbuf_t *pkbuf, nas_nbifom_container_t *nbifom_container)
{
c_uint16_t size = nbifom_container->length + sizeof(nbifom_container->length);
nas_nbifom_container_t target;
memcpy(&target, nbifom_container, sizeof(nas_nbifom_container_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " NBIFOM_CONTAINER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
2017-04-12 15:08:12 +00:00
/* 9.9.4.2 APN aggregate maximum bit rate
* O TLV 4-8 */
c_int16_t nas_decode_apn_aggregate_maximum_bit_rate(nas_apn_aggregate_maximum_bit_rate_t *apn_aggregate_maximum_bit_rate, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_apn_aggregate_maximum_bit_rate_t *source = pkbuf->payload;
apn_aggregate_maximum_bit_rate->length = source->length;
size = apn_aggregate_maximum_bit_rate->length + sizeof(apn_aggregate_maximum_bit_rate->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(apn_aggregate_maximum_bit_rate, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " APN_AGGREGATE_MAXIMUM_BIT_RATE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
c_int16_t nas_encode_apn_aggregate_maximum_bit_rate(pkbuf_t *pkbuf, nas_apn_aggregate_maximum_bit_rate_t *apn_aggregate_maximum_bit_rate)
{
c_uint16_t size = apn_aggregate_maximum_bit_rate->length + sizeof(apn_aggregate_maximum_bit_rate->length);
nas_apn_aggregate_maximum_bit_rate_t target;
memcpy(&target, apn_aggregate_maximum_bit_rate, sizeof(nas_apn_aggregate_maximum_bit_rate_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " APN_AGGREGATE_MAXIMUM_BIT_RATE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
2017-04-07 14:36:08 +00:00
/* 9.9.4.22 Header compression configuration
* O TLV 5-257 */
c_int16_t nas_decode_header_compression_configuration(nas_header_compression_configuration_t *header_compression_configuration, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_header_compression_configuration_t *source = pkbuf->payload;
header_compression_configuration->length = source->length;
size = header_compression_configuration->length + sizeof(header_compression_configuration->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(header_compression_configuration, pkbuf->payload - size, size);
2017-04-09 08:14:32 +00:00
header_compression_configuration->max_cid = ntohs(header_compression_configuration->max_cid);
2017-08-01 02:34:15 +00:00
d_trace(5, " HEADER_COMPRESSION_CONFIGURATION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
c_int16_t nas_encode_header_compression_configuration(pkbuf_t *pkbuf, nas_header_compression_configuration_t *header_compression_configuration)
{
c_uint16_t size = header_compression_configuration->length + sizeof(header_compression_configuration->length);
nas_header_compression_configuration_t target;
memcpy(&target, header_compression_configuration, sizeof(nas_header_compression_configuration_t));
2017-04-09 08:14:32 +00:00
target.max_cid = htons(header_compression_configuration->max_cid);
2017-04-07 14:36:08 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " HEADER_COMPRESSION_CONFIGURATION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
2017-04-12 15:08:12 +00:00
/* 9.9.4.23 Control plane only indication
* O TV 1 */
c_int16_t nas_decode_control_plane_only_indication(nas_control_plane_only_indication_t *control_plane_only_indication, pkbuf_t *pkbuf)
{
memcpy(control_plane_only_indication, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " CONTROL_PLANE_ONLY_INDICATION - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-12 15:08:12 +00:00
return 0;
}
c_int16_t nas_encode_control_plane_only_indication(pkbuf_t *pkbuf, nas_control_plane_only_indication_t *control_plane_only_indication)
{
c_uint16_t size = sizeof(nas_control_plane_only_indication_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, control_plane_only_indication, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " CONTROL_PLANE_ONLY_INDICATION - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
2017-04-07 14:36:08 +00:00
/* 9.9.4.26 Extended protocol configuration options
* O TLV-E 4-65538 */
c_int16_t nas_decode_extended_protocol_configuration_options(nas_extended_protocol_configuration_options_t *extended_protocol_configuration_options, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_extended_protocol_configuration_options_t *source = pkbuf->payload;
2017-04-09 05:26:19 +00:00
extended_protocol_configuration_options->len = ntohs(source->len);
size = extended_protocol_configuration_options->len + sizeof(extended_protocol_configuration_options->len);
2017-04-07 14:36:08 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-04-09 05:26:19 +00:00
extended_protocol_configuration_options->data = pkbuf->payload - size + sizeof(extended_protocol_configuration_options->len);
2017-04-07 14:36:08 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EXTENDED_PROTOCOL_CONFIGURATION_OPTIONS - ");
d_trace_hex(5, extended_protocol_configuration_options->data, extended_protocol_configuration_options->len);
2017-04-07 14:36:08 +00:00
return size;
}
c_int16_t nas_encode_extended_protocol_configuration_options(pkbuf_t *pkbuf, nas_extended_protocol_configuration_options_t *extended_protocol_configuration_options)
{
c_uint16_t size = 0;
c_uint16_t target;
d_assert(extended_protocol_configuration_options, return -1, "Null param");
2017-04-09 05:26:19 +00:00
d_assert(extended_protocol_configuration_options->data, return -1, "Null param");
2017-04-07 14:36:08 +00:00
2017-04-09 05:26:19 +00:00
size = sizeof(extended_protocol_configuration_options->len);
2017-04-07 14:36:08 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-04-09 05:26:19 +00:00
target = htons(extended_protocol_configuration_options->len);
2017-04-07 14:36:08 +00:00
memcpy(pkbuf->payload - size, &target, size);
2017-04-09 05:26:19 +00:00
size = extended_protocol_configuration_options->len;
2017-04-07 14:36:08 +00:00
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
2017-04-09 05:26:19 +00:00
memcpy(pkbuf->payload - size, extended_protocol_configuration_options->data, size);
2017-04-07 14:36:08 +00:00
2017-08-01 02:34:15 +00:00
d_trace(5, " EXTENDED_PROTOCOL_CONFIGURATION_OPTIONS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-09 05:26:19 +00:00
return extended_protocol_configuration_options->len + sizeof(extended_protocol_configuration_options->len);
2017-04-07 14:36:08 +00:00
}
2017-04-25 11:08:03 +00:00
/* 9.9.4.27 Header compression configuration status
* O TLV 4 */
c_int16_t nas_decode_header_compression_configuration_status(nas_header_compression_configuration_status_t *header_compression_configuration_status, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_header_compression_configuration_status_t *source = pkbuf->payload;
header_compression_configuration_status->length = source->length;
size = header_compression_configuration_status->length + sizeof(header_compression_configuration_status->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(header_compression_configuration_status, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " HEADER_COMPRESSION_CONFIGURATION_STATUS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
c_int16_t nas_encode_header_compression_configuration_status(pkbuf_t *pkbuf, nas_header_compression_configuration_status_t *header_compression_configuration_status)
{
c_uint16_t size = header_compression_configuration_status->length + sizeof(header_compression_configuration_status->length);
nas_header_compression_configuration_status_t target;
memcpy(&target, header_compression_configuration_status, sizeof(nas_header_compression_configuration_status_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " HEADER_COMPRESSION_CONFIGURATION_STATUS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-25 11:08:03 +00:00
return size;
}
2017-04-12 15:08:12 +00:00
/* 9.9.4.28 Serving PLMN rate control
* O TLV 4 */
c_int16_t nas_decode_serving_plmn_rate_control(nas_serving_plmn_rate_control_t *serving_plmn_rate_control, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_serving_plmn_rate_control_t *source = pkbuf->payload;
serving_plmn_rate_control->length = source->length;
size = serving_plmn_rate_control->length + sizeof(serving_plmn_rate_control->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(serving_plmn_rate_control, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SERVING_PLMN_RATE_CONTROL - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
c_int16_t nas_encode_serving_plmn_rate_control(pkbuf_t *pkbuf, nas_serving_plmn_rate_control_t *serving_plmn_rate_control)
{
c_uint16_t size = serving_plmn_rate_control->length + sizeof(serving_plmn_rate_control->length);
nas_serving_plmn_rate_control_t target;
memcpy(&target, serving_plmn_rate_control, sizeof(nas_serving_plmn_rate_control_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " SERVING_PLMN_RATE_CONTROL - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
/* 9.9.4.2A Connectivity type
* O TV 1 */
c_int16_t nas_decode_connectivity_type(nas_connectivity_type_t *connectivity_type, pkbuf_t *pkbuf)
{
memcpy(connectivity_type, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " CONNECTIVITY_TYPE - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-12 15:08:12 +00:00
return 0;
}
c_int16_t nas_encode_connectivity_type(pkbuf_t *pkbuf, nas_connectivity_type_t *connectivity_type)
{
c_uint16_t size = sizeof(nas_connectivity_type_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, connectivity_type, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " CONNECTIVITY_TYPE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
/* 9.9.4.3 EPS quality of service
* M LV 2-14 */
c_int16_t nas_decode_eps_quality_of_service(nas_eps_quality_of_service_t *eps_quality_of_service, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_eps_quality_of_service_t *source = pkbuf->payload;
eps_quality_of_service->length = source->length;
size = eps_quality_of_service->length + sizeof(eps_quality_of_service->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(eps_quality_of_service, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_QUALITY_OF_SERVICE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
c_int16_t nas_encode_eps_quality_of_service(pkbuf_t *pkbuf, nas_eps_quality_of_service_t *eps_quality_of_service)
{
c_uint16_t size = eps_quality_of_service->length + sizeof(eps_quality_of_service->length);
nas_eps_quality_of_service_t target;
memcpy(&target, eps_quality_of_service, sizeof(nas_eps_quality_of_service_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " EPS_QUALITY_OF_SERVICE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
2017-04-09 07:34:31 +00:00
/* 9.9.4.4 ESM cause
2017-04-12 15:08:12 +00:00
* O TV 2 */
2017-04-09 07:34:31 +00:00
c_int16_t nas_decode_esm_cause(nas_esm_cause_t *esm_cause, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_esm_cause_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(esm_cause, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " ESM_CAUSE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-09 07:34:31 +00:00
return size;
}
c_int16_t nas_encode_esm_cause(pkbuf_t *pkbuf, nas_esm_cause_t *esm_cause)
{
c_uint16_t size = sizeof(nas_esm_cause_t);
nas_esm_cause_t target;
memcpy(&target, esm_cause, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " ESM_CAUSE - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-09 07:34:31 +00:00
return size;
}
2017-04-07 14:36:08 +00:00
/* 9.9.4.5 ESM information transfer flag
* O TV 1 */
c_int16_t nas_decode_esm_information_transfer_flag(nas_esm_information_transfer_flag_t *esm_information_transfer_flag, pkbuf_t *pkbuf)
{
memcpy(esm_information_transfer_flag, pkbuf->payload - 1, 1);
2017-08-01 02:34:15 +00:00
d_trace(5, " ESM_INFORMATION_TRANSFER_FLAG - ");
d_trace_hex(5, pkbuf->payload - 1, 1);
2017-04-07 14:36:08 +00:00
return 0;
}
c_int16_t nas_encode_esm_information_transfer_flag(pkbuf_t *pkbuf, nas_esm_information_transfer_flag_t *esm_information_transfer_flag)
{
c_uint16_t size = sizeof(nas_esm_information_transfer_flag_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, esm_information_transfer_flag, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " ESM_INFORMATION_TRANSFER_FLAG - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-07 14:36:08 +00:00
return size;
}
2017-04-09 07:34:31 +00:00
/* 9.9.4.6 Linked EPS bearer identity
* M V 1/2 */
c_int16_t nas_decode_linked_eps_bearer_identity(nas_linked_eps_bearer_identity_t *linked_eps_bearer_identity, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_linked_eps_bearer_identity_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(linked_eps_bearer_identity, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LINKED_EPS_BEARER_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-09 07:34:31 +00:00
return size;
}
c_int16_t nas_encode_linked_eps_bearer_identity(pkbuf_t *pkbuf, nas_linked_eps_bearer_identity_t *linked_eps_bearer_identity)
{
c_uint16_t size = sizeof(nas_linked_eps_bearer_identity_t);
nas_linked_eps_bearer_identity_t target;
memcpy(&target, linked_eps_bearer_identity, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LINKED_EPS_BEARER_IDENTITY - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-09 07:34:31 +00:00
return size;
}
2017-04-12 15:08:12 +00:00
/* 9.9.4.7 LLC service access point identifier
* O TV 2 */
c_int16_t nas_decode_llc_service_access_point_identifier(nas_llc_service_access_point_identifier_t *llc_service_access_point_identifier, pkbuf_t *pkbuf)
{
c_uint16_t size = sizeof(nas_llc_service_access_point_identifier_t);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(llc_service_access_point_identifier, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LLC_SERVICE_ACCESS_POINT_IDENTIFIER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
c_int16_t nas_encode_llc_service_access_point_identifier(pkbuf_t *pkbuf, nas_llc_service_access_point_identifier_t *llc_service_access_point_identifier)
{
c_uint16_t size = sizeof(nas_llc_service_access_point_identifier_t);
nas_llc_service_access_point_identifier_t target;
memcpy(&target, llc_service_access_point_identifier, size);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " LLC_SERVICE_ACCESS_POINT_IDENTIFIER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
/* 9.9.4.8 Packet flow Identifier
* O TLV 3 */
c_int16_t nas_decode_packet_flow_identifier(nas_packet_flow_identifier_t *packet_flow_identifier, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_packet_flow_identifier_t *source = pkbuf->payload;
packet_flow_identifier->length = source->length;
size = packet_flow_identifier->length + sizeof(packet_flow_identifier->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(packet_flow_identifier, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " PACKET_FLOW_IDENTIFIER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
c_int16_t nas_encode_packet_flow_identifier(pkbuf_t *pkbuf, nas_packet_flow_identifier_t *packet_flow_identifier)
{
c_uint16_t size = packet_flow_identifier->length + sizeof(packet_flow_identifier->length);
nas_packet_flow_identifier_t target;
memcpy(&target, packet_flow_identifier, sizeof(nas_packet_flow_identifier_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " PACKET_FLOW_IDENTIFIER - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
/* 9.9.4.9 PDN address
* M LV 6-14 */
c_int16_t nas_decode_pdn_address(nas_pdn_address_t *pdn_address, pkbuf_t *pkbuf)
{
c_uint16_t size = 0;
nas_pdn_address_t *source = pkbuf->payload;
pdn_address->length = source->length;
size = pdn_address->length + sizeof(pdn_address->length);
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pdn_address, pkbuf->payload - size, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " PDN_ADDRESS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}
c_int16_t nas_encode_pdn_address(pkbuf_t *pkbuf, nas_pdn_address_t *pdn_address)
{
c_uint16_t size = pdn_address->length + sizeof(pdn_address->length);
nas_pdn_address_t target;
memcpy(&target, pdn_address, sizeof(nas_pdn_address_t));
d_assert(pkbuf_header(pkbuf, -size) == CORE_OK, return -1, "pkbuf_header error");
memcpy(pkbuf->payload - size, &target, size);
2017-08-01 02:34:15 +00:00
d_trace(5, " PDN_ADDRESS - ");
d_trace_hex(5, pkbuf->payload - size, size);
2017-04-12 15:08:12 +00:00
return size;
}