2011-09-12 12:11:50 -07:00
|
|
|
/*
|
2014-05-15 08:19:11 -07:00
|
|
|
* Copyright (c) 2011, 2012, 2013, 2014 Nicira, Inc.
|
2011-09-12 12:11:50 -07:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_FLOW_H
|
|
|
|
#define META_FLOW_H 1
|
|
|
|
|
2011-11-01 13:25:49 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netinet/in.h>
|
2011-09-12 12:11:50 -07:00
|
|
|
#include <netinet/ip6.h>
|
2014-07-26 12:15:26 -07:00
|
|
|
#include "bitmap.h"
|
2011-09-12 12:11:50 -07:00
|
|
|
#include "flow.h"
|
2011-12-28 12:42:14 -08:00
|
|
|
#include "ofp-errors.h"
|
2011-09-12 12:11:50 -07:00
|
|
|
#include "packets.h"
|
2013-10-24 13:19:27 -07:00
|
|
|
#include "util.h"
|
2011-09-12 12:11:50 -07:00
|
|
|
|
|
|
|
struct ds;
|
2012-08-07 15:28:18 -07:00
|
|
|
struct match;
|
2011-09-12 12:11:50 -07:00
|
|
|
|
|
|
|
/* The comment on each of these indicates the member in "union mf_value" used
|
|
|
|
* to represent its value. */
|
2013-10-24 13:19:27 -07:00
|
|
|
enum OVS_PACKED_ENUM mf_field_id {
|
2011-09-12 12:11:50 -07:00
|
|
|
/* Metadata. */
|
2014-03-04 14:20:19 -08:00
|
|
|
MFF_DP_HASH, /* be32 */
|
|
|
|
MFF_RECIRC_ID, /* be32 */
|
2011-09-12 12:11:50 -07:00
|
|
|
MFF_TUN_ID, /* be64 */
|
2012-11-21 18:51:36 -08:00
|
|
|
MFF_TUN_SRC, /* be32 */
|
|
|
|
MFF_TUN_DST, /* be32 */
|
|
|
|
MFF_TUN_FLAGS, /* be16 */
|
|
|
|
MFF_TUN_TTL, /* u8 */
|
|
|
|
MFF_TUN_TOS, /* u8 */
|
2012-06-27 01:09:44 +12:00
|
|
|
MFF_METADATA, /* be64 */
|
2011-09-12 12:11:50 -07:00
|
|
|
MFF_IN_PORT, /* be16 */
|
2013-05-19 15:44:53 +03:00
|
|
|
MFF_IN_PORT_OXM, /* be32 */
|
2012-11-29 14:36:49 -08:00
|
|
|
MFF_SKB_PRIORITY, /* be32 */
|
2013-08-06 12:57:13 -07:00
|
|
|
MFF_PKT_MARK, /* be32 */
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2014-05-15 08:19:11 -07:00
|
|
|
#if FLOW_N_REGS == 8
|
2011-09-12 12:11:50 -07:00
|
|
|
MFF_REG0, /* be32 */
|
|
|
|
MFF_REG1, /* be32 */
|
|
|
|
MFF_REG2, /* be32 */
|
|
|
|
MFF_REG3, /* be32 */
|
2011-09-28 13:53:59 -07:00
|
|
|
MFF_REG4, /* be32 */
|
2012-03-08 14:44:54 -08:00
|
|
|
MFF_REG5, /* be32 */
|
|
|
|
MFF_REG6, /* be32 */
|
|
|
|
MFF_REG7, /* be32 */
|
2014-05-15 08:19:11 -07:00
|
|
|
#else
|
|
|
|
#error "Need to update MFF_REG* to match FLOW_N_REGS"
|
2011-09-12 12:11:50 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* L2. */
|
|
|
|
MFF_ETH_SRC, /* mac */
|
|
|
|
MFF_ETH_DST, /* mac */
|
|
|
|
MFF_ETH_TYPE, /* be16 */
|
|
|
|
|
|
|
|
MFF_VLAN_TCI, /* be16 */
|
2012-07-22 23:36:41 -07:00
|
|
|
MFF_DL_VLAN, /* be16 (OpenFlow 1.0 compatibility) */
|
2012-07-22 23:20:22 -07:00
|
|
|
MFF_VLAN_VID, /* be16 (OpenFlow 1.2 compatibility) */
|
2012-07-22 23:36:41 -07:00
|
|
|
MFF_DL_VLAN_PCP, /* u8 (OpenFlow 1.0 compatibility) */
|
2012-07-22 23:20:22 -07:00
|
|
|
MFF_VLAN_PCP, /* be16 (OpenFlow 1.2 compatibility) */
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2013-01-25 16:22:07 +09:00
|
|
|
/* L2.5 */
|
|
|
|
MFF_MPLS_LABEL, /* be32 */
|
|
|
|
MFF_MPLS_TC, /* u8 */
|
|
|
|
MFF_MPLS_BOS, /* u8 */
|
|
|
|
|
2011-09-12 12:11:50 -07:00
|
|
|
/* L3. */
|
2014-05-02 17:41:32 +09:00
|
|
|
/* Update mf_is_l3_or_higher() if MFF_IPV4_SRC is
|
|
|
|
* no longer the first element for a field of layer 3 or higher */
|
2011-09-12 12:11:50 -07:00
|
|
|
MFF_IPV4_SRC, /* be32 */
|
|
|
|
MFF_IPV4_DST, /* be32 */
|
|
|
|
|
|
|
|
MFF_IPV6_SRC, /* ipv6 */
|
|
|
|
MFF_IPV6_DST, /* ipv6 */
|
2011-11-01 15:57:56 -07:00
|
|
|
MFF_IPV6_LABEL, /* be32 */
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2013-04-18 09:40:48 -07:00
|
|
|
/* The IPv4/IPv6 DSCP field has two different views:
|
|
|
|
*
|
|
|
|
* - MFF_IP_DSCP has the DSCP in bits 2-7, their bit positions in the
|
|
|
|
* IPv4 and IPv6 "traffic class" field, as used in OpenFlow 1.0 and 1.1
|
|
|
|
* flow format and in NXM's NXM_OF_IP_TOS
|
|
|
|
*
|
|
|
|
* - MFF_IP_DSCP has the DSCP in bits 0-5, shifted right two bits from
|
|
|
|
* their positions in the IPv4 and IPv6 "traffic class" field, as used
|
|
|
|
* in OpenFlow 1.2+ OXM's OXM_OF_IP_DSCP. */
|
2011-09-12 12:11:50 -07:00
|
|
|
MFF_IP_PROTO, /* u8 (used for IPv4 or IPv6) */
|
2011-11-02 23:34:15 -07:00
|
|
|
MFF_IP_DSCP, /* u8 (used for IPv4 or IPv6) */
|
2013-04-18 09:40:48 -07:00
|
|
|
MFF_IP_DSCP_SHIFTED, /* u8 (used for IPv4 or IPv6) (OF1.2 compat) */
|
2011-11-02 23:34:15 -07:00
|
|
|
MFF_IP_ECN, /* u8 (used for IPv4 or IPv6) */
|
2011-11-05 15:48:12 -07:00
|
|
|
MFF_IP_TTL, /* u8 (used for IPv4 or IPv6) */
|
Implement new fragment handling policy.
Until now, OVS has handled IP fragments more awkwardly than necessary. It
has not been possible to match on L4 headers, even in fragments with offset
0 where they are actually present. This means that there was no way to
implement ACLs that treat, say, different TCP ports differently, on
fragmented traffic; instead, all decisions for fragment forwarding had to
be made on the basis of L2 and L3 headers alone.
This commit improves the situation significantly. It is still not possible
to match on L4 headers in fragments with nonzero offset, because that
information is simply not present in such fragments, but this commit adds
the ability to match on L4 headers for fragments with zero offset. This
means that it becomes possible to implement ACLs that drop such "first
fragments" on the basis of L4 headers. In practice, that effectively
blocks even fragmented traffic on an L4 basis, because the receiving IP
stack cannot reassemble a full packet when the first fragment is missing.
This commit works by adding a new "fragment type" to the kernel flow match
and making it available through OpenFlow as a new NXM field named
NXM_NX_IP_FRAG. Because OpenFlow 1.0 explicitly says that the L4 fields
are always 0 for IP fragments, it adds a new OpenFlow fragment handling
mode that fills in the L4 fields for "first fragments". It also enhances
ovs-ofctl to allow users to configure this new fragment handling mode and
to parse the new field.
Signed-off-by: Ben Pfaff <blp@nicira.com>
Bug #7557.
2011-10-19 21:33:44 -07:00
|
|
|
MFF_IP_FRAG, /* u8 (used for IPv4 or IPv6) */
|
2011-09-12 12:11:50 -07:00
|
|
|
|
|
|
|
MFF_ARP_OP, /* be16 */
|
|
|
|
MFF_ARP_SPA, /* be32 */
|
|
|
|
MFF_ARP_TPA, /* be32 */
|
|
|
|
MFF_ARP_SHA, /* mac */
|
|
|
|
MFF_ARP_THA, /* mac */
|
|
|
|
|
|
|
|
/* L4. */
|
|
|
|
MFF_TCP_SRC, /* be16 (used for IPv4 or IPv6) */
|
|
|
|
MFF_TCP_DST, /* be16 (used for IPv4 or IPv6) */
|
2013-10-28 13:54:40 -07:00
|
|
|
MFF_TCP_FLAGS, /* be16, 12 bits (4 MSB zeroed,
|
|
|
|
* used for IPv4 or IPv6) */
|
2011-09-12 12:11:50 -07:00
|
|
|
|
|
|
|
MFF_UDP_SRC, /* be16 (used for IPv4 or IPv6) */
|
|
|
|
MFF_UDP_DST, /* be16 (used for IPv4 or IPv6) */
|
|
|
|
|
2013-08-22 20:24:45 +12:00
|
|
|
MFF_SCTP_SRC, /* be16 (used for IPv4 or IPv6) */
|
|
|
|
MFF_SCTP_DST, /* be16 (used for IPv4 or IPv6) */
|
|
|
|
|
2011-10-22 13:11:48 -07:00
|
|
|
MFF_ICMPV4_TYPE, /* u8 */
|
|
|
|
MFF_ICMPV4_CODE, /* u8 */
|
|
|
|
|
|
|
|
MFF_ICMPV6_TYPE, /* u8 */
|
|
|
|
MFF_ICMPV6_CODE, /* u8 */
|
2011-09-12 12:11:50 -07:00
|
|
|
|
|
|
|
/* ICMPv6 Neighbor Discovery. */
|
|
|
|
MFF_ND_TARGET, /* ipv6 */
|
|
|
|
MFF_ND_SLL, /* mac */
|
|
|
|
MFF_ND_TLL, /* mac */
|
|
|
|
|
|
|
|
MFF_N_IDS
|
|
|
|
};
|
|
|
|
|
2014-07-26 12:15:26 -07:00
|
|
|
/* A set of mf_field_ids. */
|
|
|
|
struct mf_bitmap {
|
|
|
|
unsigned long bm[BITMAP_N_LONGS(MFF_N_IDS)];
|
|
|
|
};
|
|
|
|
#define MF_BITMAP_INITIALIZER { { [0] = 0 } }
|
|
|
|
|
2012-06-27 07:23:25 -07:00
|
|
|
/* Use this macro as CASE_MFF_REGS: in a switch statement to choose all of the
|
|
|
|
* MFF_REGx cases. */
|
2014-05-15 08:19:11 -07:00
|
|
|
#if FLOW_N_REGS == 8
|
|
|
|
#define CASE_MFF_REGS \
|
2012-06-27 07:23:25 -07:00
|
|
|
case MFF_REG0: case MFF_REG1: case MFF_REG2: case MFF_REG3: \
|
|
|
|
case MFF_REG4: case MFF_REG5: case MFF_REG6: case MFF_REG7
|
|
|
|
#else
|
2014-05-15 08:19:11 -07:00
|
|
|
#error "Need to update CASE_MFF_REGS to match FLOW_N_REGS"
|
2012-06-27 07:23:25 -07:00
|
|
|
#endif
|
|
|
|
|
2011-09-12 12:11:50 -07:00
|
|
|
/* Prerequisites for matching a field.
|
|
|
|
*
|
|
|
|
* A field may only be matched if the correct lower-level protocols are also
|
|
|
|
* matched. For example, the TCP port may be matched only if the Ethernet type
|
|
|
|
* matches ETH_TYPE_IP and the IP protocol matches IPPROTO_TCP. */
|
2013-10-24 13:19:27 -07:00
|
|
|
enum OVS_PACKED_ENUM mf_prereqs {
|
2011-09-12 12:11:50 -07:00
|
|
|
MFP_NONE,
|
|
|
|
|
|
|
|
/* L2 requirements. */
|
|
|
|
MFP_ARP,
|
2012-07-23 11:36:44 +09:00
|
|
|
MFP_VLAN_VID,
|
2011-09-12 12:11:50 -07:00
|
|
|
MFP_IPV4,
|
|
|
|
MFP_IPV6,
|
|
|
|
MFP_IP_ANY,
|
|
|
|
|
2013-01-25 16:22:07 +09:00
|
|
|
/* L2.5 requirements. */
|
|
|
|
MFP_MPLS,
|
|
|
|
|
2011-09-12 12:11:50 -07:00
|
|
|
/* L2+L3 requirements. */
|
|
|
|
MFP_TCP, /* On IPv4 or IPv6. */
|
|
|
|
MFP_UDP, /* On IPv4 or IPv6. */
|
2013-08-22 20:24:45 +12:00
|
|
|
MFP_SCTP, /* On IPv4 or IPv6. */
|
2011-10-22 13:11:48 -07:00
|
|
|
MFP_ICMPV4,
|
2011-09-12 12:11:50 -07:00
|
|
|
MFP_ICMPV6,
|
|
|
|
|
|
|
|
/* L2+L3+L4 requirements. */
|
|
|
|
MFP_ND,
|
|
|
|
MFP_ND_SOLICIT,
|
|
|
|
MFP_ND_ADVERT
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Forms of partial-field masking allowed for a field.
|
|
|
|
*
|
|
|
|
* Every field may be masked as a whole. */
|
2013-10-24 13:19:27 -07:00
|
|
|
enum OVS_PACKED_ENUM mf_maskable {
|
2011-09-12 12:11:50 -07:00
|
|
|
MFM_NONE, /* No sub-field masking. */
|
|
|
|
MFM_FULLY, /* Every bit is individually maskable. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* How to format or parse a field's value. */
|
2013-10-24 13:19:27 -07:00
|
|
|
enum OVS_PACKED_ENUM mf_string {
|
2011-09-12 12:11:50 -07:00
|
|
|
/* Integer formats.
|
|
|
|
*
|
|
|
|
* The particular MFS_* constant sets the output format. On input, either
|
|
|
|
* decimal or hexadecimal (prefixed with 0x) is accepted. */
|
|
|
|
MFS_DECIMAL,
|
|
|
|
MFS_HEXADECIMAL,
|
|
|
|
|
|
|
|
/* Other formats. */
|
|
|
|
MFS_ETHERNET,
|
|
|
|
MFS_IPV4,
|
|
|
|
MFS_IPV6,
|
Implement new fragment handling policy.
Until now, OVS has handled IP fragments more awkwardly than necessary. It
has not been possible to match on L4 headers, even in fragments with offset
0 where they are actually present. This means that there was no way to
implement ACLs that treat, say, different TCP ports differently, on
fragmented traffic; instead, all decisions for fragment forwarding had to
be made on the basis of L2 and L3 headers alone.
This commit improves the situation significantly. It is still not possible
to match on L4 headers in fragments with nonzero offset, because that
information is simply not present in such fragments, but this commit adds
the ability to match on L4 headers for fragments with zero offset. This
means that it becomes possible to implement ACLs that drop such "first
fragments" on the basis of L4 headers. In practice, that effectively
blocks even fragmented traffic on an L4 basis, because the receiving IP
stack cannot reassemble a full packet when the first fragment is missing.
This commit works by adding a new "fragment type" to the kernel flow match
and making it available through OpenFlow as a new NXM field named
NXM_NX_IP_FRAG. Because OpenFlow 1.0 explicitly says that the L4 fields
are always 0 for IP fragments, it adds a new OpenFlow fragment handling
mode that fills in the L4 fields for "first fragments". It also enhances
ovs-ofctl to allow users to configure this new fragment handling mode and
to parse the new field.
Signed-off-by: Ben Pfaff <blp@nicira.com>
Bug #7557.
2011-10-19 21:33:44 -07:00
|
|
|
MFS_OFP_PORT, /* An OpenFlow port number or name. */
|
2013-05-19 15:44:53 +03:00
|
|
|
MFS_OFP_PORT_OXM, /* An OpenFlow port number or name (32-bit). */
|
2012-11-21 18:51:36 -08:00
|
|
|
MFS_FRAG, /* no, yes, first, later, not_later */
|
|
|
|
MFS_TNL_FLAGS, /* FLOW_TNL_F_* flags */
|
2013-12-02 15:14:09 -08:00
|
|
|
MFS_TCP_FLAGS, /* TCP_* flags */
|
2011-09-12 12:11:50 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct mf_field {
|
|
|
|
/* Identification. */
|
|
|
|
enum mf_field_id id; /* MFF_*. */
|
|
|
|
const char *name; /* Name of this field, e.g. "eth_type". */
|
|
|
|
const char *extra_name; /* Alternate name, e.g. "dl_type", or NULL. */
|
|
|
|
|
|
|
|
/* Size.
|
|
|
|
*
|
2011-10-29 20:31:00 -07:00
|
|
|
* Most fields have n_bytes * 8 == n_bits. There are a few exceptions:
|
|
|
|
*
|
|
|
|
* - "dl_vlan" is 2 bytes but only 12 bits.
|
|
|
|
* - "dl_vlan_pcp" is 1 byte but only 3 bits.
|
|
|
|
* - "is_frag" is 1 byte but only 2 bits.
|
2011-11-01 15:57:56 -07:00
|
|
|
* - "ipv6_label" is 4 bytes but only 20 bits.
|
2013-01-25 16:22:07 +09:00
|
|
|
* - "mpls_label" is 4 bytes but only 20 bits.
|
|
|
|
* - "mpls_tc" is 1 byte but only 3 bits.
|
|
|
|
* - "mpls_bos" is 1 byte but only 1 bit.
|
2011-10-29 20:31:00 -07:00
|
|
|
*/
|
2011-09-12 12:11:50 -07:00
|
|
|
unsigned int n_bytes; /* Width of the field in bytes. */
|
|
|
|
unsigned int n_bits; /* Number of significant bits in field. */
|
|
|
|
|
|
|
|
/* Properties. */
|
|
|
|
enum mf_maskable maskable;
|
|
|
|
enum mf_string string;
|
|
|
|
enum mf_prereqs prereqs;
|
2011-10-12 17:04:13 -07:00
|
|
|
bool writable; /* May be written by actions? */
|
|
|
|
|
2012-06-26 10:52:34 -07:00
|
|
|
/* NXM and OXM properties.
|
2011-10-12 17:04:13 -07:00
|
|
|
*
|
2012-06-26 10:52:34 -07:00
|
|
|
* There are the following possibilities for these members for a given
|
|
|
|
* mf_field:
|
|
|
|
*
|
|
|
|
* - Neither NXM nor OXM defines such a field: these members will all be
|
|
|
|
* zero or NULL.
|
|
|
|
*
|
|
|
|
* - NXM and OXM both define such a field: nxm_header and oxm_header will
|
|
|
|
* both be nonzero and different, similarly for nxm_name and oxm_name.
|
2014-05-09 18:18:17 -07:00
|
|
|
* In this case, 'oxm_version' is significant: if it is greater than
|
|
|
|
* OFP12_VERSION, then only that version of OpenFlow introduced this
|
|
|
|
* OXM header, so ovs-vswitchd should send 'nxm_header' instead with
|
|
|
|
* earlier protocol versions to avoid confusing controllers that were
|
|
|
|
* using a previous Open vSwitch extension.
|
2012-06-26 10:52:34 -07:00
|
|
|
*
|
|
|
|
* - Only NXM or only OXM defines such a field: nxm_header and oxm_header
|
|
|
|
* will both have the same value (either an OXM_* or NXM_* value) and
|
|
|
|
* similarly for nxm_name and oxm_name.
|
|
|
|
*
|
|
|
|
* Thus, 'nxm_header' is the appropriate header to use when outputting an
|
|
|
|
* NXM formatted match, since it will be an NXM_* constant when possible
|
|
|
|
* for compatibility with OpenFlow implementations that expect that, with
|
|
|
|
* OXM_* constants used for fields that OXM adds. Conversely, 'oxm_header'
|
2014-05-09 18:18:17 -07:00
|
|
|
* is the header to use when outputting an OXM formatted match to an
|
|
|
|
* OpenFlow connection of version 'oxm_version' or above (and otherwise
|
|
|
|
* 'nxm_header'). */
|
2012-06-26 10:52:34 -07:00
|
|
|
uint32_t nxm_header; /* An NXM_* (or OXM_*) constant. */
|
|
|
|
const char *nxm_name; /* The nxm_header constant's name. */
|
|
|
|
uint32_t oxm_header; /* An OXM_* (or NXM_*) constant. */
|
2013-08-20 18:41:45 -07:00
|
|
|
const char *oxm_name; /* The oxm_header constant's name */
|
2014-05-09 18:18:17 -07:00
|
|
|
enum ofp_version oxm_version; /* OpenFlow version that added oxm_header. */
|
2013-08-20 18:41:45 -07:00
|
|
|
|
|
|
|
/* Usable protocols.
|
2014-07-26 12:15:26 -07:00
|
|
|
*
|
2013-08-20 18:41:45 -07:00
|
|
|
* NXM and OXM are extensible, allowing later extensions to be sent in
|
|
|
|
* earlier protocol versions, so this does not necessarily correspond to
|
|
|
|
* the OpenFlow protocol version the field was introduced in.
|
|
|
|
* Also, some field types are tranparently mapped to each other via the
|
|
|
|
* struct flow (like vlan and dscp/tos fields), so each variant supports
|
2014-07-26 12:15:26 -07:00
|
|
|
* all protocols.
|
|
|
|
*
|
|
|
|
* These are combinations of OFPUTIL_P_*. (They are not declared as type
|
|
|
|
* enum ofputil_protocol because that would give meta-flow.h and ofp-util.h
|
|
|
|
* a circular dependency.) */
|
|
|
|
uint32_t usable_protocols; /* If fully/CIDR masked. */
|
|
|
|
uint32_t usable_protocols_bitwise; /* If partially/non-CIDR masked. */
|
2013-12-11 11:07:01 -08:00
|
|
|
|
|
|
|
int flow_be32ofs; /* Field's be32 offset in "struct flow", if prefix tree
|
|
|
|
* lookup is supported for the field, or -1. */
|
2011-09-12 12:11:50 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/* The representation of a field's value. */
|
|
|
|
union mf_value {
|
|
|
|
struct in6_addr ipv6;
|
2013-10-15 12:40:37 -07:00
|
|
|
uint8_t mac[ETH_ADDR_LEN];
|
|
|
|
ovs_be64 be64;
|
|
|
|
ovs_be32 be32;
|
|
|
|
ovs_be16 be16;
|
|
|
|
uint8_t u8;
|
2011-09-12 12:11:50 -07:00
|
|
|
};
|
2012-04-11 14:45:34 -07:00
|
|
|
BUILD_ASSERT_DECL(sizeof(union mf_value) == 16);
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2013-10-15 12:40:37 -07:00
|
|
|
#define MF_EXACT_MASK_INITIALIZER { IN6ADDR_EXACT_INIT }
|
|
|
|
|
2011-12-28 12:42:14 -08:00
|
|
|
/* Part of a field. */
|
|
|
|
struct mf_subfield {
|
|
|
|
const struct mf_field *field;
|
|
|
|
unsigned int ofs; /* Bit offset. */
|
|
|
|
unsigned int n_bits; /* Number of bits. */
|
|
|
|
};
|
|
|
|
|
2012-04-11 14:45:34 -07:00
|
|
|
/* Data for some part of an mf_field.
|
|
|
|
*
|
|
|
|
* The data is stored "right-justified". For example, if "union mf_subvalue
|
|
|
|
* value" contains NXM_OF_VLAN_TCI[0..11], then one could access the
|
|
|
|
* corresponding data in value.be16[7] as the bits in the mask htons(0xfff). */
|
|
|
|
union mf_subvalue {
|
|
|
|
uint8_t u8[16];
|
|
|
|
ovs_be16 be16[8];
|
|
|
|
ovs_be32 be32[4];
|
|
|
|
ovs_be64 be64[2];
|
|
|
|
};
|
|
|
|
BUILD_ASSERT_DECL(sizeof(union mf_value) == sizeof (union mf_subvalue));
|
|
|
|
|
2011-09-12 12:11:50 -07:00
|
|
|
/* Finding mf_fields. */
|
|
|
|
const struct mf_field *mf_from_name(const char *name);
|
2011-10-12 17:04:13 -07:00
|
|
|
const struct mf_field *mf_from_nxm_header(uint32_t nxm_header);
|
|
|
|
const struct mf_field *mf_from_nxm_name(const char *nxm_name);
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2013-10-24 13:19:27 -07:00
|
|
|
static inline const struct mf_field *
|
|
|
|
mf_from_id(enum mf_field_id id)
|
|
|
|
{
|
|
|
|
extern const struct mf_field mf_fields[MFF_N_IDS];
|
|
|
|
ovs_assert((unsigned int) id < MFF_N_IDS);
|
|
|
|
return &mf_fields[id];
|
|
|
|
}
|
|
|
|
|
2014-05-09 18:18:17 -07:00
|
|
|
/* NXM and OXM protocol headers. */
|
|
|
|
uint32_t mf_oxm_header(enum mf_field_id, enum ofp_version oxm_version);
|
|
|
|
|
2011-09-12 12:11:50 -07:00
|
|
|
/* Inspecting wildcarded bits. */
|
|
|
|
bool mf_is_all_wild(const struct mf_field *, const struct flow_wildcards *);
|
|
|
|
|
|
|
|
bool mf_is_mask_valid(const struct mf_field *, const union mf_value *mask);
|
|
|
|
void mf_get_mask(const struct mf_field *, const struct flow_wildcards *,
|
|
|
|
union mf_value *mask);
|
|
|
|
|
|
|
|
/* Prerequisites. */
|
|
|
|
bool mf_are_prereqs_ok(const struct mf_field *, const struct flow *);
|
2013-10-15 12:40:37 -07:00
|
|
|
void mf_mask_field_and_prereqs(const struct mf_field *, struct flow *mask);
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2014-05-02 17:41:32 +09:00
|
|
|
static inline bool
|
|
|
|
mf_is_l3_or_higher(const struct mf_field *mf)
|
|
|
|
{
|
|
|
|
return mf->id >= MFF_IPV4_SRC;
|
|
|
|
}
|
|
|
|
|
2011-09-12 12:11:50 -07:00
|
|
|
/* Field values. */
|
|
|
|
bool mf_is_value_valid(const struct mf_field *, const union mf_value *value);
|
|
|
|
|
|
|
|
void mf_get_value(const struct mf_field *, const struct flow *,
|
|
|
|
union mf_value *value);
|
|
|
|
void mf_set_value(const struct mf_field *, const union mf_value *value,
|
2012-08-07 15:28:18 -07:00
|
|
|
struct match *);
|
2011-10-12 17:04:13 -07:00
|
|
|
void mf_set_flow_value(const struct mf_field *, const union mf_value *value,
|
|
|
|
struct flow *);
|
2012-05-04 09:52:37 -07:00
|
|
|
bool mf_is_zero(const struct mf_field *, const struct flow *);
|
2013-10-13 12:44:20 -07:00
|
|
|
void mf_mask_field(const struct mf_field *, struct flow *);
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2012-08-07 15:28:18 -07:00
|
|
|
void mf_get(const struct mf_field *, const struct match *,
|
2011-09-12 12:11:50 -07:00
|
|
|
union mf_value *value, union mf_value *mask);
|
2013-08-20 18:41:45 -07:00
|
|
|
|
|
|
|
/* Returns the set of usable protocols. */
|
|
|
|
enum ofputil_protocol mf_set(const struct mf_field *,
|
|
|
|
const union mf_value *value,
|
|
|
|
const union mf_value *mask,
|
|
|
|
struct match *);
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2012-08-07 15:28:18 -07:00
|
|
|
void mf_set_wild(const struct mf_field *, struct match *);
|
2011-09-12 12:11:50 -07:00
|
|
|
|
2011-12-28 12:42:14 -08:00
|
|
|
/* Subfields. */
|
2012-09-12 17:44:28 +09:00
|
|
|
void mf_write_subfield_flow(const struct mf_subfield *,
|
|
|
|
const union mf_subvalue *, struct flow *);
|
2012-04-11 14:45:34 -07:00
|
|
|
void mf_write_subfield(const struct mf_subfield *, const union mf_subvalue *,
|
2012-08-07 15:28:18 -07:00
|
|
|
struct match *);
|
2012-04-11 14:45:34 -07:00
|
|
|
|
|
|
|
void mf_read_subfield(const struct mf_subfield *, const struct flow *,
|
|
|
|
union mf_subvalue *);
|
2011-12-28 12:42:14 -08:00
|
|
|
uint64_t mf_get_subfield(const struct mf_subfield *, const struct flow *);
|
|
|
|
|
2012-04-11 14:45:34 -07:00
|
|
|
|
2011-12-28 12:42:14 -08:00
|
|
|
void mf_format_subfield(const struct mf_subfield *, struct ds *);
|
2013-07-08 10:15:00 -07:00
|
|
|
char *mf_parse_subfield__(struct mf_subfield *sf, const char **s)
|
|
|
|
WARN_UNUSED_RESULT;
|
|
|
|
char *mf_parse_subfield(struct mf_subfield *, const char *s)
|
|
|
|
WARN_UNUSED_RESULT;
|
2011-12-28 12:42:14 -08:00
|
|
|
|
|
|
|
enum ofperr mf_check_src(const struct mf_subfield *, const struct flow *);
|
|
|
|
enum ofperr mf_check_dst(const struct mf_subfield *, const struct flow *);
|
|
|
|
|
2011-09-12 12:11:50 -07:00
|
|
|
/* Parsing and formatting. */
|
|
|
|
char *mf_parse(const struct mf_field *, const char *,
|
|
|
|
union mf_value *value, union mf_value *mask);
|
|
|
|
char *mf_parse_value(const struct mf_field *, const char *, union mf_value *);
|
|
|
|
void mf_format(const struct mf_field *,
|
|
|
|
const union mf_value *value, const union mf_value *mask,
|
|
|
|
struct ds *);
|
2012-09-12 17:44:28 +09:00
|
|
|
void mf_format_subvalue(const union mf_subvalue *subvalue, struct ds *s);
|
2011-09-12 12:11:50 -07:00
|
|
|
|
|
|
|
#endif /* meta-flow.h */
|