Rich Lane | 45dcae1 | 2013-06-04 13:07:41 -0700 | [diff] [blame] | 1 | # 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 | |
| 28 | import os |
Rich Lane | b014bcf | 2013-06-19 11:14:11 -0700 | [diff] [blame] | 29 | from collections import namedtuple |
Rich Lane | 45dcae1 | 2013-06-04 13:07:41 -0700 | [diff] [blame] | 30 | import loxi_utils.loxi_utils as utils |
Rich Lane | 96641df | 2013-06-10 13:36:35 -0700 | [diff] [blame] | 31 | import loxi_front_end |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 32 | import loxi_globals |
Rich Lane | 364e029 | 2013-10-01 21:05:57 -0700 | [diff] [blame] | 33 | from loxi_ir import * |
Rich Lane | 64585d9 | 2013-10-02 16:01:37 -0700 | [diff] [blame] | 34 | import field_info |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 35 | import template_utils |
Rich Lane | 45dcae1 | 2013-06-04 13:07:41 -0700 | [diff] [blame] | 36 | |
| 37 | templates_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'templates') |
| 38 | |
Rich Lane | 5245266 | 2013-10-25 13:34:42 -0700 | [diff] [blame] | 39 | DissectorField = namedtuple("DissectorField", ["fullname", "name", "type", "base", "enum_table"]) |
Rich Lane | b014bcf | 2013-06-19 11:14:11 -0700 | [diff] [blame] | 40 | |
alshabib | 9cf2b1f | 2014-09-13 13:52:50 -0700 | [diff] [blame] | 41 | proto_names = { 1: 'of10', 2: 'of11', 3: 'of12', 4: 'of13', 5: 'of14' } |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 42 | def make_field_name(version, ofclass_name, member_name): |
| 43 | return "%s.%s.%s" % (proto_names[version.wire_version], |
Rich Lane | 7708c18 | 2013-10-01 23:27:27 -0700 | [diff] [blame] | 44 | ofclass_name[3:], |
| 45 | member_name) |
| 46 | |
Rich Lane | 7ff373a | 2013-10-25 14:18:04 -0700 | [diff] [blame] | 47 | def get_reader(version, cls, m): |
| 48 | """ |
| 49 | Decide on a reader function to use for the given field |
| 50 | """ |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 51 | ofproto = loxi_globals.ir[version] |
Rich Lane | 7ff373a | 2013-10-25 14:18:04 -0700 | [diff] [blame] | 52 | enum = ofproto.enum_by_name(m.oftype) |
| 53 | if enum and 'wire_type' in enum.params: |
| 54 | return "read_" + enum.params['wire_type'] |
tomaszklimczyk | 8d18d72 | 2014-01-19 23:17:05 -0800 | [diff] [blame] | 55 | elif (cls.name, m.name) in field_info.reader_overrides: |
| 56 | return field_info.reader_overrides[(cls.name, m.name)] |
Rich Lane | 7ff373a | 2013-10-25 14:18:04 -0700 | [diff] [blame] | 57 | else: |
| 58 | return "read_" + m.oftype.replace(')', '').replace('(', '_') |
| 59 | |
Rich Lane | 64585d9 | 2013-10-02 16:01:37 -0700 | [diff] [blame] | 60 | def get_field_info(version, cls, name, oftype): |
| 61 | """ |
| 62 | Decide on a Wireshark type and base for a given field. |
| 63 | |
| 64 | Returns (type, base) |
| 65 | """ |
| 66 | if oftype.startswith("list"): |
Rich Lane | 5245266 | 2013-10-25 13:34:42 -0700 | [diff] [blame] | 67 | return "bytes", "NONE", "nil" |
Rich Lane | 64585d9 | 2013-10-02 16:01:37 -0700 | [diff] [blame] | 68 | |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 69 | ofproto = loxi_globals.ir[version] |
Rich Lane | 5245266 | 2013-10-25 13:34:42 -0700 | [diff] [blame] | 70 | |
Rich Lane | 64585d9 | 2013-10-02 16:01:37 -0700 | [diff] [blame] | 71 | enum = ofproto.enum_by_name(oftype) |
Rich Lane | 5245266 | 2013-10-25 13:34:42 -0700 | [diff] [blame] | 72 | if not enum and (cls, name) in field_info.class_field_to_enum: |
| 73 | enum_name = field_info.class_field_to_enum[(cls, name)] |
| 74 | enum = ofproto.enum_by_name(enum_name) |
Rich Lane | 64585d9 | 2013-10-02 16:01:37 -0700 | [diff] [blame] | 75 | |
| 76 | if enum: |
Rich Lane | 4df40f3 | 2013-10-08 15:40:39 -0700 | [diff] [blame] | 77 | field_type = "uint32" |
Rich Lane | 64585d9 | 2013-10-02 16:01:37 -0700 | [diff] [blame] | 78 | elif oftype in field_info.oftype_to_wireshark_type: |
| 79 | field_type = field_info.oftype_to_wireshark_type[oftype] |
| 80 | else: |
| 81 | print "WARN missing oftype_to_wireshark_type for", oftype |
Rich Lane | 4df40f3 | 2013-10-08 15:40:39 -0700 | [diff] [blame] | 82 | field_type = "bytes" |
Rich Lane | 64585d9 | 2013-10-02 16:01:37 -0700 | [diff] [blame] | 83 | |
| 84 | if enum: |
| 85 | if enum.is_bitmask: |
| 86 | field_base = "HEX" |
| 87 | else: |
| 88 | field_base = "DEC" |
| 89 | elif oftype in field_info.field_to_base: |
| 90 | field_base = field_info.field_to_base[name] |
| 91 | elif oftype in field_info.oftype_to_base: |
| 92 | field_base = field_info.oftype_to_base[oftype] |
| 93 | else: |
| 94 | print "WARN missing oftype_to_base for", oftype |
| 95 | field_base = "NONE" |
| 96 | |
Rich Lane | 5245266 | 2013-10-25 13:34:42 -0700 | [diff] [blame] | 97 | if enum: |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 98 | enum_table = 'enum_v%d_%s' % (version.wire_version, enum.name) |
Rich Lane | 5245266 | 2013-10-25 13:34:42 -0700 | [diff] [blame] | 99 | else: |
| 100 | enum_table = 'nil' |
| 101 | |
| 102 | return field_type, field_base, enum_table |
Rich Lane | 64585d9 | 2013-10-02 16:01:37 -0700 | [diff] [blame] | 103 | |
Rich Lane | b014bcf | 2013-06-19 11:14:11 -0700 | [diff] [blame] | 104 | def create_fields(): |
Rich Lane | 364e029 | 2013-10-01 21:05:57 -0700 | [diff] [blame] | 105 | r = [] |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 106 | for version, ofproto in loxi_globals.ir.items(): |
Rich Lane | 364e029 | 2013-10-01 21:05:57 -0700 | [diff] [blame] | 107 | for ofclass in ofproto.classes: |
| 108 | for m in ofclass.members: |
| 109 | if isinstance(m, OFPadMember): |
| 110 | continue |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 111 | fullname = make_field_name(version, ofclass.name, m.name) |
| 112 | field_type, field_base, enum_table = get_field_info(version, ofclass.name, m.name, m.oftype) |
Rich Lane | 5245266 | 2013-10-25 13:34:42 -0700 | [diff] [blame] | 113 | r.append(DissectorField(fullname, m.name, field_type, field_base, enum_table)) |
Rich Lane | 364e029 | 2013-10-01 21:05:57 -0700 | [diff] [blame] | 114 | |
| 115 | return r |
Rich Lane | b014bcf | 2013-06-19 11:14:11 -0700 | [diff] [blame] | 116 | |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 117 | def generate(install_dir): |
Rich Lane | b014bcf | 2013-06-19 11:14:11 -0700 | [diff] [blame] | 118 | context = { |
Rich Lane | b014bcf | 2013-06-19 11:14:11 -0700 | [diff] [blame] | 119 | 'fields': create_fields(), |
| 120 | } |
Rich Lane | 05fde26 | 2013-11-10 17:35:15 -0800 | [diff] [blame] | 121 | |
Rich Lane | 2353b52 | 2013-11-18 12:08:56 -0800 | [diff] [blame] | 122 | with template_utils.open_output(install_dir, 'wireshark/openflow.lua') as out: |
Andreas Wundsam | c2ce5fa | 2013-11-15 15:20:11 -0800 | [diff] [blame] | 123 | template_utils.render_template(out, "openflow.lua", [templates_dir], context) |