blob: 9505778ec800ed2ea86a7aec30a602f7a2804169 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Dumazet86bba262007-09-12 14:29:01 +020012#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/mm.h>
14#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/skbuff.h>
18#include <linux/string.h>
19#include <linux/types.h>
Eric W. Biedermane9dc8652007-09-12 13:02:17 +020020#include <net/net_namespace.h>
Eric Dumazet2fc1b5d2010-02-08 15:00:39 -080021#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <net/dst.h>
24
Eric Dumazet86bba262007-09-12 14:29:01 +020025/*
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 Torvalds1da177e2005-04-16 15:20:36 -070035 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090036#if RT_CACHE_DEBUG >= 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static atomic_t dst_total = ATOMIC_INIT(0);
38#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Eric Dumazet86bba262007-09-12 14:29:01 +020040/*
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 */
45static struct {
46 spinlock_t lock;
laurent chavey598ed932010-03-29 10:41:36 +000047 struct dst_entry *list;
Eric Dumazet86bba262007-09-12 14:29:01 +020048 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};
54static void dst_gc_task(struct work_struct *work);
laurent chavey598ed932010-03-29 10:41:36 +000055static void ___dst_free(struct dst_entry *dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Eric Dumazet86bba262007-09-12 14:29:01 +020057static DECLARE_DELAYED_WORK(dst_gc_work, dst_gc_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Eric Dumazet86bba262007-09-12 14:29:01 +020059static DEFINE_MUTEX(dst_gc_mutex);
60/*
61 * long lived entries are maintained in this list, guarded by dst_gc_mutex
62 */
63static struct dst_entry *dst_busy_list;
64
65static void dst_gc_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 int delayed = 0;
Eric Dumazet86bba262007-09-12 14:29:01 +020068 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 Torvalds1da177e2005-04-16 15:20:36 -070076
Eric Dumazet86bba262007-09-12 14:29:01 +020077 mutex_lock(&dst_gc_mutex);
78 next = dst_busy_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Eric Dumazet86bba262007-09-12 14:29:01 +020080loop:
81 while ((dst = next) != NULL) {
82 next = dst->next;
83 prefetch(&next->next);
Eric Dumazet2fc1b5d2010-02-08 15:00:39 -080084 cond_resched();
Eric Dumazet86bba262007-09-12 14:29:01 +020085 if (likely(atomic_read(&dst->__refcnt))) {
86 last->next = dst;
87 last = dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 delayed++;
89 continue;
90 }
Eric Dumazet86bba262007-09-12 14:29:01 +020091 work_performed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
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 Dumazet86bba262007-09-12 14:29:01 +0200107 dst->next = next;
108 next = dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Eric Dumazet86bba262007-09-12 14:29:01 +0200112 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 chavey598ed932010-03-29 10:41:36 +0000139 * if the next desired timer is more than 4 seconds in the
140 * future then round the timer to whole seconds
Eric Dumazet86bba262007-09-12 14:29:01 +0200141 */
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 chavey598ed932010-03-29 10:41:36 +0000155 elapsed.tv_sec * USEC_PER_SEC +
156 elapsed.tv_nsec / NSEC_PER_USEC);
Eric Dumazet86bba262007-09-12 14:29:01 +0200157#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Herbert Xu352e5122007-11-13 21:34:06 -0800160int dst_discard(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 kfree_skb(skb);
163 return 0;
164}
Herbert Xu352e5122007-11-13 21:34:06 -0800165EXPORT_SYMBOL(dst_discard);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
David S. Miller725d1e12011-01-28 14:05:05 -0800167const u32 dst_default_metrics[RTAX_MAX];
David S. Miller62fa8a82011-01-26 20:51:05 -0800168
David S. Miller5c1e6aa2011-04-28 14:13:38 -0700169void *dst_alloc(struct dst_ops *ops, struct net_device *dev,
170 int initial_ref, int initial_obsolete, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
laurent chavey598ed932010-03-29 10:41:36 +0000172 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Eric Dumazetfc66f952010-10-08 06:37:34 +0000174 if (ops->gc && dst_entries_get_fast(ops) > ops->gc_thresh) {
Daniel Lezcano569d3642008-01-18 03:56:57 -0800175 if (ops->gc(ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return NULL;
177 }
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800178 dst = kmem_cache_zalloc(ops->kmem_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (!dst)
180 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 dst->ops = ops;
David S. Miller5c1e6aa2011-04-28 14:13:38 -0700182 dst->dev = dev;
183 if (dev)
184 dev_hold(dev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800185 dst_init_metrics(dst, dst_default_metrics, true);
David S. Miller5c1e6aa2011-04-28 14:13:38 -0700186 dst->path = dst;
187 dst->input = dst_discard;
188 dst->output = dst_discard;
189
190 dst->obsolete = initial_obsolete;
191 atomic_set(&dst->__refcnt, initial_ref);
192 dst->lastuse = jiffies;
193 dst->flags = flags;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900194#if RT_CACHE_DEBUG >= 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 atomic_inc(&dst_total);
196#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +0000197 dst_entries_add(ops, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return dst;
199}
laurent chavey598ed932010-03-29 10:41:36 +0000200EXPORT_SYMBOL(dst_alloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
laurent chavey598ed932010-03-29 10:41:36 +0000202static void ___dst_free(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 /* The first case (dev==NULL) is required, when
205 protocol module is unloaded.
206 */
laurent chavey598ed932010-03-29 10:41:36 +0000207 if (dst->dev == NULL || !(dst->dev->flags&IFF_UP))
Denis Chengc4b10102007-06-05 00:06:57 -0700208 dst->input = dst->output = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 dst->obsolete = 2;
210}
211
laurent chavey598ed932010-03-29 10:41:36 +0000212void __dst_free(struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Eric Dumazet86bba262007-09-12 14:29:01 +0200214 spin_lock_bh(&dst_garbage.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 ___dst_free(dst);
Eric Dumazet86bba262007-09-12 14:29:01 +0200216 dst->next = dst_garbage.list;
217 dst_garbage.list = dst;
218 if (dst_garbage.timer_inc > DST_GC_INC) {
219 dst_garbage.timer_inc = DST_GC_INC;
220 dst_garbage.timer_expires = DST_GC_MIN;
Benjamin Theryf262b592008-09-12 16:16:37 -0700221 cancel_delayed_work(&dst_gc_work);
Eric Dumazet86bba262007-09-12 14:29:01 +0200222 schedule_delayed_work(&dst_gc_work, dst_garbage.timer_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
Eric Dumazet86bba262007-09-12 14:29:01 +0200224 spin_unlock_bh(&dst_garbage.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
Nicolas Dichteld79d9912010-07-19 23:51:38 +0000226EXPORT_SYMBOL(__dst_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228struct dst_entry *dst_destroy(struct dst_entry * dst)
229{
230 struct dst_entry *child;
231 struct neighbour *neigh;
232 struct hh_cache *hh;
233
234 smp_rmb();
235
236again:
237 neigh = dst->neighbour;
238 hh = dst->hh;
239 child = dst->child;
240
241 dst->hh = NULL;
Eric Dumazet34d101d2010-10-11 09:16:57 -0700242 if (hh)
243 hh_cache_put(hh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 if (neigh) {
246 dst->neighbour = NULL;
247 neigh_release(neigh);
248 }
249
Eric Dumazetfc66f952010-10-08 06:37:34 +0000250 dst_entries_add(dst->ops, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 if (dst->ops->destroy)
253 dst->ops->destroy(dst);
254 if (dst->dev)
255 dev_put(dst->dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900256#if RT_CACHE_DEBUG >= 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 atomic_dec(&dst_total);
258#endif
259 kmem_cache_free(dst->ops->kmem_cachep, dst);
260
261 dst = child;
262 if (dst) {
Herbert Xu6775cab2005-04-16 15:24:10 -0700263 int nohash = dst->flags & DST_NOHASH;
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (atomic_dec_and_test(&dst->__refcnt)) {
266 /* We were real parent of this dst, so kill child. */
Herbert Xu6775cab2005-04-16 15:24:10 -0700267 if (nohash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 goto again;
269 } else {
270 /* Child is still referenced, return it for freeing. */
Herbert Xu6775cab2005-04-16 15:24:10 -0700271 if (nohash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return dst;
273 /* Child is still in his hash table */
274 }
275 }
276 return NULL;
277}
laurent chavey598ed932010-03-29 10:41:36 +0000278EXPORT_SYMBOL(dst_destroy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Ilpo Järvinen8d330862008-03-27 17:53:31 -0700280void dst_release(struct dst_entry *dst)
281{
282 if (dst) {
laurent chavey598ed932010-03-29 10:41:36 +0000283 int newrefcnt;
Eric Dumazetef711cf2008-11-14 00:53:54 -0800284
laurent chavey598ed932010-03-29 10:41:36 +0000285 newrefcnt = atomic_dec_return(&dst->__refcnt);
286 WARN_ON(newrefcnt < 0);
Eric Dumazet27b75c92010-10-15 05:44:11 +0000287 if (unlikely(dst->flags & DST_NOCACHE) && !newrefcnt) {
288 dst = dst_destroy(dst);
289 if (dst)
290 __dst_free(dst);
291 }
Ilpo Järvinen8d330862008-03-27 17:53:31 -0700292 }
293}
294EXPORT_SYMBOL(dst_release);
295
David S. Miller62fa8a82011-01-26 20:51:05 -0800296u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old)
297{
298 u32 *p = kmalloc(sizeof(u32) * RTAX_MAX, GFP_ATOMIC);
299
300 if (p) {
301 u32 *old_p = __DST_METRICS_PTR(old);
302 unsigned long prev, new;
303
304 memcpy(p, old_p, sizeof(u32) * RTAX_MAX);
305
306 new = (unsigned long) p;
307 prev = cmpxchg(&dst->_metrics, old, new);
308
309 if (prev != old) {
310 kfree(p);
311 p = __DST_METRICS_PTR(prev);
312 if (prev & DST_METRICS_READ_ONLY)
313 p = NULL;
314 }
315 }
316 return p;
317}
318EXPORT_SYMBOL(dst_cow_metrics_generic);
319
320/* Caller asserts that dst_metrics_read_only(dst) is false. */
321void __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old)
322{
323 unsigned long prev, new;
324
325 new = (unsigned long) dst_default_metrics;
326 prev = cmpxchg(&dst->_metrics, old, new);
327 if (prev == old)
328 kfree(__DST_METRICS_PTR(old));
329}
330EXPORT_SYMBOL(__dst_destroy_metrics_generic);
331
Eric Dumazet27b75c92010-10-15 05:44:11 +0000332/**
333 * skb_dst_set_noref - sets skb dst, without a reference
334 * @skb: buffer
335 * @dst: dst entry
336 *
337 * Sets skb dst, assuming a reference was not taken on dst
338 * skb_dst_drop() should not dst_release() this dst
339 */
340void skb_dst_set_noref(struct sk_buff *skb, struct dst_entry *dst)
341{
342 WARN_ON(!rcu_read_lock_held() && !rcu_read_lock_bh_held());
343 /* If dst not in cache, we must take a reference, because
344 * dst_release() will destroy dst as soon as its refcount becomes zero
345 */
346 if (unlikely(dst->flags & DST_NOCACHE)) {
347 dst_hold(dst);
348 skb_dst_set(skb, dst);
349 } else {
350 skb->_skb_refdst = (unsigned long)dst | SKB_DST_NOREF;
351 }
352}
353EXPORT_SYMBOL(skb_dst_set_noref);
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355/* Dirty hack. We did it in 2.2 (in __dst_free),
356 * we have _very_ good reasons not to repeat
357 * this mistake in 2.3, but we have no choice
358 * now. _It_ _is_ _explicit_ _deliberate_
359 * _race_ _condition_.
360 *
361 * Commented and originally written by Alexey.
362 */
stephen hemminger56115512010-04-12 07:38:05 +0000363static void dst_ifdown(struct dst_entry *dst, struct net_device *dev,
364 int unregister)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 if (dst->ops->ifdown)
367 dst->ops->ifdown(dst, dev, unregister);
368
369 if (dev != dst->dev)
370 return;
371
372 if (!unregister) {
Denis Chengc4b10102007-06-05 00:06:57 -0700373 dst->input = dst->output = dst_discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 } else {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900375 dst->dev = dev_net(dst->dev)->loopback_dev;
Daniel Lezcanode3cb742007-09-25 19:16:28 -0700376 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 dev_put(dev);
378 if (dst->neighbour && dst->neighbour->dev == dev) {
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800379 dst->neighbour->dev = dst->dev;
Eric Dumazet64b7d962007-12-11 02:00:30 -0800380 dev_hold(dst->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 dev_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383 }
384}
385
laurent chavey598ed932010-03-29 10:41:36 +0000386static int dst_dev_event(struct notifier_block *this, unsigned long event,
387 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 struct net_device *dev = ptr;
Eric Dumazet86bba262007-09-12 14:29:01 +0200390 struct dst_entry *dst, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 switch (event) {
393 case NETDEV_UNREGISTER:
394 case NETDEV_DOWN:
Eric Dumazet86bba262007-09-12 14:29:01 +0200395 mutex_lock(&dst_gc_mutex);
396 for (dst = dst_busy_list; dst; dst = dst->next) {
397 last = dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 dst_ifdown(dst, dev, event != NETDEV_DOWN);
399 }
Eric Dumazet86bba262007-09-12 14:29:01 +0200400
401 spin_lock_bh(&dst_garbage.lock);
402 dst = dst_garbage.list;
403 dst_garbage.list = NULL;
404 spin_unlock_bh(&dst_garbage.lock);
405
406 if (last)
407 last->next = dst;
408 else
409 dst_busy_list = dst;
laurent chavey598ed932010-03-29 10:41:36 +0000410 for (; dst; dst = dst->next)
Eric Dumazet86bba262007-09-12 14:29:01 +0200411 dst_ifdown(dst, dev, event != NETDEV_DOWN);
Eric Dumazet86bba262007-09-12 14:29:01 +0200412 mutex_unlock(&dst_gc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 break;
414 }
415 return NOTIFY_DONE;
416}
417
418static struct notifier_block dst_dev_notifier = {
419 .notifier_call = dst_dev_event,
Eric Dumazet332dd962010-11-09 11:46:33 -0800420 .priority = -10, /* must be called after other network notifiers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421};
422
423void __init dst_init(void)
424{
425 register_netdevice_notifier(&dst_dev_notifier);
426}