1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2007-2014 Nicira, Inc.
8 #include "flow_netlink.h"
9 #include <linux/uaccess.h>
10 #include <linux/netdevice.h>
11 #include <linux/etherdevice.h>
12 #include <linux/if_ether.h>
13 #include <linux/if_vlan.h>
14 #include <net/llc_pdu.h>
15 #include <linux/kernel.h>
16 #include <linux/jhash.h>
17 #include <linux/jiffies.h>
18 #include <linux/llc.h>
19 #include <linux/module.h>
21 #include <linux/rcupdate.h>
22 #include <linux/cpumask.h>
23 #include <linux/if_arp.h>
25 #include <linux/ipv6.h>
26 #include <linux/sctp.h>
27 #include <linux/tcp.h>
28 #include <linux/udp.h>
29 #include <linux/icmp.h>
30 #include <linux/icmpv6.h>
31 #include <linux/rculist.h>
32 #include <linux/sort.h>
35 #include <net/ndisc.h>
37 #define TBL_MIN_BUCKETS 1024
38 #define MASK_ARRAY_SIZE_MIN 16
39 #define REHASH_INTERVAL (10 * 60 * HZ)
41 #define MC_DEFAULT_HASH_ENTRIES 256
42 #define MC_HASH_SHIFT 8
43 #define MC_HASH_SEGS ((sizeof(uint32_t) * 8) / MC_HASH_SHIFT)
45 static struct kmem_cache
*flow_cache
;
46 struct kmem_cache
*flow_stats_cache __read_mostly
;
48 static u16
range_n_bytes(const struct sw_flow_key_range
*range
)
50 return range
->end
- range
->start
;
53 void ovs_flow_mask_key(struct sw_flow_key
*dst
, const struct sw_flow_key
*src
,
54 bool full
, const struct sw_flow_mask
*mask
)
56 int start
= full
? 0 : mask
->range
.start
;
57 int len
= full
? sizeof *dst
: range_n_bytes(&mask
->range
);
58 const long *m
= (const long *)((const u8
*)&mask
->key
+ start
);
59 const long *s
= (const long *)((const u8
*)src
+ start
);
60 long *d
= (long *)((u8
*)dst
+ start
);
63 /* If 'full' is true then all of 'dst' is fully initialized. Otherwise,
64 * if 'full' is false the memory outside of the 'mask->range' is left
65 * uninitialized. This can be used as an optimization when further
66 * operations on 'dst' only use contents within 'mask->range'.
68 for (i
= 0; i
< len
; i
+= sizeof(long))
72 struct sw_flow
*ovs_flow_alloc(void)
75 struct sw_flow_stats
*stats
;
77 flow
= kmem_cache_zalloc(flow_cache
, GFP_KERNEL
);
79 return ERR_PTR(-ENOMEM
);
81 flow
->stats_last_writer
= -1;
82 flow
->cpu_used_mask
= (struct cpumask
*)&flow
->stats
[nr_cpu_ids
];
84 /* Initialize the default stat node. */
85 stats
= kmem_cache_alloc_node(flow_stats_cache
,
86 GFP_KERNEL
| __GFP_ZERO
,
87 node_online(0) ? 0 : NUMA_NO_NODE
);
91 spin_lock_init(&stats
->lock
);
93 RCU_INIT_POINTER(flow
->stats
[0], stats
);
95 cpumask_set_cpu(0, flow
->cpu_used_mask
);
99 kmem_cache_free(flow_cache
, flow
);
100 return ERR_PTR(-ENOMEM
);
103 int ovs_flow_tbl_count(const struct flow_table
*table
)
108 static void flow_free(struct sw_flow
*flow
)
112 if (ovs_identifier_is_key(&flow
->id
))
113 kfree(flow
->id
.unmasked_key
);
115 ovs_nla_free_flow_actions((struct sw_flow_actions __force
*)
117 /* We open code this to make sure cpu 0 is always considered */
118 for (cpu
= 0; cpu
< nr_cpu_ids
;
119 cpu
= cpumask_next(cpu
, flow
->cpu_used_mask
)) {
120 if (flow
->stats
[cpu
])
121 kmem_cache_free(flow_stats_cache
,
122 (struct sw_flow_stats __force
*)flow
->stats
[cpu
]);
125 kmem_cache_free(flow_cache
, flow
);
128 static void rcu_free_flow_callback(struct rcu_head
*rcu
)
130 struct sw_flow
*flow
= container_of(rcu
, struct sw_flow
, rcu
);
135 void ovs_flow_free(struct sw_flow
*flow
, bool deferred
)
141 call_rcu(&flow
->rcu
, rcu_free_flow_callback
);
146 static void __table_instance_destroy(struct table_instance
*ti
)
152 static struct table_instance
*table_instance_alloc(int new_size
)
154 struct table_instance
*ti
= kmalloc(sizeof(*ti
), GFP_KERNEL
);
160 ti
->buckets
= kvmalloc_array(new_size
, sizeof(struct hlist_head
),
167 for (i
= 0; i
< new_size
; i
++)
168 INIT_HLIST_HEAD(&ti
->buckets
[i
]);
170 ti
->n_buckets
= new_size
;
172 get_random_bytes(&ti
->hash_seed
, sizeof(u32
));
177 static void __mask_array_destroy(struct mask_array
*ma
)
179 free_percpu(ma
->masks_usage_stats
);
183 static void mask_array_rcu_cb(struct rcu_head
*rcu
)
185 struct mask_array
*ma
= container_of(rcu
, struct mask_array
, rcu
);
187 __mask_array_destroy(ma
);
190 static void tbl_mask_array_reset_counters(struct mask_array
*ma
)
194 /* As the per CPU counters are not atomic we can not go ahead and
195 * reset them from another CPU. To be able to still have an approximate
196 * zero based counter we store the value at reset, and subtract it
197 * later when processing.
199 for (i
= 0; i
< ma
->max
; i
++) {
200 ma
->masks_usage_zero_cntr
[i
] = 0;
202 for_each_possible_cpu(cpu
) {
203 struct mask_array_stats
*stats
;
207 stats
= per_cpu_ptr(ma
->masks_usage_stats
, cpu
);
209 start
= u64_stats_fetch_begin(&stats
->syncp
);
210 counter
= stats
->usage_cntrs
[i
];
211 } while (u64_stats_fetch_retry(&stats
->syncp
, start
));
213 ma
->masks_usage_zero_cntr
[i
] += counter
;
218 static struct mask_array
*tbl_mask_array_alloc(int size
)
220 struct mask_array
*new;
222 size
= max(MASK_ARRAY_SIZE_MIN
, size
);
223 new = kzalloc(struct_size(new, masks
, size
) +
224 sizeof(u64
) * size
, GFP_KERNEL
);
228 new->masks_usage_zero_cntr
= (u64
*)((u8
*)new +
229 struct_size(new, masks
, size
));
231 new->masks_usage_stats
= __alloc_percpu(sizeof(struct mask_array_stats
) +
234 if (!new->masks_usage_stats
) {
245 static int tbl_mask_array_realloc(struct flow_table
*tbl
, int size
)
247 struct mask_array
*old
;
248 struct mask_array
*new;
250 new = tbl_mask_array_alloc(size
);
254 old
= ovsl_dereference(tbl
->mask_array
);
258 for (i
= 0; i
< old
->max
; i
++) {
259 if (ovsl_dereference(old
->masks
[i
]))
260 new->masks
[new->count
++] = old
->masks
[i
];
262 call_rcu(&old
->rcu
, mask_array_rcu_cb
);
265 rcu_assign_pointer(tbl
->mask_array
, new);
270 static int tbl_mask_array_add_mask(struct flow_table
*tbl
,
271 struct sw_flow_mask
*new)
273 struct mask_array
*ma
= ovsl_dereference(tbl
->mask_array
);
274 int err
, ma_count
= READ_ONCE(ma
->count
);
276 if (ma_count
>= ma
->max
) {
277 err
= tbl_mask_array_realloc(tbl
, ma
->max
+
278 MASK_ARRAY_SIZE_MIN
);
282 ma
= ovsl_dereference(tbl
->mask_array
);
284 /* On every add or delete we need to reset the counters so
285 * every new mask gets a fair chance of being prioritized.
287 tbl_mask_array_reset_counters(ma
);
290 BUG_ON(ovsl_dereference(ma
->masks
[ma_count
]));
292 rcu_assign_pointer(ma
->masks
[ma_count
], new);
293 WRITE_ONCE(ma
->count
, ma_count
+ 1);
298 static void tbl_mask_array_del_mask(struct flow_table
*tbl
,
299 struct sw_flow_mask
*mask
)
301 struct mask_array
*ma
= ovsl_dereference(tbl
->mask_array
);
302 int i
, ma_count
= READ_ONCE(ma
->count
);
304 /* Remove the deleted mask pointers from the array */
305 for (i
= 0; i
< ma_count
; i
++) {
306 if (mask
== ovsl_dereference(ma
->masks
[i
]))
314 WRITE_ONCE(ma
->count
, ma_count
- 1);
316 rcu_assign_pointer(ma
->masks
[i
], ma
->masks
[ma_count
- 1]);
317 RCU_INIT_POINTER(ma
->masks
[ma_count
- 1], NULL
);
319 kfree_rcu(mask
, rcu
);
321 /* Shrink the mask array if necessary. */
322 if (ma
->max
>= (MASK_ARRAY_SIZE_MIN
* 2) &&
323 ma_count
<= (ma
->max
/ 3))
324 tbl_mask_array_realloc(tbl
, ma
->max
/ 2);
326 tbl_mask_array_reset_counters(ma
);
330 /* Remove 'mask' from the mask list, if it is not needed any more. */
331 static void flow_mask_remove(struct flow_table
*tbl
, struct sw_flow_mask
*mask
)
334 /* ovs-lock is required to protect mask-refcount and
338 BUG_ON(!mask
->ref_count
);
341 if (!mask
->ref_count
)
342 tbl_mask_array_del_mask(tbl
, mask
);
346 static void __mask_cache_destroy(struct mask_cache
*mc
)
348 free_percpu(mc
->mask_cache
);
352 static void mask_cache_rcu_cb(struct rcu_head
*rcu
)
354 struct mask_cache
*mc
= container_of(rcu
, struct mask_cache
, rcu
);
356 __mask_cache_destroy(mc
);
359 static struct mask_cache
*tbl_mask_cache_alloc(u32 size
)
361 struct mask_cache_entry __percpu
*cache
= NULL
;
362 struct mask_cache
*new;
364 /* Only allow size to be 0, or a power of 2, and does not exceed
365 * percpu allocation size.
367 if ((!is_power_of_2(size
) && size
!= 0) ||
368 (size
* sizeof(struct mask_cache_entry
)) > PCPU_MIN_UNIT_SIZE
)
371 new = kzalloc(sizeof(*new), GFP_KERNEL
);
375 new->cache_size
= size
;
376 if (new->cache_size
> 0) {
377 cache
= __alloc_percpu(array_size(sizeof(struct mask_cache_entry
),
379 __alignof__(struct mask_cache_entry
));
386 new->mask_cache
= cache
;
389 int ovs_flow_tbl_masks_cache_resize(struct flow_table
*table
, u32 size
)
391 struct mask_cache
*mc
= rcu_dereference_ovsl(table
->mask_cache
);
392 struct mask_cache
*new;
394 if (size
== mc
->cache_size
)
397 if ((!is_power_of_2(size
) && size
!= 0) ||
398 (size
* sizeof(struct mask_cache_entry
)) > PCPU_MIN_UNIT_SIZE
)
401 new = tbl_mask_cache_alloc(size
);
405 rcu_assign_pointer(table
->mask_cache
, new);
406 call_rcu(&mc
->rcu
, mask_cache_rcu_cb
);
411 int ovs_flow_tbl_init(struct flow_table
*table
)
413 struct table_instance
*ti
, *ufid_ti
;
414 struct mask_cache
*mc
;
415 struct mask_array
*ma
;
417 mc
= tbl_mask_cache_alloc(MC_DEFAULT_HASH_ENTRIES
);
421 ma
= tbl_mask_array_alloc(MASK_ARRAY_SIZE_MIN
);
423 goto free_mask_cache
;
425 ti
= table_instance_alloc(TBL_MIN_BUCKETS
);
427 goto free_mask_array
;
429 ufid_ti
= table_instance_alloc(TBL_MIN_BUCKETS
);
433 rcu_assign_pointer(table
->ti
, ti
);
434 rcu_assign_pointer(table
->ufid_ti
, ufid_ti
);
435 rcu_assign_pointer(table
->mask_array
, ma
);
436 rcu_assign_pointer(table
->mask_cache
, mc
);
437 table
->last_rehash
= jiffies
;
439 table
->ufid_count
= 0;
443 __table_instance_destroy(ti
);
445 __mask_array_destroy(ma
);
447 __mask_cache_destroy(mc
);
451 static void flow_tbl_destroy_rcu_cb(struct rcu_head
*rcu
)
453 struct table_instance
*ti
;
455 ti
= container_of(rcu
, struct table_instance
, rcu
);
456 __table_instance_destroy(ti
);
459 static void table_instance_flow_free(struct flow_table
*table
,
460 struct table_instance
*ti
,
461 struct table_instance
*ufid_ti
,
462 struct sw_flow
*flow
)
464 hlist_del_rcu(&flow
->flow_table
.node
[ti
->node_ver
]);
467 if (ovs_identifier_is_ufid(&flow
->id
)) {
468 hlist_del_rcu(&flow
->ufid_table
.node
[ufid_ti
->node_ver
]);
472 flow_mask_remove(table
, flow
->mask
);
475 /* Must be called with OVS mutex held. */
476 void table_instance_flow_flush(struct flow_table
*table
,
477 struct table_instance
*ti
,
478 struct table_instance
*ufid_ti
)
482 for (i
= 0; i
< ti
->n_buckets
; i
++) {
483 struct hlist_head
*head
= &ti
->buckets
[i
];
484 struct hlist_node
*n
;
485 struct sw_flow
*flow
;
487 hlist_for_each_entry_safe(flow
, n
, head
,
488 flow_table
.node
[ti
->node_ver
]) {
490 table_instance_flow_free(table
, ti
, ufid_ti
,
492 ovs_flow_free(flow
, true);
496 if (WARN_ON(table
->count
!= 0 ||
497 table
->ufid_count
!= 0)) {
499 table
->ufid_count
= 0;
503 static void table_instance_destroy(struct table_instance
*ti
,
504 struct table_instance
*ufid_ti
)
506 call_rcu(&ti
->rcu
, flow_tbl_destroy_rcu_cb
);
507 call_rcu(&ufid_ti
->rcu
, flow_tbl_destroy_rcu_cb
);
510 /* No need for locking this function is called from RCU callback or
513 void ovs_flow_tbl_destroy(struct flow_table
*table
)
515 struct table_instance
*ti
= rcu_dereference_raw(table
->ti
);
516 struct table_instance
*ufid_ti
= rcu_dereference_raw(table
->ufid_ti
);
517 struct mask_cache
*mc
= rcu_dereference_raw(table
->mask_cache
);
518 struct mask_array
*ma
= rcu_dereference_raw(table
->mask_array
);
520 call_rcu(&mc
->rcu
, mask_cache_rcu_cb
);
521 call_rcu(&ma
->rcu
, mask_array_rcu_cb
);
522 table_instance_destroy(ti
, ufid_ti
);
525 struct sw_flow
*ovs_flow_tbl_dump_next(struct table_instance
*ti
,
526 u32
*bucket
, u32
*last
)
528 struct sw_flow
*flow
;
529 struct hlist_head
*head
;
534 while (*bucket
< ti
->n_buckets
) {
536 head
= &ti
->buckets
[*bucket
];
537 hlist_for_each_entry_rcu(flow
, head
, flow_table
.node
[ver
]) {
552 static struct hlist_head
*find_bucket(struct table_instance
*ti
, u32 hash
)
554 hash
= jhash_1word(hash
, ti
->hash_seed
);
555 return &ti
->buckets
[hash
& (ti
->n_buckets
- 1)];
558 static void table_instance_insert(struct table_instance
*ti
,
559 struct sw_flow
*flow
)
561 struct hlist_head
*head
;
563 head
= find_bucket(ti
, flow
->flow_table
.hash
);
564 hlist_add_head_rcu(&flow
->flow_table
.node
[ti
->node_ver
], head
);
567 static void ufid_table_instance_insert(struct table_instance
*ti
,
568 struct sw_flow
*flow
)
570 struct hlist_head
*head
;
572 head
= find_bucket(ti
, flow
->ufid_table
.hash
);
573 hlist_add_head_rcu(&flow
->ufid_table
.node
[ti
->node_ver
], head
);
576 static void flow_table_copy_flows(struct table_instance
*old
,
577 struct table_instance
*new, bool ufid
)
582 old_ver
= old
->node_ver
;
583 new->node_ver
= !old_ver
;
585 /* Insert in new table. */
586 for (i
= 0; i
< old
->n_buckets
; i
++) {
587 struct sw_flow
*flow
;
588 struct hlist_head
*head
= &old
->buckets
[i
];
591 hlist_for_each_entry_rcu(flow
, head
,
592 ufid_table
.node
[old_ver
],
593 lockdep_ovsl_is_held())
594 ufid_table_instance_insert(new, flow
);
596 hlist_for_each_entry_rcu(flow
, head
,
597 flow_table
.node
[old_ver
],
598 lockdep_ovsl_is_held())
599 table_instance_insert(new, flow
);
603 static struct table_instance
*table_instance_rehash(struct table_instance
*ti
,
604 int n_buckets
, bool ufid
)
606 struct table_instance
*new_ti
;
608 new_ti
= table_instance_alloc(n_buckets
);
612 flow_table_copy_flows(ti
, new_ti
, ufid
);
617 int ovs_flow_tbl_flush(struct flow_table
*flow_table
)
619 struct table_instance
*old_ti
, *new_ti
;
620 struct table_instance
*old_ufid_ti
, *new_ufid_ti
;
622 new_ti
= table_instance_alloc(TBL_MIN_BUCKETS
);
625 new_ufid_ti
= table_instance_alloc(TBL_MIN_BUCKETS
);
629 old_ti
= ovsl_dereference(flow_table
->ti
);
630 old_ufid_ti
= ovsl_dereference(flow_table
->ufid_ti
);
632 rcu_assign_pointer(flow_table
->ti
, new_ti
);
633 rcu_assign_pointer(flow_table
->ufid_ti
, new_ufid_ti
);
634 flow_table
->last_rehash
= jiffies
;
636 table_instance_flow_flush(flow_table
, old_ti
, old_ufid_ti
);
637 table_instance_destroy(old_ti
, old_ufid_ti
);
641 __table_instance_destroy(new_ti
);
645 static u32
flow_hash(const struct sw_flow_key
*key
,
646 const struct sw_flow_key_range
*range
)
648 const u32
*hash_key
= (const u32
*)((const u8
*)key
+ range
->start
);
650 /* Make sure number of hash bytes are multiple of u32. */
651 int hash_u32s
= range_n_bytes(range
) >> 2;
653 return jhash2(hash_key
, hash_u32s
, 0);
656 static int flow_key_start(const struct sw_flow_key
*key
)
661 return rounddown(offsetof(struct sw_flow_key
, phy
),
665 static bool cmp_key(const struct sw_flow_key
*key1
,
666 const struct sw_flow_key
*key2
,
667 int key_start
, int key_end
)
669 const long *cp1
= (const long *)((const u8
*)key1
+ key_start
);
670 const long *cp2
= (const long *)((const u8
*)key2
+ key_start
);
673 for (i
= key_start
; i
< key_end
; i
+= sizeof(long))
680 static bool flow_cmp_masked_key(const struct sw_flow
*flow
,
681 const struct sw_flow_key
*key
,
682 const struct sw_flow_key_range
*range
)
684 return cmp_key(&flow
->key
, key
, range
->start
, range
->end
);
687 static bool ovs_flow_cmp_unmasked_key(const struct sw_flow
*flow
,
688 const struct sw_flow_match
*match
)
690 struct sw_flow_key
*key
= match
->key
;
691 int key_start
= flow_key_start(key
);
692 int key_end
= match
->range
.end
;
694 BUG_ON(ovs_identifier_is_ufid(&flow
->id
));
695 return cmp_key(flow
->id
.unmasked_key
, key
, key_start
, key_end
);
698 static struct sw_flow
*masked_flow_lookup(struct table_instance
*ti
,
699 const struct sw_flow_key
*unmasked
,
700 const struct sw_flow_mask
*mask
,
703 struct sw_flow
*flow
;
704 struct hlist_head
*head
;
706 struct sw_flow_key masked_key
;
708 ovs_flow_mask_key(&masked_key
, unmasked
, false, mask
);
709 hash
= flow_hash(&masked_key
, &mask
->range
);
710 head
= find_bucket(ti
, hash
);
713 hlist_for_each_entry_rcu(flow
, head
, flow_table
.node
[ti
->node_ver
],
714 lockdep_ovsl_is_held()) {
715 if (flow
->mask
== mask
&& flow
->flow_table
.hash
== hash
&&
716 flow_cmp_masked_key(flow
, &masked_key
, &mask
->range
))
722 /* Flow lookup does full lookup on flow table. It starts with
723 * mask from index passed in *index.
724 * This function MUST be called with BH disabled due to the use
725 * of CPU specific variables.
727 static struct sw_flow
*flow_lookup(struct flow_table
*tbl
,
728 struct table_instance
*ti
,
729 struct mask_array
*ma
,
730 const struct sw_flow_key
*key
,
735 struct mask_array_stats
*stats
= this_cpu_ptr(ma
->masks_usage_stats
);
736 struct sw_flow
*flow
;
737 struct sw_flow_mask
*mask
;
740 if (likely(*index
< ma
->max
)) {
741 mask
= rcu_dereference_ovsl(ma
->masks
[*index
]);
743 flow
= masked_flow_lookup(ti
, key
, mask
, n_mask_hit
);
745 u64_stats_update_begin(&stats
->syncp
);
746 stats
->usage_cntrs
[*index
]++;
747 u64_stats_update_end(&stats
->syncp
);
754 for (i
= 0; i
< ma
->max
; i
++) {
759 mask
= rcu_dereference_ovsl(ma
->masks
[i
]);
763 flow
= masked_flow_lookup(ti
, key
, mask
, n_mask_hit
);
764 if (flow
) { /* Found */
766 u64_stats_update_begin(&stats
->syncp
);
767 stats
->usage_cntrs
[*index
]++;
768 u64_stats_update_end(&stats
->syncp
);
777 * mask_cache maps flow to probable mask. This cache is not tightly
778 * coupled cache, It means updates to mask list can result in inconsistent
779 * cache entry in mask cache.
780 * This is per cpu cache and is divided in MC_HASH_SEGS segments.
781 * In case of a hash collision the entry is hashed in next segment.
783 struct sw_flow
*ovs_flow_tbl_lookup_stats(struct flow_table
*tbl
,
784 const struct sw_flow_key
*key
,
789 struct mask_cache
*mc
= rcu_dereference(tbl
->mask_cache
);
790 struct mask_array
*ma
= rcu_dereference(tbl
->mask_array
);
791 struct table_instance
*ti
= rcu_dereference(tbl
->ti
);
792 struct mask_cache_entry
*entries
, *ce
;
793 struct sw_flow
*flow
;
799 if (unlikely(!skb_hash
|| mc
->cache_size
== 0)) {
803 return flow_lookup(tbl
, ti
, ma
, key
, n_mask_hit
, &cache
,
807 /* Pre and post recirulation flows usually have the same skb_hash
808 * value. To avoid hash collisions, rehash the 'skb_hash' with
811 skb_hash
= jhash_1word(skb_hash
, key
->recirc_id
);
815 entries
= this_cpu_ptr(mc
->mask_cache
);
817 /* Find the cache entry 'ce' to operate on. */
818 for (seg
= 0; seg
< MC_HASH_SEGS
; seg
++) {
819 int index
= hash
& (mc
->cache_size
- 1);
820 struct mask_cache_entry
*e
;
823 if (e
->skb_hash
== skb_hash
) {
824 flow
= flow_lookup(tbl
, ti
, ma
, key
, n_mask_hit
,
825 n_cache_hit
, &e
->mask_index
);
831 if (!ce
|| e
->skb_hash
< ce
->skb_hash
)
832 ce
= e
; /* A better replacement cache candidate. */
834 hash
>>= MC_HASH_SHIFT
;
837 /* Cache miss, do full lookup. */
838 flow
= flow_lookup(tbl
, ti
, ma
, key
, n_mask_hit
, n_cache_hit
,
841 ce
->skb_hash
= skb_hash
;
847 struct sw_flow
*ovs_flow_tbl_lookup(struct flow_table
*tbl
,
848 const struct sw_flow_key
*key
)
850 struct table_instance
*ti
= rcu_dereference_ovsl(tbl
->ti
);
851 struct mask_array
*ma
= rcu_dereference_ovsl(tbl
->mask_array
);
852 u32 __always_unused n_mask_hit
;
853 u32 __always_unused n_cache_hit
;
854 struct sw_flow
*flow
;
857 /* This function gets called trough the netlink interface and therefore
858 * is preemptible. However, flow_lookup() function needs to be called
859 * with BH disabled due to CPU specific variables.
862 flow
= flow_lookup(tbl
, ti
, ma
, key
, &n_mask_hit
, &n_cache_hit
, &index
);
867 struct sw_flow
*ovs_flow_tbl_lookup_exact(struct flow_table
*tbl
,
868 const struct sw_flow_match
*match
)
870 struct mask_array
*ma
= ovsl_dereference(tbl
->mask_array
);
873 /* Always called under ovs-mutex. */
874 for (i
= 0; i
< ma
->max
; i
++) {
875 struct table_instance
*ti
= rcu_dereference_ovsl(tbl
->ti
);
876 u32 __always_unused n_mask_hit
;
877 struct sw_flow_mask
*mask
;
878 struct sw_flow
*flow
;
880 mask
= ovsl_dereference(ma
->masks
[i
]);
884 flow
= masked_flow_lookup(ti
, match
->key
, mask
, &n_mask_hit
);
885 if (flow
&& ovs_identifier_is_key(&flow
->id
) &&
886 ovs_flow_cmp_unmasked_key(flow
, match
)) {
894 static u32
ufid_hash(const struct sw_flow_id
*sfid
)
896 return jhash(sfid
->ufid
, sfid
->ufid_len
, 0);
899 static bool ovs_flow_cmp_ufid(const struct sw_flow
*flow
,
900 const struct sw_flow_id
*sfid
)
902 if (flow
->id
.ufid_len
!= sfid
->ufid_len
)
905 return !memcmp(flow
->id
.ufid
, sfid
->ufid
, sfid
->ufid_len
);
908 bool ovs_flow_cmp(const struct sw_flow
*flow
,
909 const struct sw_flow_match
*match
)
911 if (ovs_identifier_is_ufid(&flow
->id
))
912 return flow_cmp_masked_key(flow
, match
->key
, &match
->range
);
914 return ovs_flow_cmp_unmasked_key(flow
, match
);
917 struct sw_flow
*ovs_flow_tbl_lookup_ufid(struct flow_table
*tbl
,
918 const struct sw_flow_id
*ufid
)
920 struct table_instance
*ti
= rcu_dereference_ovsl(tbl
->ufid_ti
);
921 struct sw_flow
*flow
;
922 struct hlist_head
*head
;
925 hash
= ufid_hash(ufid
);
926 head
= find_bucket(ti
, hash
);
927 hlist_for_each_entry_rcu(flow
, head
, ufid_table
.node
[ti
->node_ver
],
928 lockdep_ovsl_is_held()) {
929 if (flow
->ufid_table
.hash
== hash
&&
930 ovs_flow_cmp_ufid(flow
, ufid
))
936 int ovs_flow_tbl_num_masks(const struct flow_table
*table
)
938 struct mask_array
*ma
= rcu_dereference_ovsl(table
->mask_array
);
939 return READ_ONCE(ma
->count
);
942 u32
ovs_flow_tbl_masks_cache_size(const struct flow_table
*table
)
944 struct mask_cache
*mc
= rcu_dereference_ovsl(table
->mask_cache
);
946 return READ_ONCE(mc
->cache_size
);
949 static struct table_instance
*table_instance_expand(struct table_instance
*ti
,
952 return table_instance_rehash(ti
, ti
->n_buckets
* 2, ufid
);
955 /* Must be called with OVS mutex held. */
956 void ovs_flow_tbl_remove(struct flow_table
*table
, struct sw_flow
*flow
)
958 struct table_instance
*ti
= ovsl_dereference(table
->ti
);
959 struct table_instance
*ufid_ti
= ovsl_dereference(table
->ufid_ti
);
961 BUG_ON(table
->count
== 0);
962 table_instance_flow_free(table
, ti
, ufid_ti
, flow
);
965 static struct sw_flow_mask
*mask_alloc(void)
967 struct sw_flow_mask
*mask
;
969 mask
= kmalloc(sizeof(*mask
), GFP_KERNEL
);
976 static bool mask_equal(const struct sw_flow_mask
*a
,
977 const struct sw_flow_mask
*b
)
979 const u8
*a_
= (const u8
*)&a
->key
+ a
->range
.start
;
980 const u8
*b_
= (const u8
*)&b
->key
+ b
->range
.start
;
982 return (a
->range
.end
== b
->range
.end
)
983 && (a
->range
.start
== b
->range
.start
)
984 && (memcmp(a_
, b_
, range_n_bytes(&a
->range
)) == 0);
987 static struct sw_flow_mask
*flow_mask_find(const struct flow_table
*tbl
,
988 const struct sw_flow_mask
*mask
)
990 struct mask_array
*ma
;
993 ma
= ovsl_dereference(tbl
->mask_array
);
994 for (i
= 0; i
< ma
->max
; i
++) {
995 struct sw_flow_mask
*t
;
996 t
= ovsl_dereference(ma
->masks
[i
]);
998 if (t
&& mask_equal(mask
, t
))
1005 /* Add 'mask' into the mask list, if it is not already there. */
1006 static int flow_mask_insert(struct flow_table
*tbl
, struct sw_flow
*flow
,
1007 const struct sw_flow_mask
*new)
1009 struct sw_flow_mask
*mask
;
1011 mask
= flow_mask_find(tbl
, new);
1013 /* Allocate a new mask if none exists. */
1014 mask
= mask_alloc();
1017 mask
->key
= new->key
;
1018 mask
->range
= new->range
;
1020 /* Add mask to mask-list. */
1021 if (tbl_mask_array_add_mask(tbl
, mask
)) {
1026 BUG_ON(!mask
->ref_count
);
1034 /* Must be called with OVS mutex held. */
1035 static void flow_key_insert(struct flow_table
*table
, struct sw_flow
*flow
)
1037 struct table_instance
*new_ti
= NULL
;
1038 struct table_instance
*ti
;
1040 flow
->flow_table
.hash
= flow_hash(&flow
->key
, &flow
->mask
->range
);
1041 ti
= ovsl_dereference(table
->ti
);
1042 table_instance_insert(ti
, flow
);
1045 /* Expand table, if necessary, to make room. */
1046 if (table
->count
> ti
->n_buckets
)
1047 new_ti
= table_instance_expand(ti
, false);
1048 else if (time_after(jiffies
, table
->last_rehash
+ REHASH_INTERVAL
))
1049 new_ti
= table_instance_rehash(ti
, ti
->n_buckets
, false);
1052 rcu_assign_pointer(table
->ti
, new_ti
);
1053 call_rcu(&ti
->rcu
, flow_tbl_destroy_rcu_cb
);
1054 table
->last_rehash
= jiffies
;
1058 /* Must be called with OVS mutex held. */
1059 static void flow_ufid_insert(struct flow_table
*table
, struct sw_flow
*flow
)
1061 struct table_instance
*ti
;
1063 flow
->ufid_table
.hash
= ufid_hash(&flow
->id
);
1064 ti
= ovsl_dereference(table
->ufid_ti
);
1065 ufid_table_instance_insert(ti
, flow
);
1066 table
->ufid_count
++;
1068 /* Expand table, if necessary, to make room. */
1069 if (table
->ufid_count
> ti
->n_buckets
) {
1070 struct table_instance
*new_ti
;
1072 new_ti
= table_instance_expand(ti
, true);
1074 rcu_assign_pointer(table
->ufid_ti
, new_ti
);
1075 call_rcu(&ti
->rcu
, flow_tbl_destroy_rcu_cb
);
1080 /* Must be called with OVS mutex held. */
1081 int ovs_flow_tbl_insert(struct flow_table
*table
, struct sw_flow
*flow
,
1082 const struct sw_flow_mask
*mask
)
1086 err
= flow_mask_insert(table
, flow
, mask
);
1089 flow_key_insert(table
, flow
);
1090 if (ovs_identifier_is_ufid(&flow
->id
))
1091 flow_ufid_insert(table
, flow
);
1096 static int compare_mask_and_count(const void *a
, const void *b
)
1098 const struct mask_count
*mc_a
= a
;
1099 const struct mask_count
*mc_b
= b
;
1101 return (s64
)mc_b
->counter
- (s64
)mc_a
->counter
;
1104 /* Must be called with OVS mutex held. */
1105 void ovs_flow_masks_rebalance(struct flow_table
*table
)
1107 struct mask_array
*ma
= rcu_dereference_ovsl(table
->mask_array
);
1108 struct mask_count
*masks_and_count
;
1109 struct mask_array
*new;
1110 int masks_entries
= 0;
1113 /* Build array of all current entries with use counters. */
1114 masks_and_count
= kmalloc_array(ma
->max
, sizeof(*masks_and_count
),
1116 if (!masks_and_count
)
1119 for (i
= 0; i
< ma
->max
; i
++) {
1120 struct sw_flow_mask
*mask
;
1123 mask
= rcu_dereference_ovsl(ma
->masks
[i
]);
1124 if (unlikely(!mask
))
1127 masks_and_count
[i
].index
= i
;
1128 masks_and_count
[i
].counter
= 0;
1130 for_each_possible_cpu(cpu
) {
1131 struct mask_array_stats
*stats
;
1135 stats
= per_cpu_ptr(ma
->masks_usage_stats
, cpu
);
1137 start
= u64_stats_fetch_begin(&stats
->syncp
);
1138 counter
= stats
->usage_cntrs
[i
];
1139 } while (u64_stats_fetch_retry(&stats
->syncp
, start
));
1141 masks_and_count
[i
].counter
+= counter
;
1144 /* Subtract the zero count value. */
1145 masks_and_count
[i
].counter
-= ma
->masks_usage_zero_cntr
[i
];
1147 /* Rather than calling tbl_mask_array_reset_counters()
1148 * below when no change is needed, do it inline here.
1150 ma
->masks_usage_zero_cntr
[i
] += masks_and_count
[i
].counter
;
1154 goto free_mask_entries
;
1156 /* Sort the entries */
1158 sort(masks_and_count
, masks_entries
, sizeof(*masks_and_count
),
1159 compare_mask_and_count
, NULL
);
1161 /* If the order is the same, nothing to do... */
1162 for (i
= 0; i
< masks_entries
; i
++) {
1163 if (i
!= masks_and_count
[i
].index
)
1166 if (i
== masks_entries
)
1167 goto free_mask_entries
;
1169 /* Rebuilt the new list in order of usage. */
1170 new = tbl_mask_array_alloc(ma
->max
);
1172 goto free_mask_entries
;
1174 for (i
= 0; i
< masks_entries
; i
++) {
1175 int index
= masks_and_count
[i
].index
;
1177 if (ovsl_dereference(ma
->masks
[index
]))
1178 new->masks
[new->count
++] = ma
->masks
[index
];
1181 rcu_assign_pointer(table
->mask_array
, new);
1182 call_rcu(&ma
->rcu
, mask_array_rcu_cb
);
1185 kfree(masks_and_count
);
1188 /* Initializes the flow module.
1189 * Returns zero if successful or a negative error code. */
1190 int ovs_flow_init(void)
1192 BUILD_BUG_ON(__alignof__(struct sw_flow_key
) % __alignof__(long));
1193 BUILD_BUG_ON(sizeof(struct sw_flow_key
) % sizeof(long));
1195 flow_cache
= kmem_cache_create("sw_flow", sizeof(struct sw_flow
)
1197 * sizeof(struct sw_flow_stats
*))
1200 if (flow_cache
== NULL
)
1204 = kmem_cache_create("sw_flow_stats", sizeof(struct sw_flow_stats
),
1205 0, SLAB_HWCACHE_ALIGN
, NULL
);
1206 if (flow_stats_cache
== NULL
) {
1207 kmem_cache_destroy(flow_cache
);
1215 /* Uninitializes the flow module. */
1216 void ovs_flow_exit(void)
1218 kmem_cache_destroy(flow_stats_cache
);
1219 kmem_cache_destroy(flow_cache
);