Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[pandora-kernel.git] / net / ipv6 / reassembly.c
1 /*
2  *      IPv6 fragment reassembly
3  *      Linux INET6 implementation
4  *
5  *      Authors:
6  *      Pedro Roque             <roque@di.fc.ul.pt>
7  *
8  *      Based on: net/ipv4/ip_fragment.c
9  *
10  *      This program is free software; you can redistribute it and/or
11  *      modify it under the terms of the GNU General Public License
12  *      as published by the Free Software Foundation; either version
13  *      2 of the License, or (at your option) any later version.
14  */
15
16 /*
17  *      Fixes:
18  *      Andi Kleen      Make it work with multiple hosts.
19  *                      More RFC compliance.
20  *
21  *      Horst von Brand Add missing #include <linux/string.h>
22  *      Alexey Kuznetsov        SMP races, threading, cleanup.
23  *      Patrick McHardy         LRU queue of frag heads for evictor.
24  *      Mitsuru KANDA @USAGI    Register inet6_protocol{}.
25  *      David Stevens and
26  *      YOSHIFUJI,H. @USAGI     Always remove fragment header to
27  *                              calculate ICV correctly.
28  */
29 #include <linux/errno.h>
30 #include <linux/types.h>
31 #include <linux/string.h>
32 #include <linux/socket.h>
33 #include <linux/sockios.h>
34 #include <linux/jiffies.h>
35 #include <linux/net.h>
36 #include <linux/list.h>
37 #include <linux/netdevice.h>
38 #include <linux/in6.h>
39 #include <linux/ipv6.h>
40 #include <linux/icmpv6.h>
41 #include <linux/random.h>
42 #include <linux/jhash.h>
43 #include <linux/skbuff.h>
44 #include <linux/slab.h>
45 #include <linux/export.h>
46
47 #include <net/sock.h>
48 #include <net/snmp.h>
49
50 #include <net/ipv6.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>
58
59 struct 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 static struct inet_frags ip6_frags;
69
70 static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev,
71                           struct net_device *dev);
72
73 /*
74  * callers should be careful not to use the hash value outside the ipfrag_lock
75  * as doing so could race with ipfrag_hash_rnd being recalculated.
76  */
77 unsigned int inet6_hash_frag(__be32 id, const struct in6_addr *saddr,
78                              const struct in6_addr *daddr, u32 rnd)
79 {
80         u32 c;
81
82         c = jhash_3words(ipv6_addr_hash(saddr), ipv6_addr_hash(daddr), id, rnd);
83
84         return c & (INETFRAGS_HASHSZ - 1);
85 }
86 EXPORT_SYMBOL_GPL(inet6_hash_frag);
87
88 static unsigned int ip6_hashfn(struct inet_frag_queue *q)
89 {
90         struct frag_queue *fq;
91
92         fq = container_of(q, struct frag_queue, q);
93         return inet6_hash_frag(fq->id, &fq->saddr, &fq->daddr, ip6_frags.rnd);
94 }
95
96 bool ip6_frag_match(struct inet_frag_queue *q, void *a)
97 {
98         struct frag_queue *fq;
99         struct ip6_create_arg *arg = a;
100
101         fq = container_of(q, struct frag_queue, q);
102         return  fq->id == arg->id &&
103                 fq->user == arg->user &&
104                 ipv6_addr_equal(&fq->saddr, arg->src) &&
105                 ipv6_addr_equal(&fq->daddr, arg->dst);
106 }
107 EXPORT_SYMBOL(ip6_frag_match);
108
109 void ip6_frag_init(struct inet_frag_queue *q, void *a)
110 {
111         struct frag_queue *fq = container_of(q, struct frag_queue, q);
112         struct ip6_create_arg *arg = a;
113
114         fq->id = arg->id;
115         fq->user = arg->user;
116         fq->saddr = *arg->src;
117         fq->daddr = *arg->dst;
118 }
119 EXPORT_SYMBOL(ip6_frag_init);
120
121 void ip6_expire_frag_queue(struct net *net, struct frag_queue *fq,
122                            struct inet_frags *frags)
123 {
124         struct net_device *dev = NULL;
125
126         spin_lock(&fq->q.lock);
127
128         if (fq->q.last_in & INET_FRAG_COMPLETE)
129                 goto out;
130
131         inet_frag_kill(&fq->q, frags);
132
133         rcu_read_lock();
134         dev = dev_get_by_index_rcu(net, fq->iif);
135         if (!dev)
136                 goto out_rcu_unlock;
137
138         IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMTIMEOUT);
139         IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
140
141         /* Don't send error if the first segment did not arrive. */
142         if (!(fq->q.last_in & INET_FRAG_FIRST_IN) || !fq->q.fragments)
143                 goto out_rcu_unlock;
144
145         /*
146            But use as source device on which LAST ARRIVED
147            segment was received. And do not use fq->dev
148            pointer directly, device might already disappeared.
149          */
150         fq->q.fragments->dev = dev;
151         icmpv6_send(fq->q.fragments, ICMPV6_TIME_EXCEED, ICMPV6_EXC_FRAGTIME, 0);
152 out_rcu_unlock:
153         rcu_read_unlock();
154 out:
155         spin_unlock(&fq->q.lock);
156         inet_frag_put(&fq->q, frags);
157 }
158 EXPORT_SYMBOL(ip6_expire_frag_queue);
159
160 static void ip6_frag_expire(unsigned long data)
161 {
162         struct frag_queue *fq;
163         struct net *net;
164
165         fq = container_of((struct inet_frag_queue *)data, struct frag_queue, q);
166         net = container_of(fq->q.net, struct net, ipv6.frags);
167
168         ip6_expire_frag_queue(net, fq, &ip6_frags);
169 }
170
171 static __inline__ struct frag_queue *
172 fq_find(struct net *net, __be32 id, const struct in6_addr *src, const struct in6_addr *dst)
173 {
174         struct inet_frag_queue *q;
175         struct ip6_create_arg arg;
176         unsigned int hash;
177
178         arg.id = id;
179         arg.user = IP6_DEFRAG_LOCAL_DELIVER;
180         arg.src = src;
181         arg.dst = dst;
182
183         read_lock(&ip6_frags.lock);
184         hash = inet6_hash_frag(id, src, dst, ip6_frags.rnd);
185
186         q = inet_frag_find(&net->ipv6.frags, &ip6_frags, &arg, hash);
187         if (q == NULL)
188                 return NULL;
189
190         return container_of(q, struct frag_queue, q);
191 }
192
193 static int ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb,
194                            struct frag_hdr *fhdr, int nhoff)
195 {
196         struct sk_buff *prev, *next;
197         struct net_device *dev;
198         int offset, end;
199         struct net *net = dev_net(skb_dst(skb)->dev);
200
201         if (fq->q.last_in & INET_FRAG_COMPLETE)
202                 goto err;
203
204         offset = ntohs(fhdr->frag_off) & ~0x7;
205         end = offset + (ntohs(ipv6_hdr(skb)->payload_len) -
206                         ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
207
208         if ((unsigned int)end > IPV6_MAXPLEN) {
209                 IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)),
210                                  IPSTATS_MIB_INHDRERRORS);
211                 icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
212                                   ((u8 *)&fhdr->frag_off -
213                                    skb_network_header(skb)));
214                 return -1;
215         }
216
217         if (skb->ip_summed == CHECKSUM_COMPLETE) {
218                 const unsigned char *nh = skb_network_header(skb);
219                 skb->csum = csum_sub(skb->csum,
220                                      csum_partial(nh, (u8 *)(fhdr + 1) - nh,
221                                                   0));
222         }
223
224         /* Is this the final fragment? */
225         if (!(fhdr->frag_off & htons(IP6_MF))) {
226                 /* If we already have some bits beyond end
227                  * or have different end, the segment is corrupted.
228                  */
229                 if (end < fq->q.len ||
230                     ((fq->q.last_in & INET_FRAG_LAST_IN) && end != fq->q.len))
231                         goto err;
232                 fq->q.last_in |= INET_FRAG_LAST_IN;
233                 fq->q.len = end;
234         } else {
235                 /* Check if the fragment is rounded to 8 bytes.
236                  * Required by the RFC.
237                  */
238                 if (end & 0x7) {
239                         /* RFC2460 says always send parameter problem in
240                          * this case. -DaveM
241                          */
242                         IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)),
243                                          IPSTATS_MIB_INHDRERRORS);
244                         icmpv6_param_prob(skb, ICMPV6_HDR_FIELD,
245                                           offsetof(struct ipv6hdr, payload_len));
246                         return -1;
247                 }
248                 if (end > fq->q.len) {
249                         /* Some bits beyond end -> corruption. */
250                         if (fq->q.last_in & INET_FRAG_LAST_IN)
251                                 goto err;
252                         fq->q.len = end;
253                 }
254         }
255
256         if (end == offset)
257                 goto err;
258
259         /* Point into the IP datagram 'data' part. */
260         if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data))
261                 goto err;
262
263         if (pskb_trim_rcsum(skb, end - offset))
264                 goto err;
265
266         /* Find out which fragments are in front and at the back of us
267          * in the chain of fragments so far.  We must know where to put
268          * this fragment, right?
269          */
270         prev = fq->q.fragments_tail;
271         if (!prev || FRAG6_CB(prev)->offset < offset) {
272                 next = NULL;
273                 goto found;
274         }
275         prev = NULL;
276         for(next = fq->q.fragments; next != NULL; next = next->next) {
277                 if (FRAG6_CB(next)->offset >= offset)
278                         break;  /* bingo! */
279                 prev = next;
280         }
281
282 found:
283         /* RFC5722, Section 4, amended by Errata ID : 3089
284          *                          When reassembling an IPv6 datagram, if
285          *   one or more its constituent fragments is determined to be an
286          *   overlapping fragment, the entire datagram (and any constituent
287          *   fragments) MUST be silently discarded.
288          */
289
290         /* Check for overlap with preceding fragment. */
291         if (prev &&
292             (FRAG6_CB(prev)->offset + prev->len) > offset)
293                 goto discard_fq;
294
295         /* Look for overlap with succeeding segment. */
296         if (next && FRAG6_CB(next)->offset < end)
297                 goto discard_fq;
298
299         FRAG6_CB(skb)->offset = offset;
300
301         /* Insert this fragment in the chain of fragments. */
302         skb->next = next;
303         if (!next)
304                 fq->q.fragments_tail = skb;
305         if (prev)
306                 prev->next = skb;
307         else
308                 fq->q.fragments = skb;
309
310         dev = skb->dev;
311         if (dev) {
312                 fq->iif = dev->ifindex;
313                 skb->dev = NULL;
314         }
315         fq->q.stamp = skb->tstamp;
316         fq->q.meat += skb->len;
317         add_frag_mem_limit(&fq->q, skb->truesize);
318
319         /* The first fragment.
320          * nhoffset is obtained from the first fragment, of course.
321          */
322         if (offset == 0) {
323                 fq->nhoffset = nhoff;
324                 fq->q.last_in |= INET_FRAG_FIRST_IN;
325         }
326
327         if (fq->q.last_in == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
328             fq->q.meat == fq->q.len)
329                 return ip6_frag_reasm(fq, prev, dev);
330
331         inet_frag_lru_move(&fq->q);
332         return -1;
333
334 discard_fq:
335         inet_frag_kill(&fq->q, &ip6_frags);
336 err:
337         IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
338                       IPSTATS_MIB_REASMFAILS);
339         kfree_skb(skb);
340         return -1;
341 }
342
343 /*
344  *      Check if this packet is complete.
345  *      Returns NULL on failure by any reason, and pointer
346  *      to current nexthdr field in reassembled frame.
347  *
348  *      It is called with locked fq, and caller must check that
349  *      queue is eligible for reassembly i.e. it is not COMPLETE,
350  *      the last and the first frames arrived and all the bits are here.
351  */
352 static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev,
353                           struct net_device *dev)
354 {
355         struct net *net = container_of(fq->q.net, struct net, ipv6.frags);
356         struct sk_buff *fp, *head = fq->q.fragments;
357         int    payload_len;
358         unsigned int nhoff;
359         int sum_truesize;
360
361         inet_frag_kill(&fq->q, &ip6_frags);
362
363         /* Make the one we just received the head. */
364         if (prev) {
365                 head = prev->next;
366                 fp = skb_clone(head, GFP_ATOMIC);
367
368                 if (!fp)
369                         goto out_oom;
370
371                 fp->next = head->next;
372                 if (!fp->next)
373                         fq->q.fragments_tail = fp;
374                 prev->next = fp;
375
376                 skb_morph(head, fq->q.fragments);
377                 head->next = fq->q.fragments->next;
378
379                 consume_skb(fq->q.fragments);
380                 fq->q.fragments = head;
381         }
382
383         WARN_ON(head == NULL);
384         WARN_ON(FRAG6_CB(head)->offset != 0);
385
386         /* Unfragmented part is taken from the first segment. */
387         payload_len = ((head->data - skb_network_header(head)) -
388                        sizeof(struct ipv6hdr) + fq->q.len -
389                        sizeof(struct frag_hdr));
390         if (payload_len > IPV6_MAXPLEN)
391                 goto out_oversize;
392
393         /* Head of list must not be cloned. */
394         if (skb_unclone(head, GFP_ATOMIC))
395                 goto out_oom;
396
397         /* If the first fragment is fragmented itself, we split
398          * it to two chunks: the first with data and paged part
399          * and the second, holding only fragments. */
400         if (skb_has_frag_list(head)) {
401                 struct sk_buff *clone;
402                 int i, plen = 0;
403
404                 if ((clone = alloc_skb(0, GFP_ATOMIC)) == NULL)
405                         goto out_oom;
406                 clone->next = head->next;
407                 head->next = clone;
408                 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
409                 skb_frag_list_init(head);
410                 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
411                         plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
412                 clone->len = clone->data_len = head->data_len - plen;
413                 head->data_len -= clone->len;
414                 head->len -= clone->len;
415                 clone->csum = 0;
416                 clone->ip_summed = head->ip_summed;
417                 add_frag_mem_limit(&fq->q, clone->truesize);
418         }
419
420         /* We have to remove fragment header from datagram and to relocate
421          * header in order to calculate ICV correctly. */
422         nhoff = fq->nhoffset;
423         skb_network_header(head)[nhoff] = skb_transport_header(head)[0];
424         memmove(head->head + sizeof(struct frag_hdr), head->head,
425                 (head->data - head->head) - sizeof(struct frag_hdr));
426         head->mac_header += sizeof(struct frag_hdr);
427         head->network_header += sizeof(struct frag_hdr);
428
429         skb_reset_transport_header(head);
430         skb_push(head, head->data - skb_network_header(head));
431
432         sum_truesize = head->truesize;
433         for (fp = head->next; fp;) {
434                 bool headstolen;
435                 int delta;
436                 struct sk_buff *next = fp->next;
437
438                 sum_truesize += fp->truesize;
439                 if (head->ip_summed != fp->ip_summed)
440                         head->ip_summed = CHECKSUM_NONE;
441                 else if (head->ip_summed == CHECKSUM_COMPLETE)
442                         head->csum = csum_add(head->csum, fp->csum);
443
444                 if (skb_try_coalesce(head, fp, &headstolen, &delta)) {
445                         kfree_skb_partial(fp, headstolen);
446                 } else {
447                         if (!skb_shinfo(head)->frag_list)
448                                 skb_shinfo(head)->frag_list = fp;
449                         head->data_len += fp->len;
450                         head->len += fp->len;
451                         head->truesize += fp->truesize;
452                 }
453                 fp = next;
454         }
455         sub_frag_mem_limit(&fq->q, sum_truesize);
456
457         head->next = NULL;
458         head->dev = dev;
459         head->tstamp = fq->q.stamp;
460         ipv6_hdr(head)->payload_len = htons(payload_len);
461         IP6CB(head)->nhoff = nhoff;
462
463         /* Yes, and fold redundant checksum back. 8) */
464         if (head->ip_summed == CHECKSUM_COMPLETE)
465                 head->csum = csum_partial(skb_network_header(head),
466                                           skb_network_header_len(head),
467                                           head->csum);
468
469         rcu_read_lock();
470         IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMOKS);
471         rcu_read_unlock();
472         fq->q.fragments = NULL;
473         fq->q.fragments_tail = NULL;
474         return 1;
475
476 out_oversize:
477         net_dbg_ratelimited("ip6_frag_reasm: payload len = %d\n", payload_len);
478         goto out_fail;
479 out_oom:
480         net_dbg_ratelimited("ip6_frag_reasm: no memory for reassembly\n");
481 out_fail:
482         rcu_read_lock();
483         IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMFAILS);
484         rcu_read_unlock();
485         return -1;
486 }
487
488 static int ipv6_frag_rcv(struct sk_buff *skb)
489 {
490         struct frag_hdr *fhdr;
491         struct frag_queue *fq;
492         const struct ipv6hdr *hdr = ipv6_hdr(skb);
493         struct net *net = dev_net(skb_dst(skb)->dev);
494         int evicted;
495
496         IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMREQDS);
497
498         /* Jumbo payload inhibits frag. header */
499         if (hdr->payload_len==0)
500                 goto fail_hdr;
501
502         if (!pskb_may_pull(skb, (skb_transport_offset(skb) +
503                                  sizeof(struct frag_hdr))))
504                 goto fail_hdr;
505
506         hdr = ipv6_hdr(skb);
507         fhdr = (struct frag_hdr *)skb_transport_header(skb);
508
509         if (!(fhdr->frag_off & htons(0xFFF9))) {
510                 /* It is not a fragmented frame */
511                 skb->transport_header += sizeof(struct frag_hdr);
512                 IP6_INC_STATS_BH(net,
513                                  ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMOKS);
514
515                 IP6CB(skb)->nhoff = (u8 *)fhdr - skb_network_header(skb);
516                 return 1;
517         }
518
519         evicted = inet_frag_evictor(&net->ipv6.frags, &ip6_frags, false);
520         if (evicted)
521                 IP6_ADD_STATS_BH(net, ip6_dst_idev(skb_dst(skb)),
522                                  IPSTATS_MIB_REASMFAILS, evicted);
523
524         fq = fq_find(net, fhdr->identification, &hdr->saddr, &hdr->daddr);
525         if (fq != NULL) {
526                 int ret;
527
528                 spin_lock(&fq->q.lock);
529
530                 ret = ip6_frag_queue(fq, skb, fhdr, IP6CB(skb)->nhoff);
531
532                 spin_unlock(&fq->q.lock);
533                 inet_frag_put(&fq->q, &ip6_frags);
534                 return ret;
535         }
536
537         IP6_INC_STATS_BH(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_REASMFAILS);
538         kfree_skb(skb);
539         return -1;
540
541 fail_hdr:
542         IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), IPSTATS_MIB_INHDRERRORS);
543         icmpv6_param_prob(skb, ICMPV6_HDR_FIELD, skb_network_header_len(skb));
544         return -1;
545 }
546
547 static const struct inet6_protocol frag_protocol =
548 {
549         .handler        =       ipv6_frag_rcv,
550         .flags          =       INET6_PROTO_NOPOLICY,
551 };
552
553 #ifdef CONFIG_SYSCTL
554 static struct ctl_table ip6_frags_ns_ctl_table[] = {
555         {
556                 .procname       = "ip6frag_high_thresh",
557                 .data           = &init_net.ipv6.frags.high_thresh,
558                 .maxlen         = sizeof(int),
559                 .mode           = 0644,
560                 .proc_handler   = proc_dointvec
561         },
562         {
563                 .procname       = "ip6frag_low_thresh",
564                 .data           = &init_net.ipv6.frags.low_thresh,
565                 .maxlen         = sizeof(int),
566                 .mode           = 0644,
567                 .proc_handler   = proc_dointvec
568         },
569         {
570                 .procname       = "ip6frag_time",
571                 .data           = &init_net.ipv6.frags.timeout,
572                 .maxlen         = sizeof(int),
573                 .mode           = 0644,
574                 .proc_handler   = proc_dointvec_jiffies,
575         },
576         { }
577 };
578
579 static struct ctl_table ip6_frags_ctl_table[] = {
580         {
581                 .procname       = "ip6frag_secret_interval",
582                 .data           = &ip6_frags.secret_interval,
583                 .maxlen         = sizeof(int),
584                 .mode           = 0644,
585                 .proc_handler   = proc_dointvec_jiffies,
586         },
587         { }
588 };
589
590 static int __net_init ip6_frags_ns_sysctl_register(struct net *net)
591 {
592         struct ctl_table *table;
593         struct ctl_table_header *hdr;
594
595         table = ip6_frags_ns_ctl_table;
596         if (!net_eq(net, &init_net)) {
597                 table = kmemdup(table, sizeof(ip6_frags_ns_ctl_table), GFP_KERNEL);
598                 if (table == NULL)
599                         goto err_alloc;
600
601                 table[0].data = &net->ipv6.frags.high_thresh;
602                 table[1].data = &net->ipv6.frags.low_thresh;
603                 table[2].data = &net->ipv6.frags.timeout;
604
605                 /* Don't export sysctls to unprivileged users */
606                 if (net->user_ns != &init_user_ns)
607                         table[0].procname = NULL;
608         }
609
610         hdr = register_net_sysctl(net, "net/ipv6", table);
611         if (hdr == NULL)
612                 goto err_reg;
613
614         net->ipv6.sysctl.frags_hdr = hdr;
615         return 0;
616
617 err_reg:
618         if (!net_eq(net, &init_net))
619                 kfree(table);
620 err_alloc:
621         return -ENOMEM;
622 }
623
624 static void __net_exit ip6_frags_ns_sysctl_unregister(struct net *net)
625 {
626         struct ctl_table *table;
627
628         table = net->ipv6.sysctl.frags_hdr->ctl_table_arg;
629         unregister_net_sysctl_table(net->ipv6.sysctl.frags_hdr);
630         if (!net_eq(net, &init_net))
631                 kfree(table);
632 }
633
634 static struct ctl_table_header *ip6_ctl_header;
635
636 static int ip6_frags_sysctl_register(void)
637 {
638         ip6_ctl_header = register_net_sysctl(&init_net, "net/ipv6",
639                         ip6_frags_ctl_table);
640         return ip6_ctl_header == NULL ? -ENOMEM : 0;
641 }
642
643 static void ip6_frags_sysctl_unregister(void)
644 {
645         unregister_net_sysctl_table(ip6_ctl_header);
646 }
647 #else
648 static inline int ip6_frags_ns_sysctl_register(struct net *net)
649 {
650         return 0;
651 }
652
653 static inline void ip6_frags_ns_sysctl_unregister(struct net *net)
654 {
655 }
656
657 static inline int ip6_frags_sysctl_register(void)
658 {
659         return 0;
660 }
661
662 static inline void ip6_frags_sysctl_unregister(void)
663 {
664 }
665 #endif
666
667 static int __net_init ipv6_frags_init_net(struct net *net)
668 {
669         net->ipv6.frags.high_thresh = IPV6_FRAG_HIGH_THRESH;
670         net->ipv6.frags.low_thresh = IPV6_FRAG_LOW_THRESH;
671         net->ipv6.frags.timeout = IPV6_FRAG_TIMEOUT;
672
673         inet_frags_init_net(&net->ipv6.frags);
674
675         return ip6_frags_ns_sysctl_register(net);
676 }
677
678 static void __net_exit ipv6_frags_exit_net(struct net *net)
679 {
680         ip6_frags_ns_sysctl_unregister(net);
681         inet_frags_exit_net(&net->ipv6.frags, &ip6_frags);
682 }
683
684 static struct pernet_operations ip6_frags_ops = {
685         .init = ipv6_frags_init_net,
686         .exit = ipv6_frags_exit_net,
687 };
688
689 int __init ipv6_frag_init(void)
690 {
691         int ret;
692
693         ret = inet6_add_protocol(&frag_protocol, IPPROTO_FRAGMENT);
694         if (ret)
695                 goto out;
696
697         ret = ip6_frags_sysctl_register();
698         if (ret)
699                 goto err_sysctl;
700
701         ret = register_pernet_subsys(&ip6_frags_ops);
702         if (ret)
703                 goto err_pernet;
704
705         ip6_frags.hashfn = ip6_hashfn;
706         ip6_frags.constructor = ip6_frag_init;
707         ip6_frags.destructor = NULL;
708         ip6_frags.skb_free = NULL;
709         ip6_frags.qsize = sizeof(struct frag_queue);
710         ip6_frags.match = ip6_frag_match;
711         ip6_frags.frag_expire = ip6_frag_expire;
712         ip6_frags.secret_interval = 10 * 60 * HZ;
713         inet_frags_init(&ip6_frags);
714 out:
715         return ret;
716
717 err_pernet:
718         ip6_frags_sysctl_unregister();
719 err_sysctl:
720         inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
721         goto out;
722 }
723
724 void ipv6_frag_exit(void)
725 {
726         inet_frags_fini(&ip6_frags);
727         ip6_frags_sysctl_unregister();
728         unregister_pernet_subsys(&ip6_frags_ops);
729         inet6_del_protocol(&frag_protocol, IPPROTO_FRAGMENT);
730 }