2 * inet fragments management
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * Authors: Pavel Emelyanov <xemul@openvz.org>
10 * Started as consolidation of ipv4/ip_fragment.c,
11 * ipv6/reassembly. and ipv6 nf conntrack reassembly
14 #include <linux/list.h>
15 #include <linux/spinlock.h>
16 #include <linux/module.h>
17 #include <linux/timer.h>
19 #include <linux/random.h>
20 #include <linux/skbuff.h>
21 #include <linux/rtnetlink.h>
23 #include <net/inet_frag.h>
25 static void inet_frag_secret_rebuild(unsigned long dummy
)
27 struct inet_frags
*f
= (struct inet_frags
*)dummy
;
28 unsigned long now
= jiffies
;
32 get_random_bytes(&f
->rnd
, sizeof(u32
));
33 for (i
= 0; i
< INETFRAGS_HASHSZ
; i
++) {
34 struct inet_frag_queue
*q
;
35 struct hlist_node
*p
, *n
;
37 hlist_for_each_entry_safe(q
, p
, n
, &f
->hash
[i
], list
) {
38 unsigned int hval
= f
->hashfn(q
);
43 /* Relink to new hash chain. */
44 hlist_add_head(&q
->list
, &f
->hash
[hval
]);
48 write_unlock(&f
->lock
);
50 mod_timer(&f
->secret_timer
, now
+ f
->ctl
->secret_interval
);
53 void inet_frags_init(struct inet_frags
*f
)
57 for (i
= 0; i
< INETFRAGS_HASHSZ
; i
++)
58 INIT_HLIST_HEAD(&f
->hash
[i
]);
60 INIT_LIST_HEAD(&f
->lru_list
);
61 rwlock_init(&f
->lock
);
63 f
->rnd
= (u32
) ((num_physpages
^ (num_physpages
>>7)) ^
64 (jiffies
^ (jiffies
>> 6)));
67 atomic_set(&f
->mem
, 0);
69 init_timer(&f
->secret_timer
);
70 f
->secret_timer
.function
= inet_frag_secret_rebuild
;
71 f
->secret_timer
.data
= (unsigned long)f
;
72 f
->secret_timer
.expires
= jiffies
+ f
->ctl
->secret_interval
;
73 add_timer(&f
->secret_timer
);
75 EXPORT_SYMBOL(inet_frags_init
);
77 void inet_frags_fini(struct inet_frags
*f
)
79 del_timer(&f
->secret_timer
);
81 EXPORT_SYMBOL(inet_frags_fini
);
83 static inline void fq_unlink(struct inet_frag_queue
*fq
, struct inet_frags
*f
)
87 list_del(&fq
->lru_list
);
89 write_unlock(&f
->lock
);
92 void inet_frag_kill(struct inet_frag_queue
*fq
, struct inet_frags
*f
)
94 if (del_timer(&fq
->timer
))
95 atomic_dec(&fq
->refcnt
);
97 if (!(fq
->last_in
& COMPLETE
)) {
99 atomic_dec(&fq
->refcnt
);
100 fq
->last_in
|= COMPLETE
;
104 EXPORT_SYMBOL(inet_frag_kill
);
106 static inline void frag_kfree_skb(struct inet_frags
*f
, struct sk_buff
*skb
,
110 *work
-= skb
->truesize
;
112 atomic_sub(skb
->truesize
, &f
->mem
);
118 void inet_frag_destroy(struct inet_frag_queue
*q
, struct inet_frags
*f
,
123 BUG_TRAP(q
->last_in
& COMPLETE
);
124 BUG_TRAP(del_timer(&q
->timer
) == 0);
126 /* Release all fragment data. */
129 struct sk_buff
*xp
= fp
->next
;
131 frag_kfree_skb(f
, fp
, work
);
137 atomic_sub(f
->qsize
, &f
->mem
);
144 EXPORT_SYMBOL(inet_frag_destroy
);
146 int inet_frag_evictor(struct inet_frags
*f
)
148 struct inet_frag_queue
*q
;
149 int work
, evicted
= 0;
151 work
= atomic_read(&f
->mem
) - f
->ctl
->low_thresh
;
154 if (list_empty(&f
->lru_list
)) {
155 read_unlock(&f
->lock
);
159 q
= list_first_entry(&f
->lru_list
,
160 struct inet_frag_queue
, lru_list
);
161 atomic_inc(&q
->refcnt
);
162 read_unlock(&f
->lock
);
165 if (!(q
->last_in
& COMPLETE
))
166 inet_frag_kill(q
, f
);
167 spin_unlock(&q
->lock
);
169 if (atomic_dec_and_test(&q
->refcnt
))
170 inet_frag_destroy(q
, f
, &work
);
176 EXPORT_SYMBOL(inet_frag_evictor
);
178 static struct inet_frag_queue
*inet_frag_intern(struct inet_frag_queue
*qp_in
,
179 struct inet_frags
*f
, unsigned int hash
, void *arg
)
181 struct inet_frag_queue
*qp
;
183 struct hlist_node
*n
;
186 write_lock(&f
->lock
);
188 /* With SMP race we have to recheck hash table, because
189 * such entry could be created on other cpu, while we
190 * promoted read lock to write lock.
192 hlist_for_each_entry(qp
, n
, &f
->hash
[hash
], list
) {
193 if (f
->match(qp
, arg
)) {
194 atomic_inc(&qp
->refcnt
);
195 write_unlock(&f
->lock
);
196 qp_in
->last_in
|= COMPLETE
;
197 inet_frag_put(qp_in
, f
);
203 if (!mod_timer(&qp
->timer
, jiffies
+ f
->ctl
->timeout
))
204 atomic_inc(&qp
->refcnt
);
206 atomic_inc(&qp
->refcnt
);
207 hlist_add_head(&qp
->list
, &f
->hash
[hash
]);
208 list_add_tail(&qp
->lru_list
, &f
->lru_list
);
210 write_unlock(&f
->lock
);
214 static struct inet_frag_queue
*inet_frag_alloc(struct inet_frags
*f
, void *arg
)
216 struct inet_frag_queue
*q
;
218 q
= kzalloc(f
->qsize
, GFP_ATOMIC
);
222 f
->constructor(q
, arg
);
223 atomic_add(f
->qsize
, &f
->mem
);
224 setup_timer(&q
->timer
, f
->frag_expire
, (unsigned long)q
);
225 spin_lock_init(&q
->lock
);
226 atomic_set(&q
->refcnt
, 1);
231 static struct inet_frag_queue
*inet_frag_create(struct inet_frags
*f
,
232 void *arg
, unsigned int hash
)
234 struct inet_frag_queue
*q
;
236 q
= inet_frag_alloc(f
, arg
);
240 return inet_frag_intern(q
, f
, hash
, arg
);
243 struct inet_frag_queue
*inet_frag_find(struct inet_frags
*f
, void *key
,
246 struct inet_frag_queue
*q
;
247 struct hlist_node
*n
;
250 hlist_for_each_entry(q
, n
, &f
->hash
[hash
], list
) {
251 if (f
->match(q
, key
)) {
252 atomic_inc(&q
->refcnt
);
253 read_unlock(&f
->lock
);
257 read_unlock(&f
->lock
);
259 return inet_frag_create(f
, key
, hash
);
261 EXPORT_SYMBOL(inet_frag_find
);