Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* flow.c: Generic flow cache. |
| 2 | * |
| 3 | * Copyright (C) 2003 Alexey N. Kuznetsov (kuznet@ms2.inr.ac.ru) |
| 4 | * Copyright (C) 2003 David S. Miller (davem@redhat.com) |
| 5 | */ |
| 6 | |
| 7 | #include <linux/kernel.h> |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/list.h> |
| 10 | #include <linux/jhash.h> |
| 11 | #include <linux/interrupt.h> |
| 12 | #include <linux/mm.h> |
| 13 | #include <linux/random.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <linux/smp.h> |
| 17 | #include <linux/completion.h> |
| 18 | #include <linux/percpu.h> |
| 19 | #include <linux/bitops.h> |
| 20 | #include <linux/notifier.h> |
| 21 | #include <linux/cpu.h> |
| 22 | #include <linux/cpumask.h> |
Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <net/flow.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 25 | #include <linux/atomic.h> |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 26 | #include <linux/security.h> |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 27 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | struct flow_cache_entry { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 30 | union { |
| 31 | struct hlist_node hlist; |
| 32 | struct list_head gc_list; |
| 33 | } u; |
dpward | 0542b69 | 2011-08-31 06:05:27 +0000 | [diff] [blame] | 34 | struct net *net; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 35 | u16 family; |
| 36 | u8 dir; |
| 37 | u32 genid; |
| 38 | struct flowi key; |
| 39 | struct flow_cache_object *object; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | struct flow_flush_info { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 43 | struct flow_cache *cache; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 44 | atomic_t cpuleft; |
| 45 | struct completion completion; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Eric Dumazet | d32d9bb | 2014-03-10 07:09:07 -0700 | [diff] [blame] | 48 | static struct kmem_cache *flow_cachep __read_mostly; |
| 49 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 50 | #define flow_cache_hash_size(cache) (1 << (cache)->hash_shift) |
| 51 | #define FLOW_HASH_RND_PERIOD (10 * 60 * HZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | static void flow_cache_new_hashrnd(unsigned long arg) |
| 54 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 55 | struct flow_cache *fc = (void *) arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | int i; |
| 57 | |
KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 58 | for_each_possible_cpu(i) |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 59 | per_cpu_ptr(fc->percpu, i)->hash_rnd_recalc = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 61 | fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD; |
| 62 | add_timer(&fc->rnd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 65 | static int flow_entry_valid(struct flow_cache_entry *fle, |
| 66 | struct netns_xfrm *xfrm) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 67 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 68 | if (atomic_read(&xfrm->flow_cache_genid) != fle->genid) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 69 | return 0; |
| 70 | if (fle->object && !fle->object->ops->check(fle->object)) |
| 71 | return 0; |
| 72 | return 1; |
| 73 | } |
| 74 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 75 | static void flow_entry_kill(struct flow_cache_entry *fle, |
| 76 | struct netns_xfrm *xfrm) |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 77 | { |
| 78 | if (fle->object) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 79 | fle->object->ops->delete(fle->object); |
Eric Dumazet | d32d9bb | 2014-03-10 07:09:07 -0700 | [diff] [blame] | 80 | kmem_cache_free(flow_cachep, fle); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static void flow_cache_gc_task(struct work_struct *work) |
| 84 | { |
| 85 | struct list_head gc_list; |
| 86 | struct flow_cache_entry *fce, *n; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 87 | struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm, |
| 88 | flow_cache_gc_work); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 89 | |
| 90 | INIT_LIST_HEAD(&gc_list); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 91 | spin_lock_bh(&xfrm->flow_cache_gc_lock); |
| 92 | list_splice_tail_init(&xfrm->flow_cache_gc_list, &gc_list); |
| 93 | spin_unlock_bh(&xfrm->flow_cache_gc_lock); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 94 | |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 95 | list_for_each_entry_safe(fce, n, &gc_list, u.gc_list) { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 96 | flow_entry_kill(fce, xfrm); |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 97 | atomic_dec(&xfrm->flow_cache_gc_count); |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 98 | } |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 99 | } |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 100 | |
| 101 | static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp, |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 102 | int deleted, struct list_head *gc_list, |
| 103 | struct netns_xfrm *xfrm) |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 104 | { |
| 105 | if (deleted) { |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 106 | atomic_add(deleted, &xfrm->flow_cache_gc_count); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 107 | fcp->hash_count -= deleted; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 108 | spin_lock_bh(&xfrm->flow_cache_gc_lock); |
| 109 | list_splice_tail(gc_list, &xfrm->flow_cache_gc_list); |
| 110 | spin_unlock_bh(&xfrm->flow_cache_gc_lock); |
| 111 | schedule_work(&xfrm->flow_cache_gc_work); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 112 | } |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 113 | } |
| 114 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 115 | static void __flow_cache_shrink(struct flow_cache *fc, |
| 116 | struct flow_cache_percpu *fcp, |
| 117 | int shrink_to) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 119 | struct flow_cache_entry *fle; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 120 | struct hlist_node *tmp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 121 | LIST_HEAD(gc_list); |
| 122 | int i, deleted = 0; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 123 | struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm, |
| 124 | flow_cache_global); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 126 | for (i = 0; i < flow_cache_hash_size(fc); i++) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 127 | int saved = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 129 | hlist_for_each_entry_safe(fle, tmp, |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 130 | &fcp->hash_table[i], u.hlist) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 131 | if (saved < shrink_to && |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 132 | flow_entry_valid(fle, xfrm)) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 133 | saved++; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 134 | } else { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 135 | deleted++; |
| 136 | hlist_del(&fle->u.hlist); |
| 137 | list_add_tail(&fle->u.gc_list, &gc_list); |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | } |
| 140 | } |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 141 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 142 | flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | } |
| 144 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 145 | static void flow_cache_shrink(struct flow_cache *fc, |
| 146 | struct flow_cache_percpu *fcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 148 | int shrink_to = fc->low_watermark / flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 150 | __flow_cache_shrink(fc, fcp, shrink_to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 153 | static void flow_new_hash_rnd(struct flow_cache *fc, |
| 154 | struct flow_cache_percpu *fcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 156 | get_random_bytes(&fcp->hash_rnd, sizeof(u32)); |
| 157 | fcp->hash_rnd_recalc = 0; |
| 158 | __flow_cache_shrink(fc, fcp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 161 | static u32 flow_hash_code(struct flow_cache *fc, |
| 162 | struct flow_cache_percpu *fcp, |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 163 | const struct flowi *key, |
| 164 | size_t keysize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 166 | const u32 *k = (const u32 *) key; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 167 | const u32 length = keysize * sizeof(flow_compare_t) / sizeof(u32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 169 | return jhash2(k, length, fcp->hash_rnd) |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 170 | & (flow_cache_hash_size(fc) - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | /* I hear what you're saying, use memcmp. But memcmp cannot make |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 174 | * important assumptions that we can here, such as alignment. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | */ |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 176 | static int flow_key_compare(const struct flowi *key1, const struct flowi *key2, |
| 177 | size_t keysize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 179 | const flow_compare_t *k1, *k1_lim, *k2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 181 | k1 = (const flow_compare_t *) key1; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 182 | k1_lim = k1 + keysize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 184 | k2 = (const flow_compare_t *) key2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | do { |
| 187 | if (*k1++ != *k2++) |
| 188 | return 1; |
| 189 | } while (k1 < k1_lim); |
| 190 | |
| 191 | return 0; |
| 192 | } |
| 193 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 194 | struct flow_cache_object * |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 195 | flow_cache_lookup(struct net *net, const struct flowi *key, u16 family, u8 dir, |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 196 | flow_resolve_t resolver, void *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 198 | struct flow_cache *fc = &net->xfrm.flow_cache_global; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 199 | struct flow_cache_percpu *fcp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 200 | struct flow_cache_entry *fle, *tfle; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 201 | struct flow_cache_object *flo; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 202 | size_t keysize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | unsigned int hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
| 205 | local_bh_disable(); |
Eric Dumazet | 7a9b2d5 | 2010-06-24 00:52:37 +0000 | [diff] [blame] | 206 | fcp = this_cpu_ptr(fc->percpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
| 208 | fle = NULL; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 209 | flo = NULL; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 210 | |
| 211 | keysize = flow_key_size(family); |
| 212 | if (!keysize) |
| 213 | goto nocache; |
| 214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | /* Packet really early in init? Making flow_cache_init a |
| 216 | * pre-smp initcall would solve this. --RR */ |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 217 | if (!fcp->hash_table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | goto nocache; |
| 219 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 220 | if (fcp->hash_rnd_recalc) |
| 221 | flow_new_hash_rnd(fc, fcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 223 | hash = flow_hash_code(fc, fcp, key, keysize); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 224 | hlist_for_each_entry(tfle, &fcp->hash_table[hash], u.hlist) { |
dpward | 0542b69 | 2011-08-31 06:05:27 +0000 | [diff] [blame] | 225 | if (tfle->net == net && |
| 226 | tfle->family == family && |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 227 | tfle->dir == dir && |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 228 | flow_key_compare(key, &tfle->key, keysize) == 0) { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 229 | fle = tfle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | break; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 231 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | } |
| 233 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 234 | if (unlikely(!fle)) { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 235 | if (fcp->hash_count > fc->high_watermark) |
| 236 | flow_cache_shrink(fc, fcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Miroslav Urbanek | 6b22648 | 2016-11-21 15:48:21 +0100 | [diff] [blame] | 238 | if (atomic_read(&net->xfrm.flow_cache_gc_count) > |
| 239 | 2 * num_online_cpus() * fc->high_watermark) { |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 240 | flo = ERR_PTR(-ENOBUFS); |
| 241 | goto ret_object; |
| 242 | } |
| 243 | |
Eric Dumazet | d32d9bb | 2014-03-10 07:09:07 -0700 | [diff] [blame] | 244 | fle = kmem_cache_alloc(flow_cachep, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | if (fle) { |
dpward | 0542b69 | 2011-08-31 06:05:27 +0000 | [diff] [blame] | 246 | fle->net = net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | fle->family = family; |
| 248 | fle->dir = dir; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 249 | memcpy(&fle->key, key, keysize * sizeof(flow_compare_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | fle->object = NULL; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 251 | hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 252 | fcp->hash_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 254 | } else if (likely(fle->genid == atomic_read(&net->xfrm.flow_cache_genid))) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 255 | flo = fle->object; |
| 256 | if (!flo) |
| 257 | goto ret_object; |
| 258 | flo = flo->ops->get(flo); |
| 259 | if (flo) |
| 260 | goto ret_object; |
| 261 | } else if (fle->object) { |
| 262 | flo = fle->object; |
| 263 | flo->ops->delete(flo); |
| 264 | fle->object = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | nocache: |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 268 | flo = NULL; |
| 269 | if (fle) { |
| 270 | flo = fle->object; |
| 271 | fle->object = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 273 | flo = resolver(net, key, family, dir, flo, ctx); |
| 274 | if (fle) { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 275 | fle->genid = atomic_read(&net->xfrm.flow_cache_genid); |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 276 | if (!IS_ERR(flo)) |
| 277 | fle->object = flo; |
| 278 | else |
| 279 | fle->genid--; |
| 280 | } else { |
YOSHIFUJI Hideaki / 吉藤英明 | 8fbcec2 | 2013-01-22 06:32:44 +0000 | [diff] [blame] | 281 | if (!IS_ERR_OR_NULL(flo)) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 282 | flo->ops->delete(flo); |
| 283 | } |
| 284 | ret_object: |
| 285 | local_bh_enable(); |
| 286 | return flo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 288 | EXPORT_SYMBOL(flow_cache_lookup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | static void flow_cache_flush_tasklet(unsigned long data) |
| 291 | { |
| 292 | struct flow_flush_info *info = (void *)data; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 293 | struct flow_cache *fc = info->cache; |
| 294 | struct flow_cache_percpu *fcp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 295 | struct flow_cache_entry *fle; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 296 | struct hlist_node *tmp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 297 | LIST_HEAD(gc_list); |
| 298 | int i, deleted = 0; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 299 | struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm, |
| 300 | flow_cache_global); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Eric Dumazet | 7a9b2d5 | 2010-06-24 00:52:37 +0000 | [diff] [blame] | 302 | fcp = this_cpu_ptr(fc->percpu); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 303 | for (i = 0; i < flow_cache_hash_size(fc); i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 304 | hlist_for_each_entry_safe(fle, tmp, |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 305 | &fcp->hash_table[i], u.hlist) { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 306 | if (flow_entry_valid(fle, xfrm)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | continue; |
| 308 | |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 309 | deleted++; |
| 310 | hlist_del(&fle->u.hlist); |
| 311 | list_add_tail(&fle->u.gc_list, &gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | } |
| 314 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 315 | flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | if (atomic_dec_and_test(&info->cpuleft)) |
| 318 | complete(&info->completion); |
| 319 | } |
| 320 | |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 321 | /* |
| 322 | * Return whether a cpu needs flushing. Conservatively, we assume |
| 323 | * the presence of any entries means the core may require flushing, |
| 324 | * since the flow_cache_ops.check() function may assume it's running |
| 325 | * on the same core as the per-cpu cache component. |
| 326 | */ |
| 327 | static int flow_cache_percpu_empty(struct flow_cache *fc, int cpu) |
| 328 | { |
| 329 | struct flow_cache_percpu *fcp; |
| 330 | int i; |
| 331 | |
Li RongQing | 2781503 | 2013-03-28 02:24:11 +0000 | [diff] [blame] | 332 | fcp = per_cpu_ptr(fc->percpu, cpu); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 333 | for (i = 0; i < flow_cache_hash_size(fc); i++) |
| 334 | if (!hlist_empty(&fcp->hash_table[i])) |
| 335 | return 0; |
| 336 | return 1; |
| 337 | } |
| 338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | static void flow_cache_flush_per_cpu(void *data) |
| 340 | { |
| 341 | struct flow_flush_info *info = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | struct tasklet_struct *tasklet; |
| 343 | |
Li RongQing | 50eab05 | 2013-03-27 23:42:41 +0000 | [diff] [blame] | 344 | tasklet = &this_cpu_ptr(info->cache->percpu)->flush_tasklet; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | tasklet->data = (unsigned long)info; |
| 346 | tasklet_schedule(tasklet); |
| 347 | } |
| 348 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 349 | void flow_cache_flush(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | { |
| 351 | struct flow_flush_info info; |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 352 | cpumask_var_t mask; |
| 353 | int i, self; |
| 354 | |
| 355 | /* Track which cpus need flushing to avoid disturbing all cores. */ |
| 356 | if (!alloc_cpumask_var(&mask, GFP_KERNEL)) |
| 357 | return; |
| 358 | cpumask_clear(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
| 360 | /* Don't want cpus going down or up during this. */ |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 361 | get_online_cpus(); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 362 | mutex_lock(&net->xfrm.flow_flush_sem); |
| 363 | info.cache = &net->xfrm.flow_cache_global; |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 364 | for_each_online_cpu(i) |
| 365 | if (!flow_cache_percpu_empty(info.cache, i)) |
| 366 | cpumask_set_cpu(i, mask); |
| 367 | atomic_set(&info.cpuleft, cpumask_weight(mask)); |
| 368 | if (atomic_read(&info.cpuleft) == 0) |
| 369 | goto done; |
| 370 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | init_completion(&info.completion); |
| 372 | |
| 373 | local_bh_disable(); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 374 | self = cpumask_test_and_clear_cpu(smp_processor_id(), mask); |
| 375 | on_each_cpu_mask(mask, flow_cache_flush_per_cpu, &info, 0); |
| 376 | if (self) |
| 377 | flow_cache_flush_tasklet((unsigned long)&info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | local_bh_enable(); |
| 379 | |
| 380 | wait_for_completion(&info.completion); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 381 | |
| 382 | done: |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 383 | mutex_unlock(&net->xfrm.flow_flush_sem); |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 384 | put_online_cpus(); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 385 | free_cpumask_var(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 388 | static void flow_cache_flush_task(struct work_struct *work) |
| 389 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 390 | struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm, |
Miroslav Urbanek | 233c96f | 2015-02-05 16:36:50 +0100 | [diff] [blame] | 391 | flow_cache_flush_work); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 392 | struct net *net = container_of(xfrm, struct net, xfrm); |
| 393 | |
| 394 | flow_cache_flush(net); |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 395 | } |
| 396 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 397 | void flow_cache_flush_deferred(struct net *net) |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 398 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 399 | schedule_work(&net->xfrm.flow_cache_flush_work); |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 400 | } |
| 401 | |
Paul Gortmaker | 013dbb3 | 2013-06-19 14:32:33 -0400 | [diff] [blame] | 402 | static int flow_cache_cpu_prepare(struct flow_cache *fc, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | { |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 404 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu); |
| 405 | size_t sz = sizeof(struct hlist_head) * flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 407 | if (!fcp->hash_table) { |
| 408 | fcp->hash_table = kzalloc_node(sz, GFP_KERNEL, cpu_to_node(cpu)); |
| 409 | if (!fcp->hash_table) { |
| 410 | pr_err("NET: failed to allocate flow cache sz %zu\n", sz); |
| 411 | return -ENOMEM; |
| 412 | } |
| 413 | fcp->hash_rnd_recalc = 1; |
| 414 | fcp->hash_count = 0; |
| 415 | tasklet_init(&fcp->flush_tasklet, flow_cache_flush_tasklet, 0); |
| 416 | } |
| 417 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Paul Gortmaker | 013dbb3 | 2013-06-19 14:32:33 -0400 | [diff] [blame] | 420 | static int flow_cache_cpu(struct notifier_block *nfb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | unsigned long action, |
| 422 | void *hcpu) |
| 423 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 424 | struct flow_cache *fc = container_of(nfb, struct flow_cache, |
| 425 | hotcpu_notifier); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 426 | int res, cpu = (unsigned long) hcpu; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 427 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu); |
| 428 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 429 | switch (action) { |
| 430 | case CPU_UP_PREPARE: |
| 431 | case CPU_UP_PREPARE_FROZEN: |
| 432 | res = flow_cache_cpu_prepare(fc, cpu); |
| 433 | if (res) |
| 434 | return notifier_from_errno(res); |
| 435 | break; |
| 436 | case CPU_DEAD: |
| 437 | case CPU_DEAD_FROZEN: |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 438 | __flow_cache_shrink(fc, fcp, 0); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 439 | break; |
| 440 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | return NOTIFY_OK; |
| 442 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 444 | int flow_cache_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { |
| 446 | int i; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 447 | struct flow_cache *fc = &net->xfrm.flow_cache_global; |
| 448 | |
Eric Dumazet | d32d9bb | 2014-03-10 07:09:07 -0700 | [diff] [blame] | 449 | if (!flow_cachep) |
| 450 | flow_cachep = kmem_cache_create("flow_cache", |
| 451 | sizeof(struct flow_cache_entry), |
| 452 | 0, SLAB_PANIC, NULL); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 453 | spin_lock_init(&net->xfrm.flow_cache_gc_lock); |
| 454 | INIT_LIST_HEAD(&net->xfrm.flow_cache_gc_list); |
| 455 | INIT_WORK(&net->xfrm.flow_cache_gc_work, flow_cache_gc_task); |
| 456 | INIT_WORK(&net->xfrm.flow_cache_flush_work, flow_cache_flush_task); |
| 457 | mutex_init(&net->xfrm.flow_flush_sem); |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 458 | atomic_set(&net->xfrm.flow_cache_gc_count, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 460 | fc->hash_shift = 10; |
| 461 | fc->low_watermark = 2 * flow_cache_hash_size(fc); |
| 462 | fc->high_watermark = 4 * flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 464 | fc->percpu = alloc_percpu(struct flow_cache_percpu); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 465 | if (!fc->percpu) |
| 466 | return -ENOMEM; |
| 467 | |
Srivatsa S. Bhat | e30a293 | 2014-03-11 02:12:51 +0530 | [diff] [blame] | 468 | cpu_notifier_register_begin(); |
| 469 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 470 | for_each_online_cpu(i) { |
| 471 | if (flow_cache_cpu_prepare(fc, i)) |
huajun li | 6ccc3ab | 2011-09-27 22:51:39 +0000 | [diff] [blame] | 472 | goto err; |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 473 | } |
| 474 | fc->hotcpu_notifier = (struct notifier_block){ |
| 475 | .notifier_call = flow_cache_cpu, |
| 476 | }; |
Srivatsa S. Bhat | e30a293 | 2014-03-11 02:12:51 +0530 | [diff] [blame] | 477 | __register_hotcpu_notifier(&fc->hotcpu_notifier); |
| 478 | |
| 479 | cpu_notifier_register_done(); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 480 | |
| 481 | setup_timer(&fc->rnd_timer, flow_cache_new_hashrnd, |
| 482 | (unsigned long) fc); |
| 483 | fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD; |
| 484 | add_timer(&fc->rnd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | return 0; |
huajun li | 6ccc3ab | 2011-09-27 22:51:39 +0000 | [diff] [blame] | 487 | |
| 488 | err: |
| 489 | for_each_possible_cpu(i) { |
| 490 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, i); |
| 491 | kfree(fcp->hash_table); |
| 492 | fcp->hash_table = NULL; |
| 493 | } |
| 494 | |
Srivatsa S. Bhat | e30a293 | 2014-03-11 02:12:51 +0530 | [diff] [blame] | 495 | cpu_notifier_register_done(); |
| 496 | |
huajun li | 6ccc3ab | 2011-09-27 22:51:39 +0000 | [diff] [blame] | 497 | free_percpu(fc->percpu); |
| 498 | fc->percpu = NULL; |
| 499 | |
| 500 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | } |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 502 | EXPORT_SYMBOL(flow_cache_init); |
Steffen Klassert | 4a93f50 | 2014-03-12 09:43:17 +0100 | [diff] [blame] | 503 | |
| 504 | void flow_cache_fini(struct net *net) |
| 505 | { |
| 506 | int i; |
| 507 | struct flow_cache *fc = &net->xfrm.flow_cache_global; |
| 508 | |
| 509 | del_timer_sync(&fc->rnd_timer); |
| 510 | unregister_hotcpu_notifier(&fc->hotcpu_notifier); |
| 511 | |
| 512 | for_each_possible_cpu(i) { |
| 513 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, i); |
| 514 | kfree(fcp->hash_table); |
| 515 | fcp->hash_table = NULL; |
| 516 | } |
| 517 | |
| 518 | free_percpu(fc->percpu); |
| 519 | fc->percpu = NULL; |
| 520 | } |
| 521 | EXPORT_SYMBOL(flow_cache_fini); |