blob: 760a9e52e02b91b36af323c92f7027e150858f88 [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>
NeilBrown0eb71a92018-06-18 12:52:50 +100023#include <linux/rhashtable.h>
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070024
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +000025#include <net/sock.h>
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070026#include <net/inet_frag.h>
Hannes Frederic Sowabe991972013-03-22 08:24:37 +000027#include <net/inet_ecn.h>
28
29/* Given the OR values of all fragments, apply RFC 3168 5.3 requirements
30 * Value : 0xff if frame should be dropped.
31 * 0 or INET_ECN_CE value, to be ORed in to final iph->tos field
32 */
33const u8 ip_frag_ecn_table[16] = {
34 /* at least one fragment had CE, and others ECT_0 or ECT_1 */
35 [IPFRAG_ECN_CE | IPFRAG_ECN_ECT_0] = INET_ECN_CE,
36 [IPFRAG_ECN_CE | IPFRAG_ECN_ECT_1] = INET_ECN_CE,
37 [IPFRAG_ECN_CE | IPFRAG_ECN_ECT_0 | IPFRAG_ECN_ECT_1] = INET_ECN_CE,
38
39 /* invalid combinations : drop frame */
40 [IPFRAG_ECN_NOT_ECT | IPFRAG_ECN_CE] = 0xff,
41 [IPFRAG_ECN_NOT_ECT | IPFRAG_ECN_ECT_0] = 0xff,
42 [IPFRAG_ECN_NOT_ECT | IPFRAG_ECN_ECT_1] = 0xff,
43 [IPFRAG_ECN_NOT_ECT | IPFRAG_ECN_ECT_0 | IPFRAG_ECN_ECT_1] = 0xff,
44 [IPFRAG_ECN_NOT_ECT | IPFRAG_ECN_CE | IPFRAG_ECN_ECT_0] = 0xff,
45 [IPFRAG_ECN_NOT_ECT | IPFRAG_ECN_CE | IPFRAG_ECN_ECT_1] = 0xff,
46 [IPFRAG_ECN_NOT_ECT | IPFRAG_ECN_CE | IPFRAG_ECN_ECT_0 | IPFRAG_ECN_ECT_1] = 0xff,
47};
48EXPORT_SYMBOL(ip_frag_ecn_table);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070049
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020050int inet_frags_init(struct inet_frags *f)
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070051{
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020052 f->frags_cachep = kmem_cache_create(f->frags_cache_name, f->qsize, 0, 0,
53 NULL);
54 if (!f->frags_cachep)
55 return -ENOMEM;
56
57 return 0;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070058}
59EXPORT_SYMBOL(inet_frags_init);
60
61void inet_frags_fini(struct inet_frags *f)
62{
Eric Dumazet648700f2018-03-31 12:58:49 -070063 /* We must wait that all inet_frag_destroy_rcu() have completed. */
64 rcu_barrier();
65
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020066 kmem_cache_destroy(f->frags_cachep);
Eric Dumazet648700f2018-03-31 12:58:49 -070067 f->frags_cachep = NULL;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070068}
69EXPORT_SYMBOL(inet_frags_fini);
Pavel Emelyanov277e6502007-10-15 02:37:18 -070070
Eric Dumazet648700f2018-03-31 12:58:49 -070071static void inet_frags_free_cb(void *ptr, void *arg)
72{
73 struct inet_frag_queue *fq = ptr;
74
75 /* If we can not cancel the timer, it means this frag_queue
76 * is already disappearing, we have nothing to do.
77 * Otherwise, we own a refcount until the end of this function.
78 */
79 if (!del_timer(&fq->timer))
80 return;
81
82 spin_lock_bh(&fq->lock);
83 if (!(fq->flags & INET_FRAG_COMPLETE)) {
84 fq->flags |= INET_FRAG_COMPLETE;
85 refcount_dec(&fq->refcnt);
86 }
87 spin_unlock_bh(&fq->lock);
88
89 inet_frag_put(fq);
90}
91
Eric Dumazet093ba722018-03-31 12:58:44 -070092void inet_frags_exit_net(struct netns_frags *nf)
Pavel Emelyanov81566e82008-01-22 06:12:39 -080093{
Paolo Abenif6f2a4a2018-07-06 12:30:20 +020094 nf->high_thresh = 0; /* prevent creation of new frags */
Florian Westphalb13d3cb2014-07-24 16:50:32 +020095
Eric Dumazet648700f2018-03-31 12:58:49 -070096 rhashtable_free_and_destroy(&nf->rhashtable, inet_frags_free_cb, NULL);
Pavel Emelyanov81566e82008-01-22 06:12:39 -080097}
98EXPORT_SYMBOL(inet_frags_exit_net);
99
Eric Dumazet093ba722018-03-31 12:58:44 -0700100void inet_frag_kill(struct inet_frag_queue *fq)
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700101{
102 if (del_timer(&fq->timer))
Reshetova, Elenaedcb6912017-06-30 13:08:07 +0300103 refcount_dec(&fq->refcnt);
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700104
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200105 if (!(fq->flags & INET_FRAG_COMPLETE)) {
Eric Dumazet648700f2018-03-31 12:58:49 -0700106 struct netns_frags *nf = fq->net;
107
108 fq->flags |= INET_FRAG_COMPLETE;
109 rhashtable_remove_fast(&nf->rhashtable, &fq->node, nf->f->rhash_params);
Reshetova, Elenaedcb6912017-06-30 13:08:07 +0300110 refcount_dec(&fq->refcnt);
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700111 }
112}
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700113EXPORT_SYMBOL(inet_frag_kill);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700114
Eric Dumazet648700f2018-03-31 12:58:49 -0700115static void inet_frag_destroy_rcu(struct rcu_head *head)
116{
117 struct inet_frag_queue *q = container_of(head, struct inet_frag_queue,
118 rcu);
119 struct inet_frags *f = q->net->f;
120
121 if (f->destructor)
122 f->destructor(q);
123 kmem_cache_free(f->frags_cachep, q);
124}
125
Eric Dumazet093ba722018-03-31 12:58:44 -0700126void inet_frag_destroy(struct inet_frag_queue *q)
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700127{
128 struct sk_buff *fp;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800129 struct netns_frags *nf;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000130 unsigned int sum, sum_truesize = 0;
Eric Dumazet093ba722018-03-31 12:58:44 -0700131 struct inet_frags *f;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700132
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200133 WARN_ON(!(q->flags & INET_FRAG_COMPLETE));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700134 WARN_ON(del_timer(&q->timer) != 0);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700135
136 /* Release all fragment data. */
137 fp = q->fragments;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800138 nf = q->net;
Eric Dumazet093ba722018-03-31 12:58:44 -0700139 f = nf->f;
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000140 if (fp) {
141 do {
142 struct sk_buff *xp = fp->next;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700143
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000144 sum_truesize += fp->truesize;
145 kfree_skb(fp);
146 fp = xp;
147 } while (fp);
148 } else {
Peter Oskolkova4fd2842018-08-11 20:27:25 +0000149 sum_truesize = inet_frag_rbtree_purge(&q->rb_fragments);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700150 }
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000151 sum = sum_truesize + f->qsize;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700152
Eric Dumazet648700f2018-03-31 12:58:49 -0700153 call_rcu(&q->rcu, inet_frag_destroy_rcu);
Florian Westphal5719b292015-07-23 12:05:39 +0200154
155 sub_frag_mem_limit(nf, sum);
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700156}
157EXPORT_SYMBOL(inet_frag_destroy);
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700158
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800159static struct inet_frag_queue *inet_frag_alloc(struct netns_frags *nf,
Nikolay Aleksandrovf926e232014-08-01 12:29:46 +0200160 struct inet_frags *f,
161 void *arg)
Pavel Emelyanove521db92007-10-17 19:45:23 -0700162{
163 struct inet_frag_queue *q;
164
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200165 q = kmem_cache_zalloc(f->frags_cachep, GFP_ATOMIC);
Ian Morris51456b22015-04-03 09:17:26 +0100166 if (!q)
Pavel Emelyanove521db92007-10-17 19:45:23 -0700167 return NULL;
168
Gao feng54db0cc2012-06-08 01:21:40 +0000169 q->net = nf;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700170 f->constructor(q, arg);
Florian Westphal0e60d242015-07-23 12:05:38 +0200171 add_frag_mem_limit(nf, f->qsize);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000172
Kees Cook78802012017-10-16 17:29:20 -0700173 timer_setup(&q->timer, f->frag_expire, 0);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700174 spin_lock_init(&q->lock);
Eric Dumazet648700f2018-03-31 12:58:49 -0700175 refcount_set(&q->refcnt, 3);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700176
177 return q;
178}
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700179
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800180static struct inet_frag_queue *inet_frag_create(struct netns_frags *nf,
Eric Dumazet0d5b9312018-11-08 17:34:27 -0800181 void *arg,
182 struct inet_frag_queue **prev)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700183{
Eric Dumazet648700f2018-03-31 12:58:49 -0700184 struct inet_frags *f = nf->f;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700185 struct inet_frag_queue *q;
186
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800187 q = inet_frag_alloc(nf, f, arg);
Eric Dumazet0d5b9312018-11-08 17:34:27 -0800188 if (!q) {
189 *prev = ERR_PTR(-ENOMEM);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700190 return NULL;
Eric Dumazet0d5b9312018-11-08 17:34:27 -0800191 }
Eric Dumazet648700f2018-03-31 12:58:49 -0700192 mod_timer(&q->timer, jiffies + nf->timeout);
193
Eric Dumazet0d5b9312018-11-08 17:34:27 -0800194 *prev = rhashtable_lookup_get_insert_key(&nf->rhashtable, &q->key,
195 &q->node, f->rhash_params);
196 if (*prev) {
Eric Dumazet648700f2018-03-31 12:58:49 -0700197 q->flags |= INET_FRAG_COMPLETE;
198 inet_frag_kill(q);
199 inet_frag_destroy(q);
200 return NULL;
201 }
202 return q;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700203}
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700204
Eric Dumazet648700f2018-03-31 12:58:49 -0700205/* TODO : call from rcu_read_lock() and no longer use refcount_inc_not_zero() */
206struct inet_frag_queue *inet_frag_find(struct netns_frags *nf, void *key)
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700207{
Eric Dumazet0d5b9312018-11-08 17:34:27 -0800208 struct inet_frag_queue *fq = NULL, *prev;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700209
Eric Dumazet56e2c942018-07-30 20:09:11 -0700210 if (!nf->high_thresh || frag_mem_limit(nf) > nf->high_thresh)
211 return NULL;
212
Eric Dumazet648700f2018-03-31 12:58:49 -0700213 rcu_read_lock();
Florian Westphal86e93e42014-07-24 16:50:31 +0200214
Eric Dumazet0d5b9312018-11-08 17:34:27 -0800215 prev = rhashtable_lookup(&nf->rhashtable, key, nf->f->rhash_params);
216 if (!prev)
217 fq = inet_frag_create(nf, key, &prev);
218 if (prev && !IS_ERR(prev)) {
219 fq = prev;
Eric Dumazet648700f2018-03-31 12:58:49 -0700220 if (!refcount_inc_not_zero(&fq->refcnt))
221 fq = NULL;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700222 }
Eric Dumazet648700f2018-03-31 12:58:49 -0700223 rcu_read_unlock();
Eric Dumazet0d5b9312018-11-08 17:34:27 -0800224 return fq;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700225}
226EXPORT_SYMBOL(inet_frag_find);