blob: 22369694b2fbfff807211a22d1c06e02eb5093c2 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * IPv6 fragment reassembly
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09007 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Based on: net/ipv4/ip_fragment.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090012/*
13 * Fixes:
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Andi Kleen Make it work with multiple hosts.
15 * More RFC compliance.
16 *
17 * Horst von Brand Add missing #include <linux/string.h>
18 * Alexey Kuznetsov SMP races, threading, cleanup.
19 * Patrick McHardy LRU queue of frag heads for evictor.
20 * Mitsuru KANDA @USAGI Register inet6_protocol{}.
21 * David Stevens and
22 * YOSHIFUJI,H. @USAGI Always remove fragment header to
23 * calculate ICV correctly.
24 */
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +000025
26#define pr_fmt(fmt) "IPv6: " fmt
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/errno.h>
29#include <linux/types.h>
30#include <linux/string.h>
31#include <linux/socket.h>
32#include <linux/sockios.h>
33#include <linux/jiffies.h>
34#include <linux/net.h>
35#include <linux/list.h>
36#include <linux/netdevice.h>
37#include <linux/in6.h>
38#include <linux/ipv6.h>
39#include <linux/icmpv6.h>
40#include <linux/random.h>
41#include <linux/jhash.h>
Herbert Xuf61944e2007-10-15 01:28:47 -070042#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040044#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <net/sock.h>
47#include <net/snmp.h>
48
49#include <net/ipv6.h>
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +090050#include <net/ip6_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/protocol.h>
52#include <net/transp_v6.h>
53#include <net/rawv6.h>
54#include <net/ndisc.h>
55#include <net/addrconf.h>
Florian Westphal70b095c2018-07-14 01:14:01 +020056#include <net/ipv6_frag.h>
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +000057#include <net/inet_ecn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020059static const char ip6_frag_cache_name[] = "ip6-frags";
60
Fabian Frederickfc08c252014-10-29 11:38:17 +010061static u8 ip6_frag_ecn(const struct ipv6hdr *ipv6h)
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +000062{
63 return 1 << (ipv6_get_dsfield(ipv6h) & INET_ECN_MASK);
64}
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070066static struct inet_frags ip6_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Peter Oskolkovd4289fc2019-01-22 10:02:51 -080068static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *skb,
69 struct sk_buff *prev_tail, struct net_device *dev);
Herbert Xuf61944e2007-10-15 01:28:47 -070070
Kees Cook78802012017-10-16 17:29:20 -070071static void ip6_frag_expire(struct timer_list *t)
Amerigo Wangb836c992012-09-18 16:50:09 +000072{
Kees Cook78802012017-10-16 17:29:20 -070073 struct inet_frag_queue *frag = from_timer(frag, t, timer);
Amerigo Wangb836c992012-09-18 16:50:09 +000074 struct frag_queue *fq;
75 struct net *net;
76
Kees Cook78802012017-10-16 17:29:20 -070077 fq = container_of(frag, struct frag_queue, q);
Amerigo Wangb836c992012-09-18 16:50:09 +000078 net = container_of(fq->q.net, struct net, ipv6.frags);
79
Florian Westphal70b095c2018-07-14 01:14:01 +020080 ip6frag_expire_frag_queue(net, fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Fabian Frederickfc08c252014-10-29 11:38:17 +010083static struct frag_queue *
Eric Dumazet648700f2018-03-31 12:58:49 -070084fq_find(struct net *net, __be32 id, const struct ipv6hdr *hdr, int iif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Eric Dumazet648700f2018-03-31 12:58:49 -070086 struct frag_v6_compare_key key = {
87 .id = id,
88 .saddr = hdr->saddr,
89 .daddr = hdr->daddr,
90 .user = IP6_DEFRAG_LOCAL_DELIVER,
91 .iif = iif,
92 };
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070093 struct inet_frag_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Eric Dumazet648700f2018-03-31 12:58:49 -070095 if (!(ipv6_addr_type(&hdr->daddr) & (IPV6_ADDR_MULTICAST |
96 IPV6_ADDR_LINKLOCAL)))
97 key.iif = 0;
Pavel Emelyanov9a375802008-06-27 20:06:08 -070098
Eric Dumazet648700f2018-03-31 12:58:49 -070099 q = inet_frag_find(&net->ipv6.frags, &key);
Eric Dumazet2d44ed22018-03-31 12:58:52 -0700100 if (!q)
Shan Wei95463772010-02-11 00:12:45 +0000101 return NULL;
Eric Dumazet2d44ed22018-03-31 12:58:52 -0700102
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700103 return container_of(q, struct frag_queue, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Herbert Xuf61944e2007-10-15 01:28:47 -0700106static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
Eric Dumazet415787d2018-04-17 18:11:44 -0700107 struct frag_hdr *fhdr, int nhoff,
108 u32 *prob_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Eric Dumazetadf30902009-06-02 05:19:30 +0000110 struct net *net = dev_net(skb_dst(skb)->dev);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800111 int offset, end, fragsize;
112 struct sk_buff *prev_tail;
113 struct net_device *dev;
114 int err = -ENOENT;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000115 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200117 if (fq->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 goto err;
119
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800120 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 offset = ntohs(fhdr->frag_off) & ~0x7;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700122 end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
123 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if ((unsigned int)end > IPV6_MAXPLEN) {
Eric Dumazet415787d2018-04-17 18:11:44 -0700126 *prob_offset = (u8 *)&fhdr->frag_off - skb_network_header(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800127 /* note that if prob_offset is set, the skb is freed elsewhere,
128 * we do not free it here.
129 */
Herbert Xuf61944e2007-10-15 01:28:47 -0700130 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000133 ecn = ip6_frag_ecn(ipv6_hdr(skb));
134
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700135 if (skb->ip_summed == CHECKSUM_COMPLETE) {
136 const unsigned char *nh = skb_network_header(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900137 skb->csum = csum_sub(skb->csum,
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700138 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
139 0));
140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 /* Is this the final fragment? */
143 if (!(fhdr->frag_off & htons(IP6_MF))) {
144 /* If we already have some bits beyond end
145 * or have different end, the segment is corrupted.
146 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700147 if (end < fq->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200148 ((fq->q.flags & INET_FRAG_LAST_IN) && end != fq->q.len))
Peter Oskolkov2475f592018-09-21 11:17:15 -0700149 goto discard_fq;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200150 fq->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700151 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 } else {
153 /* Check if the fragment is rounded to 8 bytes.
154 * Required by the RFC.
155 */
156 if (end & 0x7) {
157 /* RFC2460 says always send parameter problem in
158 * this case. -DaveM
159 */
Eric Dumazet415787d2018-04-17 18:11:44 -0700160 *prob_offset = offsetof(struct ipv6hdr, payload_len);
Herbert Xuf61944e2007-10-15 01:28:47 -0700161 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700163 if (end > fq->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200165 if (fq->q.flags & INET_FRAG_LAST_IN)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700166 goto discard_fq;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700167 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
169 }
170
171 if (end == offset)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700172 goto discard_fq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800174 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /* Point into the IP datagram 'data' part. */
176 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data))
Peter Oskolkov2475f592018-09-21 11:17:15 -0700177 goto discard_fq;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900178
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800179 err = pskb_trim_rcsum(skb, end - offset);
180 if (err)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700181 goto discard_fq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800183 /* Note : skb->rbnode and skb->dev share the same location. */
Eric Dumazet219badf2018-03-31 12:58:59 -0700184 dev = skb->dev;
Eric Dumazet219badf2018-03-31 12:58:59 -0700185 /* Makes sure compiler wont do silly aliasing games */
186 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800188 prev_tail = fq->q.fragments_tail;
189 err = inet_frag_queue_insert(&fq->q, skb, offset, end);
190 if (err)
191 goto insert_error;
192
193 if (dev)
194 fq->iif = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700196 fq->q.stamp = skb->tstamp;
197 fq->q.meat += skb->len;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000198 fq->ecn |= ecn;
Florian Westphal0e60d242015-07-23 12:05:38 +0200199 add_frag_mem_limit(fq->q.net, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Willem de Bruijndbd17592016-11-02 11:02:18 -0400201 fragsize = -skb_network_offset(skb) + skb->len;
202 if (fragsize > fq->q.max_size)
203 fq->q.max_size = fragsize;
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* The first fragment.
206 * nhoffset is obtained from the first fragment, of course.
207 */
208 if (offset == 0) {
209 fq->nhoffset = nhoff;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200210 fq->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
Herbert Xuf61944e2007-10-15 01:28:47 -0700212
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200213 if (fq->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000214 fq->q.meat == fq->q.len) {
Eric Dumazet97599dc2013-04-16 12:55:41 +0000215 unsigned long orefdst = skb->_skb_refdst;
Herbert Xuf61944e2007-10-15 01:28:47 -0700216
Eric Dumazet97599dc2013-04-16 12:55:41 +0000217 skb->_skb_refdst = 0UL;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800218 err = ip6_frag_reasm(fq, skb, prev_tail, dev);
Eric Dumazet97599dc2013-04-16 12:55:41 +0000219 skb->_skb_refdst = orefdst;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800220 return err;
Eric Dumazet97599dc2013-04-16 12:55:41 +0000221 }
222
223 skb_dst_drop(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800224 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800226insert_error:
227 if (err == IPFRAG_DUP) {
228 kfree_skb(skb);
229 return -EINVAL;
230 }
231 err = -EINVAL;
232 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
233 IPSTATS_MIB_REASM_OVERLAPS);
Nicolas Dichtel70789d72010-09-03 05:13:05 +0000234discard_fq:
Eric Dumazet093ba722018-03-31 12:58:44 -0700235 inet_frag_kill(&fq->q);
Eric Dumazet1d015502016-04-27 16:44:40 -0700236 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
237 IPSTATS_MIB_REASMFAILS);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800238err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 kfree_skb(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800240 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243/*
244 * Check if this packet is complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 *
246 * It is called with locked fq, and caller must check that
247 * queue is eligible for reassembly i.e. it is not COMPLETE,
248 * the last and the first frames arrived and all the bits are here.
249 */
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800250static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *skb,
251 struct sk_buff *prev_tail, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700253 struct net *net = container_of(fq->q.net, struct net, ipv6.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 unsigned int nhoff;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800255 void *reasm_data;
256 int payload_len;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000257 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Eric Dumazet093ba722018-03-31 12:58:44 -0700259 inet_frag_kill(&fq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000261 ecn = ip_frag_ecn_table[fq->ecn];
262 if (unlikely(ecn == 0xff))
263 goto out_fail;
264
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800265 reasm_data = inet_frag_reasm_prepare(&fq->q, skb, prev_tail);
266 if (!reasm_data)
267 goto out_oom;
Herbert Xuf61944e2007-10-15 01:28:47 -0700268
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800269 payload_len = ((skb->data - skb_network_header(skb)) -
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700270 sizeof(struct ipv6hdr) + fq->q.len -
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700271 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (payload_len > IPV6_MAXPLEN)
273 goto out_oversize;
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* We have to remove fragment header from datagram and to relocate
276 * header in order to calculate ICV correctly. */
277 nhoff = fq->nhoffset;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800278 skb_network_header(skb)[nhoff] = skb_transport_header(skb)[0];
279 memmove(skb->head + sizeof(struct frag_hdr), skb->head,
280 (skb->data - skb->head) - sizeof(struct frag_hdr));
281 if (skb_mac_header_was_set(skb))
282 skb->mac_header += sizeof(struct frag_hdr);
283 skb->network_header += sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800285 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800287 inet_frag_reasm_finish(&fq->q, skb, reasm_data);
Eric Dumazetec164392012-05-19 03:02:35 +0000288
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800289 skb->dev = dev;
290 ipv6_hdr(skb)->payload_len = htons(payload_len);
291 ipv6_change_dsfield(ipv6_hdr(skb), 0xff, ecn);
292 IP6CB(skb)->nhoff = nhoff;
293 IP6CB(skb)->flags |= IP6SKB_FRAGMENTED;
294 IP6CB(skb)->frag_max_size = fq->q.max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* Yes, and fold redundant checksum back. 8) */
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800297 skb_postpush_rcsum(skb, skb_network_header(skb),
298 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900300 rcu_read_lock();
Eric Dumazet1d015502016-04-27 16:44:40 -0700301 __IP6_INC_STATS(net, __in6_dev_get(dev), IPSTATS_MIB_REASMOKS);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900302 rcu_read_unlock();
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000303 fq->q.rb_fragments = RB_ROOT;
Changli Gaod6bebca2010-06-29 04:39:37 +0000304 fq->q.fragments_tail = NULL;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800305 fq->q.last_run_head = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 1;
307
308out_oversize:
Joe Perchese87cc472012-05-13 21:56:26 +0000309 net_dbg_ratelimited("ip6_frag_reasm: payload len = %d\n", payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 goto out_fail;
311out_oom:
Joe Perchese87cc472012-05-13 21:56:26 +0000312 net_dbg_ratelimited("ip6_frag_reasm: no memory for reassembly\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313out_fail:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900314 rcu_read_lock();
Eric Dumazet1d015502016-04-27 16:44:40 -0700315 __IP6_INC_STATS(net, __in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900316 rcu_read_unlock();
Peter Oskolkov2475f592018-09-21 11:17:15 -0700317 inet_frag_kill(&fq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return -1;
319}
320
Herbert Xue5bbef22007-10-15 12:50:28 -0700321static int ipv6_frag_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 struct frag_hdr *fhdr;
324 struct frag_queue *fq;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000325 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000326 struct net *net = dev_net(skb_dst(skb)->dev);
Eric Dumazet648700f2018-03-31 12:58:49 -0700327 int iif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Hannes Frederic Sowaf46078c2013-08-16 13:30:07 +0200329 if (IP6CB(skb)->flags & IP6SKB_FRAGMENTED)
330 goto fail_hdr;
331
Eric Dumazet1d015502016-04-27 16:44:40 -0700332 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /* Jumbo payload inhibits frag. header */
Ian Morris67ba4152014-08-24 21:53:10 +0100335 if (hdr->payload_len == 0)
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700336 goto fail_hdr;
337
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700338 if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700339 sizeof(struct frag_hdr))))
340 goto fail_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700342 hdr = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700343 fhdr = (struct frag_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 if (!(fhdr->frag_off & htons(0xFFF9))) {
346 /* It is not a fragmented frame */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700347 skb->transport_header += sizeof(struct frag_hdr);
Eric Dumazet1d015502016-04-27 16:44:40 -0700348 __IP6_INC_STATS(net,
349 ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700351 IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb);
Hannes Frederic Sowaf46078c2013-08-16 13:30:07 +0200352 IP6CB(skb)->flags |= IP6SKB_FRAGMENTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 1;
354 }
355
Eric Dumazet648700f2018-03-31 12:58:49 -0700356 iif = skb->dev ? skb->dev->ifindex : 0;
357 fq = fq_find(net, fhdr->identification, hdr, iif);
Ian Morris53b24b82015-03-29 14:00:05 +0100358 if (fq) {
Eric Dumazet415787d2018-04-17 18:11:44 -0700359 u32 prob_offset = 0;
Herbert Xuf61944e2007-10-15 01:28:47 -0700360 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700362 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Eric Dumazet648700f2018-03-31 12:58:49 -0700364 fq->iif = iif;
Eric Dumazet415787d2018-04-17 18:11:44 -0700365 ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff,
366 &prob_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700368 spin_unlock(&fq->q.lock);
Eric Dumazet093ba722018-03-31 12:58:44 -0700369 inet_frag_put(&fq->q);
Eric Dumazet415787d2018-04-17 18:11:44 -0700370 if (prob_offset) {
371 __IP6_INC_STATS(net, __in6_dev_get_safely(skb->dev),
372 IPSTATS_MIB_INHDRERRORS);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800373 /* icmpv6_param_prob() calls kfree_skb(skb) */
Eric Dumazet415787d2018-04-17 18:11:44 -0700374 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, prob_offset);
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return ret;
377 }
378
Eric Dumazet1d015502016-04-27 16:44:40 -0700379 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 kfree_skb(skb);
381 return -1;
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700382
383fail_hdr:
Stephen Suryaputrabdb7cc62018-04-16 13:42:16 -0400384 __IP6_INC_STATS(net, __in6_dev_get_safely(skb->dev),
Eric Dumazet1d015502016-04-27 16:44:40 -0700385 IPSTATS_MIB_INHDRERRORS);
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700386 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb_network_header_len(skb));
387 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Ian Morriscc24bec2014-08-24 21:53:11 +0100390static const struct inet6_protocol frag_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 .handler = ipv6_frag_rcv,
392 .flags = INET6_PROTO_NOPOLICY,
393};
394
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800395#ifdef CONFIG_SYSCTL
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200396
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700397static struct ctl_table ip6_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800398 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800399 .procname = "ip6frag_high_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800400 .data = &init_net.ipv6.frags.high_thresh,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700401 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800402 .mode = 0644,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700403 .proc_handler = proc_doulongvec_minmax,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200404 .extra1 = &init_net.ipv6.frags.low_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800405 },
406 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800407 .procname = "ip6frag_low_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800408 .data = &init_net.ipv6.frags.low_thresh,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700409 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800410 .mode = 0644,
Eric Dumazet6e00f7d2018-04-01 21:57:59 -0700411 .proc_handler = proc_doulongvec_minmax,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200412 .extra2 = &init_net.ipv6.frags.high_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800413 },
414 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800415 .procname = "ip6frag_time",
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800416 .data = &init_net.ipv6.frags.timeout,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800417 .maxlen = sizeof(int),
418 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800419 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800420 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700421 { }
422};
423
Florian Westphale3a57d12014-07-24 16:50:35 +0200424/* secret interval has been deprecated */
425static int ip6_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700426static struct ctl_table ip6_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800427 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800428 .procname = "ip6frag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200429 .data = &ip6_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800430 .maxlen = sizeof(int),
431 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800432 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800433 },
434 { }
435};
Daniel Lezcano7d460db2008-01-18 23:52:35 -0800436
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000437static int __net_init ip6_frags_ns_sysctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800438{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800439 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800440 struct ctl_table_header *hdr;
441
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700442 table = ip6_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800443 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700444 table = kmemdup(table, sizeof(ip6_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100445 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800446 goto err_alloc;
447
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800448 table[0].data = &net->ipv6.frags.high_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200449 table[0].extra1 = &net->ipv6.frags.low_thresh;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800450 table[1].data = &net->ipv6.frags.low_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200451 table[1].extra2 = &net->ipv6.frags.high_thresh;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800452 table[2].data = &net->ipv6.frags.timeout;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800453 }
454
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000455 hdr = register_net_sysctl(net, "net/ipv6", table);
Ian Morris63159f22015-03-29 14:00:04 +0100456 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800457 goto err_reg;
458
459 net->ipv6.sysctl.frags_hdr = hdr;
460 return 0;
461
462err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800463 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800464 kfree(table);
465err_alloc:
466 return -ENOMEM;
467}
468
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000469static void __net_exit ip6_frags_ns_sysctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800470{
471 struct ctl_table *table;
472
473 table = net->ipv6.sysctl.frags_hdr->ctl_table_arg;
474 unregister_net_sysctl_table(net->ipv6.sysctl.frags_hdr);
Yang Hongyang3705e112009-12-18 20:25:13 -0800475 if (!net_eq(net, &init_net))
476 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800477}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700478
479static struct ctl_table_header *ip6_ctl_header;
480
481static int ip6_frags_sysctl_register(void)
482{
Eric W. Biederman43444752012-04-19 13:22:55 +0000483 ip6_ctl_header = register_net_sysctl(&init_net, "net/ipv6",
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700484 ip6_frags_ctl_table);
485 return ip6_ctl_header == NULL ? -ENOMEM : 0;
486}
487
488static void ip6_frags_sysctl_unregister(void)
489{
490 unregister_net_sysctl_table(ip6_ctl_header);
491}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800492#else
Fabian Frederickfc08c252014-10-29 11:38:17 +0100493static int ip6_frags_ns_sysctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800494{
495 return 0;
496}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800497
Fabian Frederickfc08c252014-10-29 11:38:17 +0100498static void ip6_frags_ns_sysctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800499{
500}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700501
Fabian Frederickfc08c252014-10-29 11:38:17 +0100502static int ip6_frags_sysctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700503{
504 return 0;
505}
506
Fabian Frederickfc08c252014-10-29 11:38:17 +0100507static void ip6_frags_sysctl_unregister(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700508{
509}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800510#endif
511
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000512static int __net_init ipv6_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800513{
Eric Dumazet787bea72018-03-31 12:58:43 -0700514 int res;
515
Shan Wei7c070aa2010-01-20 10:42:41 +0100516 net->ipv6.frags.high_thresh = IPV6_FRAG_HIGH_THRESH;
517 net->ipv6.frags.low_thresh = IPV6_FRAG_LOW_THRESH;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800518 net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT;
Eric Dumazet093ba722018-03-31 12:58:44 -0700519 net->ipv6.frags.f = &ip6_frags;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800520
Eric Dumazet787bea72018-03-31 12:58:43 -0700521 res = inet_frags_init_net(&net->ipv6.frags);
522 if (res < 0)
523 return res;
Jesper Dangaard Brouer5a636432017-09-01 11:26:13 +0200524
Eric Dumazet787bea72018-03-31 12:58:43 -0700525 res = ip6_frags_ns_sysctl_register(net);
526 if (res < 0)
Eric Dumazet093ba722018-03-31 12:58:44 -0700527 inet_frags_exit_net(&net->ipv6.frags);
Eric Dumazet787bea72018-03-31 12:58:43 -0700528 return res;
Daniel Lezcanoe71e0342008-01-10 02:56:03 -0800529}
530
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000531static void __net_exit ipv6_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800532{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700533 ip6_frags_ns_sysctl_unregister(net);
Eric Dumazet093ba722018-03-31 12:58:44 -0700534 inet_frags_exit_net(&net->ipv6.frags);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800535}
536
537static struct pernet_operations ip6_frags_ops = {
538 .init = ipv6_frags_init_net,
539 .exit = ipv6_frags_exit_net,
540};
541
Florian Westphal70b095c2018-07-14 01:14:01 +0200542static const struct rhashtable_params ip6_rhash_params = {
Eric Dumazet648700f2018-03-31 12:58:49 -0700543 .head_offset = offsetof(struct inet_frag_queue, node),
Florian Westphal70b095c2018-07-14 01:14:01 +0200544 .hashfn = ip6frag_key_hashfn,
545 .obj_hashfn = ip6frag_obj_hashfn,
546 .obj_cmpfn = ip6frag_obj_cmpfn,
Eric Dumazet648700f2018-03-31 12:58:49 -0700547 .automatic_shrinking = true,
548};
Eric Dumazet648700f2018-03-31 12:58:49 -0700549
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800550int __init ipv6_frag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800552 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Florian Westphal70b095c2018-07-14 01:14:01 +0200554 ip6_frags.constructor = ip6frag_init;
Pavel Emelyanovc9547702007-10-17 19:48:26 -0700555 ip6_frags.destructor = NULL;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700556 ip6_frags.qsize = sizeof(struct frag_queue);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700557 ip6_frags.frag_expire = ip6_frag_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200558 ip6_frags.frags_cache_name = ip6_frag_cache_name;
Eric Dumazet648700f2018-03-31 12:58:49 -0700559 ip6_frags.rhash_params = ip6_rhash_params;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200560 ret = inet_frags_init(&ip6_frags);
561 if (ret)
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700562 goto out;
563
564 ret = inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT);
565 if (ret)
566 goto err_protocol;
567
568 ret = ip6_frags_sysctl_register();
569 if (ret)
570 goto err_sysctl;
571
572 ret = register_pernet_subsys(&ip6_frags_ops);
573 if (ret)
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200574 goto err_pernet;
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700575
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800576out:
577 return ret;
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700578
579err_pernet:
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700580 ip6_frags_sysctl_unregister();
581err_sysctl:
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700582 inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700583err_protocol:
584 inet_frags_fini(&ip6_frags);
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700585 goto out;
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800586}
587
588void ipv6_frag_exit(void)
589{
590 inet_frags_fini(&ip6_frags);
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700591 ip6_frags_sysctl_unregister();
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800592 unregister_pernet_subsys(&ip6_frags_ops);
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800593 inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}