blob: 18e8893d4be59905ba1053fffea7cc16d0e054af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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 Ven4a3e2f72006-03-20 22:33:17 -080023#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <net/flow.h>
Arun Sharma600634972011-07-26 16:09:06 -070025#include <linux/atomic.h>
Trent Jaegerdf718372005-12-13 23:12:27 -080026#include <linux/security.h>
Fan Duca925cf2014-01-18 09:55:27 +080027#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29struct flow_cache_entry {
Timo Teräs8e4795602010-04-07 00:30:07 +000030 union {
31 struct hlist_node hlist;
32 struct list_head gc_list;
33 } u;
dpward0542b692011-08-31 06:05:27 +000034 struct net *net;
Timo Teräsfe1a5f02010-04-07 00:30:04 +000035 u16 family;
36 u8 dir;
37 u32 genid;
38 struct flowi key;
39 struct flow_cache_object *object;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042struct flow_flush_info {
Timo Teräsfe1a5f02010-04-07 00:30:04 +000043 struct flow_cache *cache;
Timo Teräsd7997fe2010-03-31 00:17:06 +000044 atomic_t cpuleft;
45 struct completion completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Eric Dumazetd32d9bb2014-03-10 07:09:07 -070048static struct kmem_cache *flow_cachep __read_mostly;
49
Timo Teräsd7997fe2010-03-31 00:17:06 +000050#define flow_cache_hash_size(cache) (1 << (cache)->hash_shift)
51#define FLOW_HASH_RND_PERIOD (10 * 60 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53static void flow_cache_new_hashrnd(unsigned long arg)
54{
Timo Teräsd7997fe2010-03-31 00:17:06 +000055 struct flow_cache *fc = (void *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int i;
57
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070058 for_each_possible_cpu(i)
Timo Teräsd7997fe2010-03-31 00:17:06 +000059 per_cpu_ptr(fc->percpu, i)->hash_rnd_recalc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Timo Teräsd7997fe2010-03-31 00:17:06 +000061 fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD;
62 add_timer(&fc->rnd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Fan Duca925cf2014-01-18 09:55:27 +080065static int flow_entry_valid(struct flow_cache_entry *fle,
66 struct netns_xfrm *xfrm)
Timo Teräsfe1a5f02010-04-07 00:30:04 +000067{
Fan Duca925cf2014-01-18 09:55:27 +080068 if (atomic_read(&xfrm->flow_cache_genid) != fle->genid)
Timo Teräsfe1a5f02010-04-07 00:30:04 +000069 return 0;
70 if (fle->object && !fle->object->ops->check(fle->object))
71 return 0;
72 return 1;
73}
74
Fan Duca925cf2014-01-18 09:55:27 +080075static void flow_entry_kill(struct flow_cache_entry *fle,
76 struct netns_xfrm *xfrm)
James Morris134b0fc2006-10-05 15:42:27 -050077{
78 if (fle->object)
Timo Teräsfe1a5f02010-04-07 00:30:04 +000079 fle->object->ops->delete(fle->object);
Eric Dumazetd32d9bb2014-03-10 07:09:07 -070080 kmem_cache_free(flow_cachep, fle);
Timo Teräs8e4795602010-04-07 00:30:07 +000081}
82
83static void flow_cache_gc_task(struct work_struct *work)
84{
85 struct list_head gc_list;
86 struct flow_cache_entry *fce, *n;
Fan Duca925cf2014-01-18 09:55:27 +080087 struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm,
88 flow_cache_gc_work);
Timo Teräs8e4795602010-04-07 00:30:07 +000089
90 INIT_LIST_HEAD(&gc_list);
Fan Duca925cf2014-01-18 09:55:27 +080091 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äs8e4795602010-04-07 00:30:07 +000094
Steffen Klassert6ad31222016-02-22 10:40:07 +010095 list_for_each_entry_safe(fce, n, &gc_list, u.gc_list) {
Fan Duca925cf2014-01-18 09:55:27 +080096 flow_entry_kill(fce, xfrm);
Steffen Klassert6ad31222016-02-22 10:40:07 +010097 atomic_dec(&xfrm->flow_cache_gc_count);
Steffen Klassert6ad31222016-02-22 10:40:07 +010098 }
Timo Teräs8e4795602010-04-07 00:30:07 +000099}
Timo Teräs8e4795602010-04-07 00:30:07 +0000100
101static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp,
Fan Duca925cf2014-01-18 09:55:27 +0800102 int deleted, struct list_head *gc_list,
103 struct netns_xfrm *xfrm)
Timo Teräs8e4795602010-04-07 00:30:07 +0000104{
105 if (deleted) {
Steffen Klassert6ad31222016-02-22 10:40:07 +0100106 atomic_add(deleted, &xfrm->flow_cache_gc_count);
Timo Teräs8e4795602010-04-07 00:30:07 +0000107 fcp->hash_count -= deleted;
Fan Duca925cf2014-01-18 09:55:27 +0800108 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äs8e4795602010-04-07 00:30:07 +0000112 }
James Morris134b0fc2006-10-05 15:42:27 -0500113}
114
Timo Teräsd7997fe2010-03-31 00:17:06 +0000115static void __flow_cache_shrink(struct flow_cache *fc,
116 struct flow_cache_percpu *fcp,
117 int shrink_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Timo Teräs8e4795602010-04-07 00:30:07 +0000119 struct flow_cache_entry *fle;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800120 struct hlist_node *tmp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000121 LIST_HEAD(gc_list);
122 int i, deleted = 0;
Fan Duca925cf2014-01-18 09:55:27 +0800123 struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm,
124 flow_cache_global);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Timo Teräsd7997fe2010-03-31 00:17:06 +0000126 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000127 int saved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Sasha Levinb67bfe02013-02-27 17:06:00 -0800129 hlist_for_each_entry_safe(fle, tmp,
Timo Teräs8e4795602010-04-07 00:30:07 +0000130 &fcp->hash_table[i], u.hlist) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000131 if (saved < shrink_to &&
Fan Duca925cf2014-01-18 09:55:27 +0800132 flow_entry_valid(fle, xfrm)) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000133 saved++;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000134 } else {
Timo Teräs8e4795602010-04-07 00:30:07 +0000135 deleted++;
136 hlist_del(&fle->u.hlist);
137 list_add_tail(&fle->u.gc_list, &gc_list);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140 }
Timo Teräs8e4795602010-04-07 00:30:07 +0000141
Fan Duca925cf2014-01-18 09:55:27 +0800142 flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Timo Teräsd7997fe2010-03-31 00:17:06 +0000145static void flow_cache_shrink(struct flow_cache *fc,
146 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000148 int shrink_to = fc->low_watermark / flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Timo Teräsd7997fe2010-03-31 00:17:06 +0000150 __flow_cache_shrink(fc, fcp, shrink_to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Timo Teräsd7997fe2010-03-31 00:17:06 +0000153static void flow_new_hash_rnd(struct flow_cache *fc,
154 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000156 get_random_bytes(&fcp->hash_rnd, sizeof(u32));
157 fcp->hash_rnd_recalc = 0;
158 __flow_cache_shrink(fc, fcp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Timo Teräsd7997fe2010-03-31 00:17:06 +0000161static u32 flow_hash_code(struct flow_cache *fc,
162 struct flow_cache_percpu *fcp,
dpwardaa1c3662011-09-05 16:47:24 +0000163 const struct flowi *key,
164 size_t keysize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
David S. Millerdee9f4b2011-02-22 18:44:31 -0800166 const u32 *k = (const u32 *) key;
dpwardaa1c3662011-09-05 16:47:24 +0000167 const u32 length = keysize * sizeof(flow_compare_t) / sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
dpwardaa1c3662011-09-05 16:47:24 +0000169 return jhash2(k, length, fcp->hash_rnd)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000170 & (flow_cache_hash_size(fc) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/* I hear what you're saying, use memcmp. But memcmp cannot make
dpwardaa1c3662011-09-05 16:47:24 +0000174 * important assumptions that we can here, such as alignment.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
dpwardaa1c3662011-09-05 16:47:24 +0000176static int flow_key_compare(const struct flowi *key1, const struct flowi *key2,
177 size_t keysize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
David S. Millerdee9f4b2011-02-22 18:44:31 -0800179 const flow_compare_t *k1, *k1_lim, *k2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
David S. Millerdee9f4b2011-02-22 18:44:31 -0800181 k1 = (const flow_compare_t *) key1;
dpwardaa1c3662011-09-05 16:47:24 +0000182 k1_lim = k1 + keysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
David S. Millerdee9f4b2011-02-22 18:44:31 -0800184 k2 = (const flow_compare_t *) key2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 do {
187 if (*k1++ != *k2++)
188 return 1;
189 } while (k1 < k1_lim);
190
191 return 0;
192}
193
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000194struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -0800195flow_cache_lookup(struct net *net, const struct flowi *key, u16 family, u8 dir,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000196 flow_resolve_t resolver, void *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Fan Duca925cf2014-01-18 09:55:27 +0800198 struct flow_cache *fc = &net->xfrm.flow_cache_global;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000199 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000200 struct flow_cache_entry *fle, *tfle;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000201 struct flow_cache_object *flo;
dpwardaa1c3662011-09-05 16:47:24 +0000202 size_t keysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 local_bh_disable();
Eric Dumazet7a9b2d52010-06-24 00:52:37 +0000206 fcp = this_cpu_ptr(fc->percpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 fle = NULL;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000209 flo = NULL;
dpwardaa1c3662011-09-05 16:47:24 +0000210
211 keysize = flow_key_size(family);
212 if (!keysize)
213 goto nocache;
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 /* Packet really early in init? Making flow_cache_init a
216 * pre-smp initcall would solve this. --RR */
Timo Teräsd7997fe2010-03-31 00:17:06 +0000217 if (!fcp->hash_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 goto nocache;
219
Timo Teräsd7997fe2010-03-31 00:17:06 +0000220 if (fcp->hash_rnd_recalc)
221 flow_new_hash_rnd(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
dpwardaa1c3662011-09-05 16:47:24 +0000223 hash = flow_hash_code(fc, fcp, key, keysize);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800224 hlist_for_each_entry(tfle, &fcp->hash_table[hash], u.hlist) {
dpward0542b692011-08-31 06:05:27 +0000225 if (tfle->net == net &&
226 tfle->family == family &&
Timo Teräs8e4795602010-04-07 00:30:07 +0000227 tfle->dir == dir &&
dpwardaa1c3662011-09-05 16:47:24 +0000228 flow_key_compare(key, &tfle->key, keysize) == 0) {
Timo Teräs8e4795602010-04-07 00:30:07 +0000229 fle = tfle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
Timo Teräs8e4795602010-04-07 00:30:07 +0000231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000234 if (unlikely(!fle)) {
Timo Teräsd7997fe2010-03-31 00:17:06 +0000235 if (fcp->hash_count > fc->high_watermark)
236 flow_cache_shrink(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Miroslav Urbanek6b226482016-11-21 15:48:21 +0100238 if (atomic_read(&net->xfrm.flow_cache_gc_count) >
239 2 * num_online_cpus() * fc->high_watermark) {
Steffen Klassert6ad31222016-02-22 10:40:07 +0100240 flo = ERR_PTR(-ENOBUFS);
241 goto ret_object;
242 }
243
Eric Dumazetd32d9bb2014-03-10 07:09:07 -0700244 fle = kmem_cache_alloc(flow_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (fle) {
dpward0542b692011-08-31 06:05:27 +0000246 fle->net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 fle->family = family;
248 fle->dir = dir;
dpwardaa1c3662011-09-05 16:47:24 +0000249 memcpy(&fle->key, key, keysize * sizeof(flow_compare_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 fle->object = NULL;
Timo Teräs8e4795602010-04-07 00:30:07 +0000251 hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000252 fcp->hash_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
Fan Duca925cf2014-01-18 09:55:27 +0800254 } else if (likely(fle->genid == atomic_read(&net->xfrm.flow_cache_genid))) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000255 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 Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266
267nocache:
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000268 flo = NULL;
269 if (fle) {
270 flo = fle->object;
271 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000273 flo = resolver(net, key, family, dir, flo, ctx);
274 if (fle) {
Fan Duca925cf2014-01-18 09:55:27 +0800275 fle->genid = atomic_read(&net->xfrm.flow_cache_genid);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000276 if (!IS_ERR(flo))
277 fle->object = flo;
278 else
279 fle->genid--;
280 } else {
YOSHIFUJI Hideaki / 吉藤英明8fbcec22013-01-22 06:32:44 +0000281 if (!IS_ERR_OR_NULL(flo))
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000282 flo->ops->delete(flo);
283 }
284ret_object:
285 local_bh_enable();
286 return flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000288EXPORT_SYMBOL(flow_cache_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290static void flow_cache_flush_tasklet(unsigned long data)
291{
292 struct flow_flush_info *info = (void *)data;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000293 struct flow_cache *fc = info->cache;
294 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000295 struct flow_cache_entry *fle;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800296 struct hlist_node *tmp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000297 LIST_HEAD(gc_list);
298 int i, deleted = 0;
Fan Duca925cf2014-01-18 09:55:27 +0800299 struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm,
300 flow_cache_global);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Eric Dumazet7a9b2d52010-06-24 00:52:37 +0000302 fcp = this_cpu_ptr(fc->percpu);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000303 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800304 hlist_for_each_entry_safe(fle, tmp,
Timo Teräs8e4795602010-04-07 00:30:07 +0000305 &fcp->hash_table[i], u.hlist) {
Fan Duca925cf2014-01-18 09:55:27 +0800306 if (flow_entry_valid(fle, xfrm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 continue;
308
Timo Teräs8e4795602010-04-07 00:30:07 +0000309 deleted++;
310 hlist_del(&fle->u.hlist);
311 list_add_tail(&fle->u.gc_list, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313 }
314
Fan Duca925cf2014-01-18 09:55:27 +0800315 flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm);
Timo Teräs8e4795602010-04-07 00:30:07 +0000316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (atomic_dec_and_test(&info->cpuleft))
318 complete(&info->completion);
319}
320
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000321/*
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 */
327static int flow_cache_percpu_empty(struct flow_cache *fc, int cpu)
328{
329 struct flow_cache_percpu *fcp;
330 int i;
331
Li RongQing27815032013-03-28 02:24:11 +0000332 fcp = per_cpu_ptr(fc->percpu, cpu);
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000333 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 Torvalds1da177e2005-04-16 15:20:36 -0700339static void flow_cache_flush_per_cpu(void *data)
340{
341 struct flow_flush_info *info = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct tasklet_struct *tasklet;
343
Li RongQing50eab052013-03-27 23:42:41 +0000344 tasklet = &this_cpu_ptr(info->cache->percpu)->flush_tasklet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 tasklet->data = (unsigned long)info;
346 tasklet_schedule(tasklet);
347}
348
Fan Duca925cf2014-01-18 09:55:27 +0800349void flow_cache_flush(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 struct flow_flush_info info;
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000352 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 Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /* Don't want cpus going down or up during this. */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100361 get_online_cpus();
Fan Duca925cf2014-01-18 09:55:27 +0800362 mutex_lock(&net->xfrm.flow_flush_sem);
363 info.cache = &net->xfrm.flow_cache_global;
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000364 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 Torvalds1da177e2005-04-16 15:20:36 -0700371 init_completion(&info.completion);
372
373 local_bh_disable();
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000374 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 Torvalds1da177e2005-04-16 15:20:36 -0700378 local_bh_enable();
379
380 wait_for_completion(&info.completion);
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000381
382done:
Fan Duca925cf2014-01-18 09:55:27 +0800383 mutex_unlock(&net->xfrm.flow_flush_sem);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100384 put_online_cpus();
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000385 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500388static void flow_cache_flush_task(struct work_struct *work)
389{
Fan Duca925cf2014-01-18 09:55:27 +0800390 struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm,
Miroslav Urbanek233c96f2015-02-05 16:36:50 +0100391 flow_cache_flush_work);
Fan Duca925cf2014-01-18 09:55:27 +0800392 struct net *net = container_of(xfrm, struct net, xfrm);
393
394 flow_cache_flush(net);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500395}
396
Fan Duca925cf2014-01-18 09:55:27 +0800397void flow_cache_flush_deferred(struct net *net)
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500398{
Fan Duca925cf2014-01-18 09:55:27 +0800399 schedule_work(&net->xfrm.flow_cache_flush_work);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500400}
401
Paul Gortmaker013dbb32013-06-19 14:32:33 -0400402static int flow_cache_cpu_prepare(struct flow_cache *fc, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000404 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 Torvalds1da177e2005-04-16 15:20:36 -0700406
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000407 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 Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Paul Gortmaker013dbb32013-06-19 14:32:33 -0400420static int flow_cache_cpu(struct notifier_block *nfb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 unsigned long action,
422 void *hcpu)
423{
Fan Duca925cf2014-01-18 09:55:27 +0800424 struct flow_cache *fc = container_of(nfb, struct flow_cache,
425 hotcpu_notifier);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000426 int res, cpu = (unsigned long) hcpu;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000427 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu);
428
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000429 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äsd7997fe2010-03-31 00:17:06 +0000438 __flow_cache_shrink(fc, fcp, 0);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000439 break;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return NOTIFY_OK;
442}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Fan Duca925cf2014-01-18 09:55:27 +0800444int flow_cache_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 int i;
Fan Duca925cf2014-01-18 09:55:27 +0800447 struct flow_cache *fc = &net->xfrm.flow_cache_global;
448
Eric Dumazetd32d9bb2014-03-10 07:09:07 -0700449 if (!flow_cachep)
450 flow_cachep = kmem_cache_create("flow_cache",
451 sizeof(struct flow_cache_entry),
452 0, SLAB_PANIC, NULL);
Fan Duca925cf2014-01-18 09:55:27 +0800453 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 Klassert6ad31222016-02-22 10:40:07 +0100458 atomic_set(&net->xfrm.flow_cache_gc_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Timo Teräsd7997fe2010-03-31 00:17:06 +0000460 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 Torvalds1da177e2005-04-16 15:20:36 -0700463
Timo Teräsd7997fe2010-03-31 00:17:06 +0000464 fc->percpu = alloc_percpu(struct flow_cache_percpu);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000465 if (!fc->percpu)
466 return -ENOMEM;
467
Srivatsa S. Bhate30a2932014-03-11 02:12:51 +0530468 cpu_notifier_register_begin();
469
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000470 for_each_online_cpu(i) {
471 if (flow_cache_cpu_prepare(fc, i))
huajun li6ccc3ab2011-09-27 22:51:39 +0000472 goto err;
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000473 }
474 fc->hotcpu_notifier = (struct notifier_block){
475 .notifier_call = flow_cache_cpu,
476 };
Srivatsa S. Bhate30a2932014-03-11 02:12:51 +0530477 __register_hotcpu_notifier(&fc->hotcpu_notifier);
478
479 cpu_notifier_register_done();
Timo Teräsd7997fe2010-03-31 00:17:06 +0000480
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 Torvalds1da177e2005-04-16 15:20:36 -0700485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return 0;
huajun li6ccc3ab2011-09-27 22:51:39 +0000487
488err:
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. Bhate30a2932014-03-11 02:12:51 +0530495 cpu_notifier_register_done();
496
huajun li6ccc3ab2011-09-27 22:51:39 +0000497 free_percpu(fc->percpu);
498 fc->percpu = NULL;
499
500 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
Fan Duca925cf2014-01-18 09:55:27 +0800502EXPORT_SYMBOL(flow_cache_init);
Steffen Klassert4a93f502014-03-12 09:43:17 +0100503
504void 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}
521EXPORT_SYMBOL(flow_cache_fini);