Don't do fcn calls in arg of g_?to??(); Macro may very well eval args multiple times.
[obnox/wireshark/wip.git] / epan / dissectors / packet-egd.c
1 /* packet-egd.c
2  * Routines for Ethernet Global Data dissection
3  * EGD Home: www.gefanuc.com
4  *
5  * Copyright 2008
6  * 29 July 2008 -- ryan wamsley
7  *
8  * $Id$
9  *
10  * Wireshark - Network traffic analyzer
11  * By Gerald Combs <gerald@wireshark.org>
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 #include <string.h>
34 #include <epan/packet.h>
35
36 #define EGD_PORT 18246 /* 0x4746 */
37
38 #define EGD_ST_NONEW        0
39 #define EGD_ST_NOERROR      1
40 #define EGD_ST_CONSUMED     2
41 #define EGD_ST_SNTPERR      3
42 #define EGD_ST_SPECERR      4
43 #define EGD_ST_REFRESHERR   6
44 #define EGD_ST_REFEXDERR    7
45 #define EGD_ST_IPERR        10
46 #define EGD_ST_RESOURSEERR  12
47 #define EGD_ST_NAMERES      16
48 #define EGD_ST_ETHERR       18
49 #define EGD_ST_NOSUPPORT    22
50 #define EGD_ST_NORESP       26
51 #define EGD_ST_CREATEERR    28
52 #define EGD_ST_DELETED      30
53
54 /* Translate status to string */
55 static const value_string egd_stat_vals[] = {
56   { EGD_ST_NONEW,                  "No new status event has occurred" },
57   { EGD_ST_NOERROR,                "No error currently exists" },
58   { EGD_ST_CONSUMED,               "No error, data consumed" },
59   { EGD_ST_SNTPERR,                "SNTP error"  },
60   { EGD_ST_SPECERR,                "Specification error" },
61   { EGD_ST_REFRESHERR,             "Data refresh error" },
62   { EGD_ST_REFEXDERR,              "Data refresh period exceeded" },
63   { EGD_ST_IPERR,                  "IP Layer not currently initialized" },
64   { EGD_ST_RESOURSEERR,            "Lack of resource error" },
65   { EGD_ST_NAMERES,                "Name Resolution in progress" },
66   { EGD_ST_ETHERR,                 "Loss of Ethernet Interface error" },
67   { EGD_ST_NOSUPPORT,              "Ethernet Interface does not support EGD" },
68   { EGD_ST_NORESP,                 "No Response from Ethernet Interface" },
69   { EGD_ST_CREATEERR,              "Failed to create an exchange." },
70   { EGD_ST_DELETED,                "Configured exchange deleted." },
71   { 0,                             NULL }
72 };
73
74 static int proto_egd = -1;
75
76 static dissector_handle_t data_handle;
77
78 static int hf_egd_ver = -1;
79 static int hf_egd_type = -1;
80 static int hf_egd_rid = -1;
81 static int hf_egd_pid = -1;
82 static int hf_egd_exid = -1;
83 static int hf_egd_time = -1;
84 static int hf_egd_notime = -1;
85 static int hf_egd_stat = -1;
86 static int hf_egd_csig = -1;
87 static int hf_egd_resv = -1;
88
89 static gint ett_egd = -1;
90 static gint ett_status_item = -1;
91
92 static void dissect_egd(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
93 {
94   /* replace UDP with EGD in display */
95   col_set_str(pinfo->cinfo, COL_PROTOCOL, "EGD");
96
97   /* Clear out stuff in the info column */
98   if (check_col(pinfo->cinfo,COL_INFO))
99   {
100     col_clear(pinfo->cinfo, COL_INFO);
101     col_add_fstr(pinfo->cinfo, COL_INFO, "Data Msg: ExchangeID=0x%08X, RequestID=%05u",
102                  tvb_get_letohl(tvb, 8), tvb_get_letohs(tvb, 2));
103   }
104
105   if (tree)
106   {
107     proto_item *ti = NULL;
108     proto_item *notime = NULL;
109     proto_tree *egd_tree = NULL;
110     tvbuff_t *next_tvb = NULL;
111     gint offset, data_length;
112     guint32 sectime;
113     nstime_t egd_time;
114
115     memset(&egd_time, 0, sizeof(nstime_t));
116     offset = 0;
117
118     ti = proto_tree_add_item(tree, proto_egd, tvb, 0, -1, ENC_NA);
119     egd_tree = proto_item_add_subtree(ti, ett_egd);
120     proto_tree_add_item(egd_tree, hf_egd_type, tvb, offset, 1, ENC_LITTLE_ENDIAN);
121     offset++;
122     proto_tree_add_item(egd_tree, hf_egd_ver, tvb, offset, 1, ENC_LITTLE_ENDIAN);
123     offset++;
124     proto_tree_add_item(egd_tree, hf_egd_rid, tvb, offset, 2, ENC_LITTLE_ENDIAN);
125     offset += 2;
126     proto_tree_add_item(egd_tree, hf_egd_pid, tvb, offset, 4, ENC_BIG_ENDIAN);
127     offset += 4;
128     proto_tree_add_item(egd_tree, hf_egd_exid, tvb, offset, 4, ENC_LITTLE_ENDIAN);
129     offset += 4;
130
131     /* time */
132     sectime = tvb_get_letohl(tvb, offset);
133     if (0 == sectime)
134     {
135       notime = proto_tree_add_item(egd_tree, hf_egd_notime, tvb, offset, 8, ENC_LITTLE_ENDIAN);
136       proto_item_append_text(notime, "--No TimeStamp");
137     }
138     else
139     {
140       egd_time.secs  = tvb_get_letohl(tvb, offset);
141       egd_time.nsecs = tvb_get_letohl(tvb, offset+4);
142       proto_tree_add_time(egd_tree, hf_egd_time, tvb, offset, 8, &egd_time);
143     }
144     offset += 8;
145
146     proto_tree_add_item(egd_tree, hf_egd_stat, tvb, offset, 4, ENC_LITTLE_ENDIAN);
147     offset += 4;
148     proto_tree_add_item(egd_tree, hf_egd_csig, tvb, offset, 4, ENC_LITTLE_ENDIAN);
149     offset += 4;
150     proto_tree_add_item(egd_tree, hf_egd_resv, tvb, offset, 4, ENC_LITTLE_ENDIAN);
151     offset += 4;
152
153     data_length = tvb_length_remaining(tvb, offset);
154     if (data_length > 0)
155     {
156       next_tvb = tvb_new_subset_remaining(tvb, offset);
157       call_dissector(data_handle, next_tvb, pinfo, egd_tree);
158     }
159   }
160 }
161
162 void proto_register_egd(void)
163 {
164   static hf_register_info hf[] =
165     {
166       { &hf_egd_ver,
167         { "Version", "egd.ver",
168           FT_UINT8, BASE_DEC,
169           NULL, 0x0,
170           NULL, HFILL }
171       },
172       { &hf_egd_type,
173         { "Type", "egd.type",
174           FT_UINT8, BASE_DEC,
175           NULL, 0x0,
176           NULL, HFILL }
177       },
178       { &hf_egd_rid,
179         { "RequestID", "egd.rid",
180           FT_UINT16, BASE_DEC,
181           NULL, 0x0,
182           NULL, HFILL }
183       },
184       { &hf_egd_pid,
185         { "ProducerID", "egd.pid",
186           FT_IPv4, BASE_NONE,
187           NULL, 0x0,
188           NULL, HFILL }
189       },
190       { &hf_egd_exid,
191         { "ExchangeID", "egd.exid",
192           FT_UINT32, BASE_HEX,
193           NULL, 0x0,
194           NULL, HFILL }
195       },
196       { &hf_egd_time,
197         { "Timestamp", "egd.time",
198           FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
199           NULL, 0x0,
200           NULL, HFILL }
201       },
202       { &hf_egd_notime,
203         { "Timestamp", "egd.time",
204           FT_UINT64, BASE_HEX,
205           NULL, 0x0,
206           NULL, HFILL }
207       },
208       { &hf_egd_stat,
209         { "Status", "egd.stat",
210           FT_UINT32, BASE_DEC,
211           VALS(egd_stat_vals), 0x0,
212           NULL, HFILL }
213       },
214       { &hf_egd_csig,
215         { "ConfigSignature", "egd.csig",
216           FT_UINT32, BASE_DEC,
217           NULL, 0x0,
218           NULL, HFILL }
219       },
220       { &hf_egd_resv,
221         { "Reserved", "egd.rsrv",
222           FT_UINT32, BASE_DEC,
223           NULL, 0x0,
224           NULL, HFILL }
225       }
226     };
227
228   static gint *ett[] =
229     {
230       &ett_egd,
231       &ett_status_item
232     };
233
234   proto_egd = proto_register_protocol (
235     "Ethernet Global Data",  /* name */
236     "EGD",                   /* short name */
237     "egd"                    /* abbrev */
238     );
239   proto_register_field_array(proto_egd, hf, array_length(hf));
240   proto_register_subtree_array(ett, array_length(ett));
241 }
242
243 void proto_reg_handoff_egd(void)
244 {
245   dissector_handle_t egd_handle;
246
247   egd_handle = create_dissector_handle(dissect_egd, proto_egd);
248   dissector_add_uint("udp.port", EGD_PORT, egd_handle);
249
250   /* find data dissector */
251   data_handle = find_dissector("data");
252 }
253