2009-07-08 13:19:16 -07:00
|
|
|
/*
|
2010-01-21 17:34:05 -08:00
|
|
|
* Copyright (c) 2009, 2010 Nicira Networks.
|
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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CLASSIFIER_H
|
|
|
|
#define CLASSIFIER_H 1
|
|
|
|
|
|
|
|
/* Flow classifier.
|
|
|
|
*
|
|
|
|
* This flow classifier assumes that we can arrange the fields in a flow in an
|
|
|
|
* order such that the set of wildcarded fields in a rule tend to fall toward
|
|
|
|
* the end of the ordering. That is, if field F is wildcarded, then all the
|
|
|
|
* fields after F tend to be wildcarded as well. If this assumption is
|
|
|
|
* violated, then the classifier will still classify flows correctly, but its
|
|
|
|
* performance will suffer.
|
2009-11-24 09:59:54 -08:00
|
|
|
*
|
|
|
|
* The classifier uses a collection of CLS_N_FIELDS hash tables for wildcarded
|
|
|
|
* flows. Each of these tables contains the flows that wildcard a given field
|
|
|
|
* and do not wildcard any of the fields that precede F in the ordering. The
|
|
|
|
* key for each hash table is the value of the fields preceding F that are not
|
|
|
|
* wildcarded. All the flows that fall within a table and have the same key
|
|
|
|
* are kept as a linked list ordered from highest to lowest priority.
|
|
|
|
*
|
|
|
|
* The classifier also maintains a separate hash table of exact-match flows.
|
|
|
|
*
|
|
|
|
* To search the classifier we first search the table of exact-match flows,
|
|
|
|
* since exact-match flows always have highest priority. If there is a match,
|
|
|
|
* we're done. Otherwise, we search each of the CLS_N_FIELDS hash tables in
|
|
|
|
* turn, looking for the highest-priority match, and return it (if any).
|
2009-07-08 13:19:16 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "flow.h"
|
|
|
|
#include "hmap.h"
|
|
|
|
#include "list.h"
|
2010-04-12 11:49:16 -04:00
|
|
|
#include "openflow/nicira-ext.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
#include "openflow/openflow.h"
|
|
|
|
|
|
|
|
/* Number of bytes of fields in a rule. */
|
2010-04-12 11:49:16 -04:00
|
|
|
#define CLS_N_BYTES 37
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
/* Fields in a rule.
|
|
|
|
*
|
|
|
|
* This definition sets the ordering of fields, which is important for
|
|
|
|
* performance (see above). To adjust the ordering, change the order of the
|
|
|
|
* lines. */
|
|
|
|
#define CLS_FIELDS \
|
|
|
|
/* flow_t all-caps */ \
|
|
|
|
/* wildcard bit(s) member name name */ \
|
|
|
|
/* ----------------- ----------- -------- */ \
|
|
|
|
CLS_FIELD(OFPFW_IN_PORT, in_port, IN_PORT) \
|
2010-04-12 11:49:16 -04:00
|
|
|
CLS_FIELD(NXFW_TUN_ID, tun_id, TUN_ID) \
|
2009-07-08 13:19:16 -07:00
|
|
|
CLS_FIELD(OFPFW_DL_VLAN, dl_vlan, DL_VLAN) \
|
2009-11-11 14:59:49 -08:00
|
|
|
CLS_FIELD(OFPFW_DL_VLAN_PCP, dl_vlan_pcp, DL_VLAN_PCP) \
|
2009-07-08 13:19:16 -07:00
|
|
|
CLS_FIELD(OFPFW_DL_SRC, dl_src, DL_SRC) \
|
|
|
|
CLS_FIELD(OFPFW_DL_DST, dl_dst, DL_DST) \
|
|
|
|
CLS_FIELD(OFPFW_DL_TYPE, dl_type, DL_TYPE) \
|
|
|
|
CLS_FIELD(OFPFW_NW_SRC_MASK, nw_src, NW_SRC) \
|
|
|
|
CLS_FIELD(OFPFW_NW_DST_MASK, nw_dst, NW_DST) \
|
|
|
|
CLS_FIELD(OFPFW_NW_PROTO, nw_proto, NW_PROTO) \
|
2010-01-21 17:34:05 -08:00
|
|
|
CLS_FIELD(OFPFW_NW_TOS, nw_tos, NW_TOS) \
|
2009-07-08 13:19:16 -07:00
|
|
|
CLS_FIELD(OFPFW_TP_SRC, tp_src, TP_SRC) \
|
|
|
|
CLS_FIELD(OFPFW_TP_DST, tp_dst, TP_DST)
|
|
|
|
|
|
|
|
/* Field indexes.
|
|
|
|
*
|
|
|
|
* (These are also indexed into struct classifier's 'tables' array.) */
|
|
|
|
enum {
|
|
|
|
#define CLS_FIELD(WILDCARDS, MEMBER, NAME) CLS_F_IDX_##NAME,
|
|
|
|
CLS_FIELDS
|
|
|
|
#undef CLS_FIELD
|
|
|
|
CLS_F_IDX_EXACT, /* Exact-match table. */
|
|
|
|
CLS_N_FIELDS = CLS_F_IDX_EXACT
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Field information. */
|
|
|
|
struct cls_field {
|
|
|
|
int ofs; /* Offset in flow_t. */
|
|
|
|
int len; /* Length in bytes. */
|
|
|
|
uint32_t wildcards; /* OFPFW_* bit or bits for this field. */
|
|
|
|
const char *name; /* Name (for debugging). */
|
|
|
|
};
|
|
|
|
extern const struct cls_field cls_fields[CLS_N_FIELDS + 1];
|
|
|
|
|
|
|
|
/* A flow classifier. */
|
|
|
|
struct classifier {
|
|
|
|
int n_rules; /* Sum of hmap_count() over tables[]. */
|
|
|
|
struct hmap tables[CLS_N_FIELDS]; /* Contain cls_bucket elements. */
|
|
|
|
struct hmap exact_table; /* Contain cls_rule elements. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* A group of rules with the same fixed values for initial fields. */
|
|
|
|
struct cls_bucket {
|
|
|
|
struct hmap_node hmap_node; /* Within struct classifier 'tables'. */
|
|
|
|
struct list rules; /* In order from highest to lowest priority. */
|
|
|
|
flow_t fixed; /* Values for fixed fields. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* A flow classification rule.
|
|
|
|
*
|
|
|
|
* Use cls_rule_from_flow() or cls_rule_from_match() to initialize a cls_rule
|
|
|
|
* or you will almost certainly not initialize 'table_idx' correctly, with
|
|
|
|
* disastrous results! */
|
|
|
|
struct cls_rule {
|
|
|
|
union {
|
|
|
|
struct list list; /* Within struct cls_bucket 'rules'. */
|
|
|
|
struct hmap_node hmap; /* Within struct classifier 'exact_table'. */
|
|
|
|
} node;
|
|
|
|
flow_t flow; /* All field values. */
|
|
|
|
struct flow_wildcards wc; /* Wildcards for fields. */
|
|
|
|
unsigned int priority; /* Larger numbers are higher priorities. */
|
|
|
|
unsigned int table_idx; /* Index into struct classifier 'tables'. */
|
|
|
|
};
|
|
|
|
|
2010-04-12 11:49:16 -04:00
|
|
|
void cls_rule_from_flow(const flow_t *, uint32_t wildcards,
|
|
|
|
unsigned int priority, struct cls_rule *);
|
|
|
|
void cls_rule_from_match(const struct ofp_match *, unsigned int priority,
|
|
|
|
bool tun_id_from_cookie, uint64_t cookie,
|
|
|
|
struct cls_rule *);
|
2010-02-11 13:47:30 -08:00
|
|
|
char *cls_rule_to_string(const struct cls_rule *);
|
2009-07-08 13:19:16 -07:00
|
|
|
void cls_rule_print(const struct cls_rule *);
|
|
|
|
void cls_rule_moved(struct classifier *,
|
|
|
|
struct cls_rule *old, struct cls_rule *new);
|
|
|
|
void cls_rule_replace(struct classifier *, const struct cls_rule *old,
|
|
|
|
struct cls_rule *new);
|
|
|
|
|
|
|
|
void classifier_init(struct classifier *);
|
|
|
|
void classifier_destroy(struct classifier *);
|
|
|
|
bool classifier_is_empty(const struct classifier *);
|
|
|
|
int classifier_count(const struct classifier *);
|
|
|
|
int classifier_count_exact(const struct classifier *);
|
|
|
|
struct cls_rule *classifier_insert(struct classifier *, struct cls_rule *);
|
|
|
|
void classifier_insert_exact(struct classifier *, struct cls_rule *);
|
|
|
|
void classifier_remove(struct classifier *, struct cls_rule *);
|
|
|
|
struct cls_rule *classifier_lookup(const struct classifier *, const flow_t *);
|
|
|
|
struct cls_rule *classifier_lookup_wild(const struct classifier *,
|
|
|
|
const flow_t *);
|
|
|
|
struct cls_rule *classifier_lookup_exact(const struct classifier *,
|
|
|
|
const flow_t *);
|
2010-08-30 00:24:53 -07:00
|
|
|
bool classifier_rule_overlaps(const struct classifier *, const flow_t *,
|
2009-11-12 15:40:33 -08:00
|
|
|
uint32_t wildcards, unsigned int priority);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
typedef void cls_cb_func(struct cls_rule *, void *aux);
|
|
|
|
|
|
|
|
enum {
|
|
|
|
CLS_INC_EXACT = 1 << 0, /* Include exact-match flows? */
|
|
|
|
CLS_INC_WILD = 1 << 1, /* Include flows with wildcards? */
|
|
|
|
CLS_INC_ALL = CLS_INC_EXACT | CLS_INC_WILD
|
|
|
|
};
|
|
|
|
void classifier_for_each(const struct classifier *, int include,
|
|
|
|
cls_cb_func *, void *aux);
|
|
|
|
void classifier_for_each_match(const struct classifier *,
|
|
|
|
const struct cls_rule *,
|
|
|
|
int include, cls_cb_func *, void *aux);
|
|
|
|
struct cls_rule *classifier_find_rule_exactly(const struct classifier *,
|
|
|
|
const flow_t *target,
|
|
|
|
uint32_t wildcards,
|
|
|
|
unsigned int priority);
|
|
|
|
|
2010-10-07 10:36:02 -07:00
|
|
|
#define CLASSIFIER_FOR_EACH_EXACT_RULE(RULE, MEMBER, CLS) \
|
|
|
|
HMAP_FOR_EACH (RULE, MEMBER.node.hmap, &(CLS)->exact_table)
|
|
|
|
|
2010-10-07 23:30:06 -07:00
|
|
|
#define CLASSIFIER_FOR_EACH_EXACT_RULE_SAFE(RULE, NEXT, MEMBER, CLS) \
|
2010-10-07 10:36:02 -07:00
|
|
|
HMAP_FOR_EACH_SAFE (RULE, NEXT, MEMBER.node.hmap, &(CLS)->exact_table)
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
#endif /* classifier.h */
|