openflow: Support matching and modifying MPLS TTL field.
[cascardo/ovs.git] / lib / meta-flow.h
1 /*
2  * Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef META_FLOW_H
18 #define META_FLOW_H 1
19
20 #include <sys/types.h>
21 #include <netinet/in.h>
22 #include <netinet/ip6.h>
23 #include "bitmap.h"
24 #include "flow.h"
25 #include "ofp-errors.h"
26 #include "packets.h"
27 #include "util.h"
28
29 struct ds;
30 struct match;
31
32 /* Open vSwitch fields
33  * ===================
34  *
35  * A "field" is a property of a packet.  Most familiarly, "data fields" are
36  * fields that can be extracted from a packet.
37  *
38  * Some data fields are always present as a consequence of the basic networking
39  * technology in use.  Ethernet is the assumed base technology for current
40  * versions of OpenFlow and Open vSwitch, so Ethernet header fields are always
41  * available.
42  *
43  * Other data fields are not always present.  A packet contains ARP fields, for
44  * example, only when its Ethernet header indicates the Ethertype for ARP,
45  * 0x0806.  We say that a field is "applicable" when it is it present in a
46  * packet, and "inapplicable" when it is not, and refer to the conditions that
47  * determine whether a field is applicable as "prerequisites".  Some
48  * VLAN-related fields are a special case: these fields are always applicable,
49  * but have a designated value or bit that indicates whether a VLAN header is
50  * present, with the remaining values or bits indicating the VLAN header's
51  * content (if it is present).  See MFF_VLAN_TCI for an example.
52  *
53  * Conceptually, an inapplicable field does not have a value, not even a
54  * nominal ``value'' such as all-zero-bits.  In many circumstances, OpenFlow
55  * and Open vSwitch allow references only to applicable fields.  For example,
56  * one may match a given field only if the match includes the field's
57  * prerequisite, e.g. matching an ARP field is only allowed if one also matches
58  * on Ethertype 0x0806.
59  *
60  * (Practically, however, OVS represents a field's value as some fixed member
61  * in its "struct flow", so accessing that member will obtain some value.  Some
62  * members are used for more than one purpose, e.g. the "tp_src" member
63  * represents the TCP, UDP, and SCTP source port, so the value read may not
64  * even make sense.  For this reason, it is important to know whether a field's
65  * prerequisites are satisfied before attempting to read it.)
66  *
67  * Sometimes a packet may contain multiple instances of a header.  For example,
68  * a packet may contain multiple VLAN or MPLS headers, and tunnels can cause
69  * any data field to recur.  OpenFlow and Open vSwitch do not address these
70  * cases uniformly.  For VLAN and MPLS headers, only the outermost header is
71  * accessible, so that inner headers may be accessed only by ``popping''
72  * (removing) the outer header.  (Open vSwitch supports only a single VLAN
73  * header in any case.)  For tunnels, e.g. GRE or VXLAN, the outer header and
74  * inner headers are treated as different data fields.
75  *
76  * OpenFlow and Open vSwitch support some fields other than data fields.
77  * "Metadata fields" relate to the origin or treatment of a packet, but they
78  * are not extracted from the packet data itself.  One example is the physical
79  * port on which a packet arrived at the switch.  "Register fields" act like
80  * variables: they give an OpenFlow switch space for temporary storage while
81  * processing a packet.  Existing metadata and register fields have no
82  * prerequisites.
83  *
84  * A field's value consists of an integral number of bytes.  Most data fields
85  * are copied directly from protocol headers, e.g. at layer 2, MFF_ETH_SRC is
86  * copied from the Ethernet source address and MFF_ETH_DST from the destination
87  * address.  Other data fields are copied from a packet with padding, usually
88  * with zeros and in the most significant positions (see e.g. MFF_MPLS_LABEL)
89  * but not always (see e.g. MFF_IP_DSCP).  A final category of data fields is
90  * transformed in other ways as they are copied from the packets, to make them
91  * more useful for matching, e.g. MFF_IP_FRAG describes whether a packet is a
92  * fragment but it is not copied directly from the IP header.
93  *
94  *
95  * Field specifications
96  * ====================
97  *
98  * Each of the enumeration values below represents a field.  The comments
99  * preceding each enum must be in a stylized form that is parsed at compile
100  * time by the extract-ofp-fields program.  The comment itself consists of a
101  * series of paragraphs separate by blank lines.  The paragraphs consist of:
102  *
103  *     - The first paragraph gives the user-visible name of the field as a
104  *       quoted string.  This is the name used for parsing and formatting the
105  *       field.
106  *
107  *       For historical reasons, some fields have an additional name that is
108  *       accepted as an alternative in parsing.  This name, when there is one,
109  *       is given as a quoted string in parentheses along with "aka".  For
110  *       example:
111  *
112  *           "tun_id" (aka "tunnel_id").
113  *
114  *       New fields should have only one name.
115  *
116  *     - Any number of paragraphs of free text that describe the field.  This
117  *       is meant for human readers, so extract-ofp-fields ignores it.
118  *
119  *     - A final paragraph that consists of a series of key-value pairs, one
120  *       per line, in the form "key: value." where the period at the end of the
121  *       line is a mandatory part of the syntax.
122  *
123  * Every field must specify the following key-value pairs:
124  *
125  *   Type:
126  *
127  *     The format and size of the field's value.  Some possible values are
128  *     generic:
129  *
130  *         u8: A one-byte field.
131  *         be16: A two-byte field.
132  *         be32: A four-byte field.
133  *         be64: An eight-byte field.
134  *
135  *     The remaining values imply more about the value's semantics, though OVS
136  *     does not currently take advantage of this additional information:
137  *
138  *         MAC: A six-byte field whose value is an Ethernet address.
139  *         IPv6: A 16-byte field whose value is an IPv6 address.
140  *         tunnelMD: A variable length field, up to 124 bytes, that carries
141  *                   tunnel metadata.
142  *
143  *   Maskable:
144  *
145  *     Either "bitwise", if OVS supports matching any subset of bits in the
146  *     field, or "no", if OVS only supports matching or wildcarding the entire
147  *     field.
148  *
149  *   Formatting:
150  *
151  *     Explains how a field's value is formatted and parsed for human
152  *     consumption.  Some of the options are fairly generally useful:
153  *
154  *       decimal: Formats the value as a decimal number.  On parsing, accepts
155  *         decimal (with no prefix), hexadecimal with 0x prefix, or octal
156  *         with 0 prefix.
157  *
158  *       hexadecimal: Same as decimal except nonzero values are formatted in
159  *         hex with 0x prefix.  The default for parsing is *not* hexadecimal:
160  *         only with a 0x prefix is the input in hexadecimal.
161  *
162  *       Ethernet: Formats and accepts the common format xx:xx:xx:xx:xx:xx.
163  *         6-byte fields only.
164  *
165  *       IPv4: Formats and accepts the common format w.x.y.z.  4-byte fields
166  *         only.
167  *
168  *       IPv6: Formats and accepts the common IPv6 formats.  16-byte fields
169  *         only.
170  *
171  *       OpenFlow 1.0 port: Accepts an OpenFlow well-known port name
172  *         (e.g. "IN_PORT") in uppercase or lowercase, or a 16-bit port
173  *         number in decimal.  Formats ports using their well-known names in
174  *         uppercase, or in decimal otherwise.  2-byte fields only.
175  *
176  *       OpenFlow 1.1+ port: Same syntax as for OpenFlow 1.0 ports but for
177  *         4-byte OpenFlow 1.1+ port number fields.
178  *
179  *     Others are very specific to particular fields:
180  *
181  *       frag: One of the strings "no", "first", "later", "yes", "not_later"
182  *         describing which IPv4/v6 fragments are matched.
183  *
184  *       tunnel flags: Any number of the strings "df", "csum", "key", or
185  *         "oam" separated by "|".
186  *
187  *       TCP flags: See the description of tcp_flags in ovs-ofctl(8).
188  *
189  *   Prerequisites:
190  *
191  *     The field's prerequisites.  The values should be straightfoward.
192  *
193  *   Access:
194  *
195  *     Either "read-only", for a field that cannot be changed via OpenFlow, or
196  *     "read/write" for a modifiable field.
197  *
198  *   NXM:
199  *
200  *     If the field has an NXM field assignment, then this specifies the NXM
201  *     name of the field (e.g. "NXM_OF_ETH_SRC"), followed by its nxm_type in
202  *     parentheses, followed by "since v<x>.<y>" specifying the version of Open
203  *     vSwitch that first supported this field in NXM (e.g. "since v1.1" if it
204  *     was introduced in Open vSwitch 1.1).
205  *
206  *     The NXM name must begin with NXM_OF_ or NXM_NX_.  This allows OVS to
207  *     determine the correct NXM class.
208  *
209  *     If the field does not have an NXM field assignment, specify "none".
210  *
211  *   OXM:
212  *
213  *     If the field has an OXM field assignment, then this specifies the OXM
214  *     name of the field (e.g. "OXM_OF_ETH_SRC"), followed by its nxm_type in
215  *     parentheses, followed by "since OF<a>.<b> v<x>.<y>" specifying the
216  *     versions of OpenFlow and Open vSwitch that first supported this field in
217  *     OXM (e.g. "since OF1.3 and v1.10" if it was introduced in OpenFlow 1.3
218  *     and first supported by Open vSwitch in version 1.10).
219  *
220  *     Some fields have more than one OXM field assignment.  For example,
221  *     actset_output has an experimenter OXM assignment in OpenFlow 1.3 and a
222  *     standard OXM assignment in OpenFlow 1.5.  In such a case, specify both,
223  *     separated by commas.
224  *
225  *     OVS uses the start of the OXM field name to determine the correct OXM
226  *     class.  To support a new OXM class, edit the mapping table in
227  *     build-aux/extract-ofp-fields.
228  *
229  *     If the field does not have an OXM field assignment, specify "none".
230  *
231  * The following key-value pairs are optional.  Open vSwitch already supports
232  * all the fields to which they apply, so new fields should probably not
233  * include these pairs:
234  *
235  *   OF1.0:
236  *
237  *     Specify this as "exact match" if OpenFlow 1.0 can match or wildcard the
238  *     entire field, or as "CIDR mask" if OpenFlow 1.0 can match any CIDR
239  *     prefix of the field.  (OpenFlow 1.0 did not support bitwise matching.)
240  *     Omit, if OpenFlow 1.0 did not support this field.
241  *
242  *   OF1.1:
243  *
244  *     Specify this as "exact match" if OpenFlow 1.1 can match or wildcard the
245  *     entire field, or as "bitwise" if OpenFlow 1.1 can match any subset of
246  *     bits in the field.  Omit, if OpenFlow 1.1 did not support this field.
247  *
248  * The following key-value pair is optional:
249  *
250  *   Prefix lookup member:
251  *
252  *     If this field makes sense for use with classifier_set_prefix_fields(),
253  *     specify the name of the "struct flow" member that corresponds to the
254  *     field.
255  *
256  * Finally, a few "register" fields have very similar names and purposes,
257  * e.g. MFF_REG0 through MFF_REG7.  For these, the comments may be merged
258  * together using <N> as a metasyntactic variable for the numeric suffix.
259  * Lines in the comment that are specific to one of the particular fields by
260  * writing, e.g. <1>, to consider that line only for e.g. MFF_REG1.
261  */
262
263 enum OVS_PACKED_ENUM mf_field_id {
264 /* ## -------- ## */
265 /* ## Metadata ## */
266 /* ## -------- ## */
267
268     /* "dp_hash".
269      *
270      * Flow hash computed in the datapath.  Internal use only, not programmable
271      * from controller.
272      *
273      * The OXM code point for this is an attempt to test OXM experimenter
274      * support, which is otherwise difficult to test due to the dearth of use
275      * out in the wild.  Because controllers can't add flows that match on
276      * dp_hash, this doesn't commit OVS to supporting this OXM experimenter
277      * code point in the future.
278      *
279      * Type: be32.
280      * Maskable: bitwise.
281      * Formatting: hexadecimal.
282      * Prerequisites: none.
283      * Access: read-only.
284      * NXM: NXM_NX_DP_HASH(35) since v2.2.
285      * OXM: NXOXM_ET_DP_HASH(0) since OF1.5 and v2.4.
286      */
287     MFF_DP_HASH,
288
289     /* "recirc_id".
290      *
291      * ID for recirculation.  The value 0 is reserved for initially received
292      * packets.  Internal use only, not programmable from controller.
293      *
294      * Type: be32.
295      * Maskable: no.
296      * Formatting: decimal.
297      * Prerequisites: none.
298      * Access: read-only.
299      * NXM: NXM_NX_RECIRC_ID(36) since v2.2.
300      * OXM: none.
301      */
302     MFF_RECIRC_ID,
303
304     /* "conj_id".
305      *
306      * ID for "conjunction" actions.  Please refer to ovs-ofctl(8)
307      * documentation of "conjunction" for details.
308      *
309      * Type: be32.
310      * Maskable: no.
311      * Formatting: decimal.
312      * Prerequisites: none.
313      * Access: read-only.
314      * NXM: NXM_NX_CONJ_ID(37) since v2.4.
315      * OXM: none. */
316     MFF_CONJ_ID,
317
318     /* "tun_id" (aka "tunnel_id").
319      *
320      * The "key" or "tunnel ID" or "VNI" in a packet received via a keyed
321      * tunnel.  For protocols in which the key is shorter than 64 bits, the key
322      * is stored in the low bits and the high bits are zeroed.  For non-keyed
323      * tunnels and packets not received via a tunnel, the value is 0.
324      *
325      * Type: be64.
326      * Maskable: bitwise.
327      * Formatting: hexadecimal.
328      * Prerequisites: none.
329      * Access: read/write.
330      * NXM: NXM_NX_TUN_ID(16) since v1.1.
331      * OXM: OXM_OF_TUNNEL_ID(38) since OF1.3 and v1.10.
332      * Prefix lookup member: tunnel.tun_id.
333      */
334     MFF_TUN_ID,
335
336     /* "tun_src".
337      *
338      * The IPv4 source address in the outer IP header of a tunneled packet.
339      *
340      * For non-tunneled packets, the value is 0.
341      *
342      * Type: be32.
343      * Maskable: bitwise.
344      * Formatting: IPv4.
345      * Prerequisites: none.
346      * Access: read/write.
347      * NXM: NXM_NX_TUN_IPV4_SRC(31) since v2.0.
348      * OXM: none.
349      * Prefix lookup member: tunnel.ip_src.
350      */
351     MFF_TUN_SRC,
352
353     /* "tun_dst".
354      *
355      * The IPv4 destination address in the outer IP header of a tunneled
356      * packet.
357      *
358      * For non-tunneled packets, the value is 0.
359      *
360      * Type: be32.
361      * Maskable: bitwise.
362      * Formatting: IPv4.
363      * Prerequisites: none.
364      * Access: read/write.
365      * NXM: NXM_NX_TUN_IPV4_DST(32) since v2.0.
366      * OXM: none.
367      * Prefix lookup member: tunnel.ip_dst.
368      */
369     MFF_TUN_DST,
370
371     /* "tun_ipv6_src".
372      *
373      * The IPv6 source address in the outer IP header of a tunneled packet.
374      *
375      * For non-tunneled packets, the value is 0.
376      *
377      * Type: be128.
378      * Maskable: bitwise.
379      * Formatting: IPv6.
380      * Prerequisites: none.
381      * Access: read/write.
382      * NXM: NXM_NX_TUN_IPV6_SRC(109) since v2.5.
383      * OXM: none.
384      * Prefix lookup member: tunnel.ipv6_src.
385      */
386     MFF_TUN_IPV6_SRC,
387
388     /* "tun_ipv6_dst".
389      *
390      * The IPv6 destination address in the outer IP header of a tunneled
391      * packet.
392      *
393      * For non-tunneled packets, the value is 0.
394      *
395      * Type: be128.
396      * Maskable: bitwise.
397      * Formatting: IPv6.
398      * Prerequisites: none.
399      * Access: read/write.
400      * NXM: NXM_NX_TUN_IPV6_DST(110) since v2.5.
401      * OXM: none.
402      * Prefix lookup member: tunnel.ipv6_dst.
403      */
404     MFF_TUN_IPV6_DST,
405
406     /* "tun_flags".
407      *
408      * Flags representing aspects of tunnel behavior.
409      *
410      * This field currently only has a single flag defined:
411      *
412      *   - NX_TUN_FLAG_OAM: The tunnel protocol indicated that this is an
413      *                      OAM control packet.
414      *
415      * The switch may reject matches against values that it is not aware of.
416      *
417      * Note that it is possible for newer version of Open vSwitch to
418      * introduce additional flags with varying meaning. It is therefore not
419      * recommended to use an exact match on this field since the behavior of
420      * these new flags is unknown and should be ignored.
421      *
422      * For non-tunneled packets, the value is 0.
423      *
424      * Type: be16 (low 1 bits).
425      * Maskable: bitwise.
426      * Formatting: tunnel flags.
427      * Prerequisites: none.
428      * Access: read/write.
429      * NXM: NXM_NX_TUN_FLAGS(104) since v2.5.
430      * OXM: none.
431      */
432     MFF_TUN_FLAGS,
433
434     /* "tun_ttl".
435      *
436      * The TTL in the outer IP header of a tunneled packet.  Internal use only,
437      * not programmable from controller.
438      *
439      * For non-tunneled packets, the value is 0.
440      *
441      * Type: u8.
442      * Maskable: no.
443      * Formatting: decimal.
444      * Prerequisites: none.
445      * Access: read-only.
446      * NXM: none.
447      * OXM: none.
448      */
449     MFF_TUN_TTL,
450
451     /* "tun_tos".
452      *
453      * The ToS value in the outer IP header of a tunneled packet.  Internal use
454      * only, not programmable from controller.
455      *
456      * Type: u8.
457      * Maskable: no.
458      * Formatting: decimal.
459      * Prerequisites: none.
460      * Access: read-only.
461      * NXM: none.
462      * OXM: none.
463      */
464     MFF_TUN_TOS,
465
466     /* "tun_gbp_id".
467      *
468      * VXLAN Group Policy ID
469      *
470      * Type: be16.
471      * Maskable: bitwise.
472      * Formatting: decimal.
473      * Prerequisites: none.
474      * Access: read/write.
475      * NXM: NXM_NX_TUN_GBP_ID(38) since v2.4.
476      * OXM: none.
477      */
478     MFF_TUN_GBP_ID,
479
480     /* "tun_gbp_flags".
481      *
482      * VXLAN Group Policy flags
483      *
484      * Type: u8.
485      * Maskable: bitwise.
486      * Formatting: hexadecimal.
487      * Prerequisites: none.
488      * Access: read/write.
489      * NXM: NXM_NX_TUN_GBP_FLAGS(39) since v2.4.
490      * OXM: none.
491      */
492     MFF_TUN_GBP_FLAGS,
493
494 #if TUN_METADATA_NUM_OPTS == 64
495     /* "tun_metadata<N>".
496      *
497      * Encapsulation metadata for tunnels.
498      *
499      * Each NXM can be dynamically mapped onto a particular tunnel field using
500      * OpenFlow commands. The individual NXMs can each carry up to 124 bytes
501      * of data and a combined total of 256 across all allocated fields.
502      *
503      * Type: tunnelMD.
504      * Maskable: bitwise.
505      * Formatting: hexadecimal.
506      * Prerequisites: none.
507      * Access: read/write.
508      * NXM: NXM_NX_TUN_METADATA0(40) since v2.5.        <0>
509      * NXM: NXM_NX_TUN_METADATA1(41) since v2.5.        <1>
510      * NXM: NXM_NX_TUN_METADATA2(42) since v2.5.        <2>
511      * NXM: NXM_NX_TUN_METADATA3(43) since v2.5.        <3>
512      * NXM: NXM_NX_TUN_METADATA4(44) since v2.5.        <4>
513      * NXM: NXM_NX_TUN_METADATA5(45) since v2.5.        <5>
514      * NXM: NXM_NX_TUN_METADATA6(46) since v2.5.        <6>
515      * NXM: NXM_NX_TUN_METADATA7(47) since v2.5.        <7>
516      * NXM: NXM_NX_TUN_METADATA8(48) since v2.5.        <8>
517      * NXM: NXM_NX_TUN_METADATA9(49) since v2.5.        <9>
518      * NXM: NXM_NX_TUN_METADATA10(50) since v2.5.       <10>
519      * NXM: NXM_NX_TUN_METADATA11(51) since v2.5.       <11>
520      * NXM: NXM_NX_TUN_METADATA12(52) since v2.5.       <12>
521      * NXM: NXM_NX_TUN_METADATA13(53) since v2.5.       <13>
522      * NXM: NXM_NX_TUN_METADATA14(54) since v2.5.       <14>
523      * NXM: NXM_NX_TUN_METADATA15(55) since v2.5.       <15>
524      * NXM: NXM_NX_TUN_METADATA16(56) since v2.5.       <16>
525      * NXM: NXM_NX_TUN_METADATA17(57) since v2.5.       <17>
526      * NXM: NXM_NX_TUN_METADATA18(58) since v2.5.       <18>
527      * NXM: NXM_NX_TUN_METADATA19(59) since v2.5.       <19>
528      * NXM: NXM_NX_TUN_METADATA20(60) since v2.5.       <20>
529      * NXM: NXM_NX_TUN_METADATA21(61) since v2.5.       <21>
530      * NXM: NXM_NX_TUN_METADATA22(62) since v2.5.       <22>
531      * NXM: NXM_NX_TUN_METADATA23(63) since v2.5.       <23>
532      * NXM: NXM_NX_TUN_METADATA24(64) since v2.5.       <24>
533      * NXM: NXM_NX_TUN_METADATA25(65) since v2.5.       <25>
534      * NXM: NXM_NX_TUN_METADATA26(66) since v2.5.       <26>
535      * NXM: NXM_NX_TUN_METADATA27(67) since v2.5.       <27>
536      * NXM: NXM_NX_TUN_METADATA28(68) since v2.5.       <28>
537      * NXM: NXM_NX_TUN_METADATA29(69) since v2.5.       <29>
538      * NXM: NXM_NX_TUN_METADATA30(70) since v2.5.       <30>
539      * NXM: NXM_NX_TUN_METADATA31(71) since v2.5.       <31>
540      * NXM: NXM_NX_TUN_METADATA32(72) since v2.5.       <32>
541      * NXM: NXM_NX_TUN_METADATA33(73) since v2.5.       <33>
542      * NXM: NXM_NX_TUN_METADATA34(74) since v2.5.       <34>
543      * NXM: NXM_NX_TUN_METADATA35(75) since v2.5.       <35>
544      * NXM: NXM_NX_TUN_METADATA36(76) since v2.5.       <36>
545      * NXM: NXM_NX_TUN_METADATA37(77) since v2.5.       <37>
546      * NXM: NXM_NX_TUN_METADATA38(78) since v2.5.       <38>
547      * NXM: NXM_NX_TUN_METADATA39(79) since v2.5.       <39>
548      * NXM: NXM_NX_TUN_METADATA40(80) since v2.5.       <40>
549      * NXM: NXM_NX_TUN_METADATA41(81) since v2.5.       <41>
550      * NXM: NXM_NX_TUN_METADATA42(82) since v2.5.       <42>
551      * NXM: NXM_NX_TUN_METADATA43(83) since v2.5.       <43>
552      * NXM: NXM_NX_TUN_METADATA44(84) since v2.5.       <44>
553      * NXM: NXM_NX_TUN_METADATA45(85) since v2.5.       <45>
554      * NXM: NXM_NX_TUN_METADATA46(86) since v2.5.       <46>
555      * NXM: NXM_NX_TUN_METADATA47(87) since v2.5.       <47>
556      * NXM: NXM_NX_TUN_METADATA48(88) since v2.5.       <48>
557      * NXM: NXM_NX_TUN_METADATA49(89) since v2.5.       <49>
558      * NXM: NXM_NX_TUN_METADATA50(90) since v2.5.       <50>
559      * NXM: NXM_NX_TUN_METADATA51(91) since v2.5.       <51>
560      * NXM: NXM_NX_TUN_METADATA52(92) since v2.5.       <52>
561      * NXM: NXM_NX_TUN_METADATA53(93) since v2.5.       <53>
562      * NXM: NXM_NX_TUN_METADATA54(94) since v2.5.       <54>
563      * NXM: NXM_NX_TUN_METADATA55(95) since v2.5.       <55>
564      * NXM: NXM_NX_TUN_METADATA56(96) since v2.5.       <56>
565      * NXM: NXM_NX_TUN_METADATA57(97) since v2.5.       <57>
566      * NXM: NXM_NX_TUN_METADATA58(98) since v2.5.       <58>
567      * NXM: NXM_NX_TUN_METADATA59(99) since v2.5.       <59>
568      * NXM: NXM_NX_TUN_METADATA60(100) since v2.5.      <60>
569      * NXM: NXM_NX_TUN_METADATA61(101) since v2.5.      <61>
570      * NXM: NXM_NX_TUN_METADATA62(102) since v2.5.      <62>
571      * NXM: NXM_NX_TUN_METADATA63(103) since v2.5.      <63>
572      * OXM: none.
573      */
574     MFF_TUN_METADATA0,
575     MFF_TUN_METADATA1,
576     MFF_TUN_METADATA2,
577     MFF_TUN_METADATA3,
578     MFF_TUN_METADATA4,
579     MFF_TUN_METADATA5,
580     MFF_TUN_METADATA6,
581     MFF_TUN_METADATA7,
582     MFF_TUN_METADATA8,
583     MFF_TUN_METADATA9,
584     MFF_TUN_METADATA10,
585     MFF_TUN_METADATA11,
586     MFF_TUN_METADATA12,
587     MFF_TUN_METADATA13,
588     MFF_TUN_METADATA14,
589     MFF_TUN_METADATA15,
590     MFF_TUN_METADATA16,
591     MFF_TUN_METADATA17,
592     MFF_TUN_METADATA18,
593     MFF_TUN_METADATA19,
594     MFF_TUN_METADATA20,
595     MFF_TUN_METADATA21,
596     MFF_TUN_METADATA22,
597     MFF_TUN_METADATA23,
598     MFF_TUN_METADATA24,
599     MFF_TUN_METADATA25,
600     MFF_TUN_METADATA26,
601     MFF_TUN_METADATA27,
602     MFF_TUN_METADATA28,
603     MFF_TUN_METADATA29,
604     MFF_TUN_METADATA30,
605     MFF_TUN_METADATA31,
606     MFF_TUN_METADATA32,
607     MFF_TUN_METADATA33,
608     MFF_TUN_METADATA34,
609     MFF_TUN_METADATA35,
610     MFF_TUN_METADATA36,
611     MFF_TUN_METADATA37,
612     MFF_TUN_METADATA38,
613     MFF_TUN_METADATA39,
614     MFF_TUN_METADATA40,
615     MFF_TUN_METADATA41,
616     MFF_TUN_METADATA42,
617     MFF_TUN_METADATA43,
618     MFF_TUN_METADATA44,
619     MFF_TUN_METADATA45,
620     MFF_TUN_METADATA46,
621     MFF_TUN_METADATA47,
622     MFF_TUN_METADATA48,
623     MFF_TUN_METADATA49,
624     MFF_TUN_METADATA50,
625     MFF_TUN_METADATA51,
626     MFF_TUN_METADATA52,
627     MFF_TUN_METADATA53,
628     MFF_TUN_METADATA54,
629     MFF_TUN_METADATA55,
630     MFF_TUN_METADATA56,
631     MFF_TUN_METADATA57,
632     MFF_TUN_METADATA58,
633     MFF_TUN_METADATA59,
634     MFF_TUN_METADATA60,
635     MFF_TUN_METADATA61,
636     MFF_TUN_METADATA62,
637     MFF_TUN_METADATA63,
638 #else
639 #error "Need to update MFF_TUN_METADATA* to match TUN_METADATA_NUM_OPTS"
640 #endif
641
642     /* "metadata".
643      *
644      * A scratch pad value standardized in OpenFlow 1.1+.  Initially zero, at
645      * the beginning of the pipeline.
646      *
647      * Type: be64.
648      * Maskable: bitwise.
649      * Formatting: hexadecimal.
650      * Prerequisites: none.
651      * Access: read/write.
652      * NXM: none.
653      * OXM: OXM_OF_METADATA(2) since OF1.2 and v1.8.
654      * OF1.1: bitwise mask.
655      */
656     MFF_METADATA,
657
658     /* "in_port".
659      *
660      * 16-bit (OpenFlow 1.0) view of the physical or virtual port on which the
661      * packet was received.
662      *
663      * Type: be16.
664      * Maskable: no.
665      * Formatting: OpenFlow 1.0 port.
666      * Prerequisites: none.
667      * Access: read/write.
668      * NXM: NXM_OF_IN_PORT(0) since v1.1.
669      * OXM: none.
670      * OF1.0: exact match.
671      * OF1.1: exact match.
672      */
673     MFF_IN_PORT,
674
675     /* "in_port_oxm".
676      *
677      * 32-bit (OpenFlow 1.1+) view of the physical or virtual port on which the
678      * packet was received.
679      *
680      * Type: be32.
681      * Maskable: no.
682      * Formatting: OpenFlow 1.1+ port.
683      * Prerequisites: none.
684      * Access: read/write.
685      * NXM: none.
686      * OXM: OXM_OF_IN_PORT(0) since OF1.2 and v1.7.
687      * OF1.1: exact match.
688      */
689     MFF_IN_PORT_OXM,
690
691     /* "actset_output".
692      *
693      * Type: be32.
694      * Maskable: no.
695      * Formatting: OpenFlow 1.1+ port.
696      * Prerequisites: none.
697      * Access: read-only.
698      * NXM: none.
699      * OXM: ONFOXM_ET_ACTSET_OUTPUT(43) since OF1.3 and v2.4,
700      *      OXM_OF_ACTSET_OUTPUT(43) since OF1.5 and v2.4.
701      */
702     MFF_ACTSET_OUTPUT,
703
704     /* "skb_priority".
705      *
706      * Designates the queue to which output will be directed.  The value in
707      * this field is not necessarily the OpenFlow queue number; with the Linux
708      * kernel switch, it instead has a pair of subfields designating the
709      * "major" and "minor" numbers of a Linux kernel qdisc handle.
710      *
711      * This field is "semi-internal" in that it can be set with the "set_queue"
712      * action but not matched or read or written other ways.
713      *
714      * Type: be32.
715      * Maskable: no.
716      * Formatting: hexadecimal.
717      * Prerequisites: none.
718      * Access: read-only.
719      * NXM: none.
720      * OXM: none.
721      */
722     MFF_SKB_PRIORITY,
723
724     /* "pkt_mark".
725      *
726      * Packet metadata mark.  The mark may be passed into other system
727      * components in order to facilitate interaction between subsystems.  On
728      * Linux this corresponds to struct sk_buff's "skb_mark" member but the
729      * exact implementation is platform-dependent.
730      *
731      * Type: be32.
732      * Maskable: bitwise.
733      * Formatting: hexadecimal.
734      * Prerequisites: none.
735      * Access: read/write.
736      * NXM: NXM_NX_PKT_MARK(33) since v2.0.
737      * OXM: none.
738      */
739     MFF_PKT_MARK,
740
741     /* "ct_state".
742      *
743      * Connection tracking state.  The field is populated by the NXAST_CT
744      * action. The following bit values describe the state of the connection:
745      *
746      *   - New (0x01): This is the beginning of a new connection.
747      *   - Established (0x02): This is part of an already existing connection.
748      *   - Related (0x04): This is a separate connection that is related to an
749      *                     existing connection.
750      *   - Reply (0x08): This flow is in the reply direction, ie it did not
751      *                   initiate the connection.
752      *   - Invalid (0x10): This flow could not be associated with a connection.
753      *                     This could be set for a variety of reasons,
754      *                     including (but not limited to):
755      *                     - L3/L4 protocol handler is not loaded/unavailable.
756      *                     - L3/L4 protocol handler determines that the packet
757      *                       is malformed or invalid for the current FSM stage.
758      *                     - Packets are unexpected length for protocol.
759      *   - Tracked (0x20): Connection tracking has occurred.
760      *
761      * The "Tracked" bit corresponds to the packet_state as described in the
762      * description of NXAST_CT action. The remaining bits correspond to
763      * connection state. The "New" bit implies that the connection state
764      * is uncommitted, while "Established" implies that it has previously been
765      * committed.
766      *
767      * There are additional constraints on the ct_state bits, listed in order
768      * of precedence below:
769      *
770      *   - If "Tracked" is unset, no other bits may be set.
771      *   - If "Tracked" is set, one or more other bits may be set.
772      *   - If "Invalid" is set, only the "Tracked" bit is also set.
773      *   - The "New" and "Established" bits are mutually exclusive.
774      *   - The "New" and "Reply" bits are mutually exclusive.
775      *   - The "Related" bit may be set in conjunction with any other bits.
776      *     Connections that are identified as "Related" are separate
777      *     connections from the originating connection, so must be committed
778      *     separately. All packets for a related connection will have the
779      *     "Related" bit set (not just the initial packet).
780      *
781      * Type: be32.
782      * Maskable: bitwise.
783      * Formatting: ct state.
784      * Prerequisites: none.
785      * Access: read-only.
786      * NXM: NXM_NX_CT_STATE(105) since v2.5.
787      * OXM: none.
788      */
789     MFF_CT_STATE,
790
791     /* "ct_zone".
792      *
793      * Connection tracking zone.  The field is populated by the
794      * NXAST_CT action.
795      *
796      * Type: be16.
797      * Maskable: no.
798      * Formatting: hexadecimal.
799      * Prerequisites: none.
800      * Access: read-only.
801      * NXM: NXM_NX_CT_ZONE(106) since v2.5.
802      * OXM: none.
803      */
804     MFF_CT_ZONE,
805
806     /* "ct_mark".
807      *
808      * Connection tracking mark.  The mark is carried with the
809      * connection tracking state.  On Linux this corresponds to the
810      * nf_conn's "mark" member but the exact implementation is
811      * platform-dependent.
812      *
813      * Writable only from nested actions within the NXAST_CT action.
814      *
815      * Type: be32.
816      * Maskable: bitwise.
817      * Formatting: hexadecimal.
818      * Prerequisites: none.
819      * Access: read/write.
820      * NXM: NXM_NX_CT_MARK(107) since v2.5.
821      * OXM: none.
822      */
823     MFF_CT_MARK,
824
825     /* "ct_label".
826      *
827      * Connection tracking label.  The label is carried with the
828      * connection tracking state.  On Linux this is held in the
829      * conntrack label extension but the exact implementation is
830      * platform-dependent.
831      *
832      * Writable only from nested actions within the NXAST_CT action.
833      *
834      * Type: be128.
835      * Maskable: bitwise.
836      * Formatting: hexadecimal.
837      * Prerequisites: none.
838      * Access: read/write.
839      * NXM: NXM_NX_CT_LABEL(108) since v2.5.
840      * OXM: none.
841      */
842     MFF_CT_LABEL,
843
844 #if FLOW_N_REGS == 8
845     /* "reg<N>".
846      *
847      * Nicira extension scratch pad register with initial value 0.
848      *
849      * Type: be32.
850      * Maskable: bitwise.
851      * Formatting: hexadecimal.
852      * Prerequisites: none.
853      * Access: read/write.
854      * NXM: NXM_NX_REG0(0) since v1.1.        <0>
855      * NXM: NXM_NX_REG1(1) since v1.1.        <1>
856      * NXM: NXM_NX_REG2(2) since v1.1.        <2>
857      * NXM: NXM_NX_REG3(3) since v1.1.        <3>
858      * NXM: NXM_NX_REG4(4) since v1.3.        <4>
859      * NXM: NXM_NX_REG5(5) since v1.7.        <5>
860      * NXM: NXM_NX_REG6(6) since v1.7.        <6>
861      * NXM: NXM_NX_REG7(7) since v1.7.        <7>
862      * OXM: none.
863      */
864     MFF_REG0,
865     MFF_REG1,
866     MFF_REG2,
867     MFF_REG3,
868     MFF_REG4,
869     MFF_REG5,
870     MFF_REG6,
871     MFF_REG7,
872 #else
873 #error "Need to update MFF_REG* to match FLOW_N_REGS"
874 #endif
875
876 #if FLOW_N_XREGS == 4
877     /* "xreg<N>".
878      *
879      * OpenFlow 1.5 ``extended register".  Each extended register
880      * overlays two of the Nicira extension 32-bit registers: xreg0 overlays
881      * reg0 and reg1, with reg0 supplying the most-significant bits of xreg0
882      * and reg1 the least-significant.  xreg1 similarly overlays reg2 and reg3,
883      * and so on.
884      *
885      * These registers were introduced in OpenFlow 1.5, but EXT-244 in the ONF
886      * JIRA also publishes them as a (draft) OpenFlow extension to OpenFlow
887      * 1.3.
888      *
889      * Type: be64.
890      * Maskable: bitwise.
891      * Formatting: hexadecimal.
892      * Prerequisites: none.
893      * Access: read/write.
894      * NXM: none.
895      * OXM: OXM_OF_PKT_REG<N>(<N>) since OF1.3 and v2.4.
896      */
897     MFF_XREG0,
898     MFF_XREG1,
899     MFF_XREG2,
900     MFF_XREG3,
901 #else
902 #error "Need to update MFF_REG* to match FLOW_N_XREGS"
903 #endif
904
905 /* ## -------- ## */
906 /* ## Ethernet ## */
907 /* ## -------- ## */
908
909     /* "eth_src" (aka "dl_src").
910      *
911      * Source address in Ethernet header.
912      *
913      * This field was not maskable before Open vSwitch 1.8.
914      *
915      * Type: MAC.
916      * Maskable: bitwise.
917      * Formatting: Ethernet.
918      * Prerequisites: none.
919      * Access: read/write.
920      * NXM: NXM_OF_ETH_SRC(2) since v1.1.
921      * OXM: OXM_OF_ETH_SRC(4) since OF1.2 and v1.7.
922      * OF1.0: exact match.
923      * OF1.1: bitwise mask.
924      */
925     MFF_ETH_SRC,
926
927     /* "eth_dst" (aka "dl_dst").
928      *
929      * Destination address in Ethernet header.
930      *
931      * Before Open vSwitch 1.8, the allowed masks were restricted to
932      * 00:00:00:00:00:00, fe:ff:ff:ff:ff:ff, 01:00:00:00:00:00,
933      * ff:ff:ff:ff:ff:ff.
934      *
935      * Type: MAC.
936      * Maskable: bitwise.
937      * Formatting: Ethernet.
938      * Prerequisites: none.
939      * Access: read/write.
940      * NXM: NXM_OF_ETH_DST(1) since v1.1.
941      * OXM: OXM_OF_ETH_DST(3) since OF1.2 and v1.7.
942      * OF1.0: exact match.
943      * OF1.1: bitwise mask.
944      */
945     MFF_ETH_DST,
946
947     /* "eth_type" (aka "dl_type").
948      *
949      * Packet's Ethernet type.
950      *
951      * For an Ethernet II packet this is taken from the Ethernet header.  For
952      * an 802.2 LLC+SNAP header with OUI 00-00-00 this is taken from the SNAP
953      * header.  A packet that has neither format has value 0x05ff
954      * (OFP_DL_TYPE_NOT_ETH_TYPE).
955      *
956      * For a packet with an 802.1Q header, this is the type of the encapsulated
957      * frame.
958      *
959      * Type: be16.
960      * Maskable: no.
961      * Formatting: hexadecimal.
962      * Prerequisites: none.
963      * Access: read-only.
964      * NXM: NXM_OF_ETH_TYPE(3) since v1.1.
965      * OXM: OXM_OF_ETH_TYPE(5) since OF1.2 and v1.7.
966      * OF1.0: exact match.
967      * OF1.1: exact match.
968      */
969     MFF_ETH_TYPE,
970
971 /* ## ---- ## */
972 /* ## VLAN ## */
973 /* ## ---- ## */
974
975 /* It looks odd for vlan_tci, vlan_vid, and vlan_pcp to say that they are
976  * supported in OF1.0 and OF1.1, since the detailed semantics of these fields
977  * only apply to NXM or OXM.  They are marked as supported for exact matches in
978  * OF1.0 and OF1.1 because exact matches on those fields can be successfully
979  * translated into the OF1.0 and OF1.1 flow formats. */
980
981     /* "vlan_tci".
982      *
983      * 802.1Q TCI.
984      *
985      * For a packet with an 802.1Q header, this is the Tag Control Information
986      * (TCI) field, with the CFI bit forced to 1.  For a packet with no 802.1Q
987      * header, this has value 0.
988      *
989      * This field can be used in various ways:
990      *
991      *   - If it is not constrained at all, the nx_match matches packets
992      *     without an 802.1Q header or with an 802.1Q header that has any TCI
993      *     value.
994      *
995      *   - Testing for an exact match with 0 matches only packets without an
996      *     802.1Q header.
997      *
998      *   - Testing for an exact match with a TCI value with CFI=1 matches
999      *     packets that have an 802.1Q header with a specified VID and PCP.
1000      *
1001      *   - Testing for an exact match with a nonzero TCI value with CFI=0 does
1002      *     not make sense.  The switch may reject this combination.
1003      *
1004      *   - Testing with a specific VID and CFI=1, with nxm_mask=0x1fff, matches
1005      *     packets that have an 802.1Q header with that VID (and any PCP).
1006      *
1007      *   - Testing with a specific PCP and CFI=1, with nxm_mask=0xf000, matches
1008      *     packets that have an 802.1Q header with that PCP (and any VID).
1009      *
1010      *   - Testing with nxm_value=0, nxm_mask=0x0fff matches packets with no
1011      *     802.1Q header or with an 802.1Q header with a VID of 0.
1012      *
1013      *   - Testing with nxm_value=0, nxm_mask=0xe000 matches packets with no
1014      *     802.1Q header or with an 802.1Q header with a PCP of 0.
1015      *
1016      *   - Testing with nxm_value=0, nxm_mask=0xefff matches packets with no
1017      *     802.1Q header or with an 802.1Q header with both VID and PCP of 0.
1018      *
1019      * Type: be16.
1020      * Maskable: bitwise.
1021      * Formatting: hexadecimal.
1022      * Prerequisites: none.
1023      * Access: read/write.
1024      * NXM: NXM_OF_VLAN_TCI(4) since v1.1.
1025      * OXM: none.
1026      * OF1.0: exact match.
1027      * OF1.1: exact match.
1028      */
1029     MFF_VLAN_TCI,
1030
1031     /* "dl_vlan" (OpenFlow 1.0).
1032      *
1033      * VLAN ID field.  Zero if no 802.1Q header is present.
1034      *
1035      * Type: be16 (low 12 bits).
1036      * Maskable: no.
1037      * Formatting: decimal.
1038      * Prerequisites: none.
1039      * Access: read/write.
1040      * NXM: none.
1041      * OXM: none.
1042      * OF1.0: exact match.
1043      * OF1.1: exact match.
1044      */
1045     MFF_DL_VLAN,
1046
1047     /* "vlan_vid" (OpenFlow 1.2+).
1048      *
1049      * If an 802.1Q header is present, this field's value is 0x1000
1050      * bitwise-or'd with the VLAN ID.  If no 802.1Q is present, this field's
1051      * value is 0.
1052      *
1053      * Type: be16 (low 12 bits).
1054      * Maskable: bitwise.
1055      * Formatting: decimal.
1056      * Prerequisites: none.
1057      * Access: read/write.
1058      * NXM: none.
1059      * OXM: OXM_OF_VLAN_VID(6) since OF1.2 and v1.7.
1060      * OF1.0: exact match.
1061      * OF1.1: exact match.
1062      */
1063     MFF_VLAN_VID,
1064
1065     /* "dl_vlan_pcp" (OpenFlow 1.0).
1066      *
1067      * VLAN priority (PCP) field.  Zero if no 802.1Q header is present.
1068      *
1069      * Type: u8 (low 3 bits).
1070      * Maskable: no.
1071      * Formatting: decimal.
1072      * Prerequisites: none.
1073      * Access: read/write.
1074      * NXM: none.
1075      * OXM: none.
1076      * OF1.0: exact match.
1077      * OF1.1: exact match.
1078      */
1079     MFF_DL_VLAN_PCP,
1080
1081     /* "vlan_pcp" (OpenFlow 1.2+).
1082      *
1083      * VLAN priority (PCP) field.  Zero if no 802.1Q header is present.
1084      *
1085      * Type: u8 (low 3 bits).
1086      * Maskable: no.
1087      * Formatting: decimal.
1088      * Prerequisites: VLAN VID.
1089      * Access: read/write.
1090      * NXM: none.
1091      * OXM: OXM_OF_VLAN_PCP(7) since OF1.2 and v1.7.
1092      * OF1.0: exact match.
1093      * OF1.1: exact match.
1094      */
1095     MFF_VLAN_PCP,
1096
1097 /* ## ---- ## */
1098 /* ## MPLS ## */
1099 /* ## ---- ## */
1100
1101     /* "mpls_label".
1102      *
1103      * The outermost MPLS label, or 0 if no MPLS labels are present.
1104      *
1105      * Type: be32 (low 20 bits).
1106      * Maskable: no.
1107      * Formatting: decimal.
1108      * Prerequisites: MPLS.
1109      * Access: read/write.
1110      * NXM: none.
1111      * OXM: OXM_OF_MPLS_LABEL(34) since OF1.2 and v1.11.
1112      * OF1.1: exact match.
1113      */
1114     MFF_MPLS_LABEL,
1115
1116     /* "mpls_tc".
1117      *
1118      * The outermost MPLS label's traffic control (TC) field, or 0 if no MPLS
1119      * labels are present.
1120      *
1121      * Type: u8 (low 3 bits).
1122      * Maskable: no.
1123      * Formatting: decimal.
1124      * Prerequisites: MPLS.
1125      * Access: read/write.
1126      * NXM: none.
1127      * OXM: OXM_OF_MPLS_TC(35) since OF1.2 and v1.11.
1128      * OF1.1: exact match.
1129      */
1130     MFF_MPLS_TC,
1131
1132     /* "mpls_bos".
1133      *
1134      * The outermost MPLS label's bottom of stack (BoS) field, or 0 if no MPLS
1135      * labels are present.
1136      *
1137      * Type: u8 (low 1 bits).
1138      * Maskable: no.
1139      * Formatting: decimal.
1140      * Prerequisites: MPLS.
1141      * Access: read-only.
1142      * NXM: none.
1143      * OXM: OXM_OF_MPLS_BOS(36) since OF1.3 and v1.11.
1144      */
1145     MFF_MPLS_BOS,
1146
1147     /* "mpls_ttl".
1148      *
1149      * The outermost MPLS label's time-to-live (TTL) field, or 0 if no MPLS
1150      * labels are present.
1151      *
1152      * Type: u8.
1153      * Maskable: no.
1154      * Formatting: decimal.
1155      * Prerequisites: MPLS.
1156      * Access: read/write.
1157      * NXM: NXM_NX_MPLS_TTL(30) since v2.6.
1158      * OXM: none.
1159      */
1160     MFF_MPLS_TTL,
1161
1162 /* ## ---- ## */
1163 /* ## IPv4 ## */
1164 /* ## ---- ## */
1165
1166 /* Update mf_is_l3_or_higher() if MFF_IPV4_SRC is no longer the first element
1167  * for a field of layer 3 or higher */
1168
1169     /* "ip_src" (aka "nw_src").
1170      *
1171      * The source address in the IPv4 header.
1172      *
1173      * Before Open vSwitch 1.8, only CIDR masks were supported.
1174      *
1175      * Type: be32.
1176      * Maskable: bitwise.
1177      * Formatting: IPv4.
1178      * Prerequisites: IPv4.
1179      * Access: read/write.
1180      * NXM: NXM_OF_IP_SRC(7) since v1.1.
1181      * OXM: OXM_OF_IPV4_SRC(11) since OF1.2 and v1.7.
1182      * OF1.0: CIDR mask.
1183      * OF1.1: bitwise mask.
1184      * Prefix lookup member: nw_src.
1185      */
1186     MFF_IPV4_SRC,
1187
1188     /* "ip_dst" (aka "nw_dst").
1189      *
1190      * The destination address in the IPv4 header.
1191      *
1192      * Before Open vSwitch 1.8, only CIDR masks were supported.
1193      *
1194      * Type: be32.
1195      * Maskable: bitwise.
1196      * Formatting: IPv4.
1197      * Prerequisites: IPv4.
1198      * Access: read/write.
1199      * NXM: NXM_OF_IP_DST(8) since v1.1.
1200      * OXM: OXM_OF_IPV4_DST(12) since OF1.2 and v1.7.
1201      * OF1.0: CIDR mask.
1202      * OF1.1: bitwise mask.
1203      * Prefix lookup member: nw_dst.
1204      */
1205     MFF_IPV4_DST,
1206
1207 /* ## ---- ## */
1208 /* ## IPv6 ## */
1209 /* ## ---- ## */
1210
1211     /* "ipv6_src".
1212      *
1213      * The source address in the IPv6 header.
1214      *
1215      * Type: be128.
1216      * Maskable: bitwise.
1217      * Formatting: IPv6.
1218      * Prerequisites: IPv6.
1219      * Access: read/write.
1220      * NXM: NXM_NX_IPV6_SRC(19) since v1.1.
1221      * OXM: OXM_OF_IPV6_SRC(26) since OF1.2 and v1.1.
1222      * Prefix lookup member: ipv6_src.
1223      */
1224     MFF_IPV6_SRC,
1225
1226     /* "ipv6_dst".
1227      *
1228      * The destination address in the IPv6 header.
1229      *
1230      * Type: be128.
1231      * Maskable: bitwise.
1232      * Formatting: IPv6.
1233      * Prerequisites: IPv6.
1234      * Access: read/write.
1235      * NXM: NXM_NX_IPV6_DST(20) since v1.1.
1236      * OXM: OXM_OF_IPV6_DST(27) since OF1.2 and v1.1.
1237      * Prefix lookup member: ipv6_dst.
1238      */
1239     MFF_IPV6_DST,
1240
1241     /* "ipv6_label".
1242      *
1243      * The flow label in the IPv6 header.
1244      *
1245      * Type: be32 (low 20 bits).
1246      * Maskable: bitwise.
1247      * Formatting: hexadecimal.
1248      * Prerequisites: IPv6.
1249      * Access: read/write.
1250      * NXM: NXM_NX_IPV6_LABEL(27) since v1.4.
1251      * OXM: OXM_OF_IPV6_FLABEL(28) since OF1.2 and v1.7.
1252      */
1253     MFF_IPV6_LABEL,
1254
1255 /* ## ----------------------- ## */
1256 /* ## IPv4/IPv6 common fields ## */
1257 /* ## ----------------------- ## */
1258
1259     /* "nw_proto" (aka "ip_proto").
1260      *
1261      * The "protocol" byte in the IPv4 or IPv6 header.
1262      *
1263      * Type: u8.
1264      * Maskable: no.
1265      * Formatting: decimal.
1266      * Prerequisites: IPv4/IPv6.
1267      * Access: read-only.
1268      * NXM: NXM_OF_IP_PROTO(6) since v1.1.
1269      * OXM: OXM_OF_IP_PROTO(10) since OF1.2 and v1.7.
1270      * OF1.0: exact match.
1271      * OF1.1: exact match.
1272      */
1273     MFF_IP_PROTO,
1274
1275 /* Both views of the DSCP below are marked as supported in all of the versions
1276  * of OpenFlow because a match on either view can be successfully translated
1277  * into every OpenFlow flow format. */
1278
1279     /* "nw_tos" (OpenFlow 1.0/1.1).
1280      *
1281      * The DSCP byte in the IPv4 header or the traffic class byte from the IPv6
1282      * header, with the ECN bits forced to 0.  (That is, bits 2-7 contain the
1283      * type of service and bits 0-1 are zero.)
1284      *
1285      * Type: u8.
1286      * Maskable: no.
1287      * Formatting: decimal.
1288      * Prerequisites: IPv4/IPv6.
1289      * Access: read/write.
1290      * NXM: NXM_OF_IP_TOS(5) since v1.1.
1291      * OXM: none.
1292      * OF1.0: exact match.
1293      * OF1.1: exact match.
1294      */
1295     MFF_IP_DSCP,
1296
1297     /* "ip_dscp" (OpenFlow 1.2+).
1298      *
1299      * The DSCP byte in the IPv4 header or the traffic class byte from the IPv6
1300      * header, shifted right 2 bits.  (That is, bits 0-5 contain the type of
1301      * service and bits 6-7 are zero.)
1302      *
1303      * Type: u8 (low 6 bits).
1304      * Maskable: no.
1305      * Formatting: decimal.
1306      * Prerequisites: IPv4/IPv6.
1307      * Access: read/write.
1308      * NXM: none.
1309      * OXM: OXM_OF_IP_DSCP(8) since OF1.2 and v1.7.
1310      * OF1.0: exact match.
1311      * OF1.1: exact match.
1312      */
1313     MFF_IP_DSCP_SHIFTED,
1314
1315     /* "nw_ecn" (aka "ip_ecn").
1316      *
1317      * The ECN bits in the IPv4 or IPv6 header.
1318      *
1319      * Type: u8 (low 2 bits).
1320      * Maskable: no.
1321      * Formatting: decimal.
1322      * Prerequisites: IPv4/IPv6.
1323      * Access: read/write.
1324      * NXM: NXM_NX_IP_ECN(28) since v1.4.
1325      * OXM: OXM_OF_IP_ECN(9) since OF1.2 and v1.7.
1326      */
1327     MFF_IP_ECN,
1328
1329     /* "nw_ttl".
1330      *
1331      * The time-to-live (TTL) in the IPv4 header or hop limit in the IPv6
1332      * header.
1333      *
1334      * Type: u8.
1335      * Maskable: no.
1336      * Formatting: decimal.
1337      * Prerequisites: IPv4/IPv6.
1338      * Access: read/write.
1339      * NXM: NXM_NX_IP_TTL(29) since v1.4.
1340      * OXM: none.
1341      */
1342     MFF_IP_TTL,
1343
1344     /* "ip_frag".
1345      *
1346      * IP fragment information.
1347      *
1348      * This field has three possible values:
1349      *
1350      *   - A packet that is not an IP fragment has value 0.
1351      *
1352      *   - A packet that is an IP fragment with offset 0 (the first fragment)
1353      *     has bit 0 set and thus value 1.
1354      *
1355      *   - A packet that is an IP fragment with nonzero offset has bits 0 and 1
1356      *     set and thus value 3.
1357      *
1358      * NX_IP_FRAG_ANY and NX_IP_FRAG_LATER are declared to symbolically
1359      * represent the meanings of bits 0 and 1.
1360      *
1361      * The switch may reject matches against values that can never appear.
1362      *
1363      * It is important to understand how this field interacts with the OpenFlow
1364      * IP fragment handling mode:
1365      *
1366      *   - In OFPC_FRAG_DROP mode, the OpenFlow switch drops all IP fragments
1367      *     before they reach the flow table, so every packet that is available
1368      *     for matching will have value 0 in this field.
1369      *
1370      *   - Open vSwitch does not implement OFPC_FRAG_REASM mode, but if it did
1371      *     then IP fragments would be reassembled before they reached the flow
1372      *     table and again every packet available for matching would always
1373      *     have value 0.
1374      *
1375      *   - In OFPC_FRAG_NORMAL mode, all three values are possible, but
1376      *     OpenFlow 1.0 says that fragments' transport ports are always 0, even
1377      *     for the first fragment, so this does not provide much extra
1378      *     information.
1379      *
1380      *   - In OFPC_FRAG_NX_MATCH mode, all three values are possible.  For
1381      *     fragments with offset 0, Open vSwitch makes L4 header information
1382      *     available.
1383      *
1384      * Type: u8 (low 2 bits).
1385      * Maskable: bitwise.
1386      * Formatting: frag.
1387      * Prerequisites: IPv4/IPv6.
1388      * Access: read-only.
1389      * NXM: NXM_NX_IP_FRAG(26) since v1.3.
1390      * OXM: none.
1391      */
1392     MFF_IP_FRAG,
1393
1394 /* ## --- ## */
1395 /* ## ARP ## */
1396 /* ## --- ## */
1397
1398     /* "arp_op".
1399      *
1400      * ARP opcode.
1401      *
1402      * For an Ethernet+IP ARP packet, the opcode in the ARP header.  Always 0
1403      * otherwise.  Only ARP opcodes between 1 and 255 should be specified for
1404      * matching.
1405      *
1406      * Type: be16.
1407      * Maskable: no.
1408      * Formatting: decimal.
1409      * Prerequisites: ARP.
1410      * Access: read/write.
1411      * NXM: NXM_OF_ARP_OP(15) since v1.1.
1412      * OXM: OXM_OF_ARP_OP(21) since OF1.2 and v1.7.
1413      * OF1.0: exact match.
1414      * OF1.1: exact match.
1415      */
1416     MFF_ARP_OP,
1417
1418     /* "arp_spa".
1419      *
1420      * For an Ethernet+IP ARP packet, the source protocol (IPv4) address in the
1421      * ARP header.  Always 0 otherwise.
1422      *
1423      * Before Open vSwitch 1.8, only CIDR masks were supported.
1424      *
1425      * Type: be32.
1426      * Maskable: bitwise.
1427      * Formatting: IPv4.
1428      * Prerequisites: ARP.
1429      * Access: read/write.
1430      * NXM: NXM_OF_ARP_SPA(16) since v1.1.
1431      * OXM: OXM_OF_ARP_SPA(22) since OF1.2 and v1.7.
1432      * OF1.0: CIDR mask.
1433      * OF1.1: bitwise mask.
1434      */
1435     MFF_ARP_SPA,
1436
1437     /* "arp_tpa".
1438      *
1439      * For an Ethernet+IP ARP packet, the target protocol (IPv4) address in the
1440      * ARP header.  Always 0 otherwise.
1441      *
1442      * Before Open vSwitch 1.8, only CIDR masks were supported.
1443      *
1444      * Type: be32.
1445      * Maskable: bitwise.
1446      * Formatting: IPv4.
1447      * Prerequisites: ARP.
1448      * Access: read/write.
1449      * NXM: NXM_OF_ARP_TPA(17) since v1.1.
1450      * OXM: OXM_OF_ARP_TPA(23) since OF1.2 and v1.7.
1451      * OF1.0: CIDR mask.
1452      * OF1.1: bitwise mask.
1453      */
1454     MFF_ARP_TPA,
1455
1456     /* "arp_sha".
1457      *
1458      * For an Ethernet+IP ARP packet, the source hardware (Ethernet) address in
1459      * the ARP header.  Always 0 otherwise.
1460      *
1461      * Type: MAC.
1462      * Maskable: bitwise.
1463      * Formatting: Ethernet.
1464      * Prerequisites: ARP.
1465      * Access: read/write.
1466      * NXM: NXM_NX_ARP_SHA(17) since v1.1.
1467      * OXM: OXM_OF_ARP_SHA(24) since OF1.2 and v1.7.
1468      */
1469     MFF_ARP_SHA,
1470
1471     /* "arp_tha".
1472      *
1473      * For an Ethernet+IP ARP packet, the target hardware (Ethernet) address in
1474      * the ARP header.  Always 0 otherwise.
1475      *
1476      * Type: MAC.
1477      * Maskable: bitwise.
1478      * Formatting: Ethernet.
1479      * Prerequisites: ARP.
1480      * Access: read/write.
1481      * NXM: NXM_NX_ARP_THA(18) since v1.1.
1482      * OXM: OXM_OF_ARP_THA(25) since OF1.2 and v1.7.
1483      */
1484     MFF_ARP_THA,
1485
1486 /* ## --- ## */
1487 /* ## TCP ## */
1488 /* ## --- ## */
1489
1490     /* "tcp_src" (aka "tp_src").
1491      *
1492      * TCP source port.
1493      *
1494      * Type: be16.
1495      * Maskable: bitwise.
1496      * Formatting: decimal.
1497      * Prerequisites: TCP.
1498      * Access: read/write.
1499      * NXM: NXM_OF_TCP_SRC(9) since v1.1.
1500      * OXM: OXM_OF_TCP_SRC(13) since OF1.2 and v1.7.
1501      * OF1.0: exact match.
1502      * OF1.1: exact match.
1503      */
1504     MFF_TCP_SRC,
1505
1506     /* "tcp_dst" (aka "tp_dst").
1507      *
1508      * TCP destination port.
1509      *
1510      * Type: be16.
1511      * Maskable: bitwise.
1512      * Formatting: decimal.
1513      * Prerequisites: TCP.
1514      * Access: read/write.
1515      * NXM: NXM_OF_TCP_DST(10) since v1.1.
1516      * OXM: OXM_OF_TCP_DST(14) since OF1.2 and v1.7.
1517      * OF1.0: exact match.
1518      * OF1.1: exact match.
1519      */
1520     MFF_TCP_DST,
1521
1522     /* "tcp_flags".
1523      *
1524      * Flags in the TCP header.
1525      *
1526      * TCP currently defines 9 flag bits, and additional 3 bits are reserved
1527      * (must be transmitted as zero).  See RFCs 793, 3168, and 3540.
1528      *
1529      * Type: be16 (low 12 bits).
1530      * Maskable: bitwise.
1531      * Formatting: TCP flags.
1532      * Prerequisites: TCP.
1533      * Access: read-only.
1534      * NXM: NXM_NX_TCP_FLAGS(34) since v2.1.
1535      * OXM: ONFOXM_ET_TCP_FLAGS(42) since OF1.3 and v2.4,
1536      *      OXM_OF_TCP_FLAGS(42) since OF1.5 and v2.3.
1537      */
1538     MFF_TCP_FLAGS,
1539
1540 /* ## --- ## */
1541 /* ## UDP ## */
1542 /* ## --- ## */
1543
1544     /* "udp_src".
1545      *
1546      * UDP source port.
1547      *
1548      * Type: be16.
1549      * Maskable: bitwise.
1550      * Formatting: decimal.
1551      * Prerequisites: UDP.
1552      * Access: read/write.
1553      * NXM: NXM_OF_UDP_SRC(11) since v1.1.
1554      * OXM: OXM_OF_UDP_SRC(15) since OF1.2 and v1.7.
1555      * OF1.0: exact match.
1556      * OF1.1: exact match.
1557      */
1558     MFF_UDP_SRC,
1559
1560     /* "udp_dst".
1561      *
1562      * UDP destination port
1563      *
1564      * Type: be16.
1565      * Maskable: bitwise.
1566      * Formatting: decimal.
1567      * Prerequisites: UDP.
1568      * Access: read/write.
1569      * NXM: NXM_OF_UDP_DST(12) since v1.1.
1570      * OXM: OXM_OF_UDP_DST(16) since OF1.2 and v1.7.
1571      * OF1.0: exact match.
1572      * OF1.1: exact match.
1573      */
1574     MFF_UDP_DST,
1575
1576 /* ## ---- ## */
1577 /* ## SCTP ## */
1578 /* ## ---- ## */
1579
1580     /* "sctp_src".
1581      *
1582      * SCTP source port.
1583      *
1584      * Type: be16.
1585      * Maskable: bitwise.
1586      * Formatting: decimal.
1587      * Prerequisites: SCTP.
1588      * Access: read/write.
1589      * NXM: none.
1590      * OXM: OXM_OF_SCTP_SRC(17) since OF1.2 and v2.0.
1591      * OF1.1: exact match.
1592      */
1593     MFF_SCTP_SRC,
1594
1595     /* "sctp_dst".
1596      *
1597      * SCTP destination port.
1598      *
1599      * Type: be16.
1600      * Maskable: bitwise.
1601      * Formatting: decimal.
1602      * Prerequisites: SCTP.
1603      * Access: read/write.
1604      * NXM: none.
1605      * OXM: OXM_OF_SCTP_DST(18) since OF1.2 and v2.0.
1606      * OF1.1: exact match.
1607      */
1608     MFF_SCTP_DST,
1609
1610 /* ## ---- ## */
1611 /* ## ICMP ## */
1612 /* ## ---- ## */
1613
1614     /* "icmp_type".
1615      *
1616      * ICMPv4 type.
1617      *
1618      * Type: u8.
1619      * Maskable: no.
1620      * Formatting: decimal.
1621      * Prerequisites: ICMPv4.
1622      * Access: read/write.
1623      * NXM: NXM_OF_ICMP_TYPE(13) since v1.1.
1624      * OXM: OXM_OF_ICMPV4_TYPE(19) since OF1.2 and v1.7.
1625      * OF1.0: exact match.
1626      * OF1.1: exact match.
1627      */
1628     MFF_ICMPV4_TYPE,
1629
1630     /* "icmp_code".
1631      *
1632      * ICMPv4 code.
1633      *
1634      * Type: u8.
1635      * Maskable: no.
1636      * Formatting: decimal.
1637      * Prerequisites: ICMPv4.
1638      * Access: read/write.
1639      * NXM: NXM_OF_ICMP_CODE(14) since v1.1.
1640      * OXM: OXM_OF_ICMPV4_CODE(20) since OF1.2 and v1.7.
1641      * OF1.0: exact match.
1642      * OF1.1: exact match.
1643      */
1644     MFF_ICMPV4_CODE,
1645
1646     /* "icmpv6_type".
1647      *
1648      * ICMPv6 type.
1649      *
1650      * Type: u8.
1651      * Maskable: no.
1652      * Formatting: decimal.
1653      * Prerequisites: ICMPv6.
1654      * Access: read/write.
1655      * NXM: NXM_NX_ICMPV6_TYPE(21) since v1.1.
1656      * OXM: OXM_OF_ICMPV6_TYPE(29) since OF1.2 and v1.7.
1657      */
1658     MFF_ICMPV6_TYPE,
1659
1660     /* "icmpv6_code".
1661      *
1662      * ICMPv6 code.
1663      *
1664      * Type: u8.
1665      * Maskable: no.
1666      * Formatting: decimal.
1667      * Prerequisites: ICMPv6.
1668      * Access: read/write.
1669      * NXM: NXM_NX_ICMPV6_CODE(22) since v1.1.
1670      * OXM: OXM_OF_ICMPV6_CODE(30) since OF1.2 and v1.7.
1671      */
1672     MFF_ICMPV6_CODE,
1673
1674 /* ## ------------------------- ## */
1675 /* ## ICMPv6 Neighbor Discovery ## */
1676 /* ## ------------------------- ## */
1677
1678     /* "nd_target".
1679      *
1680      * The target address in an IPv6 Neighbor Discovery message.
1681      *
1682      * Before Open vSwitch 1.8, only CIDR masks were supported.
1683      *
1684      * Type: be128.
1685      * Maskable: bitwise.
1686      * Formatting: IPv6.
1687      * Prerequisites: ND.
1688      * Access: read/write.
1689      * NXM: NXM_NX_ND_TARGET(23) since v1.1.
1690      * OXM: OXM_OF_IPV6_ND_TARGET(31) since OF1.2 and v1.7.
1691      */
1692     MFF_ND_TARGET,
1693
1694     /* "nd_sll".
1695      *
1696      * The source link layer address in an IPv6 Neighbor Discovery message.
1697      *
1698      * Type: MAC.
1699      * Maskable: bitwise.
1700      * Formatting: Ethernet.
1701      * Prerequisites: ND solicit.
1702      * Access: read/write.
1703      * NXM: NXM_NX_ND_SLL(24) since v1.1.
1704      * OXM: OXM_OF_IPV6_ND_SLL(32) since OF1.2 and v1.7.
1705      */
1706     MFF_ND_SLL,
1707
1708     /* "nd_tll".
1709      *
1710      * The target link layer address in an IPv6 Neighbor Discovery message.
1711      *
1712      * Type: MAC.
1713      * Maskable: bitwise.
1714      * Formatting: Ethernet.
1715      * Prerequisites: ND advert.
1716      * Access: read/write.
1717      * NXM: NXM_NX_ND_TLL(25) since v1.1.
1718      * OXM: OXM_OF_IPV6_ND_TLL(33) since OF1.2 and v1.7.
1719      */
1720     MFF_ND_TLL,
1721
1722     MFF_N_IDS
1723 };
1724
1725 /* A set of mf_field_ids. */
1726 struct mf_bitmap {
1727     unsigned long bm[BITMAP_N_LONGS(MFF_N_IDS)];
1728 };
1729 #define MF_BITMAP_INITIALIZER { { [0] = 0 } }
1730
1731 /* Use this macro as CASE_MFF_REGS: in a switch statement to choose all of the
1732  * MFF_REGn cases. */
1733 #if FLOW_N_REGS == 8
1734 #define CASE_MFF_REGS                                           \
1735     case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3: \
1736     case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7
1737 #else
1738 #error "Need to update CASE_MFF_REGS to match FLOW_N_REGS"
1739 #endif
1740
1741 /* Use this macro as CASE_MFF_XREGS: in a switch statement to choose all of the
1742  * MFF_REGn cases. */
1743 #if FLOW_N_XREGS == 4
1744 #define CASE_MFF_XREGS                                              \
1745     case MFF_XREG0: case MFF_XREG1: case MFF_XREG2: case MFF_XREG3
1746 #else
1747 #error "Need to update CASE_MFF_XREGS to match FLOW_N_XREGS"
1748 #endif
1749
1750 /* Use this macro as CASE_MFF_TUN_METADATA: in a switch statement to choose
1751  * all of the MFF_TUN_METADATAn cases. */
1752 #define CASE_MFF_TUN_METADATA                         \
1753     case MFF_TUN_METADATA0: case MFF_TUN_METADATA1:   \
1754     case MFF_TUN_METADATA2: case MFF_TUN_METADATA3:   \
1755     case MFF_TUN_METADATA4: case MFF_TUN_METADATA5:   \
1756     case MFF_TUN_METADATA6: case MFF_TUN_METADATA7:   \
1757     case MFF_TUN_METADATA8: case MFF_TUN_METADATA9:   \
1758     case MFF_TUN_METADATA10: case MFF_TUN_METADATA11: \
1759     case MFF_TUN_METADATA12: case MFF_TUN_METADATA13: \
1760     case MFF_TUN_METADATA14: case MFF_TUN_METADATA15: \
1761     case MFF_TUN_METADATA16: case MFF_TUN_METADATA17: \
1762     case MFF_TUN_METADATA18: case MFF_TUN_METADATA19: \
1763     case MFF_TUN_METADATA20: case MFF_TUN_METADATA21: \
1764     case MFF_TUN_METADATA22: case MFF_TUN_METADATA23: \
1765     case MFF_TUN_METADATA24: case MFF_TUN_METADATA25: \
1766     case MFF_TUN_METADATA26: case MFF_TUN_METADATA27: \
1767     case MFF_TUN_METADATA28: case MFF_TUN_METADATA29: \
1768     case MFF_TUN_METADATA30: case MFF_TUN_METADATA31: \
1769     case MFF_TUN_METADATA32: case MFF_TUN_METADATA33: \
1770     case MFF_TUN_METADATA34: case MFF_TUN_METADATA35: \
1771     case MFF_TUN_METADATA36: case MFF_TUN_METADATA37: \
1772     case MFF_TUN_METADATA38: case MFF_TUN_METADATA39: \
1773     case MFF_TUN_METADATA40: case MFF_TUN_METADATA41: \
1774     case MFF_TUN_METADATA42: case MFF_TUN_METADATA43: \
1775     case MFF_TUN_METADATA44: case MFF_TUN_METADATA45: \
1776     case MFF_TUN_METADATA46: case MFF_TUN_METADATA47: \
1777     case MFF_TUN_METADATA48: case MFF_TUN_METADATA49: \
1778     case MFF_TUN_METADATA50: case MFF_TUN_METADATA51: \
1779     case MFF_TUN_METADATA52: case MFF_TUN_METADATA53: \
1780     case MFF_TUN_METADATA54: case MFF_TUN_METADATA55: \
1781     case MFF_TUN_METADATA56: case MFF_TUN_METADATA57: \
1782     case MFF_TUN_METADATA58: case MFF_TUN_METADATA59: \
1783     case MFF_TUN_METADATA60: case MFF_TUN_METADATA61: \
1784     case MFF_TUN_METADATA62: case MFF_TUN_METADATA63
1785
1786 /* Prerequisites for matching a field.
1787  *
1788  * A field may only be matched if the correct lower-level protocols are also
1789  * matched.  For example, the TCP port may be matched only if the Ethernet type
1790  * matches ETH_TYPE_IP and the IP protocol matches IPPROTO_TCP. */
1791 enum OVS_PACKED_ENUM mf_prereqs {
1792     MFP_NONE,
1793
1794     /* L2 requirements. */
1795     MFP_ARP,
1796     MFP_VLAN_VID,
1797     MFP_IPV4,
1798     MFP_IPV6,
1799     MFP_IP_ANY,
1800
1801     /* L2.5 requirements. */
1802     MFP_MPLS,
1803
1804     /* L2+L3 requirements. */
1805     MFP_TCP,                    /* On IPv4 or IPv6. */
1806     MFP_UDP,                    /* On IPv4 or IPv6. */
1807     MFP_SCTP,                   /* On IPv4 or IPv6. */
1808     MFP_ICMPV4,
1809     MFP_ICMPV6,
1810
1811     /* L2+L3+L4 requirements. */
1812     MFP_ND,
1813     MFP_ND_SOLICIT,
1814     MFP_ND_ADVERT
1815 };
1816
1817 /* Forms of partial-field masking allowed for a field.
1818  *
1819  * Every field may be masked as a whole. */
1820 enum OVS_PACKED_ENUM mf_maskable {
1821     MFM_NONE,                   /* No sub-field masking. */
1822     MFM_FULLY,                  /* Every bit is individually maskable. */
1823 };
1824
1825 /* How to format or parse a field's value. */
1826 enum OVS_PACKED_ENUM mf_string {
1827     /* Integer formats.
1828      *
1829      * The particular MFS_* constant sets the output format.  On input, either
1830      * decimal or hexadecimal (prefixed with 0x) is accepted. */
1831     MFS_DECIMAL,
1832     MFS_HEXADECIMAL,
1833
1834     /* Other formats. */
1835     MFS_CT_STATE,               /* Connection tracking state */
1836     MFS_ETHERNET,
1837     MFS_IPV4,
1838     MFS_IPV6,
1839     MFS_OFP_PORT,               /* 16-bit OpenFlow 1.0 port number or name. */
1840     MFS_OFP_PORT_OXM,           /* 32-bit OpenFlow 1.1+ port number or name. */
1841     MFS_FRAG,                   /* no, yes, first, later, not_later */
1842     MFS_TNL_FLAGS,              /* FLOW_TNL_F_* flags */
1843     MFS_TCP_FLAGS,              /* TCP_* flags */
1844 };
1845
1846 struct mf_field {
1847     /* Identification. */
1848     enum mf_field_id id;        /* MFF_*. */
1849     const char *name;           /* Name of this field, e.g. "eth_type". */
1850     const char *extra_name;     /* Alternate name, e.g. "dl_type", or NULL. */
1851
1852     /* Size.
1853      *
1854      * Most fields have n_bytes * 8 == n_bits.  There are a few exceptions:
1855      *
1856      *     - "dl_vlan" is 2 bytes but only 12 bits.
1857      *     - "dl_vlan_pcp" is 1 byte but only 3 bits.
1858      *     - "is_frag" is 1 byte but only 2 bits.
1859      *     - "ipv6_label" is 4 bytes but only 20 bits.
1860      *     - "mpls_label" is 4 bytes but only 20 bits.
1861      *     - "mpls_tc"    is 1 byte but only 3 bits.
1862      *     - "mpls_bos"   is 1 byte but only 1 bit.
1863      */
1864     unsigned int n_bytes;       /* Width of the field in bytes. */
1865     unsigned int n_bits;        /* Number of significant bits in field. */
1866     bool variable_len;          /* Length is variable, if so width is max. */
1867
1868     /* Properties. */
1869     enum mf_maskable maskable;
1870     enum mf_string string;
1871     enum mf_prereqs prereqs;
1872     bool writable;              /* May be written by actions? */
1873
1874     /* Usable protocols.
1875      *
1876      * NXM and OXM are extensible, allowing later extensions to be sent in
1877      * earlier protocol versions, so this does not necessarily correspond to
1878      * the OpenFlow protocol version the field was introduced in.
1879      * Also, some field types are tranparently mapped to each other via the
1880      * struct flow (like vlan and dscp/tos fields), so each variant supports
1881      * all protocols.
1882      *
1883      * These are combinations of OFPUTIL_P_*.  (They are not declared as type
1884      * enum ofputil_protocol because that would give meta-flow.h and ofp-util.h
1885      * a circular dependency.) */
1886     uint32_t usable_protocols_exact;   /* Matching or setting whole field. */
1887     uint32_t usable_protocols_cidr;    /* Matching a CIDR mask in field. */
1888     uint32_t usable_protocols_bitwise; /* Matching arbitrary bits in field. */
1889
1890     int flow_be32ofs;  /* Field's be32 offset in "struct flow", if prefix tree
1891                         * lookup is supported for the field, or -1. */
1892 };
1893
1894 /* The representation of a field's value. */
1895 union mf_value {
1896     uint8_t tun_metadata[128];
1897     struct in6_addr ipv6;
1898     struct eth_addr mac;
1899     ovs_be128 be128;
1900     ovs_be64 be64;
1901     ovs_be32 be32;
1902     ovs_be16 be16;
1903     uint8_t u8;
1904 };
1905 BUILD_ASSERT_DECL(sizeof(union mf_value) == 128);
1906 BUILD_ASSERT_DECL(sizeof(union mf_value) >= TLV_MAX_OPT_SIZE);
1907
1908 /* A const mf_value with all bits initialized to ones. */
1909 extern const union mf_value exact_match_mask;
1910
1911 /* Part of a field. */
1912 struct mf_subfield {
1913     const struct mf_field *field;
1914     unsigned int ofs;           /* Bit offset. */
1915     unsigned int n_bits;        /* Number of bits. */
1916 };
1917
1918 /* Data for some part of an mf_field.
1919  *
1920  * The data is stored "right-justified".  For example, if "union mf_subvalue
1921  * value" contains NXM_OF_VLAN_TCI[0..11], then one could access the
1922  * corresponding data in value.be16[7] as the bits in the mask htons(0xfff). */
1923 union mf_subvalue {
1924     /* Access to full data. */
1925     uint8_t u8[128];
1926     ovs_be16 be16[64];
1927     ovs_be32 be32[32];
1928     ovs_be64 be64[16];
1929
1930     /* Convenient access to just least-significant bits in various forms. */
1931     struct {
1932         ovs_be64 dummy_integer[15];
1933         ovs_be64 integer;
1934     };
1935     struct {
1936         uint8_t dummy_mac[122];
1937         struct eth_addr mac;
1938     };
1939     struct {
1940         ovs_be32 dummy_ipv4[31];
1941         ovs_be32 ipv4;
1942     };
1943     struct {
1944         struct in6_addr dummy_ipv6[7];
1945         struct in6_addr ipv6;
1946     };
1947 };
1948 BUILD_ASSERT_DECL(sizeof(union mf_value) == sizeof (union mf_subvalue));
1949
1950 bool mf_subvalue_intersect(const union mf_subvalue *a_value,
1951                            const union mf_subvalue *a_mask,
1952                            const union mf_subvalue *b_value,
1953                            const union mf_subvalue *b_mask,
1954                            union mf_subvalue *dst_value,
1955                            union mf_subvalue *dst_mask);
1956 int mf_subvalue_width(const union mf_subvalue *);
1957 void mf_subvalue_shift(union mf_subvalue *, int n);
1958 void mf_subvalue_format(const union mf_subvalue *, struct ds *);
1959
1960 /* An array of fields with values */
1961 struct field_array {
1962     struct mf_bitmap used;
1963     union mf_value value[MFF_N_IDS];
1964 };
1965
1966 /* Finding mf_fields. */
1967 const struct mf_field *mf_from_name(const char *name);
1968
1969 static inline const struct mf_field *
1970 mf_from_id(enum mf_field_id id)
1971 {
1972     extern const struct mf_field mf_fields[MFF_N_IDS];
1973     ovs_assert((unsigned int) id < MFF_N_IDS);
1974     return &mf_fields[id];
1975 }
1976
1977 /* Inspecting wildcarded bits. */
1978 bool mf_is_all_wild(const struct mf_field *, const struct flow_wildcards *);
1979
1980 bool mf_is_mask_valid(const struct mf_field *, const union mf_value *mask);
1981 void mf_get_mask(const struct mf_field *, const struct flow_wildcards *,
1982                  union mf_value *mask);
1983
1984 /* Prerequisites. */
1985 bool mf_are_prereqs_ok(const struct mf_field *, const struct flow *);
1986 void mf_mask_field_and_prereqs(const struct mf_field *,
1987                                struct flow_wildcards *);
1988 void mf_bitmap_set_field_and_prereqs(const struct mf_field *mf, struct
1989                                      mf_bitmap *bm);
1990
1991 static inline bool
1992 mf_is_l3_or_higher(const struct mf_field *mf)
1993 {
1994     return mf->id >= MFF_IPV4_SRC;
1995 }
1996
1997 /* Field values. */
1998 bool mf_is_value_valid(const struct mf_field *, const union mf_value *value);
1999
2000 void mf_get_value(const struct mf_field *, const struct flow *,
2001                   union mf_value *value);
2002 void mf_set_value(const struct mf_field *, const union mf_value *value,
2003                   struct match *, char **err_str);
2004 void mf_set_flow_value(const struct mf_field *, const union mf_value *value,
2005                        struct flow *);
2006 void mf_set_flow_value_masked(const struct mf_field *,
2007                               const union mf_value *value,
2008                               const union mf_value *mask,
2009                               struct flow *);
2010 bool mf_is_tun_metadata(const struct mf_field *);
2011 bool mf_is_set(const struct mf_field *, const struct flow *);
2012 void mf_mask_field(const struct mf_field *, struct flow *);
2013 int mf_field_len(const struct mf_field *, const union mf_value *value,
2014                  const union mf_value *mask, bool *is_masked);
2015
2016 void mf_get(const struct mf_field *, const struct match *,
2017             union mf_value *value, union mf_value *mask);
2018
2019 /* Returns the set of usable protocols. */
2020 uint32_t mf_set(const struct mf_field *, const union mf_value *value,
2021                 const union mf_value *mask, struct match *, char **err_str);
2022
2023 void mf_set_wild(const struct mf_field *, struct match *, char **err_str);
2024
2025 /* Subfields. */
2026 void mf_write_subfield_flow(const struct mf_subfield *,
2027                             const union mf_subvalue *, struct flow *);
2028 void mf_write_subfield(const struct mf_subfield *, const union mf_subvalue *,
2029                        struct match *);
2030 void mf_mask_subfield(const struct mf_field *,
2031                       const union mf_subvalue *value,
2032                       const union mf_subvalue *mask,
2033                       struct match *);
2034
2035 void mf_read_subfield(const struct mf_subfield *, const struct flow *,
2036                       union mf_subvalue *);
2037 uint64_t mf_get_subfield(const struct mf_subfield *, const struct flow *);
2038
2039
2040 enum ofperr mf_check_src(const struct mf_subfield *, const struct flow *);
2041 enum ofperr mf_check_dst(const struct mf_subfield *, const struct flow *);
2042
2043 /* Parsing and formatting. */
2044 char *mf_parse(const struct mf_field *, const char *,
2045                union mf_value *value, union mf_value *mask);
2046 char *mf_parse_value(const struct mf_field *, const char *, union mf_value *);
2047 void mf_format(const struct mf_field *,
2048                const union mf_value *value, const union mf_value *mask,
2049                struct ds *);
2050 void mf_format_subvalue(const union mf_subvalue *subvalue, struct ds *s);
2051
2052 /* Field Arrays. */
2053 void field_array_set(enum mf_field_id id, const union mf_value *,
2054                      struct field_array *);
2055
2056 #endif /* meta-flow.h */