blob: 3937b1b68d5bc7ad50691716ac1612332a5dc997 [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);
98 WARN_ON(atomic_read(&xfrm->flow_cache_gc_count) < 0);
99 }
Timo Teräs8e4795602010-04-07 00:30:07 +0000100}
Timo Teräs8e4795602010-04-07 00:30:07 +0000101
102static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp,
Fan Duca925cf2014-01-18 09:55:27 +0800103 int deleted, struct list_head *gc_list,
104 struct netns_xfrm *xfrm)
Timo Teräs8e4795602010-04-07 00:30:07 +0000105{
106 if (deleted) {
Steffen Klassert6ad31222016-02-22 10:40:07 +0100107 atomic_add(deleted, &xfrm->flow_cache_gc_count);
Timo Teräs8e4795602010-04-07 00:30:07 +0000108 fcp->hash_count -= deleted;
Fan Duca925cf2014-01-18 09:55:27 +0800109 spin_lock_bh(&xfrm->flow_cache_gc_lock);
110 list_splice_tail(gc_list, &xfrm->flow_cache_gc_list);
111 spin_unlock_bh(&xfrm->flow_cache_gc_lock);
112 schedule_work(&xfrm->flow_cache_gc_work);
Timo Teräs8e4795602010-04-07 00:30:07 +0000113 }
James Morris134b0fc2006-10-05 15:42:27 -0500114}
115
Timo Teräsd7997fe2010-03-31 00:17:06 +0000116static void __flow_cache_shrink(struct flow_cache *fc,
117 struct flow_cache_percpu *fcp,
118 int shrink_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Timo Teräs8e4795602010-04-07 00:30:07 +0000120 struct flow_cache_entry *fle;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800121 struct hlist_node *tmp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000122 LIST_HEAD(gc_list);
123 int i, deleted = 0;
Fan Duca925cf2014-01-18 09:55:27 +0800124 struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm,
125 flow_cache_global);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Timo Teräsd7997fe2010-03-31 00:17:06 +0000127 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000128 int saved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Sasha Levinb67bfe02013-02-27 17:06:00 -0800130 hlist_for_each_entry_safe(fle, tmp,
Timo Teräs8e4795602010-04-07 00:30:07 +0000131 &fcp->hash_table[i], u.hlist) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000132 if (saved < shrink_to &&
Fan Duca925cf2014-01-18 09:55:27 +0800133 flow_entry_valid(fle, xfrm)) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000134 saved++;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000135 } else {
Timo Teräs8e4795602010-04-07 00:30:07 +0000136 deleted++;
137 hlist_del(&fle->u.hlist);
138 list_add_tail(&fle->u.gc_list, &gc_list);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141 }
Timo Teräs8e4795602010-04-07 00:30:07 +0000142
Fan Duca925cf2014-01-18 09:55:27 +0800143 flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Timo Teräsd7997fe2010-03-31 00:17:06 +0000146static void flow_cache_shrink(struct flow_cache *fc,
147 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000149 int shrink_to = fc->low_watermark / flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Timo Teräsd7997fe2010-03-31 00:17:06 +0000151 __flow_cache_shrink(fc, fcp, shrink_to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152}
153
Timo Teräsd7997fe2010-03-31 00:17:06 +0000154static void flow_new_hash_rnd(struct flow_cache *fc,
155 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000157 get_random_bytes(&fcp->hash_rnd, sizeof(u32));
158 fcp->hash_rnd_recalc = 0;
159 __flow_cache_shrink(fc, fcp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Timo Teräsd7997fe2010-03-31 00:17:06 +0000162static u32 flow_hash_code(struct flow_cache *fc,
163 struct flow_cache_percpu *fcp,
dpwardaa1c3662011-09-05 16:47:24 +0000164 const struct flowi *key,
165 size_t keysize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
David S. Millerdee9f4b2011-02-22 18:44:31 -0800167 const u32 *k = (const u32 *) key;
dpwardaa1c3662011-09-05 16:47:24 +0000168 const u32 length = keysize * sizeof(flow_compare_t) / sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
dpwardaa1c3662011-09-05 16:47:24 +0000170 return jhash2(k, length, fcp->hash_rnd)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000171 & (flow_cache_hash_size(fc) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/* I hear what you're saying, use memcmp. But memcmp cannot make
dpwardaa1c3662011-09-05 16:47:24 +0000175 * important assumptions that we can here, such as alignment.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 */
dpwardaa1c3662011-09-05 16:47:24 +0000177static int flow_key_compare(const struct flowi *key1, const struct flowi *key2,
178 size_t keysize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
David S. Millerdee9f4b2011-02-22 18:44:31 -0800180 const flow_compare_t *k1, *k1_lim, *k2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
David S. Millerdee9f4b2011-02-22 18:44:31 -0800182 k1 = (const flow_compare_t *) key1;
dpwardaa1c3662011-09-05 16:47:24 +0000183 k1_lim = k1 + keysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
David S. Millerdee9f4b2011-02-22 18:44:31 -0800185 k2 = (const flow_compare_t *) key2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 do {
188 if (*k1++ != *k2++)
189 return 1;
190 } while (k1 < k1_lim);
191
192 return 0;
193}
194
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000195struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -0800196flow_cache_lookup(struct net *net, const struct flowi *key, u16 family, u8 dir,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000197 flow_resolve_t resolver, void *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Fan Duca925cf2014-01-18 09:55:27 +0800199 struct flow_cache *fc = &net->xfrm.flow_cache_global;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000200 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000201 struct flow_cache_entry *fle, *tfle;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000202 struct flow_cache_object *flo;
dpwardaa1c3662011-09-05 16:47:24 +0000203 size_t keysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 local_bh_disable();
Eric Dumazet7a9b2d52010-06-24 00:52:37 +0000207 fcp = this_cpu_ptr(fc->percpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 fle = NULL;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000210 flo = NULL;
dpwardaa1c3662011-09-05 16:47:24 +0000211
212 keysize = flow_key_size(family);
213 if (!keysize)
214 goto nocache;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /* Packet really early in init? Making flow_cache_init a
217 * pre-smp initcall would solve this. --RR */
Timo Teräsd7997fe2010-03-31 00:17:06 +0000218 if (!fcp->hash_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 goto nocache;
220
Timo Teräsd7997fe2010-03-31 00:17:06 +0000221 if (fcp->hash_rnd_recalc)
222 flow_new_hash_rnd(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
dpwardaa1c3662011-09-05 16:47:24 +0000224 hash = flow_hash_code(fc, fcp, key, keysize);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800225 hlist_for_each_entry(tfle, &fcp->hash_table[hash], u.hlist) {
dpward0542b692011-08-31 06:05:27 +0000226 if (tfle->net == net &&
227 tfle->family == family &&
Timo Teräs8e4795602010-04-07 00:30:07 +0000228 tfle->dir == dir &&
dpwardaa1c3662011-09-05 16:47:24 +0000229 flow_key_compare(key, &tfle->key, keysize) == 0) {
Timo Teräs8e4795602010-04-07 00:30:07 +0000230 fle = tfle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
Timo Teräs8e4795602010-04-07 00:30:07 +0000232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000235 if (unlikely(!fle)) {
Timo Teräsd7997fe2010-03-31 00:17:06 +0000236 if (fcp->hash_count > fc->high_watermark)
237 flow_cache_shrink(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Steffen Klassert6ad31222016-02-22 10:40:07 +0100239 if (fcp->hash_count > 2 * fc->high_watermark ||
240 atomic_read(&net->xfrm.flow_cache_gc_count) > fc->high_watermark) {
241 atomic_inc(&net->xfrm.flow_cache_genid);
242 flo = ERR_PTR(-ENOBUFS);
243 goto ret_object;
244 }
245
Eric Dumazetd32d9bb2014-03-10 07:09:07 -0700246 fle = kmem_cache_alloc(flow_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (fle) {
dpward0542b692011-08-31 06:05:27 +0000248 fle->net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 fle->family = family;
250 fle->dir = dir;
dpwardaa1c3662011-09-05 16:47:24 +0000251 memcpy(&fle->key, key, keysize * sizeof(flow_compare_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 fle->object = NULL;
Timo Teräs8e4795602010-04-07 00:30:07 +0000253 hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000254 fcp->hash_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
Fan Duca925cf2014-01-18 09:55:27 +0800256 } else if (likely(fle->genid == atomic_read(&net->xfrm.flow_cache_genid))) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000257 flo = fle->object;
258 if (!flo)
259 goto ret_object;
260 flo = flo->ops->get(flo);
261 if (flo)
262 goto ret_object;
263 } else if (fle->object) {
264 flo = fle->object;
265 flo->ops->delete(flo);
266 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268
269nocache:
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000270 flo = NULL;
271 if (fle) {
272 flo = fle->object;
273 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 }
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000275 flo = resolver(net, key, family, dir, flo, ctx);
276 if (fle) {
Fan Duca925cf2014-01-18 09:55:27 +0800277 fle->genid = atomic_read(&net->xfrm.flow_cache_genid);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000278 if (!IS_ERR(flo))
279 fle->object = flo;
280 else
281 fle->genid--;
282 } else {
YOSHIFUJI Hideaki / 吉藤英明8fbcec22013-01-22 06:32:44 +0000283 if (!IS_ERR_OR_NULL(flo))
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000284 flo->ops->delete(flo);
285 }
286ret_object:
287 local_bh_enable();
288 return flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000290EXPORT_SYMBOL(flow_cache_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292static void flow_cache_flush_tasklet(unsigned long data)
293{
294 struct flow_flush_info *info = (void *)data;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000295 struct flow_cache *fc = info->cache;
296 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000297 struct flow_cache_entry *fle;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800298 struct hlist_node *tmp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000299 LIST_HEAD(gc_list);
300 int i, deleted = 0;
Fan Duca925cf2014-01-18 09:55:27 +0800301 struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm,
302 flow_cache_global);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Eric Dumazet7a9b2d52010-06-24 00:52:37 +0000304 fcp = this_cpu_ptr(fc->percpu);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000305 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800306 hlist_for_each_entry_safe(fle, tmp,
Timo Teräs8e4795602010-04-07 00:30:07 +0000307 &fcp->hash_table[i], u.hlist) {
Fan Duca925cf2014-01-18 09:55:27 +0800308 if (flow_entry_valid(fle, xfrm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 continue;
310
Timo Teräs8e4795602010-04-07 00:30:07 +0000311 deleted++;
312 hlist_del(&fle->u.hlist);
313 list_add_tail(&fle->u.gc_list, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315 }
316
Fan Duca925cf2014-01-18 09:55:27 +0800317 flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm);
Timo Teräs8e4795602010-04-07 00:30:07 +0000318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (atomic_dec_and_test(&info->cpuleft))
320 complete(&info->completion);
321}
322
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000323/*
324 * Return whether a cpu needs flushing. Conservatively, we assume
325 * the presence of any entries means the core may require flushing,
326 * since the flow_cache_ops.check() function may assume it's running
327 * on the same core as the per-cpu cache component.
328 */
329static int flow_cache_percpu_empty(struct flow_cache *fc, int cpu)
330{
331 struct flow_cache_percpu *fcp;
332 int i;
333
Li RongQing27815032013-03-28 02:24:11 +0000334 fcp = per_cpu_ptr(fc->percpu, cpu);
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000335 for (i = 0; i < flow_cache_hash_size(fc); i++)
336 if (!hlist_empty(&fcp->hash_table[i]))
337 return 0;
338 return 1;
339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341static void flow_cache_flush_per_cpu(void *data)
342{
343 struct flow_flush_info *info = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 struct tasklet_struct *tasklet;
345
Li RongQing50eab052013-03-27 23:42:41 +0000346 tasklet = &this_cpu_ptr(info->cache->percpu)->flush_tasklet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 tasklet->data = (unsigned long)info;
348 tasklet_schedule(tasklet);
349}
350
Fan Duca925cf2014-01-18 09:55:27 +0800351void flow_cache_flush(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct flow_flush_info info;
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000354 cpumask_var_t mask;
355 int i, self;
356
357 /* Track which cpus need flushing to avoid disturbing all cores. */
358 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
359 return;
360 cpumask_clear(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 /* Don't want cpus going down or up during this. */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100363 get_online_cpus();
Fan Duca925cf2014-01-18 09:55:27 +0800364 mutex_lock(&net->xfrm.flow_flush_sem);
365 info.cache = &net->xfrm.flow_cache_global;
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000366 for_each_online_cpu(i)
367 if (!flow_cache_percpu_empty(info.cache, i))
368 cpumask_set_cpu(i, mask);
369 atomic_set(&info.cpuleft, cpumask_weight(mask));
370 if (atomic_read(&info.cpuleft) == 0)
371 goto done;
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 init_completion(&info.completion);
374
375 local_bh_disable();
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000376 self = cpumask_test_and_clear_cpu(smp_processor_id(), mask);
377 on_each_cpu_mask(mask, flow_cache_flush_per_cpu, &info, 0);
378 if (self)
379 flow_cache_flush_tasklet((unsigned long)&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 local_bh_enable();
381
382 wait_for_completion(&info.completion);
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000383
384done:
Fan Duca925cf2014-01-18 09:55:27 +0800385 mutex_unlock(&net->xfrm.flow_flush_sem);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100386 put_online_cpus();
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000387 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500390static void flow_cache_flush_task(struct work_struct *work)
391{
Fan Duca925cf2014-01-18 09:55:27 +0800392 struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm,
Miroslav Urbanek233c96f2015-02-05 16:36:50 +0100393 flow_cache_flush_work);
Fan Duca925cf2014-01-18 09:55:27 +0800394 struct net *net = container_of(xfrm, struct net, xfrm);
395
396 flow_cache_flush(net);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500397}
398
Fan Duca925cf2014-01-18 09:55:27 +0800399void flow_cache_flush_deferred(struct net *net)
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500400{
Fan Duca925cf2014-01-18 09:55:27 +0800401 schedule_work(&net->xfrm.flow_cache_flush_work);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500402}
403
Paul Gortmaker013dbb32013-06-19 14:32:33 -0400404static int flow_cache_cpu_prepare(struct flow_cache *fc, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000406 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu);
407 size_t sz = sizeof(struct hlist_head) * flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000409 if (!fcp->hash_table) {
410 fcp->hash_table = kzalloc_node(sz, GFP_KERNEL, cpu_to_node(cpu));
411 if (!fcp->hash_table) {
412 pr_err("NET: failed to allocate flow cache sz %zu\n", sz);
413 return -ENOMEM;
414 }
415 fcp->hash_rnd_recalc = 1;
416 fcp->hash_count = 0;
417 tasklet_init(&fcp->flush_tasklet, flow_cache_flush_tasklet, 0);
418 }
419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Paul Gortmaker013dbb32013-06-19 14:32:33 -0400422static int flow_cache_cpu(struct notifier_block *nfb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 unsigned long action,
424 void *hcpu)
425{
Fan Duca925cf2014-01-18 09:55:27 +0800426 struct flow_cache *fc = container_of(nfb, struct flow_cache,
427 hotcpu_notifier);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000428 int res, cpu = (unsigned long) hcpu;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000429 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu);
430
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000431 switch (action) {
432 case CPU_UP_PREPARE:
433 case CPU_UP_PREPARE_FROZEN:
434 res = flow_cache_cpu_prepare(fc, cpu);
435 if (res)
436 return notifier_from_errno(res);
437 break;
438 case CPU_DEAD:
439 case CPU_DEAD_FROZEN:
Timo Teräsd7997fe2010-03-31 00:17:06 +0000440 __flow_cache_shrink(fc, fcp, 0);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000441 break;
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return NOTIFY_OK;
444}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Fan Duca925cf2014-01-18 09:55:27 +0800446int flow_cache_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 int i;
Fan Duca925cf2014-01-18 09:55:27 +0800449 struct flow_cache *fc = &net->xfrm.flow_cache_global;
450
Eric Dumazetd32d9bb2014-03-10 07:09:07 -0700451 if (!flow_cachep)
452 flow_cachep = kmem_cache_create("flow_cache",
453 sizeof(struct flow_cache_entry),
454 0, SLAB_PANIC, NULL);
Fan Duca925cf2014-01-18 09:55:27 +0800455 spin_lock_init(&net->xfrm.flow_cache_gc_lock);
456 INIT_LIST_HEAD(&net->xfrm.flow_cache_gc_list);
457 INIT_WORK(&net->xfrm.flow_cache_gc_work, flow_cache_gc_task);
458 INIT_WORK(&net->xfrm.flow_cache_flush_work, flow_cache_flush_task);
459 mutex_init(&net->xfrm.flow_flush_sem);
Steffen Klassert6ad31222016-02-22 10:40:07 +0100460 atomic_set(&net->xfrm.flow_cache_gc_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Timo Teräsd7997fe2010-03-31 00:17:06 +0000462 fc->hash_shift = 10;
463 fc->low_watermark = 2 * flow_cache_hash_size(fc);
464 fc->high_watermark = 4 * flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Timo Teräsd7997fe2010-03-31 00:17:06 +0000466 fc->percpu = alloc_percpu(struct flow_cache_percpu);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000467 if (!fc->percpu)
468 return -ENOMEM;
469
Srivatsa S. Bhate30a2932014-03-11 02:12:51 +0530470 cpu_notifier_register_begin();
471
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000472 for_each_online_cpu(i) {
473 if (flow_cache_cpu_prepare(fc, i))
huajun li6ccc3ab2011-09-27 22:51:39 +0000474 goto err;
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000475 }
476 fc->hotcpu_notifier = (struct notifier_block){
477 .notifier_call = flow_cache_cpu,
478 };
Srivatsa S. Bhate30a2932014-03-11 02:12:51 +0530479 __register_hotcpu_notifier(&fc->hotcpu_notifier);
480
481 cpu_notifier_register_done();
Timo Teräsd7997fe2010-03-31 00:17:06 +0000482
483 setup_timer(&fc->rnd_timer, flow_cache_new_hashrnd,
484 (unsigned long) fc);
485 fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD;
486 add_timer(&fc->rnd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return 0;
huajun li6ccc3ab2011-09-27 22:51:39 +0000489
490err:
491 for_each_possible_cpu(i) {
492 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, i);
493 kfree(fcp->hash_table);
494 fcp->hash_table = NULL;
495 }
496
Srivatsa S. Bhate30a2932014-03-11 02:12:51 +0530497 cpu_notifier_register_done();
498
huajun li6ccc3ab2011-09-27 22:51:39 +0000499 free_percpu(fc->percpu);
500 fc->percpu = NULL;
501
502 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
Fan Duca925cf2014-01-18 09:55:27 +0800504EXPORT_SYMBOL(flow_cache_init);
Steffen Klassert4a93f502014-03-12 09:43:17 +0100505
506void flow_cache_fini(struct net *net)
507{
508 int i;
509 struct flow_cache *fc = &net->xfrm.flow_cache_global;
510
511 del_timer_sync(&fc->rnd_timer);
512 unregister_hotcpu_notifier(&fc->hotcpu_notifier);
513
514 for_each_possible_cpu(i) {
515 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, i);
516 kfree(fcp->hash_table);
517 fcp->hash_table = NULL;
518 }
519
520 free_percpu(fc->percpu);
521 fc->percpu = NULL;
522}
523EXPORT_SYMBOL(flow_cache_fini);