- remove debugging #ifdef
[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.9 2000/08/07 03:20:27 guy 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 "dfilter.h"
47 #include "packet-ddtp.h"
48
49 static int proto_ddtp = -1;
50 static int hf_ddtp_version = -1;
51 static int hf_ddtp_encrypt = -1;
52 static int hf_ddtp_hostid = -1;
53 static int hf_ddtp_msgtype = -1;
54 static int hf_ddtp_opcode = -1;
55 static int hf_ddtp_ipaddr = -1;
56 static int hf_ddtp_status = -1;
57
58 static int ett_ddtp = -1;
59
60 #define UDP_PORT_DDTP   1052
61
62 static const value_string vals_ddtp_version[] = {
63     { DDTP_VERSION_ERROR, "Protocol Error" },
64     { DDTP_VERSION_4,     "4" },
65     { DDTP_VERSION_5,     "5" },
66     { 0, NULL}
67 };
68
69 static const value_string vals_ddtp_encrypt[] = {
70     { DDTP_ENCRYPT_ERROR,     "Encryption Error" },
71     { DDTP_ENCRYPT_PLAINTEXT, "Plain text" },
72     { DDTP_ENCRYPT_BLOWFISH,  "Blowfish" },
73     { 0, NULL}
74 };
75
76 static const value_string vals_ddtp_msgtype[] = {
77     { DDTP_MESSAGE_ERROR, "Message Error" },
78     { DDTP_UPDATE_QUERY,  "Update Query" },
79     { DDTP_UPDATE_REPLY,  "Update Reply" },
80     { DDTP_ALIVE_QUERY,   "Alive Query" },
81     { DDTP_ALIVE_REPLY,   "Alive Reply" },
82     { 0, NULL}
83 };
84
85 static const value_string vals_ddtp_opcode[] = {
86     { DDTP_MARK_ONLINE,  "Mark online" },
87     { DDTP_MARK_OFFLINE, "Mark offline" },
88     { 0, NULL}
89 };
90
91 static const value_string vals_ddtp_status[] = {
92     { DDTP_UPDATE_SUCCEEDED, "Update succeeded" },
93     { DDTP_UPDATE_FAILED,    "Update failed" },
94     { DDTP_INVALID_PASSWORD, "Invalid password" },
95     { DDTP_INVALID_ACCOUNT,  "Invalid account" },
96     { DDTP_INVALID_OPCODE,   "Invalid opcode" },
97     { 0, NULL}
98 };
99
100 static void
101 dissect_ddtp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
102 {
103     proto_tree *ddtp_tree;
104     proto_item *ti;
105
106     pinfo->current_proto = "DDTP";
107     if (check_col(pinfo->fd, COL_PROTOCOL)) {
108         /* Indicate what kind of message this is. */
109         col_add_str (pinfo->fd, COL_PROTOCOL, "DDTP");
110     }
111     if (tree) {
112         ti = proto_tree_add_item(tree, proto_ddtp, tvb, 0,
113                 tvb_length(tvb), FALSE);
114         ddtp_tree = proto_item_add_subtree(ti, ett_ddtp);
115
116         proto_tree_add_item(ddtp_tree, hf_ddtp_version, tvb, 0, 4, FALSE);
117         proto_tree_add_item(ddtp_tree, hf_ddtp_encrypt, tvb, 4, 4, FALSE);
118         proto_tree_add_item(ddtp_tree, hf_ddtp_hostid, tvb, 8, 4, FALSE);
119         if (tvb_get_ntohl(tvb, 4) == DDTP_ENCRYPT_PLAINTEXT) {
120             proto_tree_add_item(ddtp_tree, hf_ddtp_msgtype, tvb, 12, 4, FALSE);
121             switch (tvb_get_ntohl(tvb, 12)) {
122             case DDTP_MESSAGE_ERROR :
123                 if (check_col(pinfo->fd, COL_INFO))
124                     col_add_str (pinfo->fd, COL_INFO, "Message Error");
125                 break;
126             case DDTP_UPDATE_QUERY :
127                 if (check_col(pinfo->fd, COL_INFO))
128                     col_add_str (pinfo->fd, COL_INFO, "Update Query");
129                 proto_tree_add_item(ddtp_tree, hf_ddtp_opcode, tvb, 16, 4,
130                         FALSE);
131                 proto_tree_add_item(ddtp_tree, hf_ddtp_ipaddr, tvb, 20, 4,
132                         FALSE);
133                 break;
134             case DDTP_UPDATE_REPLY :
135                 if (check_col(pinfo->fd, COL_INFO))
136                     col_add_str (pinfo->fd, COL_INFO, "Update Reply");
137                 proto_tree_add_item(ddtp_tree, hf_ddtp_status, tvb, 16, 4,
138                         FALSE);
139                 break;
140             case DDTP_ALIVE_QUERY :
141                 if (check_col(pinfo->fd, COL_INFO))
142                     col_add_str (pinfo->fd, COL_INFO, "Alive Query");
143                 proto_tree_add_text(ddtp_tree, tvb, 16, 4, "Dummy : %u",
144                         tvb_get_ntohl(tvb, 16));
145                 break;
146             case DDTP_ALIVE_REPLY :
147                 if (check_col(pinfo->fd, COL_INFO))
148                     col_add_str (pinfo->fd, COL_INFO, "Alive Reply");
149                 proto_tree_add_text(ddtp_tree, tvb, 16, 4, "Dummy : %u",
150                         tvb_get_ntohl(tvb, 16));
151                 break;
152             default :
153                 if (check_col(pinfo->fd, COL_INFO))
154                     col_add_str (pinfo->fd, COL_INFO, "Unknwon type");
155                 proto_tree_add_text(ddtp_tree, tvb, 12, 4, "Unknown type : %u",
156                         tvb_get_ntohl(tvb, 12));
157             }
158         }
159    }
160 }
161
162 void
163 proto_register_ddtp(void)
164 {
165     static hf_register_info hf_ddtp[] = {
166         { &hf_ddtp_version,
167             { "Version", "ddtp.version", FT_UINT32, BASE_DEC, VALS(vals_ddtp_version), 0x0,
168                 "Version" } },
169         { &hf_ddtp_encrypt,
170             { "Encryption", "ddtp.encrypt", FT_UINT32, BASE_DEC, VALS(vals_ddtp_encrypt), 0x0,
171                 "Encryption type" } },
172         { &hf_ddtp_hostid,
173             { "Hostid", "ddtp.hostid", FT_UINT32, BASE_DEC, NULL, 0x0,
174                 "Host ID" } },
175         { &hf_ddtp_msgtype,
176             { "Message type", "ddtp.msgtype", FT_UINT32, BASE_DEC, VALS(vals_ddtp_msgtype), 0x0,
177                 "Message Type" } },
178         { &hf_ddtp_opcode,
179             { "Opcode", "ddtp.opcode", FT_UINT32, BASE_DEC, VALS(vals_ddtp_opcode), 0x0,
180                 "Update query opcode" } },
181         { &hf_ddtp_ipaddr,
182             { "IP addres", "ddtp.ipaddr", FT_IPv4, BASE_NONE, NULL, 0x0,
183                 "IP address" } },
184         { &hf_ddtp_status,
185             { "Status", "ddtp.status", FT_UINT32, BASE_DEC, VALS(vals_ddtp_status), 0x0,
186                 "Update reply status" } }
187     };
188
189     static gint *ett[] = { &ett_ddtp };
190
191     proto_ddtp = proto_register_protocol("Dynamic DNS Tools Protocol", "ddtp");
192     proto_register_field_array(proto_ddtp, hf_ddtp, array_length(hf_ddtp));
193     proto_register_subtree_array(ett, array_length(ett));
194 }
195
196 void
197 proto_reg_handoff_ddtp(void)
198 {
199     dissector_add("udp.port", UDP_PORT_DDTP, dissect_ddtp);
200 }