blob: c80df6f42feefbcec49727b68a4c767f56cb6813 [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
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
Andy Zhoue80857c2014-01-21 09:31:04 -0800253void ovs_flow_tbl_destroy(struct flow_table *table, bool deferred)
Pravin B Shelare6445712013-10-03 18:16:47 -0700254{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700255 struct table_instance *ti = ovsl_dereference(table->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700256
Andy Zhoue80857c2014-01-21 09:31:04 -0800257 table_instance_destroy(ti, deferred);
Pravin B Shelare6445712013-10-03 18:16:47 -0700258}
259
Pravin B Shelarb637e492013-10-04 00:14:23 -0700260struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700261 u32 *bucket, u32 *last)
262{
263 struct sw_flow *flow;
264 struct hlist_head *head;
265 int ver;
266 int i;
267
Pravin B Shelarb637e492013-10-04 00:14:23 -0700268 ver = ti->node_ver;
269 while (*bucket < ti->n_buckets) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700270 i = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700271 head = flex_array_get(ti->buckets, *bucket);
Pravin B Shelare6445712013-10-03 18:16:47 -0700272 hlist_for_each_entry_rcu(flow, head, hash_node[ver]) {
273 if (i < *last) {
274 i++;
275 continue;
276 }
277 *last = i + 1;
278 return flow;
279 }
280 (*bucket)++;
281 *last = 0;
282 }
283
284 return NULL;
285}
286
Pravin B Shelarb637e492013-10-04 00:14:23 -0700287static struct hlist_head *find_bucket(struct table_instance *ti, u32 hash)
Pravin B Shelare6445712013-10-03 18:16:47 -0700288{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700289 hash = jhash_1word(hash, ti->hash_seed);
290 return flex_array_get(ti->buckets,
291 (hash & (ti->n_buckets - 1)));
Pravin B Shelare6445712013-10-03 18:16:47 -0700292}
293
Pravin B Shelarb637e492013-10-04 00:14:23 -0700294static void table_instance_insert(struct table_instance *ti, struct sw_flow *flow)
Pravin B Shelare6445712013-10-03 18:16:47 -0700295{
296 struct hlist_head *head;
297
Pravin B Shelarb637e492013-10-04 00:14:23 -0700298 head = find_bucket(ti, flow->hash);
299 hlist_add_head_rcu(&flow->hash_node[ti->node_ver], head);
Pravin B Shelare6445712013-10-03 18:16:47 -0700300}
301
Pravin B Shelarb637e492013-10-04 00:14:23 -0700302static void flow_table_copy_flows(struct table_instance *old,
303 struct table_instance *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700304{
305 int old_ver;
306 int i;
307
308 old_ver = old->node_ver;
309 new->node_ver = !old_ver;
310
311 /* Insert in new table. */
312 for (i = 0; i < old->n_buckets; i++) {
313 struct sw_flow *flow;
314 struct hlist_head *head;
315
316 head = flex_array_get(old->buckets, i);
317
318 hlist_for_each_entry(flow, head, hash_node[old_ver])
Pravin B Shelarb637e492013-10-04 00:14:23 -0700319 table_instance_insert(new, flow);
Pravin B Shelare6445712013-10-03 18:16:47 -0700320 }
321
Pravin B Shelare6445712013-10-03 18:16:47 -0700322 old->keep_flows = true;
323}
324
Pravin B Shelarb637e492013-10-04 00:14:23 -0700325static struct table_instance *table_instance_rehash(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700326 int n_buckets)
327{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700328 struct table_instance *new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700329
Pravin B Shelarb637e492013-10-04 00:14:23 -0700330 new_ti = table_instance_alloc(n_buckets);
331 if (!new_ti)
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700332 return NULL;
Pravin B Shelare6445712013-10-03 18:16:47 -0700333
Pravin B Shelarb637e492013-10-04 00:14:23 -0700334 flow_table_copy_flows(ti, new_ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700335
Pravin B Shelarb637e492013-10-04 00:14:23 -0700336 return new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700337}
338
Pravin B Shelarb637e492013-10-04 00:14:23 -0700339int ovs_flow_tbl_flush(struct flow_table *flow_table)
Pravin B Shelare6445712013-10-03 18:16:47 -0700340{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700341 struct table_instance *old_ti;
342 struct table_instance *new_ti;
Pravin B Shelare6445712013-10-03 18:16:47 -0700343
Pravin B Shelarb637e492013-10-04 00:14:23 -0700344 old_ti = ovsl_dereference(flow_table->ti);
345 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
346 if (!new_ti)
347 return -ENOMEM;
348
349 rcu_assign_pointer(flow_table->ti, new_ti);
350 flow_table->last_rehash = jiffies;
351 flow_table->count = 0;
352
353 table_instance_destroy(old_ti, true);
354 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700355}
356
357static u32 flow_hash(const struct sw_flow_key *key, int key_start,
358 int key_end)
359{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800360 const u32 *hash_key = (const u32 *)((const u8 *)key + key_start);
Pravin B Shelare6445712013-10-03 18:16:47 -0700361 int hash_u32s = (key_end - key_start) >> 2;
362
363 /* Make sure number of hash bytes are multiple of u32. */
364 BUILD_BUG_ON(sizeof(long) % sizeof(u32));
365
Francesco Fusco500f8082013-12-12 16:09:06 +0100366 return arch_fast_hash2(hash_key, hash_u32s, 0);
Pravin B Shelare6445712013-10-03 18:16:47 -0700367}
368
369static int flow_key_start(const struct sw_flow_key *key)
370{
371 if (key->tun_key.ipv4_dst)
372 return 0;
373 else
374 return rounddown(offsetof(struct sw_flow_key, phy),
375 sizeof(long));
376}
377
378static bool cmp_key(const struct sw_flow_key *key1,
379 const struct sw_flow_key *key2,
380 int key_start, int key_end)
381{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800382 const long *cp1 = (const long *)((const u8 *)key1 + key_start);
383 const long *cp2 = (const long *)((const u8 *)key2 + key_start);
Pravin B Shelare6445712013-10-03 18:16:47 -0700384 long diffs = 0;
385 int i;
386
387 for (i = key_start; i < key_end; i += sizeof(long))
388 diffs |= *cp1++ ^ *cp2++;
389
390 return diffs == 0;
391}
392
393static bool flow_cmp_masked_key(const struct sw_flow *flow,
394 const struct sw_flow_key *key,
395 int key_start, int key_end)
396{
397 return cmp_key(&flow->key, key, key_start, key_end);
398}
399
400bool ovs_flow_cmp_unmasked_key(const struct sw_flow *flow,
401 struct sw_flow_match *match)
402{
403 struct sw_flow_key *key = match->key;
404 int key_start = flow_key_start(key);
405 int key_end = match->range.end;
406
407 return cmp_key(&flow->unmasked_key, key, key_start, key_end);
408}
409
Pravin B Shelarb637e492013-10-04 00:14:23 -0700410static struct sw_flow *masked_flow_lookup(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700411 const struct sw_flow_key *unmasked,
412 struct sw_flow_mask *mask)
413{
414 struct sw_flow *flow;
415 struct hlist_head *head;
416 int key_start = mask->range.start;
417 int key_end = mask->range.end;
418 u32 hash;
419 struct sw_flow_key masked_key;
420
421 ovs_flow_mask_key(&masked_key, unmasked, mask);
422 hash = flow_hash(&masked_key, key_start, key_end);
Pravin B Shelarb637e492013-10-04 00:14:23 -0700423 head = find_bucket(ti, hash);
424 hlist_for_each_entry_rcu(flow, head, hash_node[ti->node_ver]) {
Pravin B Shelar8ddd0942013-10-29 23:10:58 -0700425 if (flow->mask == mask && flow->hash == hash &&
Pravin B Shelare6445712013-10-03 18:16:47 -0700426 flow_cmp_masked_key(flow, &masked_key,
427 key_start, key_end))
428 return flow;
429 }
430 return NULL;
431}
432
Andy Zhou5bb50632013-11-25 10:42:46 -0800433struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl,
Andy Zhou1bd71162013-10-22 10:42:46 -0700434 const struct sw_flow_key *key,
435 u32 *n_mask_hit)
Pravin B Shelare6445712013-10-03 18:16:47 -0700436{
Jesse Gross663efa32013-12-03 10:58:53 -0800437 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700438 struct sw_flow_mask *mask;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700439 struct sw_flow *flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700440
Andy Zhou1bd71162013-10-22 10:42:46 -0700441 *n_mask_hit = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700442 list_for_each_entry_rcu(mask, &tbl->mask_list, list) {
Andy Zhou1bd71162013-10-22 10:42:46 -0700443 (*n_mask_hit)++;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700444 flow = masked_flow_lookup(ti, key, mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700445 if (flow) /* Found */
Pravin B Shelarb637e492013-10-04 00:14:23 -0700446 return flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700447 }
Pravin B Shelarb637e492013-10-04 00:14:23 -0700448 return NULL;
449}
Pravin B Shelare6445712013-10-03 18:16:47 -0700450
Andy Zhou5bb50632013-11-25 10:42:46 -0800451struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *tbl,
452 const struct sw_flow_key *key)
453{
454 u32 __always_unused n_mask_hit;
455
456 return ovs_flow_tbl_lookup_stats(tbl, key, &n_mask_hit);
457}
458
Andy Zhou1bd71162013-10-22 10:42:46 -0700459int ovs_flow_tbl_num_masks(const struct flow_table *table)
460{
461 struct sw_flow_mask *mask;
462 int num = 0;
463
464 list_for_each_entry(mask, &table->mask_list, list)
465 num++;
466
467 return num;
468}
469
Pravin B Shelarb637e492013-10-04 00:14:23 -0700470static struct table_instance *table_instance_expand(struct table_instance *ti)
471{
472 return table_instance_rehash(ti, ti->n_buckets * 2);
Pravin B Shelare6445712013-10-03 18:16:47 -0700473}
474
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700475/* Remove 'mask' from the mask list, if it is not needed any more. */
476static void flow_mask_remove(struct flow_table *tbl, struct sw_flow_mask *mask)
477{
478 if (mask) {
479 /* ovs-lock is required to protect mask-refcount and
480 * mask list.
481 */
482 ASSERT_OVSL();
483 BUG_ON(!mask->ref_count);
484 mask->ref_count--;
485
486 if (!mask->ref_count) {
487 list_del_rcu(&mask->list);
488 kfree_rcu(mask, rcu);
489 }
490 }
491}
492
493/* Must be called with OVS mutex held. */
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--;
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700501
502 /* RCU delete the mask. 'flow->mask' is not NULLed, as it should be
503 * accessible as long as the RCU read lock is held.
504 */
505 flow_mask_remove(table, flow->mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700506}
507
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700508static struct sw_flow_mask *mask_alloc(void)
Pravin B Shelare6445712013-10-03 18:16:47 -0700509{
510 struct sw_flow_mask *mask;
511
512 mask = kmalloc(sizeof(*mask), GFP_KERNEL);
513 if (mask)
Andy Zhoue80857c2014-01-21 09:31:04 -0800514 mask->ref_count = 1;
Pravin B Shelare6445712013-10-03 18:16:47 -0700515
516 return mask;
517}
518
Pravin B Shelare6445712013-10-03 18:16:47 -0700519static bool mask_equal(const struct sw_flow_mask *a,
520 const struct sw_flow_mask *b)
521{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800522 const u8 *a_ = (const u8 *)&a->key + a->range.start;
523 const u8 *b_ = (const u8 *)&b->key + b->range.start;
Pravin B Shelare6445712013-10-03 18:16:47 -0700524
525 return (a->range.end == b->range.end)
526 && (a->range.start == b->range.start)
527 && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0);
528}
529
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700530static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl,
Pravin B Shelare6445712013-10-03 18:16:47 -0700531 const struct sw_flow_mask *mask)
532{
533 struct list_head *ml;
534
Pravin B Shelarb637e492013-10-04 00:14:23 -0700535 list_for_each(ml, &tbl->mask_list) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700536 struct sw_flow_mask *m;
537 m = container_of(ml, struct sw_flow_mask, list);
538 if (mask_equal(mask, m))
539 return m;
540 }
541
542 return NULL;
543}
544
Ben Pfaffd1211902013-11-25 10:40:51 -0800545/* Add 'mask' into the mask list, if it is not already there. */
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700546static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow,
547 struct sw_flow_mask *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700548{
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700549 struct sw_flow_mask *mask;
550 mask = flow_mask_find(tbl, new);
551 if (!mask) {
552 /* Allocate a new mask if none exsits. */
553 mask = mask_alloc();
554 if (!mask)
555 return -ENOMEM;
556 mask->key = new->key;
557 mask->range = new->range;
558 list_add_rcu(&mask->list, &tbl->mask_list);
Andy Zhoue80857c2014-01-21 09:31:04 -0800559 } else {
560 BUG_ON(!mask->ref_count);
561 mask->ref_count++;
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700562 }
563
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700564 flow->mask = mask;
565 return 0;
566}
567
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700568/* Must be called with OVS mutex held. */
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700569int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
570 struct sw_flow_mask *mask)
571{
572 struct table_instance *new_ti = NULL;
573 struct table_instance *ti;
574 int err;
575
576 err = flow_mask_insert(table, flow, mask);
577 if (err)
578 return err;
579
580 flow->hash = flow_hash(&flow->key, flow->mask->range.start,
581 flow->mask->range.end);
582 ti = ovsl_dereference(table->ti);
583 table_instance_insert(ti, flow);
584 table->count++;
585
586 /* Expand table, if necessary, to make room. */
587 if (table->count > ti->n_buckets)
588 new_ti = table_instance_expand(ti);
589 else if (time_after(jiffies, table->last_rehash + REHASH_INTERVAL))
590 new_ti = table_instance_rehash(ti, ti->n_buckets);
591
592 if (new_ti) {
593 rcu_assign_pointer(table->ti, new_ti);
594 table_instance_destroy(ti, true);
595 table->last_rehash = jiffies;
596 }
597 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700598}
599
600/* Initializes the flow module.
601 * Returns zero if successful or a negative error code. */
602int ovs_flow_init(void)
603{
604 BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long));
605 BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long));
606
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700607 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow)
608 + (num_possible_nodes()
609 * sizeof(struct flow_stats *)),
610 0, 0, NULL);
Pravin B Shelare6445712013-10-03 18:16:47 -0700611 if (flow_cache == NULL)
612 return -ENOMEM;
613
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700614 flow_stats_cache
615 = kmem_cache_create("sw_flow_stats", sizeof(struct flow_stats),
616 0, SLAB_HWCACHE_ALIGN, NULL);
617 if (flow_stats_cache == NULL) {
618 kmem_cache_destroy(flow_cache);
619 flow_cache = NULL;
620 return -ENOMEM;
621 }
622
Pravin B Shelare6445712013-10-03 18:16:47 -0700623 return 0;
624}
625
626/* Uninitializes the flow module. */
627void ovs_flow_exit(void)
628{
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700629 kmem_cache_destroy(flow_stats_cache);
Pravin B Shelare6445712013-10-03 18:16:47 -0700630 kmem_cache_destroy(flow_cache);
631}