X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fmatch.c;h=308f90627c289dd939d46e24f77e90c27a93db0c;hb=27bbe15dec4e1862396b5c4d265f0ced71b49930;hp=71d86beaefdcde3e3f51eec11523add0038a5ff8;hpb=476f36e83bc5b0ca7f11952a23bb0fef76d1cc4b;p=sliver-openvswitch.git diff --git a/lib/match.c b/lib/match.c index 71d86beae..308f90627 100644 --- a/lib/match.c +++ b/lib/match.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc. + * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -95,7 +95,14 @@ match_wc_init(struct match *match, const struct flow *flow) memset(&wc->masks.nw_src, 0xff, sizeof wc->masks.nw_src); memset(&wc->masks.nw_dst, 0xff, sizeof wc->masks.nw_dst); } else if (eth_type_mpls(flow->dl_type)) { - memset(&wc->masks.mpls_lse, 0xff, sizeof wc->masks.mpls_lse); + int i; + + for (i = 0; i < FLOW_MAX_MPLS_LABELS; i++) { + wc->masks.mpls_lse[i] = OVS_BE32_MAX; + if (flow->mpls_lse[i] & htonl(MPLS_BOS_MASK)) { + break; + } + } } if (flow->dl_type == htons(ETH_TYPE_ARP) || @@ -157,6 +164,26 @@ match_zero_wildcarded_fields(struct match *match) flow_zero_wildcards(&match->flow, &match->wc); } +void +match_set_dp_hash(struct match *match, uint32_t value) +{ + match_set_dp_hash_masked(match, value, UINT32_MAX); +} + +void +match_set_dp_hash_masked(struct match *match, uint32_t value, uint32_t mask) +{ + match->wc.masks.dp_hash = mask; + match->flow.dp_hash = value & mask; +} + +void +match_set_recirc_id(struct match *match, uint32_t value) +{ + match->flow.recirc_id = value; + match->wc.masks.recirc_id = UINT32_MAX; +} + void match_set_reg(struct match *match, unsigned int reg_idx, uint32_t value) { @@ -458,55 +485,71 @@ match_set_dl_vlan_pcp(struct match *match, uint8_t dl_vlan_pcp) match->wc.masks.vlan_tci |= htons(VLAN_CFI | VLAN_PCP_MASK); } +/* Modifies 'match' so that the MPLS label 'idx' matches 'lse' exactly. */ +void +match_set_mpls_lse(struct match *match, int idx, ovs_be32 lse) +{ + match->wc.masks.mpls_lse[idx] = OVS_BE32_MAX; + match->flow.mpls_lse[idx] = lse; +} + /* Modifies 'match' so that the MPLS label is wildcarded. */ void -match_set_any_mpls_label(struct match *match) +match_set_any_mpls_label(struct match *match, int idx) { - match->wc.masks.mpls_lse &= ~htonl(MPLS_LABEL_MASK); - flow_set_mpls_label(&match->flow, htonl(0)); + match->wc.masks.mpls_lse[idx] &= ~htonl(MPLS_LABEL_MASK); + flow_set_mpls_label(&match->flow, idx, htonl(0)); } /* Modifies 'match' so that it matches only packets with an MPLS header whose * label equals the low 20 bits of 'mpls_label'. */ void -match_set_mpls_label(struct match *match, ovs_be32 mpls_label) +match_set_mpls_label(struct match *match, int idx, ovs_be32 mpls_label) { - match->wc.masks.mpls_lse |= htonl(MPLS_LABEL_MASK); - flow_set_mpls_label(&match->flow, mpls_label); + match->wc.masks.mpls_lse[idx] |= htonl(MPLS_LABEL_MASK); + flow_set_mpls_label(&match->flow, idx, mpls_label); } /* Modifies 'match' so that the MPLS TC is wildcarded. */ void -match_set_any_mpls_tc(struct match *match) +match_set_any_mpls_tc(struct match *match, int idx) { - match->wc.masks.mpls_lse &= ~htonl(MPLS_TC_MASK); - flow_set_mpls_tc(&match->flow, 0); + match->wc.masks.mpls_lse[idx] &= ~htonl(MPLS_TC_MASK); + flow_set_mpls_tc(&match->flow, idx, 0); } /* Modifies 'match' so that it matches only packets with an MPLS header whose * Traffic Class equals the low 3 bits of 'mpls_tc'. */ void -match_set_mpls_tc(struct match *match, uint8_t mpls_tc) +match_set_mpls_tc(struct match *match, int idx, uint8_t mpls_tc) { - match->wc.masks.mpls_lse |= htonl(MPLS_TC_MASK); - flow_set_mpls_tc(&match->flow, mpls_tc); + match->wc.masks.mpls_lse[idx] |= htonl(MPLS_TC_MASK); + flow_set_mpls_tc(&match->flow, idx, mpls_tc); } /* Modifies 'match' so that the MPLS stack flag is wildcarded. */ void -match_set_any_mpls_bos(struct match *match) +match_set_any_mpls_bos(struct match *match, int idx) { - match->wc.masks.mpls_lse &= ~htonl(MPLS_BOS_MASK); - flow_set_mpls_bos(&match->flow, 0); + match->wc.masks.mpls_lse[idx] &= ~htonl(MPLS_BOS_MASK); + flow_set_mpls_bos(&match->flow, idx, 0); } /* Modifies 'match' so that it matches only packets with an MPLS header whose * Stack Flag equals the lower bit of 'mpls_bos' */ void -match_set_mpls_bos(struct match *match, uint8_t mpls_bos) +match_set_mpls_bos(struct match *match, int idx, uint8_t mpls_bos) +{ + match->wc.masks.mpls_lse[idx] |= htonl(MPLS_BOS_MASK); + flow_set_mpls_bos(&match->flow, idx, mpls_bos); +} + +/* Modifies 'match' so that the MPLS LSE is wildcarded. */ +void +match_set_any_mpls_lse(struct match *match, int idx) { - match->wc.masks.mpls_lse |= htonl(MPLS_BOS_MASK); - flow_set_mpls_bos(&match->flow, mpls_bos); + match->wc.masks.mpls_lse[idx] = htonl(0); + flow_set_mpls_lse(&match->flow, idx, htonl(0)); } void @@ -745,6 +788,34 @@ match_hash(const struct match *match, uint32_t basis) return flow_wildcards_hash(&match->wc, flow_hash(&match->flow, basis)); } +static bool +match_has_default_recirc_id(const struct match *m) +{ + return m->flow.recirc_id == 0 && (m->wc.masks.recirc_id == UINT32_MAX || + m->wc.masks.recirc_id == 0); +} + +static bool +match_has_default_dp_hash(const struct match *m) +{ + return ((m->flow.dp_hash | m->wc.masks.dp_hash) == 0); +} + +/* Return true if the hidden fields of the match are set to the default values. + * The default values equals to those set up by match_init_hidden_fields(). */ +bool +match_has_default_hidden_fields(const struct match *m) +{ + return match_has_default_recirc_id(m) && match_has_default_dp_hash(m); +} + +void +match_init_hidden_fields(struct match *m) +{ + match_set_recirc_id(m, 0); + match_set_dp_hash_masked(m, 0, 0); +} + static void format_eth_masked(struct ds *s, const char *name, const uint8_t eth[6], const uint8_t mask[6]) @@ -779,7 +850,6 @@ format_ipv6_netmask(struct ds *s, const char *name, } } - static void format_be16_masked(struct ds *s, const char *name, ovs_be16 value, ovs_be16 mask) @@ -796,24 +866,55 @@ format_be16_masked(struct ds *s, const char *name, } } +static void +format_be32_masked(struct ds *s, const char *name, + ovs_be32 value, ovs_be32 mask) +{ + if (mask != htonl(0)) { + ds_put_format(s, "%s=", name); + if (mask == OVS_BE32_MAX) { + ds_put_format(s, "%"PRIu32, ntohl(value)); + } else { + ds_put_format(s, "0x%"PRIx32"/0x%"PRIx32, + ntohl(value), ntohl(mask)); + } + ds_put_char(s, ','); + } +} + +static void +format_uint32_masked(struct ds *s, const char *name, + uint32_t value, uint32_t mask) +{ + if (mask) { + ds_put_format(s, "%s=%#"PRIx32, name, value); + if (mask != UINT32_MAX) { + ds_put_format(s, "/%#"PRIx32, mask); + } + ds_put_char(s, ','); + } +} + +static void +format_be64_masked(struct ds *s, const char *name, + ovs_be64 value, ovs_be64 mask) +{ + if (mask != htonll(0)) { + ds_put_format(s, "%s=%#"PRIx64, name, ntohll(value)); + if (mask != OVS_BE64_MAX) { + ds_put_format(s, "/%#"PRIx64, ntohll(mask)); + } + ds_put_char(s, ','); + } +} + static void format_flow_tunnel(struct ds *s, const struct match *match) { const struct flow_wildcards *wc = &match->wc; const struct flow_tnl *tnl = &match->flow.tunnel; - switch (wc->masks.tunnel.tun_id) { - case 0: - break; - case OVS_BE64_MAX: - ds_put_format(s, "tun_id=%#"PRIx64",", ntohll(tnl->tun_id)); - break; - default: - ds_put_format(s, "tun_id=%#"PRIx64"/%#"PRIx64",", - ntohll(tnl->tun_id), - ntohll(wc->masks.tunnel.tun_id)); - break; - } + format_be64_masked(s, "tun_id", tnl->tun_id, wc->masks.tunnel.tun_id); format_ip_netmask(s, "tun_src", tnl->ip_src, wc->masks.tunnel.ip_src); format_ip_netmask(s, "tun_dst", tnl->ip_dst, wc->masks.tunnel.ip_dst); @@ -842,22 +943,22 @@ match_format(const struct match *match, struct ds *s, unsigned int priority) int i; - BUILD_ASSERT_DECL(FLOW_WC_SEQ == 23); + BUILD_ASSERT_DECL(FLOW_WC_SEQ == 26); if (priority != OFP_DEFAULT_PRIORITY) { ds_put_format(s, "priority=%u,", priority); } - switch (wc->masks.pkt_mark) { - case 0: - break; - case UINT32_MAX: - ds_put_format(s, "pkt_mark=%#"PRIx32",", f->pkt_mark); - break; - default: - ds_put_format(s, "pkt_mark=%#"PRIx32"/%#"PRIx32",", - f->pkt_mark, wc->masks.pkt_mark); - break; + format_uint32_masked(s, "pkt_mark", f->pkt_mark, wc->masks.pkt_mark); + + if (wc->masks.recirc_id) { + format_uint32_masked(s, "recirc_id", f->recirc_id, + wc->masks.recirc_id); + } + + if (f->dp_hash && wc->masks.dp_hash) { + format_uint32_masked(s, "dp_hash", f->dp_hash, + wc->masks.dp_hash); } if (wc->masks.skb_priority) { @@ -915,32 +1016,18 @@ match_format(const struct match *match, struct ds *s, unsigned int priority) } } for (i = 0; i < FLOW_N_REGS; i++) { - switch (wc->masks.regs[i]) { - case 0: - break; - case UINT32_MAX: - ds_put_format(s, "reg%d=0x%"PRIx32",", i, f->regs[i]); - break; - default: - ds_put_format(s, "reg%d=0x%"PRIx32"/0x%"PRIx32",", - i, f->regs[i], wc->masks.regs[i]); - break; + #define REGNAME_LEN 20 + char regname[REGNAME_LEN]; + if (snprintf(regname, REGNAME_LEN, "reg%d", i) >= REGNAME_LEN) { + strcpy(regname, "reg?"); } + format_uint32_masked(s, regname, f->regs[i], wc->masks.regs[i]); } format_flow_tunnel(s, match); - switch (wc->masks.metadata) { - case 0: - break; - case OVS_BE64_MAX: - ds_put_format(s, "metadata=%#"PRIx64",", ntohll(f->metadata)); - break; - default: - ds_put_format(s, "metadata=%#"PRIx64"/%#"PRIx64",", - ntohll(f->metadata), ntohll(wc->masks.metadata)); - break; - } + format_be64_masked(s, "metadata", f->metadata, wc->masks.metadata); + if (wc->masks.in_port.ofp_port) { ds_put_cstr(s, "in_port="); ofputil_format_port(f->in_port.ofp_port, s); @@ -1018,22 +1105,25 @@ match_format(const struct match *match, struct ds *s, unsigned int priority) if (wc->masks.nw_ttl) { ds_put_format(s, "nw_ttl=%"PRIu8",", f->nw_ttl); } - if (wc->masks.mpls_lse & htonl(MPLS_LABEL_MASK)) { + if (wc->masks.mpls_lse[0] & htonl(MPLS_LABEL_MASK)) { ds_put_format(s, "mpls_label=%"PRIu32",", - mpls_lse_to_label(f->mpls_lse)); + mpls_lse_to_label(f->mpls_lse[0])); } - if (wc->masks.mpls_lse & htonl(MPLS_TC_MASK)) { + if (wc->masks.mpls_lse[0] & htonl(MPLS_TC_MASK)) { ds_put_format(s, "mpls_tc=%"PRIu8",", - mpls_lse_to_tc(f->mpls_lse)); + mpls_lse_to_tc(f->mpls_lse[0])); } - if (wc->masks.mpls_lse & htonl(MPLS_TTL_MASK)) { + if (wc->masks.mpls_lse[0] & htonl(MPLS_TTL_MASK)) { ds_put_format(s, "mpls_ttl=%"PRIu8",", - mpls_lse_to_ttl(f->mpls_lse)); + mpls_lse_to_ttl(f->mpls_lse[0])); } - if (wc->masks.mpls_lse & htonl(MPLS_BOS_MASK)) { + if (wc->masks.mpls_lse[0] & htonl(MPLS_BOS_MASK)) { ds_put_format(s, "mpls_bos=%"PRIu8",", - mpls_lse_to_bos(f->mpls_lse)); + mpls_lse_to_bos(f->mpls_lse[0])); } + format_be32_masked(s, "mpls_lse1", f->mpls_lse[1], wc->masks.mpls_lse[1]); + format_be32_masked(s, "mpls_lse2", f->mpls_lse[2], wc->masks.mpls_lse[2]); + switch (wc->masks.nw_frag) { case FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER: ds_put_format(s, "nw_frag=%s,", @@ -1069,11 +1159,12 @@ match_format(const struct match *match, struct ds *s, unsigned int priority) format_be16_masked(s, "tp_dst", f->tp_dst, wc->masks.tp_dst); } if (is_ip_any(f) && f->nw_proto == IPPROTO_TCP && wc->masks.tcp_flags) { - if (wc->masks.tcp_flags == htons(UINT16_MAX)) { + uint16_t mask = TCP_FLAGS(wc->masks.tcp_flags); + if (mask == TCP_FLAGS(OVS_BE16_MAX)) { ds_put_format(s, "tcp_flags=0x%03"PRIx16",", ntohs(f->tcp_flags)); } else { - ds_put_format(s, "tcp_flags=0x%03"PRIx16"/0x%03"PRIx16",", - ntohs(f->tcp_flags), ntohs(wc->masks.tcp_flags)); + format_flags_masked(s, "tcp_flags", packet_tcp_flag_to_string, + ntohs(f->tcp_flags), mask); } } @@ -1153,13 +1244,6 @@ minimatch_equal(const struct minimatch *a, const struct minimatch *b) && minimask_equal(&a->mask, &b->mask)); } -/* Returns a hash value for 'match', given 'basis'. */ -uint32_t -minimatch_hash(const struct minimatch *match, uint32_t basis) -{ - return miniflow_hash(&match->flow, minimask_hash(&match->mask, basis)); -} - /* Returns true if 'target' satisifies 'match', that is, if each bit for which * 'match' specifies a particular value has the correct value in 'target'. * @@ -1171,8 +1255,8 @@ minimatch_matches_flow(const struct minimatch *match, const struct flow *target) { const uint32_t *target_u32 = (const uint32_t *) target; - const uint32_t *flowp = match->flow.values; - const uint32_t *maskp = match->mask.masks.values; + const uint32_t *flowp = miniflow_get_u32_values(&match->flow); + const uint32_t *maskp = miniflow_get_u32_values(&match->mask.masks); uint64_t map; for (map = match->flow.map; map; map = zero_rightmost_1bit(map)) { @@ -1184,31 +1268,6 @@ minimatch_matches_flow(const struct minimatch *match, return true; } -/* Returns a hash value for the bits of range [start, end) in 'minimatch', - * given 'basis'. - * - * The hash values returned by this function are the same as those returned by - * flow_hash_in_minimask_range(), only the form of the arguments differ. */ -uint32_t -minimatch_hash_range(const struct minimatch *match, uint8_t start, uint8_t end, - uint32_t *basis) -{ - const uint32_t *p; - uint64_t map = miniflow_get_map_in_range(&match->mask.masks, start, end, - &p); - const ptrdiff_t df = match->mask.masks.values - match->flow.values; - uint32_t hash = *basis; - - for (; map; map = zero_rightmost_1bit(map)) { - if (*p) { - hash = mhash_add(hash, *(p - df) & *p); - } - p++; - } - *basis = hash; /* Allow continuation from the unfinished value. */ - return mhash_finish(hash, (p - match->mask.masks.values) * 4); -} - /* Appends a string representation of 'match' to 's'. If 'priority' is * different from OFP_DEFAULT_PRIORITY, includes it in 's'. */ void