nexmon – Rev 1

Subversion Repositories:
Rev:
/* packet-dcerpc-browser.c
 * Routines for DCERPC Browser packet disassembly
 * Copyright 2001, Ronnie Sahlberg
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * 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.
 */

/* The IDL file for this interface can be extracted by grepping for idl
 * in capitals.
 */

#include "config.h"

#include <epan/packet.h>
#include <epan/exceptions.h>

#include "packet-dcerpc.h"
#include "packet-dcerpc-browser.h"
#include "packet-dcerpc-nt.h"
#include "packet-windows-common.h"

void proto_register_dcerpc_browser(void);
void proto_reg_handoff_dcerpc_browser(void);

static int proto_dcerpc_browser = -1;
static int hf_browser_opnum = -1;
static int hf_browser_rc = -1;
static int hf_browser_unknown_long = -1;
static int hf_browser_unknown_hyper = -1;
static int hf_browser_unknown_bytes = -1;
static int hf_browser_unknown_string = -1;


static gint ett_dcerpc_browser = -1;


static int
dissect_browser_long_pointer(tvbuff_t *tvb, int offset,
                             packet_info *pinfo, proto_tree *tree,
                             dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, di, drep,
                                     di->hf_index, NULL);
        return offset;
}



/*
 IDL [ uuid(6bffd098-a112-3610-9833-012892020162),
 IDL   version(0.0),
 IDL   implicit_handle(handle_t rpc_binding)
 IDL ] interface browser
 IDL {
*/

static e_guid_t uuid_dcerpc_browser = {
        0x6bffd098, 0xa112, 0x3610,
        { 0x98, 0x33, 0x01, 0x28, 0x92, 0x02, 0x01, 0x62 }
};

static guint16 ver_dcerpc_browser = 0;


/*
  IDL typedef struct {
  IDL   long element_7;
  IDL   [size_is(element_7)] [unique] byte *element_8;
  IDL } TYPE_4;
*/
static int
dissect_browser_TYPE_4_data(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        guint32 len;

        if(di->conformant_run){
                /* this call is to make wireshark eat the array header for the conformant run */
                offset =dissect_ndr_ucarray(tvb, offset, pinfo, tree, di, drep, NULL);

                return offset;
        }
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, &len);

        proto_tree_add_item(tree, hf_browser_unknown_bytes, tvb, offset, len,
                ENC_NA);
        offset += len;

        return offset;
}
static int
dissect_browser_TYPE_4(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                dissect_browser_TYPE_4_data, NDR_POINTER_UNIQUE,
                "unknown TYPE_4", -1);

        return offset;
}


/*
  IDL typedef struct {
  IDL   long element_5;
  IDL   [size_is(element_5)] [unique] byte *element_6;
  IDL } TYPE_3;
*/
static int
dissect_browser_TYPE_3_data(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        guint32 len;

        if(di->conformant_run){
                /* this call is to make wireshark eat the array header for the conformant run */
                offset =dissect_ndr_ucarray(tvb, offset, pinfo, tree, di, drep, NULL);

                return offset;
        }

        /* this is really the length of the encoded data */
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, &len);
        proto_tree_add_item(tree, hf_browser_unknown_bytes, tvb, offset, len,
                ENC_NA);
        offset += len;

        return offset;
}
static int
dissect_browser_TYPE_3(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                dissect_browser_TYPE_3_data, NDR_POINTER_UNIQUE,
                "unknown TYPE_3", -1);

        return offset;
}



/*
  IDL typedef [switch_type(long)] union {
  IDL   [case(100)] [unique] TYPE_3 *element_3;
  IDL   [case(101)] [unique] TYPE_4 *element_4;
  IDL } TYPE_2;
*/
static int
dissect_browser_TYPE_2(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        guint32 level;

        /* this is really the union switch arm */
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, &level);

        ALIGN_TO_4_BYTES;

        switch(level){
        case 100:
                offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_3, NDR_POINTER_UNIQUE,
                        "unknown TYPE_3", -1);
                break;
        case 101:
                offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_4, NDR_POINTER_UNIQUE,
                        "unknown TYPE_4", -1);
                break;
        }

        return offset;
}


/*
  IDL typedef struct {
  IDL   long element_1;
  IDL   TYPE_2 element_2;
  IDL } TYPE_1;
*/
static int
dissect_browser_TYPE_1(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_browser_TYPE_2(tvb, offset, pinfo, tree, di, drep);

        return offset;
}



