blob: 210b7102cc4f760684998629caf5a1f44765bd48 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070023
Hannes Frederic Sowa12809382013-03-15 11:32:30 +000024#include <net/sock.h>
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070025#include <net/inet_frag.h>
26
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070027static void inet_frag_secret_rebuild(unsigned long dummy)
28{
29 struct inet_frags *f = (struct inet_frags *)dummy;
30 unsigned long now = jiffies;
31 int i;
32
33 write_lock(&f->lock);
34 get_random_bytes(&f->rnd, sizeof(u32));
35 for (i = 0; i < INETFRAGS_HASHSZ; i++) {
36 struct inet_frag_queue *q;
37 struct hlist_node *p, *n;
38
39 hlist_for_each_entry_safe(q, p, n, &f->hash[i], list) {
40 unsigned int hval = f->hashfn(q);
41
42 if (hval != i) {
43 hlist_del(&q->list);
44
45 /* Relink to new hash chain. */
46 hlist_add_head(&q->list, &f->hash[hval]);
47 }
48 }
49 }
50 write_unlock(&f->lock);
51
Pavel Emelyanov3b4bc4a2008-01-22 06:11:04 -080052 mod_timer(&f->secret_timer, now + f->secret_interval);
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070053}
54
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070055void inet_frags_init(struct inet_frags *f)
56{
57 int i;
58
59 for (i = 0; i < INETFRAGS_HASHSZ; i++)
60 INIT_HLIST_HEAD(&f->hash[i]);
61
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070062 rwlock_init(&f->lock);
63
64 f->rnd = (u32) ((num_physpages ^ (num_physpages>>7)) ^
65 (jiffies ^ (jiffies >> 6)));
66
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -080067 setup_timer(&f->secret_timer, inet_frag_secret_rebuild,
68 (unsigned long)f);
Pavel Emelyanov3b4bc4a2008-01-22 06:11:04 -080069 f->secret_timer.expires = jiffies + f->secret_interval;
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070070 add_timer(&f->secret_timer);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070071}
72EXPORT_SYMBOL(inet_frags_init);
73
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -080074void inet_frags_init_net(struct netns_frags *nf)
75{
76 nf->nqueues = 0;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -080077 atomic_set(&nf->mem, 0);
Pavel Emelyanov3140c252008-01-22 06:11:48 -080078 INIT_LIST_HEAD(&nf->lru_list);
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -080079}
80EXPORT_SYMBOL(inet_frags_init_net);
81
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070082void inet_frags_fini(struct inet_frags *f)
83{
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070084 del_timer(&f->secret_timer);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070085}
86EXPORT_SYMBOL(inet_frags_fini);
Pavel Emelyanov277e6502007-10-15 02:37:18 -070087
Pavel Emelyanov81566e82008-01-22 06:12:39 -080088void inet_frags_exit_net(struct netns_frags *nf, struct inet_frags *f)
89{
90 nf->low_thresh = 0;
David S. Millere8e16b72008-03-28 17:30:18 -070091
92 local_bh_disable();
Pavel Emelyanov81566e82008-01-22 06:12:39 -080093 inet_frag_evictor(nf, f);
David S. Millere8e16b72008-03-28 17:30:18 -070094 local_bh_enable();
Pavel Emelyanov81566e82008-01-22 06:12:39 -080095}
96EXPORT_SYMBOL(inet_frags_exit_net);
97
Pavel Emelyanov277e6502007-10-15 02:37:18 -070098static inline void fq_unlink(struct inet_frag_queue *fq, struct inet_frags *f)
99{
100 write_lock(&f->lock);
101 hlist_del(&fq->list);
102 list_del(&fq->lru_list);
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800103 fq->net->nqueues--;
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700104 write_unlock(&f->lock);
105}
106
107void inet_frag_kill(struct inet_frag_queue *fq, struct inet_frags *f)
108{
109 if (del_timer(&fq->timer))
110 atomic_dec(&fq->refcnt);
111
Joe Perchesbc578a52008-03-28 16:35:27 -0700112 if (!(fq->last_in & INET_FRAG_COMPLETE)) {
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700113 fq_unlink(fq, f);
114 atomic_dec(&fq->refcnt);
Joe Perchesbc578a52008-03-28 16:35:27 -0700115 fq->last_in |= INET_FRAG_COMPLETE;
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700116 }
117}
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700118EXPORT_SYMBOL(inet_frag_kill);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700119
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800120static inline void frag_kfree_skb(struct netns_frags *nf, struct inet_frags *f,
121 struct sk_buff *skb, int *work)
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700122{
123 if (work)
124 *work -= skb->truesize;
125
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800126 atomic_sub(skb->truesize, &nf->mem);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700127 if (f->skb_free)
128 f->skb_free(skb);
129 kfree_skb(skb);
130}
131
132void inet_frag_destroy(struct inet_frag_queue *q, struct inet_frags *f,
133 int *work)
134{
135 struct sk_buff *fp;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800136 struct netns_frags *nf;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700137
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700138 WARN_ON(!(q->last_in & INET_FRAG_COMPLETE));
139 WARN_ON(del_timer(&q->timer) != 0);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700140
141 /* Release all fragment data. */
142 fp = q->fragments;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800143 nf = q->net;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700144 while (fp) {
145 struct sk_buff *xp = fp->next;
146
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800147 frag_kfree_skb(nf, f, fp, work);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700148 fp = xp;
149 }
150
151 if (work)
152 *work -= f->qsize;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800153 atomic_sub(f->qsize, &nf->mem);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700154
Pavel Emelyanovc9547702007-10-17 19:48:26 -0700155 if (f->destructor)
156 f->destructor(q);
157 kfree(q);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700158
159}
160EXPORT_SYMBOL(inet_frag_destroy);
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700161
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800162int inet_frag_evictor(struct netns_frags *nf, struct inet_frags *f)
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700163{
164 struct inet_frag_queue *q;
165 int work, evicted = 0;
166
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800167 work = atomic_read(&nf->mem) - nf->low_thresh;
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700168 while (work > 0) {
169 read_lock(&f->lock);
Pavel Emelyanov3140c252008-01-22 06:11:48 -0800170 if (list_empty(&nf->lru_list)) {
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700171 read_unlock(&f->lock);
172 break;
173 }
174
Pavel Emelyanov3140c252008-01-22 06:11:48 -0800175 q = list_first_entry(&nf->lru_list,
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700176 struct inet_frag_queue, lru_list);
177 atomic_inc(&q->refcnt);
178 read_unlock(&f->lock);
179
180 spin_lock(&q->lock);
Joe Perchesbc578a52008-03-28 16:35:27 -0700181 if (!(q->last_in & INET_FRAG_COMPLETE))
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700182 inet_frag_kill(q, f);
183 spin_unlock(&q->lock);
184
185 if (atomic_dec_and_test(&q->refcnt))
186 inet_frag_destroy(q, f, &work);
187 evicted++;
188 }
189
190 return evicted;
191}
192EXPORT_SYMBOL(inet_frag_evictor);
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700193
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800194static struct inet_frag_queue *inet_frag_intern(struct netns_frags *nf,
195 struct inet_frag_queue *qp_in, struct inet_frags *f,
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700196 void *arg)
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700197{
198 struct inet_frag_queue *qp;
199#ifdef CONFIG_SMP
200 struct hlist_node *n;
201#endif
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700202 unsigned int hash;
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700203
204 write_lock(&f->lock);
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700205 /*
206 * While we stayed w/o the lock other CPU could update
207 * the rnd seed, so we need to re-calculate the hash
208 * chain. Fortunatelly the qp_in can be used to get one.
209 */
210 hash = f->hashfn(qp_in);
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700211#ifdef CONFIG_SMP
212 /* With SMP race we have to recheck hash table, because
213 * such entry could be created on other cpu, while we
214 * promoted read lock to write lock.
215 */
216 hlist_for_each_entry(qp, n, &f->hash[hash], list) {
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800217 if (qp->net == nf && f->match(qp, arg)) {
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700218 atomic_inc(&qp->refcnt);
219 write_unlock(&f->lock);
Joe Perchesbc578a52008-03-28 16:35:27 -0700220 qp_in->last_in |= INET_FRAG_COMPLETE;
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700221 inet_frag_put(qp_in, f);
222 return qp;
223 }
224 }
225#endif
226 qp = qp_in;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800227 if (!mod_timer(&qp->timer, jiffies + nf->timeout))
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700228 atomic_inc(&qp->refcnt);
229
230 atomic_inc(&qp->refcnt);
231 hlist_add_head(&qp->list, &f->hash[hash]);
Pavel Emelyanov3140c252008-01-22 06:11:48 -0800232 list_add_tail(&qp->lru_list, &nf->lru_list);
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800233 nf->nqueues++;
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700234 write_unlock(&f->lock);
235 return qp;
236}
Pavel Emelyanove521db92007-10-17 19:45:23 -0700237
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800238static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf,
239 struct inet_frags *f, void *arg)
Pavel Emelyanove521db92007-10-17 19:45:23 -0700240{
241 struct inet_frag_queue *q;
242
243 q = kzalloc(f->qsize, GFP_ATOMIC);
244 if (q == NULL)
245 return NULL;
246
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700247 f->constructor(q, arg);
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800248 atomic_add(f->qsize, &nf->mem);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700249 setup_timer(&q->timer, f->frag_expire, (unsigned long)q);
250 spin_lock_init(&q->lock);
251 atomic_set(&q->refcnt, 1);
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800252 q->net = nf;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700253
254 return q;
255}
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700256
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800257static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf,
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700258 struct inet_frags *f, void *arg)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700259{
260 struct inet_frag_queue *q;
261
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800262 q = inet_frag_alloc(nf, f, arg);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700263 if (q == NULL)
264 return NULL;
265
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700266 return inet_frag_intern(nf, q, f, arg);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700267}
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700268
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800269struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
270 struct inet_frags *f, void *key, unsigned int hash)
Hannes Eder56bca312009-02-25 10:32:52 +0000271 __releases(&f->lock)
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700272{
273 struct inet_frag_queue *q;
274 struct hlist_node *n;
Hannes Frederic Sowa12809382013-03-15 11:32:30 +0000275 int depth = 0;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700276
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700277 hlist_for_each_entry(q, n, &f->hash[hash], list) {
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800278 if (q->net == nf && f->match(q, key)) {
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700279 atomic_inc(&q->refcnt);
280 read_unlock(&f->lock);
281 return q;
282 }
Hannes Frederic Sowa12809382013-03-15 11:32:30 +0000283 depth++;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700284 }
285 read_unlock(&f->lock);
286
Hannes Frederic Sowa12809382013-03-15 11:32:30 +0000287 if (depth <= INETFRAGS_MAXDEPTH)
288 return inet_frag_create(nf, f, key);
289 else
290 return ERR_PTR(-ENOBUFS);
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700291}
292EXPORT_SYMBOL(inet_frag_find);
Hannes Frederic Sowa12809382013-03-15 11:32:30 +0000293
294void inet_frag_maybe_warn_overflow(struct inet_frag_queue *q,
295 const char *prefix)
296{
297 static const char msg[] = "inet_frag_find: Fragment hash bucket"
298 " list length grew over limit " __stringify(INETFRAGS_MAXDEPTH)
299 ". Dropping fragment.\n";
300
301 if (PTR_ERR(q) == -ENOBUFS)
302 LIMIT_NETDEBUG(KERN_WARNING "%s%s", prefix, msg);
303}
304EXPORT_SYMBOL(inet_frag_maybe_warn_overflow);