blob: 9da96792fffb8f8a2d78543f3132101f260be9ab [file] [log] [blame]
Pavel Emelyanov7eb95152007-10-15 02:31:52 -07001/*
2 * inet fragments management
3 *
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.
8 *
9 * Authors: Pavel Emelyanov <xemul@openvz.org>
10 * Started as consolidation of ipv4/ip_fragment.c,
11 * ipv6/reassembly. and ipv6 nf conntrack reassembly
12 */
13
14#include <linux/list.h>
15#include <linux/spinlock.h>
16#include <linux/module.h>
17#include <linux/timer.h>
18#include <linux/mm.h>
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070019#include <linux/random.h>
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -070020#include <linux/skbuff.h>
21#include <linux/rtnetlink.h>
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070022
23#include <net/inet_frag.h>
24
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070025static void inet_frag_secret_rebuild(unsigned long dummy)
26{
27 struct inet_frags *f = (struct inet_frags *)dummy;
28 unsigned long now = jiffies;
29 int i;
30
31 write_lock(&f->lock);
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;
36
37 hlist_for_each_entry_safe(q, p, n, &f->hash[i], list) {
38 unsigned int hval = f->hashfn(q);
39
40 if (hval != i) {
41 hlist_del(&q->list);
42
43 /* Relink to new hash chain. */
44 hlist_add_head(&q->list, &f->hash[hval]);
45 }
46 }
47 }
48 write_unlock(&f->lock);
49
50 mod_timer(&f->secret_timer, now + f->ctl->secret_interval);
51}
52
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070053void inet_frags_init(struct inet_frags *f)
54{
55 int i;
56
57 for (i = 0; i < INETFRAGS_HASHSZ; i++)
58 INIT_HLIST_HEAD(&f->hash[i]);
59
60 INIT_LIST_HEAD(&f->lru_list);
61 rwlock_init(&f->lock);
62
63 f->rnd = (u32) ((num_physpages ^ (num_physpages>>7)) ^
64 (jiffies ^ (jiffies >> 6)));
65
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -080066 setup_timer(&f->secret_timer, inet_frag_secret_rebuild,
67 (unsigned long)f);
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070068 f->secret_timer.expires = jiffies + f->ctl->secret_interval;
69 add_timer(&f->secret_timer);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070070}
71EXPORT_SYMBOL(inet_frags_init);
72
Pavel Emelyanove5a2bb8422008-01-22 06:06:23 -080073void inet_frags_init_net(struct netns_frags *nf)
74{
75 nf->nqueues = 0;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -080076 atomic_set(&nf->mem, 0);
Pavel Emelyanove5a2bb8422008-01-22 06:06:23 -080077}
78EXPORT_SYMBOL(inet_frags_init_net);
79
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070080void inet_frags_fini(struct inet_frags *f)
81{
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070082 del_timer(&f->secret_timer);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070083}
84EXPORT_SYMBOL(inet_frags_fini);
Pavel Emelyanov277e6502007-10-15 02:37:18 -070085
86static inline void fq_unlink(struct inet_frag_queue *fq, struct inet_frags *f)
87{
88 write_lock(&f->lock);
89 hlist_del(&fq->list);
90 list_del(&fq->lru_list);
Pavel Emelyanove5a2bb8422008-01-22 06:06:23 -080091 fq->net->nqueues--;
Pavel Emelyanov277e6502007-10-15 02:37:18 -070092 write_unlock(&f->lock);
93}
94
95void inet_frag_kill(struct inet_frag_queue *fq, struct inet_frags *f)
96{
97 if (del_timer(&fq->timer))
98 atomic_dec(&fq->refcnt);
99
100 if (!(fq->last_in & COMPLETE)) {
101 fq_unlink(fq, f);
102 atomic_dec(&fq->refcnt);
103 fq->last_in |= COMPLETE;
104 }
105}
106
107EXPORT_SYMBOL(inet_frag_kill);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700108
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800109static inline void frag_kfree_skb(struct netns_frags *nf, struct inet_frags *f,
110 struct sk_buff *skb, int *work)
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700111{
112 if (work)
113 *work -= skb->truesize;
114
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800115 atomic_sub(skb->truesize, &nf->mem);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700116 if (f->skb_free)
117 f->skb_free(skb);
118 kfree_skb(skb);
119}
120
121void inet_frag_destroy(struct inet_frag_queue *q, struct inet_frags *f,
122 int *work)
123{
124 struct sk_buff *fp;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800125 struct netns_frags *nf;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700126
127 BUG_TRAP(q->last_in & COMPLETE);
128 BUG_TRAP(del_timer(&q->timer) == 0);
129
130 /* Release all fragment data. */
131 fp = q->fragments;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800132 nf = q->net;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700133 while (fp) {
134 struct sk_buff *xp = fp->next;
135
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800136 frag_kfree_skb(nf, f, fp, work);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700137 fp = xp;
138 }
139
140 if (work)
141 *work -= f->qsize;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800142 atomic_sub(f->qsize, &nf->mem);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700143
Pavel Emelyanovc9547702007-10-17 19:48:26 -0700144 if (f->destructor)
145 f->destructor(q);
146 kfree(q);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700147
148}
149EXPORT_SYMBOL(inet_frag_destroy);
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700150
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800151int inet_frag_evictor(struct netns_frags *nf, struct inet_frags *f)
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700152{
153 struct inet_frag_queue *q;
154 int work, evicted = 0;
155
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800156 work = atomic_read(&nf->mem) - f->ctl->low_thresh;
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700157 while (work > 0) {
158 read_lock(&f->lock);
159 if (list_empty(&f->lru_list)) {
160 read_unlock(&f->lock);
161 break;
162 }
163
164 q = list_first_entry(&f->lru_list,
165 struct inet_frag_queue, lru_list);
166 atomic_inc(&q->refcnt);
167 read_unlock(&f->lock);
168
169 spin_lock(&q->lock);
170 if (!(q->last_in & COMPLETE))
171 inet_frag_kill(q, f);
172 spin_unlock(&q->lock);
173
174 if (atomic_dec_and_test(&q->refcnt))
175 inet_frag_destroy(q, f, &work);
176 evicted++;
177 }
178
179 return evicted;
180}
181EXPORT_SYMBOL(inet_frag_evictor);
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700182
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800183static struct inet_frag_queue *inet_frag_intern(struct netns_frags *nf,
184 struct inet_frag_queue *qp_in, struct inet_frags *f,
185 unsigned int hash, void *arg)
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700186{
187 struct inet_frag_queue *qp;
188#ifdef CONFIG_SMP
189 struct hlist_node *n;
190#endif
191
192 write_lock(&f->lock);
193#ifdef CONFIG_SMP
194 /* With SMP race we have to recheck hash table, because
195 * such entry could be created on other cpu, while we
196 * promoted read lock to write lock.
197 */
198 hlist_for_each_entry(qp, n, &f->hash[hash], list) {
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800199 if (qp->net == nf && f->match(qp, arg)) {
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700200 atomic_inc(&qp->refcnt);
201 write_unlock(&f->lock);
202 qp_in->last_in |= COMPLETE;
203 inet_frag_put(qp_in, f);
204 return qp;
205 }
206 }
207#endif
208 qp = qp_in;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800209 if (!mod_timer(&qp->timer, jiffies + nf->timeout))
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700210 atomic_inc(&qp->refcnt);
211
212 atomic_inc(&qp->refcnt);
213 hlist_add_head(&qp->list, &f->hash[hash]);
214 list_add_tail(&qp->lru_list, &f->lru_list);
Pavel Emelyanove5a2bb8422008-01-22 06:06:23 -0800215 nf->nqueues++;
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700216 write_unlock(&f->lock);
217 return qp;
218}
Pavel Emelyanove521db92007-10-17 19:45:23 -0700219
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800220static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf,
221 struct inet_frags *f, void *arg)
Pavel Emelyanove521db92007-10-17 19:45:23 -0700222{
223 struct inet_frag_queue *q;
224
225 q = kzalloc(f->qsize, GFP_ATOMIC);
226 if (q == NULL)
227 return NULL;
228
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700229 f->constructor(q, arg);
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800230 atomic_add(f->qsize, &nf->mem);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700231 setup_timer(&q->timer, f->frag_expire, (unsigned long)q);
232 spin_lock_init(&q->lock);
233 atomic_set(&q->refcnt, 1);
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800234 q->net = nf;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700235
236 return q;
237}
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700238
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800239static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf,
240 struct inet_frags *f, void *arg, unsigned int hash)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700241{
242 struct inet_frag_queue *q;
243
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800244 q = inet_frag_alloc(nf, f, arg);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700245 if (q == NULL)
246 return NULL;
247
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800248 return inet_frag_intern(nf, q, f, hash, arg);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700249}
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700250
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800251struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
252 struct inet_frags *f, void *key, unsigned int hash)
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700253{
254 struct inet_frag_queue *q;
255 struct hlist_node *n;
256
257 read_lock(&f->lock);
258 hlist_for_each_entry(q, n, &f->hash[hash], list) {
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800259 if (q->net == nf && f->match(q, key)) {
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700260 atomic_inc(&q->refcnt);
261 read_unlock(&f->lock);
262 return q;
263 }
264 }
265 read_unlock(&f->lock);
266
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800267 return inet_frag_create(nf, f, key, hash);
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700268}
269EXPORT_SYMBOL(inet_frag_find);