wireshark/epan/dissectors/packet-xmcp.c
Michael Mann 268841f3e0 Combine Decode As and port preferences for tcp.port dissector table.
This patch introduces new APIs to allow dissectors to have a preference for
a (TCP) port, but the underlying data is actually part of Decode As functionality.
For now the APIs are intentionally separate from the regular APIs that register a
dissector within a dissector table.  It may be possible to eventually combine the
two so that all dissectors that register with a dissector table have an opportunity
to "automatically" have a preference to adjust the "table value" through the
preferences dialog.

The tcp.port dissector table was used as the guinea pig.  This will eventually be
expanded to other dissector tables as well (most notably UDP ports).  Some
dissectors that "shared" a TCP/UDP port preference were also converted. It also
removed the need for some preference callback functions (mostly when the callback
function was the proto_reg_handoff function) so there is cleanup around that.

Dissectors that has a port preference whose default was 0 were switched to using
the dissector_add_for_decode_as_with_preference API rather than dissector_add_uint_with_preference

Also added comments for TCP ports used that aren't IANA registered.

Change-Id: I99604f95d426ad345f4b494598d94178b886eb67
Reviewed-on: https://code.wireshark.org/review/17724
Reviewed-by: Michael Mann <mmann78@netscape.net>
2016-10-08 02:44:53 +00:00

1375 lines
53 KiB
C

