some compilers dont like unnamed unions and structs
[obnox/wireshark/wip.git] / epan / dissectors / packet-cisco-wids.c
1 /* packet-cwids.c
2  * Routines for dissecting wireless ids packets sent from a Cisco 
3  * access point to the WLSE (or whatever)
4  *
5  * $Id$
6  *
7  * Copyright 2006 Joerg Mayer (see AUTHORS file)
8  *
9  * Wireshark - Network traffic analyzer
10  * By Gerald Combs <gerald@wireshark.org>
11  * Copyright 1998 Gerald Combs
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 /* With current IOS, you can use Cisco wireless Bridges/APs as
29  * wireless sniffers and configure them to send the data to some
30  * central IDS:
31  * interface dot11Radio 0
32  *   station-role scanner
33  *   monitor frames endpoint ip address 172.22.1.1 port 8999 truncate 2312
34  * These frames are raw, i.e. they don't have a pcap header.
35  * Running wireshark at the receiving end will provide those.
36  */
37
38 /* 2do:
39  *      - Find out more about the contents of the capture header
40  *      - Protect the address fields etc (all columns?)
41  *      - Create subelements and put each header and packet into it
42  *      - fuzz-test the dissector
43  *      - Find some heuristic to detect the packet automagically and
44  *        convert dissector into a heuristic dissector
45  *      - Is the TRY/CATCH stuff OK?
46  */
47
48 #ifdef HAVE_CONFIG_H
49 # include "config.h"
50 #endif
51
52 #include <glib.h>
53 #include <epan/packet.h>
54 #include <epan/etypes.h>
55 #include <epan/expert.h>
56 #include <epan/prefs.h>
57
58 static guint udp_port = 0;
59
60 static int proto_cwids = -1;
61 static int hf_cwids_version = -1;
62 static int hf_cwids_unknown1 = -1;
63 static int hf_cwids_channel = -1;
64 static int hf_cwids_unknown2 = -1;
65 static int hf_cwids_reallength = -1;
66 static int hf_cwids_capturelen = -1;
67 static int hf_cwids_unknown3 = -1;
68
69 static gint ett_cwids = -1;
70
71 static dissector_handle_t ieee80211_handle;
72
73 static void
74 dissect_cwids(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
75 {
76         tvbuff_t *wlan_tvb;
77         proto_tree *ti, *cwids_tree;
78         int offset = 0;
79         guint16 capturelen;
80         guint remain;
81
82         if (check_col(pinfo->cinfo, COL_PROTOCOL))
83           col_set_str(pinfo->cinfo, COL_PROTOCOL, "CWIDS");
84         if (check_col(pinfo->cinfo, COL_INFO))
85           col_clear(pinfo->cinfo, COL_INFO);
86
87         if (check_col(pinfo->cinfo, COL_INFO)) {
88           col_add_fstr(pinfo->cinfo, COL_INFO, "Cwids: ");
89         }
90         /* FIXME: col_set_fence(pinfo->cinfo, all-cols, only addr-cols?); */
91
92         cwids_tree = NULL;
93
94         while((remain = tvb_length_remaining(tvb, offset)) > 0) {
95                 ti = proto_tree_add_item(tree, proto_cwids, tvb, offset, 28, FALSE);
96                 cwids_tree = proto_item_add_subtree(ti, ett_cwids);
97         
98                 proto_tree_add_item(cwids_tree, hf_cwids_version, tvb, offset, 2, FALSE);
99                 offset += 2;
100                 proto_tree_add_item(cwids_tree, hf_cwids_unknown1, tvb, offset, 7, FALSE);
101                 offset += 7;
102                 proto_tree_add_item(cwids_tree, hf_cwids_channel, tvb, offset, 1, FALSE);
103                 offset += 1;
104                 proto_tree_add_item(cwids_tree, hf_cwids_unknown2, tvb, offset, 6, FALSE);
105                 offset += 6;
106                 proto_tree_add_item(cwids_tree, hf_cwids_reallength, tvb, offset, 2, FALSE);
107                 offset += 2;
108                 capturelen = tvb_get_ntohs(tvb, offset);
109                 proto_tree_add_item(cwids_tree, hf_cwids_capturelen, tvb, offset, 2, FALSE);
110                 offset += 2;
111                 proto_tree_add_item(cwids_tree, hf_cwids_unknown3, tvb, offset, 8, FALSE);
112                 offset += 8;
113         
114                 wlan_tvb = tvb_new_subset(tvb, offset, capturelen, capturelen);
115                 /* Continue after ieee80211 dissection errors */
116                 TRY {
117                         call_dissector(ieee80211_handle, wlan_tvb, pinfo, tree);
118                 } CATCH2(BoundsError, ReportedBoundsError) {
119
120                         expert_add_info_format(pinfo, NULL,
121                                 PI_MALFORMED, PI_ERROR,
122                                 "Malformed or short IEEE80211 subpacket");
123
124                         if (check_col(pinfo->cinfo, COL_INFO)) {
125                                 col_append_str(pinfo->cinfo, COL_INFO,
126                                         " [Malformed or short IEEE80211 subpacket] " );
127                                 col_set_fence(pinfo->cinfo, COL_INFO);
128                         }
129
130         wlan_tvb = tvb_new_subset(tvb, offset, capturelen, capturelen);
131 #if 0
132                         /* FIXME: Why does this throw an exception? */
133                         proto_tree_add_text(cwids_tree, wlan_tvb, offset, capturelen, 
134                                 "[Malformed or short IEEE80211 subpacket]");
135 #endif
136         ;
137                 } ENDTRY;
138
139                 offset += capturelen;
140         }
141 }
142
143 void proto_register_cwids(void);
144 void proto_reg_handoff_cwids(void);
145
146 void
147 proto_register_cwids(void)
148 {
149         static hf_register_info hf[] = {
150                 { &hf_cwids_version,
151                 { "Capture Version", "cwids.version", FT_UINT16, BASE_DEC, NULL,
152                         0x0, "Version or format of record", HFILL }},
153
154                 { &hf_cwids_unknown1,
155                 { "Unknown1", "cwids.unknown1", FT_BYTES, BASE_NONE, NULL,
156                         0x0, "1st Unknown block - timestamp?", HFILL }},
157
158                 { &hf_cwids_channel,
159                 { "Channel", "cwids.channel", FT_UINT8, BASE_DEC, NULL,
160                         0x0, "Channel for this capture", HFILL }},
161
162                 { &hf_cwids_unknown2,
163                 { "Unknown2", "cwids.unknown2", FT_BYTES, BASE_NONE, NULL,
164                         0x0, "2nd Unknown block", HFILL }},
165
166                 { &hf_cwids_reallength,
167                 { "Original length", "cwids.reallen", FT_UINT16, BASE_DEC, NULL,
168                         0x0, "Original num bytes in frame", HFILL }},
169
170                 { &hf_cwids_capturelen,
171                 { "Capture length", "cwids.caplen", FT_UINT16, BASE_DEC, NULL,
172                         0x0, "Captured bytes in record", HFILL }},
173
174                 { &hf_cwids_unknown3,
175                 { "Unknown3", "cwids.unknown3", FT_BYTES, BASE_NONE, NULL,
176                         0x0, "3rd Unknown block", HFILL }},
177
178         };
179         static gint *ett[] = {
180                 &ett_cwids,
181         };
182
183         module_t *cwids_module;
184
185         proto_cwids = proto_register_protocol("Cisco Wireless IDS Captures", "CWIDS", "cwids");
186         proto_register_field_array(proto_cwids, hf, array_length(hf));
187         proto_register_subtree_array(ett, array_length(ett));
188
189         cwids_module = prefs_register_protocol(proto_cwids, proto_reg_handoff_cwids);
190         prefs_register_uint_preference(cwids_module, "udp.port",
191                 "CWIDS port",
192                 "Set the destination UDP port Cisco wireless IDS messages",
193                 10, &udp_port);
194
195 }
196
197 void
198 proto_reg_handoff_cwids(void)
199 {
200         dissector_handle_t cwids_handle;
201
202         ieee80211_handle = find_dissector("wlan");
203
204         cwids_handle = create_dissector_handle(dissect_cwids, proto_cwids);
205         dissector_add("udp.port", udp_port, cwids_handle);
206 }
207