blob: 1f5d4d196dccee12ee979f305b1b904864ff246e [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;
Amerigo Wangb836c992012-09-18 16:50:09 +000075
Kees Cook78802012017-10-16 17:29:20 -070076 fq = container_of(frag, struct frag_queue, q);
Amerigo Wangb836c992012-09-18 16:50:09 +000077
Eric Dumazeta39aca62019-05-24 09:03:38 -070078 ip6frag_expire_frag_queue(fq->q.fqdir->net, fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
Fabian Frederickfc08c252014-10-29 11:38:17 +010081static struct frag_queue *
Eric Dumazet648700f2018-03-31 12:58:49 -070082fq_find(struct net *net, __be32 id, const struct ipv6hdr *hdr, int iif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Eric Dumazet648700f2018-03-31 12:58:49 -070084 struct frag_v6_compare_key key = {
85 .id = id,
86 .saddr = hdr->saddr,
87 .daddr = hdr->daddr,
88 .user = IP6_DEFRAG_LOCAL_DELIVER,
89 .iif = iif,
90 };
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070091 struct inet_frag_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Eric Dumazet648700f2018-03-31 12:58:49 -070093 if (!(ipv6_addr_type(&hdr->daddr) & (IPV6_ADDR_MULTICAST |
94 IPV6_ADDR_LINKLOCAL)))
95 key.iif = 0;
Pavel Emelyanov9a375802008-06-27 20:06:08 -070096
Eric Dumazet4907abc2019-05-24 09:03:39 -070097 q = inet_frag_find(net->ipv6.fqdir, &key);
Eric Dumazet2d44ed22018-03-31 12:58:52 -070098 if (!q)
Shan Wei95463772010-02-11 00:12:45 +000099 return NULL;
Eric Dumazet2d44ed22018-03-31 12:58:52 -0700100
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700101 return container_of(q, struct frag_queue, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Herbert Xuf61944e2007-10-15 01:28:47 -0700104static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
Eric Dumazet415787d2018-04-17 18:11:44 -0700105 struct frag_hdr *fhdr, int nhoff,
106 u32 *prob_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Eric Dumazetadf30902009-06-02 05:19:30 +0000108 struct net *net = dev_net(skb_dst(skb)->dev);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800109 int offset, end, fragsize;
110 struct sk_buff *prev_tail;
111 struct net_device *dev;
112 int err = -ENOENT;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000113 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200115 if (fq->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 goto err;
117
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800118 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 offset = ntohs(fhdr->frag_off) & ~0x7;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700120 end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
121 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if ((unsigned int)end > IPV6_MAXPLEN) {
Eric Dumazet415787d2018-04-17 18:11:44 -0700124 *prob_offset = (u8 *)&fhdr->frag_off - skb_network_header(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800125 /* note that if prob_offset is set, the skb is freed elsewhere,
126 * we do not free it here.
127 */
Herbert Xuf61944e2007-10-15 01:28:47 -0700128 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000131 ecn = ip6_frag_ecn(ipv6_hdr(skb));
132
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700133 if (skb->ip_summed == CHECKSUM_COMPLETE) {
134 const unsigned char *nh = skb_network_header(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900135 skb->csum = csum_sub(skb->csum,
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700136 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
137 0));
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 /* Is this the final fragment? */
141 if (!(fhdr->frag_off & htons(IP6_MF))) {
142 /* If we already have some bits beyond end
143 * or have different end, the segment is corrupted.
144 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700145 if (end < fq->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200146 ((fq->q.flags & INET_FRAG_LAST_IN) && end != fq->q.len))
Peter Oskolkov2475f592018-09-21 11:17:15 -0700147 goto discard_fq;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200148 fq->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700149 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 } else {
151 /* Check if the fragment is rounded to 8 bytes.
152 * Required by the RFC.
153 */
154 if (end & 0x7) {
155 /* RFC2460 says always send parameter problem in
156 * this case. -DaveM
157 */
Eric Dumazet415787d2018-04-17 18:11:44 -0700158 *prob_offset = offsetof(struct ipv6hdr, payload_len);
Herbert Xuf61944e2007-10-15 01:28:47 -0700159 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700161 if (end > fq->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200163 if (fq->q.flags & INET_FRAG_LAST_IN)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700164 goto discard_fq;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700165 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167 }
168
169 if (end == offset)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700170 goto discard_fq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800172 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /* Point into the IP datagram 'data' part. */
174 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data))
Peter Oskolkov2475f592018-09-21 11:17:15 -0700175 goto discard_fq;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900176
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800177 err = pskb_trim_rcsum(skb, end - offset);
178 if (err)
Peter Oskolkov2475f592018-09-21 11:17:15 -0700179 goto discard_fq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800181 /* Note : skb->rbnode and skb->dev share the same location. */
Eric Dumazet219badf2018-03-31 12:58:59 -0700182 dev = skb->dev;
Eric Dumazet219badf2018-03-31 12:58:59 -0700183 /* Makes sure compiler wont do silly aliasing games */
184 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800186 prev_tail = fq->q.fragments_tail;
187 err = inet_frag_queue_insert(&fq->q, skb, offset, end);
188 if (err)
189 goto insert_error;
190
191 if (dev)
192 fq->iif = dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700194 fq->q.stamp = skb->tstamp;
195 fq->q.meat += skb->len;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000196 fq->ecn |= ecn;
Eric Dumazet6ce3b4d2019-05-24 09:03:30 -0700197 add_frag_mem_limit(fq->q.fqdir, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Willem de Bruijndbd17592016-11-02 11:02:18 -0400199 fragsize = -skb_network_offset(skb) + skb->len;
200 if (fragsize > fq->q.max_size)
201 fq->q.max_size = fragsize;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /* The first fragment.
204 * nhoffset is obtained from the first fragment, of course.
205 */
206 if (offset == 0) {
207 fq->nhoffset = nhoff;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200208 fq->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Herbert Xuf61944e2007-10-15 01:28:47 -0700210
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200211 if (fq->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000212 fq->q.meat == fq->q.len) {
Eric Dumazet97599dc2013-04-16 12:55:41 +0000213 unsigned long orefdst = skb->_skb_refdst;
Herbert Xuf61944e2007-10-15 01:28:47 -0700214
Eric Dumazet97599dc2013-04-16 12:55:41 +0000215 skb->_skb_refdst = 0UL;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800216 err = ip6_frag_reasm(fq, skb, prev_tail, dev);
Eric Dumazet97599dc2013-04-16 12:55:41 +0000217 skb->_skb_refdst = orefdst;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800218 return err;
Eric Dumazet97599dc2013-04-16 12:55:41 +0000219 }
220
221 skb_dst_drop(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800222 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800224insert_error:
225 if (err == IPFRAG_DUP) {
226 kfree_skb(skb);
227 return -EINVAL;
228 }
229 err = -EINVAL;
230 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
231 IPSTATS_MIB_REASM_OVERLAPS);
Nicolas Dichtel70789d72010-09-03 05:13:05 +0000232discard_fq:
Eric Dumazet093ba722018-03-31 12:58:44 -0700233 inet_frag_kill(&fq->q);
Eric Dumazet1d015502016-04-27 16:44:40 -0700234 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
235 IPSTATS_MIB_REASMFAILS);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800236err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 kfree_skb(skb);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800238 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241/*
242 * Check if this packet is complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 *
244 * It is called with locked fq, and caller must check that
245 * queue is eligible for reassembly i.e. it is not COMPLETE,
246 * the last and the first frames arrived and all the bits are here.
247 */
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800248static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *skb,
249 struct sk_buff *prev_tail, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Eric Dumazeta39aca62019-05-24 09:03:38 -0700251 struct net *net = fq->q.fqdir->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 unsigned int nhoff;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800253 void *reasm_data;
254 int payload_len;
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000255 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Eric Dumazet093ba722018-03-31 12:58:44 -0700257 inet_frag_kill(&fq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Hannes Frederic Sowaeec2e612013-03-22 08:24:44 +0000259 ecn = ip_frag_ecn_table[fq->ecn];
260 if (unlikely(ecn == 0xff))
261 goto out_fail;
262
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800263 reasm_data = inet_frag_reasm_prepare(&fq->q, skb, prev_tail);
264 if (!reasm_data)
265 goto out_oom;
Herbert Xuf61944e2007-10-15 01:28:47 -0700266
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800267 payload_len = ((skb->data - skb_network_header(skb)) -
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700268 sizeof(struct ipv6hdr) + fq->q.len -
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700269 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (payload_len > IPV6_MAXPLEN)
271 goto out_oversize;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* We have to remove fragment header from datagram and to relocate
274 * header in order to calculate ICV correctly. */
275 nhoff = fq->nhoffset;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800276 skb_network_header(skb)[nhoff] = skb_transport_header(skb)[0];
277 memmove(skb->head + sizeof(struct frag_hdr), skb->head,
278 (skb->data - skb->head) - sizeof(struct frag_hdr));
279 if (skb_mac_header_was_set(skb))
280 skb->mac_header += sizeof(struct frag_hdr);
281 skb->network_header += sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800283 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Guillaume Nault891584f2019-08-02 17:15:03 +0200285 inet_frag_reasm_finish(&fq->q, skb, reasm_data, true);
Eric Dumazetec164392012-05-19 03:02:35 +0000286
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800287 skb->dev = dev;
288 ipv6_hdr(skb)->payload_len = htons(payload_len);
289 ipv6_change_dsfield(ipv6_hdr(skb), 0xff, ecn);
290 IP6CB(skb)->nhoff = nhoff;
291 IP6CB(skb)->flags |= IP6SKB_FRAGMENTED;
292 IP6CB(skb)->frag_max_size = fq->q.max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /* Yes, and fold redundant checksum back. 8) */
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800295 skb_postpush_rcsum(skb, skb_network_header(skb),
296 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900298 rcu_read_lock();
Stephen Suryaputrae1ae5c22019-06-10 10:32:50 -0400299 __IP6_INC_STATS(net, __in6_dev_stats_get(dev, skb), IPSTATS_MIB_REASMOKS);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900300 rcu_read_unlock();
Peter Oskolkovfa0f5272018-08-02 23:34:39 +0000301 fq->q.rb_fragments = RB_ROOT;
Changli Gaod6bebca2010-06-29 04:39:37 +0000302 fq->q.fragments_tail = NULL;
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800303 fq->q.last_run_head = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return 1;
305
306out_oversize:
Joe Perchese87cc472012-05-13 21:56:26 +0000307 net_dbg_ratelimited("ip6_frag_reasm: payload len = %d\n", payload_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 goto out_fail;
309out_oom:
Joe Perchese87cc472012-05-13 21:56:26 +0000310 net_dbg_ratelimited("ip6_frag_reasm: no memory for reassembly\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311out_fail:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900312 rcu_read_lock();
Stephen Suryaputrae1ae5c22019-06-10 10:32:50 -0400313 __IP6_INC_STATS(net, __in6_dev_stats_get(dev, skb), IPSTATS_MIB_REASMFAILS);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900314 rcu_read_unlock();
Peter Oskolkov2475f592018-09-21 11:17:15 -0700315 inet_frag_kill(&fq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return -1;
317}
318
Herbert Xue5bbef22007-10-15 12:50:28 -0700319static int ipv6_frag_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct frag_hdr *fhdr;
322 struct frag_queue *fq;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000323 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Eric Dumazetadf30902009-06-02 05:19:30 +0000324 struct net *net = dev_net(skb_dst(skb)->dev);
Eric Dumazet648700f2018-03-31 12:58:49 -0700325 int iif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Hannes Frederic Sowaf46078c2013-08-16 13:30:07 +0200327 if (IP6CB(skb)->flags & IP6SKB_FRAGMENTED)
328 goto fail_hdr;
329
Eric Dumazet1d015502016-04-27 16:44:40 -0700330 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /* Jumbo payload inhibits frag. header */
Ian Morris67ba4152014-08-24 21:53:10 +0100333 if (hdr->payload_len == 0)
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700334 goto fail_hdr;
335
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700336 if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700337 sizeof(struct frag_hdr))))
338 goto fail_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700340 hdr = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700341 fhdr = (struct frag_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 if (!(fhdr->frag_off & htons(0xFFF9))) {
344 /* It is not a fragmented frame */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700345 skb->transport_header += sizeof(struct frag_hdr);
Eric Dumazet1d015502016-04-27 16:44:40 -0700346 __IP6_INC_STATS(net,
347 ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700349 IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb);
Hannes Frederic Sowaf46078c2013-08-16 13:30:07 +0200350 IP6CB(skb)->flags |= IP6SKB_FRAGMENTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return 1;
352 }
353
Eric Dumazet648700f2018-03-31 12:58:49 -0700354 iif = skb->dev ? skb->dev->ifindex : 0;
355 fq = fq_find(net, fhdr->identification, hdr, iif);
Ian Morris53b24b82015-03-29 14:00:05 +0100356 if (fq) {
Eric Dumazet415787d2018-04-17 18:11:44 -0700357 u32 prob_offset = 0;
Herbert Xuf61944e2007-10-15 01:28:47 -0700358 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700360 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Eric Dumazet648700f2018-03-31 12:58:49 -0700362 fq->iif = iif;
Eric Dumazet415787d2018-04-17 18:11:44 -0700363 ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff,
364 &prob_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700366 spin_unlock(&fq->q.lock);
Eric Dumazet093ba722018-03-31 12:58:44 -0700367 inet_frag_put(&fq->q);
Eric Dumazet415787d2018-04-17 18:11:44 -0700368 if (prob_offset) {
369 __IP6_INC_STATS(net, __in6_dev_get_safely(skb->dev),
370 IPSTATS_MIB_INHDRERRORS);
Peter Oskolkovd4289fc2019-01-22 10:02:51 -0800371 /* icmpv6_param_prob() calls kfree_skb(skb) */
Eric Dumazet415787d2018-04-17 18:11:44 -0700372 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, prob_offset);
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return ret;
375 }
376
Eric Dumazet1d015502016-04-27 16:44:40 -0700377 __IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 kfree_skb(skb);
379 return -1;
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700380
381fail_hdr:
Stephen Suryaputrabdb7cc62018-04-16 13:42:16 -0400382 __IP6_INC_STATS(net, __in6_dev_get_safely(skb->dev),
Eric Dumazet1d015502016-04-27 16:44:40 -0700383 IPSTATS_MIB_INHDRERRORS);
Denis V. Lunev98b3377c2008-10-08 10:31:44 -0700384 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb_network_header_len(skb));
385 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Ian Morriscc24bec2014-08-24 21:53:11 +0100388static const struct inet6_protocol frag_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .handler = ipv6_frag_rcv,
390 .flags = INET6_PROTO_NOPOLICY,
391};
392
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800393#ifdef CONFIG_SYSCTL
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200394
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700395static struct ctl_table ip6_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800396 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800397 .procname = "ip6frag_high_thresh",
Eric Dumazet3e67f102018-03-31 12:58:53 -0700398 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800399 .mode = 0644,
Eric Dumazet3e67f102018-03-31 12:58:53 -0700400 .proc_handler = proc_doulongvec_minmax,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800401 },
402 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800403 .procname = "ip6frag_low_thresh",
Eric Dumazet3e67f102018-03-31 12:58:53 -0700404 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800405 .mode = 0644,
Eric Dumazet6e00f7d2018-04-01 21:57:59 -0700406 .proc_handler = proc_doulongvec_minmax,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800407 },
408 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800409 .procname = "ip6frag_time",
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800410 .maxlen = sizeof(int),
411 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800412 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800413 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700414 { }
415};
416
Florian Westphale3a57d12014-07-24 16:50:35 +0200417/* secret interval has been deprecated */
418static int ip6_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700419static struct ctl_table ip6_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800420 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800421 .procname = "ip6frag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200422 .data = &ip6_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800423 .maxlen = sizeof(int),
424 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800425 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800426 },
427 { }
428};
Daniel Lezcano7d460db2008-01-18 23:52:35 -0800429
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000430static int __net_init ip6_frags_ns_sysctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800431{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800432 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800433 struct ctl_table_header *hdr;
434
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700435 table = ip6_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800436 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700437 table = kmemdup(table, sizeof(ip6_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100438 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800439 goto err_alloc;
440
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800441 }
Eric Dumazet4907abc2019-05-24 09:03:39 -0700442 table[0].data = &net->ipv6.fqdir->high_thresh;
443 table[0].extra1 = &net->ipv6.fqdir->low_thresh;
444 table[1].data = &net->ipv6.fqdir->low_thresh;
445 table[1].extra2 = &net->ipv6.fqdir->high_thresh;
446 table[2].data = &net->ipv6.fqdir->timeout;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800447
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000448 hdr = register_net_sysctl(net, "net/ipv6", table);
Ian Morris63159f22015-03-29 14:00:04 +0100449 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800450 goto err_reg;
451
452 net->ipv6.sysctl.frags_hdr = hdr;
453 return 0;
454
455err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800456 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800457 kfree(table);
458err_alloc:
459 return -ENOMEM;
460}
461
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000462static void __net_exit ip6_frags_ns_sysctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800463{
464 struct ctl_table *table;
465
466 table = net->ipv6.sysctl.frags_hdr->ctl_table_arg;
467 unregister_net_sysctl_table(net->ipv6.sysctl.frags_hdr);
Yang Hongyang3705e112009-12-18 20:25:13 -0800468 if (!net_eq(net, &init_net))
469 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800470}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700471
472static struct ctl_table_header *ip6_ctl_header;
473
474static int ip6_frags_sysctl_register(void)
475{
Eric W. Biederman43444752012-04-19 13:22:55 +0000476 ip6_ctl_header = register_net_sysctl(&init_net, "net/ipv6",
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700477 ip6_frags_ctl_table);
478 return ip6_ctl_header == NULL ? -ENOMEM : 0;
479}
480
481static void ip6_frags_sysctl_unregister(void)
482{
483 unregister_net_sysctl_table(ip6_ctl_header);
484}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800485#else
Fabian Frederickfc08c252014-10-29 11:38:17 +0100486static int ip6_frags_ns_sysctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800487{
488 return 0;
489}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800490
Fabian Frederickfc08c252014-10-29 11:38:17 +0100491static void ip6_frags_ns_sysctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800492{
493}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700494
Fabian Frederickfc08c252014-10-29 11:38:17 +0100495static int ip6_frags_sysctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700496{
497 return 0;
498}
499
Fabian Frederickfc08c252014-10-29 11:38:17 +0100500static void ip6_frags_sysctl_unregister(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700501{
502}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800503#endif
504
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000505static int __net_init ipv6_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800506{
Eric Dumazet787bea72018-03-31 12:58:43 -0700507 int res;
508
Eric Dumazeta39aca62019-05-24 09:03:38 -0700509 res = fqdir_init(&net->ipv6.fqdir, &ip6_frags, net);
Eric Dumazet787bea72018-03-31 12:58:43 -0700510 if (res < 0)
511 return res;
Jesper Dangaard Brouer5a636432017-09-01 11:26:13 +0200512
Eric Dumazet4907abc2019-05-24 09:03:39 -0700513 net->ipv6.fqdir->high_thresh = IPV6_FRAG_HIGH_THRESH;
514 net->ipv6.fqdir->low_thresh = IPV6_FRAG_LOW_THRESH;
515 net->ipv6.fqdir->timeout = IPV6_FRAG_TIMEOUT;
516
Eric Dumazet787bea72018-03-31 12:58:43 -0700517 res = ip6_frags_ns_sysctl_register(net);
518 if (res < 0)
Eric Dumazet4907abc2019-05-24 09:03:39 -0700519 fqdir_exit(net->ipv6.fqdir);
Eric Dumazet787bea72018-03-31 12:58:43 -0700520 return res;
Daniel Lezcanoe71e0342008-01-10 02:56:03 -0800521}
522
Eric Dumazetd5dd8872019-06-18 11:09:00 -0700523static void __net_exit ipv6_frags_pre_exit_net(struct net *net)
524{
525 fqdir_pre_exit(net->ipv6.fqdir);
526}
527
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000528static void __net_exit ipv6_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800529{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700530 ip6_frags_ns_sysctl_unregister(net);
Eric Dumazet4907abc2019-05-24 09:03:39 -0700531 fqdir_exit(net->ipv6.fqdir);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800532}
533
534static struct pernet_operations ip6_frags_ops = {
Eric Dumazetd5dd8872019-06-18 11:09:00 -0700535 .init = ipv6_frags_init_net,
536 .pre_exit = ipv6_frags_pre_exit_net,
537 .exit = ipv6_frags_exit_net,
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800538};
539
Florian Westphal70b095c2018-07-14 01:14:01 +0200540static const struct rhashtable_params ip6_rhash_params = {
Eric Dumazet648700f2018-03-31 12:58:49 -0700541 .head_offset = offsetof(struct inet_frag_queue, node),
Florian Westphal70b095c2018-07-14 01:14:01 +0200542 .hashfn = ip6frag_key_hashfn,
543 .obj_hashfn = ip6frag_obj_hashfn,
544 .obj_cmpfn = ip6frag_obj_cmpfn,
Eric Dumazet648700f2018-03-31 12:58:49 -0700545 .automatic_shrinking = true,
546};
Eric Dumazet648700f2018-03-31 12:58:49 -0700547
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800548int __init ipv6_frag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800550 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Florian Westphal70b095c2018-07-14 01:14:01 +0200552 ip6_frags.constructor = ip6frag_init;
Pavel Emelyanovc9547702007-10-17 19:48:26 -0700553 ip6_frags.destructor = NULL;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700554 ip6_frags.qsize = sizeof(struct frag_queue);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700555 ip6_frags.frag_expire = ip6_frag_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200556 ip6_frags.frags_cache_name = ip6_frag_cache_name;
Eric Dumazet648700f2018-03-31 12:58:49 -0700557 ip6_frags.rhash_params = ip6_rhash_params;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200558 ret = inet_frags_init(&ip6_frags);
559 if (ret)
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700560 goto out;
561
562 ret = inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT);
563 if (ret)
564 goto err_protocol;
565
566 ret = ip6_frags_sysctl_register();
567 if (ret)
568 goto err_sysctl;
569
570 ret = register_pernet_subsys(&ip6_frags_ops);
571 if (ret)
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200572 goto err_pernet;
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700573
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800574out:
575 return ret;
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700576
577err_pernet:
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700578 ip6_frags_sysctl_unregister();
579err_sysctl:
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700580 inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
Eric Dumazet5b975ba2018-03-31 12:58:45 -0700581err_protocol:
582 inet_frags_fini(&ip6_frags);
Pavel Emelyanov0002c632008-05-19 13:52:28 -0700583 goto out;
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800584}
585
586void ipv6_frag_exit(void)
587{
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700588 ip6_frags_sysctl_unregister();
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800589 unregister_pernet_subsys(&ip6_frags_ops);
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800590 inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
Eric Dumazetae7352d2019-05-27 16:56:48 -0700591 inet_frags_fini(&ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}