]> git.proxmox.com Git - ovs.git/blob - include/openflow/nicira-ext.h
nicira-ext: Clarify comment.
[ovs.git] / include / openflow / nicira-ext.h
1 /*
2 * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #ifndef OPENFLOW_NICIRA_EXT_H
18 #define OPENFLOW_NICIRA_EXT_H 1
19
20 #include "openflow/openflow.h"
21 #include "openvswitch/types.h"
22
23 /* The following vendor extensions, proposed by Nicira Networks, are not yet
24 * standardized, so they are not included in openflow.h. Some of them may be
25 * suitable for standardization; others we never expect to standardize. */
26
27 #define NX_VENDOR_ID 0x00002320
28 \f
29 /* Nicira vendor-specific error messages extension.
30 *
31 * OpenFlow 1.0 has a set of predefined error types (OFPET_*) and codes (which
32 * are specific to each type). It does not have any provision for
33 * vendor-specific error codes, and it does not even provide "generic" error
34 * codes that can apply to problems not anticipated by the OpenFlow
35 * specification authors.
36 *
37 * This extension attempts to address the problem by adding a generic "error
38 * vendor extension". The extension works as follows: use NXET_VENDOR as type
39 * and NXVC_VENDOR_ERROR as code, followed by struct nx_vendor_error with
40 * vendor-specific details, followed by at least 64 bytes of the failed
41 * request.
42 *
43 * It would be better to have a type-specific vendor extension, e.g. so that
44 * OFPET_BAD_ACTION could be used with vendor-specific code values. But
45 * OFPET_BAD_ACTION and most other standardized types already specify that
46 * their 'data' values are (the start of) the OpenFlow message being replied
47 * to, so there is no room to insert a vendor ID.
48 *
49 * Currently this extension is only implemented by Open vSwitch, but it seems
50 * like a reasonable candidate for future standardization.
51 */
52
53 /* This is a random number to avoid accidental collision with any other
54 * vendor's extension. */
55 #define NXET_VENDOR 0xb0c2
56
57 /* ofp_error msg 'code' values for NXET_VENDOR. */
58 enum nx_vendor_code {
59 NXVC_VENDOR_ERROR /* 'data' contains struct nx_vendor_error. */
60 };
61
62 /* 'data' for 'type' == NXET_VENDOR, 'code' == NXVC_VENDOR_ERROR. */
63 struct nx_vendor_error {
64 ovs_be32 vendor; /* Vendor ID as in struct ofp_vendor_header. */
65 ovs_be16 type; /* Vendor-defined type. */
66 ovs_be16 code; /* Vendor-defined subtype. */
67 /* Followed by at least the first 64 bytes of the failed request. */
68 };
69 \f
70 /* Specific Nicira extension error numbers.
71 *
72 * These are the "code" values used in nx_vendor_error. So far, the "type"
73 * values in nx_vendor_error are the same as those in ofp_error_msg. That is,
74 * at Nicira so far we've only needed additional vendor-specific 'code' values,
75 * so we're using the existing 'type' values to avoid having to invent new ones
76 * that duplicate the current ones' meanings. */
77
78 /* Additional "code" values for OFPET_BAD_REQUEST. */
79 enum nx_bad_request_code {
80 /* Nicira Extended Match (NXM) errors. */
81
82 /* Generic error code used when there is an error in an NXM sent to the
83 * switch. The switch may use one of the more specific error codes below,
84 * if there is an appropriate one, to simplify debugging, but it is not
85 * required to do so. */
86 NXBRC_NXM_INVALID = 0x100,
87
88 /* The nxm_type, or nxm_type taken in combination with nxm_hasmask or
89 * nxm_length or both, is invalid or not implemented. */
90 NXBRC_NXM_BAD_TYPE = 0x101,
91
92 /* Invalid nxm_value. */
93 NXBRC_NXM_BAD_VALUE = 0x102,
94
95 /* Invalid nxm_mask. */
96 NXBRC_NXM_BAD_MASK = 0x103,
97
98 /* A prerequisite was not met. */
99 NXBRC_NXM_BAD_PREREQ = 0x104,
100
101 /* A given nxm_type was specified more than once. */
102 NXBRC_NXM_DUP_TYPE = 0x105
103 };
104
105 /* Additional "code" values for OFPET_FLOW_MOD_FAILED. */
106 enum nx_flow_mod_failed_code {
107 /* Generic hardware error. */
108 NXFMFC_HARDWARE = 0x100,
109
110 /* A nonexistent table ID was specified in the "command" field of struct
111 * ofp_flow_mod, when the nxt_flow_mod_table_id extension is enabled. */
112 NXFMFC_BAD_TABLE_ID = 0x101
113 };
114 \f
115 /* Nicira vendor requests and replies. */
116
117 /* Header for Nicira vendor requests and replies. */
118 struct nicira_header {
119 struct ofp_header header;
120 ovs_be32 vendor; /* NX_VENDOR_ID. */
121 ovs_be32 subtype; /* One of NXT_* below. */
122 };
123 OFP_ASSERT(sizeof(struct nicira_header) == 16);
124
125 /* Values for the 'subtype' member of struct nicira_header. */
126 enum nicira_type {
127 /* No longer used. */
128 NXT_STATUS_REQUEST__OBSOLETE = 0,
129 NXT_STATUS_REPLY__OBSOLETE = 1,
130 NXT_ACT_SET_CONFIG__OBSOLETE = 2,
131 NXT_ACT_GET_CONFIG__OBSOLETE = 3,
132 NXT_COMMAND_REQUEST__OBSOLETE = 4,
133 NXT_COMMAND_REPLY__OBSOLETE = 5,
134 NXT_FLOW_END_CONFIG__OBSOLETE = 6,
135 NXT_FLOW_END__OBSOLETE = 7,
136 NXT_MGMT__OBSOLETE = 8,
137 NXT_TUN_ID_FROM_COOKIE__OBSOLETE = 9,
138
139 /* Controller role support. The request body is struct nx_role_request.
140 * The reply echos the request. */
141 NXT_ROLE_REQUEST = 10,
142 NXT_ROLE_REPLY = 11,
143
144 /* Flexible flow specification (aka NXM = Nicira Extended Match). */
145 NXT_SET_FLOW_FORMAT = 12, /* Set flow format. */
146 NXT_FLOW_MOD = 13, /* Analogous to OFPT_FLOW_MOD. */
147 NXT_FLOW_REMOVED = 14, /* Analogous to OFPT_FLOW_REMOVED. */
148
149 /* Use the upper 8 bits of the 'command' member in struct ofp_flow_mod to
150 * designate the table to which a flow is to be added? See the big comment
151 * on struct nxt_flow_mod_table_id for more information. */
152 NXT_FLOW_MOD_TABLE_ID = 15
153 };
154
155 /* Header for Nicira vendor stats request and reply messages. */
156 struct nicira_stats_msg {
157 struct ofp_vendor_stats_msg vsm; /* Vendor NX_VENDOR_ID. */
158 ovs_be32 subtype; /* One of NXST_* below. */
159 uint8_t pad[4]; /* Align to 64-bits. */
160 };
161 OFP_ASSERT(sizeof(struct nicira_stats_msg) == 24);
162
163 /* Values for the 'subtype' member of struct nicira_stats_msg. */
164 enum nicira_stats_type {
165 /* Flexible flow specification (aka NXM = Nicira Extended Match). */
166 NXST_FLOW, /* Analogous to OFPST_FLOW. */
167 NXST_AGGREGATE /* Analogous to OFPST_AGGREGATE. */
168 };
169
170 /* Fields to use when hashing flows. */
171 enum nx_hash_fields {
172 /* Ethernet source address (NXM_OF_ETH_SRC) only. */
173 NX_HASH_FIELDS_ETH_SRC,
174
175 /* L2 through L4, symmetric across src/dst. Specifically, each of the
176 * following fields, if present, is hashed (slashes separate symmetric
177 * pairs):
178 *
179 * - NXM_OF_ETH_DST / NXM_OF_ETH_SRC
180 * - NXM_OF_ETH_TYPE
181 * - The VID bits from NXM_OF_VLAN_TCI, ignoring PCP and CFI.
182 * - NXM_OF_IP_PROTO
183 * - NXM_OF_IP_SRC / NXM_OF_IP_DST
184 * - NXM_OF_TCP_SRC / NXM_OF_TCP_DST
185 */
186 NX_HASH_FIELDS_SYMMETRIC_L4
187 };
188
189 /* This command enables or disables an Open vSwitch extension that allows a
190 * controller to specify the OpenFlow table to which a flow should be added,
191 * instead of having the switch decide which table is most appropriate as
192 * required by OpenFlow 1.0. By default, the extension is disabled.
193 *
194 * When this feature is enabled, Open vSwitch treats struct ofp_flow_mod's
195 * 16-bit 'command' member as two separate fields. The upper 8 bits are used
196 * as the table ID, the lower 8 bits specify the command as usual. A table ID
197 * of 0xff is treated like a wildcarded table ID.
198 *
199 * The specific treatment of the table ID depends on the type of flow mod:
200 *
201 * - OFPFC_ADD: Given a specific table ID, the flow is always placed in that
202 * table. If an identical flow already exists in that table only, then it
203 * is replaced. If the flow cannot be placed in the specified table,
204 * either because the table is full or because the table cannot support
205 * flows of the given type, the switch replies with an
206 * OFPFMFC_ALL_TABLES_FULL error. (A controller can distinguish these
207 * cases by comparing the current and maximum number of entries reported
208 * in ofp_table_stats.)
209 *
210 * If the table ID is wildcarded, the switch picks an appropriate table
211 * itself. If an identical flow already exist in the selected flow table,
212 * then it is replaced. The choice of table might depend on the flows
213 * that are already in the switch; for example, if one table fills up then
214 * the switch might fall back to another one.
215 *
216 * - OFPFC_MODIFY, OFPFC_DELETE: Given a specific table ID, only flows
217 * within that table are matched and modified or deleted. If the table ID
218 * is wildcarded, flows within any table may be matched and modified or
219 * deleted.
220 *
221 * - OFPFC_MODIFY_STRICT, OFPFC_DELETE_STRICT: Given a specific table ID,
222 * only a flow within that table may be matched and modified or deleted.
223 * If the table ID is wildcarded and exactly one flow within any table
224 * matches, then it is modified or deleted; if flows in more than one
225 * table match, then none is modified or deleted.
226 */
227 struct nxt_flow_mod_table_id {
228 struct ofp_header header;
229 uint32_t vendor; /* NX_VENDOR_ID. */
230 uint32_t subtype; /* NXT_FLOW_MOD_TABLE_ID. */
231 uint8_t set; /* Nonzero to enable, zero to disable. */
232 uint8_t pad[7];
233 };
234 OFP_ASSERT(sizeof(struct nxt_flow_mod_table_id) == 24);
235
236 /* Configures the "role" of the sending controller. The default role is:
237 *
238 * - Other (NX_ROLE_OTHER), which allows the controller access to all
239 * OpenFlow features.
240 *
241 * The other possible roles are a related pair:
242 *
243 * - Master (NX_ROLE_MASTER) is equivalent to Other, except that there may
244 * be at most one Master controller at a time: when a controller
245 * configures itself as Master, any existing Master is demoted to the
246 * Slave role.
247 *
248 * - Slave (NX_ROLE_SLAVE) allows the controller read-only access to
249 * OpenFlow features. In particular attempts to modify the flow table
250 * will be rejected with an OFPBRC_EPERM error.
251 *
252 * Slave controllers do not receive OFPT_PACKET_IN or OFPT_FLOW_REMOVED
253 * messages, but they do receive OFPT_PORT_STATUS messages.
254 */
255 struct nx_role_request {
256 struct nicira_header nxh;
257 ovs_be32 role; /* One of NX_ROLE_*. */
258 };
259
260 enum nx_role {
261 NX_ROLE_OTHER, /* Default role, full access. */
262 NX_ROLE_MASTER, /* Full access, at most one. */
263 NX_ROLE_SLAVE /* Read-only access. */
264 };
265 \f
266 /* Nicira vendor flow actions. */
267
268 enum nx_action_subtype {
269 NXAST_SNAT__OBSOLETE, /* No longer used. */
270 NXAST_RESUBMIT, /* struct nx_action_resubmit */
271 NXAST_SET_TUNNEL, /* struct nx_action_set_tunnel */
272 NXAST_DROP_SPOOFED_ARP__OBSOLETE,
273 NXAST_SET_QUEUE, /* struct nx_action_set_queue */
274 NXAST_POP_QUEUE, /* struct nx_action_pop_queue */
275 NXAST_REG_MOVE, /* struct nx_action_reg_move */
276 NXAST_REG_LOAD, /* struct nx_action_reg_load */
277 NXAST_NOTE, /* struct nx_action_note */
278 NXAST_SET_TUNNEL64, /* struct nx_action_set_tunnel64 */
279 NXAST_MULTIPATH, /* struct nx_action_multipath */
280 NXAST_AUTOPATH, /* struct nx_action_autopath */
281 NXAST_BUNDLE, /* struct nx_action_bundle */
282 NXAST_BUNDLE_LOAD, /* struct nx_action_bundle */
283 NXAST_RESUBMIT_TABLE, /* struct nx_action_resubmit */
284 NXAST_OUTPUT_REG, /* struct nx_action_output_reg */
285 NXAST_LEARN /* struct nx_action_learn */
286 };
287
288 /* Header for Nicira-defined actions. */
289 struct nx_action_header {
290 ovs_be16 type; /* OFPAT_VENDOR. */
291 ovs_be16 len; /* Length is 16. */
292 ovs_be32 vendor; /* NX_VENDOR_ID. */
293 ovs_be16 subtype; /* NXAST_*. */
294 uint8_t pad[6];
295 };
296 OFP_ASSERT(sizeof(struct nx_action_header) == 16);
297
298 /* Action structures for NXAST_RESUBMIT and NXAST_RESUBMIT_TABLE.
299 *
300 * These actions search one of the switch's flow tables:
301 *
302 * - For NXAST_RESUBMIT_TABLE only, if the 'table' member is not 255, then
303 * it specifies the table to search.
304 *
305 * - Otherwise (for NXAST_RESUBMIT_TABLE with a 'table' of 255, or for
306 * NXAST_RESUBMIT regardless of 'table'), it searches the current flow
307 * table, that is, the OpenFlow flow table that contains the flow from
308 * which this action was obtained. If this action did not come from a
309 * flow table (e.g. it came from an OFPT_PACKET_OUT message), then table 0
310 * is the current table.
311 *
312 * The flow table lookup uses a flow that may be slightly modified from the
313 * original lookup:
314 *
315 * - For NXAST_RESUBMIT, the 'in_port' member of struct nx_action_resubmit
316 * is used as the flow's in_port.
317 *
318 * - For NXAST_RESUBMIT_TABLE, if the 'in_port' member is not OFPP_IN_PORT,
319 * then its value is used as the flow's in_port. Otherwise, the original
320 * in_port is used.
321 *
322 * - If actions that modify the flow (e.g. OFPAT_SET_VLAN_VID) precede the
323 * resubmit action, then the flow is updated with the new values.
324 *
325 * Following the lookup, the original in_port is restored.
326 *
327 * If the modified flow matched in the flow table, then the corresponding
328 * actions are executed. Afterward, actions following the resubmit in the
329 * original set of actions, if any, are executed; any changes made to the
330 * packet (e.g. changes to VLAN) by secondary actions persist when those
331 * actions are executed, although the original in_port is restored.
332 *
333 * Resubmit actions may be used any number of times within a set of actions.
334 *
335 * Resubmit actions may nest to an implementation-defined depth. Beyond this
336 * implementation-defined depth, further resubmit actions are simply ignored.
337 *
338 * NXAST_RESUBMIT ignores 'table' and 'pad'. NXAST_RESUBMIT_TABLE requires
339 * 'pad' to be all-bits-zero.
340 *
341 * Open vSwitch 1.0.1 and earlier did not support recursion. Open vSwitch
342 * before 1.2.90 did not support NXAST_RESUBMIT_TABLE.
343 */
344 struct nx_action_resubmit {
345 ovs_be16 type; /* OFPAT_VENDOR. */
346 ovs_be16 len; /* Length is 16. */
347 ovs_be32 vendor; /* NX_VENDOR_ID. */
348 ovs_be16 subtype; /* NXAST_RESUBMIT. */
349 ovs_be16 in_port; /* New in_port for checking flow table. */
350 uint8_t table; /* NXAST_RESUBMIT_TABLE: table to use. */
351 uint8_t pad[3];
352 };
353 OFP_ASSERT(sizeof(struct nx_action_resubmit) == 16);
354
355 /* Action structure for NXAST_SET_TUNNEL.
356 *
357 * Sets the encapsulating tunnel ID to a 32-bit value. The most-significant 32
358 * bits of the tunnel ID are set to 0. */
359 struct nx_action_set_tunnel {
360 ovs_be16 type; /* OFPAT_VENDOR. */
361 ovs_be16 len; /* Length is 16. */
362 ovs_be32 vendor; /* NX_VENDOR_ID. */
363 ovs_be16 subtype; /* NXAST_SET_TUNNEL. */
364 uint8_t pad[2];
365 ovs_be32 tun_id; /* Tunnel ID. */
366 };
367 OFP_ASSERT(sizeof(struct nx_action_set_tunnel) == 16);
368
369 /* Action structure for NXAST_SET_TUNNEL64.
370 *
371 * Sets the encapsulating tunnel ID to a 64-bit value. */
372 struct nx_action_set_tunnel64 {
373 ovs_be16 type; /* OFPAT_VENDOR. */
374 ovs_be16 len; /* Length is 16. */
375 ovs_be32 vendor; /* NX_VENDOR_ID. */
376 ovs_be16 subtype; /* NXAST_SET_TUNNEL64. */
377 uint8_t pad[6];
378 ovs_be64 tun_id; /* Tunnel ID. */
379 };
380 OFP_ASSERT(sizeof(struct nx_action_set_tunnel64) == 24);
381
382 /* Action structure for NXAST_SET_QUEUE.
383 *
384 * Set the queue that should be used when packets are output. This is similar
385 * to the OpenFlow OFPAT_ENQUEUE action, but does not take the output port as
386 * an argument. This allows the queue to be defined before the port is
387 * known. */
388 struct nx_action_set_queue {
389 ovs_be16 type; /* OFPAT_VENDOR. */
390 ovs_be16 len; /* Length is 16. */
391 ovs_be32 vendor; /* NX_VENDOR_ID. */
392 ovs_be16 subtype; /* NXAST_SET_QUEUE. */
393 uint8_t pad[2];
394 ovs_be32 queue_id; /* Where to enqueue packets. */
395 };
396 OFP_ASSERT(sizeof(struct nx_action_set_queue) == 16);
397
398 /* Action structure for NXAST_POP_QUEUE.
399 *
400 * Restores the queue to the value it was before any NXAST_SET_QUEUE actions
401 * were used. Only the original queue can be restored this way; no stack is
402 * maintained. */
403 struct nx_action_pop_queue {
404 ovs_be16 type; /* OFPAT_VENDOR. */
405 ovs_be16 len; /* Length is 16. */
406 ovs_be32 vendor; /* NX_VENDOR_ID. */
407 ovs_be16 subtype; /* NXAST_POP_QUEUE. */
408 uint8_t pad[6];
409 };
410 OFP_ASSERT(sizeof(struct nx_action_pop_queue) == 16);
411
412 /* Action structure for NXAST_REG_MOVE.
413 *
414 * Copies src[src_ofs:src_ofs+n_bits] to dst[dst_ofs:dst_ofs+n_bits], where
415 * a[b:c] denotes the bits within 'a' numbered 'b' through 'c' (not including
416 * bit 'c'). Bit numbering starts at 0 for the least-significant bit, 1 for
417 * the next most significant bit, and so on.
418 *
419 * 'src' and 'dst' are nxm_header values with nxm_hasmask=0. (It doesn't make
420 * sense to use nxm_hasmask=1 because the action does not do any kind of
421 * matching; it uses the actual value of a field.)
422 *
423 * The following nxm_header values are potentially acceptable as 'src':
424 *
425 * - NXM_OF_IN_PORT
426 * - NXM_OF_ETH_DST
427 * - NXM_OF_ETH_SRC
428 * - NXM_OF_ETH_TYPE
429 * - NXM_OF_VLAN_TCI
430 * - NXM_OF_IP_TOS
431 * - NXM_OF_IP_PROTO
432 * - NXM_OF_IP_SRC
433 * - NXM_OF_IP_DST
434 * - NXM_OF_TCP_SRC
435 * - NXM_OF_TCP_DST
436 * - NXM_OF_UDP_SRC
437 * - NXM_OF_UDP_DST
438 * - NXM_OF_ICMP_TYPE
439 * - NXM_OF_ICMP_CODE
440 * - NXM_OF_ARP_OP
441 * - NXM_OF_ARP_SPA
442 * - NXM_OF_ARP_TPA
443 * - NXM_NX_TUN_ID
444 * - NXM_NX_ARP_SHA
445 * - NXM_NX_ARP_THA
446 * - NXM_NX_ICMPV6_TYPE
447 * - NXM_NX_ICMPV6_CODE
448 * - NXM_NX_ND_SLL
449 * - NXM_NX_ND_TLL
450 * - NXM_NX_REG(idx) for idx in the switch's accepted range.
451 *
452 * The following nxm_header values are potentially acceptable as 'dst':
453 *
454 * - NXM_OF_ETH_DST
455 * - NXM_OF_ETH_SRC
456 * - NXM_OF_IP_TOS
457 * - NXM_OF_IP_SRC
458 * - NXM_OF_IP_DST
459 * - NXM_OF_TCP_SRC
460 * - NXM_OF_TCP_DST
461 * - NXM_OF_UDP_SRC
462 * - NXM_OF_UDP_DST
463 * Modifying any of the above fields changes the corresponding packet
464 * header.
465 *
466 * - NXM_NX_REG(idx) for idx in the switch's accepted range.
467 *
468 * - NXM_OF_VLAN_TCI. Modifying this field's value has side effects on the
469 * packet's 802.1Q header. Setting a value with CFI=0 removes the 802.1Q
470 * header (if any), ignoring the other bits. Setting a value with CFI=1
471 * adds or modifies the 802.1Q header appropriately, setting the TCI field
472 * to the field's new value (with the CFI bit masked out).
473 *
474 * - NXM_NX_TUN_ID. Modifying this value modifies the tunnel ID used for the
475 * packet's next tunnel encapsulation.
476 *
477 * A given nxm_header value may be used as 'src' or 'dst' only on a flow whose
478 * nx_match satisfies its prerequisites. For example, NXM_OF_IP_TOS may be
479 * used only if the flow's nx_match includes an nxm_entry that specifies
480 * nxm_type=NXM_OF_ETH_TYPE, nxm_hasmask=0, and nxm_value=0x0800.
481 *
482 * The switch will reject actions for which src_ofs+n_bits is greater than the
483 * width of 'src' or dst_ofs+n_bits is greater than the width of 'dst' with
484 * error type OFPET_BAD_ACTION, code OFPBAC_BAD_ARGUMENT.
485 */
486 struct nx_action_reg_move {
487 ovs_be16 type; /* OFPAT_VENDOR. */
488 ovs_be16 len; /* Length is 16. */
489 ovs_be32 vendor; /* NX_VENDOR_ID. */
490 ovs_be16 subtype; /* NXAST_REG_MOVE. */
491 ovs_be16 n_bits; /* Number of bits. */
492 ovs_be16 src_ofs; /* Starting bit offset in source. */
493 ovs_be16 dst_ofs; /* Starting bit offset in destination. */
494 ovs_be32 src; /* Source register. */
495 ovs_be32 dst; /* Destination register. */
496 };
497 OFP_ASSERT(sizeof(struct nx_action_reg_move) == 24);
498
499 /* Action structure for NXAST_REG_LOAD.
500 *
501 * Copies value[0:n_bits] to dst[ofs:ofs+n_bits], where a[b:c] denotes the bits
502 * within 'a' numbered 'b' through 'c' (not including bit 'c'). Bit numbering
503 * starts at 0 for the least-significant bit, 1 for the next most significant
504 * bit, and so on.
505 *
506 * 'dst' is an nxm_header with nxm_hasmask=0. See the documentation for
507 * NXAST_REG_MOVE, above, for the permitted fields and for the side effects of
508 * loading them.
509 *
510 * The 'ofs' and 'n_bits' fields are combined into a single 'ofs_nbits' field
511 * to avoid enlarging the structure by another 8 bytes. To allow 'n_bits' to
512 * take a value between 1 and 64 (inclusive) while taking up only 6 bits, it is
513 * also stored as one less than its true value:
514 *
515 * 15 6 5 0
516 * +------------------------------+------------------+
517 * | ofs | n_bits - 1 |
518 * +------------------------------+------------------+
519 *
520 * The switch will reject actions for which ofs+n_bits is greater than the
521 * width of 'dst', or in which any bits in 'value' with value 2**n_bits or
522 * greater are set to 1, with error type OFPET_BAD_ACTION, code
523 * OFPBAC_BAD_ARGUMENT.
524 */
525 struct nx_action_reg_load {
526 ovs_be16 type; /* OFPAT_VENDOR. */
527 ovs_be16 len; /* Length is 16. */
528 ovs_be32 vendor; /* NX_VENDOR_ID. */
529 ovs_be16 subtype; /* NXAST_REG_LOAD. */
530 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
531 ovs_be32 dst; /* Destination register. */
532 ovs_be64 value; /* Immediate value. */
533 };
534 OFP_ASSERT(sizeof(struct nx_action_reg_load) == 24);
535
536 /* Action structure for NXAST_NOTE.
537 *
538 * This action has no effect. It is variable length. The switch does not
539 * attempt to interpret the user-defined 'note' data in any way. A controller
540 * can use this action to attach arbitrary metadata to a flow.
541 *
542 * This action might go away in the future.
543 */
544 struct nx_action_note {
545 ovs_be16 type; /* OFPAT_VENDOR. */
546 ovs_be16 len; /* A multiple of 8, but at least 16. */
547 ovs_be32 vendor; /* NX_VENDOR_ID. */
548 ovs_be16 subtype; /* NXAST_NOTE. */
549 uint8_t note[6]; /* Start of user-defined data. */
550 /* Possibly followed by additional user-defined data. */
551 };
552 OFP_ASSERT(sizeof(struct nx_action_note) == 16);
553
554 /* Action structure for NXAST_MULTIPATH.
555 *
556 * This action performs the following steps in sequence:
557 *
558 * 1. Hashes the fields designated by 'fields', one of NX_HASH_FIELDS_*.
559 * Refer to the definition of "enum nx_mp_fields" for details.
560 *
561 * The 'basis' value is used as a universal hash parameter, that is,
562 * different values of 'basis' yield different hash functions. The
563 * particular universal hash function used is implementation-defined.
564 *
565 * The hashed fields' values are drawn from the current state of the
566 * flow, including all modifications that have been made by actions up to
567 * this point.
568 *
569 * 2. Applies the multipath link choice algorithm specified by 'algorithm',
570 * one of NX_MP_ALG_*. Refer to the definition of "enum nx_mp_algorithm"
571 * for details.
572 *
573 * The output of the algorithm is 'link', an unsigned integer less than
574 * or equal to 'max_link'.
575 *
576 * Some algorithms use 'arg' as an additional argument.
577 *
578 * 3. Stores 'link' in dst[ofs:ofs+n_bits]. The format and semantics of
579 * 'dst' and 'ofs_nbits' are similar to those for the NXAST_REG_LOAD
580 * action.
581 *
582 * The switch will reject actions that have an unknown 'fields', or an unknown
583 * 'algorithm', or in which ofs+n_bits is greater than the width of 'dst', or
584 * in which 'max_link' is greater than or equal to 2**n_bits, with error type
585 * OFPET_BAD_ACTION, code OFPBAC_BAD_ARGUMENT.
586 */
587 struct nx_action_multipath {
588 ovs_be16 type; /* OFPAT_VENDOR. */
589 ovs_be16 len; /* Length is 32. */
590 ovs_be32 vendor; /* NX_VENDOR_ID. */
591 ovs_be16 subtype; /* NXAST_MULTIPATH. */
592
593 /* What fields to hash and how. */
594 ovs_be16 fields; /* One of NX_HASH_FIELDS_*. */
595 ovs_be16 basis; /* Universal hash parameter. */
596 ovs_be16 pad0;
597
598 /* Multipath link choice algorithm to apply to hash value. */
599 ovs_be16 algorithm; /* One of NX_MP_ALG_*. */
600 ovs_be16 max_link; /* Number of output links, minus 1. */
601 ovs_be32 arg; /* Algorithm-specific argument. */
602 ovs_be16 pad1;
603
604 /* Where to store the result. */
605 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
606 ovs_be32 dst; /* Destination. */
607 };
608 OFP_ASSERT(sizeof(struct nx_action_multipath) == 32);
609
610 /* NXAST_MULTIPATH: Multipath link choice algorithm to apply.
611 *
612 * In the descriptions below, 'n_links' is max_link + 1. */
613 enum nx_mp_algorithm {
614 /* link = hash(flow) % n_links.
615 *
616 * Redistributes all traffic when n_links changes. O(1) performance. See
617 * RFC 2992.
618 *
619 * Use UINT16_MAX for max_link to get a raw hash value. */
620 NX_MP_ALG_MODULO_N,
621
622 /* link = hash(flow) / (MAX_HASH / n_links).
623 *
624 * Redistributes between one-quarter and one-half of traffic when n_links
625 * changes. O(1) performance. See RFC 2992.
626 */
627 NX_MP_ALG_HASH_THRESHOLD,
628
629 /* for i in [0,n_links):
630 * weights[i] = hash(flow, i)
631 * link = { i such that weights[i] >= weights[j] for all j != i }
632 *
633 * Redistributes 1/n_links of traffic when n_links changes. O(n_links)
634 * performance. If n_links is greater than a threshold (currently 64, but
635 * subject to change), Open vSwitch will substitute another algorithm
636 * automatically. See RFC 2992. */
637 NX_MP_ALG_HRW, /* Highest Random Weight. */
638
639 /* i = 0
640 * repeat:
641 * i = i + 1
642 * link = hash(flow, i) % arg
643 * while link > max_link
644 *
645 * Redistributes 1/n_links of traffic when n_links changes. O(1)
646 * performance when arg/max_link is bounded by a constant.
647 *
648 * Redistributes all traffic when arg changes.
649 *
650 * arg must be greater than max_link and for best performance should be no
651 * more than approximately max_link * 2. If arg is outside the acceptable
652 * range, Open vSwitch will automatically substitute the least power of 2
653 * greater than max_link.
654 *
655 * This algorithm is specific to Open vSwitch.
656 */
657 NX_MP_ALG_ITER_HASH /* Iterative Hash. */
658 };
659 \f
660 /* Action structure for NXAST_LEARN.
661 *
662 * This action adds or modifies a flow in an OpenFlow table, similar to
663 * OFPT_FLOW_MOD with OFPFC_MODIFY_STRICT as 'command'. The new flow has the
664 * specified idle timeout, hard timeout, priority, cookie, and flags. The new
665 * flow's match criteria and actions are built by applying each of the series
666 * of flow_mod_spec elements included as part of the action.
667 *
668 * A flow_mod_spec starts with a 16-bit header. A header that is all-bits-0 is
669 * a no-op used for padding the action as a whole to a multiple of 8 bytes in
670 * length. Otherwise, the flow_mod_spec can be thought of as copying 'n_bits'
671 * bits from a source to a destination. In this case, the header contains
672 * multiple fields:
673 *
674 * 15 14 13 12 11 10 0
675 * +------+---+------+---------------------------------+
676 * | 0 |src| dst | n_bits |
677 * +------+---+------+---------------------------------+
678 *
679 * The meaning and format of a flow_mod_spec depends on 'src' and 'dst'. The
680 * following table summarizes the meaning of each possible combination.
681 * Details follow the table:
682 *
683 * src dst meaning
684 * --- --- ----------------------------------------------------------
685 * 0 0 Add match criteria based on value in a field.
686 * 1 0 Add match criteria based on an immediate value.
687 * 0 1 Add NXAST_REG_LOAD action to copy field into a different field.
688 * 1 1 Add NXAST_REG_LOAD action to load immediate value into a field.
689 * 0 2 Add OFPAT_OUTPUT action to output to port from specified field.
690 * All other combinations are undefined and not allowed.
691 *
692 * The flow_mod_spec header is followed by a source specification and a
693 * destination specification. The format and meaning of the source
694 * specification depends on 'src':
695 *
696 * - If 'src' is 0, the source bits are taken from a field in the flow to
697 * which this action is attached. (This should be a wildcarded field. If
698 * its value is fully specified then the source bits being copied have
699 * constant values.)
700 *
701 * The source specification is an ovs_be32 'field' and an ovs_be16 'ofs'.
702 * 'field' is an nxm_header with nxm_hasmask=0, and 'ofs' the starting bit
703 * offset within that field. The source bits are field[ofs:ofs+n_bits-1].
704 * 'field' and 'ofs' are subject to the same restrictions as the source
705 * field in NXAST_REG_MOVE.
706 *
707 * - If 'src' is 1, the source bits are a constant value. The source
708 * specification is (n_bits+15)/16*2 bytes long. Taking those bytes as a
709 * number in network order, the source bits are the 'n_bits'
710 * least-significant bits. The switch will report an error if other bits
711 * in the constant are nonzero.
712 *
713 * The flow_mod_spec destination specification, for 'dst' of 0 or 1, is an
714 * ovs_be32 'field' and an ovs_be16 'ofs'. 'field' is an nxm_header with
715 * nxm_hasmask=0 and 'ofs' is a starting bit offset within that field. The
716 * meaning of the flow_mod_spec depends on 'dst':
717 *
718 * - If 'dst' is 0, the flow_mod_spec specifies match criteria for the new
719 * flow. The new flow matches only if bits field[ofs:ofs+n_bits-1] in a
720 * packet equal the source bits. 'field' may be any nxm_header with
721 * nxm_hasmask=0 that is allowed in NXT_FLOW_MOD.
722 *
723 * Order is significant. Earlier flow_mod_specs must satisfy any
724 * prerequisites for matching fields specified later, by copying constant
725 * values into prerequisite fields.
726 *
727 * The switch will reject flow_mod_specs that do not satisfy NXM masking
728 * restrictions.
729 *
730 * - If 'dst' is 1, the flow_mod_spec specifies an NXAST_REG_LOAD action for
731 * the new flow. The new flow copies the source bits into
732 * field[ofs:ofs+n_bits-1]. Actions are executed in the same order as the
733 * flow_mod_specs.
734 *
735 * The flow_mod_spec destination spec for 'dst' of 2 (when 'src' is 0) is
736 * empty. It has the following meaning:
737 *
738 * - The flow_mod_spec specifies an OFPAT_OUTPUT action for the new flow.
739 * The new flow outputs to the OpenFlow port specified by the source field.
740 * Of the special output ports with value OFPP_MAX or larger, OFPP_IN_PORT,
741 * OFPP_FLOOD, OFPP_LOCAL, and OFPP_ALL are supported. Other special ports
742 * may not be used.
743 *
744 * Resource Management
745 * -------------------
746 *
747 * A switch has a finite amount of flow table space available for learning.
748 * When this space is exhausted, no new learning table entries will be learned
749 * until some existing flow table entries expire. The controller should be
750 * prepared to handle this by flooding (which can be implemented as a
751 * low-priority flow).
752 *
753 * Examples
754 * --------
755 *
756 * The following examples give a prose description of the flow_mod_specs along
757 * with informal notation for how those would be represented and a hex dump of
758 * the bytes that would be required.
759 *
760 * These examples could work with various nx_action_learn parameters. Typical
761 * values would be idle_timeout=OFP_FLOW_PERMANENT, hard_timeout=60,
762 * priority=OFP_DEFAULT_PRIORITY, flags=0, table_id=10.
763 *
764 * 1. Learn input port based on the source MAC, with lookup into
765 * NXM_NX_REG1[16:31] by resubmit to in_port=99:
766 *
767 * Match on in_port=99:
768 * ovs_be16(src=1, dst=0, n_bits=16), 20 10
769 * ovs_be16(99), 00 63
770 * ovs_be32(NXM_OF_IN_PORT), ovs_be16(0) 00 00 00 02 00 00
771 *
772 * Match Ethernet destination on Ethernet source from packet:
773 * ovs_be16(src=0, dst=0, n_bits=48), 00 30
774 * ovs_be32(NXM_OF_ETH_SRC), ovs_be16(0) 00 00 04 06 00 00
775 * ovs_be32(NXM_OF_ETH_DST), ovs_be16(0) 00 00 02 06 00 00
776 *
777 * Set NXM_NX_REG1[16:31] to the packet's input port:
778 * ovs_be16(src=0, dst=1, n_bits=16), 08 10
779 * ovs_be32(NXM_OF_IN_PORT), ovs_be16(0) 00 00 00 02 00 00
780 * ovs_be32(NXM_NX_REG1), ovs_be16(16) 00 01 02 04 00 10
781 *
782 * Given a packet that arrived on port A with Ethernet source address B,
783 * this would set up the flow "in_port=99, dl_dst=B,
784 * actions=load:A->NXM_NX_REG1[16..31]".
785 *
786 * In syntax accepted by ovs-ofctl, this action is: learn(in_port=99,
787 * NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[], NXM_OF_IN_PORT[]->NXM_NX_REG1[16..31])
788 *
789 * 2. Output to input port based on the source MAC and VLAN VID, with lookup
790 * into NXM_NX_REG1[16:31]:
791 *
792 * Match on same VLAN ID as packet:
793 * ovs_be16(src=0, dst=0, n_bits=12), 00 0c
794 * ovs_be32(NXM_OF_VLAN_TCI), ovs_be16(0) 00 00 08 02 00 00
795 * ovs_be32(NXM_OF_VLAN_TCI), ovs_be16(0) 00 00 08 02 00 00
796 *
797 * Match Ethernet destination on Ethernet source from packet:
798 * ovs_be16(src=0, dst=0, n_bits=48), 00 30
799 * ovs_be32(NXM_OF_ETH_SRC), ovs_be16(0) 00 00 04 06 00 00
800 * ovs_be32(NXM_OF_ETH_DST), ovs_be16(0) 00 00 02 06 00 00
801 *
802 * Output to the packet's input port:
803 * ovs_be16(src=0, dst=2, n_bits=16), 10 10
804 * ovs_be32(NXM_OF_IN_PORT), ovs_be16(0) 00 00 00 02 00 00
805 *
806 * Given a packet that arrived on port A with Ethernet source address B in
807 * VLAN C, this would set up the flow "dl_dst=B, vlan_vid=C,
808 * actions=output:A".
809 *
810 * In syntax accepted by ovs-ofctl, this action is:
811 * learn(NXM_OF_VLAN_TCI[0..11], NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[],
812 * output:NXM_OF_IN_PORT[])
813 *
814 * 3. Here's a recipe for a very simple-minded MAC learning switch. It uses a
815 * 10-second MAC expiration time to make it easier to see what's going on
816 *
817 * ovs-vsctl del-controller br0
818 * ovs-ofctl del-flows br0
819 * ovs-ofctl add-flow br0 "table=0 actions=learn(table=1, \
820 hard_timeout=10, NXM_OF_VLAN_TCI[0..11], \
821 NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[], \
822 output:NXM_OF_IN_PORT[]), resubmit(,1)"
823 * ovs-ofctl add-flow br0 "table=1 priority=0 actions=flood"
824 *
825 * You can then dump the MAC learning table with:
826 *
827 * ovs-ofctl dump-flows br0 table=1
828 *
829 * Usage Advice
830 * ------------
831 *
832 * For best performance, segregate learned flows into a table that is not used
833 * for any other flows except possibly for a lowest-priority "catch-all" flow
834 * (a flow with no match criteria). If different learning actions specify
835 * different match criteria, use different tables for the learned flows.
836 *
837 * The meaning of 'hard_timeout' and 'idle_timeout' can be counterintuitive.
838 * These timeouts apply to the flow that is added, which means that a flow with
839 * an idle timeout will expire when no traffic has been sent *to* the learned
840 * address. This is not usually the intent in MAC learning; instead, we want
841 * the MAC learn entry to expire when no traffic has been sent *from* the
842 * learned address. Use a hard timeout for that.
843 */
844 struct nx_action_learn {
845 ovs_be16 type; /* OFPAT_VENDOR. */
846 ovs_be16 len; /* At least 24. */
847 ovs_be32 vendor; /* NX_VENDOR_ID. */
848 ovs_be16 subtype; /* NXAST_LEARN. */
849 ovs_be16 idle_timeout; /* Idle time before discarding (seconds). */
850 ovs_be16 hard_timeout; /* Max time before discarding (seconds). */
851 ovs_be16 priority; /* Priority level of flow entry. */
852 ovs_be64 cookie; /* Cookie for new flow. */
853 ovs_be16 flags; /* Either 0 or OFPFF_SEND_FLOW_REM. */
854 uint8_t table_id; /* Table to insert flow entry. */
855 uint8_t pad[5]; /* Must be zero. */
856 /* Followed by a sequence of flow_mod_spec elements, as described above,
857 * until the end of the action is reached. */
858 };
859 OFP_ASSERT(sizeof(struct nx_action_learn) == 32);
860
861 #define NX_LEARN_N_BITS_MASK 0x3ff
862
863 #define NX_LEARN_SRC_FIELD (0 << 13) /* Copy from field. */
864 #define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
865 #define NX_LEARN_SRC_MASK (1 << 13)
866
867 #define NX_LEARN_DST_MATCH (0 << 11) /* Add match criterion. */
868 #define NX_LEARN_DST_LOAD (1 << 11) /* Add NXAST_REG_LOAD action. */
869 #define NX_LEARN_DST_OUTPUT (2 << 11) /* Add OFPAT_OUTPUT action. */
870 #define NX_LEARN_DST_RESERVED (3 << 11) /* Not yet defined. */
871 #define NX_LEARN_DST_MASK (3 << 11)
872 \f
873 /* Action structure for NXAST_AUTOPATH.
874 *
875 * This action performs the following steps in sequence:
876 *
877 * 1. Hashes the flow using an implementation-defined hash function.
878 *
879 * The hashed fields' values are drawn from the current state of the
880 * flow, including all modifications that have been made by actions up to
881 * this point.
882 *
883 * 2. Selects an OpenFlow 'port'.
884 *
885 * 'port' is selected in an implementation-defined manner, taking into
886 * account 'id' and the hash value calculated in step 1.
887 *
888 * Generally a switch will have been configured with a set of ports that
889 * may be chosen given 'id'. The switch may take into account any number
890 * of factors when choosing 'port' from its configured set. Factors may
891 * include carrier, load, and the results of configuration protocols such
892 * as LACP.
893 *
894 * 3. Stores 'port' in dst[ofs:ofs+n_bits].
895 *
896 * The format and semantics of 'dst' and 'ofs_nbits' are similar to those
897 * for the NXAST_REG_LOAD action.
898 *
899 * The switch will reject actions in which ofs+n_bits is greater than the width
900 * of 'dst', with error type OFPET_BAD_ACTION, code OFPBAC_BAD_ARGUMENT.
901 */
902 struct nx_action_autopath {
903 ovs_be16 type; /* OFPAT_VENDOR. */
904 ovs_be16 len; /* Length is 20. */
905 ovs_be32 vendor; /* NX_VENDOR_ID. */
906 ovs_be16 subtype; /* NXAST_AUTOPATH. */
907
908 /* Where to store the result. */
909 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
910 ovs_be32 dst; /* Destination. */
911
912 ovs_be32 id; /* Autopath ID. */
913 ovs_be32 pad;
914 };
915 OFP_ASSERT(sizeof(struct nx_action_autopath) == 24);
916 \f
917 /* Action structure for NXAST_BUNDLE and NXAST_BUNDLE_LOAD.
918 *
919 * The bundle actions choose a slave from a supplied list of options.
920 * NXAST_BUNDLE outputs to its selection. NXAST_BUNDLE_LOAD writes its
921 * selection to a register.
922 *
923 * The list of possible slaves follows the nx_action_bundle structure. The size
924 * of each slave is governed by its type as indicated by the 'slave_type'
925 * parameter. The list of slaves should be padded at its end with zeros to make
926 * the total length of the action a multiple of 8.
927 *
928 * Switches infer from the 'slave_type' parameter the size of each slave. All
929 * implementations must support the NXM_OF_IN_PORT 'slave_type' which indicates
930 * that the slaves are OpenFlow port numbers with NXM_LENGTH(NXM_OF_IN_PORT) ==
931 * 2 byte width. Switches should reject actions which indicate unknown or
932 * unsupported slave types.
933 *
934 * Switches use a strategy dictated by the 'algorithm' parameter to choose a
935 * slave. If the switch does not support the specified 'algorithm' parameter,
936 * it should reject the action.
937 *
938 * Some slave selection strategies require the use of a hash function, in which
939 * case the 'fields' and 'basis' parameters should be populated. The 'fields'
940 * parameter (one of NX_HASH_FIELDS_*) designates which parts of the flow to
941 * hash. Refer to the definition of "enum nx_hash_fields" for details. The
942 * 'basis' parameter is used as a universal hash parameter. Different values
943 * of 'basis' yield different hash results.
944 *
945 * The 'zero' parameter at the end of the action structure is reserved for
946 * future use. Switches are required to reject actions which have nonzero
947 * bytes in the 'zero' field.
948 *
949 * NXAST_BUNDLE actions should have 'ofs_nbits' and 'dst' zeroed. Switches
950 * should reject actions which have nonzero bytes in either of these fields.
951 *
952 * NXAST_BUNDLE_LOAD stores the OpenFlow port number of the selected slave in
953 * dst[ofs:ofs+n_bits]. The format and semantics of 'dst' and 'ofs_nbits' are
954 * similar to those for the NXAST_REG_LOAD action. */
955 struct nx_action_bundle {
956 ovs_be16 type; /* OFPAT_VENDOR. */
957 ovs_be16 len; /* Length including slaves. */
958 ovs_be32 vendor; /* NX_VENDOR_ID. */
959 ovs_be16 subtype; /* NXAST_BUNDLE. */
960
961 /* Slave choice algorithm to apply to hash value. */
962 ovs_be16 algorithm; /* One of NX_BD_ALG_*. */
963
964 /* What fields to hash and how. */
965 ovs_be16 fields; /* One of NX_BD_FIELDS_*. */
966 ovs_be16 basis; /* Universal hash parameter. */
967
968 ovs_be32 slave_type; /* NXM_OF_IN_PORT. */
969 ovs_be16 n_slaves; /* Number of slaves. */
970
971 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
972 ovs_be32 dst; /* Destination. */
973
974 uint8_t zero[4]; /* Reserved. Must be zero. */
975 };
976 OFP_ASSERT(sizeof(struct nx_action_bundle) == 32);
977
978 /* NXAST_BUNDLE: Bundle slave choice algorithm to apply.
979 *
980 * In the descriptions below, 'slaves' is the list of possible slaves in the
981 * order they appear in the OpenFlow action. */
982 enum nx_bd_algorithm {
983 /* Chooses the first live slave listed in the bundle.
984 *
985 * O(n_slaves) performance. */
986 NX_BD_ALG_ACTIVE_BACKUP,
987
988 /* for i in [0,n_slaves):
989 * weights[i] = hash(flow, i)
990 * slave = { slaves[i] such that weights[i] >= weights[j] for all j != i }
991 *
992 * Redistributes 1/n_slaves of traffic when a slave's liveness changes.
993 * O(n_slaves) performance.
994 *
995 * Uses the 'fields' and 'basis' parameters. */
996 NX_BD_ALG_HRW /* Highest Random Weight. */
997 };
998 \f
999 /* Action structure for NXAST_OUTPUT_REG.
1000 *
1001 * Outputs to the OpenFlow port number written to src[ofs:ofs+nbits].
1002 *
1003 * The format and semantics of 'src' and 'ofs_nbits' are similar to those for
1004 * the NXAST_REG_LOAD action.
1005 *
1006 * The acceptable nxm_header values for 'src' are the same as the acceptable
1007 * nxm_header values for the 'src' field of NXAST_REG_MOVE.
1008 *
1009 * The 'max_len' field indicates the number of bytes to send when the chosen
1010 * port is OFPP_CONTROLLER. Its semantics are equivalent to the 'max_len'
1011 * field of OFPAT_OUTPUT.
1012 *
1013 * The 'zero' field is required to be zeroed for forward compatibility. */
1014 struct nx_action_output_reg {
1015 ovs_be16 type; /* OFPAT_VENDOR. */
1016 ovs_be16 len; /* 24. */
1017 ovs_be32 vendor; /* NX_VENDOR_ID. */
1018 ovs_be16 subtype; /* NXAST_OUTPUT_REG. */
1019
1020 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
1021 ovs_be32 src; /* Source. */
1022
1023 ovs_be16 max_len; /* Max length to send to controller. */
1024
1025 uint8_t zero[6]; /* Reserved, must be zero. */
1026 };
1027 OFP_ASSERT(sizeof(struct nx_action_output_reg) == 24);
1028 \f
1029 /* Flexible flow specifications (aka NXM = Nicira Extended Match).
1030 *
1031 * OpenFlow 1.0 has "struct ofp_match" for specifying flow matches. This
1032 * structure is fixed-length and hence difficult to extend. This section
1033 * describes a more flexible, variable-length flow match, called "nx_match" for
1034 * short, that is also supported by Open vSwitch. This section also defines a
1035 * replacement for each OpenFlow message that includes struct ofp_match.
1036 *
1037 *
1038 * Format
1039 * ======
1040 *
1041 * An nx_match is a sequence of zero or more "nxm_entry"s, which are
1042 * type-length-value (TLV) entries, each 5 to 259 (inclusive) bytes long.
1043 * "nxm_entry"s are not aligned on or padded to any multibyte boundary. The
1044 * first 4 bytes of an nxm_entry are its "header", followed by the entry's
1045 * "body".
1046 *
1047 * An nxm_entry's header is interpreted as a 32-bit word in network byte order:
1048 *
1049 * |<-------------------- nxm_type ------------------>|
1050 * | |
1051 * |31 16 15 9| 8 7 0
1052 * +----------------------------------+---------------+--+------------------+
1053 * | nxm_vendor | nxm_field |hm| nxm_length |
1054 * +----------------------------------+---------------+--+------------------+
1055 *
1056 * The most-significant 23 bits of the header are collectively "nxm_type".
1057 * Bits 16...31 are "nxm_vendor", one of the NXM_VENDOR_* values below. Bits
1058 * 9...15 are "nxm_field", which is a vendor-specific value. nxm_type normally
1059 * designates a protocol header, such as the Ethernet type, but it can also
1060 * refer to packet metadata, such as the switch port on which a packet arrived.
1061 *
1062 * Bit 8 is "nxm_hasmask" (labeled "hm" above for space reasons). The meaning
1063 * of this bit is explained later.
1064 *
1065 * The least-significant 8 bits are "nxm_length", a positive integer. The
1066 * length of the nxm_entry, including the header, is exactly 4 + nxm_length
1067 * bytes.
1068 *
1069 * For a given nxm_vendor, nxm_field, and nxm_hasmask value, nxm_length is a
1070 * constant. It is included only to allow software to minimally parse
1071 * "nxm_entry"s of unknown types. (Similarly, for a given nxm_vendor,
1072 * nxm_field, and nxm_length, nxm_hasmask is a constant.)
1073 *
1074 *
1075 * Semantics
1076 * =========
1077 *
1078 * A zero-length nx_match (one with no "nxm_entry"s) matches every packet.
1079 *
1080 * An nxm_entry places a constraint on the packets matched by the nx_match:
1081 *
1082 * - If nxm_hasmask is 0, the nxm_entry's body contains a value for the
1083 * field, called "nxm_value". The nx_match matches only packets in which
1084 * the field equals nxm_value.
1085 *
1086 * - If nxm_hasmask is 1, then the nxm_entry's body contains a value for the
1087 * field (nxm_value), followed by a bitmask of the same length as the
1088 * value, called "nxm_mask". For each 1-bit in position J in nxm_mask, the
1089 * nx_match matches only packets for which bit J in the given field's value
1090 * matches bit J in nxm_value. A 0-bit in nxm_mask causes the
1091 * corresponding bits in nxm_value and the field's value to be ignored.
1092 * (The sense of the nxm_mask bits is the opposite of that used by the
1093 * "wildcards" member of struct ofp_match.)
1094 *
1095 * When nxm_hasmask is 1, nxm_length is always even.
1096 *
1097 * An all-zero-bits nxm_mask is equivalent to omitting the nxm_entry
1098 * entirely. An all-one-bits nxm_mask is equivalent to specifying 0 for
1099 * nxm_hasmask.
1100 *
1101 * When there are multiple "nxm_entry"s, all of the constraints must be met.
1102 *
1103 *
1104 * Mask Restrictions
1105 * =================
1106 *
1107 * Masks may be restricted:
1108 *
1109 * - Some nxm_types may not support masked wildcards, that is, nxm_hasmask
1110 * must always be 0 when these fields are specified. For example, the
1111 * field that identifies the port on which a packet was received may not be
1112 * masked.
1113 *
1114 * - Some nxm_types that do support masked wildcards may only support certain
1115 * nxm_mask patterns. For example, fields that have IPv4 address values
1116 * may be restricted to CIDR masks.
1117 *
1118 * These restrictions should be noted in specifications for individual fields.
1119 * A switch may accept an nxm_hasmask or nxm_mask value that the specification
1120 * disallows, if the switch correctly implements support for that nxm_hasmask
1121 * or nxm_mask value. A switch must reject an attempt to set up a flow that
1122 * contains a nxm_hasmask or nxm_mask value that it does not support.
1123 *
1124 *
1125 * Prerequisite Restrictions
1126 * =========================
1127 *
1128 * The presence of an nxm_entry with a given nxm_type may be restricted based
1129 * on the presence of or values of other "nxm_entry"s. For example:
1130 *
1131 * - An nxm_entry for nxm_type=NXM_OF_IP_TOS is allowed only if it is
1132 * preceded by another entry with nxm_type=NXM_OF_ETH_TYPE, nxm_hasmask=0,
1133 * and nxm_value=0x0800. That is, matching on the IP source address is
1134 * allowed only if the Ethernet type is explicitly set to IP.
1135 *
1136 * - An nxm_entry for nxm_type=NXM_OF_TCP_SRC is allowed only if it is
1137 * preceded by an entry with nxm_type=NXM_OF_ETH_TYPE, nxm_hasmask=0, and
1138 * nxm_value either 0x0800 or 0x86dd, and another with
1139 * nxm_type=NXM_OF_IP_PROTO, nxm_hasmask=0, nxm_value=6, in that order.
1140 * That is, matching on the TCP source port is allowed only if the Ethernet
1141 * type is IP or IPv6 and the IP protocol is TCP.
1142 *
1143 * These restrictions should be noted in specifications for individual fields.
1144 * A switch may implement relaxed versions of these restrictions. A switch
1145 * must reject an attempt to set up a flow that violates its restrictions.
1146 *
1147 *
1148 * Ordering Restrictions
1149 * =====================
1150 *
1151 * An nxm_entry that has prerequisite restrictions must appear after the
1152 * "nxm_entry"s for its prerequisites. Ordering of "nxm_entry"s within an
1153 * nx_match is not otherwise constrained.
1154 *
1155 * Any given nxm_type may appear in an nx_match at most once.
1156 *
1157 *
1158 * nxm_entry Examples
1159 * ==================
1160 *
1161 * These examples show the format of a single nxm_entry with particular
1162 * nxm_hasmask and nxm_length values. The diagrams are labeled with field
1163 * numbers and byte indexes.
1164 *
1165 *
1166 * 8-bit nxm_value, nxm_hasmask=1, nxm_length=2:
1167 *
1168 * 0 3 4 5
1169 * +------------+---+---+
1170 * | header | v | m |
1171 * +------------+---+---+
1172 *
1173 *
1174 * 16-bit nxm_value, nxm_hasmask=0, nxm_length=2:
1175 *
1176 * 0 3 4 5
1177 * +------------+------+
1178 * | header | value|
1179 * +------------+------+
1180 *
1181 *
1182 * 32-bit nxm_value, nxm_hasmask=0, nxm_length=4:
1183 *
1184 * 0 3 4 7
1185 * +------------+-------------+
1186 * | header | nxm_value |
1187 * +------------+-------------+
1188 *
1189 *
1190 * 48-bit nxm_value, nxm_hasmask=0, nxm_length=6:
1191 *
1192 * 0 3 4 9
1193 * +------------+------------------+
1194 * | header | nxm_value |
1195 * +------------+------------------+
1196 *
1197 *
1198 * 48-bit nxm_value, nxm_hasmask=1, nxm_length=12:
1199 *
1200 * 0 3 4 9 10 15
1201 * +------------+------------------+------------------+
1202 * | header | nxm_value | nxm_mask |
1203 * +------------+------------------+------------------+
1204 *
1205 *
1206 * Error Reporting
1207 * ===============
1208 *
1209 * A switch should report an error in an nx_match using error type
1210 * OFPET_BAD_REQUEST and one of the NXBRC_NXM_* codes. Ideally the switch
1211 * should report a specific error code, if one is assigned for the particular
1212 * problem, but NXBRC_NXM_INVALID is also available to report a generic
1213 * nx_match error.
1214 */
1215
1216 #define NXM_HEADER__(VENDOR, FIELD, HASMASK, LENGTH) \
1217 (((VENDOR) << 16) | ((FIELD) << 9) | ((HASMASK) << 8) | (LENGTH))
1218 #define NXM_HEADER(VENDOR, FIELD, LENGTH) \
1219 NXM_HEADER__(VENDOR, FIELD, 0, LENGTH)
1220 #define NXM_HEADER_W(VENDOR, FIELD, LENGTH) \
1221 NXM_HEADER__(VENDOR, FIELD, 1, (LENGTH) * 2)
1222 #define NXM_VENDOR(HEADER) ((HEADER) >> 16)
1223 #define NXM_FIELD(HEADER) (((HEADER) >> 9) & 0x7f)
1224 #define NXM_TYPE(HEADER) (((HEADER) >> 9) & 0x7fffff)
1225 #define NXM_HASMASK(HEADER) (((HEADER) >> 8) & 1)
1226 #define NXM_LENGTH(HEADER) ((HEADER) & 0xff)
1227
1228 #define NXM_MAKE_WILD_HEADER(HEADER) \
1229 NXM_HEADER_W(NXM_VENDOR(HEADER), NXM_FIELD(HEADER), NXM_LENGTH(HEADER))
1230
1231 /* ## ------------------------------- ## */
1232 /* ## OpenFlow 1.0-compatible fields. ## */
1233 /* ## ------------------------------- ## */
1234
1235 /* Physical or virtual port on which the packet was received.
1236 *
1237 * Prereqs: None.
1238 *
1239 * Format: 16-bit integer in network byte order.
1240 *
1241 * Masking: Not maskable. */
1242 #define NXM_OF_IN_PORT NXM_HEADER (0x0000, 0, 2)
1243
1244 /* Source or destination address in Ethernet header.
1245 *
1246 * Prereqs: None.
1247 *
1248 * Format: 48-bit Ethernet MAC address.
1249 *
1250 * Masking: The nxm_mask patterns 01:00:00:00:00:00 and FE:FF:FF:FF:FF:FF must
1251 * be supported for NXM_OF_ETH_DST_W (as well as the trivial patterns that
1252 * are all-0-bits or all-1-bits). Support for other patterns and for masking
1253 * of NXM_OF_ETH_SRC is optional. */
1254 #define NXM_OF_ETH_DST NXM_HEADER (0x0000, 1, 6)
1255 #define NXM_OF_ETH_DST_W NXM_HEADER_W(0x0000, 1, 6)
1256 #define NXM_OF_ETH_SRC NXM_HEADER (0x0000, 2, 6)
1257
1258 /* Packet's Ethernet type.
1259 *
1260 * For an Ethernet II packet this is taken from the Ethernet header. For an
1261 * 802.2 LLC+SNAP header with OUI 00-00-00 this is taken from the SNAP header.
1262 * A packet that has neither format has value 0x05ff
1263 * (OFP_DL_TYPE_NOT_ETH_TYPE).
1264 *
1265 * For a packet with an 802.1Q header, this is the type of the encapsulated
1266 * frame.
1267 *
1268 * Prereqs: None.
1269 *
1270 * Format: 16-bit integer in network byte order.
1271 *
1272 * Masking: Not maskable. */
1273 #define NXM_OF_ETH_TYPE NXM_HEADER (0x0000, 3, 2)
1274
1275 /* 802.1Q TCI.
1276 *
1277 * For a packet with an 802.1Q header, this is the Tag Control Information
1278 * (TCI) field, with the CFI bit forced to 1. For a packet with no 802.1Q
1279 * header, this has value 0.
1280 *
1281 * Prereqs: None.
1282 *
1283 * Format: 16-bit integer in network byte order.
1284 *
1285 * Masking: Arbitrary masks.
1286 *
1287 * This field can be used in various ways:
1288 *
1289 * - If it is not constrained at all, the nx_match matches packets without
1290 * an 802.1Q header or with an 802.1Q header that has any TCI value.
1291 *
1292 * - Testing for an exact match with 0 matches only packets without an
1293 * 802.1Q header.
1294 *
1295 * - Testing for an exact match with a TCI value with CFI=1 matches packets
1296 * that have an 802.1Q header with a specified VID and PCP.
1297 *
1298 * - Testing for an exact match with a nonzero TCI value with CFI=0 does
1299 * not make sense. The switch may reject this combination.
1300 *
1301 * - Testing with a specific VID and CFI=1, with nxm_mask=0x1fff, matches
1302 * packets that have an 802.1Q header with that VID (and any PCP).
1303 *
1304 * - Testing with a specific PCP and CFI=1, with nxm_mask=0xf000, matches
1305 * packets that have an 802.1Q header with that PCP (and any VID).
1306 *
1307 * - Testing with nxm_value=0, nxm_mask=0x0fff matches packets with no 802.1Q
1308 * header or with an 802.1Q header with a VID of 0.
1309 *
1310 * - Testing with nxm_value=0, nxm_mask=0xe000 matches packets with no 802.1Q
1311 * header or with an 802.1Q header with a PCP of 0.
1312 *
1313 * - Testing with nxm_value=0, nxm_mask=0xefff matches packets with no 802.1Q
1314 * header or with an 802.1Q header with both VID and PCP of 0.
1315 */
1316 #define NXM_OF_VLAN_TCI NXM_HEADER (0x0000, 4, 2)
1317 #define NXM_OF_VLAN_TCI_W NXM_HEADER_W(0x0000, 4, 2)
1318
1319 /* The "type of service" byte of the IP header, with the ECN bits forced to 0.
1320 *
1321 * Prereqs: NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
1322 *
1323 * Format: 8-bit integer with 2 least-significant bits forced to 0.
1324 *
1325 * Masking: Not maskable. */
1326 #define NXM_OF_IP_TOS NXM_HEADER (0x0000, 5, 1)
1327
1328 /* The "protocol" byte in the IP header.
1329 *
1330 * Prereqs: NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
1331 *
1332 * Format: 8-bit integer.
1333 *
1334 * Masking: Not maskable. */
1335 #define NXM_OF_IP_PROTO NXM_HEADER (0x0000, 6, 1)
1336
1337 /* The source or destination address in the IP header.
1338 *
1339 * Prereqs: NXM_OF_ETH_TYPE must match 0x0800 exactly.
1340 *
1341 * Format: 32-bit integer in network byte order.
1342 *
1343 * Masking: Only CIDR masks are allowed, that is, masks that consist of N
1344 * high-order bits set to 1 and the other 32-N bits set to 0. */
1345 #define NXM_OF_IP_SRC NXM_HEADER (0x0000, 7, 4)
1346 #define NXM_OF_IP_SRC_W NXM_HEADER_W(0x0000, 7, 4)
1347 #define NXM_OF_IP_DST NXM_HEADER (0x0000, 8, 4)
1348 #define NXM_OF_IP_DST_W NXM_HEADER_W(0x0000, 8, 4)
1349
1350 /* The source or destination port in the TCP header.
1351 *
1352 * Prereqs:
1353 * NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
1354 * NXM_OF_IP_PROTO must match 6 exactly.
1355 *
1356 * Format: 16-bit integer in network byte order.
1357 *
1358 * Masking: Not maskable. */
1359 #define NXM_OF_TCP_SRC NXM_HEADER (0x0000, 9, 2)
1360 #define NXM_OF_TCP_DST NXM_HEADER (0x0000, 10, 2)
1361
1362 /* The source or destination port in the UDP header.
1363 *
1364 * Prereqs:
1365 * NXM_OF_ETH_TYPE must match either 0x0800 or 0x86dd.
1366 * NXM_OF_IP_PROTO must match 17 exactly.
1367 *
1368 * Format: 16-bit integer in network byte order.
1369 *
1370 * Masking: Not maskable. */
1371 #define NXM_OF_UDP_SRC NXM_HEADER (0x0000, 11, 2)
1372 #define NXM_OF_UDP_DST NXM_HEADER (0x0000, 12, 2)
1373
1374 /* The type or code in the ICMP header.
1375 *
1376 * Prereqs:
1377 * NXM_OF_ETH_TYPE must match 0x0800 exactly.
1378 * NXM_OF_IP_PROTO must match 1 exactly.
1379 *
1380 * Format: 8-bit integer.
1381 *
1382 * Masking: Not maskable. */
1383 #define NXM_OF_ICMP_TYPE NXM_HEADER (0x0000, 13, 1)
1384 #define NXM_OF_ICMP_CODE NXM_HEADER (0x0000, 14, 1)
1385
1386 /* ARP opcode.
1387 *
1388 * For an Ethernet+IP ARP packet, the opcode in the ARP header. Always 0
1389 * otherwise. Only ARP opcodes between 1 and 255 should be specified for
1390 * matching.
1391 *
1392 * Prereqs: NXM_OF_ETH_TYPE must match 0x0806 exactly.
1393 *
1394 * Format: 16-bit integer in network byte order.
1395 *
1396 * Masking: Not maskable. */
1397 #define NXM_OF_ARP_OP NXM_HEADER (0x0000, 15, 2)
1398
1399 /* For an Ethernet+IP ARP packet, the source or target protocol address
1400 * in the ARP header. Always 0 otherwise.
1401 *
1402 * Prereqs: NXM_OF_ETH_TYPE must match 0x0806 exactly.
1403 *
1404 * Format: 32-bit integer in network byte order.
1405 *
1406 * Masking: Only CIDR masks are allowed, that is, masks that consist of N
1407 * high-order bits set to 1 and the other 32-N bits set to 0. */
1408 #define NXM_OF_ARP_SPA NXM_HEADER (0x0000, 16, 4)
1409 #define NXM_OF_ARP_SPA_W NXM_HEADER_W(0x0000, 16, 4)
1410 #define NXM_OF_ARP_TPA NXM_HEADER (0x0000, 17, 4)
1411 #define NXM_OF_ARP_TPA_W NXM_HEADER_W(0x0000, 17, 4)
1412
1413 /* ## ------------------------ ## */
1414 /* ## Nicira match extensions. ## */
1415 /* ## ------------------------ ## */
1416
1417 /* Metadata registers.
1418 *
1419 * Registers initially have value 0. Actions allow register values to be
1420 * manipulated.
1421 *
1422 * Prereqs: None.
1423 *
1424 * Format: Array of 32-bit integer registers. Space is reserved for up to
1425 * NXM_NX_MAX_REGS registers, but switches may implement fewer.
1426 *
1427 * Masking: Arbitrary masks. */
1428 #define NXM_NX_MAX_REGS 16
1429 #define NXM_NX_REG(IDX) NXM_HEADER (0x0001, IDX, 4)
1430 #define NXM_NX_REG_W(IDX) NXM_HEADER_W(0x0001, IDX, 4)
1431 #define NXM_NX_REG_IDX(HEADER) NXM_FIELD(HEADER)
1432 #define NXM_IS_NX_REG(HEADER) (!((((HEADER) ^ NXM_NX_REG0)) & 0xffffe1ff))
1433 #define NXM_IS_NX_REG_W(HEADER) (!((((HEADER) ^ NXM_NX_REG0_W)) & 0xffffe1ff))
1434 #define NXM_NX_REG0 NXM_HEADER (0x0001, 0, 4)
1435 #define NXM_NX_REG0_W NXM_HEADER_W(0x0001, 0, 4)
1436 #define NXM_NX_REG1 NXM_HEADER (0x0001, 1, 4)
1437 #define NXM_NX_REG1_W NXM_HEADER_W(0x0001, 1, 4)
1438 #define NXM_NX_REG2 NXM_HEADER (0x0001, 2, 4)
1439 #define NXM_NX_REG2_W NXM_HEADER_W(0x0001, 2, 4)
1440 #define NXM_NX_REG3 NXM_HEADER (0x0001, 3, 4)
1441 #define NXM_NX_REG3_W NXM_HEADER_W(0x0001, 3, 4)
1442
1443 /* Tunnel ID.
1444 *
1445 * For a packet received via GRE tunnel including a (32-bit) key, the key is
1446 * stored in the low 32-bits and the high bits are zeroed. For other packets,
1447 * the value is 0.
1448 *
1449 * Prereqs: None.
1450 *
1451 * Format: 64-bit integer in network byte order.
1452 *
1453 * Masking: Arbitrary masks. */
1454 #define NXM_NX_TUN_ID NXM_HEADER (0x0001, 16, 8)
1455 #define NXM_NX_TUN_ID_W NXM_HEADER_W(0x0001, 16, 8)
1456
1457 /* For an Ethernet+IP ARP packet, the source or target hardware address
1458 * in the ARP header. Always 0 otherwise.
1459 *
1460 * Prereqs: NXM_OF_ETH_TYPE must match 0x0806 exactly.
1461 *
1462 * Format: 48-bit Ethernet MAC address.
1463 *
1464 * Masking: Not maskable. */
1465 #define NXM_NX_ARP_SHA NXM_HEADER (0x0001, 17, 6)
1466 #define NXM_NX_ARP_THA NXM_HEADER (0x0001, 18, 6)
1467
1468 /* The source or destination address in the IPv6 header.
1469 *
1470 * Prereqs: NXM_OF_ETH_TYPE must match 0x86dd exactly.
1471 *
1472 * Format: 128-bit IPv6 address.
1473 *
1474 * Masking: Only CIDR masks are allowed, that is, masks that consist of N
1475 * high-order bits set to 1 and the other 128-N bits set to 0. */
1476 #define NXM_NX_IPV6_SRC NXM_HEADER (0x0001, 19, 16)
1477 #define NXM_NX_IPV6_SRC_W NXM_HEADER_W(0x0001, 19, 16)
1478 #define NXM_NX_IPV6_DST NXM_HEADER (0x0001, 20, 16)
1479 #define NXM_NX_IPV6_DST_W NXM_HEADER_W(0x0001, 20, 16)
1480
1481 /* The type or code in the ICMPv6 header.
1482 *
1483 * Prereqs:
1484 * NXM_OF_ETH_TYPE must match 0x86dd exactly.
1485 * NXM_OF_IP_PROTO must match 58 exactly.
1486 *
1487 * Format: 8-bit integer.
1488 *
1489 * Masking: Not maskable. */
1490 #define NXM_NX_ICMPV6_TYPE NXM_HEADER (0x0001, 21, 1)
1491 #define NXM_NX_ICMPV6_CODE NXM_HEADER (0x0001, 22, 1)
1492
1493 /* The target address in an IPv6 Neighbor Discovery message.
1494 *
1495 * Prereqs:
1496 * NXM_OF_ETH_TYPE must match 0x86dd exactly.
1497 * NXM_OF_IP_PROTO must match 58 exactly.
1498 * NXM_OF_ICMPV6_TYPE must be either 135 or 136.
1499 *
1500 * Format: 128-bit IPv6 address.
1501 *
1502 * Masking: Not maskable. */
1503 #define NXM_NX_ND_TARGET NXM_HEADER (0x0001, 23, 16)
1504
1505 /* The source link-layer address option in an IPv6 Neighbor Discovery
1506 * message.
1507 *
1508 * Prereqs:
1509 * NXM_OF_ETH_TYPE must match 0x86dd exactly.
1510 * NXM_OF_IP_PROTO must match 58 exactly.
1511 * NXM_OF_ICMPV6_TYPE must be exactly 135.
1512 *
1513 * Format: 48-bit Ethernet MAC address.
1514 *
1515 * Masking: Not maskable. */
1516 #define NXM_NX_ND_SLL NXM_HEADER (0x0001, 24, 6)
1517
1518 /* The target link-layer address option in an IPv6 Neighbor Discovery
1519 * message.
1520 *
1521 * Prereqs:
1522 * NXM_OF_ETH_TYPE must match 0x86dd exactly.
1523 * NXM_OF_IP_PROTO must match 58 exactly.
1524 * NXM_OF_ICMPV6_TYPE must be exactly 136.
1525 *
1526 * Format: 48-bit Ethernet MAC address.
1527 *
1528 * Masking: Not maskable. */
1529 #define NXM_NX_ND_TLL NXM_HEADER (0x0001, 25, 6)
1530
1531
1532 /* ## --------------------- ## */
1533 /* ## Requests and replies. ## */
1534 /* ## --------------------- ## */
1535
1536 enum nx_flow_format {
1537 NXFF_OPENFLOW10 = 0, /* Standard OpenFlow 1.0 compatible. */
1538 NXFF_NXM = 2 /* Nicira extended match. */
1539 };
1540
1541 /* NXT_SET_FLOW_FORMAT request. */
1542 struct nxt_set_flow_format {
1543 struct ofp_header header;
1544 ovs_be32 vendor; /* NX_VENDOR_ID. */
1545 ovs_be32 subtype; /* NXT_SET_FLOW_FORMAT. */
1546 ovs_be32 format; /* One of NXFF_*. */
1547 };
1548 OFP_ASSERT(sizeof(struct nxt_set_flow_format) == 20);
1549
1550 /* NXT_FLOW_MOD (analogous to OFPT_FLOW_MOD). */
1551 struct nx_flow_mod {
1552 struct nicira_header nxh;
1553 ovs_be64 cookie; /* Opaque controller-issued identifier. */
1554 ovs_be16 command; /* One of OFPFC_*. */
1555 ovs_be16 idle_timeout; /* Idle time before discarding (seconds). */
1556 ovs_be16 hard_timeout; /* Max time before discarding (seconds). */
1557 ovs_be16 priority; /* Priority level of flow entry. */
1558 ovs_be32 buffer_id; /* Buffered packet to apply to (or -1).
1559 Not meaningful for OFPFC_DELETE*. */
1560 ovs_be16 out_port; /* For OFPFC_DELETE* commands, require
1561 matching entries to include this as an
1562 output port. A value of OFPP_NONE
1563 indicates no restriction. */
1564 ovs_be16 flags; /* One of OFPFF_*. */
1565 ovs_be16 match_len; /* Size of nx_match. */
1566 uint8_t pad[6]; /* Align to 64-bits. */
1567 /* Followed by:
1568 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1569 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1570 * all-zero bytes, then
1571 * - Actions to fill out the remainder of the message length (always a
1572 * multiple of 8).
1573 */
1574 };
1575 OFP_ASSERT(sizeof(struct nx_flow_mod) == 48);
1576
1577 /* NXT_FLOW_REMOVED (analogous to OFPT_FLOW_REMOVED). */
1578 struct nx_flow_removed {
1579 struct nicira_header nxh;
1580 ovs_be64 cookie; /* Opaque controller-issued identifier. */
1581 ovs_be16 priority; /* Priority level of flow entry. */
1582 uint8_t reason; /* One of OFPRR_*. */
1583 uint8_t pad[1]; /* Align to 32-bits. */
1584 ovs_be32 duration_sec; /* Time flow was alive in seconds. */
1585 ovs_be32 duration_nsec; /* Time flow was alive in nanoseconds beyond
1586 duration_sec. */
1587 ovs_be16 idle_timeout; /* Idle timeout from original flow mod. */
1588 ovs_be16 match_len; /* Size of nx_match. */
1589 ovs_be64 packet_count;
1590 ovs_be64 byte_count;
1591 /* Followed by:
1592 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1593 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1594 * all-zero bytes. */
1595 };
1596 OFP_ASSERT(sizeof(struct nx_flow_removed) == 56);
1597
1598 /* Nicira vendor stats request of type NXST_FLOW (analogous to OFPST_FLOW
1599 * request). */
1600 struct nx_flow_stats_request {
1601 struct nicira_stats_msg nsm;
1602 ovs_be16 out_port; /* Require matching entries to include this
1603 as an output port. A value of OFPP_NONE
1604 indicates no restriction. */
1605 ovs_be16 match_len; /* Length of nx_match. */
1606 uint8_t table_id; /* ID of table to read (from ofp_table_stats)
1607 or 0xff for all tables. */
1608 uint8_t pad[3]; /* Align to 64 bits. */
1609 /* Followed by:
1610 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1611 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1612 * all-zero bytes, which must also exactly fill out the length of the
1613 * message.
1614 */
1615 };
1616 OFP_ASSERT(sizeof(struct nx_flow_stats_request) == 32);
1617
1618 /* Body for Nicira vendor stats reply of type NXST_FLOW (analogous to
1619 * OFPST_FLOW reply). */
1620 struct nx_flow_stats {
1621 ovs_be16 length; /* Length of this entry. */
1622 uint8_t table_id; /* ID of table flow came from. */
1623 uint8_t pad;
1624 ovs_be32 duration_sec; /* Time flow has been alive in seconds. */
1625 ovs_be32 duration_nsec; /* Time flow has been alive in nanoseconds
1626 beyond duration_sec. */
1627 ovs_be16 priority; /* Priority of the entry. Only meaningful
1628 when this is not an exact-match entry. */
1629 ovs_be16 idle_timeout; /* Number of seconds idle before expiration. */
1630 ovs_be16 hard_timeout; /* Number of seconds before expiration. */
1631 ovs_be16 match_len; /* Length of nx_match. */
1632 uint8_t pad2[4]; /* Align to 64 bits. */
1633 ovs_be64 cookie; /* Opaque controller-issued identifier. */
1634 ovs_be64 packet_count; /* Number of packets, UINT64_MAX if unknown. */
1635 ovs_be64 byte_count; /* Number of bytes, UINT64_MAX if unknown. */
1636 /* Followed by:
1637 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1638 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1639 * all-zero bytes, then
1640 * - Actions to fill out the remainder 'length' bytes (always a multiple
1641 * of 8).
1642 */
1643 };
1644 OFP_ASSERT(sizeof(struct nx_flow_stats) == 48);
1645
1646 /* Nicira vendor stats request of type NXST_AGGREGATE (analogous to
1647 * OFPST_AGGREGATE request). */
1648 struct nx_aggregate_stats_request {
1649 struct nicira_stats_msg nsm;
1650 ovs_be16 out_port; /* Require matching entries to include this
1651 as an output port. A value of OFPP_NONE
1652 indicates no restriction. */
1653 ovs_be16 match_len; /* Length of nx_match. */
1654 uint8_t table_id; /* ID of table to read (from ofp_table_stats)
1655 or 0xff for all tables. */
1656 uint8_t pad[3]; /* Align to 64 bits. */
1657 /* Followed by:
1658 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1659 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1660 * all-zero bytes, which must also exactly fill out the length of the
1661 * message.
1662 */
1663 };
1664 OFP_ASSERT(sizeof(struct nx_aggregate_stats_request) == 32);
1665
1666 /* Body for nicira_stats_msg reply of type NXST_AGGREGATE (analogous to
1667 * OFPST_AGGREGATE reply). */
1668 struct nx_aggregate_stats_reply {
1669 struct nicira_stats_msg nsm;
1670 ovs_be64 packet_count; /* Number of packets, UINT64_MAX if unknown. */
1671 ovs_be64 byte_count; /* Number of bytes, UINT64_MAX if unknown. */
1672 ovs_be32 flow_count; /* Number of flows. */
1673 uint8_t pad[4]; /* Align to 64 bits. */
1674 };
1675 OFP_ASSERT(sizeof(struct nx_aggregate_stats_reply) == 48);
1676
1677 #endif /* openflow/nicira-ext.h */