blob: d8ef37b937bda884f00ffe7c53b8d95446c5f0f0 [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;
Jarno Rajahalme63e79592014-03-27 12:42:54 -070051struct kmem_cache *flow_stats_cache __read_mostly;
Pravin B Shelare6445712013-10-03 18:16:47 -070052
53static u16 range_n_bytes(const struct sw_flow_key_range *range)
54{
55 return range->end - range->start;
56}
57
58void ovs_flow_mask_key(struct sw_flow_key *dst, const struct sw_flow_key *src,
59 const struct sw_flow_mask *mask)
60{
Daniele Di Proietto70851302014-01-23 10:56:49 -080061 const long *m = (const long *)((const u8 *)&mask->key +
62 mask->range.start);
63 const long *s = (const long *)((const u8 *)src +
64 mask->range.start);
Pravin B Shelare6445712013-10-03 18:16:47 -070065 long *d = (long *)((u8 *)dst + mask->range.start);
66 int i;
67
68 /* The memory outside of the 'mask->range' are not set since
69 * further operations on 'dst' only uses contents within
70 * 'mask->range'.
71 */
72 for (i = 0; i < range_n_bytes(&mask->range); i += sizeof(long))
73 *d++ = *s++ & *m++;
74}
75
Jarno Rajahalme23dabf82014-03-27 12:35:23 -070076struct sw_flow *ovs_flow_alloc(void)
Pravin B Shelare6445712013-10-03 18:16:47 -070077{
78 struct sw_flow *flow;
Jarno Rajahalme63e79592014-03-27 12:42:54 -070079 struct flow_stats *stats;
80 int node;
Pravin B Shelare6445712013-10-03 18:16:47 -070081
82 flow = kmem_cache_alloc(flow_cache, GFP_KERNEL);
83 if (!flow)
84 return ERR_PTR(-ENOMEM);
85
Pravin B Shelare6445712013-10-03 18:16:47 -070086 flow->sf_acts = NULL;
87 flow->mask = NULL;
Jarno Rajahalme63e79592014-03-27 12:42:54 -070088 flow->stats_last_writer = NUMA_NO_NODE;
Pravin B Shelare6445712013-10-03 18:16:47 -070089
Jarno Rajahalme63e79592014-03-27 12:42:54 -070090 /* Initialize the default stat node. */
91 stats = kmem_cache_alloc_node(flow_stats_cache,
92 GFP_KERNEL | __GFP_ZERO, 0);
93 if (!stats)
Jarno Rajahalme23dabf82014-03-27 12:35:23 -070094 goto err;
Pravin B Shelare298e502013-10-29 17:22:21 -070095
Jarno Rajahalme63e79592014-03-27 12:42:54 -070096 spin_lock_init(&stats->lock);
Pravin B Shelare298e502013-10-29 17:22:21 -070097
Jarno Rajahalme63e79592014-03-27 12:42:54 -070098 RCU_INIT_POINTER(flow->stats[0], stats);
99
100 for_each_node(node)
101 if (node != 0)
102 RCU_INIT_POINTER(flow->stats[node], NULL);
103
Pravin B Shelare6445712013-10-03 18:16:47 -0700104 return flow;
Pravin B Shelare298e502013-10-29 17:22:21 -0700105err:
Wei Yongjunece37c82014-01-08 18:13:14 +0800106 kmem_cache_free(flow_cache, flow);
Pravin B Shelare298e502013-10-29 17:22:21 -0700107 return ERR_PTR(-ENOMEM);
Pravin B Shelare6445712013-10-03 18:16:47 -0700108}
109
Pravin B Shelarb637e492013-10-04 00:14:23 -0700110int ovs_flow_tbl_count(struct flow_table *table)
111{
112 return table->count;
113}
114
Pravin B Shelare6445712013-10-03 18:16:47 -0700115static struct flex_array *alloc_buckets(unsigned int n_buckets)
116{
117 struct flex_array *buckets;
118 int i, err;
119
120 buckets = flex_array_alloc(sizeof(struct hlist_head),
121 n_buckets, GFP_KERNEL);
122 if (!buckets)
123 return NULL;
124
125 err = flex_array_prealloc(buckets, 0, n_buckets, GFP_KERNEL);
126 if (err) {
127 flex_array_free(buckets);
128 return NULL;
129 }
130
131 for (i = 0; i < n_buckets; i++)
132 INIT_HLIST_HEAD((struct hlist_head *)
133 flex_array_get(buckets, i));
134
135 return buckets;
136}
137
138static void flow_free(struct sw_flow *flow)
139{
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700140 int node;
141
Pravin B Shelare6445712013-10-03 18:16:47 -0700142 kfree((struct sf_flow_acts __force *)flow->sf_acts);
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700143 for_each_node(node)
144 if (flow->stats[node])
145 kmem_cache_free(flow_stats_cache,
146 (struct flow_stats __force *)flow->stats[node]);
Pravin B Shelare6445712013-10-03 18:16:47 -0700147 kmem_cache_free(flow_cache, flow);
148}
149
150static void rcu_free_flow_callback(struct rcu_head *rcu)
151{
152 struct sw_flow *flow = container_of(rcu, struct sw_flow, rcu);
153
154 flow_free(flow);
155}
156
157void ovs_flow_free(struct sw_flow *flow, bool deferred)
158{
159 if (!flow)
160 return;
161
Andy Zhoue80857c2014-01-21 09:31:04 -0800162 if (flow->mask) {
163 struct sw_flow_mask *mask = flow->mask;
164
Pravin B Shelare4c6d752014-01-31 09:43:23 -0800165 /* ovs-lock is required to protect mask-refcount and
166 * mask list.
167 */
168 ASSERT_OVSL();
Andy Zhoue80857c2014-01-21 09:31:04 -0800169 BUG_ON(!mask->ref_count);
170 mask->ref_count--;
171
172 if (!mask->ref_count) {
173 list_del_rcu(&mask->list);
174 if (deferred)
175 kfree_rcu(mask, rcu);
176 else
177 kfree(mask);
178 }
179 }
Pravin B Shelare6445712013-10-03 18:16:47 -0700180
181 if (deferred)
182 call_rcu(&flow->rcu, rcu_free_flow_callback);
183 else
184 flow_free(flow);
185}
186
187static void free_buckets(struct flex_array *buckets)
188{
189 flex_array_free(buckets);
190}
191
Andy Zhoue80857c2014-01-21 09:31:04 -0800192
Pravin B Shelarb637e492013-10-04 00:14:23 -0700193static void __table_instance_destroy(struct table_instance *ti)
Pravin B Shelare6445712013-10-03 18:16:47 -0700194{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700195 free_buckets(ti->buckets);
196 kfree(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700197}
198
Pravin B Shelarb637e492013-10-04 00:14:23 -0700199static struct table_instance *table_instance_alloc(int new_size)
Pravin B Shelare6445712013-10-03 18:16:47 -0700200{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700201 struct table_instance *ti = kmalloc(sizeof(*ti), GFP_KERNEL);
Pravin B Shelare6445712013-10-03 18:16:47 -0700202
Pravin B Shelarb637e492013-10-04 00:14:23 -0700203 if (!ti)
Pravin B Shelare6445712013-10-03 18:16:47 -0700204 return NULL;
205
Pravin B Shelarb637e492013-10-04 00:14:23 -0700206 ti->buckets = alloc_buckets(new_size);
Pravin B Shelare6445712013-10-03 18:16:47 -0700207
Pravin B Shelarb637e492013-10-04 00:14:23 -0700208 if (!ti->buckets) {
209 kfree(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700210 return NULL;
211 }
Pravin B Shelarb637e492013-10-04 00:14:23 -0700212 ti->n_buckets = new_size;
213 ti->node_ver = 0;
214 ti->keep_flows = false;
215 get_random_bytes(&ti->hash_seed, sizeof(u32));
216
217 return ti;
218}
219
220int ovs_flow_tbl_init(struct flow_table *table)
221{
222 struct table_instance *ti;
223
224 ti = table_instance_alloc(TBL_MIN_BUCKETS);
225
226 if (!ti)
227 return -ENOMEM;
228
229 rcu_assign_pointer(table->ti, ti);
230 INIT_LIST_HEAD(&table->mask_list);
231 table->last_rehash = jiffies;
Pravin B Shelare6445712013-10-03 18:16:47 -0700232 table->count = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700233 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700234}
235
236static void flow_tbl_destroy_rcu_cb(struct rcu_head *rcu)
237{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700238 struct table_instance *ti = container_of(rcu, struct table_instance, rcu);
Pravin B Shelare6445712013-10-03 18:16:47 -0700239
Pravin B Shelarb637e492013-10-04 00:14:23 -0700240 __table_instance_destroy(ti);
241}
242
243static void table_instance_destroy(struct table_instance *ti, bool deferred)
244{
Andy Zhoue80857c2014-01-21 09:31:04 -0800245 int i;
246
Pravin B Shelarb637e492013-10-04 00:14:23 -0700247 if (!ti)
248 return;
249
Andy Zhoue80857c2014-01-21 09:31:04 -0800250 if (ti->keep_flows)
251 goto skip_flows;
252
253 for (i = 0; i < ti->n_buckets; i++) {
254 struct sw_flow *flow;
255 struct hlist_head *head = flex_array_get(ti->buckets, i);
256 struct hlist_node *n;
257 int ver = ti->node_ver;
258
259 hlist_for_each_entry_safe(flow, n, head, hash_node[ver]) {
260 hlist_del_rcu(&flow->hash_node[ver]);
261 ovs_flow_free(flow, deferred);
262 }
263 }
264
265skip_flows:
Pravin B Shelarb637e492013-10-04 00:14:23 -0700266 if (deferred)
267 call_rcu(&ti->rcu, flow_tbl_destroy_rcu_cb);
268 else
269 __table_instance_destroy(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700270}
271
Andy Zhoue80857c2014-01-21 09:31:04 -0800272void ovs_flow_tbl_destroy(struct flow_table *table, bool deferred)
Pravin B Shelare6445712013-10-03 18:16:47 -0700273{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700274 struct table_instance *ti = ovsl_dereference(table->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700275
Andy Zhoue80857c2014-01-21 09:31:04 -0800276 table_instance_destroy(ti, deferred);
Pravin B Shelare6445712013-10-03 18:16:47 -0700277}
278
Pravin B Shelarb637e492013-10-04 00:14:23 -0700279struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700280 u32 *bucket, u32 *last)
281{
282 struct sw_flow *flow;
283 struct hlist_head *head;
284 int ver;
285 int i;
286
Pravin B Shelarb637e492013-10-04 00:14:23 -0700287 ver = ti->node_ver;
288 while (*bucket < ti->n_buckets) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700289 i = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700290 head = flex_array_get(ti->buckets, *bucket);
Pravin B Shelare6445712013-10-03 18:16:47 -0700291 hlist_for_each_entry_rcu(flow, head, hash_node[ver]) {
292 if (i < *last) {
293 i++;
294 continue;
295 }
296 *last = i + 1;
297 return flow;
298 }
299 (*bucket)++;
300 *last = 0;
301 }
302
303 return NULL;
304}
305
Pravin B Shelarb637e492013-10-04 00:14:23 -0700306static struct hlist_head *find_bucket(struct table_instance *ti, u32 hash)
Pravin B Shelare6445712013-10-03 18:16:47 -0700307{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700308 hash = jhash_1word(hash, ti->hash_seed);
309 return flex_array_get(ti->buckets,
310 (hash & (ti->n_buckets - 1)));
Pravin B Shelare6445712013-10-03 18:16:47 -0700311}
312
Pravin B Shelarb637e492013-10-04 00:14:23 -0700313static void table_instance_insert(struct table_instance *ti, struct sw_flow *flow)
Pravin B Shelare6445712013-10-03 18:16:47 -0700314{
315 struct hlist_head *head;
316
Pravin B Shelarb637e492013-10-04 00:14:23 -0700317 head = find_bucket(ti, flow->hash);
318 hlist_add_head_rcu(&flow->hash_node[ti->node_ver], head);
Pravin B Shelare6445712013-10-03 18:16:47 -0700319}
320
Pravin B Shelarb637e492013-10-04 00:14:23 -0700321static void flow_table_copy_flows(struct table_instance *old,
322 struct table_instance *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700323{
324 int old_ver;
325 int i;
326
327 old_ver = old->node_ver;
328 new->node_ver = !old_ver;
329
330 /* Insert in new table. */
331 for (i = 0; i < old->n_buckets; i++) {
332 struct sw_flow *flow;
333 struct hlist_head *head;
334
335 head = flex_array_get(old->buckets, i);
336
337 hlist_for_each_entry(flow, head, hash_node[old_ver])
Pravin B Shelarb637e492013-10-04 00:14:23 -0700338 table_instance_insert(new, flow);
Pravin B Shelare6445712013-10-03 18:16:47 -0700339 }
340
Pravin B Shelare6445712013-10-03 18:16:47 -0700341 old->keep_flows = true;
342}
343
Pravin B Shelarb637e492013-10-04 00:14:23 -0700344static struct table_instance *table_instance_rehash(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700345 int n_buckets)
346{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700347 struct table_instance *new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700348
Pravin B Shelarb637e492013-10-04 00:14:23 -0700349 new_ti = table_instance_alloc(n_buckets);
350 if (!new_ti)
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700351 return NULL;
Pravin B Shelare6445712013-10-03 18:16:47 -0700352
Pravin B Shelarb637e492013-10-04 00:14:23 -0700353 flow_table_copy_flows(ti, new_ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700354
Pravin B Shelarb637e492013-10-04 00:14:23 -0700355 return new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700356}
357
Pravin B Shelarb637e492013-10-04 00:14:23 -0700358int ovs_flow_tbl_flush(struct flow_table *flow_table)
Pravin B Shelare6445712013-10-03 18:16:47 -0700359{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700360 struct table_instance *old_ti;
361 struct table_instance *new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700362
Pravin B Shelarb637e492013-10-04 00:14:23 -0700363 old_ti = ovsl_dereference(flow_table->ti);
364 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
365 if (!new_ti)
366 return -ENOMEM;
367
368 rcu_assign_pointer(flow_table->ti, new_ti);
369 flow_table->last_rehash = jiffies;
370 flow_table->count = 0;
371
372 table_instance_destroy(old_ti, true);
373 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700374}
375
376static u32 flow_hash(const struct sw_flow_key *key, int key_start,
377 int key_end)
378{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800379 const u32 *hash_key = (const u32 *)((const u8 *)key + key_start);
Pravin B Shelare6445712013-10-03 18:16:47 -0700380 int hash_u32s = (key_end - key_start) >> 2;
381
382 /* Make sure number of hash bytes are multiple of u32. */
383 BUILD_BUG_ON(sizeof(long) % sizeof(u32));
384
Francesco Fusco500f8082013-12-12 16:09:06 +0100385 return arch_fast_hash2(hash_key, hash_u32s, 0);
Pravin B Shelare6445712013-10-03 18:16:47 -0700386}
387
388static int flow_key_start(const struct sw_flow_key *key)
389{
390 if (key->tun_key.ipv4_dst)
391 return 0;
392 else
393 return rounddown(offsetof(struct sw_flow_key, phy),
394 sizeof(long));
395}
396
397static bool cmp_key(const struct sw_flow_key *key1,
398 const struct sw_flow_key *key2,
399 int key_start, int key_end)
400{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800401 const long *cp1 = (const long *)((const u8 *)key1 + key_start);
402 const long *cp2 = (const long *)((const u8 *)key2 + key_start);
Pravin B Shelare6445712013-10-03 18:16:47 -0700403 long diffs = 0;
404 int i;
405
406 for (i = key_start; i < key_end; i += sizeof(long))
407 diffs |= *cp1++ ^ *cp2++;
408
409 return diffs == 0;
410}
411
412static bool flow_cmp_masked_key(const struct sw_flow *flow,
413 const struct sw_flow_key *key,
414 int key_start, int key_end)
415{
416 return cmp_key(&flow->key, key, key_start, key_end);
417}
418
419bool ovs_flow_cmp_unmasked_key(const struct sw_flow *flow,
420 struct sw_flow_match *match)
421{
422 struct sw_flow_key *key = match->key;
423 int key_start = flow_key_start(key);
424 int key_end = match->range.end;
425
426 return cmp_key(&flow->unmasked_key, key, key_start, key_end);
427}
428
Pravin B Shelarb637e492013-10-04 00:14:23 -0700429static struct sw_flow *masked_flow_lookup(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700430 const struct sw_flow_key *unmasked,
431 struct sw_flow_mask *mask)
432{
433 struct sw_flow *flow;
434 struct hlist_head *head;
435 int key_start = mask->range.start;
436 int key_end = mask->range.end;
437 u32 hash;
438 struct sw_flow_key masked_key;
439
440 ovs_flow_mask_key(&masked_key, unmasked, mask);
441 hash = flow_hash(&masked_key, key_start, key_end);
Pravin B Shelarb637e492013-10-04 00:14:23 -0700442 head = find_bucket(ti, hash);
443 hlist_for_each_entry_rcu(flow, head, hash_node[ti->node_ver]) {
Pravin B Shelar8ddd0942013-10-29 23:10:58 -0700444 if (flow->mask == mask && flow->hash == hash &&
Pravin B Shelare6445712013-10-03 18:16:47 -0700445 flow_cmp_masked_key(flow, &masked_key,
446 key_start, key_end))
447 return flow;
448 }
449 return NULL;
450}
451
Andy Zhou5bb50632013-11-25 10:42:46 -0800452struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl,
Andy Zhou1bd71162013-10-22 10:42:46 -0700453 const struct sw_flow_key *key,
454 u32 *n_mask_hit)
Pravin B Shelare6445712013-10-03 18:16:47 -0700455{
Jesse Gross663efa32013-12-03 10:58:53 -0800456 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700457 struct sw_flow_mask *mask;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700458 struct sw_flow *flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700459
Andy Zhou1bd71162013-10-22 10:42:46 -0700460 *n_mask_hit = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700461 list_for_each_entry_rcu(mask, &tbl->mask_list, list) {
Andy Zhou1bd71162013-10-22 10:42:46 -0700462 (*n_mask_hit)++;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700463 flow = masked_flow_lookup(ti, key, mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700464 if (flow) /* Found */
Pravin B Shelarb637e492013-10-04 00:14:23 -0700465 return flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700466 }
Pravin B Shelarb637e492013-10-04 00:14:23 -0700467 return NULL;
468}
Pravin B Shelare6445712013-10-03 18:16:47 -0700469
Andy Zhou5bb50632013-11-25 10:42:46 -0800470struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *tbl,
471 const struct sw_flow_key *key)
472{
473 u32 __always_unused n_mask_hit;
474
475 return ovs_flow_tbl_lookup_stats(tbl, key, &n_mask_hit);
476}
477
Andy Zhou1bd71162013-10-22 10:42:46 -0700478int ovs_flow_tbl_num_masks(const struct flow_table *table)
479{
480 struct sw_flow_mask *mask;
481 int num = 0;
482
483 list_for_each_entry(mask, &table->mask_list, list)
484 num++;
485
486 return num;
487}
488
Pravin B Shelarb637e492013-10-04 00:14:23 -0700489static struct table_instance *table_instance_expand(struct table_instance *ti)
490{
491 return table_instance_rehash(ti, ti->n_buckets * 2);
Pravin B Shelare6445712013-10-03 18:16:47 -0700492}
493
Pravin B Shelare6445712013-10-03 18:16:47 -0700494void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow)
495{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700496 struct table_instance *ti = ovsl_dereference(table->ti);
497
Pravin B Shelare6445712013-10-03 18:16:47 -0700498 BUG_ON(table->count == 0);
Pravin B Shelarb637e492013-10-04 00:14:23 -0700499 hlist_del_rcu(&flow->hash_node[ti->node_ver]);
Pravin B Shelare6445712013-10-03 18:16:47 -0700500 table->count--;
501}
502
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700503static struct sw_flow_mask *mask_alloc(void)
Pravin B Shelare6445712013-10-03 18:16:47 -0700504{
505 struct sw_flow_mask *mask;
506
507 mask = kmalloc(sizeof(*mask), GFP_KERNEL);
508 if (mask)
Andy Zhoue80857c2014-01-21 09:31:04 -0800509 mask->ref_count = 1;
Pravin B Shelare6445712013-10-03 18:16:47 -0700510
511 return mask;
512}
513
Pravin B Shelare6445712013-10-03 18:16:47 -0700514static bool mask_equal(const struct sw_flow_mask *a,
515 const struct sw_flow_mask *b)
516{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800517 const u8 *a_ = (const u8 *)&a->key + a->range.start;
518 const u8 *b_ = (const u8 *)&b->key + b->range.start;
Pravin B Shelare6445712013-10-03 18:16:47 -0700519
520 return (a->range.end == b->range.end)
521 && (a->range.start == b->range.start)
522 && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0);
523}
524
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700525static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl,
Pravin B Shelare6445712013-10-03 18:16:47 -0700526 const struct sw_flow_mask *mask)
527{
528 struct list_head *ml;
529
Pravin B Shelarb637e492013-10-04 00:14:23 -0700530 list_for_each(ml, &tbl->mask_list) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700531 struct sw_flow_mask *m;
532 m = container_of(ml, struct sw_flow_mask, list);
533 if (mask_equal(mask, m))
534 return m;
535 }
536
537 return NULL;
538}
539
Ben Pfaffd1211902013-11-25 10:40:51 -0800540/* Add 'mask' into the mask list, if it is not already there. */
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700541static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow,
542 struct sw_flow_mask *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700543{
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700544 struct sw_flow_mask *mask;
545 mask = flow_mask_find(tbl, new);
546 if (!mask) {
547 /* Allocate a new mask if none exsits. */
548 mask = mask_alloc();
549 if (!mask)
550 return -ENOMEM;
551 mask->key = new->key;
552 mask->range = new->range;
553 list_add_rcu(&mask->list, &tbl->mask_list);
Andy Zhoue80857c2014-01-21 09:31:04 -0800554 } else {
555 BUG_ON(!mask->ref_count);
556 mask->ref_count++;
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700557 }
558
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700559 flow->mask = mask;
560 return 0;
561}
562
563int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
564 struct sw_flow_mask *mask)
565{
566 struct table_instance *new_ti = NULL;
567 struct table_instance *ti;
568 int err;
569
570 err = flow_mask_insert(table, flow, mask);
571 if (err)
572 return err;
573
574 flow->hash = flow_hash(&flow->key, flow->mask->range.start,
575 flow->mask->range.end);
576 ti = ovsl_dereference(table->ti);
577 table_instance_insert(ti, flow);
578 table->count++;
579
580 /* Expand table, if necessary, to make room. */
581 if (table->count > ti->n_buckets)
582 new_ti = table_instance_expand(ti);
583 else if (time_after(jiffies, table->last_rehash + REHASH_INTERVAL))
584 new_ti = table_instance_rehash(ti, ti->n_buckets);
585
586 if (new_ti) {
587 rcu_assign_pointer(table->ti, new_ti);
588 table_instance_destroy(ti, true);
589 table->last_rehash = jiffies;
590 }
591 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700592}
593
594/* Initializes the flow module.
595 * Returns zero if successful or a negative error code. */
596int ovs_flow_init(void)
597{
598 BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long));
599 BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long));
600
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700601 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow)
602 + (num_possible_nodes()
603 * sizeof(struct flow_stats *)),
604 0, 0, NULL);
Pravin B Shelare6445712013-10-03 18:16:47 -0700605 if (flow_cache == NULL)
606 return -ENOMEM;
607
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700608 flow_stats_cache
609 = kmem_cache_create("sw_flow_stats", sizeof(struct flow_stats),
610 0, SLAB_HWCACHE_ALIGN, NULL);
611 if (flow_stats_cache == NULL) {
612 kmem_cache_destroy(flow_cache);
613 flow_cache = NULL;
614 return -ENOMEM;
615 }
616
Pravin B Shelare6445712013-10-03 18:16:47 -0700617 return 0;
618}
619
620/* Uninitializes the flow module. */
621void ovs_flow_exit(void)
622{
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700623 kmem_cache_destroy(flow_stats_cache);
Pravin B Shelare6445712013-10-03 18:16:47 -0700624 kmem_cache_destroy(flow_cache);
625}