Register all the AFS ports in "proto_reg_handoff_rx()", rather than
[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.64 2000/04/14 06:42:50 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_NCP    524
78 #define UDP_PORT_VINES  573
79
80 static dissector_table_t udp_dissector_table;
81
82
83 void
84 decode_udp_ports( const u_char *pd, int offset, frame_data *fd,
85         proto_tree *tree, int uh_sport, int uh_dport){
86
87 /* Determine if there is a sub-dissector and call it.  This has been */
88 /* separated into a stand alone routine to other protocol dissectors */
89 /* can call to it, ie. socks    */
90
91   dissector_t sub_dissector;
92
93
94 /* determine if this packet is part of a conversation and call dissector */
95 /* for the conversation if available */
96
97   sub_dissector = find_conversation_dissector( &pi.src, &pi.dst, PT_UDP,
98                 uh_sport, uh_dport);
99   if (sub_dissector){
100         (sub_dissector)(pd, offset, fd, tree);
101         return;
102   }
103
104   /* ONC RPC.  We can't base this on anything in the UDP header; we have
105      to look at the payload.  If "dissect_rpc()" returns TRUE, it was
106      an RPC packet, otherwise it's some other type of packet. */
107   if (dissect_rpc(pd, offset, fd, tree))
108     return;
109
110   /* try to apply the plugins */
111 #ifdef HAVE_PLUGINS
112   {
113       plugin *pt_plug = plugin_list;
114
115       if (enabled_plugins_number > 0) {
116           while (pt_plug) {
117               if (pt_plug->enabled && !strcmp(pt_plug->protocol, "udp") &&
118                   tree && dfilter_apply(pt_plug->filter, tree, pd, fd->cap_len)) {
119                   pt_plug->dissector(pd, offset, fd, tree);
120                   return;
121               }
122               pt_plug = pt_plug->next;
123           }
124       }
125   }
126 #endif
127
128   /* XXX - we should do all of this through the table of ports. */
129 #define PORT_IS(port)   (uh_sport == port || uh_dport == port)
130   if (PORT_IS(UDP_PORT_NCP))
131       dissect_ncp(pd, offset, fd, tree); /* XXX -- need to handle nw_server_address */
132   else if (PORT_IS(UDP_PORT_VINES)) {
133       /* FIXME: AFAIK, src and dst port must be the same */
134       dissect_vines_frp(pd, offset, fd, tree);
135   } else if (PORT_IS(UDP_PORT_TFTP)) {
136       /* This is the first point of call, but it adds a dynamic call */
137       dissector_add("udp.port", MAX(uh_sport, uh_dport), dissect_tftp);  /* Add to table */
138       dissect_tftp(pd, offset, fd, tree);
139  } else {
140       /* OK, find a routine in the table, else use the default */
141
142       if (!dissector_try_port(udp_dissector_table, uh_sport, pd, offset,
143                                 fd, tree) &&
144           !dissector_try_port(udp_dissector_table, uh_dport, pd, offset,
145                                 fd, tree))
146         dissect_data(pd, offset, fd, tree);
147   }
148 }
149
150
151 void
152 dissect_udp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) {
153   e_udphdr  uh;
154   guint16    uh_sport, uh_dport, uh_ulen, uh_sum;
155   proto_tree *udp_tree;
156   proto_item *ti;
157
158   if (!BYTES_ARE_IN_FRAME(offset, sizeof(e_udphdr))) {
159     dissect_data(pd, offset, fd, tree);
160     return;
161   }
162
163   /* Avoids alignment problems on many architectures. */
164   memcpy(&uh, &pd[offset], sizeof(e_udphdr));
165   uh_sport = ntohs(uh.uh_sport);
166   uh_dport = ntohs(uh.uh_dport);
167   uh_ulen  = ntohs(uh.uh_ulen);
168   uh_sum   = ntohs(uh.uh_sum);
169   
170   if (check_col(fd, COL_PROTOCOL))
171     col_add_str(fd, COL_PROTOCOL, "UDP");
172   if (check_col(fd, COL_INFO))
173     col_add_fstr(fd, COL_INFO, "Source port: %s  Destination port: %s",
174             get_udp_port(uh_sport), get_udp_port(uh_dport));
175     
176   if (tree) {
177     ti = proto_tree_add_item(tree, proto_udp, offset, 8);
178     udp_tree = proto_item_add_subtree(ti, ett_udp);
179
180     proto_tree_add_uint_format(udp_tree, hf_udp_srcport, offset, 2, uh_sport,
181         "Source port: %s (%u)", get_udp_port(uh_sport), uh_sport);
182     proto_tree_add_uint_format(udp_tree, hf_udp_dstport, offset + 2, 2, uh_dport,
183         "Destination port: %s (%u)", get_udp_port(uh_dport), uh_dport);
184
185     proto_tree_add_item_hidden(udp_tree, hf_udp_port, offset, 2, uh_sport);
186     proto_tree_add_item_hidden(udp_tree, hf_udp_port, offset+2, 2, uh_dport);
187
188     proto_tree_add_item(udp_tree, hf_udp_length, offset + 4, 2,  uh_ulen);
189     proto_tree_add_uint_format(udp_tree, hf_udp_checksum, offset + 6, 2, uh_sum,
190         "Checksum: 0x%04x", uh_sum);
191   }
192
193   /* Skip over header */
194   offset += 8;
195
196   pi.ptype = PT_UDP;
197   pi.srcport = uh_sport;
198   pi.destport = uh_dport;
199
200 /* call sub-dissectors */
201   decode_udp_ports( pd, offset, fd, tree, uh_sport, uh_dport);
202
203 }
204
205 void
206 proto_register_udp(void)
207 {
208         static hf_register_info hf[] = {
209                 { &hf_udp_srcport,
210                 { "Source Port",        "udp.srcport", FT_UINT16, BASE_DEC, NULL, 0x0,
211                         "" }},
212
213                 { &hf_udp_dstport,
214                 { "Destination Port",   "udp.dstport", FT_UINT16, BASE_DEC, NULL, 0x0,
215                         "" }},
216
217                 { &hf_udp_port,
218                 { "Source or Destination Port", "udp.port", FT_UINT16, BASE_DEC,  NULL, 0x0,
219                         "" }},
220
221                 { &hf_udp_length,
222                 { "Length",             "udp.length", FT_UINT16, BASE_DEC, NULL, 0x0,
223                         "" }},
224
225                 { &hf_udp_checksum,
226                 { "Checksum",           "udp.checksum", FT_UINT16, BASE_HEX, NULL, 0x0,
227                         "" }},
228         };
229         static gint *ett[] = {
230                 &ett_udp,
231         };
232
233         proto_udp = proto_register_protocol("User Datagram Protocol", "udp");
234         proto_register_field_array(proto_udp, hf, array_length(hf));
235         proto_register_subtree_array(ett, array_length(ett));
236
237 /* subdissector code */
238         udp_dissector_table = register_dissector_table("udp.port");
239 }