2 * IPv6 fragment reassembly
3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * $Id: reassembly.c,v 1.26 2001/03/07 22:00:57 davem Exp $
10 * Based on: net/ipv4/ip_fragment.c
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.
20 * Andi Kleen Make it work with multiple hosts.
21 * More RFC compliance.
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{}.
28 * YOSHIFUJI,H. @USAGI Always remove fragment header to
29 * calculate ICV correctly.
31 #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>
45 #include <linux/skbuff.h>
51 #include <net/ip6_route.h>
52 #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>
57 #include <net/inet_frag.h>
61 struct inet6_skb_parm h
;
65 #define FRAG6_CB(skb) ((struct ip6frag_skb_cb*)((skb)->cb))
69 * Equivalent of ipv4 struct ipq
74 struct inet_frag_queue q
;
76 __be32 id
; /* fragment id */
77 struct in6_addr saddr
;
78 struct in6_addr daddr
;
85 struct 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
,
92 static struct inet_frags ip6_frags
;
94 int ip6_frag_nqueues(void)
96 return ip6_frags
.nqueues
;
99 int ip6_frag_mem(void)
101 return atomic_read(&ip6_frags
.mem
);
104 static int ip6_frag_reasm(struct frag_queue
*fq
, struct sk_buff
*prev
,
105 struct net_device
*dev
);
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.
111 static unsigned int ip6qhashfn(__be32 id
, struct in6_addr
*saddr
,
112 struct in6_addr
*daddr
)
116 a
= (__force u32
)saddr
->s6_addr32
[0];
117 b
= (__force u32
)saddr
->s6_addr32
[1];
118 c
= (__force u32
)saddr
->s6_addr32
[2];
120 a
+= JHASH_GOLDEN_RATIO
;
121 b
+= JHASH_GOLDEN_RATIO
;
123 __jhash_mix(a
, b
, c
);
125 a
+= (__force u32
)saddr
->s6_addr32
[3];
126 b
+= (__force u32
)daddr
->s6_addr32
[0];
127 c
+= (__force u32
)daddr
->s6_addr32
[1];
128 __jhash_mix(a
, b
, c
);
130 a
+= (__force u32
)daddr
->s6_addr32
[2];
131 b
+= (__force u32
)daddr
->s6_addr32
[3];
132 c
+= (__force u32
)id
;
133 __jhash_mix(a
, b
, c
);
135 return c
& (INETFRAGS_HASHSZ
- 1);
138 static unsigned int ip6_hashfn(struct inet_frag_queue
*q
)
140 struct frag_queue
*fq
;
142 fq
= container_of(q
, struct frag_queue
, q
);
143 return ip6qhashfn(fq
->id
, &fq
->saddr
, &fq
->daddr
);
146 int ip6_frag_match(struct inet_frag_queue
*q
, void *a
)
148 struct frag_queue
*fq
;
149 struct ip6_create_arg
*arg
= a
;
151 fq
= container_of(q
, struct frag_queue
, q
);
152 return (fq
->id
== arg
->id
&&
153 ipv6_addr_equal(&fq
->saddr
, arg
->src
) &&
154 ipv6_addr_equal(&fq
->daddr
, arg
->dst
));
156 EXPORT_SYMBOL(ip6_frag_match
);
158 /* Memory Tracking Functions. */
159 static inline void frag_kfree_skb(struct sk_buff
*skb
, int *work
)
162 *work
-= skb
->truesize
;
163 atomic_sub(skb
->truesize
, &ip6_frags
.mem
);
167 void ip6_frag_init(struct inet_frag_queue
*q
, void *a
)
169 struct frag_queue
*fq
= container_of(q
, struct frag_queue
, q
);
170 struct ip6_create_arg
*arg
= a
;
173 ipv6_addr_copy(&fq
->saddr
, arg
->src
);
174 ipv6_addr_copy(&fq
->daddr
, arg
->dst
);
176 EXPORT_SYMBOL(ip6_frag_init
);
178 /* Destruction primitives. */
180 static __inline__
void fq_put(struct frag_queue
*fq
)
182 inet_frag_put(&fq
->q
, &ip6_frags
);
185 /* Kill fq entry. It is not destroyed immediately,
186 * because caller (and someone more) holds reference count.
188 static __inline__
void fq_kill(struct frag_queue
*fq
)
190 inet_frag_kill(&fq
->q
, &ip6_frags
);
193 static void ip6_evictor(struct inet6_dev
*idev
)
197 evicted
= inet_frag_evictor(&ip6_frags
);
199 IP6_ADD_STATS_BH(idev
, IPSTATS_MIB_REASMFAILS
, evicted
);
202 static void ip6_frag_expire(unsigned long data
)
204 struct frag_queue
*fq
;
205 struct net_device
*dev
= NULL
;
207 fq
= container_of((struct inet_frag_queue
*)data
, struct frag_queue
, q
);
209 spin_lock(&fq
->q
.lock
);
211 if (fq
->q
.last_in
& COMPLETE
)
216 dev
= dev_get_by_index(&init_net
, fq
->iif
);
221 IP6_INC_STATS_BH(__in6_dev_get(dev
), IPSTATS_MIB_REASMTIMEOUT
);
222 IP6_INC_STATS_BH(__in6_dev_get(dev
), IPSTATS_MIB_REASMFAILS
);
225 /* Don't send error if the first segment did not arrive. */
226 if (!(fq
->q
.last_in
&FIRST_IN
) || !fq
->q
.fragments
)
230 But use as source device on which LAST ARRIVED
231 segment was received. And do not use fq->dev
232 pointer directly, device might already disappeared.
234 fq
->q
.fragments
->dev
= dev
;
235 icmpv6_send(fq
->q
.fragments
, ICMPV6_TIME_EXCEED
, ICMPV6_EXC_FRAGTIME
, 0, dev
);
239 spin_unlock(&fq
->q
.lock
);
243 static __inline__
struct frag_queue
*
244 fq_find(__be32 id
, struct in6_addr
*src
, struct in6_addr
*dst
,
245 struct inet6_dev
*idev
)
247 struct inet_frag_queue
*q
;
248 struct ip6_create_arg arg
;
254 hash
= ip6qhashfn(id
, src
, dst
);
256 q
= inet_frag_find(&ip6_frags
, &arg
, hash
);
260 return container_of(q
, struct frag_queue
, q
);
263 IP6_INC_STATS_BH(idev
, IPSTATS_MIB_REASMFAILS
);
267 static int ip6_frag_queue(struct frag_queue
*fq
, struct sk_buff
*skb
,
268 struct frag_hdr
*fhdr
, int nhoff
)
270 struct sk_buff
*prev
, *next
;
271 struct net_device
*dev
;
274 if (fq
->q
.last_in
& COMPLETE
)
277 offset
= ntohs(fhdr
->frag_off
) & ~0x7;
278 end
= offset
+ (ntohs(ipv6_hdr(skb
)->payload_len
) -
279 ((u8
*)(fhdr
+ 1) - (u8
*)(ipv6_hdr(skb
) + 1)));
281 if ((unsigned int)end
> IPV6_MAXPLEN
) {
282 IP6_INC_STATS_BH(ip6_dst_idev(skb
->dst
),
283 IPSTATS_MIB_INHDRERRORS
);
284 icmpv6_param_prob(skb
, ICMPV6_HDR_FIELD
,
285 ((u8
*)&fhdr
->frag_off
-
286 skb_network_header(skb
)));
290 if (skb
->ip_summed
== CHECKSUM_COMPLETE
) {
291 const unsigned char *nh
= skb_network_header(skb
);
292 skb
->csum
= csum_sub(skb
->csum
,
293 csum_partial(nh
, (u8
*)(fhdr
+ 1) - nh
,
297 /* Is this the final fragment? */
298 if (!(fhdr
->frag_off
& htons(IP6_MF
))) {
299 /* If we already have some bits beyond end
300 * or have different end, the segment is corrupted.
302 if (end
< fq
->q
.len
||
303 ((fq
->q
.last_in
& LAST_IN
) && end
!= fq
->q
.len
))
305 fq
->q
.last_in
|= LAST_IN
;
308 /* Check if the fragment is rounded to 8 bytes.
309 * Required by the RFC.
312 /* RFC2460 says always send parameter problem in
315 IP6_INC_STATS_BH(ip6_dst_idev(skb
->dst
),
316 IPSTATS_MIB_INHDRERRORS
);
317 icmpv6_param_prob(skb
, ICMPV6_HDR_FIELD
,
318 offsetof(struct ipv6hdr
, payload_len
));
321 if (end
> fq
->q
.len
) {
322 /* Some bits beyond end -> corruption. */
323 if (fq
->q
.last_in
& LAST_IN
)
332 /* Point into the IP datagram 'data' part. */
333 if (!pskb_pull(skb
, (u8
*) (fhdr
+ 1) - skb
->data
))
336 if (pskb_trim_rcsum(skb
, end
- offset
))
339 /* Find out which fragments are in front and at the back of us
340 * in the chain of fragments so far. We must know where to put
341 * this fragment, right?
344 for(next
= fq
->q
.fragments
; next
!= NULL
; next
= next
->next
) {
345 if (FRAG6_CB(next
)->offset
>= offset
)
350 /* We found where to put this one. Check for overlap with
351 * preceding fragment, and, if needed, align things so that
352 * any overlaps are eliminated.
355 int i
= (FRAG6_CB(prev
)->offset
+ prev
->len
) - offset
;
361 if (!pskb_pull(skb
, i
))
363 if (skb
->ip_summed
!= CHECKSUM_UNNECESSARY
)
364 skb
->ip_summed
= CHECKSUM_NONE
;
368 /* Look for overlap with succeeding segments.
369 * If we can merge fragments, do it.
371 while (next
&& FRAG6_CB(next
)->offset
< end
) {
372 int i
= end
- FRAG6_CB(next
)->offset
; /* overlap is 'i' bytes */
375 /* Eat head of the next overlapped fragment
376 * and leave the loop. The next ones cannot overlap.
378 if (!pskb_pull(next
, i
))
380 FRAG6_CB(next
)->offset
+= i
; /* next fragment */
382 if (next
->ip_summed
!= CHECKSUM_UNNECESSARY
)
383 next
->ip_summed
= CHECKSUM_NONE
;
386 struct sk_buff
*free_it
= next
;
388 /* Old fragment is completely overridden with
396 fq
->q
.fragments
= next
;
398 fq
->q
.meat
-= free_it
->len
;
399 frag_kfree_skb(free_it
, NULL
);
403 FRAG6_CB(skb
)->offset
= offset
;
405 /* Insert this fragment in the chain of fragments. */
410 fq
->q
.fragments
= skb
;
414 fq
->iif
= dev
->ifindex
;
417 fq
->q
.stamp
= skb
->tstamp
;
418 fq
->q
.meat
+= skb
->len
;
419 atomic_add(skb
->truesize
, &ip6_frags
.mem
);
421 /* The first fragment.
422 * nhoffset is obtained from the first fragment, of course.
425 fq
->nhoffset
= nhoff
;
426 fq
->q
.last_in
|= FIRST_IN
;
429 if (fq
->q
.last_in
== (FIRST_IN
| LAST_IN
) && fq
->q
.meat
== fq
->q
.len
)
430 return ip6_frag_reasm(fq
, prev
, dev
);
432 write_lock(&ip6_frags
.lock
);
433 list_move_tail(&fq
->q
.lru_list
, &ip6_frags
.lru_list
);
434 write_unlock(&ip6_frags
.lock
);
438 IP6_INC_STATS(ip6_dst_idev(skb
->dst
), IPSTATS_MIB_REASMFAILS
);
444 * Check if this packet is complete.
445 * Returns NULL on failure by any reason, and pointer
446 * to current nexthdr field in reassembled frame.
448 * It is called with locked fq, and caller must check that
449 * queue is eligible for reassembly i.e. it is not COMPLETE,
450 * the last and the first frames arrived and all the bits are here.
452 static int ip6_frag_reasm(struct frag_queue
*fq
, struct sk_buff
*prev
,
453 struct net_device
*dev
)
455 struct sk_buff
*fp
, *head
= fq
->q
.fragments
;
461 /* Make the one we just received the head. */
464 fp
= skb_clone(head
, GFP_ATOMIC
);
469 fp
->next
= head
->next
;
472 skb_morph(head
, fq
->q
.fragments
);
473 head
->next
= fq
->q
.fragments
->next
;
475 kfree_skb(fq
->q
.fragments
);
476 fq
->q
.fragments
= head
;
479 BUG_TRAP(head
!= NULL
);
480 BUG_TRAP(FRAG6_CB(head
)->offset
== 0);
482 /* Unfragmented part is taken from the first segment. */
483 payload_len
= ((head
->data
- skb_network_header(head
)) -
484 sizeof(struct ipv6hdr
) + fq
->q
.len
-
485 sizeof(struct frag_hdr
));
486 if (payload_len
> IPV6_MAXPLEN
)
489 /* Head of list must not be cloned. */
490 if (skb_cloned(head
) && pskb_expand_head(head
, 0, 0, GFP_ATOMIC
))
493 /* If the first fragment is fragmented itself, we split
494 * it to two chunks: the first with data and paged part
495 * and the second, holding only fragments. */
496 if (skb_shinfo(head
)->frag_list
) {
497 struct sk_buff
*clone
;
500 if ((clone
= alloc_skb(0, GFP_ATOMIC
)) == NULL
)
502 clone
->next
= head
->next
;
504 skb_shinfo(clone
)->frag_list
= skb_shinfo(head
)->frag_list
;
505 skb_shinfo(head
)->frag_list
= NULL
;
506 for (i
=0; i
<skb_shinfo(head
)->nr_frags
; i
++)
507 plen
+= skb_shinfo(head
)->frags
[i
].size
;
508 clone
->len
= clone
->data_len
= head
->data_len
- plen
;
509 head
->data_len
-= clone
->len
;
510 head
->len
-= clone
->len
;
512 clone
->ip_summed
= head
->ip_summed
;
513 atomic_add(clone
->truesize
, &ip6_frags
.mem
);
516 /* We have to remove fragment header from datagram and to relocate
517 * header in order to calculate ICV correctly. */
518 nhoff
= fq
->nhoffset
;
519 skb_network_header(head
)[nhoff
] = skb_transport_header(head
)[0];
520 memmove(head
->head
+ sizeof(struct frag_hdr
), head
->head
,
521 (head
->data
- head
->head
) - sizeof(struct frag_hdr
));
522 head
->mac_header
+= sizeof(struct frag_hdr
);
523 head
->network_header
+= sizeof(struct frag_hdr
);
525 skb_shinfo(head
)->frag_list
= head
->next
;
526 skb_reset_transport_header(head
);
527 skb_push(head
, head
->data
- skb_network_header(head
));
528 atomic_sub(head
->truesize
, &ip6_frags
.mem
);
530 for (fp
=head
->next
; fp
; fp
= fp
->next
) {
531 head
->data_len
+= fp
->len
;
532 head
->len
+= fp
->len
;
533 if (head
->ip_summed
!= fp
->ip_summed
)
534 head
->ip_summed
= CHECKSUM_NONE
;
535 else if (head
->ip_summed
== CHECKSUM_COMPLETE
)
536 head
->csum
= csum_add(head
->csum
, fp
->csum
);
537 head
->truesize
+= fp
->truesize
;
538 atomic_sub(fp
->truesize
, &ip6_frags
.mem
);
543 head
->tstamp
= fq
->q
.stamp
;
544 ipv6_hdr(head
)->payload_len
= htons(payload_len
);
545 IP6CB(head
)->nhoff
= nhoff
;
547 /* Yes, and fold redundant checksum back. 8) */
548 if (head
->ip_summed
== CHECKSUM_COMPLETE
)
549 head
->csum
= csum_partial(skb_network_header(head
),
550 skb_network_header_len(head
),
554 IP6_INC_STATS_BH(__in6_dev_get(dev
), IPSTATS_MIB_REASMOKS
);
556 fq
->q
.fragments
= NULL
;
561 printk(KERN_DEBUG
"ip6_frag_reasm: payload len = %d\n", payload_len
);
565 printk(KERN_DEBUG
"ip6_frag_reasm: no memory for reassembly\n");
568 IP6_INC_STATS_BH(__in6_dev_get(dev
), IPSTATS_MIB_REASMFAILS
);
573 static int ipv6_frag_rcv(struct sk_buff
*skb
)
575 struct frag_hdr
*fhdr
;
576 struct frag_queue
*fq
;
577 struct ipv6hdr
*hdr
= ipv6_hdr(skb
);
579 IP6_INC_STATS_BH(ip6_dst_idev(skb
->dst
), IPSTATS_MIB_REASMREQDS
);
581 /* Jumbo payload inhibits frag. header */
582 if (hdr
->payload_len
==0) {
583 IP6_INC_STATS(ip6_dst_idev(skb
->dst
), IPSTATS_MIB_INHDRERRORS
);
584 icmpv6_param_prob(skb
, ICMPV6_HDR_FIELD
,
585 skb_network_header_len(skb
));
588 if (!pskb_may_pull(skb
, (skb_transport_offset(skb
) +
589 sizeof(struct frag_hdr
)))) {
590 IP6_INC_STATS(ip6_dst_idev(skb
->dst
), IPSTATS_MIB_INHDRERRORS
);
591 icmpv6_param_prob(skb
, ICMPV6_HDR_FIELD
,
592 skb_network_header_len(skb
));
597 fhdr
= (struct frag_hdr
*)skb_transport_header(skb
);
599 if (!(fhdr
->frag_off
& htons(0xFFF9))) {
600 /* It is not a fragmented frame */
601 skb
->transport_header
+= sizeof(struct frag_hdr
);
602 IP6_INC_STATS_BH(ip6_dst_idev(skb
->dst
), IPSTATS_MIB_REASMOKS
);
604 IP6CB(skb
)->nhoff
= (u8
*)fhdr
- skb_network_header(skb
);
608 if (atomic_read(&ip6_frags
.mem
) > ip6_frags_ctl
.high_thresh
)
609 ip6_evictor(ip6_dst_idev(skb
->dst
));
611 if ((fq
= fq_find(fhdr
->identification
, &hdr
->saddr
, &hdr
->daddr
,
612 ip6_dst_idev(skb
->dst
))) != NULL
) {
615 spin_lock(&fq
->q
.lock
);
617 ret
= ip6_frag_queue(fq
, skb
, fhdr
, IP6CB(skb
)->nhoff
);
619 spin_unlock(&fq
->q
.lock
);
624 IP6_INC_STATS_BH(ip6_dst_idev(skb
->dst
), IPSTATS_MIB_REASMFAILS
);
629 static struct inet6_protocol frag_protocol
=
631 .handler
= ipv6_frag_rcv
,
632 .flags
= INET6_PROTO_NOPOLICY
,
635 void __init
ipv6_frag_init(void)
637 if (inet6_add_protocol(&frag_protocol
, IPPROTO_FRAGMENT
) < 0)
638 printk(KERN_ERR
"ipv6_frag_init: Could not register protocol\n");
640 ip6_frags
.ctl
= &ip6_frags_ctl
;
641 ip6_frags
.hashfn
= ip6_hashfn
;
642 ip6_frags
.constructor
= ip6_frag_init
;
643 ip6_frags
.destructor
= NULL
;
644 ip6_frags
.skb_free
= NULL
;
645 ip6_frags
.qsize
= sizeof(struct frag_queue
);
646 ip6_frags
.match
= ip6_frag_match
;
647 ip6_frags
.frag_expire
= ip6_frag_expire
;
648 inet_frags_init(&ip6_frags
);