X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fmatch.c;h=f4b0a6c147f9ae0e5b5f779cfb6141b0b2019e98;hb=67680b012be30d9c26eab999b83b08c6eb32dbd2;hp=9eb121d7c8c409153196733ff5ec7e74b107c8f2;hpb=4fe3445afbbcda01e426d26cdcc1c7daa5d9f823;p=sliver-openvswitch.git diff --git a/lib/match.c b/lib/match.c index 9eb121d7c..f4b0a6c14 100644 --- a/lib/match.c +++ b/lib/match.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. + * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,10 +16,10 @@ #include #include "match.h" -#include #include #include "byte-order.h" #include "dynamic-string.h" +#include "ofp-util.h" #include "packets.h" #include "vlog.h" @@ -56,6 +56,14 @@ match_wc_init(struct match *match, const struct flow *flow) memset(&wc->masks.nw_proto, 0xff, sizeof wc->masks.nw_proto); } + if (flow->skb_priority) { + memset(&wc->masks.skb_priority, 0xff, sizeof wc->masks.skb_priority); + } + + if (flow->skb_mark) { + memset(&wc->masks.skb_mark, 0xff, sizeof wc->masks.skb_mark); + } + for (i = 0; i < FLOW_N_REGS; i++) { if (flow->regs[i]) { memset(&wc->masks.regs[i], 0xff, sizeof wc->masks.regs[i]); @@ -98,8 +106,7 @@ match_wc_init(struct match *match, const struct flow *flow) memset(&wc->masks.arp_tha, 0xff, sizeof wc->masks.arp_tha); } - if (flow->dl_type == htons(ETH_TYPE_IPV6) || - flow->dl_type == htons(ETH_TYPE_IP)) { + if (is_ip_any(flow)) { memset(&wc->masks.nw_tos, 0xff, sizeof wc->masks.nw_tos); memset(&wc->masks.nw_ttl, 0xff, sizeof wc->masks.nw_ttl); } @@ -168,7 +175,7 @@ void match_set_reg_masked(struct match *match, unsigned int reg_idx, uint32_t value, uint32_t mask) { - assert(reg_idx < FLOW_N_REGS); + ovs_assert(reg_idx < FLOW_N_REGS); flow_wildcards_set_reg_mask(&match->wc, reg_idx, mask); match->flow.regs[reg_idx] = value & mask; } @@ -272,6 +279,20 @@ match_set_in_port(struct match *match, uint16_t ofp_port) match->flow.in_port = ofp_port; } +void +match_set_skb_priority(struct match *match, uint32_t skb_priority) +{ + match->wc.masks.skb_priority = UINT32_MAX; + match->flow.skb_priority = skb_priority; +} + +void +match_set_skb_mark(struct match *match, uint32_t skb_mark) +{ + match->wc.masks.skb_mark = UINT32_MAX; + match->flow.skb_mark = skb_mark; +} + void match_set_dl_type(struct match *match, ovs_be16 dl_type) { @@ -439,6 +460,57 @@ 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 is wildcarded. */ +void +match_set_any_mpls_label(struct match *match) +{ + match->wc.masks.mpls_lse &= ~htonl(MPLS_LABEL_MASK); + flow_set_mpls_label(&match->flow, 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->wc.masks.mpls_lse |= htonl(MPLS_LABEL_MASK); + flow_set_mpls_label(&match->flow, mpls_label); +} + +/* Modifies 'match' so that the MPLS TC is wildcarded. */ +void +match_set_any_mpls_tc(struct match *match) +{ + match->wc.masks.mpls_lse &= ~htonl(MPLS_TC_MASK); + flow_set_mpls_tc(&match->flow, 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->wc.masks.mpls_lse |= htonl(MPLS_TC_MASK); + flow_set_mpls_tc(&match->flow, mpls_tc); +} + +/* Modifies 'match' so that the MPLS stack flag is wildcarded. */ +void +match_set_any_mpls_bos(struct match *match) +{ + match->wc.masks.mpls_lse &= ~htonl(MPLS_BOS_MASK); + flow_set_mpls_bos(&match->flow, 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->wc.masks.mpls_lse |= htonl(MPLS_BOS_MASK); + flow_set_mpls_bos(&match->flow, mpls_bos); +} + void match_set_tp_src(struct match *match, ovs_be16 tp_src) { @@ -746,6 +818,24 @@ format_flow_tunnel(struct ds *s, const struct match *match) } } +static void +flow_format_mpls(const struct flow *flow, struct ds *s) +{ + if (flow->dl_type == htons(ETH_TYPE_MPLS)) { + ds_put_cstr(s, "mpls"); + } else if (flow->dl_type == htons(ETH_TYPE_MPLS_MCAST)) { + ds_put_cstr(s, "mplsm"); + } else { + return; + } + + ds_put_format(s, "(label:%"PRIu32",tc:%d,ttl:%d,bos:%d),", + mpls_lse_to_label(flow->mpls_lse), + mpls_lse_to_tc(flow->mpls_lse), + mpls_lse_to_ttl(flow->mpls_lse), + mpls_lse_to_bos(flow->mpls_lse)); +} + /* Appends a string representation of 'match' to 's'. If 'priority' is * different from OFP_DEFAULT_PRIORITY, includes it in 's'. */ void @@ -759,12 +849,20 @@ match_format(const struct match *match, struct ds *s, unsigned int priority) int i; - BUILD_ASSERT_DECL(FLOW_WC_SEQ == 18); + BUILD_ASSERT_DECL(FLOW_WC_SEQ == 19); if (priority != OFP_DEFAULT_PRIORITY) { ds_put_format(s, "priority=%u,", priority); } + if (wc->masks.skb_mark) { + ds_put_format(s, "skb_mark=%#"PRIx32",", f->skb_mark); + } + + if (wc->masks.skb_priority) { + ds_put_format(s, "skb_priority=%#"PRIx32",", f->skb_priority); + } + if (wc->masks.dl_type) { skip_type = true; if (f->dl_type == htons(ETH_TYPE_IP)) { @@ -803,6 +901,8 @@ match_format(const struct match *match, struct ds *s, unsigned int priority) ds_put_cstr(s, "arp,"); } else if (f->dl_type == htons(ETH_TYPE_RARP)) { ds_put_cstr(s, "rarp,"); + } else if (f->mpls_depth) { + flow_format_mpls(f, s); } else { skip_type = false; } @@ -835,7 +935,9 @@ match_format(const struct match *match, struct ds *s, unsigned int priority) break; } if (wc->masks.in_port) { - ds_put_format(s, "in_port=%"PRIu16",", f->in_port); + ds_put_cstr(s, "in_port="); + ofputil_format_port(f->in_port, s); + ds_put_char(s, ','); } if (wc->masks.vlan_tci) { ovs_be16 vid_mask = wc->masks.vlan_tci & htons(VLAN_VID_MASK); @@ -909,6 +1011,18 @@ 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)) { + ds_put_format(s, "mpls_label=%"PRIu32",", + mpls_lse_to_label(f->mpls_lse)); + } + if (wc->masks.mpls_lse & htonl(MPLS_TC_MASK)) { + ds_put_format(s, "mpls_tc=%"PRIu8",", + mpls_lse_to_tc(f->mpls_lse)); + } + if (wc->masks.mpls_lse & htonl(MPLS_BOS_MASK)) { + ds_put_format(s, "mpls_bos=%"PRIu8",", + mpls_lse_to_bos(f->mpls_lse)); + } switch (wc->masks.nw_frag) { case FLOW_NW_FRAG_ANY | FLOW_NW_FRAG_LATER: ds_put_format(s, "nw_frag=%s,",