fd9010b474f8566fd538ad896d56943b7a37fe5d
[obnox/wireshark/wip.git] / packet-dcerpc-update.c
1 /* packet-dcerpc-update.c
2  *
3  * Routines for dcerpc upserv dissection
4  * Copyright 2002, Jaime Fournier <jafour1@yahoo.com>
5  * This information is based off the released idl files from opengroup.
6  * ftp://ftp.opengroup.org/pub/dce122/dce/src/file.tar.gz file/update/update.idl
7  *
8  * $Id: packet-dcerpc-update.c,v 1.3 2003/06/26 04:30:30 tpot Exp $
9  *
10  * Ethereal - Network traffic analyzer
11  * By Gerald Combs <gerald@ethereal.com>
12  * Copyright 1998 Gerald Combs
13  *
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.
18  *
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.
23  *
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33
34 #ifdef HAVE_SYS_TYPES_H
35 #include <sys/types.h>
36 #endif
37
38 #include <string.h>
39
40 #include <glib.h>
41 #include <epan/packet.h>
42 #include "packet-dcerpc.h"
43 #include "packet-dcerpc-dce122.h"
44
45 static int proto_dce_update = -1;
46 static int hf_dce_update_opnum = -1;
47
48 static gint ett_dce_update = -1;
49
50 static e_uuid_t uuid_dce_update =
51   { 0x4d37f2dd, 0xed43, 0x0000, {0x02, 0xc0, 0x37, 0xcf, 0x1e, 0x00, 0x10,
52                                  0x00}
53 };
54 static guint16 ver_dce_update = 4;
55
56
57 static dcerpc_sub_dissector dce_update_dissectors[] = {
58   {0, "UPDATE_GetServerInterfaces", NULL, NULL},
59   {1, "UPDATE_FetchInfo", NULL, NULL},
60   {2, "UPDATE_FetchFile", NULL, NULL},
61   {3, "UPDATE_FetchObjectInfo", NULL, NULL},
62   {0, NULL, NULL, NULL},
63 };
64
65 void
66 proto_register_dce_update (void)
67 {
68   static hf_register_info hf[] = {
69     {&hf_dce_update_opnum,
70      {"Operation", "dce_update.opnum", FT_UINT16, BASE_DEC,
71       NULL, 0x0, "Operation", HFILL}}
72
73   };
74
75   static gint *ett[] = {
76     &ett_dce_update,
77   };
78   proto_dce_update =
79     proto_register_protocol ("DCE/RPC UpServer", "dce_update", "dce_update");
80   proto_register_field_array (proto_dce_update, hf, array_length (hf));
81   proto_register_subtree_array (ett, array_length (ett));
82 }
83
84 void
85 proto_reg_handoff_dce_update (void)
86 {
87   header_field_info *hf_info;
88
89   /* Register the protocol as dcerpc */
90   dcerpc_init_uuid (proto_dce_update, ett_dce_update, &uuid_dce_update,
91                     ver_dce_update, dce_update_dissectors,
92                     hf_dce_update_opnum);
93
94   /* Set opnum strings from subdissector list */
95
96   hf_info = proto_registrar_get_nth(hf_dce_update_opnum);
97   hf_info->strings = value_string_from_subdissectors(
98           dce_update_dissectors, array_length(dce_update_dissectors));
99 }