/*
 IDL  long BrowserrServerEnum(
 IDL        [in] [unique] [string] wchar_t *element_9,
 IDL        [in] [unique] [string] wchar_t *element_10,
 IDL        [in] [unique] [string] wchar_t *element_11,
 IDL        [in,out] [ref] TYPE_1 *element_12,
 IDL        [in] long element_13,
 IDL        [out] long element_14,
 IDL        [in] long element_15,
 IDL        [in] [unique] [string] wchar_t *element_16,
 IDL        [in,out] [unique] long *element_17
 IDL  );
*/
static int
dissect_browser_browserr_server_enum_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_1, NDR_POINTER_REF,
                        "unknown TYPE_1", -1);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_long_pointer, NDR_POINTER_UNIQUE,
                        "unknown long", hf_browser_unknown_long);

        return offset;
}
static int
dissect_browser_browserr_server_enum_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_1, NDR_POINTER_REF,
                        "unknown TYPE_1", -1);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_long_pointer, NDR_POINTER_UNIQUE,
                        "unknown long", hf_browser_unknown_long);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}

/*
  IDL long BrowserrDebugCall(
  IDL       [in] [unique] [string] wchar_t *element_18,
  IDL       [in] long element_19,
  IDL       [in] long element_20
  IDL );
*/
static int
dissect_browser_browserr_debug_call_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        return offset;
}
static int
dissect_browser_browserr_debug_call_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}


/*
  IDL long BrowserrQueryOtherDomains(
  IDL       [in] [unique] [string] wchar_t *element_21,
  IDL       [in,out] [ref] TYPE_1 *element_22,
  IDL       [out] long element_23
  IDL );
*/
static int
dissect_browser_browserr_query_other_domains_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_1, NDR_POINTER_REF,
                        "unknown TYPE_1", -1);

        return offset;
}
static int
dissect_browser_browserr_query_other_domains_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}


/*
  IDL long BrowserrResetNetlogonState(
  IDL       [in] [unique] [string] wchar_t *element_24
  IDL );
*/
static int
dissect_browser_browserr_reset_netlogon_state_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        return offset;
}
static int
dissect_browser_browserr_reset_netlogon_state_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}


/*
  IDL long BrowserrDebugTrace(
  IDL       [in] [unique] [string] wchar_t *element_25,
  IDL       [in] [string] char element_26
  IDL );
*/
static int
dissect_browser_browserr_debug_trace_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_REF, "unknown string",
                        hf_browser_unknown_string, 0);

        return offset;
}
static int
dissect_browser_browserr_debug_trace_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}



/*
  IDL typedef struct {
  IDL   TYPE_6 element_27;
  IDL   TYPE_6 element_28;
  IDL   TYPE_6 element_29;
  IDL   long element_30;
  IDL   long element_31;
  IDL   long element_32;
  IDL   long element_33;
  IDL   long element_34;
  IDL   long element_35;
  IDL   long element_36;
  IDL   long element_37;
  IDL   long element_38;
  IDL   long element_39;
  IDL   long element_40;
  IDL   long element_41;
  IDL   long element_42;
  IDL   long element_43;
  IDL   long element_44;
  IDL   TYPE_6 element_45;
  IDL } TYPE_5;
  IDL
  IDL typedef struct {
  IDL   hyper element_46;
  IDL } TYPE_6;
*/
static int
dissect_browser_TYPE_5(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_duint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_hyper, NULL);

        offset = dissect_ndr_duint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_hyper, NULL);

        offset = dissect_ndr_duint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_hyper, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_duint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_hyper, NULL);

        return offset;
}


/*
  IDL long BrowserrQueryStatistics(
  IDL       [in] [unique] [string] wchar_t *element_47,
  IDL       [out] [ref] TYPE_5 **element_48
  IDL );
*/
static int
dissect_browser_browserr_query_statistics_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        return offset;
}
static int
dissect_browser_browserr_query_statistics_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_5, NDR_POINTER_UNIQUE,
                        "unknown TYPE_5", -1);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}


/*
  IDL long BrowserrResetStatistics(
  IDL       [in] [unique] [string] wchar_t *element_49
  IDL );
*/
static int
dissect_browser_browserr_reset_statistics_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        return offset;
}
static int
dissect_browser_browserr_reset_statistics_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}


