/* packet-pana.c * Routines for Protocol for carrying Authentication for Network Access dissection * Copyright 2006, Peter Racz * * $Id$ * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* This protocol implements PANA as of the internet draft * draft-ietf-pana-pana-18 which is a workitem of the ietf workgroup * internet area/pana */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include #include #include #include #define PANA_UDP_PORT 3001 #define MIN_AVP_SIZE 8 #define PANA_FLAG_R 0x8000 #define PANA_FLAG_S 0x4000 #define PANA_FLAG_C 0x2000 #define PANA_FLAG_A 0x1000 #define PANA_FLAG_P 0x0800 #define PANA_FLAG_I 0x0400 #define PANA_FLAG_RES6 0x0200 #define PANA_FLAG_RES7 0x0100 #define PANA_FLAG_RES8 0x0080 #define PANA_FLAG_RES9 0x0040 #define PANA_FLAG_RES10 0x0020 #define PANA_FLAG_RES11 0x0010 #define PANA_FLAG_RES12 0x0008 #define PANA_FLAG_RES13 0x0004 #define PANA_FLAG_RES14 0x0002 #define PANA_FLAG_RES15 0x0001 #define PANA_FLAG_RES 0x0fff #define PANA_AVP_FLAG_V 0x8000 #define PANA_AVP_FLAG_RES2 0x2000 #define PANA_AVP_FLAG_RES3 0x1000 #define PANA_AVP_FLAG_RES4 0x0800 #define PANA_AVP_FLAG_RES5 0x0400 #define PANA_AVP_FLAG_RES6 0x0200 #define PANA_AVP_FLAG_RES7 0x0100 #define PANA_AVP_FLAG_RES8 0x0080 #define PANA_AVP_FLAG_RES9 0x0040 #define PANA_AVP_FLAG_RES10 0x0020 #define PANA_AVP_FLAG_RES11 0x0010 #define PANA_AVP_FLAG_RES12 0x0008 #define PANA_AVP_FLAG_RES13 0x0004 #define PANA_AVP_FLAG_RES14 0x0002 #define PANA_AVP_FLAG_RES15 0x0001 #define PANA_AVP_FLAG_RES 0x3fff /* Initialize the protocol and registered fields */ static int proto_pana = -1; static int hf_pana_reserved_type = -1; static int hf_pana_length_type = -1; static int hf_pana_msg_type = -1; static int hf_pana_session_id = -1; static int hf_pana_seqnumber = -1; static int hf_pana_response_in = -1; static int hf_pana_response_to = -1; static int hf_pana_time = -1; static dissector_handle_t pana_handle = NULL; static dissector_handle_t eap_handle = NULL; static int hf_pana_flags = -1; static int hf_pana_flag_r = -1; static int hf_pana_flag_s = -1; static int hf_pana_flag_c = -1; static int hf_pana_flag_a = -1; static int hf_pana_flag_p = -1; static int hf_pana_flag_i = -1; static int hf_pana_avp_code = -1; static int hf_pana_avp_length = -1; static int hf_pana_avp_flags = -1; static int hf_pana_avp_flag_v = -1; static int hf_pana_avp_reserved = -1; static int hf_pana_avp_vendorid = -1; static int hf_pana_avp_data_uint64 = -1; static int hf_pana_avp_data_int64 = -1; static int hf_pana_avp_data_uint32 = -1; static int hf_pana_avp_data_int32 = -1; static int hf_pana_avp_data_bytes = -1; static int hf_pana_avp_data_string = -1; static int hf_pana_avp_data_enumerated = -1; static const value_string msg_type_names[] = { { 1, "PANA-Client-Initiation" }, { 2, "PANA-Auth" }, { 3, "PANA-Termination" }, { 4, "PANA-Notification" }, { 0, NULL } }; static const value_string msg_subtype_names[] = { { 0x0000, "Answer" }, { 0x8000, "Request" }, { 0, NULL } }; static const value_string avp_code_names[] = { { 1, "AUTH AVP" }, { 2, "EAP-Payload AVP" }, { 3, "Integrity-Algorithm AVP" }, { 4, "Key-Id AVP" }, { 5, "Nonce AVP" }, { 6, "PRF-Algorithm AVP" }, { 7, "Result-Code" }, { 8, "Session-Lifetime" }, { 9, "Termination-Cause" }, { 0, NULL } }; static const value_string avp_resultcode_names[] = { { 0, "PANA_SUCCESS" }, { 1, "PANA_AUTHENTICATION_REJECTED" }, { 2, "PANA_AUTHORIZATION_REJECTED" }, { 0, NULL } }; typedef enum { PANA_OCTET_STRING = 1, PANA_INTEGER32, PANA_INTEGER64, PANA_UNSIGNED32, PANA_UNSIGNED64, PANA_FLOAT32, PANA_FLOAT64, PANA_FLOAT128, PANA_GROUPED, PANA_ENUMERATED, PANA_UTF8STRING, PANA_EAP, PANA_RESULT_CODE } pana_avp_types; static const value_string avp_type_names[]={ { PANA_OCTET_STRING, "OctetString" }, { PANA_INTEGER32, "Integer32" }, { PANA_INTEGER64, "Integer64" }, { PANA_UNSIGNED32, "Unsigned32" }, { PANA_UNSIGNED64, "Unsigned64" }, { PANA_FLOAT32, "Float32" }, { PANA_FLOAT64, "Float64" }, { PANA_FLOAT128, "Float128" }, { PANA_GROUPED, "Grouped" }, { PANA_ENUMERATED, "Enumerated" }, { PANA_UTF8STRING, "UTF8String" }, { PANA_EAP, "OctetString" }, { PANA_RESULT_CODE, "Unsigned32" }, { 0, NULL } }; /* Initialize the subtree pointers */ static gint ett_pana = -1; static gint ett_pana_flags = -1; static gint ett_pana_avp = -1; static gint ett_pana_avp_info = -1; static gint ett_pana_avp_flags = -1; typedef struct _pana_transaction_t { guint32 req_frame; guint32 rep_frame; nstime_t req_time; } pana_transaction_t; typedef struct _pana_conv_info_t { emem_tree_t *pdus; } pana_conv_info_t; /* * Function for the PANA flags dissector. */ static void dissect_pana_flags(proto_tree *parent_tree, tvbuff_t *tvb, int offset, guint16 flags) { proto_item *flags_item=NULL; proto_tree *flags_tree=NULL; if(!parent_tree) return; flags_item = proto_tree_add_uint(parent_tree, hf_pana_flags, tvb, offset, 2, flags); flags_tree = proto_item_add_subtree(flags_item, ett_pana_flags); proto_tree_add_boolean(flags_tree, hf_pana_flag_r, tvb, offset, 2, flags); if (flags & PANA_FLAG_R) proto_item_append_text(flags_item, ", Request"); else proto_item_append_text(flags_item, ", Answer"); proto_tree_add_boolean(flags_tree, hf_pana_flag_s, tvb, offset, 2, flags); if (flags & PANA_FLAG_S) proto_item_append_text(flags_item, ", S flag set"); proto_tree_add_boolean(flags_tree, hf_pana_flag_c, tvb, offset, 2, flags); if (flags & PANA_FLAG_C) proto_item_append_text(flags_item, ", C flag set"); proto_tree_add_boolean(flags_tree, hf_pana_flag_a, tvb, offset, 2, flags); if (flags & PANA_FLAG_A) proto_item_append_text(flags_item, ", A flag set"); proto_tree_add_boolean(flags_tree, hf_pana_flag_p, tvb, offset, 2, flags); if (flags & PANA_FLAG_P) proto_item_append_text(flags_item, ", P flag set"); proto_tree_add_boolean(flags_tree, hf_pana_flag_i, tvb, offset, 2, flags); if (flags & PANA_FLAG_I) proto_item_append_text(flags_item, ", I flag set"); } /* * Function for AVP flags dissector. */ static void dissect_pana_avp_flags(proto_tree *parent_tree, tvbuff_t *tvb, int offset, guint16 flags) { proto_item *avp_flags_item=NULL; proto_tree *avp_flags_tree=NULL; if(!parent_tree) return; avp_flags_item = proto_tree_add_uint(parent_tree, hf_pana_avp_flags, tvb, offset, 2, flags); avp_flags_tree = proto_item_add_subtree(avp_flags_item, ett_pana_avp_flags); proto_tree_add_boolean(avp_flags_tree, hf_pana_avp_flag_v, tvb, offset, 2, flags); if (flags & PANA_AVP_FLAG_V) proto_item_append_text(avp_flags_item, ", Vendor"); } /* * Map AVP code to AVP type */ static pana_avp_types pana_avp_get_type(guint16 avp_code, guint32 vendor_id) { if(vendor_id == 0) { switch(avp_code) { case 1: return PANA_OCTET_STRING; /* AUTH AVP */ case 2: return PANA_EAP; /* EAP-Payload AVP */ case 3: return PANA_UNSIGNED32; /* Integrity-Algorithm AVP */ case 4: return PANA_INTEGER32; /* Key-Id AVP */ case 5: return PANA_OCTET_STRING; /* Nonce AVP */ case 6: return PANA_UNSIGNED32; /* PRF-Algorithm AVP */ case 7: return PANA_RESULT_CODE; /* Result-Code AVP */ case 8: return PANA_UNSIGNED32; /* Session-Lifetime AVP */ case 9: return PANA_ENUMERATED; /* Termination-Cause AVP */ default: return PANA_OCTET_STRING; } } else { return PANA_OCTET_STRING; } } /* * Function for AVP dissector. */ static void dissect_avps(tvbuff_t *tvb, packet_info *pinfo, proto_tree *avp_tree) { gint offset; guint16 avp_code; guint16 avp_flags; guint16 avp_length; guint16 avp_type; guint32 vendor_id; guint16 avp_hdr_length; guint16 avp_data_length; guint16 padding; guint16 buffer_length; int bad_avp = FALSE; tvbuff_t *group_tvb; tvbuff_t *eap_tvb; proto_item *single_avp_item; proto_tree *single_avp_tree; proto_item *avp_group_item; proto_tree *avp_group_tree; proto_item *avp_eap_item; proto_tree *avp_eap_tree; offset = 0; buffer_length = 0; buffer_length = tvb_length(tvb); if (buffer_length <= 0) { proto_tree_add_text(avp_tree, tvb, offset, tvb_length(tvb), "No Attribute Value Pairs Found"); return; } /* Go through all AVPs */ while (buffer_length > 0 ) { /* Check buffer length */ if (buffer_length < MIN_AVP_SIZE) return; avp_code = tvb_get_ntohs(tvb, offset); avp_flags = tvb_get_ntohs(tvb, offset + 2); avp_length = tvb_get_ntohs(tvb, offset + 4); /* Check AVP flags for vendor specific AVP */ if (avp_flags & PANA_AVP_FLAG_V) { vendor_id = tvb_get_ntohl(tvb, 8); avp_hdr_length = 12; } else { vendor_id = 0; avp_hdr_length = 8; } /* Check AVP type */ avp_type = pana_avp_get_type(avp_code, vendor_id); /* AVP data length */ avp_data_length = avp_length - avp_hdr_length; /* Check AVP length */ if ((avp_length < MIN_AVP_SIZE) || (avp_length > buffer_length)) bad_avp = TRUE; /* Check AVP flags */ if (avp_flags & PANA_AVP_FLAG_RES) bad_avp = TRUE; /* Check padding */ padding = (4 - (avp_length % 4)) % 4; single_avp_item = proto_tree_add_text(avp_tree, tvb, offset, avp_length + padding, "%s (%s) length: %d bytes (%d padded bytes)", val_to_str(avp_code, avp_code_names, "Unknown (%d)"), val_to_str(avp_type, avp_type_names, "Unknown (%d)"), avp_length, avp_length + padding); single_avp_tree = proto_item_add_subtree(single_avp_item, ett_pana_avp_info); if (single_avp_tree != NULL) { /* AVP Code */ proto_tree_add_uint_format_value(single_avp_tree, hf_pana_avp_code, tvb, offset, 2, avp_code, "%s (%u)", val_to_str(avp_code, avp_code_names, "Unknown (%d)"), avp_code); offset += 2; /* AVP Flags */ dissect_pana_avp_flags(single_avp_tree, tvb, offset, avp_flags); offset += 2; /* AVP Length */ proto_tree_add_item(single_avp_tree, hf_pana_avp_length, tvb, offset, 2, FALSE); offset += 2; /* Reserved */ proto_tree_add_item(single_avp_tree, hf_pana_avp_reserved, tvb, offset, 2, FALSE); offset += 2; /* Vendor ID */ if (avp_flags & PANA_AVP_FLAG_V) { proto_tree_add_item(single_avp_tree, hf_pana_avp_vendorid, tvb, offset, 4, FALSE); offset += 4; } /* AVP Value */ switch(avp_type) { case PANA_GROUPED: { avp_group_item = proto_tree_add_text(single_avp_tree, tvb, offset, avp_data_length, "Grouped AVP"); avp_group_tree = proto_item_add_subtree(avp_group_item, ett_pana_avp); group_tvb = tvb_new_subset(tvb, offset, MIN(avp_data_length, tvb_length(tvb)-offset), avp_data_length); if (avp_group_tree != NULL) { dissect_avps(group_tvb, pinfo, avp_group_tree); } break; } case PANA_UTF8STRING: { const guint8 *data; data = tvb_get_ptr(tvb, offset, avp_data_length); proto_tree_add_string_format(single_avp_tree, hf_pana_avp_data_string, tvb, offset, avp_data_length, data, "UTF8String: %*.*s", avp_data_length, avp_data_length, data); break; } case PANA_OCTET_STRING: { proto_tree_add_bytes_format(single_avp_tree, hf_pana_avp_data_bytes, tvb, offset, avp_data_length, tvb_get_ptr(tvb, offset, avp_data_length), "Hex Data Highlighted Below"); break; } case PANA_INTEGER32: { proto_tree_add_item(single_avp_tree, hf_pana_avp_data_int32, tvb, offset, 4, FALSE); break; } case PANA_UNSIGNED32: { proto_tree_add_item(single_avp_tree, hf_pana_avp_data_uint32, tvb, offset, 4, FALSE); break; } case PANA_INTEGER64: { proto_tree_add_item(single_avp_tree, hf_pana_avp_data_int64, tvb, offset, 8, FALSE); break; } case PANA_UNSIGNED64: { proto_tree_add_item(single_avp_tree, hf_pana_avp_data_uint64, tvb, offset, 8, FALSE); break; } case PANA_ENUMERATED: { proto_tree_add_item(single_avp_tree, hf_pana_avp_data_enumerated, tvb, offset, 4, FALSE); break; } case PANA_RESULT_CODE: { proto_tree_add_text(single_avp_tree, tvb, offset, avp_data_length, "Value: %d (%s)", tvb_get_ntohl(tvb, offset), val_to_str(tvb_get_ntohs(tvb, offset), avp_code_names, "Unknown")); break; } case PANA_EAP: { avp_eap_item = proto_tree_add_text(single_avp_tree, tvb, offset, avp_data_length, "AVP Value (EAP packet)"); avp_eap_tree = proto_item_add_subtree(avp_eap_item, ett_pana_avp); eap_tvb = tvb_new_subset(tvb, offset, avp_data_length, avp_data_length); if (avp_eap_tree != NULL && eap_handle != NULL) { call_dissector(eap_handle, eap_tvb, pinfo, avp_eap_tree); } break; } } /* Just check that offset will advance */ g_assert((avp_length+padding)!=0); offset += avp_data_length + padding; } /* Update the buffer length */ buffer_length -= avp_length + padding; } } /* * Function for the PANA PDU dissector. */ static void dissect_pana_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) { proto_tree *pana_tree=NULL; proto_tree *avp_tree=NULL; proto_item *ti=NULL; proto_item *avp_item=NULL; tvbuff_t *avp_tvb; guint16 flags = 0; guint16 msg_type; gint16 msg_length; gint16 avp_length; guint32 session_id; guint32 seq_num; conversation_t *conversation; pana_conv_info_t *pana_info; pana_transaction_t *pana_trans; int offset = 0; /* Get message length, type and flags */ msg_length = tvb_get_ntohs(tvb, 2); flags = tvb_get_ntohs(tvb, 4); msg_type = tvb_get_ntohs(tvb, 6); session_id = tvb_get_ntohl(tvb, 8); seq_num = tvb_get_ntohl(tvb, 12); avp_length = msg_length-16; /* Make entries in Protocol column and Info column on summary display */ if (check_col(pinfo->cinfo, COL_PROTOCOL)) col_set_str(pinfo->cinfo, COL_PROTOCOL, "PANA"); if (check_col(pinfo->cinfo, COL_INFO)) { col_clear(pinfo->cinfo, COL_INFO); col_add_fstr(pinfo->cinfo, COL_INFO, "Type %s-%s", val_to_str(msg_type, msg_type_names, "Unknown (%d)"), match_strval(flags & PANA_FLAG_R, msg_subtype_names)); } /* Make the protocol tree */ if (tree) { ti = proto_tree_add_item(tree, proto_pana, tvb, 0, -1, FALSE); pana_tree = proto_item_add_subtree(ti, ett_pana); } /* * We need to track some state for this protocol on a per conversation * basis so we can do neat things like request/response tracking */ /* * Do we have a conversation for this connection? */ conversation = find_conversation(pinfo->fd->num, &pinfo->src, &pinfo->dst, pinfo->ptype, pinfo->srcport, pinfo->destport, 0); if (conversation == NULL) { /* We don't yet have a conversation, so create one. */ conversation = conversation_new(pinfo->fd->num, &pinfo->src, &pinfo->dst, pinfo->ptype, pinfo->srcport, pinfo->destport, 0); } /* * Do we already have a state structure for this conv */ pana_info = conversation_get_proto_data(conversation, proto_pana); if (!pana_info) { /* No. Attach that information to the conversation, and add * it to the list of information structures. */ pana_info = se_alloc(sizeof(pana_conv_info_t)); pana_info->pdus=se_tree_create_non_persistent(EMEM_TREE_TYPE_RED_BLACK, "pana_pdus"); conversation_add_proto_data(conversation, proto_pana, pana_info); } if(!pinfo->fd->flags.visited){ if(flags&PANA_FLAG_R){ /* This is a request */ pana_trans=se_alloc(sizeof(pana_transaction_t)); pana_trans->req_frame=pinfo->fd->num; pana_trans->rep_frame=0; pana_trans->req_time=pinfo->fd->abs_ts; se_tree_insert32(pana_info->pdus, seq_num, (void *)pana_trans); } else { pana_trans=se_tree_lookup32(pana_info->pdus, seq_num); if(pana_trans){ pana_trans->rep_frame=pinfo->fd->num; } } } else { pana_trans=se_tree_lookup32(pana_info->pdus, seq_num); } if(!pana_trans){ /* create a "fake" pana_trans structure */ pana_trans=ep_alloc(sizeof(pana_transaction_t)); pana_trans->req_frame=0; pana_trans->rep_frame=0; pana_trans->req_time=pinfo->fd->abs_ts; } /* print state tracking in the tree */ if(flags&PANA_FLAG_R){ /* This is a request */ if(pana_trans->rep_frame){ proto_item *it; it=proto_tree_add_uint(pana_tree, hf_pana_response_in, tvb, 0, 0, pana_trans->rep_frame); PROTO_ITEM_SET_GENERATED(it); } } else { /* This is a reply */ if(pana_trans->req_frame){ proto_item *it; nstime_t ns; it=proto_tree_add_uint(pana_tree, hf_pana_response_to, tvb, 0, 0, pana_trans->req_frame); PROTO_ITEM_SET_GENERATED(it); nstime_delta(&ns, &pinfo->fd->abs_ts, &pana_trans->req_time); it=proto_tree_add_time(pana_tree, hf_pana_time, tvb, 0, 0, &ns); PROTO_ITEM_SET_GENERATED(it); } } /* Reserved field */ proto_tree_add_item(pana_tree, hf_pana_reserved_type, tvb, offset, 2, FALSE); offset += 2; /* Length */ proto_tree_add_item(pana_tree, hf_pana_length_type, tvb, offset, 2, FALSE); offset += 2; /* Flags */ dissect_pana_flags(pana_tree, tvb, offset, flags); offset += 2; /* Message Type */ proto_tree_add_uint_format_value(pana_tree, hf_pana_msg_type, tvb, offset, 2, msg_type, "%s-%s (%d)", val_to_str(msg_type, msg_type_names, "Unknown (%d)"), match_strval(flags & PANA_FLAG_R, msg_subtype_names), msg_type); offset += 2; /* Session ID */ proto_tree_add_item(pana_tree, hf_pana_session_id, tvb, offset, 4, FALSE); offset += 4; /* Sequence Number */ proto_tree_add_item(pana_tree, hf_pana_seqnumber, tvb, offset, 4, FALSE); offset += 4; /* AVPs */ if(avp_length>0){ avp_tvb = tvb_new_subset(tvb, offset, avp_length, avp_length); avp_item = proto_tree_add_text(pana_tree, tvb, offset, avp_length, "Attribute Value Pairs"); avp_tree = proto_item_add_subtree(avp_item, ett_pana_avp); if (avp_tree != NULL) { dissect_avps(avp_tvb, pinfo, avp_tree); } } } /* * Function for the PANA dissector. */ static gboolean dissect_pana(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) { guint16 pana_res; guint16 msg_length; guint16 flags; guint32 buffer_length; guint16 msg_type; guint16 avp_length; guint16 avp_offset; /* Get buffer length */ buffer_length = tvb_length(tvb); /* Check minimum buffer length */ if(buffer_length < 12) { return FALSE; } /* Get header fields */ pana_res = tvb_get_ntohs(tvb, 0); msg_length = tvb_get_ntohs(tvb, 2); flags = tvb_get_ntohs(tvb, 4); msg_type = tvb_get_ntohs(tvb, 6); avp_length = msg_length-16; avp_offset = 16; /* Check minimum packet length */ if(msg_length < 12) { return FALSE; } /* Check the packet length and buffer length matching */ if(msg_length != buffer_length) { return FALSE; } /* For bug 1908: check the length of the first AVP, too */ if (avp_length) { guint16 first_avp_length; if (avp_length < MIN_AVP_SIZE) return FALSE; first_avp_length = tvb_get_ntohs(tvb, avp_offset + 4); if (first_avp_length < MIN_AVP_SIZE || first_avp_length > avp_length) return FALSE; } /* check that the reserved field is zero */ if(pana_res!=0){ return FALSE; } /* verify that none of the reserved bits are set */ if(flags&0x03ff){ return FALSE; } /* verify that we recognize the message type */ if(msg_type>4 || msg_type==0){ return FALSE; } dissect_pana_pdu(tvb, pinfo, tree); return TRUE; } /* * Register the protocol with Wireshark */ void proto_register_pana(void) { module_t *pana_module; static hf_register_info hf[] = { { &hf_pana_response_in, { "Response In", "pana.response_in", FT_FRAMENUM, BASE_DEC, NULL, 0x0, "The response to this PANA request is in this frame", HFILL } }, { &hf_pana_response_to, { "Request In", "pana.response_to", FT_FRAMENUM, BASE_DEC, NULL, 0x0, "This is a response to the PANA request in this frame", HFILL } }, { &hf_pana_time, { "Time", "pana.time", FT_RELATIVE_TIME, BASE_NONE, NULL, 0x0, "The time between the Call and the Reply", HFILL } }, { &hf_pana_reserved_type, { "PANA Reserved", "pana.reserved", FT_UINT16, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_length_type, { "PANA Message Length", "pana.length", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL } }, { &hf_pana_flags, { "Flags", "pana.flags", FT_UINT8, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_flag_r, { "Request", "pana.flags.r", FT_BOOLEAN, 16, TFS(&tfs_set_notset), PANA_FLAG_R, NULL, HFILL } }, { &hf_pana_flag_s, { "Start", "pana.flags.s", FT_BOOLEAN, 16, TFS(&tfs_set_notset), PANA_FLAG_S, NULL, HFILL } }, { &hf_pana_flag_c, { "Complete","pana.flags.c", FT_BOOLEAN, 16, TFS(&tfs_set_notset), PANA_FLAG_C, NULL, HFILL } }, { &hf_pana_flag_a, { "Auth","pana.flags.a", FT_BOOLEAN, 16, TFS(&tfs_set_notset), PANA_FLAG_A, NULL, HFILL } }, { &hf_pana_flag_p, { "Ping","pana.flags.p", FT_BOOLEAN, 16, TFS(&tfs_set_notset), PANA_FLAG_P, NULL, HFILL } }, { &hf_pana_flag_i, { "IP Reconfig","pana.flags.i", FT_BOOLEAN, 16, TFS(&tfs_set_notset), PANA_FLAG_I, NULL, HFILL } }, { &hf_pana_msg_type, { "PANA Message Type", "pana.type", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL } }, { &hf_pana_session_id, { "PANA Session ID", "pana.sid", FT_UINT32, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_seqnumber, { "PANA Sequence Number", "pana.seq", FT_UINT32, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_code, { "AVP Code", "pana.avp.code", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_length, { "AVP Length", "pana.avp.length", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_flags, { "AVP Flags", "pana.avp.flags", FT_UINT16, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_flag_v, { "Vendor", "pana.avp.flags.v", FT_BOOLEAN, 16, TFS(&tfs_set_notset), PANA_AVP_FLAG_V, NULL, HFILL } }, { &hf_pana_avp_reserved, { "AVP Reserved", "pana.avp.reserved", FT_UINT16, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_vendorid, { "AVP Vendor ID", "pana.avp.vendorid", FT_UINT32, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_data_uint64, { "Value", "pana.avp.data.uint64", FT_UINT64, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_data_int64, { "Value", "pana.avp.data.int64", FT_INT64, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_data_uint32, { "Value", "pana.avp.data.uint32", FT_UINT32, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_data_int32, { "Value", "pana.avp.data.int32", FT_INT32, BASE_HEX, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_data_bytes, { "Value", "pana.avp.data.bytes", FT_BYTES, BASE_NONE, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_data_string, { "Value", "pana.avp.data.string", FT_STRING, BASE_NONE, NULL, 0x0, NULL, HFILL } }, { &hf_pana_avp_data_enumerated, { "Value", "pana.avp.data.enum", FT_INT32, BASE_DEC, NULL, 0x0, NULL, HFILL } } }; /* Setup protocol subtree array */ static gint *ett[] = { &ett_pana, &ett_pana_flags, &ett_pana_avp, &ett_pana_avp_info, &ett_pana_avp_flags }; /* Register the protocol name and description */ proto_pana = proto_register_protocol("Protocol for carrying Authentication for Network Access", "PANA", "pana"); /* Required function calls to register the header fields and subtrees used */ proto_register_field_array(proto_pana, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); /* Register preferences module */ pana_module = prefs_register_protocol(proto_pana, NULL); } void proto_reg_handoff_pana(void) { heur_dissector_add("udp", dissect_pana, proto_pana); pana_handle = new_create_dissector_handle(dissect_pana, proto_pana); dissector_add_handle("udp.port", pana_handle); eap_handle = find_dissector("eap"); if(!eap_handle) fprintf(stderr,"PANA warning: EAP dissector not found\n"); }