Replace the types from sys/types.h and netinet/in.h by their glib.h
[obnox/wireshark/wip.git] / packet-chdlc.c
1 /* packet-chdlc.c
2  * Routines for Cisco HDLC packet disassembly
3  *
4  * $Id: packet-chdlc.c,v 1.14 2002/08/02 23:35:48 jmayer Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  * 
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <glib.h>
30 #include <epan/packet.h>
31 #include "etypes.h"
32 #include <epan/resolv.h>
33 #include "packet-chdlc.h"
34 #include "packet-ip.h"
35
36 /*
37  * See section 4.3.1 of RFC 1547, and
38  *
39  *      http://www.nethelp.no/net/cisco-hdlc.txt
40  */
41
42 static int proto_chdlc = -1;
43 static int hf_chdlc_addr = -1;
44 static int hf_chdlc_proto = -1;
45
46 static gint ett_chdlc = -1;
47
48 static int proto_slarp = -1;
49 static int hf_slarp_ptype = -1;
50 static int hf_slarp_address = -1;
51 static int hf_slarp_mysequence = -1;
52 static int hf_slarp_yoursequence = -1;
53
54 static gint ett_slarp = -1;
55
56 static dissector_handle_t data_handle;
57
58 /*
59  * Protocol types for the Cisco HDLC format.
60  *
61  * As per the above, according to RFC 1547, these are "standard 16 bit
62  * Ethernet protocol type code[s]", but 0x8035 is Reverse ARP, and
63  * that is (at least according to the Linux ISDN code) not the
64  * same as Cisco SLARP.
65  *
66  * In addition, 0x2000 is apparently the Cisco Discovery Protocol, but
67  * on Ethernet those are encapsulated inside SNAP with an OUI of
68  * OUI_CISCO, not OUI_ENCAP_ETHER.
69  *
70  * Perhaps we should set up a protocol table for those protocols
71  * that differ between Ethernet and Cisco HDLC, and have the PPP
72  * code first try that table and, if it finds nothing in that
73  * table, call "ethertype()".  (Unfortunately, that means that -
74  * assuming we had a Cisco SLARP dissector - said dissector were
75  * disabled, SLARP packets would be dissected as Reverse ARP
76  * packets, not as data.)
77  */
78 #define CISCO_SLARP     0x8035  /* Cisco SLARP protocol */
79
80 static dissector_table_t subdissector_table;
81
82 static const value_string chdlc_address_vals[] = {
83         {CHDLC_ADDR_UNICAST,   "Unicast"},
84         {CHDLC_ADDR_MULTICAST, "Multicast"},
85         {0,                    NULL}
86 };
87
88 const value_string chdlc_vals[] = {
89         {0x2000,              "Cisco Discovery Protocol"},
90         {ETHERTYPE_IP,        "IP"},
91         {CISCO_SLARP,         "SLARP"},
92         {ETHERTYPE_DEC_LB,    "DEC LanBridge"},
93         {ETHERTYPE_ATALK,     "Appletalk"},
94         {ETHERTYPE_AARP,      "AARP"},
95         {ETHERTYPE_IPX,       "Netware IPX/SPX"},
96         {ETHERTYPE_ETHBRIDGE, "Transparent Ethernet bridging" },
97         {0,                   NULL}
98 };
99
100 void
101 capture_chdlc( const guchar *pd, int offset, int len, packet_counts *ld ) {
102   if (!BYTES_ARE_IN_FRAME(offset, len, 2)) {
103     ld->other++;
104     return;
105   }
106   switch (pntohs(&pd[offset + 2])) {
107     case ETHERTYPE_IP:
108       capture_ip(pd, offset + 4, len, ld);
109       break;
110     default:
111       ld->other++;
112       break;
113   }
114 }
115
116 void
117 chdlctype(guint16 chdlctype, tvbuff_t *tvb, int offset_after_chdlctype,
118           packet_info *pinfo, proto_tree *tree, proto_tree *fh_tree,
119           int chdlctype_id)
120 {
121   tvbuff_t   *next_tvb;
122
123   if (tree) {
124     proto_tree_add_uint(fh_tree, chdlctype_id, tvb,
125                         offset_after_chdlctype - 2, 2, chdlctype);
126   }
127
128   next_tvb = tvb_new_subset(tvb, offset_after_chdlctype, -1, -1);
129
130   /* do lookup with the subdissector table */
131   if (!dissector_try_port(subdissector_table, chdlctype, next_tvb, pinfo, tree)) {
132     if (check_col(pinfo->cinfo, COL_PROTOCOL))
133       col_add_fstr(pinfo->cinfo, COL_PROTOCOL, "0x%04x", chdlctype);
134     call_dissector(data_handle,next_tvb, pinfo, tree);
135   }
136 }
137
138 static void
139 dissect_chdlc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
140 {
141   proto_item *ti;
142   proto_tree *fh_tree = NULL;
143   guint8     addr;
144   guint16    proto;
145
146   if (check_col(pinfo->cinfo, COL_RES_DL_SRC))
147     col_set_str(pinfo->cinfo, COL_RES_DL_SRC, "N/A");
148   if (check_col(pinfo->cinfo, COL_RES_DL_DST))
149     col_set_str(pinfo->cinfo, COL_RES_DL_DST, "N/A");
150   if (check_col(pinfo->cinfo, COL_PROTOCOL))
151     col_set_str(pinfo->cinfo, COL_PROTOCOL, "CHDLC");
152   if (check_col(pinfo->cinfo, COL_INFO))
153     col_clear(pinfo->cinfo, COL_INFO);
154
155   addr = tvb_get_guint8(tvb, 0);
156   proto = tvb_get_ntohs(tvb, 2);
157
158   if (tree) {
159     ti = proto_tree_add_item(tree, proto_chdlc, tvb, 0, 4, FALSE);
160     fh_tree = proto_item_add_subtree(ti, ett_chdlc);
161
162     proto_tree_add_uint(fh_tree, hf_chdlc_addr, tvb, 0, 1, addr);
163   }
164
165   chdlctype(proto, tvb, 4, pinfo, tree, fh_tree, hf_chdlc_proto);
166 }
167
168 void
169 proto_register_chdlc(void)
170 {
171   static hf_register_info hf[] = {
172     { &hf_chdlc_addr,
173       { "Address", "chdlc.address", FT_UINT8, BASE_HEX,
174         VALS(chdlc_address_vals), 0x0, "", HFILL }},
175     { &hf_chdlc_proto,
176       { "Protocol", "chdlc.protocol", FT_UINT16, BASE_HEX,
177         VALS(chdlc_vals), 0x0, "", HFILL }},
178   };
179   static gint *ett[] = {
180     &ett_chdlc,
181   };
182
183   proto_chdlc = proto_register_protocol("Cisco HDLC", "CHDLC", "chdlc");
184   proto_register_field_array(proto_chdlc, hf, array_length(hf));
185   proto_register_subtree_array(ett, array_length(ett));
186
187 /* subdissector code */
188   subdissector_table = register_dissector_table("chdlctype",
189         "Cisco HDLC frame type", FT_UINT16, BASE_HEX);
190
191   register_dissector("chdlc", dissect_chdlc, proto_chdlc);
192 }
193
194 void
195 proto_reg_handoff_chdlc(void)
196 {
197   dissector_handle_t chdlc_handle;
198
199   data_handle = find_dissector("data");
200   chdlc_handle = find_dissector("chdlc");
201   dissector_add("wtap_encap", WTAP_ENCAP_CHDLC, chdlc_handle);
202 }
203
204 #define SLARP_REQUEST   0
205 #define SLARP_REPLY     1
206 #define SLARP_LINECHECK 2
207
208 static const value_string slarp_ptype_vals[] = {
209         {SLARP_REQUEST,   "Request"},
210         {SLARP_REPLY,     "Reply"},
211         {SLARP_LINECHECK, "Line keepalive"},
212         {0,               NULL}
213 };
214
215 static void
216 dissect_slarp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
217 {
218   proto_item *ti;
219   proto_tree *slarp_tree = NULL;
220   guint32 code;
221   guint32 address;
222   guint32 mysequence;
223   guint32 yoursequence;
224
225   if (check_col(pinfo->cinfo, COL_PROTOCOL))
226     col_set_str(pinfo->cinfo, COL_PROTOCOL, "SLARP");
227   if (check_col(pinfo->cinfo, COL_INFO))
228     col_clear(pinfo->cinfo, COL_INFO);
229
230   code = tvb_get_ntohl(tvb, 0);
231
232   if (tree) {
233     ti = proto_tree_add_item(tree, proto_slarp, tvb, 0, 14, FALSE);
234     slarp_tree = proto_item_add_subtree(ti, ett_slarp);
235   }
236
237   switch (code) {
238
239   case SLARP_REQUEST:
240   case SLARP_REPLY:
241     if (check_col(pinfo->cinfo, COL_INFO)) {
242       tvb_memcpy(tvb, (guint8 *)&address, 4, 4);
243       col_add_fstr(pinfo->cinfo, COL_INFO, "%s, from %s, mask %s",
244         match_strval(code, slarp_ptype_vals),
245         get_hostname(address),
246         ip_to_str(tvb_get_ptr(tvb, 8, 4)));
247     }
248     if (tree) {
249       proto_tree_add_uint(slarp_tree, hf_slarp_ptype, tvb, 0, 4, code);
250       proto_tree_add_item(slarp_tree, hf_slarp_address, tvb, 4, 4, FALSE);
251       proto_tree_add_text(slarp_tree, tvb, 8, 4,
252                           "Netmask: %s", ip_to_str(tvb_get_ptr(tvb, 8, 4)));
253     }
254     break;
255
256   case SLARP_LINECHECK:
257     mysequence = tvb_get_ntohl(tvb, 4);
258     yoursequence = tvb_get_ntohl(tvb, 8);
259     if (check_col(pinfo->cinfo, COL_INFO)) {
260       col_add_fstr(pinfo->cinfo, COL_INFO,
261         "%s, outgoing sequence %u, returned sequence %u",
262         match_strval(code, slarp_ptype_vals),
263         mysequence, yoursequence);
264     }
265     if (tree) {
266       proto_tree_add_uint(slarp_tree, hf_slarp_ptype, tvb, 0, 4, code);
267       proto_tree_add_uint(slarp_tree, hf_slarp_mysequence, tvb, 4, 4,
268                           mysequence);
269       proto_tree_add_uint(slarp_tree, hf_slarp_mysequence, tvb, 8, 4,
270                           yoursequence);
271     }
272     break;
273
274   default:
275     if (check_col(pinfo->cinfo, COL_INFO))
276       col_add_fstr(pinfo->cinfo, COL_INFO, "Unknown packet type 0x%08X", code);
277     if (tree) {
278       proto_tree_add_uint(slarp_tree, hf_slarp_ptype, tvb, 0, 4, code);
279       call_dissector(data_handle, tvb_new_subset(tvb, 4, -1, -1), pinfo,
280                      slarp_tree);
281     }
282     break;
283   }
284 }
285
286 void
287 proto_register_slarp(void)
288 {
289   static hf_register_info hf[] = {
290     { &hf_slarp_ptype,
291       { "Packet type", "slarp.ptype", FT_UINT32, BASE_DEC,
292         VALS(slarp_ptype_vals), 0x0, "", HFILL }},
293     { &hf_slarp_address,
294       { "Address", "slarp.address", FT_IPv4, BASE_NONE,
295         NULL, 0x0, "", HFILL }},
296     /* XXX - need an FT_ for netmasks, which is like FT_IPV4 but doesn't
297        get translated to a host name. */
298     { &hf_slarp_mysequence,
299       { "Outgoing sequence number", "slarp.mysequence", FT_UINT32, BASE_DEC,
300         NULL, 0x0, "", HFILL }},
301     { &hf_slarp_yoursequence,
302       { "Returned sequence number", "slarp.yoursequence", FT_UINT32, BASE_DEC,
303         NULL, 0x0, "", HFILL }},
304   };
305   static gint *ett[] = {
306     &ett_chdlc,
307     &ett_slarp,
308   };
309
310   proto_slarp = proto_register_protocol("Cisco SLARP", "SLARP", "slarp");
311   proto_register_field_array(proto_slarp, hf, array_length(hf));
312   proto_register_subtree_array(ett, array_length(ett));
313 }
314
315 void
316 proto_reg_handoff_slarp(void)
317 {
318   dissector_handle_t slarp_handle;
319
320   slarp_handle = create_dissector_handle(dissect_slarp, proto_slarp);
321   dissector_add("chdlctype", CISCO_SLARP, slarp_handle);
322 }