Update Free Software Foundation address.
[metze/wireshark/wip.git] / epan / dissectors / packet-xyplex.c
1 /* packet-xyplex.c
2  * Routines for xyplex packet dissection
3  *
4  * Copyright 2002 Randy McEoin <rmceoin@pe.com>
5  *
6  * $Id$
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * Copied from packet-tftp.c
13  *
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27  */
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <glib.h>
34 #include <epan/packet.h>
35 #include <epan/conversation.h>
36
37 static int proto_xyplex = -1;
38 static int hf_xyplex_type = -1;
39 static int hf_xyplex_pad = -1;
40 static int hf_xyplex_server_port = -1;
41 static int hf_xyplex_return_port = -1;
42 static int hf_xyplex_reserved = -1;
43 static int hf_xyplex_reply = -1;
44
45 static gint ett_xyplex = -1;
46
47 static dissector_handle_t xyplex_handle;
48
49 #define UDP_PORT_XYPLEX    173
50
51 #define XYPLEX_REG_OK           0x00
52 #define XYPLEX_REG_QUEFULL      0x05
53
54 static const value_string xyplex_reg_vals[] = {
55   { XYPLEX_REG_OK,      "OK" },
56   { XYPLEX_REG_QUEFULL, "Queue Full" },
57   { 0,          NULL }
58 };
59
60 static int
61 dissect_xyplex(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
62 {
63         proto_tree      *xyplex_tree = NULL;
64         proto_item      *ti;
65         conversation_t  *conversation;
66         gint            offset = 0;
67
68         guint8          prototype;
69         guint8          padding;
70         guint16         server_port;
71         guint16         return_port;
72         guint16         reserved;
73         guint16         reply;
74
75         col_set_str(pinfo->cinfo, COL_PROTOCOL, "XYPLEX");
76
77         if (tree) {
78           ti = proto_tree_add_item(tree, proto_xyplex, tvb, offset, -1, ENC_NA);
79           xyplex_tree = proto_item_add_subtree(ti, ett_xyplex);
80         }
81
82         if (pinfo->destport == UDP_PORT_XYPLEX) {
83                 /* This is a registration request from a Unix server
84                  * to the Xyplex server.  The server_port indicates
85                  * which Xyplex serial port is desired.  The
86                  * return_port tells the Xyplex server what TCP port
87                  * to open to the Unix server.
88                  */
89                 prototype = tvb_get_guint8(tvb, offset);
90                 padding = tvb_get_guint8(tvb, offset+1);
91                 server_port = tvb_get_ntohs(tvb, offset+2);
92                 return_port = tvb_get_ntohs(tvb, offset+4);
93                 reserved = tvb_get_ntohs(tvb, offset+6);
94                 if (check_col(pinfo->cinfo, COL_INFO)) {
95                   col_add_fstr(pinfo->cinfo, COL_INFO,
96                           "Registration Request: %d Return: %d",
97                           server_port, return_port);
98                 }
99                 if (tree) {
100                   proto_tree_add_uint(xyplex_tree, hf_xyplex_type, tvb,
101                                     offset, 1, prototype);
102                   proto_tree_add_uint(xyplex_tree, hf_xyplex_pad, tvb,
103                                     offset+1, 1, padding);
104                   proto_tree_add_uint(xyplex_tree, hf_xyplex_server_port, tvb,
105                                     offset+2, 2, server_port);
106                   proto_tree_add_uint(xyplex_tree, hf_xyplex_return_port, tvb,
107                                     offset+4, 2, return_port);
108                   proto_tree_add_uint(xyplex_tree, hf_xyplex_reserved, tvb,
109                                     offset+6, 2, reserved);
110                 }
111                 offset += 8;
112
113                 /* Look for all future TCP conversations between the
114                  * requestiong server and the Xyplex host using the
115                  * return_port.
116                  */
117                 conversation = find_conversation(pinfo->fd->num, &pinfo->src, &pinfo->dst,
118                                   PT_TCP, return_port, 0, NO_PORT_B);
119                 if (conversation == NULL) {
120                     conversation = conversation_new(pinfo->fd->num, &pinfo->src, &pinfo->dst,
121                                     PT_TCP, return_port, 0, NO_PORT2);
122                     conversation_set_dissector(conversation, xyplex_handle);
123                 }
124                 return offset;
125         }
126
127         if (pinfo->srcport == UDP_PORT_XYPLEX) {
128                 prototype = tvb_get_guint8(tvb, offset);
129                 padding = tvb_get_guint8(tvb, offset+1);
130                 reply = tvb_get_ntohs(tvb, offset+2);
131                 if (check_col(pinfo->cinfo, COL_INFO)) {
132                   col_add_fstr(pinfo->cinfo, COL_INFO, "Registration Reply: %s",
133                         val_to_str(reply, xyplex_reg_vals, "Unknown (0x%02x)"));
134                 }
135                 if (tree) {
136                   proto_tree_add_uint(xyplex_tree, hf_xyplex_type, tvb,
137                                     offset, 1, prototype);
138                   proto_tree_add_uint(xyplex_tree, hf_xyplex_pad, tvb,
139                                     offset+1, 1, padding);
140                   proto_tree_add_uint(xyplex_tree, hf_xyplex_reply, tvb,
141                                     offset+2, 2, reply);
142                 }
143                 offset += 4;
144                 return offset;
145         }
146
147         /*
148          * This must be the TCP data stream.  This will just be
149          * the raw data being transfered from the remote server
150          * and the Xyplex serial port.
151          */
152         if (check_col(pinfo->cinfo, COL_INFO)) {
153           col_add_fstr(pinfo->cinfo, COL_INFO, "%d > %d Data",
154                   pinfo->srcport, pinfo->destport);
155         }
156         if (tree) {
157           proto_tree_add_text(xyplex_tree, tvb, offset, -1,
158                 "Data (%d bytes)", tvb_reported_length_remaining(tvb, offset));
159         }
160         return tvb_reported_length_remaining(tvb, offset);
161 }
162
163
164 void
165 proto_register_xyplex(void)
166 {
167   static hf_register_info hf[] = {
168     { &hf_xyplex_type,
169       { "Type",       "xyplex.type",
170         FT_UINT8, BASE_DEC, NULL, 0x0,
171         "Protocol type", HFILL }},
172
173     { &hf_xyplex_pad,
174       { "Pad",        "xyplex.pad",
175         FT_UINT8, BASE_DEC, NULL, 0x0,
176         "Padding", HFILL }},
177
178     { &hf_xyplex_server_port,
179       { "Server Port",        "xyplex.server_port",
180         FT_UINT16, BASE_DEC, NULL, 0x0,
181         NULL, HFILL }},
182
183     { &hf_xyplex_return_port,
184       { "Return Port",   "xyplex.return_port",
185         FT_UINT16, BASE_DEC, NULL, 0x0,
186         NULL, HFILL }},
187
188     { &hf_xyplex_reserved,
189       { "Reserved field",  "xyplex.reserved",
190         FT_UINT16, BASE_DEC, NULL, 0x0,
191         NULL, HFILL }},
192
193     { &hf_xyplex_reply,
194       { "Registration Reply",  "xyplex.reply",
195         FT_UINT16, BASE_DEC, VALS(xyplex_reg_vals), 0x0,
196         NULL, HFILL }},
197
198   };
199   static gint *ett[] = {
200     &ett_xyplex,
201   };
202
203   proto_xyplex = proto_register_protocol("Xyplex", "XYPLEX", "xyplex");
204   proto_register_field_array(proto_xyplex, hf, array_length(hf));
205   proto_register_subtree_array(ett, array_length(ett));
206 }
207
208 void
209 proto_reg_handoff_xyplex(void)
210 {
211   xyplex_handle = new_create_dissector_handle(dissect_xyplex, proto_xyplex);
212   dissector_add_uint("udp.port", UDP_PORT_XYPLEX, xyplex_handle);
213 }
214