blob: ce8734028d941bb16015cbf564d65e606b324c36 [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 *
8 * $Id: reassembly.c,v 1.26 2001/03/07 22:00:57 davem Exp $
9 *
10 * Based on: net/ipv4/ip_fragment.c
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 */
17
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090018/*
19 * Fixes:
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * Andi Kleen Make it work with multiple hosts.
21 * More RFC compliance.
22 *
23 * Horst von Brand Add missing #include <linux/string.h>
24 * Alexey Kuznetsov SMP races, threading, cleanup.
25 * Patrick McHardy LRU queue of frag heads for evictor.
26 * Mitsuru KANDA @USAGI Register inet6_protocol{}.
27 * David Stevens and
28 * YOSHIFUJI,H. @USAGI Always remove fragment header to
29 * calculate ICV correctly.
30 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/errno.h>
32#include <linux/types.h>
33#include <linux/string.h>
34#include <linux/socket.h>
35#include <linux/sockios.h>
36#include <linux/jiffies.h>
37#include <linux/net.h>
38#include <linux/list.h>
39#include <linux/netdevice.h>
40#include <linux/in6.h>
41#include <linux/ipv6.h>
42#include <linux/icmpv6.h>
43#include <linux/random.h>
44#include <linux/jhash.h>
Herbert Xuf61944e2007-10-15 01:28:47 -070045#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include <net/sock.h>
48#include <net/snmp.h>
49
50#include <net/ipv6.h>
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +090051#include <net/ip6_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <net/protocol.h>
53#include <net/transp_v6.h>
54#include <net/rawv6.h>
55#include <net/ndisc.h>
56#include <net/addrconf.h>
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070057#include <net/inet_frag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059struct ip6frag_skb_cb
60{
61 struct inet6_skb_parm h;
62 int offset;
63};
64
65#define FRAG6_CB(skb) ((struct ip6frag_skb_cb*)((skb)->cb))
66
67
68/*
69 * Equivalent of ipv4 struct ipq
70 */
71
72struct frag_queue
73{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070074 struct inet_frag_queue q;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Al Viroe69a4ad2006-11-14 20:56:00 -080076 __be32 id; /* fragment id */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct in6_addr saddr;
78 struct in6_addr daddr;
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 int iif;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned int csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 __u16 nhoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
Pavel Emelyanov04128f22007-10-15 02:33:45 -070085struct inet_frags_ctl ip6_frags_ctl __read_mostly = {
86 .high_thresh = 256 * 1024,
87 .low_thresh = 192 * 1024,
88 .timeout = IPV6_FRAG_TIMEOUT,
89 .secret_interval = 10 * 60 * HZ,
90};
91
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070092static struct inet_frags ip6_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070094int ip6_frag_nqueues(void)
95{
96 return ip6_frags.nqueues;
97}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070099int ip6_frag_mem(void)
100{
101 return atomic_read(&ip6_frags.mem);
102}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Herbert Xuf61944e2007-10-15 01:28:47 -0700104static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev,
105 struct net_device *dev);
106
Zach Brownf6596f92006-04-10 16:05:34 -0700107/*
108 * callers should be careful not to use the hash value outside the ipfrag_lock
109 * as doing so could race with ipfrag_hash_rnd being recalculated.
110 */
Al Viroe69a4ad2006-11-14 20:56:00 -0800111static unsigned int ip6qhashfn(__be32 id, struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 struct in6_addr *daddr)
113{
114 u32 a, b, c;
115
Al Viroe69a4ad2006-11-14 20:56:00 -0800116 a = (__force u32)saddr->s6_addr32[0];
117 b = (__force u32)saddr->s6_addr32[1];
118 c = (__force u32)saddr->s6_addr32[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 a += JHASH_GOLDEN_RATIO;
121 b += JHASH_GOLDEN_RATIO;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700122 c += ip6_frags.rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 __jhash_mix(a, b, c);
124
Al Viroe69a4ad2006-11-14 20:56:00 -0800125 a += (__force u32)saddr->s6_addr32[3];
126 b += (__force u32)daddr->s6_addr32[0];
127 c += (__force u32)daddr->s6_addr32[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 __jhash_mix(a, b, c);
129
Al Viroe69a4ad2006-11-14 20:56:00 -0800130 a += (__force u32)daddr->s6_addr32[2];
131 b += (__force u32)daddr->s6_addr32[3];
132 c += (__force u32)id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 __jhash_mix(a, b, c);
134
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700135 return c & (INETFRAGS_HASHSZ - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700138static unsigned int ip6_hashfn(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700140 struct frag_queue *fq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700142 fq = container_of(q, struct frag_queue, q);
143 return ip6qhashfn(fq->id, &fq->saddr, &fq->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700146int ip6_frag_equal(struct inet_frag_queue *q1, struct inet_frag_queue *q2)
147{
148 struct frag_queue *fq1, *fq2;
149
150 fq1 = container_of(q1, struct frag_queue, q);
151 fq2 = container_of(q2, struct frag_queue, q);
152 return (fq1->id == fq2->id &&
153 ipv6_addr_equal(&fq2->saddr, &fq1->saddr) &&
154 ipv6_addr_equal(&fq2->daddr, &fq1->daddr));
155}
156EXPORT_SYMBOL(ip6_frag_equal);
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* Memory Tracking Functions. */
159static inline void frag_kfree_skb(struct sk_buff *skb, int *work)
160{
161 if (work)
162 *work -= skb->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700163 atomic_sub(skb->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 kfree_skb(skb);
165}
166
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700167void ip6_frag_init(struct inet_frag_queue *q, void *a)
168{
169 struct frag_queue *fq = container_of(q, struct frag_queue, q);
170 struct ip6_create_arg *arg = a;
171
172 fq->id = arg->id;
173 ipv6_addr_copy(&fq->saddr, arg->src);
174 ipv6_addr_copy(&fq->daddr, arg->dst);
175}
176EXPORT_SYMBOL(ip6_frag_init);
177
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700178static void ip6_frag_free(struct inet_frag_queue *fq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700180 kfree(container_of(fq, struct frag_queue, q));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/* Destruction primitives. */
184
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700185static __inline__ void fq_put(struct frag_queue *fq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Pavel Emelyanov762cc402007-10-15 02:41:56 -0700187 inet_frag_put(&fq->q, &ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190/* Kill fq entry. It is not destroyed immediately,
191 * because caller (and someone more) holds reference count.
192 */
193static __inline__ void fq_kill(struct frag_queue *fq)
194{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700195 inet_frag_kill(&fq->q, &ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900198static void ip6_evictor(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700200 int evicted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700202 evicted = inet_frag_evictor(&ip6_frags);
203 if (evicted)
204 IP6_ADD_STATS_BH(idev, IPSTATS_MIB_REASMFAILS, evicted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207static void ip6_frag_expire(unsigned long data)
208{
Pavel Emelyanove521db92007-10-17 19:45:23 -0700209 struct frag_queue *fq;
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900210 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Pavel Emelyanove521db92007-10-17 19:45:23 -0700212 fq = container_of((struct inet_frag_queue *)data, struct frag_queue, q);
213
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700214 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700216 if (fq->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 goto out;
218
219 fq_kill(fq);
220
Eric W. Biederman881d9662007-09-17 11:56:21 -0700221 dev = dev_get_by_index(&init_net, fq->iif);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900222 if (!dev)
223 goto out;
224
225 rcu_read_lock();
226 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMTIMEOUT);
227 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
228 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Ingo Oeser78c784c2006-03-20 23:01:17 -0800230 /* Don't send error if the first segment did not arrive. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700231 if (!(fq->q.last_in&FIRST_IN) || !fq->q.fragments)
Ingo Oeser78c784c2006-03-20 23:01:17 -0800232 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Ingo Oeser78c784c2006-03-20 23:01:17 -0800234 /*
235 But use as source device on which LAST ARRIVED
236 segment was received. And do not use fq->dev
237 pointer directly, device might already disappeared.
238 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700239 fq->q.fragments->dev = dev;
240 icmpv6_send(fq->q.fragments, ICMPV6_TIME_EXCEED, ICMPV6_EXC_FRAGTIME, 0, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241out:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900242 if (dev)
243 dev_put(dev);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700244 spin_unlock(&fq->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700245 fq_put(fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248/* Creation primitives. */
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250static struct frag_queue *
Al Viroe69a4ad2006-11-14 20:56:00 -0800251ip6_frag_create(__be32 id, struct in6_addr *src, struct in6_addr *dst,
Pavel Emelyanovfd9e6352007-10-17 19:43:37 -0700252 struct inet6_dev *idev, unsigned int hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700254 struct inet_frag_queue *q;
255 struct ip6_create_arg arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700257 arg.id = id;
258 arg.src = src;
259 arg.dst = dst;
260
261 q = inet_frag_create(&ip6_frags, &arg, hash);
262 if (q == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 goto oom;
264
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700265 return container_of(q, struct frag_queue, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267oom:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900268 IP6_INC_STATS_BH(idev, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return NULL;
270}
271
272static __inline__ struct frag_queue *
Al Viroe69a4ad2006-11-14 20:56:00 -0800273fq_find(__be32 id, struct in6_addr *src, struct in6_addr *dst,
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900274 struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct frag_queue *fq;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800277 struct hlist_node *n;
Zach Brownf6596f92006-04-10 16:05:34 -0700278 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700280 read_lock(&ip6_frags.lock);
Zach Brownf6596f92006-04-10 16:05:34 -0700281 hash = ip6qhashfn(id, src, dst);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700282 hlist_for_each_entry(fq, n, &ip6_frags.hash[hash], q.list) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900283 if (fq->id == id &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 ipv6_addr_equal(src, &fq->saddr) &&
285 ipv6_addr_equal(dst, &fq->daddr)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700286 atomic_inc(&fq->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700287 read_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return fq;
289 }
290 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700291 read_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Pavel Emelyanovfd9e6352007-10-17 19:43:37 -0700293 return ip6_frag_create(id, src, dst, idev, hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296
Herbert Xuf61944e2007-10-15 01:28:47 -0700297static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 struct frag_hdr *fhdr, int nhoff)
299{
300 struct sk_buff *prev, *next;
Herbert Xuf61944e2007-10-15 01:28:47 -0700301 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 int offset, end;
303
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700304 if (fq->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 goto err;
306
307 offset = ntohs(fhdr->frag_off) & ~0x7;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700308 end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
309 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 if ((unsigned int)end > IPV6_MAXPLEN) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900312 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
313 IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700314 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
315 ((u8 *)&fhdr->frag_off -
316 skb_network_header(skb)));
Herbert Xuf61944e2007-10-15 01:28:47 -0700317 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700320 if (skb->ip_summed == CHECKSUM_COMPLETE) {
321 const unsigned char *nh = skb_network_header(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900322 skb->csum = csum_sub(skb->csum,
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700323 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
324 0));
325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 /* Is this the final fragment? */
328 if (!(fhdr->frag_off & htons(IP6_MF))) {
329 /* If we already have some bits beyond end
330 * or have different end, the segment is corrupted.
331 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700332 if (end < fq->q.len ||
333 ((fq->q.last_in & LAST_IN) && end != fq->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700335 fq->q.last_in |= LAST_IN;
336 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 } else {
338 /* Check if the fragment is rounded to 8 bytes.
339 * Required by the RFC.
340 */
341 if (end & 0x7) {
342 /* RFC2460 says always send parameter problem in
343 * this case. -DaveM
344 */
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900345 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
346 IPSTATS_MIB_INHDRERRORS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900347 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 offsetof(struct ipv6hdr, payload_len));
Herbert Xuf61944e2007-10-15 01:28:47 -0700349 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700351 if (end > fq->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /* Some bits beyond end -> corruption. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700353 if (fq->q.last_in & LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700355 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357 }
358
359 if (end == offset)
360 goto err;
361
362 /* Point into the IP datagram 'data' part. */
363 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data))
364 goto err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900365
Stephen Hemminger42ca89c2005-09-08 12:57:43 -0700366 if (pskb_trim_rcsum(skb, end - offset))
367 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /* Find out which fragments are in front and at the back of us
370 * in the chain of fragments so far. We must know where to put
371 * this fragment, right?
372 */
373 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700374 for(next = fq->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (FRAG6_CB(next)->offset >= offset)
376 break; /* bingo! */
377 prev = next;
378 }
379
380 /* We found where to put this one. Check for overlap with
381 * preceding fragment, and, if needed, align things so that
382 * any overlaps are eliminated.
383 */
384 if (prev) {
385 int i = (FRAG6_CB(prev)->offset + prev->len) - offset;
386
387 if (i > 0) {
388 offset += i;
389 if (end <= offset)
390 goto err;
391 if (!pskb_pull(skb, i))
392 goto err;
393 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
394 skb->ip_summed = CHECKSUM_NONE;
395 }
396 }
397
398 /* Look for overlap with succeeding segments.
399 * If we can merge fragments, do it.
400 */
401 while (next && FRAG6_CB(next)->offset < end) {
402 int i = end - FRAG6_CB(next)->offset; /* overlap is 'i' bytes */
403
404 if (i < next->len) {
405 /* Eat head of the next overlapped fragment
406 * and leave the loop. The next ones cannot overlap.
407 */
408 if (!pskb_pull(next, i))
409 goto err;
410 FRAG6_CB(next)->offset += i; /* next fragment */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700411 fq->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (next->ip_summed != CHECKSUM_UNNECESSARY)
413 next->ip_summed = CHECKSUM_NONE;
414 break;
415 } else {
416 struct sk_buff *free_it = next;
417
418 /* Old fragment is completely overridden with
419 * new one drop it.
420 */
421 next = next->next;
422
423 if (prev)
424 prev->next = next;
425 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700426 fq->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700428 fq->q.meat -= free_it->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 frag_kfree_skb(free_it, NULL);
430 }
431 }
432
433 FRAG6_CB(skb)->offset = offset;
434
435 /* Insert this fragment in the chain of fragments. */
436 skb->next = next;
437 if (prev)
438 prev->next = skb;
439 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700440 fq->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Herbert Xuf61944e2007-10-15 01:28:47 -0700442 dev = skb->dev;
443 if (dev) {
444 fq->iif = dev->ifindex;
445 skb->dev = NULL;
446 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700447 fq->q.stamp = skb->tstamp;
448 fq->q.meat += skb->len;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700449 atomic_add(skb->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* The first fragment.
452 * nhoffset is obtained from the first fragment, of course.
453 */
454 if (offset == 0) {
455 fq->nhoffset = nhoff;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700456 fq->q.last_in |= FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Herbert Xuf61944e2007-10-15 01:28:47 -0700458
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700459 if (fq->q.last_in == (FIRST_IN | LAST_IN) && fq->q.meat == fq->q.len)
Herbert Xuf61944e2007-10-15 01:28:47 -0700460 return ip6_frag_reasm(fq, prev, dev);
461
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700462 write_lock(&ip6_frags.lock);
463 list_move_tail(&fq->q.lru_list, &ip6_frags.lru_list);
464 write_unlock(&ip6_frags.lock);
Herbert Xuf61944e2007-10-15 01:28:47 -0700465 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467err:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900468 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 kfree_skb(skb);
Herbert Xuf61944e2007-10-15 01:28:47 -0700470 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473/*
474 * Check if this packet is complete.
475 * Returns NULL on failure by any reason, and pointer
476 * to current nexthdr field in reassembled frame.
477 *
478 * It is called with locked fq, and caller must check that
479 * queue is eligible for reassembly i.e. it is not COMPLETE,
480 * the last and the first frames arrived and all the bits are here.
481 */
Herbert Xuf61944e2007-10-15 01:28:47 -0700482static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 struct net_device *dev)
484{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700485 struct sk_buff *fp, *head = fq->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 int payload_len;
487 unsigned int nhoff;
488
489 fq_kill(fq);
490
Herbert Xuf61944e2007-10-15 01:28:47 -0700491 /* Make the one we just received the head. */
492 if (prev) {
493 head = prev->next;
494 fp = skb_clone(head, GFP_ATOMIC);
495
496 if (!fp)
497 goto out_oom;
498
499 fp->next = head->next;
500 prev->next = fp;
501
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700502 skb_morph(head, fq->q.fragments);
503 head->next = fq->q.fragments->next;
Herbert Xuf61944e2007-10-15 01:28:47 -0700504
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700505 kfree_skb(fq->q.fragments);
506 fq->q.fragments = head;
Herbert Xuf61944e2007-10-15 01:28:47 -0700507 }
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 BUG_TRAP(head != NULL);
510 BUG_TRAP(FRAG6_CB(head)->offset == 0);
511
512 /* Unfragmented part is taken from the first segment. */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700513 payload_len = ((head->data - skb_network_header(head)) -
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700514 sizeof(struct ipv6hdr) + fq->q.len -
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700515 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (payload_len > IPV6_MAXPLEN)
517 goto out_oversize;
518
519 /* Head of list must not be cloned. */
520 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
521 goto out_oom;
522
523 /* If the first fragment is fragmented itself, we split
524 * it to two chunks: the first with data and paged part
525 * and the second, holding only fragments. */
526 if (skb_shinfo(head)->frag_list) {
527 struct sk_buff *clone;
528 int i, plen = 0;
529
530 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
531 goto out_oom;
532 clone->next = head->next;
533 head->next = clone;
534 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
535 skb_shinfo(head)->frag_list = NULL;
536 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
537 plen += skb_shinfo(head)->frags[i].size;
538 clone->len = clone->data_len = head->data_len - plen;
539 head->data_len -= clone->len;
540 head->len -= clone->len;
541 clone->csum = 0;
542 clone->ip_summed = head->ip_summed;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700543 atomic_add(clone->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
546 /* We have to remove fragment header from datagram and to relocate
547 * header in order to calculate ICV correctly. */
548 nhoff = fq->nhoffset;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700549 skb_network_header(head)[nhoff] = skb_transport_header(head)[0];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900550 memmove(head->head + sizeof(struct frag_hdr), head->head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 (head->data - head->head) - sizeof(struct frag_hdr));
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700552 head->mac_header += sizeof(struct frag_hdr);
553 head->network_header += sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300556 skb_reset_transport_header(head);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700557 skb_push(head, head->data - skb_network_header(head));
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700558 atomic_sub(head->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 for (fp=head->next; fp; fp = fp->next) {
561 head->data_len += fp->len;
562 head->len += fp->len;
563 if (head->ip_summed != fp->ip_summed)
564 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700565 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 head->csum = csum_add(head->csum, fp->csum);
567 head->truesize += fp->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700568 atomic_sub(fp->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
571 head->next = NULL;
572 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700573 head->tstamp = fq->q.stamp;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700574 ipv6_hdr(head)->payload_len = htons(payload_len);
Patrick McHardy951dbc82006-01-06 23:02:34 -0800575 IP6CB(head)->nhoff = nhoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* Yes, and fold redundant checksum back. 8) */
Patrick McHardy84fa7932006-08-29 16:44:56 -0700578 if (head->ip_summed == CHECKSUM_COMPLETE)
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700579 head->csum = csum_partial(skb_network_header(head),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300580 skb_network_header_len(head),
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700581 head->csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900583 rcu_read_lock();
584 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMOKS);
585 rcu_read_unlock();
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700586 fq->q.fragments = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return 1;
588
589out_oversize:
590 if (net_ratelimit())
591 printk(KERN_DEBUG "ip6_frag_reasm: payload len = %d\n", payload_len);
592 goto out_fail;
593out_oom:
594 if (net_ratelimit())
595 printk(KERN_DEBUG "ip6_frag_reasm: no memory for reassembly\n");
596out_fail:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900597 rcu_read_lock();
598 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
599 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return -1;
601}
602
Herbert Xue5bbef22007-10-15 12:50:28 -0700603static int ipv6_frag_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 struct frag_hdr *fhdr;
606 struct frag_queue *fq;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700607 struct ipv6hdr *hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900609 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 /* Jumbo payload inhibits frag. header */
612 if (hdr->payload_len==0) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900613 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300614 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
615 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return -1;
617 }
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700618 if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
619 sizeof(struct frag_hdr)))) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900620 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300621 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
622 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return -1;
624 }
625
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700626 hdr = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700627 fhdr = (struct frag_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (!(fhdr->frag_off & htons(0xFFF9))) {
630 /* It is not a fragmented frame */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700631 skb->transport_header += sizeof(struct frag_hdr);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900632 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700634 IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return 1;
636 }
637
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700638 if (atomic_read(&ip6_frags.mem) > ip6_frags_ctl.high_thresh)
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900639 ip6_evictor(ip6_dst_idev(skb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900641 if ((fq = fq_find(fhdr->identification, &hdr->saddr, &hdr->daddr,
642 ip6_dst_idev(skb->dst))) != NULL) {
Herbert Xuf61944e2007-10-15 01:28:47 -0700643 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700645 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Herbert Xuf61944e2007-10-15 01:28:47 -0700647 ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700649 spin_unlock(&fq->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700650 fq_put(fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return ret;
652 }
653
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900654 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 kfree_skb(skb);
656 return -1;
657}
658
659static struct inet6_protocol frag_protocol =
660{
661 .handler = ipv6_frag_rcv,
662 .flags = INET6_PROTO_NOPOLICY,
663};
664
665void __init ipv6_frag_init(void)
666{
667 if (inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT) < 0)
668 printk(KERN_ERR "ipv6_frag_init: Could not register protocol\n");
669
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700670 ip6_frags.ctl = &ip6_frags_ctl;
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700671 ip6_frags.hashfn = ip6_hashfn;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700672 ip6_frags.constructor = ip6_frag_init;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700673 ip6_frags.destructor = ip6_frag_free;
674 ip6_frags.skb_free = NULL;
675 ip6_frags.qsize = sizeof(struct frag_queue);
Pavel Emelyanov2588fe12007-10-17 19:44:34 -0700676 ip6_frags.equal = ip6_frag_equal;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700677 ip6_frags.frag_expire = ip6_frag_expire;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700678 inet_frags_init(&ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}