blob: 344a184011fd014e354de4304b127eeeb0ec0f5a [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
Timo Teräsd7997fe2010-03-31 00:17:06 +000048#define flow_cache_hash_size(cache) (1 << (cache)->hash_shift)
49#define FLOW_HASH_RND_PERIOD (10 * 60 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51static void flow_cache_new_hashrnd(unsigned long arg)
52{
Timo Teräsd7997fe2010-03-31 00:17:06 +000053 struct flow_cache *fc = (void *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 int i;
55
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070056 for_each_possible_cpu(i)
Timo Teräsd7997fe2010-03-31 00:17:06 +000057 per_cpu_ptr(fc->percpu, i)->hash_rnd_recalc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Timo Teräsd7997fe2010-03-31 00:17:06 +000059 fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD;
60 add_timer(&fc->rnd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Fan Duca925cf2014-01-18 09:55:27 +080063static int flow_entry_valid(struct flow_cache_entry *fle,
64 struct netns_xfrm *xfrm)
Timo Teräsfe1a5f02010-04-07 00:30:04 +000065{
Fan Duca925cf2014-01-18 09:55:27 +080066 if (atomic_read(&xfrm->flow_cache_genid) != fle->genid)
Timo Teräsfe1a5f02010-04-07 00:30:04 +000067 return 0;
68 if (fle->object && !fle->object->ops->check(fle->object))
69 return 0;
70 return 1;
71}
72
Fan Duca925cf2014-01-18 09:55:27 +080073static void flow_entry_kill(struct flow_cache_entry *fle,
74 struct netns_xfrm *xfrm)
James Morris134b0fc2006-10-05 15:42:27 -050075{
76 if (fle->object)
Timo Teräsfe1a5f02010-04-07 00:30:04 +000077 fle->object->ops->delete(fle->object);
Fan Duca925cf2014-01-18 09:55:27 +080078 kmem_cache_free(xfrm->flow_cachep, fle);
Timo Teräs8e4795602010-04-07 00:30:07 +000079}
80
81static void flow_cache_gc_task(struct work_struct *work)
82{
83 struct list_head gc_list;
84 struct flow_cache_entry *fce, *n;
Fan Duca925cf2014-01-18 09:55:27 +080085 struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm,
86 flow_cache_gc_work);
Timo Teräs8e4795602010-04-07 00:30:07 +000087
88 INIT_LIST_HEAD(&gc_list);
Fan Duca925cf2014-01-18 09:55:27 +080089 spin_lock_bh(&xfrm->flow_cache_gc_lock);
90 list_splice_tail_init(&xfrm->flow_cache_gc_list, &gc_list);
91 spin_unlock_bh(&xfrm->flow_cache_gc_lock);
Timo Teräs8e4795602010-04-07 00:30:07 +000092
93 list_for_each_entry_safe(fce, n, &gc_list, u.gc_list)
Fan Duca925cf2014-01-18 09:55:27 +080094 flow_entry_kill(fce, xfrm);
Timo Teräs8e4795602010-04-07 00:30:07 +000095}
Timo Teräs8e4795602010-04-07 00:30:07 +000096
97static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp,
Fan Duca925cf2014-01-18 09:55:27 +080098 int deleted, struct list_head *gc_list,
99 struct netns_xfrm *xfrm)
Timo Teräs8e4795602010-04-07 00:30:07 +0000100{
101 if (deleted) {
102 fcp->hash_count -= deleted;
Fan Duca925cf2014-01-18 09:55:27 +0800103 spin_lock_bh(&xfrm->flow_cache_gc_lock);
104 list_splice_tail(gc_list, &xfrm->flow_cache_gc_list);
105 spin_unlock_bh(&xfrm->flow_cache_gc_lock);
106 schedule_work(&xfrm->flow_cache_gc_work);
Timo Teräs8e4795602010-04-07 00:30:07 +0000107 }
James Morris134b0fc2006-10-05 15:42:27 -0500108}
109
Timo Teräsd7997fe2010-03-31 00:17:06 +0000110static void __flow_cache_shrink(struct flow_cache *fc,
111 struct flow_cache_percpu *fcp,
112 int shrink_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Timo Teräs8e4795602010-04-07 00:30:07 +0000114 struct flow_cache_entry *fle;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800115 struct hlist_node *tmp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000116 LIST_HEAD(gc_list);
117 int i, deleted = 0;
Fan Duca925cf2014-01-18 09:55:27 +0800118 struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm,
119 flow_cache_global);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Timo Teräsd7997fe2010-03-31 00:17:06 +0000121 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000122 int saved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Sasha Levinb67bfe02013-02-27 17:06:00 -0800124 hlist_for_each_entry_safe(fle, tmp,
Timo Teräs8e4795602010-04-07 00:30:07 +0000125 &fcp->hash_table[i], u.hlist) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000126 if (saved < shrink_to &&
Fan Duca925cf2014-01-18 09:55:27 +0800127 flow_entry_valid(fle, xfrm)) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000128 saved++;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000129 } else {
Timo Teräs8e4795602010-04-07 00:30:07 +0000130 deleted++;
131 hlist_del(&fle->u.hlist);
132 list_add_tail(&fle->u.gc_list, &gc_list);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135 }
Timo Teräs8e4795602010-04-07 00:30:07 +0000136
Fan Duca925cf2014-01-18 09:55:27 +0800137 flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
Timo Teräsd7997fe2010-03-31 00:17:06 +0000140static void flow_cache_shrink(struct flow_cache *fc,
141 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000143 int shrink_to = fc->low_watermark / flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Timo Teräsd7997fe2010-03-31 00:17:06 +0000145 __flow_cache_shrink(fc, fcp, shrink_to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Timo Teräsd7997fe2010-03-31 00:17:06 +0000148static void flow_new_hash_rnd(struct flow_cache *fc,
149 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000151 get_random_bytes(&fcp->hash_rnd, sizeof(u32));
152 fcp->hash_rnd_recalc = 0;
153 __flow_cache_shrink(fc, fcp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Timo Teräsd7997fe2010-03-31 00:17:06 +0000156static u32 flow_hash_code(struct flow_cache *fc,
157 struct flow_cache_percpu *fcp,
dpwardaa1c3662011-09-05 16:47:24 +0000158 const struct flowi *key,
159 size_t keysize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
David S. Millerdee9f4b2011-02-22 18:44:31 -0800161 const u32 *k = (const u32 *) key;
dpwardaa1c3662011-09-05 16:47:24 +0000162 const u32 length = keysize * sizeof(flow_compare_t) / sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
dpwardaa1c3662011-09-05 16:47:24 +0000164 return jhash2(k, length, fcp->hash_rnd)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000165 & (flow_cache_hash_size(fc) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/* I hear what you're saying, use memcmp. But memcmp cannot make
dpwardaa1c3662011-09-05 16:47:24 +0000169 * important assumptions that we can here, such as alignment.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
dpwardaa1c3662011-09-05 16:47:24 +0000171static int flow_key_compare(const struct flowi *key1, const struct flowi *key2,
172 size_t keysize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
David S. Millerdee9f4b2011-02-22 18:44:31 -0800174 const flow_compare_t *k1, *k1_lim, *k2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
David S. Millerdee9f4b2011-02-22 18:44:31 -0800176 k1 = (const flow_compare_t *) key1;
dpwardaa1c3662011-09-05 16:47:24 +0000177 k1_lim = k1 + keysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
David S. Millerdee9f4b2011-02-22 18:44:31 -0800179 k2 = (const flow_compare_t *) key2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 do {
182 if (*k1++ != *k2++)
183 return 1;
184 } while (k1 < k1_lim);
185
186 return 0;
187}
188
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000189struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -0800190flow_cache_lookup(struct net *net, const struct flowi *key, u16 family, u8 dir,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000191 flow_resolve_t resolver, void *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Fan Duca925cf2014-01-18 09:55:27 +0800193 struct flow_cache *fc = &net->xfrm.flow_cache_global;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000194 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000195 struct flow_cache_entry *fle, *tfle;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000196 struct flow_cache_object *flo;
dpwardaa1c3662011-09-05 16:47:24 +0000197 size_t keysize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 local_bh_disable();
Eric Dumazet7a9b2d52010-06-24 00:52:37 +0000201 fcp = this_cpu_ptr(fc->percpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 fle = NULL;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000204 flo = NULL;
dpwardaa1c3662011-09-05 16:47:24 +0000205
206 keysize = flow_key_size(family);
207 if (!keysize)
208 goto nocache;
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Packet really early in init? Making flow_cache_init a
211 * pre-smp initcall would solve this. --RR */
Timo Teräsd7997fe2010-03-31 00:17:06 +0000212 if (!fcp->hash_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 goto nocache;
214
Timo Teräsd7997fe2010-03-31 00:17:06 +0000215 if (fcp->hash_rnd_recalc)
216 flow_new_hash_rnd(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
dpwardaa1c3662011-09-05 16:47:24 +0000218 hash = flow_hash_code(fc, fcp, key, keysize);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800219 hlist_for_each_entry(tfle, &fcp->hash_table[hash], u.hlist) {
dpward0542b692011-08-31 06:05:27 +0000220 if (tfle->net == net &&
221 tfle->family == family &&
Timo Teräs8e4795602010-04-07 00:30:07 +0000222 tfle->dir == dir &&
dpwardaa1c3662011-09-05 16:47:24 +0000223 flow_key_compare(key, &tfle->key, keysize) == 0) {
Timo Teräs8e4795602010-04-07 00:30:07 +0000224 fle = tfle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 break;
Timo Teräs8e4795602010-04-07 00:30:07 +0000226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
228
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000229 if (unlikely(!fle)) {
Timo Teräsd7997fe2010-03-31 00:17:06 +0000230 if (fcp->hash_count > fc->high_watermark)
231 flow_cache_shrink(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Fan Duca925cf2014-01-18 09:55:27 +0800233 fle = kmem_cache_alloc(net->xfrm.flow_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (fle) {
dpward0542b692011-08-31 06:05:27 +0000235 fle->net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 fle->family = family;
237 fle->dir = dir;
dpwardaa1c3662011-09-05 16:47:24 +0000238 memcpy(&fle->key, key, keysize * sizeof(flow_compare_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 fle->object = NULL;
Timo Teräs8e4795602010-04-07 00:30:07 +0000240 hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000241 fcp->hash_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
Fan Duca925cf2014-01-18 09:55:27 +0800243 } else if (likely(fle->genid == atomic_read(&net->xfrm.flow_cache_genid))) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000244 flo = fle->object;
245 if (!flo)
246 goto ret_object;
247 flo = flo->ops->get(flo);
248 if (flo)
249 goto ret_object;
250 } else if (fle->object) {
251 flo = fle->object;
252 flo->ops->delete(flo);
253 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
256nocache:
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000257 flo = NULL;
258 if (fle) {
259 flo = fle->object;
260 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000262 flo = resolver(net, key, family, dir, flo, ctx);
263 if (fle) {
Fan Duca925cf2014-01-18 09:55:27 +0800264 fle->genid = atomic_read(&net->xfrm.flow_cache_genid);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000265 if (!IS_ERR(flo))
266 fle->object = flo;
267 else
268 fle->genid--;
269 } else {
YOSHIFUJI Hideaki / 吉藤英明8fbcec22013-01-22 06:32:44 +0000270 if (!IS_ERR_OR_NULL(flo))
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000271 flo->ops->delete(flo);
272 }
273ret_object:
274 local_bh_enable();
275 return flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000277EXPORT_SYMBOL(flow_cache_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279static void flow_cache_flush_tasklet(unsigned long data)
280{
281 struct flow_flush_info *info = (void *)data;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000282 struct flow_cache *fc = info->cache;
283 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000284 struct flow_cache_entry *fle;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800285 struct hlist_node *tmp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000286 LIST_HEAD(gc_list);
287 int i, deleted = 0;
Fan Duca925cf2014-01-18 09:55:27 +0800288 struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm,
289 flow_cache_global);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Eric Dumazet7a9b2d52010-06-24 00:52:37 +0000291 fcp = this_cpu_ptr(fc->percpu);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000292 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800293 hlist_for_each_entry_safe(fle, tmp,
Timo Teräs8e4795602010-04-07 00:30:07 +0000294 &fcp->hash_table[i], u.hlist) {
Fan Duca925cf2014-01-18 09:55:27 +0800295 if (flow_entry_valid(fle, xfrm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 continue;
297
Timo Teräs8e4795602010-04-07 00:30:07 +0000298 deleted++;
299 hlist_del(&fle->u.hlist);
300 list_add_tail(&fle->u.gc_list, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
303
Fan Duca925cf2014-01-18 09:55:27 +0800304 flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm);
Timo Teräs8e4795602010-04-07 00:30:07 +0000305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (atomic_dec_and_test(&info->cpuleft))
307 complete(&info->completion);
308}
309
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000310/*
311 * Return whether a cpu needs flushing. Conservatively, we assume
312 * the presence of any entries means the core may require flushing,
313 * since the flow_cache_ops.check() function may assume it's running
314 * on the same core as the per-cpu cache component.
315 */
316static int flow_cache_percpu_empty(struct flow_cache *fc, int cpu)
317{
318 struct flow_cache_percpu *fcp;
319 int i;
320
Li RongQing27815032013-03-28 02:24:11 +0000321 fcp = per_cpu_ptr(fc->percpu, cpu);
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000322 for (i = 0; i < flow_cache_hash_size(fc); i++)
323 if (!hlist_empty(&fcp->hash_table[i]))
324 return 0;
325 return 1;
326}
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static void flow_cache_flush_per_cpu(void *data)
329{
330 struct flow_flush_info *info = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 struct tasklet_struct *tasklet;
332
Li RongQing50eab052013-03-27 23:42:41 +0000333 tasklet = &this_cpu_ptr(info->cache->percpu)->flush_tasklet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 tasklet->data = (unsigned long)info;
335 tasklet_schedule(tasklet);
336}
337
Fan Duca925cf2014-01-18 09:55:27 +0800338void flow_cache_flush(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 struct flow_flush_info info;
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000341 cpumask_var_t mask;
342 int i, self;
343
344 /* Track which cpus need flushing to avoid disturbing all cores. */
345 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
346 return;
347 cpumask_clear(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 /* Don't want cpus going down or up during this. */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100350 get_online_cpus();
Fan Duca925cf2014-01-18 09:55:27 +0800351 mutex_lock(&net->xfrm.flow_flush_sem);
352 info.cache = &net->xfrm.flow_cache_global;
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000353 for_each_online_cpu(i)
354 if (!flow_cache_percpu_empty(info.cache, i))
355 cpumask_set_cpu(i, mask);
356 atomic_set(&info.cpuleft, cpumask_weight(mask));
357 if (atomic_read(&info.cpuleft) == 0)
358 goto done;
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 init_completion(&info.completion);
361
362 local_bh_disable();
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000363 self = cpumask_test_and_clear_cpu(smp_processor_id(), mask);
364 on_each_cpu_mask(mask, flow_cache_flush_per_cpu, &info, 0);
365 if (self)
366 flow_cache_flush_tasklet((unsigned long)&info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 local_bh_enable();
368
369 wait_for_completion(&info.completion);
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000370
371done:
Fan Duca925cf2014-01-18 09:55:27 +0800372 mutex_unlock(&net->xfrm.flow_flush_sem);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100373 put_online_cpus();
Chris Metcalf8fdc9292013-03-19 11:35:58 +0000374 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500377static void flow_cache_flush_task(struct work_struct *work)
378{
Fan Duca925cf2014-01-18 09:55:27 +0800379 struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm,
380 flow_cache_gc_work);
381 struct net *net = container_of(xfrm, struct net, xfrm);
382
383 flow_cache_flush(net);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500384}
385
Fan Duca925cf2014-01-18 09:55:27 +0800386void flow_cache_flush_deferred(struct net *net)
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500387{
Fan Duca925cf2014-01-18 09:55:27 +0800388 schedule_work(&net->xfrm.flow_cache_flush_work);
Steffen Klassertc0ed1c12011-12-21 16:48:08 -0500389}
390
Paul Gortmaker013dbb32013-06-19 14:32:33 -0400391static int flow_cache_cpu_prepare(struct flow_cache *fc, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000393 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu);
394 size_t sz = sizeof(struct hlist_head) * flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000396 if (!fcp->hash_table) {
397 fcp->hash_table = kzalloc_node(sz, GFP_KERNEL, cpu_to_node(cpu));
398 if (!fcp->hash_table) {
399 pr_err("NET: failed to allocate flow cache sz %zu\n", sz);
400 return -ENOMEM;
401 }
402 fcp->hash_rnd_recalc = 1;
403 fcp->hash_count = 0;
404 tasklet_init(&fcp->flush_tasklet, flow_cache_flush_tasklet, 0);
405 }
406 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Paul Gortmaker013dbb32013-06-19 14:32:33 -0400409static int flow_cache_cpu(struct notifier_block *nfb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 unsigned long action,
411 void *hcpu)
412{
Fan Duca925cf2014-01-18 09:55:27 +0800413 struct flow_cache *fc = container_of(nfb, struct flow_cache,
414 hotcpu_notifier);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000415 int res, cpu = (unsigned long) hcpu;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000416 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu);
417
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000418 switch (action) {
419 case CPU_UP_PREPARE:
420 case CPU_UP_PREPARE_FROZEN:
421 res = flow_cache_cpu_prepare(fc, cpu);
422 if (res)
423 return notifier_from_errno(res);
424 break;
425 case CPU_DEAD:
426 case CPU_DEAD_FROZEN:
Timo Teräsd7997fe2010-03-31 00:17:06 +0000427 __flow_cache_shrink(fc, fcp, 0);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000428 break;
429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return NOTIFY_OK;
431}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Fan Duca925cf2014-01-18 09:55:27 +0800433int flow_cache_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 int i;
Fan Duca925cf2014-01-18 09:55:27 +0800436 struct flow_cache *fc = &net->xfrm.flow_cache_global;
437
438 /* Initialize per-net flow cache global variables here */
439 net->xfrm.flow_cachep = kmem_cache_create("flow_cache",
440 sizeof(struct flow_cache_entry),
441 0, SLAB_PANIC, NULL);
442 spin_lock_init(&net->xfrm.flow_cache_gc_lock);
443 INIT_LIST_HEAD(&net->xfrm.flow_cache_gc_list);
444 INIT_WORK(&net->xfrm.flow_cache_gc_work, flow_cache_gc_task);
445 INIT_WORK(&net->xfrm.flow_cache_flush_work, flow_cache_flush_task);
446 mutex_init(&net->xfrm.flow_flush_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Timo Teräsd7997fe2010-03-31 00:17:06 +0000448 fc->hash_shift = 10;
449 fc->low_watermark = 2 * flow_cache_hash_size(fc);
450 fc->high_watermark = 4 * flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Timo Teräsd7997fe2010-03-31 00:17:06 +0000452 fc->percpu = alloc_percpu(struct flow_cache_percpu);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000453 if (!fc->percpu)
454 return -ENOMEM;
455
456 for_each_online_cpu(i) {
457 if (flow_cache_cpu_prepare(fc, i))
huajun li6ccc3ab2011-09-27 22:51:39 +0000458 goto err;
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000459 }
460 fc->hotcpu_notifier = (struct notifier_block){
461 .notifier_call = flow_cache_cpu,
462 };
463 register_hotcpu_notifier(&fc->hotcpu_notifier);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000464
465 setup_timer(&fc->rnd_timer, flow_cache_new_hashrnd,
466 (unsigned long) fc);
467 fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD;
468 add_timer(&fc->rnd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return 0;
huajun li6ccc3ab2011-09-27 22:51:39 +0000471
472err:
473 for_each_possible_cpu(i) {
474 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, i);
475 kfree(fcp->hash_table);
476 fcp->hash_table = NULL;
477 }
478
479 free_percpu(fc->percpu);
480 fc->percpu = NULL;
481
482 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
Fan Duca925cf2014-01-18 09:55:27 +0800484EXPORT_SYMBOL(flow_cache_init);