blob: 05d8dbcbad9b77c96417e3b321985b2e0a0cb5a8 [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 Lanee13d7842013-12-21 14:39:25 -0800287 OFPR_BSN_NO_ROUTE = 132,
Harshmeet Singh192b1b02013-12-14 07:46:24 -0800288 OFPR_BSN_ICMP_ECHO_REQUEST = 133,
289 OFPR_BSN_DEST_NETWORK_UNREACHABLE = 134,
290 OFPR_BSN_DEST_HOST_UNREACHABLE = 135,
291 OFPR_BSN_DEST_PORT_UNREACHABLE = 136,
292 OFPR_BSN_FRAGMENTATION_REQUIRED = 137,
Rich Lanec1c6df62014-01-24 17:18:00 -0800293 OFPR_BSN_ARP = 139,
Duc Pham9d29ed02014-01-30 16:23:16 -0800294 OFPR_BSN_DHCP = 140,
Rich Lane5d33a622013-04-08 17:33:11 -0700295};
296
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700297enum ofp_flow_removed_reason(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700298 OFPRR_IDLE_TIMEOUT = 0,
299 OFPRR_HARD_TIMEOUT = 1,
300 OFPRR_DELETE = 2,
301 OFPRR_GROUP_DELETE = 3,
302};
303
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700304enum ofp_meter(wire_type=uint32_t, complete=False) {
Rich Lane5d33a622013-04-08 17:33:11 -0700305 OFPM_MAX = 0xffff0000,
306 OFPM_SLOWPATH = 0xfffffffd,
307 OFPM_CONTROLLER = 0xfffffffe,
308 OFPM_ALL = 0xffffffff,
309};
310
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700311enum ofp_meter_band_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700312 OFPMBT_DROP = 0x1,
313 OFPMBT_DSCP_REMARK = 0x2,
314 OFPMBT_EXPERIMENTER = 0xffff,
315};
316
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700317enum ofp_meter_mod_command(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700318 OFPMC_ADD = 0,
319 OFPMC_MODIFY = 1,
320 OFPMC_DELETE = 2,
321};
322
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700323enum ofp_meter_flags(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700324 OFPMF_KBPS = 0x1,
325 OFPMF_PKTPS = 0x2,
326 OFPMF_BURST = 0x4,
327 OFPMF_STATS = 0x8,
328};
329
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700330enum ofp_error_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700331 OFPET_HELLO_FAILED = 0,
332 OFPET_BAD_REQUEST = 1,
333 OFPET_BAD_ACTION = 2,
334 OFPET_BAD_INSTRUCTION = 3,
335 OFPET_BAD_MATCH = 4,
336 OFPET_FLOW_MOD_FAILED = 5,
337 OFPET_GROUP_MOD_FAILED = 6,
338 OFPET_PORT_MOD_FAILED = 7,
339 OFPET_TABLE_MOD_FAILED = 8,
340 OFPET_QUEUE_OP_FAILED = 9,
341 OFPET_SWITCH_CONFIG_FAILED = 10,
342 OFPET_ROLE_REQUEST_FAILED = 11,
343 OFPET_METER_MOD_FAILED = 12,
344 OFPET_TABLE_FEATURES_FAILED = 13,
345 OFPET_EXPERIMENTER = 0xffff,
346};
347
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700348enum ofp_hello_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700349 OFPHFC_INCOMPATIBLE = 0,
350 OFPHFC_EPERM = 1,
351};
352
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700353enum ofp_bad_request_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700354 OFPBRC_BAD_VERSION = 0,
355 OFPBRC_BAD_TYPE = 1,
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700356 OFPBRC_BAD_STAT = 2,
Rich Lane5d33a622013-04-08 17:33:11 -0700357 OFPBRC_BAD_EXPERIMENTER = 3,
Rob Vaterlausb3f49d92013-10-01 17:57:31 -0700358 OFPBRC_BAD_EXPERIMENTER_TYPE = 4,
Rich Lane5d33a622013-04-08 17:33:11 -0700359 OFPBRC_EPERM = 5,
360 OFPBRC_BAD_LEN = 6,
361 OFPBRC_BUFFER_EMPTY = 7,
362 OFPBRC_BUFFER_UNKNOWN = 8,
363 OFPBRC_BAD_TABLE_ID = 9,
364 OFPBRC_IS_SLAVE = 10,
365 OFPBRC_BAD_PORT = 11,
366 OFPBRC_BAD_PACKET = 12,
367 OFPBRC_MULTIPART_BUFFER_OVERFLOW = 13,
368};
369
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700370enum ofp_bad_action_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700371 OFPBAC_BAD_TYPE = 0,
372 OFPBAC_BAD_LEN = 1,
373 OFPBAC_BAD_EXPERIMENTER = 2,
Rob Vaterlausb3f49d92013-10-01 17:57:31 -0700374 OFPBAC_BAD_EXPERIMENTER_TYPE = 3,
Rich Lane5d33a622013-04-08 17:33:11 -0700375 OFPBAC_BAD_OUT_PORT = 4,
376 OFPBAC_BAD_ARGUMENT = 5,
377 OFPBAC_EPERM = 6,
378 OFPBAC_TOO_MANY = 7,
379 OFPBAC_BAD_QUEUE = 8,
380 OFPBAC_BAD_OUT_GROUP = 9,
381 OFPBAC_MATCH_INCONSISTENT = 10,
382 OFPBAC_UNSUPPORTED_ORDER = 11,
383 OFPBAC_BAD_TAG = 12,
384 OFPBAC_BAD_SET_TYPE = 13,
385 OFPBAC_BAD_SET_LEN = 14,
386 OFPBAC_BAD_SET_ARGUMENT = 15,
387};
388
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700389enum ofp_bad_instruction_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700390 OFPBIC_UNKNOWN_INST = 0,
391 OFPBIC_UNSUP_INST = 1,
392 OFPBIC_BAD_TABLE_ID = 2,
393 OFPBIC_UNSUP_METADATA = 3,
394 OFPBIC_UNSUP_METADATA_MASK = 4,
395 OFPBIC_BAD_EXPERIMENTER = 5,
Rob Vaterlausb3f49d92013-10-01 17:57:31 -0700396 OFPBIC_BAD_EXPERIMENTER_TYPE = 6,
Rich Lane5d33a622013-04-08 17:33:11 -0700397 OFPBIC_BAD_LEN = 7,
398 OFPBIC_EPERM = 8,
399};
400
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700401enum ofp_bad_match_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700402 OFPBMC_BAD_TYPE = 0,
403 OFPBMC_BAD_LEN = 1,
404 OFPBMC_BAD_TAG = 2,
405 OFPBMC_BAD_DL_ADDR_MASK = 3,
406 OFPBMC_BAD_NW_ADDR_MASK = 4,
407 OFPBMC_BAD_WILDCARDS = 5,
408 OFPBMC_BAD_FIELD = 6,
409 OFPBMC_BAD_VALUE = 7,
410 OFPBMC_BAD_MASK = 8,
411 OFPBMC_BAD_PREREQ = 9,
412 OFPBMC_DUP_FIELD = 10,
413 OFPBMC_EPERM = 11,
414};
415
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700416enum ofp_flow_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700417 OFPFMFC_UNKNOWN = 0,
418 OFPFMFC_TABLE_FULL = 1,
419 OFPFMFC_BAD_TABLE_ID = 2,
420 OFPFMFC_OVERLAP = 3,
421 OFPFMFC_EPERM = 4,
422 OFPFMFC_BAD_TIMEOUT = 5,
423 OFPFMFC_BAD_COMMAND = 6,
424 OFPFMFC_BAD_FLAGS = 7,
425};
426
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700427enum ofp_group_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700428 OFPGMFC_GROUP_EXISTS = 0,
429 OFPGMFC_INVALID_GROUP = 1,
430 OFPGMFC_WEIGHT_UNSUPPORTED = 2,
431 OFPGMFC_OUT_OF_GROUPS = 3,
432 OFPGMFC_OUT_OF_BUCKETS = 4,
433 OFPGMFC_CHAINING_UNSUPPORTED = 5,
434 OFPGMFC_WATCH_UNSUPPORTED = 6,
435 OFPGMFC_LOOP = 7,
436 OFPGMFC_UNKNOWN_GROUP = 8,
437 OFPGMFC_CHAINED_GROUP = 9,
438 OFPGMFC_BAD_TYPE = 10,
439 OFPGMFC_BAD_COMMAND = 11,
440 OFPGMFC_BAD_BUCKET = 12,
441 OFPGMFC_BAD_WATCH = 13,
442 OFPGMFC_EPERM = 14,
443};
444
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700445enum ofp_port_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700446 OFPPMFC_BAD_PORT = 0,
447 OFPPMFC_BAD_HW_ADDR = 1,
448 OFPPMFC_BAD_CONFIG = 2,
449 OFPPMFC_BAD_ADVERTISE = 3,
450 OFPPMFC_EPERM = 4,
451};
452
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700453enum ofp_table_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700454 OFPTMFC_BAD_TABLE = 0,
455 OFPTMFC_BAD_CONFIG = 1,
456 OFPTMFC_EPERM = 2,
457};
458
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700459enum ofp_queue_op_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700460 OFPQOFC_BAD_PORT = 0,
461 OFPQOFC_BAD_QUEUE = 1,
462 OFPQOFC_EPERM = 2,
463};
464
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700465enum ofp_switch_config_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700466 OFPSCFC_BAD_FLAGS = 0,
467 OFPSCFC_BAD_LEN = 1,
468 OFPSCFC_EPERM = 2,
469};
470
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700471enum ofp_role_request_failed_code(wire_type=uint16_t){
Rich Lane5d33a622013-04-08 17:33:11 -0700472 OFPRRFC_STALE = 0,
473 OFPRRFC_UNSUP = 1,
474 OFPRRFC_BAD_ROLE = 2,
475};
476
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700477enum ofp_meter_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700478 OFPMMFC_UNKNOWN = 0,
479 OFPMMFC_METER_EXISTS = 1,
480 OFPMMFC_INVALID_METER = 2,
481 OFPMMFC_UNKNOWN_METER = 3,
482 OFPMMFC_BAD_COMMAND = 4,
483 OFPMMFC_BAD_FLAGS = 5,
484 OFPMMFC_BAD_RATE = 6,
485 OFPMMFC_BAD_BURST = 7,
486 OFPMMFC_BAD_BAND = 8,
487 OFPMMFC_BAD_BAND_VALUE = 9,
488 OFPMMFC_OUT_OF_METERS = 10,
489 OFPMMFC_OUT_OF_BANDS = 11,
490};
491
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700492enum ofp_table_features_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700493 OFPTFFC_BAD_TABLE = 0,
494 OFPTFFC_BAD_METADATA = 1,
495 OFPTFFC_BAD_TYPE = 2,
496 OFPTFFC_BAD_LEN = 3,
497 OFPTFFC_BAD_ARGUMENT = 4,
498 OFPTFFC_EPERM = 5,
499};
500
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700501enum ofp_stats_type(wire_type=uint16_t) {
502 OFPST_DESC = 0,
503 OFPST_FLOW = 1,
504 OFPST_AGGREGATE = 2,
505 OFPST_TABLE = 3,
506 OFPST_PORT = 4,
507 OFPST_QUEUE = 5,
508 OFPST_GROUP = 6,
509 OFPST_GROUP_DESC = 7,
510 OFPST_GROUP_FEATURES = 8,
511 OFPST_METER = 9,
512 OFPST_METER_CONFIG = 10,
513 OFPST_METER_FEATURES = 11,
514 OFPST_TABLE_FEATURES = 12,
515 OFPST_PORT_DESC = 13,
516 OFPST_EXPERIMENTER = 0xffff,
Rich Lane5d33a622013-04-08 17:33:11 -0700517};
518
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700519enum ofp_stats_request_flags(wire_type=uint16_t, bitmask=True) {
520 OFPSF_REQ_MORE = 0x1,
Rich Lane5d33a622013-04-08 17:33:11 -0700521};
522
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700523enum ofp_stats_reply_flags(wire_type=uint16_t, bitmask=True) {
524 OFPSF_REPLY_MORE = 0x1,
Rich Lane5d33a622013-04-08 17:33:11 -0700525};
526
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700527enum ofp_table_feature_prop_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700528 OFPTFPT_INSTRUCTIONS = 0,
529 OFPTFPT_INSTRUCTIONS_MISS = 1,
530 OFPTFPT_NEXT_TABLES = 2,
531 OFPTFPT_NEXT_TABLES_MISS = 3,
532 OFPTFPT_WRITE_ACTIONS = 4,
533 OFPTFPT_WRITE_ACTIONS_MISS = 5,
534 OFPTFPT_APPLY_ACTIONS = 6,
535 OFPTFPT_APPLY_ACTIONS_MISS = 7,
536 OFPTFPT_MATCH = 8,
537 OFPTFPT_WILDCARDS = 0xa,
538 OFPTFPT_WRITE_SETFIELD = 0xc,
539 OFPTFPT_WRITE_SETFIELD_MISS = 0xd,
540 OFPTFPT_APPLY_SETFIELD = 0xe,
541 OFPTFPT_APPLY_SETFIELD_MISS = 0xf,
542 OFPTFPT_EXPERIMENTER = 0xfffe,
543 OFPTFPT_EXPERIMENTER_MISS = 0xffff,
544};
545
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700546enum ofp_group_capabilities(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700547 OFPGFC_SELECT_WEIGHT = 0x1,
548 OFPGFC_SELECT_LIVENESS = 0x2,
549 OFPGFC_CHAINING = 0x4,
550 OFPGFC_CHAINING_CHECKS = 0x8,
551};
552
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700553enum ofp_queue_properties(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700554 OFPQT_MIN_RATE = 0x1,
555 OFPQT_MAX_RATE = 0x2,
556 OFPQT_EXPERIMENTER = 0xffff,
557};
558
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700559enum ofp_controller_role(wire_type=uint32_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700560 OFPCR_ROLE_NOCHANGE = 0,
561 OFPCR_ROLE_EQUAL = 1,
562 OFPCR_ROLE_MASTER = 2,
563 OFPCR_ROLE_SLAVE = 3,
564};
565
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700566enum ofp_hello_elem_type(wire_type=uint16_t) {
Rich Lane0733cd62013-04-18 21:14:42 -0700567 OFPHET_VERSIONBITMAP = 1,
568};
569
Rich Lanee9c37db2013-06-21 18:30:24 -0700570/* XXX rename to of_message */
Rich Lane68ae4d72013-05-09 10:55:19 -0700571struct of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700572 uint8_t version;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700573 uint8_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700574 uint16_t length;
575 uint32_t xid;
576};
577
xinwuf08ef682013-12-05 18:29:20 -0800578struct of_uint64 {
579 uint64_t value;
580};
581
Rich Lanea06d0c32013-03-25 08:52:03 -0700582// Special structures used for managing scalar list elements
Rich Lane68ae4d72013-05-09 10:55:19 -0700583struct of_uint32 {
Rich Lanea06d0c32013-03-25 08:52:03 -0700584 uint32_t value;
585};
586
587// Special structures used for managing scalar list elements
Rich Lane68ae4d72013-05-09 10:55:19 -0700588struct of_uint8 {
Rich Lanea06d0c32013-03-25 08:52:03 -0700589 uint8_t value;
590};
591
Rich Lane68ae4d72013-05-09 10:55:19 -0700592struct of_hello_elem {
Andreas Wundsam70411bf2013-08-02 22:26:38 -0700593 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700594 uint16_t length;
595};
596
Rich Lanee9c37db2013-06-21 18:30:24 -0700597struct of_hello_elem_versionbitmap : of_hello_elem {
Rich Lane31b87142013-05-09 22:05:42 -0700598 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700599 uint16_t length;
600 list(of_uint32_t) bitmaps;
601};
602
Rich Lanee9c37db2013-06-21 18:30:24 -0700603struct of_hello : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700604 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700605 uint8_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700606 uint16_t length;
607 uint32_t xid;
608 list(of_hello_elem_t) elements;
609};
610
Rich Lanee9c37db2013-06-21 18:30:24 -0700611struct of_echo_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700612 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700613 uint8_t type == 2;
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_echo_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700620 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700621 uint8_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700622 uint16_t length;
623 uint32_t xid;
624 of_octets_t data;
625};
626
Rich Lanee9c37db2013-06-21 18:30:24 -0700627struct of_experimenter : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700628 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700629 uint8_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700630 uint16_t length;
631 uint32_t xid;
Rich Laneb25d07c2013-08-22 17:22:43 -0700632 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700633 uint32_t subtype;
634 of_octets_t data;
635};
636
Rich Lanee9c37db2013-06-21 18:30:24 -0700637struct of_barrier_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700638 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700639 uint8_t type == 20;
Rich Lanea06d0c32013-03-25 08:52:03 -0700640 uint16_t length;
641 uint32_t xid;
642};
643
Rich Lanee9c37db2013-06-21 18:30:24 -0700644struct of_barrier_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700645 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700646 uint8_t type == 21;
Rich Lanea06d0c32013-03-25 08:52:03 -0700647 uint16_t length;
648 uint32_t xid;
649};
650
Rich Lanee9c37db2013-06-21 18:30:24 -0700651struct of_get_config_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700652 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700653 uint8_t type == 7;
Rich Lanea06d0c32013-03-25 08:52:03 -0700654 uint16_t length;
655 uint32_t xid;
656};
657
Rich Lanee9c37db2013-06-21 18:30:24 -0700658struct of_get_config_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700659 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700660 uint8_t type == 8;
Rich Lanea06d0c32013-03-25 08:52:03 -0700661 uint16_t length;
662 uint32_t xid;
Andreas Wundsam057540b2013-11-19 16:51:36 -0800663 enum ofp_config_flags flags;
Rich Lanea06d0c32013-03-25 08:52:03 -0700664 uint16_t miss_send_len;
665};
666
Rich Lanee9c37db2013-06-21 18:30:24 -0700667struct of_set_config : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700668 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700669 uint8_t type == 9;
Rich Lanea06d0c32013-03-25 08:52:03 -0700670 uint16_t length;
671 uint32_t xid;
Andreas Wundsam057540b2013-11-19 16:51:36 -0800672 enum ofp_config_flags flags;
Rich Lanea06d0c32013-03-25 08:52:03 -0700673 uint16_t miss_send_len;
674};
675
Rich Lanee9c37db2013-06-21 18:30:24 -0700676struct of_table_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700677 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700678 uint8_t type == 17;
Rich Lanea06d0c32013-03-25 08:52:03 -0700679 uint16_t length;
680 uint32_t xid;
681 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700682 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700683 uint32_t config;
684};
685
Rich Lane68ae4d72013-05-09 10:55:19 -0700686struct of_port_desc {
Rich Lanea06d0c32013-03-25 08:52:03 -0700687 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700688 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700689 of_mac_addr_t hw_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700690 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700691 of_port_name_t name;
Rob Vaterlausd9d72d22013-09-23 14:50:52 -0700692 enum ofp_port_config config;
693 enum ofp_port_state state;
694 enum ofp_port_features curr;
695 enum ofp_port_features advertised;
696 enum ofp_port_features supported;
697 enum ofp_port_features peer;
Rich Lanea06d0c32013-03-25 08:52:03 -0700698 uint32_t curr_speed;
699 uint32_t max_speed;
700};
701
Rich Lanee9c37db2013-06-21 18:30:24 -0700702struct of_features_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700703 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700704 uint8_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700705 uint16_t length;
706 uint32_t xid;
707};
708
Rich Lanee9c37db2013-06-21 18:30:24 -0700709struct of_features_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700710 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700711 uint8_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -0700712 uint16_t length;
713 uint32_t xid;
714 uint64_t datapath_id;
715 uint32_t n_buffers;
716 uint8_t n_tables;
717 uint8_t auxiliary_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700718 pad(2);
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700719 enum ofp_capabilities capabilities;
Rich Lanea06d0c32013-03-25 08:52:03 -0700720 uint32_t reserved;
721};
722
Rich Lanee9c37db2013-06-21 18:30:24 -0700723struct of_port_status : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700724 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700725 uint8_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -0700726 uint16_t length;
727 uint32_t xid;
Rob Vaterlausd9d72d22013-09-23 14:50:52 -0700728 enum ofp_port_reason reason;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700729 pad(7);
Rich Lanea06d0c32013-03-25 08:52:03 -0700730 of_port_desc_t desc;
731};
732
Rich Lanee9c37db2013-06-21 18:30:24 -0700733struct of_port_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700734 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700735 uint8_t type == 16;
Rich Lanea06d0c32013-03-25 08:52:03 -0700736 uint16_t length;
737 uint32_t xid;
738 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700739 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700740 of_mac_addr_t hw_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700741 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700742 uint32_t config;
743 uint32_t mask;
744 uint32_t advertise;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700745 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700746};
747
748// FIXME Does this need to be v4?
Andreas Wundsam5da68512013-10-22 22:18:00 -0700749struct of_match_v3(align=8, length_includes_align=False) {
Rich Lane31b87142013-05-09 22:05:42 -0700750 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700751 uint16_t length;
752 list(of_oxm_t) oxm_list;
753};
754
Rich Lanea06d0c32013-03-25 08:52:03 -0700755// This looks like an action header, but is standalone. See
756// ofp_table_features_prop_actions
Rich Lane68ae4d72013-05-09 10:55:19 -0700757struct of_action_id {
Rich Lanea06d0c32013-03-25 08:52:03 -0700758 uint16_t type;
759 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700760 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700761};
762
Rich Lanee9c37db2013-06-21 18:30:24 -0700763struct of_action_output : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700764 uint16_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700765 uint16_t len;
766 of_port_no_t port;
767 uint16_t max_len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700768 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -0700769};
770
Rich Lanee9c37db2013-06-21 18:30:24 -0700771struct of_action_copy_ttl_out : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700772 uint16_t type == 11;
Rich Lanea06d0c32013-03-25 08:52:03 -0700773 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700774 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700775};
776
Rich Lanee9c37db2013-06-21 18:30:24 -0700777struct of_action_copy_ttl_in : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700778 uint16_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -0700779 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700780 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700781};
782
Rich Lanee9c37db2013-06-21 18:30:24 -0700783struct of_action_set_mpls_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700784 uint16_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -0700785 uint16_t len;
786 uint8_t mpls_ttl;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700787 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700788};
789
Rich Lanee9c37db2013-06-21 18:30:24 -0700790struct of_action_dec_mpls_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700791 uint16_t type == 16;
Rich Lanea06d0c32013-03-25 08:52:03 -0700792 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700793 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700794};
795
Rich Lanee9c37db2013-06-21 18:30:24 -0700796struct of_action_push_vlan : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700797 uint16_t type == 17;
Rich Lanea06d0c32013-03-25 08:52:03 -0700798 uint16_t len;
799 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700800 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700801};
802
Rich Lanee9c37db2013-06-21 18:30:24 -0700803struct of_action_pop_vlan : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700804 uint16_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -0700805 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700806 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700807};
808
Rich Lanee9c37db2013-06-21 18:30:24 -0700809struct of_action_push_mpls : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700810 uint16_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -0700811 uint16_t len;
812 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700813 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700814};
815
Rich Lanee9c37db2013-06-21 18:30:24 -0700816struct of_action_pop_mpls : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700817 uint16_t type == 20;
Rich Lanea06d0c32013-03-25 08:52:03 -0700818 uint16_t len;
819 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700820 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700821};
822
Rich Lanee9c37db2013-06-21 18:30:24 -0700823struct of_action_set_queue : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700824 uint16_t type == 21;
Rich Lanea06d0c32013-03-25 08:52:03 -0700825 uint16_t len;
826 uint32_t queue_id;
827};
828
Rich Lanee9c37db2013-06-21 18:30:24 -0700829struct of_action_group : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700830 uint16_t type == 22;
Rich Lanea06d0c32013-03-25 08:52:03 -0700831 uint16_t len;
832 uint32_t group_id;
833};
834
Rich Lanee9c37db2013-06-21 18:30:24 -0700835struct of_action_set_nw_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700836 uint16_t type == 23;
Rich Lanea06d0c32013-03-25 08:52:03 -0700837 uint16_t len;
838 uint8_t nw_ttl;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700839 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700840};
841
Rich Lanee9c37db2013-06-21 18:30:24 -0700842struct of_action_dec_nw_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700843 uint16_t type == 24;
Rich Lanea06d0c32013-03-25 08:52:03 -0700844 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700845 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700846};
847
Andreas Wundsam5da68512013-10-22 22:18:00 -0700848struct of_action_set_field(align=8, length_includes_align=True) : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700849 uint16_t type == 25;
Rich Lanea06d0c32013-03-25 08:52:03 -0700850 uint16_t len;
Rich Lanebe90eae2013-07-22 16:44:26 -0700851 of_oxm_t field;
Rich Lanea06d0c32013-03-25 08:52:03 -0700852};
853
Andreas Wundsam5da68512013-10-22 22:18:00 -0700854struct of_action_experimenter(align=8, length_includes_align=True): of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700855 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -0700856 uint16_t len;
Rich Laneb25d07c2013-08-22 17:22:43 -0700857 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700858 of_octets_t data;
859};
860
Rich Lanee9c37db2013-06-21 18:30:24 -0700861struct of_action_pop_pbb : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700862 uint16_t type == 27;
Rich Lanea06d0c32013-03-25 08:52:03 -0700863 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700864 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700865};
866
Rich Lanee9c37db2013-06-21 18:30:24 -0700867struct of_action_push_pbb : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700868 uint16_t type == 26;
Rich Lanea06d0c32013-03-25 08:52:03 -0700869 uint16_t len;
870 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700871 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700872};
873
Rich Lane68ae4d72013-05-09 10:55:19 -0700874struct of_action {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700875 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700876 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700877 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700878};
879
Rich Lane68ae4d72013-05-09 10:55:19 -0700880struct of_instruction {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700881 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700882 uint16_t len;
883};
884
Rich Lanee9c37db2013-06-21 18:30:24 -0700885struct of_instruction_goto_table : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700886 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700887 uint16_t len;
888 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700889 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700890};
891
Rich Lanee9c37db2013-06-21 18:30:24 -0700892struct of_instruction_write_metadata : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700893 uint16_t type == 2;
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 uint64_t metadata;
897 uint64_t metadata_mask;
898};
899
Rich Lanee9c37db2013-06-21 18:30:24 -0700900struct of_instruction_write_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700901 uint16_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700902 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700903 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700904 list(of_action_t) actions;
905};
906
Rich Lanee9c37db2013-06-21 18:30:24 -0700907struct of_instruction_apply_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700908 uint16_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700909 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700910 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700911 list(of_action_t) actions;
912};
913
Rich Lanee9c37db2013-06-21 18:30:24 -0700914struct of_instruction_clear_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700915 uint16_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700916 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700917 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700918};
919
Rich Lanee9c37db2013-06-21 18:30:24 -0700920struct of_instruction_meter : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700921 uint16_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -0700922 uint16_t len;
923 uint32_t meter_id;
924};
925
Rich Lanee9c37db2013-06-21 18:30:24 -0700926struct of_instruction_experimenter : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700927 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -0700928 uint16_t len;
Rich Laneb25d07c2013-08-22 17:22:43 -0700929 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700930 of_octets_t data;
931};
932
Rich Lanee9c37db2013-06-21 18:30:24 -0700933struct of_flow_mod : of_header {
934 uint8_t version;
935 uint8_t type == 14;
936 uint16_t length;
937 uint32_t xid;
938 uint64_t cookie;
939 uint64_t cookie_mask;
940 uint8_t table_id;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700941 of_fm_cmd_t _command == ?;
Rich Lanee9c37db2013-06-21 18:30:24 -0700942 uint16_t idle_timeout;
943 uint16_t hard_timeout;
944 uint16_t priority;
945 uint32_t buffer_id;
946 of_port_no_t out_port;
947 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700948 enum ofp_flow_mod_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -0700949 pad(2);
950 of_match_t match;
951 list(of_instruction_t) instructions;
952};
953
954struct of_flow_add : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700955 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700956 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700957 uint16_t length;
958 uint32_t xid;
959 uint64_t cookie;
960 uint64_t cookie_mask;
961 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700962 of_fm_cmd_t _command == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700963 uint16_t idle_timeout;
964 uint16_t hard_timeout;
965 uint16_t priority;
966 uint32_t buffer_id;
967 of_port_no_t out_port;
968 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700969 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700970 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700971 of_match_t match;
972 list(of_instruction_t) instructions;
973};
974
Rich Lanee9c37db2013-06-21 18:30:24 -0700975struct of_flow_modify : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700976 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700977 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700978 uint16_t length;
979 uint32_t xid;
980 uint64_t cookie;
981 uint64_t cookie_mask;
982 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700983 of_fm_cmd_t _command == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700984 uint16_t idle_timeout;
985 uint16_t hard_timeout;
986 uint16_t priority;
987 uint32_t buffer_id;
988 of_port_no_t out_port;
989 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700990 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700991 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700992 of_match_t match;
993 list(of_instruction_t) instructions;
994};
995
Rich Lanee9c37db2013-06-21 18:30:24 -0700996struct of_flow_modify_strict : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700997 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700998 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700999 uint16_t length;
1000 uint32_t xid;
1001 uint64_t cookie;
1002 uint64_t cookie_mask;
1003 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -07001004 of_fm_cmd_t _command == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07001005 uint16_t idle_timeout;
1006 uint16_t hard_timeout;
1007 uint16_t priority;
1008 uint32_t buffer_id;
1009 of_port_no_t out_port;
1010 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -07001011 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001012 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001013 of_match_t match;
1014 list(of_instruction_t) instructions;
1015};
1016
Rich Lanee9c37db2013-06-21 18:30:24 -07001017struct of_flow_delete : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -07001018 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001019 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001020 uint16_t length;
1021 uint32_t xid;
1022 uint64_t cookie;
1023 uint64_t cookie_mask;
1024 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -07001025 of_fm_cmd_t _command == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -07001026 uint16_t idle_timeout;
1027 uint16_t hard_timeout;
1028 uint16_t priority;
1029 uint32_t buffer_id;
1030 of_port_no_t out_port;
1031 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -07001032 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001033 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001034 of_match_t match;
1035 list(of_instruction_t) instructions;
1036};
1037
Rich Lanee9c37db2013-06-21 18:30:24 -07001038struct of_flow_delete_strict : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -07001039 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001040 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001041 uint16_t length;
1042 uint32_t xid;
1043 uint64_t cookie;
1044 uint64_t cookie_mask;
1045 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -07001046 of_fm_cmd_t _command == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -07001047 uint16_t idle_timeout;
1048 uint16_t hard_timeout;
1049 uint16_t priority;
1050 uint32_t buffer_id;
1051 of_port_no_t out_port;
1052 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -07001053 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001054 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001055 of_match_t match;
1056 list(of_instruction_t) instructions;
1057};
1058
Rich Lane68ae4d72013-05-09 10:55:19 -07001059struct of_bucket {
Rich Lanea06d0c32013-03-25 08:52:03 -07001060 uint16_t len;
1061 uint16_t weight;
1062 of_port_no_t watch_port;
1063 uint32_t watch_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001064 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001065 list(of_action_t) actions;
1066};
1067
Rich Lanee9c37db2013-06-21 18:30:24 -07001068struct of_group_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001069 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001070 uint8_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -07001071 uint16_t length;
1072 uint32_t xid;
Andreas Wundsam5812cf32013-11-15 13:51:24 -08001073 enum ofp_group_mod_command command == ?;
1074 enum ofp_group_type group_type;
1075 pad(1);
1076 uint32_t group_id;
1077 list(of_bucket_t) buckets;
1078};
1079
1080struct of_group_add : of_group_mod {
1081 uint8_t version;
1082 uint8_t type == 15;
1083 uint16_t length;
1084 uint32_t xid;
1085 enum ofp_group_mod_command command == 0;
1086 enum ofp_group_type group_type;
1087 pad(1);
1088 uint32_t group_id;
1089 list(of_bucket_t) buckets;
1090};
1091
1092struct of_group_modify : of_group_mod {
1093 uint8_t version;
1094 uint8_t type == 15;
1095 uint16_t length;
1096 uint32_t xid;
1097 enum ofp_group_mod_command command == 1;
1098 enum ofp_group_type group_type;
1099 pad(1);
1100 uint32_t group_id;
1101 list(of_bucket_t) buckets;
1102};
1103
1104struct of_group_delete : of_group_mod {
1105 uint8_t version;
1106 uint8_t type == 15;
1107 uint16_t length;
1108 uint32_t xid;
1109 enum ofp_group_mod_command command == 2;
1110 enum ofp_group_type group_type;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001111 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001112 uint32_t group_id;
1113 list(of_bucket_t) buckets;
1114};
1115
Rich Lanee9c37db2013-06-21 18:30:24 -07001116struct of_packet_out : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001117 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001118 uint8_t type == 13;
Rich Lanea06d0c32013-03-25 08:52:03 -07001119 uint16_t length;
1120 uint32_t xid;
1121 uint32_t buffer_id;
1122 of_port_no_t in_port;
1123 uint16_t actions_len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001124 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001125 list(of_action_t) actions;
1126 of_octets_t data;
1127};
1128
Rich Lanee9c37db2013-06-21 18:30:24 -07001129struct of_packet_in : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001130 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001131 uint8_t type == 10;
Rich Lanea06d0c32013-03-25 08:52:03 -07001132 uint16_t length;
1133 uint32_t xid;
1134 uint32_t buffer_id;
1135 uint16_t total_len;
1136 uint8_t reason;
1137 uint8_t table_id;
1138 uint64_t cookie;
1139 of_match_t match;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001140 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001141 of_octets_t data; /* FIXME: Ensure total_len gets updated */
1142};
1143
Rich Lanee9c37db2013-06-21 18:30:24 -07001144struct of_flow_removed : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001145 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001146 uint8_t type == 11;
Rich Lanea06d0c32013-03-25 08:52:03 -07001147 uint16_t length;
1148 uint32_t xid;
1149 uint64_t cookie;
1150 uint16_t priority;
1151 uint8_t reason;
1152 uint8_t table_id;
1153 uint32_t duration_sec;
1154 uint32_t duration_nsec;
1155 uint16_t idle_timeout;
1156 uint16_t hard_timeout;
1157 uint64_t packet_count;
1158 uint64_t byte_count;
1159 of_match_t match;
1160};
1161
Rich Lane68ae4d72013-05-09 10:55:19 -07001162struct of_meter_band {
Andreas Wundsam9ba65362013-08-02 19:14:42 -07001163 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001164 uint16_t len;
1165// uint32_t rate; // These are excluded b/c this is the header
1166// uint32_t burst_size; // These are excluded b/c this is the header
1167};
1168
Rich Lanee9c37db2013-06-21 18:30:24 -07001169struct of_meter_band_drop : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001170 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001171 uint16_t len;
1172 uint32_t rate;
1173 uint32_t burst_size;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001174 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001175};
1176
Rich Lanee9c37db2013-06-21 18:30:24 -07001177struct of_meter_band_dscp_remark : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001178 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07001179 uint16_t len;
1180 uint32_t rate;
1181 uint32_t burst_size;
1182 uint8_t prec_level;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001183 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001184};
1185
Rich Lanee9c37db2013-06-21 18:30:24 -07001186struct of_meter_band_experimenter : of_meter_band {
Rich Lane31b87142013-05-09 22:05:42 -07001187 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07001188 uint16_t len;
1189 uint32_t rate;
1190 uint32_t burst_size;
1191 uint32_t experimenter;
1192};
1193
Rich Lanee9c37db2013-06-21 18:30:24 -07001194struct of_meter_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001195 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001196 uint8_t type == 29;
Rich Lanea06d0c32013-03-25 08:52:03 -07001197 uint16_t length;
1198 uint32_t xid;
1199 uint16_t command;
1200 uint16_t flags;
1201 uint32_t meter_id;
1202 list(of_meter_band_t) meters;
1203};
1204
Rich Lanee9c37db2013-06-21 18:30:24 -07001205struct of_error_msg : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001206 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001207 uint8_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001208 uint16_t length;
1209 uint32_t xid;
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001210 uint16_t err_type == ?;
1211};
1212
1213struct of_hello_failed_error_msg : of_error_msg {
1214 uint8_t version;
1215 uint8_t type == 1;
1216 uint16_t length;
1217 uint32_t xid;
1218 uint16_t err_type == 0;
1219 enum ofp_hello_failed_code code;
Rich Lanea06d0c32013-03-25 08:52:03 -07001220 of_octets_t data;
1221};
1222
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001223struct of_bad_request_error_msg : of_error_msg {
1224 uint8_t version;
1225 uint8_t type == 1;
1226 uint16_t length;
1227 uint32_t xid;
1228 uint16_t err_type == 1;
1229 enum ofp_bad_request_code code;
1230 of_octets_t data;
1231};
1232
1233struct of_bad_action_error_msg : of_error_msg {
1234 uint8_t version;
1235 uint8_t type == 1;
1236 uint16_t length;
1237 uint32_t xid;
1238 uint16_t err_type == 2;
1239 enum ofp_bad_action_code code;
1240 of_octets_t data;
1241};
1242
1243struct of_bad_instruction_error_msg : of_error_msg {
1244 uint8_t version;
1245 uint8_t type == 1;
1246 uint16_t length;
1247 uint32_t xid;
1248 uint16_t err_type == 3;
1249 enum ofp_bad_instruction_code code;
1250 of_octets_t data;
1251};
1252
1253struct of_bad_match_error_msg : of_error_msg {
1254 uint8_t version;
1255 uint8_t type == 1;
1256 uint16_t length;
1257 uint32_t xid;
1258 uint16_t err_type == 4;
1259 enum ofp_bad_match_code code;
1260 of_octets_t data;
1261};
1262
1263struct of_flow_mod_failed_error_msg : of_error_msg {
1264 uint8_t version;
1265 uint8_t type == 1;
1266 uint16_t length;
1267 uint32_t xid;
1268 uint16_t err_type == 5;
1269 enum ofp_flow_mod_failed_code code;
1270 of_octets_t data;
1271};
1272
1273struct of_group_mod_failed_error_msg : of_error_msg {
1274 uint8_t version;
1275 uint8_t type == 1;
1276 uint16_t length;
1277 uint32_t xid;
1278 uint16_t err_type == 6;
1279 enum ofp_group_mod_failed_code code;
1280 of_octets_t data;
1281};
1282
1283struct of_port_mod_failed_error_msg : of_error_msg {
1284 uint8_t version;
1285 uint8_t type == 1;
1286 uint16_t length;
1287 uint32_t xid;
1288 uint16_t err_type == 7;
1289 enum ofp_port_mod_failed_code code;
1290 of_octets_t data;
1291};
1292
1293struct of_table_mod_failed_error_msg : of_error_msg {
1294 uint8_t version;
1295 uint8_t type == 1;
1296 uint16_t length;
1297 uint32_t xid;
1298 uint16_t err_type == 8;
1299 enum ofp_table_mod_failed_code code;
1300 of_octets_t data;
1301};
1302
1303struct of_queue_op_failed_error_msg : of_error_msg {
1304 uint8_t version;
1305 uint8_t type == 1;
1306 uint16_t length;
1307 uint32_t xid;
1308 uint16_t err_type == 9;
1309 enum ofp_queue_op_failed_code code;
1310 of_octets_t data;
1311};
1312
1313struct of_switch_config_failed_error_msg : of_error_msg {
1314 uint8_t version;
1315 uint8_t type == 1;
1316 uint16_t length;
1317 uint32_t xid;
1318 uint16_t err_type == 10;
1319 enum ofp_switch_config_failed_code code;
1320 of_octets_t data;
1321};
1322
1323struct of_role_request_failed_error_msg : of_error_msg {
1324 uint8_t version;
1325 uint8_t type == 1;
1326 uint16_t length;
1327 uint32_t xid;
1328 uint16_t err_type == 11;
1329 enum ofp_role_request_failed_code code;
1330 of_octets_t data;
1331};
1332
1333struct of_meter_mod_failed_error_msg : of_error_msg {
1334 uint8_t version;
1335 uint8_t type == 1;
1336 uint16_t length;
1337 uint32_t xid;
1338 uint16_t err_type == 12;
1339 enum ofp_meter_mod_failed_code code;
1340 of_octets_t data;
1341};
1342
1343struct of_table_features_failed_error_msg : of_error_msg {
1344 uint8_t version;
1345 uint8_t type == 1;
1346 uint16_t length;
1347 uint32_t xid;
1348 uint16_t err_type == 13;
1349 enum ofp_table_features_failed_code code;
1350 of_octets_t data;
1351};
1352
Andreas Wundsamcc8cd662013-11-15 13:52:06 -08001353struct of_experimenter_error_msg : of_error_msg {
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001354 uint8_t version;
1355 uint8_t type == 1;
1356 uint16_t length;
1357 uint32_t xid;
1358 uint16_t err_type == 0xffff;
1359 uint16_t subtype;
1360 uint32_t experimenter;
1361 of_octets_t data;
1362};
Rich Lanea06d0c32013-03-25 08:52:03 -07001363
1364// STATS ENTRIES: flow, table, port, queue, group stats, group desc stats
1365
Rich Lane68ae4d72013-05-09 10:55:19 -07001366struct of_flow_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001367 uint16_t length;
1368 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001369 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001370 uint32_t duration_sec;
1371 uint32_t duration_nsec;
1372 uint16_t priority;
1373 uint16_t idle_timeout;
1374 uint16_t hard_timeout;
Rich Lane1a47c1c2013-08-28 15:27:00 -07001375 uint16_t flags;
1376 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001377 uint64_t cookie;
1378 uint64_t packet_count;
1379 uint64_t byte_count;
1380 of_match_t match;
1381 list(of_instruction_t) instructions;
1382};
1383
1384
Rich Lane68ae4d72013-05-09 10:55:19 -07001385struct of_table_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001386 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001387 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001388 uint32_t active_count;
1389 uint64_t lookup_count;
1390 uint64_t matched_count;
1391};
1392
Rich Lane68ae4d72013-05-09 10:55:19 -07001393struct of_port_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001394 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001395 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001396 uint64_t rx_packets;
1397 uint64_t tx_packets;
1398 uint64_t rx_bytes;
1399 uint64_t tx_bytes;
1400 uint64_t rx_dropped;
1401 uint64_t tx_dropped;
1402 uint64_t rx_errors;
1403 uint64_t tx_errors;
1404 uint64_t rx_frame_err;
1405 uint64_t rx_over_err;
1406 uint64_t rx_crc_err;
1407 uint64_t collisions;
1408 uint32_t duration_sec;
1409 uint32_t duration_nsec;
1410};
1411
Rich Lane68ae4d72013-05-09 10:55:19 -07001412struct of_queue_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001413 of_port_no_t port_no;
1414 uint32_t queue_id;
1415 uint64_t tx_bytes;
1416 uint64_t tx_packets;
1417 uint64_t tx_errors;
1418 uint32_t duration_sec;
1419 uint32_t duration_nsec;
1420};
1421
Rich Lane68ae4d72013-05-09 10:55:19 -07001422struct of_bucket_counter {
Rich Lanea06d0c32013-03-25 08:52:03 -07001423 uint64_t packet_count;
1424 uint64_t byte_count;
1425};
1426
Rich Lane68ae4d72013-05-09 10:55:19 -07001427struct of_group_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001428 uint16_t length;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001429 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001430 uint32_t group_id;
1431 uint32_t ref_count;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001432 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001433 uint64_t packet_count;
1434 uint64_t byte_count;
1435 uint32_t duration_sec;
1436 uint32_t duration_nsec;
1437 list(of_bucket_counter_t) bucket_stats;
1438};
1439
Rich Lane68ae4d72013-05-09 10:55:19 -07001440struct of_group_desc_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001441 uint16_t length;
Andreas Wundsam84603f02013-11-18 18:45:30 -08001442 enum ofp_group_type group_type;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001443 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001444 uint32_t group_id;
1445 list(of_bucket_t) buckets;
1446};
1447
1448// STATS:
1449// Desc, flow, agg, table, port, queue, group, group_desc, group_feat, experi
1450
Rich Lanee9c37db2013-06-21 18:30:24 -07001451struct of_stats_request : of_header {
1452 uint8_t version;
1453 uint8_t type == 18;
1454 uint16_t length;
1455 uint32_t xid;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001456 uint16_t stats_type == ?;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001457 enum ofp_stats_request_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -07001458 pad(4);
1459};
1460
1461struct of_stats_reply : of_header {
1462 uint8_t version;
1463 uint8_t type == 19;
1464 uint16_t length;
1465 uint32_t xid;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001466 uint16_t stats_type == ?;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001467 enum ofp_stats_reply_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -07001468 pad(4);
1469};
1470
1471struct of_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001472 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001473 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001474 uint16_t length;
1475 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001476 uint16_t stats_type == 0;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001477 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001478 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001479};
1480
Rich Lanee9c37db2013-06-21 18:30:24 -07001481struct of_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001482 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001483 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001484 uint16_t length;
1485 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001486 uint16_t stats_type == 0;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001487 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001488 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001489 of_desc_str_t mfr_desc;
1490 of_desc_str_t hw_desc;
1491 of_desc_str_t sw_desc;
1492 of_serial_num_t serial_num;
1493 of_desc_str_t dp_desc;
1494};
1495
Rich Lanee9c37db2013-06-21 18:30:24 -07001496struct of_flow_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001497 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001498 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001499 uint16_t length;
1500 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001501 uint16_t stats_type == 1;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001502 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001503 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001504 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001505 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001506 of_port_no_t out_port;
1507 uint32_t out_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001508 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001509 uint64_t cookie;
1510 uint64_t cookie_mask;
1511 of_match_t match;
1512};
1513
Rich Lanee9c37db2013-06-21 18:30:24 -07001514struct of_flow_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001515 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001516 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001517 uint16_t length;
1518 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001519 uint16_t stats_type == 1;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001520 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001521 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001522 list(of_flow_stats_entry_t) entries;
1523};
1524
Rich Lanee9c37db2013-06-21 18:30:24 -07001525struct of_aggregate_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001526 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001527 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001528 uint16_t length;
1529 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001530 uint16_t stats_type == 2;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001531 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001532 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001533 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001534 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001535 of_port_no_t out_port;
1536 uint32_t out_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001537 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001538 uint64_t cookie;
1539 uint64_t cookie_mask;
1540 of_match_t match;
1541};
1542
Rich Lanee9c37db2013-06-21 18:30:24 -07001543struct of_aggregate_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001544 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001545 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001546 uint16_t length;
1547 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001548 uint16_t stats_type == 2;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001549 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001550 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001551 uint64_t packet_count;
1552 uint64_t byte_count;
1553 uint32_t flow_count;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001554 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001555};
1556
Rich Lanee9c37db2013-06-21 18:30:24 -07001557struct of_table_stats_request : of_stats_request {
Rich Lane8bfdafc2013-05-02 14:54:42 -07001558 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001559 uint8_t type == 18;
Rich Lane8bfdafc2013-05-02 14:54:42 -07001560 uint16_t length;
1561 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001562 uint16_t stats_type == 3;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001563 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001564 pad(4);
Rich Lane8bfdafc2013-05-02 14:54:42 -07001565};
1566
Rich Lanee9c37db2013-06-21 18:30:24 -07001567struct of_table_stats_reply : of_stats_reply {
Rich Lane8bfdafc2013-05-02 14:54:42 -07001568 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001569 uint8_t type == 19;
Rich Lane8bfdafc2013-05-02 14:54:42 -07001570 uint16_t length;
1571 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001572 uint16_t stats_type == 3;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001573 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001574 pad(4);
Rich Lane8bfdafc2013-05-02 14:54:42 -07001575 list(of_table_stats_entry_t) entries;
1576};
1577
Rich Lane6d434332013-11-13 09:23:10 -08001578struct of_experimenter_stats_request : of_stats_request {
1579 uint8_t version;
1580 uint8_t type == 18;
1581 uint16_t length;
1582 uint32_t xid;
1583 uint16_t stats_type == 0xffff;
1584 enum ofp_stats_request_flags flags;
1585 pad(4);
1586 uint32_t experimenter == ?;
1587 uint32_t subtype;
1588};
1589
1590struct of_experimenter_stats_reply : of_stats_reply {
1591 uint8_t version;
1592 uint8_t type == 19;
1593 uint16_t length;
1594 uint32_t xid;
1595 uint16_t stats_type == 0xffff;
1596 enum ofp_stats_reply_flags flags;
1597 pad(4);
1598 uint32_t experimenter == ?;
1599 uint32_t subtype;
1600};
1601
Rich Lanea06d0c32013-03-25 08:52:03 -07001602// FIXME: These are padded to 8 byte align beyond the length indicated
1603
Rich Lane68ae4d72013-05-09 10:55:19 -07001604struct of_table_feature_prop {
Rich Lanea1b8f442013-10-01 22:05:22 -07001605 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001606 uint16_t length;
1607};
1608
Rich Lanee9c37db2013-06-21 18:30:24 -07001609struct of_table_feature_prop_instructions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001610 uint16_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -07001611 uint16_t length;
1612 // FIXME Check if instruction_t is right for ids here
1613 list(of_instruction_t) instruction_ids;
1614};
1615
Rich Lanee9c37db2013-06-21 18:30:24 -07001616struct of_table_feature_prop_instructions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001617 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001618 uint16_t length;
1619 list(of_instruction_t) instruction_ids;
1620};
1621
Rich Lanee9c37db2013-06-21 18:30:24 -07001622struct of_table_feature_prop_next_tables : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001623 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07001624 uint16_t length;
1625 list(of_uint8_t) next_table_ids;
1626};
1627
Rich Lanee9c37db2013-06-21 18:30:24 -07001628struct of_table_feature_prop_next_tables_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001629 uint16_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -07001630 uint16_t length;
1631 list(of_uint8_t) next_table_ids;
1632};
1633
Rich Lanee9c37db2013-06-21 18:30:24 -07001634struct of_table_feature_prop_write_actions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001635 uint16_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -07001636 uint16_t length;
1637 list(of_action_id_t) action_ids;
1638};
1639
Rich Lanee9c37db2013-06-21 18:30:24 -07001640struct of_table_feature_prop_write_actions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001641 uint16_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -07001642 uint16_t length;
1643 list(of_action_id_t) action_ids;
1644};
1645
Rich Lanee9c37db2013-06-21 18:30:24 -07001646struct of_table_feature_prop_apply_actions : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001647 uint16_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -07001648 uint16_t length;
1649 list(of_action_id_t) action_ids;
1650};
1651
Rich Lanee9c37db2013-06-21 18:30:24 -07001652struct of_table_feature_prop_apply_actions_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001653 uint16_t type == 7;
Rich Lanea06d0c32013-03-25 08:52:03 -07001654 uint16_t length;
1655 list(of_action_id_t) action_ids;
1656};
1657
Rich Lanee9c37db2013-06-21 18:30:24 -07001658struct of_table_feature_prop_match : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001659 uint16_t type == 8;
Rich Lanea06d0c32013-03-25 08:52:03 -07001660 uint16_t length;
1661 list(of_uint32_t) oxm_ids;
1662};
1663
Rich Lanee9c37db2013-06-21 18:30:24 -07001664struct of_table_feature_prop_wildcards : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001665 uint16_t type == 10;
Rich Lanea06d0c32013-03-25 08:52:03 -07001666 uint16_t length;
1667 list(of_uint32_t) oxm_ids;
1668};
1669
Rich Lanee9c37db2013-06-21 18:30:24 -07001670struct of_table_feature_prop_write_setfield : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001671 uint16_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -07001672 uint16_t length;
1673 list(of_uint32_t) oxm_ids;
1674};
1675
Rich Lanee9c37db2013-06-21 18:30:24 -07001676struct of_table_feature_prop_write_setfield_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001677 uint16_t type == 13;
Rich Lanea06d0c32013-03-25 08:52:03 -07001678 uint16_t length;
1679 list(of_uint32_t) oxm_ids;
1680};
1681
Rich Lanee9c37db2013-06-21 18:30:24 -07001682struct of_table_feature_prop_apply_setfield : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001683 uint16_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -07001684 uint16_t length;
1685 list(of_uint32_t) oxm_ids;
1686};
1687
Rich Lanee9c37db2013-06-21 18:30:24 -07001688struct of_table_feature_prop_apply_setfield_miss : of_table_feature_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001689 uint16_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -07001690 uint16_t length;
1691 list(of_uint32_t) oxm_ids;
1692};
1693
Rich Lanee9c37db2013-06-21 18:30:24 -07001694struct of_table_feature_prop_experimenter : of_table_feature_prop {
Jonathan Stoutacb3e322014-02-13 13:23:16 -05001695 uint16_t type == 65534;
Rich Lanea06d0c32013-03-25 08:52:03 -07001696 uint16_t length;
1697 uint32_t experimenter;
1698 uint32_t subtype;
1699 of_octets_t experimenter_data;
1700};
1701
1702// Not yet supported
Rich Lanee9c37db2013-06-21 18:30:24 -07001703// struct of_table_feature_prop_experimenter_miss : of_table_feature_prop {
Jonathan Stoutacb3e322014-02-13 13:23:16 -05001704// uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07001705// uint16_t length;
1706// uint32_t experimenter;
1707// uint32_t subtype;
1708// of_octets_t experimenter_data;
1709// };
1710
Rich Lane68ae4d72013-05-09 10:55:19 -07001711struct of_table_features {
Rich Lanea06d0c32013-03-25 08:52:03 -07001712 uint16_t length;
1713 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001714 pad(5);
Rich Lanea06d0c32013-03-25 08:52:03 -07001715 of_table_name_t name;
1716 uint64_t metadata_match;
1717 uint64_t metadata_write;
1718 uint32_t config;
1719 uint32_t max_entries;
1720 list(of_table_feature_prop_t) properties;
1721};
1722
Rich Lane68ae4d72013-05-09 10:55:19 -07001723struct of_meter_features {
Rich Lanea06d0c32013-03-25 08:52:03 -07001724 uint32_t max_meter;
1725 uint32_t band_types;
1726 uint32_t capabilities;
1727 uint8_t max_bands;
1728 uint8_t max_color;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001729 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001730};
1731
Rich Lanee9c37db2013-06-21 18:30:24 -07001732struct of_port_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001733 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001734 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001735 uint16_t length;
1736 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001737 uint16_t stats_type == 4;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001738 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001739 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001740 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001741 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001742};
1743
Rich Lanee9c37db2013-06-21 18:30:24 -07001744struct of_port_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001745 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001746 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001747 uint16_t length;
1748 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001749 uint16_t stats_type == 4;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001750 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001751 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001752 list(of_port_stats_entry_t) entries;
1753};
1754
Rich Lanee9c37db2013-06-21 18:30:24 -07001755struct of_queue_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001756 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001757 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001758 uint16_t length;
1759 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001760 uint16_t stats_type == 5;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001761 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001762 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001763 of_port_no_t port_no;
1764 uint32_t queue_id;
1765};
1766
Rich Lanee9c37db2013-06-21 18:30:24 -07001767struct of_queue_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001768 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001769 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001770 uint16_t length;
1771 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001772 uint16_t stats_type == 5;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001773 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001774 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001775 list(of_queue_stats_entry_t) entries;
1776};
1777
Rich Lanee9c37db2013-06-21 18:30:24 -07001778struct of_group_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001779 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001780 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001781 uint16_t length;
1782 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001783 uint16_t stats_type == 6;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001784 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001785 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001786 uint32_t group_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001787 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001788};
1789
Rich Lanee9c37db2013-06-21 18:30:24 -07001790struct of_group_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001791 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001792 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001793 uint16_t length;
1794 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001795 uint16_t stats_type == 6;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001796 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001797 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001798 list(of_group_stats_entry_t) entries;
1799};
1800
Rich Lanee9c37db2013-06-21 18:30:24 -07001801struct of_group_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001802 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001803 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001804 uint16_t length;
1805 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001806 uint16_t stats_type == 7;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001807 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001808 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001809};
1810
Rich Lanee9c37db2013-06-21 18:30:24 -07001811struct of_group_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001812 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001813 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001814 uint16_t length;
1815 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001816 uint16_t stats_type == 7;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001817 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001818 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001819 list(of_group_desc_stats_entry_t) entries;
1820};
1821
Rich Lanee9c37db2013-06-21 18:30:24 -07001822struct of_group_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001823 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001824 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001825 uint16_t length;
1826 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001827 uint16_t stats_type == 8;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001828 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001829 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001830};
1831
Rich Lanee9c37db2013-06-21 18:30:24 -07001832struct of_group_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001833 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001834 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001835 uint16_t length;
1836 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001837 uint16_t stats_type == 8;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001838 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001839 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001840 uint32_t types;
1841 uint32_t capabilities;
1842 uint32_t max_groups_all;
1843 uint32_t max_groups_select;
1844 uint32_t max_groups_indirect;
1845 uint32_t max_groups_ff;
1846 uint32_t actions_all;
1847 uint32_t actions_select;
1848 uint32_t actions_indirect;
1849 uint32_t actions_ff;
1850};
1851
Rich Lanee9c37db2013-06-21 18:30:24 -07001852struct of_meter_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001853 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001854 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001855 uint16_t length;
1856 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001857 uint16_t stats_type == 9;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001858 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001859 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001860 uint32_t meter_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001861 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001862};
1863
Rich Lanee9c37db2013-06-21 18:30:24 -07001864struct of_meter_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001865 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001866 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001867 uint16_t length;
1868 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001869 uint16_t stats_type == 9;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001870 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001871 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001872 list(of_meter_stats_t) entries;
1873};
1874
Rich Lanee9c37db2013-06-21 18:30:24 -07001875struct of_meter_config_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001876 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001877 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001878 uint16_t length;
1879 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001880 uint16_t stats_type == 10;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001881 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001882 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001883 uint32_t meter_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001884 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001885};
1886
Rich Lanee9c37db2013-06-21 18:30:24 -07001887struct of_meter_config_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001888 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001889 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001890 uint16_t length;
1891 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001892 uint16_t stats_type == 10;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001893 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001894 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001895 list(of_meter_band_t) entries;
1896};
1897
1898// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001899struct of_meter_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001900 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001901 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001902 uint16_t length;
1903 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001904 uint16_t stats_type == 11;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001905 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001906 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001907};
1908
1909// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001910struct of_meter_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001911 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001912 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001913 uint16_t length;
1914 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001915 uint16_t stats_type == 11;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001916 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001917 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001918 of_meter_features_t features;
1919};
1920
1921// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001922struct of_table_features_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001923 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001924 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001925 uint16_t length;
1926 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001927 uint16_t stats_type == 12;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001928 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001929 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001930 list(of_table_features_t) entries;
1931};
1932
1933// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001934struct of_table_features_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001935 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001936 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001937 uint16_t length;
1938 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001939 uint16_t stats_type == 12;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001940 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001941 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001942 list(of_table_features_t) entries;
1943};
1944
1945// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001946struct of_port_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001947 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001948 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001949 uint16_t length;
1950 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001951 uint16_t stats_type == 13;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001952 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001953 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001954};
1955
1956// FIXME stats added to get things working
Rich Lanee9c37db2013-06-21 18:30:24 -07001957struct of_port_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001958 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001959 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001960 uint16_t length;
1961 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001962 uint16_t stats_type == 13;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001963 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001964 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001965 list(of_port_desc_t) entries;
1966};
1967
Rich Lane68ae4d72013-05-09 10:55:19 -07001968struct of_meter_band_stats {
Rich Lanea06d0c32013-03-25 08:52:03 -07001969 uint64_t packet_band_count;
1970 uint64_t byte_band_count;
1971};
1972
Rich Lane68ae4d72013-05-09 10:55:19 -07001973struct of_meter_stats {
Rich Lanea06d0c32013-03-25 08:52:03 -07001974 uint32_t meter_id;
1975 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001976 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001977 uint32_t flow_count;
1978 uint64_t packet_in_count;
1979 uint64_t byte_in_count;
1980 uint32_t duration_sec;
1981 uint32_t duration_nsec;
1982 list(of_meter_band_stats_t) band_stats;
1983};
1984
Rich Lane68ae4d72013-05-09 10:55:19 -07001985struct of_meter_config {
Rich Lanea06d0c32013-03-25 08:52:03 -07001986 uint16_t length;
1987 uint16_t flags;
1988 uint32_t meter_id;
1989 list(of_meter_band_t) entries;
1990};
1991
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001992struct of_experimenter_stats_header {
Rich Laneb25d07c2013-08-22 17:22:43 -07001993 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001994 uint32_t subtype;
1995};
1996
1997// END OF STATS OBJECTS
1998
Rich Lane68ae4d72013-05-09 10:55:19 -07001999struct of_queue_prop {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07002000 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07002001 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002002 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002003};
2004
Rich Lanee9c37db2013-06-21 18:30:24 -07002005struct of_queue_prop_min_rate : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07002006 uint16_t type == 1;
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_max_rate : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07002014 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -07002015 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002016 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002017 uint16_t rate;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002018 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07002019};
2020
Rich Lanee9c37db2013-06-21 18:30:24 -07002021struct of_queue_prop_experimenter : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07002022 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -07002023 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002024 pad(4);
Rich Laneb25d07c2013-08-22 17:22:43 -07002025 uint32_t experimenter == ?;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002026 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002027 of_octets_t data;
2028};
2029
Rich Lane68ae4d72013-05-09 10:55:19 -07002030struct of_packet_queue {
Rich Lanea06d0c32013-03-25 08:52:03 -07002031 uint32_t queue_id;
2032 of_port_no_t port;
2033 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002034 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07002035 list(of_queue_prop_t) properties;
2036};
2037
Rich Lanee9c37db2013-06-21 18:30:24 -07002038struct of_queue_get_config_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002039 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002040 uint8_t type == 22;
Rich Lanea06d0c32013-03-25 08:52:03 -07002041 uint16_t length;
2042 uint32_t xid;
2043 of_port_no_t port;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002044 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002045};
2046
Rich Lanee9c37db2013-06-21 18:30:24 -07002047struct of_queue_get_config_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002048 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002049 uint8_t type == 23;
Rich Lanea06d0c32013-03-25 08:52:03 -07002050 uint16_t length;
2051 uint32_t xid;
2052 of_port_no_t port;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002053 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002054 list(of_packet_queue_t) queues;
2055};
2056
Rich Lanee9c37db2013-06-21 18:30:24 -07002057struct of_role_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002058 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002059 uint8_t type == 24;
Rich Lanea06d0c32013-03-25 08:52:03 -07002060 uint16_t length;
2061 uint32_t xid;
Andreas Wundsam4f796b72013-10-18 17:33:23 -07002062 enum ofp_controller_role role;
Rich Lanee2af4ee2013-05-09 11:04:06 -07002063 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07002064 uint64_t generation_id;
2065};
2066
Rich Lanee9c37db2013-06-21 18:30:24 -07002067struct of_role_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002068 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002069 uint8_t type == 25;
Rich Lanea06d0c32013-03-25 08:52:03 -07002070 uint16_t length;
2071 uint32_t xid;
Andreas Wundsam4f796b72013-10-18 17:33:23 -07002072 enum ofp_controller_role role;
2073 pad(4);
2074 uint64_t generation_id;
Rich Lanea06d0c32013-03-25 08:52:03 -07002075};
2076
2077////////////////////////////////////////////////////////////////
2078// FIXME understand async; where do bitmasks live?
2079// Determine bitmap type for masks below.
2080// DOCUMENT masks where uint32_t[0] is interest for equal/master
2081// while uint32_t[1] is interest for slave
2082////////////////////////////////////////////////////////////////
2083
Rich Lanee9c37db2013-06-21 18:30:24 -07002084struct of_async_get_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002085 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002086 uint8_t type == 26;
Rich Lanea06d0c32013-03-25 08:52:03 -07002087 uint16_t length;
2088 uint32_t xid;
2089 uint32_t packet_in_mask_equal_master;
2090 uint32_t packet_in_mask_slave;
2091 uint32_t port_status_mask_equal_master;
2092 uint32_t port_status_mask_slave;
2093 uint32_t flow_removed_mask_equal_master;
2094 uint32_t flow_removed_mask_slave;
2095};
2096
Rich Lanee9c37db2013-06-21 18:30:24 -07002097struct of_async_get_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002098 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002099 uint8_t type == 27;
Rich Lanea06d0c32013-03-25 08:52:03 -07002100 uint16_t length;
2101 uint32_t xid;
2102 uint32_t packet_in_mask_equal_master;
2103 uint32_t packet_in_mask_slave;
2104 uint32_t port_status_mask_equal_master;
2105 uint32_t port_status_mask_slave;
2106 uint32_t flow_removed_mask_equal_master;
2107 uint32_t flow_removed_mask_slave;
2108};
2109
Rich Lanee9c37db2013-06-21 18:30:24 -07002110struct of_async_set : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07002111 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07002112 uint8_t type == 28;
Rich Lanea06d0c32013-03-25 08:52:03 -07002113 uint16_t length;
2114 uint32_t xid;
2115 uint32_t packet_in_mask_equal_master;
2116 uint32_t packet_in_mask_slave;
2117 uint32_t port_status_mask_equal_master;
2118 uint32_t port_status_mask_slave;
2119 uint32_t flow_removed_mask_equal_master;
2120 uint32_t flow_removed_mask_slave;
2121};