blob: f4fd23de9b13103b10351310aea08c47d0429d38 [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 Sowa5a3da1f2013-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;
Sasha Levinb67bfe02013-02-27 17:06:00 -080037 struct hlist_node *n;
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070038
Sasha Levinb67bfe02013-02-27 17:06:00 -080039 hlist_for_each_entry_safe(q, n, &f->hash[i], list) {
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070040 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;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +000077 init_frag_mem_limit(nf);
Pavel Emelyanov3140c252008-01-22 06:11:48 -080078 INIT_LIST_HEAD(&nf->lru_list);
Jesper Dangaard Brouer3ef0eb02013-01-28 23:45:51 +000079 spin_lock_init(&nf->lru_lock);
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -080080}
81EXPORT_SYMBOL(inet_frags_init_net);
82
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070083void inet_frags_fini(struct inet_frags *f)
84{
Pavel Emelyanov321a3a92007-10-15 02:38:08 -070085 del_timer(&f->secret_timer);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070086}
87EXPORT_SYMBOL(inet_frags_fini);
Pavel Emelyanov277e6502007-10-15 02:37:18 -070088
Pavel Emelyanov81566e82008-01-22 06:12:39 -080089void inet_frags_exit_net(struct netns_frags *nf, struct inet_frags *f)
90{
91 nf->low_thresh = 0;
David S. Millere8e16b702008-03-28 17:30:18 -070092
93 local_bh_disable();
Amerigo Wang6b102862012-09-18 16:50:11 +000094 inet_frag_evictor(nf, f, true);
David S. Millere8e16b702008-03-28 17:30:18 -070095 local_bh_enable();
Jesper Dangaard Brouer6d7b8572013-01-28 23:45:33 +000096
97 percpu_counter_destroy(&nf->mem);
Pavel Emelyanov81566e82008-01-22 06:12:39 -080098}
99EXPORT_SYMBOL(inet_frags_exit_net);
100
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700101static inline void fq_unlink(struct inet_frag_queue *fq, struct inet_frags *f)
102{
103 write_lock(&f->lock);
104 hlist_del(&fq->list);
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800105 fq->net->nqueues--;
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700106 write_unlock(&f->lock);
Jesper Dangaard Brouer3ef0eb02013-01-28 23:45:51 +0000107 inet_frag_lru_del(fq);
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700108}
109
110void inet_frag_kill(struct inet_frag_queue *fq, struct inet_frags *f)
111{
112 if (del_timer(&fq->timer))
113 atomic_dec(&fq->refcnt);
114
Joe Perchesbc578a52008-03-28 16:35:27 -0700115 if (!(fq->last_in & INET_FRAG_COMPLETE)) {
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700116 fq_unlink(fq, f);
117 atomic_dec(&fq->refcnt);
Joe Perchesbc578a52008-03-28 16:35:27 -0700118 fq->last_in |= INET_FRAG_COMPLETE;
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700119 }
120}
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700121EXPORT_SYMBOL(inet_frag_kill);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700122
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800123static inline void frag_kfree_skb(struct netns_frags *nf, struct inet_frags *f,
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000124 struct sk_buff *skb)
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700125{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700126 if (f->skb_free)
127 f->skb_free(skb);
128 kfree_skb(skb);
129}
130
131void inet_frag_destroy(struct inet_frag_queue *q, struct inet_frags *f,
132 int *work)
133{
134 struct sk_buff *fp;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800135 struct netns_frags *nf;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000136 unsigned int sum, sum_truesize = 0;
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
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000147 sum_truesize += fp->truesize;
148 frag_kfree_skb(nf, f, fp);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700149 fp = xp;
150 }
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000151 sum = sum_truesize + f->qsize;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700152 if (work)
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000153 *work -= sum;
154 sub_frag_mem_limit(q, sum);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700155
Pavel Emelyanovc9547702007-10-17 19:48:26 -0700156 if (f->destructor)
157 f->destructor(q);
158 kfree(q);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700159
160}
161EXPORT_SYMBOL(inet_frag_destroy);
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700162
Amerigo Wang6b102862012-09-18 16:50:11 +0000163int inet_frag_evictor(struct netns_frags *nf, struct inet_frags *f, bool force)
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700164{
165 struct inet_frag_queue *q;
166 int work, evicted = 0;
167
Amerigo Wang6b102862012-09-18 16:50:11 +0000168 if (!force) {
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000169 if (frag_mem_limit(nf) <= nf->high_thresh)
Amerigo Wang6b102862012-09-18 16:50:11 +0000170 return 0;
171 }
172
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000173 work = frag_mem_limit(nf) - nf->low_thresh;
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700174 while (work > 0) {
Jesper Dangaard Brouer3ef0eb02013-01-28 23:45:51 +0000175 spin_lock(&nf->lru_lock);
176
Pavel Emelyanov3140c252008-01-22 06:11:48 -0800177 if (list_empty(&nf->lru_list)) {
Jesper Dangaard Brouer3ef0eb02013-01-28 23:45:51 +0000178 spin_unlock(&nf->lru_lock);
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700179 break;
180 }
181
Pavel Emelyanov3140c252008-01-22 06:11:48 -0800182 q = list_first_entry(&nf->lru_list,
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700183 struct inet_frag_queue, lru_list);
184 atomic_inc(&q->refcnt);
Jesper Dangaard Brouer3ef0eb02013-01-28 23:45:51 +0000185 spin_unlock(&nf->lru_lock);
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700186
187 spin_lock(&q->lock);
Joe Perchesbc578a52008-03-28 16:35:27 -0700188 if (!(q->last_in & INET_FRAG_COMPLETE))
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700189 inet_frag_kill(q, f);
190 spin_unlock(&q->lock);
191
192 if (atomic_dec_and_test(&q->refcnt))
193 inet_frag_destroy(q, f, &work);
194 evicted++;
195 }
196
197 return evicted;
198}
199EXPORT_SYMBOL(inet_frag_evictor);
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700200
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800201static struct inet_frag_queue *inet_frag_intern(struct netns_frags *nf,
202 struct inet_frag_queue *qp_in, struct inet_frags *f,
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700203 void *arg)
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700204{
205 struct inet_frag_queue *qp;
206#ifdef CONFIG_SMP
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700207#endif
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700208 unsigned int hash;
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700209
210 write_lock(&f->lock);
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700211 /*
212 * While we stayed w/o the lock other CPU could update
213 * the rnd seed, so we need to re-calculate the hash
214 * chain. Fortunatelly the qp_in can be used to get one.
215 */
216 hash = f->hashfn(qp_in);
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700217#ifdef CONFIG_SMP
218 /* With SMP race we have to recheck hash table, because
219 * such entry could be created on other cpu, while we
220 * promoted read lock to write lock.
221 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800222 hlist_for_each_entry(qp, &f->hash[hash], list) {
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800223 if (qp->net == nf && f->match(qp, arg)) {
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700224 atomic_inc(&qp->refcnt);
225 write_unlock(&f->lock);
Joe Perchesbc578a52008-03-28 16:35:27 -0700226 qp_in->last_in |= INET_FRAG_COMPLETE;
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700227 inet_frag_put(qp_in, f);
228 return qp;
229 }
230 }
231#endif
232 qp = qp_in;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800233 if (!mod_timer(&qp->timer, jiffies + nf->timeout))
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700234 atomic_inc(&qp->refcnt);
235
236 atomic_inc(&qp->refcnt);
237 hlist_add_head(&qp->list, &f->hash[hash]);
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800238 nf->nqueues++;
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700239 write_unlock(&f->lock);
Jesper Dangaard Brouer3ef0eb02013-01-28 23:45:51 +0000240 inet_frag_lru_add(nf, qp);
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700241 return qp;
242}
Pavel Emelyanove521db92007-10-17 19:45:23 -0700243
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800244static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf,
245 struct inet_frags *f, void *arg)
Pavel Emelyanove521db92007-10-17 19:45:23 -0700246{
247 struct inet_frag_queue *q;
248
249 q = kzalloc(f->qsize, GFP_ATOMIC);
250 if (q == NULL)
251 return NULL;
252
Gao feng54db0cc2012-06-08 01:21:40 +0000253 q->net = nf;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700254 f->constructor(q, arg);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000255 add_frag_mem_limit(q, f->qsize);
256
Pavel Emelyanove521db92007-10-17 19:45:23 -0700257 setup_timer(&q->timer, f->frag_expire, (unsigned long)q);
258 spin_lock_init(&q->lock);
259 atomic_set(&q->refcnt, 1);
260
261 return q;
262}
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700263
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800264static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf,
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700265 struct inet_frags *f, void *arg)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700266{
267 struct inet_frag_queue *q;
268
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800269 q = inet_frag_alloc(nf, f, arg);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700270 if (q == NULL)
271 return NULL;
272
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700273 return inet_frag_intern(nf, q, f, arg);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700274}
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700275
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800276struct inet_frag_queue *inet_frag_find(struct netns_frags *nf,
277 struct inet_frags *f, void *key, unsigned int hash)
Hannes Eder56bca312009-02-25 10:32:52 +0000278 __releases(&f->lock)
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700279{
280 struct inet_frag_queue *q;
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000281 int depth = 0;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700282
Sasha Levinb67bfe02013-02-27 17:06:00 -0800283 hlist_for_each_entry(q, &f->hash[hash], list) {
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800284 if (q->net == nf && f->match(q, key)) {
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700285 atomic_inc(&q->refcnt);
286 read_unlock(&f->lock);
287 return q;
288 }
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000289 depth++;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700290 }
291 read_unlock(&f->lock);
292
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000293 if (depth <= INETFRAGS_MAXDEPTH)
294 return inet_frag_create(nf, f, key);
295 else
296 return ERR_PTR(-ENOBUFS);
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700297}
298EXPORT_SYMBOL(inet_frag_find);
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000299
300void inet_frag_maybe_warn_overflow(struct inet_frag_queue *q,
301 const char *prefix)
302{
303 static const char msg[] = "inet_frag_find: Fragment hash bucket"
304 " list length grew over limit " __stringify(INETFRAGS_MAXDEPTH)
305 ". Dropping fragment.\n";
306
307 if (PTR_ERR(q) == -ENOBUFS)
308 LIMIT_NETDEBUG(KERN_WARNING "%s%s", prefix, msg);
309}
310EXPORT_SYMBOL(inet_frag_maybe_warn_overflow);