2 * Routines for Netdump dissection
3 * Copyright 2009, Neil Horman <nhorman@tuxdriver.com>
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
31 #include <epan/packet.h>
32 #include <epan/prefs.h>
34 /* forward reference */
35 void proto_reg_handoff_netdump(void);
37 /* Initialize the protocol and registered fields */
38 static int proto_netdump
= -1;
39 static int hf_netdump_magic_number
= -1;
40 static int hf_netdump_seq_nr
= -1;
41 static int hf_netdump_command
= -1;
42 static int hf_netdump_from
= -1;
43 static int hf_netdump_to
= -1;
44 static int hf_netdump_payload
= -1;
45 static int hf_netdump_code
= -1;
46 static int hf_netdump_info
= -1;
47 static int hf_netdump_version
= -1;
49 /* Global sample port pref */
50 static guint gPORT_PREF
= 0;
52 /* Initialize the subtree pointers */
53 static gint ett_netdump
= -1;
55 static const value_string command_names
[] = {
57 { 1, "COMM_SEND_MEM" },
61 { 5, "COMM_GET_NR_PAGES" },
62 { 6, "COMM_GET_PAGE_SIZE" },
63 { 7, "COMM_START_NETDUMP_ACK" },
64 { 8, "COMM_GET_REGS" },
65 { 9, "COMM_SHOW_STATE" },
69 static const value_string reply_code_names
[] = {
74 { 4, "REPLY_RESERVED" },
76 { 6, "REPLY_NR_PAGES" },
77 { 7, "REPLY_PAGE_SIZE" },
78 { 8, "REPLY_START_NETDUMP" },
79 { 9, "REPLY_END_NETDUMP" },
81 { 11, "REPLY_MAGIC" },
82 { 12, "REPLY_SHOW_STATE" },
87 /* Code to actually dissect the packets */
89 dissect_netdump(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
)
92 /* Check that there's enough data */
93 if (tvb_reported_length(tvb
) == 0)
96 col_set_str(pinfo
->cinfo
, COL_PROTOCOL
, "Netdump");
97 /* Clear out stuff in the info column */
98 col_clear(pinfo
->cinfo
, COL_INFO
);
100 if (tree
) { /* we are being asked for details */
101 proto_item
*ti
= NULL
;
102 proto_tree
*netdump_tree
= NULL
;
103 ti
= proto_tree_add_item(tree
, proto_netdump
, tvb
, 0, -1, ENC_NA
);
104 netdump_tree
= proto_item_add_subtree(ti
, ett_netdump
);
105 if (tvb_reported_length(tvb
) == 24) {
106 /* Its a request format packet */
107 proto_tree_add_item(netdump_tree
, hf_netdump_magic_number
, tvb
, 0, 8, ENC_BIG_ENDIAN
);
108 proto_tree_add_item(netdump_tree
, hf_netdump_seq_nr
, tvb
, 8, 4, ENC_BIG_ENDIAN
);
109 proto_tree_add_item(netdump_tree
, hf_netdump_command
, tvb
, 12, 4, ENC_BIG_ENDIAN
);
110 proto_tree_add_item(netdump_tree
, hf_netdump_from
, tvb
, 16, 4, ENC_BIG_ENDIAN
);
111 proto_tree_add_item(netdump_tree
, hf_netdump_to
, tvb
, 20, 4, ENC_BIG_ENDIAN
);
113 /* Its a reply packet */
114 proto_tree_add_item(netdump_tree
, hf_netdump_version
, tvb
, 0, 1, ENC_BIG_ENDIAN
);
115 proto_tree_add_item(netdump_tree
, hf_netdump_seq_nr
, tvb
, 1, 4, ENC_BIG_ENDIAN
);
116 proto_tree_add_item(netdump_tree
, hf_netdump_code
, tvb
, 5, 4, ENC_BIG_ENDIAN
);
117 proto_tree_add_item(netdump_tree
, hf_netdump_info
, tvb
, 9, 4, ENC_LITTLE_ENDIAN
);
118 proto_tree_add_item(netdump_tree
, hf_netdump_payload
, tvb
, 13, -1, ENC_NA
);
123 void proto_register_netdump(void)
125 module_t
*netdump_module
;
127 /* Setup protocol subtree array */
128 static gint
*ett
[] = {
132 static hf_register_info hf
[] = {
133 { &hf_netdump_magic_number
,
134 { "Netdump Magic Number", "netdump.magic",
139 { &hf_netdump_seq_nr
,
140 {"Netdump seq number", "netdump.seq_nr",
145 { &hf_netdump_command
,
146 {"Netdump command", "netdump.command",
148 VALS(command_names
), 0x0,
152 {"Netdump from val", "netdump.from",
158 {"Netdump to val", "netdump.to",
164 {"Netdump code", "netdump.code",
166 VALS(reply_code_names
), 0x0,
170 {"Netdump info", "netdump.info",
175 { &hf_netdump_payload
,
176 {"Netdump payload", "netdump.payload",
181 { &hf_netdump_version
,
182 {"Netdump version", "netdump.version",
189 proto_netdump
= proto_register_protocol (
190 "Netdump Protocol", /* name */
191 "Netdump", /* short name */
192 "netdump" /* abbrev */
194 proto_register_field_array(proto_netdump
, hf
, array_length(hf
));
195 proto_register_subtree_array(ett
, array_length(ett
));
197 netdump_module
= prefs_register_protocol(proto_netdump
,
198 proto_reg_handoff_netdump
);
200 /* Register a sample port preference */
201 prefs_register_uint_preference(netdump_module
, "udp.port",
203 "port if other than the default",
207 void proto_reg_handoff_netdump(void)
209 static gboolean initalized
= FALSE
;
210 static dissector_handle_t netdump_handle
;
211 static int CurrentPort
;
214 netdump_handle
= create_dissector_handle(dissect_netdump
,
217 dissector_add_handle("udp.port", netdump_handle
); /* For Decode As */
220 if (CurrentPort
!= 0)
221 dissector_delete_uint("udp.port", CurrentPort
, netdump_handle
);
224 CurrentPort
= gPORT_PREF
;
226 if (CurrentPort
!= 0)
227 dissector_add_uint("udp.port", CurrentPort
, netdump_handle
);