2 * Copyright (c) 2011, 2012 Nicira, Inc.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include "meta-flow.h"
24 #include <netinet/icmp6.h>
25 #include <netinet/ip6.h>
27 #include "classifier.h"
28 #include "dynamic-string.h"
29 #include "ofp-errors.h"
34 #include "socket-util.h"
35 #include "unaligned.h"
38 VLOG_DEFINE_THIS_MODULE(meta_flow);
40 #define MF_FIELD_SIZES(MEMBER) \
41 sizeof ((union mf_value *)0)->MEMBER, \
42 8 * sizeof ((union mf_value *)0)->MEMBER
44 static const struct mf_field mf_fields[MFF_N_IDS] = {
50 MFF_TUN_ID, "tun_id", NULL,
56 NXM_NX_TUN_ID, "NXM_NX_TUN_ID",
57 NXM_NX_TUN_ID, "NXM_NX_TUN_ID",
59 MFF_METADATA, "metadata", NULL,
65 OXM_OF_METADATA, "OXM_OF_METADATA",
66 OXM_OF_METADATA, "OXM_OF_METADATA",
68 MFF_IN_PORT, "in_port", NULL,
70 MFM_NONE, FWW_IN_PORT,
74 NXM_OF_IN_PORT, "NXM_OF_IN_PORT",
75 OXM_OF_IN_PORT, "OXM_OF_IN_PORT",
78 #define REGISTER(IDX) \
80 MFF_REG##IDX, "reg" #IDX, NULL, \
81 MF_FIELD_SIZES(be32), \
86 NXM_NX_REG(IDX), "NXM_NX_REG" #IDX, \
87 NXM_NX_REG(IDX), "NXM_NX_REG" #IDX, \
122 MFF_ETH_SRC, "eth_src", "dl_src",
128 NXM_OF_ETH_SRC, "NXM_OF_ETH_SRC",
129 OXM_OF_ETH_SRC, "OXM_OF_ETH_SRC",
131 MFF_ETH_DST, "eth_dst", "dl_dst",
137 NXM_OF_ETH_DST, "NXM_OF_ETH_DST",
138 OXM_OF_ETH_DST, "OXM_OF_ETH_DST",
140 MFF_ETH_TYPE, "eth_type", "dl_type",
141 MF_FIELD_SIZES(be16),
142 MFM_NONE, FWW_DL_TYPE,
146 NXM_OF_ETH_TYPE, "NXM_OF_ETH_TYPE",
147 OXM_OF_ETH_TYPE, "OXM_OF_ETH_TYPE",
151 MFF_VLAN_TCI, "vlan_tci", NULL,
152 MF_FIELD_SIZES(be16),
157 NXM_OF_VLAN_TCI, "NXM_OF_VLAN_TCI",
158 NXM_OF_VLAN_TCI, "NXM_OF_VLAN_TCI",
160 MFF_DL_VLAN, "dl_vlan", NULL,
161 sizeof(ovs_be16), 12,
169 MFF_VLAN_VID, "vlan_vid", NULL,
170 sizeof(ovs_be16), 12,
175 OXM_OF_VLAN_VID, "OXM_OF_VLAN_VID",
176 OXM_OF_VLAN_VID, "OXM_OF_VLAN_VID",
178 MFF_DL_VLAN_PCP, "dl_vlan_pcp", NULL,
187 MFF_VLAN_PCP, "vlan_pcp", NULL,
193 OXM_OF_VLAN_PCP, "OXM_OF_VLAN_PCP",
194 OXM_OF_VLAN_PCP, "OXM_OF_VLAN_PCP",
202 MFF_IPV4_SRC, "ip_src", "nw_src",
203 MF_FIELD_SIZES(be32),
208 NXM_OF_IP_SRC, "NXM_OF_IP_SRC",
209 OXM_OF_IPV4_SRC, "OXM_OF_IPV4_SRC",
211 MFF_IPV4_DST, "ip_dst", "nw_dst",
212 MF_FIELD_SIZES(be32),
217 NXM_OF_IP_DST, "NXM_OF_IP_DST",
218 OXM_OF_IPV4_DST, "OXM_OF_IPV4_DST",
222 MFF_IPV6_SRC, "ipv6_src", NULL,
223 MF_FIELD_SIZES(ipv6),
228 NXM_NX_IPV6_SRC, "NXM_NX_IPV6_SRC",
229 OXM_OF_IPV6_SRC, "OXM_OF_IPV6_SRC",
231 MFF_IPV6_DST, "ipv6_dst", NULL,
232 MF_FIELD_SIZES(ipv6),
237 NXM_NX_IPV6_DST, "NXM_NX_IPV6_DST",
238 OXM_OF_IPV6_DST, "OXM_OF_IPV6_DST",
241 MFF_IPV6_LABEL, "ipv6_label", NULL,
247 NXM_NX_IPV6_LABEL, "NXM_NX_IPV6_LABEL",
248 OXM_OF_IPV6_FLABEL, "OXM_OF_IPV6_FLABEL",
252 MFF_IP_PROTO, "nw_proto", NULL,
254 MFM_NONE, FWW_NW_PROTO,
258 NXM_OF_IP_PROTO, "NXM_OF_IP_PROTO",
259 OXM_OF_IP_PROTO, "OXM_OF_IP_PROTO",
261 MFF_IP_DSCP, "nw_tos", NULL,
263 MFM_NONE, FWW_NW_DSCP,
267 NXM_OF_IP_TOS, "NXM_OF_IP_TOS",
268 OXM_OF_IP_DSCP, "OXM_OF_IP_DSCP",
270 MFF_IP_ECN, "nw_ecn", NULL,
272 MFM_NONE, FWW_NW_ECN,
276 NXM_NX_IP_ECN, "NXM_NX_IP_ECN",
277 OXM_OF_IP_ECN, "OXM_OF_IP_ECN",
279 MFF_IP_TTL, "nw_ttl", NULL,
281 MFM_NONE, FWW_NW_TTL,
285 NXM_NX_IP_TTL, "NXM_NX_IP_TTL",
286 NXM_NX_IP_TTL, "NXM_NX_IP_TTL",
288 MFF_IP_FRAG, "ip_frag", NULL,
294 NXM_NX_IP_FRAG, "NXM_NX_IP_FRAG",
295 NXM_NX_IP_FRAG, "NXM_NX_IP_FRAG",
299 MFF_ARP_OP, "arp_op", NULL,
300 MF_FIELD_SIZES(be16),
301 MFM_NONE, FWW_NW_PROTO,
305 NXM_OF_ARP_OP, "NXM_OF_ARP_OP",
306 OXM_OF_ARP_OP, "OXM_OF_ARP_OP",
308 MFF_ARP_SPA, "arp_spa", NULL,
309 MF_FIELD_SIZES(be32),
314 NXM_OF_ARP_SPA, "NXM_OF_ARP_SPA",
315 OXM_OF_ARP_SPA, "OXM_OF_ARP_SPA",
317 MFF_ARP_TPA, "arp_tpa", NULL,
318 MF_FIELD_SIZES(be32),
323 NXM_OF_ARP_TPA, "NXM_OF_ARP_TPA",
324 OXM_OF_ARP_TPA, "OXM_OF_ARP_TPA",
326 MFF_ARP_SHA, "arp_sha", NULL,
332 NXM_NX_ARP_SHA, "NXM_NX_ARP_SHA",
333 OXM_OF_ARP_SHA, "OXM_OF_ARP_SHA",
335 MFF_ARP_THA, "arp_tha", NULL,
341 NXM_NX_ARP_THA, "NXM_NX_ARP_THA",
342 OXM_OF_ARP_THA, "OXM_OF_ARP_THA",
350 MFF_TCP_SRC, "tcp_src", "tp_src",
351 MF_FIELD_SIZES(be16),
356 NXM_OF_TCP_SRC, "NXM_OF_TCP_SRC",
357 OXM_OF_TCP_SRC, "OXM_OF_TCP_SRC",
359 MFF_TCP_DST, "tcp_dst", "tp_dst",
360 MF_FIELD_SIZES(be16),
365 NXM_OF_TCP_DST, "NXM_OF_TCP_DST",
366 OXM_OF_TCP_DST, "OXM_OF_TCP_DST",
370 MFF_UDP_SRC, "udp_src", NULL,
371 MF_FIELD_SIZES(be16),
376 NXM_OF_UDP_SRC, "NXM_OF_UDP_SRC",
377 OXM_OF_UDP_SRC, "OXM_OF_UDP_SRC",
379 MFF_UDP_DST, "udp_dst", NULL,
380 MF_FIELD_SIZES(be16),
385 NXM_OF_UDP_DST, "NXM_OF_UDP_DST",
386 OXM_OF_UDP_DST, "OXM_OF_UDP_DST",
390 MFF_ICMPV4_TYPE, "icmp_type", NULL,
396 NXM_OF_ICMP_TYPE, "NXM_OF_ICMP_TYPE",
397 OXM_OF_ICMPV4_TYPE, "OXM_OF_ICMPV4_TYPE",
399 MFF_ICMPV4_CODE, "icmp_code", NULL,
405 NXM_OF_ICMP_CODE, "NXM_OF_ICMP_CODE",
406 OXM_OF_ICMPV4_CODE, "OXM_OF_ICMPV4_CODE",
410 MFF_ICMPV6_TYPE, "icmpv6_type", NULL,
416 NXM_NX_ICMPV6_TYPE, "NXM_NX_ICMPV6_TYPE",
417 OXM_OF_ICMPV6_TYPE, "OXM_OF_ICMPV6_TYPE",
419 MFF_ICMPV6_CODE, "icmpv6_code", NULL,
425 NXM_NX_ICMPV6_CODE, "NXM_NX_ICMPV6_CODE",
426 OXM_OF_ICMPV6_CODE, "OXM_OF_ICMPV6_CODE",
434 MFF_ND_TARGET, "nd_target", NULL,
435 MF_FIELD_SIZES(ipv6),
440 NXM_NX_ND_TARGET, "NXM_NX_ND_TARGET",
441 OXM_OF_IPV6_ND_TARGET, "OXM_OF_IPV6_ND_TARGET",
443 MFF_ND_SLL, "nd_sll", NULL,
449 NXM_NX_ND_SLL, "NXM_NX_ND_SLL",
450 OXM_OF_IPV6_ND_SLL, "OXM_OF_IPV6_ND_SLL",
452 MFF_ND_TLL, "nd_tll", NULL,
458 NXM_NX_ND_TLL, "NXM_NX_ND_TLL",
459 OXM_OF_IPV6_ND_TLL, "OXM_OF_IPV6_ND_TLL",
463 /* Maps an NXM or OXM header value to an mf_field. */
465 struct hmap_node hmap_node; /* In 'all_fields' hmap. */
466 uint32_t header; /* NXM or OXM header value. */
467 const struct mf_field *mf;
470 /* Contains 'struct nxm_field's. */
471 static struct hmap all_fields = HMAP_INITIALIZER(&all_fields);
473 /* Rate limit for parse errors. These always indicate a bug in an OpenFlow
474 * controller and so there's not much point in showing a lot of them. */
475 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
477 const struct mf_field *mf_from_nxm_header__(uint32_t header);
479 /* Returns the field with the given 'id'. */
480 const struct mf_field *
481 mf_from_id(enum mf_field_id id)
483 assert((unsigned int) id < MFF_N_IDS);
484 return &mf_fields[id];
487 /* Returns the field with the given 'name', or a null pointer if no field has
489 const struct mf_field *
490 mf_from_name(const char *name)
492 static struct shash mf_by_name = SHASH_INITIALIZER(&mf_by_name);
494 if (shash_is_empty(&mf_by_name)) {
495 const struct mf_field *mf;
497 for (mf = mf_fields; mf < &mf_fields[MFF_N_IDS]; mf++) {
498 shash_add_once(&mf_by_name, mf->name, mf);
499 if (mf->extra_name) {
500 shash_add_once(&mf_by_name, mf->extra_name, mf);
505 return shash_find_data(&mf_by_name, name);
509 add_nxm_field(uint32_t header, const struct mf_field *mf)
513 f = xmalloc(sizeof *f);
514 hmap_insert(&all_fields, &f->hmap_node, hash_int(header, 0));
520 nxm_init_add_field(const struct mf_field *mf, uint32_t header)
523 assert(!mf_from_nxm_header__(header));
524 add_nxm_field(header, mf);
525 if (mf->maskable != MFM_NONE) {
526 add_nxm_field(NXM_MAKE_WILD_HEADER(header), mf);
534 const struct mf_field *mf;
536 for (mf = mf_fields; mf < &mf_fields[MFF_N_IDS]; mf++) {
537 nxm_init_add_field(mf, mf->nxm_header);
538 if (mf->oxm_header != mf->nxm_header) {
539 nxm_init_add_field(mf, mf->oxm_header);
544 const struct mf_field *
545 mf_from_nxm_header(uint32_t header)
547 if (hmap_is_empty(&all_fields)) {
550 return mf_from_nxm_header__(header);
553 const struct mf_field *
554 mf_from_nxm_header__(uint32_t header)
556 const struct nxm_field *f;
558 HMAP_FOR_EACH_IN_BUCKET (f, hmap_node, hash_int(header, 0), &all_fields) {
559 if (f->header == header) {
567 /* Returns true if 'wc' wildcards all the bits in field 'mf', false if 'wc'
568 * specifies at least one bit in the field.
570 * The caller is responsible for ensuring that 'wc' corresponds to a flow that
571 * meets 'mf''s prerequisites. */
573 mf_is_all_wild(const struct mf_field *mf, const struct flow_wildcards *wc)
583 assert(mf->fww_bit != 0);
584 return (wc->wildcards & mf->fww_bit) != 0;
587 return !wc->tun_id_mask;
589 return !wc->metadata_mask;
592 return !wc->reg_masks[mf->id - MFF_REG0];
595 return eth_addr_is_zero(wc->dl_src_mask);
597 return eth_addr_is_zero(wc->dl_dst_mask);
601 return eth_addr_is_zero(wc->arp_sha_mask);
605 return eth_addr_is_zero(wc->arp_tha_mask);
608 return !wc->vlan_tci_mask;
610 return !(wc->vlan_tci_mask & htons(VLAN_VID_MASK));
612 return !(wc->vlan_tci_mask & htons(VLAN_VID_MASK | VLAN_CFI));
613 case MFF_DL_VLAN_PCP:
615 return !(wc->vlan_tci_mask & htons(VLAN_PCP_MASK));
618 return !wc->nw_src_mask;
620 return !wc->nw_dst_mask;
623 return ipv6_mask_is_any(&wc->ipv6_src_mask);
625 return ipv6_mask_is_any(&wc->ipv6_dst_mask);
628 return !wc->ipv6_label_mask;
631 return ipv6_mask_is_any(&wc->nd_target_mask);
634 return !(wc->nw_frag_mask & FLOW_NW_FRAG_MASK);
637 return !wc->nw_src_mask;
639 return !wc->nw_dst_mask;
643 case MFF_ICMPV4_TYPE:
644 case MFF_ICMPV6_TYPE:
645 return !wc->tp_src_mask;
648 case MFF_ICMPV4_CODE:
649 case MFF_ICMPV6_CODE:
650 return !wc->tp_dst_mask;
658 /* Initializes 'mask' with the wildcard bit pattern for field 'mf' within 'wc'.
659 * Each bit in 'mask' will be set to 1 if the bit is significant for matching
660 * purposes, or to 0 if it is wildcarded.
662 * The caller is responsible for ensuring that 'wc' corresponds to a flow that
663 * meets 'mf''s prerequisites. */
665 mf_get_mask(const struct mf_field *mf, const struct flow_wildcards *wc,
666 union mf_value *mask)
676 assert(mf->fww_bit != 0);
677 memset(mask, wc->wildcards & mf->fww_bit ? 0x00 : 0xff, mf->n_bytes);
681 mask->be64 = wc->tun_id_mask;
684 mask->be64 = wc->metadata_mask;
688 mask->be32 = htonl(wc->reg_masks[mf->id - MFF_REG0]);
692 memcpy(mask->mac, wc->dl_dst_mask, ETH_ADDR_LEN);
696 memcpy(mask->mac, wc->dl_src_mask, ETH_ADDR_LEN);
700 mask->be16 = wc->vlan_tci_mask;
703 mask->be16 = wc->vlan_tci_mask & htons(VLAN_VID_MASK);
706 mask->be16 = wc->vlan_tci_mask & htons(VLAN_VID_MASK | VLAN_CFI);
708 case MFF_DL_VLAN_PCP:
710 mask->u8 = vlan_tci_to_pcp(wc->vlan_tci_mask);
714 mask->be32 = wc->nw_src_mask;
717 mask->be32 = wc->nw_dst_mask;
721 mask->ipv6 = wc->ipv6_src_mask;
724 mask->ipv6 = wc->ipv6_dst_mask;
727 mask->be32 = wc->ipv6_label_mask;
731 mask->ipv6 = wc->nd_target_mask;
735 mask->u8 = wc->nw_frag_mask & FLOW_NW_FRAG_MASK;
739 mask->be32 = wc->nw_src_mask;
742 mask->be32 = wc->nw_dst_mask;
746 memcpy(mask->mac, wc->arp_sha_mask, ETH_ADDR_LEN);
750 memcpy(mask->mac, wc->arp_tha_mask, ETH_ADDR_LEN);
755 mask->be16 = wc->tp_src_mask;
759 mask->be16 = wc->tp_dst_mask;
762 case MFF_ICMPV4_TYPE:
763 case MFF_ICMPV6_TYPE:
764 mask->u8 = ntohs(wc->tp_src_mask);
766 case MFF_ICMPV4_CODE:
767 case MFF_ICMPV6_CODE:
768 mask->u8 = ntohs(wc->tp_dst_mask);
777 /* Tests whether 'mask' is a valid wildcard bit pattern for 'mf'. Returns true
778 * if the mask is valid, false otherwise. */
780 mf_is_mask_valid(const struct mf_field *mf, const union mf_value *mask)
782 switch (mf->maskable) {
784 return (is_all_zeros((const uint8_t *) mask, mf->n_bytes) ||
785 is_all_ones((const uint8_t *) mask, mf->n_bytes));
795 is_ip_any(const struct flow *flow)
797 return (flow->dl_type == htons(ETH_TYPE_IP) ||
798 flow->dl_type == htons(ETH_TYPE_IPV6));
802 is_icmpv4(const struct flow *flow)
804 return (flow->dl_type == htons(ETH_TYPE_IP)
805 && flow->nw_proto == IPPROTO_ICMP);
809 is_icmpv6(const struct flow *flow)
811 return (flow->dl_type == htons(ETH_TYPE_IPV6)
812 && flow->nw_proto == IPPROTO_ICMPV6);
815 /* Returns true if 'flow' meets the prerequisites for 'mf', false otherwise. */
817 mf_are_prereqs_ok(const struct mf_field *mf, const struct flow *flow)
819 switch (mf->prereqs) {
824 return flow->dl_type == htons(ETH_TYPE_ARP);
826 return flow->dl_type == htons(ETH_TYPE_IP);
828 return flow->dl_type == htons(ETH_TYPE_IPV6);
830 return (flow->vlan_tci & htons(VLAN_CFI)) != 0;
832 return is_ip_any(flow);
835 return is_ip_any(flow) && flow->nw_proto == IPPROTO_TCP;
837 return is_ip_any(flow) && flow->nw_proto == IPPROTO_UDP;
839 return is_icmpv4(flow);
841 return is_icmpv6(flow);
844 return (is_icmpv6(flow)
845 && flow->tp_dst == htons(0)
846 && (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT) ||
847 flow->tp_src == htons(ND_NEIGHBOR_ADVERT)));
849 return (is_icmpv6(flow)
850 && flow->tp_dst == htons(0)
851 && (flow->tp_src == htons(ND_NEIGHBOR_SOLICIT)));
853 return (is_icmpv6(flow)
854 && flow->tp_dst == htons(0)
855 && (flow->tp_src == htons(ND_NEIGHBOR_ADVERT)));
861 /* Returns true if 'value' may be a valid value *as part of a masked match*,
864 * A value is not rejected just because it is not valid for the field in
865 * question, but only if it doesn't make sense to test the bits in question at
866 * all. For example, the MFF_VLAN_TCI field will never have a nonzero value
867 * without the VLAN_CFI bit being set, but we can't reject those values because
868 * it is still legitimate to test just for those bits (see the documentation
869 * for NXM_OF_VLAN_TCI in nicira-ext.h). On the other hand, there is never a
870 * reason to set the low bit of MFF_IP_DSCP to 1, so we reject that. */
872 mf_is_value_valid(const struct mf_field *mf, const union mf_value *value)
897 case MFF_ICMPV4_TYPE:
898 case MFF_ICMPV4_CODE:
899 case MFF_ICMPV6_TYPE:
900 case MFF_ICMPV6_CODE:
907 return !(value->u8 & ~IP_DSCP_MASK);
909 return !(value->u8 & ~IP_ECN_MASK);
911 return !(value->u8 & ~FLOW_NW_FRAG_MASK);
914 return !(value->be16 & htons(0xff00));
917 return !(value->be16 & htons(VLAN_CFI | VLAN_PCP_MASK));
919 return !(value->be16 & htons(VLAN_PCP_MASK));
921 case MFF_DL_VLAN_PCP:
923 return !(value->u8 & ~(VLAN_PCP_MASK >> VLAN_PCP_SHIFT));
926 return !(value->be32 & ~htonl(IPV6_LABEL_MASK));
934 /* Copies the value of field 'mf' from 'flow' into 'value'. The caller is
935 * responsible for ensuring that 'flow' meets 'mf''s prerequisites. */
937 mf_get_value(const struct mf_field *mf, const struct flow *flow,
938 union mf_value *value)
942 value->be64 = flow->tun_id;
945 value->be64 = flow->metadata;
949 value->be16 = htons(flow->in_port);
953 value->be32 = htonl(flow->regs[mf->id - MFF_REG0]);
957 memcpy(value->mac, flow->dl_src, ETH_ADDR_LEN);
961 memcpy(value->mac, flow->dl_dst, ETH_ADDR_LEN);
965 value->be16 = flow->dl_type;
969 value->be16 = flow->vlan_tci;
973 value->be16 = flow->vlan_tci & htons(VLAN_VID_MASK);
976 value->be16 = flow->vlan_tci & htons(VLAN_VID_MASK | VLAN_CFI);
979 case MFF_DL_VLAN_PCP:
981 value->u8 = vlan_tci_to_pcp(flow->vlan_tci);
985 value->be32 = flow->nw_src;
989 value->be32 = flow->nw_dst;
993 value->ipv6 = flow->ipv6_src;
997 value->ipv6 = flow->ipv6_dst;
1000 case MFF_IPV6_LABEL:
1001 value->be32 = flow->ipv6_label;
1005 value->u8 = flow->nw_proto;
1009 value->u8 = flow->nw_tos & IP_DSCP_MASK;
1013 value->u8 = flow->nw_tos & IP_ECN_MASK;
1017 value->u8 = flow->nw_ttl;
1021 value->u8 = flow->nw_frag;
1025 value->be16 = htons(flow->nw_proto);
1029 value->be32 = flow->nw_src;
1033 value->be32 = flow->nw_dst;
1038 memcpy(value->mac, flow->arp_sha, ETH_ADDR_LEN);
1043 memcpy(value->mac, flow->arp_tha, ETH_ADDR_LEN);
1048 value->be16 = flow->tp_src;
1053 value->be16 = flow->tp_dst;
1056 case MFF_ICMPV4_TYPE:
1057 case MFF_ICMPV6_TYPE:
1058 value->u8 = ntohs(flow->tp_src);
1061 case MFF_ICMPV4_CODE:
1062 case MFF_ICMPV6_CODE:
1063 value->u8 = ntohs(flow->tp_dst);
1067 value->ipv6 = flow->nd_target;
1076 /* Makes 'rule' match field 'mf' exactly, with the value matched taken from
1077 * 'value'. The caller is responsible for ensuring that 'rule' meets 'mf''s
1080 mf_set_value(const struct mf_field *mf,
1081 const union mf_value *value, struct cls_rule *rule)
1085 cls_rule_set_tun_id(rule, value->be64);
1088 cls_rule_set_metadata(rule, value->be64);
1092 cls_rule_set_in_port(rule, ntohs(value->be16));
1096 cls_rule_set_reg(rule, mf->id - MFF_REG0, ntohl(value->be32));
1100 cls_rule_set_dl_src(rule, value->mac);
1104 cls_rule_set_dl_dst(rule, value->mac);
1108 cls_rule_set_dl_type(rule, value->be16);
1112 cls_rule_set_dl_tci(rule, value->be16);
1116 cls_rule_set_dl_vlan(rule, value->be16);
1119 cls_rule_set_vlan_vid(rule, value->be16);
1122 case MFF_DL_VLAN_PCP:
1124 cls_rule_set_dl_vlan_pcp(rule, value->u8);
1128 cls_rule_set_nw_src(rule, value->be32);
1132 cls_rule_set_nw_dst(rule, value->be32);
1136 cls_rule_set_ipv6_src(rule, &value->ipv6);
1140 cls_rule_set_ipv6_dst(rule, &value->ipv6);
1143 case MFF_IPV6_LABEL:
1144 cls_rule_set_ipv6_label(rule, value->be32);
1148 cls_rule_set_nw_proto(rule, value->u8);
1152 cls_rule_set_nw_dscp(rule, value->u8);
1156 cls_rule_set_nw_ecn(rule, value->u8);
1160 cls_rule_set_nw_ttl(rule, value->u8);
1164 cls_rule_set_nw_frag(rule, value->u8);
1168 cls_rule_set_nw_proto(rule, ntohs(value->be16));
1172 cls_rule_set_nw_src(rule, value->be32);
1176 cls_rule_set_nw_dst(rule, value->be32);
1181 cls_rule_set_arp_sha(rule, value->mac);
1186 cls_rule_set_arp_tha(rule, value->mac);
1191 cls_rule_set_tp_src(rule, value->be16);
1196 cls_rule_set_tp_dst(rule, value->be16);
1199 case MFF_ICMPV4_TYPE:
1200 case MFF_ICMPV6_TYPE:
1201 cls_rule_set_icmp_type(rule, value->u8);
1204 case MFF_ICMPV4_CODE:
1205 case MFF_ICMPV6_CODE:
1206 cls_rule_set_icmp_code(rule, value->u8);
1210 cls_rule_set_nd_target(rule, &value->ipv6);
1219 /* Makes 'rule' match field 'mf' exactly, with the value matched taken from
1220 * 'value'. The caller is responsible for ensuring that 'rule' meets 'mf''s
1223 mf_set_flow_value(const struct mf_field *mf,
1224 const union mf_value *value, struct flow *flow)
1228 flow->tun_id = value->be64;
1231 flow->metadata = value->be64;
1235 flow->in_port = ntohs(value->be16);
1239 flow->regs[mf->id - MFF_REG0] = ntohl(value->be32);
1243 memcpy(flow->dl_src, value->mac, ETH_ADDR_LEN);
1247 memcpy(flow->dl_dst, value->mac, ETH_ADDR_LEN);
1251 flow->dl_type = value->be16;
1255 flow->vlan_tci = value->be16;
1259 flow_set_dl_vlan(flow, value->be16);
1262 flow_set_vlan_vid(flow, value->be16);
1265 case MFF_DL_VLAN_PCP:
1267 flow_set_vlan_pcp(flow, value->u8);
1271 flow->nw_src = value->be32;
1275 flow->nw_dst = value->be32;
1279 flow->ipv6_src = value->ipv6;
1283 flow->ipv6_dst = value->ipv6;
1286 case MFF_IPV6_LABEL:
1287 flow->ipv6_label = value->be32 & ~htonl(IPV6_LABEL_MASK);
1291 flow->nw_proto = value->u8;
1295 flow->nw_tos &= ~IP_DSCP_MASK;
1296 flow->nw_tos |= value->u8 & IP_DSCP_MASK;
1300 flow->nw_tos &= ~IP_ECN_MASK;
1301 flow->nw_tos |= value->u8 & IP_ECN_MASK;
1305 flow->nw_ttl = value->u8;
1309 flow->nw_frag &= value->u8;
1313 flow->nw_proto = ntohs(value->be16);
1317 flow->nw_src = value->be32;
1321 flow->nw_dst = value->be32;
1326 memcpy(flow->arp_sha, value->mac, ETH_ADDR_LEN);
1331 memcpy(flow->arp_tha, value->mac, ETH_ADDR_LEN);
1336 flow->tp_src = value->be16;
1341 flow->tp_dst = value->be16;
1344 case MFF_ICMPV4_TYPE:
1345 case MFF_ICMPV6_TYPE:
1346 flow->tp_src = htons(value->u8);
1349 case MFF_ICMPV4_CODE:
1350 case MFF_ICMPV6_CODE:
1351 flow->tp_dst = htons(value->u8);
1355 flow->nd_target = value->ipv6;
1364 /* Returns true if 'mf' has a zero value in 'flow', false if it is nonzero.
1366 * The caller is responsible for ensuring that 'flow' meets 'mf''s
1369 mf_is_zero(const struct mf_field *mf, const struct flow *flow)
1371 union mf_value value;
1373 mf_get_value(mf, flow, &value);
1374 return is_all_zeros((const uint8_t *) &value, mf->n_bytes);
1377 /* Makes 'rule' wildcard field 'mf'.
1379 * The caller is responsible for ensuring that 'rule' meets 'mf''s
1382 mf_set_wild(const struct mf_field *mf, struct cls_rule *rule)
1386 cls_rule_set_tun_id_masked(rule, htonll(0), htonll(0));
1389 cls_rule_set_metadata_masked(rule, htonll(0), htonll(0));
1392 rule->wc.wildcards |= FWW_IN_PORT;
1393 rule->flow.in_port = 0;
1397 cls_rule_set_reg_masked(rule, mf->id - MFF_REG0, 0, 0);
1401 memset(rule->flow.dl_src, 0, ETH_ADDR_LEN);
1402 memset(rule->wc.dl_src_mask, 0, ETH_ADDR_LEN);
1406 memset(rule->flow.dl_dst, 0, ETH_ADDR_LEN);
1407 memset(rule->wc.dl_dst_mask, 0, ETH_ADDR_LEN);
1411 rule->wc.wildcards |= FWW_DL_TYPE;
1412 rule->flow.dl_type = htons(0);
1416 cls_rule_set_dl_tci_masked(rule, htons(0), htons(0));
1421 cls_rule_set_any_vid(rule);
1424 case MFF_DL_VLAN_PCP:
1426 cls_rule_set_any_pcp(rule);
1431 cls_rule_set_nw_src_masked(rule, htonl(0), htonl(0));
1436 cls_rule_set_nw_dst_masked(rule, htonl(0), htonl(0));
1440 memset(&rule->wc.ipv6_src_mask, 0, sizeof rule->wc.ipv6_src_mask);
1441 memset(&rule->flow.ipv6_src, 0, sizeof rule->flow.ipv6_src);
1445 memset(&rule->wc.ipv6_dst_mask, 0, sizeof rule->wc.ipv6_dst_mask);
1446 memset(&rule->flow.ipv6_dst, 0, sizeof rule->flow.ipv6_dst);
1449 case MFF_IPV6_LABEL:
1450 rule->wc.ipv6_label_mask = 0;
1451 rule->flow.ipv6_label = 0;
1455 rule->wc.wildcards |= FWW_NW_PROTO;
1456 rule->flow.nw_proto = 0;
1460 rule->wc.wildcards |= FWW_NW_DSCP;
1461 rule->flow.nw_tos &= ~IP_DSCP_MASK;
1465 rule->wc.wildcards |= FWW_NW_ECN;
1466 rule->flow.nw_tos &= ~IP_ECN_MASK;
1470 rule->wc.wildcards |= FWW_NW_TTL;
1471 rule->flow.nw_ttl = 0;
1475 rule->wc.nw_frag_mask |= FLOW_NW_FRAG_MASK;
1476 rule->flow.nw_frag &= ~FLOW_NW_FRAG_MASK;
1480 rule->wc.wildcards |= FWW_NW_PROTO;
1481 rule->flow.nw_proto = 0;
1486 memset(rule->flow.arp_sha, 0, ETH_ADDR_LEN);
1487 memset(rule->wc.arp_sha_mask, 0, ETH_ADDR_LEN);
1492 memset(rule->flow.arp_tha, 0, ETH_ADDR_LEN);
1493 memset(rule->wc.arp_tha_mask, 0, ETH_ADDR_LEN);
1498 case MFF_ICMPV4_TYPE:
1499 case MFF_ICMPV6_TYPE:
1500 rule->wc.tp_src_mask = htons(0);
1501 rule->flow.tp_src = htons(0);
1506 case MFF_ICMPV4_CODE:
1507 case MFF_ICMPV6_CODE:
1508 rule->wc.tp_dst_mask = htons(0);
1509 rule->flow.tp_dst = htons(0);
1513 memset(&rule->wc.nd_target_mask, 0, sizeof rule->wc.nd_target_mask);
1514 memset(&rule->flow.nd_target, 0, sizeof rule->flow.nd_target);
1523 /* Makes 'rule' match field 'mf' with the specified 'value' and 'mask'.
1524 * 'value' specifies a value to match and 'mask' specifies a wildcard pattern,
1525 * with a 1-bit indicating that the corresponding value bit must match and a
1526 * 0-bit indicating a don't-care.
1528 * If 'mask' is NULL or points to all-1-bits, then this call is equivalent to
1529 * mf_set_value(mf, value, rule). If 'mask' points to all-0-bits, then this
1530 * call is equivalent to mf_set_wild(mf, rule).
1532 * 'mask' must be a valid mask for 'mf' (see mf_is_mask_valid()). The caller
1533 * is responsible for ensuring that 'rule' meets 'mf''s prerequisites. */
1535 mf_set(const struct mf_field *mf,
1536 const union mf_value *value, const union mf_value *mask,
1537 struct cls_rule *rule)
1539 if (!mask || is_all_ones((const uint8_t *) mask, mf->n_bytes)) {
1540 mf_set_value(mf, value, rule);
1542 } else if (is_all_zeros((const uint8_t *) mask, mf->n_bytes)) {
1543 mf_set_wild(mf, rule);
1551 case MFF_DL_VLAN_PCP:
1558 case MFF_ICMPV4_TYPE:
1559 case MFF_ICMPV4_CODE:
1560 case MFF_ICMPV6_TYPE:
1561 case MFF_ICMPV6_CODE:
1565 cls_rule_set_tun_id_masked(rule, value->be64, mask->be64);
1568 cls_rule_set_metadata_masked(rule, value->be64, mask->be64);
1572 cls_rule_set_reg_masked(rule, mf->id - MFF_REG0,
1573 ntohl(value->be32), ntohl(mask->be32));
1577 cls_rule_set_dl_dst_masked(rule, value->mac, mask->mac);
1581 cls_rule_set_dl_src_masked(rule, value->mac, mask->mac);
1586 cls_rule_set_arp_sha_masked(rule, value->mac, mask->mac);
1591 cls_rule_set_arp_tha_masked(rule, value->mac, mask->mac);
1595 cls_rule_set_dl_tci_masked(rule, value->be16, mask->be16);
1599 cls_rule_set_vlan_vid_masked(rule, value->be16, mask->be16);
1603 cls_rule_set_nw_src_masked(rule, value->be32, mask->be32);
1607 cls_rule_set_nw_dst_masked(rule, value->be32, mask->be32);
1611 cls_rule_set_ipv6_src_masked(rule, &value->ipv6, &mask->ipv6);
1615 cls_rule_set_ipv6_dst_masked(rule, &value->ipv6, &mask->ipv6);
1618 case MFF_IPV6_LABEL:
1619 if ((mask->be32 & htonl(IPV6_LABEL_MASK)) == htonl(IPV6_LABEL_MASK)) {
1620 mf_set_value(mf, value, rule);
1622 cls_rule_set_ipv6_label_masked(rule, value->be32, mask->be32);
1627 cls_rule_set_nd_target_masked(rule, &value->ipv6, &mask->ipv6);
1631 cls_rule_set_nw_frag_masked(rule, value->u8, mask->u8);
1635 cls_rule_set_nw_src_masked(rule, value->be32, mask->be32);
1639 cls_rule_set_nw_dst_masked(rule, value->be32, mask->be32);
1644 cls_rule_set_tp_src_masked(rule, value->be16, mask->be16);
1649 cls_rule_set_tp_dst_masked(rule, value->be16, mask->be16);
1659 mf_check__(const struct mf_subfield *sf, const struct flow *flow,
1663 VLOG_WARN_RL(&rl, "unknown %s field", type);
1664 } else if (!sf->n_bits) {
1665 VLOG_WARN_RL(&rl, "zero bit %s field %s", type, sf->field->name);
1666 } else if (sf->ofs >= sf->field->n_bits) {
1667 VLOG_WARN_RL(&rl, "bit offset %d exceeds %d-bit width of %s field %s",
1668 sf->ofs, sf->field->n_bits, type, sf->field->name);
1669 } else if (sf->ofs + sf->n_bits > sf->field->n_bits) {
1670 VLOG_WARN_RL(&rl, "bit offset %d and width %d exceeds %d-bit width "
1671 "of %s field %s", sf->ofs, sf->n_bits,
1672 sf->field->n_bits, type, sf->field->name);
1673 } else if (flow && !mf_are_prereqs_ok(sf->field, flow)) {
1674 VLOG_WARN_RL(&rl, "%s field %s lacks correct prerequisites",
1675 type, sf->field->name);
1680 return OFPERR_OFPBAC_BAD_ARGUMENT;
1683 /* Checks whether 'sf' is valid for reading a subfield out of 'flow'. Returns
1684 * 0 if so, otherwise an OpenFlow error code (e.g. as returned by
1687 mf_check_src(const struct mf_subfield *sf, const struct flow *flow)
1689 return mf_check__(sf, flow, "source");
1692 /* Checks whether 'sf' is valid for writing a subfield into 'flow'. Returns 0
1693 * if so, otherwise an OpenFlow error code (e.g. as returned by
1696 mf_check_dst(const struct mf_subfield *sf, const struct flow *flow)
1698 int error = mf_check__(sf, flow, "destination");
1699 if (!error && !sf->field->writable) {
1700 VLOG_WARN_RL(&rl, "destination field %s is not writable",
1702 return OFPERR_OFPBAC_BAD_ARGUMENT;
1707 /* Copies the value and wildcard bit pattern for 'mf' from 'rule' into the
1708 * 'value' and 'mask', respectively. */
1710 mf_get(const struct mf_field *mf, const struct cls_rule *rule,
1711 union mf_value *value, union mf_value *mask)
1713 mf_get_value(mf, &rule->flow, value);
1714 mf_get_mask(mf, &rule->wc, mask);
1717 /* Assigns a random value for field 'mf' to 'value'. */
1719 mf_random_value(const struct mf_field *mf, union mf_value *value)
1721 random_bytes(value, mf->n_bytes);
1746 case MFF_ICMPV4_TYPE:
1747 case MFF_ICMPV4_CODE:
1748 case MFF_ICMPV6_TYPE:
1749 case MFF_ICMPV6_CODE:
1755 case MFF_IPV6_LABEL:
1756 value->be32 &= ~htonl(IPV6_LABEL_MASK);
1760 value->u8 &= IP_DSCP_MASK;
1764 value->u8 &= IP_ECN_MASK;
1768 value->u8 &= FLOW_NW_FRAG_MASK;
1772 value->be16 &= htons(0xff);
1776 value->be16 &= htons(VLAN_VID_MASK);
1779 value->be16 &= htons(VLAN_VID_MASK | VLAN_CFI);
1782 case MFF_DL_VLAN_PCP:
1794 mf_from_integer_string(const struct mf_field *mf, const char *s,
1795 uint8_t *valuep, uint8_t *maskp)
1797 unsigned long long int integer, mask;
1802 integer = strtoull(s, &tail, 0);
1803 if (errno || (*tail != '\0' && *tail != '/')) {
1808 mask = strtoull(tail + 1, &tail, 0);
1809 if (errno || *tail != '\0') {
1816 for (i = mf->n_bytes - 1; i >= 0; i--) {
1817 valuep[i] = integer;
1823 return xasprintf("%s: value too large for %u-byte field %s",
1824 s, mf->n_bytes, mf->name);
1829 return xasprintf("%s: bad syntax for %s", s, mf->name);
1833 mf_from_ethernet_string(const struct mf_field *mf, const char *s,
1834 uint8_t mac[ETH_ADDR_LEN],
1835 uint8_t mask[ETH_ADDR_LEN])
1837 assert(mf->n_bytes == ETH_ADDR_LEN);
1839 switch (sscanf(s, ETH_ADDR_SCAN_FMT"/"ETH_ADDR_SCAN_FMT,
1840 ETH_ADDR_SCAN_ARGS(mac), ETH_ADDR_SCAN_ARGS(mask))){
1841 case ETH_ADDR_SCAN_COUNT * 2:
1844 case ETH_ADDR_SCAN_COUNT:
1845 memset(mask, 0xff, ETH_ADDR_LEN);
1849 return xasprintf("%s: invalid Ethernet address", s);
1854 mf_from_ipv4_string(const struct mf_field *mf, const char *s,
1855 ovs_be32 *ip, ovs_be32 *mask)
1859 assert(mf->n_bytes == sizeof *ip);
1861 if (sscanf(s, IP_SCAN_FMT"/"IP_SCAN_FMT,
1862 IP_SCAN_ARGS(ip), IP_SCAN_ARGS(mask)) == IP_SCAN_COUNT * 2) {
1864 } else if (sscanf(s, IP_SCAN_FMT"/%d",
1865 IP_SCAN_ARGS(ip), &prefix) == IP_SCAN_COUNT + 1) {
1866 if (prefix <= 0 || prefix > 32) {
1867 return xasprintf("%s: network prefix bits not between 1 and "
1869 } else if (prefix == 32) {
1870 *mask = htonl(UINT32_MAX);
1872 *mask = htonl(((1u << prefix) - 1) << (32 - prefix));
1874 } else if (sscanf(s, IP_SCAN_FMT, IP_SCAN_ARGS(ip)) == IP_SCAN_COUNT) {
1875 *mask = htonl(UINT32_MAX);
1877 return xasprintf("%s: invalid IP address", s);
1883 mf_from_ipv6_string(const struct mf_field *mf, const char *s,
1884 struct in6_addr *value, struct in6_addr *mask)
1886 char *str = xstrdup(s);
1887 char *save_ptr = NULL;
1888 const char *name, *netmask;
1891 assert(mf->n_bytes == sizeof *value);
1893 name = strtok_r(str, "/", &save_ptr);
1894 retval = name ? lookup_ipv6(name, value) : EINVAL;
1898 err = xasprintf("%s: could not convert to IPv6 address", str);
1904 netmask = strtok_r(NULL, "/", &save_ptr);
1906 if (inet_pton(AF_INET6, netmask, mask) != 1) {
1907 int prefix = atoi(netmask);
1908 if (prefix <= 0 || prefix > 128) {
1910 return xasprintf("%s: prefix bits not between 1 and 128", s);
1912 *mask = ipv6_create_mask(prefix);
1916 *mask = in6addr_exact;
1924 mf_from_ofp_port_string(const struct mf_field *mf, const char *s,
1925 ovs_be16 *valuep, ovs_be16 *maskp)
1929 assert(mf->n_bytes == sizeof(ovs_be16));
1930 if (ofputil_port_from_string(s, &port)) {
1931 *valuep = htons(port);
1932 *maskp = htons(UINT16_MAX);
1935 return mf_from_integer_string(mf, s,
1936 (uint8_t *) valuep, (uint8_t *) maskp);
1940 struct frag_handling {
1946 static const struct frag_handling all_frags[] = {
1947 #define A FLOW_NW_FRAG_ANY
1948 #define L FLOW_NW_FRAG_LATER
1949 /* name mask value */
1952 { "first", A|L, A },
1953 { "later", A|L, A|L },
1958 { "not_later", L, 0 },
1965 mf_from_frag_string(const char *s, uint8_t *valuep, uint8_t *maskp)
1967 const struct frag_handling *h;
1969 for (h = all_frags; h < &all_frags[ARRAY_SIZE(all_frags)]; h++) {
1970 if (!strcasecmp(s, h->name)) {
1971 /* We force the upper bits of the mask on to make mf_parse_value()
1972 * happy (otherwise it will never think it's an exact match.) */
1973 *maskp = h->mask | ~FLOW_NW_FRAG_MASK;
1979 return xasprintf("%s: unknown fragment type (valid types are \"no\", "
1980 "\"yes\", \"first\", \"later\", \"not_first\"", s);
1983 /* Parses 's', a string value for field 'mf', into 'value' and 'mask'. Returns
1984 * NULL if successful, otherwise a malloc()'d string describing the error. */
1986 mf_parse(const struct mf_field *mf, const char *s,
1987 union mf_value *value, union mf_value *mask)
1989 if (!strcasecmp(s, "any") || !strcmp(s, "*")) {
1990 memset(value, 0, mf->n_bytes);
1991 memset(mask, 0, mf->n_bytes);
1995 switch (mf->string) {
1997 case MFS_HEXADECIMAL:
1998 return mf_from_integer_string(mf, s,
1999 (uint8_t *) value, (uint8_t *) mask);
2002 return mf_from_ethernet_string(mf, s, value->mac, mask->mac);
2005 return mf_from_ipv4_string(mf, s, &value->be32, &mask->be32);
2008 return mf_from_ipv6_string(mf, s, &value->ipv6, &mask->ipv6);
2011 return mf_from_ofp_port_string(mf, s, &value->be16, &mask->be16);
2014 return mf_from_frag_string(s, &value->u8, &mask->u8);
2019 /* Parses 's', a string value for field 'mf', into 'value'. Returns NULL if
2020 * successful, otherwise a malloc()'d string describing the error. */
2022 mf_parse_value(const struct mf_field *mf, const char *s, union mf_value *value)
2024 union mf_value mask;
2027 error = mf_parse(mf, s, value, &mask);
2032 if (!is_all_ones((const uint8_t *) &mask, mf->n_bytes)) {
2033 return xasprintf("%s: wildcards not allowed here", s);
2039 mf_format_integer_string(const struct mf_field *mf, const uint8_t *valuep,
2040 const uint8_t *maskp, struct ds *s)
2042 unsigned long long int integer;
2045 assert(mf->n_bytes <= 8);
2048 for (i = 0; i < mf->n_bytes; i++) {
2049 integer = (integer << 8) | valuep[i];
2051 if (mf->string == MFS_HEXADECIMAL) {
2052 ds_put_format(s, "%#llx", integer);
2054 ds_put_format(s, "%lld", integer);
2058 unsigned long long int mask;
2061 for (i = 0; i < mf->n_bytes; i++) {
2062 mask = (mask << 8) | maskp[i];
2065 /* I guess we could write the mask in decimal for MFS_DECIMAL but I'm
2066 * not sure that that a bit-mask written in decimal is ever easier to
2067 * understand than the same bit-mask written in hexadecimal. */
2068 ds_put_format(s, "/%#llx", mask);
2073 mf_format_frag_string(const uint8_t *valuep, const uint8_t *maskp,
2076 const struct frag_handling *h;
2077 uint8_t value = *valuep;
2078 uint8_t mask = *maskp;
2081 mask &= FLOW_NW_FRAG_MASK;
2083 for (h = all_frags; h < &all_frags[ARRAY_SIZE(all_frags)]; h++) {
2084 if (value == h->value && mask == h->mask) {
2085 ds_put_cstr(s, h->name);
2089 ds_put_cstr(s, "<error>");
2092 /* Appends to 's' a string representation of field 'mf' whose value is in
2093 * 'value' and 'mask'. 'mask' may be NULL to indicate an exact match. */
2095 mf_format(const struct mf_field *mf,
2096 const union mf_value *value, const union mf_value *mask,
2100 if (is_all_zeros((const uint8_t *) mask, mf->n_bytes)) {
2101 ds_put_cstr(s, "ANY");
2103 } else if (is_all_ones((const uint8_t *) mask, mf->n_bytes)) {
2108 switch (mf->string) {
2111 ofputil_format_port(ntohs(value->be16), s);
2116 case MFS_HEXADECIMAL:
2117 mf_format_integer_string(mf, (uint8_t *) value, (uint8_t *) mask, s);
2121 eth_format_masked(value->mac, mask->mac, s);
2125 ip_format_masked(value->be32, mask ? mask->be32 : htonl(UINT32_MAX),
2130 print_ipv6_masked(s, &value->ipv6, mask ? &mask->ipv6 : NULL);
2134 mf_format_frag_string(&value->u8, &mask->u8, s);
2142 /* Makes subfield 'sf' within 'rule' exactly match the 'sf->n_bits'
2143 * least-significant bits in 'x'.
2146 mf_write_subfield(const struct mf_subfield *sf, const union mf_subvalue *x,
2147 struct cls_rule *rule)
2149 const struct mf_field *field = sf->field;
2150 union mf_value value, mask;
2152 mf_get(field, rule, &value, &mask);
2153 bitwise_copy(x, sizeof *x, 0, &value, field->n_bytes, sf->ofs, sf->n_bits);
2154 bitwise_one ( &mask, field->n_bytes, sf->ofs, sf->n_bits);
2155 mf_set(field, &value, &mask, rule);
2158 /* Initializes 'x' to the value of 'sf' within 'flow'. 'sf' must be valid for
2159 * reading 'flow', e.g. as checked by mf_check_src(). */
2161 mf_read_subfield(const struct mf_subfield *sf, const struct flow *flow,
2162 union mf_subvalue *x)
2164 union mf_value value;
2166 mf_get_value(sf->field, flow, &value);
2168 memset(x, 0, sizeof *x);
2169 bitwise_copy(&value, sf->field->n_bytes, sf->ofs,
2174 /* Returns the value of 'sf' within 'flow'. 'sf' must be valid for reading
2175 * 'flow', e.g. as checked by mf_check_src() and sf->n_bits must be 64 or
2178 mf_get_subfield(const struct mf_subfield *sf, const struct flow *flow)
2180 union mf_value value;
2182 mf_get_value(sf->field, flow, &value);
2183 return bitwise_get(&value, sf->field->n_bytes, sf->ofs, sf->n_bits);
2186 /* Formats 'sf' into 's' in a format normally acceptable to
2187 * mf_parse_subfield(). (It won't be acceptable if sf->field is NULL or if
2188 * sf->field has no NXM name.) */
2190 mf_format_subfield(const struct mf_subfield *sf, struct ds *s)
2193 ds_put_cstr(s, "<unknown>");
2194 } else if (sf->field->nxm_name) {
2195 ds_put_cstr(s, sf->field->nxm_name);
2196 } else if (sf->field->nxm_header) {
2197 uint32_t header = sf->field->nxm_header;
2198 ds_put_format(s, "%d:%d", NXM_VENDOR(header), NXM_FIELD(header));
2200 ds_put_cstr(s, sf->field->name);
2203 if (sf->field && sf->ofs == 0 && sf->n_bits == sf->field->n_bits) {
2204 ds_put_cstr(s, "[]");
2205 } else if (sf->n_bits == 1) {
2206 ds_put_format(s, "[%d]", sf->ofs);
2208 ds_put_format(s, "[%d..%d]", sf->ofs, sf->ofs + sf->n_bits - 1);
2212 static const struct mf_field *
2213 mf_parse_subfield_name(const char *name, int name_len, bool *wild)
2217 *wild = name_len > 2 && !memcmp(&name[name_len - 2], "_W", 2);
2222 for (i = 0; i < MFF_N_IDS; i++) {
2223 const struct mf_field *mf = mf_from_id(i);
2226 && !strncmp(mf->nxm_name, name, name_len)
2227 && mf->nxm_name[name_len] == '\0') {
2231 && !strncmp(mf->oxm_name, name, name_len)
2232 && mf->oxm_name[name_len] == '\0') {
2240 /* Parses a subfield from the beginning of '*sp' into 'sf'. If successful,
2241 * returns NULL and advances '*sp' to the first byte following the parsed
2242 * string. On failure, returns a malloc()'d error message, does not modify
2243 * '*sp', and does not properly initialize 'sf'.
2245 * The syntax parsed from '*sp' takes the form "header[start..end]" where
2246 * 'header' is the name of an NXM field and 'start' and 'end' are (inclusive)
2247 * bit indexes. "..end" may be omitted to indicate a single bit. "start..end"
2248 * may both be omitted (the [] are still required) to indicate an entire
2251 mf_parse_subfield__(struct mf_subfield *sf, const char **sp)
2253 const struct mf_field *field;
2262 name_len = strcspn(s, "[");
2263 if (s[name_len] != '[') {
2264 return xasprintf("%s: missing [ looking for field name", *sp);
2267 field = mf_parse_subfield_name(name, name_len, &wild);
2269 return xasprintf("%s: unknown field `%.*s'", *sp, name_len, s);
2273 if (sscanf(s, "[%d..%d]", &start, &end) == 2) {
2274 /* Nothing to do. */
2275 } else if (sscanf(s, "[%d]", &start) == 1) {
2277 } else if (!strncmp(s, "[]", 2)) {
2279 end = field->n_bits - 1;
2281 return xasprintf("%s: syntax error expecting [] or [<bit>] or "
2282 "[<start>..<end>]", *sp);
2284 s = strchr(s, ']') + 1;
2287 return xasprintf("%s: starting bit %d is after ending bit %d",
2289 } else if (start >= field->n_bits) {
2290 return xasprintf("%s: starting bit %d is not valid because field is "
2291 "only %d bits wide", *sp, start, field->n_bits);
2292 } else if (end >= field->n_bits){
2293 return xasprintf("%s: ending bit %d is not valid because field is "
2294 "only %d bits wide", *sp, end, field->n_bits);
2299 sf->n_bits = end - start + 1;
2305 /* Parses a subfield from the beginning of 's' into 'sf'. Returns the first
2306 * byte in 's' following the parsed string.
2308 * Exits with an error message if 's' has incorrect syntax.
2310 * The syntax parsed from 's' takes the form "header[start..end]" where
2311 * 'header' is the name of an NXM field and 'start' and 'end' are (inclusive)
2312 * bit indexes. "..end" may be omitted to indicate a single bit. "start..end"
2313 * may both be omitted (the [] are still required) to indicate an entire
2316 mf_parse_subfield(struct mf_subfield *sf, const char *s)
2318 char *msg = mf_parse_subfield__(sf, &s);
2320 ovs_fatal(0, "%s", msg);