X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fmultipath.c;h=a6f549ca6715ff138710d4f92f6fb748eaeb0062;hb=28c5588e8e1a8d091c5d2275232c35f2968a97fa;hp=f6a1a0aee4451e4127eb84d730b9f71d42552b28;hpb=f25d0cf3c366d92042269a4f787f19c741c2530c;p=sliver-openvswitch.git diff --git a/lib/multipath.c b/lib/multipath.c index f6a1a0aee..a6f549ca6 100644 --- a/lib/multipath.c +++ b/lib/multipath.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2011, 2012 Nicira, Inc. + * Copyright (c) 2010, 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. @@ -63,7 +63,7 @@ multipath_from_openflow(const struct nx_action_multipath *nam, VLOG_WARN_RL(&rl, "unsupported algorithm %d", (int) mp->algorithm); return OFPERR_OFPBAC_BAD_ARGUMENT; } else if (mp->dst.n_bits < min_n_bits) { - VLOG_WARN_RL(&rl, "multipath action requires at least %zu bits for " + VLOG_WARN_RL(&rl, "multipath action requires at least %"PRIuSIZE" bits for " "%"PRIu32" links", min_n_bits, n_links); return OFPERR_OFPBAC_BAD_ARGUMENT; } @@ -102,16 +102,19 @@ static uint16_t multipath_algorithm(uint32_t hash, enum nx_mp_algorithm, unsigned int n_links, unsigned int arg); /* Executes 'mp' based on the current contents of 'flow', writing the results - * back into 'flow'. */ + * back into 'flow'. Sets fields in 'wc' that were used to calculate + * the result. */ void -multipath_execute(const struct ofpact_multipath *mp, struct flow *flow) +multipath_execute(const struct ofpact_multipath *mp, struct flow *flow, + struct flow_wildcards *wc) { /* Calculate value to store. */ 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); - nxm_reg_load(&mp->dst, link, flow); + flow_mask_hash_fields(flow, wc, mp->fields); + nxm_reg_load(&mp->dst, link, flow, wc); } static uint16_t @@ -186,20 +189,20 @@ multipath_algorithm(uint32_t hash, enum nx_mp_algorithm algorithm, return algorithm_iter_hash(hash, n_links, arg); } - NOT_REACHED(); + OVS_NOT_REACHED(); } /* Parses 's_' as a set of arguments to the "multipath" action and initializes * 'mp' accordingly. ovs-ofctl(8) describes the format parsed. * - * Prints an error on stderr and aborts the program if 's_' syntax is - * invalid. */ -void -multipath_parse(struct ofpact_multipath *mp, const char *s_) + * 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 +multipath_parse__(struct ofpact_multipath *mp, const char *s_, char *s) { - char *s = xstrdup(s_); char *save_ptr = NULL; char *fields, *basis, *algorithm, *n_links_str, *arg, *dst; + char *error; int n_links; fields = strtok_r(s, ", ", &save_ptr); @@ -209,7 +212,7 @@ multipath_parse(struct ofpact_multipath *mp, const char *s_) arg = strtok_r(NULL, ", ", &save_ptr); dst = strtok_r(NULL, ", ", &save_ptr); if (!dst) { - ovs_fatal(0, "%s: not enough arguments to multipath action", s_); + return xasprintf("%s: not enough arguments to multipath action", s_); } ofpact_init_MULTIPATH(mp); @@ -218,7 +221,7 @@ multipath_parse(struct ofpact_multipath *mp, const char *s_) } else if (!strcasecmp(fields, "symmetric_l4")) { mp->fields = NX_HASH_FIELDS_SYMMETRIC_L4; } else { - ovs_fatal(0, "%s: unknown fields `%s'", s_, fields); + return xasprintf("%s: unknown fields `%s'", s_, fields); } mp->basis = atoi(basis); if (!strcasecmp(algorithm, "modulo_n")) { @@ -230,24 +233,41 @@ multipath_parse(struct ofpact_multipath *mp, const char *s_) } else if (!strcasecmp(algorithm, "iter_hash")) { mp->algorithm = NX_MP_ALG_ITER_HASH; } else { - ovs_fatal(0, "%s: unknown algorithm `%s'", s_, algorithm); + return xasprintf("%s: unknown algorithm `%s'", s_, algorithm); } n_links = atoi(n_links_str); if (n_links < 1 || n_links > 65536) { - ovs_fatal(0, "%s: n_links %d is not in valid range 1 to 65536", - s_, n_links); + return xasprintf("%s: n_links %d is not in valid range 1 to 65536", + s_, n_links); } mp->max_link = n_links - 1; mp->arg = atoi(arg); - mf_parse_subfield(&mp->dst, dst); + error = mf_parse_subfield(&mp->dst, dst); + if (error) { + return error; + } if (mp->dst.n_bits < 16 && n_links > (1u << mp->dst.n_bits)) { - ovs_fatal(0, "%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); + 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); } + return NULL; +} + +/* Parses 's_' as a set of arguments to the "multipath" action and initializes + * 'mp' accordingly. ovs-ofctl(8) describes the format parsed. + * + * 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 +multipath_parse(struct ofpact_multipath *mp, const char *s_) +{ + char *s = xstrdup(s_); + char *error = multipath_parse__(mp, s_, s); free(s); + return error; } /* Appends a description of 'mp' to 's', in the format that ovs-ofctl(8)