/*
  IDL long NetrBrowserStatisticsClear(
  IDL       [in] [unique] [string] wchar_t *element_49
  IDL );
*/
static int
dissect_browser_netr_browser_statistics_clear_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        return offset;
}
static int
dissect_browser_netr_browser_statistics_clear_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}


/*
  IDL typedef struct {
  IDL   TYPE_6 element_59;
  IDL   TYPE_6 element_60;
  IDL   TYPE_6 element_61;
  IDL   long element_62;
  IDL   long element_63;
  IDL   long element_64;
  IDL   TYPE_6 element_65;
  IDL   long element_66;
  IDL   long element_67;
  IDL   long element_68;
  IDL   long element_69;
  IDL   long element_70;
  IDL   long element_71;
  IDL   long element_72;
  IDL   long element_73;
  IDL   long element_74;
  IDL } TYPE_11;
*/
static int
dissect_browser_TYPE_11(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_duint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_hyper, NULL);

        offset = dissect_ndr_duint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_hyper, NULL);

        offset = dissect_ndr_duint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_hyper, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_duint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_hyper, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        return offset;
}

/*
  IDL typedef struct {
  IDL   long element_57;
  IDL   [size_is(element_57)] [unique] TYPE_11 *element_58;
  IDL } TYPE_10;
*/
static int
dissect_browser_TYPE_11_array(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_ucarray(tvb, offset, pinfo, tree, di, drep,
                dissect_browser_TYPE_11);

        return offset;
}

static int
dissect_browser_TYPE_10(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                dissect_browser_TYPE_11_array, NDR_POINTER_UNIQUE,
                "unknown TYPE_11_ARRAY", -1);

        return offset;
}


/*
  IDL typedef struct {
  IDL   long element_55;
  IDL   [size_is(element_55)] [unique] byte *element_56;
  IDL } TYPE_9;
*/
static int
dissect_browser_TYPE_9_data(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        guint32 len;

        if(di->conformant_run){
                /* this call is to make wireshark eat the array header for the conformant run */
                offset =dissect_ndr_ucarray(tvb, offset, pinfo, tree, di, drep, NULL);

                return offset;
        }

        /* this is really the length of the encoded data */
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, &len);

        proto_tree_add_item(tree, hf_browser_unknown_bytes, tvb, offset, len,
                ENC_NA);
        offset += len;

        return offset;
}
static int
dissect_browser_TYPE_9(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                dissect_browser_TYPE_9_data, NDR_POINTER_UNIQUE,
                "unknown TYPE_9", -1);

        return offset;
}


/*
  IDL typedef [switch_type(long)] union {
  IDL   [case(100)] [unique] TYPE_9 *element_53;
  IDL   [case(101)] [unique] TYPE_10 *element_54;
  IDL } TYPE_8;
*/
static int
dissect_browser_TYPE_8(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        guint32 level;

        /* this is really the union switch arm */
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, &level);

        ALIGN_TO_4_BYTES;

        switch(level){
        case 100:
                offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_9, NDR_POINTER_UNIQUE,
                        "unknown TYPE_9", -1);
                break;
        case 101:
                offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_10, NDR_POINTER_UNIQUE,
                        "unknown TYPE_10", -1);
                break;
        }

        return offset;
}


/*
  IDL typedef struct {
  IDL   long element_51;
  IDL   TYPE_8 element_52;
  IDL } TYPE_7;
*/
static int
dissect_browser_TYPE_7(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_browser_TYPE_8(tvb, offset, pinfo, tree, di, drep);

        return offset;
}


/*
  IDL long NetrBrowserStatisticsGet(
  IDL       [in] [unique] [string] wchar_t *element_75,
  IDL       [in] long element_76,
  IDL   [in,out] [ref] TYPE_7 *element_77
  IDL );
*/
static int
dissect_browser_netr_browser_statistics_get_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_7, NDR_POINTER_REF,
                        "unknown TYPE_7", -1);

        return offset;
}
static int
dissect_browser_netr_browser_statistics_get_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_7, NDR_POINTER_REF,
                        "unknown TYPE_7", -1);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}


