]> git.proxmox.com Git - ovs.git/blame - lib/classifier.h
classifier: Change classifier_find_rule_exactly() to take a cls_rule *.
[ovs.git] / lib / classifier.h
CommitLineData
064af421 1/*
834377ea 2 * Copyright (c) 2009, 2010 Nicira Networks.
064af421 3 *
a14bc59f
BP
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
064af421 7 *
a14bc59f
BP
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
064af421
BP
15 */
16
17#ifndef CLASSIFIER_H
18#define CLASSIFIER_H 1
19
20/* Flow classifier.
21 *
22 * This flow classifier assumes that we can arrange the fields in a flow in an
23 * order such that the set of wildcarded fields in a rule tend to fall toward
24 * the end of the ordering. That is, if field F is wildcarded, then all the
25 * fields after F tend to be wildcarded as well. If this assumption is
26 * violated, then the classifier will still classify flows correctly, but its
27 * performance will suffer.
318e2e6d
BP
28 *
29 * The classifier uses a collection of CLS_N_FIELDS hash tables for wildcarded
30 * flows. Each of these tables contains the flows that wildcard a given field
31 * and do not wildcard any of the fields that precede F in the ordering. The
32 * key for each hash table is the value of the fields preceding F that are not
33 * wildcarded. All the flows that fall within a table and have the same key
34 * are kept as a linked list ordered from highest to lowest priority.
35 *
36 * The classifier also maintains a separate hash table of exact-match flows.
37 *
38 * To search the classifier we first search the table of exact-match flows,
39 * since exact-match flows always have highest priority. If there is a match,
40 * we're done. Otherwise, we search each of the CLS_N_FIELDS hash tables in
41 * turn, looking for the highest-priority match, and return it (if any).
064af421
BP
42 */
43
44#include "flow.h"
45#include "hmap.h"
46#include "list.h"
659586ef 47#include "openflow/nicira-ext.h"
064af421
BP
48#include "openflow/openflow.h"
49
50/* Number of bytes of fields in a rule. */
659586ef 51#define CLS_N_BYTES 37
064af421
BP
52
53/* Fields in a rule.
54 *
55 * This definition sets the ordering of fields, which is important for
56 * performance (see above). To adjust the ordering, change the order of the
57 * lines. */
58#define CLS_FIELDS \
ae412e7d 59 /* struct flow all-caps */ \
064af421
BP
60 /* wildcard bit(s) member name name */ \
61 /* ----------------- ----------- -------- */ \
62 CLS_FIELD(OFPFW_IN_PORT, in_port, IN_PORT) \
659586ef 63 CLS_FIELD(NXFW_TUN_ID, tun_id, TUN_ID) \
064af421 64 CLS_FIELD(OFPFW_DL_VLAN, dl_vlan, DL_VLAN) \
959a2ecd 65 CLS_FIELD(OFPFW_DL_VLAN_PCP, dl_vlan_pcp, DL_VLAN_PCP) \
064af421
BP
66 CLS_FIELD(OFPFW_DL_SRC, dl_src, DL_SRC) \
67 CLS_FIELD(OFPFW_DL_DST, dl_dst, DL_DST) \
68 CLS_FIELD(OFPFW_DL_TYPE, dl_type, DL_TYPE) \
69 CLS_FIELD(OFPFW_NW_SRC_MASK, nw_src, NW_SRC) \
70 CLS_FIELD(OFPFW_NW_DST_MASK, nw_dst, NW_DST) \
71 CLS_FIELD(OFPFW_NW_PROTO, nw_proto, NW_PROTO) \
834377ea 72 CLS_FIELD(OFPFW_NW_TOS, nw_tos, NW_TOS) \
064af421
BP
73 CLS_FIELD(OFPFW_TP_SRC, tp_src, TP_SRC) \
74 CLS_FIELD(OFPFW_TP_DST, tp_dst, TP_DST)
75
76/* Field indexes.
77 *
78 * (These are also indexed into struct classifier's 'tables' array.) */
79enum {
80#define CLS_FIELD(WILDCARDS, MEMBER, NAME) CLS_F_IDX_##NAME,
81 CLS_FIELDS
82#undef CLS_FIELD
83 CLS_F_IDX_EXACT, /* Exact-match table. */
84 CLS_N_FIELDS = CLS_F_IDX_EXACT
85};
86
87/* Field information. */
88struct cls_field {
ae412e7d 89 int ofs; /* Offset in struct flow. */
064af421
BP
90 int len; /* Length in bytes. */
91 uint32_t wildcards; /* OFPFW_* bit or bits for this field. */
92 const char *name; /* Name (for debugging). */
93};
94extern const struct cls_field cls_fields[CLS_N_FIELDS + 1];
95
96/* A flow classifier. */
97struct classifier {
98 int n_rules; /* Sum of hmap_count() over tables[]. */
99 struct hmap tables[CLS_N_FIELDS]; /* Contain cls_bucket elements. */
100 struct hmap exact_table; /* Contain cls_rule elements. */
101};
102
103/* A group of rules with the same fixed values for initial fields. */
104struct cls_bucket {
105 struct hmap_node hmap_node; /* Within struct classifier 'tables'. */
106 struct list rules; /* In order from highest to lowest priority. */
ae412e7d 107 struct flow fixed; /* Values for fixed fields. */
064af421
BP
108};
109
110/* A flow classification rule.
111 *
112 * Use cls_rule_from_flow() or cls_rule_from_match() to initialize a cls_rule
113 * or you will almost certainly not initialize 'table_idx' correctly, with
114 * disastrous results! */
115struct cls_rule {
116 union {
117 struct list list; /* Within struct cls_bucket 'rules'. */
118 struct hmap_node hmap; /* Within struct classifier 'exact_table'. */
119 } node;
ae412e7d 120 struct flow flow; /* All field values. */
064af421
BP
121 struct flow_wildcards wc; /* Wildcards for fields. */
122 unsigned int priority; /* Larger numbers are higher priorities. */
123 unsigned int table_idx; /* Index into struct classifier 'tables'. */
124};
125
48c3de13
BP
126enum {
127 CLS_INC_EXACT = 1 << 0, /* Include exact-match flows? */
128 CLS_INC_WILD = 1 << 1, /* Include flows with wildcards? */
129 CLS_INC_ALL = CLS_INC_EXACT | CLS_INC_WILD
130};
131
ae412e7d 132void cls_rule_from_flow(const struct flow *, uint32_t wildcards,
659586ef
JG
133 unsigned int priority, struct cls_rule *);
134void cls_rule_from_match(const struct ofp_match *, unsigned int priority,
135 bool tun_id_from_cookie, uint64_t cookie,
136 struct cls_rule *);
68d1c8c3 137char *cls_rule_to_string(const struct cls_rule *);
064af421 138void cls_rule_print(const struct cls_rule *);
064af421
BP
139
140void classifier_init(struct classifier *);
141void classifier_destroy(struct classifier *);
142bool classifier_is_empty(const struct classifier *);
143int classifier_count(const struct classifier *);
144int classifier_count_exact(const struct classifier *);
145struct cls_rule *classifier_insert(struct classifier *, struct cls_rule *);
146void classifier_insert_exact(struct classifier *, struct cls_rule *);
147void classifier_remove(struct classifier *, struct cls_rule *);
ae412e7d 148struct cls_rule *classifier_lookup(const struct classifier *,
48c3de13 149 const struct flow *, int include);
ae412e7d 150bool classifier_rule_overlaps(const struct classifier *, const struct flow *,
49bdc010 151 uint32_t wildcards, unsigned int priority);
064af421
BP
152
153typedef void cls_cb_func(struct cls_rule *, void *aux);
154
064af421
BP
155void classifier_for_each(const struct classifier *, int include,
156 cls_cb_func *, void *aux);
157void classifier_for_each_match(const struct classifier *,
158 const struct cls_rule *,
159 int include, cls_cb_func *, void *aux);
160struct cls_rule *classifier_find_rule_exactly(const struct classifier *,
76ecc721 161 const struct cls_rule *);
064af421 162
35950f0c
BP
163#define CLASSIFIER_FOR_EACH_EXACT_RULE(RULE, MEMBER, CLS) \
164 HMAP_FOR_EACH (RULE, MEMBER.node.hmap, &(CLS)->exact_table)
165
5db39d10 166#define CLASSIFIER_FOR_EACH_EXACT_RULE_SAFE(RULE, NEXT, MEMBER, CLS) \
35950f0c
BP
167 HMAP_FOR_EACH_SAFE (RULE, NEXT, MEMBER.node.hmap, &(CLS)->exact_table)
168
064af421 169#endif /* classifier.h */