blob: c58a0fe3c8892d4e09eb7377b60a06ae469efb09 [file] [log] [blame]
Pravin B Shelare6445712013-10-03 18:16:47 -07001/*
2 * Copyright (c) 2007-2013 Nicira, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301, USA
17 */
18
19#include "flow.h"
20#include "datapath.h"
21#include <linux/uaccess.h>
22#include <linux/netdevice.h>
23#include <linux/etherdevice.h>
24#include <linux/if_ether.h>
25#include <linux/if_vlan.h>
26#include <net/llc_pdu.h>
27#include <linux/kernel.h>
Francesco Fusco500f8082013-12-12 16:09:06 +010028#include <linux/hash.h>
Pravin B Shelare6445712013-10-03 18:16:47 -070029#include <linux/jiffies.h>
30#include <linux/llc.h>
31#include <linux/module.h>
32#include <linux/in.h>
33#include <linux/rcupdate.h>
34#include <linux/if_arp.h>
35#include <linux/ip.h>
36#include <linux/ipv6.h>
37#include <linux/sctp.h>
38#include <linux/tcp.h>
39#include <linux/udp.h>
40#include <linux/icmp.h>
41#include <linux/icmpv6.h>
42#include <linux/rculist.h>
43#include <net/ip.h>
44#include <net/ipv6.h>
45#include <net/ndisc.h>
46
Pravin B Shelarb637e492013-10-04 00:14:23 -070047#define TBL_MIN_BUCKETS 1024
48#define REHASH_INTERVAL (10 * 60 * HZ)
49
Pravin B Shelare6445712013-10-03 18:16:47 -070050static struct kmem_cache *flow_cache;
51
52static u16 range_n_bytes(const struct sw_flow_key_range *range)
53{
54 return range->end - range->start;
55}
56
57void ovs_flow_mask_key(struct sw_flow_key *dst, const struct sw_flow_key *src,
58 const struct sw_flow_mask *mask)
59{
60 const long *m = (long *)((u8 *)&mask->key + mask->range.start);
61 const long *s = (long *)((u8 *)src + mask->range.start);
62 long *d = (long *)((u8 *)dst + mask->range.start);
63 int i;
64
65 /* The memory outside of the 'mask->range' are not set since
66 * further operations on 'dst' only uses contents within
67 * 'mask->range'.
68 */
69 for (i = 0; i < range_n_bytes(&mask->range); i += sizeof(long))
70 *d++ = *s++ & *m++;
71}
72
Pravin B Shelare298e502013-10-29 17:22:21 -070073struct sw_flow *ovs_flow_alloc(bool percpu_stats)
Pravin B Shelare6445712013-10-03 18:16:47 -070074{
75 struct sw_flow *flow;
Pravin B Shelare298e502013-10-29 17:22:21 -070076 int cpu;
Pravin B Shelare6445712013-10-03 18:16:47 -070077
78 flow = kmem_cache_alloc(flow_cache, GFP_KERNEL);
79 if (!flow)
80 return ERR_PTR(-ENOMEM);
81
Pravin B Shelare6445712013-10-03 18:16:47 -070082 flow->sf_acts = NULL;
83 flow->mask = NULL;
84
Pravin B Shelare298e502013-10-29 17:22:21 -070085 flow->stats.is_percpu = percpu_stats;
86
87 if (!percpu_stats) {
88 flow->stats.stat = kzalloc(sizeof(*flow->stats.stat), GFP_KERNEL);
89 if (!flow->stats.stat)
90 goto err;
91
92 spin_lock_init(&flow->stats.stat->lock);
93 } else {
94 flow->stats.cpu_stats = alloc_percpu(struct flow_stats);
95 if (!flow->stats.cpu_stats)
96 goto err;
97
98 for_each_possible_cpu(cpu) {
99 struct flow_stats *cpu_stats;
100
101 cpu_stats = per_cpu_ptr(flow->stats.cpu_stats, cpu);
102 spin_lock_init(&cpu_stats->lock);
103 }
104 }
Pravin B Shelare6445712013-10-03 18:16:47 -0700105 return flow;
Pravin B Shelare298e502013-10-29 17:22:21 -0700106err:
Wei Yongjunece37c82014-01-08 18:13:14 +0800107 kmem_cache_free(flow_cache, flow);
Pravin B Shelare298e502013-10-29 17:22:21 -0700108 return ERR_PTR(-ENOMEM);
Pravin B Shelare6445712013-10-03 18:16:47 -0700109}
110
Pravin B Shelarb637e492013-10-04 00:14:23 -0700111int ovs_flow_tbl_count(struct flow_table *table)
112{
113 return table->count;
114}
115
Pravin B Shelare6445712013-10-03 18:16:47 -0700116static struct flex_array *alloc_buckets(unsigned int n_buckets)
117{
118 struct flex_array *buckets;
119 int i, err;
120
121 buckets = flex_array_alloc(sizeof(struct hlist_head),
122 n_buckets, GFP_KERNEL);
123 if (!buckets)
124 return NULL;
125
126 err = flex_array_prealloc(buckets, 0, n_buckets, GFP_KERNEL);
127 if (err) {
128 flex_array_free(buckets);
129 return NULL;
130 }
131
132 for (i = 0; i < n_buckets; i++)
133 INIT_HLIST_HEAD((struct hlist_head *)
134 flex_array_get(buckets, i));
135
136 return buckets;
137}
138
139static void flow_free(struct sw_flow *flow)
140{
141 kfree((struct sf_flow_acts __force *)flow->sf_acts);
Pravin B Shelare298e502013-10-29 17:22:21 -0700142 if (flow->stats.is_percpu)
143 free_percpu(flow->stats.cpu_stats);
144 else
145 kfree(flow->stats.stat);
Pravin B Shelare6445712013-10-03 18:16:47 -0700146 kmem_cache_free(flow_cache, flow);
147}
148
149static void rcu_free_flow_callback(struct rcu_head *rcu)
150{
151 struct sw_flow *flow = container_of(rcu, struct sw_flow, rcu);
152
153 flow_free(flow);
154}
155
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700156static void flow_mask_del_ref(struct sw_flow_mask *mask, bool deferred)
157{
158 if (!mask)
159 return;
160
161 BUG_ON(!mask->ref_count);
162 mask->ref_count--;
163
164 if (!mask->ref_count) {
165 list_del_rcu(&mask->list);
166 if (deferred)
Daniel Borkmann11d6c4612013-12-10 12:02:03 +0100167 kfree_rcu(mask, rcu);
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700168 else
169 kfree(mask);
170 }
171}
172
Pravin B Shelare6445712013-10-03 18:16:47 -0700173void ovs_flow_free(struct sw_flow *flow, bool deferred)
174{
175 if (!flow)
176 return;
177
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700178 flow_mask_del_ref(flow->mask, deferred);
Pravin B Shelare6445712013-10-03 18:16:47 -0700179
180 if (deferred)
181 call_rcu(&flow->rcu, rcu_free_flow_callback);
182 else
183 flow_free(flow);
184}
185
186static void free_buckets(struct flex_array *buckets)
187{
188 flex_array_free(buckets);
189}
190
Pravin B Shelarb637e492013-10-04 00:14:23 -0700191static void __table_instance_destroy(struct table_instance *ti)
Pravin B Shelare6445712013-10-03 18:16:47 -0700192{
193 int i;
194
Pravin B Shelarb637e492013-10-04 00:14:23 -0700195 if (ti->keep_flows)
Pravin B Shelare6445712013-10-03 18:16:47 -0700196 goto skip_flows;
197
Pravin B Shelarb637e492013-10-04 00:14:23 -0700198 for (i = 0; i < ti->n_buckets; i++) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700199 struct sw_flow *flow;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700200 struct hlist_head *head = flex_array_get(ti->buckets, i);
Pravin B Shelare6445712013-10-03 18:16:47 -0700201 struct hlist_node *n;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700202 int ver = ti->node_ver;
Pravin B Shelare6445712013-10-03 18:16:47 -0700203
204 hlist_for_each_entry_safe(flow, n, head, hash_node[ver]) {
205 hlist_del(&flow->hash_node[ver]);
206 ovs_flow_free(flow, false);
207 }
208 }
209
Pravin B Shelare6445712013-10-03 18:16:47 -0700210skip_flows:
Pravin B Shelarb637e492013-10-04 00:14:23 -0700211 free_buckets(ti->buckets);
212 kfree(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700213}
214
Pravin B Shelarb637e492013-10-04 00:14:23 -0700215static struct table_instance *table_instance_alloc(int new_size)
Pravin B Shelare6445712013-10-03 18:16:47 -0700216{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700217 struct table_instance *ti = kmalloc(sizeof(*ti), GFP_KERNEL);
Pravin B Shelare6445712013-10-03 18:16:47 -0700218
Pravin B Shelarb637e492013-10-04 00:14:23 -0700219 if (!ti)
Pravin B Shelare6445712013-10-03 18:16:47 -0700220 return NULL;
221
Pravin B Shelarb637e492013-10-04 00:14:23 -0700222 ti->buckets = alloc_buckets(new_size);
Pravin B Shelare6445712013-10-03 18:16:47 -0700223
Pravin B Shelarb637e492013-10-04 00:14:23 -0700224 if (!ti->buckets) {
225 kfree(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700226 return NULL;
227 }
Pravin B Shelarb637e492013-10-04 00:14:23 -0700228 ti->n_buckets = new_size;
229 ti->node_ver = 0;
230 ti->keep_flows = false;
231 get_random_bytes(&ti->hash_seed, sizeof(u32));
232
233 return ti;
234}
235
236int ovs_flow_tbl_init(struct flow_table *table)
237{
238 struct table_instance *ti;
239
240 ti = table_instance_alloc(TBL_MIN_BUCKETS);
241
242 if (!ti)
243 return -ENOMEM;
244
245 rcu_assign_pointer(table->ti, ti);
246 INIT_LIST_HEAD(&table->mask_list);
247 table->last_rehash = jiffies;
Pravin B Shelare6445712013-10-03 18:16:47 -0700248 table->count = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700249 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700250}
251
252static void flow_tbl_destroy_rcu_cb(struct rcu_head *rcu)
253{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700254 struct table_instance *ti = container_of(rcu, struct table_instance, rcu);
Pravin B Shelare6445712013-10-03 18:16:47 -0700255
Pravin B Shelarb637e492013-10-04 00:14:23 -0700256 __table_instance_destroy(ti);
257}
258
259static void table_instance_destroy(struct table_instance *ti, bool deferred)
260{
261 if (!ti)
262 return;
263
264 if (deferred)
265 call_rcu(&ti->rcu, flow_tbl_destroy_rcu_cb);
266 else
267 __table_instance_destroy(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700268}
269
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700270void ovs_flow_tbl_destroy(struct flow_table *table)
Pravin B Shelare6445712013-10-03 18:16:47 -0700271{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700272 struct table_instance *ti = ovsl_dereference(table->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700273
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700274 table_instance_destroy(ti, false);
Pravin B Shelare6445712013-10-03 18:16:47 -0700275}
276
Pravin B Shelarb637e492013-10-04 00:14:23 -0700277struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700278 u32 *bucket, u32 *last)
279{
280 struct sw_flow *flow;
281 struct hlist_head *head;
282 int ver;
283 int i;
284
Pravin B Shelarb637e492013-10-04 00:14:23 -0700285 ver = ti->node_ver;
286 while (*bucket < ti->n_buckets) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700287 i = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700288 head = flex_array_get(ti->buckets, *bucket);
Pravin B Shelare6445712013-10-03 18:16:47 -0700289 hlist_for_each_entry_rcu(flow, head, hash_node[ver]) {
290 if (i < *last) {
291 i++;
292 continue;
293 }
294 *last = i + 1;
295 return flow;
296 }
297 (*bucket)++;
298 *last = 0;
299 }
300
301 return NULL;
302}
303
Pravin B Shelarb637e492013-10-04 00:14:23 -0700304static struct hlist_head *find_bucket(struct table_instance *ti, u32 hash)
Pravin B Shelare6445712013-10-03 18:16:47 -0700305{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700306 hash = jhash_1word(hash, ti->hash_seed);
307 return flex_array_get(ti->buckets,
308 (hash & (ti->n_buckets - 1)));
Pravin B Shelare6445712013-10-03 18:16:47 -0700309}
310
Pravin B Shelarb637e492013-10-04 00:14:23 -0700311static void table_instance_insert(struct table_instance *ti, struct sw_flow *flow)
Pravin B Shelare6445712013-10-03 18:16:47 -0700312{
313 struct hlist_head *head;
314
Pravin B Shelarb637e492013-10-04 00:14:23 -0700315 head = find_bucket(ti, flow->hash);
316 hlist_add_head_rcu(&flow->hash_node[ti->node_ver], head);
Pravin B Shelare6445712013-10-03 18:16:47 -0700317}
318
Pravin B Shelarb637e492013-10-04 00:14:23 -0700319static void flow_table_copy_flows(struct table_instance *old,
320 struct table_instance *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700321{
322 int old_ver;
323 int i;
324
325 old_ver = old->node_ver;
326 new->node_ver = !old_ver;
327
328 /* Insert in new table. */
329 for (i = 0; i < old->n_buckets; i++) {
330 struct sw_flow *flow;
331 struct hlist_head *head;
332
333 head = flex_array_get(old->buckets, i);
334
335 hlist_for_each_entry(flow, head, hash_node[old_ver])
Pravin B Shelarb637e492013-10-04 00:14:23 -0700336 table_instance_insert(new, flow);
Pravin B Shelare6445712013-10-03 18:16:47 -0700337 }
338
Pravin B Shelare6445712013-10-03 18:16:47 -0700339 old->keep_flows = true;
340}
341
Pravin B Shelarb637e492013-10-04 00:14:23 -0700342static struct table_instance *table_instance_rehash(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700343 int n_buckets)
344{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700345 struct table_instance *new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700346
Pravin B Shelarb637e492013-10-04 00:14:23 -0700347 new_ti = table_instance_alloc(n_buckets);
348 if (!new_ti)
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700349 return NULL;
Pravin B Shelare6445712013-10-03 18:16:47 -0700350
Pravin B Shelarb637e492013-10-04 00:14:23 -0700351 flow_table_copy_flows(ti, new_ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700352
Pravin B Shelarb637e492013-10-04 00:14:23 -0700353 return new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700354}
355
Pravin B Shelarb637e492013-10-04 00:14:23 -0700356int ovs_flow_tbl_flush(struct flow_table *flow_table)
Pravin B Shelare6445712013-10-03 18:16:47 -0700357{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700358 struct table_instance *old_ti;
359 struct table_instance *new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700360
Pravin B Shelarb637e492013-10-04 00:14:23 -0700361 old_ti = ovsl_dereference(flow_table->ti);
362 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
363 if (!new_ti)
364 return -ENOMEM;
365
366 rcu_assign_pointer(flow_table->ti, new_ti);
367 flow_table->last_rehash = jiffies;
368 flow_table->count = 0;
369
370 table_instance_destroy(old_ti, true);
371 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700372}
373
374static u32 flow_hash(const struct sw_flow_key *key, int key_start,
375 int key_end)
376{
377 u32 *hash_key = (u32 *)((u8 *)key + key_start);
378 int hash_u32s = (key_end - key_start) >> 2;
379
380 /* Make sure number of hash bytes are multiple of u32. */
381 BUILD_BUG_ON(sizeof(long) % sizeof(u32));
382
Francesco Fusco500f8082013-12-12 16:09:06 +0100383 return arch_fast_hash2(hash_key, hash_u32s, 0);
Pravin B Shelare6445712013-10-03 18:16:47 -0700384}
385
386static int flow_key_start(const struct sw_flow_key *key)
387{
388 if (key->tun_key.ipv4_dst)
389 return 0;
390 else
391 return rounddown(offsetof(struct sw_flow_key, phy),
392 sizeof(long));
393}
394
395static bool cmp_key(const struct sw_flow_key *key1,
396 const struct sw_flow_key *key2,
397 int key_start, int key_end)
398{
399 const long *cp1 = (long *)((u8 *)key1 + key_start);
400 const long *cp2 = (long *)((u8 *)key2 + key_start);
401 long diffs = 0;
402 int i;
403
404 for (i = key_start; i < key_end; i += sizeof(long))
405 diffs |= *cp1++ ^ *cp2++;
406
407 return diffs == 0;
408}
409
410static bool flow_cmp_masked_key(const struct sw_flow *flow,
411 const struct sw_flow_key *key,
412 int key_start, int key_end)
413{
414 return cmp_key(&flow->key, key, key_start, key_end);
415}
416
417bool ovs_flow_cmp_unmasked_key(const struct sw_flow *flow,
418 struct sw_flow_match *match)
419{
420 struct sw_flow_key *key = match->key;
421 int key_start = flow_key_start(key);
422 int key_end = match->range.end;
423
424 return cmp_key(&flow->unmasked_key, key, key_start, key_end);
425}
426
Pravin B Shelarb637e492013-10-04 00:14:23 -0700427static struct sw_flow *masked_flow_lookup(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700428 const struct sw_flow_key *unmasked,
429 struct sw_flow_mask *mask)
430{
431 struct sw_flow *flow;
432 struct hlist_head *head;
433 int key_start = mask->range.start;
434 int key_end = mask->range.end;
435 u32 hash;
436 struct sw_flow_key masked_key;
437
438 ovs_flow_mask_key(&masked_key, unmasked, mask);
439 hash = flow_hash(&masked_key, key_start, key_end);
Pravin B Shelarb637e492013-10-04 00:14:23 -0700440 head = find_bucket(ti, hash);
441 hlist_for_each_entry_rcu(flow, head, hash_node[ti->node_ver]) {
Pravin B Shelar8ddd0942013-10-29 23:10:58 -0700442 if (flow->mask == mask && flow->hash == hash &&
Pravin B Shelare6445712013-10-03 18:16:47 -0700443 flow_cmp_masked_key(flow, &masked_key,
444 key_start, key_end))
445 return flow;
446 }
447 return NULL;
448}
449
Andy Zhou5bb50632013-11-25 10:42:46 -0800450struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl,
Andy Zhou1bd71162013-10-22 10:42:46 -0700451 const struct sw_flow_key *key,
452 u32 *n_mask_hit)
Pravin B Shelare6445712013-10-03 18:16:47 -0700453{
Jesse Gross663efa32013-12-03 10:58:53 -0800454 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700455 struct sw_flow_mask *mask;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700456 struct sw_flow *flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700457
Andy Zhou1bd71162013-10-22 10:42:46 -0700458 *n_mask_hit = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700459 list_for_each_entry_rcu(mask, &tbl->mask_list, list) {
Andy Zhou1bd71162013-10-22 10:42:46 -0700460 (*n_mask_hit)++;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700461 flow = masked_flow_lookup(ti, key, mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700462 if (flow) /* Found */
Pravin B Shelarb637e492013-10-04 00:14:23 -0700463 return flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700464 }
Pravin B Shelarb637e492013-10-04 00:14:23 -0700465 return NULL;
466}
Pravin B Shelare6445712013-10-03 18:16:47 -0700467
Andy Zhou5bb50632013-11-25 10:42:46 -0800468struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *tbl,
469 const struct sw_flow_key *key)
470{
471 u32 __always_unused n_mask_hit;
472
473 return ovs_flow_tbl_lookup_stats(tbl, key, &n_mask_hit);
474}
475
Andy Zhou1bd71162013-10-22 10:42:46 -0700476int ovs_flow_tbl_num_masks(const struct flow_table *table)
477{
478 struct sw_flow_mask *mask;
479 int num = 0;
480
481 list_for_each_entry(mask, &table->mask_list, list)
482 num++;
483
484 return num;
485}
486
Pravin B Shelarb637e492013-10-04 00:14:23 -0700487static struct table_instance *table_instance_expand(struct table_instance *ti)
488{
489 return table_instance_rehash(ti, ti->n_buckets * 2);
Pravin B Shelare6445712013-10-03 18:16:47 -0700490}
491
Pravin B Shelare6445712013-10-03 18:16:47 -0700492void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow)
493{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700494 struct table_instance *ti = ovsl_dereference(table->ti);
495
Pravin B Shelare6445712013-10-03 18:16:47 -0700496 BUG_ON(table->count == 0);
Pravin B Shelarb637e492013-10-04 00:14:23 -0700497 hlist_del_rcu(&flow->hash_node[ti->node_ver]);
Pravin B Shelare6445712013-10-03 18:16:47 -0700498 table->count--;
499}
500
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700501static struct sw_flow_mask *mask_alloc(void)
Pravin B Shelare6445712013-10-03 18:16:47 -0700502{
503 struct sw_flow_mask *mask;
504
505 mask = kmalloc(sizeof(*mask), GFP_KERNEL);
506 if (mask)
507 mask->ref_count = 0;
508
509 return mask;
510}
511
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700512static void mask_add_ref(struct sw_flow_mask *mask)
Pravin B Shelare6445712013-10-03 18:16:47 -0700513{
514 mask->ref_count++;
515}
516
Pravin B Shelare6445712013-10-03 18:16:47 -0700517static bool mask_equal(const struct sw_flow_mask *a,
518 const struct sw_flow_mask *b)
519{
520 u8 *a_ = (u8 *)&a->key + a->range.start;
521 u8 *b_ = (u8 *)&b->key + b->range.start;
522
523 return (a->range.end == b->range.end)
524 && (a->range.start == b->range.start)
525 && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0);
526}
527
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700528static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl,
Pravin B Shelare6445712013-10-03 18:16:47 -0700529 const struct sw_flow_mask *mask)
530{
531 struct list_head *ml;
532
Pravin B Shelarb637e492013-10-04 00:14:23 -0700533 list_for_each(ml, &tbl->mask_list) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700534 struct sw_flow_mask *m;
535 m = container_of(ml, struct sw_flow_mask, list);
536 if (mask_equal(mask, m))
537 return m;
538 }
539
540 return NULL;
541}
542
Ben Pfaffd1211902013-11-25 10:40:51 -0800543/* Add 'mask' into the mask list, if it is not already there. */
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700544static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow,
545 struct sw_flow_mask *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700546{
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700547 struct sw_flow_mask *mask;
548 mask = flow_mask_find(tbl, new);
549 if (!mask) {
550 /* Allocate a new mask if none exsits. */
551 mask = mask_alloc();
552 if (!mask)
553 return -ENOMEM;
554 mask->key = new->key;
555 mask->range = new->range;
556 list_add_rcu(&mask->list, &tbl->mask_list);
557 }
558
559 mask_add_ref(mask);
560 flow->mask = mask;
561 return 0;
562}
563
564int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
565 struct sw_flow_mask *mask)
566{
567 struct table_instance *new_ti = NULL;
568 struct table_instance *ti;
569 int err;
570
571 err = flow_mask_insert(table, flow, mask);
572 if (err)
573 return err;
574
575 flow->hash = flow_hash(&flow->key, flow->mask->range.start,
576 flow->mask->range.end);
577 ti = ovsl_dereference(table->ti);
578 table_instance_insert(ti, flow);
579 table->count++;
580
581 /* Expand table, if necessary, to make room. */
582 if (table->count > ti->n_buckets)
583 new_ti = table_instance_expand(ti);
584 else if (time_after(jiffies, table->last_rehash + REHASH_INTERVAL))
585 new_ti = table_instance_rehash(ti, ti->n_buckets);
586
587 if (new_ti) {
588 rcu_assign_pointer(table->ti, new_ti);
589 table_instance_destroy(ti, true);
590 table->last_rehash = jiffies;
591 }
592 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700593}
594
595/* Initializes the flow module.
596 * Returns zero if successful or a negative error code. */
597int ovs_flow_init(void)
598{
599 BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long));
600 BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long));
601
602 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow), 0,
603 0, NULL);
604 if (flow_cache == NULL)
605 return -ENOMEM;
606
607 return 0;
608}
609
610/* Uninitializes the flow module. */
611void ovs_flow_exit(void)
612{
613 kmem_cache_destroy(flow_cache);
614}