/*
  IDL long BrowserrSetNetlogonState(
  IDL       [in] [unique] [string] wchar_t *element_78,
  IDL       [in] [ref] [string] wchar_t *element_79,
  IDL       [in] [unique] [string] wchar_t *element_80,
  IDL       [in] long element_81
  IDL );
*/
static int
dissect_browser_browserr_set_netlogon_state_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_REF, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        return offset;
}
static int
dissect_browser_browserr_set_netlogon_state_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}




/*
  IDL typedef struct {
  IDL   long element_82;
  IDL   [size_is(element_82)] [unique] byte *element_83;
  IDL } TYPE_12;
*/
static int
dissect_browser_TYPE_12_data(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        guint32 len;

        if(di->conformant_run){
                /* this call is to make wireshark eat the array header for the conformant run */
                offset =dissect_ndr_ucarray(tvb, offset, pinfo, tree, di, drep, NULL);

                return offset;
        }

        /* this is really the length of the encoded data */
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, &len);

        proto_tree_add_item(tree, hf_browser_unknown_bytes, tvb, offset, len,
                ENC_NA);
        offset += len;

        return offset;
}
static int
dissect_browser_TYPE_12(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                dissect_browser_TYPE_12_data, NDR_POINTER_UNIQUE,
                "unknown TYPE_12", -1);

        return offset;
}


/*
  IDL long BrowserrQueryEmulatedDomains(
  IDL       [in] [unique] [string] wchar_t *element_84,
  IDL       [in,out] [ref] TYPE_12 *element_85
  );
*/
static int
dissect_browser_browserr_query_emulated_domains_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_12, NDR_POINTER_REF,
                        "unknown TYPE_12", -1);

        return offset;
}
static int
dissect_browser_browserr_query_emulated_domains_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_12, NDR_POINTER_REF,
                        "unknown TYPE_12", -1);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}


/*
  IDL long BrowserrServerEnumEx(
  IDL       [in] [unique] [string] wchar_t *element_86,
  IDL       [in] [unique] [string] wchar_t *element_87,
  IDL       [in] [unique] [string] wchar_t *element_88,
  IDL       [in,out] [ref] TYPE_1 *element_89,
  IDL       [in] long element_90,
  IDL       [out] long element_91,
  IDL       [in] long element_92,
  IDL       [in] [unique] [string] wchar_t *element_93,
  IDL       [in] [unique] [string] wchar_t *element_94
  IDL );
*/
static int
dissect_browser_browserr_server_enum_ex_rqst(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_1, NDR_POINTER_REF,
                        "unknown TYPE_1", -1);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        offset = dissect_ndr_str_pointer_item(tvb, offset, pinfo, tree, di, drep,
                        NDR_POINTER_UNIQUE, "unknown string",
                        hf_browser_unknown_string, 0);

        return offset;
}
static int
dissect_browser_browserr_server_enum_ex_reply(tvbuff_t *tvb, int offset,
                        packet_info *pinfo, proto_tree *tree,
                        dcerpc_info *di, guint8 *drep)
{
        offset = dissect_ndr_pointer(tvb, offset, pinfo, tree, di, drep,
                        dissect_browser_TYPE_1, NDR_POINTER_REF,
                        "unknown TYPE_1", -1);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_unknown_long, NULL);

        offset = dissect_ndr_uint32(tvb, offset, pinfo, tree, di, drep,
                hf_browser_rc, NULL);

        return offset;
}



