blob: 5899bf161c617de67566f60ad86a23b8ee111d90 [file] [log] [blame]
Pravin B Shelare6445712013-10-03 18:16:47 -07001/*
Pravin B Shelar9b996e52014-05-06 18:41:20 -07002 * Copyright (c) 2007-2014 Nicira, Inc.
Pravin B Shelare6445712013-10-03 18:16:47 -07003 *
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>
Daniel Borkmann87545892014-12-10 16:33:11 +010028#include <linux/jhash.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
Thomas Graf12eb18f2014-11-06 06:58:52 -0800110int ovs_flow_tbl_count(const struct flow_table *table)
Pravin B Shelarb637e492013-10-04 00:14:23 -0700111{
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
Jarno Rajahalmeeb072652014-05-05 14:15:18 -0700142 kfree((struct sw_flow_actions __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
Pravin B Shelare6445712013-10-03 18:16:47 -0700162 if (deferred)
163 call_rcu(&flow->rcu, rcu_free_flow_callback);
164 else
165 flow_free(flow);
166}
167
168static void free_buckets(struct flex_array *buckets)
169{
170 flex_array_free(buckets);
171}
172
Andy Zhoue80857c2014-01-21 09:31:04 -0800173
Pravin B Shelarb637e492013-10-04 00:14:23 -0700174static void __table_instance_destroy(struct table_instance *ti)
Pravin B Shelare6445712013-10-03 18:16:47 -0700175{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700176 free_buckets(ti->buckets);
177 kfree(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700178}
179
Pravin B Shelarb637e492013-10-04 00:14:23 -0700180static struct table_instance *table_instance_alloc(int new_size)
Pravin B Shelare6445712013-10-03 18:16:47 -0700181{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700182 struct table_instance *ti = kmalloc(sizeof(*ti), GFP_KERNEL);
Pravin B Shelare6445712013-10-03 18:16:47 -0700183
Pravin B Shelarb637e492013-10-04 00:14:23 -0700184 if (!ti)
Pravin B Shelare6445712013-10-03 18:16:47 -0700185 return NULL;
186
Pravin B Shelarb637e492013-10-04 00:14:23 -0700187 ti->buckets = alloc_buckets(new_size);
Pravin B Shelare6445712013-10-03 18:16:47 -0700188
Pravin B Shelarb637e492013-10-04 00:14:23 -0700189 if (!ti->buckets) {
190 kfree(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700191 return NULL;
192 }
Pravin B Shelarb637e492013-10-04 00:14:23 -0700193 ti->n_buckets = new_size;
194 ti->node_ver = 0;
195 ti->keep_flows = false;
196 get_random_bytes(&ti->hash_seed, sizeof(u32));
197
198 return ti;
199}
200
201int ovs_flow_tbl_init(struct flow_table *table)
202{
203 struct table_instance *ti;
204
205 ti = table_instance_alloc(TBL_MIN_BUCKETS);
206
207 if (!ti)
208 return -ENOMEM;
209
210 rcu_assign_pointer(table->ti, ti);
211 INIT_LIST_HEAD(&table->mask_list);
212 table->last_rehash = jiffies;
Pravin B Shelare6445712013-10-03 18:16:47 -0700213 table->count = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700214 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700215}
216
217static void flow_tbl_destroy_rcu_cb(struct rcu_head *rcu)
218{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700219 struct table_instance *ti = container_of(rcu, struct table_instance, rcu);
Pravin B Shelare6445712013-10-03 18:16:47 -0700220
Pravin B Shelarb637e492013-10-04 00:14:23 -0700221 __table_instance_destroy(ti);
222}
223
224static void table_instance_destroy(struct table_instance *ti, bool deferred)
225{
Andy Zhoue80857c2014-01-21 09:31:04 -0800226 int i;
227
Pravin B Shelarb637e492013-10-04 00:14:23 -0700228 if (!ti)
229 return;
230
Andy Zhoue80857c2014-01-21 09:31:04 -0800231 if (ti->keep_flows)
232 goto skip_flows;
233
234 for (i = 0; i < ti->n_buckets; i++) {
235 struct sw_flow *flow;
236 struct hlist_head *head = flex_array_get(ti->buckets, i);
237 struct hlist_node *n;
238 int ver = ti->node_ver;
239
240 hlist_for_each_entry_safe(flow, n, head, hash_node[ver]) {
241 hlist_del_rcu(&flow->hash_node[ver]);
242 ovs_flow_free(flow, deferred);
243 }
244 }
245
246skip_flows:
Pravin B Shelarb637e492013-10-04 00:14:23 -0700247 if (deferred)
248 call_rcu(&ti->rcu, flow_tbl_destroy_rcu_cb);
249 else
250 __table_instance_destroy(ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700251}
252
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700253/* No need for locking this function is called from RCU callback or
254 * error path.
255 */
256void ovs_flow_tbl_destroy(struct flow_table *table)
Pravin B Shelare6445712013-10-03 18:16:47 -0700257{
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700258 struct table_instance *ti = rcu_dereference_raw(table->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700259
Pravin B Shelar9b996e52014-05-06 18:41:20 -0700260 table_instance_destroy(ti, false);
Pravin B Shelare6445712013-10-03 18:16:47 -0700261}
262
Pravin B Shelarb637e492013-10-04 00:14:23 -0700263struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700264 u32 *bucket, u32 *last)
265{
266 struct sw_flow *flow;
267 struct hlist_head *head;
268 int ver;
269 int i;
270
Pravin B Shelarb637e492013-10-04 00:14:23 -0700271 ver = ti->node_ver;
272 while (*bucket < ti->n_buckets) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700273 i = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700274 head = flex_array_get(ti->buckets, *bucket);
Pravin B Shelare6445712013-10-03 18:16:47 -0700275 hlist_for_each_entry_rcu(flow, head, hash_node[ver]) {
276 if (i < *last) {
277 i++;
278 continue;
279 }
280 *last = i + 1;
281 return flow;
282 }
283 (*bucket)++;
284 *last = 0;
285 }
286
287 return NULL;
288}
289
Pravin B Shelarb637e492013-10-04 00:14:23 -0700290static struct hlist_head *find_bucket(struct table_instance *ti, u32 hash)
Pravin B Shelare6445712013-10-03 18:16:47 -0700291{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700292 hash = jhash_1word(hash, ti->hash_seed);
293 return flex_array_get(ti->buckets,
294 (hash & (ti->n_buckets - 1)));
Pravin B Shelare6445712013-10-03 18:16:47 -0700295}
296
Pravin B Shelarb637e492013-10-04 00:14:23 -0700297static void table_instance_insert(struct table_instance *ti, struct sw_flow *flow)
Pravin B Shelare6445712013-10-03 18:16:47 -0700298{
299 struct hlist_head *head;
300
Pravin B Shelarb637e492013-10-04 00:14:23 -0700301 head = find_bucket(ti, flow->hash);
302 hlist_add_head_rcu(&flow->hash_node[ti->node_ver], head);
Pravin B Shelare6445712013-10-03 18:16:47 -0700303}
304
Pravin B Shelarb637e492013-10-04 00:14:23 -0700305static void flow_table_copy_flows(struct table_instance *old,
306 struct table_instance *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700307{
308 int old_ver;
309 int i;
310
311 old_ver = old->node_ver;
312 new->node_ver = !old_ver;
313
314 /* Insert in new table. */
315 for (i = 0; i < old->n_buckets; i++) {
316 struct sw_flow *flow;
317 struct hlist_head *head;
318
319 head = flex_array_get(old->buckets, i);
320
321 hlist_for_each_entry(flow, head, hash_node[old_ver])
Pravin B Shelarb637e492013-10-04 00:14:23 -0700322 table_instance_insert(new, flow);
Pravin B Shelare6445712013-10-03 18:16:47 -0700323 }
324
Pravin B Shelare6445712013-10-03 18:16:47 -0700325 old->keep_flows = true;
326}
327
Pravin B Shelarb637e492013-10-04 00:14:23 -0700328static struct table_instance *table_instance_rehash(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700329 int n_buckets)
330{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700331 struct table_instance *new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700332
Pravin B Shelarb637e492013-10-04 00:14:23 -0700333 new_ti = table_instance_alloc(n_buckets);
334 if (!new_ti)
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700335 return NULL;
Pravin B Shelare6445712013-10-03 18:16:47 -0700336
Pravin B Shelarb637e492013-10-04 00:14:23 -0700337 flow_table_copy_flows(ti, new_ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700338
Pravin B Shelarb637e492013-10-04 00:14:23 -0700339 return new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700340}
341
Pravin B Shelarb637e492013-10-04 00:14:23 -0700342int ovs_flow_tbl_flush(struct flow_table *flow_table)
Pravin B Shelare6445712013-10-03 18:16:47 -0700343{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700344 struct table_instance *old_ti;
345 struct table_instance *new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700346
Pravin B Shelarb637e492013-10-04 00:14:23 -0700347 old_ti = ovsl_dereference(flow_table->ti);
348 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
349 if (!new_ti)
350 return -ENOMEM;
351
352 rcu_assign_pointer(flow_table->ti, new_ti);
353 flow_table->last_rehash = jiffies;
354 flow_table->count = 0;
355
356 table_instance_destroy(old_ti, true);
357 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700358}
359
360static u32 flow_hash(const struct sw_flow_key *key, int key_start,
361 int key_end)
362{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800363 const u32 *hash_key = (const u32 *)((const u8 *)key + key_start);
Pravin B Shelare6445712013-10-03 18:16:47 -0700364 int hash_u32s = (key_end - key_start) >> 2;
365
366 /* Make sure number of hash bytes are multiple of u32. */
367 BUILD_BUG_ON(sizeof(long) % sizeof(u32));
368
Daniel Borkmann87545892014-12-10 16:33:11 +0100369 return jhash2(hash_key, hash_u32s, 0);
Pravin B Shelare6445712013-10-03 18:16:47 -0700370}
371
372static int flow_key_start(const struct sw_flow_key *key)
373{
374 if (key->tun_key.ipv4_dst)
375 return 0;
376 else
377 return rounddown(offsetof(struct sw_flow_key, phy),
378 sizeof(long));
379}
380
381static bool cmp_key(const struct sw_flow_key *key1,
382 const struct sw_flow_key *key2,
383 int key_start, int key_end)
384{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800385 const long *cp1 = (const long *)((const u8 *)key1 + key_start);
386 const long *cp2 = (const long *)((const u8 *)key2 + key_start);
Pravin B Shelare6445712013-10-03 18:16:47 -0700387 long diffs = 0;
388 int i;
389
390 for (i = key_start; i < key_end; i += sizeof(long))
391 diffs |= *cp1++ ^ *cp2++;
392
393 return diffs == 0;
394}
395
396static bool flow_cmp_masked_key(const struct sw_flow *flow,
397 const struct sw_flow_key *key,
398 int key_start, int key_end)
399{
400 return cmp_key(&flow->key, key, key_start, key_end);
401}
402
403bool ovs_flow_cmp_unmasked_key(const struct sw_flow *flow,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800404 const struct sw_flow_match *match)
Pravin B Shelare6445712013-10-03 18:16:47 -0700405{
406 struct sw_flow_key *key = match->key;
407 int key_start = flow_key_start(key);
408 int key_end = match->range.end;
409
410 return cmp_key(&flow->unmasked_key, key, key_start, key_end);
411}
412
Pravin B Shelarb637e492013-10-04 00:14:23 -0700413static struct sw_flow *masked_flow_lookup(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700414 const struct sw_flow_key *unmasked,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800415 const struct sw_flow_mask *mask)
Pravin B Shelare6445712013-10-03 18:16:47 -0700416{
417 struct sw_flow *flow;
418 struct hlist_head *head;
419 int key_start = mask->range.start;
420 int key_end = mask->range.end;
421 u32 hash;
422 struct sw_flow_key masked_key;
423
424 ovs_flow_mask_key(&masked_key, unmasked, mask);
425 hash = flow_hash(&masked_key, key_start, key_end);
Pravin B Shelarb637e492013-10-04 00:14:23 -0700426 head = find_bucket(ti, hash);
427 hlist_for_each_entry_rcu(flow, head, hash_node[ti->node_ver]) {
Pravin B Shelar8ddd0942013-10-29 23:10:58 -0700428 if (flow->mask == mask && flow->hash == hash &&
Pravin B Shelare6445712013-10-03 18:16:47 -0700429 flow_cmp_masked_key(flow, &masked_key,
430 key_start, key_end))
431 return flow;
432 }
433 return NULL;
434}
435
Andy Zhou5bb50632013-11-25 10:42:46 -0800436struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl,
Andy Zhou1bd71162013-10-22 10:42:46 -0700437 const struct sw_flow_key *key,
438 u32 *n_mask_hit)
Pravin B Shelare6445712013-10-03 18:16:47 -0700439{
Jesse Gross663efa32013-12-03 10:58:53 -0800440 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700441 struct sw_flow_mask *mask;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700442 struct sw_flow *flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700443
Andy Zhou1bd71162013-10-22 10:42:46 -0700444 *n_mask_hit = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700445 list_for_each_entry_rcu(mask, &tbl->mask_list, list) {
Andy Zhou1bd71162013-10-22 10:42:46 -0700446 (*n_mask_hit)++;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700447 flow = masked_flow_lookup(ti, key, mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700448 if (flow) /* Found */
Pravin B Shelarb637e492013-10-04 00:14:23 -0700449 return flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700450 }
Pravin B Shelarb637e492013-10-04 00:14:23 -0700451 return NULL;
452}
Pravin B Shelare6445712013-10-03 18:16:47 -0700453
Andy Zhou5bb50632013-11-25 10:42:46 -0800454struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *tbl,
455 const struct sw_flow_key *key)
456{
457 u32 __always_unused n_mask_hit;
458
459 return ovs_flow_tbl_lookup_stats(tbl, key, &n_mask_hit);
460}
461
Alex Wang4a46b242014-06-30 20:30:29 -0700462struct sw_flow *ovs_flow_tbl_lookup_exact(struct flow_table *tbl,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800463 const struct sw_flow_match *match)
Alex Wang4a46b242014-06-30 20:30:29 -0700464{
465 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
466 struct sw_flow_mask *mask;
467 struct sw_flow *flow;
468
469 /* Always called under ovs-mutex. */
470 list_for_each_entry(mask, &tbl->mask_list, list) {
471 flow = masked_flow_lookup(ti, match->key, mask);
472 if (flow && ovs_flow_cmp_unmasked_key(flow, match)) /* Found */
473 return flow;
474 }
475 return NULL;
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
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700494/* Remove 'mask' from the mask list, if it is not needed any more. */
495static void flow_mask_remove(struct flow_table *tbl, struct sw_flow_mask *mask)
496{
497 if (mask) {
498 /* ovs-lock is required to protect mask-refcount and
499 * mask list.
500 */
501 ASSERT_OVSL();
502 BUG_ON(!mask->ref_count);
503 mask->ref_count--;
504
505 if (!mask->ref_count) {
506 list_del_rcu(&mask->list);
507 kfree_rcu(mask, rcu);
508 }
509 }
510}
511
512/* Must be called with OVS mutex held. */
Pravin B Shelare6445712013-10-03 18:16:47 -0700513void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow)
514{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700515 struct table_instance *ti = ovsl_dereference(table->ti);
516
Pravin B Shelare6445712013-10-03 18:16:47 -0700517 BUG_ON(table->count == 0);
Pravin B Shelarb637e492013-10-04 00:14:23 -0700518 hlist_del_rcu(&flow->hash_node[ti->node_ver]);
Pravin B Shelare6445712013-10-03 18:16:47 -0700519 table->count--;
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700520
521 /* RCU delete the mask. 'flow->mask' is not NULLed, as it should be
522 * accessible as long as the RCU read lock is held.
523 */
524 flow_mask_remove(table, flow->mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700525}
526
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700527static struct sw_flow_mask *mask_alloc(void)
Pravin B Shelare6445712013-10-03 18:16:47 -0700528{
529 struct sw_flow_mask *mask;
530
531 mask = kmalloc(sizeof(*mask), GFP_KERNEL);
532 if (mask)
Andy Zhoue80857c2014-01-21 09:31:04 -0800533 mask->ref_count = 1;
Pravin B Shelare6445712013-10-03 18:16:47 -0700534
535 return mask;
536}
537
Pravin B Shelare6445712013-10-03 18:16:47 -0700538static bool mask_equal(const struct sw_flow_mask *a,
539 const struct sw_flow_mask *b)
540{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800541 const u8 *a_ = (const u8 *)&a->key + a->range.start;
542 const u8 *b_ = (const u8 *)&b->key + b->range.start;
Pravin B Shelare6445712013-10-03 18:16:47 -0700543
544 return (a->range.end == b->range.end)
545 && (a->range.start == b->range.start)
546 && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0);
547}
548
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700549static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl,
Pravin B Shelare6445712013-10-03 18:16:47 -0700550 const struct sw_flow_mask *mask)
551{
552 struct list_head *ml;
553
Pravin B Shelarb637e492013-10-04 00:14:23 -0700554 list_for_each(ml, &tbl->mask_list) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700555 struct sw_flow_mask *m;
556 m = container_of(ml, struct sw_flow_mask, list);
557 if (mask_equal(mask, m))
558 return m;
559 }
560
561 return NULL;
562}
563
Ben Pfaffd1211902013-11-25 10:40:51 -0800564/* Add 'mask' into the mask list, if it is not already there. */
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700565static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800566 const struct sw_flow_mask *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700567{
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700568 struct sw_flow_mask *mask;
569 mask = flow_mask_find(tbl, new);
570 if (!mask) {
571 /* Allocate a new mask if none exsits. */
572 mask = mask_alloc();
573 if (!mask)
574 return -ENOMEM;
575 mask->key = new->key;
576 mask->range = new->range;
577 list_add_rcu(&mask->list, &tbl->mask_list);
Andy Zhoue80857c2014-01-21 09:31:04 -0800578 } else {
579 BUG_ON(!mask->ref_count);
580 mask->ref_count++;
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700581 }
582
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700583 flow->mask = mask;
584 return 0;
585}
586
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700587/* Must be called with OVS mutex held. */
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700588int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800589 const struct sw_flow_mask *mask)
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700590{
591 struct table_instance *new_ti = NULL;
592 struct table_instance *ti;
593 int err;
594
595 err = flow_mask_insert(table, flow, mask);
596 if (err)
597 return err;
598
599 flow->hash = flow_hash(&flow->key, flow->mask->range.start,
600 flow->mask->range.end);
601 ti = ovsl_dereference(table->ti);
602 table_instance_insert(ti, flow);
603 table->count++;
604
605 /* Expand table, if necessary, to make room. */
606 if (table->count > ti->n_buckets)
607 new_ti = table_instance_expand(ti);
608 else if (time_after(jiffies, table->last_rehash + REHASH_INTERVAL))
609 new_ti = table_instance_rehash(ti, ti->n_buckets);
610
611 if (new_ti) {
612 rcu_assign_pointer(table->ti, new_ti);
613 table_instance_destroy(ti, true);
614 table->last_rehash = jiffies;
615 }
616 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700617}
618
619/* Initializes the flow module.
620 * Returns zero if successful or a negative error code. */
621int ovs_flow_init(void)
622{
623 BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long));
624 BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long));
625
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700626 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow)
627 + (num_possible_nodes()
628 * sizeof(struct flow_stats *)),
629 0, 0, NULL);
Pravin B Shelare6445712013-10-03 18:16:47 -0700630 if (flow_cache == NULL)
631 return -ENOMEM;
632
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700633 flow_stats_cache
634 = kmem_cache_create("sw_flow_stats", sizeof(struct flow_stats),
635 0, SLAB_HWCACHE_ALIGN, NULL);
636 if (flow_stats_cache == NULL) {
637 kmem_cache_destroy(flow_cache);
638 flow_cache = NULL;
639 return -ENOMEM;
640 }
641
Pravin B Shelare6445712013-10-03 18:16:47 -0700642 return 0;
643}
644
645/* Uninitializes the flow module. */
646void ovs_flow_exit(void)
647{
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700648 kmem_cache_destroy(flow_stats_cache);
Pravin B Shelare6445712013-10-03 18:16:47 -0700649 kmem_cache_destroy(flow_cache);
650}