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 | 6006349 | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | struct flow_cache_entry { |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 29 | union { |
| 30 | struct hlist_node hlist; |
| 31 | struct list_head gc_list; |
| 32 | } u; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 33 | u16 family; |
| 34 | u8 dir; |
| 35 | u32 genid; |
| 36 | struct flowi key; |
| 37 | struct flow_cache_object *object; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 40 | struct flow_cache_percpu { |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 41 | struct hlist_head *hash_table; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 42 | int hash_count; |
| 43 | u32 hash_rnd; |
| 44 | int hash_rnd_recalc; |
| 45 | struct tasklet_struct flush_tasklet; |
Eric Dumazet | 5f58a5c | 2008-02-07 18:03:18 -0800 | [diff] [blame] | 46 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | struct flow_flush_info { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 49 | struct flow_cache *cache; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 50 | atomic_t cpuleft; |
| 51 | struct completion completion; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 54 | struct flow_cache { |
| 55 | u32 hash_shift; |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 56 | struct flow_cache_percpu __percpu *percpu; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 57 | struct notifier_block hotcpu_notifier; |
| 58 | int low_watermark; |
| 59 | int high_watermark; |
| 60 | struct timer_list rnd_timer; |
| 61 | }; |
| 62 | |
| 63 | atomic_t flow_cache_genid = ATOMIC_INIT(0); |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 64 | EXPORT_SYMBOL(flow_cache_genid); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 65 | static struct flow_cache flow_cache_global; |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 66 | static struct kmem_cache *flow_cachep __read_mostly; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 67 | |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 68 | static DEFINE_SPINLOCK(flow_cache_gc_lock); |
| 69 | static LIST_HEAD(flow_cache_gc_list); |
| 70 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 71 | #define flow_cache_hash_size(cache) (1 << (cache)->hash_shift) |
| 72 | #define FLOW_HASH_RND_PERIOD (10 * 60 * HZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | static void flow_cache_new_hashrnd(unsigned long arg) |
| 75 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 76 | struct flow_cache *fc = (void *) arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | int i; |
| 78 | |
KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 79 | for_each_possible_cpu(i) |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 80 | per_cpu_ptr(fc->percpu, i)->hash_rnd_recalc = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 82 | fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD; |
| 83 | add_timer(&fc->rnd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 86 | static int flow_entry_valid(struct flow_cache_entry *fle) |
| 87 | { |
| 88 | if (atomic_read(&flow_cache_genid) != fle->genid) |
| 89 | return 0; |
| 90 | if (fle->object && !fle->object->ops->check(fle->object)) |
| 91 | return 0; |
| 92 | return 1; |
| 93 | } |
| 94 | |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 95 | static void flow_entry_kill(struct flow_cache_entry *fle) |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 96 | { |
| 97 | if (fle->object) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 98 | fle->object->ops->delete(fle->object); |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 99 | kmem_cache_free(flow_cachep, fle); |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | static void flow_cache_gc_task(struct work_struct *work) |
| 103 | { |
| 104 | struct list_head gc_list; |
| 105 | struct flow_cache_entry *fce, *n; |
| 106 | |
| 107 | INIT_LIST_HEAD(&gc_list); |
| 108 | spin_lock_bh(&flow_cache_gc_lock); |
| 109 | list_splice_tail_init(&flow_cache_gc_list, &gc_list); |
| 110 | spin_unlock_bh(&flow_cache_gc_lock); |
| 111 | |
| 112 | list_for_each_entry_safe(fce, n, &gc_list, u.gc_list) |
| 113 | flow_entry_kill(fce); |
| 114 | } |
| 115 | static DECLARE_WORK(flow_cache_gc_work, flow_cache_gc_task); |
| 116 | |
| 117 | static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp, |
| 118 | int deleted, struct list_head *gc_list) |
| 119 | { |
| 120 | if (deleted) { |
| 121 | fcp->hash_count -= deleted; |
| 122 | spin_lock_bh(&flow_cache_gc_lock); |
| 123 | list_splice_tail(gc_list, &flow_cache_gc_list); |
| 124 | spin_unlock_bh(&flow_cache_gc_lock); |
| 125 | schedule_work(&flow_cache_gc_work); |
| 126 | } |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 127 | } |
| 128 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 129 | static void __flow_cache_shrink(struct flow_cache *fc, |
| 130 | struct flow_cache_percpu *fcp, |
| 131 | int shrink_to) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 133 | struct flow_cache_entry *fle; |
| 134 | struct hlist_node *entry, *tmp; |
| 135 | LIST_HEAD(gc_list); |
| 136 | int i, deleted = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 138 | for (i = 0; i < flow_cache_hash_size(fc); i++) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 139 | int saved = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 141 | hlist_for_each_entry_safe(fle, entry, tmp, |
| 142 | &fcp->hash_table[i], u.hlist) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 143 | if (saved < shrink_to && |
| 144 | flow_entry_valid(fle)) { |
| 145 | saved++; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 146 | } else { |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 147 | deleted++; |
| 148 | hlist_del(&fle->u.hlist); |
| 149 | list_add_tail(&fle->u.gc_list, &gc_list); |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | } |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 153 | |
| 154 | flow_cache_queue_garbage(fcp, deleted, &gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | } |
| 156 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 157 | static void flow_cache_shrink(struct flow_cache *fc, |
| 158 | struct flow_cache_percpu *fcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 160 | int shrink_to = fc->low_watermark / flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 162 | __flow_cache_shrink(fc, fcp, shrink_to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 165 | static void flow_new_hash_rnd(struct flow_cache *fc, |
| 166 | struct flow_cache_percpu *fcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 168 | get_random_bytes(&fcp->hash_rnd, sizeof(u32)); |
| 169 | fcp->hash_rnd_recalc = 0; |
| 170 | __flow_cache_shrink(fc, fcp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | } |
| 172 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 173 | static u32 flow_hash_code(struct flow_cache *fc, |
| 174 | struct flow_cache_percpu *fcp, |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 175 | const struct flowi *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 177 | const u32 *k = (const u32 *) key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 179 | return jhash2(k, (sizeof(*key) / sizeof(u32)), fcp->hash_rnd) |
| 180 | & (flow_cache_hash_size(fc) - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 183 | typedef unsigned long flow_compare_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | /* I hear what you're saying, use memcmp. But memcmp cannot make |
| 186 | * important assumptions that we can here, such as alignment and |
| 187 | * constant size. |
| 188 | */ |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 189 | static int flow_key_compare(const struct flowi *key1, const struct flowi *key2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | { |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 191 | const flow_compare_t *k1, *k1_lim, *k2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | const int n_elem = sizeof(struct flowi) / sizeof(flow_compare_t); |
| 193 | |
Pavel Emelyanov | f0fe91d | 2007-10-23 21:15:21 -0700 | [diff] [blame] | 194 | BUILD_BUG_ON(sizeof(struct flowi) % sizeof(flow_compare_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 196 | k1 = (const flow_compare_t *) key1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | k1_lim = k1 + n_elem; |
| 198 | |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 199 | k2 = (const flow_compare_t *) key2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | do { |
| 202 | if (*k1++ != *k2++) |
| 203 | return 1; |
| 204 | } while (k1 < k1_lim); |
| 205 | |
| 206 | return 0; |
| 207 | } |
| 208 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 209 | struct flow_cache_object * |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 210 | 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] | 211 | flow_resolve_t resolver, void *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 213 | struct flow_cache *fc = &flow_cache_global; |
| 214 | struct flow_cache_percpu *fcp; |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 215 | struct flow_cache_entry *fle, *tfle; |
| 216 | struct hlist_node *entry; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 217 | struct flow_cache_object *flo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | unsigned int hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
| 220 | local_bh_disable(); |
Eric Dumazet | 7a9b2d5 | 2010-06-24 00:52:37 +0000 | [diff] [blame] | 221 | fcp = this_cpu_ptr(fc->percpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
| 223 | fle = NULL; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 224 | flo = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | /* Packet really early in init? Making flow_cache_init a |
| 226 | * pre-smp initcall would solve this. --RR */ |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 227 | if (!fcp->hash_table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | goto nocache; |
| 229 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 230 | if (fcp->hash_rnd_recalc) |
| 231 | flow_new_hash_rnd(fc, fcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 233 | hash = flow_hash_code(fc, fcp, key); |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 234 | hlist_for_each_entry(tfle, entry, &fcp->hash_table[hash], u.hlist) { |
| 235 | if (tfle->family == family && |
| 236 | tfle->dir == dir && |
| 237 | flow_key_compare(key, &tfle->key) == 0) { |
| 238 | fle = tfle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | break; |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 240 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 243 | if (unlikely(!fle)) { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 244 | if (fcp->hash_count > fc->high_watermark) |
| 245 | flow_cache_shrink(fc, fcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 247 | fle = kmem_cache_alloc(flow_cachep, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | if (fle) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | fle->family = family; |
| 250 | fle->dir = dir; |
| 251 | memcpy(&fle->key, key, sizeof(*key)); |
| 252 | fle->object = NULL; |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 253 | hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 254 | fcp->hash_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | } |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 256 | } else if (likely(fle->genid == atomic_read(&flow_cache_genid))) { |
| 257 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | nocache: |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 270 | flo = NULL; |
| 271 | if (fle) { |
| 272 | flo = fle->object; |
| 273 | fle->object = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 275 | flo = resolver(net, key, family, dir, flo, ctx); |
| 276 | if (fle) { |
| 277 | fle->genid = atomic_read(&flow_cache_genid); |
| 278 | if (!IS_ERR(flo)) |
| 279 | fle->object = flo; |
| 280 | else |
| 281 | fle->genid--; |
| 282 | } else { |
| 283 | if (flo && !IS_ERR(flo)) |
| 284 | flo->ops->delete(flo); |
| 285 | } |
| 286 | ret_object: |
| 287 | local_bh_enable(); |
| 288 | return flo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 290 | EXPORT_SYMBOL(flow_cache_lookup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
| 292 | static void flow_cache_flush_tasklet(unsigned long data) |
| 293 | { |
| 294 | struct flow_flush_info *info = (void *)data; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 295 | struct flow_cache *fc = info->cache; |
| 296 | struct flow_cache_percpu *fcp; |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 297 | struct flow_cache_entry *fle; |
| 298 | struct hlist_node *entry, *tmp; |
| 299 | LIST_HEAD(gc_list); |
| 300 | int i, deleted = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Eric Dumazet | 7a9b2d5 | 2010-06-24 00:52:37 +0000 | [diff] [blame] | 302 | fcp = this_cpu_ptr(fc->percpu); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 303 | for (i = 0; i < flow_cache_hash_size(fc); i++) { |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 304 | hlist_for_each_entry_safe(fle, entry, tmp, |
| 305 | &fcp->hash_table[i], u.hlist) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 306 | if (flow_entry_valid(fle)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | continue; |
| 308 | |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 309 | deleted++; |
| 310 | hlist_del(&fle->u.hlist); |
| 311 | list_add_tail(&fle->u.gc_list, &gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | } |
| 314 | |
Timo Teräs | 8e47956 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 315 | flow_cache_queue_garbage(fcp, deleted, &gc_list); |
| 316 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | if (atomic_dec_and_test(&info->cpuleft)) |
| 318 | complete(&info->completion); |
| 319 | } |
| 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | static void flow_cache_flush_per_cpu(void *data) |
| 322 | { |
| 323 | struct flow_flush_info *info = data; |
| 324 | int cpu; |
| 325 | struct tasklet_struct *tasklet; |
| 326 | |
| 327 | cpu = smp_processor_id(); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 328 | tasklet = &per_cpu_ptr(info->cache->percpu, cpu)->flush_tasklet; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | tasklet->data = (unsigned long)info; |
| 330 | tasklet_schedule(tasklet); |
| 331 | } |
| 332 | |
| 333 | void flow_cache_flush(void) |
| 334 | { |
| 335 | struct flow_flush_info info; |
Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 336 | static DEFINE_MUTEX(flow_flush_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
| 338 | /* Don't want cpus going down or up during this. */ |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 339 | get_online_cpus(); |
Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 340 | mutex_lock(&flow_flush_sem); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 341 | info.cache = &flow_cache_global; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | atomic_set(&info.cpuleft, num_online_cpus()); |
| 343 | init_completion(&info.completion); |
| 344 | |
| 345 | local_bh_disable(); |
Jens Axboe | 8691e5a | 2008-06-06 11:18:06 +0200 | [diff] [blame] | 346 | smp_call_function(flow_cache_flush_per_cpu, &info, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | flow_cache_flush_tasklet((unsigned long)&info); |
| 348 | local_bh_enable(); |
| 349 | |
| 350 | wait_for_completion(&info.completion); |
Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 351 | mutex_unlock(&flow_flush_sem); |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 352 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } |
| 354 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 355 | static int __cpuinit flow_cache_cpu_prepare(struct flow_cache *fc, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 357 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu); |
| 358 | size_t sz = sizeof(struct hlist_head) * flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 360 | if (!fcp->hash_table) { |
| 361 | fcp->hash_table = kzalloc_node(sz, GFP_KERNEL, cpu_to_node(cpu)); |
| 362 | if (!fcp->hash_table) { |
| 363 | pr_err("NET: failed to allocate flow cache sz %zu\n", sz); |
| 364 | return -ENOMEM; |
| 365 | } |
| 366 | fcp->hash_rnd_recalc = 1; |
| 367 | fcp->hash_count = 0; |
| 368 | tasklet_init(&fcp->flush_tasklet, flow_cache_flush_tasklet, 0); |
| 369 | } |
| 370 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | } |
| 372 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 373 | static int __cpuinit flow_cache_cpu(struct notifier_block *nfb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | unsigned long action, |
| 375 | void *hcpu) |
| 376 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 377 | struct flow_cache *fc = container_of(nfb, struct flow_cache, hotcpu_notifier); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 378 | int res, cpu = (unsigned long) hcpu; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 379 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu); |
| 380 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 381 | switch (action) { |
| 382 | case CPU_UP_PREPARE: |
| 383 | case CPU_UP_PREPARE_FROZEN: |
| 384 | res = flow_cache_cpu_prepare(fc, cpu); |
| 385 | if (res) |
| 386 | return notifier_from_errno(res); |
| 387 | break; |
| 388 | case CPU_DEAD: |
| 389 | case CPU_DEAD_FROZEN: |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 390 | __flow_cache_shrink(fc, fcp, 0); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 391 | break; |
| 392 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | return NOTIFY_OK; |
| 394 | } |
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 | static int __init flow_cache_init(struct flow_cache *fc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | { |
| 398 | int i; |
| 399 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 400 | fc->hash_shift = 10; |
| 401 | fc->low_watermark = 2 * flow_cache_hash_size(fc); |
| 402 | fc->high_watermark = 4 * flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 404 | fc->percpu = alloc_percpu(struct flow_cache_percpu); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 405 | if (!fc->percpu) |
| 406 | return -ENOMEM; |
| 407 | |
| 408 | for_each_online_cpu(i) { |
| 409 | if (flow_cache_cpu_prepare(fc, i)) |
| 410 | return -ENOMEM; |
| 411 | } |
| 412 | fc->hotcpu_notifier = (struct notifier_block){ |
| 413 | .notifier_call = flow_cache_cpu, |
| 414 | }; |
| 415 | register_hotcpu_notifier(&fc->hotcpu_notifier); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 416 | |
| 417 | setup_timer(&fc->rnd_timer, flow_cache_new_hashrnd, |
| 418 | (unsigned long) fc); |
| 419 | fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD; |
| 420 | add_timer(&fc->rnd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | return 0; |
| 423 | } |
| 424 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 425 | static int __init flow_cache_init_global(void) |
| 426 | { |
| 427 | flow_cachep = kmem_cache_create("flow_cache", |
| 428 | sizeof(struct flow_cache_entry), |
| 429 | 0, SLAB_PANIC, NULL); |
| 430 | |
| 431 | return flow_cache_init(&flow_cache_global); |
| 432 | } |
| 433 | |
| 434 | module_init(flow_cache_init_global); |