summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-07-20 15:07:46 -0700
committerEthan Jackson <ethan@nicira.com>2011-07-22 17:46:48 -0700
commita368bb53d9769ae42042e122775672ac9546e3f9 (patch)
tree4cbb05275c16ffd4ab6d5121eeb78accf0c08b63 /lib
parent04a85497b994b0cb1c702d4ff8b0d2149767ae0e (diff)
downloadopenvswitch-a368bb53d9769ae42042e122775672ac9546e3f9.tar.gz
bundle: New action "bundle_load".
The bundle_load action behaves the same as the bundle action, except instead of outputting, it writes its result to a register.
Diffstat (limited to 'lib')
-rw-r--r--lib/bundle.c121
-rw-r--r--lib/bundle.h7
-rw-r--r--lib/ofp-parse.c2
-rw-r--r--lib/ofp-print.c1
-rw-r--r--lib/ofp-util.c4
-rw-r--r--lib/ofp-util.h3
6 files changed, 116 insertions, 22 deletions
diff --git a/lib/bundle.c b/lib/bundle.c
index 593bd87d9..227d3597c 100644
--- a/lib/bundle.c
+++ b/lib/bundle.c
@@ -88,12 +88,22 @@ bundle_execute(const struct nx_action_bundle *nab, const struct flow *flow,
}
}
+void
+bundle_execute_load(const struct nx_action_bundle *nab, struct flow *flow,
+ bool (*slave_enabled)(uint16_t ofp_port, void *aux),
+ void *aux)
+{
+ nxm_reg_load(nab->dst, nab->ofs_nbits,
+ bundle_execute(nab, flow, slave_enabled, aux), flow);
+}
+
/* Checks that 'nab' specifies a bundle action which is supported by this
* bundle module. Uses the 'max_ports' parameter to validate each port using
* ofputil_check_output_port(). Returns 0 if 'nab' is supported, otherwise an
* OpenFlow error code (as returned by ofp_mkerr()). */
int
-bundle_check(const struct nx_action_bundle *nab, int max_ports)
+bundle_check(const struct nx_action_bundle *nab, int max_ports,
+ const struct flow *flow)
{
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
uint16_t n_slaves, fields, algorithm, subtype;
@@ -129,6 +139,15 @@ bundle_check(const struct nx_action_bundle *nab, int max_ports)
}
}
+ if (subtype == NXAST_BUNDLE && (nab->ofs_nbits || nab->dst)) {
+ VLOG_WARN_RL(&rl, "bundle action has nonzero reserved fields");
+ error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT);
+ }
+
+ if (subtype == NXAST_BUNDLE_LOAD) {
+ error = nxm_dst_check(nab->dst, nab->ofs_nbits, 16, flow) || error;
+ }
+
if (slaves_size < n_slaves * sizeof(ovs_be16)) {
VLOG_WARN_RL(&rl, "Nicira action %"PRIu16" only has %zu bytes "
"allocated for slaves. %zu bytes are required for "
@@ -158,24 +177,16 @@ bundle_check(const struct nx_action_bundle *nab, int max_ports)
return error;
}
-/* Converts a bundle action string contained in 's' to an nx_action_bundle and
- * stores it in 'b'. Sets 'b''s l2 pointer to NULL. */
-void
-bundle_parse(struct ofpbuf *b, const char *s)
+/* Helper for bundle_parse and bundle_parse_load. */
+static void
+bundle_parse__(struct ofpbuf *b, const char *s, char **save_ptr,
+ const char *fields, const char *basis, const char *algorithm,
+ const char *slave_type, const char *dst,
+ const char *slave_delim)
{
- char *fields, *basis, *algorithm, *slave_type, *slave_delim;
struct nx_action_bundle *nab;
- char *tokstr, *save_ptr;
uint16_t n_slaves;
- save_ptr = NULL;
- tokstr = xstrdup(s);
- fields = strtok_r(tokstr, ", ", &save_ptr);
- basis = strtok_r(NULL, ", ", &save_ptr);
- algorithm = strtok_r(NULL, ", ", &save_ptr);
- slave_type = strtok_r(NULL, ", ", &save_ptr);
- slave_delim = strtok_r(NULL, ": ", &save_ptr);
-
if (!slave_delim) {
ovs_fatal(0, "%s: not enough arguments to bundle action", s);
}
@@ -192,7 +203,7 @@ bundle_parse(struct ofpbuf *b, const char *s)
ovs_be16 slave_be;
char *slave;
- slave = strtok_r(NULL, ", ", &save_ptr);
+ slave = strtok_r(NULL, ", ", save_ptr);
if (!slave || n_slaves >= BUNDLE_MAX_SLAVES) {
break;
}
@@ -212,7 +223,7 @@ bundle_parse(struct ofpbuf *b, const char *s)
nab->type = htons(OFPAT_VENDOR);
nab->len = htons(b->size - ((char *) b->l2 - (char *) b->data));
nab->vendor = htonl(NX_VENDOR_ID);
- nab->subtype = htons(NXAST_BUNDLE);
+ nab->subtype = htons(dst ? NXAST_BUNDLE_LOAD: NXAST_BUNDLE);
nab->n_slaves = htons(n_slaves);
nab->basis = htons(atoi(basis));
@@ -238,7 +249,60 @@ bundle_parse(struct ofpbuf *b, const char *s)
ovs_fatal(0, "%s: unknown slave_type `%s'", s, slave_type);
}
+ if (dst) {
+ uint32_t reg;
+ int ofs, n_bits;
+
+ nxm_parse_field_bits(dst, &reg, &ofs, &n_bits);
+
+ nab->dst = htonl(reg);
+ nab->ofs_nbits = nxm_encode_ofs_nbits(ofs, n_bits);
+ }
+
b->l2 = NULL;
+}
+
+/* Converts a bundle action string contained in 's' to an nx_action_bundle and
+ * stores it in 'b'. Sets 'b''s l2 pointer to NULL. */
+void
+bundle_parse(struct ofpbuf *b, const char *s)
+{
+ char *fields, *basis, *algorithm, *slave_type, *slave_delim;
+ char *tokstr, *save_ptr;
+
+ save_ptr = NULL;
+ tokstr = xstrdup(s);
+ fields = strtok_r(tokstr, ", ", &save_ptr);
+ basis = strtok_r(NULL, ", ", &save_ptr);
+ algorithm = strtok_r(NULL, ", ", &save_ptr);
+ slave_type = strtok_r(NULL, ", ", &save_ptr);
+ slave_delim = strtok_r(NULL, ": ", &save_ptr);
+
+ bundle_parse__(b, s, &save_ptr, fields, basis, algorithm, slave_type, NULL,
+ slave_delim);
+ free(tokstr);
+}
+
+/* Converts a bundle_load action string contained in 's' to an nx_action_bundle
+ * and stores it in 'b'. Sets 'b''s l2 pointer to NULL. */
+void
+bundle_parse_load(struct ofpbuf *b, const char *s)
+{
+ char *fields, *basis, *algorithm, *slave_type, *dst, *slave_delim;
+ char *tokstr, *save_ptr;
+
+ save_ptr = NULL;
+ tokstr = xstrdup(s);
+ fields = strtok_r(tokstr, ", ", &save_ptr);
+ basis = strtok_r(NULL, ", ", &save_ptr);
+ algorithm = strtok_r(NULL, ", ", &save_ptr);
+ slave_type = strtok_r(NULL, ", ", &save_ptr);
+ dst = strtok_r(NULL, ", ", &save_ptr);
+ slave_delim = strtok_r(NULL, ": ", &save_ptr);
+
+ bundle_parse__(b, s, &save_ptr, fields, basis, algorithm, slave_type, dst,
+ slave_delim);
+
free(tokstr);
}
@@ -246,7 +310,7 @@ bundle_parse(struct ofpbuf *b, const char *s)
void
bundle_format(const struct nx_action_bundle *nab, struct ds *s)
{
- const char *fields, *algorithm, *slave_type;
+ const char *action, *fields, *algorithm, *slave_type;
size_t i;
fields = flow_hash_fields_to_str(ntohs(nab->fields));
@@ -270,9 +334,28 @@ bundle_format(const struct nx_action_bundle *nab, struct ds *s)
slave_type = "<unknown>";
}
- ds_put_format(s, "bundle(%s,%"PRIu16",%s,%s,slaves:", fields,
+ switch (ntohs(nab->subtype)) {
+ case NXAST_BUNDLE:
+ action = "bundle";
+ break;
+ case NXAST_BUNDLE_LOAD:
+ action = "bundle_load";
+ break;
+ default:
+ NOT_REACHED();
+ }
+
+ ds_put_format(s, "%s(%s,%"PRIu16",%s,%s,", action, fields,
ntohs(nab->basis), algorithm, slave_type);
+ if (nab->subtype == htons(NXAST_BUNDLE_LOAD)) {
+ nxm_format_field_bits(s, ntohl(nab->dst),
+ nxm_decode_ofs(nab->ofs_nbits),
+ nxm_decode_n_bits(nab->ofs_nbits));
+ ds_put_cstr(s, ",");
+ }
+
+ ds_put_cstr(s, "slaves:");
for (i = 0; i < ntohs(nab->n_slaves); i++) {
if (i) {
ds_put_cstr(s, ",");
diff --git a/lib/bundle.h b/lib/bundle.h
index a202ade49..12497f788 100644
--- a/lib/bundle.h
+++ b/lib/bundle.h
@@ -35,8 +35,13 @@ struct ofpbuf;
uint16_t bundle_execute(const struct nx_action_bundle *, const struct flow *,
bool (*slave_enabled)(uint16_t ofp_port, void *aux),
void *aux);
-int bundle_check(const struct nx_action_bundle *, int max_ports);
+void bundle_execute_load(const struct nx_action_bundle *, struct flow *,
+ bool (*slave_enabled)(uint16_t ofp_port, void *aux),
+ void *aux);
+int bundle_check(const struct nx_action_bundle *, int max_ports,
+ const struct flow *);
void bundle_parse(struct ofpbuf *, const char *);
+void bundle_parse_load(struct ofpbuf *b, const char *);
void bundle_format(const struct nx_action_bundle *, struct ds *);
/* Returns the 'i'th slave in 'nab'. */
diff --git a/lib/ofp-parse.c b/lib/ofp-parse.c
index 25056e7f3..58b0da1ea 100644
--- a/lib/ofp-parse.c
+++ b/lib/ofp-parse.c
@@ -507,6 +507,8 @@ str_to_action(char *str, struct ofpbuf *b)
autopath_parse(naa, arg);
} else if (!strcasecmp(act, "bundle")) {
bundle_parse(b, arg);
+ } else if (!strcasecmp(act, "bundle_load")) {
+ bundle_parse_load(b, arg);
} else if (!strcasecmp(act, "output")) {
put_output_action(b, str_to_u32(arg));
} else if (!strcasecmp(act, "enqueue")) {
diff --git a/lib/ofp-print.c b/lib/ofp-print.c
index aa3ff542e..cb361a633 100644
--- a/lib/ofp-print.c
+++ b/lib/ofp-print.c
@@ -344,6 +344,7 @@ ofp_print_action(struct ds *s, const union ofp_action *a,
break;
case OFPUTIL_NXAST_BUNDLE:
+ case OFPUTIL_NXAST_BUNDLE_LOAD:
bundle_format((const struct nx_action_bundle *) a, s);
break;
diff --git a/lib/ofp-util.c b/lib/ofp-util.c
index 2e62b9188..df3377ae9 100644
--- a/lib/ofp-util.c
+++ b/lib/ofp-util.c
@@ -2039,8 +2039,9 @@ validate_actions(const union ofp_action *actions, size_t n_actions,
break;
case OFPUTIL_NXAST_BUNDLE:
+ case OFPUTIL_NXAST_BUNDLE_LOAD:
error = bundle_check((const struct nx_action_bundle *) a,
- max_ports);
+ max_ports, flow);
break;
case OFPUTIL_OFPAT_STRIP_VLAN:
@@ -2116,6 +2117,7 @@ static const struct ofputil_nxast_action nxast_actions[] = {
{ OFPUTIL_NXAST_MULTIPATH, 32, 32 },
{ OFPUTIL_NXAST_AUTOPATH, 24, 24 },
{ OFPUTIL_NXAST_BUNDLE, 32, UINT_MAX },
+ { OFPUTIL_NXAST_BUNDLE_LOAD, 32, UINT_MAX },
};
static int
diff --git a/lib/ofp-util.h b/lib/ofp-util.h
index 7938aa0c2..7ee3e69f7 100644
--- a/lib/ofp-util.h
+++ b/lib/ofp-util.h
@@ -302,7 +302,8 @@ enum ofputil_action_code {
OFPUTIL_NXAST_SET_TUNNEL64,
OFPUTIL_NXAST_MULTIPATH,
OFPUTIL_NXAST_AUTOPATH,
- OFPUTIL_NXAST_BUNDLE
+ OFPUTIL_NXAST_BUNDLE,
+ OFPUTIL_NXAST_BUNDLE_LOAD,
};
int ofputil_decode_action(const union ofp_action *);