blob: 98d8fbd0c9e96ea038490499ae704c6c9bf81b61 [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 Viroe69a4adc2006-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 Viroe69a4adc2006-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 Viroe69a4adc2006-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 Viroe69a4adc2006-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 Viroe69a4adc2006-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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/* Memory Tracking Functions. */
147static inline void frag_kfree_skb(struct sk_buff *skb, int *work)
148{
149 if (work)
150 *work -= skb->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700151 atomic_sub(skb->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 kfree_skb(skb);
153}
154
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700155static void ip6_frag_free(struct inet_frag_queue *fq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700157 kfree(container_of(fq, struct frag_queue, q));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160static inline struct frag_queue *frag_alloc_queue(void)
161{
Ingo Oeser78c784c2006-03-20 23:01:17 -0800162 struct frag_queue *fq = kzalloc(sizeof(struct frag_queue), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 if(!fq)
165 return NULL;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700166 atomic_add(sizeof(struct frag_queue), &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return fq;
168}
169
170/* Destruction primitives. */
171
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700172static __inline__ void fq_put(struct frag_queue *fq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700174 if (atomic_dec_and_test(&fq->q.refcnt))
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700175 inet_frag_destroy(&fq->q, &ip6_frags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
178/* Kill fq entry. It is not destroyed immediately,
179 * because caller (and someone more) holds reference count.
180 */
181static __inline__ void fq_kill(struct frag_queue *fq)
182{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700183 inet_frag_kill(&fq->q, &ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900186static void ip6_evictor(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700188 int evicted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700190 evicted = inet_frag_evictor(&ip6_frags);
191 if (evicted)
192 IP6_ADD_STATS_BH(idev, IPSTATS_MIB_REASMFAILS, evicted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195static void ip6_frag_expire(unsigned long data)
196{
197 struct frag_queue *fq = (struct frag_queue *) data;
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900198 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700200 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700202 if (fq->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 goto out;
204
205 fq_kill(fq);
206
Eric W. Biederman881d9662007-09-17 11:56:21 -0700207 dev = dev_get_by_index(&init_net, fq->iif);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900208 if (!dev)
209 goto out;
210
211 rcu_read_lock();
212 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMTIMEOUT);
213 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
214 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Ingo Oeser78c784c2006-03-20 23:01:17 -0800216 /* Don't send error if the first segment did not arrive. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700217 if (!(fq->q.last_in&FIRST_IN) || !fq->q.fragments)
Ingo Oeser78c784c2006-03-20 23:01:17 -0800218 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Ingo Oeser78c784c2006-03-20 23:01:17 -0800220 /*
221 But use as source device on which LAST ARRIVED
222 segment was received. And do not use fq->dev
223 pointer directly, device might already disappeared.
224 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700225 fq->q.fragments->dev = dev;
226 icmpv6_send(fq->q.fragments, ICMPV6_TIME_EXCEED, ICMPV6_EXC_FRAGTIME, 0, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227out:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900228 if (dev)
229 dev_put(dev);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700230 spin_unlock(&fq->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700231 fq_put(fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
234/* Creation primitives. */
235
236
Zach Brownf6596f92006-04-10 16:05:34 -0700237static struct frag_queue *ip6_frag_intern(struct frag_queue *fq_in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 struct frag_queue *fq;
Zach Brownf6596f92006-04-10 16:05:34 -0700240 unsigned int hash;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800241#ifdef CONFIG_SMP
242 struct hlist_node *n;
243#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700245 write_lock(&ip6_frags.lock);
Zach Brownf6596f92006-04-10 16:05:34 -0700246 hash = ip6qhashfn(fq_in->id, &fq_in->saddr, &fq_in->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247#ifdef CONFIG_SMP
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700248 hlist_for_each_entry(fq, n, &ip6_frags.hash[hash], q.list) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900249 if (fq->id == fq_in->id &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 ipv6_addr_equal(&fq_in->saddr, &fq->saddr) &&
251 ipv6_addr_equal(&fq_in->daddr, &fq->daddr)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700252 atomic_inc(&fq->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700253 write_unlock(&ip6_frags.lock);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700254 fq_in->q.last_in |= COMPLETE;
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700255 fq_put(fq_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return fq;
257 }
258 }
259#endif
260 fq = fq_in;
261
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700262 if (!mod_timer(&fq->q.timer, jiffies + ip6_frags_ctl.timeout))
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700263 atomic_inc(&fq->q.refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700265 atomic_inc(&fq->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700266 hlist_add_head(&fq->q.list, &ip6_frags.hash[hash]);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700267 INIT_LIST_HEAD(&fq->q.lru_list);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700268 list_add_tail(&fq->q.lru_list, &ip6_frags.lru_list);
269 ip6_frags.nqueues++;
270 write_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return fq;
272}
273
274
275static struct frag_queue *
Al Viroe69a4adc2006-11-14 20:56:00 -0800276ip6_frag_create(__be32 id, struct in6_addr *src, struct in6_addr *dst,
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900277 struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 struct frag_queue *fq;
280
281 if ((fq = frag_alloc_queue()) == NULL)
282 goto oom;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 fq->id = id;
285 ipv6_addr_copy(&fq->saddr, src);
286 ipv6_addr_copy(&fq->daddr, dst);
287
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700288 init_timer(&fq->q.timer);
289 fq->q.timer.function = ip6_frag_expire;
290 fq->q.timer.data = (long) fq;
291 spin_lock_init(&fq->q.lock);
292 atomic_set(&fq->q.refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Zach Brownf6596f92006-04-10 16:05:34 -0700294 return ip6_frag_intern(fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296oom:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900297 IP6_INC_STATS_BH(idev, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return NULL;
299}
300
301static __inline__ struct frag_queue *
Al Viroe69a4adc2006-11-14 20:56:00 -0800302fq_find(__be32 id, struct in6_addr *src, struct in6_addr *dst,
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900303 struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 struct frag_queue *fq;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800306 struct hlist_node *n;
Zach Brownf6596f92006-04-10 16:05:34 -0700307 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700309 read_lock(&ip6_frags.lock);
Zach Brownf6596f92006-04-10 16:05:34 -0700310 hash = ip6qhashfn(id, src, dst);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700311 hlist_for_each_entry(fq, n, &ip6_frags.hash[hash], q.list) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900312 if (fq->id == id &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 ipv6_addr_equal(src, &fq->saddr) &&
314 ipv6_addr_equal(dst, &fq->daddr)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700315 atomic_inc(&fq->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700316 read_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return fq;
318 }
319 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700320 read_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900322 return ip6_frag_create(id, src, dst, idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325
Herbert Xuf61944e2007-10-15 01:28:47 -0700326static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct frag_hdr *fhdr, int nhoff)
328{
329 struct sk_buff *prev, *next;
Herbert Xuf61944e2007-10-15 01:28:47 -0700330 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int offset, end;
332
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700333 if (fq->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 goto err;
335
336 offset = ntohs(fhdr->frag_off) & ~0x7;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700337 end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
338 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 if ((unsigned int)end > IPV6_MAXPLEN) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900341 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
342 IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700343 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
344 ((u8 *)&fhdr->frag_off -
345 skb_network_header(skb)));
Herbert Xuf61944e2007-10-15 01:28:47 -0700346 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700349 if (skb->ip_summed == CHECKSUM_COMPLETE) {
350 const unsigned char *nh = skb_network_header(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900351 skb->csum = csum_sub(skb->csum,
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700352 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
353 0));
354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 /* Is this the final fragment? */
357 if (!(fhdr->frag_off & htons(IP6_MF))) {
358 /* If we already have some bits beyond end
359 * or have different end, the segment is corrupted.
360 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700361 if (end < fq->q.len ||
362 ((fq->q.last_in & LAST_IN) && end != fq->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700364 fq->q.last_in |= LAST_IN;
365 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 } else {
367 /* Check if the fragment is rounded to 8 bytes.
368 * Required by the RFC.
369 */
370 if (end & 0x7) {
371 /* RFC2460 says always send parameter problem in
372 * this case. -DaveM
373 */
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900374 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
375 IPSTATS_MIB_INHDRERRORS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900376 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 offsetof(struct ipv6hdr, payload_len));
Herbert Xuf61944e2007-10-15 01:28:47 -0700378 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700380 if (end > fq->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 /* Some bits beyond end -> corruption. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700382 if (fq->q.last_in & LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700384 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386 }
387
388 if (end == offset)
389 goto err;
390
391 /* Point into the IP datagram 'data' part. */
392 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data))
393 goto err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900394
Stephen Hemminger42ca89c2005-09-08 12:57:43 -0700395 if (pskb_trim_rcsum(skb, end - offset))
396 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /* Find out which fragments are in front and at the back of us
399 * in the chain of fragments so far. We must know where to put
400 * this fragment, right?
401 */
402 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700403 for(next = fq->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (FRAG6_CB(next)->offset >= offset)
405 break; /* bingo! */
406 prev = next;
407 }
408
409 /* We found where to put this one. Check for overlap with
410 * preceding fragment, and, if needed, align things so that
411 * any overlaps are eliminated.
412 */
413 if (prev) {
414 int i = (FRAG6_CB(prev)->offset + prev->len) - offset;
415
416 if (i > 0) {
417 offset += i;
418 if (end <= offset)
419 goto err;
420 if (!pskb_pull(skb, i))
421 goto err;
422 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
423 skb->ip_summed = CHECKSUM_NONE;
424 }
425 }
426
427 /* Look for overlap with succeeding segments.
428 * If we can merge fragments, do it.
429 */
430 while (next && FRAG6_CB(next)->offset < end) {
431 int i = end - FRAG6_CB(next)->offset; /* overlap is 'i' bytes */
432
433 if (i < next->len) {
434 /* Eat head of the next overlapped fragment
435 * and leave the loop. The next ones cannot overlap.
436 */
437 if (!pskb_pull(next, i))
438 goto err;
439 FRAG6_CB(next)->offset += i; /* next fragment */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700440 fq->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (next->ip_summed != CHECKSUM_UNNECESSARY)
442 next->ip_summed = CHECKSUM_NONE;
443 break;
444 } else {
445 struct sk_buff *free_it = next;
446
447 /* Old fragment is completely overridden with
448 * new one drop it.
449 */
450 next = next->next;
451
452 if (prev)
453 prev->next = next;
454 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700455 fq->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700457 fq->q.meat -= free_it->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 frag_kfree_skb(free_it, NULL);
459 }
460 }
461
462 FRAG6_CB(skb)->offset = offset;
463
464 /* Insert this fragment in the chain of fragments. */
465 skb->next = next;
466 if (prev)
467 prev->next = skb;
468 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700469 fq->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Herbert Xuf61944e2007-10-15 01:28:47 -0700471 dev = skb->dev;
472 if (dev) {
473 fq->iif = dev->ifindex;
474 skb->dev = NULL;
475 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700476 fq->q.stamp = skb->tstamp;
477 fq->q.meat += skb->len;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700478 atomic_add(skb->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 /* The first fragment.
481 * nhoffset is obtained from the first fragment, of course.
482 */
483 if (offset == 0) {
484 fq->nhoffset = nhoff;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700485 fq->q.last_in |= FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
Herbert Xuf61944e2007-10-15 01:28:47 -0700487
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700488 if (fq->q.last_in == (FIRST_IN | LAST_IN) && fq->q.meat == fq->q.len)
Herbert Xuf61944e2007-10-15 01:28:47 -0700489 return ip6_frag_reasm(fq, prev, dev);
490
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700491 write_lock(&ip6_frags.lock);
492 list_move_tail(&fq->q.lru_list, &ip6_frags.lru_list);
493 write_unlock(&ip6_frags.lock);
Herbert Xuf61944e2007-10-15 01:28:47 -0700494 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496err:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900497 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 kfree_skb(skb);
Herbert Xuf61944e2007-10-15 01:28:47 -0700499 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502/*
503 * Check if this packet is complete.
504 * Returns NULL on failure by any reason, and pointer
505 * to current nexthdr field in reassembled frame.
506 *
507 * It is called with locked fq, and caller must check that
508 * queue is eligible for reassembly i.e. it is not COMPLETE,
509 * the last and the first frames arrived and all the bits are here.
510 */
Herbert Xuf61944e2007-10-15 01:28:47 -0700511static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct net_device *dev)
513{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700514 struct sk_buff *fp, *head = fq->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 int payload_len;
516 unsigned int nhoff;
517
518 fq_kill(fq);
519
Herbert Xuf61944e2007-10-15 01:28:47 -0700520 /* Make the one we just received the head. */
521 if (prev) {
522 head = prev->next;
523 fp = skb_clone(head, GFP_ATOMIC);
524
525 if (!fp)
526 goto out_oom;
527
528 fp->next = head->next;
529 prev->next = fp;
530
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700531 skb_morph(head, fq->q.fragments);
532 head->next = fq->q.fragments->next;
Herbert Xuf61944e2007-10-15 01:28:47 -0700533
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700534 kfree_skb(fq->q.fragments);
535 fq->q.fragments = head;
Herbert Xuf61944e2007-10-15 01:28:47 -0700536 }
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 BUG_TRAP(head != NULL);
539 BUG_TRAP(FRAG6_CB(head)->offset == 0);
540
541 /* Unfragmented part is taken from the first segment. */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700542 payload_len = ((head->data - skb_network_header(head)) -
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700543 sizeof(struct ipv6hdr) + fq->q.len -
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700544 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (payload_len > IPV6_MAXPLEN)
546 goto out_oversize;
547
548 /* Head of list must not be cloned. */
549 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
550 goto out_oom;
551
552 /* If the first fragment is fragmented itself, we split
553 * it to two chunks: the first with data and paged part
554 * and the second, holding only fragments. */
555 if (skb_shinfo(head)->frag_list) {
556 struct sk_buff *clone;
557 int i, plen = 0;
558
559 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
560 goto out_oom;
561 clone->next = head->next;
562 head->next = clone;
563 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
564 skb_shinfo(head)->frag_list = NULL;
565 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
566 plen += skb_shinfo(head)->frags[i].size;
567 clone->len = clone->data_len = head->data_len - plen;
568 head->data_len -= clone->len;
569 head->len -= clone->len;
570 clone->csum = 0;
571 clone->ip_summed = head->ip_summed;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700572 atomic_add(clone->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574
575 /* We have to remove fragment header from datagram and to relocate
576 * header in order to calculate ICV correctly. */
577 nhoff = fq->nhoffset;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700578 skb_network_header(head)[nhoff] = skb_transport_header(head)[0];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900579 memmove(head->head + sizeof(struct frag_hdr), head->head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 (head->data - head->head) - sizeof(struct frag_hdr));
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700581 head->mac_header += sizeof(struct frag_hdr);
582 head->network_header += sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300585 skb_reset_transport_header(head);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700586 skb_push(head, head->data - skb_network_header(head));
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700587 atomic_sub(head->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 for (fp=head->next; fp; fp = fp->next) {
590 head->data_len += fp->len;
591 head->len += fp->len;
592 if (head->ip_summed != fp->ip_summed)
593 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700594 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 head->csum = csum_add(head->csum, fp->csum);
596 head->truesize += fp->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700597 atomic_sub(fp->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599
600 head->next = NULL;
601 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700602 head->tstamp = fq->q.stamp;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700603 ipv6_hdr(head)->payload_len = htons(payload_len);
Patrick McHardy951dbc82006-01-06 23:02:34 -0800604 IP6CB(head)->nhoff = nhoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* Yes, and fold redundant checksum back. 8) */
Patrick McHardy84fa7932006-08-29 16:44:56 -0700607 if (head->ip_summed == CHECKSUM_COMPLETE)
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700608 head->csum = csum_partial(skb_network_header(head),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300609 skb_network_header_len(head),
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700610 head->csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900612 rcu_read_lock();
613 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMOKS);
614 rcu_read_unlock();
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700615 fq->q.fragments = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return 1;
617
618out_oversize:
619 if (net_ratelimit())
620 printk(KERN_DEBUG "ip6_frag_reasm: payload len = %d\n", payload_len);
621 goto out_fail;
622out_oom:
623 if (net_ratelimit())
624 printk(KERN_DEBUG "ip6_frag_reasm: no memory for reassembly\n");
625out_fail:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900626 rcu_read_lock();
627 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
628 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return -1;
630}
631
Patrick McHardy951dbc82006-01-06 23:02:34 -0800632static int ipv6_frag_rcv(struct sk_buff **skbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900634 struct sk_buff *skb = *skbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 struct frag_hdr *fhdr;
636 struct frag_queue *fq;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700637 struct ipv6hdr *hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900639 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 /* Jumbo payload inhibits frag. header */
642 if (hdr->payload_len==0) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900643 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300644 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
645 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return -1;
647 }
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700648 if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
649 sizeof(struct frag_hdr)))) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900650 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300651 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
652 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return -1;
654 }
655
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700656 hdr = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700657 fhdr = (struct frag_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (!(fhdr->frag_off & htons(0xFFF9))) {
660 /* It is not a fragmented frame */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700661 skb->transport_header += sizeof(struct frag_hdr);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900662 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700664 IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return 1;
666 }
667
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700668 if (atomic_read(&ip6_frags.mem) > ip6_frags_ctl.high_thresh)
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900669 ip6_evictor(ip6_dst_idev(skb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900671 if ((fq = fq_find(fhdr->identification, &hdr->saddr, &hdr->daddr,
672 ip6_dst_idev(skb->dst))) != NULL) {
Herbert Xuf61944e2007-10-15 01:28:47 -0700673 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700675 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Herbert Xuf61944e2007-10-15 01:28:47 -0700677 ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700679 spin_unlock(&fq->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700680 fq_put(fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return ret;
682 }
683
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900684 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 kfree_skb(skb);
686 return -1;
687}
688
689static struct inet6_protocol frag_protocol =
690{
691 .handler = ipv6_frag_rcv,
692 .flags = INET6_PROTO_NOPOLICY,
693};
694
695void __init ipv6_frag_init(void)
696{
697 if (inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT) < 0)
698 printk(KERN_ERR "ipv6_frag_init: Could not register protocol\n");
699
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700700 ip6_frags.ctl = &ip6_frags_ctl;
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700701 ip6_frags.hashfn = ip6_hashfn;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700702 ip6_frags.destructor = ip6_frag_free;
703 ip6_frags.skb_free = NULL;
704 ip6_frags.qsize = sizeof(struct frag_queue);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700705 inet_frags_init(&ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}