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