]> git.proxmox.com Git - ovs.git/blame - include/openflow/nicira-ext.h
User-Space MPLS actions and matches
[ovs.git] / include / openflow / nicira-ext.h
CommitLineData
064af421 1/*
b02475c5 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
a14bc59f
BP
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.
064af421
BP
15 */
16
17#ifndef OPENFLOW_NICIRA_EXT_H
18#define OPENFLOW_NICIRA_EXT_H 1
19
20#include "openflow/openflow.h"
26c112c2 21#include "openvswitch/types.h"
064af421 22
e0edde6f 23/* The following vendor extensions, proposed by Nicira, are not yet
26c112c2
BP
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. */
064af421
BP
26
27#define NX_VENDOR_ID 0x00002320
26c112c2
BP
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
6eb59a8f 39 * and NXVC_VENDOR_ERROR as code, followed by struct nx_vendor_error with
26c112c2
BP
40 * vendor-specific details, followed by at least 64 bytes of the failed
41 * request.
42 *
a23aab1f 43 * It would be better to have a type-specific vendor extension, e.g. so that
26c112c2
BP
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. */
58enum 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. */
63struct 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/* Nicira vendor requests and replies. */
064af421 71
09246b99
BP
72/* Header for Nicira vendor requests and replies. */
73struct nicira_header {
74 struct ofp_header header;
75 ovs_be32 vendor; /* NX_VENDOR_ID. */
982697a4 76 ovs_be32 subtype; /* See the NXT numbers in ofp-msgs.h. */
09246b99
BP
77};
78OFP_ASSERT(sizeof(struct nicira_header) == 16);
79
982697a4
BP
80/* Header for Nicira vendor stats request and reply messages in OpenFlow
81 * 1.0. */
82struct nicira10_stats_msg {
83 struct ofp10_vendor_stats_msg vsm; /* Vendor NX_VENDOR_ID. */
09246b99
BP
84 ovs_be32 subtype; /* One of NXST_* below. */
85 uint8_t pad[4]; /* Align to 64-bits. */
064af421 86};
982697a4 87OFP_ASSERT(sizeof(struct nicira10_stats_msg) == 24);
064af421 88
982697a4
BP
89/* Header for Nicira vendor stats request and reply messages in OpenFlow
90 * 1.1. */
91struct nicira11_stats_msg {
92 struct ofp11_vendor_stats_msg vsm; /* Vendor NX_VENDOR_ID. */
93 ovs_be32 subtype; /* One of NXST_* below. */
f9bfea14 94};
982697a4 95OFP_ASSERT(sizeof(struct nicira11_stats_msg) == 24);
f9bfea14 96
520e9a2a
EJ
97/* Fields to use when hashing flows. */
98enum nx_hash_fields {
99 /* Ethernet source address (NXM_OF_ETH_SRC) only. */
100 NX_HASH_FIELDS_ETH_SRC,
101
102 /* L2 through L4, symmetric across src/dst. Specifically, each of the
103 * following fields, if present, is hashed (slashes separate symmetric
104 * pairs):
105 *
106 * - NXM_OF_ETH_DST / NXM_OF_ETH_SRC
107 * - NXM_OF_ETH_TYPE
108 * - The VID bits from NXM_OF_VLAN_TCI, ignoring PCP and CFI.
109 * - NXM_OF_IP_PROTO
110 * - NXM_OF_IP_SRC / NXM_OF_IP_DST
111 * - NXM_OF_TCP_SRC / NXM_OF_TCP_DST
112 */
113 NX_HASH_FIELDS_SYMMETRIC_L4
114};
115
6c1491fb
BP
116/* This command enables or disables an Open vSwitch extension that allows a
117 * controller to specify the OpenFlow table to which a flow should be added,
118 * instead of having the switch decide which table is most appropriate as
119 * required by OpenFlow 1.0. By default, the extension is disabled.
120 *
35805806 121 * When this feature is enabled, Open vSwitch treats struct ofp10_flow_mod's
6c1491fb
BP
122 * 16-bit 'command' member as two separate fields. The upper 8 bits are used
123 * as the table ID, the lower 8 bits specify the command as usual. A table ID
124 * of 0xff is treated like a wildcarded table ID.
125 *
126 * The specific treatment of the table ID depends on the type of flow mod:
127 *
128 * - OFPFC_ADD: Given a specific table ID, the flow is always placed in that
129 * table. If an identical flow already exists in that table only, then it
130 * is replaced. If the flow cannot be placed in the specified table,
131 * either because the table is full or because the table cannot support
be2b69d1
BP
132 * flows of the given type, the switch replies with an OFPFMFC_TABLE_FULL
133 * error. (A controller can distinguish these cases by comparing the
134 * current and maximum number of entries reported in ofp_table_stats.)
6c1491fb
BP
135 *
136 * If the table ID is wildcarded, the switch picks an appropriate table
137 * itself. If an identical flow already exist in the selected flow table,
138 * then it is replaced. The choice of table might depend on the flows
139 * that are already in the switch; for example, if one table fills up then
140 * the switch might fall back to another one.
141 *
142 * - OFPFC_MODIFY, OFPFC_DELETE: Given a specific table ID, only flows
143 * within that table are matched and modified or deleted. If the table ID
144 * is wildcarded, flows within any table may be matched and modified or
145 * deleted.
146 *
147 * - OFPFC_MODIFY_STRICT, OFPFC_DELETE_STRICT: Given a specific table ID,
148 * only a flow within that table may be matched and modified or deleted.
149 * If the table ID is wildcarded and exactly one flow within any table
150 * matches, then it is modified or deleted; if flows in more than one
151 * table match, then none is modified or deleted.
152 */
73dbf4ab 153struct nx_flow_mod_table_id {
6c1491fb
BP
154 uint8_t set; /* Nonzero to enable, zero to disable. */
155 uint8_t pad[7];
156};
982697a4 157OFP_ASSERT(sizeof(struct nx_flow_mod_table_id) == 8);
6c1491fb 158
54834960
EJ
159enum nx_packet_in_format {
160 NXPIF_OPENFLOW10 = 0, /* Standard OpenFlow 1.0 compatible. */
161 NXPIF_NXM = 1 /* Nicira Extended. */
162};
163
164/* NXT_SET_PACKET_IN_FORMAT request. */
73dbf4ab 165struct nx_set_packet_in_format {
54834960
EJ
166 ovs_be32 format; /* One of NXPIF_*. */
167};
982697a4 168OFP_ASSERT(sizeof(struct nx_set_packet_in_format) == 4);
54834960
EJ
169
170/* NXT_PACKET_IN (analogous to OFPT_PACKET_IN).
171 *
42edbe39
BP
172 * NXT_PACKET_IN is similar to the OpenFlow 1.2 OFPT_PACKET_IN. The
173 * differences are:
174 *
175 * - NXT_PACKET_IN includes the cookie of the rule that triggered the
176 * message. (OpenFlow 1.3 OFPT_PACKET_IN also includes the cookie.)
177 *
178 * - The metadata fields use NXM (instead of OXM) field numbers.
179 *
180 * Open vSwitch 1.9.0 and later omits metadata fields that are zero (as allowed
181 * by OpenFlow 1.2). Earlier versions included all implemented metadata
182 * fields.
183 *
184 * Open vSwitch does not include non-metadata in the nx_match, because by
185 * definition that information can be found in the packet itself. The format
186 * and the standards allow this, however, so controllers should be prepared to
187 * tolerate future changes.
188 *
189 * The NXM format is convenient for reporting metadata values, but it is
190 * important not to interpret the format as matching against a flow, because it
191 * does not. Nothing is being matched; arbitrary metadata masks would not be
192 * meaningful.
54834960
EJ
193 *
194 * Whereas in most cases a controller can expect to only get back NXM fields
195 * that it set up itself (e.g. flow dumps will ordinarily report only NXM
196 * fields from flows that the controller added), NXT_PACKET_IN messages might
197 * contain fields that the controller does not understand, because the switch
198 * might support fields (new registers, new protocols, etc.) that the
42edbe39 199 * controller does not. The controller must prepared to tolerate these.
54834960
EJ
200 *
201 * The 'cookie' and 'table_id' fields have no meaning when 'reason' is
202 * OFPR_NO_MATCH. In this case they should be set to 0. */
73dbf4ab 203struct nx_packet_in {
54834960
EJ
204 ovs_be32 buffer_id; /* ID assigned by datapath. */
205 ovs_be16 total_len; /* Full length of frame. */
206 uint8_t reason; /* Reason packet is sent (one of OFPR_*). */
207 uint8_t table_id; /* ID of the table that was looked up. */
208 ovs_be64 cookie; /* Cookie of the rule that was looked up. */
209 ovs_be16 match_len; /* Size of nx_match. */
210 uint8_t pad[6]; /* Align to 64-bits. */
211 /* Followed by:
212 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
213 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
214 * all-zero bytes, then
215 * - Exactly 2 all-zero padding bytes, then
216 * - An Ethernet frame whose length is inferred from nxh.header.length.
217 *
218 * The padding bytes preceding the Ethernet frame ensure that the IP
219 * header (if any) following the Ethernet header is 32-bit aligned. */
220
42edbe39 221 /* uint8_t nxm_fields[...]; */ /* NXM headers. */
54834960
EJ
222 /* uint8_t pad[2]; */ /* Align to 64 bit + 16 bit. */
223 /* uint8_t data[0]; */ /* Ethernet frame. */
224};
982697a4 225OFP_ASSERT(sizeof(struct nx_packet_in) == 24);
54834960 226
9deba63b
BP
227/* Configures the "role" of the sending controller. The default role is:
228 *
229 * - Other (NX_ROLE_OTHER), which allows the controller access to all
230 * OpenFlow features.
231 *
232 * The other possible roles are a related pair:
233 *
234 * - Master (NX_ROLE_MASTER) is equivalent to Other, except that there may
235 * be at most one Master controller at a time: when a controller
236 * configures itself as Master, any existing Master is demoted to the
237 * Slave role.
238 *
239 * - Slave (NX_ROLE_SLAVE) allows the controller read-only access to
240 * OpenFlow features. In particular attempts to modify the flow table
241 * will be rejected with an OFPBRC_EPERM error.
242 *
197a992f
BP
243 * Slave controllers do not receive OFPT_PACKET_IN or OFPT_FLOW_REMOVED
244 * messages, but they do receive OFPT_PORT_STATUS messages.
9deba63b
BP
245 */
246struct nx_role_request {
459749fe 247 ovs_be32 role; /* One of NX_ROLE_*. */
9deba63b 248};
982697a4 249OFP_ASSERT(sizeof(struct nx_role_request) == 4);
9deba63b
BP
250
251enum nx_role {
252 NX_ROLE_OTHER, /* Default role, full access. */
253 NX_ROLE_MASTER, /* Full access, at most one. */
254 NX_ROLE_SLAVE /* Read-only access. */
255};
80d5aefd
BP
256
257/* NXT_SET_ASYNC_CONFIG.
258 *
259 * Sent by a controller, this message configures the asynchronous messages that
260 * the controller wants to receive. Element 0 in each array specifies messages
261 * of interest when the controller has an "other" or "master" role; element 1,
262 * when the controller has a "slave" role.
263 *
264 * Each array element is a bitmask in which a 0-bit disables receiving a
265 * particular message and a 1-bit enables receiving it. Each bit controls the
266 * message whose 'reason' corresponds to the bit index. For example, the bit
267 * with value 1<<2 == 4 in port_status_mask[1] determines whether the
268 * controller will receive OFPT_PORT_STATUS messages with reason OFPPR_MODIFY
269 * (value 2) when the controller has a "slave" role.
4550b647
MM
270 *
271 * As a side effect, for service controllers, this message changes the
272 * miss_send_len from default of zero to OFP_DEFAULT_MISS_SEND_LEN (128).
80d5aefd
BP
273 */
274struct nx_async_config {
80d5aefd
BP
275 ovs_be32 packet_in_mask[2]; /* Bitmasks of OFPR_* values. */
276 ovs_be32 port_status_mask[2]; /* Bitmasks of OFPRR_* values. */
277 ovs_be32 flow_removed_mask[2]; /* Bitmasks of OFPPR_* values. */
278};
982697a4 279OFP_ASSERT(sizeof(struct nx_async_config) == 24);
26c112c2
BP
280\f
281/* Nicira vendor flow actions. */
9deba63b 282
064af421 283enum nx_action_subtype {
39b72738
BP
284 NXAST_SNAT__OBSOLETE, /* No longer used. */
285 NXAST_RESUBMIT, /* struct nx_action_resubmit */
286 NXAST_SET_TUNNEL, /* struct nx_action_set_tunnel */
6c222e55 287 NXAST_DROP_SPOOFED_ARP__OBSOLETE,
39b72738 288 NXAST_SET_QUEUE, /* struct nx_action_set_queue */
b6c9e612
BP
289 NXAST_POP_QUEUE, /* struct nx_action_pop_queue */
290 NXAST_REG_MOVE, /* struct nx_action_reg_move */
291 NXAST_REG_LOAD, /* struct nx_action_reg_load */
b9298d3f
BP
292 NXAST_NOTE, /* struct nx_action_note */
293 NXAST_SET_TUNNEL64, /* struct nx_action_set_tunnel64 */
3b6a2571 294 NXAST_MULTIPATH, /* struct nx_action_multipath */
c51c638a 295 NXAST_AUTOPATH__DEPRECATED, /* struct nx_action_autopath */
a368bb53 296 NXAST_BUNDLE, /* struct nx_action_bundle */
29901626 297 NXAST_BUNDLE_LOAD, /* struct nx_action_bundle */
f694937d 298 NXAST_RESUBMIT_TABLE, /* struct nx_action_resubmit */
75a75043 299 NXAST_OUTPUT_REG, /* struct nx_action_output_reg */
848e8809 300 NXAST_LEARN, /* struct nx_action_learn */
f0fd1a17
PS
301 NXAST_EXIT, /* struct nx_action_header */
302 NXAST_DEC_TTL, /* struct nx_action_header */
0e553d9c 303 NXAST_FIN_TIMEOUT, /* struct nx_action_fin_timeout */
a7349929 304 NXAST_CONTROLLER, /* struct nx_action_controller */
c2d967a5 305 NXAST_DEC_TTL_CNT_IDS, /* struct nx_action_cnt_ids */
4cceacb9 306 NXAST_WRITE_METADATA, /* struct nx_action_write_metadata */
b02475c5
SH
307 NXAST_PUSH_MPLS, /* struct nx_action_push_mpls */
308 NXAST_POP_MPLS, /* struct nx_action_pop_mpls */
39b72738 309};
eedc0097 310
39b72738
BP
311/* Header for Nicira-defined actions. */
312struct nx_action_header {
459749fe
BP
313 ovs_be16 type; /* OFPAT_VENDOR. */
314 ovs_be16 len; /* Length is 16. */
315 ovs_be32 vendor; /* NX_VENDOR_ID. */
316 ovs_be16 subtype; /* NXAST_*. */
39b72738 317 uint8_t pad[6];
064af421 318};
39b72738 319OFP_ASSERT(sizeof(struct nx_action_header) == 16);
064af421 320
29901626 321/* Action structures for NXAST_RESUBMIT and NXAST_RESUBMIT_TABLE.
39b72738 322 *
29901626 323 * These actions search one of the switch's flow tables:
39b72738 324 *
29901626
BP
325 * - For NXAST_RESUBMIT_TABLE only, if the 'table' member is not 255, then
326 * it specifies the table to search.
39b72738 327 *
29901626
BP
328 * - Otherwise (for NXAST_RESUBMIT_TABLE with a 'table' of 255, or for
329 * NXAST_RESUBMIT regardless of 'table'), it searches the current flow
330 * table, that is, the OpenFlow flow table that contains the flow from
331 * which this action was obtained. If this action did not come from a
332 * flow table (e.g. it came from an OFPT_PACKET_OUT message), then table 0
333 * is the current table.
334 *
335 * The flow table lookup uses a flow that may be slightly modified from the
336 * original lookup:
337 *
338 * - For NXAST_RESUBMIT, the 'in_port' member of struct nx_action_resubmit
339 * is used as the flow's in_port.
340 *
341 * - For NXAST_RESUBMIT_TABLE, if the 'in_port' member is not OFPP_IN_PORT,
342 * then its value is used as the flow's in_port. Otherwise, the original
343 * in_port is used.
344 *
345 * - If actions that modify the flow (e.g. OFPAT_SET_VLAN_VID) precede the
346 * resubmit action, then the flow is updated with the new values.
39b72738
BP
347 *
348 * Following the lookup, the original in_port is restored.
349 *
350 * If the modified flow matched in the flow table, then the corresponding
29901626 351 * actions are executed. Afterward, actions following the resubmit in the
39b72738
BP
352 * original set of actions, if any, are executed; any changes made to the
353 * packet (e.g. changes to VLAN) by secondary actions persist when those
354 * actions are executed, although the original in_port is restored.
355 *
29901626
BP
356 * Resubmit actions may be used any number of times within a set of actions.
357 *
358 * Resubmit actions may nest to an implementation-defined depth. Beyond this
359 * implementation-defined depth, further resubmit actions are simply ignored.
360 *
361 * NXAST_RESUBMIT ignores 'table' and 'pad'. NXAST_RESUBMIT_TABLE requires
362 * 'pad' to be all-bits-zero.
39b72738 363 *
29901626
BP
364 * Open vSwitch 1.0.1 and earlier did not support recursion. Open vSwitch
365 * before 1.2.90 did not support NXAST_RESUBMIT_TABLE.
39b72738 366 */
064af421 367struct nx_action_resubmit {
459749fe
BP
368 ovs_be16 type; /* OFPAT_VENDOR. */
369 ovs_be16 len; /* Length is 16. */
370 ovs_be32 vendor; /* NX_VENDOR_ID. */
371 ovs_be16 subtype; /* NXAST_RESUBMIT. */
372 ovs_be16 in_port; /* New in_port for checking flow table. */
29901626
BP
373 uint8_t table; /* NXAST_RESUBMIT_TABLE: table to use. */
374 uint8_t pad[3];
064af421
BP
375};
376OFP_ASSERT(sizeof(struct nx_action_resubmit) == 16);
377
39b72738
BP
378/* Action structure for NXAST_SET_TUNNEL.
379 *
b9298d3f
BP
380 * Sets the encapsulating tunnel ID to a 32-bit value. The most-significant 32
381 * bits of the tunnel ID are set to 0. */
659586ef 382struct nx_action_set_tunnel {
459749fe
BP
383 ovs_be16 type; /* OFPAT_VENDOR. */
384 ovs_be16 len; /* Length is 16. */
385 ovs_be32 vendor; /* NX_VENDOR_ID. */
386 ovs_be16 subtype; /* NXAST_SET_TUNNEL. */
659586ef 387 uint8_t pad[2];
459749fe 388 ovs_be32 tun_id; /* Tunnel ID. */
659586ef
JG
389};
390OFP_ASSERT(sizeof(struct nx_action_set_tunnel) == 16);
391
b9298d3f
BP
392/* Action structure for NXAST_SET_TUNNEL64.
393 *
394 * Sets the encapsulating tunnel ID to a 64-bit value. */
395struct nx_action_set_tunnel64 {
396 ovs_be16 type; /* OFPAT_VENDOR. */
9c59112b 397 ovs_be16 len; /* Length is 24. */
b9298d3f
BP
398 ovs_be32 vendor; /* NX_VENDOR_ID. */
399 ovs_be16 subtype; /* NXAST_SET_TUNNEL64. */
400 uint8_t pad[6];
401 ovs_be64 tun_id; /* Tunnel ID. */
402};
403OFP_ASSERT(sizeof(struct nx_action_set_tunnel64) == 24);
404
39b72738
BP
405/* Action structure for NXAST_SET_QUEUE.
406 *
407 * Set the queue that should be used when packets are output. This is similar
408 * to the OpenFlow OFPAT_ENQUEUE action, but does not take the output port as
409 * an argument. This allows the queue to be defined before the port is
410 * known. */
eedc0097 411struct nx_action_set_queue {
459749fe
BP
412 ovs_be16 type; /* OFPAT_VENDOR. */
413 ovs_be16 len; /* Length is 16. */
414 ovs_be32 vendor; /* NX_VENDOR_ID. */
415 ovs_be16 subtype; /* NXAST_SET_QUEUE. */
eedc0097 416 uint8_t pad[2];
459749fe 417 ovs_be32 queue_id; /* Where to enqueue packets. */
eedc0097
JP
418};
419OFP_ASSERT(sizeof(struct nx_action_set_queue) == 16);
420
39b72738
BP
421/* Action structure for NXAST_POP_QUEUE.
422 *
423 * Restores the queue to the value it was before any NXAST_SET_QUEUE actions
424 * were used. Only the original queue can be restored this way; no stack is
425 * maintained. */
426struct nx_action_pop_queue {
459749fe
BP
427 ovs_be16 type; /* OFPAT_VENDOR. */
428 ovs_be16 len; /* Length is 16. */
429 ovs_be32 vendor; /* NX_VENDOR_ID. */
430 ovs_be16 subtype; /* NXAST_POP_QUEUE. */
064af421
BP
431 uint8_t pad[6];
432};
39b72738 433OFP_ASSERT(sizeof(struct nx_action_pop_queue) == 16);
064af421 434
b6c9e612
BP
435/* Action structure for NXAST_REG_MOVE.
436 *
437 * Copies src[src_ofs:src_ofs+n_bits] to dst[dst_ofs:dst_ofs+n_bits], where
438 * a[b:c] denotes the bits within 'a' numbered 'b' through 'c' (not including
439 * bit 'c'). Bit numbering starts at 0 for the least-significant bit, 1 for
440 * the next most significant bit, and so on.
441 *
60d5e0d8
BP
442 * 'src' and 'dst' are nxm_header values with nxm_hasmask=0. (It doesn't make
443 * sense to use nxm_hasmask=1 because the action does not do any kind of
444 * matching; it uses the actual value of a field.)
445 *
446 * The following nxm_header values are potentially acceptable as 'src':
b6c9e612
BP
447 *
448 * - NXM_OF_IN_PORT
449 * - NXM_OF_ETH_DST
450 * - NXM_OF_ETH_SRC
451 * - NXM_OF_ETH_TYPE
452 * - NXM_OF_VLAN_TCI
453 * - NXM_OF_IP_TOS
454 * - NXM_OF_IP_PROTO
455 * - NXM_OF_IP_SRC
456 * - NXM_OF_IP_DST
457 * - NXM_OF_TCP_SRC
458 * - NXM_OF_TCP_DST
459 * - NXM_OF_UDP_SRC
460 * - NXM_OF_UDP_DST
461 * - NXM_OF_ICMP_TYPE
462 * - NXM_OF_ICMP_CODE
463 * - NXM_OF_ARP_OP
464 * - NXM_OF_ARP_SPA
465 * - NXM_OF_ARP_TPA
466 * - NXM_NX_TUN_ID
bad68a99
JP
467 * - NXM_NX_ARP_SHA
468 * - NXM_NX_ARP_THA
d31f1109
JP
469 * - NXM_NX_ICMPV6_TYPE
470 * - NXM_NX_ICMPV6_CODE
685a51a5
JP
471 * - NXM_NX_ND_SLL
472 * - NXM_NX_ND_TLL
b6c9e612
BP
473 * - NXM_NX_REG(idx) for idx in the switch's accepted range.
474 *
475 * The following nxm_header values are potentially acceptable as 'dst':
476 *
54d54726
BP
477 * - NXM_OF_ETH_DST
478 * - NXM_OF_ETH_SRC
479 * - NXM_OF_IP_TOS
480 * - NXM_OF_IP_SRC
481 * - NXM_OF_IP_DST
482 * - NXM_OF_TCP_SRC
483 * - NXM_OF_TCP_DST
484 * - NXM_OF_UDP_SRC
485 * - NXM_OF_UDP_DST
486 * Modifying any of the above fields changes the corresponding packet
487 * header.
488 *
b6c9e612
BP
489 * - NXM_NX_REG(idx) for idx in the switch's accepted range.
490 *
491 * - NXM_OF_VLAN_TCI. Modifying this field's value has side effects on the
492 * packet's 802.1Q header. Setting a value with CFI=0 removes the 802.1Q
493 * header (if any), ignoring the other bits. Setting a value with CFI=1
494 * adds or modifies the 802.1Q header appropriately, setting the TCI field
495 * to the field's new value (with the CFI bit masked out).
496 *
497 * - NXM_NX_TUN_ID. Modifying this value modifies the tunnel ID used for the
498 * packet's next tunnel encapsulation.
499 *
500 * A given nxm_header value may be used as 'src' or 'dst' only on a flow whose
501 * nx_match satisfies its prerequisites. For example, NXM_OF_IP_TOS may be
502 * used only if the flow's nx_match includes an nxm_entry that specifies
503 * nxm_type=NXM_OF_ETH_TYPE, nxm_hasmask=0, and nxm_value=0x0800.
504 *
505 * The switch will reject actions for which src_ofs+n_bits is greater than the
506 * width of 'src' or dst_ofs+n_bits is greater than the width of 'dst' with
507 * error type OFPET_BAD_ACTION, code OFPBAC_BAD_ARGUMENT.
a478fee3
BP
508 *
509 * This action behaves properly when 'src' overlaps with 'dst', that is, it
510 * behaves as if 'src' were copied out to a temporary buffer, then the
511 * temporary buffer copied to 'dst'.
b6c9e612
BP
512 */
513struct nx_action_reg_move {
514 ovs_be16 type; /* OFPAT_VENDOR. */
9c59112b 515 ovs_be16 len; /* Length is 24. */
b6c9e612
BP
516 ovs_be32 vendor; /* NX_VENDOR_ID. */
517 ovs_be16 subtype; /* NXAST_REG_MOVE. */
518 ovs_be16 n_bits; /* Number of bits. */
519 ovs_be16 src_ofs; /* Starting bit offset in source. */
520 ovs_be16 dst_ofs; /* Starting bit offset in destination. */
521 ovs_be32 src; /* Source register. */
522 ovs_be32 dst; /* Destination register. */
523};
524OFP_ASSERT(sizeof(struct nx_action_reg_move) == 24);
525
526/* Action structure for NXAST_REG_LOAD.
527 *
528 * Copies value[0:n_bits] to dst[ofs:ofs+n_bits], where a[b:c] denotes the bits
529 * within 'a' numbered 'b' through 'c' (not including bit 'c'). Bit numbering
530 * starts at 0 for the least-significant bit, 1 for the next most significant
531 * bit, and so on.
532 *
7b064a79
BP
533 * 'dst' is an nxm_header with nxm_hasmask=0. See the documentation for
534 * NXAST_REG_MOVE, above, for the permitted fields and for the side effects of
535 * loading them.
b6c9e612
BP
536 *
537 * The 'ofs' and 'n_bits' fields are combined into a single 'ofs_nbits' field
538 * to avoid enlarging the structure by another 8 bytes. To allow 'n_bits' to
539 * take a value between 1 and 64 (inclusive) while taking up only 6 bits, it is
540 * also stored as one less than its true value:
541 *
542 * 15 6 5 0
543 * +------------------------------+------------------+
544 * | ofs | n_bits - 1 |
545 * +------------------------------+------------------+
546 *
547 * The switch will reject actions for which ofs+n_bits is greater than the
548 * width of 'dst', or in which any bits in 'value' with value 2**n_bits or
549 * greater are set to 1, with error type OFPET_BAD_ACTION, code
550 * OFPBAC_BAD_ARGUMENT.
551 */
552struct nx_action_reg_load {
553 ovs_be16 type; /* OFPAT_VENDOR. */
9c59112b 554 ovs_be16 len; /* Length is 24. */
b6c9e612
BP
555 ovs_be32 vendor; /* NX_VENDOR_ID. */
556 ovs_be16 subtype; /* NXAST_REG_LOAD. */
557 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
558 ovs_be32 dst; /* Destination register. */
559 ovs_be64 value; /* Immediate value. */
560};
561OFP_ASSERT(sizeof(struct nx_action_reg_load) == 24);
562
96fc46e8
BP
563/* Action structure for NXAST_NOTE.
564 *
565 * This action has no effect. It is variable length. The switch does not
566 * attempt to interpret the user-defined 'note' data in any way. A controller
567 * can use this action to attach arbitrary metadata to a flow.
568 *
569 * This action might go away in the future.
570 */
571struct nx_action_note {
459749fe
BP
572 ovs_be16 type; /* OFPAT_VENDOR. */
573 ovs_be16 len; /* A multiple of 8, but at least 16. */
574 ovs_be32 vendor; /* NX_VENDOR_ID. */
575 ovs_be16 subtype; /* NXAST_NOTE. */
96fc46e8
BP
576 uint8_t note[6]; /* Start of user-defined data. */
577 /* Possibly followed by additional user-defined data. */
578};
579OFP_ASSERT(sizeof(struct nx_action_note) == 16);
580
53ddd40a
BP
581/* Action structure for NXAST_MULTIPATH.
582 *
583 * This action performs the following steps in sequence:
584 *
520e9a2a 585 * 1. Hashes the fields designated by 'fields', one of NX_HASH_FIELDS_*.
53ddd40a
BP
586 * Refer to the definition of "enum nx_mp_fields" for details.
587 *
588 * The 'basis' value is used as a universal hash parameter, that is,
589 * different values of 'basis' yield different hash functions. The
590 * particular universal hash function used is implementation-defined.
591 *
592 * The hashed fields' values are drawn from the current state of the
593 * flow, including all modifications that have been made by actions up to
594 * this point.
595 *
596 * 2. Applies the multipath link choice algorithm specified by 'algorithm',
597 * one of NX_MP_ALG_*. Refer to the definition of "enum nx_mp_algorithm"
598 * for details.
599 *
600 * The output of the algorithm is 'link', an unsigned integer less than
601 * or equal to 'max_link'.
602 *
603 * Some algorithms use 'arg' as an additional argument.
604 *
605 * 3. Stores 'link' in dst[ofs:ofs+n_bits]. The format and semantics of
338bd6a0 606 * 'dst' and 'ofs_nbits' are similar to those for the NXAST_REG_LOAD
43edca57 607 * action.
53ddd40a
BP
608 *
609 * The switch will reject actions that have an unknown 'fields', or an unknown
610 * 'algorithm', or in which ofs+n_bits is greater than the width of 'dst', or
611 * in which 'max_link' is greater than or equal to 2**n_bits, with error type
612 * OFPET_BAD_ACTION, code OFPBAC_BAD_ARGUMENT.
613 */
614struct nx_action_multipath {
615 ovs_be16 type; /* OFPAT_VENDOR. */
616 ovs_be16 len; /* Length is 32. */
617 ovs_be32 vendor; /* NX_VENDOR_ID. */
618 ovs_be16 subtype; /* NXAST_MULTIPATH. */
619
620 /* What fields to hash and how. */
520e9a2a 621 ovs_be16 fields; /* One of NX_HASH_FIELDS_*. */
53ddd40a
BP
622 ovs_be16 basis; /* Universal hash parameter. */
623 ovs_be16 pad0;
624
625 /* Multipath link choice algorithm to apply to hash value. */
626 ovs_be16 algorithm; /* One of NX_MP_ALG_*. */
627 ovs_be16 max_link; /* Number of output links, minus 1. */
628 ovs_be32 arg; /* Algorithm-specific argument. */
629 ovs_be16 pad1;
630
631 /* Where to store the result. */
632 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
43edca57 633 ovs_be32 dst; /* Destination. */
53ddd40a
BP
634};
635OFP_ASSERT(sizeof(struct nx_action_multipath) == 32);
636
53ddd40a
BP
637/* NXAST_MULTIPATH: Multipath link choice algorithm to apply.
638 *
639 * In the descriptions below, 'n_links' is max_link + 1. */
640enum nx_mp_algorithm {
641 /* link = hash(flow) % n_links.
642 *
643 * Redistributes all traffic when n_links changes. O(1) performance. See
644 * RFC 2992.
645 *
646 * Use UINT16_MAX for max_link to get a raw hash value. */
647 NX_MP_ALG_MODULO_N,
648
649 /* link = hash(flow) / (MAX_HASH / n_links).
650 *
651 * Redistributes between one-quarter and one-half of traffic when n_links
652 * changes. O(1) performance. See RFC 2992.
653 */
654 NX_MP_ALG_HASH_THRESHOLD,
655
656 /* for i in [0,n_links):
657 * weights[i] = hash(flow, i)
658 * link = { i such that weights[i] >= weights[j] for all j != i }
659 *
660 * Redistributes 1/n_links of traffic when n_links changes. O(n_links)
661 * performance. If n_links is greater than a threshold (currently 64, but
662 * subject to change), Open vSwitch will substitute another algorithm
663 * automatically. See RFC 2992. */
664 NX_MP_ALG_HRW, /* Highest Random Weight. */
665
666 /* i = 0
667 * repeat:
668 * i = i + 1
669 * link = hash(flow, i) % arg
670 * while link > max_link
671 *
672 * Redistributes 1/n_links of traffic when n_links changes. O(1)
673 * performance when arg/max_link is bounded by a constant.
674 *
675 * Redistributes all traffic when arg changes.
676 *
677 * arg must be greater than max_link and for best performance should be no
678 * more than approximately max_link * 2. If arg is outside the acceptable
679 * range, Open vSwitch will automatically substitute the least power of 2
680 * greater than max_link.
681 *
682 * This algorithm is specific to Open vSwitch.
683 */
684 NX_MP_ALG_ITER_HASH /* Iterative Hash. */
685};
09246b99 686\f
75a75043
BP
687/* Action structure for NXAST_LEARN.
688 *
689 * This action adds or modifies a flow in an OpenFlow table, similar to
690 * OFPT_FLOW_MOD with OFPFC_MODIFY_STRICT as 'command'. The new flow has the
691 * specified idle timeout, hard timeout, priority, cookie, and flags. The new
692 * flow's match criteria and actions are built by applying each of the series
693 * of flow_mod_spec elements included as part of the action.
694 *
695 * A flow_mod_spec starts with a 16-bit header. A header that is all-bits-0 is
696 * a no-op used for padding the action as a whole to a multiple of 8 bytes in
697 * length. Otherwise, the flow_mod_spec can be thought of as copying 'n_bits'
698 * bits from a source to a destination. In this case, the header contains
699 * multiple fields:
700 *
701 * 15 14 13 12 11 10 0
702 * +------+---+------+---------------------------------+
703 * | 0 |src| dst | n_bits |
704 * +------+---+------+---------------------------------+
705 *
706 * The meaning and format of a flow_mod_spec depends on 'src' and 'dst'. The
707 * following table summarizes the meaning of each possible combination.
708 * Details follow the table:
709 *
710 * src dst meaning
711 * --- --- ----------------------------------------------------------
712 * 0 0 Add match criteria based on value in a field.
713 * 1 0 Add match criteria based on an immediate value.
714 * 0 1 Add NXAST_REG_LOAD action to copy field into a different field.
715 * 1 1 Add NXAST_REG_LOAD action to load immediate value into a field.
716 * 0 2 Add OFPAT_OUTPUT action to output to port from specified field.
717 * All other combinations are undefined and not allowed.
718 *
719 * The flow_mod_spec header is followed by a source specification and a
720 * destination specification. The format and meaning of the source
721 * specification depends on 'src':
722 *
723 * - If 'src' is 0, the source bits are taken from a field in the flow to
724 * which this action is attached. (This should be a wildcarded field. If
725 * its value is fully specified then the source bits being copied have
726 * constant values.)
727 *
728 * The source specification is an ovs_be32 'field' and an ovs_be16 'ofs'.
729 * 'field' is an nxm_header with nxm_hasmask=0, and 'ofs' the starting bit
730 * offset within that field. The source bits are field[ofs:ofs+n_bits-1].
731 * 'field' and 'ofs' are subject to the same restrictions as the source
732 * field in NXAST_REG_MOVE.
733 *
734 * - If 'src' is 1, the source bits are a constant value. The source
735 * specification is (n_bits+15)/16*2 bytes long. Taking those bytes as a
736 * number in network order, the source bits are the 'n_bits'
737 * least-significant bits. The switch will report an error if other bits
738 * in the constant are nonzero.
739 *
740 * The flow_mod_spec destination specification, for 'dst' of 0 or 1, is an
741 * ovs_be32 'field' and an ovs_be16 'ofs'. 'field' is an nxm_header with
742 * nxm_hasmask=0 and 'ofs' is a starting bit offset within that field. The
743 * meaning of the flow_mod_spec depends on 'dst':
744 *
745 * - If 'dst' is 0, the flow_mod_spec specifies match criteria for the new
746 * flow. The new flow matches only if bits field[ofs:ofs+n_bits-1] in a
747 * packet equal the source bits. 'field' may be any nxm_header with
748 * nxm_hasmask=0 that is allowed in NXT_FLOW_MOD.
749 *
750 * Order is significant. Earlier flow_mod_specs must satisfy any
751 * prerequisites for matching fields specified later, by copying constant
752 * values into prerequisite fields.
753 *
754 * The switch will reject flow_mod_specs that do not satisfy NXM masking
755 * restrictions.
756 *
757 * - If 'dst' is 1, the flow_mod_spec specifies an NXAST_REG_LOAD action for
758 * the new flow. The new flow copies the source bits into
759 * field[ofs:ofs+n_bits-1]. Actions are executed in the same order as the
760 * flow_mod_specs.
761 *
337b9cec
BP
762 * A single NXAST_REG_LOAD action writes no more than 64 bits, so n_bits
763 * greater than 64 yields multiple NXAST_REG_LOAD actions.
764 *
75a75043
BP
765 * The flow_mod_spec destination spec for 'dst' of 2 (when 'src' is 0) is
766 * empty. It has the following meaning:
767 *
768 * - The flow_mod_spec specifies an OFPAT_OUTPUT action for the new flow.
769 * The new flow outputs to the OpenFlow port specified by the source field.
770 * Of the special output ports with value OFPP_MAX or larger, OFPP_IN_PORT,
771 * OFPP_FLOOD, OFPP_LOCAL, and OFPP_ALL are supported. Other special ports
772 * may not be used.
773 *
774 * Resource Management
775 * -------------------
776 *
777 * A switch has a finite amount of flow table space available for learning.
778 * When this space is exhausted, no new learning table entries will be learned
779 * until some existing flow table entries expire. The controller should be
780 * prepared to handle this by flooding (which can be implemented as a
781 * low-priority flow).
782 *
0e553d9c
BP
783 * If a learned flow matches a single TCP stream with a relatively long
784 * timeout, one may make the best of resource constraints by setting
785 * 'fin_idle_timeout' or 'fin_hard_timeout' (both measured in seconds), or
786 * both, to shorter timeouts. When either of these is specified as a nonzero
787 * value, OVS adds a NXAST_FIN_TIMEOUT action, with the specified timeouts, to
788 * the learned flow.
789 *
75a75043
BP
790 * Examples
791 * --------
792 *
793 * The following examples give a prose description of the flow_mod_specs along
794 * with informal notation for how those would be represented and a hex dump of
795 * the bytes that would be required.
796 *
797 * These examples could work with various nx_action_learn parameters. Typical
798 * values would be idle_timeout=OFP_FLOW_PERMANENT, hard_timeout=60,
799 * priority=OFP_DEFAULT_PRIORITY, flags=0, table_id=10.
800 *
801 * 1. Learn input port based on the source MAC, with lookup into
802 * NXM_NX_REG1[16:31] by resubmit to in_port=99:
803 *
804 * Match on in_port=99:
805 * ovs_be16(src=1, dst=0, n_bits=16), 20 10
806 * ovs_be16(99), 00 63
807 * ovs_be32(NXM_OF_IN_PORT), ovs_be16(0) 00 00 00 02 00 00
808 *
809 * Match Ethernet destination on Ethernet source from packet:
810 * ovs_be16(src=0, dst=0, n_bits=48), 00 30
811 * ovs_be32(NXM_OF_ETH_SRC), ovs_be16(0) 00 00 04 06 00 00
812 * ovs_be32(NXM_OF_ETH_DST), ovs_be16(0) 00 00 02 06 00 00
813 *
814 * Set NXM_NX_REG1[16:31] to the packet's input port:
815 * ovs_be16(src=0, dst=1, n_bits=16), 08 10
816 * ovs_be32(NXM_OF_IN_PORT), ovs_be16(0) 00 00 00 02 00 00
817 * ovs_be32(NXM_NX_REG1), ovs_be16(16) 00 01 02 04 00 10
818 *
819 * Given a packet that arrived on port A with Ethernet source address B,
820 * this would set up the flow "in_port=99, dl_dst=B,
821 * actions=load:A->NXM_NX_REG1[16..31]".
822 *
823 * In syntax accepted by ovs-ofctl, this action is: learn(in_port=99,
eddfcba7
BP
824 * NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[],
825 * load:NXM_OF_IN_PORT[]->NXM_NX_REG1[16..31])
75a75043
BP
826 *
827 * 2. Output to input port based on the source MAC and VLAN VID, with lookup
828 * into NXM_NX_REG1[16:31]:
829 *
830 * Match on same VLAN ID as packet:
831 * ovs_be16(src=0, dst=0, n_bits=12), 00 0c
832 * ovs_be32(NXM_OF_VLAN_TCI), ovs_be16(0) 00 00 08 02 00 00
833 * ovs_be32(NXM_OF_VLAN_TCI), ovs_be16(0) 00 00 08 02 00 00
834 *
835 * Match Ethernet destination on Ethernet source from packet:
836 * ovs_be16(src=0, dst=0, n_bits=48), 00 30
837 * ovs_be32(NXM_OF_ETH_SRC), ovs_be16(0) 00 00 04 06 00 00
838 * ovs_be32(NXM_OF_ETH_DST), ovs_be16(0) 00 00 02 06 00 00
839 *
840 * Output to the packet's input port:
841 * ovs_be16(src=0, dst=2, n_bits=16), 10 10
842 * ovs_be32(NXM_OF_IN_PORT), ovs_be16(0) 00 00 00 02 00 00
843 *
844 * Given a packet that arrived on port A with Ethernet source address B in
845 * VLAN C, this would set up the flow "dl_dst=B, vlan_vid=C,
846 * actions=output:A".
847 *
848 * In syntax accepted by ovs-ofctl, this action is:
849 * learn(NXM_OF_VLAN_TCI[0..11], NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[],
850 * output:NXM_OF_IN_PORT[])
851 *
852 * 3. Here's a recipe for a very simple-minded MAC learning switch. It uses a
853 * 10-second MAC expiration time to make it easier to see what's going on
854 *
855 * ovs-vsctl del-controller br0
856 * ovs-ofctl del-flows br0
857 * ovs-ofctl add-flow br0 "table=0 actions=learn(table=1, \
858 hard_timeout=10, NXM_OF_VLAN_TCI[0..11], \
859 NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[], \
860 output:NXM_OF_IN_PORT[]), resubmit(,1)"
861 * ovs-ofctl add-flow br0 "table=1 priority=0 actions=flood"
862 *
863 * You can then dump the MAC learning table with:
864 *
865 * ovs-ofctl dump-flows br0 table=1
866 *
867 * Usage Advice
868 * ------------
869 *
870 * For best performance, segregate learned flows into a table that is not used
871 * for any other flows except possibly for a lowest-priority "catch-all" flow
872 * (a flow with no match criteria). If different learning actions specify
873 * different match criteria, use different tables for the learned flows.
874 *
875 * The meaning of 'hard_timeout' and 'idle_timeout' can be counterintuitive.
876 * These timeouts apply to the flow that is added, which means that a flow with
877 * an idle timeout will expire when no traffic has been sent *to* the learned
878 * address. This is not usually the intent in MAC learning; instead, we want
879 * the MAC learn entry to expire when no traffic has been sent *from* the
880 * learned address. Use a hard timeout for that.
881 */
882struct nx_action_learn {
883 ovs_be16 type; /* OFPAT_VENDOR. */
884 ovs_be16 len; /* At least 24. */
885 ovs_be32 vendor; /* NX_VENDOR_ID. */
886 ovs_be16 subtype; /* NXAST_LEARN. */
887 ovs_be16 idle_timeout; /* Idle time before discarding (seconds). */
888 ovs_be16 hard_timeout; /* Max time before discarding (seconds). */
889 ovs_be16 priority; /* Priority level of flow entry. */
890 ovs_be64 cookie; /* Cookie for new flow. */
891 ovs_be16 flags; /* Either 0 or OFPFF_SEND_FLOW_REM. */
892 uint8_t table_id; /* Table to insert flow entry. */
0e553d9c
BP
893 uint8_t pad; /* Must be zero. */
894 ovs_be16 fin_idle_timeout; /* Idle timeout after FIN, if nonzero. */
895 ovs_be16 fin_hard_timeout; /* Hard timeout after FIN, if nonzero. */
75a75043
BP
896 /* Followed by a sequence of flow_mod_spec elements, as described above,
897 * until the end of the action is reached. */
898};
899OFP_ASSERT(sizeof(struct nx_action_learn) == 32);
900
901#define NX_LEARN_N_BITS_MASK 0x3ff
902
903#define NX_LEARN_SRC_FIELD (0 << 13) /* Copy from field. */
904#define NX_LEARN_SRC_IMMEDIATE (1 << 13) /* Copy from immediate value. */
905#define NX_LEARN_SRC_MASK (1 << 13)
906
907#define NX_LEARN_DST_MATCH (0 << 11) /* Add match criterion. */
908#define NX_LEARN_DST_LOAD (1 << 11) /* Add NXAST_REG_LOAD action. */
909#define NX_LEARN_DST_OUTPUT (2 << 11) /* Add OFPAT_OUTPUT action. */
910#define NX_LEARN_DST_RESERVED (3 << 11) /* Not yet defined. */
911#define NX_LEARN_DST_MASK (3 << 11)
0e553d9c
BP
912
913/* Action structure for NXAST_FIN_TIMEOUT.
914 *
915 * This action changes the idle timeout or hard timeout, or both, of this
916 * OpenFlow rule when the rule matches a TCP packet with the FIN or RST flag.
917 * When such a packet is observed, the action reduces the rule's idle timeout
918 * to 'fin_idle_timeout' and its hard timeout to 'fin_hard_timeout'. This
919 * action has no effect on an existing timeout that is already shorter than the
920 * one that the action specifies. A 'fin_idle_timeout' or 'fin_hard_timeout'
921 * of zero has no effect on the respective timeout.
922 *
923 * 'fin_idle_timeout' and 'fin_hard_timeout' are measured in seconds.
924 * 'fin_hard_timeout' specifies time since the flow's creation, not since the
925 * receipt of the FIN or RST.
926 *
927 * This is useful for quickly discarding learned TCP flows that otherwise will
928 * take a long time to expire.
929 *
930 * This action is intended for use with an OpenFlow rule that matches only a
931 * single TCP flow. If the rule matches multiple TCP flows (e.g. it wildcards
932 * all TCP traffic, or all TCP traffic to a particular port), then any FIN or
933 * RST in any of those flows will cause the entire OpenFlow rule to expire
934 * early, which is not normally desirable.
935 */
936struct nx_action_fin_timeout {
937 ovs_be16 type; /* OFPAT_VENDOR. */
938 ovs_be16 len; /* 16. */
939 ovs_be32 vendor; /* NX_VENDOR_ID. */
940 ovs_be16 subtype; /* NXAST_FIN_TIMEOUT. */
941 ovs_be16 fin_idle_timeout; /* New idle timeout, if nonzero. */
942 ovs_be16 fin_hard_timeout; /* New hard timeout, if nonzero. */
943 ovs_be16 pad; /* Must be zero. */
944};
945OFP_ASSERT(sizeof(struct nx_action_fin_timeout) == 16);
75a75043 946\f
3b6a2571
EJ
947/* Action structure for NXAST_AUTOPATH.
948 *
949 * This action performs the following steps in sequence:
950 *
951 * 1. Hashes the flow using an implementation-defined hash function.
952 *
953 * The hashed fields' values are drawn from the current state of the
954 * flow, including all modifications that have been made by actions up to
955 * this point.
956 *
957 * 2. Selects an OpenFlow 'port'.
958 *
959 * 'port' is selected in an implementation-defined manner, taking into
960 * account 'id' and the hash value calculated in step 1.
961 *
962 * Generally a switch will have been configured with a set of ports that
963 * may be chosen given 'id'. The switch may take into account any number
964 * of factors when choosing 'port' from its configured set. Factors may
965 * include carrier, load, and the results of configuration protocols such
966 * as LACP.
967 *
968 * 3. Stores 'port' in dst[ofs:ofs+n_bits].
969 *
970 * The format and semantics of 'dst' and 'ofs_nbits' are similar to those
43edca57 971 * for the NXAST_REG_LOAD action.
3b6a2571
EJ
972 *
973 * The switch will reject actions in which ofs+n_bits is greater than the width
974 * of 'dst', with error type OFPET_BAD_ACTION, code OFPBAC_BAD_ARGUMENT.
975 */
976struct nx_action_autopath {
977 ovs_be16 type; /* OFPAT_VENDOR. */
2716c204 978 ovs_be16 len; /* Length is 24. */
3b6a2571 979 ovs_be32 vendor; /* NX_VENDOR_ID. */
eac7014f 980 ovs_be16 subtype; /* NXAST_AUTOPATH. */
3b6a2571
EJ
981
982 /* Where to store the result. */
983 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
43edca57 984 ovs_be32 dst; /* Destination. */
3b6a2571
EJ
985
986 ovs_be32 id; /* Autopath ID. */
987 ovs_be32 pad;
988};
989OFP_ASSERT(sizeof(struct nx_action_autopath) == 24);
990\f
a368bb53 991/* Action structure for NXAST_BUNDLE and NXAST_BUNDLE_LOAD.
daff3353 992 *
a368bb53
EJ
993 * The bundle actions choose a slave from a supplied list of options.
994 * NXAST_BUNDLE outputs to its selection. NXAST_BUNDLE_LOAD writes its
995 * selection to a register.
daff3353
EJ
996 *
997 * The list of possible slaves follows the nx_action_bundle structure. The size
998 * of each slave is governed by its type as indicated by the 'slave_type'
999 * parameter. The list of slaves should be padded at its end with zeros to make
1000 * the total length of the action a multiple of 8.
1001 *
1002 * Switches infer from the 'slave_type' parameter the size of each slave. All
1003 * implementations must support the NXM_OF_IN_PORT 'slave_type' which indicates
1004 * that the slaves are OpenFlow port numbers with NXM_LENGTH(NXM_OF_IN_PORT) ==
1005 * 2 byte width. Switches should reject actions which indicate unknown or
1006 * unsupported slave types.
1007 *
1008 * Switches use a strategy dictated by the 'algorithm' parameter to choose a
1009 * slave. If the switch does not support the specified 'algorithm' parameter,
1010 * it should reject the action.
1011 *
439e4d8c
EJ
1012 * Several algorithms take into account liveness when selecting slaves. The
1013 * liveness of a slave is implementation defined (with one exception), but will
1014 * generally take into account things like its carrier status and the results
1015 * of any link monitoring protocols which happen to be running on it. In order
1016 * to give controllers a place-holder value, the OFPP_NONE port is always
1017 * considered live.
1018 *
daff3353
EJ
1019 * Some slave selection strategies require the use of a hash function, in which
1020 * case the 'fields' and 'basis' parameters should be populated. The 'fields'
1021 * parameter (one of NX_HASH_FIELDS_*) designates which parts of the flow to
1022 * hash. Refer to the definition of "enum nx_hash_fields" for details. The
1023 * 'basis' parameter is used as a universal hash parameter. Different values
1024 * of 'basis' yield different hash results.
1025 *
1026 * The 'zero' parameter at the end of the action structure is reserved for
1027 * future use. Switches are required to reject actions which have nonzero
a368bb53
EJ
1028 * bytes in the 'zero' field.
1029 *
1030 * NXAST_BUNDLE actions should have 'ofs_nbits' and 'dst' zeroed. Switches
1031 * should reject actions which have nonzero bytes in either of these fields.
1032 *
1033 * NXAST_BUNDLE_LOAD stores the OpenFlow port number of the selected slave in
1034 * dst[ofs:ofs+n_bits]. The format and semantics of 'dst' and 'ofs_nbits' are
1035 * similar to those for the NXAST_REG_LOAD action. */
daff3353
EJ
1036struct nx_action_bundle {
1037 ovs_be16 type; /* OFPAT_VENDOR. */
1038 ovs_be16 len; /* Length including slaves. */
1039 ovs_be32 vendor; /* NX_VENDOR_ID. */
799d2bfa 1040 ovs_be16 subtype; /* NXAST_BUNDLE or NXAST_BUNDLE_LOAD. */
daff3353
EJ
1041
1042 /* Slave choice algorithm to apply to hash value. */
1043 ovs_be16 algorithm; /* One of NX_BD_ALG_*. */
1044
1045 /* What fields to hash and how. */
735bc64a 1046 ovs_be16 fields; /* One of NX_HASH_FIELDS_*. */
daff3353
EJ
1047 ovs_be16 basis; /* Universal hash parameter. */
1048
1049 ovs_be32 slave_type; /* NXM_OF_IN_PORT. */
1050 ovs_be16 n_slaves; /* Number of slaves. */
1051
a368bb53
EJ
1052 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
1053 ovs_be32 dst; /* Destination. */
1054
1055 uint8_t zero[4]; /* Reserved. Must be zero. */
daff3353
EJ
1056};
1057OFP_ASSERT(sizeof(struct nx_action_bundle) == 32);
1058
1059/* NXAST_BUNDLE: Bundle slave choice algorithm to apply.
1060 *
1061 * In the descriptions below, 'slaves' is the list of possible slaves in the
1062 * order they appear in the OpenFlow action. */
1063enum nx_bd_algorithm {
1064 /* Chooses the first live slave listed in the bundle.
1065 *
1066 * O(n_slaves) performance. */
1067 NX_BD_ALG_ACTIVE_BACKUP,
1068
1069 /* for i in [0,n_slaves):
1070 * weights[i] = hash(flow, i)
1071 * slave = { slaves[i] such that weights[i] >= weights[j] for all j != i }
1072 *
1073 * Redistributes 1/n_slaves of traffic when a slave's liveness changes.
1074 * O(n_slaves) performance.
1075 *
1076 * Uses the 'fields' and 'basis' parameters. */
1077 NX_BD_ALG_HRW /* Highest Random Weight. */
1078};
c2d967a5
MM
1079
1080\f
1081/* Action structure for NXAST_DEC_TTL_CNT_IDS.
1082 *
1083 * If the packet is not IPv4 or IPv6, does nothing. For IPv4 or IPv6, if the
1084 * TTL or hop limit is at least 2, decrements it by 1. Otherwise, if TTL or
1085 * hop limit is 0 or 1, sends a packet-in to the controllers with each of the
1086 * 'n_controllers' controller IDs specified in 'cnt_ids'.
1087 *
1088 * (This differs from NXAST_DEC_TTL in that for NXAST_DEC_TTL the packet-in is
1089 * sent only to controllers with id 0.)
1090 */
1091struct nx_action_cnt_ids {
1092 ovs_be16 type; /* OFPAT_VENDOR. */
1093 ovs_be16 len; /* Length including slaves. */
1094 ovs_be32 vendor; /* NX_VENDOR_ID. */
1095 ovs_be16 subtype; /* NXAST_DEC_TTL_CNT_IDS. */
1096
1097 ovs_be16 n_controllers; /* Number of controllers. */
1098 uint8_t zeros[4]; /* Must be zero. */
1099
1100 /* Followed by 1 or more controller ids.
1101 *
1102 * uint16_t cnt_ids[]; // Controller ids.
1103 * uint8_t pad[]; // Must be 0 to 8-byte align cnt_ids[].
1104 */
1105};
1106OFP_ASSERT(sizeof(struct nx_action_cnt_ids) == 16);
1107
daff3353 1108\f
f694937d
EJ
1109/* Action structure for NXAST_OUTPUT_REG.
1110 *
1111 * Outputs to the OpenFlow port number written to src[ofs:ofs+nbits].
1112 *
1113 * The format and semantics of 'src' and 'ofs_nbits' are similar to those for
1114 * the NXAST_REG_LOAD action.
1115 *
1116 * The acceptable nxm_header values for 'src' are the same as the acceptable
1117 * nxm_header values for the 'src' field of NXAST_REG_MOVE.
1118 *
1119 * The 'max_len' field indicates the number of bytes to send when the chosen
1120 * port is OFPP_CONTROLLER. Its semantics are equivalent to the 'max_len'
1121 * field of OFPAT_OUTPUT.
1122 *
1123 * The 'zero' field is required to be zeroed for forward compatibility. */
1124struct nx_action_output_reg {
1125 ovs_be16 type; /* OFPAT_VENDOR. */
1126 ovs_be16 len; /* 24. */
1127 ovs_be32 vendor; /* NX_VENDOR_ID. */
1128 ovs_be16 subtype; /* NXAST_OUTPUT_REG. */
1129
1130 ovs_be16 ofs_nbits; /* (ofs << 6) | (n_bits - 1). */
1131 ovs_be32 src; /* Source. */
1132
1133 ovs_be16 max_len; /* Max length to send to controller. */
1134
1135 uint8_t zero[6]; /* Reserved, must be zero. */
1136};
1137OFP_ASSERT(sizeof(struct nx_action_output_reg) == 24);
1138\f
848e8809
EJ
1139/* NXAST_EXIT
1140 *
1141 * Discontinues action processing.
1142 *
1143 * The NXAST_EXIT action causes the switch to immediately halt processing
1144 * actions for the flow. Any actions which have already been processed are
1145 * executed by the switch. However, any further actions, including those which
1146 * may be in different tables, or different levels of the NXAST_RESUBMIT
1147 * hierarchy, will be ignored.
1148 *
1149 * Uses the nx_action_header structure. */
1150\f
09246b99
BP
1151/* Flexible flow specifications (aka NXM = Nicira Extended Match).
1152 *
eec25dc1 1153 * OpenFlow 1.0 has "struct ofp10_match" for specifying flow matches. This
09246b99
BP
1154 * structure is fixed-length and hence difficult to extend. This section
1155 * describes a more flexible, variable-length flow match, called "nx_match" for
1156 * short, that is also supported by Open vSwitch. This section also defines a
eec25dc1 1157 * replacement for each OpenFlow message that includes struct ofp10_match.
09246b99
BP
1158 *
1159 *
1160 * Format
1161 * ======
1162 *
1163 * An nx_match is a sequence of zero or more "nxm_entry"s, which are
1164 * type-length-value (TLV) entries, each 5 to 259 (inclusive) bytes long.
1165 * "nxm_entry"s are not aligned on or padded to any multibyte boundary. The
1166 * first 4 bytes of an nxm_entry are its "header", followed by the entry's
1167 * "body".
1168 *
1169 * An nxm_entry's header is interpreted as a 32-bit word in network byte order:
1170 *
1171 * |<-------------------- nxm_type ------------------>|
1172 * | |
1173 * |31 16 15 9| 8 7 0
1174 * +----------------------------------+---------------+--+------------------+
1175 * | nxm_vendor | nxm_field |hm| nxm_length |
1176 * +----------------------------------+---------------+--+------------------+
1177 *
1178 * The most-significant 23 bits of the header are collectively "nxm_type".
1179 * Bits 16...31 are "nxm_vendor", one of the NXM_VENDOR_* values below. Bits
1180 * 9...15 are "nxm_field", which is a vendor-specific value. nxm_type normally
1181 * designates a protocol header, such as the Ethernet type, but it can also
1182 * refer to packet metadata, such as the switch port on which a packet arrived.
1183 *
1184 * Bit 8 is "nxm_hasmask" (labeled "hm" above for space reasons). The meaning
1185 * of this bit is explained later.
1186 *
1187 * The least-significant 8 bits are "nxm_length", a positive integer. The
1188 * length of the nxm_entry, including the header, is exactly 4 + nxm_length
1189 * bytes.
1190 *
1191 * For a given nxm_vendor, nxm_field, and nxm_hasmask value, nxm_length is a
1192 * constant. It is included only to allow software to minimally parse
1193 * "nxm_entry"s of unknown types. (Similarly, for a given nxm_vendor,
1194 * nxm_field, and nxm_length, nxm_hasmask is a constant.)
1195 *
1196 *
1197 * Semantics
1198 * =========
1199 *
1200 * A zero-length nx_match (one with no "nxm_entry"s) matches every packet.
1201 *
1202 * An nxm_entry places a constraint on the packets matched by the nx_match:
1203 *
1204 * - If nxm_hasmask is 0, the nxm_entry's body contains a value for the
1205 * field, called "nxm_value". The nx_match matches only packets in which
1206 * the field equals nxm_value.
1207 *
1208 * - If nxm_hasmask is 1, then the nxm_entry's body contains a value for the
1209 * field (nxm_value), followed by a bitmask of the same length as the
1210 * value, called "nxm_mask". For each 1-bit in position J in nxm_mask, the
1211 * nx_match matches only packets for which bit J in the given field's value
1212 * matches bit J in nxm_value. A 0-bit in nxm_mask causes the
e1cfc4e4
BP
1213 * corresponding bit in nxm_value is ignored (it should be 0; Open vSwitch
1214 * may enforce this someday), as is the corresponding bit in the field's
1215 * value. (The sense of the nxm_mask bits is the opposite of that used by
1216 * the "wildcards" member of struct ofp10_match.)
09246b99
BP
1217 *
1218 * When nxm_hasmask is 1, nxm_length is always even.
1219 *
1220 * An all-zero-bits nxm_mask is equivalent to omitting the nxm_entry
1221 * entirely. An all-one-bits nxm_mask is equivalent to specifying 0 for
1222 * nxm_hasmask.
1223 *
1224 * When there are multiple "nxm_entry"s, all of the constraints must be met.
1225 *
1226 *
1227 * Mask Restrictions
1228 * =================
1229 *
1230 * Masks may be restricted:
1231 *
1232 * - Some nxm_types may not support masked wildcards, that is, nxm_hasmask
1233 * must always be 0 when these fields are specified. For example, the
1234 * field that identifies the port on which a packet was received may not be
1235 * masked.
1236 *
1237 * - Some nxm_types that do support masked wildcards may only support certain
1238 * nxm_mask patterns. For example, fields that have IPv4 address values
1239 * may be restricted to CIDR masks.
1240 *
1241 * These restrictions should be noted in specifications for individual fields.
1242 * A switch may accept an nxm_hasmask or nxm_mask value that the specification
1243 * disallows, if the switch correctly implements support for that nxm_hasmask
1244 * or nxm_mask value. A switch must reject an attempt to set up a flow that
1245 * contains a nxm_hasmask or nxm_mask value that it does not support.
1246 *
1247 *
1248 * Prerequisite Restrictions
1249 * =========================
1250 *
1251 * The presence of an nxm_entry with a given nxm_type may be restricted based
1252 * on the presence of or values of other "nxm_entry"s. For example:
1253 *
1254 * - An nxm_entry for nxm_type=NXM_OF_IP_TOS is allowed only if it is
1255 * preceded by another entry with nxm_type=NXM_OF_ETH_TYPE, nxm_hasmask=0,
1256 * and nxm_value=0x0800. That is, matching on the IP source address is
1257 * allowed only if the Ethernet type is explicitly set to IP.
1258 *
e51df1a0
BP
1259 * - An nxm_entry for nxm_type=NXM_OF_TCP_SRC is allowed only if it is
1260 * preceded by an entry with nxm_type=NXM_OF_ETH_TYPE, nxm_hasmask=0, and
1261 * nxm_value either 0x0800 or 0x86dd, and another with
1262 * nxm_type=NXM_OF_IP_PROTO, nxm_hasmask=0, nxm_value=6, in that order.
1263 * That is, matching on the TCP source port is allowed only if the Ethernet
1264 * type is IP or IPv6 and the IP protocol is TCP.
09246b99
BP
1265 *
1266 * These restrictions should be noted in specifications for individual fields.
1267 * A switch may implement relaxed versions of these restrictions. A switch
1268 * must reject an attempt to set up a flow that violates its restrictions.
1269 *
1270 *
1271 * Ordering Restrictions
1272 * =====================
1273 *
1274 * An nxm_entry that has prerequisite restrictions must appear after the
1275 * "nxm_entry"s for its prerequisites. Ordering of "nxm_entry"s within an
1276 * nx_match is not otherwise constrained.
1277 *
1278 * Any given nxm_type may appear in an nx_match at most once.
1279 *
1280 *
1281 * nxm_entry Examples
1282 * ==================
1283 *
1284 * These examples show the format of a single nxm_entry with particular
1285 * nxm_hasmask and nxm_length values. The diagrams are labeled with field
1286 * numbers and byte indexes.
1287 *
1288 *
be86ea7a 1289 * 8-bit nxm_value, nxm_hasmask=1, nxm_length=2:
09246b99
BP
1290 *
1291 * 0 3 4 5
1292 * +------------+---+---+
1293 * | header | v | m |
1294 * +------------+---+---+
1295 *
1296 *
1297 * 16-bit nxm_value, nxm_hasmask=0, nxm_length=2:
1298 *
1299 * 0 3 4 5
1300 * +------------+------+
1301 * | header | value|
1302 * +------------+------+
1303 *
1304 *
1305 * 32-bit nxm_value, nxm_hasmask=0, nxm_length=4:
1306 *
1307 * 0 3 4 7
1308 * +------------+-------------+
1309 * | header | nxm_value |
1310 * +------------+-------------+
1311 *
1312 *
1313 * 48-bit nxm_value, nxm_hasmask=0, nxm_length=6:
1314 *
1315 * 0 3 4 9
1316 * +------------+------------------+
1317 * | header | nxm_value |
1318 * +------------+------------------+
1319 *
1320 *
1321 * 48-bit nxm_value, nxm_hasmask=1, nxm_length=12:
1322 *
1323 * 0 3 4 9 10 15
1324 * +------------+------------------+------------------+
1325 * | header | nxm_value | nxm_mask |
1326 * +------------+------------------+------------------+
1327 *
1328 *
1329 * Error Reporting
1330 * ===============
1331 *
1332 * A switch should report an error in an nx_match using error type
1333 * OFPET_BAD_REQUEST and one of the NXBRC_NXM_* codes. Ideally the switch
1334 * should report a specific error code, if one is assigned for the particular
1335 * problem, but NXBRC_NXM_INVALID is also available to report a generic
1336 * nx_match error.
1337 */
1338
1339#define NXM_HEADER__(VENDOR, FIELD, HASMASK, LENGTH) \
1340 (((VENDOR) << 16) | ((FIELD) << 9) | ((HASMASK) << 8) | (LENGTH))
1341#define NXM_HEADER(VENDOR, FIELD, LENGTH) \
1342 NXM_HEADER__(VENDOR, FIELD, 0, LENGTH)
1343#define NXM_HEADER_W(VENDOR, FIELD, LENGTH) \
1344 NXM_HEADER__(VENDOR, FIELD, 1, (LENGTH) * 2)
1345#define NXM_VENDOR(HEADER) ((HEADER) >> 16)
1346#define NXM_FIELD(HEADER) (((HEADER) >> 9) & 0x7f)
1347#define NXM_TYPE(HEADER) (((HEADER) >> 9) & 0x7fffff)
1348#define NXM_HASMASK(HEADER) (((HEADER) >> 8) & 1)
1349#define NXM_LENGTH(HEADER) ((HEADER) & 0xff)
1350
1351#define NXM_MAKE_WILD_HEADER(HEADER) \
1352 NXM_HEADER_W(NXM_VENDOR(HEADER), NXM_FIELD(HEADER), NXM_LENGTH(HEADER))
1353
1354/* ## ------------------------------- ## */
1355/* ## OpenFlow 1.0-compatible fields. ## */
1356/* ## ------------------------------- ## */
1357
1358/* Physical or virtual port on which the packet was received.
1359 *
1360 * Prereqs: None.
1361 *
1362 * Format: 16-bit integer in network byte order.
1363 *
1364 * Masking: Not maskable. */
1365#define NXM_OF_IN_PORT NXM_HEADER (0x0000, 0, 2)
1366
1367/* Source or destination address in Ethernet header.
1368 *
1369 * Prereqs: None.
1370 *
1371 * Format: 48-bit Ethernet MAC address.
1372 *
73c0ce34
JS
1373 * Masking: Fully maskable, in versions 1.8 and later. Earlier versions only
1374 * supported the following masks for NXM_OF_ETH_DST_W: 00:00:00:00:00:00,
1375 * fe:ff:ff:ff:ff:ff, 01:00:00:00:00:00, ff:ff:ff:ff:ff:ff. */
09246b99 1376#define NXM_OF_ETH_DST NXM_HEADER (0x0000, 1, 6)
1e37a2d7 1377#define NXM_OF_ETH_DST_W NXM_HEADER_W(0x0000, 1, 6)
09246b99 1378#define NXM_OF_ETH_SRC NXM_HEADER (0x0000, 2, 6)
73c0ce34 1379#define NXM_OF_ETH_SRC_W NXM_HEADER_W(0x0000, 2, 6)
09246b99
BP
1380
1381/* Packet's Ethernet type.
1382 *
1383 * For an Ethernet II packet this is taken from the Ethernet header. For an
1384 * 802.2 LLC+SNAP header with OUI 00-00-00 this is taken from the SNAP header.
1385 * A packet that has neither format has value 0x05ff
1386 * (OFP_DL_TYPE_NOT_ETH_TYPE).
1387 *
1388 * For a packet with an 802.1Q header, this is the type of the encapsulated
1389 * frame.
1390 *
1391 * Prereqs: None.
1392 *
1393 * Format: 16-bit integer in network byte order.
1394 *
1395 * Masking: Not maskable. */
1396#define NXM_OF_ETH_TYPE NXM_HEADER (0x0000, 3, 2)
1397
1398/* 802.1Q TCI.
1399 *
1400 * For a packet with an 802.1Q header, this is the Tag Control Information
1401 * (TCI) field, with the CFI bit forced to 1. For a packet with no 802.1Q
1402 * header, this has value 0.
1403 *
1404 * Prereqs: None.
1405 *
1406 * Format: 16-bit integer in network byte order.
1407 *
1408 * Masking: Arbitrary masks.
1409 *
1410 * This field can be used in various ways:
1411 *
1412 * - If it is not constrained at all, the nx_match matches packets without
1413 * an 802.1Q header or with an 802.1Q header that has any TCI value.
1414 *
1415 * - Testing for an exact match with 0 matches only packets without an
1416 * 802.1Q header.
1417 *
1418 * - Testing for an exact match with a TCI value with CFI=1 matches packets
1419 * that have an 802.1Q header with a specified VID and PCP.
1420 *
1421 * - Testing for an exact match with a nonzero TCI value with CFI=0 does
1422 * not make sense. The switch may reject this combination.
1423 *
1424 * - Testing with a specific VID and CFI=1, with nxm_mask=0x1fff, matches
1425 * packets that have an 802.1Q header with that VID (and any PCP).
1426 *
1427 * - Testing with a specific PCP and CFI=1, with nxm_mask=0xf000, matches
1428 * packets that have an 802.1Q header with that PCP (and any VID).
1429 *
8ca67760 1430 * - Testing with nxm_value=0, nxm_mask=0x0fff matches packets with no 802.1Q
09246b99 1431 * header or with an 802.1Q header with a VID of 0.
8ca67760
BP
1432 *
1433 * - Testing with nxm_value=0, nxm_mask=0xe000 matches packets with no 802.1Q
1434 * header or with an 802.1Q header with a PCP of 0.
1435 *
1436 * - Testing with nxm_value=0, nxm_mask=0xefff matches packets with no 802.1Q
1437 * header or with an 802.1Q header with both VID and PCP of 0.
09246b99
BP
1438 */
1439#define NXM_OF_VLAN_TCI NXM_HEADER (0x0000, 4, 2)
1440#define NXM_OF_VLAN_TCI_W NXM_HEADER_W(0x0000, 4, 2)
1441
1442/* The "type of service" byte of the IP header, with the ECN bits forced to 0.
1443 *
d31f1109 1444 * Prereqs: NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
09246b99
BP
1445 *
1446 * Format: 8-bit integer with 2 least-significant bits forced to 0.
1447 *
1448 * Masking: Not maskable. */
1449#define NXM_OF_IP_TOS NXM_HEADER (0x0000, 5, 1)
1450
1451/* The "protocol" byte in the IP header.
1452 *
d31f1109 1453 * Prereqs: NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
09246b99
BP
1454 *
1455 * Format: 8-bit integer.
1456 *
1457 * Masking: Not maskable. */
1458#define NXM_OF_IP_PROTO NXM_HEADER (0x0000, 6, 1)
1459
1460/* The source or destination address in the IP header.
1461 *
1462 * Prereqs: NXM_OF_ETH_TYPE must match 0x0800 exactly.
1463 *
1464 * Format: 32-bit integer in network byte order.
1465 *
c08201d6
BP
1466 * Masking: Fully maskable, in Open vSwitch 1.8 and later. In earlier
1467 * versions, only CIDR masks are allowed, that is, masks that consist of N
09246b99
BP
1468 * high-order bits set to 1 and the other 32-N bits set to 0. */
1469#define NXM_OF_IP_SRC NXM_HEADER (0x0000, 7, 4)
1470#define NXM_OF_IP_SRC_W NXM_HEADER_W(0x0000, 7, 4)
1471#define NXM_OF_IP_DST NXM_HEADER (0x0000, 8, 4)
1472#define NXM_OF_IP_DST_W NXM_HEADER_W(0x0000, 8, 4)
1473
1474/* The source or destination port in the TCP header.
1475 *
1476 * Prereqs:
d31f1109 1477 * NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
09246b99
BP
1478 * NXM_OF_IP_PROTO must match 6 exactly.
1479 *
1480 * Format: 16-bit integer in network byte order.
1481 *
73f33563
BP
1482 * Masking: Fully maskable, in Open vSwitch 1.6 and later. Not maskable, in
1483 * earlier versions. */
09246b99 1484#define NXM_OF_TCP_SRC NXM_HEADER (0x0000, 9, 2)
73f33563 1485#define NXM_OF_TCP_SRC_W NXM_HEADER_W(0x0000, 9, 2)
09246b99 1486#define NXM_OF_TCP_DST NXM_HEADER (0x0000, 10, 2)
73f33563 1487#define NXM_OF_TCP_DST_W NXM_HEADER_W(0x0000, 10, 2)
09246b99
BP
1488
1489/* The source or destination port in the UDP header.
1490 *
1491 * Prereqs:
d31f1109 1492 * NXM_OF_ETH_TYPE must match either 0x0800 or 0x86dd.
09246b99
BP
1493 * NXM_OF_IP_PROTO must match 17 exactly.
1494 *
1495 * Format: 16-bit integer in network byte order.
1496 *
73f33563
BP
1497 * Masking: Fully maskable, in Open vSwitch 1.6 and later. Not maskable, in
1498 * earlier versions. */
09246b99 1499#define NXM_OF_UDP_SRC NXM_HEADER (0x0000, 11, 2)
73f33563 1500#define NXM_OF_UDP_SRC_W NXM_HEADER_W(0x0000, 11, 2)
09246b99 1501#define NXM_OF_UDP_DST NXM_HEADER (0x0000, 12, 2)
73f33563 1502#define NXM_OF_UDP_DST_W NXM_HEADER_W(0x0000, 12, 2)
09246b99
BP
1503
1504/* The type or code in the ICMP header.
1505 *
1506 * Prereqs:
1507 * NXM_OF_ETH_TYPE must match 0x0800 exactly.
1508 * NXM_OF_IP_PROTO must match 1 exactly.
1509 *
1510 * Format: 8-bit integer.
1511 *
1512 * Masking: Not maskable. */
1513#define NXM_OF_ICMP_TYPE NXM_HEADER (0x0000, 13, 1)
1514#define NXM_OF_ICMP_CODE NXM_HEADER (0x0000, 14, 1)
1515
1516/* ARP opcode.
1517 *
1518 * For an Ethernet+IP ARP packet, the opcode in the ARP header. Always 0
1519 * otherwise. Only ARP opcodes between 1 and 255 should be specified for
1520 * matching.
1521 *
8087f5ff 1522 * Prereqs: NXM_OF_ETH_TYPE must match either 0x0806 or 0x8035.
09246b99
BP
1523 *
1524 * Format: 16-bit integer in network byte order.
1525 *
1526 * Masking: Not maskable. */
1527#define NXM_OF_ARP_OP NXM_HEADER (0x0000, 15, 2)
1528
1529/* For an Ethernet+IP ARP packet, the source or target protocol address
1530 * in the ARP header. Always 0 otherwise.
1531 *
8087f5ff 1532 * Prereqs: NXM_OF_ETH_TYPE must match either 0x0806 or 0x8035.
09246b99
BP
1533 *
1534 * Format: 32-bit integer in network byte order.
1535 *
c08201d6
BP
1536 * Masking: Fully maskable, in Open vSwitch 1.8 and later. In earlier
1537 * versions, only CIDR masks are allowed, that is, masks that consist of N
09246b99
BP
1538 * high-order bits set to 1 and the other 32-N bits set to 0. */
1539#define NXM_OF_ARP_SPA NXM_HEADER (0x0000, 16, 4)
1540#define NXM_OF_ARP_SPA_W NXM_HEADER_W(0x0000, 16, 4)
1541#define NXM_OF_ARP_TPA NXM_HEADER (0x0000, 17, 4)
1542#define NXM_OF_ARP_TPA_W NXM_HEADER_W(0x0000, 17, 4)
1543
1544/* ## ------------------------ ## */
1545/* ## Nicira match extensions. ## */
1546/* ## ------------------------ ## */
1547
b6c9e612
BP
1548/* Metadata registers.
1549 *
1550 * Registers initially have value 0. Actions allow register values to be
1551 * manipulated.
1552 *
1553 * Prereqs: None.
1554 *
1555 * Format: Array of 32-bit integer registers. Space is reserved for up to
1556 * NXM_NX_MAX_REGS registers, but switches may implement fewer.
1557 *
1558 * Masking: Arbitrary masks. */
1559#define NXM_NX_MAX_REGS 16
1560#define NXM_NX_REG(IDX) NXM_HEADER (0x0001, IDX, 4)
1561#define NXM_NX_REG_W(IDX) NXM_HEADER_W(0x0001, IDX, 4)
1562#define NXM_NX_REG_IDX(HEADER) NXM_FIELD(HEADER)
19e7439c
BP
1563#define NXM_IS_NX_REG(HEADER) (!((((HEADER) ^ NXM_NX_REG0)) & 0xffffe1ff))
1564#define NXM_IS_NX_REG_W(HEADER) (!((((HEADER) ^ NXM_NX_REG0_W)) & 0xffffe1ff))
b6c9e612
BP
1565#define NXM_NX_REG0 NXM_HEADER (0x0001, 0, 4)
1566#define NXM_NX_REG0_W NXM_HEADER_W(0x0001, 0, 4)
1567#define NXM_NX_REG1 NXM_HEADER (0x0001, 1, 4)
1568#define NXM_NX_REG1_W NXM_HEADER_W(0x0001, 1, 4)
1569#define NXM_NX_REG2 NXM_HEADER (0x0001, 2, 4)
1570#define NXM_NX_REG2_W NXM_HEADER_W(0x0001, 2, 4)
1571#define NXM_NX_REG3 NXM_HEADER (0x0001, 3, 4)
1572#define NXM_NX_REG3_W NXM_HEADER_W(0x0001, 3, 4)
d2c0fed9
JP
1573#define NXM_NX_REG4 NXM_HEADER (0x0001, 4, 4)
1574#define NXM_NX_REG4_W NXM_HEADER_W(0x0001, 4, 4)
e9358af6
EJ
1575#define NXM_NX_REG5 NXM_HEADER (0x0001, 5, 4)
1576#define NXM_NX_REG5_W NXM_HEADER_W(0x0001, 5, 4)
1577#define NXM_NX_REG6 NXM_HEADER (0x0001, 6, 4)
1578#define NXM_NX_REG6_W NXM_HEADER_W(0x0001, 6, 4)
1579#define NXM_NX_REG7 NXM_HEADER (0x0001, 7, 4)
1580#define NXM_NX_REG7_W NXM_HEADER_W(0x0001, 7, 4)
b6c9e612 1581
09246b99
BP
1582/* Tunnel ID.
1583 *
79f827fa
KM
1584 * For a packet received via a GRE or VXLAN tunnel including a (32-bit) key, the
1585 * key is stored in the low 32-bits and the high bits are zeroed. For other
1586 * packets, the value is 0.
1587 *
1588 * All zero bits, for packets not received via a keyed tunnel.
09246b99
BP
1589 *
1590 * Prereqs: None.
1591 *
1592 * Format: 64-bit integer in network byte order.
1593 *
1594 * Masking: Arbitrary masks. */
1595#define NXM_NX_TUN_ID NXM_HEADER (0x0001, 16, 8)
1596#define NXM_NX_TUN_ID_W NXM_HEADER_W(0x0001, 16, 8)
1597
bad68a99
JP
1598/* For an Ethernet+IP ARP packet, the source or target hardware address
1599 * in the ARP header. Always 0 otherwise.
1600 *
8087f5ff 1601 * Prereqs: NXM_OF_ETH_TYPE must match either 0x0806 or 0x8035.
bad68a99
JP
1602 *
1603 * Format: 48-bit Ethernet MAC address.
1604 *
1605 * Masking: Not maskable. */
1606#define NXM_NX_ARP_SHA NXM_HEADER (0x0001, 17, 6)
1607#define NXM_NX_ARP_THA NXM_HEADER (0x0001, 18, 6)
1608
d31f1109
JP
1609/* The source or destination address in the IPv6 header.
1610 *
1611 * Prereqs: NXM_OF_ETH_TYPE must match 0x86dd exactly.
1612 *
1613 * Format: 128-bit IPv6 address.
1614 *
ff0b06ee
BP
1615 * Masking: Fully maskable, in Open vSwitch 1.8 and later. In previous
1616 * versions, only CIDR masks are allowed, that is, masks that consist of N
d31f1109
JP
1617 * high-order bits set to 1 and the other 128-N bits set to 0. */
1618#define NXM_NX_IPV6_SRC NXM_HEADER (0x0001, 19, 16)
1619#define NXM_NX_IPV6_SRC_W NXM_HEADER_W(0x0001, 19, 16)
1620#define NXM_NX_IPV6_DST NXM_HEADER (0x0001, 20, 16)
1621#define NXM_NX_IPV6_DST_W NXM_HEADER_W(0x0001, 20, 16)
1622
1623/* The type or code in the ICMPv6 header.
1624 *
1625 * Prereqs:
1626 * NXM_OF_ETH_TYPE must match 0x86dd exactly.
1627 * NXM_OF_IP_PROTO must match 58 exactly.
1628 *
1629 * Format: 8-bit integer.
1630 *
1631 * Masking: Not maskable. */
1632#define NXM_NX_ICMPV6_TYPE NXM_HEADER (0x0001, 21, 1)
1633#define NXM_NX_ICMPV6_CODE NXM_HEADER (0x0001, 22, 1)
1634
685a51a5
JP
1635/* The target address in an IPv6 Neighbor Discovery message.
1636 *
1637 * Prereqs:
1638 * NXM_OF_ETH_TYPE must match 0x86dd exactly.
1639 * NXM_OF_IP_PROTO must match 58 exactly.
1640 * NXM_OF_ICMPV6_TYPE must be either 135 or 136.
1641 *
1642 * Format: 128-bit IPv6 address.
1643 *
ff0b06ee
BP
1644 * Masking: Fully maskable, in Open vSwitch 1.8 and later. In previous
1645 * versions, only CIDR masks are allowed, that is, masks that consist of N
47284b1f
AA
1646 * high-order bits set to 1 and the other 128-N bits set to 0. */
1647#define NXM_NX_ND_TARGET NXM_HEADER (0x0001, 23, 16)
1648#define NXM_NX_ND_TARGET_W NXM_HEADER_W (0x0001, 23, 16)
685a51a5
JP
1649
1650/* The source link-layer address option in an IPv6 Neighbor Discovery
1651 * message.
1652 *
1653 * Prereqs:
1654 * NXM_OF_ETH_TYPE must match 0x86dd exactly.
1655 * NXM_OF_IP_PROTO must match 58 exactly.
1656 * NXM_OF_ICMPV6_TYPE must be exactly 135.
1657 *
1658 * Format: 48-bit Ethernet MAC address.
1659 *
1660 * Masking: Not maskable. */
1661#define NXM_NX_ND_SLL NXM_HEADER (0x0001, 24, 6)
1662
1663/* The target link-layer address option in an IPv6 Neighbor Discovery
1664 * message.
1665 *
1666 * Prereqs:
1667 * NXM_OF_ETH_TYPE must match 0x86dd exactly.
1668 * NXM_OF_IP_PROTO must match 58 exactly.
1669 * NXM_OF_ICMPV6_TYPE must be exactly 136.
1670 *
1671 * Format: 48-bit Ethernet MAC address.
1672 *
1673 * Masking: Not maskable. */
1674#define NXM_NX_ND_TLL NXM_HEADER (0x0001, 25, 6)
1675
7257b535
BP
1676/* IP fragment information.
1677 *
1678 * Prereqs:
1679 * NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
1680 *
1681 * Format: 8-bit value with one of the values 0, 1, or 3, as described below.
1682 *
1683 * Masking: Fully maskable.
1684 *
1685 * This field has three possible values:
1686 *
1687 * - A packet that is not an IP fragment has value 0.
1688 *
1689 * - A packet that is an IP fragment with offset 0 (the first fragment) has
1690 * bit 0 set and thus value 1.
1691 *
1692 * - A packet that is an IP fragment with nonzero offset has bits 0 and 1 set
1693 * and thus value 3.
1694 *
1695 * NX_IP_FRAG_ANY and NX_IP_FRAG_LATER are declared to symbolically represent
1696 * the meanings of bits 0 and 1.
1697 *
1698 * The switch may reject matches against values that can never appear.
1699 *
1700 * It is important to understand how this field interacts with the OpenFlow IP
1701 * fragment handling mode:
1702 *
1703 * - In OFPC_FRAG_DROP mode, the OpenFlow switch drops all IP fragments
1704 * before they reach the flow table, so every packet that is available for
1705 * matching will have value 0 in this field.
1706 *
1707 * - Open vSwitch does not implement OFPC_FRAG_REASM mode, but if it did then
1708 * IP fragments would be reassembled before they reached the flow table and
1709 * again every packet available for matching would always have value 0.
1710 *
1711 * - In OFPC_FRAG_NORMAL mode, all three values are possible, but OpenFlow
1712 * 1.0 says that fragments' transport ports are always 0, even for the
1713 * first fragment, so this does not provide much extra information.
1714 *
1715 * - In OFPC_FRAG_NX_MATCH mode, all three values are possible. For
1716 * fragments with offset 0, Open vSwitch makes L4 header information
1717 * available.
1718 */
1719#define NXM_NX_IP_FRAG NXM_HEADER (0x0001, 26, 1)
1720#define NXM_NX_IP_FRAG_W NXM_HEADER_W(0x0001, 26, 1)
1721
1722/* Bits in the value of NXM_NX_IP_FRAG. */
1723#define NX_IP_FRAG_ANY (1 << 0) /* Is this a fragment? */
1724#define NX_IP_FRAG_LATER (1 << 1) /* Is this a fragment with nonzero offset? */
d31f1109 1725
fa8223b7
JP
1726/* The flow label in the IPv6 header.
1727 *
1728 * Prereqs: NXM_OF_ETH_TYPE must match 0x86dd exactly.
1729 *
1730 * Format: 20-bit IPv6 flow label in least-significant bits.
1731 *
1732 * Masking: Not maskable. */
1733#define NXM_NX_IPV6_LABEL NXM_HEADER (0x0001, 27, 4)
1734
530180fd
JP
1735/* The ECN of the IP header.
1736 *
1737 * Prereqs: NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
1738 *
1739 * Format: ECN in the low-order 2 bits.
1740 *
1741 * Masking: Not maskable. */
1742#define NXM_NX_IP_ECN NXM_HEADER (0x0001, 28, 1)
1743
a61680c6
JP
1744/* The time-to-live/hop limit of the IP header.
1745 *
1746 * Prereqs: NXM_OF_ETH_TYPE must be either 0x0800 or 0x86dd.
1747 *
1748 * Format: 8-bit integer.
1749 *
1750 * Masking: Not maskable. */
1751#define NXM_NX_IP_TTL NXM_HEADER (0x0001, 29, 1)
1752
e729e793
JP
1753/* Flow cookie.
1754 *
1755 * This may be used to gain the OpenFlow 1.1-like ability to restrict
1756 * certain NXM-based Flow Mod and Flow Stats Request messages to flows
1757 * with specific cookies. See the "nx_flow_mod" and "nx_flow_stats_request"
1758 * structure definitions for more details. This match is otherwise not
1759 * allowed.
1760 *
1761 * Prereqs: None.
1762 *
1763 * Format: 64-bit integer in network byte order.
1764 *
1765 * Masking: Arbitrary masks. */
1766#define NXM_NX_COOKIE NXM_HEADER (0x0001, 30, 8)
1767#define NXM_NX_COOKIE_W NXM_HEADER_W(0x0001, 30, 8)
1768
09246b99
BP
1769/* ## --------------------- ## */
1770/* ## Requests and replies. ## */
1771/* ## --------------------- ## */
1772
492f7572 1773enum nx_flow_format {
09246b99 1774 NXFF_OPENFLOW10 = 0, /* Standard OpenFlow 1.0 compatible. */
310f3699 1775 NXFF_NXM = 2 /* Nicira extended match. */
09246b99
BP
1776};
1777
1778/* NXT_SET_FLOW_FORMAT request. */
73dbf4ab 1779struct nx_set_flow_format {
09246b99
BP
1780 ovs_be32 format; /* One of NXFF_*. */
1781};
982697a4 1782OFP_ASSERT(sizeof(struct nx_set_flow_format) == 4);
09246b99 1783
e729e793
JP
1784/* NXT_FLOW_MOD (analogous to OFPT_FLOW_MOD).
1785 *
1786 * It is possible to limit flow deletions and modifications to certain
623e1caf
JP
1787 * cookies by using the NXM_NX_COOKIE(_W) matches. The "cookie" field
1788 * is used only to add or modify flow cookies.
e729e793 1789 */
09246b99 1790struct nx_flow_mod {
09246b99
BP
1791 ovs_be64 cookie; /* Opaque controller-issued identifier. */
1792 ovs_be16 command; /* One of OFPFC_*. */
1793 ovs_be16 idle_timeout; /* Idle time before discarding (seconds). */
1794 ovs_be16 hard_timeout; /* Max time before discarding (seconds). */
1795 ovs_be16 priority; /* Priority level of flow entry. */
1796 ovs_be32 buffer_id; /* Buffered packet to apply to (or -1).
1797 Not meaningful for OFPFC_DELETE*. */
1798 ovs_be16 out_port; /* For OFPFC_DELETE* commands, require
1799 matching entries to include this as an
1800 output port. A value of OFPP_NONE
1801 indicates no restriction. */
1802 ovs_be16 flags; /* One of OFPFF_*. */
1803 ovs_be16 match_len; /* Size of nx_match. */
1804 uint8_t pad[6]; /* Align to 64-bits. */
1805 /* Followed by:
1806 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1807 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1808 * all-zero bytes, then
1809 * - Actions to fill out the remainder of the message length (always a
1810 * multiple of 8).
1811 */
1812};
982697a4 1813OFP_ASSERT(sizeof(struct nx_flow_mod) == 32);
09246b99
BP
1814
1815/* NXT_FLOW_REMOVED (analogous to OFPT_FLOW_REMOVED). */
1816struct nx_flow_removed {
09246b99
BP
1817 ovs_be64 cookie; /* Opaque controller-issued identifier. */
1818 ovs_be16 priority; /* Priority level of flow entry. */
1819 uint8_t reason; /* One of OFPRR_*. */
1820 uint8_t pad[1]; /* Align to 32-bits. */
1821 ovs_be32 duration_sec; /* Time flow was alive in seconds. */
1822 ovs_be32 duration_nsec; /* Time flow was alive in nanoseconds beyond
1823 duration_sec. */
1824 ovs_be16 idle_timeout; /* Idle timeout from original flow mod. */
1825 ovs_be16 match_len; /* Size of nx_match. */
1826 ovs_be64 packet_count;
1827 ovs_be64 byte_count;
1828 /* Followed by:
1829 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1830 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1831 * all-zero bytes. */
1832};
982697a4 1833OFP_ASSERT(sizeof(struct nx_flow_removed) == 40);
09246b99
BP
1834
1835/* Nicira vendor stats request of type NXST_FLOW (analogous to OFPST_FLOW
e729e793
JP
1836 * request).
1837 *
1838 * It is possible to limit matches to certain cookies by using the
1839 * NXM_NX_COOKIE and NXM_NX_COOKIE_W matches.
1840 */
09246b99 1841struct nx_flow_stats_request {
09246b99
BP
1842 ovs_be16 out_port; /* Require matching entries to include this
1843 as an output port. A value of OFPP_NONE
1844 indicates no restriction. */
1845 ovs_be16 match_len; /* Length of nx_match. */
1846 uint8_t table_id; /* ID of table to read (from ofp_table_stats)
1847 or 0xff for all tables. */
1848 uint8_t pad[3]; /* Align to 64 bits. */
1849 /* Followed by:
1850 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1851 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1852 * all-zero bytes, which must also exactly fill out the length of the
1853 * message.
1854 */
1855};
982697a4 1856OFP_ASSERT(sizeof(struct nx_flow_stats_request) == 8);
09246b99
BP
1857
1858/* Body for Nicira vendor stats reply of type NXST_FLOW (analogous to
f27f2134
BP
1859 * OFPST_FLOW reply).
1860 *
1861 * The values of 'idle_age' and 'hard_age' are only meaningful when talking to
1862 * a switch that implements the NXT_FLOW_AGE extension. Zero means that the
1863 * true value is unknown, perhaps because hardware does not track the value.
1864 * (Zero is also the value that one should ordinarily expect to see talking to
1865 * a switch that does not implement NXT_FLOW_AGE, since those switches zero the
1866 * padding bytes that these fields replaced.) A nonzero value X represents X-1
1867 * seconds. A value of 65535 represents 65534 or more seconds.
1868 *
1869 * 'idle_age' is the number of seconds that the flow has been idle, that is,
1870 * the number of seconds since a packet passed through the flow. 'hard_age' is
1871 * the number of seconds since the flow was last modified (e.g. OFPFC_MODIFY or
1872 * OFPFC_MODIFY_STRICT). (The 'duration_*' fields are the elapsed time since
1873 * the flow was added, regardless of subsequent modifications.)
1874 *
1875 * For a flow with an idle or hard timeout, 'idle_age' or 'hard_age',
1876 * respectively, will ordinarily be smaller than the timeout, but flow
1877 * expiration times are only approximate and so one must be prepared to
1878 * tolerate expirations that occur somewhat early or late.
1879 */
09246b99
BP
1880struct nx_flow_stats {
1881 ovs_be16 length; /* Length of this entry. */
1882 uint8_t table_id; /* ID of table flow came from. */
1883 uint8_t pad;
1884 ovs_be32 duration_sec; /* Time flow has been alive in seconds. */
1885 ovs_be32 duration_nsec; /* Time flow has been alive in nanoseconds
1886 beyond duration_sec. */
cc75d2c7 1887 ovs_be16 priority; /* Priority of the entry. */
09246b99
BP
1888 ovs_be16 idle_timeout; /* Number of seconds idle before expiration. */
1889 ovs_be16 hard_timeout; /* Number of seconds before expiration. */
1890 ovs_be16 match_len; /* Length of nx_match. */
f27f2134
BP
1891 ovs_be16 idle_age; /* Seconds since last packet, plus one. */
1892 ovs_be16 hard_age; /* Seconds since last modification, plus one. */
09246b99 1893 ovs_be64 cookie; /* Opaque controller-issued identifier. */
5e9d0469
BP
1894 ovs_be64 packet_count; /* Number of packets, UINT64_MAX if unknown. */
1895 ovs_be64 byte_count; /* Number of bytes, UINT64_MAX if unknown. */
09246b99
BP
1896 /* Followed by:
1897 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1898 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1899 * all-zero bytes, then
1900 * - Actions to fill out the remainder 'length' bytes (always a multiple
1901 * of 8).
1902 */
1903};
1904OFP_ASSERT(sizeof(struct nx_flow_stats) == 48);
1905
1906/* Nicira vendor stats request of type NXST_AGGREGATE (analogous to
a814ba0f
BP
1907 * OFPST_AGGREGATE request).
1908 *
1909 * The reply format is identical to the reply format for OFPST_AGGREGATE,
1910 * except for the header. */
09246b99 1911struct nx_aggregate_stats_request {
09246b99
BP
1912 ovs_be16 out_port; /* Require matching entries to include this
1913 as an output port. A value of OFPP_NONE
1914 indicates no restriction. */
1915 ovs_be16 match_len; /* Length of nx_match. */
1916 uint8_t table_id; /* ID of table to read (from ofp_table_stats)
1917 or 0xff for all tables. */
1918 uint8_t pad[3]; /* Align to 64 bits. */
1919 /* Followed by:
1920 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
1921 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
1922 * all-zero bytes, which must also exactly fill out the length of the
1923 * message.
1924 */
1925};
982697a4 1926OFP_ASSERT(sizeof(struct nx_aggregate_stats_request) == 8);
a7349929
BP
1927\f
1928/* NXT_SET_CONTROLLER_ID.
1929 *
1930 * Each OpenFlow controller connection has a 16-bit identifier that is
1931 * initially 0. This message changes the connection's ID to 'id'.
1932 *
1933 * Controller connection IDs need not be unique.
1934 *
1935 * The NXAST_CONTROLLER action is the only current user of controller
1936 * connection IDs. */
1937struct nx_controller_id {
a7349929
BP
1938 uint8_t zero[6]; /* Must be zero. */
1939 ovs_be16 controller_id; /* New controller connection ID. */
1940};
982697a4 1941OFP_ASSERT(sizeof(struct nx_controller_id) == 8);
a7349929
BP
1942
1943/* Action structure for NXAST_CONTROLLER.
1944 *
1945 * This generalizes using OFPAT_OUTPUT to send a packet to OFPP_CONTROLLER. In
1946 * addition to the 'max_len' that OFPAT_OUTPUT supports, it also allows
1947 * specifying:
1948 *
1949 * - 'reason': The reason code to use in the ofp_packet_in or nx_packet_in.
1950 *
1951 * - 'controller_id': The ID of the controller connection to which the
1952 * ofp_packet_in should be sent. The ofp_packet_in or nx_packet_in is
1953 * sent only to controllers that have the specified controller connection
1954 * ID. See "struct nx_controller_id" for more information. */
1955struct nx_action_controller {
1956 ovs_be16 type; /* OFPAT_VENDOR. */
1957 ovs_be16 len; /* Length is 16. */
1958 ovs_be32 vendor; /* NX_VENDOR_ID. */
1959 ovs_be16 subtype; /* NXAST_CONTROLLER. */
1960 ovs_be16 max_len; /* Maximum length to send to controller. */
1961 ovs_be16 controller_id; /* Controller ID to send packet-in. */
1962 uint8_t reason; /* enum ofp_packet_in_reason (OFPR_*). */
1963 uint8_t zero; /* Must be zero. */
1964};
1965OFP_ASSERT(sizeof(struct nx_action_controller) == 16);
2b07c8b1
BP
1966\f
1967/* Flow Table Monitoring
1968 * =====================
1969 *
1970 * NXST_FLOW_MONITOR allows a controller to keep track of changes to OpenFlow
1971 * flow table(s) or subsets of them, with the following workflow:
1972 *
1973 * 1. The controller sends an NXST_FLOW_MONITOR request to begin monitoring
1974 * flows. The 'id' in the request must be unique among all monitors that
1975 * the controller has started and not yet canceled on this OpenFlow
1976 * connection.
1977 *
1978 * 2. The switch responds with an NXST_FLOW_MONITOR reply. If the request's
1979 * 'flags' included NXFMF_INITIAL, the reply includes all the flows that
1980 * matched the request at the time of the request (with event NXFME_ADDED).
1981 * If 'flags' did not include NXFMF_INITIAL, the reply is empty.
1982 *
1983 * The reply uses the xid of the request (as do all replies to OpenFlow
1984 * requests).
1985 *
1986 * 3. Whenever a change to a flow table entry matches some outstanding monitor
1987 * request's criteria and flags, the switch sends a notification to the
1988 * controller as an additional NXST_FLOW_MONITOR reply with xid 0.
1989 *
1990 * When multiple outstanding monitors match a single change, only a single
1991 * notification is sent. This merged notification includes the information
1992 * requested in any of the individual monitors. That is, if any of the
1993 * matching monitors requests actions (NXFMF_ACTIONS), the notification
1994 * includes actions, and if any of the monitors request full changes for the
1995 * controller's own changes (NXFMF_OWN), the controller's own changes will
1996 * be included in full.
1997 *
1998 * 4. The controller may cancel a monitor with NXT_FLOW_MONITOR_CANCEL. No
1999 * further notifications will be sent on the basis of the canceled monitor
2000 * afterward.
2001 *
2002 *
2003 * Buffer Management
2004 * =================
2005 *
2006 * OpenFlow messages for flow monitor notifications can overflow the buffer
2007 * space available to the switch, either temporarily (e.g. due to network
2008 * conditions slowing OpenFlow traffic) or more permanently (e.g. the sustained
2009 * rate of flow table change exceeds the network bandwidth between switch and
2010 * controller).
2011 *
2012 * When Open vSwitch's notification buffer space reaches a limiting threshold,
2013 * OVS reacts as follows:
2014 *
2015 * 1. OVS sends an NXT_FLOW_MONITOR_PAUSED message to the controller, following
2016 * all the already queued notifications. After it receives this message,
2017 * the controller knows that its view of the flow table, as represented by
2018 * flow monitor notifications, is incomplete.
2019 *
2020 * 2. As long as the notification buffer is not empty:
2021 *
2022 * - NXMFE_ADD and NXFME_MODIFIED notifications will not be sent.
2023 *
2024 * - NXFME_DELETED notifications will still be sent, but only for flows
2025 * that existed before OVS sent NXT_FLOW_MONITOR_PAUSED.
2026 *
2027 * - NXFME_ABBREV notifications will not be sent. They are treated as
2028 * the expanded version (and therefore only the NXFME_DELETED
2029 * components, if any, are sent).
2030 *
2031 * 3. When the notification buffer empties, OVS sends NXFME_ADD notifications
2032 * for flows added since the buffer reached its limit and NXFME_MODIFIED
2033 * notifications for flows that existed before the limit was reached and
2034 * changed after the limit was reached.
2035 *
2036 * 4. OVS sends an NXT_FLOW_MONITOR_RESUMED message to the controller. After
2037 * it receives this message, the controller knows that its view of the flow
2038 * table, as represented by flow monitor notifications, is again complete.
2039 *
2040 * This allows the maximum buffer space requirement for notifications to be
2041 * bounded by the limit plus the maximum number of supported flows.
2042 *
2043 *
2044 * "Flow Removed" messages
2045 * =======================
2046 *
2047 * The flow monitor mechanism is independent of OFPT_FLOW_REMOVED and
2048 * NXT_FLOW_REMOVED. Flow monitor updates for deletion are sent if
2049 * NXFMF_DELETE is set on a monitor, regardless of whether the
2050 * OFPFF_SEND_FLOW_REM flag was set when the flow was added. */
2051
2052/* NXST_FLOW_MONITOR request.
2053 *
2054 * The NXST_FLOW_MONITOR request's body consists of an array of zero or more
2055 * instances of this structure. The request arranges to monitor the flows
2056 * that match the specified criteria, which are interpreted in the same way as
2057 * for NXST_FLOW.
2058 *
2059 * 'id' identifies a particular monitor for the purpose of allowing it to be
2060 * canceled later with NXT_FLOW_MONITOR_CANCEL. 'id' must be unique among
2061 * existing monitors that have not already been canceled.
2062 *
2063 * The reply includes the initial flow matches for monitors that have the
2064 * NXFMF_INITIAL flag set. No single flow will be included in the reply more
2065 * than once, even if more than one requested monitor matches that flow. The
2066 * reply will be empty if none of the monitors has NXFMF_INITIAL set or if none
2067 * of the monitors initially matches any flows.
2068 *
2069 * For NXFMF_ADD, an event will be reported if 'out_port' matches against the
2070 * actions of the flow being added or, for a flow that is replacing an existing
2071 * flow, if 'out_port' matches against the actions of the flow being replaced.
2072 * For NXFMF_DELETE, 'out_port' matches against the actions of a flow being
2073 * deleted. For NXFMF_MODIFY, an event will be reported if 'out_port' matches
2074 * either the old or the new actions. */
2075struct nx_flow_monitor_request {
2076 ovs_be32 id; /* Controller-assigned ID for this monitor. */
2077 ovs_be16 flags; /* NXFMF_*. */
2078 ovs_be16 out_port; /* Required output port, if not OFPP_NONE. */
2079 ovs_be16 match_len; /* Length of nx_match. */
2080 uint8_t table_id; /* One table's ID or 0xff for all tables. */
2081 uint8_t zeros[5]; /* Align to 64 bits (must be zero). */
2082 /* Followed by:
2083 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
2084 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
2085 * all-zero bytes. */
2086};
2087OFP_ASSERT(sizeof(struct nx_flow_monitor_request) == 16);
2088
2089/* 'flags' bits in struct nx_flow_monitor_request. */
2090enum nx_flow_monitor_flags {
2091 /* When to send updates. */
2092 NXFMF_INITIAL = 1 << 0, /* Initially matching flows. */
2093 NXFMF_ADD = 1 << 1, /* New matching flows as they are added. */
2094 NXFMF_DELETE = 1 << 2, /* Old matching flows as they are removed. */
2095 NXFMF_MODIFY = 1 << 3, /* Matching flows as they are changed. */
2096
2097 /* What to include in updates. */
2098 NXFMF_ACTIONS = 1 << 4, /* If set, actions are included. */
2099 NXFMF_OWN = 1 << 5, /* If set, include own changes in full. */
2100};
2101
2102/* NXST_FLOW_MONITOR reply header.
2103 *
2104 * The body of an NXST_FLOW_MONITOR reply is an array of variable-length
2105 * structures, each of which begins with this header. The 'length' member may
2106 * be used to traverse the array, and the 'event' member may be used to
2107 * determine the particular structure.
2108 *
2109 * Every instance is a multiple of 8 bytes long. */
2110struct nx_flow_update_header {
2111 ovs_be16 length; /* Length of this entry. */
2112 ovs_be16 event; /* One of NXFME_*. */
2113 /* ...other data depending on 'event'... */
2114};
2115OFP_ASSERT(sizeof(struct nx_flow_update_header) == 4);
2116
2117/* 'event' values in struct nx_flow_update_header. */
2118enum nx_flow_update_event {
2119 /* struct nx_flow_update_full. */
2120 NXFME_ADDED = 0, /* Flow was added. */
2121 NXFME_DELETED = 1, /* Flow was deleted. */
2122 NXFME_MODIFIED = 2, /* Flow (generally its actions) was changed. */
2123
2124 /* struct nx_flow_update_abbrev. */
2125 NXFME_ABBREV = 3, /* Abbreviated reply. */
2126};
2127
2128/* NXST_FLOW_MONITOR reply for NXFME_ADDED, NXFME_DELETED, and
2129 * NXFME_MODIFIED. */
2130struct nx_flow_update_full {
2131 ovs_be16 length; /* Length is 24. */
2132 ovs_be16 event; /* One of NXFME_*. */
2133 ovs_be16 reason; /* OFPRR_* for NXFME_DELETED, else zero. */
2134 ovs_be16 priority; /* Priority of the entry. */
2135 ovs_be16 idle_timeout; /* Number of seconds idle before expiration. */
2136 ovs_be16 hard_timeout; /* Number of seconds before expiration. */
2137 ovs_be16 match_len; /* Length of nx_match. */
2138 uint8_t table_id; /* ID of flow's table. */
2139 uint8_t pad; /* Reserved, currently zeroed. */
2140 ovs_be64 cookie; /* Opaque controller-issued identifier. */
2141 /* Followed by:
2142 * - Exactly match_len (possibly 0) bytes containing the nx_match, then
2143 * - Exactly (match_len + 7)/8*8 - match_len (between 0 and 7) bytes of
2144 * all-zero bytes, then
2145 * - Actions to fill out the remainder 'length' bytes (always a multiple
2146 * of 8). If NXFMF_ACTIONS was not specified, or 'event' is
2147 * NXFME_DELETED, no actions are included.
2148 */
2149};
2150OFP_ASSERT(sizeof(struct nx_flow_update_full) == 24);
2151
2152/* NXST_FLOW_MONITOR reply for NXFME_ABBREV.
2153 *
2154 * When the controller does not specify NXFMF_OWN in a monitor request, any
2155 * flow tables changes due to the controller's own requests (on the same
2156 * OpenFlow channel) will be abbreviated, when possible, to this form, which
2157 * simply specifies the 'xid' of the OpenFlow request (e.g. an OFPT_FLOW_MOD or
2158 * NXT_FLOW_MOD) that caused the change.
2159 *
2160 * Some changes cannot be abbreviated and will be sent in full:
2161 *
2162 * - Changes that only partially succeed. This can happen if, for example,
2163 * a flow_mod with type OFPFC_MODIFY affects multiple flows, but only some
2164 * of those modifications succeed (e.g. due to hardware limitations).
2165 *
2166 * This cannot occur with the current implementation of the Open vSwitch
2167 * software datapath. It could happen with other datapath implementations.
2168 *
2169 * - Changes that race with conflicting changes made by other controllers or
2170 * other flow_mods (not separated by barriers) by the same controller.
2171 *
2172 * This cannot occur with the current Open vSwitch implementation
2173 * (regardless of datapath) because Open vSwitch internally serializes
2174 * potentially conflicting changes.
2175 *
2176 * A flow_mod that does not change the flow table will not trigger any
2177 * notification, even an abbreviated one. For example, a "modify" or "delete"
2178 * flow_mod that does not match any flows will not trigger a notification.
2179 * Whether an "add" or "modify" that specifies all the same parameters that a
2180 * flow already has triggers a notification is unspecified and subject to
2181 * change in future versions of Open vSwitch.
2182 *
2183 * OVS will always send the notifications for a given flow table change before
b10a4760
BP
2184 * the reply to a OFPT_BARRIER_REQUEST request that follows the flow table
2185 * change. Thus, if the controller does not receive an abbreviated (or
2186 * unabbreviated) notification for a flow_mod before the next
2187 * OFPT_BARRIER_REPLY, it will never receive one. */
2b07c8b1
BP
2188struct nx_flow_update_abbrev {
2189 ovs_be16 length; /* Length is 8. */
2190 ovs_be16 event; /* NXFME_ABBREV. */
2191 ovs_be32 xid; /* Controller-specified xid from flow_mod. */
2192};
2193OFP_ASSERT(sizeof(struct nx_flow_update_abbrev) == 8);
2194
982697a4
BP
2195/* NXT_FLOW_MONITOR_CANCEL.
2196 *
2197 * Used by a controller to cancel an outstanding monitor. */
2b07c8b1 2198struct nx_flow_monitor_cancel {
2b07c8b1
BP
2199 ovs_be32 id; /* 'id' from nx_flow_monitor_request. */
2200};
982697a4 2201OFP_ASSERT(sizeof(struct nx_flow_monitor_cancel) == 4);
659586ef 2202
4cceacb9
JS
2203/* Action structure for NXAST_WRITE_METADATA.
2204 *
2205 * Modifies the 'mask' bits of the metadata value. */
2206struct nx_action_write_metadata {
2207 ovs_be16 type; /* OFPAT_VENDOR. */
2208 ovs_be16 len; /* Length is 32. */
2209 ovs_be32 vendor; /* NX_VENDOR_ID. */
2210 ovs_be16 subtype; /* NXAST_WRITE_METADATA. */
2211 uint8_t zeros[6]; /* Must be zero. */
2212 ovs_be64 metadata; /* Metadata register. */
2213 ovs_be64 mask; /* Metadata mask. */
2214};
2215OFP_ASSERT(sizeof(struct nx_action_write_metadata) == 32);
2216
b02475c5
SH
2217/* Action structure for NXAST_PUSH_MPLS. */
2218struct nx_action_push_mpls {
2219 ovs_be16 type; /* OFPAT_VENDOR. */
2220 ovs_be16 len; /* Length is 8. */
2221 ovs_be32 vendor; /* NX_VENDOR_ID. */
2222 ovs_be16 subtype; /* NXAST_PUSH_MPLS. */
2223 ovs_be16 ethertype; /* Ethertype */
2224 uint8_t pad[4];
2225};
2226OFP_ASSERT(sizeof(struct nx_action_push_mpls) == 16);
2227
2228/* Action structure for NXAST_POP_MPLS. */
2229struct nx_action_pop_mpls {
2230 ovs_be16 type; /* OFPAT_VENDOR. */
2231 ovs_be16 len; /* Length is 8. */
2232 ovs_be32 vendor; /* NX_VENDOR_ID. */
2233 ovs_be16 subtype; /* NXAST_POP_MPLS. */
2234 ovs_be16 ethertype; /* Ethertype */
2235 uint8_t pad[4];
2236};
2237OFP_ASSERT(sizeof(struct nx_action_pop_mpls) == 16);
2238
064af421 2239#endif /* openflow/nicira-ext.h */