blob: c7d4961bbcf7c230d974d317f517c27edab09ae5 [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
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
155static inline void frag_free_queue(struct frag_queue *fq, int *work)
156{
157 if (work)
158 *work -= sizeof(struct frag_queue);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700159 atomic_sub(sizeof(struct frag_queue), &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 kfree(fq);
161}
162
163static inline struct frag_queue *frag_alloc_queue(void)
164{
Ingo Oeser78c784c2006-03-20 23:01:17 -0800165 struct frag_queue *fq = kzalloc(sizeof(struct frag_queue), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 if(!fq)
168 return NULL;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700169 atomic_add(sizeof(struct frag_queue), &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return fq;
171}
172
173/* Destruction primitives. */
174
175/* Complete destruction of fq. */
176static void ip6_frag_destroy(struct frag_queue *fq, int *work)
177{
178 struct sk_buff *fp;
179
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700180 BUG_TRAP(fq->q.last_in&COMPLETE);
181 BUG_TRAP(del_timer(&fq->q.timer) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 /* Release all fragment data. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700184 fp = fq->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 while (fp) {
186 struct sk_buff *xp = fp->next;
187
188 frag_kfree_skb(fp, work);
189 fp = xp;
190 }
191
192 frag_free_queue(fq, work);
193}
194
195static __inline__ void fq_put(struct frag_queue *fq, int *work)
196{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700197 if (atomic_dec_and_test(&fq->q.refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 ip6_frag_destroy(fq, work);
199}
200
201/* Kill fq entry. It is not destroyed immediately,
202 * because caller (and someone more) holds reference count.
203 */
204static __inline__ void fq_kill(struct frag_queue *fq)
205{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700206 inet_frag_kill(&fq->q, &ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900209static void ip6_evictor(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 struct frag_queue *fq;
212 struct list_head *tmp;
213 int work;
214
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700215 work = atomic_read(&ip6_frags.mem) - ip6_frags_ctl.low_thresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (work <= 0)
217 return;
218
219 while(work > 0) {
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700220 read_lock(&ip6_frags.lock);
221 if (list_empty(&ip6_frags.lru_list)) {
222 read_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return;
224 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700225 tmp = ip6_frags.lru_list.next;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700226 fq = list_entry(tmp, struct frag_queue, q.lru_list);
227 atomic_inc(&fq->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700228 read_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700230 spin_lock(&fq->q.lock);
231 if (!(fq->q.last_in&COMPLETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 fq_kill(fq);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700233 spin_unlock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 fq_put(fq, &work);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900236 IP6_INC_STATS_BH(idev, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238}
239
240static void ip6_frag_expire(unsigned long data)
241{
242 struct frag_queue *fq = (struct frag_queue *) data;
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900243 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700245 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700247 if (fq->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 goto out;
249
250 fq_kill(fq);
251
Eric W. Biederman881d9662007-09-17 11:56:21 -0700252 dev = dev_get_by_index(&init_net, fq->iif);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900253 if (!dev)
254 goto out;
255
256 rcu_read_lock();
257 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMTIMEOUT);
258 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
259 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Ingo Oeser78c784c2006-03-20 23:01:17 -0800261 /* Don't send error if the first segment did not arrive. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700262 if (!(fq->q.last_in&FIRST_IN) || !fq->q.fragments)
Ingo Oeser78c784c2006-03-20 23:01:17 -0800263 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Ingo Oeser78c784c2006-03-20 23:01:17 -0800265 /*
266 But use as source device on which LAST ARRIVED
267 segment was received. And do not use fq->dev
268 pointer directly, device might already disappeared.
269 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700270 fq->q.fragments->dev = dev;
271 icmpv6_send(fq->q.fragments, ICMPV6_TIME_EXCEED, ICMPV6_EXC_FRAGTIME, 0, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272out:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900273 if (dev)
274 dev_put(dev);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700275 spin_unlock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 fq_put(fq, NULL);
277}
278
279/* Creation primitives. */
280
281
Zach Brownf6596f92006-04-10 16:05:34 -0700282static struct frag_queue *ip6_frag_intern(struct frag_queue *fq_in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct frag_queue *fq;
Zach Brownf6596f92006-04-10 16:05:34 -0700285 unsigned int hash;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800286#ifdef CONFIG_SMP
287 struct hlist_node *n;
288#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700290 write_lock(&ip6_frags.lock);
Zach Brownf6596f92006-04-10 16:05:34 -0700291 hash = ip6qhashfn(fq_in->id, &fq_in->saddr, &fq_in->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#ifdef CONFIG_SMP
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700293 hlist_for_each_entry(fq, n, &ip6_frags.hash[hash], q.list) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900294 if (fq->id == fq_in->id &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ipv6_addr_equal(&fq_in->saddr, &fq->saddr) &&
296 ipv6_addr_equal(&fq_in->daddr, &fq->daddr)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700297 atomic_inc(&fq->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700298 write_unlock(&ip6_frags.lock);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700299 fq_in->q.last_in |= COMPLETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 fq_put(fq_in, NULL);
301 return fq;
302 }
303 }
304#endif
305 fq = fq_in;
306
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700307 if (!mod_timer(&fq->q.timer, jiffies + ip6_frags_ctl.timeout))
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700308 atomic_inc(&fq->q.refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700310 atomic_inc(&fq->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700311 hlist_add_head(&fq->q.list, &ip6_frags.hash[hash]);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700312 INIT_LIST_HEAD(&fq->q.lru_list);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700313 list_add_tail(&fq->q.lru_list, &ip6_frags.lru_list);
314 ip6_frags.nqueues++;
315 write_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return fq;
317}
318
319
320static struct frag_queue *
Al Viroe69a4ad2006-11-14 20:56:00 -0800321ip6_frag_create(__be32 id, struct in6_addr *src, struct in6_addr *dst,
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900322 struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 struct frag_queue *fq;
325
326 if ((fq = frag_alloc_queue()) == NULL)
327 goto oom;
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 fq->id = id;
330 ipv6_addr_copy(&fq->saddr, src);
331 ipv6_addr_copy(&fq->daddr, dst);
332
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700333 init_timer(&fq->q.timer);
334 fq->q.timer.function = ip6_frag_expire;
335 fq->q.timer.data = (long) fq;
336 spin_lock_init(&fq->q.lock);
337 atomic_set(&fq->q.refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Zach Brownf6596f92006-04-10 16:05:34 -0700339 return ip6_frag_intern(fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341oom:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900342 IP6_INC_STATS_BH(idev, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return NULL;
344}
345
346static __inline__ struct frag_queue *
Al Viroe69a4ad2006-11-14 20:56:00 -0800347fq_find(__be32 id, struct in6_addr *src, struct in6_addr *dst,
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900348 struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 struct frag_queue *fq;
Yasuyuki Kozakaie7c8a412005-11-16 12:55:37 -0800351 struct hlist_node *n;
Zach Brownf6596f92006-04-10 16:05:34 -0700352 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700354 read_lock(&ip6_frags.lock);
Zach Brownf6596f92006-04-10 16:05:34 -0700355 hash = ip6qhashfn(id, src, dst);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700356 hlist_for_each_entry(fq, n, &ip6_frags.hash[hash], q.list) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900357 if (fq->id == id &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 ipv6_addr_equal(src, &fq->saddr) &&
359 ipv6_addr_equal(dst, &fq->daddr)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700360 atomic_inc(&fq->q.refcnt);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700361 read_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return fq;
363 }
364 }
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700365 read_unlock(&ip6_frags.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900367 return ip6_frag_create(id, src, dst, idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
370
Herbert Xuf61944e2007-10-15 01:28:47 -0700371static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 struct frag_hdr *fhdr, int nhoff)
373{
374 struct sk_buff *prev, *next;
Herbert Xuf61944e2007-10-15 01:28:47 -0700375 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 int offset, end;
377
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700378 if (fq->q.last_in & COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 goto err;
380
381 offset = ntohs(fhdr->frag_off) & ~0x7;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700382 end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
383 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if ((unsigned int)end > IPV6_MAXPLEN) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900386 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
387 IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700388 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
389 ((u8 *)&fhdr->frag_off -
390 skb_network_header(skb)));
Herbert Xuf61944e2007-10-15 01:28:47 -0700391 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700394 if (skb->ip_summed == CHECKSUM_COMPLETE) {
395 const unsigned char *nh = skb_network_header(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900396 skb->csum = csum_sub(skb->csum,
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700397 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
398 0));
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 /* Is this the final fragment? */
402 if (!(fhdr->frag_off & htons(IP6_MF))) {
403 /* If we already have some bits beyond end
404 * or have different end, the segment is corrupted.
405 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700406 if (end < fq->q.len ||
407 ((fq->q.last_in & LAST_IN) && end != fq->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700409 fq->q.last_in |= LAST_IN;
410 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 } else {
412 /* Check if the fragment is rounded to 8 bytes.
413 * Required by the RFC.
414 */
415 if (end & 0x7) {
416 /* RFC2460 says always send parameter problem in
417 * this case. -DaveM
418 */
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900419 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
420 IPSTATS_MIB_INHDRERRORS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900421 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 offsetof(struct ipv6hdr, payload_len));
Herbert Xuf61944e2007-10-15 01:28:47 -0700423 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700425 if (end > fq->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* Some bits beyond end -> corruption. */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700427 if (fq->q.last_in & LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700429 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431 }
432
433 if (end == offset)
434 goto err;
435
436 /* Point into the IP datagram 'data' part. */
437 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data))
438 goto err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900439
Stephen Hemminger42ca89c2005-09-08 12:57:43 -0700440 if (pskb_trim_rcsum(skb, end - offset))
441 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 /* Find out which fragments are in front and at the back of us
444 * in the chain of fragments so far. We must know where to put
445 * this fragment, right?
446 */
447 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700448 for(next = fq->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (FRAG6_CB(next)->offset >= offset)
450 break; /* bingo! */
451 prev = next;
452 }
453
454 /* We found where to put this one. Check for overlap with
455 * preceding fragment, and, if needed, align things so that
456 * any overlaps are eliminated.
457 */
458 if (prev) {
459 int i = (FRAG6_CB(prev)->offset + prev->len) - offset;
460
461 if (i > 0) {
462 offset += i;
463 if (end <= offset)
464 goto err;
465 if (!pskb_pull(skb, i))
466 goto err;
467 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
468 skb->ip_summed = CHECKSUM_NONE;
469 }
470 }
471
472 /* Look for overlap with succeeding segments.
473 * If we can merge fragments, do it.
474 */
475 while (next && FRAG6_CB(next)->offset < end) {
476 int i = end - FRAG6_CB(next)->offset; /* overlap is 'i' bytes */
477
478 if (i < next->len) {
479 /* Eat head of the next overlapped fragment
480 * and leave the loop. The next ones cannot overlap.
481 */
482 if (!pskb_pull(next, i))
483 goto err;
484 FRAG6_CB(next)->offset += i; /* next fragment */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700485 fq->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (next->ip_summed != CHECKSUM_UNNECESSARY)
487 next->ip_summed = CHECKSUM_NONE;
488 break;
489 } else {
490 struct sk_buff *free_it = next;
491
492 /* Old fragment is completely overridden with
493 * new one drop it.
494 */
495 next = next->next;
496
497 if (prev)
498 prev->next = next;
499 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700500 fq->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700502 fq->q.meat -= free_it->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 frag_kfree_skb(free_it, NULL);
504 }
505 }
506
507 FRAG6_CB(skb)->offset = offset;
508
509 /* Insert this fragment in the chain of fragments. */
510 skb->next = next;
511 if (prev)
512 prev->next = skb;
513 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700514 fq->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Herbert Xuf61944e2007-10-15 01:28:47 -0700516 dev = skb->dev;
517 if (dev) {
518 fq->iif = dev->ifindex;
519 skb->dev = NULL;
520 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700521 fq->q.stamp = skb->tstamp;
522 fq->q.meat += skb->len;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700523 atomic_add(skb->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 /* The first fragment.
526 * nhoffset is obtained from the first fragment, of course.
527 */
528 if (offset == 0) {
529 fq->nhoffset = nhoff;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700530 fq->q.last_in |= FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Herbert Xuf61944e2007-10-15 01:28:47 -0700532
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700533 if (fq->q.last_in == (FIRST_IN | LAST_IN) && fq->q.meat == fq->q.len)
Herbert Xuf61944e2007-10-15 01:28:47 -0700534 return ip6_frag_reasm(fq, prev, dev);
535
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700536 write_lock(&ip6_frags.lock);
537 list_move_tail(&fq->q.lru_list, &ip6_frags.lru_list);
538 write_unlock(&ip6_frags.lock);
Herbert Xuf61944e2007-10-15 01:28:47 -0700539 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541err:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900542 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 kfree_skb(skb);
Herbert Xuf61944e2007-10-15 01:28:47 -0700544 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547/*
548 * Check if this packet is complete.
549 * Returns NULL on failure by any reason, and pointer
550 * to current nexthdr field in reassembled frame.
551 *
552 * It is called with locked fq, and caller must check that
553 * queue is eligible for reassembly i.e. it is not COMPLETE,
554 * the last and the first frames arrived and all the bits are here.
555 */
Herbert Xuf61944e2007-10-15 01:28:47 -0700556static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct net_device *dev)
558{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700559 struct sk_buff *fp, *head = fq->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int payload_len;
561 unsigned int nhoff;
562
563 fq_kill(fq);
564
Herbert Xuf61944e2007-10-15 01:28:47 -0700565 /* Make the one we just received the head. */
566 if (prev) {
567 head = prev->next;
568 fp = skb_clone(head, GFP_ATOMIC);
569
570 if (!fp)
571 goto out_oom;
572
573 fp->next = head->next;
574 prev->next = fp;
575
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700576 skb_morph(head, fq->q.fragments);
577 head->next = fq->q.fragments->next;
Herbert Xuf61944e2007-10-15 01:28:47 -0700578
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700579 kfree_skb(fq->q.fragments);
580 fq->q.fragments = head;
Herbert Xuf61944e2007-10-15 01:28:47 -0700581 }
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 BUG_TRAP(head != NULL);
584 BUG_TRAP(FRAG6_CB(head)->offset == 0);
585
586 /* Unfragmented part is taken from the first segment. */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700587 payload_len = ((head->data - skb_network_header(head)) -
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700588 sizeof(struct ipv6hdr) + fq->q.len -
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700589 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (payload_len > IPV6_MAXPLEN)
591 goto out_oversize;
592
593 /* Head of list must not be cloned. */
594 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
595 goto out_oom;
596
597 /* If the first fragment is fragmented itself, we split
598 * it to two chunks: the first with data and paged part
599 * and the second, holding only fragments. */
600 if (skb_shinfo(head)->frag_list) {
601 struct sk_buff *clone;
602 int i, plen = 0;
603
604 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
605 goto out_oom;
606 clone->next = head->next;
607 head->next = clone;
608 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
609 skb_shinfo(head)->frag_list = NULL;
610 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
611 plen += skb_shinfo(head)->frags[i].size;
612 clone->len = clone->data_len = head->data_len - plen;
613 head->data_len -= clone->len;
614 head->len -= clone->len;
615 clone->csum = 0;
616 clone->ip_summed = head->ip_summed;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700617 atomic_add(clone->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
620 /* We have to remove fragment header from datagram and to relocate
621 * header in order to calculate ICV correctly. */
622 nhoff = fq->nhoffset;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700623 skb_network_header(head)[nhoff] = skb_transport_header(head)[0];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900624 memmove(head->head + sizeof(struct frag_hdr), head->head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 (head->data - head->head) - sizeof(struct frag_hdr));
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700626 head->mac_header += sizeof(struct frag_hdr);
627 head->network_header += sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300630 skb_reset_transport_header(head);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700631 skb_push(head, head->data - skb_network_header(head));
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700632 atomic_sub(head->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 for (fp=head->next; fp; fp = fp->next) {
635 head->data_len += fp->len;
636 head->len += fp->len;
637 if (head->ip_summed != fp->ip_summed)
638 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700639 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 head->csum = csum_add(head->csum, fp->csum);
641 head->truesize += fp->truesize;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700642 atomic_sub(fp->truesize, &ip6_frags.mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 }
644
645 head->next = NULL;
646 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700647 head->tstamp = fq->q.stamp;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700648 ipv6_hdr(head)->payload_len = htons(payload_len);
Patrick McHardy951dbc82006-01-06 23:02:34 -0800649 IP6CB(head)->nhoff = nhoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* Yes, and fold redundant checksum back. 8) */
Patrick McHardy84fa7932006-08-29 16:44:56 -0700652 if (head->ip_summed == CHECKSUM_COMPLETE)
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700653 head->csum = csum_partial(skb_network_header(head),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300654 skb_network_header_len(head),
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700655 head->csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900657 rcu_read_lock();
658 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMOKS);
659 rcu_read_unlock();
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700660 fq->q.fragments = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return 1;
662
663out_oversize:
664 if (net_ratelimit())
665 printk(KERN_DEBUG "ip6_frag_reasm: payload len = %d\n", payload_len);
666 goto out_fail;
667out_oom:
668 if (net_ratelimit())
669 printk(KERN_DEBUG "ip6_frag_reasm: no memory for reassembly\n");
670out_fail:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900671 rcu_read_lock();
672 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
673 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -1;
675}
676
Patrick McHardy951dbc82006-01-06 23:02:34 -0800677static int ipv6_frag_rcv(struct sk_buff **skbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900679 struct sk_buff *skb = *skbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 struct frag_hdr *fhdr;
681 struct frag_queue *fq;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700682 struct ipv6hdr *hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900684 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 /* Jumbo payload inhibits frag. header */
687 if (hdr->payload_len==0) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900688 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300689 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
690 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return -1;
692 }
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700693 if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
694 sizeof(struct frag_hdr)))) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900695 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300696 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
697 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return -1;
699 }
700
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700701 hdr = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700702 fhdr = (struct frag_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 if (!(fhdr->frag_off & htons(0xFFF9))) {
705 /* It is not a fragmented frame */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700706 skb->transport_header += sizeof(struct frag_hdr);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900707 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700709 IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return 1;
711 }
712
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700713 if (atomic_read(&ip6_frags.mem) > ip6_frags_ctl.high_thresh)
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900714 ip6_evictor(ip6_dst_idev(skb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900716 if ((fq = fq_find(fhdr->identification, &hdr->saddr, &hdr->daddr,
717 ip6_dst_idev(skb->dst))) != NULL) {
Herbert Xuf61944e2007-10-15 01:28:47 -0700718 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700720 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Herbert Xuf61944e2007-10-15 01:28:47 -0700722 ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700724 spin_unlock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 fq_put(fq, NULL);
726 return ret;
727 }
728
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900729 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 kfree_skb(skb);
731 return -1;
732}
733
734static struct inet6_protocol frag_protocol =
735{
736 .handler = ipv6_frag_rcv,
737 .flags = INET6_PROTO_NOPOLICY,
738};
739
740void __init ipv6_frag_init(void)
741{
742 if (inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT) < 0)
743 printk(KERN_ERR "ipv6_frag_init: Could not register protocol\n");
744
Pavel Emelyanov04128f22007-10-15 02:33:45 -0700745 ip6_frags.ctl = &ip6_frags_ctl;
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700746 ip6_frags.hashfn = ip6_hashfn;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700747 inet_frags_init(&ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}