blob: 24264d0a4b859b89a3e3da1dd32f78497b44c02c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 fragment reassembly
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Based on: net/ipv4/ip_fragment.c
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090016/*
17 * Fixes:
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * Andi Kleen Make it work with multiple hosts.
19 * More RFC compliance.
20 *
21 * Horst von Brand Add missing #include <linux/string.h>
22 * Alexey Kuznetsov SMP races, threading, cleanup.
23 * Patrick McHardy LRU queue of frag heads for evictor.
24 * Mitsuru KANDA @USAGI Register inet6_protocol{}.
25 * David Stevens and
26 * YOSHIFUJI,H. @USAGI Always remove fragment header to
27 * calculate ICV correctly.
28 */
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +000029
30#define pr_fmt(fmt) "IPv6: " fmt
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/errno.h>
33#include <linux/types.h>
34#include <linux/string.h>
35#include <linux/socket.h>
36#include <linux/sockios.h>
37#include <linux/jiffies.h>
38#include <linux/net.h>
39#include <linux/list.h>
40#include <linux/netdevice.h>
41#include <linux/in6.h>
42#include <linux/ipv6.h>
43#include <linux/icmpv6.h>
44#include <linux/random.h>
45#include <linux/jhash.h>
Herbert Xuf61944e2007-10-15 01:28:47 -070046#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090047#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040048#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#include <net/sock.h>
51#include <net/snmp.h>
52
53#include <net/ipv6.h>
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +090054#include <net/ip6_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <net/protocol.h>
56#include <net/transp_v6.h>
57#include <net/rawv6.h>
58#include <net/ndisc.h>
59#include <net/addrconf.h>
Florian Westphal70b095c2018-07-14 01:14:01 +020060#include <net/ipv6_frag.h>
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +000061#include <net/inet_ecn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020063static const char ip6_frag_cache_name[] = "ip6-frags";
64
Fabian Frederickfc08c252014-10-29 11:38:17 +010065static u8 ip6_frag_ecn(const struct ipv6hdr *ipv6h)
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +000066{
67 return 1 << (ipv6_get_dsfield(ipv6h) & INET_ECN_MASK);
68}
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070070static struct inet_frags ip6_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Peter Oskolkovd4289fc2019-01-22 10:02:51 -080072static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *skb,
73 struct sk_buff *prev_tail, struct net_device *dev);
Herbert Xuf61944e2007-10-15 01:28:47 -070074
Kees Cook78802012017-10-16 17:29:20 -070075static void ip6_frag_expire(struct timer_list *t)
Amerigo Wangb836c992012-09-18 16:50:09 +000076{
Kees Cook78802012017-10-16 17:29:20 -070077 struct inet_frag_queue *frag = from_timer(frag, t, timer);
Amerigo Wangb836c992012-09-18 16:50:09 +000078 struct frag_queue *fq;
79 struct net *net;
80
Kees Cook78802012017-10-16 17:29:20 -070081 fq = container_of(frag, struct frag_queue, q);
Amerigo Wangb836c992012-09-18 16:50:09 +000082 net = container_of(fq->q.net, struct net, ipv6.frags);
83
Florian Westphal70b095c2018-07-14 01:14:01 +020084 ip6frag_expire_frag_queue(net, fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Fabian Frederickfc08c252014-10-29 11:38:17 +010087static struct frag_queue *
Eric Dumazet648700f2018-03-31 12:58:49 -070088fq_find(struct net *net, __be32 id, const struct ipv6hdr *hdr, int iif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Eric Dumazet648700f2018-03-31 12:58:49 -070090 struct frag_v6_compare_key key = {
91 .id = id,
92 .saddr = hdr->saddr,
93 .daddr = hdr->daddr,
94 .user = IP6_DEFRAG_LOCAL_DELIVER,
95 .iif = iif,
96 };
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070097 struct inet_frag_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Eric Dumazet648700f2018-03-31 12:58:49 -070099 if (!(ipv6_addr_type(&hdr->daddr) & (IPV6_ADDR_MULTICAST |
100 IPV6_ADDR_LINKLOCAL)))
101 key.iif = 0;
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700102
Eric Dumazet648700f2018-03-31 12:58:49 -0700103 q = inet_frag_find(&net->ipv6.frags, &key);
Eric Dumazet2d44ed22018-03-31 12:58:52 -0700104 if (!q)
Shan Wei95463772010-02-11 00:12:45 +0000105 return NULL;
Eric Dumazet2d44ed22018-03-31 12:58:52 -0700106
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700107 return container_of(q, struct frag_queue, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Herbert Xuf61944e2007-10-15 01:28:47 -0700110static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
Eric Dumazet415787d2018-04-17 18:11:44 -0700111 struct frag_hdr *fhdr, int nhoff,
112 u32 *prob_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Eric Dumazetadf30902009-06-02 05:19:30 +0000114 struct net *net = dev_net(skb_dst(skb)->dev);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800115 int offset, end, fragsize;
116 struct sk_buff *prev_tail;
117 struct net_device *dev;
118 int err = -ENOENT;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000119 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200121 if (fq->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 goto err;
123
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800124 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 offset = ntohs(fhdr->frag_off) & ~0x7;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700126 end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
127 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if ((unsigned int)end > IPV6_MAXPLEN) {
Eric Dumazet415787d2018-04-17 18:11:44 -0700130 *prob_offset = (u8 *)&fhdr->frag_off - skb_network_header(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800131 /* note that if prob_offset is set, the skb is freed elsewhere,
132 * we do not free it here.
133 */
Herbert Xuf61944e2007-10-15 01:28:47 -0700134 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000137 ecn = ip6_frag_ecn(ipv6_hdr(skb));
138
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700139 if (skb->ip_summed == CHECKSUM_COMPLETE) {
140 const unsigned char *nh = skb_network_header(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900141 skb->csum = csum_sub(skb->csum,
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700142 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
143 0));
144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* Is this the final fragment? */
147 if (!(fhdr->frag_off & htons(IP6_MF))) {
148 /* If we already have some bits beyond end
149 * or have different end, the segment is corrupted.
150 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700151 if (end < fq->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200152 ((fq->q.flags & INET_FRAG_LAST_IN) && end != fq->q.len))
Peter Oskolkov2475f592018-09-21 11:17:15 -0700153 goto discard_fq;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200154 fq->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700155 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 } else {
157 /* Check if the fragment is rounded to 8 bytes.
158 * Required by the RFC.
159 */
160 if (end & 0x7) {
161 /* RFC2460 says always send parameter problem in
162 * this case. -DaveM
163 */
Eric Dumazet415787d2018-04-17 18:11:44 -0700164 *prob_offset = offsetof(struct ipv6hdr, payload_len);
Herbert Xuf61944e2007-10-15 01:28:47 -0700165 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700167 if (end > fq->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200169 if (fq->q.flags & INET_FRAG_LAST_IN)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700170 goto discard_fq;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700171 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173 }
174
175 if (end == offset)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700176 goto discard_fq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800178 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* Point into the IP datagram 'data' part. */
180 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data))
Peter Oskolkov2475f592018-09-21 11:17:15 -0700181 goto discard_fq;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900182
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800183 err = pskb_trim_rcsum(skb, end - offset);
184 if (err)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700185 goto discard_fq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800187 /* Note : skb->rbnode and skb->dev share the same location. */
Eric Dumazet219badf2018-03-31 12:58:59 -0700188 dev = skb->dev;
Eric Dumazet219badf2018-03-31 12:58:59 -0700189 /* Makes sure compiler wont do silly aliasing games */
190 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800192 prev_tail = fq->q.fragments_tail;
193 err = inet_frag_queue_insert(&fq->q, skb, offset, end);
194 if (err)
195 goto insert_error;
196
197 if (dev)
198 fq->iif = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700200 fq->q.stamp = skb->tstamp;
201 fq->q.meat += skb->len;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000202 fq->ecn |= ecn;
Florian Westphal0e60d242015-07-23 12:05:38 +0200203 add_frag_mem_limit(fq->q.net, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Willem de Bruijndbd17592016-11-02 11:02:18 -0400205 fragsize = -skb_network_offset(skb) + skb->len;
206 if (fragsize > fq->q.max_size)
207 fq->q.max_size = fragsize;
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* The first fragment.
210 * nhoffset is obtained from the first fragment, of course.
211 */
212 if (offset == 0) {
213 fq->nhoffset = nhoff;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200214 fq->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Herbert Xuf61944e2007-10-15 01:28:47 -0700216
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200217 if (fq->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000218 fq->q.meat == fq->q.len) {
Eric Dumazet97599dc2013-04-16 12:55:41 +0000219 unsigned long orefdst = skb->_skb_refdst;
Herbert Xuf61944e2007-10-15 01:28:47 -0700220
Eric Dumazet97599dc2013-04-16 12:55:41 +0000221 skb->_skb_refdst = 0UL;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800222 err = ip6_frag_reasm(fq, skb, prev_tail, dev);
Eric Dumazet97599dc2013-04-16 12:55:41 +0000223 skb->_skb_refdst = orefdst;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800224 return err;
Eric Dumazet97599dc2013-04-16 12:55:41 +0000225 }
226
227 skb_dst_drop(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800228 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800230insert_error:
231 if (err == IPFRAG_DUP) {
232 kfree_skb(skb);
233 return -EINVAL;
234 }
235 err = -EINVAL;
236 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
237 IPSTATS_MIB_REASM_OVERLAPS);
Nicolas Dichtel70789d72010-09-03 05:13:05 +0000238discard_fq:
Eric Dumazet093ba722018-03-31 12:58:44 -0700239 inet_frag_kill(&fq->q);
Eric Dumazet1d015502016-04-27 16:44:40 -0700240 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
241 IPSTATS_MIB_REASMFAILS);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800242err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 kfree_skb(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800244 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247/*
248 * Check if this packet is complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 *
250 * It is called with locked fq, and caller must check that
251 * queue is eligible for reassembly i.e. it is not COMPLETE,
252 * the last and the first frames arrived and all the bits are here.
253 */
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800254static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *skb,
255 struct sk_buff *prev_tail, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700257 struct net *net = container_of(fq->q.net, struct net, ipv6.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 unsigned int nhoff;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800259 void *reasm_data;
260 int payload_len;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000261 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Eric Dumazet093ba722018-03-31 12:58:44 -0700263 inet_frag_kill(&fq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000265 ecn = ip_frag_ecn_table[fq->ecn];
266 if (unlikely(ecn == 0xff))
267 goto out_fail;
268
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800269 reasm_data = inet_frag_reasm_prepare(&fq->q, skb, prev_tail);
270 if (!reasm_data)
271 goto out_oom;
Herbert Xuf61944e2007-10-15 01:28:47 -0700272
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800273 payload_len = ((skb->data - skb_network_header(skb)) -
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700274 sizeof(struct ipv6hdr) + fq->q.len -
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700275 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (payload_len > IPV6_MAXPLEN)
277 goto out_oversize;
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* We have to remove fragment header from datagram and to relocate
280 * header in order to calculate ICV correctly. */
281 nhoff = fq->nhoffset;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800282 skb_network_header(skb)[nhoff] = skb_transport_header(skb)[0];
283 memmove(skb->head + sizeof(struct frag_hdr), skb->head,
284 (skb->data - skb->head) - sizeof(struct frag_hdr));
285 if (skb_mac_header_was_set(skb))
286 skb->mac_header += sizeof(struct frag_hdr);
287 skb->network_header += sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800289 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800291 inet_frag_reasm_finish(&fq->q, skb, reasm_data);
Eric Dumazetec164392012-05-19 03:02:35 +0000292
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800293 skb->dev = dev;
294 ipv6_hdr(skb)->payload_len = htons(payload_len);
295 ipv6_change_dsfield(ipv6_hdr(skb), 0xff, ecn);
296 IP6CB(skb)->nhoff = nhoff;
297 IP6CB(skb)->flags |= IP6SKB_FRAGMENTED;
298 IP6CB(skb)->frag_max_size = fq->q.max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /* Yes, and fold redundant checksum back. 8) */
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800301 skb_postpush_rcsum(skb, skb_network_header(skb),
302 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900304 rcu_read_lock();
Eric Dumazet1d015502016-04-27 16:44:40 -0700305 __IP6_INC_STATS(net, __in6_dev_get(dev), IPSTATS_MIB_REASMOKS);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900306 rcu_read_unlock();
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700307 fq->q.fragments = NULL;
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000308 fq->q.rb_fragments = RB_ROOT;
Changli Gaod6bebca2010-06-29 04:39:37 +0000309 fq->q.fragments_tail = NULL;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800310 fq->q.last_run_head = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return 1;
312
313out_oversize:
Joe Perchese87cc472012-05-13 21:56:26 +0000314 net_dbg_ratelimited("ip6_frag_reasm: payload len = %d\n", payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 goto out_fail;
316out_oom:
Joe Perchese87cc472012-05-13 21:56:26 +0000317 net_dbg_ratelimited("ip6_frag_reasm: no memory for reassembly\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318out_fail:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900319 rcu_read_lock();
Eric Dumazet1d015502016-04-27 16:44:40 -0700320 __IP6_INC_STATS(net, __in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900321 rcu_read_unlock();
Peter Oskolkov2475f592018-09-21 11:17:15 -0700322 inet_frag_kill(&fq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return -1;
324}
325
Herbert Xue5bbef22007-10-15 12:50:28 -0700326static int ipv6_frag_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct frag_hdr *fhdr;
329 struct frag_queue *fq;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000330 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000331 struct net *net = dev_net(skb_dst(skb)->dev);
Eric Dumazet648700f2018-03-31 12:58:49 -0700332 int iif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Hannes Frederic Sowaf46078c2013-08-16 13:30:07 +0200334 if (IP6CB(skb)->flags & IP6SKB_FRAGMENTED)
335 goto fail_hdr;
336
Eric Dumazet1d015502016-04-27 16:44:40 -0700337 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* Jumbo payload inhibits frag. header */
Ian Morris67ba4152014-08-24 21:53:10 +0100340 if (hdr->payload_len == 0)
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700341 goto fail_hdr;
342
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700343 if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700344 sizeof(struct frag_hdr))))
345 goto fail_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700347 hdr = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700348 fhdr = (struct frag_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 if (!(fhdr->frag_off & htons(0xFFF9))) {
351 /* It is not a fragmented frame */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700352 skb->transport_header += sizeof(struct frag_hdr);
Eric Dumazet1d015502016-04-27 16:44:40 -0700353 __IP6_INC_STATS(net,
354 ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700356 IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb);
Hannes Frederic Sowaf46078c2013-08-16 13:30:07 +0200357 IP6CB(skb)->flags |= IP6SKB_FRAGMENTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 1;
359 }
360
Eric Dumazet648700f2018-03-31 12:58:49 -0700361 iif = skb->dev ? skb->dev->ifindex : 0;
362 fq = fq_find(net, fhdr->identification, hdr, iif);
Ian Morris53b24b82015-03-29 14:00:05 +0100363 if (fq) {
Eric Dumazet415787d2018-04-17 18:11:44 -0700364 u32 prob_offset = 0;
Herbert Xuf61944e2007-10-15 01:28:47 -0700365 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700367 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Eric Dumazet648700f2018-03-31 12:58:49 -0700369 fq->iif = iif;
Eric Dumazet415787d2018-04-17 18:11:44 -0700370 ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff,
371 &prob_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700373 spin_unlock(&fq->q.lock);
Eric Dumazet093ba722018-03-31 12:58:44 -0700374 inet_frag_put(&fq->q);
Eric Dumazet415787d2018-04-17 18:11:44 -0700375 if (prob_offset) {
376 __IP6_INC_STATS(net, __in6_dev_get_safely(skb->dev),
377 IPSTATS_MIB_INHDRERRORS);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800378 /* icmpv6_param_prob() calls kfree_skb(skb) */
Eric Dumazet415787d2018-04-17 18:11:44 -0700379 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, prob_offset);
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return ret;
382 }
383
Eric Dumazet1d015502016-04-27 16:44:40 -0700384 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 kfree_skb(skb);
386 return -1;
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700387
388fail_hdr:
Stephen Suryaputrabdb7cc62018-04-16 13:42:16 -0400389 __IP6_INC_STATS(net, __in6_dev_get_safely(skb->dev),
Eric Dumazet1d015502016-04-27 16:44:40 -0700390 IPSTATS_MIB_INHDRERRORS);
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700391 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb_network_header_len(skb));
392 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
Ian Morriscc24bec2014-08-24 21:53:11 +0100395static const struct inet6_protocol frag_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 .handler = ipv6_frag_rcv,
397 .flags = INET6_PROTO_NOPOLICY,
398};
399
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800400#ifdef CONFIG_SYSCTL
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200401
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700402static struct ctl_table ip6_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800403 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800404 .procname = "ip6frag_high_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800405 .data = &init_net.ipv6.frags.high_thresh,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700406 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800407 .mode = 0644,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700408 .proc_handler = proc_doulongvec_minmax,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200409 .extra1 = &init_net.ipv6.frags.low_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800410 },
411 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800412 .procname = "ip6frag_low_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800413 .data = &init_net.ipv6.frags.low_thresh,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700414 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800415 .mode = 0644,
Eric Dumazet6e00f7d2018-04-01 21:57:59 -0700416 .proc_handler = proc_doulongvec_minmax,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200417 .extra2 = &init_net.ipv6.frags.high_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800418 },
419 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800420 .procname = "ip6frag_time",
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800421 .data = &init_net.ipv6.frags.timeout,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800422 .maxlen = sizeof(int),
423 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800424 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800425 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700426 { }
427};
428
Florian Westphale3a57d12014-07-24 16:50:35 +0200429/* secret interval has been deprecated */
430static int ip6_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700431static struct ctl_table ip6_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800432 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800433 .procname = "ip6frag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200434 .data = &ip6_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800435 .maxlen = sizeof(int),
436 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800437 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800438 },
439 { }
440};
Daniel Lezcano7d460db2008-01-18 23:52:35 -0800441
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000442static int __net_init ip6_frags_ns_sysctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800443{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800444 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800445 struct ctl_table_header *hdr;
446
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700447 table = ip6_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800448 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700449 table = kmemdup(table, sizeof(ip6_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100450 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800451 goto err_alloc;
452
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800453 table[0].data = &net->ipv6.frags.high_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200454 table[0].extra1 = &net->ipv6.frags.low_thresh;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800455 table[1].data = &net->ipv6.frags.low_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200456 table[1].extra2 = &net->ipv6.frags.high_thresh;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800457 table[2].data = &net->ipv6.frags.timeout;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800458 }
459
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000460 hdr = register_net_sysctl(net, "net/ipv6", table);
Ian Morris63159f22015-03-29 14:00:04 +0100461 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800462 goto err_reg;
463
464 net->ipv6.sysctl.frags_hdr = hdr;
465 return 0;
466
467err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800468 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800469 kfree(table);
470err_alloc:
471 return -ENOMEM;
472}
473
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000474static void __net_exit ip6_frags_ns_sysctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800475{
476 struct ctl_table *table;
477
478 table = net->ipv6.sysctl.frags_hdr->ctl_table_arg;
479 unregister_net_sysctl_table(net->ipv6.sysctl.frags_hdr);
Yang Hongyang3705e112009-12-18 20:25:13 -0800480 if (!net_eq(net, &init_net))
481 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800482}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700483
484static struct ctl_table_header *ip6_ctl_header;
485
486static int ip6_frags_sysctl_register(void)
487{
Eric W. Biederman43444752012-04-19 13:22:55 +0000488 ip6_ctl_header = register_net_sysctl(&init_net, "net/ipv6",
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700489 ip6_frags_ctl_table);
490 return ip6_ctl_header == NULL ? -ENOMEM : 0;
491}
492
493static void ip6_frags_sysctl_unregister(void)
494{
495 unregister_net_sysctl_table(ip6_ctl_header);
496}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800497#else
Fabian Frederickfc08c252014-10-29 11:38:17 +0100498static int ip6_frags_ns_sysctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800499{
500 return 0;
501}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800502
Fabian Frederickfc08c252014-10-29 11:38:17 +0100503static void ip6_frags_ns_sysctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800504{
505}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700506
Fabian Frederickfc08c252014-10-29 11:38:17 +0100507static int ip6_frags_sysctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700508{
509 return 0;
510}
511
Fabian Frederickfc08c252014-10-29 11:38:17 +0100512static void ip6_frags_sysctl_unregister(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700513{
514}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800515#endif
516
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000517static int __net_init ipv6_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800518{
Eric Dumazet787bea72018-03-31 12:58:43 -0700519 int res;
520
Shan Wei7c070aa2010-01-20 10:42:41 +0100521 net->ipv6.frags.high_thresh = IPV6_FRAG_HIGH_THRESH;
522 net->ipv6.frags.low_thresh = IPV6_FRAG_LOW_THRESH;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800523 net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT;
Eric Dumazet093ba722018-03-31 12:58:44 -0700524 net->ipv6.frags.f = &ip6_frags;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800525
Eric Dumazet787bea72018-03-31 12:58:43 -0700526 res = inet_frags_init_net(&net->ipv6.frags);
527 if (res < 0)
528 return res;
Jesper Dangaard Brouer5a636432017-09-01 11:26:13 +0200529
Eric Dumazet787bea72018-03-31 12:58:43 -0700530 res = ip6_frags_ns_sysctl_register(net);
531 if (res < 0)
Eric Dumazet093ba722018-03-31 12:58:44 -0700532 inet_frags_exit_net(&net->ipv6.frags);
Eric Dumazet787bea72018-03-31 12:58:43 -0700533 return res;
Daniel Lezcanoe71e0342008-01-10 02:56:03 -0800534}
535
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000536static void __net_exit ipv6_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800537{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700538 ip6_frags_ns_sysctl_unregister(net);
Eric Dumazet093ba722018-03-31 12:58:44 -0700539 inet_frags_exit_net(&net->ipv6.frags);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800540}
541
542static struct pernet_operations ip6_frags_ops = {
543 .init = ipv6_frags_init_net,
544 .exit = ipv6_frags_exit_net,
545};
546
Florian Westphal70b095c2018-07-14 01:14:01 +0200547static const struct rhashtable_params ip6_rhash_params = {
Eric Dumazet648700f2018-03-31 12:58:49 -0700548 .head_offset = offsetof(struct inet_frag_queue, node),
Florian Westphal70b095c2018-07-14 01:14:01 +0200549 .hashfn = ip6frag_key_hashfn,
550 .obj_hashfn = ip6frag_obj_hashfn,
551 .obj_cmpfn = ip6frag_obj_cmpfn,
Eric Dumazet648700f2018-03-31 12:58:49 -0700552 .automatic_shrinking = true,
553};
Eric Dumazet648700f2018-03-31 12:58:49 -0700554
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800555int __init ipv6_frag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800557 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Florian Westphal70b095c2018-07-14 01:14:01 +0200559 ip6_frags.constructor = ip6frag_init;
Pavel Emelyanovc9547702007-10-17 19:48:26 -0700560 ip6_frags.destructor = NULL;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700561 ip6_frags.qsize = sizeof(struct frag_queue);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700562 ip6_frags.frag_expire = ip6_frag_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200563 ip6_frags.frags_cache_name = ip6_frag_cache_name;
Eric Dumazet648700f2018-03-31 12:58:49 -0700564 ip6_frags.rhash_params = ip6_rhash_params;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200565 ret = inet_frags_init(&ip6_frags);
566 if (ret)
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700567 goto out;
568
569 ret = inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT);
570 if (ret)
571 goto err_protocol;
572
573 ret = ip6_frags_sysctl_register();
574 if (ret)
575 goto err_sysctl;
576
577 ret = register_pernet_subsys(&ip6_frags_ops);
578 if (ret)
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200579 goto err_pernet;
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700580
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800581out:
582 return ret;
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700583
584err_pernet:
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700585 ip6_frags_sysctl_unregister();
586err_sysctl:
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700587 inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700588err_protocol:
589 inet_frags_fini(&ip6_frags);
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700590 goto out;
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800591}
592
593void ipv6_frag_exit(void)
594{
595 inet_frags_fini(&ip6_frags);
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700596 ip6_frags_sysctl_unregister();
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800597 unregister_pernet_subsys(&ip6_frags_ops);
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800598 inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}