2009-07-08 13:19:16 -07:00
|
|
|
|
/*
|
2013-02-11 13:11:42 -08:00
|
|
|
|
* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -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:
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* 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.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include "classifier.h"
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <netinet/in.h>
|
2010-11-22 10:10:14 -08:00
|
|
|
|
#include "byte-order.h"
|
2010-02-11 13:47:30 -08:00
|
|
|
|
#include "dynamic-string.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
#include "flow.h"
|
|
|
|
|
#include "hash.h"
|
2010-11-23 12:31:50 -08:00
|
|
|
|
#include "odp-util.h"
|
2010-11-10 14:39:54 -08:00
|
|
|
|
#include "ofp-util.h"
|
2010-11-03 11:00:58 -07:00
|
|
|
|
#include "packets.h"
|
2013-07-11 14:19:11 -07:00
|
|
|
|
#include "ovs-thread.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
static struct cls_subtable *find_subtable(const struct classifier *,
|
|
|
|
|
const struct minimask *);
|
|
|
|
|
static struct cls_subtable *insert_subtable(struct classifier *,
|
|
|
|
|
const struct minimask *);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
static void destroy_subtable(struct classifier *, struct cls_subtable *);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
static void update_subtables_after_insertion(struct classifier *,
|
|
|
|
|
struct cls_subtable *,
|
|
|
|
|
unsigned int new_priority);
|
|
|
|
|
static void update_subtables_after_removal(struct classifier *,
|
|
|
|
|
struct cls_subtable *,
|
|
|
|
|
unsigned int del_priority);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
static struct cls_rule *find_match(const struct cls_subtable *,
|
2010-11-03 11:00:58 -07:00
|
|
|
|
const struct flow *);
|
2013-10-29 16:39:52 -07:00
|
|
|
|
static struct cls_rule *find_equal(struct cls_subtable *,
|
2012-09-04 12:43:53 -07:00
|
|
|
|
const struct miniflow *, uint32_t hash);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
static struct cls_rule *insert_rule(struct classifier *,
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *, struct cls_rule *);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
|
|
|
|
|
/* Iterates RULE over HEAD and all of the cls_rules on HEAD->list. */
|
|
|
|
|
#define FOR_EACH_RULE_IN_LIST(RULE, HEAD) \
|
|
|
|
|
for ((RULE) = (HEAD); (RULE) != NULL; (RULE) = next_rule_in_list(RULE))
|
|
|
|
|
#define FOR_EACH_RULE_IN_LIST_SAFE(RULE, NEXT, HEAD) \
|
|
|
|
|
for ((RULE) = (HEAD); \
|
|
|
|
|
(RULE) != NULL && ((NEXT) = next_rule_in_list(RULE), true); \
|
|
|
|
|
(RULE) = (NEXT))
|
|
|
|
|
|
2010-11-19 16:41:02 -08:00
|
|
|
|
static struct cls_rule *next_rule_in_list__(struct cls_rule *);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
static struct cls_rule *next_rule_in_list(struct cls_rule *);
|
2012-08-07 15:28:18 -07:00
|
|
|
|
|
|
|
|
|
/* cls_rule. */
|
2010-11-03 11:00:58 -07:00
|
|
|
|
|
2012-08-07 15:28:18 -07:00
|
|
|
|
/* Initializes 'rule' to match packets specified by 'match' at the given
|
2012-09-04 12:43:53 -07:00
|
|
|
|
* 'priority'. 'match' must satisfy the invariant described in the comment at
|
|
|
|
|
* the definition of struct match.
|
2010-11-23 10:06:28 -08:00
|
|
|
|
*
|
2012-08-20 11:29:43 -07:00
|
|
|
|
* The caller must eventually destroy 'rule' with cls_rule_destroy().
|
|
|
|
|
*
|
2012-08-07 15:28:18 -07:00
|
|
|
|
* (OpenFlow uses priorities between 0 and UINT16_MAX, inclusive, but
|
|
|
|
|
* internally Open vSwitch supports a wider range.) */
|
2012-04-25 15:48:40 -07:00
|
|
|
|
void
|
2012-08-07 15:28:18 -07:00
|
|
|
|
cls_rule_init(struct cls_rule *rule,
|
|
|
|
|
const struct match *match, unsigned int priority)
|
2012-04-25 15:48:40 -07:00
|
|
|
|
{
|
2012-09-04 12:43:53 -07:00
|
|
|
|
minimatch_init(&rule->match, match);
|
|
|
|
|
rule->priority = priority;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Same as cls_rule_init() for initialization from a "struct minimatch". */
|
|
|
|
|
void
|
|
|
|
|
cls_rule_init_from_minimatch(struct cls_rule *rule,
|
|
|
|
|
const struct minimatch *match,
|
|
|
|
|
unsigned int priority)
|
|
|
|
|
{
|
|
|
|
|
minimatch_clone(&rule->match, match);
|
2012-08-07 15:28:18 -07:00
|
|
|
|
rule->priority = priority;
|
2011-02-01 22:54:11 -08:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-20 11:29:43 -07:00
|
|
|
|
/* Initializes 'dst' as a copy of 'src'.
|
|
|
|
|
*
|
2013-08-27 12:25:48 -07:00
|
|
|
|
* The caller must eventually destroy 'dst' with cls_rule_destroy(). */
|
2012-08-20 11:29:43 -07:00
|
|
|
|
void
|
|
|
|
|
cls_rule_clone(struct cls_rule *dst, const struct cls_rule *src)
|
|
|
|
|
{
|
2012-09-04 12:43:53 -07:00
|
|
|
|
minimatch_clone(&dst->match, &src->match);
|
|
|
|
|
dst->priority = src->priority;
|
2012-08-20 11:29:43 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-27 12:25:48 -07:00
|
|
|
|
/* Initializes 'dst' with the data in 'src', destroying 'src'.
|
|
|
|
|
*
|
|
|
|
|
* The caller must eventually destroy 'dst' with cls_rule_destroy(). */
|
|
|
|
|
void
|
|
|
|
|
cls_rule_move(struct cls_rule *dst, struct cls_rule *src)
|
|
|
|
|
{
|
|
|
|
|
minimatch_move(&dst->match, &src->match);
|
|
|
|
|
dst->priority = src->priority;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-20 11:29:43 -07:00
|
|
|
|
/* Frees memory referenced by 'rule'. Doesn't free 'rule' itself (it's
|
|
|
|
|
* normally embedded into a larger structure).
|
|
|
|
|
*
|
|
|
|
|
* ('rule' must not currently be in a classifier.) */
|
|
|
|
|
void
|
2012-09-04 12:43:53 -07:00
|
|
|
|
cls_rule_destroy(struct cls_rule *rule)
|
2012-08-20 11:29:43 -07:00
|
|
|
|
{
|
2012-09-04 12:43:53 -07:00
|
|
|
|
minimatch_destroy(&rule->match);
|
2012-08-20 11:29:43 -07:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-07 15:28:18 -07:00
|
|
|
|
/* Returns true if 'a' and 'b' match the same packets at the same priority,
|
|
|
|
|
* false if they differ in some way. */
|
2010-11-08 16:35:34 -08:00
|
|
|
|
bool
|
|
|
|
|
cls_rule_equal(const struct cls_rule *a, const struct cls_rule *b)
|
|
|
|
|
{
|
2012-09-04 12:43:53 -07:00
|
|
|
|
return a->priority == b->priority && minimatch_equal(&a->match, &b->match);
|
2010-11-08 16:35:34 -08:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-07 15:28:18 -07:00
|
|
|
|
/* Returns a hash value for 'rule', folding in 'basis'. */
|
2011-05-26 16:24:38 -07:00
|
|
|
|
uint32_t
|
|
|
|
|
cls_rule_hash(const struct cls_rule *rule, uint32_t basis)
|
|
|
|
|
{
|
2012-09-04 12:43:53 -07:00
|
|
|
|
return minimatch_hash(&rule->match, hash_int(rule->priority, basis));
|
2012-01-27 17:16:05 -08:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-07 15:28:18 -07:00
|
|
|
|
/* Appends a string describing 'rule' to 's'. */
|
2010-11-23 12:31:50 -08:00
|
|
|
|
void
|
|
|
|
|
cls_rule_format(const struct cls_rule *rule, struct ds *s)
|
|
|
|
|
{
|
2012-09-04 12:43:53 -07:00
|
|
|
|
minimatch_format(&rule->match, s, rule->priority);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
2012-07-20 14:46:15 -07:00
|
|
|
|
|
|
|
|
|
/* Returns true if 'rule' matches every packet, false otherwise. */
|
|
|
|
|
bool
|
|
|
|
|
cls_rule_is_catchall(const struct cls_rule *rule)
|
|
|
|
|
{
|
2012-09-04 12:43:53 -07:00
|
|
|
|
return minimask_is_catchall(&rule->match.mask);
|
2012-07-20 14:46:15 -07:00
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
|
|
/* Initializes 'cls' as a classifier that initially contains no classification
|
|
|
|
|
* rules. */
|
|
|
|
|
void
|
|
|
|
|
classifier_init(struct classifier *cls)
|
|
|
|
|
{
|
|
|
|
|
cls->n_rules = 0;
|
2013-10-29 16:39:52 -07:00
|
|
|
|
hmap_init(&cls->subtables);
|
|
|
|
|
list_init(&cls->subtables_priority);
|
2013-09-25 15:07:21 -07:00
|
|
|
|
hmap_init(&cls->partitions);
|
2013-07-11 14:19:11 -07:00
|
|
|
|
ovs_rwlock_init(&cls->rwlock);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Destroys 'cls'. Rules within 'cls', if any, are not freed; this is the
|
|
|
|
|
* caller's responsibility. */
|
|
|
|
|
void
|
|
|
|
|
classifier_destroy(struct classifier *cls)
|
|
|
|
|
{
|
|
|
|
|
if (cls) {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *partition, *next_partition;
|
|
|
|
|
struct cls_subtable *subtable, *next_subtable;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
HMAP_FOR_EACH_SAFE (subtable, next_subtable, hmap_node,
|
|
|
|
|
&cls->subtables) {
|
|
|
|
|
destroy_subtable(cls, subtable);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
2013-10-29 16:39:52 -07:00
|
|
|
|
hmap_destroy(&cls->subtables);
|
2013-09-25 15:07:21 -07:00
|
|
|
|
|
|
|
|
|
HMAP_FOR_EACH_SAFE (partition, next_partition, hmap_node,
|
|
|
|
|
&cls->partitions) {
|
|
|
|
|
hmap_remove(&cls->partitions, &partition->hmap_node);
|
|
|
|
|
free(partition);
|
|
|
|
|
}
|
|
|
|
|
hmap_destroy(&cls->partitions);
|
2013-07-11 14:19:11 -07:00
|
|
|
|
ovs_rwlock_destroy(&cls->rwlock);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
/* Returns true if 'cls' contains no classification rules, false otherwise. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
bool
|
|
|
|
|
classifier_is_empty(const struct classifier *cls)
|
|
|
|
|
{
|
|
|
|
|
return cls->n_rules == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-20 14:54:30 -07:00
|
|
|
|
/* Returns the number of rules in 'cls'. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
int
|
|
|
|
|
classifier_count(const struct classifier *cls)
|
|
|
|
|
{
|
|
|
|
|
return cls->n_rules;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-25 15:07:21 -07:00
|
|
|
|
static uint32_t
|
|
|
|
|
hash_metadata(ovs_be64 metadata_)
|
|
|
|
|
{
|
|
|
|
|
uint64_t metadata = (OVS_FORCE uint64_t) metadata_;
|
|
|
|
|
return hash_2words(metadata, metadata >> 32);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct cls_partition *
|
|
|
|
|
find_partition(const struct classifier *cls, ovs_be64 metadata, uint32_t hash)
|
|
|
|
|
{
|
|
|
|
|
struct cls_partition *partition;
|
|
|
|
|
|
|
|
|
|
HMAP_FOR_EACH_IN_BUCKET (partition, hmap_node, hash, &cls->partitions) {
|
|
|
|
|
if (partition->metadata == metadata) {
|
|
|
|
|
return partition;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct cls_partition *
|
2013-10-29 16:39:52 -07:00
|
|
|
|
create_partition(struct classifier *cls, struct cls_subtable *subtable,
|
2013-09-25 15:07:21 -07:00
|
|
|
|
ovs_be64 metadata)
|
|
|
|
|
{
|
|
|
|
|
uint32_t hash = hash_metadata(metadata);
|
|
|
|
|
struct cls_partition *partition = find_partition(cls, metadata, hash);
|
|
|
|
|
if (!partition) {
|
|
|
|
|
partition = xmalloc(sizeof *partition);
|
|
|
|
|
partition->metadata = metadata;
|
|
|
|
|
partition->tags = 0;
|
2013-09-25 15:36:51 -07:00
|
|
|
|
tag_tracker_init(&partition->tracker);
|
2013-09-25 15:07:21 -07:00
|
|
|
|
hmap_insert(&cls->partitions, &partition->hmap_node, hash);
|
|
|
|
|
}
|
2013-10-29 16:39:52 -07:00
|
|
|
|
tag_tracker_add(&partition->tracker, &partition->tags, subtable->tag);
|
2013-09-25 15:07:21 -07:00
|
|
|
|
return partition;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
/* Inserts 'rule' into 'cls'. Until 'rule' is removed from 'cls', the caller
|
|
|
|
|
* must not modify or free it.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
|
|
|
|
* If 'cls' already contains an identical rule (including wildcards, values of
|
|
|
|
|
* fixed fields, and priority), replaces the old rule by 'rule' and returns the
|
|
|
|
|
* rule that was replaced. The caller takes ownership of the returned rule and
|
2012-08-20 11:29:43 -07:00
|
|
|
|
* is thus responsible for destroying it with cls_rule_destroy(), freeing the
|
|
|
|
|
* memory block in which it resides, etc., as necessary.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
|
|
|
|
* Returns NULL if 'cls' does not contain a rule with an identical key, after
|
|
|
|
|
* inserting the new rule. In this case, no rules are displaced by the new
|
|
|
|
|
* rule, even rules that cannot have any effect because the new rule matches a
|
|
|
|
|
* superset of their flows and has higher priority. */
|
|
|
|
|
struct cls_rule *
|
2011-05-11 14:06:48 -07:00
|
|
|
|
classifier_replace(struct classifier *cls, struct cls_rule *rule)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *old_rule;
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *subtable;
|
2010-11-03 11:00:58 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
subtable = find_subtable(cls, &rule->match.mask);
|
|
|
|
|
if (!subtable) {
|
|
|
|
|
subtable = insert_subtable(cls, &rule->match.mask);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
old_rule = insert_rule(cls, subtable, rule);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
if (!old_rule) {
|
2013-09-25 15:07:21 -07:00
|
|
|
|
if (minimask_get_metadata_mask(&rule->match.mask) == OVS_BE64_MAX) {
|
|
|
|
|
ovs_be64 metadata = miniflow_get_metadata(&rule->match.flow);
|
2013-10-29 16:39:52 -07:00
|
|
|
|
rule->partition = create_partition(cls, subtable, metadata);
|
2013-09-25 15:07:21 -07:00
|
|
|
|
} else {
|
|
|
|
|
rule->partition = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
subtable->n_rules++;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
cls->n_rules++;
|
2013-09-25 15:07:21 -07:00
|
|
|
|
} else {
|
|
|
|
|
rule->partition = old_rule->partition;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
2010-11-03 11:00:58 -07:00
|
|
|
|
return old_rule;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-11 14:06:48 -07:00
|
|
|
|
/* Inserts 'rule' into 'cls'. Until 'rule' is removed from 'cls', the caller
|
|
|
|
|
* must not modify or free it.
|
|
|
|
|
*
|
|
|
|
|
* 'cls' must not contain an identical rule (including wildcards, values of
|
|
|
|
|
* fixed fields, and priority). Use classifier_find_rule_exactly() to find
|
|
|
|
|
* such a rule. */
|
|
|
|
|
void
|
|
|
|
|
classifier_insert(struct classifier *cls, struct cls_rule *rule)
|
|
|
|
|
{
|
|
|
|
|
struct cls_rule *displaced_rule = classifier_replace(cls, rule);
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(!displaced_rule);
|
2011-05-11 14:06:48 -07:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-20 11:29:43 -07:00
|
|
|
|
/* Removes 'rule' from 'cls'. It is the caller's responsibility to destroy
|
|
|
|
|
* 'rule' with cls_rule_destroy(), freeing the memory block in which 'rule'
|
|
|
|
|
* resides, etc., as necessary. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
void
|
|
|
|
|
classifier_remove(struct classifier *cls, struct cls_rule *rule)
|
|
|
|
|
{
|
2013-09-25 15:07:21 -07:00
|
|
|
|
struct cls_partition *partition;
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *head;
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *subtable;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
subtable = find_subtable(cls, &rule->match.mask);
|
|
|
|
|
head = find_equal(subtable, &rule->match.flow, rule->hmap_node.hash);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
if (head != rule) {
|
|
|
|
|
list_remove(&rule->list);
|
|
|
|
|
} else if (list_is_empty(&rule->list)) {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
hmap_remove(&subtable->rules, &rule->hmap_node);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
} else {
|
|
|
|
|
struct cls_rule *next = CONTAINER_OF(rule->list.next,
|
|
|
|
|
struct cls_rule, list);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
list_remove(&rule->list);
|
2013-10-29 16:39:52 -07:00
|
|
|
|
hmap_replace(&subtable->rules, &rule->hmap_node, &next->hmap_node);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-09-25 15:07:21 -07:00
|
|
|
|
partition = rule->partition;
|
2013-09-25 15:36:51 -07:00
|
|
|
|
if (partition) {
|
|
|
|
|
tag_tracker_subtract(&partition->tracker, &partition->tags,
|
2013-10-29 16:39:52 -07:00
|
|
|
|
subtable->tag);
|
2013-09-25 15:36:51 -07:00
|
|
|
|
if (!partition->tags) {
|
|
|
|
|
hmap_remove(&cls->partitions, &partition->hmap_node);
|
|
|
|
|
free(partition);
|
|
|
|
|
}
|
2013-09-25 15:07:21 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
if (--subtable->n_rules == 0) {
|
|
|
|
|
destroy_subtable(cls, subtable);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
} else {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
update_subtables_after_removal(cls, subtable, rule->priority);
|
2013-02-08 00:06:22 +02:00
|
|
|
|
}
|
2010-11-03 11:00:58 -07:00
|
|
|
|
cls->n_rules--;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-14 10:13:51 -07:00
|
|
|
|
/* Finds and returns the highest-priority rule in 'cls' that matches 'flow'.
|
|
|
|
|
* Returns a null pointer if no rules in 'cls' match 'flow'. If multiple rules
|
2013-05-09 19:15:54 -07:00
|
|
|
|
* of equal priority match 'flow', returns one arbitrarily.
|
|
|
|
|
*
|
|
|
|
|
* If a rule is found and 'wc' is non-null, bitwise-OR's 'wc' with the
|
|
|
|
|
* set of bits that were significant in the lookup. At some point
|
|
|
|
|
* earlier, 'wc' should have been initialized (e.g., by
|
|
|
|
|
* flow_wildcards_init_catchall()). */
|
2010-10-14 10:13:51 -07:00
|
|
|
|
struct cls_rule *
|
2013-05-09 19:15:54 -07:00
|
|
|
|
classifier_lookup(const struct classifier *cls, const struct flow *flow,
|
|
|
|
|
struct flow_wildcards *wc)
|
2010-10-14 10:13:51 -07:00
|
|
|
|
{
|
2013-09-25 15:07:21 -07:00
|
|
|
|
const struct cls_partition *partition;
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *subtable;
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *best;
|
2013-09-25 15:07:21 -07:00
|
|
|
|
tag_type tags;
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
/* Determine 'tags' such that, if 'subtable->tag' doesn't intersect them,
|
|
|
|
|
* then 'flow' cannot possibly match in 'subtable':
|
2013-09-25 15:07:21 -07:00
|
|
|
|
*
|
|
|
|
|
* - If flow->metadata maps to a given 'partition', then we can use
|
|
|
|
|
* 'tags' for 'partition->tags'.
|
|
|
|
|
*
|
|
|
|
|
* - If flow->metadata has no partition, then no rule in 'cls' has an
|
|
|
|
|
* exact-match for flow->metadata. That means that we don't need to
|
2013-10-29 16:39:52 -07:00
|
|
|
|
* search any subtable that includes flow->metadata in its mask.
|
2013-09-25 15:07:21 -07:00
|
|
|
|
*
|
2013-10-29 16:39:52 -07:00
|
|
|
|
* In either case, we always need to search any cls_subtables that do not
|
2013-09-25 15:07:21 -07:00
|
|
|
|
* include flow->metadata in its mask. One way to do that would be to
|
2013-10-29 16:39:52 -07:00
|
|
|
|
* check the "cls_subtable"s explicitly for that, but that would require an
|
|
|
|
|
* extra branch per subtable. Instead, we mark such a cls_subtable's
|
|
|
|
|
* 'tags' as TAG_ALL and make sure that 'tags' is never empty. This means
|
|
|
|
|
* that 'tags' always intersects such a cls_subtable's 'tags', so we don't
|
|
|
|
|
* need a special case.
|
2013-09-25 15:07:21 -07:00
|
|
|
|
*/
|
|
|
|
|
partition = (hmap_is_empty(&cls->partitions)
|
|
|
|
|
? NULL
|
|
|
|
|
: find_partition(cls, flow->metadata,
|
|
|
|
|
hash_metadata(flow->metadata)));
|
|
|
|
|
tags = partition ? partition->tags : TAG_ARBITRARY;
|
2010-10-14 10:13:51 -07:00
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
best = NULL;
|
2013-10-29 16:39:52 -07:00
|
|
|
|
LIST_FOR_EACH (subtable, list_node, &cls->subtables_priority) {
|
2013-09-25 15:07:21 -07:00
|
|
|
|
struct cls_rule *rule;
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
if (!tag_intersects(tags, subtable->tag)) {
|
2013-09-25 15:07:21 -07:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2013-05-09 19:15:54 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
rule = find_match(subtable, flow);
|
2013-05-09 19:15:54 -07:00
|
|
|
|
if (wc) {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
flow_wildcards_fold_minimask(wc, &subtable->mask);
|
2013-05-09 19:15:54 -07:00
|
|
|
|
}
|
2013-02-08 00:06:23 +02:00
|
|
|
|
if (rule) {
|
|
|
|
|
best = rule;
|
2013-10-29 16:39:52 -07:00
|
|
|
|
LIST_FOR_EACH_CONTINUE (subtable, list_node,
|
|
|
|
|
&cls->subtables_priority) {
|
|
|
|
|
if (subtable->max_priority <= best->priority) {
|
|
|
|
|
/* Subtables are in descending priority order,
|
2013-02-08 00:06:23 +02:00
|
|
|
|
* can not find anything better. */
|
|
|
|
|
return best;
|
|
|
|
|
}
|
2013-10-29 16:39:52 -07:00
|
|
|
|
if (!tag_intersects(tags, subtable->tag)) {
|
2013-09-25 15:07:21 -07:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
rule = find_match(subtable, flow);
|
2013-05-09 19:15:54 -07:00
|
|
|
|
if (wc) {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
flow_wildcards_fold_minimask(wc, &subtable->mask);
|
2013-05-09 19:15:54 -07:00
|
|
|
|
}
|
2013-02-08 00:06:23 +02:00
|
|
|
|
if (rule && rule->priority > best->priority) {
|
|
|
|
|
best = rule;
|
|
|
|
|
}
|
2013-02-08 00:06:22 +02:00
|
|
|
|
}
|
2013-02-08 00:06:23 +02:00
|
|
|
|
break;
|
2010-11-03 11:00:58 -07:00
|
|
|
|
}
|
2010-10-14 10:13:51 -07:00
|
|
|
|
}
|
2010-11-03 11:00:58 -07:00
|
|
|
|
return best;
|
2010-10-14 10:13:51 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
/* Finds and returns a rule in 'cls' with exactly the same priority and
|
|
|
|
|
* matching criteria as 'target'. Returns a null pointer if 'cls' doesn't
|
2011-04-26 13:09:24 -07:00
|
|
|
|
* contain an exact match. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
struct cls_rule *
|
|
|
|
|
classifier_find_rule_exactly(const struct classifier *cls,
|
2010-10-14 13:25:36 -07:00
|
|
|
|
const struct cls_rule *target)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *head, *rule;
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *subtable;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
subtable = find_subtable(cls, &target->match.mask);
|
|
|
|
|
if (!subtable) {
|
2010-11-03 11:00:58 -07:00
|
|
|
|
return NULL;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-08 00:06:22 +02:00
|
|
|
|
/* Skip if there is no hope. */
|
2013-10-29 16:39:52 -07:00
|
|
|
|
if (target->priority > subtable->max_priority) {
|
2013-02-08 00:06:22 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
head = find_equal(subtable, &target->match.flow,
|
2012-09-04 12:43:53 -07:00
|
|
|
|
miniflow_hash_in_minimask(&target->match.flow,
|
|
|
|
|
&target->match.mask, 0));
|
2010-11-03 11:00:58 -07:00
|
|
|
|
FOR_EACH_RULE_IN_LIST (rule, head) {
|
|
|
|
|
if (target->priority >= rule->priority) {
|
|
|
|
|
return target->priority == rule->priority ? rule : NULL;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-07 15:28:18 -07:00
|
|
|
|
/* Finds and returns a rule in 'cls' with priority 'priority' and exactly the
|
|
|
|
|
* same matching criteria as 'target'. Returns a null pointer if 'cls' doesn't
|
|
|
|
|
* contain an exact match. */
|
|
|
|
|
struct cls_rule *
|
|
|
|
|
classifier_find_match_exactly(const struct classifier *cls,
|
|
|
|
|
const struct match *target,
|
|
|
|
|
unsigned int priority)
|
|
|
|
|
{
|
|
|
|
|
struct cls_rule *retval;
|
|
|
|
|
struct cls_rule cr;
|
|
|
|
|
|
|
|
|
|
cls_rule_init(&cr, target, priority);
|
|
|
|
|
retval = classifier_find_rule_exactly(cls, &cr);
|
2012-08-20 11:29:43 -07:00
|
|
|
|
cls_rule_destroy(&cr);
|
2012-08-07 15:28:18 -07:00
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-19 13:04:52 -07:00
|
|
|
|
/* Checks if 'target' would overlap any other rule in 'cls'. Two rules are
|
|
|
|
|
* considered to overlap if both rules have the same priority and a packet
|
|
|
|
|
* could match both. */
|
2009-11-12 15:40:33 -08:00
|
|
|
|
bool
|
|
|
|
|
classifier_rule_overlaps(const struct classifier *cls,
|
2010-10-19 13:04:52 -07:00
|
|
|
|
const struct cls_rule *target)
|
2009-11-12 15:40:33 -08:00
|
|
|
|
{
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *subtable;
|
2009-11-12 15:40:33 -08:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
/* Iterate subtables in the descending max priority order. */
|
|
|
|
|
LIST_FOR_EACH (subtable, list_node, &cls->subtables_priority) {
|
2012-09-04 12:43:53 -07:00
|
|
|
|
uint32_t storage[FLOW_U32S];
|
|
|
|
|
struct minimask mask;
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *head;
|
2009-11-12 15:40:33 -08:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
if (target->priority > subtable->max_priority) {
|
|
|
|
|
break; /* Can skip this and the rest of the subtables. */
|
2013-02-08 00:06:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
minimask_combine(&mask, &target->match.mask, &subtable->mask, storage);
|
|
|
|
|
HMAP_FOR_EACH (head, hmap_node, &subtable->rules) {
|
2009-11-12 15:40:33 -08:00
|
|
|
|
struct cls_rule *rule;
|
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
FOR_EACH_RULE_IN_LIST (rule, head) {
|
2013-02-08 00:06:22 +02:00
|
|
|
|
if (rule->priority < target->priority) {
|
|
|
|
|
break; /* Rules in descending priority order. */
|
|
|
|
|
}
|
2010-10-19 13:04:52 -07:00
|
|
|
|
if (rule->priority == target->priority
|
2012-09-04 12:43:53 -07:00
|
|
|
|
&& miniflow_equal_in_minimask(&target->match.flow,
|
|
|
|
|
&rule->match.flow, &mask)) {
|
2009-11-12 15:40:33 -08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2012-07-12 10:13:10 -07:00
|
|
|
|
|
|
|
|
|
/* Returns true if 'rule' exactly matches 'criteria' or if 'rule' is more
|
|
|
|
|
* specific than 'criteria'. That is, 'rule' matches 'criteria' and this
|
|
|
|
|
* function returns true if, for every field:
|
|
|
|
|
*
|
|
|
|
|
* - 'criteria' and 'rule' specify the same (non-wildcarded) value for the
|
|
|
|
|
* field, or
|
|
|
|
|
*
|
|
|
|
|
* - 'criteria' wildcards the field,
|
|
|
|
|
*
|
|
|
|
|
* Conversely, 'rule' does not match 'criteria' and this function returns false
|
|
|
|
|
* if, for at least one field:
|
|
|
|
|
*
|
|
|
|
|
* - 'criteria' and 'rule' specify different values for the field, or
|
|
|
|
|
*
|
|
|
|
|
* - 'criteria' specifies a value for the field but 'rule' wildcards it.
|
|
|
|
|
*
|
|
|
|
|
* Equivalently, the truth table for whether a field matches is:
|
|
|
|
|
*
|
|
|
|
|
* rule
|
|
|
|
|
*
|
|
|
|
|
* c wildcard exact
|
|
|
|
|
* r +---------+---------+
|
|
|
|
|
* i wild | yes | yes |
|
|
|
|
|
* t card | | |
|
|
|
|
|
* e +---------+---------+
|
|
|
|
|
* r exact | no |if values|
|
|
|
|
|
* i | |are equal|
|
|
|
|
|
* a +---------+---------+
|
|
|
|
|
*
|
|
|
|
|
* This is the matching rule used by OpenFlow 1.0 non-strict OFPT_FLOW_MOD
|
|
|
|
|
* commands and by OpenFlow 1.0 aggregate and flow stats.
|
|
|
|
|
*
|
2012-08-07 15:28:18 -07:00
|
|
|
|
* Ignores rule->priority. */
|
2012-07-12 10:13:10 -07:00
|
|
|
|
bool
|
|
|
|
|
cls_rule_is_loose_match(const struct cls_rule *rule,
|
2012-09-04 12:43:53 -07:00
|
|
|
|
const struct minimatch *criteria)
|
2012-07-12 10:13:10 -07:00
|
|
|
|
{
|
2012-09-04 12:43:53 -07:00
|
|
|
|
return (!minimask_has_extra(&rule->match.mask, &criteria->mask)
|
|
|
|
|
&& miniflow_equal_in_minimask(&rule->match.flow, &criteria->flow,
|
|
|
|
|
&criteria->mask));
|
2012-07-12 10:13:10 -07:00
|
|
|
|
}
|
2010-11-03 11:00:58 -07:00
|
|
|
|
|
2010-10-28 16:18:20 -07:00
|
|
|
|
/* Iteration. */
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
rule_matches(const struct cls_rule *rule, const struct cls_rule *target)
|
|
|
|
|
{
|
|
|
|
|
return (!target
|
2012-09-04 12:43:53 -07:00
|
|
|
|
|| miniflow_equal_in_minimask(&rule->match.flow,
|
|
|
|
|
&target->match.flow,
|
|
|
|
|
&target->match.mask));
|
2010-10-28 16:18:20 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct cls_rule *
|
2013-10-29 16:39:52 -07:00
|
|
|
|
search_subtable(const struct cls_subtable *subtable,
|
|
|
|
|
const struct cls_rule *target)
|
2010-10-28 16:18:20 -07:00
|
|
|
|
{
|
2013-10-29 16:39:52 -07:00
|
|
|
|
if (!target || !minimask_has_extra(&subtable->mask, &target->match.mask)) {
|
2010-10-28 16:18:20 -07:00
|
|
|
|
struct cls_rule *rule;
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
HMAP_FOR_EACH (rule, hmap_node, &subtable->rules) {
|
2010-10-28 16:18:20 -07:00
|
|
|
|
if (rule_matches(rule, target)) {
|
|
|
|
|
return rule;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-12 10:13:10 -07:00
|
|
|
|
/* Initializes 'cursor' for iterating through rules in 'cls':
|
2010-10-28 16:18:20 -07:00
|
|
|
|
*
|
2012-07-12 10:13:10 -07:00
|
|
|
|
* - If 'target' is null, the cursor will visit every rule in 'cls'.
|
2010-10-28 16:18:20 -07:00
|
|
|
|
*
|
2012-07-12 10:13:10 -07:00
|
|
|
|
* - If 'target' is nonnull, the cursor will visit each 'rule' in 'cls'
|
|
|
|
|
* such that cls_rule_is_loose_match(rule, target) returns true.
|
2010-10-28 16:18:20 -07:00
|
|
|
|
*
|
2012-07-12 10:13:10 -07:00
|
|
|
|
* Ignores target->priority. */
|
2010-10-28 16:18:20 -07:00
|
|
|
|
void
|
|
|
|
|
cls_cursor_init(struct cls_cursor *cursor, const struct classifier *cls,
|
|
|
|
|
const struct cls_rule *target)
|
|
|
|
|
{
|
|
|
|
|
cursor->cls = cls;
|
2012-07-20 14:46:15 -07:00
|
|
|
|
cursor->target = target && !cls_rule_is_catchall(target) ? target : NULL;
|
2010-10-28 16:18:20 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the first matching cls_rule in 'cursor''s iteration, or a null
|
|
|
|
|
* pointer if there are no matches. */
|
|
|
|
|
struct cls_rule *
|
|
|
|
|
cls_cursor_first(struct cls_cursor *cursor)
|
|
|
|
|
{
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *subtable;
|
2010-10-28 16:18:20 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
HMAP_FOR_EACH (subtable, hmap_node, &cursor->cls->subtables) {
|
|
|
|
|
struct cls_rule *rule = search_subtable(subtable, cursor->target);
|
2010-10-28 16:18:20 -07:00
|
|
|
|
if (rule) {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
cursor->subtable = subtable;
|
2010-10-28 16:18:20 -07:00
|
|
|
|
return rule;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the next matching cls_rule in 'cursor''s iteration, or a null
|
|
|
|
|
* pointer if there are no more matches. */
|
|
|
|
|
struct cls_rule *
|
2013-09-09 22:13:09 -07:00
|
|
|
|
cls_cursor_next(struct cls_cursor *cursor, const struct cls_rule *rule_)
|
2010-10-28 16:18:20 -07:00
|
|
|
|
{
|
2013-09-09 22:13:09 -07:00
|
|
|
|
struct cls_rule *rule = CONST_CAST(struct cls_rule *, rule_);
|
2013-10-29 16:39:52 -07:00
|
|
|
|
const struct cls_subtable *subtable;
|
2010-10-28 16:18:20 -07:00
|
|
|
|
struct cls_rule *next;
|
|
|
|
|
|
2010-11-19 16:41:02 -08:00
|
|
|
|
next = next_rule_in_list__(rule);
|
|
|
|
|
if (next->priority < rule->priority) {
|
2010-10-28 16:18:20 -07:00
|
|
|
|
return next;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-19 16:41:02 -08:00
|
|
|
|
/* 'next' is the head of the list, that is, the rule that is included in
|
2013-10-29 16:39:52 -07:00
|
|
|
|
* the subtable's hmap. (This is important when the classifier contains
|
|
|
|
|
* rules that differ only in priority.) */
|
2010-11-19 16:41:02 -08:00
|
|
|
|
rule = next;
|
2013-10-29 16:39:52 -07:00
|
|
|
|
HMAP_FOR_EACH_CONTINUE (rule, hmap_node, &cursor->subtable->rules) {
|
2010-10-28 16:18:20 -07:00
|
|
|
|
if (rule_matches(rule, cursor->target)) {
|
|
|
|
|
return rule;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
subtable = cursor->subtable;
|
|
|
|
|
HMAP_FOR_EACH_CONTINUE (subtable, hmap_node, &cursor->cls->subtables) {
|
|
|
|
|
rule = search_subtable(subtable, cursor->target);
|
2010-10-28 16:18:20 -07:00
|
|
|
|
if (rule) {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
cursor->subtable = subtable;
|
2010-10-28 16:18:20 -07:00
|
|
|
|
return rule;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
static struct cls_subtable *
|
|
|
|
|
find_subtable(const struct classifier *cls, const struct minimask *mask)
|
2010-11-03 11:00:58 -07:00
|
|
|
|
{
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *subtable;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
HMAP_FOR_EACH_IN_BUCKET (subtable, hmap_node, minimask_hash(mask, 0),
|
|
|
|
|
&cls->subtables) {
|
|
|
|
|
if (minimask_equal(mask, &subtable->mask)) {
|
|
|
|
|
return subtable;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-11-03 11:00:58 -07:00
|
|
|
|
return NULL;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
static struct cls_subtable *
|
|
|
|
|
insert_subtable(struct classifier *cls, const struct minimask *mask)
|
2010-11-03 11:00:58 -07:00
|
|
|
|
{
|
2013-09-25 15:07:21 -07:00
|
|
|
|
uint32_t hash = minimask_hash(mask, 0);
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *subtable;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
subtable = xzalloc(sizeof *subtable);
|
|
|
|
|
hmap_init(&subtable->rules);
|
|
|
|
|
minimask_clone(&subtable->mask, mask);
|
|
|
|
|
hmap_insert(&cls->subtables, &subtable->hmap_node, minimask_hash(mask, 0));
|
|
|
|
|
list_push_back(&cls->subtables_priority, &subtable->list_node);
|
|
|
|
|
subtable->tag = (minimask_get_metadata_mask(mask) == OVS_BE64_MAX
|
|
|
|
|
? tag_create_deterministic(hash)
|
|
|
|
|
: TAG_ALL);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
return subtable;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
static void
|
2013-10-29 16:39:52 -07:00
|
|
|
|
destroy_subtable(struct classifier *cls, struct cls_subtable *subtable)
|
2010-11-03 11:00:58 -07:00
|
|
|
|
{
|
2013-10-29 16:39:52 -07:00
|
|
|
|
minimask_destroy(&subtable->mask);
|
|
|
|
|
hmap_remove(&cls->subtables, &subtable->hmap_node);
|
|
|
|
|
hmap_destroy(&subtable->rules);
|
|
|
|
|
list_remove(&subtable->list_node);
|
|
|
|
|
free(subtable);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
/* This function performs the following updates for 'subtable' in 'cls'
|
|
|
|
|
* following the addition of a new rule with priority 'new_priority' to
|
|
|
|
|
* 'subtable':
|
2013-02-11 13:11:42 -08:00
|
|
|
|
*
|
2013-10-29 16:39:52 -07:00
|
|
|
|
* - Update 'subtable->max_priority' and 'subtable->max_count' if necessary.
|
2013-02-11 13:11:42 -08:00
|
|
|
|
*
|
2013-10-29 16:39:52 -07:00
|
|
|
|
* - Update 'subtable''s position in 'cls->subtables_priority' if necessary.
|
2013-02-11 13:11:42 -08:00
|
|
|
|
*
|
|
|
|
|
* This function should only be called after adding a new rule, not after
|
|
|
|
|
* replacing a rule by an identical one or modifying a rule in-place. */
|
|
|
|
|
static void
|
2013-10-29 16:39:52 -07:00
|
|
|
|
update_subtables_after_insertion(struct classifier *cls,
|
|
|
|
|
struct cls_subtable *subtable,
|
|
|
|
|
unsigned int new_priority)
|
|
|
|
|
{
|
|
|
|
|
if (new_priority == subtable->max_priority) {
|
|
|
|
|
++subtable->max_count;
|
|
|
|
|
} else if (new_priority > subtable->max_priority) {
|
|
|
|
|
struct cls_subtable *iter;
|
|
|
|
|
|
|
|
|
|
subtable->max_priority = new_priority;
|
|
|
|
|
subtable->max_count = 1;
|
|
|
|
|
|
|
|
|
|
/* Possibly move 'subtable' earlier in the priority list. If we break
|
|
|
|
|
* out of the loop, then 'subtable' should be moved just after that
|
|
|
|
|
* 'iter'. If the loop terminates normally, then 'iter' will be the
|
|
|
|
|
* list head and we'll move subtable just after that (e.g. to the front
|
|
|
|
|
* of the list). */
|
|
|
|
|
iter = subtable;
|
2013-02-11 13:11:42 -08:00
|
|
|
|
LIST_FOR_EACH_REVERSE_CONTINUE (iter, list_node,
|
2013-10-29 16:39:52 -07:00
|
|
|
|
&cls->subtables_priority) {
|
|
|
|
|
if (iter->max_priority >= subtable->max_priority) {
|
2013-02-11 13:11:42 -08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
/* Move 'subtable' just after 'iter' (unless it's already there). */
|
|
|
|
|
if (iter->list_node.next != &subtable->list_node) {
|
2013-02-11 13:11:42 -08:00
|
|
|
|
list_splice(iter->list_node.next,
|
2013-10-29 16:39:52 -07:00
|
|
|
|
&subtable->list_node, subtable->list_node.next);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
/* This function performs the following updates for 'subtable' in 'cls'
|
|
|
|
|
* following the deletion of a rule with priority 'del_priority' from
|
|
|
|
|
* 'subtable':
|
2013-02-11 13:11:42 -08:00
|
|
|
|
*
|
2013-10-29 16:39:52 -07:00
|
|
|
|
* - Update 'subtable->max_priority' and 'subtable->max_count' if necessary.
|
2013-02-11 13:11:42 -08:00
|
|
|
|
*
|
2013-10-29 16:39:52 -07:00
|
|
|
|
* - Update 'subtable''s position in 'cls->subtables_priority' if necessary.
|
2013-02-11 13:11:42 -08:00
|
|
|
|
*
|
|
|
|
|
* This function should only be called after removing a rule, not after
|
|
|
|
|
* replacing a rule by an identical one or modifying a rule in-place. */
|
|
|
|
|
static void
|
2013-10-29 16:39:52 -07:00
|
|
|
|
update_subtables_after_removal(struct classifier *cls,
|
|
|
|
|
struct cls_subtable *subtable,
|
|
|
|
|
unsigned int del_priority)
|
2013-02-11 13:11:42 -08:00
|
|
|
|
{
|
2013-10-29 16:39:52 -07:00
|
|
|
|
struct cls_subtable *iter;
|
2013-02-11 13:11:42 -08:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
if (del_priority == subtable->max_priority && --subtable->max_count == 0) {
|
2013-02-11 13:11:42 -08:00
|
|
|
|
struct cls_rule *head;
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
subtable->max_priority = 0;
|
|
|
|
|
HMAP_FOR_EACH (head, hmap_node, &subtable->rules) {
|
|
|
|
|
if (head->priority > subtable->max_priority) {
|
|
|
|
|
subtable->max_priority = head->priority;
|
|
|
|
|
subtable->max_count = 1;
|
|
|
|
|
} else if (head->priority == subtable->max_priority) {
|
|
|
|
|
++subtable->max_count;
|
2013-02-11 13:11:42 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
/* Possibly move 'subtable' later in the priority list. If we break
|
|
|
|
|
* out of the loop, then 'subtable' should be moved just before that
|
|
|
|
|
* 'iter'. If the loop terminates normally, then 'iter' will be the
|
|
|
|
|
* list head and we'll move subtable just before that (e.g. to the back
|
|
|
|
|
* of the list). */
|
|
|
|
|
iter = subtable;
|
|
|
|
|
LIST_FOR_EACH_CONTINUE (iter, list_node, &cls->subtables_priority) {
|
|
|
|
|
if (iter->max_priority <= subtable->max_priority) {
|
2013-02-11 13:11:42 -08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
/* Move 'subtable' just before 'iter' (unless it's already there). */
|
|
|
|
|
if (iter->list_node.prev != &subtable->list_node) {
|
2013-02-11 13:11:42 -08:00
|
|
|
|
list_splice(&iter->list_node,
|
2013-10-29 16:39:52 -07:00
|
|
|
|
&subtable->list_node, subtable->list_node.next);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
static struct cls_rule *
|
2013-10-29 16:39:52 -07:00
|
|
|
|
find_match(const struct cls_subtable *subtable, const struct flow *flow)
|
2010-11-03 11:00:58 -07:00
|
|
|
|
{
|
2013-10-29 16:39:52 -07:00
|
|
|
|
uint32_t hash = flow_hash_in_minimask(flow, &subtable->mask, 0);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *rule;
|
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
HMAP_FOR_EACH_WITH_HASH (rule, hmap_node, hash, &subtable->rules) {
|
2013-02-06 16:13:19 -08:00
|
|
|
|
if (minimatch_matches_flow(&rule->match, flow)) {
|
2010-11-03 11:00:58 -07:00
|
|
|
|
return rule;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-04-09 15:49:22 -07:00
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct cls_rule *
|
2013-10-29 16:39:52 -07:00
|
|
|
|
find_equal(struct cls_subtable *subtable, const struct miniflow *flow,
|
|
|
|
|
uint32_t hash)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *head;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
HMAP_FOR_EACH_WITH_HASH (head, hmap_node, hash, &subtable->rules) {
|
2012-09-04 12:43:53 -07:00
|
|
|
|
if (miniflow_equal(&head->match.flow, flow)) {
|
2010-11-03 11:00:58 -07:00
|
|
|
|
return head;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
static struct cls_rule *
|
2013-10-29 16:39:52 -07:00
|
|
|
|
insert_rule(struct classifier *cls, struct cls_subtable *subtable,
|
|
|
|
|
struct cls_rule *new)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *head;
|
2013-02-11 13:11:42 -08:00
|
|
|
|
struct cls_rule *old = NULL;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2012-09-04 12:43:53 -07:00
|
|
|
|
new->hmap_node.hash = miniflow_hash_in_minimask(&new->match.flow,
|
|
|
|
|
&new->match.mask, 0);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2013-10-29 16:39:52 -07:00
|
|
|
|
head = find_equal(subtable, &new->match.flow, new->hmap_node.hash);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
if (!head) {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
hmap_insert(&subtable->rules, &new->hmap_node, new->hmap_node.hash);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
list_init(&new->list);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
goto out;
|
2010-11-03 11:00:58 -07:00
|
|
|
|
} else {
|
|
|
|
|
/* Scan the list for the insertion point that will keep the list in
|
|
|
|
|
* order of decreasing priority. */
|
|
|
|
|
struct cls_rule *rule;
|
|
|
|
|
FOR_EACH_RULE_IN_LIST (rule, head) {
|
|
|
|
|
if (new->priority >= rule->priority) {
|
|
|
|
|
if (rule == head) {
|
|
|
|
|
/* 'new' is the new highest-priority flow in the list. */
|
2013-10-29 16:39:52 -07:00
|
|
|
|
hmap_replace(&subtable->rules,
|
2010-11-03 11:00:58 -07:00
|
|
|
|
&rule->hmap_node, &new->hmap_node);
|
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
if (new->priority == rule->priority) {
|
|
|
|
|
list_replace(&new->list, &rule->list);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
old = rule;
|
|
|
|
|
goto out;
|
2010-11-03 11:00:58 -07:00
|
|
|
|
} else {
|
|
|
|
|
list_insert(&rule->list, &new->list);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
goto out;
|
2010-11-03 11:00:58 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
/* Insert 'new' at the end of the list. */
|
|
|
|
|
list_push_back(&head->list, &new->list);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
2013-02-11 13:11:42 -08:00
|
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
if (!old) {
|
2013-10-29 16:39:52 -07:00
|
|
|
|
update_subtables_after_insertion(cls, subtable, new->priority);
|
2013-02-11 13:11:42 -08:00
|
|
|
|
}
|
|
|
|
|
return old;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-11-03 11:00:58 -07:00
|
|
|
|
static struct cls_rule *
|
2010-11-19 16:41:02 -08:00
|
|
|
|
next_rule_in_list__(struct cls_rule *rule)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2010-11-03 11:00:58 -07:00
|
|
|
|
struct cls_rule *next = OBJECT_CONTAINING(rule->list.next, next, list);
|
2010-11-19 16:41:02 -08:00
|
|
|
|
return next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct cls_rule *
|
|
|
|
|
next_rule_in_list(struct cls_rule *rule)
|
|
|
|
|
{
|
|
|
|
|
struct cls_rule *next = next_rule_in_list__(rule);
|
2010-11-03 11:00:58 -07:00
|
|
|
|
return next->priority < rule->priority ? next : NULL;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|