blob: cfeb8890f94ee95b2246ba98beb338a33fc45d1d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * The IP fragmentation functionality.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Authors: Fred N. van Kempen <waltje@uWalt.NL.Mugnet.ORG>
Alan Cox113aa832008-10-13 19:01:08 -070010 * Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Fixes:
13 * Alan Cox : Split from ip.c , see ip_input.c for history.
14 * David S. Miller : Begin massive cleanup...
15 * Andi Kleen : Add sysctls.
16 * xxxx : Overlapfrag bug.
17 * Ultima : ip_expire() kernel panic.
18 * Bill Hawes : Frag accounting and evictor fixes.
19 * John McDonald : 0 length frag bug.
20 * Alexey Kuznetsov: SMP races, threading, cleanup.
21 * Patrick McHardy : LRU queue of frag heads for evictor.
22 */
23
Joe Perchesafd465032012-03-12 07:03:32 +000024#define pr_fmt(fmt) "IPv4: " fmt
25
Herbert Xu89cee8b2005-12-13 23:14:27 -080026#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
28#include <linux/types.h>
29#include <linux/mm.h>
30#include <linux/jiffies.h>
31#include <linux/skbuff.h>
32#include <linux/list.h>
33#include <linux/ip.h>
34#include <linux/icmp.h>
35#include <linux/netdevice.h>
36#include <linux/jhash.h>
37#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Shan Weie9017b52010-01-23 01:57:42 -080039#include <net/route.h>
40#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <net/sock.h>
42#include <net/ip.h>
43#include <net/icmp.h>
44#include <net/checksum.h>
Herbert Xu89cee8b2005-12-13 23:14:27 -080045#include <net/inetpeer.h>
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070046#include <net/inet_frag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/tcp.h>
48#include <linux/udp.h>
49#include <linux/inet.h>
50#include <linux/netfilter_ipv4.h>
Eric Dumazet6623e3b2011-01-05 07:52:55 +000051#include <net/inet_ecn.h>
David Ahern385add92015-09-29 20:07:13 -070052#include <net/l3mdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
55 * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
56 * as well. Or notify me, at least. --ANK
57 */
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020058static const char ip_frag_cache_name[] = "ip4-frags";
Herbert Xu89cee8b2005-12-13 23:14:27 -080059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/* Describe an entry in the "incomplete datagrams" queue. */
61struct ipq {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070062 struct inet_frag_queue q;
63
Eric Dumazet6623e3b2011-01-05 07:52:55 +000064 u8 ecn; /* RFC3168 support */
Florian Westphald6b915e2015-05-22 16:32:51 +020065 u16 max_df_size; /* largest frag with DF set seen */
Herbert Xu89cee8b2005-12-13 23:14:27 -080066 int iif;
67 unsigned int rid;
68 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069};
70
Fabian Frederickaa1f7312014-11-04 20:44:04 +010071static u8 ip4_frag_ecn(u8 tos)
Eric Dumazet6623e3b2011-01-05 07:52:55 +000072{
Eric Dumazet5173cc02011-05-16 08:37:37 +000073 return 1 << (tos & INET_ECN_MASK);
Eric Dumazet6623e3b2011-01-05 07:52:55 +000074}
75
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070076static struct inet_frags ip4_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Peter Oskolkova4fd2842018-08-11 20:27:25 +000078static int ip_frag_reasm(struct ipq *qp, struct sk_buff *skb,
79 struct sk_buff *prev_tail, struct net_device *dev);
Herbert Xu1706d582007-10-14 00:38:15 -070080
Pavel Emelyanovabd65232007-10-17 19:47:21 -070081
Florian Westphal36c77782014-07-24 16:50:29 +020082static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070083{
84 struct ipq *qp = container_of(q, struct ipq, q);
Eric Dumazeta39aca62019-05-24 09:03:38 -070085 struct net *net = q->fqdir->net;
Gao feng54db0cc2012-06-08 01:21:40 +000086
Eric Dumazet648700f2018-03-31 12:58:49 -070087 const struct frag_v4_compare_key *key = a;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070088
Eric Dumazet648700f2018-03-31 12:58:49 -070089 q->key.v4 = *key;
90 qp->ecn = 0;
Eric Dumazet6ce3b4d2019-05-24 09:03:30 -070091 qp->peer = q->fqdir->max_dist ?
Eric Dumazet648700f2018-03-31 12:58:49 -070092 inet_getpeer_v4(net->ipv4.peers, key->saddr, key->vif, 1) :
David Ahern192132b2015-08-27 16:07:03 -070093 NULL;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070094}
95
Fabian Frederickaa1f7312014-11-04 20:44:04 +010096static void ip4_frag_free(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -070098 struct ipq *qp;
99
100 qp = container_of(q, struct ipq, q);
101 if (qp->peer)
102 inet_putpeer(qp->peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106/* Destruction primitives. */
107
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100108static void ipq_put(struct ipq *ipq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Eric Dumazet093ba722018-03-31 12:58:44 -0700110 inet_frag_put(&ipq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113/* Kill ipq entry. It is not destroyed immediately,
114 * because caller (and someone more) holds reference count.
115 */
116static void ipq_kill(struct ipq *ipq)
117{
Eric Dumazet093ba722018-03-31 12:58:44 -0700118 inet_frag_kill(&ipq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Andy Zhou5cf42282015-05-15 14:15:35 -0700121static bool frag_expire_skip_icmp(u32 user)
122{
123 return user == IP_DEFRAG_AF_PACKET ||
124 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_IN,
Andy Zhou8bc04862015-05-15 14:15:36 -0700125 __IP_DEFRAG_CONNTRACK_IN_END) ||
126 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_BRIDGE_IN,
127 __IP_DEFRAG_CONNTRACK_BRIDGE_IN);
Andy Zhou5cf42282015-05-15 14:15:35 -0700128}
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
132 */
Kees Cook78802012017-10-16 17:29:20 -0700133static void ip_expire(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Kees Cook78802012017-10-16 17:29:20 -0700135 struct inet_frag_queue *frag = from_timer(frag, t, timer);
Eric Dumazet399d1402018-03-31 12:58:51 -0700136 const struct iphdr *iph;
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000137 struct sk_buff *head = NULL;
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700138 struct net *net;
Eric Dumazet399d1402018-03-31 12:58:51 -0700139 struct ipq *qp;
140 int err;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700141
Kees Cook78802012017-10-16 17:29:20 -0700142 qp = container_of(frag, struct ipq, q);
Eric Dumazeta39aca62019-05-24 09:03:38 -0700143 net = qp->q.fqdir->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Eric Dumazetec4fbd62017-03-22 08:57:15 -0700145 rcu_read_lock();
Eric Dumazetd5dd8872019-06-18 11:09:00 -0700146
147 if (qp->q.fqdir->dead)
148 goto out_rcu_unlock;
149
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700150 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200152 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 goto out;
154
155 ipq_kill(qp);
Eric Dumazetb45386e2016-04-27 16:44:35 -0700156 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Eric Dumazet399d1402018-03-31 12:58:51 -0700157 __IP_INC_STATS(net, IPSTATS_MIB_REASMTIMEOUT);
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200158
Dan Carpenter70837ff2018-08-06 22:17:35 +0300159 if (!(qp->q.flags & INET_FRAG_FIRST_IN))
Eric Dumazet399d1402018-03-31 12:58:51 -0700160 goto out;
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200161
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000162 /* sk_buff::dev and sk_buff::rbnode are unionized. So we
163 * pull the head out of the tree in order to be able to
164 * deal with head->dev.
165 */
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800166 head = inet_frag_pull_head(&qp->q);
167 if (!head)
168 goto out;
Eric Dumazet399d1402018-03-31 12:58:51 -0700169 head->dev = dev_get_by_index_rcu(net, qp->iif);
170 if (!head->dev)
171 goto out;
Eric Dumazetec4fbd62017-03-22 08:57:15 -0700172
Shan Weie9017b52010-01-23 01:57:42 -0800173
Eric Dumazet399d1402018-03-31 12:58:51 -0700174 /* skb has no dst, perform route lookup again */
175 iph = ip_hdr(head);
176 err = ip_route_input_noref(head, iph->daddr, iph->saddr,
David S. Millerc6cffba2012-07-26 11:14:38 +0000177 iph->tos, head->dev);
Eric Dumazet399d1402018-03-31 12:58:51 -0700178 if (err)
179 goto out;
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000180
Eric Dumazet399d1402018-03-31 12:58:51 -0700181 /* Only an end host needs to send an ICMP
182 * "Fragment Reassembly Timeout" message, per RFC792.
183 */
184 if (frag_expire_skip_icmp(qp->q.key.v4.user) &&
185 (skb_rtable(head)->rt_type != RTN_LOCAL))
186 goto out;
Eric Dumazetec4fbd62017-03-22 08:57:15 -0700187
Eric Dumazet1eec5d52018-03-31 12:58:54 -0700188 spin_unlock(&qp->q.lock);
189 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
Eric Dumazet1eec5d52018-03-31 12:58:54 -0700190 goto out_rcu_unlock;
Shan Weie9017b52010-01-23 01:57:42 -0800191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700193 spin_unlock(&qp->q.lock);
Eric Dumazetec4fbd62017-03-22 08:57:15 -0700194out_rcu_unlock:
195 rcu_read_unlock();
zhong jiang1d089622018-09-20 17:37:43 +0800196 kfree_skb(head);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700197 ipq_put(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700200/* Find the correct entry in the "incomplete datagrams" queue for
201 * this IP datagram, and create new one, if nothing is found.
202 */
David Ahern9972f132015-08-13 14:59:09 -0600203static struct ipq *ip_find(struct net *net, struct iphdr *iph,
204 u32 user, int vif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Eric Dumazet648700f2018-03-31 12:58:49 -0700206 struct frag_v4_compare_key key = {
207 .saddr = iph->saddr,
208 .daddr = iph->daddr,
209 .user = user,
210 .vif = vif,
211 .id = iph->id,
212 .protocol = iph->protocol,
213 };
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700214 struct inet_frag_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Eric Dumazet4907abc2019-05-24 09:03:39 -0700216 q = inet_frag_find(net->ipv4.fqdir, &key);
Eric Dumazet2d44ed22018-03-31 12:58:52 -0700217 if (!q)
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000218 return NULL;
Eric Dumazet2d44ed22018-03-31 12:58:52 -0700219
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700220 return container_of(q, struct ipq, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Herbert Xu89cee8b2005-12-13 23:14:27 -0800223/* Is the fragment too far ahead to be part of ipq? */
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100224static int ip_frag_too_far(struct ipq *qp)
Herbert Xu89cee8b2005-12-13 23:14:27 -0800225{
226 struct inet_peer *peer = qp->peer;
Eric Dumazet6ce3b4d2019-05-24 09:03:30 -0700227 unsigned int max = qp->q.fqdir->max_dist;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800228 unsigned int start, end;
229
230 int rc;
231
232 if (!peer || !max)
233 return 0;
234
235 start = qp->rid;
236 end = atomic_inc_return(&peer->rid);
237 qp->rid = end;
238
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000239 rc = qp->q.fragments_tail && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800240
Eric Dumazeta39aca62019-05-24 09:03:38 -0700241 if (rc)
242 __IP_INC_STATS(qp->q.fqdir->net, IPSTATS_MIB_REASMFAILS);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800243
244 return rc;
245}
246
247static int ip_frag_reinit(struct ipq *qp)
248{
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000249 unsigned int sum_truesize = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800250
Eric Dumazet6ce3b4d2019-05-24 09:03:30 -0700251 if (!mod_timer(&qp->q.timer, jiffies + qp->q.fqdir->timeout)) {
Reshetova, Elenaedcb6912017-06-30 13:08:07 +0300252 refcount_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800253 return -ETIMEDOUT;
254 }
255
Peter Oskolkova4fd2842018-08-11 20:27:25 +0000256 sum_truesize = inet_frag_rbtree_purge(&qp->q.rb_fragments);
Eric Dumazet6ce3b4d2019-05-24 09:03:30 -0700257 sub_frag_mem_limit(qp->q.fqdir, sum_truesize);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800258
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200259 qp->q.flags = 0;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700260 qp->q.len = 0;
261 qp->q.meat = 0;
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000262 qp->q.rb_fragments = RB_ROOT;
Changli Gaod6bebca2010-06-29 04:39:37 +0000263 qp->q.fragments_tail = NULL;
Peter Oskolkova4fd2842018-08-11 20:27:25 +0000264 qp->q.last_run_head = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800265 qp->iif = 0;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000266 qp->ecn = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800267
268 return 0;
269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700272static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Eric Dumazeta39aca62019-05-24 09:03:38 -0700274 struct net *net = qp->q.fqdir->net;
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800275 int ihl, end, flags, offset;
276 struct sk_buff *prev_tail;
Herbert Xu1706d582007-10-14 00:38:15 -0700277 struct net_device *dev;
Florian Westphald6b915e2015-05-22 16:32:51 +0200278 unsigned int fragsize;
Herbert Xu1706d582007-10-14 00:38:15 -0700279 int err = -ENOENT;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000280 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200282 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 goto err;
284
Herbert Xu89cee8b2005-12-13 23:14:27 -0800285 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700286 unlikely(ip_frag_too_far(qp)) &&
287 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800288 ipq_kill(qp);
289 goto err;
290 }
291
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000292 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700293 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 flags = offset & ~IP_OFFSET;
295 offset &= IP_OFFSET;
296 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300297 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 /* Determine the position of this fragment. */
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200300 end = offset + skb->len - skb_network_offset(skb) - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700301 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* Is this the final fragment? */
304 if ((flags & IP_MF) == 0) {
305 /* If we already have some bits beyond end
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800306 * or have different end, the segment is corrupted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700308 if (end < qp->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200309 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
Peter Oskolkov0ff89ef2018-08-28 11:36:19 -0700310 goto discard_qp;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200311 qp->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700312 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 } else {
314 if (end&7) {
315 end &= ~7;
316 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
317 skb->ip_summed = CHECKSUM_NONE;
318 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700319 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200321 if (qp->q.flags & INET_FRAG_LAST_IN)
Peter Oskolkov0ff89ef2018-08-28 11:36:19 -0700322 goto discard_qp;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700323 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325 }
326 if (end == offset)
Peter Oskolkov0ff89ef2018-08-28 11:36:19 -0700327 goto discard_qp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Herbert Xu1706d582007-10-14 00:38:15 -0700329 err = -ENOMEM;
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200330 if (!pskb_pull(skb, skb_network_offset(skb) + ihl))
Peter Oskolkov0ff89ef2018-08-28 11:36:19 -0700331 goto discard_qp;
Herbert Xu1706d582007-10-14 00:38:15 -0700332
333 err = pskb_trim_rcsum(skb, end - offset);
334 if (err)
Peter Oskolkov0ff89ef2018-08-28 11:36:19 -0700335 goto discard_qp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000337 /* Note : skb->rbnode and skb->dev share the same location. */
338 dev = skb->dev;
339 /* Makes sure compiler wont do silly aliasing games */
340 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Peter Oskolkova4fd2842018-08-11 20:27:25 +0000342 prev_tail = qp->q.fragments_tail;
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800343 err = inet_frag_queue_insert(&qp->q, skb, offset, end);
344 if (err)
345 goto insert_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Eric Dumazetbf663372018-03-31 12:58:58 -0700347 if (dev)
348 qp->iif = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700350 qp->q.stamp = skb->tstamp;
351 qp->q.meat += skb->len;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000352 qp->ecn |= ecn;
Eric Dumazet6ce3b4d2019-05-24 09:03:30 -0700353 add_frag_mem_limit(qp->q.fqdir, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (offset == 0)
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200355 qp->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Florian Westphald6b915e2015-05-22 16:32:51 +0200357 fragsize = skb->len + ihl;
358
359 if (fragsize > qp->q.max_size)
360 qp->q.max_size = fragsize;
361
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200362 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
Florian Westphald6b915e2015-05-22 16:32:51 +0200363 fragsize > qp->max_df_size)
364 qp->max_df_size = fragsize;
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200365
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200366 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000367 qp->q.meat == qp->q.len) {
368 unsigned long orefdst = skb->_skb_refdst;
Herbert Xu1706d582007-10-14 00:38:15 -0700369
Eric Dumazet97599dc2013-04-16 12:55:41 +0000370 skb->_skb_refdst = 0UL;
Peter Oskolkova4fd2842018-08-11 20:27:25 +0000371 err = ip_frag_reasm(qp, skb, prev_tail, dev);
Eric Dumazet97599dc2013-04-16 12:55:41 +0000372 skb->_skb_refdst = orefdst;
Peter Oskolkov0ff89ef2018-08-28 11:36:19 -0700373 if (err)
374 inet_frag_kill(&qp->q);
Eric Dumazet97599dc2013-04-16 12:55:41 +0000375 return err;
376 }
377
378 skb_dst_drop(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700379 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800381insert_error:
382 if (err == IPFRAG_DUP) {
383 kfree_skb(skb);
384 return -EINVAL;
385 }
386 err = -EINVAL;
Peter Oskolkov0ff89ef2018-08-28 11:36:19 -0700387 __IP_INC_STATS(net, IPSTATS_MIB_REASM_OVERLAPS);
Peter Oskolkov7969e5c2018-08-02 23:34:37 +0000388discard_qp:
389 inet_frag_kill(&qp->q);
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800390 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391err:
392 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700393 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Guillaume Nault891584f2019-08-02 17:15:03 +0200396static bool ip_frag_coalesce_ok(const struct ipq *qp)
397{
398 return qp->q.key.v4.user == IP_DEFRAG_LOCAL_DELIVER;
399}
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/* Build a new IP datagram from all its fragments. */
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000402static int ip_frag_reasm(struct ipq *qp, struct sk_buff *skb,
Peter Oskolkova4fd2842018-08-11 20:27:25 +0000403 struct sk_buff *prev_tail, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Eric Dumazeta39aca62019-05-24 09:03:38 -0700405 struct net *net = qp->q.fqdir->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 struct iphdr *iph;
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800407 void *reasm_data;
408 int len, err;
Eric Dumazet5173cc02011-05-16 08:37:37 +0000409 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 ipq_kill(qp);
412
Hannes Frederic Sowabe991972013-03-22 08:24:37 +0000413 ecn = ip_frag_ecn_table[qp->ecn];
Eric Dumazet5173cc02011-05-16 08:37:37 +0000414 if (unlikely(ecn == 0xff)) {
415 err = -EINVAL;
416 goto out_fail;
417 }
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800418
Herbert Xu1706d582007-10-14 00:38:15 -0700419 /* Make the one we just received the head. */
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800420 reasm_data = inet_frag_reasm_prepare(&qp->q, skb, prev_tail);
421 if (!reasm_data)
422 goto out_nomem;
Herbert Xu1706d582007-10-14 00:38:15 -0700423
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800424 len = ip_hdrlen(skb) + qp->q.len;
Herbert Xu1706d582007-10-14 00:38:15 -0700425 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800426 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 goto out_oversize;
428
Guillaume Nault891584f2019-08-02 17:15:03 +0200429 inet_frag_reasm_finish(&qp->q, skb, reasm_data,
430 ip_frag_coalesce_ok(qp));
Jiri Wiesnerebaf39e2018-12-05 16:55:29 +0100431
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800432 skb->dev = dev;
433 IPCB(skb)->frag_max_size = max(qp->max_df_size, qp->q.max_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800435 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 iph->tot_len = htons(len);
Eric Dumazet5173cc02011-05-16 08:37:37 +0000437 iph->tos |= ecn;
Florian Westphald6b915e2015-05-22 16:32:51 +0200438
439 /* When we set IP_DF on a refragmented skb we must also force a
440 * call to ip_fragment to avoid forwarding a DF-skb of size s while
441 * original sender only sent fragments of size f (where f < s).
442 *
443 * We only set DF/IPSKB_FRAG_PMTU if such DF fragment was the largest
444 * frag seen to avoid sending tiny DF-fragments in case skb was built
445 * from one very small df-fragment and one large non-df frag.
446 */
447 if (qp->max_df_size == qp->q.max_size) {
Peter Oskolkovc23f35d2019-01-22 10:02:50 -0800448 IPCB(skb)->flags |= IPSKB_FRAG_PMTU;
Florian Westphald6b915e2015-05-22 16:32:51 +0200449 iph->frag_off = htons(IP_DF);
450 } else {
451 iph->frag_off = 0;
452 }
453
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200454 ip_send_check(iph);
455
Eric Dumazetb45386e2016-04-27 16:44:35 -0700456 __IP_INC_STATS(net, IPSTATS_MIB_REASMOKS);
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000457 qp->q.rb_fragments = RB_ROOT;
Changli Gaod6bebca2010-06-29 04:39:37 +0000458 qp->q.fragments_tail = NULL;
Peter Oskolkova4fd2842018-08-11 20:27:25 +0000459 qp->q.last_run_head = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700460 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462out_nomem:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800463 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
David Howells45542472007-10-17 21:37:22 -0700464 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 goto out_fail;
466out_oversize:
Eric Dumazet648700f2018-03-31 12:58:49 -0700467 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->q.key.v4.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468out_fail:
Eric Dumazetb45386e2016-04-27 16:44:35 -0700469 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700470 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473/* Process an incoming IP datagram fragment. */
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500474int ip_defrag(struct net *net, struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
David Ahern9972f132015-08-13 14:59:09 -0600476 struct net_device *dev = skb->dev ? : skb_dst(skb)->dev;
David Ahern385add92015-09-29 20:07:13 -0700477 int vif = l3mdev_master_ifindex_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900479
Eric Dumazetb45386e2016-04-27 16:44:35 -0700480 __IP_INC_STATS(net, IPSTATS_MIB_REASMREQDS);
Joe Stringer8282f272016-01-22 15:49:12 -0800481 skb_orphan(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 /* Lookup (or create) queue header */
David Ahern9972f132015-08-13 14:59:09 -0600484 qp = ip_find(net, ip_hdr(skb), user, vif);
Ian Morris00db4122015-04-03 09:17:27 +0100485 if (qp) {
Herbert Xu1706d582007-10-14 00:38:15 -0700486 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700488 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Herbert Xu1706d582007-10-14 00:38:15 -0700490 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700492 spin_unlock(&qp->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700493 ipq_put(qp);
Herbert Xu776c7292007-10-14 00:38:32 -0700494 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
Eric Dumazetb45386e2016-04-27 16:44:35 -0700497 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700499 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000501EXPORT_SYMBOL(ip_defrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500503struct sk_buff *ip_check_defrag(struct net *net, struct sk_buff *skb, u32 user)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000504{
Johannes Berg1bf37512012-12-09 23:41:06 +0000505 struct iphdr iph;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300506 int netoff;
Eric Dumazetbc416d92011-10-06 10:28:31 +0000507 u32 len;
508
509 if (skb->protocol != htons(ETH_P_IP))
510 return skb;
511
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300512 netoff = skb_network_offset(skb);
513
514 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000515 return skb;
516
Johannes Berg1bf37512012-12-09 23:41:06 +0000517 if (iph.ihl < 5 || iph.version != 4)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000518 return skb;
519
Johannes Berg1bf37512012-12-09 23:41:06 +0000520 len = ntohs(iph.tot_len);
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300521 if (skb->len < netoff + len || len < (iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000522 return skb;
523
524 if (ip_is_fragment(&iph)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +0000525 skb = skb_share_check(skb, GFP_ATOMIC);
526 if (skb) {
Cong Wang7de414a2018-11-01 12:02:37 -0700527 if (!pskb_may_pull(skb, netoff + iph.ihl * 4)) {
528 kfree_skb(skb);
529 return NULL;
530 }
531 if (pskb_trim_rcsum(skb, netoff + len)) {
532 kfree_skb(skb);
533 return NULL;
534 }
Eric Dumazetbc416d92011-10-06 10:28:31 +0000535 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500536 if (ip_defrag(net, skb, user))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000537 return NULL;
Tom Herbert7539fad2013-12-15 22:12:18 -0800538 skb_clear_hash(skb);
Eric Dumazetbc416d92011-10-06 10:28:31 +0000539 }
540 }
541 return skb;
542}
543EXPORT_SYMBOL(ip_check_defrag);
544
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800545#ifdef CONFIG_SYSCTL
Eric Dumazet3d234012018-04-04 08:35:10 -0700546static int dist_min;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800547
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700548static struct ctl_table ip4_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800549 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800550 .procname = "ipfrag_high_thresh",
Eric Dumazet3e67f102018-03-31 12:58:53 -0700551 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800552 .mode = 0644,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700553 .proc_handler = proc_doulongvec_minmax,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800554 },
555 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800556 .procname = "ipfrag_low_thresh",
Eric Dumazet3e67f102018-03-31 12:58:53 -0700557 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800558 .mode = 0644,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700559 .proc_handler = proc_doulongvec_minmax,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800560 },
561 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800562 .procname = "ipfrag_time",
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800563 .maxlen = sizeof(int),
564 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800565 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800566 },
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200567 {
568 .procname = "ipfrag_max_dist",
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200569 .maxlen = sizeof(int),
570 .mode = 0644,
571 .proc_handler = proc_dointvec_minmax,
Eric Dumazet3d234012018-04-04 08:35:10 -0700572 .extra1 = &dist_min,
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200573 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700574 { }
575};
576
Florian Westphale3a57d12014-07-24 16:50:35 +0200577/* secret interval has been deprecated */
578static int ip4_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700579static struct ctl_table ip4_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800580 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800581 .procname = "ipfrag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200582 .data = &ip4_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800583 .maxlen = sizeof(int),
584 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800585 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800586 },
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800587 { }
588};
589
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000590static int __net_init ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800591{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800592 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800593 struct ctl_table_header *hdr;
594
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700595 table = ip4_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800596 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700597 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100598 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800599 goto err_alloc;
600
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800601 }
Eric Dumazet4907abc2019-05-24 09:03:39 -0700602 table[0].data = &net->ipv4.fqdir->high_thresh;
603 table[0].extra1 = &net->ipv4.fqdir->low_thresh;
604 table[1].data = &net->ipv4.fqdir->low_thresh;
605 table[1].extra2 = &net->ipv4.fqdir->high_thresh;
606 table[2].data = &net->ipv4.fqdir->timeout;
607 table[3].data = &net->ipv4.fqdir->max_dist;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800608
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000609 hdr = register_net_sysctl(net, "net/ipv4", table);
Ian Morris51456b22015-04-03 09:17:26 +0100610 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800611 goto err_reg;
612
613 net->ipv4.frags_hdr = hdr;
614 return 0;
615
616err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800617 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800618 kfree(table);
619err_alloc:
620 return -ENOMEM;
621}
622
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000623static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800624{
625 struct ctl_table *table;
626
627 table = net->ipv4.frags_hdr->ctl_table_arg;
628 unregister_net_sysctl_table(net->ipv4.frags_hdr);
629 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800630}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700631
Fabian Frederick57a02c32014-10-01 19:18:57 +0200632static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700633{
Eric W. Biederman43444752012-04-19 13:22:55 +0000634 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700635}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800636#else
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100637static int ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800638{
639 return 0;
640}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800641
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100642static void ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800643{
644}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700645
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100646static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700647{
648}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800649#endif
650
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000651static int __net_init ipv4_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800652{
Eric Dumazet787bea72018-03-31 12:58:43 -0700653 int res;
654
Eric Dumazet4907abc2019-05-24 09:03:39 -0700655 res = fqdir_init(&net->ipv4.fqdir, &ip4_frags, net);
656 if (res < 0)
657 return res;
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000658 /* Fragment cache limits.
659 *
660 * The fragment memory accounting code, (tries to) account for
661 * the real memory usage, by measuring both the size of frag
662 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
663 * and the SKB's truesize.
664 *
665 * A 64K fragment consumes 129736 bytes (44*2944)+200
666 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
667 *
668 * We will commit 4MB at one time. Should we cross that limit
669 * we will prune down to 3MB, making room for approx 8 big 64K
670 * fragments 8x128k.
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800671 */
Eric Dumazet4907abc2019-05-24 09:03:39 -0700672 net->ipv4.fqdir->high_thresh = 4 * 1024 * 1024;
673 net->ipv4.fqdir->low_thresh = 3 * 1024 * 1024;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800674 /*
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800675 * Important NOTE! Fragment queue must be destroyed before MSL expires.
676 * RFC791 is wrong proposing to prolongate timer each fragment arrival
677 * by TTL.
678 */
Eric Dumazet4907abc2019-05-24 09:03:39 -0700679 net->ipv4.fqdir->timeout = IP_FRAG_TIME;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800680
Eric Dumazet4907abc2019-05-24 09:03:39 -0700681 net->ipv4.fqdir->max_dist = 64;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200682
Eric Dumazet787bea72018-03-31 12:58:43 -0700683 res = ip4_frags_ns_ctl_register(net);
684 if (res < 0)
Eric Dumazet4907abc2019-05-24 09:03:39 -0700685 fqdir_exit(net->ipv4.fqdir);
Eric Dumazet787bea72018-03-31 12:58:43 -0700686 return res;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800687}
688
Eric Dumazetd5dd8872019-06-18 11:09:00 -0700689static void __net_exit ipv4_frags_pre_exit_net(struct net *net)
690{
691 fqdir_pre_exit(net->ipv4.fqdir);
692}
693
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000694static void __net_exit ipv4_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800695{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700696 ip4_frags_ns_ctl_unregister(net);
Eric Dumazet4907abc2019-05-24 09:03:39 -0700697 fqdir_exit(net->ipv4.fqdir);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800698}
699
700static struct pernet_operations ip4_frags_ops = {
Eric Dumazetd5dd8872019-06-18 11:09:00 -0700701 .init = ipv4_frags_init_net,
702 .pre_exit = ipv4_frags_pre_exit_net,
703 .exit = ipv4_frags_exit_net,
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800704};
705
Eric Dumazet648700f2018-03-31 12:58:49 -0700706
707static u32 ip4_key_hashfn(const void *data, u32 len, u32 seed)
708{
709 return jhash2(data,
710 sizeof(struct frag_v4_compare_key) / sizeof(u32), seed);
711}
712
713static u32 ip4_obj_hashfn(const void *data, u32 len, u32 seed)
714{
715 const struct inet_frag_queue *fq = data;
716
717 return jhash2((const u32 *)&fq->key.v4,
718 sizeof(struct frag_v4_compare_key) / sizeof(u32), seed);
719}
720
721static int ip4_obj_cmpfn(struct rhashtable_compare_arg *arg, const void *ptr)
722{
723 const struct frag_v4_compare_key *key = arg->key;
724 const struct inet_frag_queue *fq = ptr;
725
726 return !!memcmp(&fq->key, key, sizeof(*key));
727}
728
729static const struct rhashtable_params ip4_rhash_params = {
730 .head_offset = offsetof(struct inet_frag_queue, node),
731 .key_offset = offsetof(struct inet_frag_queue, key),
732 .key_len = sizeof(struct frag_v4_compare_key),
733 .hashfn = ip4_key_hashfn,
734 .obj_hashfn = ip4_obj_hashfn,
735 .obj_cmpfn = ip4_obj_cmpfn,
736 .automatic_shrinking = true,
737};
738
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700739void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700741 ip4_frags.constructor = ip4_frag_init;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700742 ip4_frags.destructor = ip4_frag_free;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700743 ip4_frags.qsize = sizeof(struct ipq);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700744 ip4_frags.frag_expire = ip_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200745 ip4_frags.frags_cache_name = ip_frag_cache_name;
Eric Dumazet648700f2018-03-31 12:58:49 -0700746 ip4_frags.rhash_params = ip4_rhash_params;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200747 if (inet_frags_init(&ip4_frags))
748 panic("IP: failed to allocate ip4_frags cache\n");
Eric Dumazet483a6e42018-03-31 12:58:47 -0700749 ip4_frags_ctl_register();
750 register_pernet_subsys(&ip4_frags_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}