aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2015-10-16 13:36:46 -0700
committerBen Pfaff <blp@nicira.com>2015-10-16 23:52:40 -0700
commite51d619c27effc3f9b40c510c78eec44681b6077 (patch)
tree61745da66529a4e8f20d2cdb980bbe332f2378fa
parent58bcc67cd136bd1734d108c50b2f91c530d2cb1b (diff)
patch: Allow client to determine port names.
Calculating the patch port names from the bridge names makes sense when there's only one pair of patch ports between a pair of bridges, but that won't be the case for an upcoming use of patch ports. This changes makes it easy to check for existing patch ports in create_patch_port(), instead of in its caller, and since that seems like a more sensible place this change also moves it there. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Justin Pettit <jpettit@nicira.com>
-rw-r--r--ovn/controller/patch.c117
1 files changed, 56 insertions, 61 deletions
diff --git a/ovn/controller/patch.c b/ovn/controller/patch.c
index 15135e9c9..67f72afd8 100644
--- a/ovn/controller/patch.c
+++ b/ovn/controller/patch.c
@@ -25,102 +25,95 @@
VLOG_DEFINE_THIS_MODULE(patch);
static char *
-patch_port_name(const struct ovsrec_bridge *b1, const struct ovsrec_bridge *b2)
+patch_port_name(const char *src, const char *dst)
{
- return xasprintf("patch-%s-to-%s", b1->name, b2->name);
+ return xasprintf("patch-%s-to-%s", src, dst);
}
-/*
- * Return true if the port is a patch port from b1 to b2
- */
+/* Return true if 'port' is a patch port with the specified 'peer'. */
static bool
-match_patch_port(const struct ovsrec_port *port,
- const struct ovsrec_bridge *b1,
- const struct ovsrec_bridge *b2)
+match_patch_port(const struct ovsrec_port *port, const char *peer)
{
- struct ovsrec_interface *iface;
- size_t i;
- char *peer_port_name;
- bool res = false;
-
- peer_port_name = patch_port_name(b2, b1);
-
- for (i = 0; i < port->n_interfaces; i++) {
- iface = port->interfaces[i];
+ for (size_t i = 0; i < port->n_interfaces; i++) {
+ struct ovsrec_interface *iface = port->interfaces[i];
if (strcmp(iface->type, "patch")) {
continue;
}
- const char *peer;
- peer = smap_get(&iface->options, "peer");
- if (peer && !strcmp(peer, peer_port_name)) {
- res = true;
- break;
+ const char *iface_peer = smap_get(&iface->options, "peer");
+ if (peer && !strcmp(iface_peer, peer)) {
+ return true;
}
}
-
- free(peer_port_name);
-
- return res;
+ return false;
}
+/* Creates a patch port in bridge 'src' named 'src_name', whose peer is
+ * 'dst_name' in bridge 'dst'. Initializes the patch port's
+ * external-ids:ovn-patch-port to 'network'.
+ *
+ * If such a patch port already exists, removes it from 'existing_ports'. */
static void
create_patch_port(struct controller_ctx *ctx,
const char *network,
- const struct ovsrec_bridge *b1,
- const struct ovsrec_bridge *b2)
+ const struct ovsrec_bridge *src, const char *src_name,
+ const struct ovsrec_bridge *dst, const char *dst_name,
+ struct shash *existing_ports)
{
- char *port_name = patch_port_name(b1, b2);
- char *peer_port_name = patch_port_name(b2, b1);
+ for (size_t i = 0; i < src->n_ports; i++) {
+ if (match_patch_port(src->ports[i], dst_name)) {
+ /* Patch port already exists on 'src'. */
+ shash_find_and_delete(existing_ports, src->ports[i]->name);
+ return;
+ }
+ }
ovsdb_idl_txn_add_comment(ctx->ovs_idl_txn,
"ovn-controller: creating patch port '%s' from '%s' to '%s'",
- port_name, b1->name, b2->name);
+ src_name, src->name, dst->name);
struct ovsrec_interface *iface;
iface = ovsrec_interface_insert(ctx->ovs_idl_txn);
- ovsrec_interface_set_name(iface, port_name);
+ ovsrec_interface_set_name(iface, src_name);
ovsrec_interface_set_type(iface, "patch");
- const struct smap options = SMAP_CONST1(&options, "peer", peer_port_name);
+ const struct smap options = SMAP_CONST1(&options, "peer", dst_name);
ovsrec_interface_set_options(iface, &options);
struct ovsrec_port *port;
port = ovsrec_port_insert(ctx->ovs_idl_txn);
- ovsrec_port_set_name(port, port_name);
+ ovsrec_port_set_name(port, src_name);
ovsrec_port_set_interfaces(port, &iface, 1);
const struct smap ids = SMAP_CONST1(&ids, "ovn-patch-port", network);
ovsrec_port_set_external_ids(port, &ids);
struct ovsrec_port **ports;
- ports = xmalloc(sizeof *ports * (b1->n_ports + 1));
- memcpy(ports, b1->ports, sizeof *ports * b1->n_ports);
- ports[b1->n_ports] = port;
- ovsrec_bridge_verify_ports(b1);
- ovsrec_bridge_set_ports(b1, ports, b1->n_ports + 1);
+ ports = xmalloc(sizeof *ports * (src->n_ports + 1));
+ memcpy(ports, src->ports, sizeof *ports * src->n_ports);
+ ports[src->n_ports] = port;
+ ovsrec_bridge_verify_ports(src);
+ ovsrec_bridge_set_ports(src, ports, src->n_ports + 1);
free(ports);
- free(port_name);
- free(peer_port_name);
}
+/* Creates a pair of patch ports that connect bridges 'b1' and 'b2', using a
+ * port named 'name1' and 'name2' in each respective bridge.
+ * external-ids:ovn-patch-port in each port is initialized to 'network'.
+ *
+ * If one or both of the ports already exists, leaves it there and removes it
+ * from 'existing_ports'. */
static void
create_patch_ports(struct controller_ctx *ctx,
const char *network,
- struct shash *existing_ports,
const struct ovsrec_bridge *b1,
- const struct ovsrec_bridge *b2)
+ const struct ovsrec_bridge *b2,
+ struct shash *existing_ports)
{
- size_t i;
-
- for (i = 0; i < b1->n_ports; i++) {
- if (match_patch_port(b1->ports[i], b1, b2)) {
- /* Patch port already exists on b1 */
- shash_find_and_delete(existing_ports, b1->ports[i]->name);
- break;
- }
- }
- if (i == b1->n_ports) {
- create_patch_port(ctx, network, b1, b2);
- }
+ char *name1 = patch_port_name(b1->name, b2->name);
+ char *name2 = patch_port_name(b2->name, b1->name);
+ create_patch_port(ctx, network, b1, name1, b2, name2, existing_ports);
+ create_patch_port(ctx, network, b2, name2, b1, name1, existing_ports);
+ free(name2);
+ free(name1);
}
static void
@@ -154,10 +147,13 @@ remove_port(struct controller_ctx *ctx,
}
}
+/* Obtains external-ids:ovn-bridge-mappings from OVSDB and adds patch ports for
+ * the local bridge mappings. Removes any patch ports for bridge mappings that
+ * already existed from 'existing_ports'. */
static void
-parse_bridge_mappings(struct controller_ctx *ctx,
- const struct ovsrec_bridge *br_int,
- struct shash *existing_ports)
+add_bridge_mappings(struct controller_ctx *ctx,
+ const struct ovsrec_bridge *br_int,
+ struct shash *existing_ports)
{
/* Get ovn-bridge-mappings. */
const char *mappings_cfg = "";
@@ -191,8 +187,7 @@ parse_bridge_mappings(struct controller_ctx *ctx,
continue;
}
- create_patch_ports(ctx, network, existing_ports, br_int, ovs_bridge);
- create_patch_ports(ctx, network, existing_ports, ovs_bridge, br_int);
+ create_patch_ports(ctx, network, br_int, ovs_bridge, existing_ports);
}
free(start);
}
@@ -216,7 +211,7 @@ patch_run(struct controller_ctx *ctx, const struct ovsrec_bridge *br_int)
/* Create in the database any patch ports that should exist. Remove from
* 'existing_ports' any patch ports that do exist in the database and
* should be there. */
- parse_bridge_mappings(ctx, br_int, &existing_ports);
+ add_bridge_mappings(ctx, br_int, &existing_ports);
/* Now 'existing_ports' only still contains patch ports that exist in the
* database but shouldn't. Delete them from the database. */