/* packet-cimd.c * * Routines for Computer Interface to Message Distribution (CIMD) version 2 dissection * * Copyright : 2005 Viorel Suman , Lucian Piros * In association with Avalanche Mobile BV, http://www.avmob.com * * $Id$ * * Refer to the AUTHORS file or the AUTHORS section in the man page * for contacting the author(s) of this file. * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #define CIMD_STX 0x02 /* Start of CIMD PDU */ #define CIMD_ETX 0x03 /* End of CIMD PDU */ #define CIMD_COLON 0x3A /* CIMD colon */ #define CIMD_DELIM 0x09 /* CIMD Delimiter */ #define CIMD_OC_OFFSET 1 /* CIMD Operation Code Offset */ #define CIMD_OC_LENGTH 2 /* CIMD Operation Code Length */ #define CIMD_PN_OFFSET 4 /* CIMD Packet Number Offset */ #define CIMD_PN_LENGTH 3 /* CIMD Packet Number Length */ #define CIMD_PC_LENGTH 3 /* CIMD Parameter Code Length */ #define CIMD_MIN_LENGTH 9 /* CIMD Minimal packet length : STX(1) + OC(2) + COLON(1) + PN(3) + DELIM(1) + ETX(1)*/ /* define CIMD2 operation code */ #define CIMD_Login 1 #define CIMD_LoginResp 51 #define CIMD_Logout 2 #define CIMD_LogoutResp 52 #define CIMD_SubmitMessage 3 #define CIMD_SubmitMessageResp 53 #define CIMD_EnqMessageStatus 4 #define CIMD_EnqMessageStatusResp 54 #define CIMD_DeliveryRequest 5 #define CIMD_DeliveryRequestResp 55 #define CIMD_CancelMessage 6 #define CIMD_CancelMessageResp 56 #define CIMD_SetMessage 8 #define CIMD_SetMessageResp 58 #define CIMD_GetMessage 9 #define CIMD_GetMessageResp 59 #define CIMD_Alive 40 #define CIMD_AliveResp 90 #define CIMD_GeneralErrorResp 98 #define CIMD_NACK 99 /* SC2App */ #define CIMD_DeliveryMessage 20 #define CIMD_DeliveryMessageResp 70 #define CIMD_DeliveryStatusReport 23 #define CIMD_DeliveryStatusReportResp 73 /* define CIMD2 operation's parameter codes */ #define CIMD_UserIdentity 10 #define CIMD_Password 11 #define CIMD_Subaddress 12 #define CIMD_WindowSize 19 #define CIMD_DestinationAddress 21 #define CIMD_OriginatingAddress 23 #define CIMD_OriginatingImsi 26 #define CIMD_AlphaOriginatingAddr 27 #define CIMD_OriginatedVisitedMSCAd 28 #define CIMD_DataCodingScheme 30 #define CIMD_UserDataHeader 32 #define CIMD_UserData 33 #define CIMD_UserDataBinary 34 #define CIMD_MoreMessagesToSend 44 #define CIMD_ValidityPeriodRelative 50 #define CIMD_ValidityPeriodAbsolute 51 #define CIMD_ProtocolIdentifier 52 #define CIMD_FirstDeliveryTimeRel 53 #define CIMD_FirstDeliveryTimeAbs 54 #define CIMD_ReplyPath 55 #define CIMD_StatusReportRequest 56 #define CIMD_CancelEnabled 58 #define CIMD_CancelMode 59 #define CIMD_SCTimeStamp 60 #define CIMD_StatusCode 61 #define CIMD_StatusErrorCode 62 #define CIMD_DischargeTime 63 #define CIMD_TariffClass 64 #define CIMD_ServiceDescription 65 #define CIMD_MessageCount 66 #define CIMD_Priority 67 #define CIMD_DeliveryRequestMode 68 #define CIMD_SCAddress 69 #define CIMD_GetParameter 500 #define CIMD_SMSCTime 501 #define CIMD_ErrorCode 900 #define CIMD_ErrorText 901 #define MAXPARAMSCOUNT 37 typedef struct cimd_parameter_t cimd_parameter_t; typedef void (*cimd_pdissect)(tvbuff_t *tvb, proto_tree *tree, gint pindex, gint startOffset, gint endOffset); struct cimd_parameter_t { cimd_pdissect diss; gint *ett_p; gint *hf_p; }; static void dissect_cimd_parameter(tvbuff_t *tvb, proto_tree *tree, gint pindex, gint startOffset, gint endOffset); static void dissect_cimd_ud(tvbuff_t *tvb, proto_tree *tree, gint pindex, gint startOffset, gint endOffset); static void dissect_cimd_dcs(tvbuff_t *tvb, proto_tree *tree, gint pindex, gint startOffset, gint endOffset); static int proto_cimd = -1; /* Initialize the subtree pointers */ static gint ett_cimd = -1; /* Initialize the protocol and registered fields */ static int hf_cimd_opcode_indicator = -1; static int hf_cimd_packet_number_indicator = -1; static int hf_cimd_checksum_indicator = -1; static int hf_cimd_pcode_indicator = -1; static int hf_cimd_dcs_coding_group_indicator = -1; static int hf_cimd_dcs_compressed_indicator = -1; static int hf_cimd_dcs_message_class_meaning_indicator = -1; static int hf_cimd_dcs_message_class_indicator = -1; static int hf_cimd_dcs_character_set_indicator = -1; static int hf_cimd_dcs_indication_sense = -1; static int hf_cimd_dcs_indication_type = -1; static const value_string vals_hdr_OC[] = { /* operation codes array */ {CIMD_Login, "Login"}, {CIMD_LoginResp, "Login Resp"}, {CIMD_Logout, "Logout"}, {CIMD_LogoutResp, "Logout Resp"}, {CIMD_SubmitMessage, "Submit message"}, {CIMD_SubmitMessageResp, "Submit message Resp"}, {CIMD_EnqMessageStatus, "Enquire message status"}, {CIMD_EnqMessageStatusResp, "Enquire message status Resp"}, {CIMD_DeliveryRequest, "Delivery request"}, {CIMD_DeliveryRequestResp, "Delivery request Resp"}, {CIMD_CancelMessage, "Cancel message"}, {CIMD_CancelMessageResp, "Cancel message Resp"}, {CIMD_SetMessage, "Set message"}, {CIMD_SetMessageResp, "Set message Resp"}, {CIMD_GetMessage, "Get message"}, {CIMD_GetMessageResp, "Get message Resp"}, {CIMD_Alive, "Alive"}, {CIMD_AliveResp, "Alive Resp"}, {CIMD_GeneralErrorResp, "General error Resp"}, {CIMD_NACK, "Nack"}, /* SC2App */ {CIMD_DeliveryMessage, "Deliver message"}, {CIMD_DeliveryMessageResp, "Deliver message Resp"}, {CIMD_DeliveryStatusReport, "Deliver status report"}, {CIMD_DeliveryStatusReportResp, "Deliver status report Resp"}, {0, NULL} }; static const value_string cimd_vals_PC[] = { /* parameter codes array */ {CIMD_UserIdentity, "User Identity"}, {CIMD_Password, "Password"}, {CIMD_Subaddress, "Subaddr"}, {CIMD_WindowSize, "Window Size"}, {CIMD_DestinationAddress, "Destination Address"}, {CIMD_OriginatingAddress, "Originating Address"}, {CIMD_OriginatingImsi, "Originating IMSI"}, {CIMD_AlphaOriginatingAddr, "Alphanumeric Originating Address"}, {CIMD_OriginatedVisitedMSCAd, "Originated Visited MSC Address"}, {CIMD_DataCodingScheme, "Data Coding Scheme"}, {CIMD_UserDataHeader, "User Data Header"}, {CIMD_UserData, "User Data"}, {CIMD_UserDataBinary, "User Data Binary"}, {CIMD_MoreMessagesToSend, "More Messages To Send"}, {CIMD_ValidityPeriodRelative, "Validity Period Relative"}, {CIMD_ValidityPeriodAbsolute, "Validity Period Absolute"}, {CIMD_ProtocolIdentifier, "Protocol Identifier"}, {CIMD_FirstDeliveryTimeRel, "First Delivery Time Relative"}, {CIMD_FirstDeliveryTimeAbs, "First Delivery Time Absolute"}, {CIMD_ReplyPath, "Reply Path"}, {CIMD_StatusReportRequest, "Status Report Request"}, {CIMD_CancelEnabled, "Cancel Enabled"}, {CIMD_CancelMode, "Cancel Mode"}, {CIMD_SCTimeStamp, "Service Centre Time Stamp"}, {CIMD_StatusCode, "Status Code"}, {CIMD_StatusErrorCode, "Status Error Code"}, {CIMD_DischargeTime, "Discharge Time"}, {CIMD_TariffClass, "Tariff Class"}, {CIMD_ServiceDescription, "Service Description"}, {CIMD_MessageCount, "Message Count"}, {CIMD_Priority, "Priority"}, {CIMD_DeliveryRequestMode, "Delivery Request Mode"}, {CIMD_SCAddress, "Service Center Address"}, {CIMD_GetParameter, "Get Parameter"}, {CIMD_SMSCTime, "SMS Center Time"}, {CIMD_ErrorCode, "Error Code"}, {CIMD_ErrorText, "Error Text"}, {0, NULL} }; static const value_string cimd_dcs_coding_groups[] = { {0x00, "General Data Coding indication"}, {0x01, "General Data Coding indication"}, {0x02, "General Data Coding indication"}, {0x03, "General Data Coding indication"}, {0x04, "Message Marked for Automatic Deletion Group"}, {0x05, "Message Marked for Automatic Deletion Group"}, {0x06, "Message Marked for Automatic Deletion Group"}, {0x07, "Message Marked for Automatic Deletion Group"}, {0x08, "Reserved coding group"}, {0x09, "Reserved coding group"}, {0x0A, "Reserved coding group"}, {0x0B, "Reserved coding group"}, {0x0C, "Message Waiting Indication Group: Discard Message (7-bit encoded)"}, {0x0D, "Message Waiting Indication Group: Store Message (7-bit encoded)"}, {0x0E, "Message Waiting Indication Group: Store Message (uncompressed UCS2 encoded)"}, {0x0F, "Data coding/message class"}, {0, NULL} }; static const value_string cimd_dcs_compressed[] = { {0x00, "Text is uncompressed"}, {0x01, "Text is compressed"}, {0, NULL} }; static const value_string cimd_dcs_message_class_meaning[] = { {0x00, "Reserved, bits 1 to 0 have no message class meaning"}, {0x01, "Bits 1 to 0 have message class meaning"}, {0, NULL} }; static const value_string cimd_dcs_message_class[] = { {0x00, "Class 0"}, {0x01, "Class 1 Default meaning: ME-specific"}, {0x02, "Class 2 (U)SIM specific message"}, {0x03, "Class 3 Default meaning: TE-specific"}, {0, NULL} }; static const value_string cimd_dcs_character_set[] = { {0x00, "GSM 7 bit default alphabet"}, {0x01, "8 bit data"}, {0x02, "UCS2 (16bit)"}, {0x03, "Reserved"}, {0, NULL} }; static const value_string cimd_dcs_indication_sense[] = { {0x00, "Set Indication Inactive"}, {0x01, "Set Indication Active"}, {0, NULL} }; static const value_string cimd_dcs_indication_type[] = { {0x00, "Voicemail Message Waiting"}, {0x01, "Fax Message Waiting"}, {0x02, "Electronic Mail Message Waiting"}, {0x03, "Other Message Waiting"}, {0, NULL} }; static const cimd_pdissect cimd_pc_handles[] = { /* function handles for parsing cimd parameters */ dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_dcs, dissect_cimd_parameter, dissect_cimd_ud, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter, dissect_cimd_parameter }; /* Parameters */ static cimd_parameter_t vals_hdr_PC[MAXPARAMSCOUNT + 1]; static gint ett_index[MAXPARAMSCOUNT]; static gint hf_index[MAXPARAMSCOUNT]; /** * Convert ASCII-hex character to binary equivalent. No checks, assume * is valid hex character. */ #define AHex2Bin(n) (((n) & 0x40) ? ((n) & 0x0F) + 9 : ((n) & 0x0F)) static guint decimal_int_value(tvbuff_t *tvb, int offset, int length) { guint value = 0; int i; for (i=0; i 0) { tmpBuffer[bufPoz++] = poz; } else { tmpBuffer[bufPoz++] = payloadText[loop-2]; tmpBuffer[bufPoz++] = payloadText[loop-1]; tmpBuffer[bufPoz++] = payloadText[loop]; } } else { if (loop < size) tmpBuffer[bufPoz++] = payloadText[loop++]; if (loop < size) tmpBuffer[bufPoz++] = payloadText[loop++]; if (loop < size) tmpBuffer[bufPoz++] = payloadText[loop++]; } } else { tmpBuffer[bufPoz++] = payloadText[loop]; } } tmpBuffer[bufPoz] = '\0'; size1 = (int)strlen(tmpBuffer); for (loop=0; loop> 4; other_decode_bitfield_value(bigbuf, dcs, (dcs_cg <= 0x07 ? 0xC0 : 0xF0), 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_coding_group_indicator, tvb, offset, 1, dcs_cg, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_coding_group_indicator)->name, val_to_str(dcs_cg, cimd_dcs_coding_groups, "Unknown (%d)"), dcs_cg ); if (dcs_cg <= 0x07) { dcs_cf = (dcs & 0x20) >> 5; other_decode_bitfield_value(bigbuf, dcs, 0x20, 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_compressed_indicator, tvb, offset, 1, dcs_cf, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_compressed_indicator)->name, val_to_str(dcs_cf, cimd_dcs_compressed, "Unknown (%d)"), dcs_cf ); dcs_mcm = (dcs & 0x10) >> 4; other_decode_bitfield_value(bigbuf, dcs, 0x10, 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_message_class_meaning_indicator, tvb, offset, 1, dcs_mcm, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_message_class_meaning_indicator)->name, val_to_str(dcs_mcm, cimd_dcs_message_class_meaning, "Unknown (%d)"), dcs_mcm ); dcs_chs = (dcs & 0x0C) >> 2; other_decode_bitfield_value(bigbuf, dcs, 0x0C, 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_character_set_indicator, tvb, offset, 1, dcs_chs, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_character_set_indicator)->name, val_to_str(dcs_chs, cimd_dcs_character_set, "Unknown (%d)"), dcs_chs ); if (dcs_mcm) { dcs_mc = (dcs & 0x03); other_decode_bitfield_value(bigbuf, dcs, 0x03, 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_message_class_indicator, tvb, offset, 1, dcs_mc, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_message_class_indicator)->name, val_to_str(dcs_mc, cimd_dcs_message_class, "Unknown (%d)"), dcs_mc ); } } else if (dcs_cg >= 0x0C && dcs_cg <= 0x0E) { dcs_is = (dcs & 0x04) >> 2; other_decode_bitfield_value(bigbuf, dcs, 0x04, 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_indication_sense, tvb, offset, 1, dcs_is, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_indication_sense)->name, val_to_str(dcs_is, cimd_dcs_indication_sense, "Unknown (%d)"), dcs_is ); dcs_it = (dcs & 0x03); other_decode_bitfield_value(bigbuf, dcs, 0x03, 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_indication_type, tvb, offset, 1, dcs_it, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_indication_type)->name, val_to_str(dcs_it, cimd_dcs_indication_type, "Unknown (%d)"), dcs_it ); } else if (dcs_cg == 0x0F) { dcs_chs = (dcs & 0x04) >> 2; other_decode_bitfield_value(bigbuf, dcs, 0x04, 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_character_set_indicator, tvb, offset, 1, dcs_chs, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_character_set_indicator)->name, val_to_str(dcs_chs, cimd_dcs_character_set, "Unknown (%d)"), dcs_chs ); dcs_mc = (dcs & 0x03); other_decode_bitfield_value(bigbuf, dcs, 0x03, 8); proto_tree_add_uint_format(param_tree, hf_cimd_dcs_message_class_indicator, tvb, offset, 1, dcs_mc, "%s = %s: %s (%d)", bigbuf, proto_registrar_get_nth(hf_cimd_dcs_message_class_indicator)->name, val_to_str(dcs_mc, cimd_dcs_message_class, "Unknown (%d)"), dcs_mc ); } } static void dissect_cimd_operation(tvbuff_t *tvb, proto_tree *tree, gint etxp, guint16 checksum, guint8 last1,guint8 OC, guint8 PN) { guint PC = 0; /* Parameter code */ gint idx; gint offset = 0; gint endOffset = 0; proto_item *cimd_item = NULL; proto_tree *cimd_tree = NULL; if (tree) { /* create display subtree for the protocol */ cimd_item = proto_tree_add_item(tree, proto_cimd, tvb, 0, etxp + 1, ENC_NA); cimd_tree = proto_item_add_subtree(cimd_item, ett_cimd); proto_tree_add_uint(cimd_tree, hf_cimd_opcode_indicator, tvb, CIMD_OC_OFFSET, CIMD_OC_LENGTH, OC); proto_tree_add_uint(cimd_tree, hf_cimd_packet_number_indicator, tvb, CIMD_PN_OFFSET, CIMD_PN_LENGTH, PN); } offset = CIMD_PN_OFFSET + CIMD_PN_LENGTH; while (offset < etxp && tvb_get_guint8(tvb, offset) == CIMD_DELIM) { endOffset = tvb_find_guint8(tvb, offset + 1, etxp, CIMD_DELIM); if (endOffset == -1) break; PC = decimal_int_value(tvb, offset + 1, CIMD_PC_LENGTH); match_strval_idx(PC, cimd_vals_PC, &idx); if (idx != -1 && tree) { (vals_hdr_PC[idx].diss)(tvb, cimd_tree, idx, offset, endOffset); } offset = endOffset; } if (tree && last1 != CIMD_DELIM) { /* Checksum is present */ proto_tree_add_uint(cimd_tree, hf_cimd_checksum_indicator, tvb, etxp - 2, 2, checksum); } } static void dissect_cimd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) { guint8 OC = 0; /* Operation Code */ guint8 PN = 0; /* Packet number */ guint16 checksum = 0; /* Checksum */ guint16 pkt_check = 0; gint etxp = 0; /* ETX position */ gint offset = 0; /*gint endOffset = 0;*/ gboolean checksumIsValid = TRUE; guint8 last1, last2, last3; etxp = tvb_find_guint8(tvb, CIMD_PN_OFFSET + CIMD_PN_LENGTH, -1, CIMD_ETX); if (etxp == -1) return; OC = decimal_int_value(tvb, CIMD_OC_OFFSET, CIMD_OC_LENGTH); PN = decimal_int_value(tvb, CIMD_PN_OFFSET, CIMD_PN_LENGTH); last1 = tvb_get_guint8(tvb, etxp - 1); last2 = tvb_get_guint8(tvb, etxp - 2); last3 = tvb_get_guint8(tvb, etxp - 3); if (last1 == CIMD_DELIM) { /* valid packet, CC is missing */ } else if (last1 != CIMD_DELIM && last2 != CIMD_DELIM && last3 == CIMD_DELIM) { /* looks valid, it would be nice to check that last1 and last2 are HEXA */ /* CC is present */ checksum = (AHex2Bin(tvb_get_guint8(tvb, etxp - 2)) << 4) + AHex2Bin(tvb_get_guint8(tvb, etxp - 1)); for (; offset < (etxp - 2); offset++) { pkt_check += tvb_get_guint8(tvb, offset); pkt_check &= 0xFF; } checksumIsValid = (checksum == pkt_check); } else { checksumIsValid = FALSE; } /* Make entries in Protocol column on summary display */ col_set_str(pinfo->cinfo, COL_PROTOCOL, "CIMD"); if (checksumIsValid) col_add_str(pinfo->cinfo, COL_INFO, val_to_str(OC, vals_hdr_OC, "Unknown (%d)")); else col_add_fstr(pinfo->cinfo, COL_INFO, "%s - %s", val_to_str(OC, vals_hdr_OC, "Unknown (%d)"), "invalid checksum"); dissect_cimd_operation(tvb, tree, etxp, checksum, last1, OC, PN); } /** * A 'heuristic dissector' that attemtps to establish whether we have * a CIMD MSU here. */ static gboolean dissect_cimd_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_) { int etxp; guint8 opcode = 0; /* Operation code */ if (tvb_length(tvb) < CIMD_MIN_LENGTH) return FALSE; if (tvb_get_guint8(tvb, 0) != CIMD_STX) return FALSE; etxp = tvb_find_guint8(tvb, CIMD_OC_OFFSET, -1, CIMD_ETX); if (etxp == -1) { /* XXX - should we have an option to request reassembly? */ return FALSE; } /* Try getting the operation-code */ opcode = decimal_int_value(tvb, CIMD_OC_OFFSET, CIMD_OC_LENGTH); if (match_strval(opcode, vals_hdr_OC) == NULL) return FALSE; if (tvb_get_guint8(tvb, CIMD_OC_OFFSET + CIMD_OC_LENGTH) != CIMD_COLON) return FALSE; if (tvb_get_guint8(tvb, CIMD_PN_OFFSET + CIMD_PN_LENGTH) != CIMD_DELIM) return FALSE; /* Ok, looks like a valid packet, go dissect. */ dissect_cimd(tvb, pinfo, tree); return TRUE; } void proto_register_cimd(void) { static hf_register_info hf[] = { { &hf_cimd_opcode_indicator, { "Operation Code", "cimd.opcode", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_packet_number_indicator, { "Packet Number", "cimd.pnumber", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_pcode_indicator, { "Parameter Code", "cimd.pcode", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_checksum_indicator, { "Checksum", "cimd.chksum", FT_UINT8, BASE_HEX, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_dcs_coding_group_indicator, { "DCS Coding Group", "cimd.dcs.cg", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_dcs_compressed_indicator, { "DCS Compressed Flag", "cimd.dcs.cf", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_dcs_message_class_meaning_indicator, { "DCS Message Class Meaning", "cimd.dcs.mcm", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_dcs_message_class_indicator, { "DCS Message Class", "cimd.dcs.mc", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_dcs_character_set_indicator, { "DCS Character Set", "cimd.dcs.chs", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_dcs_indication_sense, { "DCS Indication Sense", "cimd.dcs.is", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_cimd_dcs_indication_type, { "DCS Indication Type", "cimd.dcs.it", FT_UINT8, BASE_DEC, NULL, 0x00, NULL, HFILL } }, { &hf_index[0], { "User Identity", "cimd.ui", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[1], { "Password", "cimd.passwd", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[2], { "Subaddress", "cimd.saddr", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[3], { "Window Size", "cimd.ws", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[4], { "Destination Address", "cimd.da", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[5], { "Originating Address", "cimd.oa", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[6], { "Originating IMSI", "cimd.oimsi", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[7], { "Alphanumeric Originating Address", "cimd.aoi", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[8], { "Originated Visited MSC Address", "cimd.ovma", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[9], { "Data Coding Scheme", "cimd.dcs", FT_UINT8, BASE_HEX, NULL, 0x00, NULL, HFILL } }, { &hf_index[10], { "User Data Header", "cimd.udh", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[11], { "User Data", "cimd.ud", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[12], { "User Data Binary", "cimd.udb", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[13], { "More Messages To Send", "cimd.mms", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[14], { "Validity Period Relative", "cimd.vpr", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[15], { "Validity Period Absolute", "cimd.vpa", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[16], { "Protocol Identifier", "cimd.pi", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[17], { "First Delivery Time Relative", "cimd.fdtr", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[18], { "First Delivery Time Absolute", "cimd.fdta", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[19], { "Reply Path", "cimd.rpath", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[20], { "Status Report Request", "cimd.srr", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[21], { "Cancel Enabled", "cimd.ce", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[22], { "Cancel Mode", "cimd.cm", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[23], { "Service Center Time Stamp", "cimd.scts", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[24], { "Status Code", "cimd.stcode", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[25], { "Status Error Code", "cimd.sterrcode", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[26], { "Discharge Time", "cimd.dt", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[27], { "Tariff Class", "cimd.tclass", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[28], { "Service Description", "cimd.sdes", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[29], { "Message Count", "cimd.mcount", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[30], { "Priority", "cimd.priority", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[31], { "Delivery Request Mode", "cimd.drmode", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[32], { "Service Center Address", "cimd.scaddr", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[33], { "Get Parameter", "cimd.gpar", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[34], { "SMS Center Time", "cimd.smsct", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[35], { "Error Code", "cimd.errcode", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } }, { &hf_index[36], { "Error Text", "cimd.errtext", FT_STRING, BASE_NONE, NULL, 0x00, NULL, HFILL } } }; /* Setup protocol subtree array */ gint *ett[MAXPARAMSCOUNT + 1]; int i; ett[0] = &ett_cimd; for(i=0;i