X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fbundle.c;h=60a360e1dd7459fb8608d259724d1f99d96bb2fb;hb=cfc50ae514f805dcd9c14589f21158185424daf6;hp=996955f62f011d234e9a0765952d052da0b4d04c;hpb=8815f11cd2fc1ec08c441a020caa30a8844fa16b;p=sliver-openvswitch.git diff --git a/lib/bundle.c b/lib/bundle.c index 996955f62..60a360e1d 100644 --- a/lib/bundle.c +++ b/lib/bundle.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2011 Nicira Networks. +/* Copyright (c) 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. @@ -22,8 +22,11 @@ #include "dynamic-string.h" #include "multipath.h" +#include "meta-flow.h" #include "nx-match.h" #include "ofpbuf.h" +#include "ofp-actions.h" +#include "ofp-errors.h" #include "ofp-util.h" #include "openflow/nicira-ext.h" #include "vlog.h" @@ -32,23 +35,40 @@ VLOG_DEFINE_THIS_MODULE(bundle); -/* Executes 'nab' on 'flow'. Uses 'slave_enabled' to determine if the slave - * designated by 'ofp_port' is up. Returns the chosen slave, or OFPP_NONE if - * none of the slaves are acceptable. */ -uint16_t -bundle_execute(const struct nx_action_bundle *nab, const struct flow *flow, - bool (*slave_enabled)(uint16_t ofp_port, void *aux), void *aux) +static ofp_port_t +execute_ab(const struct ofpact_bundle *bundle, + bool (*slave_enabled)(ofp_port_t ofp_port, void *aux), void *aux) +{ + size_t i; + + for (i = 0; i < bundle->n_slaves; i++) { + ofp_port_t slave = bundle->slaves[i]; + if (slave_enabled(slave, aux)) { + return slave; + } + } + + return OFPP_NONE; +} + +static ofp_port_t +execute_hrw(const struct ofpact_bundle *bundle, + const struct flow *flow, struct flow_wildcards *wc, + bool (*slave_enabled)(ofp_port_t ofp_port, void *aux), void *aux) { uint32_t flow_hash, best_hash; int best, i; - assert(nab->algorithm == htons(NX_BD_ALG_HRW)); + if (bundle->n_slaves > 1) { + flow_mask_hash_fields(flow, wc, bundle->fields); + } - flow_hash = flow_hash_fields(flow, ntohs(nab->fields), ntohs(nab->basis)); + flow_hash = flow_hash_fields(flow, bundle->fields, bundle->basis); best = -1; + best_hash = 0; - for (i = 0; i < ntohs(nab->n_slaves); i++) { - if (slave_enabled(bundle_get_slave(nab, i), aux)) { + for (i = 0; i < bundle->n_slaves; i++) { + if (slave_enabled(bundle->slaves[i], aux)) { uint32_t hash = hash_2words(i, flow_hash); if (best < 0 || hash > best_hash) { @@ -58,64 +78,136 @@ bundle_execute(const struct nx_action_bundle *nab, const struct flow *flow, } } - return best >= 0 ? bundle_get_slave(nab, best) : OFPP_NONE; + return best >= 0 ? bundle->slaves[best] : OFPP_NONE; +} + +/* Executes 'bundle' on 'flow'. Sets fields in 'wc' that were used to + * calculate the result. Uses 'slave_enabled' to determine if the slave + * designated by 'ofp_port' is up. Returns the chosen slave, or + * OFPP_NONE if none of the slaves are acceptable. */ +ofp_port_t +bundle_execute(const struct ofpact_bundle *bundle, + const struct flow *flow, struct flow_wildcards *wc, + bool (*slave_enabled)(ofp_port_t ofp_port, void *aux), + void *aux) +{ + switch (bundle->algorithm) { + case NX_BD_ALG_HRW: + return execute_hrw(bundle, flow, wc, slave_enabled, aux); + + case NX_BD_ALG_ACTIVE_BACKUP: + return execute_ab(bundle, slave_enabled, aux); + + default: + OVS_NOT_REACHED(); + } } /* 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) + * OFPERR_* error code. */ +enum ofperr +bundle_from_openflow(const struct nx_action_bundle *nab, + struct ofpbuf *ofpacts) { static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5); - uint16_t n_slaves, fields, algorithm, subtype; + struct ofpact_bundle *bundle; + uint16_t subtype; uint32_t slave_type; size_t slaves_size, i; - int error; + enum ofperr error; + + bundle = ofpact_put_BUNDLE(ofpacts); subtype = ntohs(nab->subtype); - n_slaves = ntohs(nab->n_slaves); - fields = ntohs(nab->fields); - algorithm = ntohs(nab->algorithm); + bundle->n_slaves = ntohs(nab->n_slaves); + bundle->basis = ntohs(nab->basis); + bundle->fields = ntohs(nab->fields); + bundle->algorithm = ntohs(nab->algorithm); slave_type = ntohl(nab->slave_type); slaves_size = ntohs(nab->len) - sizeof *nab; - error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT); - if (!flow_hash_fields_valid(fields)) { - VLOG_WARN_RL(&rl, "unsupported fields %"PRIu16, fields); - } else if (n_slaves > BUNDLE_MAX_SLAVES) { + error = OFPERR_OFPBAC_BAD_ARGUMENT; + if (!flow_hash_fields_valid(bundle->fields)) { + VLOG_WARN_RL(&rl, "unsupported fields %d", (int) bundle->fields); + } else if (bundle->n_slaves > BUNDLE_MAX_SLAVES) { VLOG_WARN_RL(&rl, "too may slaves"); - } else if (algorithm != NX_BD_ALG_HRW) { - VLOG_WARN_RL(&rl, "unsupported algorithm %"PRIu16, algorithm); + } else if (bundle->algorithm != NX_BD_ALG_HRW + && bundle->algorithm != NX_BD_ALG_ACTIVE_BACKUP) { + VLOG_WARN_RL(&rl, "unsupported algorithm %d", (int) bundle->algorithm); } else if (slave_type != NXM_OF_IN_PORT) { VLOG_WARN_RL(&rl, "unsupported slave type %"PRIu16, slave_type); } else { error = 0; } - for (i = 0; i < sizeof(nab->zero); i++) { - if (nab->zero[i]) { - VLOG_WARN_RL(&rl, "reserved field is nonzero"); - error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_ARGUMENT); + if (!is_all_zeros(nab->zero, sizeof nab->zero)) { + VLOG_WARN_RL(&rl, "reserved field is nonzero"); + error = OFPERR_OFPBAC_BAD_ARGUMENT; + } + + if (subtype == NXAST_BUNDLE && (nab->ofs_nbits || nab->dst)) { + VLOG_WARN_RL(&rl, "bundle action has nonzero reserved fields"); + error = OFPERR_OFPBAC_BAD_ARGUMENT; + } + + if (subtype == NXAST_BUNDLE_LOAD) { + bundle->dst.field = mf_from_nxm_header(ntohl(nab->dst)); + bundle->dst.ofs = nxm_decode_ofs(nab->ofs_nbits); + bundle->dst.n_bits = nxm_decode_n_bits(nab->ofs_nbits); + + if (bundle->dst.n_bits < 16) { + VLOG_WARN_RL(&rl, "bundle_load action requires at least 16 bit " + "destination."); + error = OFPERR_OFPBAC_BAD_ARGUMENT; } } - 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 " + if (slaves_size < bundle->n_slaves * sizeof(ovs_be16)) { + VLOG_WARN_RL(&rl, "Nicira action %"PRIu16" only has %"PRIuSIZE" bytes " + "allocated for slaves. %"PRIuSIZE" bytes are required for " "%"PRIu16" slaves.", subtype, slaves_size, - n_slaves * sizeof(ovs_be16), n_slaves); - error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_LEN); + bundle->n_slaves * sizeof(ovs_be16), bundle->n_slaves); + error = OFPERR_OFPBAC_BAD_LEN; } - for (i = 0; i < n_slaves; i++) { - uint16_t ofp_port = bundle_get_slave(nab, i); - int ofputil_error = ofputil_check_output_port(ofp_port, max_ports); + for (i = 0; i < bundle->n_slaves; i++) { + uint16_t ofp_port = ntohs(((ovs_be16 *)(nab + 1))[i]); + ofpbuf_put(ofpacts, &ofp_port, sizeof ofp_port); + } + + bundle = ofpacts->frame; + ofpact_update_len(ofpacts, &bundle->ofpact); - if (ofputil_error) { + if (!error) { + error = bundle_check(bundle, OFPP_MAX, NULL); + } + return error; +} + +enum ofperr +bundle_check(const struct ofpact_bundle *bundle, ofp_port_t max_ports, + const struct flow *flow) +{ + static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5); + size_t i; + + if (bundle->dst.field) { + enum ofperr error = mf_check_dst(&bundle->dst, flow); + if (error) { + return error; + } + } + + for (i = 0; i < bundle->n_slaves; i++) { + ofp_port_t ofp_port = bundle->slaves[i]; + enum ofperr error; + + error = ofpact_check_output_port(ofp_port, max_ports); + if (error) { VLOG_WARN_RL(&rl, "invalid slave %"PRIu16, ofp_port); - error = ofputil_error; + return error; } /* Controller slaves are unsupported due to the lack of a max_len @@ -123,107 +215,182 @@ bundle_check(const struct nx_action_bundle *nab, int max_ports) * seem to be a real-world use-case for supporting it. */ if (ofp_port == OFPP_CONTROLLER) { VLOG_WARN_RL(&rl, "unsupported controller slave"); - error = ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_BAD_OUT_PORT); + return OFPERR_OFPBAC_BAD_OUT_PORT; } } - return error; + return 0; } -/* 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) +bundle_to_nxast(const struct ofpact_bundle *bundle, struct ofpbuf *openflow) { - char *fields, *basis, *algorithm, *slave_type, *slave_delim; + int slaves_len = ROUND_UP(2 * bundle->n_slaves, OFP_ACTION_ALIGN); struct nx_action_bundle *nab; - char *tokstr, *save_ptr; - uint16_t n_slaves; + ovs_be16 *slaves; + size_t i; - 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); + nab = (bundle->dst.field + ? ofputil_put_NXAST_BUNDLE_LOAD(openflow) + : ofputil_put_NXAST_BUNDLE(openflow)); + nab->len = htons(ntohs(nab->len) + slaves_len); + nab->algorithm = htons(bundle->algorithm); + nab->fields = htons(bundle->fields); + nab->basis = htons(bundle->basis); + nab->slave_type = htonl(NXM_OF_IN_PORT); + nab->n_slaves = htons(bundle->n_slaves); + if (bundle->dst.field) { + nab->ofs_nbits = nxm_encode_ofs_nbits(bundle->dst.ofs, + bundle->dst.n_bits); + nab->dst = htonl(bundle->dst.field->nxm_header); + } + + slaves = ofpbuf_put_zeros(openflow, slaves_len); + for (i = 0; i < bundle->n_slaves; i++) { + slaves[i] = htons(ofp_to_u16(bundle->slaves[i])); + } +} + +/* 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.*/ +static char * WARN_UNUSED_RESULT +bundle_parse__(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, struct ofpbuf *ofpacts) +{ + struct ofpact_bundle *bundle; if (!slave_delim) { - ovs_fatal(0, "%s: not enough arguments to bundle action", s); + return xasprintf("%s: not enough arguments to bundle action", s); } if (strcasecmp(slave_delim, "slaves")) { - ovs_fatal(0, "%s: missing slave delimiter, expected `slaves' got `%s'", - s, slave_delim); + return xasprintf("%s: missing slave delimiter, expected `slaves' " + "got `%s'", s, slave_delim); } - b->l2 = ofpbuf_put_zeros(b, sizeof *nab); + bundle = ofpact_put_BUNDLE(ofpacts); - n_slaves = 0; for (;;) { - ovs_be16 slave_be; + ofp_port_t slave_port; char *slave; - slave = strtok_r(NULL, ", ", &save_ptr); - if (!slave || n_slaves >= BUNDLE_MAX_SLAVES) { + slave = strtok_r(NULL, ", []", save_ptr); + if (!slave || bundle->n_slaves >= BUNDLE_MAX_SLAVES) { break; } - slave_be = htons(atoi(slave)); - ofpbuf_put(b, &slave_be, sizeof slave_be); - - n_slaves++; - } + if (!ofputil_port_from_string(slave, &slave_port)) { + return xasprintf("%s: bad port number", slave); + } + ofpbuf_put(ofpacts, &slave_port, sizeof slave_port); - /* Slaves array must be multiple of 8 bytes long. */ - if (b->size % 8) { - ofpbuf_put_zeros(b, 8 - (b->size % 8)); + bundle = ofpacts->frame; + bundle->n_slaves++; } + ofpact_update_len(ofpacts, &bundle->ofpact); - nab = b->l2; - 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->n_slaves = htons(n_slaves); - nab->basis = htons(atoi(basis)); + bundle->basis = atoi(basis); if (!strcasecmp(fields, "eth_src")) { - nab->fields = htons(NX_HASH_FIELDS_ETH_SRC); + bundle->fields = NX_HASH_FIELDS_ETH_SRC; } else if (!strcasecmp(fields, "symmetric_l4")) { - nab->fields = htons(NX_HASH_FIELDS_SYMMETRIC_L4); + bundle->fields = NX_HASH_FIELDS_SYMMETRIC_L4; } else { - ovs_fatal(0, "%s: unknown fields `%s'", s, fields); + return xasprintf("%s: unknown fields `%s'", s, fields); } if (!strcasecmp(algorithm, "active_backup")) { - nab->algorithm = htons(NX_BD_ALG_ACTIVE_BACKUP); + bundle->algorithm = NX_BD_ALG_ACTIVE_BACKUP; } else if (!strcasecmp(algorithm, "hrw")) { - nab->algorithm = htons(NX_BD_ALG_HRW); + bundle->algorithm = NX_BD_ALG_HRW; } else { - ovs_fatal(0, "%s: unknown algorithm `%s'", s, algorithm); + return xasprintf("%s: unknown algorithm `%s'", s, algorithm); } - if (!strcasecmp(slave_type, "ofport")) { - nab->slave_type = htonl(NXM_OF_IN_PORT); - } else { - ovs_fatal(0, "%s: unknown slave_type `%s'", s, slave_type); + if (strcasecmp(slave_type, "ofport")) { + return xasprintf("%s: unknown slave_type `%s'", s, slave_type); + } + + if (dst) { + char *error = mf_parse_subfield(&bundle->dst, dst); + if (error) { + return error; + } } - b->l2 = NULL; + return 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. + * + * Returns NULL if successful, otherwise a malloc()'d string describing the + * error. The caller is responsible for freeing the returned string. */ +char * WARN_UNUSED_RESULT +bundle_parse(const char *s, struct ofpbuf *ofpacts) +{ + char *fields, *basis, *algorithm, *slave_type, *slave_delim; + char *tokstr, *save_ptr; + char *error; + + 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); + + error = bundle_parse__(s, &save_ptr, fields, basis, algorithm, slave_type, + NULL, slave_delim, ofpacts); + free(tokstr); + + return error; +} + +/* 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. + * + * Returns NULL if successful, otherwise a malloc()'d string describing the + * error. The caller is responsible for freeing the returned string.*/ +char * WARN_UNUSED_RESULT +bundle_parse_load(const char *s, struct ofpbuf *ofpacts) +{ + char *fields, *basis, *algorithm, *slave_type, *dst, *slave_delim; + char *tokstr, *save_ptr; + char *error; + + 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); + + error = bundle_parse__(s, &save_ptr, fields, basis, algorithm, slave_type, + dst, slave_delim, ofpacts); + free(tokstr); + + return error; } /* Appends a human-readable representation of 'nab' to 's'. */ void -bundle_format(const struct nx_action_bundle *nab, struct ds *s) +bundle_format(const struct ofpact_bundle *bundle, struct ds *s) { - const char *fields, *algorithm, *slave_type; + const char *action, *fields, *algorithm; size_t i; - fields = flow_hash_fields_to_str(ntohs(nab->fields)); + fields = flow_hash_fields_to_str(bundle->fields); - switch (ntohs(nab->algorithm)) { + switch (bundle->algorithm) { case NX_BD_ALG_HRW: algorithm = "hrw"; break; @@ -234,23 +401,23 @@ bundle_format(const struct nx_action_bundle *nab, struct ds *s) algorithm = ""; } - switch (ntohl(nab->slave_type)) { - case NXM_OF_IN_PORT: - slave_type = "ofport"; - break; - default: - slave_type = ""; - } + action = bundle->dst.field ? "bundle_load" : "bundle"; + + ds_put_format(s, "%s(%s,%"PRIu16",%s,%s,", action, fields, + bundle->basis, algorithm, "ofport"); - ds_put_format(s, "bundle(%s,%"PRIu16",%s,%s,slaves:", fields, - ntohs(nab->basis), algorithm, slave_type); + if (bundle->dst.field) { + mf_format_subfield(&bundle->dst, s); + ds_put_cstr(s, ","); + } - for (i = 0; i < ntohs(nab->n_slaves); i++) { + ds_put_cstr(s, "slaves:"); + for (i = 0; i < bundle->n_slaves; i++) { if (i) { ds_put_cstr(s, ","); } - ds_put_format(s, "%"PRIu16, bundle_get_slave(nab, i)); + ofputil_format_port(bundle->slaves[i], s); } ds_put_cstr(s, ")");