summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ansi_683.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-01-16 20:20:21 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-01-16 20:20:21 +0000
commit234b31b98633072707a31289fd15aa1ff9e6266a (patch)
treeb9bde81b808344398c94250dc441834b84d69eb5 /epan/dissectors/packet-ansi_683.c
parent7a87962c76aee38a6d28263112030be6369f9dbc (diff)
downloadwireshark-234b31b98633072707a31289fd15aa1ff9e6266a.tar.gz
From Michael Lum:
Brought up to date with version C of the specification https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3204 svn path=/trunk/; revision=27250
Diffstat (limited to 'epan/dissectors/packet-ansi_683.c')
-rw-r--r--epan/dissectors/packet-ansi_683.c3420
1 files changed, 3129 insertions, 291 deletions
diff --git a/epan/dissectors/packet-ansi_683.c b/epan/dissectors/packet-ansi_683.c
index 40ec58c06e..bd35fd3918 100644
--- a/epan/dissectors/packet-ansi_683.c
+++ b/epan/dissectors/packet-ansi_683.c
@@ -1,8 +1,13 @@
/* packet-ansi_683.c
- * Routines for ANSI IS-683-A (OTA (Mobile)) dissection
+ * Routines for ANSI IS-683 (OTA (Mobile)) dissection
*
* Copyright 2003, Michael Lum <mlum [AT] telostech.com>
* In association with Telos Technology Inc.
+ * Copyright 2008, Michael Lum <mglum [AT] shaw.ca>
+ * In association with Global Star Solutions, ULC.
+ *
+ * Last Updated to:
+ * http://www.3gpp2.org/Public_html/specs/C.S0016-C_v2.0_081031.pdf
*
* $Id$
*
@@ -46,8 +51,8 @@
#include "epan/packet.h"
-static const char *ansi_proto_name = "ANSI IS-683-A (OTA (Mobile))";
-static const char *ansi_proto_name_short = "IS-683-A";
+static const char *ansi_proto_name = "ANSI IS-683 (OTA (Mobile))";
+static const char *ansi_proto_name_short = "IS-683";
#define ANSI_683_FORWARD 0
#define ANSI_683_REVERSE 1
@@ -64,6 +69,17 @@ static gint ett_key_g = -1;
static gint ett_rev_feat = -1;
static gint ett_for_val_block = -1;
static gint ett_band_cap = -1;
+static gint ett_scm = -1;
+static gint ett_for_puzl_block = -1;
+static gint ett_rev_puzl_block = -1;
+static gint ett_for_3gpd_block = -1;
+static gint ett_rev_3gpd_block = -1;
+static gint ett_for_mmd_block = -1;
+static gint ett_rev_mmd_block = -1;
+static gint ett_for_mms_block = -1;
+static gint ett_rev_mms_block = -1;
+static gint ett_rev_cap = -1;
+static gint ett_segment = -1;
/* Initialize the protocol and registered fields */
static int proto_ansi_683 = -1;
@@ -77,6 +93,9 @@ static dissector_handle_t data_handle;
static packet_info *g_pinfo;
static proto_tree *g_tree;
+static char *dtmf_digits = "?1234567890?????";
+static char *bcd_digits = "0123456789??????";
+
/* FUNCTIONS */
@@ -105,27 +124,51 @@ static proto_tree *g_tree;
return; \
}
-static const gchar *
-rev_feat_id_type(guint8 feat_id)
+static guint32
+fresh_handler(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
- const gchar *str;
+ guint32 value;
+ guint8 oct;
- switch (feat_id)
+ oct = tvb_get_guint8(tvb, offset);
+
+ if (oct & 0x80)
{
- case 0: str = "NAM Download (DATA_P_REV)"; break;
- case 1: str = "Key Exchange (A_KEY_P_REV)"; break;
- case 2: str = "System Selection for Preferred Roaming (SSPR_P_REV)"; break;
- case 3: str = "Service Programming Lock (SPL_P_REV)"; break;
- case 4: str = "Over-The-Air Parameter Administration (OTAPA_P_REV)"; break;
- default:
- if ((feat_id >= 5) && (feat_id <= 191)) { str = "Reserved for future standardization"; break; }
- else if ((feat_id >= 192) && (feat_id <= 254)) { str = "Available for manufacturer-specific features"; break; }
- else { str = "Reserved"; break; }
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x8000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : FRESH_INCL : TRUE",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x7fff, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : FRESH",
+ bigbuf);
+
+ return(2);
}
- return(str);
+ other_decode_bitfield_value(bigbuf, oct, 0x80, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : FRESH_INCL : FALSE",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, oct, 0x7f, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Reserved",
+ bigbuf);
+
+ return(1);
}
+/*
+ * Table 3.5.1.2-1 Result Codes
+ */
static const gchar *
rev_res_code_type(guint8 res_code)
{
@@ -148,8 +191,40 @@ rev_res_code_type(guint8 res_code)
case 12: str = "Rejected - SPC change denied by the user"; break;
case 13: str = "Rejected - Invalid SPASM"; break;
case 14: str = "Rejected - BLOCK_ID not expected in this mode"; break;
+ case 15: str = "Rejected - User Zone already in PUZL"; break;
+ case 16: str = " Rejected - User Zone not in PUZL"; break;
+ case 17: str = " Rejected - No entries in PUZL"; break;
+ case 18: str = "Rejected - Operation Mode mismatch"; break;
+ case 19: str = "Rejected - SimpleIP MAX_NUM_NAI mismatch"; break;
+ case 20: str = "Rejected - SimpleIP MAX_NAI_LENGTH mismatch"; break;
+ case 21: str = "Rejected - MobileIP MAX_NUM_NAI mismatch"; break;
+ case 22: str = "Rejected - MobileIP MAX_NAI_LENGTH mismatch"; break;
+ case 23: str = "Rejected - SimpleIP PAP MAX_SS_LENGTH mismatch"; break;
+ case 24: str = "Rejected - SimpleIP CHAP MAX_SS_LENGTH mismatch"; break;
+ case 25: str = "Rejected - MobileIP MAX_MNAAA_SS_LENGTH mismatch"; break;
+ case 26: str = "Rejected - MobileIP MAX_MN-HA_SS_LENGTH mismatch"; break;
+ case 27: str = "Rejected - MobileIP MN-AAA_AUTH_ALGORITHM mismatch"; break;
+ case 28: str = "Rejected - MobileIP MN-HA_AUTH_ALGORITHM mismatch"; break;
+ case 29: str = "Rejected - SimpleIP ACT_NAI_ENTRY_INDEX mismatch"; break;
+ case 30: str = "Rejected - MobileIP ACT_NAI_ENTRY_INDEX mismatch"; break;
+ case 31: str = "Rejected - SimpleIP PAP NAI_ENTRY_INDEX mismatch"; break;
+ case 32: str = "Rejected - SimpleIP CHAP NAI_ENTRY_INDEX mismatch"; break;
+ case 33: str = "Rejected - MobileIP NAI_ENTRY_INDEX mismatch"; break;
+ case 34: str = "Rejected - Unexpected PRL_BLOCK_ID change"; break;
+ case 35: str = "Rejected - PRL format mismatch"; break;
+ case 36: str = "Rejected - HRPD Access Authentication MAX_NAI_LENGTH mismatch"; break;
+ case 37: str = "Rejected - HRPD Access Authentication CHAP MAX_SS_LENGTH mismatch"; break;
+ case 38: str = " Rejected - MMD MAX_NUM_IMPU mismatch"; break;
+ case 39: str = " Rejected - MMD MAX_IMPU_LENGTH mismatch"; break;
+ case 40: str = " Rejected - MMD MAX_NUM_P-CSCF mismatch"; break;
+ case 41: str = " Rejected - MMD MAX_P-CSCF_LENGTH mismatch"; break;
+ case 42: str = " Rejected - Unexpected System Tag BLOCK_ID Change"; break;
+ case 43: str = " Rejected - System Tag Format mismatch"; break;
+ case 44: str = " Rejected - NUM_MMS_URI mismatch"; break;
+ case 45: str = " Rejected - MMS_URI _LENGTH mismatch"; break;
+ case 46: str = " Rejected - Invalid MMS_URI"; break;
default:
- if ((res_code >= 15) && (res_code <= 127)) { str = "Reserved for future standardization"; break; }
+ if ((res_code >= 47) && (res_code <= 127)) { str = "Reserved for future standardization"; break; }
else if ((res_code >= 128) && (res_code <= 254)) { str = "Available for manufacturer-specific Result Code definitions"; break; }
else { str = "Reserved"; break; }
}
@@ -157,12 +232,75 @@ rev_res_code_type(guint8 res_code)
return(str);
}
-#define VERIFY_SPC_VAL_BLOCK 0
-#define CHANGE_SPC_VAL_BLOCK 1
-#define VALDATE_SPASM_VAL_BLOCK 2
+/*
+ * Table 3.5.1.7-1 Feature Identifier
+ */
+static const gchar *
+rev_feat_id_type(guint8 feat_id)
+{
+ const gchar *str;
+
+ switch (feat_id)
+ {
+ case 0: str = "NAM Download (DATA_P_REV)"; break;
+ case 1: str = "Key Exchange (A_KEY_P_REV)"; break;
+ case 2: str = "System Selection for Preferred Roaming (SSPR_P_REV)"; break;
+ case 3: str = "Service Programming Lock (SPL_P_REV)"; break;
+ case 4: str = "Over-The-Air Parameter Administration (OTAPA_P_REV)"; break;
+ case 5: str = "Preferred User Zone List (PUZL_P_REV)"; break;
+ case 6: str = "3G Packet Data (3GPD)"; break;
+ case 7: str = "Secure MODE (SECURE_MODE_P_REV)"; break;
+ case 8: str = "Multimedia Domain (MMD)"; break;
+ case 9: str = "System Tag Download (TAG_P_REV)"; break;
+ case 10: str = "Multimedia Messaging Service (MMS)"; break;
+ default:
+ if ((feat_id >= 11) && (feat_id <= 191)) { str = "Reserved for future standardization"; break; }
+ else if ((feat_id >= 192) && (feat_id <= 254)) { str = "Available for manufacturer-specific features"; break; }
+ else { str = "Reserved"; break; }
+ }
+
+ return(str);
+}
+
+#define REV_TYPE_CAP_INFO_OP_MODE 0
+#define REV_TYPE_CAP_INFO_CDMA_BAND 1
+#define REV_TYPE_CAP_INFO_MEID 2
+#define REV_TYPE_CAP_INFO_ICCID 3
+#define REV_TYPE_CAP_INFO_EXT_UIM_ID 4
+#define REV_TYPE_CAP_INFO_MEID_ME 5
+/*
+ * Table 3.5.1.17.1-1 Capability Information Record Types
+ */
static const gchar *
-for_val_param_block_type(guint8 block_type)
+rev_cap_info_record_type(guint8 rec_type)
+{
+ const gchar *str;
+
+ switch (rec_type)
+ {
+ case 0: str = "Operating Mode Information"; break;
+ case 1: str = "CDMA Band Class Information"; break;
+ case 2: str = "MEID"; break;
+ case 3: str = "ICCID"; break;
+ case 4: str = "EXT_UIM_ID"; break;
+ case 5: str = "MEID_ME"; break;
+ default:
+ str = "Reserved"; break;
+ }
+
+ return(str);
+}
+
+#define FOR_BLOCK_VAL_VERIFY_SPC 0
+#define FOR_BLOCK_VAL_CHANGE_SPC 1
+#define FOR_BLOCK_VAL_VALDATE_SPASM 2
+
+/*
+ * Table 4.5.4-1 Validation Parameter Block Types
+ */
+static const gchar *
+for_param_block_val(guint8 block_type)
{
const gchar *str;
@@ -180,8 +318,15 @@ for_val_param_block_type(guint8 block_type)
return(str);
}
+#define REV_BLOCK_SSPR_PRL_DIM 0
+#define REV_BLOCK_SSPR_PRL 1
+#define REV_BLOCK_SSPR_EXT_PRL_DIM 2
+
+/*
+ * Table 3.5.3-1 SSPR Parameter Block Types
+ */
static const gchar *
-rev_sspr_param_block_type(guint8 block_type)
+rev_param_block_sspr(guint8 block_type)
{
const gchar *str;
@@ -189,8 +334,9 @@ rev_sspr_param_block_type(guint8 block_type)
{
case 0: str = "Preferred Roaming List Dimensions"; break;
case 1: str = "Preferred Roaming List"; break;
+ case 2: str = "Extended Preferred Roaming List Dimensions"; break;
default:
- if ((block_type >= 2) && (block_type <= 127)) { str = "Reserved for future standardization"; break; }
+ if ((block_type >= 3) && (block_type <= 127)) { str = "Reserved for future standardization"; break; }
else if ((block_type >= 128) && (block_type <= 254)) { str = "Available for manufacturer-specific parameter block definitions"; break; }
else { str = "Reserved"; break; }
}
@@ -198,16 +344,23 @@ rev_sspr_param_block_type(guint8 block_type)
return(str);
}
+#define FOR_BLOCK_SSPR_PRL 0
+#define FOR_BLOCK_SSPR_EXT_PRL 1
+
+/*
+ * Table 4.5.3-1 SSPR Parameter Block Types
+ */
static const gchar *
-for_sspr_param_block_type(guint8 block_type)
+for_param_block_sspr(guint8 block_type)
{
const gchar *str;
switch (block_type)
{
case 0: str = "Preferred Roaming List"; break;
+ case 1: str = "Extended Preferred Roaming List with SSPR_P_REV greater than 00000001"; break;
default:
- if ((block_type >= 1) && (block_type <= 127)) { str = "Reserved for future standardization"; break; }
+ if ((block_type >= 2) && (block_type <= 127)) { str = "Reserved for future standardization"; break; }
else if ((block_type >= 128) && (block_type <= 254)) { str = "Available for manufacturer-specific parameter block definitions"; break; }
else { str = "Reserved"; break; }
}
@@ -215,13 +368,16 @@ for_sspr_param_block_type(guint8 block_type)
return(str);
}
-#define CDMA_ANALOG_NAM_BLOCK 0
-#define MDN_NAM_BLOCK 1
-#define CDMA_NAM_BLOCK 2
-#define IMSI_T_NAM_BLOCK 3
+#define REV_BLOCK_NAM_CDMA_ANALOG 0
+#define REV_BLOCK_NAM_MDN 1
+#define REV_BLOCK_NAM_CDMA 2
+#define REV_BLOCK_NAM_IMSI_T 3
+/*
+ * Table 3.5.2-1 NAM Parameter Block Types
+ */
static const gchar *
-rev_nam_param_block_type(guint8 block_type)
+rev_param_block_nam(guint8 block_type)
{
const gchar *str;
@@ -240,8 +396,16 @@ rev_nam_param_block_type(guint8 block_type)
return(str);
}
+#define FOR_BLOCK_NAM_CDMA_ANALOG 0
+#define FOR_BLOCK_NAM_MDN 1
+#define FOR_BLOCK_NAM_CDMA 2
+#define FOR_BLOCK_NAM_IMSI_T 3
+
+/*
+ * Table 4.5.2-1 NAM Parameter Block Types
+ */
static const gchar *
-for_nam_param_block_type(guint8 block_type)
+for_param_block_nam(guint8 block_type)
{
const gchar *str;
@@ -260,31 +424,295 @@ for_nam_param_block_type(guint8 block_type)
return(str);
}
-static void
-param_verify_spc_val_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+/*
+ * Table 3.5.6-1 PUZL Parameter Block Types
+ */
+static const gchar *
+rev_param_block_puzl(guint8 block_type)
{
- guint32 saved_offset;
- guint32 value;
+ const gchar *str;
+ switch (block_type)
+ {
+ case 0: str = "PUZL Dimensions"; break;
+ case 1: str = "PUZL Priorities"; break;
+ case 2: str = "User Zone"; break;
+ case 3: str = "Preferred User Zone List"; break;
+ default:
+ if ((block_type >= 4) && (block_type <= 127)) { str = "Reserved for future standardization"; break; }
+ else if ((block_type >= 128) && (block_type <= 254)) { str = "Available for manufacturer-specific parameter block definitions"; break; }
+ else { str = "Reserved"; break; }
+ }
- EXACT_DATA_CHECK(len, 3);
+ return(str);
+}
- saved_offset = offset;
+#define FOR_BLOCK_PUZL_UZ_INS 0
+#define FOR_BLOCK_PUZL_UZ_UPD 1
+#define FOR_BLOCK_PUZL_UZ_DEL 2
+#define FOR_BLOCK_PUZL_UZ_PRI_CHANGE 3
+#define FOR_BLOCK_PUZL_FLAGS 4
- value = tvb_get_ntoh24(tvb, offset);
+/*
+ * Table 4.5.6-1 PUZL Parameter Block Types
+ */
+static const gchar *
+for_param_block_puzl(guint8 block_type)
+{
+ const gchar *str;
- proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset, len,
- "Service programming code (%d)",
- value);
+ switch (block_type)
+ {
+ case 0: str = "User Zone Insert"; break;
+ case 1: str = "User Zone Update"; break;
+ case 2: str = "User Zone Delete"; break;
+ case 3: str = "User Zone Priority Change"; break;
+ case 4: str = "PUZL Flags"; break;
+ default:
+ if ((block_type >= 5) && (block_type <= 127)) { str = "Reserved for future standardization"; break; }
+ else if ((block_type >= 128) && (block_type <= 254)) { str = "Available for manufacturer-specific parameter block definitions"; break; }
+ else { str = "Reserved"; break; }
+ }
+
+ return(str);
+}
+
+#define REV_BLOCK_3GPD_OP_CAP 0
+#define REV_BLOCK_3GPD_OP_MODE 1
+#define REV_BLOCK_3GPD_SIP_CAP 2
+#define REV_BLOCK_3GPD_MIP_CAP 3
+#define REV_BLOCK_3GPD_SIP_USER_PRO 4
+#define REV_BLOCK_3GPD_MIP_USER_PRO 5
+#define REV_BLOCK_3GPD_SIP_STATUS 6
+#define REV_BLOCK_3GPD_MIP_STATUS 7
+#define REV_BLOCK_3GPD_SIP_PAP_SS 8
+#define REV_BLOCK_3GPD_SIP_CHAP_SS 9
+#define REV_BLOCK_3GPD_MIP_SS 10
+#define REV_BLOCK_3GPD_HRPD_ACC_AUTH_CAP 11
+#define REV_BLOCK_3GPD_HRPD_ACC_AUTH_USER 12
+#define REV_BLOCK_3GPD_HRPD_ACC_AUTH_CHAP_SS 13
+
+/*
+ * Table 3.5.8-1 3GPD Parameter Block Types
+ */
+static const gchar *
+rev_param_block_3gpd(guint8 block_type)
+{
+ const gchar *str;
+
+ switch (block_type)
+ {
+ case 0: str = "3GPD Operation Capability Parameters"; break;
+ case 1: str = "3GPD Operation Mode Parameters"; break;
+ case 2: str = "SimpleIP Capability Parameters"; break;
+ case 3: str = "MobileIP Capability Parameters"; break;
+ case 4: str = "SimpleIP User Profile Parameters"; break;
+ case 5: str = "Mobile IP User Profile Parameters"; break;
+ case 6: str = "SimpleIP Status Parameters"; break;
+ case 7: str = "MobileIP Status Parameters"; break;
+ case 8: str = "SimpleIP PAP SS Parameters"; break;
+ case 9: str = "SimpleIP CHAP SS Parameters"; break;
+ case 10: str = "MobileIP SS Parameters"; break;
+ case 11: str = "HRPD Access Authentication Capability Parameters"; break;
+ case 12: str = "HRPD Access Authentication User Profile Parameters"; break;
+ case 13: str = "HRPD Access Authentication CHAP SS Parameters"; break;
+ default:
+ str = "Reserved"; break;
+ }
+
+ return(str);
}
+#define FOR_BLOCK_3GPD_OP_MODE 0
+#define FOR_BLOCK_3GPD_SIP_USER_PRO 1
+#define FOR_BLOCK_3GPD_MIP_USER_PRO 2
+#define FOR_BLOCK_3GPD_SIP_STATUS 6
+#define FOR_BLOCK_3GPD_MIP_STATUS 7
+#define FOR_BLOCK_3GPD_SIP_PAP_SS 8
+#define FOR_BLOCK_3GPD_SIP_CHAP_SS 9
+#define FOR_BLOCK_3GPD_MIP_SS 10
+#define FOR_BLOCK_3GPD_HRPD_ACC_AUTH_USER 11
+#define FOR_BLOCK_3GPD_HRPD_ACC_AUTH_CHAP_SS 12
+
+/*
+ * Table 4.5.7-1 3GPD Parameter Block Types
+ */
+static const gchar *
+for_param_block_3gpd(guint8 block_type)
+{
+ const gchar *str;
+
+ switch (block_type)
+ {
+ case 0: str = "3GPD Operation Mode Parameters"; break;
+ case 1: str = "SimpleIP User Profile Parameters"; break;
+ case 2: str = "Mobile IP User Profile Parameters"; break;
+ case 6: str = "SimpleIP Status Parameters"; break;
+ case 7: str = "MobileIP Status Parameters"; break;
+ case 8: str = "SimpleIP PAP SS Parameters"; break;
+ case 9: str = "SimpleIP CHAP SS Parameters"; break;
+ case 10: str = "MobileIP SS Parameters"; break;
+ case 11: str = "HRPD Access Authentication User Profile Parameters"; break;
+ case 12: str = "HRPD Access Authentication CHAP SS Parameters"; break;
+ default:
+ str = "Reserved"; break;
+ }
+
+ return(str);
+}
+
+#define REV_BLOCK_MMD_APP 0
+
+/*
+ * Table 3.5.9-1 MMD Parameter Block Types
+ */
+static const gchar *
+rev_param_block_mmd(guint8 block_type)
+{
+ const gchar *str;
+
+ switch (block_type)
+ {
+ case 0: str = "MMD Application Parameters"; break;
+ default:
+ str = "Reserved"; break;
+ }
+
+ return(str);
+}
+
+#define FOR_BLOCK_MMD_APP 0
+
+/*
+ * Table 4.5.8-1 MMD Parameter Block Types
+ */
+static const gchar *
+for_param_block_mmd(guint8 block_type)
+{
+ const gchar *str;
+
+ switch (block_type)
+ {
+ case 0: str = "MMD Application Parameters"; break;
+ default:
+ str = "Reserved"; break;
+ }
+
+ return(str);
+}
+
+#define REV_BLOCK_SYSTAG_HOME_SYSTAG 0
+#define REV_BLOCK_SYSTAG_GROUP_TAG_LIST_DIM 1
+#define REV_BLOCK_SYSTAG_GROUP_TAG_LIST 2
+#define REV_BLOCK_SYSTAG_SPEC_TAG_LIST_DIM 3
+#define REV_BLOCK_SYSTAG_SPEC_TAG_LIST 4
+#define REV_BLOCK_SYSTAG_CALL_PROMPT_LIST_DIM 5
+#define REV_BLOCK_SYSTAG_CALL_PROMPT_LIST 6
+
+/*
+ * Table 3.5.10-1 System Tag Parameter Block Types
+ */
+static const gchar *
+rev_param_block_systag(guint8 block_type)
+{
+ const gchar *str;
+
+ switch (block_type)
+ {
+ case 0: str = "Home System Tag"; break;
+ case 1: str = "Group Tag List Dimensions"; break;
+ case 2: str = "Group Tag List"; break;
+ case 3: str = "Specific Tag List Dimensions"; break;
+ case 4: str = "Specific Tag List"; break;
+ case 5: str = "Call Prompt List Dimensions"; break;
+ case 6: str = "Call Prompt List"; break;
+ default:
+ str = "Reserved"; break;
+ }
+
+ return(str);
+}
+
+/*
+ * Table 4.5.9-1 System Tag Parameter Block Types
+ */
+static const gchar *
+for_param_block_systag(guint8 block_type)
+{
+ const gchar *str;
+
+ switch (block_type)
+ {
+ case 0: str = "Home System Tag"; break;
+ case 1: str = "Group Tag List"; break;
+ case 2: str = "Specific Tag List"; break;
+ case 3: str = "Call Prompt List"; break;
+ default:
+ str = "Reserved"; break;
+ if ((block_type >= 4) && (block_type <= 127)) { str = "Reserved for future standardization"; break; }
+ else if ((block_type >= 128) && (block_type <= 254)) { str = "Available for manufacturer-specific parameter block definitions"; break; }
+ else { str = "Reserved"; break; }
+ }
+
+ return(str);
+}
+
+#define REV_BLOCK_MMS_URI 0
+#define REV_BLOCK_MMS_URI_CAP 1
+
+/*
+ * Table 3.5.12-1 MMS Parameter Block Types
+ */
+static const gchar *
+rev_param_block_mms(guint8 block_type)
+{
+ const gchar *str;
+
+ switch (block_type)
+ {
+ case 0: str = "MMS URI Parameters"; break;
+ case 1: str = "MMS URI Capability Parameters"; break;
+ default:
+ str = "Reserved"; break;
+ }
+
+ return(str);
+}
+
+#define FOR_BLOCK_MMS_URI 0
+
+/*
+ * Table 4.5.10-1 MMS Parameter Block Types
+ */
+static const gchar *
+for_param_block_mms(guint8 block_type)
+{
+ const gchar *str;
+
+ switch (block_type)
+ {
+ case 0: str = "MMS URI Parameters"; break;
+ default:
+ str = "Reserved"; break;
+ }
+
+ return(str);
+}
+
+/* PARAMETER BLOCK DISSECTION */
+
+/*
+ * 3.5.2.1
+ */
static void
-param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+rev_param_block_nam_cdma_analog(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
guint32 saved_offset;
guint32 value;
guint32 count;
+ proto_tree *subtree;
+ proto_item *item;
+ const gchar *str = NULL;
saved_offset = offset;
@@ -293,7 +721,7 @@ param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32
other_decode_bitfield_value(bigbuf, value, 0xffe0, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : First paging channel (FIRSTCHP) used in the home system (%d)",
+ "%s : First paging channel (FIRSTCHP) used in the home system (%lu)",
bigbuf,
(value & 0xffe0) >> 5);
@@ -304,7 +732,7 @@ param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32
other_decode_bitfield_value(bigbuf, value, 0x1fffc0, 24);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 3,
- "%s : Home system identification (HOME_SID) (%d)",
+ "%s : Home system identification (HOME_SID) (%lu)",
bigbuf,
(value & 0x1fffc0) >> 6);
@@ -319,11 +747,85 @@ param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32
value = tvb_get_ntohs(tvb, offset);
other_decode_bitfield_value(bigbuf, value, 0x1fe0, 16);
- proto_tree_add_none_format(tree, hf_ansi_683_none,
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Station class mark (SCM) (%lu)",
+ bigbuf,
+ (value & 0x1fe0) >> 5);
+
+ /*
+ * following SCM decode is from:
+ * 3GPP2 C.S0005-0 section 2.3.3
+ * 3GPP2 C.S0072-0 section 2.1.2
+ */
+ subtree = proto_item_add_subtree(item, ett_scm);
+
+ other_decode_bitfield_value(bigbuf, value, 0x1000, 16);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Station class mark (SCM) (%d)",
- bigbuf,
- (value & 0x1fe0) >> 5);
+ "%s : Extended SCM Indicator: %s",
+ bigbuf,
+ (value & 0x1000) ? "Band Classes 1,4" : "Other bands");
+
+ other_decode_bitfield_value(bigbuf, value, 0x0800, 16);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : %s",
+ bigbuf,
+ (value & 0x0800) ? "Dual Mode" : "CDMA Only");
+
+ other_decode_bitfield_value(bigbuf, value, 0x0400, 16);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : %s",
+ bigbuf,
+ (value & 0x0400) ? "Slotted" : "Non-Slotted");
+
+ if (value & 0x0200)
+ {
+ str = "";
+ proto_item_append_text(item, "%s", " (MEID configured)");
+ }
+ else
+ {
+ str = "not ";
+ }
+
+ other_decode_bitfield_value(bigbuf, value, 0x0200, 16);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : MEID %sconfigured",
+ bigbuf,
+ str);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0100, 16);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : 25 MHz Bandwidth",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0080, 16);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : %s Transmission",
+ bigbuf,
+ (value & 0x0080) ? "Discontinuous" : "Continuous");
+
+ switch ((value & 0x0060) >> 5)
+ {
+ case 0x00: str = "Class I"; break;
+ case 0x01: str = "Class II"; break;
+ case 0x02: str = "Class III"; break;
+ case 0x03: str = "Reserved"; break;
+ }
+
+ other_decode_bitfield_value(bigbuf, value, 0x0060, 16);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Power Class for Band Class 0 Analog Operation: %s",
+ bigbuf,
+ str);
offset++;
@@ -332,21 +834,21 @@ param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32
other_decode_bitfield_value(bigbuf, value, 0x1fe0, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Mobile station protocol revision number (MOB_P_REV) (%d)",
+ "%s : Mobile station protocol revision number (MOB_P_REV) (%lu)",
bigbuf,
(value & 0x1fe0) >> 5);
other_decode_bitfield_value(bigbuf, value, 0x10, 8);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset + 1, 1,
- "%s : IMSI_M Class assignment of the mobile station (IMSI_M_CLASS), Class %d",
+ "%s : IMSI_M Class assignment of the mobile station (IMSI_M_CLASS), Class %lu",
bigbuf,
(value & 0x10) >> 4);
other_decode_bitfield_value(bigbuf, value, 0x0e, 8);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset + 1, 1,
- "%s : Number of IMSI_M address digits (IMSI_M_ADDR_NUM) (%d), %d digits in NMSI",
+ "%s : Number of IMSI_M address digits (IMSI_M_ADDR_NUM) (%lu), %lu digits in NMSI",
bigbuf,
(value & 0x0e) >> 1,
(value & 0x10) ? ((value & 0x0e) >> 1) + 4 : 0);
@@ -380,7 +882,7 @@ param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32
other_decode_bitfield_value(bigbuf, value, 0x3c, 8);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s : Access overload class (ACCOLC) (%d)",
+ "%s : Access overload class (ACCOLC) (%lu)",
bigbuf,
(value & 0x3c) >> 2);
@@ -417,7 +919,7 @@ param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32
other_decode_bitfield_value(bigbuf, value, 0x3fc0, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Maximum stored SID/NID pairs (MAX_SID_NID) (%d)",
+ "%s : Maximum stored SID/NID pairs (MAX_SID_NID) (%lu)",
bigbuf,
(value & 0x3fc0) >> 6);
@@ -430,7 +932,7 @@ param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32
other_decode_bitfield_value(bigbuf, value, 0x3fc0, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Number of stored SID/NID pairs (STORED_SID_NID) (%d)",
+ "%s : Number of stored SID/NID pairs (STORED_SID_NID) (%lu)",
bigbuf,
count);
@@ -447,14 +949,16 @@ param_cdma_analog_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32
"SID/NID pairs, Reserved");
}
+/*
+ * 3.5.2.2
+ * 4.5.2.2
+ */
static void
-param_mdn_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+param_block_nam_mdn(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
guint32 saved_offset;
guint32 value, count, i;
- memset((void *) bigbuf, 0, sizeof(bigbuf));
-
saved_offset = offset;
value = tvb_get_guint8(tvb, offset);
@@ -464,22 +968,23 @@ param_mdn_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0xf0, 8);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s : Number of digits (N_DIGITS) (%d)",
+ "%s : Number of digits (N_DIGITS) (%lu)",
bigbuf,
count);
for (i=0; i < count; i++)
{
- bigbuf[i] = 0x30 + (value & 0x0f);
+ bigbuf[i] = dtmf_digits[(value & 0x0f)];
if ((i + 1) < count)
{
offset++;
value = tvb_get_guint8(tvb, offset);
- bigbuf[i+1] = 0x30 + (value & 0xf0);
+ bigbuf[i+1] = dtmf_digits[(value & 0xf0) >> 4];
i++;
}
}
+ bigbuf[i] = '\0';
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, saved_offset, len,
@@ -496,8 +1001,11 @@ param_mdn_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
}
}
+/*
+ * 3.5.2.3
+ */
static void
-param_cdma_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+rev_param_block_nam_cdma(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
guint32 saved_offset;
guint32 value;
@@ -532,7 +1040,7 @@ param_cdma_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0xff, 8);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s : Mobile station protocol revision number (MOB_P_REV) (%d)",
+ "%s : Mobile station protocol revision number (MOB_P_REV) (%lu)",
bigbuf,
value);
@@ -543,14 +1051,14 @@ param_cdma_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0x8000, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : IMSI_M Class assignment of the mobile station (IMSI_M_CLASS), Class %d",
+ "%s : IMSI_M Class assignment of the mobile station (IMSI_M_CLASS), Class %lu",
bigbuf,
(value & 0x8000) >> 15);
other_decode_bitfield_value(bigbuf, value, 0x7000, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Number of IMSI_M address digits (IMSI_M_ADDR_NUM) (%d), %d digits in NMSI",
+ "%s : Number of IMSI_M address digits (IMSI_M_ADDR_NUM) (%lu), %lu digits in NMSI",
bigbuf,
(value & 0x7000) >> 12,
(value & 0x8000) ? ((value & 0x7000) >> 12) + 4 : 0);
@@ -584,31 +1092,31 @@ param_cdma_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0x01e0, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Access overload class (ACCOLC) (%d)",
+ "%s : Access overload class (ACCOLC) (%lu)",
bigbuf,
(value & 0x01e0) >> 5);
- other_decode_bitfield_value(bigbuf, value, 0x10, 8);
+ other_decode_bitfield_value(bigbuf, value, 0x0010, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset+1, 1,
+ tvb, offset, 2,
"%s : Local control status (LOCAL_CONTROL)",
bigbuf);
- other_decode_bitfield_value(bigbuf, value, 0x08, 8);
+ other_decode_bitfield_value(bigbuf, value, 0x0008, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset+1, 1,
+ tvb, offset, 2,
"%s : Termination indicator for the home system (MOB_TERM_HOME)",
bigbuf);
- other_decode_bitfield_value(bigbuf, value, 0x04, 8);
+ other_decode_bitfield_value(bigbuf, value, 0x0004, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset+1, 1,
+ tvb, offset, 2,
"%s : Termination indicator for SID roaming (MOB_TERM_FOR_SID)",
bigbuf);
- other_decode_bitfield_value(bigbuf, value, 0x02, 8);
+ other_decode_bitfield_value(bigbuf, value, 0x0002, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset+1, 1,
+ tvb, offset, 2,
"%s : Termination indicator for NID roaming (MOB_TERM_FOR_NID)",
bigbuf);
@@ -619,7 +1127,7 @@ param_cdma_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0x01fe, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Maximum stored SID/NID pairs (MAX_SID_NID) (%d)",
+ "%s : Maximum stored SID/NID pairs (MAX_SID_NID) (%lu)",
bigbuf,
(value & 0x01fe) >> 1);
@@ -632,13 +1140,13 @@ param_cdma_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0x01fe, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Number of stored SID/NID pairs (STORED_SID_NID) (%d)",
+ "%s : Number of stored SID/NID pairs (STORED_SID_NID) (%lu)",
bigbuf,
count);
- other_decode_bitfield_value(bigbuf, value, 0x01, 8);
+ other_decode_bitfield_value(bigbuf, value, 0x0001, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset+1, 1,
+ tvb, offset, 2,
"%s : SID/NID pairs (MSB)",
bigbuf);
@@ -649,8 +1157,12 @@ param_cdma_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
"SID/NID pairs, Reserved");
}
+/*
+ * 3.5.2.4
+ * 4.5.2.4
+ */
static void
-param_imsi_t_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+param_block_nam_imsi_t(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
guint32 saved_offset;
guint32 value;
@@ -668,14 +1180,14 @@ param_imsi_t_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offse
other_decode_bitfield_value(bigbuf, value, 0x80, 8);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s : IMSI_T Class assignment of the mobile station (IMSI_T_CLASS), Class %d",
+ "%s : IMSI_T Class assignment of the mobile station (IMSI_T_CLASS), Class %lu",
bigbuf,
(value & 0x80) >> 7);
other_decode_bitfield_value(bigbuf, value, 0x70, 8);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s : Number of IMSI_T address digits (IMSI_T_ADDR_NUM ) (%d), %d digits in NMSI",
+ "%s : Number of IMSI_T address digits (IMSI_T_ADDR_NUM ) (%lu), %lu digits in NMSI",
bigbuf,
(value & 0x70) >> 4,
(value & 0x80) ? ((value & 0x70) >> 4) + 4 : 0);
@@ -715,6 +1227,380 @@ param_imsi_t_nam_block(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offse
bigbuf);
}
+/*
+ * 4.5.2.1
+ */
+static void
+for_param_block_nam_cdma_analog(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint32 saved_offset;
+ guint32 value;
+ guint32 count;
+ const gchar *str = NULL;
+
+ saved_offset = offset;
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0xffe0, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : First paging channel (FIRSTCHP) used in the home system (%lu)",
+ bigbuf,
+ (value & 0xffe0) >> 5);
+
+ offset++;
+
+ value = tvb_get_ntoh24(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x1fffc0, 24);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 3,
+ "%s : Home system identification (HOME_SID) (%lu)",
+ bigbuf,
+ (value & 0x1fffc0) >> 6);
+
+ other_decode_bitfield_value(bigbuf, value, 0x20, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset + 2, 1,
+ "%s : Extended address indicator (EX)",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x10, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset + 2, 1,
+ "%s : IMSI_M Class assignment of the mobile station (IMSI_M_CLASS), Class %lu",
+ bigbuf,
+ (value & 0x10) >> 4);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0e, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset + 2, 1,
+ "%s : Number of IMSI_M address digits (IMSI_M_ADDR_NUM) (%lu), %lu digits in NMSI",
+ bigbuf,
+ (value & 0x0e) >> 1,
+ (value & 0x10) ? ((value & 0x0e) >> 1) + 4 : 0);
+
+ offset += 2;
+
+ value = tvb_get_ntoh24(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x01ff80, 24);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 3,
+ "%s : Mobile country code (MCC_M)",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x7f, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset + 2, 1,
+ "%s : 11th and 12th digits of the IMSI_M (IMSI__M_11_12)",
+ bigbuf);
+
+ offset += 3;
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 5,
+ "The least significant 10 digits of the IMSI_M (IMSI_M_S) (34 bits)");
+
+ offset += 4;
+
+ value = tvb_get_guint8(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x3c, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Access overload class (ACCOLC) (%lu)",
+ bigbuf,
+ (value & 0x3c) >> 2);
+
+ other_decode_bitfield_value(bigbuf, value, 0x02, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Local control status (LOCAL_CONTROL)",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x01, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Termination indicator for the home system (MOB_TERM_HOME)",
+ bigbuf);
+
+ offset++;
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x8000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Termination indicator for SID roaming (MOB_TERM_FOR_SID)",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x4000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Termination indicator for NID roaming (MOB_TERM_FOR_NID)",
+ bigbuf);
+
+ count = (value & 0x3fc0) >> 6;
+
+ other_decode_bitfield_value(bigbuf, value, 0x3fc0, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Number of SID/NID pairs (N_SID_NID) (%lu)",
+ bigbuf,
+ count);
+
+ other_decode_bitfield_value(bigbuf, value, 0x003f, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : SID/NID pairs (MSB)",
+ bigbuf);
+
+ offset += 2;
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, len - (offset - saved_offset),
+ "SID/NID pairs, Reserved");
+}
+
+/*
+ * 4.5.2.2
+ * see param_block_nam_mdn()
+ */
+
+/*
+ * 4.5.2.3
+ */
+static void
+for_param_block_nam_cdma(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint32 saved_offset;
+ guint32 value;
+ guint32 count;
+
+ saved_offset = offset;
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x8000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : IMSI_M Class assignment of the mobile station (IMSI_M_CLASS), Class %lu",
+ bigbuf,
+ (value & 0x8000) >> 15);
+
+ other_decode_bitfield_value(bigbuf, value, 0x7000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Number of IMSI_M address digits (IMSI_M_ADDR_NUM) (%lu), %lu digits in NMSI",
+ bigbuf,
+ (value & 0x7000) >> 12,
+ (value & 0x8000) ? ((value & 0x7000) >> 12) + 4 : 0);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0ffc, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Mobile country code (MCC_M)",
+ bigbuf);
+
+ offset++;
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x3f80, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : 11th and 12th digits of the IMSI_M (IMSI__M_11_12)",
+ bigbuf);
+
+ offset++;
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 5,
+ "The least significant 10 digits of the IMSI_M (IMSI_M_S) (34 bits)");
+
+ offset += 4;
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x01e0, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Access overload class (ACCOLC) (%lu)",
+ bigbuf,
+ (value & 0x01e0) >> 5);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0010, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Local control status (LOCAL_CONTROL)",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0008, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Termination indicator for the home system (MOB_TERM_HOME)",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0004, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Termination indicator for SID roaming (MOB_TERM_FOR_SID)",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0002, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Termination indicator for NID roaming (MOB_TERM_FOR_NID)",
+ bigbuf);
+
+ offset++;
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ count = (value & 0x01fe) >> 1;
+
+ other_decode_bitfield_value(bigbuf, value, 0x01fe, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Number of SID/NID pairs (N_SID_NID) (%lu)",
+ bigbuf,
+ count);
+
+ other_decode_bitfield_value(bigbuf, value, 0x0001, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : SID/NID pairs (MSB)",
+ bigbuf);
+
+ offset += 2;
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, len - (offset - saved_offset),
+ "SID/NID pairs, Reserved");
+}
+
+/*
+ * 4.5.2.4
+ * see param_block_nam_imsi_t()
+ */
+
+/*
+ * 4.5.4.1
+ * 4.5.4.2
+ */
+static void
+for_param_block_val_spc(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint32 saved_offset;
+ guint32 value, count, i;
+
+ EXACT_DATA_CHECK(len, 3);
+
+ saved_offset = offset;
+
+ value = tvb_get_ntoh24(tvb, offset);
+
+ count = 6; /* 2 x 3 octets */
+
+ for (i=0; i < count; i++)
+ {
+ bigbuf[i] = bcd_digits[(value & 0x0f)];
+
+ if ((i + 1) < count)
+ {
+ bigbuf[i+1] = bcd_digits[(value & 0xf0) >> 4];
+ i++;
+ }
+ }
+ bigbuf[i] = '\0';
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, len,
+ "Service programming code: %s",
+ bigbuf);
+}
+
+/*
+ * 4.5.4.3
+ */
+static void
+for_param_block_val_spasm(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint32 saved_offset;
+ guint32 value;
+
+ saved_offset = offset;
+
+ if (len == 1)
+ {
+ value = tvb_get_guint8(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x80, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : OTAPA SPASM validation signature %sincluded indicator",
+ bigbuf,
+ (value & 0x80) ? "" : "not ");
+
+ other_decode_bitfield_value(bigbuf, value, 0x40, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : %s SPASM protection for the active NAM",
+ bigbuf,
+ (value & 0x40) ? "Activate" : "Do not activate");
+
+ other_decode_bitfield_value(bigbuf, value, 0x3f, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Reserved",
+ bigbuf);
+
+ offset++;
+ }
+ else
+ {
+ EXACT_DATA_CHECK(len, 3);
+
+ value = tvb_get_ntoh24(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x800000, 24);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 3,
+ "%s : OTAPA SPASM validation signature %sincluded indicator",
+ bigbuf,
+ (value & 0x800000) ? "" : "not ");
+
+ other_decode_bitfield_value(bigbuf, value, 0x7fffe0, 24);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 3,
+ "%s : OTAPA SPASM validation signature (0x%x)",
+ bigbuf,
+ (value & 0x7fffe0) >> 5);
+
+ other_decode_bitfield_value(bigbuf, value, 0x000010, 24);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 3,
+ "%s : %s SPASM protection for the active NAM",
+ bigbuf,
+ (value & 0x000010) ? "Activate" : "Do not activate");
+
+ other_decode_bitfield_value(bigbuf, value, 0x00000f, 24);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 3,
+ "%s : Reserved",
+ bigbuf);
+
+ offset += 3;
+ }
+}
+
+/* FORWARD MESSAGES */
+
+/*
+ * 4.5.1.1
+ */
static void
msg_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -730,27 +1616,23 @@ msg_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Number of parameter blocks (%d)",
+ "Number of parameter blocks (%u)",
num_blocks);
offset++;
- if (num_blocks > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), num_blocks);
for (i=0; i < num_blocks; i++)
{
oct = tvb_get_guint8(tvb, offset);
- str = rev_nam_param_block_type(oct);
+ str = rev_param_block_nam(oct);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "[%u]: %s (%u)",
+ i+1,
str,
oct);
@@ -760,10 +1642,13 @@ msg_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 4.5.1.2
+ */
static void
msg_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
- guint8 oct, block_id, block_len;
+ guint8 block_id, num_blocks, block_len;
const gchar *str = NULL;
proto_tree *subtree;
proto_item *item;
@@ -773,25 +1658,26 @@ msg_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
saved_offset = offset;
- oct = tvb_get_guint8(tvb, offset);
+ num_blocks = tvb_get_guint8(tvb, offset);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Number of parameter blocks (%d)",
- oct);
+ "Number of parameter blocks (%u)",
+ num_blocks);
offset++;
- for (i=0; i < oct; i++)
+ for (i=0; i < num_blocks; i++)
{
block_id = tvb_get_guint8(tvb, offset);
- str = for_nam_param_block_type(block_id);
+ str = for_param_block_nam(block_id);
item =
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "[%u]: %s (%u)",
+ i+1,
str,
block_id);
@@ -815,20 +1701,20 @@ msg_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
switch (block_id)
{
- case CDMA_ANALOG_NAM_BLOCK:
- param_cdma_analog_nam_block(tvb, subtree, block_len, offset);
+ case FOR_BLOCK_NAM_CDMA_ANALOG:
+ for_param_block_nam_cdma_analog(tvb, subtree, block_len, offset);
break;
- case MDN_NAM_BLOCK:
- param_mdn_nam_block(tvb, subtree, block_len, offset);
+ case FOR_BLOCK_NAM_MDN:
+ param_block_nam_mdn(tvb, subtree, block_len, offset);
break;
- case CDMA_NAM_BLOCK:
- param_cdma_nam_block(tvb, subtree, block_len, offset);
+ case FOR_BLOCK_NAM_CDMA:
+ for_param_block_nam_cdma(tvb, subtree, block_len, offset);
break;
- case IMSI_T_NAM_BLOCK:
- param_imsi_t_nam_block(tvb, subtree, block_len, offset);
+ case FOR_BLOCK_NAM_IMSI_T:
+ param_block_nam_imsi_t(tvb, subtree, block_len, offset);
break;
default:
@@ -841,72 +1727,98 @@ msg_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
}
}
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 4.5.1.3
+ */
static void
msg_ms_key_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
- guint8 oct, param_len;
+ guint8 akey_prev, param_len;
proto_tree *subtree;
proto_item *item;
guint32 saved_offset;
+ const gchar *str = NULL;
- SHORT_DATA_CHECK(len, 3);
+ SHORT_DATA_CHECK(len, 1);
saved_offset = offset;
- oct = tvb_get_guint8(tvb, offset);
+ akey_prev = tvb_get_guint8(tvb, offset);
+
+ switch (akey_prev)
+ {
+ case 0x02: str = "2G A-key generation"; break;
+ case 0x03: str = "2G A-key and 3G Root Key generation"; break;
+ case 0x04: str = "3G Root Key generation"; break;
+ case 0x05: str = "Enhanced 3G Root Key generation"; break;
+ default: str = "Unknown"; break;
+ }
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "A-Key Protocol Revision (%d)",
- oct);
+ "A-Key Protocol Revision (%u): %s",
+ akey_prev,
+ str);
offset++;
- param_len = tvb_get_guint8(tvb, offset);
+ if (akey_prev < 0x03)
+ {
+ param_len = tvb_get_guint8(tvb, offset);
- item =
- proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset, param_len + 1,
- "Key exchange parameter P");
- subtree = proto_item_add_subtree(item, ett_key_p);
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, param_len + 1,
+ "Key exchange parameter P");
+ subtree = proto_item_add_subtree(item, ett_key_p);
- proto_tree_add_uint(subtree, hf_ansi_683_length,
- tvb, offset, 1, param_len);
- offset++;
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, param_len);
+ offset++;
- if (param_len > 0)
- {
- proto_tree_add_none_format(subtree, hf_ansi_683_none,
- tvb, offset, param_len,
- "Parameter P");
- offset += param_len;
- }
+ if (param_len > 0)
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, param_len,
+ "Parameter P");
+ offset += param_len;
+ }
- param_len = tvb_get_guint8(tvb, offset);
+ param_len = tvb_get_guint8(tvb, offset);
- item =
- proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset, param_len + 1,
- "Key exchange parameter G");
- subtree = proto_item_add_subtree(item, ett_key_g);
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, param_len + 1,
+ "Key exchange parameter G");
+ subtree = proto_item_add_subtree(item, ett_key_g);
- proto_tree_add_uint(subtree, hf_ansi_683_length,
- tvb, offset, 1, param_len);
- offset++;
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, param_len);
+ offset++;
- if (param_len > 0)
- {
- proto_tree_add_none_format(subtree, hf_ansi_683_none,
- tvb, offset, param_len,
- "Parameter G");
- offset += param_len;
+ if (param_len > 0)
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, param_len,
+ "Parameter G");
+ offset += param_len;
+ }
}
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 4.5.1.4
+ */
static void
msg_key_gen_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -923,24 +1835,22 @@ msg_key_gen_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
tvb, offset, 1, param_len);
offset++;
- if (param_len > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), param_len);
if (param_len > 0)
{
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, param_len,
- "Calculation Result");
+ "Base Station Calculation Result");
offset += param_len;
}
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 4.5.1.5
+ */
static void
msg_reauth_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -952,6 +1862,71 @@ msg_reauth_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
"Random Challenge value");
}
+/*
+ * 4.5.1.6
+ * Commit Request (no data associated)
+ */
+
+/*
+ * 4.5.1.7
+ */
+static void
+msg_protocap_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint32 i, saved_offset;
+ guint8 oct, num_cap;
+ const gchar *str = NULL;
+
+ if (len == 0)
+ {
+ /*
+ * if the base station did not request new cap info OR
+ * this is an earlier release
+ */
+ return;
+ }
+
+ saved_offset = offset;
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "OTASP protocol revision");
+
+ offset++;
+
+ num_cap = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of Capability Records (%u)",
+ num_cap);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), num_cap);
+
+ for (i=0; i < num_cap; i++)
+ {
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_cap_info_record_type(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ oct);
+
+ offset++;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.8
+ */
static void
msg_sspr_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -968,18 +1943,18 @@ msg_sspr_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
oct = tvb_get_guint8(tvb, offset);
- str = rev_sspr_param_block_type(oct);
+ str = rev_param_block_sspr(oct);
item =
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "%s (%u)",
str,
oct);
offset++;
- if (oct == 0x01)
+ if (oct == REV_BLOCK_SSPR_PRL)
{
subtree = proto_item_add_subtree(item, ett_rev_sspr_block);
@@ -994,7 +1969,7 @@ msg_sspr_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(subtree, hf_ansi_683_none,
tvb, offset, 2,
- "Segment offset (%d)",
+ "Segment offset (%lu)",
value);
offset += 2;
@@ -1002,7 +1977,7 @@ msg_sspr_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(subtree, hf_ansi_683_none,
tvb, offset, 1,
- "Maximum segment size (%d)",
+ "Maximum segment size (%u)",
oct);
offset++;
}
@@ -1010,6 +1985,9 @@ msg_sspr_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 4.5.1.9
+ */
static void
msg_sspr_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1025,12 +2003,12 @@ msg_sspr_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset
oct = tvb_get_guint8(tvb, offset);
- str = for_sspr_param_block_type(oct);
+ str = for_param_block_sspr(oct);
item =
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "%s (%u)",
str,
oct);
@@ -1057,13 +2035,22 @@ msg_sspr_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset
offset += block_len;
}
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 4.5.1.10
+ */
static void
msg_validate_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
- guint8 oct, block_id, block_len;
+ guint8 block_id, num_blocks, block_len;
const gchar *str = NULL;
proto_tree *subtree;
proto_item *item;
@@ -1073,41 +2060,33 @@ msg_validate_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
saved_offset = offset;
- oct = tvb_get_guint8(tvb, offset);
+ num_blocks = tvb_get_guint8(tvb, offset);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Number of parameter blocks (%d)",
- oct);
+ "Number of parameter blocks (%u)",
+ num_blocks);
offset++;
- if ((guint32)(oct * 2) > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 2));
- for (i=0; i < oct; i++)
+ for (i=0; i < num_blocks; i++)
{
block_offset = offset;
block_id = tvb_get_guint8(tvb, offset);
- str = for_val_param_block_type(block_id);
+ str = for_param_block_val(block_id);
item =
proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset, -1,
- "%s", str);
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
subtree = proto_item_add_subtree(item, ett_for_val_block);
-
- proto_tree_add_none_format(subtree, hf_ansi_683_none,
- tvb, offset, 1,
- "Block ID (%d)",
- block_id);
-
offset++;
block_len = tvb_get_guint8(tvb, offset);
@@ -1117,8 +2096,6 @@ msg_validate_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
offset++;
- proto_item_set_len(item, (offset - block_offset) + block_len);
-
if (block_len > (len - (offset - saved_offset)))
{
proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
@@ -1130,12 +2107,15 @@ msg_validate_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
switch (block_id)
{
- case VERIFY_SPC_VAL_BLOCK:
- param_verify_spc_val_block(tvb, subtree, block_len, offset);
+ case FOR_BLOCK_VAL_VERIFY_SPC:
+ case FOR_BLOCK_VAL_CHANGE_SPC:
+ for_param_block_val_spc(tvb, subtree, block_len, offset);
+ break;
+
+ case FOR_BLOCK_VAL_VALDATE_SPASM:
+ for_param_block_val_spasm(tvb, subtree, block_len, offset);
break;
- case CHANGE_SPC_VAL_BLOCK:
- case VALDATE_SPASM_VAL_BLOCK:
default:
proto_tree_add_none_format(subtree, hf_ansi_683_none,
tvb, offset, block_len, "Block Data");
@@ -1149,6 +2129,9 @@ msg_validate_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 4.5.1.11
+ */
static void
msg_otapa_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1177,14 +2160,185 @@ msg_otapa_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
offset++;
}
+/*
+ * 4.5.1.12
+ */
static void
-msg_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+msg_puzl_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_len;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_puzl(oct);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ block_len = len - (offset - saved_offset);
+
+ if (block_len > 0)
+ {
+ subtree = proto_item_add_subtree(item, ett_rev_puzl_block);
+
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ offset += block_len;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.13
+ */
+static void
+msg_puzl_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 block_id, num_blocks, block_len;
+ const gchar *str = NULL;
+ proto_tree *subtree;
+ proto_item *item;
+ guint32 i, saved_offset;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ for (i=0; i < num_blocks; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_puzl(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_for_puzl_block);
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ if (block_len > (len - (offset - saved_offset)))
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
+ offset, len - (offset - saved_offset), "Short Data (?)");
+ return;
+ }
+
+ if (block_len > 0)
+ {
+ switch (block_id)
+ {
+ case FOR_BLOCK_PUZL_UZ_INS:
+ case FOR_BLOCK_PUZL_UZ_UPD:
+ case FOR_BLOCK_PUZL_UZ_DEL:
+ case FOR_BLOCK_PUZL_UZ_PRI_CHANGE:
+ case FOR_BLOCK_PUZL_FLAGS:
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ break;
+ }
+
+ offset += block_len;
+ }
+ }
+
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.14
+ */
+static void
+msg_3gpd_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
- guint8 oct, num_blocks, block_len;
+ guint8 oct, num_blocks;
const gchar *str = NULL;
guint32 i, saved_offset;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), num_blocks);
+
+ for (i=0; i < num_blocks; i++)
+ {
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_3gpd(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ oct);
+
+ offset++;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.15
+ */
+static void
+msg_3gpd_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 block_id, num_blocks, block_len;
+ const gchar *str = NULL;
proto_tree *subtree;
proto_item *item;
+ guint32 i, saved_offset;
SHORT_DATA_CHECK(len, 1);
@@ -1194,32 +2348,229 @@ msg_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Number of parameter blocks (%d)",
+ "Number of parameter blocks (%u)",
num_blocks);
offset++;
- if ((guint32)(num_blocks * 2) > (len - (offset - saved_offset)))
+ for (i=0; i < num_blocks; i++)
{
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_3gpd(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_for_3gpd_block);
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ if (block_len > (len - (offset - saved_offset)))
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
+ offset, len - (offset - saved_offset), "Short Data (?)");
+ return;
+ }
+
+ if (block_len > 0)
+ {
+ switch (block_id)
+ {
+ case FOR_BLOCK_3GPD_OP_MODE:
+ case FOR_BLOCK_3GPD_SIP_USER_PRO:
+ case FOR_BLOCK_3GPD_MIP_USER_PRO:
+ case FOR_BLOCK_3GPD_SIP_STATUS:
+ case FOR_BLOCK_3GPD_MIP_STATUS:
+ case FOR_BLOCK_3GPD_SIP_PAP_SS:
+ case FOR_BLOCK_3GPD_SIP_CHAP_SS:
+ case FOR_BLOCK_3GPD_MIP_SS:
+ case FOR_BLOCK_3GPD_HRPD_ACC_AUTH_USER:
+ case FOR_BLOCK_3GPD_HRPD_ACC_AUTH_CHAP_SS:
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ break;
+ }
+
+ offset += block_len;
+ }
+ }
+
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.16
+ */
+static void
+msg_secure_mode_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, oct, 0x80, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : %s Secure Mode",
+ bigbuf,
+ (oct & 0x80) ? "Start" : "Stop");
+
+ if (oct & 0x80)
+ {
+ switch ((oct & 0x78) >> 3)
+ {
+ case 0x0: str = "SMCK generation using SSD_A and SSD_B"; break;
+ case 0x1: str = "SMCK generation using 3G Root Key"; break;
+ default: str = "Key in use indicator"; break;
+ }
+ }
+ else
+ {
+ str = "Key in use indicator";
+ }
+
+ other_decode_bitfield_value(bigbuf, oct, 0x78, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : %s",
+ bigbuf,
+ str);
+
+ other_decode_bitfield_value(bigbuf, oct, 0x07, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Reserved",
+ bigbuf);
+
+ offset++;
+
+ if (oct & 0x80)
+ {
+ SHORT_DATA_CHECK(len, 8);
+
+ proto_tree_add_text(tree,
+ tvb, offset, 8,
+ "Random Number used for SMCK generation");
+
+ offset += 8;
}
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.17
+ * Reserved
+ */
+
+/*
+ * 4.5.1.18
+ */
+static void
+msg_mmd_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, num_blocks;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), num_blocks);
+
for (i=0; i < num_blocks; i++)
{
oct = tvb_get_guint8(tvb, offset);
- str = rev_nam_param_block_type(oct);
+ str = rev_param_block_mmd(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ oct);
+
+ offset++;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.19
+ */
+static void
+msg_mmd_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 block_id, num_blocks, block_len;
+ const gchar *str = NULL;
+ proto_tree *subtree;
+ proto_item *item;
+ guint32 i, saved_offset;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ for (i=0; i < num_blocks; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_mmd(block_id);
item =
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "[%u]: %s (%u)",
+ i+1,
str,
- oct);
+ block_id);
- subtree = proto_item_add_subtree(item, ett_rev_nam_block);
+ subtree = proto_item_add_subtree(item, ett_for_mmd_block);
offset++;
block_len = tvb_get_guint8(tvb, offset);
@@ -1237,19 +2588,404 @@ msg_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
if (block_len > 0)
{
- proto_tree_add_none_format(subtree, hf_ansi_683_none,
- tvb, offset, block_len, "Block Data");
+ switch (block_id)
+ {
+ case FOR_BLOCK_MMD_APP:
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ break;
+ }
+
offset += block_len;
}
}
- if (num_blocks > (len - (offset - saved_offset)))
+ if (len > (offset - saved_offset))
{
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.20
+ */
+static void
+msg_systag_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+ guint32 value;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_systag(oct);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+
+ /*
+ * possible values, but unclear in spec
+ * REV_BLOCK_SYSTAG_HOME_SYSTAG
+ * REV_BLOCK_SYSTAG_GROUP_TAG_LIST_DIM
+ * REV_BLOCK_SYSTAG_GROUP_TAG_LIST
+ * REV_BLOCK_SYSTAG_SPEC_TAG_LIST_DIM
+ * REV_BLOCK_SYSTAG_SPEC_TAG_LIST
+ * REV_BLOCK_SYSTAG_CALL_PROMPT_LIST_DIM
+ * REV_BLOCK_SYSTAG_CALL_PROMPT_LIST
+ */
+ if (len > (offset - saved_offset))
+ {
+ SHORT_DATA_CHECK(len, 3);
+
+ subtree = proto_item_add_subtree(item, ett_segment);
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "Segment offset (%lu)",
+ value);
+ offset += 2;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Maximum segment size (%u)",
+ oct);
+ offset++;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.21
+ */
+static void
+msg_systag_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_len;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+
+ SHORT_DATA_CHECK(len, 2);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_systag(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(tree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), block_len);
+
+ if (block_len > 0)
+ {
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ offset += block_len;
}
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+
+/*
+ * 4.5.1.22
+ */
+static void
+msg_srvckey_gen_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ const gchar *str = NULL;
+ guint32 saved_offset;
+ guint32 value;
+
+ SHORT_DATA_CHECK(len, 2);
+
+ saved_offset = offset;
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x8000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Key ID: IMS Root Key",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x4000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Key ID: BCMCS Root Key",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x2000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Key ID: WLAN Root Key",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x1ff0, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Key ID: Reserved",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x000f, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Reserved",
+ bigbuf);
+
+ offset += 2;
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.23
+ */
+static void
+msg_mms_config_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, num_blocks;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), num_blocks);
+
+ for (i=0; i < num_blocks; i++)
+ {
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_mms(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ oct);
+
+ offset++;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 4.5.1.24
+ */
+static void
+msg_mms_download_req(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 block_id, num_blocks, block_len;
+ const gchar *str = NULL;
+ proto_tree *subtree;
+ proto_item *item;
+ guint32 i, saved_offset;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ for (i=0; i < num_blocks; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_mms(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_for_mms_block);
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ if (block_len > (len - (offset - saved_offset)))
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
+ offset, len - (offset - saved_offset), "Short Data (?)");
+ return;
+ }
+
+ if (block_len > 0)
+ {
+ switch (block_id)
+ {
+ case FOR_BLOCK_MMS_URI:
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ break;
+ }
+
+ offset += block_len;
+ }
+ }
+
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/* REVERSE MESSAGES */
+
+/*
+ * 3.5.1.1
+ */
+static void
+msg_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_id, num_blocks, block_len;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 2));
+
+ for (i=0; i < num_blocks; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_nam(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_rev_nam_block);
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ if (block_len > (len - (offset - saved_offset)))
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
+ offset, len - (offset - saved_offset), "Short Data (?)");
+ return;
+ }
+
+ if (block_len > 0)
+ {
+ switch (block_id)
+ {
+ case REV_BLOCK_NAM_CDMA_ANALOG:
+ rev_param_block_nam_cdma_analog(tvb, subtree, block_len, offset);
+ break;
+
+ case REV_BLOCK_NAM_MDN:
+ param_block_nam_mdn(tvb, subtree, block_len, offset);
+ break;
+
+ case REV_BLOCK_NAM_CDMA:
+ rev_param_block_nam_cdma(tvb, subtree, block_len, offset);
+ break;
+
+ case REV_BLOCK_NAM_IMSI_T:
+ param_block_nam_imsi_t(tvb, subtree, block_len, offset);
+ break;
+
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ break;
+ }
+
+ offset += block_len;
+ }
+ }
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), num_blocks);
+
for (i=0; i < num_blocks; i++)
{
oct = tvb_get_guint8(tvb, offset);
@@ -1258,16 +2994,26 @@ msg_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "[%u]: %s (%u)",
+ i+1,
str,
oct);
offset++;
}
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 3.5.1.2
+ */
static void
msg_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1285,28 +3031,24 @@ msg_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Number of parameter blocks (%d)",
+ "Number of parameter blocks (%u)",
num_blocks);
offset++;
- if ((guint32)(num_blocks * 2) > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 2));
for (i=0; i < num_blocks; i++)
{
oct = tvb_get_guint8(tvb, offset);
- str = for_nam_param_block_type(oct);
+ str = for_param_block_nam(oct);
item =
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "[%u]: %s (%u)",
+ i+1,
str,
oct);
@@ -1319,7 +3061,7 @@ msg_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(subtree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "%s (%u)",
str,
oct);
@@ -1329,6 +3071,9 @@ msg_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 3.5.1.3
+ */
static void
msg_ms_key_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1346,13 +3091,16 @@ msg_ms_key_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Key exchange result code, %s (%d)",
+ "Key exchange result code, %s (%u)",
str,
oct);
offset++;
}
+/*
+ * 3.5.1.4
+ */
static void
msg_key_gen_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1370,7 +3118,7 @@ msg_key_gen_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Key exchange result code, %s (%d)",
+ "Key exchange result code, %s (%u)",
str,
oct);
@@ -1382,23 +3130,21 @@ msg_key_gen_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
tvb, offset, 1, result_len);
offset++;
- if (result_len > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), result_len);
if (result_len > 0)
{
proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset, result_len, "Calculation Result");
+ tvb, offset, result_len, "Mobile station calculation result");
offset += result_len;
}
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 3.5.1.5
+ */
static void
msg_reauth_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1414,7 +3160,7 @@ msg_reauth_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0xffffc0, 24);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 3,
- "%s : Authentication signature data (AUTHR) (%d)",
+ "%s : Authentication signature data (AUTHR) (%lu)",
bigbuf,
(value & 0xffffc0) >> 6);
@@ -1425,14 +3171,14 @@ msg_reauth_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0x3fc0, 16);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "%s : Random challenge value (RANDC) (%d)",
+ "%s : Random challenge value (RANDC) (%lu)",
bigbuf,
(value & 0x3fc0) >> 6);
other_decode_bitfield_value(bigbuf, value, 0x3f, 8);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset + 1, 1,
- "%s : Call history parameter (COUNT) (%d)",
+ "%s : Call history parameter (COUNT) (%lu)",
bigbuf,
value & 0x3f);
@@ -1443,11 +3189,14 @@ msg_reauth_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
other_decode_bitfield_value(bigbuf, value, 0xffffff, 24);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 3,
- "%s : Authentication Data input parameter (AUTH_DATA) (%d)",
+ "%s : Authentication Data input parameter (AUTH_DATA) (%lu)",
bigbuf,
value);
}
+/*
+ * 3.5.1.6
+ */
static void
msg_commit_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1465,13 +3214,16 @@ msg_commit_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Data commit result code, %s (%d)",
+ "Data commit result code, %s (%u)",
str,
oct);
offset++;
}
+/*
+ * 3.5.1.7
+ */
static void
msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1490,7 +3242,7 @@ msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 2,
- "Mobile station firmware revision number (%d)",
+ "Mobile station firmware revision number (%lu)",
value);
offset += 2;
@@ -1499,7 +3251,7 @@ msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Mobile station manufacturer's model number (%d)",
+ "Mobile station manufacturer's model number (%u)",
oct);
offset++;
@@ -1508,17 +3260,12 @@ msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Number of features (%d)",
+ "Number of features (%u)",
num_feat);
offset++;
- if ((guint32)(num_feat * 2) > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_feat * 2));
for (i=0; i < num_feat; i++)
{
@@ -1529,7 +3276,8 @@ msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
item =
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Feature ID, %s (%d)",
+ "[%u]: Feature ID, %s (%u)",
+ i+1,
str,
oct);
@@ -1540,7 +3288,7 @@ msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(subtree, hf_ansi_683_none,
tvb, offset, 1,
- "Feature protocol version (%d)",
+ "Feature protocol version (%u)",
oct);
offset++;
@@ -1552,12 +3300,7 @@ msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
tvb, offset, 1, add_len);
offset++;
- if (add_len > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), add_len);
if (add_len > 0)
{
@@ -1588,7 +3331,19 @@ msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
"%s : Band Class 1 CDMA",
bigbuf);
- other_decode_bitfield_value(bigbuf, oct, 0x1f, 8);
+ other_decode_bitfield_value(bigbuf, oct, 0x10, 8);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Band Class 3 CDMA",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, oct, 0x08, 8);
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Band Class 6 CDMA",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, oct, 0x07, 8);
proto_tree_add_none_format(subtree, hf_ansi_683_none,
tvb, offset, 1,
"%s : Reserved",
@@ -1608,6 +3363,9 @@ msg_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 3.5.1.8
+ */
static void
msg_sspr_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1621,11 +3379,11 @@ msg_sspr_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
oct = tvb_get_guint8(tvb, offset);
- str = rev_sspr_param_block_type(oct);
+ str = rev_param_block_sspr(oct);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "%s (%u)",
str,
oct);
@@ -1637,7 +3395,7 @@ msg_sspr_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "SSPR Configuration result code, %s (%d)",
+ "SSPR Configuration result code, %s (%u)",
str,
oct);
@@ -1649,12 +3407,7 @@ msg_sspr_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
tvb, offset, 1, block_len);
offset++;
- if (block_len > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), block_len);
if (block_len > 0)
{
@@ -1663,13 +3416,22 @@ msg_sspr_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
offset += block_len;
}
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 3.5.1.9
+ */
static void
msg_sspr_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
- guint8 oct;
+ guint8 oct, block_id;
const gchar *str = NULL;
guint32 saved_offset;
guint32 value;
@@ -1678,15 +3440,15 @@ msg_sspr_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset
saved_offset = offset;
- oct = tvb_get_guint8(tvb, offset);
+ block_id = tvb_get_guint8(tvb, offset);
- str = for_sspr_param_block_type(oct);
+ str = for_param_block_sspr(block_id);
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "%s (%u)",
str,
- oct);
+ block_id);
offset++;
@@ -1696,29 +3458,38 @@ msg_sspr_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "SSPR Download result code, %s (%d)",
+ "SSPR Download result code, %s (%u)",
str,
oct);
offset++;
- value = tvb_get_ntohs(tvb, offset);
+ switch (block_id)
+ {
+ case FOR_BLOCK_SSPR_PRL:
+ case FOR_BLOCK_SSPR_EXT_PRL:
+ value = tvb_get_ntohs(tvb, offset);
- proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset, 2,
- "Segment offset (%d)",
- value);
- offset += 2;
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "Segment offset (%lu)",
+ value);
+ offset += 2;
- oct = tvb_get_guint8(tvb, offset);
+ oct = tvb_get_guint8(tvb, offset);
- proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset, 1,
- "Maximum segment size (%d)",
- oct);
- offset++;
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Maximum segment size (%u)",
+ oct);
+ offset++;
+ break;
+ }
}
+/*
+ * 3.5.1.10
+ */
static void
msg_validate_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1736,28 +3507,24 @@ msg_validate_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "Number of parameter blocks (%d)",
+ "Number of parameter blocks (%u)",
num_blocks);
offset++;
- if ((guint32)(num_blocks * 2) > (len - (offset - saved_offset)))
- {
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
- offset, len - (offset - saved_offset), "Short Data (?)");
- return;
- }
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 2));
for (i=0; i < num_blocks; i++)
{
block_id = tvb_get_guint8(tvb, offset);
- str = for_val_param_block_type(block_id);
+ str = for_param_block_val(block_id);
item =
proto_tree_add_none_format(tree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "[%u]: %s (%u)",
+ i+1,
str,
block_id);
@@ -1770,7 +3537,7 @@ msg_validate_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
proto_tree_add_none_format(subtree, hf_ansi_683_none,
tvb, offset, 1,
- "%s (%d)",
+ "%s (%u)",
str,
oct);
@@ -1780,6 +3547,9 @@ msg_validate_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
}
+/*
+ * 3.5.1.11
+ */
static void
msg_otapa_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
{
@@ -1821,17 +3591,1022 @@ msg_otapa_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
if (oct & 0x01)
{
- if (4 > (len - (offset - saved_offset)))
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), 4);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 4,
+ "SPASM random challenge");
+ offset += 4;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.12
+ */
+static void
+msg_puzl_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_len;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+
+ SHORT_DATA_CHECK(len, 3);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_puzl(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "PUZL Configuration result code, %s (%u)",
+ str,
+ oct);
+
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(tree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), block_len);
+
+ if (block_len > 0)
+ {
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ offset += block_len;
+ }
+
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.13
+ */
+static void
+msg_puzl_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_id, num_blocks;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+ guint32 value, temp_value;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ /* minimum required length */
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 3));
+
+ for (i=0; i < num_blocks; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_puzl(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_for_puzl_block);
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ if (oct & 0x80)
+ {
+ SHORT_DATA_CHECK(len, 4);
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x8000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : Identifiers present",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, value, 0x7fff, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : User Zone ID (MSB)",
+ bigbuf);
+
+ offset += 2;
+
+ temp_value = (value & 0x7fff) << 1;
+ value = tvb_get_ntohs(tvb, offset);
+
+ other_decode_bitfield_value(bigbuf, value, 0x8000, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : User Zone ID (%lu)",
+ bigbuf,
+ temp_value + ((value & 0x8000) >> 15));
+
+ other_decode_bitfield_value(bigbuf, value, 0x7fff, 16);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "%s : User Zone SID (%lu)",
+ bigbuf,
+ (value & 0x7fff));
+
+ offset += 2;
+ }
+ else
+ {
+ other_decode_bitfield_value(bigbuf, oct, 0x80, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Identifiers not present",
+ bigbuf);
+
+ other_decode_bitfield_value(bigbuf, oct, 0x7f, 8);
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s : Reserved",
+ bigbuf);
+
+ offset++;
+ }
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.14
+ */
+static void
+msg_3gpd_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_id, num_blocks, block_len;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ /* minimum required length */
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 3));
+
+ for (i=0; i < num_blocks; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_3gpd(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_rev_3gpd_block);
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ if (block_len > (len - (offset - saved_offset)))
{
- proto_tree_add_none_format(tree, hf_ansi_683_none, tvb,
+ proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
offset, len - (offset - saved_offset), "Short Data (?)");
return;
}
+ if (block_len > 0)
+ {
+ switch (block_id)
+ {
+ case REV_BLOCK_3GPD_OP_CAP:
+ case REV_BLOCK_3GPD_OP_MODE:
+ case REV_BLOCK_3GPD_SIP_CAP:
+ case REV_BLOCK_3GPD_MIP_CAP:
+ case REV_BLOCK_3GPD_SIP_USER_PRO:
+ case REV_BLOCK_3GPD_MIP_USER_PRO:
+ case REV_BLOCK_3GPD_SIP_STATUS:
+ case REV_BLOCK_3GPD_MIP_STATUS:
+ case REV_BLOCK_3GPD_SIP_PAP_SS:
+ case REV_BLOCK_3GPD_SIP_CHAP_SS:
+ case REV_BLOCK_3GPD_MIP_SS:
+ case REV_BLOCK_3GPD_HRPD_ACC_AUTH_CAP:
+ case REV_BLOCK_3GPD_HRPD_ACC_AUTH_USER:
+ case REV_BLOCK_3GPD_HRPD_ACC_AUTH_CHAP_SS:
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ break;
+ }
+
+ offset += block_len;
+ }
+
+ SHORT_DATA_CHECK(len, 1);
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
proto_tree_add_none_format(tree, hf_ansi_683_none,
- tvb, offset, 4,
- "SPASM random challenge");
- offset += 4;
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+ }
+
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.15
+ */
+static void
+msg_3gpd_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, num_blocks;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 2));
+
+ for (i=0; i < num_blocks; i++)
+ {
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_3gpd(oct);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ oct);
+
+ subtree = proto_item_add_subtree(item, ett_for_3gpd_block);
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.16
+ */
+static void
+msg_secure_mode_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+
+ EXACT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Secure Mode result code, %s (%u)",
+ str,
+ oct);
+
+ offset++;
+}
+
+/*
+ * 3.5.1.17
+ */
+static void
+msg_ext_protocap_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_id, num_recs, block_len;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ guint32 value;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 6);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "OTASP Mobile Protocol Revision (%u)",
+ oct);
+
+ offset++;
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "Mobile station firmware revision number (%lu)",
+ value);
+
+ offset += 2;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Mobile station manufacturer's model number (%u)",
+ oct);
+
+ offset++;
+
+ num_recs = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of features (%u)",
+ num_recs);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_recs * 2));
+
+ for (i=0; i < num_recs; i++)
+ {
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_feat_id_type(oct);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: Feature ID, %s (%u)",
+ i+1,
+ str,
+ oct);
+
+ subtree = proto_item_add_subtree(item, ett_rev_feat);
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Feature protocol version (%u)",
+ oct);
+
+ offset++;
+ }
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), 1);
+
+ num_recs = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of Capability Records (%u)",
+ num_recs);
+
+ offset++;
+
+ /* minimum required length */
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_recs * 2));
+
+ for (i=0; i < num_recs; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = rev_cap_info_record_type(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_rev_cap);
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ if (block_len > (len - (offset - saved_offset)))
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
+ offset, len - (offset - saved_offset), "Short Data (?)");
+ return;
+ }
+
+ if (block_len > 0)
+ {
+ switch (block_id)
+ {
+#ifdef MLUM
+ case REV_TYPE_CAP_INFO_OP_MODE:
+ case REV_TYPE_CAP_INFO_CDMA_BAND:
+ case REV_TYPE_CAP_INFO_MEID:
+ case REV_TYPE_CAP_INFO_ICCID:
+ case REV_TYPE_CAP_INFO_EXT_UIM_ID:
+ rev_param_block_mmd_app(tvb, subtree, block_len, offset);
+ break;
+#endif
+
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Capability Data");
+ break;
+ }
+
+ offset += block_len;
+ }
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.18
+ */
+static void
+msg_mmd_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_id, num_blocks, block_len;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ /* minimum required length */
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 3));
+
+ for (i=0; i < num_blocks; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_mmd(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_rev_mmd_block);
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ if (block_len > (len - (offset - saved_offset)))
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
+ offset, len - (offset - saved_offset), "Short Data (?)");
+ return;
+ }
+
+ if (block_len > 0)
+ {
+ switch (block_id)
+ {
+#ifdef MLUM
+ case REV_BLOCK_MMD_APP:
+ rev_param_block_mmd_app(tvb, subtree, block_len, offset);
+ break;
+#endif
+
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ break;
+ }
+
+ offset += block_len;
+ }
+
+ SHORT_DATA_CHECK(len, 1);
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+ }
+
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.19
+ */
+static void
+msg_mmd_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, num_blocks;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 2));
+
+ for (i=0; i < num_blocks; i++)
+ {
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_mmd(oct);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ oct);
+
+ subtree = proto_item_add_subtree(item, ett_for_mmd_block);
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.20
+ */
+static void
+msg_systag_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_len;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+
+ SHORT_DATA_CHECK(len, 3);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_systag(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "System Tag result code, %s (%u)",
+ str,
+ oct);
+
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(tree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), block_len);
+
+ if (block_len > 0)
+ {
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ offset += block_len;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.21
+ */
+static void
+msg_systag_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_id;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+ guint32 value;
+
+ SHORT_DATA_CHECK(len, 2);
+
+ saved_offset = offset;
+
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_systag(block_id);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ block_id);
+
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "System Tag Download result code, %s (%u)",
+ str,
+ oct);
+
+ offset++;
+
+ switch (block_id)
+ {
+ case 0x01: /* Group Tag List Parameter */
+ case 0x02: /* Specific Tag List Parameter */
+ case 0x03: /* Call Prompt List Parameter */
+ SHORT_DATA_CHECK(len, 3);
+
+ value = tvb_get_ntohs(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 2,
+ "Segment offset (%lu)",
+ value);
+ offset += 2;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Segment size (%u)",
+ oct);
+ offset++;
+ break;
+
+ default:
+ break;
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.22
+ */
+static void
+msg_srvckey_gen_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct;
+ const gchar *str = NULL;
+ guint32 saved_offset;
+
+ EXACT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Service Key Generation result code, %s (%u)",
+ str,
+ oct);
+
+ offset++;
+}
+
+/*
+ * 3.5.1.23
+ */
+static void
+msg_mms_config_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, block_id, num_blocks, block_len;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ /* minimum required length */
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 3));
+
+ for (i=0; i < num_blocks; i++)
+ {
+ block_id = tvb_get_guint8(tvb, offset);
+
+ str = rev_param_block_mms(block_id);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ block_id);
+
+ subtree = proto_item_add_subtree(item, ett_rev_mms_block);
+ offset++;
+
+ block_len = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_uint(subtree, hf_ansi_683_length,
+ tvb, offset, 1, block_len);
+ offset++;
+
+ if (block_len > (len - (offset - saved_offset)))
+ {
+ proto_tree_add_none_format(subtree, hf_ansi_683_none, tvb,
+ offset, len - (offset - saved_offset), "Short Data (?)");
+ return;
+ }
+
+ if (block_len > 0)
+ {
+ switch (block_id)
+ {
+#ifdef MLUM
+ case REV_BLOCK_MMS_URI:
+ rev_param_block_mms_uri(tvb, subtree, block_len, offset);
+ break;
+
+ case REV_BLOCK_MMS_URI_CAP:
+ rev_param_block_mms_uri_cap(tvb, subtree, block_len, offset);
+ break;
+#endif
+
+ default:
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, block_len, "Block Data");
+ break;
+ }
+
+ offset += block_len;
+ }
+
+ SHORT_DATA_CHECK(len, 1);
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
+ }
+
+ if (len > (offset - saved_offset))
+ {
+ offset +=
+ fresh_handler(tvb, tree, len - (offset - saved_offset), offset);
+ }
+
+ EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
+}
+
+/*
+ * 3.5.1.24
+ */
+static void
+msg_mms_download_rsp(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+{
+ guint8 oct, num_blocks;
+ const gchar *str = NULL;
+ guint32 i, saved_offset;
+ proto_tree *subtree;
+ proto_item *item;
+
+ SHORT_DATA_CHECK(len, 1);
+
+ saved_offset = offset;
+
+ num_blocks = tvb_get_guint8(tvb, offset);
+
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "Number of parameter blocks (%u)",
+ num_blocks);
+
+ offset++;
+
+ SHORT_DATA_CHECK((len - (offset - saved_offset)), (guint32)(num_blocks * 2));
+
+ for (i=0; i < num_blocks; i++)
+ {
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = for_param_block_mms(oct);
+
+ item =
+ proto_tree_add_none_format(tree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "[%u]: %s (%u)",
+ i+1,
+ str,
+ oct);
+
+ subtree = proto_item_add_subtree(item, ett_for_mms_block);
+ offset++;
+
+ oct = tvb_get_guint8(tvb, offset);
+
+ str = rev_res_code_type(oct);
+
+ proto_tree_add_none_format(subtree, hf_ansi_683_none,
+ tvb, offset, 1,
+ "%s (%u)",
+ str,
+ oct);
+
+ offset++;
}
EXTRANEOUS_DATA_CHECK(len, offset - saved_offset);
@@ -1849,7 +4624,20 @@ static const value_string for_msg_type_strings[] = {
{ 8, "SSPR Download Request" },
{ 9, "Validation Request" },
{ 10, "OTAPA Request" },
- { 0, NULL },
+ { 11, "PUZL Configuration Request" },
+ { 12, "PUZL Download Request" },
+ { 13, "3GPD Configuration Request" },
+ { 14, "3GPD Download Request" },
+ { 15, "Secure Mode Request" },
+ { 16, "Reserved" },
+ { 17, "MMD Configuration Request" },
+ { 18, "MMD Download Request" },
+ { 19, "System Tag Configuration Request" },
+ { 20, "System Tag Download Request" },
+ { 21, "Service Key Generation Request" },
+ { 22, "MMS Configuration Request" },
+ { 23, "MMS Download Request" },
+ { 0, NULL }
};
#define NUM_FOR_MSGS (sizeof(for_msg_type_strings)/sizeof(value_string))
static void (*ansi_683_for_msg_fcn[])(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset) = {
@@ -1859,12 +4647,25 @@ static void (*ansi_683_for_msg_fcn[])(tvbuff_t *tvb, proto_tree *tree, guint len
msg_key_gen_req, /* Key Generation Request */
msg_reauth_req, /* Re-Authenticate Request */
NULL /* No data */, /* Commit Request */
- NULL /* No data */, /* Protocol Capability Request */
+ msg_protocap_req, /* Protocol Capability Request */
msg_sspr_config_req, /* SSPR Configuration Request */
msg_sspr_download_req, /* SSPR Download Request */
msg_validate_req, /* Validation Request */
msg_otapa_req, /* OTAPA Request */
- NULL, /* NONE */
+ msg_puzl_config_req, /* PUZL Configuration Request */
+ msg_puzl_download_req, /* PUZL Download Request */
+ msg_3gpd_config_req, /* 3GPD Configuration Request */
+ msg_3gpd_download_req, /* 3GPD Download Request */
+ msg_secure_mode_req, /* Secure Mode Request */
+ NULL, /* Reserved */
+ msg_mmd_config_req, /* MMD Configuration Request */
+ msg_mmd_download_req, /* MMD Download Request */
+ msg_systag_config_req, /* System Tag Configuration Request */
+ msg_systag_download_req, /* System Tag Download Request */
+ msg_srvckey_gen_req, /* Service Key Generation Request */
+ msg_mms_config_req, /* MMS Configuration Request */
+ msg_mms_download_req, /* MMS Download Request */
+ NULL /* NONE */
};
static const value_string rev_msg_type_strings[] = {
@@ -1879,7 +4680,20 @@ static const value_string rev_msg_type_strings[] = {
{ 8, "SSPR Download Response" },
{ 9, "Validation Response" },
{ 10, "OTAPA Response" },
- { 0, NULL },
+ { 11, "PUZL Configuration Response" },
+ { 12, "PUZL Download Response" },
+ { 13, "3GPD Configuration Response" },
+ { 14, "3GPD Download Response" },
+ { 15, "Secure Mode Response" },
+ { 16, "Extended Protocol Capability Response" },
+ { 17, "MMD Configuration Response" },
+ { 18, "MMD Download Response" },
+ { 19, "System Tag Configuration Response" },
+ { 20, "System Tag Download Response" },
+ { 21, "Service Key Generation Response" },
+ { 22, "MMS Configuration Response" },
+ { 23, "MMS Download Response" },
+ { 0, NULL }
};
#define NUM_REV_MSGS (sizeof(rev_msg_type_strings)/sizeof(value_string))
static void (*ansi_683_rev_msg_fcn[])(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset) = {
@@ -1894,7 +4708,20 @@ static void (*ansi_683_rev_msg_fcn[])(tvbuff_t *tvb, proto_tree *tree, guint len
msg_sspr_download_rsp, /* SSPR Download Response */
msg_validate_rsp, /* Validation Response */
msg_otapa_rsp, /* OTAPA Response */
- NULL, /* NONE */
+ msg_puzl_config_rsp, /* PUZL Configuration Response */
+ msg_puzl_download_rsp, /* PUZL Download Response */
+ msg_3gpd_config_rsp, /* 3GPD Configuration Response */
+ msg_3gpd_download_rsp, /* 3GPD Download Response */
+ msg_secure_mode_rsp, /* Secure Mode Response */
+ msg_ext_protocap_rsp, /* Extended Protocol Capability Response */
+ msg_mmd_config_rsp, /* MMD Configuration Response */
+ msg_mmd_download_rsp, /* MMD Download Response */
+ msg_systag_config_rsp, /* System Tag Configuration Response */
+ msg_systag_download_rsp, /* System Tag Download Response */
+ msg_srvckey_gen_rsp, /* Service Key Generation Response */
+ msg_mms_config_rsp, /* MMS Configuration Response */
+ msg_mms_download_rsp, /* MMS Download Response */
+ NULL /* NONE */
};
@@ -2030,7 +4857,7 @@ proto_register_ansi_683(void)
};
/* Setup protocol subtree array */
-#define NUM_INDIVIDUAL_PARAMS 10
+#define NUM_INDIVIDUAL_PARAMS 21
static gint *ett[NUM_INDIVIDUAL_PARAMS];
memset((void *) ett, 0, sizeof(ett));
@@ -2045,10 +4872,21 @@ proto_register_ansi_683(void)
ett[7] = &ett_for_sspr_block;
ett[8] = &ett_band_cap;
ett[9] = &ett_rev_sspr_block;
+ ett[10] = &ett_scm;
+ ett[11] = &ett_for_puzl_block;
+ ett[12] = &ett_rev_puzl_block;
+ ett[13] = &ett_for_3gpd_block;
+ ett[14] = &ett_rev_3gpd_block;
+ ett[15] = &ett_for_mmd_block;
+ ett[16] = &ett_rev_mmd_block;
+ ett[17] = &ett_for_mms_block;
+ ett[18] = &ett_rev_mms_block;
+ ett[19] = &ett_rev_cap;
+ ett[20] = &ett_segment;
/* Register the protocol name and description */
proto_ansi_683 =
- proto_register_protocol(ansi_proto_name, "ANSI IS-683-A (OTA (Mobile))", "ansi_683");
+ proto_register_protocol(ansi_proto_name, "ANSI IS-683 (OTA (Mobile))", "ansi_683");
/* Required function calls to register the header fields and subtrees used */
proto_register_field_array(proto_ansi_683, hf, array_length(hf));