blob: b4c4beebe6dc0dadcfa5386b4af36bcc1b5cbf1f [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
570// Special structures used for managing scalar list elements
Rich Lane68ae4d72013-05-09 10:55:19 -0700571struct of_uint32 {
Rich Lanea06d0c32013-03-25 08:52:03 -0700572 uint32_t value;
573};
574
575// Special structures used for managing scalar list elements
Rich Lane68ae4d72013-05-09 10:55:19 -0700576struct of_uint8 {
Rich Lanea06d0c32013-03-25 08:52:03 -0700577 uint8_t value;
578};
579
Rich Lane68ae4d72013-05-09 10:55:19 -0700580struct of_hello_elem {
Andreas Wundsam70411bf2013-08-02 22:26:38 -0700581 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700582 uint16_t length;
583};
584
Rich Lanee9c37db2013-06-21 18:30:24 -0700585struct of_hello_elem_versionbitmap : of_hello_elem {
Rich Lane31b87142013-05-09 22:05:42 -0700586 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700587 uint16_t length;
588 list(of_uint32_t) bitmaps;
589};
590
Rich Lanee9c37db2013-06-21 18:30:24 -0700591struct of_hello : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700592 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700593 uint8_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700594 uint16_t length;
595 uint32_t xid;
596 list(of_hello_elem_t) elements;
597};
598
Rich Lanee9c37db2013-06-21 18:30:24 -0700599struct of_echo_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700600 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700601 uint8_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700602 uint16_t length;
603 uint32_t xid;
604 of_octets_t data;
605};
606
Rich Lanee9c37db2013-06-21 18:30:24 -0700607struct of_echo_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700608 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700609 uint8_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700610 uint16_t length;
611 uint32_t xid;
612 of_octets_t data;
613};
614
Rich Lanee9c37db2013-06-21 18:30:24 -0700615struct of_experimenter : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700616 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700617 uint8_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700618 uint16_t length;
619 uint32_t xid;
Rich Laneb25d07c2013-08-22 17:22:43 -0700620 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700621 uint32_t subtype;
622 of_octets_t data;
623};
624
Rich Lanee9c37db2013-06-21 18:30:24 -0700625struct of_barrier_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700626 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700627 uint8_t type == 20;
Rich Lanea06d0c32013-03-25 08:52:03 -0700628 uint16_t length;
629 uint32_t xid;
630};
631
Rich Lanee9c37db2013-06-21 18:30:24 -0700632struct of_barrier_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700633 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700634 uint8_t type == 21;
Rich Lanea06d0c32013-03-25 08:52:03 -0700635 uint16_t length;
636 uint32_t xid;
637};
638
Rich Lanee9c37db2013-06-21 18:30:24 -0700639struct of_get_config_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700640 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700641 uint8_t type == 7;
Rich Lanea06d0c32013-03-25 08:52:03 -0700642 uint16_t length;
643 uint32_t xid;
644};
645
Rich Lanee9c37db2013-06-21 18:30:24 -0700646struct of_get_config_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700647 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700648 uint8_t type == 8;
Rich Lanea06d0c32013-03-25 08:52:03 -0700649 uint16_t length;
650 uint32_t xid;
651 uint16_t flags;
652 uint16_t miss_send_len;
653};
654
Rich Lanee9c37db2013-06-21 18:30:24 -0700655struct of_set_config : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700656 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700657 uint8_t type == 9;
Rich Lanea06d0c32013-03-25 08:52:03 -0700658 uint16_t length;
659 uint32_t xid;
660 uint16_t flags;
661 uint16_t miss_send_len;
662};
663
Rich Lanee9c37db2013-06-21 18:30:24 -0700664struct of_table_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700665 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700666 uint8_t type == 17;
Rich Lanea06d0c32013-03-25 08:52:03 -0700667 uint16_t length;
668 uint32_t xid;
669 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700670 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700671 uint32_t config;
672};
673
Rich Lane68ae4d72013-05-09 10:55:19 -0700674struct of_port_desc {
Rich Lanea06d0c32013-03-25 08:52:03 -0700675 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700676 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700677 of_mac_addr_t hw_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700678 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700679 of_port_name_t name;
Rob Vaterlausd9d72d22013-09-23 14:50:52 -0700680 enum ofp_port_config config;
681 enum ofp_port_state state;
682 enum ofp_port_features curr;
683 enum ofp_port_features advertised;
684 enum ofp_port_features supported;
685 enum ofp_port_features peer;
Rich Lanea06d0c32013-03-25 08:52:03 -0700686 uint32_t curr_speed;
687 uint32_t max_speed;
688};
689
Rich Lanee9c37db2013-06-21 18:30:24 -0700690struct of_features_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700691 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700692 uint8_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700693 uint16_t length;
694 uint32_t xid;
695};
696
Rich Lanee9c37db2013-06-21 18:30:24 -0700697struct of_features_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700698 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700699 uint8_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -0700700 uint16_t length;
701 uint32_t xid;
702 uint64_t datapath_id;
703 uint32_t n_buffers;
704 uint8_t n_tables;
705 uint8_t auxiliary_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700706 pad(2);
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700707 enum ofp_capabilities capabilities;
Rich Lanea06d0c32013-03-25 08:52:03 -0700708 uint32_t reserved;
709};
710
Rich Lanee9c37db2013-06-21 18:30:24 -0700711struct of_port_status : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700712 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700713 uint8_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -0700714 uint16_t length;
715 uint32_t xid;
Rob Vaterlausd9d72d22013-09-23 14:50:52 -0700716 enum ofp_port_reason reason;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700717 pad(7);
Rich Lanea06d0c32013-03-25 08:52:03 -0700718 of_port_desc_t desc;
719};
720
Rich Lanee9c37db2013-06-21 18:30:24 -0700721struct of_port_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700722 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700723 uint8_t type == 16;
Rich Lanea06d0c32013-03-25 08:52:03 -0700724 uint16_t length;
725 uint32_t xid;
726 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700727 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700728 of_mac_addr_t hw_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700729 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700730 uint32_t config;
731 uint32_t mask;
732 uint32_t advertise;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700733 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700734};
735
736// FIXME Does this need to be v4?
Andreas Wundsam5da68512013-10-22 22:18:00 -0700737struct of_match_v3(align=8, length_includes_align=False) {
Rich Lane31b87142013-05-09 22:05:42 -0700738 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700739 uint16_t length;
740 list(of_oxm_t) oxm_list;
741};
742
Rich Lanea06d0c32013-03-25 08:52:03 -0700743// This looks like an action header, but is standalone. See
744// ofp_table_features_prop_actions
Rich Lane68ae4d72013-05-09 10:55:19 -0700745struct of_action_id {
Rich Lanea06d0c32013-03-25 08:52:03 -0700746 uint16_t type;
747 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700748 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700749};
750
Rich Lanee9c37db2013-06-21 18:30:24 -0700751struct of_action_output : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700752 uint16_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700753 uint16_t len;
754 of_port_no_t port;
755 uint16_t max_len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700756 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -0700757};
758
Rich Lanee9c37db2013-06-21 18:30:24 -0700759struct of_action_copy_ttl_out : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700760 uint16_t type == 11;
Rich Lanea06d0c32013-03-25 08:52:03 -0700761 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700762 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700763};
764
Rich Lanee9c37db2013-06-21 18:30:24 -0700765struct of_action_copy_ttl_in : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700766 uint16_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -0700767 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700768 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700769};
770
Rich Lanee9c37db2013-06-21 18:30:24 -0700771struct of_action_set_mpls_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700772 uint16_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -0700773 uint16_t len;
774 uint8_t mpls_ttl;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700775 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700776};
777
Rich Lanee9c37db2013-06-21 18:30:24 -0700778struct of_action_dec_mpls_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700779 uint16_t type == 16;
Rich Lanea06d0c32013-03-25 08:52:03 -0700780 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700781 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700782};
783
Rich Lanee9c37db2013-06-21 18:30:24 -0700784struct of_action_push_vlan : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700785 uint16_t type == 17;
Rich Lanea06d0c32013-03-25 08:52:03 -0700786 uint16_t len;
787 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700788 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700789};
790
Rich Lanee9c37db2013-06-21 18:30:24 -0700791struct of_action_pop_vlan : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700792 uint16_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -0700793 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700794 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700795};
796
Rich Lanee9c37db2013-06-21 18:30:24 -0700797struct of_action_push_mpls : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700798 uint16_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -0700799 uint16_t len;
800 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700801 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700802};
803
Rich Lanee9c37db2013-06-21 18:30:24 -0700804struct of_action_pop_mpls : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700805 uint16_t type == 20;
Rich Lanea06d0c32013-03-25 08:52:03 -0700806 uint16_t len;
807 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700808 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700809};
810
Rich Lanee9c37db2013-06-21 18:30:24 -0700811struct of_action_set_queue : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700812 uint16_t type == 21;
Rich Lanea06d0c32013-03-25 08:52:03 -0700813 uint16_t len;
814 uint32_t queue_id;
815};
816
Rich Lanee9c37db2013-06-21 18:30:24 -0700817struct of_action_group : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700818 uint16_t type == 22;
Rich Lanea06d0c32013-03-25 08:52:03 -0700819 uint16_t len;
820 uint32_t group_id;
821};
822
Rich Lanee9c37db2013-06-21 18:30:24 -0700823struct of_action_set_nw_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700824 uint16_t type == 23;
Rich Lanea06d0c32013-03-25 08:52:03 -0700825 uint16_t len;
826 uint8_t nw_ttl;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700827 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700828};
829
Rich Lanee9c37db2013-06-21 18:30:24 -0700830struct of_action_dec_nw_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700831 uint16_t type == 24;
Rich Lanea06d0c32013-03-25 08:52:03 -0700832 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700833 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700834};
835
Andreas Wundsam5da68512013-10-22 22:18:00 -0700836struct of_action_set_field(align=8, length_includes_align=True) : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700837 uint16_t type == 25;
Rich Lanea06d0c32013-03-25 08:52:03 -0700838 uint16_t len;
Rich Lanebe90eae2013-07-22 16:44:26 -0700839 of_oxm_t field;
Rich Lanea06d0c32013-03-25 08:52:03 -0700840};
841
Andreas Wundsam5da68512013-10-22 22:18:00 -0700842struct of_action_experimenter(align=8, length_includes_align=True): of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700843 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -0700844 uint16_t len;
Rich Laneb25d07c2013-08-22 17:22:43 -0700845 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700846 of_octets_t data;
847};
848
Rich Lanee9c37db2013-06-21 18:30:24 -0700849struct of_action_pop_pbb : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700850 uint16_t type == 27;
Rich Lanea06d0c32013-03-25 08:52:03 -0700851 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700852 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700853};
854
Rich Lanee9c37db2013-06-21 18:30:24 -0700855struct of_action_push_pbb : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700856 uint16_t type == 26;
Rich Lanea06d0c32013-03-25 08:52:03 -0700857 uint16_t len;
858 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700859 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700860};
861
Rich Lane68ae4d72013-05-09 10:55:19 -0700862struct of_action {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700863 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700864 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700865 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700866};
867
Rich Lane68ae4d72013-05-09 10:55:19 -0700868struct of_instruction {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700869 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700870 uint16_t len;
871};
872
Rich Lanee9c37db2013-06-21 18:30:24 -0700873struct of_instruction_goto_table : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700874 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700875 uint16_t len;
876 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700877 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700878};
879
Rich Lanee9c37db2013-06-21 18:30:24 -0700880struct of_instruction_write_metadata : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700881 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700882 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700883 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700884 uint64_t metadata;
885 uint64_t metadata_mask;
886};
887
Rich Lanee9c37db2013-06-21 18:30:24 -0700888struct of_instruction_write_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700889 uint16_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700890 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700891 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700892 list(of_action_t) actions;
893};
894
Rich Lanee9c37db2013-06-21 18:30:24 -0700895struct of_instruction_apply_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700896 uint16_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700897 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700898 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700899 list(of_action_t) actions;
900};
901
Rich Lanee9c37db2013-06-21 18:30:24 -0700902struct of_instruction_clear_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700903 uint16_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700904 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700905 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700906};
907
Rich Lanee9c37db2013-06-21 18:30:24 -0700908struct of_instruction_meter : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700909 uint16_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -0700910 uint16_t len;
911 uint32_t meter_id;
912};
913
Rich Lanee9c37db2013-06-21 18:30:24 -0700914struct of_instruction_experimenter : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700915 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -0700916 uint16_t len;
Rich Laneb25d07c2013-08-22 17:22:43 -0700917 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700918 of_octets_t data;
919};
920
Rich Lanee9c37db2013-06-21 18:30:24 -0700921struct of_flow_mod : of_header {
922 uint8_t version;
923 uint8_t type == 14;
924 uint16_t length;
925 uint32_t xid;
926 uint64_t cookie;
927 uint64_t cookie_mask;
928 uint8_t table_id;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700929 of_fm_cmd_t _command == ?;
Rich Lanee9c37db2013-06-21 18:30:24 -0700930 uint16_t idle_timeout;
931 uint16_t hard_timeout;
932 uint16_t priority;
933 uint32_t buffer_id;
934 of_port_no_t out_port;
935 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700936 enum ofp_flow_mod_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -0700937 pad(2);
938 of_match_t match;
939 list(of_instruction_t) instructions;
940};
941
942struct of_flow_add : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700943 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700944 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700945 uint16_t length;
946 uint32_t xid;
947 uint64_t cookie;
948 uint64_t cookie_mask;
949 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700950 of_fm_cmd_t _command == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700951 uint16_t idle_timeout;
952 uint16_t hard_timeout;
953 uint16_t priority;
954 uint32_t buffer_id;
955 of_port_no_t out_port;
956 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700957 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700958 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700959 of_match_t match;
960 list(of_instruction_t) instructions;
961};
962
Rich Lanee9c37db2013-06-21 18:30:24 -0700963struct of_flow_modify : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700964 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700965 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700966 uint16_t length;
967 uint32_t xid;
968 uint64_t cookie;
969 uint64_t cookie_mask;
970 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700971 of_fm_cmd_t _command == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700972 uint16_t idle_timeout;
973 uint16_t hard_timeout;
974 uint16_t priority;
975 uint32_t buffer_id;
976 of_port_no_t out_port;
977 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700978 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700979 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700980 of_match_t match;
981 list(of_instruction_t) instructions;
982};
983
Rich Lanee9c37db2013-06-21 18:30:24 -0700984struct of_flow_modify_strict : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700985 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700986 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700987 uint16_t length;
988 uint32_t xid;
989 uint64_t cookie;
990 uint64_t cookie_mask;
991 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700992 of_fm_cmd_t _command == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700993 uint16_t idle_timeout;
994 uint16_t hard_timeout;
995 uint16_t priority;
996 uint32_t buffer_id;
997 of_port_no_t out_port;
998 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700999 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001000 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001001 of_match_t match;
1002 list(of_instruction_t) instructions;
1003};
1004
Rich Lanee9c37db2013-06-21 18:30:24 -07001005struct of_flow_delete : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -07001006 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001007 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001008 uint16_t length;
1009 uint32_t xid;
1010 uint64_t cookie;
1011 uint64_t cookie_mask;
1012 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -07001013 of_fm_cmd_t _command == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -07001014 uint16_t idle_timeout;
1015 uint16_t hard_timeout;
1016 uint16_t priority;
1017 uint32_t buffer_id;
1018 of_port_no_t out_port;
1019 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -07001020 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001021 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001022 of_match_t match;
1023 list(of_instruction_t) instructions;
1024};
1025
Rich Lanee9c37db2013-06-21 18:30:24 -07001026struct of_flow_delete_strict : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -07001027 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001028 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001029 uint16_t length;
1030 uint32_t xid;
1031 uint64_t cookie;
1032 uint64_t cookie_mask;
1033 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -07001034 of_fm_cmd_t _command == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -07001035 uint16_t idle_timeout;
1036 uint16_t hard_timeout;
1037 uint16_t priority;
1038 uint32_t buffer_id;
1039 of_port_no_t out_port;
1040 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -07001041 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001042 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001043 of_match_t match;
1044 list(of_instruction_t) instructions;
1045};
1046
Rich Lane68ae4d72013-05-09 10:55:19 -07001047struct of_bucket {
Rich Lanea06d0c32013-03-25 08:52:03 -07001048 uint16_t len;
1049 uint16_t weight;
1050 of_port_no_t watch_port;
1051 uint32_t watch_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001052 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001053 list(of_action_t) actions;
1054};
1055
Rich Lanee9c37db2013-06-21 18:30:24 -07001056struct of_group_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001057 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001058 uint8_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -07001059 uint16_t length;
1060 uint32_t xid;
1061 uint16_t command;
1062 uint8_t group_type;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001063 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001064 uint32_t group_id;
1065 list(of_bucket_t) buckets;
1066};
1067
Rich Lanee9c37db2013-06-21 18:30:24 -07001068struct of_packet_out : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001069 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001070 uint8_t type == 13;
Rich Lanea06d0c32013-03-25 08:52:03 -07001071 uint16_t length;
1072 uint32_t xid;
1073 uint32_t buffer_id;
1074 of_port_no_t in_port;
1075 uint16_t actions_len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001076 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001077 list(of_action_t) actions;
1078 of_octets_t data;
1079};
1080
Rich Lanee9c37db2013-06-21 18:30:24 -07001081struct of_packet_in : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001082 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001083 uint8_t type == 10;
Rich Lanea06d0c32013-03-25 08:52:03 -07001084 uint16_t length;
1085 uint32_t xid;
1086 uint32_t buffer_id;
1087 uint16_t total_len;
1088 uint8_t reason;
1089 uint8_t table_id;
1090 uint64_t cookie;
1091 of_match_t match;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001092 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001093 of_octets_t data; /* FIXME: Ensure total_len gets updated */
1094};
1095
Rich Lanee9c37db2013-06-21 18:30:24 -07001096struct of_flow_removed : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001097 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001098 uint8_t type == 11;
Rich Lanea06d0c32013-03-25 08:52:03 -07001099 uint16_t length;
1100 uint32_t xid;
1101 uint64_t cookie;
1102 uint16_t priority;
1103 uint8_t reason;
1104 uint8_t table_id;
1105 uint32_t duration_sec;
1106 uint32_t duration_nsec;
1107 uint16_t idle_timeout;
1108 uint16_t hard_timeout;
1109 uint64_t packet_count;
1110 uint64_t byte_count;
1111 of_match_t match;
1112};
1113
Rich Lane68ae4d72013-05-09 10:55:19 -07001114struct of_meter_band {
Andreas Wundsam9ba65362013-08-02 19:14:42 -07001115 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001116 uint16_t len;
1117// uint32_t rate; // These are excluded b/c this is the header
1118// uint32_t burst_size; // These are excluded b/c this is the header
1119};
1120
Rich Lanee9c37db2013-06-21 18:30:24 -07001121struct of_meter_band_drop : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001122 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001123 uint16_t len;
1124 uint32_t rate;
1125 uint32_t burst_size;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001126 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001127};
1128
Rich Lanee9c37db2013-06-21 18:30:24 -07001129struct of_meter_band_dscp_remark : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001130 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07001131 uint16_t len;
1132 uint32_t rate;
1133 uint32_t burst_size;
1134 uint8_t prec_level;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001135 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001136};
1137
Rich Lanee9c37db2013-06-21 18:30:24 -07001138struct of_meter_band_experimenter : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001139 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07001140 uint16_t len;
1141 uint32_t rate;
1142 uint32_t burst_size;
1143 uint32_t experimenter;
1144};
1145
Rich Lanee9c37db2013-06-21 18:30:24 -07001146struct of_meter_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001147 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001148 uint8_t type == 29;
Rich Lanea06d0c32013-03-25 08:52:03 -07001149 uint16_t length;
1150 uint32_t xid;
1151 uint16_t command;
1152 uint16_t flags;
1153 uint32_t meter_id;
1154 list(of_meter_band_t) meters;
1155};
1156
Rich Lanee9c37db2013-06-21 18:30:24 -07001157struct of_error_msg : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001158 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001159 uint8_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001160 uint16_t length;
1161 uint32_t xid;
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001162 uint16_t err_type == ?;
1163};
1164
1165struct of_hello_failed_error_msg : of_error_msg {
1166 uint8_t version;
1167 uint8_t type == 1;
1168 uint16_t length;
1169 uint32_t xid;
1170 uint16_t err_type == 0;
1171 enum ofp_hello_failed_code code;
Rich Lanea06d0c32013-03-25 08:52:03 -07001172 of_octets_t data;
1173};
1174
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001175struct of_bad_request_error_msg : of_error_msg {
1176 uint8_t version;
1177 uint8_t type == 1;
1178 uint16_t length;
1179 uint32_t xid;
1180 uint16_t err_type == 1;
1181 enum ofp_bad_request_code code;
1182 of_octets_t data;
1183};
1184
1185struct of_bad_action_error_msg : of_error_msg {
1186 uint8_t version;
1187 uint8_t type == 1;
1188 uint16_t length;
1189 uint32_t xid;
1190 uint16_t err_type == 2;
1191 enum ofp_bad_action_code code;
1192 of_octets_t data;
1193};
1194
1195struct of_bad_instruction_error_msg : of_error_msg {
1196 uint8_t version;
1197 uint8_t type == 1;
1198 uint16_t length;
1199 uint32_t xid;
1200 uint16_t err_type == 3;
1201 enum ofp_bad_instruction_code code;
1202 of_octets_t data;
1203};
1204
1205struct of_bad_match_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 == 4;
1211 enum ofp_bad_match_code code;
1212 of_octets_t data;
1213};
1214
1215struct of_flow_mod_failed_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 == 5;
1221 enum ofp_flow_mod_failed_code code;
1222 of_octets_t data;
1223};
1224
1225struct of_group_mod_failed_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 == 6;
1231 enum ofp_group_mod_failed_code code;
1232 of_octets_t data;
1233};
1234
1235struct of_port_mod_failed_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 == 7;
1241 enum ofp_port_mod_failed_code code;
1242 of_octets_t data;
1243};
1244
1245struct of_table_mod_failed_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 == 8;
1251 enum ofp_table_mod_failed_code code;
1252 of_octets_t data;
1253};
1254
1255struct of_queue_op_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 == 9;
1261 enum ofp_queue_op_failed_code code;
1262 of_octets_t data;
1263};
1264
1265struct of_switch_config_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 == 10;
1271 enum ofp_switch_config_failed_code code;
1272 of_octets_t data;
1273};
1274
1275struct of_role_request_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 == 11;
1281 enum ofp_role_request_failed_code code;
1282 of_octets_t data;
1283};
1284
1285struct of_meter_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 == 12;
1291 enum ofp_meter_mod_failed_code code;
1292 of_octets_t data;
1293};
1294
1295struct of_table_features_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 == 13;
1301 enum ofp_table_features_failed_code code;
1302 of_octets_t data;
1303};
1304
1305struct of_experimenter_error_msg {
1306 uint8_t version;
1307 uint8_t type == 1;
1308 uint16_t length;
1309 uint32_t xid;
1310 uint16_t err_type == 0xffff;
1311 uint16_t subtype;
1312 uint32_t experimenter;
1313 of_octets_t data;
1314};
Rich Lanea06d0c32013-03-25 08:52:03 -07001315
1316// STATS ENTRIES: flow, table, port, queue, group stats, group desc stats
1317
Rich Lane68ae4d72013-05-09 10:55:19 -07001318struct of_flow_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001319 uint16_t length;
1320 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001321 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001322 uint32_t duration_sec;
1323 uint32_t duration_nsec;
1324 uint16_t priority;
1325 uint16_t idle_timeout;
1326 uint16_t hard_timeout;
Rich Lane1a47c1c2013-08-28 15:27:00 -07001327 uint16_t flags;
1328 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001329 uint64_t cookie;
1330 uint64_t packet_count;
1331 uint64_t byte_count;
1332 of_match_t match;
1333 list(of_instruction_t) instructions;
1334};
1335
1336
Rich Lane68ae4d72013-05-09 10:55:19 -07001337struct of_table_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001338 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001339 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001340 uint32_t active_count;
1341 uint64_t lookup_count;
1342 uint64_t matched_count;
1343};
1344
Rich Lane68ae4d72013-05-09 10:55:19 -07001345struct of_port_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001346 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001347 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001348 uint64_t rx_packets;
1349 uint64_t tx_packets;
1350 uint64_t rx_bytes;
1351 uint64_t tx_bytes;
1352 uint64_t rx_dropped;
1353 uint64_t tx_dropped;
1354 uint64_t rx_errors;
1355 uint64_t tx_errors;
1356 uint64_t rx_frame_err;
1357 uint64_t rx_over_err;
1358 uint64_t rx_crc_err;
1359 uint64_t collisions;
1360 uint32_t duration_sec;
1361 uint32_t duration_nsec;
1362};
1363
Rich Lane68ae4d72013-05-09 10:55:19 -07001364struct of_queue_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001365 of_port_no_t port_no;
1366 uint32_t queue_id;
1367 uint64_t tx_bytes;
1368 uint64_t tx_packets;
1369 uint64_t tx_errors;
1370 uint32_t duration_sec;
1371 uint32_t duration_nsec;
1372};
1373
Rich Lane68ae4d72013-05-09 10:55:19 -07001374struct of_bucket_counter {
Rich Lanea06d0c32013-03-25 08:52:03 -07001375 uint64_t packet_count;
1376 uint64_t byte_count;
1377};
1378
Rich Lane68ae4d72013-05-09 10:55:19 -07001379struct of_group_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001380 uint16_t length;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001381 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001382 uint32_t group_id;
1383 uint32_t ref_count;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001384 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001385 uint64_t packet_count;
1386 uint64_t byte_count;
1387 uint32_t duration_sec;
1388 uint32_t duration_nsec;
1389 list(of_bucket_counter_t) bucket_stats;
1390};
1391
Rich Lane68ae4d72013-05-09 10:55:19 -07001392struct of_group_desc_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001393 uint16_t length;
Rich Lane35e7ac72013-10-15 10:36:10 -07001394 uint8_t group_type;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001395 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001396 uint32_t group_id;
1397 list(of_bucket_t) buckets;
1398};
1399
1400// STATS:
1401// Desc, flow, agg, table, port, queue, group, group_desc, group_feat, experi
1402
Rich Lanee9c37db2013-06-21 18:30:24 -07001403struct of_stats_request : of_header {
1404 uint8_t version;
1405 uint8_t type == 18;
1406 uint16_t length;
1407 uint32_t xid;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001408 uint16_t stats_type == ?;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001409 enum ofp_stats_request_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -07001410 pad(4);
1411};
1412
1413struct of_stats_reply : of_header {
1414 uint8_t version;
1415 uint8_t type == 19;
1416 uint16_t length;
1417 uint32_t xid;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001418 uint16_t stats_type == ?;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001419 enum ofp_stats_reply_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -07001420 pad(4);
1421};
1422
1423struct of_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001424 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001425 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001426 uint16_t length;
1427 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001428 uint16_t stats_type == 0;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001429 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001430 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001431};
1432
Rich Lanee9c37db2013-06-21 18:30:24 -07001433struct of_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001434 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001435 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001436 uint16_t length;
1437 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001438 uint16_t stats_type == 0;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001439 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001440 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001441 of_desc_str_t mfr_desc;
1442 of_desc_str_t hw_desc;
1443 of_desc_str_t sw_desc;
1444 of_serial_num_t serial_num;
1445 of_desc_str_t dp_desc;
1446};
1447
Rich Lanee9c37db2013-06-21 18:30:24 -07001448struct of_flow_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001449 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001450 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001451 uint16_t length;
1452 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001453 uint16_t stats_type == 1;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001454 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001455 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001456 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001457 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001458 of_port_no_t out_port;
1459 uint32_t out_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001460 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001461 uint64_t cookie;
1462 uint64_t cookie_mask;
1463 of_match_t match;
1464};
1465
Rich Lanee9c37db2013-06-21 18:30:24 -07001466struct of_flow_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001467 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001468 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001469 uint16_t length;
1470 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001471 uint16_t stats_type == 1;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001472 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001473 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001474 list(of_flow_stats_entry_t) entries;
1475};
1476
Rich Lanee9c37db2013-06-21 18:30:24 -07001477struct of_aggregate_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001478 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001479 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001480 uint16_t length;
1481 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001482 uint16_t stats_type == 2;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001483 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001484 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001485 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001486 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001487 of_port_no_t out_port;
1488 uint32_t out_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001489 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001490 uint64_t cookie;
1491 uint64_t cookie_mask;
1492 of_match_t match;
1493};
1494
Rich Lanee9c37db2013-06-21 18:30:24 -07001495struct of_aggregate_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001496 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001497 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001498 uint16_t length;
1499 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001500 uint16_t stats_type == 2;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001501 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001502 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001503 uint64_t packet_count;
1504 uint64_t byte_count;
1505 uint32_t flow_count;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001506 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001507};
1508
Rich Lanee9c37db2013-06-21 18:30:24 -07001509struct of_table_stats_request : of_stats_request {
Rich Lane8bfdafc2013-05-02 14:54:42 -07001510 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001511 uint8_t type == 18;
Rich Lane8bfdafc2013-05-02 14:54:42 -07001512 uint16_t length;
1513 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001514 uint16_t stats_type == 3;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001515 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001516 pad(4);
Rich Lane8bfdafc2013-05-02 14:54:42 -07001517};
1518
Rich Lanee9c37db2013-06-21 18:30:24 -07001519struct of_table_stats_reply : of_stats_reply {
Rich Lane8bfdafc2013-05-02 14:54:42 -07001520 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001521 uint8_t type == 19;
Rich Lane8bfdafc2013-05-02 14:54:42 -07001522 uint16_t length;
1523 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001524 uint16_t stats_type == 3;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001525 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001526 pad(4);
Rich Lane8bfdafc2013-05-02 14:54:42 -07001527 list(of_table_stats_entry_t) entries;
1528};
1529
Rich Lane6d434332013-11-13 09:23:10 -08001530struct of_experimenter_stats_request : of_stats_request {
1531 uint8_t version;
1532 uint8_t type == 18;
1533 uint16_t length;
1534 uint32_t xid;
1535 uint16_t stats_type == 0xffff;
1536 enum ofp_stats_request_flags flags;
1537 pad(4);
1538 uint32_t experimenter == ?;
1539 uint32_t subtype;
1540};
1541
1542struct of_experimenter_stats_reply : of_stats_reply {
1543 uint8_t version;
1544 uint8_t type == 19;
1545 uint16_t length;
1546 uint32_t xid;
1547 uint16_t stats_type == 0xffff;
1548 enum ofp_stats_reply_flags flags;
1549 pad(4);
1550 uint32_t experimenter == ?;
1551 uint32_t subtype;
1552};
1553
Rich Lanea06d0c32013-03-25 08:52:03 -07001554// FIXME: These are padded to 8 byte align beyond the length indicated
1555
Rich Lane68ae4d72013-05-09 10:55:19 -07001556struct of_table_feature_prop {
Rich Lanea1b8f442013-10-01 22:05:22 -07001557 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001558 uint16_t length;
1559};
1560
Rich Lanee9c37db2013-06-21 18:30:24 -07001561struct of_table_feature_prop_instructions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001562 uint16_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -07001563 uint16_t length;
1564 // FIXME Check if instruction_t is right for ids here
1565 list(of_instruction_t) instruction_ids;
1566};
1567
Rich Lanee9c37db2013-06-21 18:30:24 -07001568struct of_table_feature_prop_instructions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001569 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001570 uint16_t length;
1571 list(of_instruction_t) instruction_ids;
1572};
1573
Rich Lanee9c37db2013-06-21 18:30:24 -07001574struct of_table_feature_prop_next_tables : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001575 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07001576 uint16_t length;
1577 list(of_uint8_t) next_table_ids;
1578};
1579
Rich Lanee9c37db2013-06-21 18:30:24 -07001580struct of_table_feature_prop_next_tables_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001581 uint16_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -07001582 uint16_t length;
1583 list(of_uint8_t) next_table_ids;
1584};
1585
Rich Lanee9c37db2013-06-21 18:30:24 -07001586struct of_table_feature_prop_write_actions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001587 uint16_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -07001588 uint16_t length;
1589 list(of_action_id_t) action_ids;
1590};
1591
Rich Lanee9c37db2013-06-21 18:30:24 -07001592struct of_table_feature_prop_write_actions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001593 uint16_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -07001594 uint16_t length;
1595 list(of_action_id_t) action_ids;
1596};
1597
Rich Lanee9c37db2013-06-21 18:30:24 -07001598struct of_table_feature_prop_apply_actions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001599 uint16_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -07001600 uint16_t length;
1601 list(of_action_id_t) action_ids;
1602};
1603
Rich Lanee9c37db2013-06-21 18:30:24 -07001604struct of_table_feature_prop_apply_actions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001605 uint16_t type == 7;
Rich Lanea06d0c32013-03-25 08:52:03 -07001606 uint16_t length;
1607 list(of_action_id_t) action_ids;
1608};
1609
Rich Lanee9c37db2013-06-21 18:30:24 -07001610struct of_table_feature_prop_match : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001611 uint16_t type == 8;
Rich Lanea06d0c32013-03-25 08:52:03 -07001612 uint16_t length;
1613 list(of_uint32_t) oxm_ids;
1614};
1615
Rich Lanee9c37db2013-06-21 18:30:24 -07001616struct of_table_feature_prop_wildcards : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001617 uint16_t type == 10;
Rich Lanea06d0c32013-03-25 08:52:03 -07001618 uint16_t length;
1619 list(of_uint32_t) oxm_ids;
1620};
1621
Rich Lanee9c37db2013-06-21 18:30:24 -07001622struct of_table_feature_prop_write_setfield : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001623 uint16_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -07001624 uint16_t length;
1625 list(of_uint32_t) oxm_ids;
1626};
1627
Rich Lanee9c37db2013-06-21 18:30:24 -07001628struct of_table_feature_prop_write_setfield_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001629 uint16_t type == 13;
Rich Lanea06d0c32013-03-25 08:52:03 -07001630 uint16_t length;
1631 list(of_uint32_t) oxm_ids;
1632};
1633
Rich Lanee9c37db2013-06-21 18:30:24 -07001634struct of_table_feature_prop_apply_setfield : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001635 uint16_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001636 uint16_t length;
1637 list(of_uint32_t) oxm_ids;
1638};
1639
Rich Lanee9c37db2013-06-21 18:30:24 -07001640struct of_table_feature_prop_apply_setfield_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001641 uint16_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -07001642 uint16_t length;
1643 list(of_uint32_t) oxm_ids;
1644};
1645
Rich Lanee9c37db2013-06-21 18:30:24 -07001646struct of_table_feature_prop_experimenter : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001647 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07001648 uint16_t length;
1649 uint32_t experimenter;
1650 uint32_t subtype;
1651 of_octets_t experimenter_data;
1652};
1653
1654// Not yet supported
Rich Lanee9c37db2013-06-21 18:30:24 -07001655// struct of_table_feature_prop_experimenter_miss : of_table_feature_prop {
Rich Lanea06d0c32013-03-25 08:52:03 -07001656// uint16_t type;
1657// uint16_t length;
1658// uint32_t experimenter;
1659// uint32_t subtype;
1660// of_octets_t experimenter_data;
1661// };
1662
Rich Lane68ae4d72013-05-09 10:55:19 -07001663struct of_table_features {
Rich Lanea06d0c32013-03-25 08:52:03 -07001664 uint16_t length;
1665 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001666 pad(5);
Rich Lanea06d0c32013-03-25 08:52:03 -07001667 of_table_name_t name;
1668 uint64_t metadata_match;
1669 uint64_t metadata_write;
1670 uint32_t config;
1671 uint32_t max_entries;
1672 list(of_table_feature_prop_t) properties;
1673};
1674
Rich Lane68ae4d72013-05-09 10:55:19 -07001675struct of_meter_features {
Rich Lanea06d0c32013-03-25 08:52:03 -07001676 uint32_t max_meter;
1677 uint32_t band_types;
1678 uint32_t capabilities;
1679 uint8_t max_bands;
1680 uint8_t max_color;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001681 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001682};
1683
Rich Lanee9c37db2013-06-21 18:30:24 -07001684struct of_port_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001685 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001686 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001687 uint16_t length;
1688 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001689 uint16_t stats_type == 4;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001690 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001691 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001692 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001693 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001694};
1695
Rich Lanee9c37db2013-06-21 18:30:24 -07001696struct of_port_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001697 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001698 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001699 uint16_t length;
1700 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001701 uint16_t stats_type == 4;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001702 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001703 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001704 list(of_port_stats_entry_t) entries;
1705};
1706
Rich Lanee9c37db2013-06-21 18:30:24 -07001707struct of_queue_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001708 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001709 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001710 uint16_t length;
1711 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001712 uint16_t stats_type == 5;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001713 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001714 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001715 of_port_no_t port_no;
1716 uint32_t queue_id;
1717};
1718
Rich Lanee9c37db2013-06-21 18:30:24 -07001719struct of_queue_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001720 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001721 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001722 uint16_t length;
1723 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001724 uint16_t stats_type == 5;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001725 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001726 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001727 list(of_queue_stats_entry_t) entries;
1728};
1729
Rich Lanee9c37db2013-06-21 18:30:24 -07001730struct of_group_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001731 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001732 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001733 uint16_t length;
1734 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001735 uint16_t stats_type == 6;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001736 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001737 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001738 uint32_t group_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001739 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001740};
1741
Rich Lanee9c37db2013-06-21 18:30:24 -07001742struct of_group_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001743 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001744 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001745 uint16_t length;
1746 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001747 uint16_t stats_type == 6;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001748 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001749 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001750 list(of_group_stats_entry_t) entries;
1751};
1752
Rich Lanee9c37db2013-06-21 18:30:24 -07001753struct of_group_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001754 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001755 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001756 uint16_t length;
1757 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001758 uint16_t stats_type == 7;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001759 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001760 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001761};
1762
Rich Lanee9c37db2013-06-21 18:30:24 -07001763struct of_group_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001764 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001765 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001766 uint16_t length;
1767 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001768 uint16_t stats_type == 7;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001769 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001770 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001771 list(of_group_desc_stats_entry_t) entries;
1772};
1773
Rich Lanee9c37db2013-06-21 18:30:24 -07001774struct of_group_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001775 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001776 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001777 uint16_t length;
1778 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001779 uint16_t stats_type == 8;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001780 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001781 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001782};
1783
Rich Lanee9c37db2013-06-21 18:30:24 -07001784struct of_group_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001785 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001786 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001787 uint16_t length;
1788 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001789 uint16_t stats_type == 8;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001790 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001791 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001792 uint32_t types;
1793 uint32_t capabilities;
1794 uint32_t max_groups_all;
1795 uint32_t max_groups_select;
1796 uint32_t max_groups_indirect;
1797 uint32_t max_groups_ff;
1798 uint32_t actions_all;
1799 uint32_t actions_select;
1800 uint32_t actions_indirect;
1801 uint32_t actions_ff;
1802};
1803
Rich Lanee9c37db2013-06-21 18:30:24 -07001804struct of_meter_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001805 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001806 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001807 uint16_t length;
1808 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001809 uint16_t stats_type == 9;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001810 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001811 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001812 uint32_t meter_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001813 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001814};
1815
Rich Lanee9c37db2013-06-21 18:30:24 -07001816struct of_meter_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001817 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001818 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001819 uint16_t length;
1820 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001821 uint16_t stats_type == 9;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001822 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001823 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001824 list(of_meter_stats_t) entries;
1825};
1826
Rich Lanee9c37db2013-06-21 18:30:24 -07001827struct of_meter_config_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001828 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001829 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001830 uint16_t length;
1831 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001832 uint16_t stats_type == 10;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001833 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001834 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001835 uint32_t meter_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001836 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001837};
1838
Rich Lanee9c37db2013-06-21 18:30:24 -07001839struct of_meter_config_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001840 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001841 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001842 uint16_t length;
1843 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001844 uint16_t stats_type == 10;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001845 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001846 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001847 list(of_meter_band_t) entries;
1848};
1849
1850// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001851struct of_meter_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001852 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001853 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001854 uint16_t length;
1855 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001856 uint16_t stats_type == 11;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001857 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001858 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001859};
1860
1861// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001862struct of_meter_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001863 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001864 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001865 uint16_t length;
1866 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001867 uint16_t stats_type == 11;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001868 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001869 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001870 of_meter_features_t features;
1871};
1872
1873// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001874struct of_table_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001875 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001876 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001877 uint16_t length;
1878 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001879 uint16_t stats_type == 12;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001880 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001881 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001882 list(of_table_features_t) entries;
1883};
1884
1885// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001886struct of_table_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001887 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001888 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001889 uint16_t length;
1890 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001891 uint16_t stats_type == 12;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001892 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001893 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001894 list(of_table_features_t) entries;
1895};
1896
1897// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001898struct of_port_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001899 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001900 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001901 uint16_t length;
1902 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001903 uint16_t stats_type == 13;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001904 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001905 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001906};
1907
1908// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001909struct of_port_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001910 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001911 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001912 uint16_t length;
1913 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001914 uint16_t stats_type == 13;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001915 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001916 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001917 list(of_port_desc_t) entries;
1918};
1919
Rich Lane68ae4d72013-05-09 10:55:19 -07001920struct of_meter_band_stats {
Rich Lanea06d0c32013-03-25 08:52:03 -07001921 uint64_t packet_band_count;
1922 uint64_t byte_band_count;
1923};
1924
Rich Lane68ae4d72013-05-09 10:55:19 -07001925struct of_meter_stats {
Rich Lanea06d0c32013-03-25 08:52:03 -07001926 uint32_t meter_id;
1927 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001928 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001929 uint32_t flow_count;
1930 uint64_t packet_in_count;
1931 uint64_t byte_in_count;
1932 uint32_t duration_sec;
1933 uint32_t duration_nsec;
1934 list(of_meter_band_stats_t) band_stats;
1935};
1936
Rich Lane68ae4d72013-05-09 10:55:19 -07001937struct of_meter_config {
Rich Lanea06d0c32013-03-25 08:52:03 -07001938 uint16_t length;
1939 uint16_t flags;
1940 uint32_t meter_id;
1941 list(of_meter_band_t) entries;
1942};
1943
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001944struct of_experimenter_stats_header {
Rich Laneb25d07c2013-08-22 17:22:43 -07001945 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001946 uint32_t subtype;
1947};
1948
1949// END OF STATS OBJECTS
1950
Rich Lane68ae4d72013-05-09 10:55:19 -07001951struct of_queue_prop {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001952 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001953 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001954 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001955};
1956
Rich Lanee9c37db2013-06-21 18:30:24 -07001957struct of_queue_prop_min_rate : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001958 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001959 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001960 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001961 uint16_t rate;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001962 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001963};
1964
Rich Lanee9c37db2013-06-21 18:30:24 -07001965struct of_queue_prop_max_rate : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001966 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07001967 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001968 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001969 uint16_t rate;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001970 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001971};
1972
Rich Lanee9c37db2013-06-21 18:30:24 -07001973struct of_queue_prop_experimenter : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001974 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07001975 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001976 pad(4);
Rich Laneb25d07c2013-08-22 17:22:43 -07001977 uint32_t experimenter == ?;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001978 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001979 of_octets_t data;
1980};
1981
Rich Lane68ae4d72013-05-09 10:55:19 -07001982struct of_packet_queue {
Rich Lanea06d0c32013-03-25 08:52:03 -07001983 uint32_t queue_id;
1984 of_port_no_t port;
1985 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001986 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001987 list(of_queue_prop_t) properties;
1988};
1989
Rich Lanee9c37db2013-06-21 18:30:24 -07001990struct of_queue_get_config_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001991 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001992 uint8_t type == 22;
Rich Lanea06d0c32013-03-25 08:52:03 -07001993 uint16_t length;
1994 uint32_t xid;
1995 of_port_no_t port;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001996 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001997};
1998
Rich Lanee9c37db2013-06-21 18:30:24 -07001999struct of_queue_get_config_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002000 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002001 uint8_t type == 23;
Rich Lanea06d0c32013-03-25 08:52:03 -07002002 uint16_t length;
2003 uint32_t xid;
2004 of_port_no_t port;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002005 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002006 list(of_packet_queue_t) queues;
2007};
2008
Rich Lanee9c37db2013-06-21 18:30:24 -07002009struct of_role_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002010 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002011 uint8_t type == 24;
Rich Lanea06d0c32013-03-25 08:52:03 -07002012 uint16_t length;
2013 uint32_t xid;
Andreas Wundsam4f796b72013-10-18 17:33:23 -07002014 enum ofp_controller_role role;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002015 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002016 uint64_t generation_id;
2017};
2018
Rich Lanee9c37db2013-06-21 18:30:24 -07002019struct of_role_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002020 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002021 uint8_t type == 25;
Rich Lanea06d0c32013-03-25 08:52:03 -07002022 uint16_t length;
2023 uint32_t xid;
Andreas Wundsam4f796b72013-10-18 17:33:23 -07002024 enum ofp_controller_role role;
2025 pad(4);
2026 uint64_t generation_id;
Rich Lanea06d0c32013-03-25 08:52:03 -07002027};
2028
2029////////////////////////////////////////////////////////////////
2030// FIXME understand async; where do bitmasks live?
2031// Determine bitmap type for masks below.
2032// DOCUMENT masks where uint32_t[0] is interest for equal/master
2033// while uint32_t[1] is interest for slave
2034////////////////////////////////////////////////////////////////
2035
Rich Lanee9c37db2013-06-21 18:30:24 -07002036struct of_async_get_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002037 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002038 uint8_t type == 26;
Rich Lanea06d0c32013-03-25 08:52:03 -07002039 uint16_t length;
2040 uint32_t xid;
2041 uint32_t packet_in_mask_equal_master;
2042 uint32_t packet_in_mask_slave;
2043 uint32_t port_status_mask_equal_master;
2044 uint32_t port_status_mask_slave;
2045 uint32_t flow_removed_mask_equal_master;
2046 uint32_t flow_removed_mask_slave;
2047};
2048
Rich Lanee9c37db2013-06-21 18:30:24 -07002049struct of_async_get_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002050 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002051 uint8_t type == 27;
Rich Lanea06d0c32013-03-25 08:52:03 -07002052 uint16_t length;
2053 uint32_t xid;
2054 uint32_t packet_in_mask_equal_master;
2055 uint32_t packet_in_mask_slave;
2056 uint32_t port_status_mask_equal_master;
2057 uint32_t port_status_mask_slave;
2058 uint32_t flow_removed_mask_equal_master;
2059 uint32_t flow_removed_mask_slave;
2060};
2061
Rich Lanee9c37db2013-06-21 18:30:24 -07002062struct of_async_set : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002063 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002064 uint8_t type == 28;
Rich Lanea06d0c32013-03-25 08:52:03 -07002065 uint16_t length;
2066 uint32_t xid;
2067 uint32_t packet_in_mask_equal_master;
2068 uint32_t packet_in_mask_slave;
2069 uint32_t port_status_mask_equal_master;
2070 uint32_t port_status_mask_slave;
2071 uint32_t flow_removed_mask_equal_master;
2072 uint32_t flow_removed_mask_slave;
2073};