2010-12-17 14:38:50 -08:00
|
|
|
|
/*
|
2019-04-30 15:01:00 -07:00
|
|
|
|
* Copyright (c) 2010, 2011, 2012, 2013, 2014, 2016, 2017, 2019 Nicira, Inc.
|
2010-12-17 14:38:50 -08: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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "multipath.h"
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <netinet/in.h>
|
2017-11-06 14:42:32 -08:00
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
#include <inttypes.h>
|
2016-03-02 15:56:20 +01:00
|
|
|
|
#include "colors.h"
|
2010-12-17 14:38:50 -08:00
|
|
|
|
#include "nx-match.h"
|
|
|
|
|
#include "openflow/nicira-ext.h"
|
2016-04-14 15:20:19 -07:00
|
|
|
|
#include "openvswitch/dynamic-string.h"
|
|
|
|
|
#include "openvswitch/ofp-actions.h"
|
|
|
|
|
#include "openvswitch/ofp-errors.h"
|
2010-12-17 14:38:50 -08:00
|
|
|
|
#include "packets.h"
|
2016-07-12 16:37:34 -05:00
|
|
|
|
#include "util.h"
|
2010-12-17 14:38:50 -08:00
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
/* Checks that 'mp' is valid on flow. Returns 0 if it is valid, otherwise an
|
|
|
|
|
* OFPERR_*. */
|
|
|
|
|
enum ofperr
|
|
|
|
|
multipath_check(const struct ofpact_multipath *mp,
|
2017-03-08 17:18:22 -08:00
|
|
|
|
const struct match *match)
|
2012-07-03 22:17:14 -07:00
|
|
|
|
{
|
2017-03-08 17:18:22 -08:00
|
|
|
|
return mf_check_dst(&mp->dst, match);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
}
|
2010-12-17 14:38:50 -08:00
|
|
|
|
|
|
|
|
|
/* multipath_execute(). */
|
|
|
|
|
|
|
|
|
|
static uint16_t multipath_algorithm(uint32_t hash, enum nx_mp_algorithm,
|
|
|
|
|
unsigned int n_links, unsigned int arg);
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
/* Executes 'mp' based on the current contents of 'flow', writing the results
|
2013-05-14 18:24:43 -07:00
|
|
|
|
* back into 'flow'. Sets fields in 'wc' that were used to calculate
|
|
|
|
|
* the result. */
|
2010-12-17 14:38:50 -08:00
|
|
|
|
void
|
2013-05-14 18:24:43 -07:00
|
|
|
|
multipath_execute(const struct ofpact_multipath *mp, struct flow *flow,
|
|
|
|
|
struct flow_wildcards *wc)
|
2010-12-17 14:38:50 -08:00
|
|
|
|
{
|
|
|
|
|
/* Calculate value to store. */
|
2012-07-03 22:17:14 -07:00
|
|
|
|
uint32_t hash = flow_hash_fields(flow, mp->fields, mp->basis);
|
|
|
|
|
uint16_t link = multipath_algorithm(hash, mp->algorithm,
|
|
|
|
|
mp->max_link + 1, mp->arg);
|
|
|
|
|
|
2013-06-26 16:37:16 -07:00
|
|
|
|
flow_mask_hash_fields(flow, wc, mp->fields);
|
2013-08-02 21:17:31 -07:00
|
|
|
|
nxm_reg_load(&mp->dst, link, flow, wc);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint16_t
|
|
|
|
|
algorithm_hrw(uint32_t hash, unsigned int n_links)
|
|
|
|
|
{
|
|
|
|
|
uint32_t best_weight;
|
|
|
|
|
uint16_t best_link;
|
|
|
|
|
unsigned int link;
|
|
|
|
|
|
|
|
|
|
best_link = 0;
|
|
|
|
|
best_weight = hash_2words(hash, 0);
|
|
|
|
|
for (link = 1; link < n_links; link++) {
|
|
|
|
|
uint32_t weight = hash_2words(hash, link);
|
|
|
|
|
if (weight > best_weight) {
|
|
|
|
|
best_link = link;
|
|
|
|
|
best_weight = weight;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return best_link;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Works for 'x' in the range [1,65536], which is all we need. */
|
|
|
|
|
static unsigned int
|
|
|
|
|
round_up_pow2(unsigned int x)
|
|
|
|
|
{
|
|
|
|
|
x--;
|
|
|
|
|
x |= x >> 1;
|
|
|
|
|
x |= x >> 2;
|
|
|
|
|
x |= x >> 4;
|
|
|
|
|
x |= x >> 8;
|
|
|
|
|
return x + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint16_t
|
|
|
|
|
algorithm_iter_hash(uint32_t hash, unsigned int n_links, unsigned int modulo)
|
|
|
|
|
{
|
|
|
|
|
uint16_t link;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (modulo < n_links || modulo / 2 > n_links) {
|
|
|
|
|
modulo = round_up_pow2(n_links);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
do {
|
|
|
|
|
link = hash_2words(hash, i++) % modulo;
|
|
|
|
|
} while (link >= n_links);
|
|
|
|
|
|
|
|
|
|
return link;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint16_t
|
|
|
|
|
multipath_algorithm(uint32_t hash, enum nx_mp_algorithm algorithm,
|
|
|
|
|
unsigned int n_links, unsigned int arg)
|
|
|
|
|
{
|
|
|
|
|
switch (algorithm) {
|
|
|
|
|
case NX_MP_ALG_MODULO_N:
|
|
|
|
|
return hash % n_links;
|
|
|
|
|
|
|
|
|
|
case NX_MP_ALG_HASH_THRESHOLD:
|
2011-01-21 17:09:21 -08:00
|
|
|
|
if (n_links == 1) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return hash / (UINT32_MAX / n_links + 1);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
|
|
|
|
|
case NX_MP_ALG_HRW:
|
|
|
|
|
return (n_links <= 64
|
|
|
|
|
? algorithm_hrw(hash, n_links)
|
|
|
|
|
: algorithm_iter_hash(hash, n_links, 0));
|
|
|
|
|
|
|
|
|
|
case NX_MP_ALG_ITER_HASH:
|
|
|
|
|
return algorithm_iter_hash(hash, n_links, arg);
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-17 10:32:12 -08:00
|
|
|
|
OVS_NOT_REACHED();
|
2010-12-17 14:38:50 -08:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
/* Parses 's_' as a set of arguments to the "multipath" action and initializes
|
2018-11-08 21:39:55 -08:00
|
|
|
|
* 'mp' accordingly. ovs-actions(7) describes the format parsed.
|
2012-07-03 22:17:14 -07:00
|
|
|
|
*
|
2013-07-08 10:15:00 -07:00
|
|
|
|
* Returns NULL if successful, otherwise a malloc()'d string describing the
|
|
|
|
|
* error. The caller is responsible for freeing the returned string.*/
|
2014-12-15 14:10:38 +01:00
|
|
|
|
static char * OVS_WARN_UNUSED_RESULT
|
2013-07-08 10:15:00 -07:00
|
|
|
|
multipath_parse__(struct ofpact_multipath *mp, const char *s_, char *s)
|
2010-12-17 14:38:50 -08:00
|
|
|
|
{
|
|
|
|
|
char *save_ptr = NULL;
|
2012-07-03 22:17:14 -07:00
|
|
|
|
char *fields, *basis, *algorithm, *n_links_str, *arg, *dst;
|
2013-07-08 10:15:00 -07:00
|
|
|
|
char *error;
|
2011-02-22 16:24:19 -08:00
|
|
|
|
int n_links;
|
2010-12-17 14:38:50 -08:00
|
|
|
|
|
|
|
|
|
fields = strtok_r(s, ", ", &save_ptr);
|
|
|
|
|
basis = strtok_r(NULL, ", ", &save_ptr);
|
|
|
|
|
algorithm = strtok_r(NULL, ", ", &save_ptr);
|
2011-02-22 16:24:19 -08:00
|
|
|
|
n_links_str = strtok_r(NULL, ", ", &save_ptr);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
arg = strtok_r(NULL, ", ", &save_ptr);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
dst = strtok_r(NULL, ", ", &save_ptr);
|
|
|
|
|
if (!dst) {
|
2013-07-08 10:15:00 -07:00
|
|
|
|
return xasprintf("%s: not enough arguments to multipath action", s_);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
ofpact_init_MULTIPATH(mp);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
if (!strcasecmp(fields, "eth_src")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mp->fields = NX_HASH_FIELDS_ETH_SRC;
|
2010-12-17 14:38:50 -08:00
|
|
|
|
} else if (!strcasecmp(fields, "symmetric_l4")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mp->fields = NX_HASH_FIELDS_SYMMETRIC_L4;
|
2015-07-06 12:58:24 -05:00
|
|
|
|
} else if (!strcasecmp(fields, "symmetric_l3l4")) {
|
|
|
|
|
mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4;
|
|
|
|
|
} else if (!strcasecmp(fields, "symmetric_l3l4+udp")) {
|
|
|
|
|
mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4_UDP;
|
2017-03-09 12:01:02 +08:00
|
|
|
|
} else if (!strcasecmp(fields, "nw_src")) {
|
|
|
|
|
mp->fields = NX_HASH_FIELDS_NW_SRC;
|
|
|
|
|
} else if (!strcasecmp(fields, "nw_dst")) {
|
|
|
|
|
mp->fields = NX_HASH_FIELDS_NW_DST;
|
2018-10-02 09:40:09 -07:00
|
|
|
|
} else if (!strcasecmp(fields, "symmetric_l3")) {
|
|
|
|
|
mp->fields = NX_HASH_FIELDS_SYMMETRIC_L3;
|
2010-12-17 14:38:50 -08:00
|
|
|
|
} else {
|
2013-07-08 10:15:00 -07:00
|
|
|
|
return xasprintf("%s: unknown fields `%s'", s_, fields);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
}
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mp->basis = atoi(basis);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
if (!strcasecmp(algorithm, "modulo_n")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mp->algorithm = NX_MP_ALG_MODULO_N;
|
2010-12-17 14:38:50 -08:00
|
|
|
|
} else if (!strcasecmp(algorithm, "hash_threshold")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mp->algorithm = NX_MP_ALG_HASH_THRESHOLD;
|
2010-12-17 14:38:50 -08:00
|
|
|
|
} else if (!strcasecmp(algorithm, "hrw")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mp->algorithm = NX_MP_ALG_HRW;
|
2010-12-17 14:38:50 -08:00
|
|
|
|
} else if (!strcasecmp(algorithm, "iter_hash")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mp->algorithm = NX_MP_ALG_ITER_HASH;
|
2010-12-17 14:38:50 -08:00
|
|
|
|
} else {
|
2013-07-08 10:15:00 -07:00
|
|
|
|
return xasprintf("%s: unknown algorithm `%s'", s_, algorithm);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
}
|
2011-02-22 16:24:19 -08:00
|
|
|
|
n_links = atoi(n_links_str);
|
|
|
|
|
if (n_links < 1 || n_links > 65536) {
|
2013-07-08 10:15:00 -07:00
|
|
|
|
return xasprintf("%s: n_links %d is not in valid range 1 to 65536",
|
|
|
|
|
s_, n_links);
|
2011-02-22 16:24:19 -08:00
|
|
|
|
}
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mp->max_link = n_links - 1;
|
|
|
|
|
mp->arg = atoi(arg);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
|
2013-07-08 10:15:00 -07:00
|
|
|
|
error = mf_parse_subfield(&mp->dst, dst);
|
|
|
|
|
if (error) {
|
|
|
|
|
return error;
|
|
|
|
|
}
|
ofp-actions: Support experimenter OXMs in Nicira extensions.
Some of the Nicira extension actions include fixed-size 32-bit members that
designate NXM fields. These actions can't accommodate 64-bit experimenter
OXMs, so we need to figure out some kind of solution. This commit does
that, in different ways for different actions.
For some actions, I did not think it was worthwhile to worry about
experimenter OXM, so I just disabled use of them. This is what I did for
bundle, learn, and multipath actions.
Other actions could be gracefully reinterpreted to support experimenter
OXM. This is true of reg_move, which use NXM headers only at the end of
the action and such that using an experimenter OXM would make the action
longer (which unambigously signals to older OVS that the action is an
error, which is desired behavior since older OVS cannot interpret this
action). The stack push and pop actions are also in this category.
reg_load was the most frustrating case. In OpenFlow 1.5 we had already
eliminated this action in favor of OF1.5+ set_field. In other OpenFlow
versions, though, reg_load is more powerful than set_field because it
can modify partial fields. This commit therefore adds a new variant of
reg_load, called reg_load2, which is simply OF1.5+ set_field with a Nicira
extension header on it.
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
2014-09-11 22:09:03 -07:00
|
|
|
|
if (!mf_nxm_header(mp->dst.field->id)) {
|
|
|
|
|
return xasprintf("%s: experimenter OXM field '%s' not supported",
|
2019-04-30 15:01:00 -07:00
|
|
|
|
s_, dst);
|
ofp-actions: Support experimenter OXMs in Nicira extensions.
Some of the Nicira extension actions include fixed-size 32-bit members that
designate NXM fields. These actions can't accommodate 64-bit experimenter
OXMs, so we need to figure out some kind of solution. This commit does
that, in different ways for different actions.
For some actions, I did not think it was worthwhile to worry about
experimenter OXM, so I just disabled use of them. This is what I did for
bundle, learn, and multipath actions.
Other actions could be gracefully reinterpreted to support experimenter
OXM. This is true of reg_move, which use NXM headers only at the end of
the action and such that using an experimenter OXM would make the action
longer (which unambigously signals to older OVS that the action is an
error, which is desired behavior since older OVS cannot interpret this
action). The stack push and pop actions are also in this category.
reg_load was the most frustrating case. In OpenFlow 1.5 we had already
eliminated this action in favor of OF1.5+ set_field. In other OpenFlow
versions, though, reg_load is more powerful than set_field because it
can modify partial fields. This commit therefore adds a new variant of
reg_load, called reg_load2, which is simply OF1.5+ set_field with a Nicira
extension header on it.
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
2014-09-11 22:09:03 -07:00
|
|
|
|
}
|
2012-07-03 22:17:14 -07:00
|
|
|
|
if (mp->dst.n_bits < 16 && n_links > (1u << mp->dst.n_bits)) {
|
2013-07-08 10:15:00 -07:00
|
|
|
|
return xasprintf("%s: %d-bit destination field has %u possible "
|
|
|
|
|
"values, less than specified n_links %d",
|
|
|
|
|
s_, mp->dst.n_bits, 1u << mp->dst.n_bits, n_links);
|
2011-02-22 16:24:19 -08:00
|
|
|
|
}
|
2010-12-17 14:38:50 -08:00
|
|
|
|
|
2013-07-08 10:15:00 -07:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parses 's_' as a set of arguments to the "multipath" action and initializes
|
2018-11-08 21:39:55 -08:00
|
|
|
|
* 'mp' accordingly. ovs-actions(7) describes the format parsed.
|
2013-07-08 10:15:00 -07:00
|
|
|
|
*
|
|
|
|
|
* Returns NULL if successful, otherwise a malloc()'d string describing the
|
|
|
|
|
* error. The caller is responsible for freeing the returned string. */
|
2014-12-15 14:10:38 +01:00
|
|
|
|
char * OVS_WARN_UNUSED_RESULT
|
2013-07-08 10:15:00 -07:00
|
|
|
|
multipath_parse(struct ofpact_multipath *mp, const char *s_)
|
|
|
|
|
{
|
|
|
|
|
char *s = xstrdup(s_);
|
|
|
|
|
char *error = multipath_parse__(mp, s_, s);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
free(s);
|
2013-07-08 10:15:00 -07:00
|
|
|
|
return error;
|
2010-12-17 14:38:50 -08:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-08 21:39:55 -08:00
|
|
|
|
/* Appends a description of 'mp' to 's', in the format that ovs-actions(7)
|
2012-07-03 22:17:14 -07:00
|
|
|
|
* describes. */
|
2010-12-17 14:38:50 -08:00
|
|
|
|
void
|
2012-07-03 22:17:14 -07:00
|
|
|
|
multipath_format(const struct ofpact_multipath *mp, struct ds *s)
|
2010-12-17 14:38:50 -08:00
|
|
|
|
{
|
|
|
|
|
const char *fields, *algorithm;
|
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
fields = flow_hash_fields_to_str(mp->fields);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
|
switch (mp->algorithm) {
|
2010-12-17 14:38:50 -08:00
|
|
|
|
case NX_MP_ALG_MODULO_N:
|
|
|
|
|
algorithm = "modulo_n";
|
|
|
|
|
break;
|
|
|
|
|
case NX_MP_ALG_HASH_THRESHOLD:
|
|
|
|
|
algorithm = "hash_threshold";
|
|
|
|
|
break;
|
|
|
|
|
case NX_MP_ALG_HRW:
|
|
|
|
|
algorithm = "hrw";
|
|
|
|
|
break;
|
|
|
|
|
case NX_MP_ALG_ITER_HASH:
|
|
|
|
|
algorithm = "iter_hash";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
algorithm = "<unknown>";
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-17 13:38:55 -07:00
|
|
|
|
ds_put_format(s, "%smultipath(%s%s,%"PRIu16",%s,%d,%"PRIu32",",
|
2016-03-02 15:56:20 +01:00
|
|
|
|
colors.paren, colors.end, fields, mp->basis, algorithm,
|
|
|
|
|
mp->max_link + 1, mp->arg);
|
2012-07-03 22:17:14 -07:00
|
|
|
|
mf_format_subfield(&mp->dst, s);
|
2016-03-02 15:56:20 +01:00
|
|
|
|
ds_put_format(s, "%s)%s", colors.paren, colors.end);
|
2010-12-17 14:38:50 -08:00
|
|
|
|
}
|