blob: d9eb76a8c44c21911e673844745fec31239267f8 [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
Rich Lane4bbdcf52013-10-01 22:07:35 -070091--- Dissectors for each class
92
Rich Lane96641df2013-06-10 13:36:35 -070093:: for version, ofproto in ir.items():
94:: for ofclass in ofproto.classes:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080095:: name = 'dissect_%s_v%d' % (ofclass.name, version.wire_version)
Rich Lane7708c182013-10-01 23:27:27 -070096:: include('_ofclass_dissector.lua', name=name, ofclass=ofclass, version=version)
Rich Lane4bbdcf52013-10-01 22:07:35 -070097:: if ofclass.superclass:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -080098:: discriminator = ofclass.superclass.discriminator
Rich Lane586864e2013-10-01 23:26:35 -070099:: discriminator_value = ofclass.member_by_name(discriminator.name).value
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800100${ofclass.superclass.name}_v${version.wire_version}_dissectors[${discriminator_value}] = ${name}
Rich Lane96641df2013-06-10 13:36:35 -0700101
102:: #endif
103:: #endfor
104:: #endfor
105
Rich Lane4bbdcf52013-10-01 22:07:35 -0700106local of_message_dissectors = {
107:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800108 [${version.wire_version}] = of_header_v${version.wire_version}_dissectors,
Rich Lane4bbdcf52013-10-01 22:07:35 -0700109:: #endfor
110}
111
Tomasz742c2ba2013-10-24 22:35:45 -0700112local of_oxm_dissectors = {
113:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800114 [${version.wire_version}] = of_oxm_v${version.wire_version}_dissectors,
Tomasz742c2ba2013-10-24 22:35:45 -0700115:: #endfor
116}
117
118local of_action_dissectors = {
119:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800120 [${version.wire_version}] = of_action_v${version.wire_version}_dissectors,
Tomasz742c2ba2013-10-24 22:35:45 -0700121:: #endfor
122}
123
124local of_instruction_dissectors = {
125:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800126 [${version.wire_version}] = of_instruction_v${version.wire_version}_dissectors,
Tomasz742c2ba2013-10-24 22:35:45 -0700127:: #endfor
128}
129
Tomasza17a6692013-10-30 17:34:18 -0700130local of_bucket_dissectors = {
131:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800132 [${version.wire_version}] = dissect_of_bucket_v${version.wire_version},
Tomasza17a6692013-10-30 17:34:18 -0700133:: #endfor
134}
135
Tomaszc595d5b2013-11-02 13:30:32 -0700136local of_port_desc_dissectors = {
137:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800138 [${version.wire_version}] = dissect_of_port_desc_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700139:: #endfor
140}
141
142local of_stats_reply_dissectors = {
143:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800144 [${version.wire_version}] = of_stats_reply_v${version.wire_version}_dissectors,
Tomaszc595d5b2013-11-02 13:30:32 -0700145:: #endfor
146}
147
148local of_stats_request_dissectors = {
149:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800150 [${version.wire_version}] = of_stats_request_v${version.wire_version}_dissectors,
Tomaszc595d5b2013-11-02 13:30:32 -0700151:: #endfor
152}
153
154local of_flow_stats_entry_dissectors = {
155:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800156 [${version.wire_version}] = dissect_of_flow_stats_entry_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700157:: #endfor
158}
159
160local of_port_stats_entry_dissectors = {
161:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800162 [${version.wire_version}] = dissect_of_port_stats_entry_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700163:: #endfor
164}
165
166local of_table_stats_entry_dissectors = {
167:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800168 [${version.wire_version}] = dissect_of_table_stats_entry_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700169:: #endfor
170}
171
172local of_queue_stats_entry_dissectors = {
173:: for version in ir:
Andreas Wundsamc2ce5fa2013-11-15 15:20:11 -0800174 [${version.wire_version}] = dissect_of_queue_stats_entry_v${version.wire_version},
Tomaszc595d5b2013-11-02 13:30:32 -0700175:: #endfor
176}
177
Rich Lane96641df2013-06-10 13:36:35 -0700178function dissect_of_message(buf, root)
Rich Lane93991e42013-10-01 22:24:51 -0700179 local reader = OFReader.new(buf)
Rich Lane422d1b12013-06-04 13:09:17 -0700180 local subtree = root:add(p_of, buf(0))
Rich Lane96641df2013-06-10 13:36:35 -0700181 local version_val = buf(0,1):uint()
Rich Lane422d1b12013-06-04 13:09:17 -0700182 local type_val = buf(1,1):uint()
Rich Laneb017c732013-10-02 14:05:01 -0700183
184 local protocol = "OF ?"
185 if openflow_versions[version_val] then
186 protocol = "OF " .. openflow_versions[version_val]
Rich Lane96641df2013-06-10 13:36:35 -0700187 end
Rich Laneb017c732013-10-02 14:05:01 -0700188
189 local info = "unknown"
Tomasz771b08a2013-11-02 13:33:57 -0700190 if type_val == 19 then
191 local stats_type = buf(8,2):uint()
192 info = of_stats_reply_dissectors[version_val][stats_type](reader,subtree)
193 elseif type_val == 18 then
194 local stats_type = buf(8,2):uint()
195 info = of_stats_request_dissectors[version_val][stats_type](reader,subtree)
196 elseif of_message_dissectors[version_val] and of_message_dissectors[version_val][type_val] then
Rich Laneb017c732013-10-02 14:05:01 -0700197 info = of_message_dissectors[version_val][type_val](reader, subtree)
198 end
199
200 return protocol, info
Rich Lane422d1b12013-06-04 13:09:17 -0700201end
202
Tomasz742c2ba2013-10-24 22:35:45 -0700203function dissect_of_oxm(reader, subtree, version_val)
Tomasze0584352013-10-23 16:43:26 -0700204 local type_val = reader.peek(0,4):uint()
Tomasze0584352013-10-23 16:43:26 -0700205 local info = "unknown"
Tomasz742c2ba2013-10-24 22:35:45 -0700206 if of_oxm_dissectors[version_val] and of_oxm_dissectors[version_val][type_val] then
207 info = of_oxm_dissectors[version_val][type_val](reader, subtree)
Tomasze0584352013-10-23 16:43:26 -0700208 end
209
210 return info
211end
Tomasz742c2ba2013-10-24 22:35:45 -0700212
213function dissect_of_action(reader, subtree, version_val)
214 local type_val = reader.peek(0,2):uint()
215 local info = "unknown"
216 if of_action_dissectors[version_val] and of_action_dissectors[version_val][type_val] then
217 info = of_action_dissectors[version_val][type_val](reader, subtree)
218 end
219
220 return info
221end
222
223function dissect_of_instruction(reader, subtree, version_val)
224 local type_val = reader.peek(0,2):uint()
225 local info = "unknown"
226 if of_instruction_dissectors[version_val] and of_instruction_dissectors[version_val][type_val] then
227 info = of_instruction_dissectors[version_val][type_val](reader, subtree)
228 end
229
230 return info
231end
232
Tomasza17a6692013-10-30 17:34:18 -0700233function dissect_of_bucket(reader, subtree, version_val)
234 local info = "unknown"
235 if of_bucket_dissectors[version_val] then
236 info = of_bucket_dissectors[version_val](reader, subtree)
237 end
238
239 return info
240end
241
Tomaszc595d5b2013-11-02 13:30:32 -0700242function dissect_of_port_desc(reader, subtree, version_val)
243 local info = "unknown"
244 if of_port_desc_dissectors[version_val] then
245 info = of_port_desc_dissectors[version_val](reader, subtree)
246 end
247
248 return info
249end
250
251function dissect_of_flow_stats_entry(reader, subtree, version_val)
252 local info = "unknown"
253 if of_flow_stats_entry_dissectors[version_val] then
254 info = of_flow_stats_entry_dissectors[version_val](reader, subtree)
255 end
256
257 return info
258end
259
260function dissect_of_port_stats_entry(reader, subtree, version_val)
261 local info = "unknown"
262 if of_port_stats_entry_dissectors[version_val] then
263 info = of_port_stats_entry_dissectors[version_val](reader, subtree)
264 end
265
266 return info
267end
268
269function dissect_of_table_stats_entry(reader, subtree, version_val)
270 local info = "unknown"
271 if of_table_stats_entry_dissectors[version_val] then
272 info = of_table_stats_entry_dissectors[version_val](reader, subtree)
273 end
274
275 return info
276end
277
278function dissect_of_queue_stats_entry(reader, subtree, version_val)
279 local info = "unknown"
280 if of_queue_stats_entry_dissectors[version_val] then
281 info = of_queue_stats_entry_dissectors[version_val](reader, subtree)
282 end
283
284 return info
285end
286
Rich Lane422d1b12013-06-04 13:09:17 -0700287-- of dissector function
288function p_of.dissector (buf, pkt, root)
Rich Lane422d1b12013-06-04 13:09:17 -0700289 local offset = 0
290 repeat
291 if buf:len() - offset >= 4 then
292 msg_len = buf(offset+2,2):uint()
293 if offset + msg_len > buf:len() then
294 -- we don't have all the data we need yet
295 pkt.desegment_len = offset + msg_len - buf:len()
296 return
297 end
298
Rich Laneb017c732013-10-02 14:05:01 -0700299 protocol, info = dissect_of_message(buf(offset, msg_len), root)
300
301 if offset == 0 then
302 pkt.cols.protocol:clear()
303 pkt.cols.info:clear()
304 else
Rich Lane7b8eaa12013-10-02 14:55:35 -0700305 pkt.cols.protocol:append(" + ")
306 pkt.cols.info:append(" + ")
Rich Laneb017c732013-10-02 14:05:01 -0700307 end
308 pkt.cols.protocol:append(protocol)
309 pkt.cols.info:append(info)
Rich Lane422d1b12013-06-04 13:09:17 -0700310 offset = offset + msg_len
311 else
312 -- we don't have all of length field yet
313 pkt.desegment_len = DESEGMENT_ONE_MORE_SEGMENT
314 return
315 end
316 until offset >= buf:len()
317end
318
319-- Initialization routine
320function p_of.init()
321end
322
Rich Lane88d3afc2013-10-01 21:07:22 -0700323-- register a chained dissector for OpenFlow port numbers
Rich Lane422d1b12013-06-04 13:09:17 -0700324local tcp_dissector_table = DissectorTable.get("tcp.port")
325tcp_dissector_table:add(6633, p_of)
Rich Lane88d3afc2013-10-01 21:07:22 -0700326tcp_dissector_table:add(6653, p_of)