blob: b4add392ad67e5a43b54c7fe1cb8e9f58c59f9b4 [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.
Rich Lane5d33a622013-04-08 17:33:11 -070027//
28// Also derived from the OpenFlow header files which have these copyrights:
29// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
30// Copyright (c) 2011, 2012 Open Networking Foundation
Rich Lanea06d0c32013-03-25 08:52:03 -070031
32#version 4
33
Rich Lane5d33a622013-04-08 17:33:11 -070034enum macro_definitions {
35 OFP_MAX_TABLE_NAME_LEN = 32,
36 OFP_MAX_PORT_NAME_LEN = 16,
37
Wilson Ngd72013d2013-09-29 10:21:48 -070038 OFP_TCP_PORT = 6653,
39 OFP_SSL_PORT = 6653,
Rich Lane5d33a622013-04-08 17:33:11 -070040
41 OFP_ETH_ALEN = 6,
42
43 OFP_DEFAULT_MISS_SEND_LEN = 128,
44
45 OFP_VLAN_NONE = 0,
46
47 OFP_FLOW_PERMANENT = 0,
48
49 OFP_DEFAULT_PRIORITY = 0x8000,
50
51 OFP_NO_BUFFER = 0xffffffff,
52
53 DESC_STR_LEN = 256,
54 SERIAL_NUM_LEN = 32,
55
56 OFPQ_ALL = 0xffffffff,
57 OFPQ_MAX_RATE_UNCFG = 0xffff,
58 OFPQ_MIN_RATE_UNCFG = 0xffff,
59};
60
Andreas Wundsam4ee51462013-07-30 11:00:37 -070061enum ofp_port(wire_type=uint32_t) {
Rich Lane5d33a622013-04-08 17:33:11 -070062 OFPP_MAX = 0xffffff00,
63 OFPP_IN_PORT = 0xfffffff8,
64 OFPP_TABLE = 0xfffffff9,
65 OFPP_NORMAL = 0xfffffffa,
66 OFPP_FLOOD = 0xfffffffb,
67 OFPP_ALL = 0xfffffffc,
68 OFPP_CONTROLLER = 0xfffffffd,
69 OFPP_LOCAL = 0xfffffffe,
Tomasz949aa522013-10-23 16:12:27 -070070 OFPP_ANY = 0xffffffff,
Rich Lane5d33a622013-04-08 17:33:11 -070071};
72
Andreas Wundsam4ee51462013-07-30 11:00:37 -070073enum ofp_type(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -070074 OFPT_HELLO = 0,
75 OFPT_ERROR = 1,
76 OFPT_ECHO_REQUEST = 2,
77 OFPT_ECHO_REPLY = 3,
78 OFPT_EXPERIMENTER = 4,
79 OFPT_FEATURES_REQUEST = 5,
80 OFPT_FEATURES_REPLY = 6,
81 OFPT_GET_CONFIG_REQUEST = 7,
82 OFPT_GET_CONFIG_REPLY = 8,
83 OFPT_SET_CONFIG = 9,
84 OFPT_PACKET_IN = 10,
85 OFPT_FLOW_REMOVED = 11,
86 OFPT_PORT_STATUS = 12,
87 OFPT_PACKET_OUT = 13,
88 OFPT_FLOW_MOD = 14,
89 OFPT_GROUP_MOD = 15,
90 OFPT_PORT_MOD = 16,
91 OFPT_TABLE_MOD = 17,
Rob Vaterlausfeee3712013-09-30 11:24:19 -070092 OFPT_STATS_REQUEST = 18,
93 OFPT_STATS_REPLY = 19,
Rich Lane5d33a622013-04-08 17:33:11 -070094 OFPT_BARRIER_REQUEST = 20,
95 OFPT_BARRIER_REPLY = 21,
96 OFPT_QUEUE_GET_CONFIG_REQUEST = 22,
97 OFPT_QUEUE_GET_CONFIG_REPLY = 23,
98 OFPT_ROLE_REQUEST = 24,
99 OFPT_ROLE_REPLY = 25,
100 OFPT_GET_ASYNC_REQUEST = 26,
101 OFPT_GET_ASYNC_REPLY = 27,
102 OFPT_SET_ASYNC = 28,
103 OFPT_METER_MOD = 29,
104};
105
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700106enum ofp_config_flags(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700107 OFPC_FRAG_NORMAL = 0,
108 OFPC_FRAG_DROP = 1,
109 OFPC_FRAG_REASM = 2,
110 OFPC_FRAG_MASK = 3,
111};
112
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700113enum ofp_table_config(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700114 OFPTC_DEPRECATED_MASK = 0x3,
115};
116
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700117enum ofp_table(wire_type=uint8_t, complete=False) {
Rich Lane5d33a622013-04-08 17:33:11 -0700118 OFPTT_MAX = 0xfe,
119 OFPTT_ALL = 0xff,
120};
121
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700122enum ofp_capabilities(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700123 OFPC_FLOW_STATS = 0x1,
124 OFPC_TABLE_STATS = 0x2,
125 OFPC_PORT_STATS = 0x4,
126 OFPC_GROUP_STATS = 0x8,
127 OFPC_IP_REASM = 0x20,
128 OFPC_QUEUE_STATS = 0x40,
129 OFPC_PORT_BLOCKED = 0x100,
130};
131
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700132enum ofp_port_config(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700133 OFPPC_PORT_DOWN = 0x1,
134 OFPPC_NO_RECV = 0x4,
135 OFPPC_NO_FWD = 0x20,
136 OFPPC_NO_PACKET_IN = 0x40,
Rob Vaterlaus0a8ec142013-10-10 13:27:14 -0700137 OFPPC_BSN_MIRROR_DEST = 0x80000000,
Rich Lane5d33a622013-04-08 17:33:11 -0700138};
139
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700140enum ofp_port_state(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700141 OFPPS_LINK_DOWN = 0x1,
142 OFPPS_BLOCKED = 0x2,
143 OFPPS_LIVE = 0x4,
144};
145
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700146enum ofp_port_features(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700147 OFPPF_10MB_HD = 0x1,
148 OFPPF_10MB_FD = 0x2,
149 OFPPF_100MB_HD = 0x4,
150 OFPPF_100MB_FD = 0x8,
151 OFPPF_1GB_HD = 0x10,
152 OFPPF_1GB_FD = 0x20,
153 OFPPF_10GB_FD = 0x40,
154 OFPPF_40GB_FD = 0x80,
155 OFPPF_100GB_FD = 0x100,
156 OFPPF_1TB_FD = 0x200,
157 OFPPF_OTHER = 0x400,
158 OFPPF_COPPER = 0x800,
159 OFPPF_FIBER = 0x1000,
160 OFPPF_AUTONEG = 0x2000,
161 OFPPF_PAUSE = 0x4000,
162 OFPPF_PAUSE_ASYM = 0x8000,
163};
164
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700165enum ofp_port_reason(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700166 OFPPR_ADD = 0,
167 OFPPR_DELETE = 1,
168 OFPPR_MODIFY = 2,
169};
170
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700171enum ofp_match_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700172 OFPMT_STANDARD = 0,
173 OFPMT_OXM = 1,
174};
175
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700176enum ofp_oxm_class(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700177 OFPXMC_NXM_0 = 0,
178 OFPXMC_NXM_1 = 1,
179 OFPXMC_OPENFLOW_BASIC = 0x8000,
180 OFPXMC_EXPERIMENTER = 0xffff,
181};
182
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700183enum ofp_vlan_id(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700184 OFPVID_NONE = 0,
185 OFPVID_PRESENT = 0x1000,
186};
187
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700188// FIXME: OF spec specified this as '9' bits, implicitly adding
189// to full byte
190enum ofp_ipv6exthdr_flags(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700191 OFPIEH_NONEXT = 0x1,
192 OFPIEH_ESP = 0x2,
193 OFPIEH_AUTH = 0x4,
194 OFPIEH_DEST = 0x8,
195 OFPIEH_FRAG = 0x10,
196 OFPIEH_ROUTER = 0x20,
197 OFPIEH_HOP = 0x40,
198 OFPIEH_UNREP = 0x80,
199 OFPIEH_UNSEQ = 0x100,
200};
201
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700202enum ofp_action_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700203 OFPAT_OUTPUT = 0,
204 OFPAT_COPY_TTL_OUT = 0xb,
205 OFPAT_COPY_TTL_IN = 0xc,
206 OFPAT_SET_MPLS_TTL = 0xf,
207 OFPAT_DEC_MPLS_TTL = 0x10,
208 OFPAT_PUSH_VLAN = 0x11,
209 OFPAT_POP_VLAN = 0x12,
210 OFPAT_PUSH_MPLS = 0x13,
211 OFPAT_POP_MPLS = 0x14,
212 OFPAT_SET_QUEUE = 0x15,
213 OFPAT_GROUP = 0x16,
214 OFPAT_SET_NW_TTL = 0x17,
215 OFPAT_DEC_NW_TTL = 0x18,
216 OFPAT_SET_FIELD = 0x19,
217 OFPAT_PUSH_PBB = 0x1a,
218 OFPAT_POP_PBB = 0x1b,
219 OFPAT_EXPERIMENTER = 0xffff,
220};
221
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700222enum ofp_controller_max_len(wire_type=uint16_t, complete=False) {
Rich Lane5d33a622013-04-08 17:33:11 -0700223 OFPCML_MAX = 0xffe5,
224 OFPCML_NO_BUFFER = 0xffff,
225};
226
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700227enum ofp_instruction_type(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700228 OFPIT_GOTO_TABLE = 0x1,
229 OFPIT_WRITE_METADATA = 0x2,
230 OFPIT_WRITE_ACTIONS = 0x3,
231 OFPIT_APPLY_ACTIONS = 0x4,
232 OFPIT_CLEAR_ACTIONS = 0x5,
233 OFPIT_METER = 0x6,
234 OFPIT_EXPERIMENTER = 0xffff,
235};
236
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700237enum ofp_flow_mod_command(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700238 OFPFC_ADD = 0,
239 OFPFC_MODIFY = 1,
240 OFPFC_MODIFY_STRICT = 2,
241 OFPFC_DELETE = 3,
242 OFPFC_DELETE_STRICT = 4,
243};
244
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700245enum ofp_flow_mod_flags(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700246 OFPFF_SEND_FLOW_REM = 0x1,
247 OFPFF_CHECK_OVERLAP = 0x2,
248 OFPFF_RESET_COUNTS = 0x4,
249 OFPFF_NO_PKT_COUNTS = 0x8,
250 OFPFF_NO_BYT_COUNTS = 0x10,
Rich Lanef86f39a2013-10-07 18:04:11 -0700251
252 /* Non-standard, enabled by an experimenter message */
253 /* See the bsn_flow_idle input file */
254 OFPFF_BSN_SEND_IDLE = 0x80,
Rich Lane5d33a622013-04-08 17:33:11 -0700255};
256
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700257enum ofp_group(wire_type=uint32_t, complete=False) {
Rich Lane5d33a622013-04-08 17:33:11 -0700258 OFPG_MAX = 0xffffff00,
259 OFPG_ALL = 0xfffffffc,
260 OFPG_ANY = 0xffffffff,
261};
262
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700263enum ofp_group_mod_command(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700264 OFPGC_ADD = 0,
265 OFPGC_MODIFY = 1,
266 OFPGC_DELETE = 2,
267};
268
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700269enum ofp_group_type(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700270 OFPGT_ALL = 0,
271 OFPGT_SELECT = 1,
272 OFPGT_INDIRECT = 2,
273 OFPGT_FF = 3,
274};
275
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700276enum ofp_packet_in_reason(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700277 OFPR_NO_MATCH = 0,
278 OFPR_ACTION = 1,
279 OFPR_INVALID_TTL = 2,
Andreas Wundsam7723c562013-10-23 16:27:40 -0700280
281 // non-standard BSN extensions. OF does not have a standard-conformant
282 // way to extend the set of packet_in reasons
283 OFPR_BSN_NEW_HOST = 128,
284 OFPR_BSN_STATION_MOVE = 129,
285 OFPR_BSN_BAD_VLAN = 130,
286 OFPR_BSN_DESTINATION_LOOKUP_FAILURE = 131,
Rich Lane5d33a622013-04-08 17:33:11 -0700287};
288
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700289enum ofp_flow_removed_reason(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700290 OFPRR_IDLE_TIMEOUT = 0,
291 OFPRR_HARD_TIMEOUT = 1,
292 OFPRR_DELETE = 2,
293 OFPRR_GROUP_DELETE = 3,
294};
295
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700296enum ofp_meter(wire_type=uint32_t, complete=False) {
Rich Lane5d33a622013-04-08 17:33:11 -0700297 OFPM_MAX = 0xffff0000,
298 OFPM_SLOWPATH = 0xfffffffd,
299 OFPM_CONTROLLER = 0xfffffffe,
300 OFPM_ALL = 0xffffffff,
301};
302
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700303enum ofp_meter_band_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700304 OFPMBT_DROP = 0x1,
305 OFPMBT_DSCP_REMARK = 0x2,
306 OFPMBT_EXPERIMENTER = 0xffff,
307};
308
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700309enum ofp_meter_mod_command(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700310 OFPMC_ADD = 0,
311 OFPMC_MODIFY = 1,
312 OFPMC_DELETE = 2,
313};
314
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700315enum ofp_meter_flags(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700316 OFPMF_KBPS = 0x1,
317 OFPMF_PKTPS = 0x2,
318 OFPMF_BURST = 0x4,
319 OFPMF_STATS = 0x8,
320};
321
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700322enum ofp_error_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700323 OFPET_HELLO_FAILED = 0,
324 OFPET_BAD_REQUEST = 1,
325 OFPET_BAD_ACTION = 2,
326 OFPET_BAD_INSTRUCTION = 3,
327 OFPET_BAD_MATCH = 4,
328 OFPET_FLOW_MOD_FAILED = 5,
329 OFPET_GROUP_MOD_FAILED = 6,
330 OFPET_PORT_MOD_FAILED = 7,
331 OFPET_TABLE_MOD_FAILED = 8,
332 OFPET_QUEUE_OP_FAILED = 9,
333 OFPET_SWITCH_CONFIG_FAILED = 10,
334 OFPET_ROLE_REQUEST_FAILED = 11,
335 OFPET_METER_MOD_FAILED = 12,
336 OFPET_TABLE_FEATURES_FAILED = 13,
337 OFPET_EXPERIMENTER = 0xffff,
338};
339
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700340enum ofp_hello_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700341 OFPHFC_INCOMPATIBLE = 0,
342 OFPHFC_EPERM = 1,
343};
344
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700345enum ofp_bad_request_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700346 OFPBRC_BAD_VERSION = 0,
347 OFPBRC_BAD_TYPE = 1,
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700348 OFPBRC_BAD_STAT = 2,
Rich Lane5d33a622013-04-08 17:33:11 -0700349 OFPBRC_BAD_EXPERIMENTER = 3,
Rob Vaterlausb3f49d92013-10-01 17:57:31 -0700350 OFPBRC_BAD_EXPERIMENTER_TYPE = 4,
Rich Lane5d33a622013-04-08 17:33:11 -0700351 OFPBRC_EPERM = 5,
352 OFPBRC_BAD_LEN = 6,
353 OFPBRC_BUFFER_EMPTY = 7,
354 OFPBRC_BUFFER_UNKNOWN = 8,
355 OFPBRC_BAD_TABLE_ID = 9,
356 OFPBRC_IS_SLAVE = 10,
357 OFPBRC_BAD_PORT = 11,
358 OFPBRC_BAD_PACKET = 12,
359 OFPBRC_MULTIPART_BUFFER_OVERFLOW = 13,
360};
361
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700362enum ofp_bad_action_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700363 OFPBAC_BAD_TYPE = 0,
364 OFPBAC_BAD_LEN = 1,
365 OFPBAC_BAD_EXPERIMENTER = 2,
Rob Vaterlausb3f49d92013-10-01 17:57:31 -0700366 OFPBAC_BAD_EXPERIMENTER_TYPE = 3,
Rich Lane5d33a622013-04-08 17:33:11 -0700367 OFPBAC_BAD_OUT_PORT = 4,
368 OFPBAC_BAD_ARGUMENT = 5,
369 OFPBAC_EPERM = 6,
370 OFPBAC_TOO_MANY = 7,
371 OFPBAC_BAD_QUEUE = 8,
372 OFPBAC_BAD_OUT_GROUP = 9,
373 OFPBAC_MATCH_INCONSISTENT = 10,
374 OFPBAC_UNSUPPORTED_ORDER = 11,
375 OFPBAC_BAD_TAG = 12,
376 OFPBAC_BAD_SET_TYPE = 13,
377 OFPBAC_BAD_SET_LEN = 14,
378 OFPBAC_BAD_SET_ARGUMENT = 15,
379};
380
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700381enum ofp_bad_instruction_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700382 OFPBIC_UNKNOWN_INST = 0,
383 OFPBIC_UNSUP_INST = 1,
384 OFPBIC_BAD_TABLE_ID = 2,
385 OFPBIC_UNSUP_METADATA = 3,
386 OFPBIC_UNSUP_METADATA_MASK = 4,
387 OFPBIC_BAD_EXPERIMENTER = 5,
Rob Vaterlausb3f49d92013-10-01 17:57:31 -0700388 OFPBIC_BAD_EXPERIMENTER_TYPE = 6,
Rich Lane5d33a622013-04-08 17:33:11 -0700389 OFPBIC_BAD_LEN = 7,
390 OFPBIC_EPERM = 8,
391};
392
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700393enum ofp_bad_match_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700394 OFPBMC_BAD_TYPE = 0,
395 OFPBMC_BAD_LEN = 1,
396 OFPBMC_BAD_TAG = 2,
397 OFPBMC_BAD_DL_ADDR_MASK = 3,
398 OFPBMC_BAD_NW_ADDR_MASK = 4,
399 OFPBMC_BAD_WILDCARDS = 5,
400 OFPBMC_BAD_FIELD = 6,
401 OFPBMC_BAD_VALUE = 7,
402 OFPBMC_BAD_MASK = 8,
403 OFPBMC_BAD_PREREQ = 9,
404 OFPBMC_DUP_FIELD = 10,
405 OFPBMC_EPERM = 11,
406};
407
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700408enum ofp_flow_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700409 OFPFMFC_UNKNOWN = 0,
410 OFPFMFC_TABLE_FULL = 1,
411 OFPFMFC_BAD_TABLE_ID = 2,
412 OFPFMFC_OVERLAP = 3,
413 OFPFMFC_EPERM = 4,
414 OFPFMFC_BAD_TIMEOUT = 5,
415 OFPFMFC_BAD_COMMAND = 6,
416 OFPFMFC_BAD_FLAGS = 7,
417};
418
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700419enum ofp_group_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700420 OFPGMFC_GROUP_EXISTS = 0,
421 OFPGMFC_INVALID_GROUP = 1,
422 OFPGMFC_WEIGHT_UNSUPPORTED = 2,
423 OFPGMFC_OUT_OF_GROUPS = 3,
424 OFPGMFC_OUT_OF_BUCKETS = 4,
425 OFPGMFC_CHAINING_UNSUPPORTED = 5,
426 OFPGMFC_WATCH_UNSUPPORTED = 6,
427 OFPGMFC_LOOP = 7,
428 OFPGMFC_UNKNOWN_GROUP = 8,
429 OFPGMFC_CHAINED_GROUP = 9,
430 OFPGMFC_BAD_TYPE = 10,
431 OFPGMFC_BAD_COMMAND = 11,
432 OFPGMFC_BAD_BUCKET = 12,
433 OFPGMFC_BAD_WATCH = 13,
434 OFPGMFC_EPERM = 14,
435};
436
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700437enum ofp_port_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700438 OFPPMFC_BAD_PORT = 0,
439 OFPPMFC_BAD_HW_ADDR = 1,
440 OFPPMFC_BAD_CONFIG = 2,
441 OFPPMFC_BAD_ADVERTISE = 3,
442 OFPPMFC_EPERM = 4,
443};
444
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700445enum ofp_table_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700446 OFPTMFC_BAD_TABLE = 0,
447 OFPTMFC_BAD_CONFIG = 1,
448 OFPTMFC_EPERM = 2,
449};
450
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700451enum ofp_queue_op_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700452 OFPQOFC_BAD_PORT = 0,
453 OFPQOFC_BAD_QUEUE = 1,
454 OFPQOFC_EPERM = 2,
455};
456
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700457enum ofp_switch_config_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700458 OFPSCFC_BAD_FLAGS = 0,
459 OFPSCFC_BAD_LEN = 1,
460 OFPSCFC_EPERM = 2,
461};
462
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700463enum ofp_role_request_failed_code(wire_type=uint16_t){
Rich Lane5d33a622013-04-08 17:33:11 -0700464 OFPRRFC_STALE = 0,
465 OFPRRFC_UNSUP = 1,
466 OFPRRFC_BAD_ROLE = 2,
467};
468
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700469enum ofp_meter_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700470 OFPMMFC_UNKNOWN = 0,
471 OFPMMFC_METER_EXISTS = 1,
472 OFPMMFC_INVALID_METER = 2,
473 OFPMMFC_UNKNOWN_METER = 3,
474 OFPMMFC_BAD_COMMAND = 4,
475 OFPMMFC_BAD_FLAGS = 5,
476 OFPMMFC_BAD_RATE = 6,
477 OFPMMFC_BAD_BURST = 7,
478 OFPMMFC_BAD_BAND = 8,
479 OFPMMFC_BAD_BAND_VALUE = 9,
480 OFPMMFC_OUT_OF_METERS = 10,
481 OFPMMFC_OUT_OF_BANDS = 11,
482};
483
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700484enum ofp_table_features_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700485 OFPTFFC_BAD_TABLE = 0,
486 OFPTFFC_BAD_METADATA = 1,
487 OFPTFFC_BAD_TYPE = 2,
488 OFPTFFC_BAD_LEN = 3,
489 OFPTFFC_BAD_ARGUMENT = 4,
490 OFPTFFC_EPERM = 5,
491};
492
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700493enum ofp_stats_type(wire_type=uint16_t) {
494 OFPST_DESC = 0,
495 OFPST_FLOW = 1,
496 OFPST_AGGREGATE = 2,
497 OFPST_TABLE = 3,
498 OFPST_PORT = 4,
499 OFPST_QUEUE = 5,
500 OFPST_GROUP = 6,
501 OFPST_GROUP_DESC = 7,
502 OFPST_GROUP_FEATURES = 8,
503 OFPST_METER = 9,
504 OFPST_METER_CONFIG = 10,
505 OFPST_METER_FEATURES = 11,
506 OFPST_TABLE_FEATURES = 12,
507 OFPST_PORT_DESC = 13,
508 OFPST_EXPERIMENTER = 0xffff,
Rich Lane5d33a622013-04-08 17:33:11 -0700509};
510
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700511enum ofp_stats_request_flags(wire_type=uint16_t, bitmask=True) {
512 OFPSF_REQ_MORE = 0x1,
Rich Lane5d33a622013-04-08 17:33:11 -0700513};
514
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700515enum ofp_stats_reply_flags(wire_type=uint16_t, bitmask=True) {
516 OFPSF_REPLY_MORE = 0x1,
Rich Lane5d33a622013-04-08 17:33:11 -0700517};
518
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700519enum ofp_table_feature_prop_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700520 OFPTFPT_INSTRUCTIONS = 0,
521 OFPTFPT_INSTRUCTIONS_MISS = 1,
522 OFPTFPT_NEXT_TABLES = 2,
523 OFPTFPT_NEXT_TABLES_MISS = 3,
524 OFPTFPT_WRITE_ACTIONS = 4,
525 OFPTFPT_WRITE_ACTIONS_MISS = 5,
526 OFPTFPT_APPLY_ACTIONS = 6,
527 OFPTFPT_APPLY_ACTIONS_MISS = 7,
528 OFPTFPT_MATCH = 8,
529 OFPTFPT_WILDCARDS = 0xa,
530 OFPTFPT_WRITE_SETFIELD = 0xc,
531 OFPTFPT_WRITE_SETFIELD_MISS = 0xd,
532 OFPTFPT_APPLY_SETFIELD = 0xe,
533 OFPTFPT_APPLY_SETFIELD_MISS = 0xf,
534 OFPTFPT_EXPERIMENTER = 0xfffe,
535 OFPTFPT_EXPERIMENTER_MISS = 0xffff,
536};
537
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700538enum ofp_group_capabilities(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700539 OFPGFC_SELECT_WEIGHT = 0x1,
540 OFPGFC_SELECT_LIVENESS = 0x2,
541 OFPGFC_CHAINING = 0x4,
542 OFPGFC_CHAINING_CHECKS = 0x8,
543};
544
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700545enum ofp_queue_properties(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700546 OFPQT_MIN_RATE = 0x1,
547 OFPQT_MAX_RATE = 0x2,
548 OFPQT_EXPERIMENTER = 0xffff,
549};
550
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700551enum ofp_controller_role(wire_type=uint32_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700552 OFPCR_ROLE_NOCHANGE = 0,
553 OFPCR_ROLE_EQUAL = 1,
554 OFPCR_ROLE_MASTER = 2,
555 OFPCR_ROLE_SLAVE = 3,
556};
557
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700558enum ofp_hello_elem_type(wire_type=uint16_t) {
Rich Lane0733cd62013-04-18 21:14:42 -0700559 OFPHET_VERSIONBITMAP = 1,
560};
561
Rich Lanee9c37db2013-06-21 18:30:24 -0700562/* XXX rename to of_message */
Rich Lane68ae4d72013-05-09 10:55:19 -0700563struct of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700564 uint8_t version;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700565 uint8_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700566 uint16_t length;
567 uint32_t xid;
568};
569
xinwuf08ef682013-12-05 18:29:20 -0800570struct of_uint64 {
571 uint64_t value;
572};
573
Rich Lanea06d0c32013-03-25 08:52:03 -0700574// Special structures used for managing scalar list elements
Rich Lane68ae4d72013-05-09 10:55:19 -0700575struct of_uint32 {
Rich Lanea06d0c32013-03-25 08:52:03 -0700576 uint32_t value;
577};
578
579// Special structures used for managing scalar list elements
Rich Lane68ae4d72013-05-09 10:55:19 -0700580struct of_uint8 {
Rich Lanea06d0c32013-03-25 08:52:03 -0700581 uint8_t value;
582};
583
Rich Lane68ae4d72013-05-09 10:55:19 -0700584struct of_hello_elem {
Andreas Wundsam70411bf2013-08-02 22:26:38 -0700585 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700586 uint16_t length;
587};
588
Rich Lanee9c37db2013-06-21 18:30:24 -0700589struct of_hello_elem_versionbitmap : of_hello_elem {
Rich Lane31b87142013-05-09 22:05:42 -0700590 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700591 uint16_t length;
592 list(of_uint32_t) bitmaps;
593};
594
Rich Lanee9c37db2013-06-21 18:30:24 -0700595struct of_hello : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700596 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700597 uint8_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700598 uint16_t length;
599 uint32_t xid;
600 list(of_hello_elem_t) elements;
601};
602
Rich Lanee9c37db2013-06-21 18:30:24 -0700603struct of_echo_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700604 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700605 uint8_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700606 uint16_t length;
607 uint32_t xid;
608 of_octets_t data;
609};
610
Rich Lanee9c37db2013-06-21 18:30:24 -0700611struct of_echo_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700612 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700613 uint8_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700614 uint16_t length;
615 uint32_t xid;
616 of_octets_t data;
617};
618
Rich Lanee9c37db2013-06-21 18:30:24 -0700619struct of_experimenter : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700620 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700621 uint8_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700622 uint16_t length;
623 uint32_t xid;
Rich Laneb25d07c2013-08-22 17:22:43 -0700624 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700625 uint32_t subtype;
626 of_octets_t data;
627};
628
Rich Lanee9c37db2013-06-21 18:30:24 -0700629struct of_barrier_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700630 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700631 uint8_t type == 20;
Rich Lanea06d0c32013-03-25 08:52:03 -0700632 uint16_t length;
633 uint32_t xid;
634};
635
Rich Lanee9c37db2013-06-21 18:30:24 -0700636struct of_barrier_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700637 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700638 uint8_t type == 21;
Rich Lanea06d0c32013-03-25 08:52:03 -0700639 uint16_t length;
640 uint32_t xid;
641};
642
Rich Lanee9c37db2013-06-21 18:30:24 -0700643struct of_get_config_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700644 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700645 uint8_t type == 7;
Rich Lanea06d0c32013-03-25 08:52:03 -0700646 uint16_t length;
647 uint32_t xid;
648};
649
Rich Lanee9c37db2013-06-21 18:30:24 -0700650struct of_get_config_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700651 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700652 uint8_t type == 8;
Rich Lanea06d0c32013-03-25 08:52:03 -0700653 uint16_t length;
654 uint32_t xid;
Andreas Wundsam057540b2013-11-19 16:51:36 -0800655 enum ofp_config_flags flags;
Rich Lanea06d0c32013-03-25 08:52:03 -0700656 uint16_t miss_send_len;
657};
658
Rich Lanee9c37db2013-06-21 18:30:24 -0700659struct of_set_config : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700660 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700661 uint8_t type == 9;
Rich Lanea06d0c32013-03-25 08:52:03 -0700662 uint16_t length;
663 uint32_t xid;
Andreas Wundsam057540b2013-11-19 16:51:36 -0800664 enum ofp_config_flags flags;
Rich Lanea06d0c32013-03-25 08:52:03 -0700665 uint16_t miss_send_len;
666};
667
Rich Lanee9c37db2013-06-21 18:30:24 -0700668struct of_table_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700669 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700670 uint8_t type == 17;
Rich Lanea06d0c32013-03-25 08:52:03 -0700671 uint16_t length;
672 uint32_t xid;
673 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700674 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700675 uint32_t config;
676};
677
Rich Lane68ae4d72013-05-09 10:55:19 -0700678struct of_port_desc {
Rich Lanea06d0c32013-03-25 08:52:03 -0700679 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700680 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700681 of_mac_addr_t hw_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700682 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700683 of_port_name_t name;
Rob Vaterlausd9d72d22013-09-23 14:50:52 -0700684 enum ofp_port_config config;
685 enum ofp_port_state state;
686 enum ofp_port_features curr;
687 enum ofp_port_features advertised;
688 enum ofp_port_features supported;
689 enum ofp_port_features peer;
Rich Lanea06d0c32013-03-25 08:52:03 -0700690 uint32_t curr_speed;
691 uint32_t max_speed;
692};
693
Rich Lanee9c37db2013-06-21 18:30:24 -0700694struct of_features_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700695 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700696 uint8_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700697 uint16_t length;
698 uint32_t xid;
699};
700
Rich Lanee9c37db2013-06-21 18:30:24 -0700701struct of_features_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700702 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700703 uint8_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -0700704 uint16_t length;
705 uint32_t xid;
706 uint64_t datapath_id;
707 uint32_t n_buffers;
708 uint8_t n_tables;
709 uint8_t auxiliary_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700710 pad(2);
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700711 enum ofp_capabilities capabilities;
Rich Lanea06d0c32013-03-25 08:52:03 -0700712 uint32_t reserved;
713};
714
Rich Lanee9c37db2013-06-21 18:30:24 -0700715struct of_port_status : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700716 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700717 uint8_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -0700718 uint16_t length;
719 uint32_t xid;
Rob Vaterlausd9d72d22013-09-23 14:50:52 -0700720 enum ofp_port_reason reason;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700721 pad(7);
Rich Lanea06d0c32013-03-25 08:52:03 -0700722 of_port_desc_t desc;
723};
724
Rich Lanee9c37db2013-06-21 18:30:24 -0700725struct of_port_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700726 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700727 uint8_t type == 16;
Rich Lanea06d0c32013-03-25 08:52:03 -0700728 uint16_t length;
729 uint32_t xid;
730 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700731 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700732 of_mac_addr_t hw_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700733 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700734 uint32_t config;
735 uint32_t mask;
736 uint32_t advertise;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700737 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700738};
739
740// FIXME Does this need to be v4?
Andreas Wundsam5da68512013-10-22 22:18:00 -0700741struct of_match_v3(align=8, length_includes_align=False) {
Rich Lane31b87142013-05-09 22:05:42 -0700742 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700743 uint16_t length;
744 list(of_oxm_t) oxm_list;
745};
746
Rich Lanea06d0c32013-03-25 08:52:03 -0700747// This looks like an action header, but is standalone. See
748// ofp_table_features_prop_actions
Rich Lane68ae4d72013-05-09 10:55:19 -0700749struct of_action_id {
Rich Lanea06d0c32013-03-25 08:52:03 -0700750 uint16_t type;
751 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700752 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700753};
754
Rich Lanee9c37db2013-06-21 18:30:24 -0700755struct of_action_output : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700756 uint16_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700757 uint16_t len;
758 of_port_no_t port;
759 uint16_t max_len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700760 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -0700761};
762
Rich Lanee9c37db2013-06-21 18:30:24 -0700763struct of_action_copy_ttl_out : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700764 uint16_t type == 11;
Rich Lanea06d0c32013-03-25 08:52:03 -0700765 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700766 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700767};
768
Rich Lanee9c37db2013-06-21 18:30:24 -0700769struct of_action_copy_ttl_in : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700770 uint16_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -0700771 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700772 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700773};
774
Rich Lanee9c37db2013-06-21 18:30:24 -0700775struct of_action_set_mpls_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700776 uint16_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -0700777 uint16_t len;
778 uint8_t mpls_ttl;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700779 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700780};
781
Rich Lanee9c37db2013-06-21 18:30:24 -0700782struct of_action_dec_mpls_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700783 uint16_t type == 16;
Rich Lanea06d0c32013-03-25 08:52:03 -0700784 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700785 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700786};
787
Rich Lanee9c37db2013-06-21 18:30:24 -0700788struct of_action_push_vlan : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700789 uint16_t type == 17;
Rich Lanea06d0c32013-03-25 08:52:03 -0700790 uint16_t len;
791 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700792 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700793};
794
Rich Lanee9c37db2013-06-21 18:30:24 -0700795struct of_action_pop_vlan : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700796 uint16_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -0700797 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700798 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700799};
800
Rich Lanee9c37db2013-06-21 18:30:24 -0700801struct of_action_push_mpls : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700802 uint16_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -0700803 uint16_t len;
804 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700805 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700806};
807
Rich Lanee9c37db2013-06-21 18:30:24 -0700808struct of_action_pop_mpls : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700809 uint16_t type == 20;
Rich Lanea06d0c32013-03-25 08:52:03 -0700810 uint16_t len;
811 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700812 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700813};
814
Rich Lanee9c37db2013-06-21 18:30:24 -0700815struct of_action_set_queue : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700816 uint16_t type == 21;
Rich Lanea06d0c32013-03-25 08:52:03 -0700817 uint16_t len;
818 uint32_t queue_id;
819};
820
Rich Lanee9c37db2013-06-21 18:30:24 -0700821struct of_action_group : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700822 uint16_t type == 22;
Rich Lanea06d0c32013-03-25 08:52:03 -0700823 uint16_t len;
824 uint32_t group_id;
825};
826
Rich Lanee9c37db2013-06-21 18:30:24 -0700827struct of_action_set_nw_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700828 uint16_t type == 23;
Rich Lanea06d0c32013-03-25 08:52:03 -0700829 uint16_t len;
830 uint8_t nw_ttl;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700831 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700832};
833
Rich Lanee9c37db2013-06-21 18:30:24 -0700834struct of_action_dec_nw_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700835 uint16_t type == 24;
Rich Lanea06d0c32013-03-25 08:52:03 -0700836 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700837 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700838};
839
Andreas Wundsam5da68512013-10-22 22:18:00 -0700840struct of_action_set_field(align=8, length_includes_align=True) : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700841 uint16_t type == 25;
Rich Lanea06d0c32013-03-25 08:52:03 -0700842 uint16_t len;
Rich Lanebe90eae2013-07-22 16:44:26 -0700843 of_oxm_t field;
Rich Lanea06d0c32013-03-25 08:52:03 -0700844};
845
Andreas Wundsam5da68512013-10-22 22:18:00 -0700846struct of_action_experimenter(align=8, length_includes_align=True): of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700847 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -0700848 uint16_t len;
Rich Laneb25d07c2013-08-22 17:22:43 -0700849 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700850 of_octets_t data;
851};
852
Rich Lanee9c37db2013-06-21 18:30:24 -0700853struct of_action_pop_pbb : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700854 uint16_t type == 27;
Rich Lanea06d0c32013-03-25 08:52:03 -0700855 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700856 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700857};
858
Rich Lanee9c37db2013-06-21 18:30:24 -0700859struct of_action_push_pbb : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700860 uint16_t type == 26;
Rich Lanea06d0c32013-03-25 08:52:03 -0700861 uint16_t len;
862 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700863 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700864};
865
Rich Lane68ae4d72013-05-09 10:55:19 -0700866struct of_action {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700867 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700868 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700869 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700870};
871
Rich Lane68ae4d72013-05-09 10:55:19 -0700872struct of_instruction {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700873 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700874 uint16_t len;
875};
876
Rich Lanee9c37db2013-06-21 18:30:24 -0700877struct of_instruction_goto_table : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700878 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700879 uint16_t len;
880 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700881 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700882};
883
Rich Lanee9c37db2013-06-21 18:30:24 -0700884struct of_instruction_write_metadata : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700885 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700886 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700887 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700888 uint64_t metadata;
889 uint64_t metadata_mask;
890};
891
Rich Lanee9c37db2013-06-21 18:30:24 -0700892struct of_instruction_write_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700893 uint16_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700894 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700895 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700896 list(of_action_t) actions;
897};
898
Rich Lanee9c37db2013-06-21 18:30:24 -0700899struct of_instruction_apply_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700900 uint16_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700901 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700902 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700903 list(of_action_t) actions;
904};
905
Rich Lanee9c37db2013-06-21 18:30:24 -0700906struct of_instruction_clear_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700907 uint16_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700908 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700909 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700910};
911
Rich Lanee9c37db2013-06-21 18:30:24 -0700912struct of_instruction_meter : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700913 uint16_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -0700914 uint16_t len;
915 uint32_t meter_id;
916};
917
Rich Lanee9c37db2013-06-21 18:30:24 -0700918struct of_instruction_experimenter : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700919 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -0700920 uint16_t len;
Rich Laneb25d07c2013-08-22 17:22:43 -0700921 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700922 of_octets_t data;
923};
924
Rich Lanee9c37db2013-06-21 18:30:24 -0700925struct of_flow_mod : of_header {
926 uint8_t version;
927 uint8_t type == 14;
928 uint16_t length;
929 uint32_t xid;
930 uint64_t cookie;
931 uint64_t cookie_mask;
932 uint8_t table_id;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700933 of_fm_cmd_t _command == ?;
Rich Lanee9c37db2013-06-21 18:30:24 -0700934 uint16_t idle_timeout;
935 uint16_t hard_timeout;
936 uint16_t priority;
937 uint32_t buffer_id;
938 of_port_no_t out_port;
939 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700940 enum ofp_flow_mod_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -0700941 pad(2);
942 of_match_t match;
943 list(of_instruction_t) instructions;
944};
945
946struct of_flow_add : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700947 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700948 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700949 uint16_t length;
950 uint32_t xid;
951 uint64_t cookie;
952 uint64_t cookie_mask;
953 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700954 of_fm_cmd_t _command == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700955 uint16_t idle_timeout;
956 uint16_t hard_timeout;
957 uint16_t priority;
958 uint32_t buffer_id;
959 of_port_no_t out_port;
960 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700961 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700962 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700963 of_match_t match;
964 list(of_instruction_t) instructions;
965};
966
Rich Lanee9c37db2013-06-21 18:30:24 -0700967struct of_flow_modify : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700968 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700969 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700970 uint16_t length;
971 uint32_t xid;
972 uint64_t cookie;
973 uint64_t cookie_mask;
974 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700975 of_fm_cmd_t _command == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700976 uint16_t idle_timeout;
977 uint16_t hard_timeout;
978 uint16_t priority;
979 uint32_t buffer_id;
980 of_port_no_t out_port;
981 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700982 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700983 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700984 of_match_t match;
985 list(of_instruction_t) instructions;
986};
987
Rich Lanee9c37db2013-06-21 18:30:24 -0700988struct of_flow_modify_strict : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700989 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700990 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700991 uint16_t length;
992 uint32_t xid;
993 uint64_t cookie;
994 uint64_t cookie_mask;
995 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700996 of_fm_cmd_t _command == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700997 uint16_t idle_timeout;
998 uint16_t hard_timeout;
999 uint16_t priority;
1000 uint32_t buffer_id;
1001 of_port_no_t out_port;
1002 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -07001003 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001004 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001005 of_match_t match;
1006 list(of_instruction_t) instructions;
1007};
1008
Rich Lanee9c37db2013-06-21 18:30:24 -07001009struct of_flow_delete : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -07001010 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001011 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001012 uint16_t length;
1013 uint32_t xid;
1014 uint64_t cookie;
1015 uint64_t cookie_mask;
1016 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -07001017 of_fm_cmd_t _command == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -07001018 uint16_t idle_timeout;
1019 uint16_t hard_timeout;
1020 uint16_t priority;
1021 uint32_t buffer_id;
1022 of_port_no_t out_port;
1023 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -07001024 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001025 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001026 of_match_t match;
1027 list(of_instruction_t) instructions;
1028};
1029
Rich Lanee9c37db2013-06-21 18:30:24 -07001030struct of_flow_delete_strict : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -07001031 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001032 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001033 uint16_t length;
1034 uint32_t xid;
1035 uint64_t cookie;
1036 uint64_t cookie_mask;
1037 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -07001038 of_fm_cmd_t _command == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -07001039 uint16_t idle_timeout;
1040 uint16_t hard_timeout;
1041 uint16_t priority;
1042 uint32_t buffer_id;
1043 of_port_no_t out_port;
1044 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -07001045 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001046 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001047 of_match_t match;
1048 list(of_instruction_t) instructions;
1049};
1050
Rich Lane68ae4d72013-05-09 10:55:19 -07001051struct of_bucket {
Rich Lanea06d0c32013-03-25 08:52:03 -07001052 uint16_t len;
1053 uint16_t weight;
1054 of_port_no_t watch_port;
1055 uint32_t watch_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001056 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001057 list(of_action_t) actions;
1058};
1059
Rich Lanee9c37db2013-06-21 18:30:24 -07001060struct of_group_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001061 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001062 uint8_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -07001063 uint16_t length;
1064 uint32_t xid;
Andreas Wundsam5812cf32013-11-15 13:51:24 -08001065 enum ofp_group_mod_command command == ?;
1066 enum ofp_group_type group_type;
1067 pad(1);
1068 uint32_t group_id;
1069 list(of_bucket_t) buckets;
1070};
1071
1072struct of_group_add : of_group_mod {
1073 uint8_t version;
1074 uint8_t type == 15;
1075 uint16_t length;
1076 uint32_t xid;
1077 enum ofp_group_mod_command command == 0;
1078 enum ofp_group_type group_type;
1079 pad(1);
1080 uint32_t group_id;
1081 list(of_bucket_t) buckets;
1082};
1083
1084struct of_group_modify : of_group_mod {
1085 uint8_t version;
1086 uint8_t type == 15;
1087 uint16_t length;
1088 uint32_t xid;
1089 enum ofp_group_mod_command command == 1;
1090 enum ofp_group_type group_type;
1091 pad(1);
1092 uint32_t group_id;
1093 list(of_bucket_t) buckets;
1094};
1095
1096struct of_group_delete : of_group_mod {
1097 uint8_t version;
1098 uint8_t type == 15;
1099 uint16_t length;
1100 uint32_t xid;
1101 enum ofp_group_mod_command command == 2;
1102 enum ofp_group_type group_type;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001103 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001104 uint32_t group_id;
1105 list(of_bucket_t) buckets;
1106};
1107
Rich Lanee9c37db2013-06-21 18:30:24 -07001108struct of_packet_out : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001109 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001110 uint8_t type == 13;
Rich Lanea06d0c32013-03-25 08:52:03 -07001111 uint16_t length;
1112 uint32_t xid;
1113 uint32_t buffer_id;
1114 of_port_no_t in_port;
1115 uint16_t actions_len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001116 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001117 list(of_action_t) actions;
1118 of_octets_t data;
1119};
1120
Rich Lanee9c37db2013-06-21 18:30:24 -07001121struct of_packet_in : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001122 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001123 uint8_t type == 10;
Rich Lanea06d0c32013-03-25 08:52:03 -07001124 uint16_t length;
1125 uint32_t xid;
1126 uint32_t buffer_id;
1127 uint16_t total_len;
1128 uint8_t reason;
1129 uint8_t table_id;
1130 uint64_t cookie;
1131 of_match_t match;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001132 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001133 of_octets_t data; /* FIXME: Ensure total_len gets updated */
1134};
1135
Rich Lanee9c37db2013-06-21 18:30:24 -07001136struct of_flow_removed : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001137 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001138 uint8_t type == 11;
Rich Lanea06d0c32013-03-25 08:52:03 -07001139 uint16_t length;
1140 uint32_t xid;
1141 uint64_t cookie;
1142 uint16_t priority;
1143 uint8_t reason;
1144 uint8_t table_id;
1145 uint32_t duration_sec;
1146 uint32_t duration_nsec;
1147 uint16_t idle_timeout;
1148 uint16_t hard_timeout;
1149 uint64_t packet_count;
1150 uint64_t byte_count;
1151 of_match_t match;
1152};
1153
Rich Lane68ae4d72013-05-09 10:55:19 -07001154struct of_meter_band {
Andreas Wundsam9ba65362013-08-02 19:14:42 -07001155 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001156 uint16_t len;
1157// uint32_t rate; // These are excluded b/c this is the header
1158// uint32_t burst_size; // These are excluded b/c this is the header
1159};
1160
Rich Lanee9c37db2013-06-21 18:30:24 -07001161struct of_meter_band_drop : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001162 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001163 uint16_t len;
1164 uint32_t rate;
1165 uint32_t burst_size;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001166 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001167};
1168
Rich Lanee9c37db2013-06-21 18:30:24 -07001169struct of_meter_band_dscp_remark : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001170 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07001171 uint16_t len;
1172 uint32_t rate;
1173 uint32_t burst_size;
1174 uint8_t prec_level;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001175 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001176};
1177
Rich Lanee9c37db2013-06-21 18:30:24 -07001178struct of_meter_band_experimenter : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001179 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07001180 uint16_t len;
1181 uint32_t rate;
1182 uint32_t burst_size;
1183 uint32_t experimenter;
1184};
1185
Rich Lanee9c37db2013-06-21 18:30:24 -07001186struct of_meter_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001187 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001188 uint8_t type == 29;
Rich Lanea06d0c32013-03-25 08:52:03 -07001189 uint16_t length;
1190 uint32_t xid;
1191 uint16_t command;
1192 uint16_t flags;
1193 uint32_t meter_id;
1194 list(of_meter_band_t) meters;
1195};
1196
Rich Lanee9c37db2013-06-21 18:30:24 -07001197struct of_error_msg : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001198 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001199 uint8_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001200 uint16_t length;
1201 uint32_t xid;
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001202 uint16_t err_type == ?;
1203};
1204
1205struct of_hello_failed_error_msg : of_error_msg {
1206 uint8_t version;
1207 uint8_t type == 1;
1208 uint16_t length;
1209 uint32_t xid;
1210 uint16_t err_type == 0;
1211 enum ofp_hello_failed_code code;
Rich Lanea06d0c32013-03-25 08:52:03 -07001212 of_octets_t data;
1213};
1214
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001215struct of_bad_request_error_msg : of_error_msg {
1216 uint8_t version;
1217 uint8_t type == 1;
1218 uint16_t length;
1219 uint32_t xid;
1220 uint16_t err_type == 1;
1221 enum ofp_bad_request_code code;
1222 of_octets_t data;
1223};
1224
1225struct of_bad_action_error_msg : of_error_msg {
1226 uint8_t version;
1227 uint8_t type == 1;
1228 uint16_t length;
1229 uint32_t xid;
1230 uint16_t err_type == 2;
1231 enum ofp_bad_action_code code;
1232 of_octets_t data;
1233};
1234
1235struct of_bad_instruction_error_msg : of_error_msg {
1236 uint8_t version;
1237 uint8_t type == 1;
1238 uint16_t length;
1239 uint32_t xid;
1240 uint16_t err_type == 3;
1241 enum ofp_bad_instruction_code code;
1242 of_octets_t data;
1243};
1244
1245struct of_bad_match_error_msg : of_error_msg {
1246 uint8_t version;
1247 uint8_t type == 1;
1248 uint16_t length;
1249 uint32_t xid;
1250 uint16_t err_type == 4;
1251 enum ofp_bad_match_code code;
1252 of_octets_t data;
1253};
1254
1255struct of_flow_mod_failed_error_msg : of_error_msg {
1256 uint8_t version;
1257 uint8_t type == 1;
1258 uint16_t length;
1259 uint32_t xid;
1260 uint16_t err_type == 5;
1261 enum ofp_flow_mod_failed_code code;
1262 of_octets_t data;
1263};
1264
1265struct of_group_mod_failed_error_msg : of_error_msg {
1266 uint8_t version;
1267 uint8_t type == 1;
1268 uint16_t length;
1269 uint32_t xid;
1270 uint16_t err_type == 6;
1271 enum ofp_group_mod_failed_code code;
1272 of_octets_t data;
1273};
1274
1275struct of_port_mod_failed_error_msg : of_error_msg {
1276 uint8_t version;
1277 uint8_t type == 1;
1278 uint16_t length;
1279 uint32_t xid;
1280 uint16_t err_type == 7;
1281 enum ofp_port_mod_failed_code code;
1282 of_octets_t data;
1283};
1284
1285struct of_table_mod_failed_error_msg : of_error_msg {
1286 uint8_t version;
1287 uint8_t type == 1;
1288 uint16_t length;
1289 uint32_t xid;
1290 uint16_t err_type == 8;
1291 enum ofp_table_mod_failed_code code;
1292 of_octets_t data;
1293};
1294
1295struct of_queue_op_failed_error_msg : of_error_msg {
1296 uint8_t version;
1297 uint8_t type == 1;
1298 uint16_t length;
1299 uint32_t xid;
1300 uint16_t err_type == 9;
1301 enum ofp_queue_op_failed_code code;
1302 of_octets_t data;
1303};
1304
1305struct of_switch_config_failed_error_msg : of_error_msg {
1306 uint8_t version;
1307 uint8_t type == 1;
1308 uint16_t length;
1309 uint32_t xid;
1310 uint16_t err_type == 10;
1311 enum ofp_switch_config_failed_code code;
1312 of_octets_t data;
1313};
1314
1315struct of_role_request_failed_error_msg : of_error_msg {
1316 uint8_t version;
1317 uint8_t type == 1;
1318 uint16_t length;
1319 uint32_t xid;
1320 uint16_t err_type == 11;
1321 enum ofp_role_request_failed_code code;
1322 of_octets_t data;
1323};
1324
1325struct of_meter_mod_failed_error_msg : of_error_msg {
1326 uint8_t version;
1327 uint8_t type == 1;
1328 uint16_t length;
1329 uint32_t xid;
1330 uint16_t err_type == 12;
1331 enum ofp_meter_mod_failed_code code;
1332 of_octets_t data;
1333};
1334
1335struct of_table_features_failed_error_msg : of_error_msg {
1336 uint8_t version;
1337 uint8_t type == 1;
1338 uint16_t length;
1339 uint32_t xid;
1340 uint16_t err_type == 13;
1341 enum ofp_table_features_failed_code code;
1342 of_octets_t data;
1343};
1344
Andreas Wundsamcc8cd662013-11-15 13:52:06 -08001345struct of_experimenter_error_msg : of_error_msg {
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001346 uint8_t version;
1347 uint8_t type == 1;
1348 uint16_t length;
1349 uint32_t xid;
1350 uint16_t err_type == 0xffff;
1351 uint16_t subtype;
1352 uint32_t experimenter;
1353 of_octets_t data;
1354};
Rich Lanea06d0c32013-03-25 08:52:03 -07001355
1356// STATS ENTRIES: flow, table, port, queue, group stats, group desc stats
1357
Rich Lane68ae4d72013-05-09 10:55:19 -07001358struct of_flow_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001359 uint16_t length;
1360 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001361 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001362 uint32_t duration_sec;
1363 uint32_t duration_nsec;
1364 uint16_t priority;
1365 uint16_t idle_timeout;
1366 uint16_t hard_timeout;
Rich Lane1a47c1c2013-08-28 15:27:00 -07001367 uint16_t flags;
1368 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001369 uint64_t cookie;
1370 uint64_t packet_count;
1371 uint64_t byte_count;
1372 of_match_t match;
1373 list(of_instruction_t) instructions;
1374};
1375
1376
Rich Lane68ae4d72013-05-09 10:55:19 -07001377struct of_table_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001378 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001379 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001380 uint32_t active_count;
1381 uint64_t lookup_count;
1382 uint64_t matched_count;
1383};
1384
Rich Lane68ae4d72013-05-09 10:55:19 -07001385struct of_port_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001386 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001387 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001388 uint64_t rx_packets;
1389 uint64_t tx_packets;
1390 uint64_t rx_bytes;
1391 uint64_t tx_bytes;
1392 uint64_t rx_dropped;
1393 uint64_t tx_dropped;
1394 uint64_t rx_errors;
1395 uint64_t tx_errors;
1396 uint64_t rx_frame_err;
1397 uint64_t rx_over_err;
1398 uint64_t rx_crc_err;
1399 uint64_t collisions;
1400 uint32_t duration_sec;
1401 uint32_t duration_nsec;
1402};
1403
Rich Lane68ae4d72013-05-09 10:55:19 -07001404struct of_queue_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001405 of_port_no_t port_no;
1406 uint32_t queue_id;
1407 uint64_t tx_bytes;
1408 uint64_t tx_packets;
1409 uint64_t tx_errors;
1410 uint32_t duration_sec;
1411 uint32_t duration_nsec;
1412};
1413
Rich Lane68ae4d72013-05-09 10:55:19 -07001414struct of_bucket_counter {
Rich Lanea06d0c32013-03-25 08:52:03 -07001415 uint64_t packet_count;
1416 uint64_t byte_count;
1417};
1418
Rich Lane68ae4d72013-05-09 10:55:19 -07001419struct of_group_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001420 uint16_t length;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001421 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001422 uint32_t group_id;
1423 uint32_t ref_count;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001424 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001425 uint64_t packet_count;
1426 uint64_t byte_count;
1427 uint32_t duration_sec;
1428 uint32_t duration_nsec;
1429 list(of_bucket_counter_t) bucket_stats;
1430};
1431
Rich Lane68ae4d72013-05-09 10:55:19 -07001432struct of_group_desc_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001433 uint16_t length;
Andreas Wundsam84603f02013-11-18 18:45:30 -08001434 enum ofp_group_type group_type;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001435 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001436 uint32_t group_id;
1437 list(of_bucket_t) buckets;
1438};
1439
1440// STATS:
1441// Desc, flow, agg, table, port, queue, group, group_desc, group_feat, experi
1442
Rich Lanee9c37db2013-06-21 18:30:24 -07001443struct of_stats_request : of_header {
1444 uint8_t version;
1445 uint8_t type == 18;
1446 uint16_t length;
1447 uint32_t xid;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001448 uint16_t stats_type == ?;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001449 enum ofp_stats_request_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -07001450 pad(4);
1451};
1452
1453struct of_stats_reply : of_header {
1454 uint8_t version;
1455 uint8_t type == 19;
1456 uint16_t length;
1457 uint32_t xid;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001458 uint16_t stats_type == ?;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001459 enum ofp_stats_reply_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -07001460 pad(4);
1461};
1462
1463struct of_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001464 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001465 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001466 uint16_t length;
1467 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001468 uint16_t stats_type == 0;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001469 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001470 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001471};
1472
Rich Lanee9c37db2013-06-21 18:30:24 -07001473struct of_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001474 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001475 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001476 uint16_t length;
1477 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001478 uint16_t stats_type == 0;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001479 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001480 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001481 of_desc_str_t mfr_desc;
1482 of_desc_str_t hw_desc;
1483 of_desc_str_t sw_desc;
1484 of_serial_num_t serial_num;
1485 of_desc_str_t dp_desc;
1486};
1487
Rich Lanee9c37db2013-06-21 18:30:24 -07001488struct of_flow_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001489 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001490 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001491 uint16_t length;
1492 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001493 uint16_t stats_type == 1;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001494 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001495 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001496 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001497 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001498 of_port_no_t out_port;
1499 uint32_t out_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001500 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001501 uint64_t cookie;
1502 uint64_t cookie_mask;
1503 of_match_t match;
1504};
1505
Rich Lanee9c37db2013-06-21 18:30:24 -07001506struct of_flow_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001507 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001508 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001509 uint16_t length;
1510 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001511 uint16_t stats_type == 1;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001512 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001513 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001514 list(of_flow_stats_entry_t) entries;
1515};
1516
Rich Lanee9c37db2013-06-21 18:30:24 -07001517struct of_aggregate_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001518 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001519 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001520 uint16_t length;
1521 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001522 uint16_t stats_type == 2;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001523 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001524 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001525 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001526 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001527 of_port_no_t out_port;
1528 uint32_t out_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001529 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001530 uint64_t cookie;
1531 uint64_t cookie_mask;
1532 of_match_t match;
1533};
1534
Rich Lanee9c37db2013-06-21 18:30:24 -07001535struct of_aggregate_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001536 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001537 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001538 uint16_t length;
1539 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001540 uint16_t stats_type == 2;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001541 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001542 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001543 uint64_t packet_count;
1544 uint64_t byte_count;
1545 uint32_t flow_count;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001546 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001547};
1548
Rich Lanee9c37db2013-06-21 18:30:24 -07001549struct of_table_stats_request : of_stats_request {
Rich Lane8bfdafc2013-05-02 14:54:42 -07001550 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001551 uint8_t type == 18;
Rich Lane8bfdafc2013-05-02 14:54:42 -07001552 uint16_t length;
1553 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001554 uint16_t stats_type == 3;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001555 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001556 pad(4);
Rich Lane8bfdafc2013-05-02 14:54:42 -07001557};
1558
Rich Lanee9c37db2013-06-21 18:30:24 -07001559struct of_table_stats_reply : of_stats_reply {
Rich Lane8bfdafc2013-05-02 14:54:42 -07001560 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001561 uint8_t type == 19;
Rich Lane8bfdafc2013-05-02 14:54:42 -07001562 uint16_t length;
1563 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001564 uint16_t stats_type == 3;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001565 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001566 pad(4);
Rich Lane8bfdafc2013-05-02 14:54:42 -07001567 list(of_table_stats_entry_t) entries;
1568};
1569
Rich Lane6d434332013-11-13 09:23:10 -08001570struct of_experimenter_stats_request : of_stats_request {
1571 uint8_t version;
1572 uint8_t type == 18;
1573 uint16_t length;
1574 uint32_t xid;
1575 uint16_t stats_type == 0xffff;
1576 enum ofp_stats_request_flags flags;
1577 pad(4);
1578 uint32_t experimenter == ?;
1579 uint32_t subtype;
1580};
1581
1582struct of_experimenter_stats_reply : of_stats_reply {
1583 uint8_t version;
1584 uint8_t type == 19;
1585 uint16_t length;
1586 uint32_t xid;
1587 uint16_t stats_type == 0xffff;
1588 enum ofp_stats_reply_flags flags;
1589 pad(4);
1590 uint32_t experimenter == ?;
1591 uint32_t subtype;
1592};
1593
Rich Lanea06d0c32013-03-25 08:52:03 -07001594// FIXME: These are padded to 8 byte align beyond the length indicated
1595
Rich Lane68ae4d72013-05-09 10:55:19 -07001596struct of_table_feature_prop {
Rich Lanea1b8f442013-10-01 22:05:22 -07001597 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001598 uint16_t length;
1599};
1600
Rich Lanee9c37db2013-06-21 18:30:24 -07001601struct of_table_feature_prop_instructions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001602 uint16_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -07001603 uint16_t length;
1604 // FIXME Check if instruction_t is right for ids here
1605 list(of_instruction_t) instruction_ids;
1606};
1607
Rich Lanee9c37db2013-06-21 18:30:24 -07001608struct of_table_feature_prop_instructions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001609 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001610 uint16_t length;
1611 list(of_instruction_t) instruction_ids;
1612};
1613
Rich Lanee9c37db2013-06-21 18:30:24 -07001614struct of_table_feature_prop_next_tables : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001615 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07001616 uint16_t length;
1617 list(of_uint8_t) next_table_ids;
1618};
1619
Rich Lanee9c37db2013-06-21 18:30:24 -07001620struct of_table_feature_prop_next_tables_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001621 uint16_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -07001622 uint16_t length;
1623 list(of_uint8_t) next_table_ids;
1624};
1625
Rich Lanee9c37db2013-06-21 18:30:24 -07001626struct of_table_feature_prop_write_actions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001627 uint16_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -07001628 uint16_t length;
1629 list(of_action_id_t) action_ids;
1630};
1631
Rich Lanee9c37db2013-06-21 18:30:24 -07001632struct of_table_feature_prop_write_actions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001633 uint16_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -07001634 uint16_t length;
1635 list(of_action_id_t) action_ids;
1636};
1637
Rich Lanee9c37db2013-06-21 18:30:24 -07001638struct of_table_feature_prop_apply_actions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001639 uint16_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -07001640 uint16_t length;
1641 list(of_action_id_t) action_ids;
1642};
1643
Rich Lanee9c37db2013-06-21 18:30:24 -07001644struct of_table_feature_prop_apply_actions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001645 uint16_t type == 7;
Rich Lanea06d0c32013-03-25 08:52:03 -07001646 uint16_t length;
1647 list(of_action_id_t) action_ids;
1648};
1649
Rich Lanee9c37db2013-06-21 18:30:24 -07001650struct of_table_feature_prop_match : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001651 uint16_t type == 8;
Rich Lanea06d0c32013-03-25 08:52:03 -07001652 uint16_t length;
1653 list(of_uint32_t) oxm_ids;
1654};
1655
Rich Lanee9c37db2013-06-21 18:30:24 -07001656struct of_table_feature_prop_wildcards : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001657 uint16_t type == 10;
Rich Lanea06d0c32013-03-25 08:52:03 -07001658 uint16_t length;
1659 list(of_uint32_t) oxm_ids;
1660};
1661
Rich Lanee9c37db2013-06-21 18:30:24 -07001662struct of_table_feature_prop_write_setfield : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001663 uint16_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -07001664 uint16_t length;
1665 list(of_uint32_t) oxm_ids;
1666};
1667
Rich Lanee9c37db2013-06-21 18:30:24 -07001668struct of_table_feature_prop_write_setfield_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001669 uint16_t type == 13;
Rich Lanea06d0c32013-03-25 08:52:03 -07001670 uint16_t length;
1671 list(of_uint32_t) oxm_ids;
1672};
1673
Rich Lanee9c37db2013-06-21 18:30:24 -07001674struct of_table_feature_prop_apply_setfield : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001675 uint16_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001676 uint16_t length;
1677 list(of_uint32_t) oxm_ids;
1678};
1679
Rich Lanee9c37db2013-06-21 18:30:24 -07001680struct of_table_feature_prop_apply_setfield_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001681 uint16_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -07001682 uint16_t length;
1683 list(of_uint32_t) oxm_ids;
1684};
1685
Rich Lanee9c37db2013-06-21 18:30:24 -07001686struct of_table_feature_prop_experimenter : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001687 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07001688 uint16_t length;
1689 uint32_t experimenter;
1690 uint32_t subtype;
1691 of_octets_t experimenter_data;
1692};
1693
1694// Not yet supported
Rich Lanee9c37db2013-06-21 18:30:24 -07001695// struct of_table_feature_prop_experimenter_miss : of_table_feature_prop {
Rich Lanea06d0c32013-03-25 08:52:03 -07001696// uint16_t type;
1697// uint16_t length;
1698// uint32_t experimenter;
1699// uint32_t subtype;
1700// of_octets_t experimenter_data;
1701// };
1702
Rich Lane68ae4d72013-05-09 10:55:19 -07001703struct of_table_features {
Rich Lanea06d0c32013-03-25 08:52:03 -07001704 uint16_t length;
1705 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001706 pad(5);
Rich Lanea06d0c32013-03-25 08:52:03 -07001707 of_table_name_t name;
1708 uint64_t metadata_match;
1709 uint64_t metadata_write;
1710 uint32_t config;
1711 uint32_t max_entries;
1712 list(of_table_feature_prop_t) properties;
1713};
1714
Rich Lane68ae4d72013-05-09 10:55:19 -07001715struct of_meter_features {
Rich Lanea06d0c32013-03-25 08:52:03 -07001716 uint32_t max_meter;
1717 uint32_t band_types;
1718 uint32_t capabilities;
1719 uint8_t max_bands;
1720 uint8_t max_color;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001721 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001722};
1723
Rich Lanee9c37db2013-06-21 18:30:24 -07001724struct of_port_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001725 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001726 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001727 uint16_t length;
1728 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001729 uint16_t stats_type == 4;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001730 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001731 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001732 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001733 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001734};
1735
Rich Lanee9c37db2013-06-21 18:30:24 -07001736struct of_port_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001737 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001738 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001739 uint16_t length;
1740 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001741 uint16_t stats_type == 4;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001742 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001743 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001744 list(of_port_stats_entry_t) entries;
1745};
1746
Rich Lanee9c37db2013-06-21 18:30:24 -07001747struct of_queue_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001748 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001749 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001750 uint16_t length;
1751 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001752 uint16_t stats_type == 5;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001753 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001754 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001755 of_port_no_t port_no;
1756 uint32_t queue_id;
1757};
1758
Rich Lanee9c37db2013-06-21 18:30:24 -07001759struct of_queue_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001760 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001761 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001762 uint16_t length;
1763 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001764 uint16_t stats_type == 5;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001765 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001766 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001767 list(of_queue_stats_entry_t) entries;
1768};
1769
Rich Lanee9c37db2013-06-21 18:30:24 -07001770struct of_group_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001771 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001772 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001773 uint16_t length;
1774 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001775 uint16_t stats_type == 6;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001776 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001777 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001778 uint32_t group_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001779 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001780};
1781
Rich Lanee9c37db2013-06-21 18:30:24 -07001782struct of_group_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001783 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001784 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001785 uint16_t length;
1786 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001787 uint16_t stats_type == 6;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001788 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001789 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001790 list(of_group_stats_entry_t) entries;
1791};
1792
Rich Lanee9c37db2013-06-21 18:30:24 -07001793struct of_group_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001794 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001795 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001796 uint16_t length;
1797 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001798 uint16_t stats_type == 7;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001799 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001800 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001801};
1802
Rich Lanee9c37db2013-06-21 18:30:24 -07001803struct of_group_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001804 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001805 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001806 uint16_t length;
1807 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001808 uint16_t stats_type == 7;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001809 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001810 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001811 list(of_group_desc_stats_entry_t) entries;
1812};
1813
Rich Lanee9c37db2013-06-21 18:30:24 -07001814struct of_group_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001815 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001816 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001817 uint16_t length;
1818 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001819 uint16_t stats_type == 8;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001820 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001821 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001822};
1823
Rich Lanee9c37db2013-06-21 18:30:24 -07001824struct of_group_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001825 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001826 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001827 uint16_t length;
1828 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001829 uint16_t stats_type == 8;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001830 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001831 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001832 uint32_t types;
1833 uint32_t capabilities;
1834 uint32_t max_groups_all;
1835 uint32_t max_groups_select;
1836 uint32_t max_groups_indirect;
1837 uint32_t max_groups_ff;
1838 uint32_t actions_all;
1839 uint32_t actions_select;
1840 uint32_t actions_indirect;
1841 uint32_t actions_ff;
1842};
1843
Rich Lanee9c37db2013-06-21 18:30:24 -07001844struct of_meter_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001845 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001846 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001847 uint16_t length;
1848 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001849 uint16_t stats_type == 9;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001850 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001851 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001852 uint32_t meter_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001853 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001854};
1855
Rich Lanee9c37db2013-06-21 18:30:24 -07001856struct of_meter_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001857 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001858 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001859 uint16_t length;
1860 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001861 uint16_t stats_type == 9;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001862 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001863 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001864 list(of_meter_stats_t) entries;
1865};
1866
Rich Lanee9c37db2013-06-21 18:30:24 -07001867struct of_meter_config_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001868 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001869 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001870 uint16_t length;
1871 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001872 uint16_t stats_type == 10;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001873 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001874 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001875 uint32_t meter_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001876 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001877};
1878
Rich Lanee9c37db2013-06-21 18:30:24 -07001879struct of_meter_config_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001880 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001881 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001882 uint16_t length;
1883 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001884 uint16_t stats_type == 10;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001885 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001886 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001887 list(of_meter_band_t) entries;
1888};
1889
1890// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001891struct of_meter_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001892 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001893 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001894 uint16_t length;
1895 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001896 uint16_t stats_type == 11;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001897 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001898 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001899};
1900
1901// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001902struct of_meter_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001903 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001904 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001905 uint16_t length;
1906 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001907 uint16_t stats_type == 11;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001908 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001909 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001910 of_meter_features_t features;
1911};
1912
1913// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001914struct of_table_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001915 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001916 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001917 uint16_t length;
1918 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001919 uint16_t stats_type == 12;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001920 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001921 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001922 list(of_table_features_t) entries;
1923};
1924
1925// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001926struct of_table_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001927 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001928 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001929 uint16_t length;
1930 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001931 uint16_t stats_type == 12;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001932 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001933 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001934 list(of_table_features_t) entries;
1935};
1936
1937// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001938struct of_port_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001939 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001940 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001941 uint16_t length;
1942 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001943 uint16_t stats_type == 13;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001944 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001945 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001946};
1947
1948// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001949struct of_port_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001950 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001951 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001952 uint16_t length;
1953 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001954 uint16_t stats_type == 13;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001955 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001956 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001957 list(of_port_desc_t) entries;
1958};
1959
Rich Lane68ae4d72013-05-09 10:55:19 -07001960struct of_meter_band_stats {
Rich Lanea06d0c32013-03-25 08:52:03 -07001961 uint64_t packet_band_count;
1962 uint64_t byte_band_count;
1963};
1964
Rich Lane68ae4d72013-05-09 10:55:19 -07001965struct of_meter_stats {
Rich Lanea06d0c32013-03-25 08:52:03 -07001966 uint32_t meter_id;
1967 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001968 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001969 uint32_t flow_count;
1970 uint64_t packet_in_count;
1971 uint64_t byte_in_count;
1972 uint32_t duration_sec;
1973 uint32_t duration_nsec;
1974 list(of_meter_band_stats_t) band_stats;
1975};
1976
Rich Lane68ae4d72013-05-09 10:55:19 -07001977struct of_meter_config {
Rich Lanea06d0c32013-03-25 08:52:03 -07001978 uint16_t length;
1979 uint16_t flags;
1980 uint32_t meter_id;
1981 list(of_meter_band_t) entries;
1982};
1983
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001984struct of_experimenter_stats_header {
Rich Laneb25d07c2013-08-22 17:22:43 -07001985 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001986 uint32_t subtype;
1987};
1988
1989// END OF STATS OBJECTS
1990
Rich Lane68ae4d72013-05-09 10:55:19 -07001991struct of_queue_prop {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001992 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001993 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001994 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001995};
1996
Rich Lanee9c37db2013-06-21 18:30:24 -07001997struct of_queue_prop_min_rate : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001998 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001999 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002000 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002001 uint16_t rate;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002002 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07002003};
2004
Rich Lanee9c37db2013-06-21 18:30:24 -07002005struct of_queue_prop_max_rate : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07002006 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07002007 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002008 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002009 uint16_t rate;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002010 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07002011};
2012
Rich Lanee9c37db2013-06-21 18:30:24 -07002013struct of_queue_prop_experimenter : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07002014 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07002015 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002016 pad(4);
Rich Laneb25d07c2013-08-22 17:22:43 -07002017 uint32_t experimenter == ?;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002018 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002019 of_octets_t data;
2020};
2021
Rich Lane68ae4d72013-05-09 10:55:19 -07002022struct of_packet_queue {
Rich Lanea06d0c32013-03-25 08:52:03 -07002023 uint32_t queue_id;
2024 of_port_no_t port;
2025 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002026 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07002027 list(of_queue_prop_t) properties;
2028};
2029
Rich Lanee9c37db2013-06-21 18:30:24 -07002030struct of_queue_get_config_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002031 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002032 uint8_t type == 22;
Rich Lanea06d0c32013-03-25 08:52:03 -07002033 uint16_t length;
2034 uint32_t xid;
2035 of_port_no_t port;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002036 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002037};
2038
Rich Lanee9c37db2013-06-21 18:30:24 -07002039struct of_queue_get_config_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002040 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002041 uint8_t type == 23;
Rich Lanea06d0c32013-03-25 08:52:03 -07002042 uint16_t length;
2043 uint32_t xid;
2044 of_port_no_t port;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002045 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002046 list(of_packet_queue_t) queues;
2047};
2048
Rich Lanee9c37db2013-06-21 18:30:24 -07002049struct of_role_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002050 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002051 uint8_t type == 24;
Rich Lanea06d0c32013-03-25 08:52:03 -07002052 uint16_t length;
2053 uint32_t xid;
Andreas Wundsam4f796b72013-10-18 17:33:23 -07002054 enum ofp_controller_role role;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002055 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002056 uint64_t generation_id;
2057};
2058
Rich Lanee9c37db2013-06-21 18:30:24 -07002059struct of_role_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002060 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002061 uint8_t type == 25;
Rich Lanea06d0c32013-03-25 08:52:03 -07002062 uint16_t length;
2063 uint32_t xid;
Andreas Wundsam4f796b72013-10-18 17:33:23 -07002064 enum ofp_controller_role role;
2065 pad(4);
2066 uint64_t generation_id;
Rich Lanea06d0c32013-03-25 08:52:03 -07002067};
2068
2069////////////////////////////////////////////////////////////////
2070// FIXME understand async; where do bitmasks live?
2071// Determine bitmap type for masks below.
2072// DOCUMENT masks where uint32_t[0] is interest for equal/master
2073// while uint32_t[1] is interest for slave
2074////////////////////////////////////////////////////////////////
2075
Rich Lanee9c37db2013-06-21 18:30:24 -07002076struct of_async_get_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002077 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002078 uint8_t type == 26;
Rich Lanea06d0c32013-03-25 08:52:03 -07002079 uint16_t length;
2080 uint32_t xid;
2081 uint32_t packet_in_mask_equal_master;
2082 uint32_t packet_in_mask_slave;
2083 uint32_t port_status_mask_equal_master;
2084 uint32_t port_status_mask_slave;
2085 uint32_t flow_removed_mask_equal_master;
2086 uint32_t flow_removed_mask_slave;
2087};
2088
Rich Lanee9c37db2013-06-21 18:30:24 -07002089struct of_async_get_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002090 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002091 uint8_t type == 27;
Rich Lanea06d0c32013-03-25 08:52:03 -07002092 uint16_t length;
2093 uint32_t xid;
2094 uint32_t packet_in_mask_equal_master;
2095 uint32_t packet_in_mask_slave;
2096 uint32_t port_status_mask_equal_master;
2097 uint32_t port_status_mask_slave;
2098 uint32_t flow_removed_mask_equal_master;
2099 uint32_t flow_removed_mask_slave;
2100};
2101
Rich Lanee9c37db2013-06-21 18:30:24 -07002102struct of_async_set : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002103 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002104 uint8_t type == 28;
Rich Lanea06d0c32013-03-25 08:52:03 -07002105 uint16_t length;
2106 uint32_t xid;
2107 uint32_t packet_in_mask_equal_master;
2108 uint32_t packet_in_mask_slave;
2109 uint32_t port_status_mask_equal_master;
2110 uint32_t port_status_mask_slave;
2111 uint32_t flow_removed_mask_equal_master;
2112 uint32_t flow_removed_mask_slave;
2113};