blob: 4eed4da3719be9a43dfb3dae2e9f3b202f10b52e [file] [log] [blame]
Rich Lanea06d0c32013-03-25 08:52:03 -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
28##
29# @brief Global data structs for LOXI code generation
30#
31# @fixme This needs to be refactored and brought into the 21st century.
32#
33
Rich Lanef1a89842014-10-12 10:04:13 -070034import loxi_globals
Rich Lanea06d0c32013-03-25 08:52:03 -070035
36################################################################
37#
38# Configuration global parameters
39#
40################################################################
41
42##
43# The map from wire protocol to enum identifier generated from input
44# This is built from the version-specific structs file info.
45# @fixme This should go away when the process structs file is updated
46wire_ver_map = {}
47
48##
Rich Lanea06d0c32013-03-25 08:52:03 -070049# The list of wire versions which are to be supported
50target_version_list = []
51
Rich Lanea06d0c32013-03-25 08:52:03 -070052##
53# The dictionary of config variables related to code
54#
Rich Lanea06d0c32013-03-25 08:52:03 -070055# @param use_obj_id Use object IDs in struct defns CURRENTLY NOT SUPPORTED
Andreas Wundsam53256162013-05-02 14:05:53 -070056#
Rich Lanea06d0c32013-03-25 08:52:03 -070057# @param return_base_types For 'get' accessors, return values when possible.
58# Otherwise all values are returned thru a call by variable parameter
59#
60# @param use_static_inlines Generate low level accessors as static inline
61# and put them in header files rather than .c files.
62#
63# @param copy_semantics One of "read", "write" or "grow". This defines the
64# way that buffer references are managed. Currently on "read" is supported.
65#
66# @param encode_typedefs Use object and member IDs (rather than names)
67# when generating the names used for accessor function typedefs
68#
Andreas Wundsam53256162013-05-02 14:05:53 -070069# @param get_returns One of "error", "value", or "void";
Rich Lanea06d0c32013-03-25 08:52:03 -070070# CURRENTLY ONLY "error" IS SUPPORTED. "error" means
71# all get operations return an error code. "value" means return a base_type
72# value when possible or void if not. "void" means always return void
73# and use a call-by-variable parameter
74#
75
Rich Lanea06d0c32013-03-25 08:52:03 -070076## These members do not get normal accessors
77
Rob Vaterlausb3f49d92013-10-01 17:57:31 -070078skip_members = ["version", "type", "length", "err_type", "stats_type", "len",
Rich Lane713d9282013-12-30 15:21:35 -080079 "type_len", "actions_len", "_command", "command", "key_length"]
Rich Lanea06d0c32013-03-25 08:52:03 -070080
81## Some OpenFlow string length constants
82#
83# These are a few length constants needed for array processing
84ofp_constants = dict(
85 OF_MAX_TABLE_NAME_LEN = 32,
86 OF_MAX_PORT_NAME_LEN = 16,
87 OF_ETH_ALEN = 6,
88 OF_DESC_STR_LEN = 256,
Praseed Balakrishnan7f718782014-09-18 17:02:48 -070089 OF_SERIAL_NUM_LEN = 32,
90 OF_APP_CODE_LEN = 15,
Praseed Balakrishnan2ed6da02014-09-18 17:02:48 -070091 OF_SIGID_LEN=6,
Rich Lanea06d0c32013-03-25 08:52:03 -070092)
93
94## List of mixed data types
95#
96# This is a list of data types which require special treatment
97# because the underlying datatype has changed between versions.
98# The main example is port which went from 16 to 32 bits. We
99# define per-version accessors for these types and those are
100# used in place of the normal ones.
101#
102# The wire protocol number is used to identify versions. For now,
103# the value is the name of the type to use for that version
104#
105# This is the map between the external type (like of_port_no_t)
Andreas Wundsam53256162013-05-02 14:05:53 -0700106# which is used by customers of this code and the internal
107# datatypes (like uint16_t) that appear on the wire for a
Rich Lanea06d0c32013-03-25 08:52:03 -0700108# particular version.
109#
110of_mixed_types = dict(
111 of_port_no_t = {
112 1: "uint16_t",
113 2: "uint32_t",
114 3: "uint32_t",
115 4: "uint32_t",
Rich Lane2dd17012014-10-16 09:55:10 -0700116 5: "uint32_t",
Rich Lanea06d0c32013-03-25 08:52:03 -0700117 "short_name":"port_no"
118 },
119 of_port_desc_t = {
120 1: "of_port_desc_t",
121 2: "of_port_desc_t",
122 3: "of_port_desc_t",
123 4: "of_port_desc_t",
Rich Lane2dd17012014-10-16 09:55:10 -0700124 5: "of_port_desc_t",
Rich Lanea06d0c32013-03-25 08:52:03 -0700125 "short_name":"port_desc"
126 },
Dan Talaycoc0e802e2013-05-18 23:52:39 -0700127 of_bsn_vport_t = {
128 1: "of_bsn_vport_t",
129 2: "of_bsn_vport_t",
130 3: "of_bsn_vport_t",
131 4: "of_bsn_vport_t",
Rich Lane2dd17012014-10-16 09:55:10 -0700132 5: "of_bsn_vport_t",
Dan Talaycoc0e802e2013-05-18 23:52:39 -0700133 "short_name":"bsn_vport"
134 },
Rich Lanea06d0c32013-03-25 08:52:03 -0700135 of_fm_cmd_t = { # Flow mod command went from u16 to u8
136 1: "uint16_t",
137 2: "uint8_t",
138 3: "uint8_t",
139 4: "uint8_t",
Rich Lane2dd17012014-10-16 09:55:10 -0700140 5: "uint8_t",
Rich Lanea06d0c32013-03-25 08:52:03 -0700141 "short_name":"fm_cmd"
142 },
143 of_wc_bmap_t = { # Wildcard bitmap
144 1: "uint32_t",
145 2: "uint32_t",
146 3: "uint64_t",
147 4: "uint64_t",
Rich Lane2dd17012014-10-16 09:55:10 -0700148 5: "uint64_t",
Rich Lanea06d0c32013-03-25 08:52:03 -0700149 "short_name":"wc_bmap"
150 },
151 of_match_bmap_t = { # Match bitmap
152 1: "uint32_t",
153 2: "uint32_t",
154 3: "uint64_t",
155 4: "uint64_t",
Rich Lane2dd17012014-10-16 09:55:10 -0700156 5: "uint64_t",
Rich Lanea06d0c32013-03-25 08:52:03 -0700157 "short_name":"match_bmap"
158 },
159 of_match_t = { # Match object
160 1: "of_match_v1_t",
161 2: "of_match_v2_t",
162 3: "of_match_v3_t",
163 4: "of_match_v3_t", # Currently uses same match as 1.2 (v3).
Rich Lane2dd17012014-10-16 09:55:10 -0700164 5: "of_match_v3_t", # Currently uses same match as 1.2 (v3).
Rich Lanea06d0c32013-03-25 08:52:03 -0700165 "short_name":"match"
166 },
Marc De Leenheer88c0bcb2015-07-24 15:49:19 -0700167 of_calient_port_desc_stats_entry_t = {
168 1: "of_calient_port_desc_stats_entry_t",
169 2: "of_calient_port_desc_stats_entry_t",
170 3: "of_calient_port_desc_stats_entry_t",
171 4: "of_calient_port_desc_stats_entry_t",
172 5: "of_calient_port_desc_stats_entry_t",
173 "short_name":"calient_port_desc_stats_entry"
174 },
Brian O'Connora259e3f2015-09-03 15:17:18 -0700175 of_odu_sig_id_t = {
176 1: "of_odu_sig_id_t",
177 2: "of_odu_sig_id_t",
178 3: "of_odu_sig_id_t",
179 4: "of_odu_sig_id_t",
180 5: "of_odu_sig_id_t",
181 "short_name":"odu_sig_id"
182 },
183 of_och_sig_id_t = {
184 1: "of_sig_id_t",
185 2: "of_sig_id_t",
186 3: "of_sig_id_t",
187 4: "of_sig_id_t",
188 5: "of_sig_id_t",
189 "short_name":"sig_id"
190 },
Marc De Leenheer88c0bcb2015-07-24 15:49:19 -0700191
Rich Lanea06d0c32013-03-25 08:52:03 -0700192)
193
194## Base data types
195#
196# The basic types; Value is a list: bytes, to_wire, from_wire
197# The accessors deal with endian, alignment and any other host/network
198# considerations. These are common across all versions
199#
200# For get accessors, assume we memcpy from wire buf and then apply ntoh
201# For set accessors, assume we apply hton and then memcpy to wire buf
202#
203# to/from wire functions take a pointer to class and change in place
204of_base_types = dict(
205 char = dict(bytes=1, use_as_rv=1, short_name="char"),
206 uint8_t = dict(bytes=1, use_as_rv=1, short_name="u8"),
207 uint16_t = dict(bytes=2, to_w="u16_hton", from_w="u16_ntoh", use_as_rv=1,
208 short_name="u16"),
209 uint32_t = dict(bytes=4, to_w="u32_hton", from_w="u32_ntoh", use_as_rv=1,
210 short_name="u32"),
211 uint64_t = dict(bytes=8, to_w="u64_hton", from_w="u64_ntoh", use_as_rv=1,
212 short_name="u64"),
213# of_cookie_t = dict(bytes=8, to_w="u64_hton", from_w="u64_ntoh", use_as_rv=1#,
214# short_name="cookie"),
215# of_counter_t = dict(bytes=8, to_w="u64_hton", from_w="u64_ntoh", use_as_rv=1,
216# short_name="counter"),
217 of_mac_addr_t = dict(bytes=6, short_name="mac"),
Andreas Wundsamb566a162013-07-18 19:30:23 -0700218 of_ipv4_t = dict(bytes=4, short_name="ipv4"),
Rich Lanea06d0c32013-03-25 08:52:03 -0700219 of_ipv6_t = dict(bytes=16, short_name="ipv6"),
220 of_port_name_t = dict(bytes=ofp_constants["OF_MAX_PORT_NAME_LEN"],
221 short_name="port_name"),
222 of_table_name_t = dict(bytes=ofp_constants["OF_MAX_TABLE_NAME_LEN"],
223 short_name="tab_name"),
224 of_desc_str_t = dict(bytes=ofp_constants["OF_DESC_STR_LEN"],
225 short_name="desc_str"),
226 of_serial_num_t = dict(bytes=ofp_constants["OF_SERIAL_NUM_LEN"],
227 short_name="ser_num"),
Rich Lanef8a3d002014-03-19 13:33:52 -0700228 of_str64_t = dict(bytes=64, short_name="str64"),
Brian O'Connor58a73e32015-05-28 11:51:27 -0700229 of_str32_t = dict(bytes=32, short_name="str32"),
230 of_str6_t = dict(bytes=6, short_name="str6"),
Andreas Wundsam53256162013-05-02 14:05:53 -0700231 of_match_v1_t = dict(bytes=40, to_w="match_v1_hton",
232 from_w="match_v1_ntoh",
Rich Lanea06d0c32013-03-25 08:52:03 -0700233 short_name="match_v1"),
Andreas Wundsam53256162013-05-02 14:05:53 -0700234 of_match_v2_t = dict(bytes=88, to_w="match_v2_hton",
235 from_w="match_v2_ntoh",
Rich Lanea06d0c32013-03-25 08:52:03 -0700236 short_name="match_v2"),
Andreas Wundsam53256162013-05-02 14:05:53 -0700237 of_match_v3_t = dict(bytes=-1, to_w="match_v3_hton",
238 from_w="match_v3_ntoh",
Rich Lanea06d0c32013-03-25 08:52:03 -0700239 short_name="match_v3"),
Andreas Wundsam53256162013-05-02 14:05:53 -0700240# of_match_v4_t = dict(bytes=-1, to_w="match_v4_hton",
241# from_w="match_v4_ntoh",
Rich Lanea06d0c32013-03-25 08:52:03 -0700242# short_name="match_v4"),
Rich Lane3b2fd832013-09-24 13:44:08 -0700243 of_octets_t = dict(bytes=-1, short_name="octets"),
244 of_bitmap_128_t = dict(bytes=16, short_name="bitmap_128"),
Rich Lane119289c2014-12-01 13:44:08 -0800245 of_bitmap_512_t = dict(bytes=64, short_name="bitmap_512"),
Rich Lanefab0c822013-12-30 11:46:48 -0800246 of_checksum_128_t = dict(bytes=16, short_name="checksum_128"),
Praseed Balakrishnan7f718782014-09-18 17:02:48 -0700247 of_app_code_t = dict(bytes=ofp_constants["OF_APP_CODE_LEN"],
248 short_name="app_code"),
Praseed Balakrishnan2ed6da02014-09-18 17:02:48 -0700249 of_sig_id_t = dict(bytes=ofp_constants["OF_SIGID_LEN"],
250 short_name="sig_id"),
Brian O'Connora259e3f2015-09-03 15:17:18 -0700251 of_odu_sig_id_t = dict(bytes=1, short_name="odu_sig_id"),
Rich Lanea06d0c32013-03-25 08:52:03 -0700252)
253
254of_scalar_types = ["char", "uint8_t", "uint16_t", "uint32_t", "uint64_t",
255 "of_port_no_t", "of_fm_cmd_t", "of_wc_bmap_t",
256 "of_match_bmap_t", "of_port_name_t", "of_table_name_t",
Andreas Wundsam53256162013-05-02 14:05:53 -0700257 "of_desc_str_t", "of_serial_num_t", "of_mac_addr_t",
Rich Lanef8a3d002014-03-19 13:33:52 -0700258 "of_ipv6_t", "of_ipv4_t", "of_bitmap_128_t", "of_checksum_128_t",
Brian O'Connor58a73e32015-05-28 11:51:27 -0700259 "of_str64_t", "of_str32_t", "of_str6_t", "of_bitmap_512_t"]
Rich Lanea06d0c32013-03-25 08:52:03 -0700260
Rich Lanea06d0c32013-03-25 08:52:03 -0700261##
262# LOXI identifiers
263#
264# Dict indexed by identifier name. Each entry contains the information
265# as a DotDict with the following keys:
266# values: A dict indexed by wire version giving each verion's value or None
267# common: The common value to use for this identifier at the LOXI top level (TBD)
268# all_same: If True, all the values across all versions are the same
269# ofp_name: The original name for the identifier
270# ofp_group: The ofp enumerated type if defined
271
272identifiers = {}
273
274##
275# Identifiers by original group
276# Keys are the original group names. Value is a list of LOXI identifiers
277
278identifiers_by_group = {}
279
280## Ordered list of class names
281# This is per-wire-version and is a list of the classes in the order
282# they appear in the file. That is important because of the assumption
283# that data members are defined before they are included in a superclass.
284ordered_classes = {} # Indexed by wire version
285
286## Per class ordered list of member names
287ordered_members = {}
288
289## Ordered list of message classes
290ordered_messages = []
291
292## Ordered list of non message classes
293ordered_non_messages = []
294
295## The objects that need list support
296ordered_list_objects = []
297
298## Stats request/reply are pseudo objects
299ordered_pseudo_objects = []
300
301## Standard order is normally messages followed by non-messages
302standard_class_order = []
303
304## All classes in order, including psuedo classes for which most code
305# is not generated.
306all_class_order = []
307
308## Map from class, wire_version to size of fixed part of class
309base_length = {}
310
Andreas Wundsam53256162013-05-02 14:05:53 -0700311## Boolean indication of variable length, per class, wire_version,
Rich Lanea06d0c32013-03-25 08:52:03 -0700312is_fixed_length = set()
313
314## The global object ID counter
315object_id = 1 # Reserve 0 for root object
316
317## The unified view of all classes. See internal readme.
318unified = {}
319
320## Indicates data members with non-fixed start offsets
321# Indexed by (cls, version, member-name) and value is prev-member-name
322special_offsets = {}
323
Rich Lanef1a89842014-10-12 10:04:13 -0700324# Map from wire version to OF_1_x
325short_version_names = {}
Rich Lanea06d0c32013-03-25 08:52:03 -0700326
327# The iteration object that gives the wire versions supported
Rich Lanef1a89842014-10-12 10:04:13 -0700328of_version_range = []
Rich Lanea06d0c32013-03-25 08:52:03 -0700329
Rich Lanef1a89842014-10-12 10:04:13 -0700330# Map from wire version to OF_VERSION_1_x
331of_version_wire2name = {}
332
333for version in loxi_globals.OFVersions.all_supported:
334 v = version.version.replace('.', '_')
335 short_version_names[version.wire_version] = 'OF_' + v
336 of_version_range.append(version.wire_version)
337 of_version_wire2name[version.wire_version] = 'OF_VERSION_' + v
338 globals()['VERSION_' + v] = version.wire_version
Rich Lanea06d0c32013-03-25 08:52:03 -0700339
340
341################################################################
342#
343# Experimenters, vendors, extensions
344#
Andreas Wundsam53256162013-05-02 14:05:53 -0700345# Although the term "experimenter" is used for identifying
Rich Lanea06d0c32013-03-25 08:52:03 -0700346# external extension definitions, we generally use the term
347# extension when refering to the messages or objects themselves.
348#
349# Conventions:
350#
351# Extension messages should start with of_<experimenter>_
352# Extension actions should start with of_<experimenter>_action_
353# Extension instructions should start with of_<experimenter>_instructions_
354#
355# Currently, the above conventions are not enforced; the mapping
356# is done brute force in type_maps.py
357#
358################################################################
359
360# The map of known experimenters to their experimenter IDs
361experimenter_name_to_id = dict(
362 bsn = 0x005c16c7,
363 nicira = 0x00002320,
364 openflow = 0x000026e1
365 )