Merge commit 'ccbf62d8a284cf181ac28c8e8407dd077d90dd4b' into for-next
[linux-2.6-block.git] / net / openvswitch / flow_table.c
CommitLineData
e6445719
PS
1/*
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>
500f8087 28#include <linux/hash.h>
e6445719
PS
29#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
b637e498
PS
47#define TBL_MIN_BUCKETS 1024
48#define REHASH_INTERVAL (10 * 60 * HZ)
49
e6445719 50static struct kmem_cache *flow_cache;
63e7959c 51struct kmem_cache *flow_stats_cache __read_mostly;
e6445719
PS
52
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{
7085130b
DDP
61 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);
e6445719
PS
65 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
23dabf88 76struct sw_flow *ovs_flow_alloc(void)
e6445719
PS
77{
78 struct sw_flow *flow;
63e7959c
JR
79 struct flow_stats *stats;
80 int node;
e6445719
PS
81
82 flow = kmem_cache_alloc(flow_cache, GFP_KERNEL);
83 if (!flow)
84 return ERR_PTR(-ENOMEM);
85
e6445719
PS
86 flow->sf_acts = NULL;
87 flow->mask = NULL;
63e7959c 88 flow->stats_last_writer = NUMA_NO_NODE;
e6445719 89
63e7959c
JR
90 /* Initialize the default stat node. */
91 stats = kmem_cache_alloc_node(flow_stats_cache,
92 GFP_KERNEL | __GFP_ZERO, 0);
93 if (!stats)
23dabf88 94 goto err;
e298e505 95
63e7959c
JR
96 spin_lock_init(&stats->lock);
97
98 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);
e298e505 103
e6445719 104 return flow;
e298e505 105err:
ece37c87 106 kmem_cache_free(flow_cache, flow);
e298e505 107 return ERR_PTR(-ENOMEM);
e6445719
PS
108}
109
b637e498
PS
110int ovs_flow_tbl_count(struct flow_table *table)
111{
112 return table->count;
113}
114
e6445719
PS
115static 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{
63e7959c
JR
140 int node;
141
eb072659 142 kfree((struct sw_flow_actions __force *)flow->sf_acts);
63e7959c
JR
143 for_each_node(node)
144 if (flow->stats[node])
145 kmem_cache_free(flow_stats_cache,
146 (struct flow_stats __force *)flow->stats[node]);
e6445719
PS
147 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
e80857cc 157void ovs_flow_free(struct sw_flow *flow, bool deferred)
618ed0c8 158{
e80857cc 159 if (!flow)
618ed0c8
PS
160 return;
161
e6445719
PS
162 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
e80857cc 173
b637e498 174static void __table_instance_destroy(struct table_instance *ti)
e6445719 175{
b637e498
PS
176 free_buckets(ti->buckets);
177 kfree(ti);
e6445719
PS
178}
179
b637e498 180static struct table_instance *table_instance_alloc(int new_size)
e6445719 181{
b637e498 182 struct table_instance *ti = kmalloc(sizeof(*ti), GFP_KERNEL);
e6445719 183
b637e498 184 if (!ti)
e6445719
PS
185 return NULL;
186
b637e498 187 ti->buckets = alloc_buckets(new_size);
e6445719 188
b637e498
PS
189 if (!ti->buckets) {
190 kfree(ti);
e6445719
PS
191 return NULL;
192 }
b637e498
PS
193 ti->n_buckets = new_size;
194 ti->node_ver = 0;
195 ti->keep_flows = false;
196 get_random_bytes(&ti->hash_seed, sizeof(u32));
e6445719 197
b637e498 198 return ti;
e6445719
PS
199}
200
b637e498 201int ovs_flow_tbl_init(struct flow_table *table)
e6445719 202{
b637e498 203 struct table_instance *ti;
e6445719 204
b637e498 205 ti = table_instance_alloc(TBL_MIN_BUCKETS);
e6445719 206
b637e498
PS
207 if (!ti)
208 return -ENOMEM;
e6445719 209
b637e498
PS
210 rcu_assign_pointer(table->ti, ti);
211 INIT_LIST_HEAD(&table->mask_list);
212 table->last_rehash = jiffies;
213 table->count = 0;
214 return 0;
e6445719
PS
215}
216
217static void flow_tbl_destroy_rcu_cb(struct rcu_head *rcu)
218{
b637e498 219 struct table_instance *ti = container_of(rcu, struct table_instance, rcu);
e6445719 220
b637e498 221 __table_instance_destroy(ti);
e6445719
PS
222}
223
b637e498 224static void table_instance_destroy(struct table_instance *ti, bool deferred)
e6445719 225{
e80857cc
AZ
226 int i;
227
b637e498 228 if (!ti)
e6445719
PS
229 return;
230
e80857cc
AZ
231 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:
e6445719 247 if (deferred)
b637e498 248 call_rcu(&ti->rcu, flow_tbl_destroy_rcu_cb);
e6445719 249 else
b637e498
PS
250 __table_instance_destroy(ti);
251}
252
e80857cc 253void ovs_flow_tbl_destroy(struct flow_table *table, bool deferred)
b637e498
PS
254{
255 struct table_instance *ti = ovsl_dereference(table->ti);
256
e80857cc 257 table_instance_destroy(ti, deferred);
e6445719
PS
258}
259
b637e498 260struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti,
e6445719
PS
261 u32 *bucket, u32 *last)
262{
263 struct sw_flow *flow;
264 struct hlist_head *head;
265 int ver;
266 int i;
267
b637e498
PS
268 ver = ti->node_ver;
269 while (*bucket < ti->n_buckets) {
e6445719 270 i = 0;
b637e498 271 head = flex_array_get(ti->buckets, *bucket);
e6445719
PS
272 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
b637e498 287static struct hlist_head *find_bucket(struct table_instance *ti, u32 hash)
e6445719 288{
b637e498
PS
289 hash = jhash_1word(hash, ti->hash_seed);
290 return flex_array_get(ti->buckets,
291 (hash & (ti->n_buckets - 1)));
e6445719
PS
292}
293
b637e498 294static void table_instance_insert(struct table_instance *ti, struct sw_flow *flow)
e6445719
PS
295{
296 struct hlist_head *head;
297
b637e498
PS
298 head = find_bucket(ti, flow->hash);
299 hlist_add_head_rcu(&flow->hash_node[ti->node_ver], head);
e6445719
PS
300}
301
b637e498
PS
302static void flow_table_copy_flows(struct table_instance *old,
303 struct table_instance *new)
e6445719
PS
304{
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])
b637e498 319 table_instance_insert(new, flow);
e6445719
PS
320 }
321
e6445719
PS
322 old->keep_flows = true;
323}
324
b637e498 325static struct table_instance *table_instance_rehash(struct table_instance *ti,
e6445719
PS
326 int n_buckets)
327{
b637e498 328 struct table_instance *new_ti;
e6445719 329
b637e498
PS
330 new_ti = table_instance_alloc(n_buckets);
331 if (!new_ti)
618ed0c8 332 return NULL;
e6445719 333
b637e498 334 flow_table_copy_flows(ti, new_ti);
e6445719 335
b637e498 336 return new_ti;
e6445719
PS
337}
338
b637e498 339int ovs_flow_tbl_flush(struct flow_table *flow_table)
e6445719 340{
b637e498
PS
341 struct table_instance *old_ti;
342 struct table_instance *new_ti;
e6445719 343
b637e498
PS
344 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;
e6445719
PS
355}
356
357static u32 flow_hash(const struct sw_flow_key *key, int key_start,
358 int key_end)
359{
7085130b 360 const u32 *hash_key = (const u32 *)((const u8 *)key + key_start);
e6445719
PS
361 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
500f8087 366 return arch_fast_hash2(hash_key, hash_u32s, 0);
e6445719
PS
367}
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{
7085130b
DDP
382 const long *cp1 = (const long *)((const u8 *)key1 + key_start);
383 const long *cp2 = (const long *)((const u8 *)key2 + key_start);
e6445719
PS
384 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
b637e498 410static struct sw_flow *masked_flow_lookup(struct table_instance *ti,
e6445719
PS
411 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);
b637e498
PS
423 head = find_bucket(ti, hash);
424 hlist_for_each_entry_rcu(flow, head, hash_node[ti->node_ver]) {
8ddd0946 425 if (flow->mask == mask && flow->hash == hash &&
e6445719
PS
426 flow_cmp_masked_key(flow, &masked_key,
427 key_start, key_end))
428 return flow;
429 }
430 return NULL;
431}
432
5bb50632 433struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl,
1bd7116f
AZ
434 const struct sw_flow_key *key,
435 u32 *n_mask_hit)
e6445719 436{
663efa36 437 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
e6445719 438 struct sw_flow_mask *mask;
b637e498 439 struct sw_flow *flow;
e6445719 440
1bd7116f 441 *n_mask_hit = 0;
b637e498 442 list_for_each_entry_rcu(mask, &tbl->mask_list, list) {
1bd7116f 443 (*n_mask_hit)++;
b637e498 444 flow = masked_flow_lookup(ti, key, mask);
e6445719 445 if (flow) /* Found */
b637e498 446 return flow;
e6445719 447 }
b637e498
PS
448 return NULL;
449}
e6445719 450
5bb50632
AZ
451struct 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
4a46b24e
AW
459struct sw_flow *ovs_flow_tbl_lookup_exact(struct flow_table *tbl,
460 struct sw_flow_match *match)
461{
462 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
463 struct sw_flow_mask *mask;
464 struct sw_flow *flow;
465
466 /* Always called under ovs-mutex. */
467 list_for_each_entry(mask, &tbl->mask_list, list) {
468 flow = masked_flow_lookup(ti, match->key, mask);
469 if (flow && ovs_flow_cmp_unmasked_key(flow, match)) /* Found */
470 return flow;
471 }
472 return NULL;
473}
474
1bd7116f
AZ
475int ovs_flow_tbl_num_masks(const struct flow_table *table)
476{
477 struct sw_flow_mask *mask;
478 int num = 0;
479
480 list_for_each_entry(mask, &table->mask_list, list)
481 num++;
482
483 return num;
484}
485
b637e498
PS
486static struct table_instance *table_instance_expand(struct table_instance *ti)
487{
488 return table_instance_rehash(ti, ti->n_buckets * 2);
e6445719
PS
489}
490
56c19868
JR
491/* Remove 'mask' from the mask list, if it is not needed any more. */
492static void flow_mask_remove(struct flow_table *tbl, struct sw_flow_mask *mask)
493{
494 if (mask) {
495 /* ovs-lock is required to protect mask-refcount and
496 * mask list.
497 */
498 ASSERT_OVSL();
499 BUG_ON(!mask->ref_count);
500 mask->ref_count--;
501
502 if (!mask->ref_count) {
503 list_del_rcu(&mask->list);
504 kfree_rcu(mask, rcu);
505 }
506 }
507}
508
509/* Must be called with OVS mutex held. */
e6445719
PS
510void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow)
511{
b637e498
PS
512 struct table_instance *ti = ovsl_dereference(table->ti);
513
e6445719 514 BUG_ON(table->count == 0);
b637e498 515 hlist_del_rcu(&flow->hash_node[ti->node_ver]);
e6445719 516 table->count--;
56c19868
JR
517
518 /* RCU delete the mask. 'flow->mask' is not NULLed, as it should be
519 * accessible as long as the RCU read lock is held.
520 */
521 flow_mask_remove(table, flow->mask);
e6445719
PS
522}
523
618ed0c8 524static struct sw_flow_mask *mask_alloc(void)
e6445719
PS
525{
526 struct sw_flow_mask *mask;
527
528 mask = kmalloc(sizeof(*mask), GFP_KERNEL);
529 if (mask)
e80857cc 530 mask->ref_count = 1;
e6445719
PS
531
532 return mask;
533}
534
e6445719
PS
535static bool mask_equal(const struct sw_flow_mask *a,
536 const struct sw_flow_mask *b)
537{
7085130b
DDP
538 const u8 *a_ = (const u8 *)&a->key + a->range.start;
539 const u8 *b_ = (const u8 *)&b->key + b->range.start;
e6445719
PS
540
541 return (a->range.end == b->range.end)
542 && (a->range.start == b->range.start)
543 && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0);
544}
545
618ed0c8 546static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl,
e6445719
PS
547 const struct sw_flow_mask *mask)
548{
549 struct list_head *ml;
550
b637e498 551 list_for_each(ml, &tbl->mask_list) {
e6445719
PS
552 struct sw_flow_mask *m;
553 m = container_of(ml, struct sw_flow_mask, list);
554 if (mask_equal(mask, m))
555 return m;
556 }
557
558 return NULL;
559}
560
d1211908 561/* Add 'mask' into the mask list, if it is not already there. */
618ed0c8
PS
562static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow,
563 struct sw_flow_mask *new)
564{
565 struct sw_flow_mask *mask;
566 mask = flow_mask_find(tbl, new);
567 if (!mask) {
568 /* Allocate a new mask if none exsits. */
569 mask = mask_alloc();
570 if (!mask)
571 return -ENOMEM;
572 mask->key = new->key;
573 mask->range = new->range;
574 list_add_rcu(&mask->list, &tbl->mask_list);
e80857cc
AZ
575 } else {
576 BUG_ON(!mask->ref_count);
577 mask->ref_count++;
618ed0c8
PS
578 }
579
618ed0c8
PS
580 flow->mask = mask;
581 return 0;
582}
583
56c19868 584/* Must be called with OVS mutex held. */
618ed0c8
PS
585int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
586 struct sw_flow_mask *mask)
e6445719 587{
618ed0c8
PS
588 struct table_instance *new_ti = NULL;
589 struct table_instance *ti;
590 int err;
591
592 err = flow_mask_insert(table, flow, mask);
593 if (err)
594 return err;
595
596 flow->hash = flow_hash(&flow->key, flow->mask->range.start,
597 flow->mask->range.end);
598 ti = ovsl_dereference(table->ti);
599 table_instance_insert(ti, flow);
600 table->count++;
601
602 /* Expand table, if necessary, to make room. */
603 if (table->count > ti->n_buckets)
604 new_ti = table_instance_expand(ti);
605 else if (time_after(jiffies, table->last_rehash + REHASH_INTERVAL))
606 new_ti = table_instance_rehash(ti, ti->n_buckets);
607
608 if (new_ti) {
609 rcu_assign_pointer(table->ti, new_ti);
610 table_instance_destroy(ti, true);
611 table->last_rehash = jiffies;
612 }
613 return 0;
e6445719
PS
614}
615
616/* Initializes the flow module.
617 * Returns zero if successful or a negative error code. */
618int ovs_flow_init(void)
619{
620 BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long));
621 BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long));
622
63e7959c
JR
623 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow)
624 + (num_possible_nodes()
625 * sizeof(struct flow_stats *)),
626 0, 0, NULL);
e6445719
PS
627 if (flow_cache == NULL)
628 return -ENOMEM;
629
63e7959c
JR
630 flow_stats_cache
631 = kmem_cache_create("sw_flow_stats", sizeof(struct flow_stats),
632 0, SLAB_HWCACHE_ALIGN, NULL);
633 if (flow_stats_cache == NULL) {
634 kmem_cache_destroy(flow_cache);
635 flow_cache = NULL;
636 return -ENOMEM;
637 }
638
e6445719
PS
639 return 0;
640}
641
642/* Uninitializes the flow module. */
643void ovs_flow_exit(void)
644{
63e7959c 645 kmem_cache_destroy(flow_stats_cache);
e6445719
PS
646 kmem_cache_destroy(flow_cache);
647}