blob: 6765fe724bacd17ca2e053a6dd9d5a626c6fc211 [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 2
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 OFPFW_ICMP_TYPE = 0x40,
46 OFPFW_ICMP_CODE = 0x80,
47
48 OFP_DL_TYPE_ETH2_CUTOFF = 0x600,
49 OFP_DL_TYPE_NOT_ETH_TYPE = 0x5ff,
50
51 OFP_VLAN_NONE = 0,
52
53 OFPMT_STANDARD_LENGTH = 88,
54
55 OFP_FLOW_PERMANENT = 0,
56
57 OFP_DEFAULT_PRIORITY = 0x8000,
58
59 DESC_STR_LEN = 256,
60 SERIAL_NUM_LEN = 32,
61
62 OFPQ_ALL = 0xffffffff,
63 OFPQ_MIN_RATE_UNCFG = 0xffff,
64};
65
Andreas Wundsam4ee51462013-07-30 11:00:37 -070066enum ofp_port(wire_type=uint32_t) {
Rich Lane5d33a622013-04-08 17:33:11 -070067 OFPP_MAX = 0xffffff00,
68 OFPP_IN_PORT = 0xfffffff8,
69 OFPP_TABLE = 0xfffffff9,
70 OFPP_NORMAL = 0xfffffffa,
71 OFPP_FLOOD = 0xfffffffb,
72 OFPP_ALL = 0xfffffffc,
73 OFPP_CONTROLLER = 0xfffffffd,
74 OFPP_LOCAL = 0xfffffffe,
Rich Lane5d33a622013-04-08 17:33:11 -070075 OFPP_ANY = 0xffffffff,
76};
77
Andreas Wundsam4ee51462013-07-30 11:00:37 -070078enum ofp_type(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -070079 OFPT_HELLO = 0,
80 OFPT_ERROR = 1,
81 OFPT_ECHO_REQUEST = 2,
82 OFPT_ECHO_REPLY = 3,
83 OFPT_EXPERIMENTER = 4,
84 OFPT_FEATURES_REQUEST = 5,
85 OFPT_FEATURES_REPLY = 6,
86 OFPT_GET_CONFIG_REQUEST = 7,
87 OFPT_GET_CONFIG_REPLY = 8,
88 OFPT_SET_CONFIG = 9,
89 OFPT_PACKET_IN = 10,
90 OFPT_FLOW_REMOVED = 11,
91 OFPT_PORT_STATUS = 12,
92 OFPT_PACKET_OUT = 13,
93 OFPT_FLOW_MOD = 14,
94 OFPT_GROUP_MOD = 15,
95 OFPT_PORT_MOD = 16,
96 OFPT_TABLE_MOD = 17,
97 OFPT_STATS_REQUEST = 18,
98 OFPT_STATS_REPLY = 19,
99 OFPT_BARRIER_REQUEST = 20,
100 OFPT_BARRIER_REPLY = 21,
101 OFPT_QUEUE_GET_CONFIG_REQUEST = 22,
102 OFPT_QUEUE_GET_CONFIG_REPLY = 23,
103};
104
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700105enum ofp_config_flags(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700106 OFPC_FRAG_NORMAL = 0,
107 OFPC_FRAG_DROP = 1,
108 OFPC_FRAG_REASM = 2,
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700109 OFPC_FRAG_MASK(virtual=True) = 3,
Rich Lane5d33a622013-04-08 17:33:11 -0700110 OFPC_INVALID_TTL_TO_CONTROLLER = 4,
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_TABLE_MISS_CONTROLLER = 0,
115 OFPTC_TABLE_MISS_CONTINUE = 1,
116 OFPTC_TABLE_MISS_DROP = 2,
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700117 OFPTC_TABLE_MISS_MASK(virtual=True) = 3,
Rich Lane5d33a622013-04-08 17:33:11 -0700118};
119
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700120enum ofp_capabilities(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700121 OFPC_FLOW_STATS = 0x1,
122 OFPC_TABLE_STATS = 0x2,
123 OFPC_PORT_STATS = 0x4,
124 OFPC_GROUP_STATS = 0x8,
125 OFPC_IP_REASM = 0x20,
126 OFPC_QUEUE_STATS = 0x40,
127 OFPC_ARP_MATCH_IP = 0x80,
128};
129
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700130enum ofp_port_config(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700131 OFPPC_PORT_DOWN = 0x1,
132 OFPPC_NO_RECV = 0x4,
133 OFPPC_NO_FWD = 0x20,
134 OFPPC_NO_PACKET_IN = 0x40,
Rob Vaterlaus0a8ec142013-10-10 13:27:14 -0700135 OFPPC_BSN_MIRROR_DEST = 0x80000000,
Rich Lane5d33a622013-04-08 17:33:11 -0700136};
137
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700138enum ofp_port_state(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700139 OFPPS_LINK_DOWN = 0x1,
140 OFPPS_BLOCKED = 0x2,
141 OFPPS_LIVE = 0x4,
142};
143
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700144enum ofp_port_features(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700145 OFPPF_10MB_HD = 0x1,
146 OFPPF_10MB_FD = 0x2,
147 OFPPF_100MB_HD = 0x4,
148 OFPPF_100MB_FD = 0x8,
149 OFPPF_1GB_HD = 0x10,
150 OFPPF_1GB_FD = 0x20,
151 OFPPF_10GB_FD = 0x40,
152 OFPPF_40GB_FD = 0x80,
153 OFPPF_100GB_FD = 0x100,
154 OFPPF_1TB_FD = 0x200,
155 OFPPF_OTHER = 0x400,
156 OFPPF_COPPER = 0x800,
157 OFPPF_FIBER = 0x1000,
158 OFPPF_AUTONEG = 0x2000,
159 OFPPF_PAUSE = 0x4000,
160 OFPPF_PAUSE_ASYM = 0x8000,
161};
162
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700163enum ofp_port_reason(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700164 OFPPR_ADD = 0,
165 OFPPR_DELETE = 1,
166 OFPPR_MODIFY = 2,
167};
168
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700169enum ofp_packet_in_reason(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700170 OFPR_NO_MATCH = 0,
171 OFPR_ACTION = 1,
172};
173
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700174enum ofp_action_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700175 OFPAT_OUTPUT = 0,
176 OFPAT_SET_VLAN_VID = 1,
177 OFPAT_SET_VLAN_PCP = 2,
178 OFPAT_SET_DL_SRC = 3,
179 OFPAT_SET_DL_DST = 4,
180 OFPAT_SET_NW_SRC = 5,
181 OFPAT_SET_NW_DST = 6,
182 OFPAT_SET_NW_TOS = 7,
183 OFPAT_SET_NW_ECN = 8,
184 OFPAT_SET_TP_SRC = 9,
185 OFPAT_SET_TP_DST = 10,
186 OFPAT_COPY_TTL_OUT = 11,
187 OFPAT_COPY_TTL_IN = 12,
188 OFPAT_SET_MPLS_LABEL = 13,
189 OFPAT_SET_MPLS_TC = 14,
190 OFPAT_SET_MPLS_TTL = 15,
191 OFPAT_DEC_MPLS_TTL = 16,
192 OFPAT_PUSH_VLAN = 17,
193 OFPAT_POP_VLAN = 18,
194 OFPAT_PUSH_MPLS = 19,
195 OFPAT_POP_MPLS = 20,
196 OFPAT_SET_QUEUE = 21,
197 OFPAT_GROUP = 22,
198 OFPAT_SET_NW_TTL = 23,
199 OFPAT_DEC_NW_TTL = 24,
200 OFPAT_EXPERIMENTER = 0xffff,
201};
202
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700203enum ofp_flow_mod_command(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700204 OFPFC_ADD = 0,
205 OFPFC_MODIFY = 1,
206 OFPFC_MODIFY_STRICT = 2,
207 OFPFC_DELETE = 3,
208 OFPFC_DELETE_STRICT = 4,
209};
210
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700211enum ofp_group_mod_command(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700212 OFPGC_ADD = 0,
213 OFPGC_MODIFY = 1,
214 OFPGC_DELETE = 2,
215};
216
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700217enum ofp_flow_wildcards(wire_type=uint32_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700218 OFPFW_IN_PORT = 0x1,
219 OFPFW_DL_VLAN = 0x2,
220 OFPFW_DL_VLAN_PCP = 0x4,
221 OFPFW_DL_TYPE = 0x8,
222 OFPFW_NW_TOS = 0x10,
223 OFPFW_NW_PROTO = 0x20,
224 OFPFW_TP_SRC = 0x40,
225 OFPFW_TP_DST = 0x80,
226 OFPFW_MPLS_LABEL = 0x100,
227 OFPFW_MPLS_TC = 0x200,
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700228 OFPFW_ALL(virtual=True) = 0x3ff,
Rich Lane5d33a622013-04-08 17:33:11 -0700229};
230
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700231enum ofp_vlan_id(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700232 OFPVID_ANY = 0xfffe,
233 OFPVID_NONE = 0xffff,
234};
235
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700236enum ofp_match_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700237 OFPMT_STANDARD = 0,
238};
239
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700240enum ofp_instruction_type(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700241 OFPIT_GOTO_TABLE = 0x1,
242 OFPIT_WRITE_METADATA = 0x2,
243 OFPIT_WRITE_ACTIONS = 0x3,
244 OFPIT_APPLY_ACTIONS = 0x4,
245 OFPIT_CLEAR_ACTIONS = 0x5,
246 OFPIT_EXPERIMENTER = 0xffff,
247};
248
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700249enum ofp_flow_mod_flags(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700250 OFPFF_SEND_FLOW_REM = 0x1,
251 OFPFF_CHECK_OVERLAP = 0x2,
252};
253
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700254enum ofp_group(wire_type=uint32_t, complete=False) {
Rich Lane5d33a622013-04-08 17:33:11 -0700255 OFPG_MAX = 0xffffff00,
256 OFPG_ALL = 0xfffffffc,
257 OFPG_ANY = 0xffffffff,
258};
259
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700260enum ofp_group_type(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700261 OFPGT_ALL = 0,
262 OFPGT_SELECT = 1,
263 OFPGT_INDIRECT = 2,
264 OFPGT_FF = 3,
265};
266
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700267enum ofp_flow_removed_reason(wire_type=uint8_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700268 OFPRR_IDLE_TIMEOUT = 0,
269 OFPRR_HARD_TIMEOUT = 1,
270 OFPRR_DELETE = 2,
271 OFPRR_GROUP_DELETE = 3,
272};
273
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700274enum ofp_error_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700275 OFPET_HELLO_FAILED = 0,
276 OFPET_BAD_REQUEST = 1,
277 OFPET_BAD_ACTION = 2,
278 OFPET_BAD_INSTRUCTION = 3,
279 OFPET_BAD_MATCH = 4,
280 OFPET_FLOW_MOD_FAILED = 5,
281 OFPET_GROUP_MOD_FAILED = 6,
282 OFPET_PORT_MOD_FAILED = 7,
283 OFPET_TABLE_MOD_FAILED = 8,
284 OFPET_QUEUE_OP_FAILED = 9,
285 OFPET_SWITCH_CONFIG_FAILED = 10,
286};
287
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700288enum ofp_hello_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700289 OFPHFC_INCOMPATIBLE = 0,
290 OFPHFC_EPERM = 1,
291};
292
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700293enum ofp_bad_request_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700294 OFPBRC_BAD_VERSION = 0,
295 OFPBRC_BAD_TYPE = 1,
296 OFPBRC_BAD_STAT = 2,
297 OFPBRC_BAD_EXPERIMENTER = 3,
298 OFPBRC_BAD_SUBTYPE = 4,
299 OFPBRC_EPERM = 5,
300 OFPBRC_BAD_LEN = 6,
301 OFPBRC_BUFFER_EMPTY = 7,
302 OFPBRC_BUFFER_UNKNOWN = 8,
303 OFPBRC_BAD_TABLE_ID = 9,
304};
305
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700306enum ofp_bad_action_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700307 OFPBAC_BAD_TYPE = 0,
308 OFPBAC_BAD_LEN = 1,
309 OFPBAC_BAD_EXPERIMENTER = 2,
310 OFPBAC_BAD_EXPERIMENTER_TYPE = 3,
311 OFPBAC_BAD_OUT_PORT = 4,
312 OFPBAC_BAD_ARGUMENT = 5,
313 OFPBAC_EPERM = 6,
314 OFPBAC_TOO_MANY = 7,
315 OFPBAC_BAD_QUEUE = 8,
316 OFPBAC_BAD_OUT_GROUP = 9,
317 OFPBAC_MATCH_INCONSISTENT = 10,
318 OFPBAC_UNSUPPORTED_ORDER = 11,
319 OFPBAC_BAD_TAG = 12,
320};
321
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700322enum ofp_bad_instruction_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700323 OFPBIC_UNKNOWN_INST = 0,
324 OFPBIC_UNSUP_INST = 1,
325 OFPBIC_BAD_TABLE_ID = 2,
326 OFPBIC_UNSUP_METADATA = 3,
327 OFPBIC_UNSUP_METADATA_MASK = 4,
328 OFPBIC_UNSUP_EXP_INST = 5,
329};
330
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700331enum ofp_bad_match_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700332 OFPBMC_BAD_TYPE = 0,
333 OFPBMC_BAD_LEN = 1,
334 OFPBMC_BAD_TAG = 2,
335 OFPBMC_BAD_DL_ADDR_MASK = 3,
336 OFPBMC_BAD_NW_ADDR_MASK = 4,
337 OFPBMC_BAD_WILDCARDS = 5,
338 OFPBMC_BAD_FIELD = 6,
339 OFPBMC_BAD_VALUE = 7,
340};
341
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700342enum ofp_flow_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700343 OFPFMFC_UNKNOWN = 0,
344 OFPFMFC_TABLE_FULL = 1,
345 OFPFMFC_BAD_TABLE_ID = 2,
346 OFPFMFC_OVERLAP = 3,
347 OFPFMFC_EPERM = 4,
348 OFPFMFC_BAD_TIMEOUT = 5,
349 OFPFMFC_BAD_COMMAND = 6,
350};
351
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700352enum ofp_group_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700353 OFPGMFC_GROUP_EXISTS = 0,
354 OFPGMFC_INVALID_GROUP = 1,
355 OFPGMFC_WEIGHT_UNSUPPORTED = 2,
356 OFPGMFC_OUT_OF_GROUPS = 3,
357 OFPGMFC_OUT_OF_BUCKETS = 4,
358 OFPGMFC_CHAINING_UNSUPPORTED = 5,
359 OFPGMFC_WATCH_UNSUPPORTED = 6,
360 OFPGMFC_LOOP = 7,
361 OFPGMFC_UNKNOWN_GROUP = 8,
362};
363
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700364enum ofp_port_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700365 OFPPMFC_BAD_PORT = 0,
366 OFPPMFC_BAD_HW_ADDR = 1,
367 OFPPMFC_BAD_CONFIG = 2,
368 OFPPMFC_BAD_ADVERTISE = 3,
369};
370
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700371enum ofp_table_mod_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700372 OFPTMFC_BAD_TABLE = 0,
373 OFPTMFC_BAD_CONFIG = 1,
374};
375
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700376enum ofp_queue_op_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700377 OFPQOFC_BAD_PORT = 0,
378 OFPQOFC_BAD_QUEUE = 1,
379 OFPQOFC_EPERM = 2,
380};
381
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700382enum ofp_switch_config_failed_code(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700383 OFPSCFC_BAD_FLAGS = 0,
384 OFPSCFC_BAD_LEN = 1,
385};
386
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700387enum ofp_stats_type(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700388 OFPST_DESC = 0,
389 OFPST_FLOW = 1,
390 OFPST_AGGREGATE = 2,
391 OFPST_TABLE = 3,
392 OFPST_PORT = 4,
393 OFPST_QUEUE = 5,
394 OFPST_GROUP = 6,
395 OFPST_GROUP_DESC = 7,
396 OFPST_EXPERIMENTER = 0xffff,
397};
398
Andreas Wundsamb47d7e82013-10-18 17:43:00 -0700399// none defined
400enum ofp_stats_request_flags(wire_type=uint16_t, bitmask=True) {
401};
402
403
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700404enum ofp_stats_reply_flags(wire_type=uint16_t, bitmask=True) {
Rich Lane5d33a622013-04-08 17:33:11 -0700405 OFPSF_REPLY_MORE = 0x1,
406};
407
Andreas Wundsam4ee51462013-07-30 11:00:37 -0700408enum ofp_queue_properties(wire_type=uint16_t) {
Rich Lane5d33a622013-04-08 17:33:11 -0700409 OFPQT_NONE = 0,
410 OFPQT_MIN_RATE = 1,
411};
412
Rich Lanee9c37db2013-06-21 18:30:24 -0700413/* XXX rename to of_message */
Rich Lane68ae4d72013-05-09 10:55:19 -0700414struct of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700415 uint8_t version;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700416 uint8_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700417 uint16_t length;
418 uint32_t xid;
419};
420
Rich Lanee9c37db2013-06-21 18:30:24 -0700421struct of_hello : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700422 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700423 uint8_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700424 uint16_t length;
425 uint32_t xid;
426};
427
Rich Lanee9c37db2013-06-21 18:30:24 -0700428struct of_echo_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700429 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700430 uint8_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700431 uint16_t length;
432 uint32_t xid;
433 of_octets_t data;
434};
435
Rich Lanee9c37db2013-06-21 18:30:24 -0700436struct of_echo_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700437 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700438 uint8_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700439 uint16_t length;
440 uint32_t xid;
441 of_octets_t data;
442};
443
Rich Lanee9c37db2013-06-21 18:30:24 -0700444struct of_experimenter : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700445 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700446 uint8_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700447 uint16_t length;
448 uint32_t xid;
Rich Laneb25d07c2013-08-22 17:22:43 -0700449 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700450 of_octets_t data;
451};
452
Rich Lanee9c37db2013-06-21 18:30:24 -0700453struct of_barrier_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700454 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700455 uint8_t type == 20;
Rich Lanea06d0c32013-03-25 08:52:03 -0700456 uint16_t length;
457 uint32_t xid;
458};
459
Rich Lanee9c37db2013-06-21 18:30:24 -0700460struct of_barrier_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700461 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700462 uint8_t type == 21;
Rich Lanea06d0c32013-03-25 08:52:03 -0700463 uint16_t length;
464 uint32_t xid;
465};
466
Rich Lanee9c37db2013-06-21 18:30:24 -0700467struct of_get_config_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700468 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700469 uint8_t type == 7;
Rich Lanea06d0c32013-03-25 08:52:03 -0700470 uint16_t length;
471 uint32_t xid;
472};
473
Rich Lanee9c37db2013-06-21 18:30:24 -0700474struct of_get_config_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700475 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700476 uint8_t type == 8;
Rich Lanea06d0c32013-03-25 08:52:03 -0700477 uint16_t length;
478 uint32_t xid;
Andreas Wundsam057540b2013-11-19 16:51:36 -0800479 enum ofp_config_flags flags;
Rich Lanea06d0c32013-03-25 08:52:03 -0700480 uint16_t miss_send_len;
481};
482
Rich Lanee9c37db2013-06-21 18:30:24 -0700483struct of_set_config : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700484 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700485 uint8_t type == 9;
Rich Lanea06d0c32013-03-25 08:52:03 -0700486 uint16_t length;
487 uint32_t xid;
Andreas Wundsam057540b2013-11-19 16:51:36 -0800488 enum ofp_config_flags flags;
Rich Lanea06d0c32013-03-25 08:52:03 -0700489 uint16_t miss_send_len;
490};
491
Rich Lanee9c37db2013-06-21 18:30:24 -0700492struct of_table_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700493 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700494 uint8_t type == 17;
Rich Lanea06d0c32013-03-25 08:52:03 -0700495 uint16_t length;
496 uint32_t xid;
497 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700498 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700499 uint32_t config;
500};
501
Rich Lane68ae4d72013-05-09 10:55:19 -0700502struct of_port_desc {
Rich Lanea06d0c32013-03-25 08:52:03 -0700503 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700504 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700505 of_mac_addr_t hw_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700506 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700507 of_port_name_t name;
Rob Vaterlausd9d72d22013-09-23 14:50:52 -0700508 enum ofp_port_config config;
509 enum ofp_port_state state;
510 enum ofp_port_features curr;
511 enum ofp_port_features advertised;
512 enum ofp_port_features supported;
513 enum ofp_port_features peer;
Rich Lanea06d0c32013-03-25 08:52:03 -0700514 uint32_t curr_speed;
515 uint32_t max_speed;
516};
517
Rich Lanee9c37db2013-06-21 18:30:24 -0700518struct of_features_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700519 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700520 uint8_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700521 uint16_t length;
522 uint32_t xid;
523};
524
Rich Lanee9c37db2013-06-21 18:30:24 -0700525struct of_features_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700526 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700527 uint8_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -0700528 uint16_t length;
529 uint32_t xid;
530 uint64_t datapath_id;
531 uint32_t n_buffers;
532 uint8_t n_tables;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700533 pad(3);
Rob Vaterlausfeee3712013-09-30 11:24:19 -0700534 enum ofp_capabilities capabilities;
Rich Lanea06d0c32013-03-25 08:52:03 -0700535 uint32_t reserved;
536 list(of_port_desc_t) ports;
537};
538
Rich Lanee9c37db2013-06-21 18:30:24 -0700539struct of_port_status : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700540 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700541 uint8_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -0700542 uint16_t length;
543 uint32_t xid;
Rob Vaterlausd9d72d22013-09-23 14:50:52 -0700544 enum ofp_port_reason reason;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700545 pad(7);
Rich Lanea06d0c32013-03-25 08:52:03 -0700546 of_port_desc_t desc;
547};
548
Rich Lanee9c37db2013-06-21 18:30:24 -0700549struct of_port_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700550 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700551 uint8_t type == 16;
Rich Lanea06d0c32013-03-25 08:52:03 -0700552 uint16_t length;
553 uint32_t xid;
554 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700555 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700556 of_mac_addr_t hw_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700557 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700558 uint32_t config;
559 uint32_t mask;
560 uint32_t advertise;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700561 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700562};
563
Rich Lanee9c37db2013-06-21 18:30:24 -0700564struct of_packet_in : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700565 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700566 uint8_t type == 10;
Rich Lanea06d0c32013-03-25 08:52:03 -0700567 uint16_t length;
568 uint32_t xid;
569 uint32_t buffer_id;
570 of_port_no_t in_port;
571 of_port_no_t in_phy_port;
572 uint16_t total_len;
573 uint8_t reason;
574 uint8_t table_id;
575 of_octets_t data;
576};
577
Rich Lanee9c37db2013-06-21 18:30:24 -0700578struct of_action_output : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700579 uint16_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700580 uint16_t len;
581 of_port_no_t port;
582 uint16_t max_len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700583 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -0700584};
585
Rich Lanee9c37db2013-06-21 18:30:24 -0700586struct of_action_set_vlan_vid : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700587 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700588 uint16_t len;
589 uint16_t vlan_vid;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700590 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700591};
592
Rich Lanee9c37db2013-06-21 18:30:24 -0700593struct of_action_set_vlan_pcp : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700594 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700595 uint16_t len;
596 uint8_t vlan_pcp;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700597 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700598};
599
Rich Lanee9c37db2013-06-21 18:30:24 -0700600struct of_action_set_dl_src : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700601 uint16_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700602 uint16_t len;
603 of_mac_addr_t dl_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700604 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -0700605};
606
Rich Lanee9c37db2013-06-21 18:30:24 -0700607struct of_action_set_dl_dst : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700608 uint16_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700609 uint16_t len;
610 of_mac_addr_t dl_addr;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700611 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -0700612};
613
Rich Lanee9c37db2013-06-21 18:30:24 -0700614struct of_action_set_nw_src : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700615 uint16_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700616 uint16_t len;
617 uint32_t nw_addr;
618};
619
Rich Lanee9c37db2013-06-21 18:30:24 -0700620struct of_action_set_nw_dst : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700621 uint16_t type == 6;
Rich Lanea06d0c32013-03-25 08:52:03 -0700622 uint16_t len;
623 uint32_t nw_addr;
624};
625
Rich Lanee9c37db2013-06-21 18:30:24 -0700626struct of_action_set_nw_tos : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700627 uint16_t type == 7;
Rich Lanea06d0c32013-03-25 08:52:03 -0700628 uint16_t len;
629 uint8_t nw_tos;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700630 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700631};
632
Rich Lanee9c37db2013-06-21 18:30:24 -0700633struct of_action_set_nw_ecn : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700634 uint16_t type == 8;
Rich Lanea06d0c32013-03-25 08:52:03 -0700635 uint16_t len;
636 uint8_t nw_ecn;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700637 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700638};
639
Rich Lanee9c37db2013-06-21 18:30:24 -0700640struct of_action_set_tp_src : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700641 uint16_t type == 9;
Rich Lanea06d0c32013-03-25 08:52:03 -0700642 uint16_t len;
643 uint16_t tp_port;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700644 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700645};
646
Rich Lanee9c37db2013-06-21 18:30:24 -0700647struct of_action_set_tp_dst : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700648 uint16_t type == 10;
Rich Lanea06d0c32013-03-25 08:52:03 -0700649 uint16_t len;
650 uint16_t tp_port;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700651 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700652};
653
Rich Lanee9c37db2013-06-21 18:30:24 -0700654struct of_action_copy_ttl_out : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700655 uint16_t type == 11;
Rich Lanea06d0c32013-03-25 08:52:03 -0700656 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700657 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700658};
659
Rich Lanee9c37db2013-06-21 18:30:24 -0700660struct of_action_copy_ttl_in : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700661 uint16_t type == 12;
Rich Lanea06d0c32013-03-25 08:52:03 -0700662 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700663 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700664};
665
Rich Lanee9c37db2013-06-21 18:30:24 -0700666struct of_action_set_mpls_label : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700667 uint16_t type == 13;
Rich Lanea06d0c32013-03-25 08:52:03 -0700668 uint16_t len;
669 uint32_t mpls_label;
670};
671
Rich Lanee9c37db2013-06-21 18:30:24 -0700672struct of_action_set_mpls_tc : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700673 uint16_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700674 uint16_t len;
675 uint8_t mpls_tc;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700676 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700677};
678
Rich Lanee9c37db2013-06-21 18:30:24 -0700679struct of_action_set_mpls_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700680 uint16_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -0700681 uint16_t len;
682 uint8_t mpls_ttl;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700683 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700684};
685
Rich Lanee9c37db2013-06-21 18:30:24 -0700686struct of_action_dec_mpls_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700687 uint16_t type == 16;
Rich Lanea06d0c32013-03-25 08:52:03 -0700688 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700689 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700690};
691
Rich Lanee9c37db2013-06-21 18:30:24 -0700692struct of_action_push_vlan : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700693 uint16_t type == 17;
Rich Lanea06d0c32013-03-25 08:52:03 -0700694 uint16_t len;
695 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700696 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700697};
698
Rich Lanee9c37db2013-06-21 18:30:24 -0700699struct of_action_pop_vlan : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700700 uint16_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -0700701 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700702 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700703};
704
Rich Lanee9c37db2013-06-21 18:30:24 -0700705struct of_action_push_mpls : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700706 uint16_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -0700707 uint16_t len;
708 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700709 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700710};
711
Rich Lanee9c37db2013-06-21 18:30:24 -0700712struct of_action_pop_mpls : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700713 uint16_t type == 20;
Rich Lanea06d0c32013-03-25 08:52:03 -0700714 uint16_t len;
715 uint16_t ethertype;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700716 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700717};
718
Rich Lanee9c37db2013-06-21 18:30:24 -0700719struct of_action_set_queue : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700720 uint16_t type == 21;
Rich Lanea06d0c32013-03-25 08:52:03 -0700721 uint16_t len;
722 uint32_t queue_id;
723};
724
Rich Lanee9c37db2013-06-21 18:30:24 -0700725struct of_action_group : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700726 uint16_t type == 22;
Rich Lanea06d0c32013-03-25 08:52:03 -0700727 uint16_t len;
728 uint32_t group_id;
729};
730
Rich Lanee9c37db2013-06-21 18:30:24 -0700731struct of_action_set_nw_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700732 uint16_t type == 23;
Rich Lanea06d0c32013-03-25 08:52:03 -0700733 uint16_t len;
734 uint8_t nw_ttl;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700735 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700736};
737
Rich Lanee9c37db2013-06-21 18:30:24 -0700738struct of_action_dec_nw_ttl : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700739 uint16_t type == 24;
Rich Lanea06d0c32013-03-25 08:52:03 -0700740 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700741 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700742};
743
Rich Lanee9c37db2013-06-21 18:30:24 -0700744struct of_action_experimenter : of_action {
Rich Lane31b87142013-05-09 22:05:42 -0700745 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -0700746 uint16_t len;
Rich Laneb25d07c2013-08-22 17:22:43 -0700747 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700748 of_octets_t data;
749};
750
Rich Lane68ae4d72013-05-09 10:55:19 -0700751struct of_action {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700752 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700753 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700754 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700755};
756
Rich Lanee9c37db2013-06-21 18:30:24 -0700757struct of_packet_out : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700758 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700759 uint8_t type == 13;
Rich Lanea06d0c32013-03-25 08:52:03 -0700760 uint16_t length;
761 uint32_t xid;
762 uint32_t buffer_id;
763 of_port_no_t in_port;
764 uint16_t actions_len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700765 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -0700766 list(of_action_t) actions;
767 of_octets_t data;
768};
769
Rich Lane68ae4d72013-05-09 10:55:19 -0700770struct of_match_v2 {
Rich Lane31b87142013-05-09 22:05:42 -0700771 uint16_t type == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700772 uint16_t length;
773 of_port_no_t in_port;
774 of_wc_bmap_t wildcards;
775 of_mac_addr_t eth_src;
776 of_mac_addr_t eth_src_mask;
777 of_mac_addr_t eth_dst;
778 of_mac_addr_t eth_dst_mask;
779 uint16_t vlan_vid;
780 uint8_t vlan_pcp;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700781 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -0700782 uint16_t eth_type;
783 uint8_t ip_dscp;
784 uint8_t ip_proto;
Andreas Wundsamb566a162013-07-18 19:30:23 -0700785 of_ipv4_t ipv4_src;
786 of_ipv4_t ipv4_src_mask;
787 of_ipv4_t ipv4_dst;
788 of_ipv4_t ipv4_dst_mask;
Rich Lanea06d0c32013-03-25 08:52:03 -0700789 uint16_t tcp_src;
790 uint16_t tcp_dst;
791 uint32_t mpls_label;
792 uint8_t mpls_tc;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700793 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700794 uint64_t metadata;
795 uint64_t metadata_mask;
796};
797
Rich Lane68ae4d72013-05-09 10:55:19 -0700798struct of_instruction {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700799 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700800 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700801 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700802};
803
Rich Lanee9c37db2013-06-21 18:30:24 -0700804struct of_instruction_goto_table : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700805 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700806 uint16_t len;
807 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700808 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -0700809};
810
Rich Lanee9c37db2013-06-21 18:30:24 -0700811struct of_instruction_write_metadata : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700812 uint16_t type == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700813 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700814 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700815 uint64_t metadata;
816 uint64_t metadata_mask;
817};
818
Rich Lanee9c37db2013-06-21 18:30:24 -0700819struct of_instruction_write_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700820 uint16_t type == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700821 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700822 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700823 list(of_action_t) actions;
824};
825
Rich Lanee9c37db2013-06-21 18:30:24 -0700826struct of_instruction_apply_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700827 uint16_t type == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700828 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700829 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700830 list(of_action_t) actions;
831};
832
Rich Lanee9c37db2013-06-21 18:30:24 -0700833struct of_instruction_clear_actions : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700834 uint16_t type == 5;
Rich Lanea06d0c32013-03-25 08:52:03 -0700835 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700836 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700837};
838
Rich Lanee9c37db2013-06-21 18:30:24 -0700839struct of_instruction_experimenter : of_instruction {
Rich Lane31b87142013-05-09 22:05:42 -0700840 uint16_t type == 65535;
Rich Lanea06d0c32013-03-25 08:52:03 -0700841 uint16_t len;
Rich Laneb25d07c2013-08-22 17:22:43 -0700842 uint32_t experimenter == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -0700843 of_octets_t data;
844};
845
Rich Lanee9c37db2013-06-21 18:30:24 -0700846struct of_flow_mod : of_header {
847 uint8_t version;
848 uint8_t type == 14;
849 uint16_t length;
850 uint32_t xid;
851 uint64_t cookie;
852 uint64_t cookie_mask;
853 uint8_t table_id;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -0700854 of_fm_cmd_t _command == ?;
Rich Lanee9c37db2013-06-21 18:30:24 -0700855 uint16_t idle_timeout;
856 uint16_t hard_timeout;
857 uint16_t priority;
858 uint32_t buffer_id;
859 of_port_no_t out_port;
860 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700861 enum ofp_flow_mod_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -0700862 pad(2);
863 of_match_t match;
864 list(of_instruction_t) instructions;
865};
866
867struct of_flow_add : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700868 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700869 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700870 uint16_t length;
871 uint32_t xid;
872 uint64_t cookie;
873 uint64_t cookie_mask;
874 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700875 of_fm_cmd_t _command == 0;
Rich Lanea06d0c32013-03-25 08:52:03 -0700876 uint16_t idle_timeout;
877 uint16_t hard_timeout;
878 uint16_t priority;
879 uint32_t buffer_id;
880 of_port_no_t out_port;
881 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700882 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700883 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700884 of_match_t match;
885 list(of_instruction_t) instructions;
886};
887
Rich Lanee9c37db2013-06-21 18:30:24 -0700888struct of_flow_modify : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700889 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700890 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700891 uint16_t length;
892 uint32_t xid;
893 uint64_t cookie;
894 uint64_t cookie_mask;
895 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700896 of_fm_cmd_t _command == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -0700897 uint16_t idle_timeout;
898 uint16_t hard_timeout;
899 uint16_t priority;
900 uint32_t buffer_id;
901 of_port_no_t out_port;
902 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700903 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700904 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700905 of_match_t match;
906 list(of_instruction_t) instructions;
907};
908
Rich Lanee9c37db2013-06-21 18:30:24 -0700909struct of_flow_modify_strict : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700910 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700911 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700912 uint16_t length;
913 uint32_t xid;
914 uint64_t cookie;
915 uint64_t cookie_mask;
916 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700917 of_fm_cmd_t _command == 2;
Rich Lanea06d0c32013-03-25 08:52:03 -0700918 uint16_t idle_timeout;
919 uint16_t hard_timeout;
920 uint16_t priority;
921 uint32_t buffer_id;
922 of_port_no_t out_port;
923 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700924 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700925 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700926 of_match_t match;
927 list(of_instruction_t) instructions;
928};
929
Rich Lanee9c37db2013-06-21 18:30:24 -0700930struct of_flow_delete : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700931 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700932 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700933 uint16_t length;
934 uint32_t xid;
935 uint64_t cookie;
936 uint64_t cookie_mask;
937 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700938 of_fm_cmd_t _command == 3;
Rich Lanea06d0c32013-03-25 08:52:03 -0700939 uint16_t idle_timeout;
940 uint16_t hard_timeout;
941 uint16_t priority;
942 uint32_t buffer_id;
943 of_port_no_t out_port;
944 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700945 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700946 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700947 of_match_t match;
948 list(of_instruction_t) instructions;
949};
950
Rich Lanee9c37db2013-06-21 18:30:24 -0700951struct of_flow_delete_strict : of_flow_mod {
Rich Lanea06d0c32013-03-25 08:52:03 -0700952 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700953 uint8_t type == 14;
Rich Lanea06d0c32013-03-25 08:52:03 -0700954 uint16_t length;
955 uint32_t xid;
956 uint64_t cookie;
957 uint64_t cookie_mask;
958 uint8_t table_id;
Rich Lane31b87142013-05-09 22:05:42 -0700959 of_fm_cmd_t _command == 4;
Rich Lanea06d0c32013-03-25 08:52:03 -0700960 uint16_t idle_timeout;
961 uint16_t hard_timeout;
962 uint16_t priority;
963 uint32_t buffer_id;
964 of_port_no_t out_port;
965 uint32_t out_group;
Andreas Wundsamdfeb5942013-09-19 13:07:49 -0700966 enum ofp_flow_mod_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700967 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -0700968 of_match_t match;
969 list(of_instruction_t) instructions;
970};
971
Rich Lane68ae4d72013-05-09 10:55:19 -0700972struct of_bucket {
Rich Lanea06d0c32013-03-25 08:52:03 -0700973 uint16_t len;
974 uint16_t weight;
975 of_port_no_t watch_port;
976 uint32_t watch_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -0700977 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -0700978 list(of_action_t) actions;
979};
980
Rich Lanee9c37db2013-06-21 18:30:24 -0700981struct of_group_mod : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -0700982 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -0700983 uint8_t type == 15;
Rich Lanea06d0c32013-03-25 08:52:03 -0700984 uint16_t length;
985 uint32_t xid;
Andreas Wundsam5812cf32013-11-15 13:51:24 -0800986 enum ofp_group_mod_command command == ?;
987 enum ofp_group_type group_type;
988 pad(1);
989 uint32_t group_id;
990 list(of_bucket_t) buckets;
991};
992
993struct of_group_add : of_group_mod {
994 uint8_t version;
995 uint8_t type == 15;
996 uint16_t length;
997 uint32_t xid;
998 enum ofp_group_mod_command command == 0;
999 enum ofp_group_type group_type;
1000 pad(1);
1001 uint32_t group_id;
1002 list(of_bucket_t) buckets;
1003};
1004
1005struct of_group_modify : of_group_mod {
1006 uint8_t version;
1007 uint8_t type == 15;
1008 uint16_t length;
1009 uint32_t xid;
1010 enum ofp_group_mod_command command == 1;
1011 enum ofp_group_type group_type;
1012 pad(1);
1013 uint32_t group_id;
1014 list(of_bucket_t) buckets;
1015};
1016
1017struct of_group_delete : of_group_mod {
1018 uint8_t version;
1019 uint8_t type == 15;
1020 uint16_t length;
1021 uint32_t xid;
1022 enum ofp_group_mod_command command == 2;
1023 enum ofp_group_type group_type;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001024 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001025 uint32_t group_id;
1026 list(of_bucket_t) buckets;
1027};
1028
Rich Lanee9c37db2013-06-21 18:30:24 -07001029struct of_flow_removed : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001030 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001031 uint8_t type == 11;
Rich Lanea06d0c32013-03-25 08:52:03 -07001032 uint16_t length;
1033 uint32_t xid;
1034 uint64_t cookie;
1035 uint16_t priority;
1036 uint8_t reason;
1037 uint8_t table_id;
1038 uint32_t duration_sec;
1039 uint32_t duration_nsec;
1040 uint16_t idle_timeout;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001041 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001042 uint64_t packet_count;
1043 uint64_t byte_count;
1044 of_match_t match;
1045};
1046
Rich Lanee9c37db2013-06-21 18:30:24 -07001047struct of_error_msg : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001048 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001049 uint8_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001050 uint16_t length;
1051 uint32_t xid;
Rob Vaterlausfeee3712013-09-30 11:24:19 -07001052 uint16_t err_type == ?;
1053};
1054
1055struct of_hello_failed_error_msg : of_error_msg {
1056 uint8_t version;
1057 uint8_t type == 1;
1058 uint16_t length;
1059 uint32_t xid;
1060 uint16_t err_type == 0;
1061 enum ofp_hello_failed_code code;
1062 of_octets_t data;
1063};
1064
1065struct of_bad_request_error_msg : of_error_msg {
1066 uint8_t version;
1067 uint8_t type == 1;
1068 uint16_t length;
1069 uint32_t xid;
1070 uint16_t err_type == 1;
1071 enum ofp_bad_request_code code;
1072 of_octets_t data;
1073};
1074
1075struct of_bad_action_error_msg : of_error_msg {
1076 uint8_t version;
1077 uint8_t type == 1;
1078 uint16_t length;
1079 uint32_t xid;
1080 uint16_t err_type == 2;
1081 enum ofp_bad_action_code code;
1082 of_octets_t data;
1083};
1084
1085struct of_bad_instruction_error_msg : of_error_msg {
1086 uint8_t version;
1087 uint8_t type == 1;
1088 uint16_t length;
1089 uint32_t xid;
1090 uint16_t err_type == 3;
1091 enum ofp_bad_instruction_code code;
1092 of_octets_t data;
1093};
1094
1095struct of_bad_match_error_msg : of_error_msg {
1096 uint8_t version;
1097 uint8_t type == 1;
1098 uint16_t length;
1099 uint32_t xid;
1100 uint16_t err_type == 4;
1101 enum ofp_bad_match_code code;
1102 of_octets_t data;
1103};
1104
1105struct of_flow_mod_failed_error_msg : of_error_msg {
1106 uint8_t version;
1107 uint8_t type == 1;
1108 uint16_t length;
1109 uint32_t xid;
1110 uint16_t err_type == 5;
1111 enum ofp_flow_mod_failed_code code;
1112 of_octets_t data;
1113};
1114
1115struct of_group_mod_failed_error_msg : of_error_msg {
1116 uint8_t version;
1117 uint8_t type == 1;
1118 uint16_t length;
1119 uint32_t xid;
1120 uint16_t err_type == 6;
1121 enum ofp_group_mod_failed_code code;
1122 of_octets_t data;
1123};
1124
1125struct of_port_mod_failed_error_msg : of_error_msg {
1126 uint8_t version;
1127 uint8_t type == 1;
1128 uint16_t length;
1129 uint32_t xid;
1130 uint16_t err_type == 7;
1131 enum ofp_port_mod_failed_code code;
1132 of_octets_t data;
1133};
1134
1135struct of_table_mod_failed_error_msg : of_error_msg {
1136 uint8_t version;
1137 uint8_t type == 1;
1138 uint16_t length;
1139 uint32_t xid;
1140 uint16_t err_type == 8;
1141 enum ofp_table_mod_failed_code code;
1142 of_octets_t data;
1143};
1144
1145struct of_queue_op_failed_error_msg : of_error_msg {
1146 uint8_t version;
1147 uint8_t type == 1;
1148 uint16_t length;
1149 uint32_t xid;
1150 uint16_t err_type == 9;
1151 enum ofp_queue_op_failed_code code;
1152 of_octets_t data;
1153};
1154
1155struct of_switch_config_failed_error_msg : of_error_msg {
1156 uint8_t version;
1157 uint8_t type == 1;
1158 uint16_t length;
1159 uint32_t xid;
1160 uint16_t err_type == 10;
1161 enum ofp_switch_config_failed_code code;
Rich Lanea06d0c32013-03-25 08:52:03 -07001162 of_octets_t data;
1163};
1164
1165// STATS ENTRIES: flow, table, port, group, group_desc
1166
Rich Lane68ae4d72013-05-09 10:55:19 -07001167struct of_flow_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001168 uint16_t length;
1169 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001170 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001171 uint32_t duration_sec;
1172 uint32_t duration_nsec;
1173 uint16_t priority;
1174 uint16_t idle_timeout;
1175 uint16_t hard_timeout;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001176 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001177 uint64_t cookie;
1178 uint64_t packet_count;
1179 uint64_t byte_count;
1180 of_match_t match;
1181 list(of_instruction_t) instructions;
1182};
1183
Rich Lane68ae4d72013-05-09 10:55:19 -07001184struct of_table_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001185 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001186 pad(7);
Rich Lanea06d0c32013-03-25 08:52:03 -07001187 of_table_name_t name;
1188 of_wc_bmap_t wildcards;
1189 of_match_bmap_t match;
1190 uint32_t instructions;
1191 uint32_t write_actions;
1192 uint32_t apply_actions;
1193 uint32_t config;
1194 uint32_t max_entries;
1195 uint32_t active_count;
1196 uint64_t lookup_count;
1197 uint64_t matched_count;
1198};
1199
Rich Lane68ae4d72013-05-09 10:55:19 -07001200struct of_port_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001201 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001202 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001203 uint64_t rx_packets;
1204 uint64_t tx_packets;
1205 uint64_t rx_bytes;
1206 uint64_t tx_bytes;
1207 uint64_t rx_dropped;
1208 uint64_t tx_dropped;
1209 uint64_t rx_errors;
1210 uint64_t tx_errors;
1211 uint64_t rx_frame_err;
1212 uint64_t rx_over_err;
1213 uint64_t rx_crc_err;
1214 uint64_t collisions;
1215};
1216
Rich Lane68ae4d72013-05-09 10:55:19 -07001217struct of_queue_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001218 of_port_no_t port_no;
1219 uint32_t queue_id;
1220 uint64_t tx_bytes;
1221 uint64_t tx_packets;
1222 uint64_t tx_errors;
1223};
1224
Rich Lane68ae4d72013-05-09 10:55:19 -07001225struct of_bucket_counter {
Rich Lanea06d0c32013-03-25 08:52:03 -07001226 uint64_t packet_count;
1227 uint64_t byte_count;
1228};
1229
Rich Lane68ae4d72013-05-09 10:55:19 -07001230struct of_group_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001231 uint16_t length;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001232 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001233 uint32_t group_id;
1234 uint32_t ref_count;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001235 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001236 uint64_t packet_count;
1237 uint64_t byte_count;
1238 list(of_bucket_counter_t) bucket_stats;
1239};
1240
Rich Lane68ae4d72013-05-09 10:55:19 -07001241struct of_group_desc_stats_entry {
Rich Lanea06d0c32013-03-25 08:52:03 -07001242 uint16_t length;
Andreas Wundsam84603f02013-11-18 18:45:30 -08001243 enum ofp_group_type group_type;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001244 pad(1);
Rich Lanea06d0c32013-03-25 08:52:03 -07001245 uint32_t group_id;
1246 list(of_bucket_t) buckets;
1247};
1248
1249// STATS: Desc, flow, agg, table, port, queue, group, group_desc, experi
1250
Rich Lanee9c37db2013-06-21 18:30:24 -07001251struct of_stats_request : of_header {
1252 uint8_t version;
1253 uint8_t type == 18;
1254 uint16_t length;
1255 uint32_t xid;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001256 uint16_t stats_type == ?;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001257 enum ofp_stats_request_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -07001258 pad(4);
1259};
1260
1261struct of_stats_reply : of_header {
1262 uint8_t version;
1263 uint8_t type == 19;
1264 uint16_t length;
1265 uint32_t xid;
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001266 uint16_t stats_type == ?;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001267 enum ofp_stats_reply_flags flags;
Rich Lanee9c37db2013-06-21 18:30:24 -07001268 pad(4);
1269};
1270
1271struct of_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001272 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001273 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001274 uint16_t length;
1275 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001276 uint16_t stats_type == 0;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001277 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001278 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001279};
1280
Rich Lanee9c37db2013-06-21 18:30:24 -07001281struct of_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001282 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001283 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001284 uint16_t length;
1285 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001286 uint16_t stats_type == 0;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001287 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001288 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001289 of_desc_str_t mfr_desc;
1290 of_desc_str_t hw_desc;
1291 of_desc_str_t sw_desc;
1292 of_serial_num_t serial_num;
1293 of_desc_str_t dp_desc;
1294};
1295
Rich Lanee9c37db2013-06-21 18:30:24 -07001296struct of_flow_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001297 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001298 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001299 uint16_t length;
1300 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001301 uint16_t stats_type == 1;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001302 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001303 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001304 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001305 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001306 of_port_no_t out_port;
1307 uint32_t out_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001308 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001309 uint64_t cookie;
1310 uint64_t cookie_mask;
1311 of_match_t match;
1312};
1313
Rich Lanee9c37db2013-06-21 18:30:24 -07001314struct of_flow_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001315 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001316 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001317 uint16_t length;
1318 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001319 uint16_t stats_type == 1;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001320 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001321 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001322 list(of_flow_stats_entry_t) entries;
1323};
1324
Rich Lanee9c37db2013-06-21 18:30:24 -07001325struct of_aggregate_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001326 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001327 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001328 uint16_t length;
1329 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001330 uint16_t stats_type == 2;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001331 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001332 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001333 uint8_t table_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001334 pad(3);
Rich Lanea06d0c32013-03-25 08:52:03 -07001335 of_port_no_t out_port;
1336 uint32_t out_group;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001337 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001338 uint64_t cookie;
1339 uint64_t cookie_mask;
1340 of_match_t match;
1341};
1342
Rich Lanee9c37db2013-06-21 18:30:24 -07001343struct of_aggregate_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001344 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001345 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001346 uint16_t length;
1347 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001348 uint16_t stats_type == 2;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001349 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001350 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001351 uint64_t packet_count;
1352 uint64_t byte_count;
1353 uint32_t flow_count;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001354 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001355};
1356
Rich Lanee9c37db2013-06-21 18:30:24 -07001357struct of_table_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001358 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001359 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001360 uint16_t length;
1361 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001362 uint16_t stats_type == 3;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001363 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001364 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001365};
1366
Rich Lanee9c37db2013-06-21 18:30:24 -07001367struct of_table_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001368 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001369 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001370 uint16_t length;
1371 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001372 uint16_t stats_type == 3;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001373 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001374 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001375 list(of_table_stats_entry_t) entries;
1376};
1377
Rich Lanee9c37db2013-06-21 18:30:24 -07001378struct of_port_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001379 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001380 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001381 uint16_t length;
1382 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001383 uint16_t stats_type == 4;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001384 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001385 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001386 of_port_no_t port_no;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001387 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001388};
1389
Rich Lanee9c37db2013-06-21 18:30:24 -07001390struct of_port_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001391 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001392 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001393 uint16_t length;
1394 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001395 uint16_t stats_type == 4;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001396 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001397 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001398 list(of_port_stats_entry_t) entries;
1399};
1400
Rich Lanee9c37db2013-06-21 18:30:24 -07001401struct of_queue_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001402 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001403 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001404 uint16_t length;
1405 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001406 uint16_t stats_type == 5;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001407 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001408 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001409 of_port_no_t port_no;
1410 uint32_t queue_id;
1411};
1412
Rich Lanee9c37db2013-06-21 18:30:24 -07001413struct of_queue_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001414 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001415 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001416 uint16_t length;
1417 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001418 uint16_t stats_type == 5;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001419 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001420 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001421 list(of_queue_stats_entry_t) entries;
1422};
1423
Rich Lanee9c37db2013-06-21 18:30:24 -07001424struct of_group_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001425 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001426 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001427 uint16_t length;
1428 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001429 uint16_t stats_type == 6;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001430 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001431 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001432 uint32_t group_id;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001433 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001434};
1435
Rich Lanee9c37db2013-06-21 18:30:24 -07001436struct of_group_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001437 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001438 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001439 uint16_t length;
1440 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001441 uint16_t stats_type == 6;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001442 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001443 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001444 list(of_group_stats_entry_t) entries;
1445};
1446
Rich Lanee9c37db2013-06-21 18:30:24 -07001447struct of_group_desc_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001448 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001449 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001450 uint16_t length;
1451 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001452 uint16_t stats_type == 7;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001453 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001454 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001455};
1456
Rich Lanee9c37db2013-06-21 18:30:24 -07001457struct of_group_desc_stats_reply : of_stats_reply {
Rich Lanea06d0c32013-03-25 08:52:03 -07001458 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001459 uint8_t type == 19;
Rich Lanea06d0c32013-03-25 08:52:03 -07001460 uint16_t length;
1461 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001462 uint16_t stats_type == 7;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001463 enum ofp_stats_reply_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001464 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001465 list(of_group_desc_stats_entry_t) entries;
1466};
1467
Rich Lanee9c37db2013-06-21 18:30:24 -07001468struct of_experimenter_stats_request : of_stats_request {
Rich Lanea06d0c32013-03-25 08:52:03 -07001469 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001470 uint8_t type == 18;
Rich Lanea06d0c32013-03-25 08:52:03 -07001471 uint16_t length;
1472 uint32_t xid;
Rich Lane31b87142013-05-09 22:05:42 -07001473 uint16_t stats_type == 0xffff;
Andreas Wundsamb47d7e82013-10-18 17:43:00 -07001474 enum ofp_stats_request_flags flags;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001475 pad(4);
Rich Laneb25d07c2013-08-22 17:22:43 -07001476 uint32_t experimenter == ?;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001477 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001478 of_octets_t data;
1479};
1480
Rich Lanee9c37db2013-06-21 18:30:24 -07001481struct of_experimenter_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 == 0xffff;
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 Laneb25d07c2013-08-22 17:22:43 -07001489 uint32_t experimenter == ?;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001490 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001491 of_octets_t data;
1492};
1493
1494// END OF STATS OBJECTS
1495
Rich Lane68ae4d72013-05-09 10:55:19 -07001496struct of_queue_prop {
Andreas Wundsamc37ba3d2013-08-02 17:51:51 -07001497 uint16_t type == ?;
Rich Lanea06d0c32013-03-25 08:52:03 -07001498 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001499 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001500};
1501
Rich Lanee9c37db2013-06-21 18:30:24 -07001502struct of_queue_prop_min_rate : of_queue_prop {
Rich Lane31b87142013-05-09 22:05:42 -07001503 uint16_t type == 1;
Rich Lanea06d0c32013-03-25 08:52:03 -07001504 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001505 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001506 uint16_t rate;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001507 pad(6);
Rich Lanea06d0c32013-03-25 08:52:03 -07001508};
1509
Rich Lane68ae4d72013-05-09 10:55:19 -07001510struct of_packet_queue {
Rich Lanea06d0c32013-03-25 08:52:03 -07001511 uint32_t queue_id;
1512 uint16_t len;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001513 pad(2);
Rich Lanea06d0c32013-03-25 08:52:03 -07001514 list(of_queue_prop_t) properties;
1515};
1516
Rich Lanee9c37db2013-06-21 18:30:24 -07001517struct of_queue_get_config_request : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001518 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001519 uint8_t type == 22;
Rich Lanea06d0c32013-03-25 08:52:03 -07001520 uint16_t length;
1521 uint32_t xid;
1522 of_port_no_t port;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001523 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001524};
1525
Rich Lanee9c37db2013-06-21 18:30:24 -07001526struct of_queue_get_config_reply : of_header {
Rich Lanea06d0c32013-03-25 08:52:03 -07001527 uint8_t version;
Rich Lane31b87142013-05-09 22:05:42 -07001528 uint8_t type == 23;
Rich Lanea06d0c32013-03-25 08:52:03 -07001529 uint16_t length;
1530 uint32_t xid;
1531 of_port_no_t port;
Rich Lanee2af4ee2013-05-09 11:04:06 -07001532 pad(4);
Rich Lanea06d0c32013-03-25 08:52:03 -07001533 list(of_packet_queue_t) queues;
1534};