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 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 48 | #define flow_cache_hash_size(cache) (1 << (cache)->hash_shift) |
| 49 | #define FLOW_HASH_RND_PERIOD (10 * 60 * HZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | static void flow_cache_new_hashrnd(unsigned long arg) |
| 52 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 53 | struct flow_cache *fc = (void *) arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | int i; |
| 55 | |
KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 56 | for_each_possible_cpu(i) |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 57 | per_cpu_ptr(fc->percpu, i)->hash_rnd_recalc = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 59 | fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD; |
| 60 | add_timer(&fc->rnd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 63 | static int flow_entry_valid(struct flow_cache_entry *fle, |
| 64 | struct netns_xfrm *xfrm) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 65 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 66 | if (atomic_read(&xfrm->flow_cache_genid) != fle->genid) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 67 | return 0; |
| 68 | if (fle->object && !fle->object->ops->check(fle->object)) |
| 69 | return 0; |
| 70 | return 1; |
| 71 | } |
| 72 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 73 | static void flow_entry_kill(struct flow_cache_entry *fle, |
| 74 | struct netns_xfrm *xfrm) |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 75 | { |
| 76 | if (fle->object) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 77 | fle->object->ops->delete(fle->object); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 78 | kmem_cache_free(xfrm->flow_cachep, fle); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static void flow_cache_gc_task(struct work_struct *work) |
| 82 | { |
| 83 | struct list_head gc_list; |
| 84 | struct flow_cache_entry *fce, *n; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 85 | struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm, |
| 86 | flow_cache_gc_work); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 87 | |
| 88 | INIT_LIST_HEAD(&gc_list); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 89 | 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äs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 92 | |
| 93 | list_for_each_entry_safe(fce, n, &gc_list, u.gc_list) |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 94 | flow_entry_kill(fce, xfrm); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 95 | } |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 96 | |
| 97 | static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp, |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 98 | int deleted, struct list_head *gc_list, |
| 99 | struct netns_xfrm *xfrm) |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 100 | { |
| 101 | if (deleted) { |
| 102 | fcp->hash_count -= deleted; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 103 | 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äs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 107 | } |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 108 | } |
| 109 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 110 | static void __flow_cache_shrink(struct flow_cache *fc, |
| 111 | struct flow_cache_percpu *fcp, |
| 112 | int shrink_to) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 114 | struct flow_cache_entry *fle; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 115 | struct hlist_node *tmp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 116 | LIST_HEAD(gc_list); |
| 117 | int i, deleted = 0; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 118 | struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm, |
| 119 | flow_cache_global); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 121 | for (i = 0; i < flow_cache_hash_size(fc); i++) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 122 | int saved = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 124 | hlist_for_each_entry_safe(fle, tmp, |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 125 | &fcp->hash_table[i], u.hlist) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 126 | if (saved < shrink_to && |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 127 | flow_entry_valid(fle, xfrm)) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 128 | saved++; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 129 | } else { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 130 | deleted++; |
| 131 | hlist_del(&fle->u.hlist); |
| 132 | list_add_tail(&fle->u.gc_list, &gc_list); |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 133 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | } |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 136 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 137 | flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 140 | static void flow_cache_shrink(struct flow_cache *fc, |
| 141 | struct flow_cache_percpu *fcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 143 | int shrink_to = fc->low_watermark / flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 145 | __flow_cache_shrink(fc, fcp, shrink_to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 148 | static void flow_new_hash_rnd(struct flow_cache *fc, |
| 149 | struct flow_cache_percpu *fcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 151 | get_random_bytes(&fcp->hash_rnd, sizeof(u32)); |
| 152 | fcp->hash_rnd_recalc = 0; |
| 153 | __flow_cache_shrink(fc, fcp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 156 | static u32 flow_hash_code(struct flow_cache *fc, |
| 157 | struct flow_cache_percpu *fcp, |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 158 | const struct flowi *key, |
| 159 | size_t keysize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 161 | const u32 *k = (const u32 *) key; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 162 | const u32 length = keysize * sizeof(flow_compare_t) / sizeof(u32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 164 | return jhash2(k, length, fcp->hash_rnd) |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 165 | & (flow_cache_hash_size(fc) - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | /* I hear what you're saying, use memcmp. But memcmp cannot make |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 169 | * important assumptions that we can here, such as alignment. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | */ |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 171 | static int flow_key_compare(const struct flowi *key1, const struct flowi *key2, |
| 172 | size_t keysize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | { |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 174 | const flow_compare_t *k1, *k1_lim, *k2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 176 | k1 = (const flow_compare_t *) key1; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 177 | k1_lim = k1 + 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 | k2 = (const flow_compare_t *) key2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
| 181 | do { |
| 182 | if (*k1++ != *k2++) |
| 183 | return 1; |
| 184 | } while (k1 < k1_lim); |
| 185 | |
| 186 | return 0; |
| 187 | } |
| 188 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 189 | struct flow_cache_object * |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 190 | 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] | 191 | flow_resolve_t resolver, void *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 193 | struct flow_cache *fc = &net->xfrm.flow_cache_global; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 194 | struct flow_cache_percpu *fcp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 195 | struct flow_cache_entry *fle, *tfle; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 196 | struct flow_cache_object *flo; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 197 | size_t keysize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | unsigned int hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | local_bh_disable(); |
Eric Dumazet | 7a9b2d5 | 2010-06-24 00:52:37 +0000 | [diff] [blame] | 201 | fcp = this_cpu_ptr(fc->percpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
| 203 | fle = NULL; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 204 | flo = NULL; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 205 | |
| 206 | keysize = flow_key_size(family); |
| 207 | if (!keysize) |
| 208 | goto nocache; |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | /* Packet really early in init? Making flow_cache_init a |
| 211 | * pre-smp initcall would solve this. --RR */ |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 212 | if (!fcp->hash_table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | goto nocache; |
| 214 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 215 | if (fcp->hash_rnd_recalc) |
| 216 | flow_new_hash_rnd(fc, fcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 218 | hash = flow_hash_code(fc, fcp, key, keysize); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 219 | hlist_for_each_entry(tfle, &fcp->hash_table[hash], u.hlist) { |
dpward | 0542b69 | 2011-08-31 06:05:27 +0000 | [diff] [blame] | 220 | if (tfle->net == net && |
| 221 | tfle->family == family && |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 222 | tfle->dir == dir && |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 223 | flow_key_compare(key, &tfle->key, keysize) == 0) { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 224 | fle = tfle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | break; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 226 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | } |
| 228 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 229 | if (unlikely(!fle)) { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 230 | if (fcp->hash_count > fc->high_watermark) |
| 231 | flow_cache_shrink(fc, fcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 233 | fle = kmem_cache_alloc(net->xfrm.flow_cachep, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | if (fle) { |
dpward | 0542b69 | 2011-08-31 06:05:27 +0000 | [diff] [blame] | 235 | fle->net = net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | fle->family = family; |
| 237 | fle->dir = dir; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 238 | memcpy(&fle->key, key, keysize * sizeof(flow_compare_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | fle->object = NULL; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 240 | hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 241 | fcp->hash_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | } |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 243 | } 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] | 244 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | nocache: |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 257 | flo = NULL; |
| 258 | if (fle) { |
| 259 | flo = fle->object; |
| 260 | fle->object = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | } |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 262 | flo = resolver(net, key, family, dir, flo, ctx); |
| 263 | if (fle) { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 264 | fle->genid = atomic_read(&net->xfrm.flow_cache_genid); |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 265 | if (!IS_ERR(flo)) |
| 266 | fle->object = flo; |
| 267 | else |
| 268 | fle->genid--; |
| 269 | } else { |
YOSHIFUJI Hideaki / 吉藤英明 | 8fbcec2 | 2013-01-22 06:32:44 +0000 | [diff] [blame] | 270 | if (!IS_ERR_OR_NULL(flo)) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 271 | flo->ops->delete(flo); |
| 272 | } |
| 273 | ret_object: |
| 274 | local_bh_enable(); |
| 275 | return flo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 277 | EXPORT_SYMBOL(flow_cache_lookup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
| 279 | static void flow_cache_flush_tasklet(unsigned long data) |
| 280 | { |
| 281 | struct flow_flush_info *info = (void *)data; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 282 | struct flow_cache *fc = info->cache; |
| 283 | struct flow_cache_percpu *fcp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 284 | struct flow_cache_entry *fle; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 285 | struct hlist_node *tmp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 286 | LIST_HEAD(gc_list); |
| 287 | int i, deleted = 0; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 288 | struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm, |
| 289 | flow_cache_global); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Eric Dumazet | 7a9b2d5 | 2010-06-24 00:52:37 +0000 | [diff] [blame] | 291 | fcp = this_cpu_ptr(fc->percpu); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 292 | for (i = 0; i < flow_cache_hash_size(fc); i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 293 | hlist_for_each_entry_safe(fle, tmp, |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 294 | &fcp->hash_table[i], u.hlist) { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 295 | if (flow_entry_valid(fle, xfrm)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | continue; |
| 297 | |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 298 | deleted++; |
| 299 | hlist_del(&fle->u.hlist); |
| 300 | list_add_tail(&fle->u.gc_list, &gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | } |
| 302 | } |
| 303 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 304 | flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (atomic_dec_and_test(&info->cpuleft)) |
| 307 | complete(&info->completion); |
| 308 | } |
| 309 | |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 310 | /* |
| 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 | */ |
| 316 | static int flow_cache_percpu_empty(struct flow_cache *fc, int cpu) |
| 317 | { |
| 318 | struct flow_cache_percpu *fcp; |
| 319 | int i; |
| 320 | |
Li RongQing | 2781503 | 2013-03-28 02:24:11 +0000 | [diff] [blame] | 321 | fcp = per_cpu_ptr(fc->percpu, cpu); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 322 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | static void flow_cache_flush_per_cpu(void *data) |
| 329 | { |
| 330 | struct flow_flush_info *info = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | struct tasklet_struct *tasklet; |
| 332 | |
Li RongQing | 50eab05 | 2013-03-27 23:42:41 +0000 | [diff] [blame] | 333 | tasklet = &this_cpu_ptr(info->cache->percpu)->flush_tasklet; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | tasklet->data = (unsigned long)info; |
| 335 | tasklet_schedule(tasklet); |
| 336 | } |
| 337 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 338 | void flow_cache_flush(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | { |
| 340 | struct flow_flush_info info; |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 341 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
| 349 | /* Don't want cpus going down or up during this. */ |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 350 | get_online_cpus(); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 351 | mutex_lock(&net->xfrm.flow_flush_sem); |
| 352 | info.cache = &net->xfrm.flow_cache_global; |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 353 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | init_completion(&info.completion); |
| 361 | |
| 362 | local_bh_disable(); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 363 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | local_bh_enable(); |
| 368 | |
| 369 | wait_for_completion(&info.completion); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 370 | |
| 371 | done: |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 372 | mutex_unlock(&net->xfrm.flow_flush_sem); |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 373 | put_online_cpus(); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 374 | free_cpumask_var(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 377 | static void flow_cache_flush_task(struct work_struct *work) |
| 378 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 379 | 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 Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 384 | } |
| 385 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 386 | void flow_cache_flush_deferred(struct net *net) |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 387 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 388 | schedule_work(&net->xfrm.flow_cache_flush_work); |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 389 | } |
| 390 | |
Paul Gortmaker | 013dbb3 | 2013-06-19 14:32:33 -0400 | [diff] [blame] | 391 | static int flow_cache_cpu_prepare(struct flow_cache *fc, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 393 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 396 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Paul Gortmaker | 013dbb3 | 2013-06-19 14:32:33 -0400 | [diff] [blame] | 409 | static int flow_cache_cpu(struct notifier_block *nfb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | unsigned long action, |
| 411 | void *hcpu) |
| 412 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 413 | struct flow_cache *fc = container_of(nfb, struct flow_cache, |
| 414 | hotcpu_notifier); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 415 | int res, cpu = (unsigned long) hcpu; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 416 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu); |
| 417 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 418 | 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äs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 427 | __flow_cache_shrink(fc, fcp, 0); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 428 | break; |
| 429 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | return NOTIFY_OK; |
| 431 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 433 | int flow_cache_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { |
| 435 | int i; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 436 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 448 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 452 | fc->percpu = alloc_percpu(struct flow_cache_percpu); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 453 | if (!fc->percpu) |
| 454 | return -ENOMEM; |
| 455 | |
| 456 | for_each_online_cpu(i) { |
| 457 | if (flow_cache_cpu_prepare(fc, i)) |
huajun li | 6ccc3ab | 2011-09-27 22:51:39 +0000 | [diff] [blame] | 458 | goto err; |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 459 | } |
| 460 | fc->hotcpu_notifier = (struct notifier_block){ |
| 461 | .notifier_call = flow_cache_cpu, |
| 462 | }; |
| 463 | register_hotcpu_notifier(&fc->hotcpu_notifier); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 464 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | return 0; |
huajun li | 6ccc3ab | 2011-09-27 22:51:39 +0000 | [diff] [blame] | 471 | |
| 472 | err: |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame^] | 484 | EXPORT_SYMBOL(flow_cache_init); |