Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * net/core/dst.c Protocol independent destination cache. |
| 3 | * |
| 4 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #include <linux/bitops.h> |
| 9 | #include <linux/errno.h> |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/kernel.h> |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 12 | #include <linux/workqueue.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/mm.h> |
| 14 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/netdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/skbuff.h> |
| 18 | #include <linux/string.h> |
| 19 | #include <linux/types.h> |
Eric W. Biederman | e9dc865 | 2007-09-12 13:02:17 +0200 | [diff] [blame] | 20 | #include <net/net_namespace.h> |
Eric Dumazet | 2fc1b5d | 2010-02-08 15:00:39 -0800 | [diff] [blame] | 21 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #include <net/dst.h> |
| 24 | |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 25 | /* |
| 26 | * Theory of operations: |
| 27 | * 1) We use a list, protected by a spinlock, to add |
| 28 | * new entries from both BH and non-BH context. |
| 29 | * 2) In order to keep spinlock held for a small delay, |
| 30 | * we use a second list where are stored long lived |
| 31 | * entries, that are handled by the garbage collect thread |
| 32 | * fired by a workqueue. |
| 33 | * 3) This list is guarded by a mutex, |
| 34 | * so that the gc_task and dst_dev_event() can be synchronized. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | */ |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 36 | #if RT_CACHE_DEBUG >= 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | static atomic_t dst_total = ATOMIC_INIT(0); |
| 38 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 40 | /* |
| 41 | * We want to keep lock & list close together |
| 42 | * to dirty as few cache lines as possible in __dst_free(). |
| 43 | * As this is not a very strong hint, we dont force an alignment on SMP. |
| 44 | */ |
| 45 | static struct { |
| 46 | spinlock_t lock; |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 47 | struct dst_entry *list; |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 48 | unsigned long timer_inc; |
| 49 | unsigned long timer_expires; |
| 50 | } dst_garbage = { |
| 51 | .lock = __SPIN_LOCK_UNLOCKED(dst_garbage.lock), |
| 52 | .timer_inc = DST_GC_MAX, |
| 53 | }; |
| 54 | static void dst_gc_task(struct work_struct *work); |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 55 | static void ___dst_free(struct dst_entry *dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 57 | static DECLARE_DELAYED_WORK(dst_gc_work, dst_gc_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 59 | static DEFINE_MUTEX(dst_gc_mutex); |
| 60 | /* |
| 61 | * long lived entries are maintained in this list, guarded by dst_gc_mutex |
| 62 | */ |
| 63 | static struct dst_entry *dst_busy_list; |
| 64 | |
| 65 | static void dst_gc_task(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
| 67 | int delayed = 0; |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 68 | int work_performed = 0; |
| 69 | unsigned long expires = ~0L; |
| 70 | struct dst_entry *dst, *next, head; |
| 71 | struct dst_entry *last = &head; |
| 72 | #if RT_CACHE_DEBUG >= 2 |
| 73 | ktime_t time_start = ktime_get(); |
| 74 | struct timespec elapsed; |
| 75 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 77 | mutex_lock(&dst_gc_mutex); |
| 78 | next = dst_busy_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 80 | loop: |
| 81 | while ((dst = next) != NULL) { |
| 82 | next = dst->next; |
| 83 | prefetch(&next->next); |
Eric Dumazet | 2fc1b5d | 2010-02-08 15:00:39 -0800 | [diff] [blame] | 84 | cond_resched(); |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 85 | if (likely(atomic_read(&dst->__refcnt))) { |
| 86 | last->next = dst; |
| 87 | last = dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | delayed++; |
| 89 | continue; |
| 90 | } |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 91 | work_performed++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
| 93 | dst = dst_destroy(dst); |
| 94 | if (dst) { |
| 95 | /* NOHASH and still referenced. Unless it is already |
| 96 | * on gc list, invalidate it and add to gc list. |
| 97 | * |
| 98 | * Note: this is temporary. Actually, NOHASH dst's |
| 99 | * must be obsoleted when parent is obsoleted. |
| 100 | * But we do not have state "obsoleted, but |
| 101 | * referenced by parent", so it is right. |
| 102 | */ |
| 103 | if (dst->obsolete > 1) |
| 104 | continue; |
| 105 | |
| 106 | ___dst_free(dst); |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 107 | dst->next = next; |
| 108 | next = dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 112 | spin_lock_bh(&dst_garbage.lock); |
| 113 | next = dst_garbage.list; |
| 114 | if (next) { |
| 115 | dst_garbage.list = NULL; |
| 116 | spin_unlock_bh(&dst_garbage.lock); |
| 117 | goto loop; |
| 118 | } |
| 119 | last->next = NULL; |
| 120 | dst_busy_list = head.next; |
| 121 | if (!dst_busy_list) |
| 122 | dst_garbage.timer_inc = DST_GC_MAX; |
| 123 | else { |
| 124 | /* |
| 125 | * if we freed less than 1/10 of delayed entries, |
| 126 | * we can sleep longer. |
| 127 | */ |
| 128 | if (work_performed <= delayed/10) { |
| 129 | dst_garbage.timer_expires += dst_garbage.timer_inc; |
| 130 | if (dst_garbage.timer_expires > DST_GC_MAX) |
| 131 | dst_garbage.timer_expires = DST_GC_MAX; |
| 132 | dst_garbage.timer_inc += DST_GC_INC; |
| 133 | } else { |
| 134 | dst_garbage.timer_inc = DST_GC_INC; |
| 135 | dst_garbage.timer_expires = DST_GC_MIN; |
| 136 | } |
| 137 | expires = dst_garbage.timer_expires; |
| 138 | /* |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 139 | * if the next desired timer is more than 4 seconds in the |
| 140 | * future then round the timer to whole seconds |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 141 | */ |
| 142 | if (expires > 4*HZ) |
| 143 | expires = round_jiffies_relative(expires); |
| 144 | schedule_delayed_work(&dst_gc_work, expires); |
| 145 | } |
| 146 | |
| 147 | spin_unlock_bh(&dst_garbage.lock); |
| 148 | mutex_unlock(&dst_gc_mutex); |
| 149 | #if RT_CACHE_DEBUG >= 2 |
| 150 | elapsed = ktime_to_timespec(ktime_sub(ktime_get(), time_start)); |
| 151 | printk(KERN_DEBUG "dst_total: %d delayed: %d work_perf: %d" |
| 152 | " expires: %lu elapsed: %lu us\n", |
| 153 | atomic_read(&dst_total), delayed, work_performed, |
| 154 | expires, |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 155 | elapsed.tv_sec * USEC_PER_SEC + |
| 156 | elapsed.tv_nsec / NSEC_PER_USEC); |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 157 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Herbert Xu | 352e512 | 2007-11-13 21:34:06 -0800 | [diff] [blame] | 160 | int dst_discard(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | { |
| 162 | kfree_skb(skb); |
| 163 | return 0; |
| 164 | } |
Herbert Xu | 352e512 | 2007-11-13 21:34:06 -0800 | [diff] [blame] | 165 | EXPORT_SYMBOL(dst_discard); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
David S. Miller | 725d1e1 | 2011-01-28 14:05:05 -0800 | [diff] [blame] | 167 | const u32 dst_default_metrics[RTAX_MAX]; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 168 | |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 169 | void *dst_alloc(struct dst_ops *ops, struct net_device *dev, |
| 170 | int initial_ref, int initial_obsolete, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 172 | struct dst_entry *dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 174 | if (ops->gc && dst_entries_get_fast(ops) > ops->gc_thresh) { |
Daniel Lezcano | 569d364 | 2008-01-18 03:56:57 -0800 | [diff] [blame] | 175 | if (ops->gc(ops)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | return NULL; |
| 177 | } |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 178 | dst = kmem_cache_alloc(ops->kmem_cachep, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (!dst) |
| 180 | return NULL; |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 181 | dst->child = NULL; |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 182 | dst->dev = dev; |
| 183 | if (dev) |
| 184 | dev_hold(dev); |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 185 | dst->ops = ops; |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 186 | dst_init_metrics(dst, dst_default_metrics, true); |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 187 | dst->expires = 0UL; |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 188 | dst->path = dst; |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 189 | dst->neighbour = NULL; |
| 190 | dst->hh = NULL; |
| 191 | #ifdef CONFIG_XFRM |
| 192 | dst->xfrm = NULL; |
| 193 | #endif |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 194 | dst->input = dst_discard; |
| 195 | dst->output = dst_discard; |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 196 | dst->error = 0; |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 197 | dst->obsolete = initial_obsolete; |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 198 | dst->header_len = 0; |
| 199 | dst->trailer_len = 0; |
| 200 | #ifdef CONFIG_IP_ROUTE_CLASSID |
| 201 | dst->tclassid = 0; |
| 202 | #endif |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 203 | atomic_set(&dst->__refcnt, initial_ref); |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 204 | dst->__use = 0; |
David S. Miller | 5c1e6aa | 2011-04-28 14:13:38 -0700 | [diff] [blame] | 205 | dst->lastuse = jiffies; |
| 206 | dst->flags = flags; |
David S. Miller | cf91166 | 2011-04-28 14:31:47 -0700 | [diff] [blame^] | 207 | dst->next = NULL; |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 208 | #if RT_CACHE_DEBUG >= 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | atomic_inc(&dst_total); |
| 210 | #endif |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 211 | dst_entries_add(ops, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | return dst; |
| 213 | } |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 214 | EXPORT_SYMBOL(dst_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 216 | static void ___dst_free(struct dst_entry *dst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | { |
| 218 | /* The first case (dev==NULL) is required, when |
| 219 | protocol module is unloaded. |
| 220 | */ |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 221 | if (dst->dev == NULL || !(dst->dev->flags&IFF_UP)) |
Denis Cheng | c4b1010 | 2007-06-05 00:06:57 -0700 | [diff] [blame] | 222 | dst->input = dst->output = dst_discard; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | dst->obsolete = 2; |
| 224 | } |
| 225 | |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 226 | void __dst_free(struct dst_entry *dst) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 228 | spin_lock_bh(&dst_garbage.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | ___dst_free(dst); |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 230 | dst->next = dst_garbage.list; |
| 231 | dst_garbage.list = dst; |
| 232 | if (dst_garbage.timer_inc > DST_GC_INC) { |
| 233 | dst_garbage.timer_inc = DST_GC_INC; |
| 234 | dst_garbage.timer_expires = DST_GC_MIN; |
Benjamin Thery | f262b59 | 2008-09-12 16:16:37 -0700 | [diff] [blame] | 235 | cancel_delayed_work(&dst_gc_work); |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 236 | schedule_delayed_work(&dst_gc_work, dst_garbage.timer_expires); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 238 | spin_unlock_bh(&dst_garbage.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
Nicolas Dichtel | d79d991 | 2010-07-19 23:51:38 +0000 | [diff] [blame] | 240 | EXPORT_SYMBOL(__dst_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
| 242 | struct dst_entry *dst_destroy(struct dst_entry * dst) |
| 243 | { |
| 244 | struct dst_entry *child; |
| 245 | struct neighbour *neigh; |
| 246 | struct hh_cache *hh; |
| 247 | |
| 248 | smp_rmb(); |
| 249 | |
| 250 | again: |
| 251 | neigh = dst->neighbour; |
| 252 | hh = dst->hh; |
| 253 | child = dst->child; |
| 254 | |
| 255 | dst->hh = NULL; |
Eric Dumazet | 34d101d | 2010-10-11 09:16:57 -0700 | [diff] [blame] | 256 | if (hh) |
| 257 | hh_cache_put(hh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
| 259 | if (neigh) { |
| 260 | dst->neighbour = NULL; |
| 261 | neigh_release(neigh); |
| 262 | } |
| 263 | |
Eric Dumazet | fc66f95 | 2010-10-08 06:37:34 +0000 | [diff] [blame] | 264 | dst_entries_add(dst->ops, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | |
| 266 | if (dst->ops->destroy) |
| 267 | dst->ops->destroy(dst); |
| 268 | if (dst->dev) |
| 269 | dev_put(dst->dev); |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 270 | #if RT_CACHE_DEBUG >= 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | atomic_dec(&dst_total); |
| 272 | #endif |
| 273 | kmem_cache_free(dst->ops->kmem_cachep, dst); |
| 274 | |
| 275 | dst = child; |
| 276 | if (dst) { |
Herbert Xu | 6775cab | 2005-04-16 15:24:10 -0700 | [diff] [blame] | 277 | int nohash = dst->flags & DST_NOHASH; |
| 278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | if (atomic_dec_and_test(&dst->__refcnt)) { |
| 280 | /* We were real parent of this dst, so kill child. */ |
Herbert Xu | 6775cab | 2005-04-16 15:24:10 -0700 | [diff] [blame] | 281 | if (nohash) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | goto again; |
| 283 | } else { |
| 284 | /* Child is still referenced, return it for freeing. */ |
Herbert Xu | 6775cab | 2005-04-16 15:24:10 -0700 | [diff] [blame] | 285 | if (nohash) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | return dst; |
| 287 | /* Child is still in his hash table */ |
| 288 | } |
| 289 | } |
| 290 | return NULL; |
| 291 | } |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 292 | EXPORT_SYMBOL(dst_destroy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Ilpo Järvinen | 8d33086 | 2008-03-27 17:53:31 -0700 | [diff] [blame] | 294 | void dst_release(struct dst_entry *dst) |
| 295 | { |
| 296 | if (dst) { |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 297 | int newrefcnt; |
Eric Dumazet | ef711cf | 2008-11-14 00:53:54 -0800 | [diff] [blame] | 298 | |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 299 | newrefcnt = atomic_dec_return(&dst->__refcnt); |
| 300 | WARN_ON(newrefcnt < 0); |
Eric Dumazet | 27b75c9 | 2010-10-15 05:44:11 +0000 | [diff] [blame] | 301 | if (unlikely(dst->flags & DST_NOCACHE) && !newrefcnt) { |
| 302 | dst = dst_destroy(dst); |
| 303 | if (dst) |
| 304 | __dst_free(dst); |
| 305 | } |
Ilpo Järvinen | 8d33086 | 2008-03-27 17:53:31 -0700 | [diff] [blame] | 306 | } |
| 307 | } |
| 308 | EXPORT_SYMBOL(dst_release); |
| 309 | |
David S. Miller | 62fa8a8 | 2011-01-26 20:51:05 -0800 | [diff] [blame] | 310 | u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old) |
| 311 | { |
| 312 | u32 *p = kmalloc(sizeof(u32) * RTAX_MAX, GFP_ATOMIC); |
| 313 | |
| 314 | if (p) { |
| 315 | u32 *old_p = __DST_METRICS_PTR(old); |
| 316 | unsigned long prev, new; |
| 317 | |
| 318 | memcpy(p, old_p, sizeof(u32) * RTAX_MAX); |
| 319 | |
| 320 | new = (unsigned long) p; |
| 321 | prev = cmpxchg(&dst->_metrics, old, new); |
| 322 | |
| 323 | if (prev != old) { |
| 324 | kfree(p); |
| 325 | p = __DST_METRICS_PTR(prev); |
| 326 | if (prev & DST_METRICS_READ_ONLY) |
| 327 | p = NULL; |
| 328 | } |
| 329 | } |
| 330 | return p; |
| 331 | } |
| 332 | EXPORT_SYMBOL(dst_cow_metrics_generic); |
| 333 | |
| 334 | /* Caller asserts that dst_metrics_read_only(dst) is false. */ |
| 335 | void __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old) |
| 336 | { |
| 337 | unsigned long prev, new; |
| 338 | |
| 339 | new = (unsigned long) dst_default_metrics; |
| 340 | prev = cmpxchg(&dst->_metrics, old, new); |
| 341 | if (prev == old) |
| 342 | kfree(__DST_METRICS_PTR(old)); |
| 343 | } |
| 344 | EXPORT_SYMBOL(__dst_destroy_metrics_generic); |
| 345 | |
Eric Dumazet | 27b75c9 | 2010-10-15 05:44:11 +0000 | [diff] [blame] | 346 | /** |
| 347 | * skb_dst_set_noref - sets skb dst, without a reference |
| 348 | * @skb: buffer |
| 349 | * @dst: dst entry |
| 350 | * |
| 351 | * Sets skb dst, assuming a reference was not taken on dst |
| 352 | * skb_dst_drop() should not dst_release() this dst |
| 353 | */ |
| 354 | void skb_dst_set_noref(struct sk_buff *skb, struct dst_entry *dst) |
| 355 | { |
| 356 | WARN_ON(!rcu_read_lock_held() && !rcu_read_lock_bh_held()); |
| 357 | /* If dst not in cache, we must take a reference, because |
| 358 | * dst_release() will destroy dst as soon as its refcount becomes zero |
| 359 | */ |
| 360 | if (unlikely(dst->flags & DST_NOCACHE)) { |
| 361 | dst_hold(dst); |
| 362 | skb_dst_set(skb, dst); |
| 363 | } else { |
| 364 | skb->_skb_refdst = (unsigned long)dst | SKB_DST_NOREF; |
| 365 | } |
| 366 | } |
| 367 | EXPORT_SYMBOL(skb_dst_set_noref); |
| 368 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | /* Dirty hack. We did it in 2.2 (in __dst_free), |
| 370 | * we have _very_ good reasons not to repeat |
| 371 | * this mistake in 2.3, but we have no choice |
| 372 | * now. _It_ _is_ _explicit_ _deliberate_ |
| 373 | * _race_ _condition_. |
| 374 | * |
| 375 | * Commented and originally written by Alexey. |
| 376 | */ |
stephen hemminger | 5611551 | 2010-04-12 07:38:05 +0000 | [diff] [blame] | 377 | static void dst_ifdown(struct dst_entry *dst, struct net_device *dev, |
| 378 | int unregister) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | { |
| 380 | if (dst->ops->ifdown) |
| 381 | dst->ops->ifdown(dst, dev, unregister); |
| 382 | |
| 383 | if (dev != dst->dev) |
| 384 | return; |
| 385 | |
| 386 | if (!unregister) { |
Denis Cheng | c4b1010 | 2007-06-05 00:06:57 -0700 | [diff] [blame] | 387 | dst->input = dst->output = dst_discard; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | } else { |
YOSHIFUJI Hideaki | c346dca | 2008-03-25 21:47:49 +0900 | [diff] [blame] | 389 | dst->dev = dev_net(dst->dev)->loopback_dev; |
Daniel Lezcano | de3cb74 | 2007-09-25 19:16:28 -0700 | [diff] [blame] | 390 | dev_hold(dst->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | dev_put(dev); |
| 392 | if (dst->neighbour && dst->neighbour->dev == dev) { |
Denis V. Lunev | 5a3e55d | 2007-12-07 00:38:10 -0800 | [diff] [blame] | 393 | dst->neighbour->dev = dst->dev; |
Eric Dumazet | 64b7d96 | 2007-12-11 02:00:30 -0800 | [diff] [blame] | 394 | dev_hold(dst->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | dev_put(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
| 397 | } |
| 398 | } |
| 399 | |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 400 | static int dst_dev_event(struct notifier_block *this, unsigned long event, |
| 401 | void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
| 403 | struct net_device *dev = ptr; |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 404 | struct dst_entry *dst, *last = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | switch (event) { |
| 407 | case NETDEV_UNREGISTER: |
| 408 | case NETDEV_DOWN: |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 409 | mutex_lock(&dst_gc_mutex); |
| 410 | for (dst = dst_busy_list; dst; dst = dst->next) { |
| 411 | last = dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | dst_ifdown(dst, dev, event != NETDEV_DOWN); |
| 413 | } |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 414 | |
| 415 | spin_lock_bh(&dst_garbage.lock); |
| 416 | dst = dst_garbage.list; |
| 417 | dst_garbage.list = NULL; |
| 418 | spin_unlock_bh(&dst_garbage.lock); |
| 419 | |
| 420 | if (last) |
| 421 | last->next = dst; |
| 422 | else |
| 423 | dst_busy_list = dst; |
laurent chavey | 598ed93 | 2010-03-29 10:41:36 +0000 | [diff] [blame] | 424 | for (; dst; dst = dst->next) |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 425 | dst_ifdown(dst, dev, event != NETDEV_DOWN); |
Eric Dumazet | 86bba26 | 2007-09-12 14:29:01 +0200 | [diff] [blame] | 426 | mutex_unlock(&dst_gc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | break; |
| 428 | } |
| 429 | return NOTIFY_DONE; |
| 430 | } |
| 431 | |
| 432 | static struct notifier_block dst_dev_notifier = { |
| 433 | .notifier_call = dst_dev_event, |
Eric Dumazet | 332dd96 | 2010-11-09 11:46:33 -0800 | [diff] [blame] | 434 | .priority = -10, /* must be called after other network notifiers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | }; |
| 436 | |
| 437 | void __init dst_init(void) |
| 438 | { |
| 439 | register_netdevice_notifier(&dst_dev_notifier); |
| 440 | } |