blob: 09ebcc402383f2cbadfc9c0e72419be51ef900b9 [file] [log] [blame]
Rich Lane9cfa1652013-10-01 21:24:04 -07001:: # Copyright 2013, Big Switch Networks, Inc.
2:: #
3:: # LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with
4:: # the following special exception:
5:: #
6:: # LOXI Exception
7:: #
8:: # As a special exception to the terms of the EPL, you may distribute libraries
9:: # generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided
10:: # that copyright and licensing notices generated by LoxiGen are not altered or removed
11:: # from the LoxiGen Libraries and the notice provided below is (i) included in
12:: # the LoxiGen Libraries, if distributed in source code form and (ii) included in any
13:: # documentation for the LoxiGen Libraries, if distributed in binary form.
14:: #
15:: # Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler."
16:: #
17:: # You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain
18:: # a copy of the EPL at:
19:: #
20:: # http://www.eclipse.org/legal/epl-v10.html
21:: #
22:: # Unless required by applicable law or agreed to in writing, software
23:: # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24:: # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
25:: # EPL for the specific language governing permissions and limitations
26:: # under the EPL.
27::
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080028:: import loxi_globals
29:: ir = loxi_globals.ir
Rich Laneeb10d162013-10-01 21:15:35 -070030:: include('_copyright.lua')
Rich Lane422d1b12013-06-04 13:09:17 -070031
Rich Lane9331e022013-11-20 12:41:25 -080032-- Copy this file to your wireshark plugin directory:
33-- Linux / OS X: ~/.wireshark/plugins/
34-- Windows: C:\Documents and Settings\<username>\Application Data\Wireshark\plugins\
35-- You may need to create the directory.
36
37-- The latest version of this dissector is always available at:
38-- http://www.projectfloodlight.org/openflow.lua
39
Rich Lane872b95a2013-06-17 18:39:14 -070040:: include('_ofreader.lua')
41
Rich Lane7708c182013-10-01 23:27:27 -070042:: include('_oftype_readers.lua')
43
Rich Lane422d1b12013-06-04 13:09:17 -070044p_of = Proto ("of", "OpenFlow")
45
Rich Lane972be332013-06-04 13:36:48 -070046local openflow_versions = {
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080047:: for version in loxi_globals.OFVersions.all_supported:
48 [${version.wire_version}] = "${version.version}",
Rich Lane972be332013-06-04 13:36:48 -070049:: #endfor
Rich Lane422d1b12013-06-04 13:09:17 -070050}
51
Rich Lane972be332013-06-04 13:36:48 -070052:: for version, ofproto in ir.items():
53:: for enum in ofproto.enums:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080054local enum_v${version.wire_version}_${enum.name} = {
Rich Lane972be332013-06-04 13:36:48 -070055:: for (name, value) in enum.values:
56 [${value}] = "${name}",
57:: #endfor
58}
59
60:: #endfor
61
62:: #endfor
63
Tomasz635e20a2013-10-23 16:14:29 -070064
Rich Lane364e0292013-10-01 21:05:57 -070065fields = {}
Rich Laneb014bcf2013-06-19 11:14:11 -070066:: for field in fields:
Rich Lane4df40f32013-10-08 15:40:39 -070067:: if field.type in ["uint8", "uint16", "uint32", "uint64"]:
Rich Lane52452662013-10-25 13:34:42 -070068fields[${repr(field.fullname)}] = ProtoField.${field.type}("${field.fullname}", "${field.name}", base.${field.base}, ${field.enum_table})
Rich Lane4df40f32013-10-08 15:40:39 -070069:: elif field.type in ["ipv4", "ipv6", "ether", "bytes", "stringz"]:
70fields[${repr(field.fullname)}] = ProtoField.${field.type}("${field.fullname}", "${field.name}")
71:: else:
72:: raise NotImplementedError("unknown Wireshark type " + field.type)
73:: #endif
Rich Laneb014bcf2013-06-19 11:14:11 -070074:: #endfor
Rich Lane422d1b12013-06-04 13:09:17 -070075
76p_of.fields = {
Rich Laneb014bcf2013-06-19 11:14:11 -070077:: for field in fields:
Rich Lane364e0292013-10-01 21:05:57 -070078 fields[${repr(field.fullname)}],
Rich Laneb014bcf2013-06-19 11:14:11 -070079:: #endfor
Rich Lane422d1b12013-06-04 13:09:17 -070080}
81
Rich Lane4bbdcf52013-10-01 22:07:35 -070082-- Subclass maps for virtual classes
Rich Lane96641df2013-06-10 13:36:35 -070083:: for version, ofproto in ir.items():
Rich Lane4bbdcf52013-10-01 22:07:35 -070084:: for ofclass in ofproto.classes:
85:: if ofclass.virtual:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080086${ofclass.name}_v${version.wire_version}_dissectors = {}
Rich Lane4bbdcf52013-10-01 22:07:35 -070087:: #endif
Rich Lane96641df2013-06-10 13:36:35 -070088:: #endfor
Rich Lane96641df2013-06-10 13:36:35 -070089:: #endfor
90
Tomasza19e9d22013-12-08 11:18:11 -080091--- Dissectors for each class
Rich Lane96641df2013-06-10 13:36:35 -070092:: for version, ofproto in ir.items():
93:: for ofclass in ofproto.classes:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080094:: name = 'dissect_%s_v%d' % (ofclass.name, version.wire_version)
Rich Lane7708c182013-10-01 23:27:27 -070095:: include('_ofclass_dissector.lua', name=name, ofclass=ofclass, version=version)
Rich Lane4bbdcf52013-10-01 22:07:35 -070096:: if ofclass.superclass:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080097:: discriminator = ofclass.superclass.discriminator
Rich Lane586864e2013-10-01 23:26:35 -070098:: discriminator_value = ofclass.member_by_name(discriminator.name).value
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080099${ofclass.superclass.name}_v${version.wire_version}_dissectors[${discriminator_value}] = ${name}
Rich Lane96641df2013-06-10 13:36:35 -0700100
101:: #endif
102:: #endfor
103:: #endfor
104
Rich Lane4bbdcf52013-10-01 22:07:35 -0700105local of_message_dissectors = {
106:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800107 [${version.wire_version}] = of_header_v${version.wire_version}_dissectors,
Rich Lane4bbdcf52013-10-01 22:07:35 -0700108:: #endfor
109}
110
Tomasz742c2ba2013-10-24 22:35:45 -0700111local of_oxm_dissectors = {
112:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800113 [${version.wire_version}] = of_oxm_v${version.wire_version}_dissectors,
Tomasz742c2ba2013-10-24 22:35:45 -0700114:: #endfor
115}
116
117local of_action_dissectors = {
118:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800119 [${version.wire_version}] = of_action_v${version.wire_version}_dissectors,
Tomasz742c2ba2013-10-24 22:35:45 -0700120:: #endfor
121}
122
123local of_instruction_dissectors = {
124:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800125 [${version.wire_version}] = of_instruction_v${version.wire_version}_dissectors,
Tomasz742c2ba2013-10-24 22:35:45 -0700126:: #endfor
127}
128
Tomasza17a6692013-10-30 17:34:18 -0700129local of_bucket_dissectors = {
130:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800131 [${version.wire_version}] = dissect_of_bucket_v${version.wire_version},
Tomasza17a6692013-10-30 17:34:18 -0700132:: #endfor
133}
134
Tomaszc595d5b2013-11-02 13:30:32 -0700135local of_port_desc_dissectors = {
136:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800137 [${version.wire_version}] = dissect_of_port_desc_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700138:: #endfor
139}
140
141local of_stats_reply_dissectors = {
142:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800143 [${version.wire_version}] = of_stats_reply_v${version.wire_version}_dissectors,
Tomaszc595d5b2013-11-02 13:30:32 -0700144:: #endfor
145}
146
147local of_stats_request_dissectors = {
148:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800149 [${version.wire_version}] = of_stats_request_v${version.wire_version}_dissectors,
Tomaszc595d5b2013-11-02 13:30:32 -0700150:: #endfor
151}
152
153local of_flow_stats_entry_dissectors = {
154:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800155 [${version.wire_version}] = dissect_of_flow_stats_entry_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700156:: #endfor
157}
158
159local of_port_stats_entry_dissectors = {
160:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800161 [${version.wire_version}] = dissect_of_port_stats_entry_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700162:: #endfor
163}
164
165local of_table_stats_entry_dissectors = {
166:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800167 [${version.wire_version}] = dissect_of_table_stats_entry_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700168:: #endfor
169}
170
171local of_queue_stats_entry_dissectors = {
172:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800173 [${version.wire_version}] = dissect_of_queue_stats_entry_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700174:: #endfor
175}
176
Rich Lane96641df2013-06-10 13:36:35 -0700177function dissect_of_message(buf, root)
Rich Lane93991e42013-10-01 22:24:51 -0700178 local reader = OFReader.new(buf)
Rich Lane422d1b12013-06-04 13:09:17 -0700179 local subtree = root:add(p_of, buf(0))
Rich Lane96641df2013-06-10 13:36:35 -0700180 local version_val = buf(0,1):uint()
Rich Lane422d1b12013-06-04 13:09:17 -0700181 local type_val = buf(1,1):uint()
Rich Laneb017c732013-10-02 14:05:01 -0700182
183 local protocol = "OF ?"
184 if openflow_versions[version_val] then
185 protocol = "OF " .. openflow_versions[version_val]
Rich Lane96641df2013-06-10 13:36:35 -0700186 end
Tomasz3f1b1f92013-12-10 01:58:10 -0800187
188 info = of_message_dissectors[version_val][type_val](reader, subtree)
Rich Laneb017c732013-10-02 14:05:01 -0700189
190 return protocol, info
Rich Lane422d1b12013-06-04 13:09:17 -0700191end
192
Tomasz742c2ba2013-10-24 22:35:45 -0700193function dissect_of_oxm(reader, subtree, version_val)
Tomasze0584352013-10-23 16:43:26 -0700194 local type_val = reader.peek(0,4):uint()
Tomasze0584352013-10-23 16:43:26 -0700195 local info = "unknown"
Tomasz742c2ba2013-10-24 22:35:45 -0700196 if of_oxm_dissectors[version_val] and of_oxm_dissectors[version_val][type_val] then
197 info = of_oxm_dissectors[version_val][type_val](reader, subtree)
Tomasze0584352013-10-23 16:43:26 -0700198 end
199
200 return info
201end
Tomasz742c2ba2013-10-24 22:35:45 -0700202
203function dissect_of_action(reader, subtree, version_val)
204 local type_val = reader.peek(0,2):uint()
205 local info = "unknown"
206 if of_action_dissectors[version_val] and of_action_dissectors[version_val][type_val] then
207 info = of_action_dissectors[version_val][type_val](reader, subtree)
208 end
209
210 return info
211end
212
213function dissect_of_instruction(reader, subtree, version_val)
214 local type_val = reader.peek(0,2):uint()
215 local info = "unknown"
216 if of_instruction_dissectors[version_val] and of_instruction_dissectors[version_val][type_val] then
217 info = of_instruction_dissectors[version_val][type_val](reader, subtree)
218 end
219
220 return info
221end
222
Tomasza17a6692013-10-30 17:34:18 -0700223function dissect_of_bucket(reader, subtree, version_val)
224 local info = "unknown"
225 if of_bucket_dissectors[version_val] then
226 info = of_bucket_dissectors[version_val](reader, subtree)
227 end
228
229 return info
230end
231
Tomaszc595d5b2013-11-02 13:30:32 -0700232function dissect_of_port_desc(reader, subtree, version_val)
233 local info = "unknown"
234 if of_port_desc_dissectors[version_val] then
235 info = of_port_desc_dissectors[version_val](reader, subtree)
236 end
237
238 return info
239end
240
241function dissect_of_flow_stats_entry(reader, subtree, version_val)
242 local info = "unknown"
243 if of_flow_stats_entry_dissectors[version_val] then
244 info = of_flow_stats_entry_dissectors[version_val](reader, subtree)
245 end
246
247 return info
248end
249
250function dissect_of_port_stats_entry(reader, subtree, version_val)
251 local info = "unknown"
252 if of_port_stats_entry_dissectors[version_val] then
253 info = of_port_stats_entry_dissectors[version_val](reader, subtree)
254 end
255
256 return info
257end
258
259function dissect_of_table_stats_entry(reader, subtree, version_val)
260 local info = "unknown"
261 if of_table_stats_entry_dissectors[version_val] then
262 info = of_table_stats_entry_dissectors[version_val](reader, subtree)
263 end
264
265 return info
266end
267
268function dissect_of_queue_stats_entry(reader, subtree, version_val)
269 local info = "unknown"
270 if of_queue_stats_entry_dissectors[version_val] then
271 info = of_queue_stats_entry_dissectors[version_val](reader, subtree)
272 end
273
274 return info
275end
276
Rich Lane422d1b12013-06-04 13:09:17 -0700277-- of dissector function
278function p_of.dissector (buf, pkt, root)
Rich Lane422d1b12013-06-04 13:09:17 -0700279 local offset = 0
280 repeat
281 if buf:len() - offset >= 4 then
282 msg_len = buf(offset+2,2):uint()
283 if offset + msg_len > buf:len() then
284 -- we don't have all the data we need yet
285 pkt.desegment_len = offset + msg_len - buf:len()
286 return
287 end
288
Rich Laneb017c732013-10-02 14:05:01 -0700289 protocol, info = dissect_of_message(buf(offset, msg_len), root)
290
291 if offset == 0 then
292 pkt.cols.protocol:clear()
293 pkt.cols.info:clear()
294 else
Rich Lane7b8eaa12013-10-02 14:55:35 -0700295 pkt.cols.protocol:append(" + ")
296 pkt.cols.info:append(" + ")
Rich Laneb017c732013-10-02 14:05:01 -0700297 end
298 pkt.cols.protocol:append(protocol)
299 pkt.cols.info:append(info)
Rich Lane422d1b12013-06-04 13:09:17 -0700300 offset = offset + msg_len
301 else
302 -- we don't have all of length field yet
303 pkt.desegment_len = DESEGMENT_ONE_MORE_SEGMENT
304 return
305 end
306 until offset >= buf:len()
307end
308
309-- Initialization routine
310function p_of.init()
311end
312
Rich Lane88d3afc2013-10-01 21:07:22 -0700313-- register a chained dissector for OpenFlow port numbers
Rich Lane422d1b12013-06-04 13:09:17 -0700314local tcp_dissector_table = DissectorTable.get("tcp.port")
315tcp_dissector_table:add(6633, p_of)
Rich Lane88d3afc2013-10-01 21:07:22 -0700316tcp_dissector_table:add(6653, p_of)