]> git.proxmox.com Git - mirror_ovs.git/blame - datapath/flow_table.c
datapath: Per NUMA node flow stats.
[mirror_ovs.git] / datapath / flow_table.c
CommitLineData
a097c0b2
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>
df9a0a89 28#include <linux/hash.h>
a097c0b2
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
47#include "vlan.h"
48
994dc286
PS
49#define TBL_MIN_BUCKETS 1024
50#define REHASH_INTERVAL (10 * 60 * HZ)
51
a097c0b2 52static struct kmem_cache *flow_cache;
9ac56358 53struct kmem_cache *flow_stats_cache __read_mostly;
a097c0b2
PS
54
55static u16 range_n_bytes(const struct sw_flow_key_range *range)
56{
57 return range->end - range->start;
58}
59
60void ovs_flow_mask_key(struct sw_flow_key *dst, const struct sw_flow_key *src,
61 const struct sw_flow_mask *mask)
62{
d15ae707
DDP
63 const long *m = (const long *)((const u8 *)&mask->key +
64 mask->range.start);
65 const long *s = (const long *)((const u8 *)src +
66 mask->range.start);
a097c0b2
PS
67 long *d = (long *)((u8 *)dst + mask->range.start);
68 int i;
69
70 /* The memory outside of the 'mask->range' are not set since
71 * further operations on 'dst' only uses contents within
72 * 'mask->range'.
73 */
74 for (i = 0; i < range_n_bytes(&mask->range); i += sizeof(long))
75 *d++ = *s++ & *m++;
76}
77
df65fec1 78struct sw_flow *ovs_flow_alloc(void)
a097c0b2
PS
79{
80 struct sw_flow *flow;
9ac56358
JR
81 struct flow_stats *stats;
82 int node;
a097c0b2
PS
83
84 flow = kmem_cache_alloc(flow_cache, GFP_KERNEL);
85 if (!flow)
86 return ERR_PTR(-ENOMEM);
87
a097c0b2
PS
88 flow->sf_acts = NULL;
89 flow->mask = NULL;
9ac56358 90 flow->stats_last_writer = NUMA_NO_NODE;
a097c0b2 91
9ac56358
JR
92 /* Initialize the default stat node. */
93 stats = kmem_cache_alloc_node(flow_stats_cache,
94 GFP_KERNEL | __GFP_ZERO, 0);
95 if (!stats)
df65fec1 96 goto err;
b0b906cc 97
9ac56358
JR
98 spin_lock_init(&stats->lock);
99
100 RCU_INIT_POINTER(flow->stats[0], stats);
101
102 for_each_node(node)
103 if (node != 0)
104 RCU_INIT_POINTER(flow->stats[node], NULL);
b0f3a2fe 105
a097c0b2 106 return flow;
b0f3a2fe 107err:
5f67d45a 108 kmem_cache_free(flow_cache, flow);
b0f3a2fe 109 return ERR_PTR(-ENOMEM);
a097c0b2
PS
110}
111
994dc286
PS
112int ovs_flow_tbl_count(struct flow_table *table)
113{
114 return table->count;
115}
116
a097c0b2
PS
117static struct flex_array *alloc_buckets(unsigned int n_buckets)
118{
119 struct flex_array *buckets;
120 int i, err;
121
122 buckets = flex_array_alloc(sizeof(struct hlist_head),
123 n_buckets, GFP_KERNEL);
124 if (!buckets)
125 return NULL;
126
127 err = flex_array_prealloc(buckets, 0, n_buckets, GFP_KERNEL);
128 if (err) {
129 flex_array_free(buckets);
130 return NULL;
131 }
132
133 for (i = 0; i < n_buckets; i++)
134 INIT_HLIST_HEAD((struct hlist_head *)
135 flex_array_get(buckets, i));
136
137 return buckets;
138}
139
140static void flow_free(struct sw_flow *flow)
141{
9ac56358
JR
142 int node;
143
a097c0b2 144 kfree((struct sf_flow_acts __force *)flow->sf_acts);
9ac56358
JR
145 for_each_node(node)
146 if (flow->stats[node])
147 kmem_cache_free(flow_stats_cache,
148 (struct flow_stats __force *)flow->stats[node]);
a097c0b2
PS
149 kmem_cache_free(flow_cache, flow);
150}
151
152static void rcu_free_flow_callback(struct rcu_head *rcu)
153{
154 struct sw_flow *flow = container_of(rcu, struct sw_flow, rcu);
155
156 flow_free(flow);
157}
158
0585f7a8
PS
159static void rcu_free_sw_flow_mask_cb(struct rcu_head *rcu)
160{
161 struct sw_flow_mask *mask = container_of(rcu, struct sw_flow_mask, rcu);
162
163 kfree(mask);
164}
165
d103f479 166void ovs_flow_free(struct sw_flow *flow, bool deferred)
0585f7a8 167{
d103f479 168 if (!flow)
0585f7a8
PS
169 return;
170
d103f479
AZ
171 if (flow->mask) {
172 struct sw_flow_mask *mask = flow->mask;
0585f7a8 173
b1705c56 174 /* ovs-lock is required to protect mask-refcount and
978188b2
JG
175 * mask list.
176 */
b1705c56 177 ASSERT_OVSL();
d103f479
AZ
178 BUG_ON(!mask->ref_count);
179 mask->ref_count--;
a097c0b2 180
d103f479
AZ
181 if (!mask->ref_count) {
182 list_del_rcu(&mask->list);
183 if (deferred)
184 call_rcu(&mask->rcu, rcu_free_sw_flow_mask_cb);
185 else
186 kfree(mask);
187 }
188 }
a097c0b2
PS
189
190 if (deferred)
191 call_rcu(&flow->rcu, rcu_free_flow_callback);
192 else
193 flow_free(flow);
194}
195
196static void free_buckets(struct flex_array *buckets)
197{
198 flex_array_free(buckets);
199}
200
d103f479 201
994dc286 202static void __table_instance_destroy(struct table_instance *ti)
a097c0b2 203{
994dc286
PS
204 free_buckets(ti->buckets);
205 kfree(ti);
a097c0b2
PS
206}
207
994dc286 208static struct table_instance *table_instance_alloc(int new_size)
a097c0b2 209{
994dc286 210 struct table_instance *ti = kmalloc(sizeof(*ti), GFP_KERNEL);
a097c0b2 211
994dc286 212 if (!ti)
a097c0b2
PS
213 return NULL;
214
994dc286 215 ti->buckets = alloc_buckets(new_size);
a097c0b2 216
994dc286
PS
217 if (!ti->buckets) {
218 kfree(ti);
a097c0b2
PS
219 return NULL;
220 }
994dc286
PS
221 ti->n_buckets = new_size;
222 ti->node_ver = 0;
223 ti->keep_flows = false;
224 get_random_bytes(&ti->hash_seed, sizeof(u32));
a097c0b2 225
994dc286 226 return ti;
a097c0b2
PS
227}
228
994dc286 229int ovs_flow_tbl_init(struct flow_table *table)
a097c0b2 230{
994dc286 231 struct table_instance *ti;
a097c0b2 232
994dc286 233 ti = table_instance_alloc(TBL_MIN_BUCKETS);
a097c0b2 234
994dc286
PS
235 if (!ti)
236 return -ENOMEM;
a097c0b2 237
994dc286
PS
238 rcu_assign_pointer(table->ti, ti);
239 INIT_LIST_HEAD(&table->mask_list);
240 table->last_rehash = jiffies;
241 table->count = 0;
242 return 0;
a097c0b2
PS
243}
244
245static void flow_tbl_destroy_rcu_cb(struct rcu_head *rcu)
246{
994dc286 247 struct table_instance *ti = container_of(rcu, struct table_instance, rcu);
a097c0b2 248
994dc286 249 __table_instance_destroy(ti);
a097c0b2
PS
250}
251
994dc286 252static void table_instance_destroy(struct table_instance *ti, bool deferred)
a097c0b2 253{
d103f479
AZ
254 int i;
255
994dc286 256 if (!ti)
a097c0b2
PS
257 return;
258
d103f479
AZ
259 if (ti->keep_flows)
260 goto skip_flows;
261
262 for (i = 0; i < ti->n_buckets; i++) {
263 struct sw_flow *flow;
264 struct hlist_head *head = flex_array_get(ti->buckets, i);
265 struct hlist_node *n;
266 int ver = ti->node_ver;
267
268 hlist_for_each_entry_safe(flow, n, head, hash_node[ver]) {
269 hlist_del_rcu(&flow->hash_node[ver]);
270 ovs_flow_free(flow, deferred);
271 }
272 }
273
274skip_flows:
a097c0b2 275 if (deferred)
994dc286 276 call_rcu(&ti->rcu, flow_tbl_destroy_rcu_cb);
a097c0b2 277 else
994dc286
PS
278 __table_instance_destroy(ti);
279}
280
d103f479 281void ovs_flow_tbl_destroy(struct flow_table *table, bool deferred)
994dc286
PS
282{
283 struct table_instance *ti = ovsl_dereference(table->ti);
284
d103f479 285 table_instance_destroy(ti, deferred);
a097c0b2
PS
286}
287
994dc286 288struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti,
a097c0b2
PS
289 u32 *bucket, u32 *last)
290{
291 struct sw_flow *flow;
292 struct hlist_head *head;
293 int ver;
294 int i;
295
994dc286
PS
296 ver = ti->node_ver;
297 while (*bucket < ti->n_buckets) {
a097c0b2 298 i = 0;
994dc286 299 head = flex_array_get(ti->buckets, *bucket);
a097c0b2
PS
300 hlist_for_each_entry_rcu(flow, head, hash_node[ver]) {
301 if (i < *last) {
302 i++;
303 continue;
304 }
305 *last = i + 1;
306 return flow;
307 }
308 (*bucket)++;
309 *last = 0;
310 }
311
312 return NULL;
313}
314
994dc286 315static struct hlist_head *find_bucket(struct table_instance *ti, u32 hash)
a097c0b2 316{
994dc286
PS
317 hash = jhash_1word(hash, ti->hash_seed);
318 return flex_array_get(ti->buckets,
319 (hash & (ti->n_buckets - 1)));
a097c0b2
PS
320}
321
994dc286 322static void table_instance_insert(struct table_instance *ti, struct sw_flow *flow)
a097c0b2
PS
323{
324 struct hlist_head *head;
325
994dc286
PS
326 head = find_bucket(ti, flow->hash);
327 hlist_add_head_rcu(&flow->hash_node[ti->node_ver], head);
a097c0b2
PS
328}
329
994dc286
PS
330static void flow_table_copy_flows(struct table_instance *old,
331 struct table_instance *new)
a097c0b2
PS
332{
333 int old_ver;
334 int i;
335
336 old_ver = old->node_ver;
337 new->node_ver = !old_ver;
338
339 /* Insert in new table. */
340 for (i = 0; i < old->n_buckets; i++) {
341 struct sw_flow *flow;
342 struct hlist_head *head;
343
344 head = flex_array_get(old->buckets, i);
345
346 hlist_for_each_entry(flow, head, hash_node[old_ver])
994dc286 347 table_instance_insert(new, flow);
a097c0b2
PS
348 }
349
a097c0b2
PS
350 old->keep_flows = true;
351}
352
994dc286 353static struct table_instance *table_instance_rehash(struct table_instance *ti,
a097c0b2
PS
354 int n_buckets)
355{
994dc286 356 struct table_instance *new_ti;
a097c0b2 357
994dc286
PS
358 new_ti = table_instance_alloc(n_buckets);
359 if (!new_ti)
0585f7a8 360 return NULL;
a097c0b2 361
994dc286 362 flow_table_copy_flows(ti, new_ti);
a097c0b2 363
994dc286 364 return new_ti;
a097c0b2
PS
365}
366
994dc286 367int ovs_flow_tbl_flush(struct flow_table *flow_table)
a097c0b2 368{
994dc286
PS
369 struct table_instance *old_ti;
370 struct table_instance *new_ti;
a097c0b2 371
994dc286
PS
372 old_ti = ovsl_dereference(flow_table->ti);
373 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
374 if (!new_ti)
375 return -ENOMEM;
376
377 rcu_assign_pointer(flow_table->ti, new_ti);
378 flow_table->last_rehash = jiffies;
379 flow_table->count = 0;
380
381 table_instance_destroy(old_ti, true);
382 return 0;
a097c0b2
PS
383}
384
385static u32 flow_hash(const struct sw_flow_key *key, int key_start,
386 int key_end)
387{
d15ae707 388 const u32 *hash_key = (const u32 *)((const u8 *)key + key_start);
a097c0b2
PS
389 int hash_u32s = (key_end - key_start) >> 2;
390
391 /* Make sure number of hash bytes are multiple of u32. */
392 BUILD_BUG_ON(sizeof(long) % sizeof(u32));
393
df9a0a89 394 return arch_fast_hash2(hash_key, hash_u32s, 0);
a097c0b2
PS
395}
396
397static int flow_key_start(const struct sw_flow_key *key)
398{
399 if (key->tun_key.ipv4_dst)
400 return 0;
401 else
402 return rounddown(offsetof(struct sw_flow_key, phy),
403 sizeof(long));
404}
405
406static bool cmp_key(const struct sw_flow_key *key1,
407 const struct sw_flow_key *key2,
408 int key_start, int key_end)
409{
d15ae707
DDP
410 const long *cp1 = (const long *)((const u8 *)key1 + key_start);
411 const long *cp2 = (const long *)((const u8 *)key2 + key_start);
a097c0b2
PS
412 long diffs = 0;
413 int i;
414
415 for (i = key_start; i < key_end; i += sizeof(long))
416 diffs |= *cp1++ ^ *cp2++;
417
418 return diffs == 0;
419}
420
421static bool flow_cmp_masked_key(const struct sw_flow *flow,
422 const struct sw_flow_key *key,
423 int key_start, int key_end)
424{
425 return cmp_key(&flow->key, key, key_start, key_end);
426}
427
428bool ovs_flow_cmp_unmasked_key(const struct sw_flow *flow,
429 struct sw_flow_match *match)
430{
431 struct sw_flow_key *key = match->key;
432 int key_start = flow_key_start(key);
433 int key_end = match->range.end;
434
435 return cmp_key(&flow->unmasked_key, key, key_start, key_end);
436}
437
994dc286 438static struct sw_flow *masked_flow_lookup(struct table_instance *ti,
a097c0b2
PS
439 const struct sw_flow_key *unmasked,
440 struct sw_flow_mask *mask)
441{
442 struct sw_flow *flow;
443 struct hlist_head *head;
444 int key_start = mask->range.start;
445 int key_end = mask->range.end;
446 u32 hash;
447 struct sw_flow_key masked_key;
448
449 ovs_flow_mask_key(&masked_key, unmasked, mask);
450 hash = flow_hash(&masked_key, key_start, key_end);
994dc286
PS
451 head = find_bucket(ti, hash);
452 hlist_for_each_entry_rcu(flow, head, hash_node[ti->node_ver]) {
61ed018a 453 if (flow->mask == mask && flow->hash == hash &&
a097c0b2
PS
454 flow_cmp_masked_key(flow, &masked_key,
455 key_start, key_end))
456 return flow;
457 }
458 return NULL;
459}
460
4f88b5e5 461struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl,
4fa72a95
AZ
462 const struct sw_flow_key *key,
463 u32 *n_mask_hit)
a097c0b2 464{
780ec6ae 465 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
a097c0b2 466 struct sw_flow_mask *mask;
994dc286 467 struct sw_flow *flow;
a097c0b2 468
4fa72a95 469 *n_mask_hit = 0;
994dc286 470 list_for_each_entry_rcu(mask, &tbl->mask_list, list) {
4fa72a95 471 (*n_mask_hit)++;
994dc286 472 flow = masked_flow_lookup(ti, key, mask);
a097c0b2 473 if (flow) /* Found */
994dc286 474 return flow;
a097c0b2 475 }
994dc286
PS
476 return NULL;
477}
a097c0b2 478
4f88b5e5
AZ
479struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *tbl,
480 const struct sw_flow_key *key)
481{
482 u32 __always_unused n_mask_hit;
483
484 return ovs_flow_tbl_lookup_stats(tbl, key, &n_mask_hit);
485}
486
4fa72a95
AZ
487int ovs_flow_tbl_num_masks(const struct flow_table *table)
488{
489 struct sw_flow_mask *mask;
490 int num = 0;
491
492 list_for_each_entry(mask, &table->mask_list, list)
493 num++;
494
495 return num;
496}
497
994dc286
PS
498static struct table_instance *table_instance_expand(struct table_instance *ti)
499{
500 return table_instance_rehash(ti, ti->n_buckets * 2);
a097c0b2
PS
501}
502
a097c0b2
PS
503void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow)
504{
994dc286
PS
505 struct table_instance *ti = ovsl_dereference(table->ti);
506
a097c0b2 507 BUG_ON(table->count == 0);
994dc286 508 hlist_del_rcu(&flow->hash_node[ti->node_ver]);
a097c0b2
PS
509 table->count--;
510}
511
0585f7a8 512static struct sw_flow_mask *mask_alloc(void)
a097c0b2
PS
513{
514 struct sw_flow_mask *mask;
515
516 mask = kmalloc(sizeof(*mask), GFP_KERNEL);
517 if (mask)
d103f479 518 mask->ref_count = 1;
a097c0b2
PS
519
520 return mask;
521}
522
a097c0b2
PS
523static bool mask_equal(const struct sw_flow_mask *a,
524 const struct sw_flow_mask *b)
525{
d15ae707
DDP
526 const u8 *a_ = (const u8 *)&a->key + a->range.start;
527 const u8 *b_ = (const u8 *)&b->key + b->range.start;
a097c0b2
PS
528
529 return (a->range.end == b->range.end)
530 && (a->range.start == b->range.start)
531 && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0);
532}
533
0585f7a8 534static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl,
a097c0b2
PS
535 const struct sw_flow_mask *mask)
536{
537 struct list_head *ml;
538
994dc286 539 list_for_each(ml, &tbl->mask_list) {
a097c0b2
PS
540 struct sw_flow_mask *m;
541 m = container_of(ml, struct sw_flow_mask, list);
542 if (mask_equal(mask, m))
543 return m;
544 }
545
546 return NULL;
547}
548
a2f3ccc5 549/* Add 'mask' into the mask list, if it is not already there. */
0585f7a8
PS
550static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow,
551 struct sw_flow_mask *new)
552{
553 struct sw_flow_mask *mask;
554 mask = flow_mask_find(tbl, new);
555 if (!mask) {
556 /* Allocate a new mask if none exsits. */
557 mask = mask_alloc();
558 if (!mask)
559 return -ENOMEM;
560 mask->key = new->key;
561 mask->range = new->range;
562 list_add_rcu(&mask->list, &tbl->mask_list);
d103f479
AZ
563 } else {
564 BUG_ON(!mask->ref_count);
565 mask->ref_count++;
0585f7a8
PS
566 }
567
0585f7a8
PS
568 flow->mask = mask;
569 return 0;
570}
571
572int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
573 struct sw_flow_mask *mask)
a097c0b2 574{
0585f7a8
PS
575 struct table_instance *new_ti = NULL;
576 struct table_instance *ti;
577 int err;
578
579 err = flow_mask_insert(table, flow, mask);
580 if (err)
581 return err;
582
583 flow->hash = flow_hash(&flow->key, flow->mask->range.start,
584 flow->mask->range.end);
585 ti = ovsl_dereference(table->ti);
586 table_instance_insert(ti, flow);
587 table->count++;
588
589 /* Expand table, if necessary, to make room. */
590 if (table->count > ti->n_buckets)
591 new_ti = table_instance_expand(ti);
592 else if (time_after(jiffies, table->last_rehash + REHASH_INTERVAL))
593 new_ti = table_instance_rehash(ti, ti->n_buckets);
594
595 if (new_ti) {
596 rcu_assign_pointer(table->ti, new_ti);
597 table_instance_destroy(ti, true);
598 table->last_rehash = jiffies;
599 }
600 return 0;
a097c0b2
PS
601}
602
603/* Initializes the flow module.
604 * Returns zero if successful or a negative error code. */
605int ovs_flow_init(void)
606{
607 BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long));
608 BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long));
609
9ac56358
JR
610 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow)
611 + (num_possible_nodes()
612 * sizeof(struct flow_stats *)),
613 0, 0, NULL);
a097c0b2
PS
614 if (flow_cache == NULL)
615 return -ENOMEM;
616
9ac56358
JR
617 flow_stats_cache
618 = kmem_cache_create("sw_flow_stats", sizeof(struct flow_stats),
619 0, SLAB_HWCACHE_ALIGN, NULL);
620 if (flow_stats_cache == NULL) {
621 kmem_cache_destroy(flow_cache);
622 flow_cache = NULL;
623 return -ENOMEM;
624 }
625
a097c0b2
PS
626 return 0;
627}
628
629/* Uninitializes the flow module. */
630void ovs_flow_exit(void)
631{
9ac56358 632 kmem_cache_destroy(flow_stats_cache);
a097c0b2
PS
633 kmem_cache_destroy(flow_cache);
634}