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