blob: 9a3f41f26da8a1402c436fc526af1d50f33d3881 [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
Joe Stringer272c2cf2015-01-21 16:42:50 -0800360static u32 flow_hash(const struct sw_flow_key *key,
361 const struct sw_flow_key_range *range)
Pravin B Shelare6445712013-10-03 18:16:47 -0700362{
Joe Stringer272c2cf2015-01-21 16:42:50 -0800363 int key_start = range->start;
364 int key_end = range->end;
Daniele Di Proietto70851302014-01-23 10:56:49 -0800365 const u32 *hash_key = (const u32 *)((const u8 *)key + key_start);
Pravin B Shelare6445712013-10-03 18:16:47 -0700366 int hash_u32s = (key_end - key_start) >> 2;
367
368 /* Make sure number of hash bytes are multiple of u32. */
369 BUILD_BUG_ON(sizeof(long) % sizeof(u32));
370
Daniel Borkmann87545892014-12-10 16:33:11 +0100371 return jhash2(hash_key, hash_u32s, 0);
Pravin B Shelare6445712013-10-03 18:16:47 -0700372}
373
374static int flow_key_start(const struct sw_flow_key *key)
375{
376 if (key->tun_key.ipv4_dst)
377 return 0;
378 else
379 return rounddown(offsetof(struct sw_flow_key, phy),
380 sizeof(long));
381}
382
383static bool cmp_key(const struct sw_flow_key *key1,
384 const struct sw_flow_key *key2,
385 int key_start, int key_end)
386{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800387 const long *cp1 = (const long *)((const u8 *)key1 + key_start);
388 const long *cp2 = (const long *)((const u8 *)key2 + key_start);
Pravin B Shelare6445712013-10-03 18:16:47 -0700389 long diffs = 0;
390 int i;
391
392 for (i = key_start; i < key_end; i += sizeof(long))
393 diffs |= *cp1++ ^ *cp2++;
394
395 return diffs == 0;
396}
397
398static bool flow_cmp_masked_key(const struct sw_flow *flow,
399 const struct sw_flow_key *key,
Joe Stringer272c2cf2015-01-21 16:42:50 -0800400 const struct sw_flow_key_range *range)
Pravin B Shelare6445712013-10-03 18:16:47 -0700401{
Joe Stringer272c2cf2015-01-21 16:42:50 -0800402 return cmp_key(&flow->key, key, range->start, range->end);
Pravin B Shelare6445712013-10-03 18:16:47 -0700403}
404
405bool ovs_flow_cmp_unmasked_key(const struct sw_flow *flow,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800406 const struct sw_flow_match *match)
Pravin B Shelare6445712013-10-03 18:16:47 -0700407{
408 struct sw_flow_key *key = match->key;
409 int key_start = flow_key_start(key);
410 int key_end = match->range.end;
411
412 return cmp_key(&flow->unmasked_key, key, key_start, key_end);
413}
414
Pravin B Shelarb637e492013-10-04 00:14:23 -0700415static struct sw_flow *masked_flow_lookup(struct table_instance *ti,
Pravin B Shelare6445712013-10-03 18:16:47 -0700416 const struct sw_flow_key *unmasked,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800417 const struct sw_flow_mask *mask)
Pravin B Shelare6445712013-10-03 18:16:47 -0700418{
419 struct sw_flow *flow;
420 struct hlist_head *head;
Pravin B Shelare6445712013-10-03 18:16:47 -0700421 u32 hash;
422 struct sw_flow_key masked_key;
423
424 ovs_flow_mask_key(&masked_key, unmasked, mask);
Joe Stringer272c2cf2015-01-21 16:42:50 -0800425 hash = flow_hash(&masked_key, &mask->range);
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 &&
Joe Stringer272c2cf2015-01-21 16:42:50 -0800429 flow_cmp_masked_key(flow, &masked_key, &mask->range))
Pravin B Shelare6445712013-10-03 18:16:47 -0700430 return flow;
431 }
432 return NULL;
433}
434
Andy Zhou5bb50632013-11-25 10:42:46 -0800435struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl,
Andy Zhou1bd71162013-10-22 10:42:46 -0700436 const struct sw_flow_key *key,
437 u32 *n_mask_hit)
Pravin B Shelare6445712013-10-03 18:16:47 -0700438{
Jesse Gross663efa32013-12-03 10:58:53 -0800439 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
Pravin B Shelare6445712013-10-03 18:16:47 -0700440 struct sw_flow_mask *mask;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700441 struct sw_flow *flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700442
Andy Zhou1bd71162013-10-22 10:42:46 -0700443 *n_mask_hit = 0;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700444 list_for_each_entry_rcu(mask, &tbl->mask_list, list) {
Andy Zhou1bd71162013-10-22 10:42:46 -0700445 (*n_mask_hit)++;
Pravin B Shelarb637e492013-10-04 00:14:23 -0700446 flow = masked_flow_lookup(ti, key, mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700447 if (flow) /* Found */
Pravin B Shelarb637e492013-10-04 00:14:23 -0700448 return flow;
Pravin B Shelare6445712013-10-03 18:16:47 -0700449 }
Pravin B Shelarb637e492013-10-04 00:14:23 -0700450 return NULL;
451}
Pravin B Shelare6445712013-10-03 18:16:47 -0700452
Andy Zhou5bb50632013-11-25 10:42:46 -0800453struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *tbl,
454 const struct sw_flow_key *key)
455{
456 u32 __always_unused n_mask_hit;
457
458 return ovs_flow_tbl_lookup_stats(tbl, key, &n_mask_hit);
459}
460
Alex Wang4a46b242014-06-30 20:30:29 -0700461struct sw_flow *ovs_flow_tbl_lookup_exact(struct flow_table *tbl,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800462 const struct sw_flow_match *match)
Alex Wang4a46b242014-06-30 20:30:29 -0700463{
464 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
465 struct sw_flow_mask *mask;
466 struct sw_flow *flow;
467
468 /* Always called under ovs-mutex. */
469 list_for_each_entry(mask, &tbl->mask_list, list) {
470 flow = masked_flow_lookup(ti, match->key, mask);
471 if (flow && ovs_flow_cmp_unmasked_key(flow, match)) /* Found */
472 return flow;
473 }
474 return NULL;
475}
476
Andy Zhou1bd71162013-10-22 10:42:46 -0700477int ovs_flow_tbl_num_masks(const struct flow_table *table)
478{
479 struct sw_flow_mask *mask;
480 int num = 0;
481
482 list_for_each_entry(mask, &table->mask_list, list)
483 num++;
484
485 return num;
486}
487
Pravin B Shelarb637e492013-10-04 00:14:23 -0700488static struct table_instance *table_instance_expand(struct table_instance *ti)
489{
490 return table_instance_rehash(ti, ti->n_buckets * 2);
Pravin B Shelare6445712013-10-03 18:16:47 -0700491}
492
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700493/* Remove 'mask' from the mask list, if it is not needed any more. */
494static void flow_mask_remove(struct flow_table *tbl, struct sw_flow_mask *mask)
495{
496 if (mask) {
497 /* ovs-lock is required to protect mask-refcount and
498 * mask list.
499 */
500 ASSERT_OVSL();
501 BUG_ON(!mask->ref_count);
502 mask->ref_count--;
503
504 if (!mask->ref_count) {
505 list_del_rcu(&mask->list);
506 kfree_rcu(mask, rcu);
507 }
508 }
509}
510
511/* Must be called with OVS mutex held. */
Pravin B Shelare6445712013-10-03 18:16:47 -0700512void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow)
513{
Pravin B Shelarb637e492013-10-04 00:14:23 -0700514 struct table_instance *ti = ovsl_dereference(table->ti);
515
Pravin B Shelare6445712013-10-03 18:16:47 -0700516 BUG_ON(table->count == 0);
Pravin B Shelarb637e492013-10-04 00:14:23 -0700517 hlist_del_rcu(&flow->hash_node[ti->node_ver]);
Pravin B Shelare6445712013-10-03 18:16:47 -0700518 table->count--;
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700519
520 /* RCU delete the mask. 'flow->mask' is not NULLed, as it should be
521 * accessible as long as the RCU read lock is held.
522 */
523 flow_mask_remove(table, flow->mask);
Pravin B Shelare6445712013-10-03 18:16:47 -0700524}
525
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700526static struct sw_flow_mask *mask_alloc(void)
Pravin B Shelare6445712013-10-03 18:16:47 -0700527{
528 struct sw_flow_mask *mask;
529
530 mask = kmalloc(sizeof(*mask), GFP_KERNEL);
531 if (mask)
Andy Zhoue80857c2014-01-21 09:31:04 -0800532 mask->ref_count = 1;
Pravin B Shelare6445712013-10-03 18:16:47 -0700533
534 return mask;
535}
536
Pravin B Shelare6445712013-10-03 18:16:47 -0700537static bool mask_equal(const struct sw_flow_mask *a,
538 const struct sw_flow_mask *b)
539{
Daniele Di Proietto70851302014-01-23 10:56:49 -0800540 const u8 *a_ = (const u8 *)&a->key + a->range.start;
541 const u8 *b_ = (const u8 *)&b->key + b->range.start;
Pravin B Shelare6445712013-10-03 18:16:47 -0700542
543 return (a->range.end == b->range.end)
544 && (a->range.start == b->range.start)
545 && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0);
546}
547
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700548static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl,
Pravin B Shelare6445712013-10-03 18:16:47 -0700549 const struct sw_flow_mask *mask)
550{
551 struct list_head *ml;
552
Pravin B Shelarb637e492013-10-04 00:14:23 -0700553 list_for_each(ml, &tbl->mask_list) {
Pravin B Shelare6445712013-10-03 18:16:47 -0700554 struct sw_flow_mask *m;
555 m = container_of(ml, struct sw_flow_mask, list);
556 if (mask_equal(mask, m))
557 return m;
558 }
559
560 return NULL;
561}
562
Ben Pfaffd1211902013-11-25 10:40:51 -0800563/* Add 'mask' into the mask list, if it is not already there. */
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700564static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow,
Thomas Graf12eb18f2014-11-06 06:58:52 -0800565 const struct sw_flow_mask *new)
Pravin B Shelare6445712013-10-03 18:16:47 -0700566{
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700567 struct sw_flow_mask *mask;
568 mask = flow_mask_find(tbl, new);
569 if (!mask) {
570 /* Allocate a new mask if none exsits. */
571 mask = mask_alloc();
572 if (!mask)
573 return -ENOMEM;
574 mask->key = new->key;
575 mask->range = new->range;
576 list_add_rcu(&mask->list, &tbl->mask_list);
Andy Zhoue80857c2014-01-21 09:31:04 -0800577 } else {
578 BUG_ON(!mask->ref_count);
579 mask->ref_count++;
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700580 }
581
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700582 flow->mask = mask;
583 return 0;
584}
585
Jarno Rajahalme56c19862014-05-05 13:24:53 -0700586/* Must be called with OVS mutex held. */
Joe Stringerd29ab6f2015-01-21 16:42:49 -0800587static void flow_key_insert(struct flow_table *table, struct sw_flow *flow)
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700588{
589 struct table_instance *new_ti = NULL;
590 struct table_instance *ti;
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700591
Joe Stringer272c2cf2015-01-21 16:42:50 -0800592 flow->hash = flow_hash(&flow->key, &flow->mask->range);
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700593 ti = ovsl_dereference(table->ti);
594 table_instance_insert(ti, flow);
595 table->count++;
596
597 /* Expand table, if necessary, to make room. */
598 if (table->count > ti->n_buckets)
599 new_ti = table_instance_expand(ti);
600 else if (time_after(jiffies, table->last_rehash + REHASH_INTERVAL))
601 new_ti = table_instance_rehash(ti, ti->n_buckets);
602
603 if (new_ti) {
604 rcu_assign_pointer(table->ti, new_ti);
605 table_instance_destroy(ti, true);
606 table->last_rehash = jiffies;
607 }
Joe Stringerd29ab6f2015-01-21 16:42:49 -0800608}
609
610/* Must be called with OVS mutex held. */
611int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
612 const struct sw_flow_mask *mask)
613{
614 int err;
615
616 err = flow_mask_insert(table, flow, mask);
617 if (err)
618 return err;
619 flow_key_insert(table, flow);
620
Pravin B Shelar618ed0c2013-10-04 00:17:42 -0700621 return 0;
Pravin B Shelare6445712013-10-03 18:16:47 -0700622}
623
624/* Initializes the flow module.
625 * Returns zero if successful or a negative error code. */
626int ovs_flow_init(void)
627{
628 BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long));
629 BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long));
630
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700631 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow)
632 + (num_possible_nodes()
633 * sizeof(struct flow_stats *)),
634 0, 0, NULL);
Pravin B Shelare6445712013-10-03 18:16:47 -0700635 if (flow_cache == NULL)
636 return -ENOMEM;
637
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700638 flow_stats_cache
639 = kmem_cache_create("sw_flow_stats", sizeof(struct flow_stats),
640 0, SLAB_HWCACHE_ALIGN, NULL);
641 if (flow_stats_cache == NULL) {
642 kmem_cache_destroy(flow_cache);
643 flow_cache = NULL;
644 return -ENOMEM;
645 }
646
Pravin B Shelare6445712013-10-03 18:16:47 -0700647 return 0;
648}
649
650/* Uninitializes the flow module. */
651void ovs_flow_exit(void)
652{
Jarno Rajahalme63e79592014-03-27 12:42:54 -0700653 kmem_cache_destroy(flow_stats_cache);
Pravin B Shelare6445712013-10-03 18:16:47 -0700654 kmem_cache_destroy(flow_cache);
655}