/*
  IDL }
*/
static dcerpc_sub_dissector dcerpc_browser_dissectors[] = {
        { BROWSER_BROWSERR_SERVER_ENUM, "BrowserrServerEnum",
                dissect_browser_browserr_server_enum_rqst,
                dissect_browser_browserr_server_enum_reply },
        { BROWSER_BROWSERR_DEBUG_CALL, "BrowserrDebugCall",
                dissect_browser_browserr_debug_call_rqst,
                dissect_browser_browserr_debug_call_reply },
        { BROWSER_BROWSERR_QUERY_OTHER_DOMAINS,
          "BrowserrQueryOtherDomains",
                dissect_browser_browserr_query_other_domains_rqst,
                dissect_browser_browserr_query_other_domains_reply },
        { BROWSER_BROWSERR_RESET_NETLOGON_STATE,
          "BrowserrResetNetlogonState",
                dissect_browser_browserr_reset_netlogon_state_rqst,
                dissect_browser_browserr_reset_netlogon_state_reply },
        { BROWSER_BROWSERR_DEBUG_TRACE,
          "BrowserrDebugTrace",
                dissect_browser_browserr_debug_trace_rqst,
                dissect_browser_browserr_debug_trace_reply },
        { BROWSER_BROWSERR_QUERY_STATISTICS,
          "BrowserrQueryStatistics",
                dissect_browser_browserr_query_statistics_rqst,
                dissect_browser_browserr_query_statistics_reply },
        { BROWSER_BROWSERR_RESET_STATISTICS,
          "BrowserrResetStatistics",
                dissect_browser_browserr_reset_statistics_rqst,
                dissect_browser_browserr_reset_statistics_reply },
        { BROWSER_NETR_BROWSER_STATISTICS_CLEAR,
          "NetrBrowserStatisticsClear",
                dissect_browser_netr_browser_statistics_clear_rqst,
                dissect_browser_netr_browser_statistics_clear_reply },
        { BROWSER_NETR_BROWSER_STATISTICS_GET,
          "NetrBrowserStatisticsGet",
                dissect_browser_netr_browser_statistics_get_rqst,
                dissect_browser_netr_browser_statistics_get_reply },
        { BROWSER_BROWSERR_SET_NETLOGON_STATE,
          "BrowserrSetNetlogonState",
                dissect_browser_browserr_set_netlogon_state_rqst,
                dissect_browser_browserr_set_netlogon_state_reply },
        { BROWSER_BROWSERR_QUERY_EMULATED_DOMAINS,
          "BrowserrQueryEmulatedDomains",
                dissect_browser_browserr_query_emulated_domains_rqst,
                dissect_browser_browserr_query_emulated_domains_reply },
        { BROWSER_BROWSERR_SERVER_ENUM_EX,
          "BrowserrServerEnumEx",
                dissect_browser_browserr_server_enum_ex_rqst,
                dissect_browser_browserr_server_enum_ex_reply },

        {0, NULL, NULL,  NULL }
};

void
proto_register_dcerpc_browser(void)
{
static hf_register_info hf[] = {

        { &hf_browser_opnum, {
                "Operation", "rpc_browser.opnum", FT_UINT16, BASE_DEC,
                NULL, 0x0, NULL, HFILL }},

        { &hf_browser_rc, {
                "Return code", "rpc_browser.rc", FT_UINT32, BASE_HEX | BASE_EXT_STRING,
                &NT_errors_ext, 0x0, "Browser return code", HFILL }},

        { &hf_browser_unknown_long, {
                "Unknown long", "rpc_browser.unknown.long", FT_UINT32, BASE_HEX,
                NULL, 0x0, "Unknown long. If you know what this is, contact wireshark developers.", HFILL }},

        { &hf_browser_unknown_hyper, {
                "Unknown hyper", "rpc_browser.unknown.hyper", FT_UINT64, BASE_HEX,
                NULL, 0x0, "Unknown hyper. If you know what this is, contact wireshark developers.", HFILL }},

        { &hf_browser_unknown_bytes, {
                "Unknown bytes", "rpc_browser.unknown.bytes", FT_BYTES, BASE_NONE,
                NULL, 0x0, "Unknown bytes. If you know what this is, contact wireshark developers.", HFILL }},

        { &hf_browser_unknown_string, {
                "Unknown string", "rpc_browser.unknown.string", FT_STRING, BASE_NONE,
                NULL, 0x0, "Unknown string. If you know what this is, contact wireshark developers.", HFILL }}

        };
        static gint *ett[] = {
                &ett_dcerpc_browser
        };

        proto_dcerpc_browser = proto_register_protocol(
                "RPC Browser", "RPC_BROWSER", "rpc_browser");

        proto_register_field_array(proto_dcerpc_browser, hf,
                                   array_length(hf));
        proto_register_subtree_array(ett, array_length(ett));
}

void
proto_reg_handoff_dcerpc_browser(void)
{
        /* Register protocol as dcerpc */

        dcerpc_init_uuid(proto_dcerpc_browser, ett_dcerpc_browser,
                         &uuid_dcerpc_browser, ver_dcerpc_browser,
                         dcerpc_browser_dissectors, hf_browser_opnum);
}

/*
 * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
 *
 * Local variables:
 * c-basic-offset: 8
 * tab-width: 8
 * indent-tabs-mode: t
 * End:
 *
 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
 * :indentSize=8:tabSize=8:noTabs=false:
 */