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