2017-05-31 16:06:12 -07:00
|
|
|
/* Copyright (c) 2011, 2012, 2013, 2014, 2015, 2016, 2017 Nicira, Inc.
|
2011-06-10 17:45:45 -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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "bundle.h"
|
|
|
|
|
2017-11-06 14:42:32 -08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netinet/in.h>
|
2011-06-10 17:45:45 -07:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2016-03-02 15:56:20 +01:00
|
|
|
#include "colors.h"
|
2011-06-10 17:45:45 -07:00
|
|
|
#include "multipath.h"
|
|
|
|
#include "nx-match.h"
|
|
|
|
#include "openflow/nicira-ext.h"
|
2016-04-14 15:20:19 -07:00
|
|
|
#include "openvswitch/dynamic-string.h"
|
|
|
|
#include "openvswitch/meta-flow.h"
|
|
|
|
#include "openvswitch/ofp-actions.h"
|
2016-03-03 10:20:43 -08:00
|
|
|
#include "openvswitch/ofp-errors.h"
|
2018-02-09 10:04:26 -08:00
|
|
|
#include "openvswitch/ofp-port.h"
|
2016-04-14 15:20:19 -07:00
|
|
|
#include "openvswitch/ofpbuf.h"
|
2014-12-15 14:10:38 +01:00
|
|
|
#include "openvswitch/vlog.h"
|
2016-07-12 16:37:34 -05:00
|
|
|
#include "util.h"
|
2011-06-10 17:45:45 -07:00
|
|
|
|
|
|
|
VLOG_DEFINE_THIS_MODULE(bundle);
|
|
|
|
|
2013-06-19 16:58:44 -07:00
|
|
|
static ofp_port_t
|
2012-07-03 22:17:14 -07:00
|
|
|
execute_ab(const struct ofpact_bundle *bundle,
|
2020-06-17 14:16:08 -07:00
|
|
|
bool (*member_enabled)(ofp_port_t ofp_port, void *aux), void *aux)
|
2011-07-18 13:50:26 -07:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
for (i = 0; i < bundle->n_members; i++) {
|
|
|
|
ofp_port_t member = bundle->members[i];
|
|
|
|
if (member_enabled(member, aux)) {
|
|
|
|
return member;
|
2011-07-18 13:50:26 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return OFPP_NONE;
|
|
|
|
}
|
|
|
|
|
2013-06-19 16:58:44 -07:00
|
|
|
static ofp_port_t
|
2013-05-14 18:24:43 -07:00
|
|
|
execute_hrw(const struct ofpact_bundle *bundle,
|
|
|
|
const struct flow *flow, struct flow_wildcards *wc,
|
2020-06-17 14:16:08 -07:00
|
|
|
bool (*member_enabled)(ofp_port_t ofp_port, void *aux), void *aux)
|
2011-06-10 17:45:45 -07:00
|
|
|
{
|
|
|
|
uint32_t flow_hash, best_hash;
|
|
|
|
int best, i;
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
if (bundle->n_members > 1) {
|
2013-06-26 16:37:16 -07:00
|
|
|
flow_mask_hash_fields(flow, wc, bundle->fields);
|
2013-05-14 18:24:43 -07:00
|
|
|
}
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
flow_hash = flow_hash_fields(flow, bundle->fields, bundle->basis);
|
2011-06-10 17:45:45 -07:00
|
|
|
best = -1;
|
2011-07-20 09:51:29 -07:00
|
|
|
best_hash = 0;
|
2011-06-10 17:45:45 -07:00
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
for (i = 0; i < bundle->n_members; i++) {
|
|
|
|
if (member_enabled(bundle->members[i], aux)) {
|
2011-06-10 17:45:45 -07:00
|
|
|
uint32_t hash = hash_2words(i, flow_hash);
|
|
|
|
|
|
|
|
if (best < 0 || hash > best_hash) {
|
|
|
|
best_hash = hash;
|
|
|
|
best = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
return best >= 0 ? bundle->members[best] : OFPP_NONE;
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
2013-05-14 18:24:43 -07:00
|
|
|
/* Executes 'bundle' on 'flow'. Sets fields in 'wc' that were used to
|
2020-06-17 14:16:08 -07:00
|
|
|
* calculate the result. Uses 'member_enabled' to determine if the member
|
|
|
|
* designated by 'ofp_port' is up. Returns the chosen member, or
|
|
|
|
* OFPP_NONE if none of the members are acceptable. */
|
2013-06-19 16:58:44 -07:00
|
|
|
ofp_port_t
|
2013-05-14 18:24:43 -07:00
|
|
|
bundle_execute(const struct ofpact_bundle *bundle,
|
|
|
|
const struct flow *flow, struct flow_wildcards *wc,
|
2020-06-17 14:16:08 -07:00
|
|
|
bool (*member_enabled)(ofp_port_t ofp_port, void *aux),
|
2013-06-19 16:58:44 -07:00
|
|
|
void *aux)
|
2011-07-18 13:50:26 -07:00
|
|
|
{
|
2012-07-03 22:17:14 -07:00
|
|
|
switch (bundle->algorithm) {
|
|
|
|
case NX_BD_ALG_HRW:
|
2020-06-17 14:16:08 -07:00
|
|
|
return execute_hrw(bundle, flow, wc, member_enabled, aux);
|
2011-07-18 13:50:26 -07:00
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
case NX_BD_ALG_ACTIVE_BACKUP:
|
2020-06-17 14:16:08 -07:00
|
|
|
return execute_ab(bundle, member_enabled, aux);
|
2011-12-28 12:42:14 -08:00
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
default:
|
2013-12-17 10:32:12 -08:00
|
|
|
OVS_NOT_REACHED();
|
2012-07-03 22:17:14 -07:00
|
|
|
}
|
2011-07-20 15:07:46 -07:00
|
|
|
}
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
enum ofperr
|
2013-06-19 16:58:44 -07:00
|
|
|
bundle_check(const struct ofpact_bundle *bundle, ofp_port_t max_ports,
|
2017-03-08 17:18:22 -08:00
|
|
|
const struct match *match)
|
2012-07-03 22:17:14 -07:00
|
|
|
{
|
|
|
|
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (bundle->dst.field) {
|
2017-03-08 17:18:22 -08:00
|
|
|
enum ofperr error = mf_check_dst(&bundle->dst, match);
|
2012-07-03 22:17:14 -07:00
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
for (i = 0; i < bundle->n_members; i++) {
|
|
|
|
ofp_port_t ofp_port = bundle->members[i];
|
2011-06-10 17:45:45 -07:00
|
|
|
|
2015-07-29 08:36:07 -07:00
|
|
|
if (ofp_port != OFPP_NONE) {
|
|
|
|
enum ofperr error = ofpact_check_output_port(ofp_port, max_ports);
|
|
|
|
if (error) {
|
2020-06-17 14:16:08 -07:00
|
|
|
VLOG_WARN_RL(&rl, "invalid member %"PRIu32, ofp_port);
|
2015-07-29 08:36:07 -07:00
|
|
|
return error;
|
|
|
|
}
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
2020-06-17 14:16:08 -07:00
|
|
|
/* Controller members are unsupported due to the lack of a max_len
|
2011-06-10 17:45:45 -07:00
|
|
|
* argument. This may or may not change in the future. There doesn't
|
|
|
|
* seem to be a real-world use-case for supporting it. */
|
|
|
|
if (ofp_port == OFPP_CONTROLLER) {
|
2020-06-17 14:16:08 -07:00
|
|
|
VLOG_WARN_RL(&rl, "unsupported controller member");
|
2012-07-03 22:17:14 -07:00
|
|
|
return OFPERR_OFPBAC_BAD_OUT_PORT;
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-06-10 17:45:45 -07:00
|
|
|
|
2013-07-08 10:15:00 -07:00
|
|
|
/* Helper for bundle_parse and bundle_parse_load.
|
|
|
|
*
|
|
|
|
* 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
|
2017-05-31 16:06:12 -07:00
|
|
|
bundle_parse__(const char *s, const struct ofputil_port_map *port_map,
|
|
|
|
char **save_ptr,
|
2011-07-20 15:07:46 -07:00
|
|
|
const char *fields, const char *basis, const char *algorithm,
|
2020-06-17 14:16:08 -07:00
|
|
|
const char *member_type, const char *dst,
|
|
|
|
const char *member_delim, struct ofpbuf *ofpacts)
|
2011-06-10 17:45:45 -07:00
|
|
|
{
|
2012-07-03 22:17:14 -07:00
|
|
|
struct ofpact_bundle *bundle;
|
2011-06-10 17:45:45 -07:00
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
if (!member_delim) {
|
2013-07-08 10:15:00 -07:00
|
|
|
return xasprintf("%s: not enough arguments to bundle action", s);
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
if (strcasecmp(member_delim, "members")
|
|
|
|
&& strcasecmp(member_delim, "slaves")) {
|
|
|
|
return xasprintf("%s: missing member delimiter, expected `members', "
|
|
|
|
"got `%s'", s, member_delim);
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
bundle = ofpact_put_BUNDLE(ofpacts);
|
2011-06-10 17:45:45 -07:00
|
|
|
|
|
|
|
for (;;) {
|
2020-06-17 14:16:08 -07:00
|
|
|
ofp_port_t member_port;
|
|
|
|
char *member;
|
2011-06-10 17:45:45 -07:00
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
member = strtok_r(NULL, ", []", save_ptr);
|
|
|
|
if (!member || bundle->n_members >= BUNDLE_MAX_MEMBERS) {
|
2011-06-10 17:45:45 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
if (!ofputil_port_from_string(member, port_map, &member_port)) {
|
|
|
|
return xasprintf("%s: bad port number", member);
|
2012-09-20 08:40:29 -07:00
|
|
|
}
|
2020-06-17 14:16:08 -07:00
|
|
|
ofpbuf_put(ofpacts, &member_port, sizeof member_port);
|
2011-06-10 17:45:45 -07:00
|
|
|
|
2015-03-02 17:29:44 -08:00
|
|
|
bundle = ofpacts->header;
|
2020-06-17 14:16:08 -07:00
|
|
|
bundle->n_members++;
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
2019-03-20 13:40:19 -07:00
|
|
|
|
|
|
|
if (ofpbuf_oversized(ofpacts)) {
|
|
|
|
return xasprintf("input too big");
|
|
|
|
}
|
|
|
|
|
2016-04-12 22:00:25 -07:00
|
|
|
ofpact_finish_BUNDLE(ofpacts, &bundle);
|
2012-07-03 22:17:14 -07:00
|
|
|
bundle->basis = atoi(basis);
|
2011-06-10 17:45:45 -07:00
|
|
|
|
|
|
|
if (!strcasecmp(fields, "eth_src")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
bundle->fields = NX_HASH_FIELDS_ETH_SRC;
|
2011-06-10 17:45:45 -07:00
|
|
|
} else if (!strcasecmp(fields, "symmetric_l4")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L4;
|
2015-07-06 12:58:24 -05:00
|
|
|
} else if (!strcasecmp(fields, "symmetric_l3l4")) {
|
|
|
|
bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4;
|
|
|
|
} else if (!strcasecmp(fields, "symmetric_l3l4+udp")) {
|
|
|
|
bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3L4_UDP;
|
2017-03-09 12:01:02 +08:00
|
|
|
} else if (!strcasecmp(fields, "nw_src")) {
|
|
|
|
bundle->fields = NX_HASH_FIELDS_NW_SRC;
|
|
|
|
} else if (!strcasecmp(fields, "nw_dst")) {
|
|
|
|
bundle->fields = NX_HASH_FIELDS_NW_DST;
|
2018-10-02 09:40:09 -07:00
|
|
|
} else if (!strcasecmp(fields, "symmetric_l3")) {
|
|
|
|
bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L3;
|
2011-06-10 17:45:45 -07:00
|
|
|
} else {
|
2013-07-08 10:15:00 -07:00
|
|
|
return xasprintf("%s: unknown fields `%s'", s, fields);
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcasecmp(algorithm, "active_backup")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
bundle->algorithm = NX_BD_ALG_ACTIVE_BACKUP;
|
2011-06-10 17:45:45 -07:00
|
|
|
} else if (!strcasecmp(algorithm, "hrw")) {
|
2012-07-03 22:17:14 -07:00
|
|
|
bundle->algorithm = NX_BD_ALG_HRW;
|
2011-06-10 17:45:45 -07:00
|
|
|
} else {
|
2013-07-08 10:15:00 -07:00
|
|
|
return xasprintf("%s: unknown algorithm `%s'", s, algorithm);
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
if (strcasecmp(member_type, "ofport")) {
|
|
|
|
return xasprintf("%s: unknown member_type `%s'", s, member_type);
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
if (dst) {
|
2013-07-08 10:15:00 -07:00
|
|
|
char *error = mf_parse_subfield(&bundle->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(bundle->dst.field->id)) {
|
|
|
|
return xasprintf("%s: experimenter OXM field '%s' not supported",
|
|
|
|
s, dst);
|
|
|
|
}
|
2011-07-20 15:07:46 -07:00
|
|
|
}
|
2013-07-08 10:15:00 -07:00
|
|
|
|
|
|
|
return NULL;
|
2011-07-20 15:07:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Converts a bundle action string contained in 's' to an nx_action_bundle and
|
2013-07-08 10:15:00 -07:00
|
|
|
* stores it in 'b'. Sets 'b''s l2 pointer to NULL.
|
|
|
|
*
|
|
|
|
* 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
|
2017-05-31 16:06:12 -07:00
|
|
|
bundle_parse(const char *s, const struct ofputil_port_map *port_map,
|
|
|
|
struct ofpbuf *ofpacts)
|
2011-07-20 15:07:46 -07:00
|
|
|
{
|
2020-06-17 14:16:08 -07:00
|
|
|
char *fields, *basis, *algorithm, *member_type, *member_delim;
|
2011-07-20 15:07:46 -07:00
|
|
|
char *tokstr, *save_ptr;
|
2013-07-08 10:15:00 -07:00
|
|
|
char *error;
|
2011-07-20 15:07:46 -07:00
|
|
|
|
|
|
|
save_ptr = NULL;
|
|
|
|
tokstr = xstrdup(s);
|
|
|
|
fields = strtok_r(tokstr, ", ", &save_ptr);
|
|
|
|
basis = strtok_r(NULL, ", ", &save_ptr);
|
|
|
|
algorithm = strtok_r(NULL, ", ", &save_ptr);
|
2020-06-17 14:16:08 -07:00
|
|
|
member_type = strtok_r(NULL, ", ", &save_ptr);
|
|
|
|
member_delim = strtok_r(NULL, ": ", &save_ptr);
|
2011-07-20 15:07:46 -07:00
|
|
|
|
2017-05-31 16:06:12 -07:00
|
|
|
error = bundle_parse__(s, port_map,
|
2020-06-17 14:16:08 -07:00
|
|
|
&save_ptr, fields, basis, algorithm, member_type,
|
|
|
|
NULL, member_delim, ofpacts);
|
2011-07-20 15:07:46 -07:00
|
|
|
free(tokstr);
|
2013-07-08 10:15:00 -07:00
|
|
|
|
|
|
|
return error;
|
2011-07-20 15:07:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Converts a bundle_load action string contained in 's' to an nx_action_bundle
|
2013-07-08 10:15:00 -07:00
|
|
|
* and stores it in 'b'. Sets 'b''s l2 pointer to NULL.
|
|
|
|
*
|
|
|
|
* 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
|
2017-05-31 16:06:12 -07:00
|
|
|
bundle_parse_load(const char *s, const struct ofputil_port_map *port_map,
|
|
|
|
struct ofpbuf *ofpacts)
|
2011-07-20 15:07:46 -07:00
|
|
|
{
|
2020-06-17 14:16:08 -07:00
|
|
|
char *fields, *basis, *algorithm, *member_type, *dst, *member_delim;
|
2011-07-20 15:07:46 -07:00
|
|
|
char *tokstr, *save_ptr;
|
2013-07-08 10:15:00 -07:00
|
|
|
char *error;
|
2011-07-20 15:07:46 -07:00
|
|
|
|
|
|
|
save_ptr = NULL;
|
|
|
|
tokstr = xstrdup(s);
|
|
|
|
fields = strtok_r(tokstr, ", ", &save_ptr);
|
|
|
|
basis = strtok_r(NULL, ", ", &save_ptr);
|
|
|
|
algorithm = strtok_r(NULL, ", ", &save_ptr);
|
2020-06-17 14:16:08 -07:00
|
|
|
member_type = strtok_r(NULL, ", ", &save_ptr);
|
2011-07-20 15:07:46 -07:00
|
|
|
dst = strtok_r(NULL, ", ", &save_ptr);
|
2020-06-17 14:16:08 -07:00
|
|
|
member_delim = strtok_r(NULL, ": ", &save_ptr);
|
2011-07-20 15:07:46 -07:00
|
|
|
|
2017-05-31 16:06:12 -07:00
|
|
|
error = bundle_parse__(s, port_map,
|
2020-06-17 14:16:08 -07:00
|
|
|
&save_ptr, fields, basis, algorithm, member_type,
|
|
|
|
dst, member_delim, ofpacts);
|
2011-07-20 15:07:46 -07:00
|
|
|
|
2011-06-10 17:45:45 -07:00
|
|
|
free(tokstr);
|
2013-07-08 10:15:00 -07:00
|
|
|
|
|
|
|
return error;
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
2017-05-31 16:06:12 -07:00
|
|
|
/* Appends a human-readable representation of 'nab' to 's'. If 'port_map' is
|
|
|
|
* nonnull, uses it to translate port numbers to names in output. */
|
2011-06-10 17:45:45 -07:00
|
|
|
void
|
2017-05-31 16:06:12 -07:00
|
|
|
bundle_format(const struct ofpact_bundle *bundle,
|
|
|
|
const struct ofputil_port_map *port_map, struct ds *s)
|
2011-06-10 17:45:45 -07:00
|
|
|
{
|
2012-07-03 22:17:14 -07:00
|
|
|
const char *action, *fields, *algorithm;
|
2011-06-10 17:45:45 -07:00
|
|
|
size_t i;
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
fields = flow_hash_fields_to_str(bundle->fields);
|
2011-06-10 17:45:45 -07:00
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
switch (bundle->algorithm) {
|
2011-06-10 17:45:45 -07:00
|
|
|
case NX_BD_ALG_HRW:
|
|
|
|
algorithm = "hrw";
|
|
|
|
break;
|
|
|
|
case NX_BD_ALG_ACTIVE_BACKUP:
|
|
|
|
algorithm = "active_backup";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
algorithm = "<unknown>";
|
|
|
|
}
|
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
action = bundle->dst.field ? "bundle_load" : "bundle";
|
2011-07-20 15:07:46 -07:00
|
|
|
|
2016-03-02 15:56:20 +01:00
|
|
|
ds_put_format(s, "%s%s(%s%s,%"PRIu16",%s,%s,", colors.paren, action,
|
|
|
|
colors.end, fields, bundle->basis, algorithm, "ofport");
|
2011-12-28 12:42:14 -08:00
|
|
|
|
2012-07-03 22:17:14 -07:00
|
|
|
if (bundle->dst.field) {
|
|
|
|
mf_format_subfield(&bundle->dst, s);
|
2016-03-02 15:56:20 +01:00
|
|
|
ds_put_char(s, ',');
|
2011-07-20 15:07:46 -07:00
|
|
|
}
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
ds_put_format(s, "%smembers:%s", colors.param, colors.end);
|
|
|
|
for (i = 0; i < bundle->n_members; i++) {
|
2011-06-10 17:45:45 -07:00
|
|
|
if (i) {
|
2016-03-02 15:56:20 +01:00
|
|
|
ds_put_char(s, ',');
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
2020-06-17 14:16:08 -07:00
|
|
|
ofputil_format_port(bundle->members[i], port_map, s);
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|
|
|
|
|
2016-03-02 15:56:20 +01:00
|
|
|
ds_put_format(s, "%s)%s", colors.paren, colors.end);
|
2011-06-10 17:45:45 -07:00
|
|
|
}
|