2 * net/core/dst.c Protocol independent destination cache.
4 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8 #include <linux/bitops.h>
9 #include <linux/errno.h>
10 #include <linux/init.h>
11 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/netdevice.h>
15 #include <linux/sched.h>
16 #include <linux/skbuff.h>
17 #include <linux/string.h>
18 #include <linux/types.h>
23 * 1) Garbage collection state of dead destination cache
24 * entries is protected by dst_lock.
25 * 2) GC is run only from BH context, and is the only remover
27 * 3) Entries are added to the garbage list from both BH
28 * and non-BH context, so local BH disabling is needed.
29 * 4) All operations modify state, so a spinlock is used.
31 static struct dst_entry
*dst_garbage_list
;
32 #if RT_CACHE_DEBUG >= 2
33 static atomic_t dst_total
= ATOMIC_INIT(0);
35 static DEFINE_SPINLOCK(dst_lock
);
37 static unsigned long dst_gc_timer_expires
;
38 static unsigned long dst_gc_timer_inc
= DST_GC_MAX
;
39 static void dst_run_gc(unsigned long);
40 static void ___dst_free(struct dst_entry
* dst
);
42 static DEFINE_TIMER(dst_gc_timer
, dst_run_gc
, DST_GC_MIN
, 0);
44 static void dst_run_gc(unsigned long dummy
)
48 struct dst_entry
* dst
, **dstp
;
50 if (!spin_trylock(&dst_lock
)) {
51 mod_timer(&dst_gc_timer
, jiffies
+ HZ
/10);
55 del_timer(&dst_gc_timer
);
56 dstp
= &dst_garbage_list
;
58 while ((dst
= *dstp
) != NULL
) {
59 if (atomic_read(&dst
->__refcnt
)) {
67 dst
= dst_destroy(dst
);
69 /* NOHASH and still referenced. Unless it is already
70 * on gc list, invalidate it and add to gc list.
72 * Note: this is temporary. Actually, NOHASH dst's
73 * must be obsoleted when parent is obsoleted.
74 * But we do not have state "obsoleted, but
75 * referenced by parent", so it is right.
77 if (dst
->obsolete
> 1)
86 if (!dst_garbage_list
) {
87 dst_gc_timer_inc
= DST_GC_MAX
;
90 if (!work_performed
) {
91 if ((dst_gc_timer_expires
+= dst_gc_timer_inc
) > DST_GC_MAX
)
92 dst_gc_timer_expires
= DST_GC_MAX
;
93 dst_gc_timer_inc
+= DST_GC_INC
;
95 dst_gc_timer_inc
= DST_GC_INC
;
96 dst_gc_timer_expires
= DST_GC_MIN
;
98 dst_gc_timer
.expires
= jiffies
+ dst_gc_timer_expires
;
99 #if RT_CACHE_DEBUG >= 2
100 printk("dst_total: %d/%d %ld\n",
101 atomic_read(&dst_total
), delayed
, dst_gc_timer_expires
);
103 add_timer(&dst_gc_timer
);
106 spin_unlock(&dst_lock
);
109 static int dst_discard_in(struct sk_buff
*skb
)
115 static int dst_discard_out(struct sk_buff
*skb
)
121 void * dst_alloc(struct dst_ops
* ops
)
123 struct dst_entry
* dst
;
125 if (ops
->gc
&& atomic_read(&ops
->entries
) > ops
->gc_thresh
) {
129 dst
= kmem_cache_alloc(ops
->kmem_cachep
, SLAB_ATOMIC
);
132 memset(dst
, 0, ops
->entry_size
);
133 atomic_set(&dst
->__refcnt
, 0);
135 dst
->lastuse
= jiffies
;
137 dst
->input
= dst_discard_in
;
138 dst
->output
= dst_discard_out
;
139 #if RT_CACHE_DEBUG >= 2
140 atomic_inc(&dst_total
);
142 atomic_inc(&ops
->entries
);
146 static void ___dst_free(struct dst_entry
* dst
)
148 /* The first case (dev==NULL) is required, when
149 protocol module is unloaded.
151 if (dst
->dev
== NULL
|| !(dst
->dev
->flags
&IFF_UP
)) {
152 dst
->input
= dst_discard_in
;
153 dst
->output
= dst_discard_out
;
158 void __dst_free(struct dst_entry
* dst
)
160 spin_lock_bh(&dst_lock
);
162 dst
->next
= dst_garbage_list
;
163 dst_garbage_list
= dst
;
164 if (dst_gc_timer_inc
> DST_GC_INC
) {
165 dst_gc_timer_inc
= DST_GC_INC
;
166 dst_gc_timer_expires
= DST_GC_MIN
;
167 mod_timer(&dst_gc_timer
, jiffies
+ dst_gc_timer_expires
);
169 spin_unlock_bh(&dst_lock
);
172 struct dst_entry
*dst_destroy(struct dst_entry
* dst
)
174 struct dst_entry
*child
;
175 struct neighbour
*neigh
;
181 neigh
= dst
->neighbour
;
186 if (hh
&& atomic_dec_and_test(&hh
->hh_refcnt
))
190 dst
->neighbour
= NULL
;
191 neigh_release(neigh
);
194 atomic_dec(&dst
->ops
->entries
);
196 if (dst
->ops
->destroy
)
197 dst
->ops
->destroy(dst
);
200 #if RT_CACHE_DEBUG >= 2
201 atomic_dec(&dst_total
);
203 kmem_cache_free(dst
->ops
->kmem_cachep
, dst
);
207 int nohash
= dst
->flags
& DST_NOHASH
;
209 if (atomic_dec_and_test(&dst
->__refcnt
)) {
210 /* We were real parent of this dst, so kill child. */
214 /* Child is still referenced, return it for freeing. */
217 /* Child is still in his hash table */
223 /* Dirty hack. We did it in 2.2 (in __dst_free),
224 * we have _very_ good reasons not to repeat
225 * this mistake in 2.3, but we have no choice
226 * now. _It_ _is_ _explicit_ _deliberate_
227 * _race_ _condition_.
229 * Commented and originally written by Alexey.
231 static inline void dst_ifdown(struct dst_entry
*dst
, struct net_device
*dev
,
234 if (dst
->ops
->ifdown
)
235 dst
->ops
->ifdown(dst
, dev
, unregister
);
241 dst
->input
= dst_discard_in
;
242 dst
->output
= dst_discard_out
;
244 dst
->dev
= &loopback_dev
;
245 dev_hold(&loopback_dev
);
247 if (dst
->neighbour
&& dst
->neighbour
->dev
== dev
) {
248 dst
->neighbour
->dev
= &loopback_dev
;
250 dev_hold(&loopback_dev
);
255 static int dst_dev_event(struct notifier_block
*this, unsigned long event
, void *ptr
)
257 struct net_device
*dev
= ptr
;
258 struct dst_entry
*dst
;
261 case NETDEV_UNREGISTER
:
263 spin_lock_bh(&dst_lock
);
264 for (dst
= dst_garbage_list
; dst
; dst
= dst
->next
) {
265 dst_ifdown(dst
, dev
, event
!= NETDEV_DOWN
);
267 spin_unlock_bh(&dst_lock
);
273 static struct notifier_block dst_dev_notifier
= {
274 .notifier_call
= dst_dev_event
,
277 void __init
dst_init(void)
279 register_netdevice_notifier(&dst_dev_notifier
);
282 EXPORT_SYMBOL(__dst_free
);
283 EXPORT_SYMBOL(dst_alloc
);
284 EXPORT_SYMBOL(dst_destroy
);