2 * Copyright (c) 2007-2013 Nicira, Inc.
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.
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.
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
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>
28 #include <linux/hash.h>
29 #include <linux/jiffies.h>
30 #include <linux/llc.h>
31 #include <linux/module.h>
33 #include <linux/rcupdate.h>
34 #include <linux/if_arp.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>
45 #include <net/ndisc.h>
49 #define TBL_MIN_BUCKETS 1024
50 #define REHASH_INTERVAL (10 * 60 * HZ)
52 static struct kmem_cache *flow_cache;
54 static u16 range_n_bytes(const struct sw_flow_key_range *range)
56 return range->end - range->start;
59 void ovs_flow_mask_key(struct sw_flow_key *dst, const struct sw_flow_key *src,
60 const struct sw_flow_mask *mask)
62 const long *m = (long *)((u8 *)&mask->key + mask->range.start);
63 const long *s = (long *)((u8 *)src + mask->range.start);
64 long *d = (long *)((u8 *)dst + mask->range.start);
67 /* The memory outside of the 'mask->range' are not set since
68 * further operations on 'dst' only uses contents within
71 for (i = 0; i < range_n_bytes(&mask->range); i += sizeof(long))
75 struct sw_flow *ovs_flow_alloc(bool percpu_stats)
80 flow = kmem_cache_alloc(flow_cache, GFP_KERNEL);
82 return ERR_PTR(-ENOMEM);
87 flow->stats.is_percpu = percpu_stats;
90 flow->stats.stat = kzalloc(sizeof(*flow->stats.stat), GFP_KERNEL);
91 if (!flow->stats.stat)
94 spin_lock_init(&flow->stats.stat->lock);
96 flow->stats.cpu_stats = alloc_percpu(struct flow_stats);
97 if (!flow->stats.cpu_stats)
100 for_each_possible_cpu(cpu) {
101 struct flow_stats *cpu_stats;
103 cpu_stats = per_cpu_ptr(flow->stats.cpu_stats, cpu);
104 spin_lock_init(&cpu_stats->lock);
109 kmem_cache_free(flow_cache, flow);
110 return ERR_PTR(-ENOMEM);
113 int ovs_flow_tbl_count(struct flow_table *table)
118 static struct flex_array *alloc_buckets(unsigned int n_buckets)
120 struct flex_array *buckets;
123 buckets = flex_array_alloc(sizeof(struct hlist_head),
124 n_buckets, GFP_KERNEL);
128 err = flex_array_prealloc(buckets, 0, n_buckets, GFP_KERNEL);
130 flex_array_free(buckets);
134 for (i = 0; i < n_buckets; i++)
135 INIT_HLIST_HEAD((struct hlist_head *)
136 flex_array_get(buckets, i));
141 static void flow_free(struct sw_flow *flow)
143 kfree((struct sf_flow_acts __force *)flow->sf_acts);
144 if (flow->stats.is_percpu)
145 free_percpu(flow->stats.cpu_stats);
147 kfree(flow->stats.stat);
148 kmem_cache_free(flow_cache, flow);
151 static void rcu_free_flow_callback(struct rcu_head *rcu)
153 struct sw_flow *flow = container_of(rcu, struct sw_flow, rcu);
158 static void rcu_free_sw_flow_mask_cb(struct rcu_head *rcu)
160 struct sw_flow_mask *mask = container_of(rcu, struct sw_flow_mask, rcu);
165 void ovs_flow_free(struct sw_flow *flow, bool deferred)
173 struct sw_flow_mask *mask = flow->mask;
175 BUG_ON(!mask->ref_count);
178 if (!mask->ref_count) {
179 list_del_rcu(&mask->list);
181 call_rcu(&mask->rcu, rcu_free_sw_flow_mask_cb);
188 call_rcu(&flow->rcu, rcu_free_flow_callback);
193 static void free_buckets(struct flex_array *buckets)
195 flex_array_free(buckets);
199 static void __table_instance_destroy(struct table_instance *ti)
201 free_buckets(ti->buckets);
205 static struct table_instance *table_instance_alloc(int new_size)
207 struct table_instance *ti = kmalloc(sizeof(*ti), GFP_KERNEL);
212 ti->buckets = alloc_buckets(new_size);
218 ti->n_buckets = new_size;
220 ti->keep_flows = false;
221 get_random_bytes(&ti->hash_seed, sizeof(u32));
226 int ovs_flow_tbl_init(struct flow_table *table)
228 struct table_instance *ti;
230 ti = table_instance_alloc(TBL_MIN_BUCKETS);
235 rcu_assign_pointer(table->ti, ti);
236 INIT_LIST_HEAD(&table->mask_list);
237 table->last_rehash = jiffies;
242 static void flow_tbl_destroy_rcu_cb(struct rcu_head *rcu)
244 struct table_instance *ti = container_of(rcu, struct table_instance, rcu);
246 __table_instance_destroy(ti);
249 static void table_instance_destroy(struct table_instance *ti, bool deferred)
259 for (i = 0; i < ti->n_buckets; i++) {
260 struct sw_flow *flow;
261 struct hlist_head *head = flex_array_get(ti->buckets, i);
262 struct hlist_node *n;
263 int ver = ti->node_ver;
265 hlist_for_each_entry_safe(flow, n, head, hash_node[ver]) {
266 hlist_del_rcu(&flow->hash_node[ver]);
267 ovs_flow_free(flow, deferred);
273 call_rcu(&ti->rcu, flow_tbl_destroy_rcu_cb);
275 __table_instance_destroy(ti);
278 void ovs_flow_tbl_destroy(struct flow_table *table, bool deferred)
280 struct table_instance *ti = ovsl_dereference(table->ti);
282 table_instance_destroy(ti, deferred);
285 struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti,
286 u32 *bucket, u32 *last)
288 struct sw_flow *flow;
289 struct hlist_head *head;
294 while (*bucket < ti->n_buckets) {
296 head = flex_array_get(ti->buckets, *bucket);
297 hlist_for_each_entry_rcu(flow, head, hash_node[ver]) {
312 static struct hlist_head *find_bucket(struct table_instance *ti, u32 hash)
314 hash = jhash_1word(hash, ti->hash_seed);
315 return flex_array_get(ti->buckets,
316 (hash & (ti->n_buckets - 1)));
319 static void table_instance_insert(struct table_instance *ti, struct sw_flow *flow)
321 struct hlist_head *head;
323 head = find_bucket(ti, flow->hash);
324 hlist_add_head_rcu(&flow->hash_node[ti->node_ver], head);
327 static void flow_table_copy_flows(struct table_instance *old,
328 struct table_instance *new)
333 old_ver = old->node_ver;
334 new->node_ver = !old_ver;
336 /* Insert in new table. */
337 for (i = 0; i < old->n_buckets; i++) {
338 struct sw_flow *flow;
339 struct hlist_head *head;
341 head = flex_array_get(old->buckets, i);
343 hlist_for_each_entry(flow, head, hash_node[old_ver])
344 table_instance_insert(new, flow);
347 old->keep_flows = true;
350 static struct table_instance *table_instance_rehash(struct table_instance *ti,
353 struct table_instance *new_ti;
355 new_ti = table_instance_alloc(n_buckets);
359 flow_table_copy_flows(ti, new_ti);
364 int ovs_flow_tbl_flush(struct flow_table *flow_table)
366 struct table_instance *old_ti;
367 struct table_instance *new_ti;
369 old_ti = ovsl_dereference(flow_table->ti);
370 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
374 rcu_assign_pointer(flow_table->ti, new_ti);
375 flow_table->last_rehash = jiffies;
376 flow_table->count = 0;
378 table_instance_destroy(old_ti, true);
382 static u32 flow_hash(const struct sw_flow_key *key, int key_start,
385 u32 *hash_key = (u32 *)((u8 *)key + key_start);
386 int hash_u32s = (key_end - key_start) >> 2;
388 /* Make sure number of hash bytes are multiple of u32. */
389 BUILD_BUG_ON(sizeof(long) % sizeof(u32));
391 return arch_fast_hash2(hash_key, hash_u32s, 0);
394 static int flow_key_start(const struct sw_flow_key *key)
396 if (key->tun_key.ipv4_dst)
399 return rounddown(offsetof(struct sw_flow_key, phy),
403 static bool cmp_key(const struct sw_flow_key *key1,
404 const struct sw_flow_key *key2,
405 int key_start, int key_end)
407 const long *cp1 = (long *)((u8 *)key1 + key_start);
408 const long *cp2 = (long *)((u8 *)key2 + key_start);
412 for (i = key_start; i < key_end; i += sizeof(long))
413 diffs |= *cp1++ ^ *cp2++;
418 static bool flow_cmp_masked_key(const struct sw_flow *flow,
419 const struct sw_flow_key *key,
420 int key_start, int key_end)
422 return cmp_key(&flow->key, key, key_start, key_end);
425 bool ovs_flow_cmp_unmasked_key(const struct sw_flow *flow,
426 struct sw_flow_match *match)
428 struct sw_flow_key *key = match->key;
429 int key_start = flow_key_start(key);
430 int key_end = match->range.end;
432 return cmp_key(&flow->unmasked_key, key, key_start, key_end);
435 static struct sw_flow *masked_flow_lookup(struct table_instance *ti,
436 const struct sw_flow_key *unmasked,
437 struct sw_flow_mask *mask)
439 struct sw_flow *flow;
440 struct hlist_head *head;
441 int key_start = mask->range.start;
442 int key_end = mask->range.end;
444 struct sw_flow_key masked_key;
446 ovs_flow_mask_key(&masked_key, unmasked, mask);
447 hash = flow_hash(&masked_key, key_start, key_end);
448 head = find_bucket(ti, hash);
449 hlist_for_each_entry_rcu(flow, head, hash_node[ti->node_ver]) {
450 if (flow->mask == mask && flow->hash == hash &&
451 flow_cmp_masked_key(flow, &masked_key,
458 struct sw_flow *ovs_flow_tbl_lookup_stats(struct flow_table *tbl,
459 const struct sw_flow_key *key,
462 struct table_instance *ti = rcu_dereference_ovsl(tbl->ti);
463 struct sw_flow_mask *mask;
464 struct sw_flow *flow;
467 list_for_each_entry_rcu(mask, &tbl->mask_list, list) {
469 flow = masked_flow_lookup(ti, key, mask);
470 if (flow) /* Found */
476 struct sw_flow *ovs_flow_tbl_lookup(struct flow_table *tbl,
477 const struct sw_flow_key *key)
479 u32 __always_unused n_mask_hit;
481 return ovs_flow_tbl_lookup_stats(tbl, key, &n_mask_hit);
484 int ovs_flow_tbl_num_masks(const struct flow_table *table)
486 struct sw_flow_mask *mask;
489 list_for_each_entry(mask, &table->mask_list, list)
495 static struct table_instance *table_instance_expand(struct table_instance *ti)
497 return table_instance_rehash(ti, ti->n_buckets * 2);
500 void ovs_flow_tbl_remove(struct flow_table *table, struct sw_flow *flow)
502 struct table_instance *ti = ovsl_dereference(table->ti);
504 BUG_ON(table->count == 0);
505 hlist_del_rcu(&flow->hash_node[ti->node_ver]);
509 static struct sw_flow_mask *mask_alloc(void)
511 struct sw_flow_mask *mask;
513 mask = kmalloc(sizeof(*mask), GFP_KERNEL);
520 static bool mask_equal(const struct sw_flow_mask *a,
521 const struct sw_flow_mask *b)
523 u8 *a_ = (u8 *)&a->key + a->range.start;
524 u8 *b_ = (u8 *)&b->key + b->range.start;
526 return (a->range.end == b->range.end)
527 && (a->range.start == b->range.start)
528 && (memcmp(a_, b_, range_n_bytes(&a->range)) == 0);
531 static struct sw_flow_mask *flow_mask_find(const struct flow_table *tbl,
532 const struct sw_flow_mask *mask)
534 struct list_head *ml;
536 list_for_each(ml, &tbl->mask_list) {
537 struct sw_flow_mask *m;
538 m = container_of(ml, struct sw_flow_mask, list);
539 if (mask_equal(mask, m))
546 /* Add 'mask' into the mask list, if it is not already there. */
547 static int flow_mask_insert(struct flow_table *tbl, struct sw_flow *flow,
548 struct sw_flow_mask *new)
550 struct sw_flow_mask *mask;
551 mask = flow_mask_find(tbl, new);
553 /* Allocate a new mask if none exsits. */
557 mask->key = new->key;
558 mask->range = new->range;
559 list_add_rcu(&mask->list, &tbl->mask_list);
561 BUG_ON(!mask->ref_count);
569 int ovs_flow_tbl_insert(struct flow_table *table, struct sw_flow *flow,
570 struct sw_flow_mask *mask)
572 struct table_instance *new_ti = NULL;
573 struct table_instance *ti;
576 err = flow_mask_insert(table, flow, mask);
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);
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);
593 rcu_assign_pointer(table->ti, new_ti);
594 table_instance_destroy(ti, true);
595 table->last_rehash = jiffies;
600 /* Initializes the flow module.
601 * Returns zero if successful or a negative error code. */
602 int ovs_flow_init(void)
604 BUILD_BUG_ON(__alignof__(struct sw_flow_key) % __alignof__(long));
605 BUILD_BUG_ON(sizeof(struct sw_flow_key) % sizeof(long));
607 flow_cache = kmem_cache_create("sw_flow", sizeof(struct sw_flow), 0,
609 if (flow_cache == NULL)
615 /* Uninitializes the flow module. */
616 void ovs_flow_exit(void)
618 kmem_cache_destroy(flow_cache);