/* packet-xmcp.c
* Routines for eXtensible Messaging Client Protocol (XMCP) dissection
* Copyright 2011, Glenn Matthews <glenn.matthews@cisco.com>
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* Copied from packet-stun.c
*
* 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.
*
*
* XMCP is a proprietary Cisco protocol based very loosely on the
* Session Traversal Utilities for NAT (STUN) protocol.
* This dissector is capable of understanding XMCP versions 1.0 and 2.0.
*/
#include "config.h"
#include <epan/packet.h>
#include <epan/ipproto.h>
#include <epan/addr_resolv.h>
#include <epan/expert.h>
#include "packet-tcp.h"
void proto_register_xmcp(void);
static dissector_table_t media_type_dissector_table;
/* Initialize the protocol and registered fields */
static int proto_xmcp = -1;
static int hf_xmcp_response_in = -1;
static int hf_xmcp_response_to = -1;
static int hf_xmcp_time = -1;
typedef struct _xmcp_transaction_t {
guint32 request_frame;
guint32 response_frame;
nstime_t request_time;
gboolean request_is_keepalive;
} xmcp_transaction_t;
typedef struct _xmcp_conv_info_t {
wmem_tree_t *transaction_pdus;
} xmcp_conv_info_t;
static int hf_xmcp_type = -1;
static int hf_xmcp_type_reserved = -1;
static int hf_xmcp_type_class = -1;
static int hf_xmcp_type_method = -1;
static int hf_xmcp_length = -1;
static int hf_xmcp_cookie = -1;
static int hf_xmcp_id = -1;
static int hf_xmcp_attributes = -1;
static int hf_xmcp_attr = -1;
static int hf_xmcp_msg_is_keepalive = -1;
static int xmcp_attr_type = -1;
static int xmcp_attr_length = -1;
static int xmcp_attr_value = -1; /* generic value for unrecognized attrs */
static int xmcp_attr_padding = -1; /* generic value for TLV padding bytes */
static int xmcp_attr_reserved = -1;
static int xmcp_attr_username = -1;
static int xmcp_attr_message_integrity = -1;
static int xmcp_attr_error_reserved = -1;
static int xmcp_attr_error_class = -1;
static int xmcp_attr_error_number = -1;
static int xmcp_attr_error_code = -1;
static int xmcp_attr_error_reason = -1;
static int xmcp_attr_realm = -1;
static int xmcp_attr_nonce = -1;
static int xmcp_attr_client_name = -1;
static int xmcp_attr_client_handle = -1;
static int xmcp_attr_version_major = -1;
static int xmcp_attr_version_minor = -1;
static int xmcp_attr_page_size = -1;
static int xmcp_attr_client_label = -1;
static int xmcp_attr_keepalive = -1;
static int xmcp_attr_serv_service = -1;
static int xmcp_attr_serv_subservice = -1;
static int xmcp_attr_serv_instance = -1;
static int xmcp_attr_servtrans_family = -1;
static int xmcp_attr_servtrans_port = -1;
static int xmcp_attr_servtrans_ipv4 = -1;
static int xmcp_attr_servtrans_ipv6 = -1;
static int xmcp_attr_service_protocol = -1;
static int xmcp_attr_flag = -1;
static int xmcp_attr_flag_type = -1;
static int xmcp_attr_flag_value = -1;
static int xmcp_attr_flag_removal_reason_network_withdraw = -1;
static int xmcp_attr_flag_removal_reason_reserved = -1;
static int xmcp_attr_flag_trust = -1;
static int xmcp_attr_flag_visibility_unauthenticated = -1;
static int xmcp_attr_flag_visibility_reserved = -1;
static int xmcp_attr_service_version = -1;
static int xmcp_attr_service_data = -1;
static int xmcp_attr_subscription_id = -1;
static int xmcp_attr_service_removed_reason = -1;
static int xmcp_attr_domain = -1;
static gint ett_xmcp = -1;
static gint ett_xmcp_type = -1;
static gint ett_xmcp_attr_all = -1;
static gint ett_xmcp_attr = -1;
static gint ett_xmcp_attr_flag = -1;
static expert_field ei_xmcp_message_class_reserved = EI_INIT;
static expert_field ei_xmcp_attr_length_bad = EI_INIT;
static expert_field ei_xmcp_attr_error_number_out_of_range = EI_INIT;
static expert_field ei_xmcp_type_reserved_not_zero = EI_INIT;
static expert_field ei_xmcp_data_following_message_integrity = EI_INIT;
static expert_field ei_xmcp_msg_type_method_reserved = EI_INIT;
static expert_field ei_xmcp_xmcp_attr_servtrans_unknown = EI_INIT;
static expert_field ei_xmcp_attr_realm_incorrect = EI_INIT;
static expert_field ei_xmcp_new_session = EI_INIT;
static expert_field ei_xmcp_response_without_request = EI_INIT;
static expert_field ei_xmcp_length_bad = EI_INIT;
static expert_field ei_xmcp_error_response = EI_INIT;
static expert_field ei_xmcp_magic_cookie_incorrect = EI_INIT;
static expert_field ei_xmcp_attr_type_unknown = EI_INIT;
static expert_field ei_xmcp_session_termination = EI_INIT;
static expert_field ei_xmcp_attr_error_code_unusual = EI_INIT;
#define TCP_PORT_XMCP 4788
#define XMCP_MAGIC_COOKIE 0x7f5a9bc7
void proto_reg_handoff_xmcp(void);
#define XMCP_HDR_LEN 20
#define XMCP_ATTR_HDR_LEN 4
#define XMCP_TYPE_RESERVED 0xc000
#define XMCP_TYPE_CLASS 0x0110
#define XMCP_TYPE_METHOD 0x3eef
static const int *xmcp_type_fields[] = {
&hf_xmcp_type_reserved,
&hf_xmcp_type_method,
&hf_xmcp_type_class,
NULL
};
#define XMCP_CLASS_REQUEST 0x00
#define XMCP_CLASS_RESERVED 0x01
#define XMCP_CLASS_RESPONSE_SUCCESS 0x10
#define XMCP_CLASS_RESPONSE_ERROR 0x11
static const value_string classes[] = {
{XMCP_CLASS_REQUEST, "Request"},
{XMCP_CLASS_RESERVED, "RESERVED-CLASS"},
{XMCP_CLASS_RESPONSE_SUCCESS, "Success Response"},
{XMCP_CLASS_RESPONSE_ERROR, "Error Response"},
{0, NULL}
};
#define XMCP_METHOD_ILLEGAL 0x000
#define XMCP_METHOD_REGISTER 0x001
#define XMCP_METHOD_UNREGISTER 0x002
#define XMCP_METHOD_REG_REVOKE 0x003
#define XMCP_METHOD_PUBLISH 0x004
#define XMCP_METHOD_UNPUBLISH 0x005
#define XMCP_METHOD_PUB_REVOKE 0x006
#define XMCP_METHOD_SUBSCRIBE 0x007
#define XMCP_METHOD_UNSUBSCRIBE 0x008
#define XMCP_METHOD_WITHDRAW 0x009
#define XMCP_METHOD_NOTIFY 0x00a
#define XMCP_METHOD_KEEPALIVE 0x00b
static const value_string methods[] = {
{XMCP_METHOD_ILLEGAL, "Illegal"},
{XMCP_METHOD_REGISTER, "Register"},
{XMCP_METHOD_UNREGISTER, "Unregister"},
{XMCP_METHOD_REG_REVOKE, "RegisterRevoke"},
{XMCP_METHOD_PUBLISH, "Publish"},
{XMCP_METHOD_UNPUBLISH, "Unpublish"},
{XMCP_METHOD_PUB_REVOKE, "PublishRevoke"},
{XMCP_METHOD_SUBSCRIBE, "Subscribe"},
{XMCP_METHOD_UNSUBSCRIBE, "Unsubscribe"},
{XMCP_METHOD_WITHDRAW, "Withdraw"},
{XMCP_METHOD_NOTIFY, "Notify"},
{XMCP_METHOD_KEEPALIVE, "Keepalive"},
{0, NULL}
};
#define XMCP_USERNAME 0x0006
#define XMCP_MESSAGE_INTEGRITY 0x0008
#define XMCP_ERROR_CODE 0x0009
#define XMCP_REALM 0x0014
#define XMCP_NONCE 0x0015
#define XMCP_CLIENT_NAME 0x1001
#define XMCP_CLIENT_HANDLE 0x1002
#define XMCP_PROTOCOL_VERSION 0x1003
#define XMCP_PAGE_SIZE 0x1004
#define XMCP_CLIENT_LABEL 0x1005
#define XMCP_KEEPALIVE 0x1006
#define XMCP_SERVICE_IDENTITY 0x1007
#define XMCP_SERVICE_TRANSPORT 0x1008
#define XMCP_SERVICE_PROTOCOL 0x1009
#define XMCP_FLAGS 0x100a
#define XMCP_SERVICE_VERSION 0x100b
#define XMCP_SERVICE_DATA 0x100c
#define XMCP_SUBSCRIPTION_ID 0x100e
#define XMCP_SERVICE_REMOVED_REASON 0x100f
#define XMCP_DOMAIN 0x1011
static const value_string attributes[] = {
/* Attributes inherited from STUN */
{XMCP_USERNAME, "Username"},
{XMCP_MESSAGE_INTEGRITY, "Message-Integrity"},
{XMCP_ERROR_CODE, "Error-Code"},
{XMCP_REALM, "Realm"},
{XMCP_NONCE, "Nonce"},
/* Attributes specific to XMCP */
{XMCP_CLIENT_NAME, "Client-Name"},
{XMCP_CLIENT_HANDLE, "Client-Handle"},
{XMCP_PROTOCOL_VERSION, "Protocol-Version"},
{XMCP_PAGE_SIZE, "PageSize"},
{XMCP_CLIENT_LABEL, "ClientLabel"},
{XMCP_KEEPALIVE, "Keepalive"},
{XMCP_SERVICE_IDENTITY, "ServiceIdentity"},
{XMCP_SERVICE_TRANSPORT, "ServiceTransportAddr"},
{XMCP_SERVICE_PROTOCOL, "ServiceProtocol"},
{XMCP_FLAGS, "Flags"},
{XMCP_SERVICE_VERSION, "ServiceVersion"},
{XMCP_SERVICE_DATA, "ServiceData"},
{XMCP_SUBSCRIPTION_ID, "SubscriptionID"},
{XMCP_SERVICE_REMOVED_REASON, "ServiceRemovedReason"},
{XMCP_DOMAIN, "Domain"},
{0, NULL}
};
static const value_string error_codes[] = {
{400, "Bad Request"},
{401, "Unauthorized"},
{413, "Request Too Large"},
{431, "Integrity Check Failure"},
{435, "Nonce Required"},
{436, "Unknown Username"},
{438, "Stale Nonce"},
{471, "Bad Client Handle"},
{472, "Version Number Too Low"},
{473, "Unknown Service"},
{474, "Unregistered"},
{475, "Invalid ServiceIdentity"},
{476, "Unknown Subscription"},
{477, "Already Registered"},
{478, "Unsupported Protocol Version"},
{479, "Unknown or Forbidden Domain"},
{499, "Miscellaneous Request Error"},
{500, "Responder Error"},
{501, "Not Implemented"},
{0, NULL}
};
static const value_string address_families[] = {
{0x01, "IPv4"},
{0x02, "IPv6"},
{0, NULL}
};
#define XMCP_FLAG_REMOVAL_REASON 0x0001
#define XMCP_FLAG_TRUST 0x0002
#define XMCP_FLAG_SERVICE_VISIBILITY 0x0003
static const value_string flag_types[] = {
{XMCP_FLAG_REMOVAL_REASON, "Removal Reason"},
{XMCP_FLAG_TRUST, "Trust"},
{XMCP_FLAG_SERVICE_VISIBILITY, "Service Visibility"},
{0, NULL}
};
/* Values for specific flag types */
#define XMCP_REMOVAL_REASON_NETWORK_WITHDRAW 0x0001
#define XMCP_REMOVAL_REASON_RESERVED 0xfffe
#define XMCP_TRUST_LOCAL 0
#define XMCP_TRUST_LEARNED 1
static const value_string flag_trust_values[] = {
{XMCP_TRUST_LOCAL, "Local"},
{XMCP_TRUST_LEARNED, "Learned"},
{0, NULL}
};
#define XMCP_SERVICE_VISIBILITY_UNAUTHENTICATED 0x0001
#define XMCP_SERVICE_VISIBILITY_RESERVED 0xfffe
static const value_string service_removed_reasons[] = {
{0, "Network withdraw"},
{1, "Source withdraw"},
{0, NULL}
};
/* Dissector state variables */
static guint16 xmcp_msg_type_method = XMCP_METHOD_ILLEGAL;
static guint16 xmcp_msg_type_class = XMCP_CLASS_RESERVED;
static gboolean xmcp_msg_is_keepalive = FALSE;
static gint16 xmcp_service_protocol = -1;
static gint32 xmcp_service_port = -1;
static proto_item *xmcp_it_service_port = NULL;
static guint
get_xmcp_message_len(packet_info *pinfo _U_, tvbuff_t *tvb,
int offset, void *data _U_)
{
return(XMCP_HDR_LEN + tvb_get_ntohs(tvb, offset+2));
}
static guint16
get_xmcp_attr_padded_len(guint16 attr_length)
{
/*
* As in STUN, all XMCP attributes report their length in bytes,
* but are padded to the next 4-byte multiple.
*/
return((attr_length + 3) & 0xfffc);
}
static guint16
get_xmcp_attr_fixed_len(guint16 xmcp_attr)
{
/*
* For fixed-length attributes, return their length.
* For variable-length attributes, return 0.
*/
switch (xmcp_attr) {
case XMCP_CLIENT_HANDLE:
case XMCP_PROTOCOL_VERSION:
case XMCP_PAGE_SIZE:
case XMCP_KEEPALIVE:
case XMCP_SERVICE_PROTOCOL:
case XMCP_SERVICE_VERSION:
case XMCP_SUBSCRIPTION_ID:
case XMCP_SERVICE_REMOVED_REASON:
case XMCP_DOMAIN:
return(4);
case XMCP_SERVICE_IDENTITY:
return(20);
default:
return(0);
}
}
static guint16
get_xmcp_attr_min_len(guint16 xmcp_attr)
{
switch (xmcp_attr) {
case XMCP_USERNAME:
case XMCP_NONCE:
case XMCP_CLIENT_NAME:
case XMCP_CLIENT_LABEL:
return(1);
case XMCP_ERROR_CODE:
return(4);
case XMCP_SERVICE_TRANSPORT:
return(8); /* 4-byte fixed plus an IPv4 address */
case XMCP_MESSAGE_INTEGRITY:
return(20); /* HMAC-SHA1 */
default:
return(get_xmcp_attr_fixed_len(xmcp_attr));
}
}
static guint16
get_xmcp_attr_max_len(guint16 xmcp_attr) {
guint16 fixed_len;
switch (xmcp_attr) {
case XMCP_SERVICE_TRANSPORT:
return(20); /* 4-byte fixed plus an IPv6 address */
case XMCP_MESSAGE_INTEGRITY:
return(32); /* HMAC-SHA-256 */
case XMCP_NONCE:
case XMCP_CLIENT_NAME:
case XMCP_CLIENT_LABEL:
return(255);
default:
fixed_len = get_xmcp_attr_fixed_len(xmcp_attr);
return(fixed_len ? fixed_len : 0xffff);
}
}
static void
add_xmcp_port_name (void)
{
if (!xmcp_it_service_port || xmcp_service_port == -1)
return;
switch(xmcp_service_protocol) {
case IP_PROTO_TCP:
proto_item_append_text(xmcp_it_service_port, " (TCP: %s)",
tcp_port_to_display(wmem_packet_scope(), xmcp_service_port));
break;
case IP_PROTO_UDP:
proto_item_append_text(xmcp_it_service_port, " (UDP: %s)",
udp_port_to_display(wmem_packet_scope(), xmcp_service_port));
break;
case IP_PROTO_DCCP:
proto_item_append_text(xmcp_it_service_port, " (DCCP: %s)",
dccp_port_to_display(wmem_packet_scope(), xmcp_service_port));
break;
case IP_PROTO_SCTP:
proto_item_append_text(xmcp_it_service_port, " (SCTP: %s)",
sctp_port_to_display(wmem_packet_scope(), xmcp_service_port));
break;
default:
break;
}
}
static void
decode_xmcp_attr_value (proto_tree *attr_tree, guint16 attr_type,
guint16 attr_length, tvbuff_t *tvb, guint16 offset,
packet_info *pinfo)
{
proto_item *it;
switch (attr_type) {
case XMCP_USERNAME:
proto_tree_add_item(attr_tree, xmcp_attr_username, tvb, offset,
attr_length, ENC_ASCII|ENC_NA);
proto_item_append_text(attr_tree, ": %s",
tvb_get_string_enc(wmem_packet_scope(), tvb, offset, attr_length, ENC_ASCII));
/*
* Many message methods may include this attribute,
* but it's only interesting when Registering at first
*/
if (xmcp_msg_type_method == XMCP_METHOD_REGISTER) {
col_append_fstr(pinfo->cinfo, COL_INFO, ", user \"%s\"",
tvb_get_string_enc(wmem_packet_scope(), tvb, offset, attr_length, ENC_ASCII));
}
break;
case XMCP_MESSAGE_INTEGRITY:
proto_tree_add_item(attr_tree, xmcp_attr_message_integrity, tvb, offset,
attr_length, ENC_NA);
/* Message-integrity should be the last attribute in the message */
if ((guint)(offset + get_xmcp_attr_padded_len(attr_length)) < tvb_reported_length(tvb)) {
expert_add_info(pinfo, attr_tree, &ei_xmcp_data_following_message_integrity);
}
break;
case XMCP_ERROR_CODE:
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_error_reserved, tvb, offset,
3, ENC_BIG_ENDIAN);
proto_tree_add_item(attr_tree, xmcp_attr_error_class, tvb, offset,
3, ENC_BIG_ENDIAN);
{
guint8 error_class, error_number;
guint16 error_code;
it = proto_tree_add_item(attr_tree, xmcp_attr_error_number, tvb,
(offset+3), 1, ENC_BIG_ENDIAN);
error_class = tvb_get_guint8(tvb, offset+2) & 0x07;
error_number = tvb_get_guint8(tvb, offset+3);
if (error_number > 99) {
expert_add_info(pinfo, it, &ei_xmcp_attr_error_number_out_of_range);
} else {
/* Error code = error class + (error num % 100) */
error_code = (error_class * 100) + error_number;
it = proto_tree_add_uint(attr_tree, xmcp_attr_error_code, tvb,
(offset+2), 2, error_code);
PROTO_ITEM_SET_GENERATED(it);
proto_item_append_text(attr_tree, ": %d", error_code);
col_append_fstr(pinfo->cinfo, COL_INFO, ", error %d (%s)", error_code,
val_to_str_const(error_code, error_codes, "Unknown"));
/*
* All error responses default to a PI_NOTE severity.
* Some specific error codes are more significant, so mark them up.
*/
switch (error_code) {
case 400: /* Bad Request */
case 431: /* Integrity Check Failure */
case 473: /* Unknown Service */
case 476: /* Unknown Subscription */
case 477: /* Already Registered */
case 499: /* Miscellaneous Request Error */
case 500: /* Responder Error */
expert_add_info_format(pinfo, it, &ei_xmcp_attr_error_code_unusual, "Unusual error code (%u, %s)", error_code, val_to_str_const(error_code, error_codes, "Unknown"));
break;
default:
break;
}
}
}
if (attr_length < 5)
break;
proto_tree_add_item(attr_tree, xmcp_attr_error_reason, tvb, (offset+4),
(attr_length - 4), ENC_ASCII|ENC_NA);
proto_item_append_text(attr_tree, " (%s)",
tvb_get_string_enc(wmem_packet_scope(), tvb, (offset+4),
(attr_length-4), ENC_ASCII));
break;
case XMCP_REALM:
it = proto_tree_add_item(attr_tree, xmcp_attr_realm, tvb, offset,
attr_length, ENC_ASCII|ENC_NA);
{
guint8 *realm;
realm = tvb_get_string_enc(wmem_packet_scope(), tvb, offset, attr_length, ENC_ASCII);
proto_item_append_text(attr_tree, ": %s", realm);
/* In XMCP the REALM string should always be "SAF" including the quotes */
if (attr_length != 5 || strncmp(realm, "\"SAF\"", attr_length)) {
expert_add_info(pinfo, it, &ei_xmcp_attr_realm_incorrect);
}
}
break;
case XMCP_NONCE:
proto_tree_add_item(attr_tree, xmcp_attr_nonce, tvb, offset,
attr_length, ENC_ASCII|ENC_NA);
proto_item_append_text(attr_tree, ": %s",
tvb_get_string_enc(wmem_packet_scope(), tvb, offset, attr_length, ENC_ASCII));
break;
case XMCP_CLIENT_NAME:
proto_tree_add_item(attr_tree, xmcp_attr_client_name, tvb, offset,
attr_length, ENC_ASCII|ENC_NA);
proto_item_append_text(attr_tree, ": %s",
tvb_get_string_enc(wmem_packet_scope(), tvb, offset, attr_length, ENC_ASCII));
col_append_fstr(pinfo->cinfo, COL_INFO, ", name \"%s\"",
tvb_get_string_enc(wmem_packet_scope(), tvb, offset, attr_length, ENC_ASCII));
break;
case XMCP_CLIENT_HANDLE:
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_client_handle, tvb, offset,
4, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %u", tvb_get_ntohl(tvb, offset));
col_append_fstr(pinfo->cinfo, COL_INFO, ", handle %u",
tvb_get_ntohl(tvb, offset));
/*
* A Register request containing a Client-Handle is considered
* to be a Keepalive.
*/
if (xmcp_msg_type_method == XMCP_METHOD_REGISTER &&
xmcp_msg_type_class == XMCP_CLASS_REQUEST) {
xmcp_msg_is_keepalive = TRUE;
}
break;
case XMCP_PROTOCOL_VERSION:
if (attr_length < 2)
break;
proto_tree_add_item(attr_tree, xmcp_attr_version_major, tvb, offset,
2, ENC_BIG_ENDIAN);
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_version_minor, tvb, (offset+2),
2, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %u.%u", tvb_get_ntohs(tvb, offset),
tvb_get_ntohs(tvb, (offset+2)));
break;
case XMCP_PAGE_SIZE:
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_page_size, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %u", tvb_get_ntohl(tvb, offset));
break;
case XMCP_CLIENT_LABEL:
proto_tree_add_item(attr_tree, xmcp_attr_client_label, tvb, offset,
attr_length, ENC_ASCII|ENC_NA);
proto_item_append_text(attr_tree, ": %s",
tvb_get_string_enc(wmem_packet_scope(), tvb, offset, attr_length, ENC_ASCII));
col_append_fstr(pinfo->cinfo, COL_INFO, ", label \"%s\"",
tvb_get_string_enc(wmem_packet_scope(), tvb, offset, attr_length, ENC_ASCII));
break;
case XMCP_KEEPALIVE:
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_keepalive, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %u", tvb_get_ntohl(tvb, offset));
break;
case XMCP_SERVICE_IDENTITY:
if (attr_length < 2)
break;
proto_tree_add_item(attr_tree, xmcp_attr_serv_service, tvb, offset,
2, ENC_BIG_ENDIAN);
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_serv_subservice, tvb, (offset+2),
2, ENC_BIG_ENDIAN);
if (attr_length < 20)
break;
proto_tree_add_item(attr_tree, xmcp_attr_serv_instance, tvb, (offset+4),
16, ENC_BIG_ENDIAN);
{
e_guid_t guid;
char buf[GUID_STR_LEN];
tvb_get_guid(tvb, (offset+4), &guid, ENC_BIG_ENDIAN);
guid_to_str_buf(&guid, buf, sizeof(buf));
proto_item_append_text(attr_tree, ": %u:%u:%s",
tvb_get_ntohs(tvb, offset),
tvb_get_ntohs(tvb, (offset+2)), buf);
col_append_fstr(pinfo->cinfo, COL_INFO, ", service %u:%u:%s",
tvb_get_ntohs(tvb, offset),
tvb_get_ntohs(tvb, (offset+2)), buf);
}
break;
case XMCP_SERVICE_TRANSPORT:
/*
* One byte of padding, one byte indicating family,
* two bytes for port, followed by addr
*/
if (attr_length < 1)
break;
proto_tree_add_item(attr_tree, xmcp_attr_reserved, tvb, offset, 1, ENC_NA);
if (attr_length < 2)
break;
proto_tree_add_item(attr_tree, xmcp_attr_servtrans_family, tvb,
(offset+1), 1, ENC_BIG_ENDIAN);
if (attr_length < 4)
break;
xmcp_service_port = tvb_get_ntohs(tvb, (offset+2));
xmcp_it_service_port = proto_tree_add_item(attr_tree,
xmcp_attr_servtrans_port,
tvb, (offset+2), 2, ENC_BIG_ENDIAN);
/* If we now know both port and protocol number, fill in the port name */
if (xmcp_service_protocol != -1) {
add_xmcp_port_name();
}
switch (tvb_get_guint8(tvb, (offset+1))) {
case 0x01: /* IPv4 */
if (attr_length != 8) {
expert_add_info_format(pinfo, attr_tree, &ei_xmcp_attr_length_bad, "Malformed IPv4 address");
} else {
proto_tree_add_item(attr_tree, xmcp_attr_servtrans_ipv4, tvb,
(offset+4), 4, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %s:%u", tvb_ip_to_str(tvb, offset+4),
tvb_get_ntohs(tvb, (offset+2)));
}
break;
case 0x02: /* IPv6 */
if (attr_length != 20) {
expert_add_info_format(pinfo, attr_tree, &ei_xmcp_attr_length_bad, "Malformed IPv6 address");
} else {
proto_tree_add_item(attr_tree, xmcp_attr_servtrans_ipv6, tvb,
(offset+4), 16, ENC_NA);
proto_item_append_text(attr_tree, ": [%s]:%u", tvb_ip6_to_str(tvb, (offset+4)),
tvb_get_ntohs(tvb, (offset+2)));
}
break;
default:
expert_add_info(pinfo, attr_tree, &ei_xmcp_xmcp_attr_servtrans_unknown);
break;
}
break;
case XMCP_SERVICE_PROTOCOL:
/* Three bytes of padding followed by a 1-byte protocol number */
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_reserved, tvb, offset, 3, ENC_NA);
proto_tree_add_item(attr_tree, xmcp_attr_service_protocol, tvb,
(offset+3), 1, ENC_BIG_ENDIAN);
xmcp_service_protocol = tvb_get_guint8(tvb, (offset+3));
proto_item_append_text(attr_tree, ": %u (%s)", xmcp_service_protocol,
val_to_str_ext_const(xmcp_service_protocol,
&ipproto_val_ext, "Unknown"));
/* If we now know both port and protocol number, fill in the port name */
if (xmcp_service_port != -1 && xmcp_it_service_port != NULL) {
add_xmcp_port_name();
}
break;
case XMCP_FLAGS:
/* Flags is a series of type-value pairs */
if (attr_length % 4 != 0) {
expert_add_info_format(pinfo, attr_tree, &ei_xmcp_attr_length_bad, "Malformed Flags - length not divisible by 4");
}
{
guint16 flag_type, flag_value, current_offset = offset;
proto_item *ti;
proto_tree *flag_tree;
while ((current_offset-offset)+3 < attr_length) {
flag_type = tvb_get_ntohs(tvb, (current_offset));
flag_value = tvb_get_ntohs(tvb, (current_offset+2));
ti = proto_tree_add_none_format(attr_tree, xmcp_attr_flag, tvb,
current_offset, 4,
"Flag: %s:",
val_to_str_const(flag_type, flag_types,
"Unknown"));
flag_tree = proto_item_add_subtree(ti, ett_xmcp_attr_flag);
proto_tree_add_item(flag_tree, xmcp_attr_flag_type, tvb,
current_offset, 2, ENC_BIG_ENDIAN);
current_offset += 2;
switch (flag_type) {
case XMCP_FLAG_REMOVAL_REASON:
proto_tree_add_item(flag_tree, xmcp_attr_flag_removal_reason_reserved,
tvb, current_offset, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(flag_tree,
xmcp_attr_flag_removal_reason_network_withdraw,
tvb, current_offset, 2, ENC_BIG_ENDIAN);
if (flag_value & XMCP_REMOVAL_REASON_NETWORK_WITHDRAW) {
proto_item_append_text(flag_tree, " (network withdraw)");
}
if (!flag_value) {
proto_item_append_text(flag_tree, " (source withdraw)");
}
break;
case XMCP_FLAG_TRUST:
proto_tree_add_item(flag_tree, xmcp_attr_flag_trust, tvb,
current_offset, 2, ENC_BIG_ENDIAN);
proto_item_append_text(flag_tree, " %s",
val_to_str_const(flag_value, flag_trust_values,
"Unknown"));
break;
case XMCP_FLAG_SERVICE_VISIBILITY:
proto_tree_add_item(flag_tree, xmcp_attr_flag_visibility_reserved,
tvb, current_offset, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(flag_tree,
xmcp_attr_flag_visibility_unauthenticated,
tvb, current_offset, 2, ENC_BIG_ENDIAN);
if (flag_value & XMCP_SERVICE_VISIBILITY_UNAUTHENTICATED) {
proto_item_append_text(flag_tree,
" (visible to unauthenticated clients)");
}
if (!flag_value) {
proto_item_append_text(flag_tree, " (default)");
}
break;
default:
proto_tree_add_item(flag_tree, xmcp_attr_flag_value, tvb,
current_offset, 2, ENC_BIG_ENDIAN);
proto_item_append_text(flag_tree, " 0x%04x", flag_value);
break;
}
current_offset += 2;
}
}
break;
case XMCP_SERVICE_VERSION:
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_service_version, tvb, offset,
4, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %u", tvb_get_ntohl(tvb, offset));
break;
case XMCP_SERVICE_DATA:
proto_tree_add_item(attr_tree, xmcp_attr_service_data, tvb, offset,
attr_length, ENC_NA);
if (attr_length > 0) {
tvbuff_t *next_tvb;
guint8 *test_string, *tok;
next_tvb = tvb_new_subset_length(tvb, offset, attr_length);
/*
* Service-Data is usually (but not always) plain text, specifically XML.
* If it "looks like" XML (begins with optional whitespace followed by
* a '<'), try XML.
* Otherwise, try plain-text.
*/
test_string = tvb_get_string_enc(wmem_packet_scope(), next_tvb, 0, (attr_length < 32 ?
attr_length : 32), ENC_ASCII);
tok = strtok(test_string, " \t\r\n");
if (tok && tok[0] == '<') {
/* Looks like XML */
dissector_try_string(media_type_dissector_table, "application/xml",
next_tvb, pinfo, attr_tree, NULL);
} else {
/* Try plain text */
dissector_try_string(media_type_dissector_table, "text/plain",
next_tvb, pinfo, attr_tree, NULL);
}
}
break;
case XMCP_SUBSCRIPTION_ID:
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_subscription_id, tvb, offset,
4, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %u", tvb_get_ntohl(tvb, offset));
col_append_fstr(pinfo->cinfo, COL_INFO, ", subscription %u",
tvb_get_ntohl(tvb, offset));
break;
case XMCP_SERVICE_REMOVED_REASON:
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_service_removed_reason, tvb,
offset, 4, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %s",
val_to_str_const(tvb_get_ntohl(tvb, offset),
service_removed_reasons,
"Unknown"));
break;
case XMCP_DOMAIN:
if (attr_length < 4)
break;
proto_tree_add_item(attr_tree, xmcp_attr_domain, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_item_append_text(attr_tree, ": %u", tvb_get_ntohl(tvb, offset));
break;
default:
proto_tree_add_item(attr_tree, xmcp_attr_value, tvb, offset,
attr_length, ENC_NA);
expert_add_info(pinfo, attr_tree, &ei_xmcp_attr_type_unknown);
break;
}
if (attr_length % 4 != 0) {
proto_tree_add_item(attr_tree, xmcp_attr_padding, tvb, (offset+attr_length),
(4 - (attr_length % 4)), ENC_NA);
}
if (attr_length < get_xmcp_attr_min_len(attr_type)) {
expert_add_info_format(pinfo, attr_tree, &ei_xmcp_attr_length_bad, "Length less than minimum for this attribute type");
} else if (attr_length > get_xmcp_attr_max_len(attr_type)) {
expert_add_info_format(pinfo, attr_tree, &ei_xmcp_attr_length_bad, "Length exceeds maximum for this attribute type");
}
}
static int
dissect_xmcp_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
{
guint16 msg_type, msg_length;
proto_item *ti = NULL;
proto_tree *xmcp_tree, *attr_all_tree, *attr_tree;
guint16 offset, attr_type, attr_length;
/* For request/response association */
guint32 transaction_id[3];
wmem_tree_key_t transaction_id_key[2];
conversation_t *conversation;
xmcp_conv_info_t *xmcp_conv_info;
xmcp_transaction_t *xmcp_trans;
if (tvb_reported_length(tvb) < XMCP_HDR_LEN) {
return 0;
}
/* Check for valid message type field */
msg_type = tvb_get_ntohs(tvb, 0);
if (msg_type & XMCP_TYPE_RESERVED) { /* First 2 bits must be 0 */
return 0;
}
/* Check for valid "magic cookie" field */
if (tvb_get_ntohl(tvb, 4) != XMCP_MAGIC_COOKIE) {
return 0;
}
col_set_str(pinfo->cinfo, COL_PROTOCOL, "XMCP");
/* Clear out stuff in the info column */
col_clear(pinfo->cinfo, COL_INFO);
/* As in STUN, the first 2 bytes contain the message class and method */
xmcp_msg_type_class = ((msg_type & XMCP_TYPE_CLASS) >> 4);
xmcp_msg_type_method = (msg_type & XMCP_TYPE_METHOD);
col_add_fstr(pinfo->cinfo, COL_INFO, "%s %s",
val_to_str_const(xmcp_msg_type_method, methods, "Unknown"),
val_to_str_const(xmcp_msg_type_class, classes, "Unknown"));
/* Get the transaction ID */
transaction_id[0] = tvb_get_ntohl(tvb, 8);
transaction_id[1] = tvb_get_ntohl(tvb, 12);
transaction_id[2] = tvb_get_ntohl(tvb, 16);
transaction_id_key[0].length = 3;
transaction_id_key[0].key = transaction_id;
transaction_id_key[1].length = 0;
transaction_id_key[1].key = NULL;
conversation = find_or_create_conversation(pinfo);
/* Do we already have XMCP state for this conversation? */
xmcp_conv_info = (xmcp_conv_info_t *)conversation_get_proto_data(conversation, proto_xmcp);
if (!xmcp_conv_info) {
xmcp_conv_info = wmem_new(wmem_file_scope(), xmcp_conv_info_t);
xmcp_conv_info->transaction_pdus = wmem_tree_new(wmem_file_scope());
conversation_add_proto_data(conversation, proto_xmcp, xmcp_conv_info);
}
/* Find existing transaction entry or create a new one */
xmcp_trans = (xmcp_transaction_t *)wmem_tree_lookup32_array(xmcp_conv_info->transaction_pdus,
transaction_id_key);
if (!xmcp_trans) {
xmcp_trans = wmem_new(wmem_file_scope(), xmcp_transaction_t);
xmcp_trans->request_frame = 0;
xmcp_trans->response_frame = 0;
xmcp_trans->request_time = pinfo->abs_ts;
xmcp_trans->request_is_keepalive = FALSE;
wmem_tree_insert32_array(xmcp_conv_info->transaction_pdus,
transaction_id_key, (void *)xmcp_trans);
}
/* Update transaction entry */
if (!pinfo->fd->flags.visited) {
if (xmcp_msg_type_class == XMCP_CLASS_REQUEST) {
if (xmcp_trans->request_frame == 0) {
xmcp_trans->request_frame = pinfo->num;
xmcp_trans->request_time = pinfo->abs_ts;
}
} else if (xmcp_msg_type_class != XMCP_CLASS_RESERVED) {
if (xmcp_trans->response_frame == 0) {
xmcp_trans->response_frame = pinfo->num;
}
}
}
ti = proto_tree_add_item(tree, proto_xmcp, tvb, 0, -1, ENC_NA);
xmcp_tree = proto_item_add_subtree(ti, ett_xmcp);
ti = proto_tree_add_bitmask(xmcp_tree, tvb, 0, hf_xmcp_type, ett_xmcp_type,
xmcp_type_fields, ENC_BIG_ENDIAN);
if (msg_type & XMCP_TYPE_RESERVED) {
expert_add_info(pinfo, ti, &ei_xmcp_type_reserved_not_zero);
}
if (xmcp_msg_type_class == XMCP_CLASS_RESERVED) {
expert_add_info(pinfo, ti, &ei_xmcp_message_class_reserved);
} else if (xmcp_msg_type_class == XMCP_CLASS_RESPONSE_ERROR) {
expert_add_info(pinfo, ti, &ei_xmcp_error_response);
}
if (xmcp_msg_type_method < 0x001 || xmcp_msg_type_method > 0x00b) {
expert_add_info(pinfo, ti, &ei_xmcp_msg_type_method_reserved);
}
/*
* Some forms of XMCP overload the Register method for Keepalive packets
* rather than using a separate Keepalive method. We'll try to determine from
* the message contents whether this message is a Keepalive. Initialize first.
*/
xmcp_msg_is_keepalive = (xmcp_trans->request_is_keepalive ||
(xmcp_msg_type_method == XMCP_METHOD_KEEPALIVE));
/* After the class/method, we have a 2 byte length...*/
ti = proto_tree_add_item(xmcp_tree, hf_xmcp_length, tvb, 2, 2, ENC_BIG_ENDIAN);
msg_length = tvb_get_ntohs(tvb, 2);
if ((guint)(msg_length + XMCP_HDR_LEN) > tvb_reported_length(tvb)) {
expert_add_info_format(pinfo, ti, &ei_xmcp_length_bad, "XMCP message length (%u-byte header + %u) exceeds packet length (%u)", XMCP_HDR_LEN, msg_length, tvb_reported_length(tvb));
return tvb_captured_length(tvb);
}
/* ...a 4 byte magic cookie... */
ti = proto_tree_add_item(xmcp_tree, hf_xmcp_cookie, tvb, 4, 4, ENC_BIG_ENDIAN);
if (tvb_get_ntohl(tvb, 4) != XMCP_MAGIC_COOKIE) {
expert_add_info(pinfo, ti, &ei_xmcp_magic_cookie_incorrect);
}
/* ...and a 12-byte transaction id */
ti = proto_tree_add_item(xmcp_tree, hf_xmcp_id, tvb, 8, 12, ENC_NA);
/* Print state tracking in the tree */
if (xmcp_msg_type_class == XMCP_CLASS_REQUEST) {
if (xmcp_trans->response_frame) {
ti = proto_tree_add_uint(xmcp_tree, hf_xmcp_response_in, tvb, 0, 0,
xmcp_trans->response_frame);
PROTO_ITEM_SET_GENERATED(ti);
}
} else if (xmcp_msg_type_class != XMCP_CLASS_RESERVED) {
if (xmcp_trans->request_frame) {
nstime_t ns;
ti = proto_tree_add_uint(xmcp_tree, hf_xmcp_response_to, tvb, 0, 0,
xmcp_trans->request_frame);
PROTO_ITEM_SET_GENERATED(ti);
nstime_delta(&ns, &pinfo->abs_ts, &xmcp_trans->request_time);
ti = proto_tree_add_time(xmcp_tree, hf_xmcp_time, tvb, 0, 0, &ns);
PROTO_ITEM_SET_GENERATED(ti);
} else {
/* This is a response, but we don't know about a request for this response? */
expert_add_info(pinfo, ti, &ei_xmcp_response_without_request);
}
}
xmcp_service_protocol = -1;
xmcp_service_port = -1;
xmcp_it_service_port = NULL;
/* The header is then followed by "msg_length" bytes of TLV attributes */
if (msg_length > 0) {
ti = proto_tree_add_item(xmcp_tree, hf_xmcp_attributes, tvb,
XMCP_HDR_LEN, msg_length, ENC_NA);
attr_all_tree = proto_item_add_subtree(ti, ett_xmcp_attr_all);
offset = XMCP_HDR_LEN;
while (offset < (msg_length + XMCP_HDR_LEN)) {
/* Get type/length of next TLV */
attr_type = tvb_get_ntohs(tvb, offset);
attr_length = tvb_get_ntohs(tvb, offset+2);
ti = proto_tree_add_none_format(attr_all_tree, hf_xmcp_attr, tvb, offset,
(XMCP_ATTR_HDR_LEN +
get_xmcp_attr_padded_len(attr_length)),
"%s, length %u",
val_to_str_const(attr_type, attributes,
"Unknown"),
attr_length);
/* Add subtree for this TLV */
attr_tree = proto_item_add_subtree(ti, ett_xmcp_attr);
proto_tree_add_item(attr_tree, xmcp_attr_type, tvb,
offset, 2, ENC_BIG_ENDIAN);
offset += 2;
ti = proto_tree_add_item(attr_tree, xmcp_attr_length, tvb,
offset, 2, ENC_BIG_ENDIAN);
offset += 2;
if ((offset + attr_length) > (XMCP_HDR_LEN + msg_length)) {
proto_item_append_text(ti, " (bogus, exceeds message length)");
expert_add_info_format(pinfo, attr_tree, &ei_xmcp_attr_length_bad, "Attribute length exceeds message length");
break;
}
decode_xmcp_attr_value(attr_tree, attr_type, attr_length, tvb,
offset, pinfo);
offset += get_xmcp_attr_padded_len(attr_length);
}
}
/*
* Flag this message as a keepalive if the attribute analysis
* suggested that it is one
*/
if (xmcp_msg_is_keepalive) {
ti = proto_tree_add_none_format(xmcp_tree, hf_xmcp_msg_is_keepalive, tvb,
0, 0, "This is a Keepalive message");
PROTO_ITEM_SET_GENERATED(ti);
if (xmcp_msg_type_method != XMCP_METHOD_KEEPALIVE) {
col_prepend_fstr(pinfo->cinfo, COL_INFO, "[Keepalive] ");
}
if (xmcp_msg_type_class == XMCP_CLASS_REQUEST) {
xmcp_trans->request_is_keepalive = TRUE;
}
} else if (xmcp_msg_type_class == XMCP_CLASS_REQUEST ||
xmcp_msg_type_class == XMCP_CLASS_RESPONSE_SUCCESS) {
if (xmcp_msg_type_method == XMCP_METHOD_REGISTER) {
expert_add_info_format(pinfo, xmcp_tree, &ei_xmcp_new_session, "New session - Register %s", val_to_str_const(xmcp_msg_type_class, classes, ""));
} else if (xmcp_msg_type_method == XMCP_METHOD_UNREGISTER ||
xmcp_msg_type_method == XMCP_METHOD_REG_REVOKE) {
expert_add_info_format(pinfo, xmcp_tree, &ei_xmcp_session_termination, "Session termination - %s %s", val_to_str_const(xmcp_msg_type_method, methods, ""), val_to_str_const(xmcp_msg_type_class, classes, ""));
}
}
return tvb_captured_length(tvb);
}
static int
dissect_xmcp_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data)
{
tcp_dissect_pdus(tvb, pinfo, tree, TRUE, XMCP_HDR_LEN,
get_xmcp_message_len, dissect_xmcp_message, data);
return tvb_captured_length(tvb);
}
static gboolean
dissect_xmcp_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
{
/* See if this looks like a real XMCP packet */
if (tvb_captured_length(tvb) < XMCP_HDR_LEN) {
return FALSE;
}
/* Check for valid message type field */
if (tvb_get_ntohs(tvb, 0) & XMCP_TYPE_RESERVED) { /* First 2 bits must be 0 */
return FALSE;
}
/* Check for valid "magic cookie" field */
if (tvb_get_ntohl(tvb, 4) != XMCP_MAGIC_COOKIE) {
return FALSE;
}
/* Good enough to consider a match! */
tcp_dissect_pdus(tvb, pinfo, tree, TRUE, XMCP_HDR_LEN,
get_xmcp_message_len, dissect_xmcp_message, data);
return TRUE;
}
void
proto_register_xmcp(void)
{
static hf_register_info hf[] = {
{ &hf_xmcp_type,
{ "Message Type", "xmcp.type",
FT_UINT16, BASE_HEX, NULL, 0, NULL, HFILL }
},
{ &hf_xmcp_type_reserved,
{ "Reserved", "xmcp.type.reserved",
FT_UINT16, BASE_HEX, NULL, XMCP_TYPE_RESERVED, NULL, HFILL }
},
{ &hf_xmcp_type_class,
{ "Class", "xmcp.type.class",
FT_UINT16, BASE_HEX, VALS(classes), XMCP_TYPE_CLASS, NULL, HFILL }
},
{ &hf_xmcp_type_method,
{ "Method", "xmcp.type.method",
FT_UINT16, BASE_HEX, VALS(methods), XMCP_TYPE_METHOD, NULL, HFILL }
},
{ &hf_xmcp_msg_is_keepalive,
{ "Message is Keepalive", "xmcp.analysis.keepalive",
FT_NONE, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &hf_xmcp_length,
{ "Message Length", "xmcp.length",
FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &hf_xmcp_cookie,
{ "XMCP Magic Cookie", "xmcp.cookie",
FT_UINT32, BASE_HEX, NULL, 0x0, NULL, HFILL }
},
{ &hf_xmcp_id,
{ "Transaction ID", "xmcp.id",
FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &hf_xmcp_response_in,
{ "Response In", "xmcp.response-in",
FT_FRAMENUM, BASE_NONE, NULL, 0x0,
"The response to this XMCP request is in this frame", HFILL }
},
{ &hf_xmcp_response_to,
{ "Response To", "xmcp.response-to",
FT_FRAMENUM, BASE_NONE, NULL, 0x0,
"This is a response to the XMCP request in this frame", HFILL }
},
{ &hf_xmcp_time,
{ "Elapsed Time", "xmcp.time",
FT_RELATIVE_TIME, BASE_NONE, NULL, 0x0,
"The time between the Request and the Response", HFILL }
},
{ &hf_xmcp_attributes,
{ "Attributes", "xmcp.attributes",
FT_NONE, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &hf_xmcp_attr,
{ "Attribute", "xmcp.attr",
FT_NONE, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_type,
{ "Attribute Type", "xmcp.attr.type",
FT_UINT16, BASE_HEX, VALS(attributes), 0x0, NULL, HFILL }
},
{ &xmcp_attr_length,
{ "Attribute Length", "xmcp.attr.length",
FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_value,
{ "Attribute Value", "xmcp.attr.value",
FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL}
},
{ &xmcp_attr_padding,
{ "Padding", "xmcp.attr.padding",
FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_reserved,
{ "Reserved", "xmcp.attr.reserved",
FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_username,
{ "Username", "xmcp.attr.username",
FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_message_integrity,
{ "Message-Integrity", "xmcp.attr.hmac",
FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_error_reserved,
{ "Reserved", "xmcp.attr.error.reserved",
FT_UINT24, BASE_HEX, NULL, 0xFFFFF8, NULL, HFILL }
},
{ &xmcp_attr_error_class,
{ "Error Class", "xmcp.attr.error.class",
FT_UINT24, BASE_DEC, NULL, 0x000007, NULL, HFILL}
},
{ &xmcp_attr_error_number,
{ "Error Number", "xmcp.attr.error.number",
FT_UINT8, BASE_DEC, NULL, 0x0, NULL, HFILL}
},
{ &xmcp_attr_error_code,
{ "Error Code", "xmcp.attr.error",
FT_UINT16, BASE_DEC, VALS(error_codes), 0x0, NULL, HFILL}
},
{ &xmcp_attr_error_reason,
{ "Error Reason Phrase", "xmcp.attr.error.reason",
FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL}
},
{ &xmcp_attr_realm,
{ "Realm", "xmcp.attr.realm",
FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_nonce,
{ "Nonce", "xmcp.attr.nonce",
FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_client_name,
{ "Client-Name", "xmcp.attr.client-name",
FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_client_handle,
{ "Client-Handle", "xmcp.attr.client-handle",
FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_version_major,
{ "Protocol Major Version", "xmcp.attr.version.major",
FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_version_minor,
{ "Protocol Minor Version", "xmcp.attr.version.minor",
FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_page_size,
{ "Page-Size", "xmcp.attr.page-size",
FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_client_label,
{ "Client-Label", "xmcp.attr.client-label",
FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_keepalive,
{ "Keepalive", "xmcp.attr.keepalive",
FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_serv_service,
{ "Service ID", "xmcp.attr.service.service",
FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_serv_subservice,
{ "Subservice ID", "xmcp.attr.service.subservice",
FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_serv_instance,
{ "Instance ID", "xmcp.attr.service.instance",
FT_GUID, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_servtrans_family,
{ "Family", "xmcp.attr.service.transport.family",
FT_UINT8, BASE_HEX, VALS(address_families), 0x0, NULL, HFILL }
},
{ &xmcp_attr_servtrans_port,
{ "Port", "xmcp.attr.service.transport.port",
FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_servtrans_ipv4,
{ "IPv4 Address", "xmcp.attr.service.transport.ipv4",
FT_IPv4, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_servtrans_ipv6,
{ "IPv6 Address", "xmcp.attr.service.transport.ipv6",
FT_IPv6, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_service_protocol,
{ "Protocol", "xmcp.attr.service.transport.protocol",
FT_UINT8, BASE_DEC|BASE_EXT_STRING, &ipproto_val_ext,
0x0, NULL, HFILL }
},
{ &xmcp_attr_flag,
{ "Flag", "xmcp.attr.flag",
FT_NONE, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_flag_type,
{ "Flag Type", "xmcp.attr.flag.type",
FT_UINT16, BASE_HEX, VALS(flag_types), 0x0, NULL, HFILL }
},
{ &xmcp_attr_flag_value,
{ "Flag Value", "xmcp.attr.flag.value",
FT_UINT16, BASE_HEX, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_flag_removal_reason_network_withdraw,
{ "Network Withdraw",
"xmcp.attr.flag.removal-reason.network-withdraw",
FT_BOOLEAN, 16, TFS(&tfs_true_false),
XMCP_REMOVAL_REASON_NETWORK_WITHDRAW, NULL, HFILL }
},
{ &xmcp_attr_flag_removal_reason_reserved,
{ "Reserved", "xmcp.attr.flag.removal-reason.reserved",
FT_UINT16, BASE_HEX, NULL, XMCP_REMOVAL_REASON_RESERVED, NULL, HFILL }
},
{ &xmcp_attr_flag_trust,
{ "Trust", "xmcp.attr.flag.trust",
FT_UINT16, BASE_HEX, VALS(flag_trust_values), 0x0, NULL, HFILL }
},
{ &xmcp_attr_flag_visibility_unauthenticated,
{ "Visible to Unauthenticated Clients",
"xmcp.attr.flag.service-visibility.unauthenticated",
FT_BOOLEAN, 16, TFS(&tfs_yes_no),
XMCP_SERVICE_VISIBILITY_UNAUTHENTICATED, NULL, HFILL }
},
{ &xmcp_attr_flag_visibility_reserved,
{ "Reserved", "xmcp.attr.flag.service-visibility.reserved",
FT_UINT16, BASE_HEX, NULL,
XMCP_SERVICE_VISIBILITY_RESERVED, NULL, HFILL }
},
{ &xmcp_attr_service_version,
{ "Service Version", "xmcp.attr.service.version",
FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_service_data,
{ "Service Data", "xmcp.attr.service.data",
FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_subscription_id,
{ "Subscription ID", "xmcp.attr.subscription-id",
FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
},
{ &xmcp_attr_service_removed_reason,
{ "Service Removed Reason", "xmcp.attr.service-removed-reason",
FT_UINT32, BASE_DEC, VALS(service_removed_reasons), 0x0, NULL, HFILL }
},
{ &xmcp_attr_domain,
{ "Domain", "xmcp.attr.domain",
FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
}
};
/* Setup protocol subtree array */
static gint *ett[] = {
&ett_xmcp,
&ett_xmcp_type,
&ett_xmcp_attr_all,
&ett_xmcp_attr,
&ett_xmcp_attr_flag
};
static ei_register_info ei[] = {
{ &ei_xmcp_data_following_message_integrity, { "xmcp.data_following_message_integrity", PI_PROTOCOL, PI_WARN, "Data following message-integrity", EXPFILL }},
{ &ei_xmcp_attr_error_number_out_of_range, { "xmcp.attr.error.number.out_of_range", PI_PROTOCOL, PI_WARN, "Error number out of 0-99 range", EXPFILL }},
{ &ei_xmcp_attr_error_code_unusual, { "xmcp.attr.error.unusual", PI_RESPONSE_CODE, PI_WARN, "Unusual error code", EXPFILL }},
{ &ei_xmcp_attr_realm_incorrect, { "xmcp.attr.realm.incorrect", PI_PROTOCOL, PI_WARN, "Incorrect Realm", EXPFILL }},
{ &ei_xmcp_attr_length_bad, { "xmcp.attr.length.bad", PI_PROTOCOL, PI_WARN, "Malformed IPv4 address", EXPFILL }},
{ &ei_xmcp_xmcp_attr_servtrans_unknown, { "xmcp.attr.service.transport.unknown", PI_PROTOCOL, PI_WARN, "Unknown transport type", EXPFILL }},
{ &ei_xmcp_attr_type_unknown, { "xmcp.attr.type.unknown", PI_PROTOCOL, PI_NOTE, "Unrecognized attribute type", EXPFILL }},
{ &ei_xmcp_type_reserved_not_zero, { "xmcp.type.reserved.not_zero", PI_PROTOCOL, PI_WARN, "First two bits not zero", EXPFILL }},
{ &ei_xmcp_message_class_reserved, { "xmcp.message_class.reserved", PI_PROTOCOL, PI_WARN, "Reserved message class", EXPFILL }},
{ &ei_xmcp_error_response, { "xmcp.error_response", PI_RESPONSE_CODE, PI_NOTE, "Error Response", EXPFILL }},
{ &ei_xmcp_msg_type_method_reserved, { "xmcp.msg_type_method.reserved", PI_PROTOCOL, PI_WARN, "Reserved message method", EXPFILL }},
{ &ei_xmcp_length_bad, { "xmcp.length.bad", PI_PROTOCOL, PI_ERROR, "XMCP message length exceeds packet length", EXPFILL }},
{ &ei_xmcp_magic_cookie_incorrect, { "xmcp.cookie.incorrect", PI_PROTOCOL, PI_WARN, "Magic cookie not correct for XMCP", EXPFILL }},
{ &ei_xmcp_response_without_request, { "xmcp.response_without_request", PI_SEQUENCE, PI_NOTE, "Response without corresponding request", EXPFILL }},
{ &ei_xmcp_new_session, { "xmcp.new_session", PI_SEQUENCE, PI_CHAT, "New session - Register", EXPFILL }},
{ &ei_xmcp_session_termination, { "xmcp.session_termination", PI_SEQUENCE, PI_CHAT, "Session termination", EXPFILL }},
};
expert_module_t* expert_xmcp;
proto_xmcp = proto_register_protocol("eXtensible Messaging Client Protocol", "XMCP", "xmcp");
proto_register_field_array(proto_xmcp, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
expert_xmcp = expert_register_protocol(proto_xmcp);
expert_register_field_array(expert_xmcp, ei, array_length(ei));
}
void
proto_reg_handoff_xmcp(void)
{
dissector_handle_t xmcp_tcp_handle;
xmcp_tcp_handle = create_dissector_handle(dissect_xmcp_tcp, proto_xmcp);
heur_dissector_add("tcp", dissect_xmcp_heur, "XMCP over TCP", "xmcp_tcp", proto_xmcp, HEURISTIC_ENABLE);
media_type_dissector_table = find_dissector_table("media_type");
dissector_add_uint_with_preference("tcp.port", TCP_PORT_XMCP, xmcp_tcp_handle);
}
/*
* Editor modelines - http://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 2
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* vi: set shiftwidth=2 tabstop=8 expandtab:
* :indentSize=2:tabSize=8:noTabs=true:
*/