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