Jeff Foster's SOCKS dissector, support for associating dissectors
[obnox/wireshark/wip.git] / packet-udp.c
1 /* packet-udp.c
2  * Routines for UDP packet disassembly
3  *
4  * $Id: packet-udp.c,v 1.60 2000/04/12 22:53:16 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * Richard Sharpe, 13-Feb-1999, added dispatch table support and 
11  *                              support for tftp.
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 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #ifdef HAVE_SYS_TYPES_H
33 # include <sys/types.h>
34 #endif
35
36 #ifdef HAVE_NETINET_IN_H
37 # include <netinet/in.h>
38 #endif
39
40 #include <stdio.h>
41 #include <stdlib.h>
42
43 #include <glib.h>
44 #include "globals.h"
45 #include "resolv.h"
46
47 #include "plugins.h"
48
49 #include "packet-ncp.h"
50 #include "packet-rip.h"
51 #include "packet-rpc.h"
52 #include "packet-rx.h"
53 #include "packet-tftp.h"
54 #include "packet-vines.h"
55
56 static int proto_udp = -1;              
57 static int hf_udp_srcport = -1;
58 static int hf_udp_dstport = -1;
59 static int hf_udp_port = -1;
60 static int hf_udp_length = -1;
61 static int hf_udp_checksum = -1;
62
63 static gint ett_udp = -1;
64
65 /* UDP structs and definitions */
66
67 typedef struct _e_udphdr {
68   guint16 uh_sport;
69   guint16 uh_dport;
70   guint16 uh_ulen;
71   guint16 uh_sum;
72 } e_udphdr;
73
74 /* UDP Ports -> should go in packet-udp.h */
75
76 #define UDP_PORT_TFTP    69
77 #define UDP_PORT_RIP    520
78 #define UDP_PORT_NCP    524
79 #define UDP_PORT_VINES  573
80 #define UDP_PORT_RX_LOW 7000
81 #define UDP_PORT_RX_HIGH 7009
82 #define UDP_PORT_RX_AFS_BACKUPS 7021
83
84 static dissector_table_t udp_dissector_table;
85
86
87 void
88 decode_udp_ports( const u_char *pd, int offset, frame_data *fd,
89         proto_tree *tree, int uh_sport, int uh_dport){
90
91 /* Determine if there is a sub-dissector and call it.  This has been */
92 /* separated into a stand alone routine to other protocol dissectors */
93 /* can call to it, ie. socks    */
94
95   dissector_t sub_dissector;
96
97
98 /* determine if this packet is part of a conversation and call dissector */
99 /* for the conversation if available */
100
101   sub_dissector = find_conversation_dissector( &pi.src, &pi.dst, PT_UDP,
102                 uh_sport, uh_dport);
103   if (sub_dissector){
104         (sub_dissector)(pd, offset, fd, tree);
105         return;
106   }
107
108   /* ONC RPC.  We can't base this on anything in the UDP header; we have
109      to look at the payload.  If "dissect_rpc()" returns TRUE, it was
110      an RPC packet, otherwise it's some other type of packet. */
111   if (dissect_rpc(pd, offset, fd, tree))
112     return;
113
114   /* try to apply the plugins */
115 #ifdef HAVE_PLUGINS
116   {
117       plugin *pt_plug = plugin_list;
118
119       if (enabled_plugins_number > 0) {
120           while (pt_plug) {
121               if (pt_plug->enabled && !strcmp(pt_plug->protocol, "udp") &&
122                   tree && dfilter_apply(pt_plug->filter, tree, pd)) {
123                   pt_plug->dissector(pd, offset, fd, tree);
124                   return;
125               }
126               pt_plug = pt_plug->next;
127           }
128       }
129   }
130 #endif
131
132   /* XXX - we should do all of this through the table of ports. */
133 #define PORT_IS(port)   (uh_sport == port || uh_dport == port)
134   if (PORT_IS(UDP_PORT_RIP)) {
135       /* we should check the source port too (RIP: UDP src and dst port 520) */
136       dissect_rip(pd, offset, fd, tree);
137   } else if (PORT_IS(UDP_PORT_NCP))
138       dissect_ncp(pd, offset, fd, tree); /* XXX -- need to handle nw_server_address */
139   else if ((uh_sport >= UDP_PORT_RX_LOW && uh_sport <= UDP_PORT_RX_HIGH) ||
140         (uh_dport >= UDP_PORT_RX_LOW && uh_dport <= UDP_PORT_RX_HIGH) ||
141         PORT_IS(UDP_PORT_RX_AFS_BACKUPS)) 
142       dissect_rx(pd, offset, fd, tree); /* transarc AFS's RX protocol */
143   else if (PORT_IS(UDP_PORT_VINES)) {
144       /* FIXME: AFAIK, src and dst port must be the same */
145       dissect_vines_frp(pd, offset, fd, tree);
146   } else if (PORT_IS(UDP_PORT_TFTP)) {
147       /* This is the first point of call, but it adds a dynamic call */
148       dissector_add("udp.port", MAX(uh_sport, uh_dport), dissect_tftp);  /* Add to table */
149       dissect_tftp(pd, offset, fd, tree);
150  } else {
151       /* OK, find a routine in the table, else use the default */
152
153       if (!dissector_try_port(udp_dissector_table, uh_sport, pd, offset,
154                                 fd, tree) &&
155           !dissector_try_port(udp_dissector_table, uh_dport, pd, offset,
156                                 fd, tree))
157         dissect_data(pd, offset, fd, tree);
158   }
159 }
160
161
162 void
163 dissect_udp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
164   e_udphdr  uh;
165   guint16    uh_sport, uh_dport, uh_ulen, uh_sum;
166   proto_tree *udp_tree;
167   proto_item *ti;
168
169   if (!BYTES_ARE_IN_FRAME(offset, sizeof(e_udphdr))) {
170     dissect_data(pd, offset, fd, tree);
171     return;
172   }
173
174   /* Avoids alignment problems on many architectures. */
175   memcpy(&uh, &pd[offset], sizeof(e_udphdr));
176   uh_sport = ntohs(uh.uh_sport);
177   uh_dport = ntohs(uh.uh_dport);
178   uh_ulen  = ntohs(uh.uh_ulen);
179   uh_sum   = ntohs(uh.uh_sum);
180   
181   if (check_col(fd, COL_PROTOCOL))
182     col_add_str(fd, COL_PROTOCOL, "UDP");
183   if (check_col(fd, COL_INFO))
184     col_add_fstr(fd, COL_INFO, "Source port: %s  Destination port: %s",
185             get_udp_port(uh_sport), get_udp_port(uh_dport));
186     
187   if (tree) {
188     ti = proto_tree_add_item(tree, proto_udp, offset, 8);
189     udp_tree = proto_item_add_subtree(ti, ett_udp);
190
191     proto_tree_add_uint_format(udp_tree, hf_udp_srcport, offset, 2, uh_sport,
192         "Source port: %s (%u)", get_udp_port(uh_sport), uh_sport);
193     proto_tree_add_uint_format(udp_tree, hf_udp_dstport, offset + 2, 2, uh_dport,
194         "Destination port: %s (%u)", get_udp_port(uh_dport), uh_dport);
195
196     proto_tree_add_item_hidden(udp_tree, hf_udp_port, offset, 2, uh_sport);
197     proto_tree_add_item_hidden(udp_tree, hf_udp_port, offset+2, 2, uh_dport);
198
199     proto_tree_add_item(udp_tree, hf_udp_length, offset + 4, 2,  uh_ulen);
200     proto_tree_add_uint_format(udp_tree, hf_udp_checksum, offset + 6, 2, uh_sum,
201         "Checksum: 0x%04x", uh_sum);
202   }
203
204   /* Skip over header */
205   offset += 8;
206
207   pi.ptype = PT_UDP;
208   pi.srcport = uh_sport;
209   pi.destport = uh_dport;
210
211 /* call sub-dissectors */
212   decode_udp_ports( pd, offset, fd, tree, uh_sport, uh_dport);
213
214 }
215
216 void
217 proto_register_udp(void)
218 {
219         static hf_register_info hf[] = {
220                 { &hf_udp_srcport,
221                 { "Source Port",        "udp.srcport", FT_UINT16, BASE_DEC, NULL, 0x0,
222                         "" }},
223
224                 { &hf_udp_dstport,
225                 { "Destination Port",   "udp.dstport", FT_UINT16, BASE_DEC, NULL, 0x0,
226                         "" }},
227
228                 { &hf_udp_port,
229                 { "Source or Destination Port", "udp.port", FT_UINT16, BASE_DEC,  NULL, 0x0,
230                         "" }},
231
232                 { &hf_udp_length,
233                 { "Length",             "udp.length", FT_UINT16, BASE_DEC, NULL, 0x0,
234                         "" }},
235
236                 { &hf_udp_checksum,
237                 { "Checksum",           "udp.checksum", FT_UINT16, BASE_HEX, NULL, 0x0,
238                         "" }},
239         };
240         static gint *ett[] = {
241                 &ett_udp,
242         };
243
244         proto_udp = proto_register_protocol("User Datagram Protocol", "udp");
245         proto_register_field_array(proto_udp, hf, array_length(hf));
246         proto_register_subtree_array(ett, array_length(ett));
247
248 /* subdissector code */
249         udp_dissector_table = register_dissector_table(hf_udp_port);
250 }