blob: 7e008de87117dafa8fdb4188b7db5a569c3d30b1 [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 Emelyanov7eb95152007-10-15 02:31:52 -070085static struct inet_frags ip6_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -080087int ip6_frag_nqueues(struct net *net)
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070088{
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -080089 return net->ipv6.frags.nqueues;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070090}
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -080092int ip6_frag_mem(struct net *net)
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070093{
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -080094 return atomic_read(&net->ipv6.frags.mem);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070095}
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Herbert Xuf61944e2007-10-15 01:28:47 -070097static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev,
98 struct net_device *dev);
99
Zach Brownf6596f92006-04-10 16:05:34 -0700100/*
101 * callers should be careful not to use the hash value outside the ipfrag_lock
102 * as doing so could race with ipfrag_hash_rnd being recalculated.
103 */
Al Viroe69a4adc2006-11-14 20:56:00 -0800104static unsigned int ip6qhashfn(__be32 id, struct in6_addr *saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct in6_addr *daddr)
106{
107 u32 a, b, c;
108
Al Viroe69a4adc2006-11-14 20:56:00 -0800109 a = (__force u32)saddr->s6_addr32[0];
110 b = (__force u32)saddr->s6_addr32[1];
111 c = (__force u32)saddr->s6_addr32[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 a += JHASH_GOLDEN_RATIO;
114 b += JHASH_GOLDEN_RATIO;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700115 c += ip6_frags.rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 __jhash_mix(a, b, c);
117
Al Viroe69a4adc2006-11-14 20:56:00 -0800118 a += (__force u32)saddr->s6_addr32[3];
119 b += (__force u32)daddr->s6_addr32[0];
120 c += (__force u32)daddr->s6_addr32[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 __jhash_mix(a, b, c);
122
Al Viroe69a4adc2006-11-14 20:56:00 -0800123 a += (__force u32)daddr->s6_addr32[2];
124 b += (__force u32)daddr->s6_addr32[3];
125 c += (__force u32)id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 __jhash_mix(a, b, c);
127
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700128 return c & (INETFRAGS_HASHSZ - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700131static unsigned int ip6_hashfn(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700133 struct frag_queue *fq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700135 fq = container_of(q, struct frag_queue, q);
136 return ip6qhashfn(fq->id, &fq->saddr, &fq->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700139int ip6_frag_match(struct inet_frag_queue *q, void *a)
140{
141 struct frag_queue *fq;
142 struct ip6_create_arg *arg = a;
143
144 fq = container_of(q, struct frag_queue, q);
145 return (fq->id == arg->id &&
146 ipv6_addr_equal(&fq->saddr, arg->src) &&
147 ipv6_addr_equal(&fq->daddr, arg->dst));
148}
149EXPORT_SYMBOL(ip6_frag_match);
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* Memory Tracking Functions. */
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800152static inline void frag_kfree_skb(struct netns_frags *nf,
153 struct sk_buff *skb, int *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 if (work)
156 *work -= skb->truesize;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800157 atomic_sub(skb->truesize, &nf->mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 kfree_skb(skb);
159}
160
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700161void ip6_frag_init(struct inet_frag_queue *q, void *a)
162{
163 struct frag_queue *fq = container_of(q, struct frag_queue, q);
164 struct ip6_create_arg *arg = a;
165
166 fq->id = arg->id;
167 ipv6_addr_copy(&fq->saddr, arg->src);
168 ipv6_addr_copy(&fq->daddr, arg->dst);
169}
170EXPORT_SYMBOL(ip6_frag_init);
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* Destruction primitives. */
173
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700174static __inline__ void fq_put(struct frag_queue *fq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Pavel Emelyanov762cc402007-10-15 02:41:56 -0700176 inet_frag_put(&fq->q, &ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/* Kill fq entry. It is not destroyed immediately,
180 * because caller (and someone more) holds reference count.
181 */
182static __inline__ void fq_kill(struct frag_queue *fq)
183{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700184 inet_frag_kill(&fq->q, &ip6_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800187static void ip6_evictor(struct net *net, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700189 int evicted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800191 evicted = inet_frag_evictor(&net->ipv6.frags, &ip6_frags);
Pavel Emelyanov8e7999c2007-10-15 02:40:06 -0700192 if (evicted)
193 IP6_ADD_STATS_BH(idev, IPSTATS_MIB_REASMFAILS, evicted);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196static void ip6_frag_expire(unsigned long data)
197{
Pavel Emelyanove521db92007-10-17 19:45:23 -0700198 struct frag_queue *fq;
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900199 struct net_device *dev = NULL;
Daniel Lezcano4ac2ccd2008-05-02 17:02:03 -0700200 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Pavel Emelyanove521db92007-10-17 19:45:23 -0700202 fq = container_of((struct inet_frag_queue *)data, struct frag_queue, q);
203
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700204 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Joe Perchesbc578a52008-03-28 16:35:27 -0700206 if (fq->q.last_in & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 goto out;
208
209 fq_kill(fq);
210
Daniel Lezcano4ac2ccd2008-05-02 17:02:03 -0700211 net = container_of(fq->q.net, struct net, ipv6.frags);
212 dev = dev_get_by_index(net, fq->iif);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900213 if (!dev)
214 goto out;
215
216 rcu_read_lock();
217 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMTIMEOUT);
218 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
219 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Ingo Oeser78c784c2006-03-20 23:01:17 -0800221 /* Don't send error if the first segment did not arrive. */
Joe Perchesbc578a52008-03-28 16:35:27 -0700222 if (!(fq->q.last_in & INET_FRAG_FIRST_IN) || !fq->q.fragments)
Ingo Oeser78c784c2006-03-20 23:01:17 -0800223 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Ingo Oeser78c784c2006-03-20 23:01:17 -0800225 /*
226 But use as source device on which LAST ARRIVED
227 segment was received. And do not use fq->dev
228 pointer directly, device might already disappeared.
229 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700230 fq->q.fragments->dev = dev;
231 icmpv6_send(fq->q.fragments, ICMPV6_TIME_EXCEED, ICMPV6_EXC_FRAGTIME, 0, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232out:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900233 if (dev)
234 dev_put(dev);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700235 spin_unlock(&fq->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700236 fq_put(fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700239static __inline__ struct frag_queue *
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800240fq_find(struct net *net, __be32 id, struct in6_addr *src, struct in6_addr *dst,
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700241 struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700243 struct inet_frag_queue *q;
244 struct ip6_create_arg arg;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700245 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700247 arg.id = id;
248 arg.src = src;
249 arg.dst = dst;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700250 hash = ip6qhashfn(id, src, dst);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700251
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800252 q = inet_frag_find(&net->ipv6.frags, &ip6_frags, &arg, hash);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700253 if (q == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 goto oom;
255
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700256 return container_of(q, struct frag_queue, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258oom:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900259 IP6_INC_STATS_BH(idev, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return NULL;
261}
262
Herbert Xuf61944e2007-10-15 01:28:47 -0700263static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct frag_hdr *fhdr, int nhoff)
265{
266 struct sk_buff *prev, *next;
Herbert Xuf61944e2007-10-15 01:28:47 -0700267 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 int offset, end;
269
Joe Perchesbc578a52008-03-28 16:35:27 -0700270 if (fq->q.last_in & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 goto err;
272
273 offset = ntohs(fhdr->frag_off) & ~0x7;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700274 end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
275 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if ((unsigned int)end > IPV6_MAXPLEN) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900278 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
279 IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700280 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
281 ((u8 *)&fhdr->frag_off -
282 skb_network_header(skb)));
Herbert Xuf61944e2007-10-15 01:28:47 -0700283 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700286 if (skb->ip_summed == CHECKSUM_COMPLETE) {
287 const unsigned char *nh = skb_network_header(skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900288 skb->csum = csum_sub(skb->csum,
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700289 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
290 0));
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 /* Is this the final fragment? */
294 if (!(fhdr->frag_off & htons(IP6_MF))) {
295 /* If we already have some bits beyond end
296 * or have different end, the segment is corrupted.
297 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700298 if (end < fq->q.len ||
Joe Perchesbc578a52008-03-28 16:35:27 -0700299 ((fq->q.last_in & INET_FRAG_LAST_IN) && end != fq->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 goto err;
Joe Perchesbc578a52008-03-28 16:35:27 -0700301 fq->q.last_in |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700302 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 } else {
304 /* Check if the fragment is rounded to 8 bytes.
305 * Required by the RFC.
306 */
307 if (end & 0x7) {
308 /* RFC2460 says always send parameter problem in
309 * this case. -DaveM
310 */
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900311 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst),
312 IPSTATS_MIB_INHDRERRORS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900313 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 offsetof(struct ipv6hdr, payload_len));
Herbert Xuf61944e2007-10-15 01:28:47 -0700315 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700317 if (end > fq->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 /* Some bits beyond end -> corruption. */
Joe Perchesbc578a52008-03-28 16:35:27 -0700319 if (fq->q.last_in & INET_FRAG_LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700321 fq->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 }
324
325 if (end == offset)
326 goto err;
327
328 /* Point into the IP datagram 'data' part. */
329 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data))
330 goto err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900331
Stephen Hemminger42ca89c2005-09-08 12:57:43 -0700332 if (pskb_trim_rcsum(skb, end - offset))
333 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /* Find out which fragments are in front and at the back of us
336 * in the chain of fragments so far. We must know where to put
337 * this fragment, right?
338 */
339 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700340 for(next = fq->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (FRAG6_CB(next)->offset >= offset)
342 break; /* bingo! */
343 prev = next;
344 }
345
346 /* We found where to put this one. Check for overlap with
347 * preceding fragment, and, if needed, align things so that
348 * any overlaps are eliminated.
349 */
350 if (prev) {
351 int i = (FRAG6_CB(prev)->offset + prev->len) - offset;
352
353 if (i > 0) {
354 offset += i;
355 if (end <= offset)
356 goto err;
357 if (!pskb_pull(skb, i))
358 goto err;
359 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
360 skb->ip_summed = CHECKSUM_NONE;
361 }
362 }
363
364 /* Look for overlap with succeeding segments.
365 * If we can merge fragments, do it.
366 */
367 while (next && FRAG6_CB(next)->offset < end) {
368 int i = end - FRAG6_CB(next)->offset; /* overlap is 'i' bytes */
369
370 if (i < next->len) {
371 /* Eat head of the next overlapped fragment
372 * and leave the loop. The next ones cannot overlap.
373 */
374 if (!pskb_pull(next, i))
375 goto err;
376 FRAG6_CB(next)->offset += i; /* next fragment */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700377 fq->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (next->ip_summed != CHECKSUM_UNNECESSARY)
379 next->ip_summed = CHECKSUM_NONE;
380 break;
381 } else {
382 struct sk_buff *free_it = next;
383
384 /* Old fragment is completely overridden with
385 * new one drop it.
386 */
387 next = next->next;
388
389 if (prev)
390 prev->next = next;
391 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700392 fq->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700394 fq->q.meat -= free_it->len;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800395 frag_kfree_skb(fq->q.net, free_it, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 }
398
399 FRAG6_CB(skb)->offset = offset;
400
401 /* Insert this fragment in the chain of fragments. */
402 skb->next = next;
403 if (prev)
404 prev->next = skb;
405 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700406 fq->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Herbert Xuf61944e2007-10-15 01:28:47 -0700408 dev = skb->dev;
409 if (dev) {
410 fq->iif = dev->ifindex;
411 skb->dev = NULL;
412 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700413 fq->q.stamp = skb->tstamp;
414 fq->q.meat += skb->len;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800415 atomic_add(skb->truesize, &fq->q.net->mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /* The first fragment.
418 * nhoffset is obtained from the first fragment, of course.
419 */
420 if (offset == 0) {
421 fq->nhoffset = nhoff;
Joe Perchesbc578a52008-03-28 16:35:27 -0700422 fq->q.last_in |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Herbert Xuf61944e2007-10-15 01:28:47 -0700424
Joe Perchesbc578a52008-03-28 16:35:27 -0700425 if (fq->q.last_in == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
426 fq->q.meat == fq->q.len)
Herbert Xuf61944e2007-10-15 01:28:47 -0700427 return ip6_frag_reasm(fq, prev, dev);
428
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700429 write_lock(&ip6_frags.lock);
Pavel Emelyanov3140c252008-01-22 06:11:48 -0800430 list_move_tail(&fq->q.lru_list, &fq->q.net->lru_list);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700431 write_unlock(&ip6_frags.lock);
Herbert Xuf61944e2007-10-15 01:28:47 -0700432 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434err:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900435 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 kfree_skb(skb);
Herbert Xuf61944e2007-10-15 01:28:47 -0700437 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
440/*
441 * Check if this packet is complete.
442 * Returns NULL on failure by any reason, and pointer
443 * to current nexthdr field in reassembled frame.
444 *
445 * It is called with locked fq, and caller must check that
446 * queue is eligible for reassembly i.e. it is not COMPLETE,
447 * the last and the first frames arrived and all the bits are here.
448 */
Herbert Xuf61944e2007-10-15 01:28:47 -0700449static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 struct net_device *dev)
451{
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700452 struct sk_buff *fp, *head = fq->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 int payload_len;
454 unsigned int nhoff;
455
456 fq_kill(fq);
457
Herbert Xuf61944e2007-10-15 01:28:47 -0700458 /* Make the one we just received the head. */
459 if (prev) {
460 head = prev->next;
461 fp = skb_clone(head, GFP_ATOMIC);
462
463 if (!fp)
464 goto out_oom;
465
466 fp->next = head->next;
467 prev->next = fp;
468
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700469 skb_morph(head, fq->q.fragments);
470 head->next = fq->q.fragments->next;
Herbert Xuf61944e2007-10-15 01:28:47 -0700471
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700472 kfree_skb(fq->q.fragments);
473 fq->q.fragments = head;
Herbert Xuf61944e2007-10-15 01:28:47 -0700474 }
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 BUG_TRAP(head != NULL);
477 BUG_TRAP(FRAG6_CB(head)->offset == 0);
478
479 /* Unfragmented part is taken from the first segment. */
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700480 payload_len = ((head->data - skb_network_header(head)) -
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700481 sizeof(struct ipv6hdr) + fq->q.len -
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700482 sizeof(struct frag_hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (payload_len > IPV6_MAXPLEN)
484 goto out_oversize;
485
486 /* Head of list must not be cloned. */
487 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC))
488 goto out_oom;
489
490 /* If the first fragment is fragmented itself, we split
491 * it to two chunks: the first with data and paged part
492 * and the second, holding only fragments. */
493 if (skb_shinfo(head)->frag_list) {
494 struct sk_buff *clone;
495 int i, plen = 0;
496
497 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
498 goto out_oom;
499 clone->next = head->next;
500 head->next = clone;
501 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
502 skb_shinfo(head)->frag_list = NULL;
503 for (i=0; i<skb_shinfo(head)->nr_frags; i++)
504 plen += skb_shinfo(head)->frags[i].size;
505 clone->len = clone->data_len = head->data_len - plen;
506 head->data_len -= clone->len;
507 head->len -= clone->len;
508 clone->csum = 0;
509 clone->ip_summed = head->ip_summed;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800510 atomic_add(clone->truesize, &fq->q.net->mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
513 /* We have to remove fragment header from datagram and to relocate
514 * header in order to calculate ICV correctly. */
515 nhoff = fq->nhoffset;
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700516 skb_network_header(head)[nhoff] = skb_transport_header(head)[0];
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900517 memmove(head->head + sizeof(struct frag_hdr), head->head,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 (head->data - head->head) - sizeof(struct frag_hdr));
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700519 head->mac_header += sizeof(struct frag_hdr);
520 head->network_header += sizeof(struct frag_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -0300523 skb_reset_transport_header(head);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700524 skb_push(head, head->data - skb_network_header(head));
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800525 atomic_sub(head->truesize, &fq->q.net->mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 for (fp=head->next; fp; fp = fp->next) {
528 head->data_len += fp->len;
529 head->len += fp->len;
530 if (head->ip_summed != fp->ip_summed)
531 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700532 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 head->csum = csum_add(head->csum, fp->csum);
534 head->truesize += fp->truesize;
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800535 atomic_sub(fp->truesize, &fq->q.net->mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537
538 head->next = NULL;
539 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700540 head->tstamp = fq->q.stamp;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700541 ipv6_hdr(head)->payload_len = htons(payload_len);
Patrick McHardy951dbc82006-01-06 23:02:34 -0800542 IP6CB(head)->nhoff = nhoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* Yes, and fold redundant checksum back. 8) */
Patrick McHardy84fa7932006-08-29 16:44:56 -0700545 if (head->ip_summed == CHECKSUM_COMPLETE)
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700546 head->csum = csum_partial(skb_network_header(head),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300547 skb_network_header_len(head),
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700548 head->csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900550 rcu_read_lock();
551 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMOKS);
552 rcu_read_unlock();
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700553 fq->q.fragments = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return 1;
555
556out_oversize:
557 if (net_ratelimit())
558 printk(KERN_DEBUG "ip6_frag_reasm: payload len = %d\n", payload_len);
559 goto out_fail;
560out_oom:
561 if (net_ratelimit())
562 printk(KERN_DEBUG "ip6_frag_reasm: no memory for reassembly\n");
563out_fail:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900564 rcu_read_lock();
565 IP6_INC_STATS_BH(__in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
566 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return -1;
568}
569
Herbert Xue5bbef22007-10-15 12:50:28 -0700570static int ipv6_frag_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 struct frag_hdr *fhdr;
573 struct frag_queue *fq;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700574 struct ipv6hdr *hdr = ipv6_hdr(skb);
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800575 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900577 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* Jumbo payload inhibits frag. header */
580 if (hdr->payload_len==0) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900581 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300582 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
583 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return -1;
585 }
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700586 if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
587 sizeof(struct frag_hdr)))) {
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900588 IP6_INC_STATS(ip6_dst_idev(skb->dst), IPSTATS_MIB_INHDRERRORS);
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300589 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
590 skb_network_header_len(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return -1;
592 }
593
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700594 hdr = ipv6_hdr(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700595 fhdr = (struct frag_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 if (!(fhdr->frag_off & htons(0xFFF9))) {
598 /* It is not a fragmented frame */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700599 skb->transport_header += sizeof(struct frag_hdr);
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900600 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMOKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700602 IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return 1;
604 }
605
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900606 net = dev_net(skb->dev);
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800607 if (atomic_read(&net->ipv6.frags.mem) > net->ipv6.frags.high_thresh)
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -0800608 ip6_evictor(net, ip6_dst_idev(skb->dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800610 if ((fq = fq_find(net, fhdr->identification, &hdr->saddr, &hdr->daddr,
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900611 ip6_dst_idev(skb->dst))) != NULL) {
Herbert Xuf61944e2007-10-15 01:28:47 -0700612 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700614 spin_lock(&fq->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Herbert Xuf61944e2007-10-15 01:28:47 -0700616 ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700618 spin_unlock(&fq->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700619 fq_put(fq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 return ret;
621 }
622
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900623 IP6_INC_STATS_BH(ip6_dst_idev(skb->dst), IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 kfree_skb(skb);
625 return -1;
626}
627
628static struct inet6_protocol frag_protocol =
629{
630 .handler = ipv6_frag_rcv,
631 .flags = INET6_PROTO_NOPOLICY,
632};
633
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800634#ifdef CONFIG_SYSCTL
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700635static struct ctl_table ip6_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800636 {
637 .ctl_name = NET_IPV6_IP6FRAG_HIGH_THRESH,
638 .procname = "ip6frag_high_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800639 .data = &init_net.ipv6.frags.high_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800640 .maxlen = sizeof(int),
641 .mode = 0644,
642 .proc_handler = &proc_dointvec
643 },
644 {
645 .ctl_name = NET_IPV6_IP6FRAG_LOW_THRESH,
646 .procname = "ip6frag_low_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800647 .data = &init_net.ipv6.frags.low_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800648 .maxlen = sizeof(int),
649 .mode = 0644,
650 .proc_handler = &proc_dointvec
651 },
652 {
653 .ctl_name = NET_IPV6_IP6FRAG_TIME,
654 .procname = "ip6frag_time",
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800655 .data = &init_net.ipv6.frags.timeout,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800656 .maxlen = sizeof(int),
657 .mode = 0644,
658 .proc_handler = &proc_dointvec_jiffies,
659 .strategy = &sysctl_jiffies,
660 },
661 {
662 .ctl_name = NET_IPV6_IP6FRAG_SECRET_INTERVAL,
663 .procname = "ip6frag_secret_interval",
Pavel Emelyanov3b4bc4a2008-01-22 06:11:04 -0800664 .data = &ip6_frags.secret_interval,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800665 .maxlen = sizeof(int),
666 .mode = 0644,
667 .proc_handler = &proc_dointvec_jiffies,
668 .strategy = &sysctl_jiffies
669 },
670 { }
671};
Daniel Lezcano7d460db2008-01-18 23:52:35 -0800672
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700673static int ip6_frags_ns_sysctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800674{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800675 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800676 struct ctl_table_header *hdr;
677
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700678 table = ip6_frags_ns_ctl_table;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800679 if (net != &init_net) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700680 table = kmemdup(table, sizeof(ip6_frags_ns_ctl_table), GFP_KERNEL);
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800681 if (table == NULL)
682 goto err_alloc;
683
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800684 table[0].data = &net->ipv6.frags.high_thresh;
685 table[1].data = &net->ipv6.frags.low_thresh;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800686 table[2].data = &net->ipv6.frags.timeout;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800687 table[3].mode &= ~0222;
688 }
689
690 hdr = register_net_sysctl_table(net, net_ipv6_ctl_path, table);
691 if (hdr == NULL)
692 goto err_reg;
693
694 net->ipv6.sysctl.frags_hdr = hdr;
695 return 0;
696
697err_reg:
698 if (net != &init_net)
699 kfree(table);
700err_alloc:
701 return -ENOMEM;
702}
703
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700704static void ip6_frags_ns_sysctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800705{
706 struct ctl_table *table;
707
708 table = net->ipv6.sysctl.frags_hdr->ctl_table_arg;
709 unregister_net_sysctl_table(net->ipv6.sysctl.frags_hdr);
710 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800711}
712#else
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700713static inline int ip6_frags_ns_sysctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800714{
715 return 0;
716}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800717
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700718static inline void ip6_frags_ns_sysctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800719{
720}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800721#endif
722
723static int ipv6_frags_init_net(struct net *net)
724{
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800725 net->ipv6.frags.high_thresh = 256 * 1024;
726 net->ipv6.frags.low_thresh = 192 * 1024;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800727 net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800728
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800729 inet_frags_init_net(&net->ipv6.frags);
730
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700731 return ip6_frags_ns_sysctl_register(net);
Daniel Lezcanoe71e0342008-01-10 02:56:03 -0800732}
733
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800734static void ipv6_frags_exit_net(struct net *net)
735{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700736 ip6_frags_ns_sysctl_unregister(net);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800737 inet_frags_exit_net(&net->ipv6.frags, &ip6_frags);
738}
739
740static struct pernet_operations ip6_frags_ops = {
741 .init = ipv6_frags_init_net,
742 .exit = ipv6_frags_exit_net,
743};
744
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800745int __init ipv6_frag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800747 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800749 ret = inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT);
750 if (ret)
751 goto out;
Daniel Lezcanoe71e0342008-01-10 02:56:03 -0800752
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800753 register_pernet_subsys(&ip6_frags_ops);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800754
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700755 ip6_frags.hashfn = ip6_hashfn;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700756 ip6_frags.constructor = ip6_frag_init;
Pavel Emelyanovc9547702007-10-17 19:48:26 -0700757 ip6_frags.destructor = NULL;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700758 ip6_frags.skb_free = NULL;
759 ip6_frags.qsize = sizeof(struct frag_queue);
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700760 ip6_frags.match = ip6_frag_match;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700761 ip6_frags.frag_expire = ip6_frag_expire;
Pavel Emelyanov3b4bc4a2008-01-22 06:11:04 -0800762 ip6_frags.secret_interval = 10 * 60 * HZ;
Pavel Emelyanov7eb95152007-10-15 02:31:52 -0700763 inet_frags_init(&ip6_frags);
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800764out:
765 return ret;
766}
767
768void ipv6_frag_exit(void)
769{
770 inet_frags_fini(&ip6_frags);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800771 unregister_pernet_subsys(&ip6_frags_ops);
Daniel Lezcano853cbba2007-12-11 02:24:29 -0800772 inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}