Tvbuffify the VRRP dissector, and add code to check the checksum.
[obnox/wireshark/wip.git] / packet-ddtp.c
1 /* packet-ddtp.c
2  * Routines for DDTP (Dynamic DNS Tools Protocol) packet disassembly
3  * see http://ddt.sourceforge.net/
4  * Olivier Abad <oabad@cybercable.fr>
5  *
6  * $Id: packet-ddtp.c,v 1.13 2001/01/04 04:44:02 gram Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@zing.org>
10  * Copyright 2000
11  *
12  * 
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  * 
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  *
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #ifdef HAVE_SYS_TYPES_H
34 #include <sys/types.h>
35 #endif
36
37 /*#include <string.h>
38 #include <ctype.h>
39 #include <time.h>*/
40
41 #include <glib.h>
42 #ifdef HAVE_NETINET_IN_H
43 # include <netinet/in.h>
44 #endif
45 #include "packet.h"
46 #include "packet-ddtp.h"
47
48 static int proto_ddtp = -1;
49 static int hf_ddtp_version = -1;
50 static int hf_ddtp_encrypt = -1;
51 static int hf_ddtp_hostid = -1;
52 static int hf_ddtp_msgtype = -1;
53 static int hf_ddtp_opcode = -1;
54 static int hf_ddtp_ipaddr = -1;
55 static int hf_ddtp_status = -1;
56
57 static int ett_ddtp = -1;
58
59 #define UDP_PORT_DDTP   1052
60
61 static const value_string vals_ddtp_version[] = {
62     { DDTP_VERSION_ERROR, "Protocol Error" },
63     { DDTP_VERSION_4,     "4" },
64     { DDTP_VERSION_5,     "5" },
65     { 0, NULL}
66 };
67
68 static const value_string vals_ddtp_encrypt[] = {
69     { DDTP_ENCRYPT_ERROR,     "Encryption Error" },
70     { DDTP_ENCRYPT_PLAINTEXT, "Plain text" },
71     { DDTP_ENCRYPT_BLOWFISH,  "Blowfish" },
72     { 0, NULL}
73 };
74
75 static const value_string vals_ddtp_msgtype[] = {
76     { DDTP_MESSAGE_ERROR, "Message Error" },
77     { DDTP_UPDATE_QUERY,  "Update Query" },
78     { DDTP_UPDATE_REPLY,  "Update Reply" },
79     { DDTP_ALIVE_QUERY,   "Alive Query" },
80     { DDTP_ALIVE_REPLY,   "Alive Reply" },
81     { 0, NULL}
82 };
83
84 static const value_string vals_ddtp_opcode[] = {
85     { DDTP_MARK_ONLINE,  "Mark online" },
86     { DDTP_MARK_OFFLINE, "Mark offline" },
87     { 0, NULL}
88 };
89
90 static const value_string vals_ddtp_status[] = {
91     { DDTP_UPDATE_SUCCEEDED, "Update succeeded" },
92     { DDTP_UPDATE_FAILED,    "Update failed" },
93     { DDTP_INVALID_PASSWORD, "Invalid password" },
94     { DDTP_INVALID_ACCOUNT,  "Invalid account" },
95     { DDTP_INVALID_OPCODE,   "Invalid opcode" },
96     { 0, NULL}
97 };
98
99 static void
100 dissect_ddtp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
101 {
102     proto_tree *ddtp_tree;
103     proto_item *ti;
104
105     CHECK_DISPLAY_AS_DATA(proto_ddtp, tvb, pinfo, tree);
106
107     pinfo->current_proto = "DDTP";
108     if (check_col(pinfo->fd, COL_PROTOCOL)) {
109         /* Indicate what kind of message this is. */
110         col_set_str (pinfo->fd, COL_PROTOCOL, "DDTP");
111     }
112     if (tree) {
113         ti = proto_tree_add_item(tree, proto_ddtp, tvb, 0,
114                 tvb_length(tvb), FALSE);
115         ddtp_tree = proto_item_add_subtree(ti, ett_ddtp);
116
117         proto_tree_add_item(ddtp_tree, hf_ddtp_version, tvb, 0, 4, FALSE);
118         proto_tree_add_item(ddtp_tree, hf_ddtp_encrypt, tvb, 4, 4, FALSE);
119         proto_tree_add_item(ddtp_tree, hf_ddtp_hostid, tvb, 8, 4, FALSE);
120         if (tvb_get_ntohl(tvb, 4) == DDTP_ENCRYPT_PLAINTEXT) {
121             proto_tree_add_item(ddtp_tree, hf_ddtp_msgtype, tvb, 12, 4, FALSE);
122             switch (tvb_get_ntohl(tvb, 12)) {
123             case DDTP_MESSAGE_ERROR :
124                 if (check_col(pinfo->fd, COL_INFO))
125                     col_set_str (pinfo->fd, COL_INFO, "Message Error");
126                 break;
127             case DDTP_UPDATE_QUERY :
128                 if (check_col(pinfo->fd, COL_INFO))
129                     col_set_str (pinfo->fd, COL_INFO, "Update Query");
130                 proto_tree_add_item(ddtp_tree, hf_ddtp_opcode, tvb, 16, 4,
131                         FALSE);
132                 proto_tree_add_item(ddtp_tree, hf_ddtp_ipaddr, tvb, 20, 4,
133                         FALSE);
134                 break;
135             case DDTP_UPDATE_REPLY :
136                 if (check_col(pinfo->fd, COL_INFO))
137                     col_set_str (pinfo->fd, COL_INFO, "Update Reply");
138                 proto_tree_add_item(ddtp_tree, hf_ddtp_status, tvb, 16, 4,
139                         FALSE);
140                 break;
141             case DDTP_ALIVE_QUERY :
142                 if (check_col(pinfo->fd, COL_INFO))
143                     col_set_str (pinfo->fd, COL_INFO, "Alive Query");
144                 proto_tree_add_text(ddtp_tree, tvb, 16, 4, "Dummy : %u",
145                         tvb_get_ntohl(tvb, 16));
146                 break;
147             case DDTP_ALIVE_REPLY :
148                 if (check_col(pinfo->fd, COL_INFO))
149                     col_set_str (pinfo->fd, COL_INFO, "Alive Reply");
150                 proto_tree_add_text(ddtp_tree, tvb, 16, 4, "Dummy : %u",
151                         tvb_get_ntohl(tvb, 16));
152                 break;
153             default :
154                 if (check_col(pinfo->fd, COL_INFO))
155                     col_set_str (pinfo->fd, COL_INFO, "Unknwon type");
156                 proto_tree_add_text(ddtp_tree, tvb, 12, 4, "Unknown type : %u",
157                         tvb_get_ntohl(tvb, 12));
158             }
159         }
160    }
161 }
162
163 void
164 proto_register_ddtp(void)
165 {
166     static hf_register_info hf_ddtp[] = {
167         { &hf_ddtp_version,
168             { "Version", "ddtp.version", FT_UINT32, BASE_DEC, VALS(vals_ddtp_version), 0x0,
169                 "Version" } },
170         { &hf_ddtp_encrypt,
171             { "Encryption", "ddtp.encrypt", FT_UINT32, BASE_DEC, VALS(vals_ddtp_encrypt), 0x0,
172                 "Encryption type" } },
173         { &hf_ddtp_hostid,
174             { "Hostid", "ddtp.hostid", FT_UINT32, BASE_DEC, NULL, 0x0,
175                 "Host ID" } },
176         { &hf_ddtp_msgtype,
177             { "Message type", "ddtp.msgtype", FT_UINT32, BASE_DEC, VALS(vals_ddtp_msgtype), 0x0,
178                 "Message Type" } },
179         { &hf_ddtp_opcode,
180             { "Opcode", "ddtp.opcode", FT_UINT32, BASE_DEC, VALS(vals_ddtp_opcode), 0x0,
181                 "Update query opcode" } },
182         { &hf_ddtp_ipaddr,
183             { "IP addres", "ddtp.ipaddr", FT_IPv4, BASE_NONE, NULL, 0x0,
184                 "IP address" } },
185         { &hf_ddtp_status,
186             { "Status", "ddtp.status", FT_UINT32, BASE_DEC, VALS(vals_ddtp_status), 0x0,
187                 "Update reply status" } }
188     };
189
190     static gint *ett[] = { &ett_ddtp };
191
192     proto_ddtp = proto_register_protocol("Dynamic DNS Tools Protocol",
193                                          "DDTP", "ddtp");
194     proto_register_field_array(proto_ddtp, hf_ddtp, array_length(hf_ddtp));
195     proto_register_subtree_array(ett, array_length(ett));
196 }
197
198 void
199 proto_reg_handoff_ddtp(void)
200 {
201     dissector_add("udp.port", UDP_PORT_DDTP, dissect_ddtp);
202 }