HACK: 2nd try to match RowsetProperties
[wireshark-wip.git] / epan / dissectors / packet-dcerpc-rs_misc.c
blob364c877418a81f8bc4d4db2891a19a72db80387c
1 /* packet-dcerpc-rs_misc.c
3 * Routines for dcerpc RS-MISC
4 * Copyright 2002, Jaime Fournier <Jaime.Fournier@hush.com>
5 * This information is based off the released idl files from opengroup.
6 * ftp://ftp.opengroup.org/pub/dce122/dce/src/security.tar.gz security/idl/rs_misc.idl
8 * $Id$
10 * Wireshark - Network traffic analyzer
11 * By Gerald Combs <gerald@wireshark.org>
12 * Copyright 1998 Gerald Combs
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 #include "config.h"
32 #include <glib.h>
33 #include <epan/packet.h>
34 #include "packet-dcerpc.h"
37 static int proto_rs_misc = -1;
38 static int hf_rs_misc_opnum = -1;
39 static int hf_rs_misc_login_get_info_rqst_var = -1;
40 static int hf_rs_misc_login_get_info_rqst_key_size = -1;
41 static int hf_rs_misc_login_get_info_rqst_key_t = -1;
44 static gint ett_rs_misc = -1;
47 static e_uuid_t uuid_rs_misc = { 0x4c878280, 0x5000, 0x0000, { 0x0d, 0x00, 0x02, 0x87, 0x14, 0x00, 0x00, 0x00 } };
48 static guint16 ver_rs_misc = 1;
51 static int
52 rs_misc_dissect_login_get_info_rqst (tvbuff_t *tvb, int offset,
53 packet_info *pinfo, proto_tree *tree, dcerpc_info *di, guint8 *drep)
56 guint32 key_size;
57 const char *key_t1 = NULL;
59 offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, di, drep,
60 hf_rs_misc_login_get_info_rqst_var, NULL);
61 offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, di, drep,
62 hf_rs_misc_login_get_info_rqst_key_size, &key_size);
64 if (key_size){ /* Not able to yet decipher the OTHER versions of this call just yet. */
66 proto_tree_add_item (tree, hf_rs_misc_login_get_info_rqst_key_t, tvb, offset, key_size, ENC_ASCII|ENC_NA);
67 key_t1 = tvb_get_string(wmem_packet_scope(), tvb, offset, key_size);
68 offset += key_size;
70 col_append_fstr(pinfo->cinfo, COL_INFO,
71 "rs_login_get_info Request for: %s ", key_t1);
72 } else {
73 col_append_str(pinfo->cinfo, COL_INFO,
74 "rs_login_get_info Request (other)");
77 return offset;
81 static dcerpc_sub_dissector rs_misc_dissectors[] = {
82 { 0, "login_get_info", rs_misc_dissect_login_get_info_rqst, NULL},
83 { 1, "wait_until_consistent", NULL, NULL},
84 { 2, "check_consistency", NULL, NULL},
85 { 0, NULL, NULL, NULL }
88 void
89 proto_register_rs_misc (void)
91 static hf_register_info hf[] = {
92 { &hf_rs_misc_opnum,
93 { "Operation", "rs_misc.opnum", FT_UINT16, BASE_DEC,
94 NULL, 0x0, NULL, HFILL }},
95 { &hf_rs_misc_login_get_info_rqst_var,
96 { "Var", "rs_misc.login_get_info_rqst_var", FT_UINT32, BASE_DEC,
97 NULL, 0x0, NULL, HFILL }},
98 { &hf_rs_misc_login_get_info_rqst_key_size,
99 { "Key Size", "rs_misc.login_get_info_rqst_key_size", FT_UINT32, BASE_DEC,
100 NULL, 0x0, NULL, HFILL }},
101 { &hf_rs_misc_login_get_info_rqst_key_t,
102 { "Key", "rs_misc.login_get_info_rqst_key_t", FT_STRING, BASE_NONE,
103 NULL, 0x0, NULL, HFILL }}
106 static gint *ett[] = {
107 &ett_rs_misc,
109 proto_rs_misc = proto_register_protocol ("DCE/RPC RS_MISC", "rs_misc", "rs_misc");
110 proto_register_field_array (proto_rs_misc, hf, array_length (hf));
111 proto_register_subtree_array (ett, array_length (ett));
114 void
115 proto_reg_handoff_rs_misc (void)
117 /* Register the protocol as dcerpc */
118 dcerpc_init_uuid (proto_rs_misc, ett_rs_misc, &uuid_rs_misc, ver_rs_misc, rs_misc_dissectors, hf_rs_misc_opnum);