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