Updates to the TODO list.
[metze/wireshark/wip.git] / packet-tsp.c
1 /* packet-quake.c
2  * Routines for Time Synchronization Protocol (TSP) packet dissection
3  *
4  * Uwe Girlich <Uwe.Girlich@philosys.de>
5  *
6  * $Id: packet-tsp.c,v 1.3 2002/08/28 21:00:36 jmayer Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@ethereal.com>
10  * Copyright 1998 Gerald Combs
11  *
12  * Copied from packet-quake.c
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 <glib.h>
34 #include <epan/packet.h>
35
36 /*
37  * For a full documentation of the Time Synchronization Protocol (TSP) see:
38  * http://docs.freebsd.org/44doc/smm/12.timed/paper.pdf
39  */
40
41 static int proto_tsp = -1;
42 static int hf_tsp_type = -1;
43 static int hf_tsp_vers = -1;
44 static int hf_tsp_seq = -1;
45 static int hf_tsp_hopcnt = -1;
46 static int hf_tsp_time_sec = -1;
47 static int hf_tsp_time_usec = -1;
48 static int hf_tsp_name = -1;
49
50 static gint ett_tsp = -1;
51
52 static dissector_handle_t       tsp_handle;
53
54
55 /* timed port from /etc/services */
56 #define UDP_PORT_TIMED  525
57
58
59 static const value_string names_tsp_type[] = {
60 #define TSP_ANY                 0       /* match any types */
61         {       TSP_ANY, "any" },
62 #define TSP_ADJTIME             1       /* send adjtime */
63         {       TSP_ADJTIME, "adjtime" },
64 #define TSP_ACK                 2       /* generic acknowledgement */
65         {       TSP_ACK, "ack" },
66 #define TSP_MASTERREQ           3       /* ask for master's name */
67         {       TSP_MASTERREQ, "masterreq" },
68 #define TSP_MASTERACK           4       /* acknowledge master request */
69         {       TSP_MASTERACK, "masterack" },
70 #define TSP_SETTIME             5       /* send network time */
71         {       TSP_SETTIME, "settime" },
72 #define TSP_MASTERUP            6       /* inform slaves that master is up */
73         {       TSP_MASTERUP, "masterup" },
74 #define TSP_SLAVEUP             7       /* slave is up but not polled */
75         {       TSP_SLAVEUP, "slaveup" },
76 #define TSP_ELECTION            8       /* advance candidature for master */
77         {       TSP_ELECTION, "election" },
78 #define TSP_ACCEPT              9       /* support candidature of master */
79         {       TSP_ACCEPT, "accept" },
80 #define TSP_REFUSE              10      /* reject candidature of master */
81         {       TSP_REFUSE, "refuse" },
82 #define TSP_CONFLICT            11      /* two or more masters present */
83         {       TSP_CONFLICT, "conflict" },
84 #define TSP_RESOLVE             12      /* masters' conflict resolution */
85         {       TSP_RESOLVE, "resolve" },
86 #define TSP_QUIT                13      /* reject candidature if master is up */
87         {       TSP_QUIT, "quit" },
88 #define TSP_DATE                14      /* reset the time (date command) */
89         {       TSP_DATE, "date" },
90 #define TSP_DATEREQ             15      /* remote request to reset the time */
91         {       TSP_DATEREQ, "datereq" },
92 #define TSP_DATEACK             16      /* acknowledge time setting  */
93         {       TSP_DATEACK, "dateack" },
94 #define TSP_TRACEON             17      /* turn tracing on */
95         {       TSP_TRACEON, "traceon" },
96 #define TSP_TRACEOFF            18      /* turn tracing off */
97         {       TSP_TRACEOFF, "traceoff" },
98 #define TSP_MSITE               19      /* find out master's site */
99         {       TSP_MSITE, "msite" },
100 #define TSP_MSITEREQ            20      /* remote master's site request */
101         {       TSP_MSITEREQ, "msitereq" },
102 #define TSP_TEST                21      /* for testing election algo */
103         {       TSP_TEST, "test" },
104 #define TSP_SETDATE             22      /* New from date command */
105         {       TSP_SETDATE, "setdate" },
106 #define TSP_SETDATEREQ          23      /* New remote for above */
107         {       TSP_SETDATEREQ, "setdatereq" },
108 #define TSP_LOOP                24      /* loop detection packet */
109         {       TSP_LOOP, "loop" },
110         { 0, NULL }
111 };
112
113
114 static void
115 dissect_tsp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
116 {
117         proto_tree      *tsp_tree = NULL;
118         proto_item      *tsp_item = NULL;
119
120         guint8          tsp_type;
121         guint8          tsp_vers;
122         guint16         tsp_seq;
123         guint32         tsp_time_sec;
124         guint32         tsp_time_usec;
125         guint8          tsp_hopcnt;
126         gint            tsp_name_length;
127         guint8          tsp_name[256];
128
129         if (check_col(pinfo->cinfo, COL_PROTOCOL))
130                 col_set_str(pinfo->cinfo, COL_PROTOCOL, "TSP");
131         if (check_col(pinfo->cinfo, COL_INFO))
132                 col_clear(pinfo->cinfo, COL_INFO);
133
134         tsp_type = tvb_get_guint8(tvb, 0);
135         tsp_vers = tvb_get_guint8(tvb, 1);
136         tsp_seq = tvb_get_ntohs(tvb, 2);
137
138         if (tree) {
139                 tsp_item = proto_tree_add_item(tree, proto_tsp,
140                                 tvb, 0, -1, FALSE);
141                 if (tsp_item)
142                         tsp_tree = proto_item_add_subtree(tsp_item, ett_tsp);
143         }
144
145         if (tsp_tree) {
146                 proto_tree_add_uint(tsp_tree, hf_tsp_type,
147                         tvb, 0, 1, tsp_type);
148                 proto_tree_add_uint(tsp_tree, hf_tsp_vers,
149                         tvb, 1, 1, tsp_vers);
150                 proto_tree_add_uint(tsp_tree, hf_tsp_seq,
151                         tvb, 2, 2, tsp_seq);
152         }
153
154         if (tsp_type == TSP_LOOP) {
155                 tsp_hopcnt = tvb_get_guint8(tvb, 4);
156                 if (tsp_tree)
157                         proto_tree_add_uint(tsp_tree, hf_tsp_hopcnt,
158                                 tvb, 4, 1, tsp_type);
159         }
160
161         if (tsp_type == TSP_SETTIME ||
162                 tsp_type == TSP_ADJTIME ||
163                 tsp_type == TSP_SETDATE ||
164                 tsp_type == TSP_SETDATEREQ) {
165
166                 tsp_time_sec = tvb_get_ntohl(tvb, 4);
167                 if (tsp_tree)
168                         proto_tree_add_uint(tsp_tree, hf_tsp_time_sec,
169                                 tvb, 4, 4, tsp_time_sec);
170                 tsp_time_usec = tvb_get_ntohl(tvb, 8);
171                 if (tsp_tree)
172                         proto_tree_add_uint(tsp_tree, hf_tsp_time_usec,
173                                 tvb, 8, 4, tsp_time_usec);
174         }
175
176         tsp_name_length = tvb_get_nstringz(tvb, 12, 256, tsp_name);
177         if (tsp_name_length>0 && tsp_tree) {
178                 proto_tree_add_string(tsp_tree, hf_tsp_name, tvb, 12,
179                         tsp_name_length, tsp_name);
180         }
181 }
182
183
184 void
185 proto_reg_handoff_tsp(void)
186 {
187         dissector_add("udp.port", UDP_PORT_TIMED, tsp_handle);
188 }
189
190
191 void
192 proto_register_tsp(void)
193 {
194   static hf_register_info hf[] = {
195     { &hf_tsp_type,
196       { "Type", "tsp.type",
197         FT_UINT8, BASE_DEC, VALS(names_tsp_type), 0x0,
198         "Packet Type", HFILL }},
199     { &hf_tsp_vers,
200       { "Version", "tsp.version",
201         FT_UINT8, BASE_DEC, NULL, 0x0,
202         "Protocol Version Number", HFILL }},
203     { &hf_tsp_seq,
204       { "Sequence", "tsp.sequence",
205         FT_UINT16, BASE_DEC, NULL, 0x0,
206         "Sequence Number", HFILL }},
207     { &hf_tsp_hopcnt,
208       { "Hop Count", "tsp.hopcnt",
209         FT_UINT8, BASE_DEC, NULL, 0x0,
210         "Hop Count", HFILL }},
211     { &hf_tsp_time_sec,
212       { "Seconds", "tsp.sec",
213         FT_UINT32, BASE_DEC, NULL, 0x0,
214         "Seconds", HFILL }},
215     { &hf_tsp_time_usec,
216       { "Microseconds", "tsp.usec",
217         FT_UINT32, BASE_DEC, NULL, 0x0,
218         "Microseconds", HFILL }},
219     { &hf_tsp_name,
220       { "Machine Name", "tsp.name",
221         FT_STRING, BASE_DEC, NULL, 0x0,
222         "Sender Machine Name", HFILL }}
223   };
224         static gint *ett[] = {
225                 &ett_tsp
226         };
227
228         proto_tsp = proto_register_protocol("Time Synchronization Protocol",
229                                         "TSP", "tsp");
230         proto_register_field_array(proto_tsp, hf, array_length(hf));
231         proto_register_subtree_array(ett, array_length(ett));
232
233         tsp_handle = create_dissector_handle(dissect_tsp, proto_tsp);
234 }
235