Merge branch 'timer/cleanup' into late/mvebu2
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / ipv6 / netfilter / nf_conntrack_reasm.c
1 /*
2 * IPv6 fragment reassembly for connection tracking
3 *
4 * Copyright (C)2004 USAGI/WIDE Project
5 *
6 * Author:
7 * Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
8 *
9 * Based on: net/ipv6/reassembly.c
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
17 #include <linux/errno.h>
18 #include <linux/types.h>
19 #include <linux/string.h>
20 #include <linux/socket.h>
21 #include <linux/sockios.h>
22 #include <linux/jiffies.h>
23 #include <linux/net.h>
24 #include <linux/list.h>
25 #include <linux/netdevice.h>
26 #include <linux/in6.h>
27 #include <linux/ipv6.h>
28 #include <linux/icmpv6.h>
29 #include <linux/random.h>
30 #include <linux/slab.h>
31
32 #include <net/sock.h>
33 #include <net/snmp.h>
34 #include <net/inet_frag.h>
35
36 #include <net/ipv6.h>
37 #include <net/protocol.h>
38 #include <net/transp_v6.h>
39 #include <net/rawv6.h>
40 #include <net/ndisc.h>
41 #include <net/addrconf.h>
42 #include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
43 #include <linux/sysctl.h>
44 #include <linux/netfilter.h>
45 #include <linux/netfilter_ipv6.h>
46 #include <linux/kernel.h>
47 #include <linux/module.h>
48 #include <net/netfilter/ipv6/nf_defrag_ipv6.h>
49
50
51 struct nf_ct_frag6_skb_cb
52 {
53 struct inet6_skb_parm h;
54 int offset;
55 struct sk_buff *orig;
56 };
57
58 #define NFCT_FRAG6_CB(skb) ((struct nf_ct_frag6_skb_cb*)((skb)->cb))
59
60 static struct inet_frags nf_frags;
61
62 #ifdef CONFIG_SYSCTL
63 static struct ctl_table nf_ct_frag6_sysctl_table[] = {
64 {
65 .procname = "nf_conntrack_frag6_timeout",
66 .data = &init_net.nf_frag.frags.timeout,
67 .maxlen = sizeof(unsigned int),
68 .mode = 0644,
69 .proc_handler = proc_dointvec_jiffies,
70 },
71 {
72 .procname = "nf_conntrack_frag6_low_thresh",
73 .data = &init_net.nf_frag.frags.low_thresh,
74 .maxlen = sizeof(unsigned int),
75 .mode = 0644,
76 .proc_handler = proc_dointvec,
77 },
78 {
79 .procname = "nf_conntrack_frag6_high_thresh",
80 .data = &init_net.nf_frag.frags.high_thresh,
81 .maxlen = sizeof(unsigned int),
82 .mode = 0644,
83 .proc_handler = proc_dointvec,
84 },
85 { }
86 };
87
88 static int nf_ct_frag6_sysctl_register(struct net *net)
89 {
90 struct ctl_table *table;
91 struct ctl_table_header *hdr;
92
93 table = nf_ct_frag6_sysctl_table;
94 if (!net_eq(net, &init_net)) {
95 table = kmemdup(table, sizeof(nf_ct_frag6_sysctl_table),
96 GFP_KERNEL);
97 if (table == NULL)
98 goto err_alloc;
99
100 table[0].data = &net->ipv6.frags.high_thresh;
101 table[1].data = &net->ipv6.frags.low_thresh;
102 table[2].data = &net->ipv6.frags.timeout;
103 }
104
105 hdr = register_net_sysctl(net, "net/netfilter", table);
106 if (hdr == NULL)
107 goto err_reg;
108
109 net->nf_frag.sysctl.frags_hdr = hdr;
110 return 0;
111
112 err_reg:
113 if (!net_eq(net, &init_net))
114 kfree(table);
115 err_alloc:
116 return -ENOMEM;
117 }
118
119 static void __net_exit nf_ct_frags6_sysctl_unregister(struct net *net)
120 {
121 struct ctl_table *table;
122
123 table = net->nf_frag.sysctl.frags_hdr->ctl_table_arg;
124 unregister_net_sysctl_table(net->nf_frag.sysctl.frags_hdr);
125 if (!net_eq(net, &init_net))
126 kfree(table);
127 }
128
129 #else
130 static int nf_ct_frag6_sysctl_register(struct net *net)
131 {
132 return 0;
133 }
134 static void __net_exit nf_ct_frags6_sysctl_unregister(struct net *net)
135 {
136 }
137 #endif
138
139 static unsigned int nf_hashfn(struct inet_frag_queue *q)
140 {
141 const struct frag_queue *nq;
142
143 nq = container_of(q, struct frag_queue, q);
144 return inet6_hash_frag(nq->id, &nq->saddr, &nq->daddr, nf_frags.rnd);
145 }
146
147 static void nf_skb_free(struct sk_buff *skb)
148 {
149 if (NFCT_FRAG6_CB(skb)->orig)
150 kfree_skb(NFCT_FRAG6_CB(skb)->orig);
151 }
152
153 static void nf_ct_frag6_expire(unsigned long data)
154 {
155 struct frag_queue *fq;
156 struct net *net;
157
158 fq = container_of((struct inet_frag_queue *)data, struct frag_queue, q);
159 net = container_of(fq->q.net, struct net, nf_frag.frags);
160
161 ip6_expire_frag_queue(net, fq, &nf_frags);
162 }
163
164 /* Creation primitives. */
165 static inline struct frag_queue *fq_find(struct net *net, __be32 id,
166 u32 user, struct in6_addr *src,
167 struct in6_addr *dst)
168 {
169 struct inet_frag_queue *q;
170 struct ip6_create_arg arg;
171 unsigned int hash;
172
173 arg.id = id;
174 arg.user = user;
175 arg.src = src;
176 arg.dst = dst;
177
178 read_lock_bh(&nf_frags.lock);
179 hash = inet6_hash_frag(id, src, dst, nf_frags.rnd);
180
181 q = inet_frag_find(&net->nf_frag.frags, &nf_frags, &arg, hash);
182 local_bh_enable();
183 if (q == NULL)
184 goto oom;
185
186 return container_of(q, struct frag_queue, q);
187
188 oom:
189 return NULL;
190 }
191
192
193 static int nf_ct_frag6_queue(struct frag_queue *fq, struct sk_buff *skb,
194 const struct frag_hdr *fhdr, int nhoff)
195 {
196 struct sk_buff *prev, *next;
197 unsigned int payload_len;
198 int offset, end;
199
200 if (fq->q.last_in & INET_FRAG_COMPLETE) {
201 pr_debug("Already completed\n");
202 goto err;
203 }
204
205 payload_len = ntohs(ipv6_hdr(skb)->payload_len);
206
207 offset = ntohs(fhdr->frag_off) & ~0x7;
208 end = offset + (payload_len -
209 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
210
211 if ((unsigned int)end > IPV6_MAXPLEN) {
212 pr_debug("offset is too large.\n");
213 return -1;
214 }
215
216 if (skb->ip_summed == CHECKSUM_COMPLETE) {
217 const unsigned char *nh = skb_network_header(skb);
218 skb->csum = csum_sub(skb->csum,
219 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
220 0));
221 }
222
223 /* Is this the final fragment? */
224 if (!(fhdr->frag_off & htons(IP6_MF))) {
225 /* If we already have some bits beyond end
226 * or have different end, the segment is corrupted.
227 */
228 if (end < fq->q.len ||
229 ((fq->q.last_in & INET_FRAG_LAST_IN) && end != fq->q.len)) {
230 pr_debug("already received last fragment\n");
231 goto err;
232 }
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 pr_debug("end of fragment not rounded to 8 bytes.\n");
244 return -1;
245 }
246 if (end > fq->q.len) {
247 /* Some bits beyond end -> corruption. */
248 if (fq->q.last_in & INET_FRAG_LAST_IN) {
249 pr_debug("last packet already reached.\n");
250 goto err;
251 }
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 pr_debug("queue: message is too short.\n");
262 goto err;
263 }
264 if (pskb_trim_rcsum(skb, end - offset)) {
265 pr_debug("Can't trim\n");
266 goto err;
267 }
268
269 /* Find out which fragments are in front and at the back of us
270 * in the chain of fragments so far. We must know where to put
271 * this fragment, right?
272 */
273 prev = fq->q.fragments_tail;
274 if (!prev || NFCT_FRAG6_CB(prev)->offset < offset) {
275 next = NULL;
276 goto found;
277 }
278 prev = NULL;
279 for (next = fq->q.fragments; next != NULL; next = next->next) {
280 if (NFCT_FRAG6_CB(next)->offset >= offset)
281 break; /* bingo! */
282 prev = next;
283 }
284
285 found:
286 /* RFC5722, Section 4:
287 * When reassembling an IPv6 datagram, if
288 * one or more its constituent fragments is determined to be an
289 * overlapping fragment, the entire datagram (and any constituent
290 * fragments, including those not yet received) MUST be silently
291 * discarded.
292 */
293
294 /* Check for overlap with preceding fragment. */
295 if (prev &&
296 (NFCT_FRAG6_CB(prev)->offset + prev->len) > offset)
297 goto discard_fq;
298
299 /* Look for overlap with succeeding segment. */
300 if (next && NFCT_FRAG6_CB(next)->offset < end)
301 goto discard_fq;
302
303 NFCT_FRAG6_CB(skb)->offset = offset;
304
305 /* Insert this fragment in the chain of fragments. */
306 skb->next = next;
307 if (!next)
308 fq->q.fragments_tail = skb;
309 if (prev)
310 prev->next = skb;
311 else
312 fq->q.fragments = skb;
313
314 if (skb->dev) {
315 fq->iif = skb->dev->ifindex;
316 skb->dev = NULL;
317 }
318 fq->q.stamp = skb->tstamp;
319 fq->q.meat += skb->len;
320 if (payload_len > fq->q.max_size)
321 fq->q.max_size = payload_len;
322 atomic_add(skb->truesize, &fq->q.net->mem);
323
324 /* The first fragment.
325 * nhoffset is obtained from the first fragment, of course.
326 */
327 if (offset == 0) {
328 fq->nhoffset = nhoff;
329 fq->q.last_in |= INET_FRAG_FIRST_IN;
330 }
331 write_lock(&nf_frags.lock);
332 list_move_tail(&fq->q.lru_list, &fq->q.net->lru_list);
333 write_unlock(&nf_frags.lock);
334 return 0;
335
336 discard_fq:
337 inet_frag_kill(&fq->q, &nf_frags);
338 err:
339 return -1;
340 }
341
342 /*
343 * Check if this packet is complete.
344 * Returns NULL on failure by any reason, and pointer
345 * to current nexthdr field in reassembled frame.
346 *
347 * It is called with locked fq, and caller must check that
348 * queue is eligible for reassembly i.e. it is not COMPLETE,
349 * the last and the first frames arrived and all the bits are here.
350 */
351 static struct sk_buff *
352 nf_ct_frag6_reasm(struct frag_queue *fq, struct net_device *dev)
353 {
354 struct sk_buff *fp, *op, *head = fq->q.fragments;
355 int payload_len;
356
357 inet_frag_kill(&fq->q, &nf_frags);
358
359 WARN_ON(head == NULL);
360 WARN_ON(NFCT_FRAG6_CB(head)->offset != 0);
361
362 /* Unfragmented part is taken from the first segment. */
363 payload_len = ((head->data - skb_network_header(head)) -
364 sizeof(struct ipv6hdr) + fq->q.len -
365 sizeof(struct frag_hdr));
366 if (payload_len > IPV6_MAXPLEN) {
367 pr_debug("payload len is too large.\n");
368 goto out_oversize;
369 }
370
371 /* Head of list must not be cloned. */
372 if (skb_cloned(head) && pskb_expand_head(head, 0, 0, GFP_ATOMIC)) {
373 pr_debug("skb is cloned but can't expand head");
374 goto out_oom;
375 }
376
377 /* If the first fragment is fragmented itself, we split
378 * it to two chunks: the first with data and paged part
379 * and the second, holding only fragments. */
380 if (skb_has_frag_list(head)) {
381 struct sk_buff *clone;
382 int i, plen = 0;
383
384 clone = alloc_skb(0, GFP_ATOMIC);
385 if (clone == NULL)
386 goto out_oom;
387
388 clone->next = head->next;
389 head->next = clone;
390 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
391 skb_frag_list_init(head);
392 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
393 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
394 clone->len = clone->data_len = head->data_len - plen;
395 head->data_len -= clone->len;
396 head->len -= clone->len;
397 clone->csum = 0;
398 clone->ip_summed = head->ip_summed;
399
400 NFCT_FRAG6_CB(clone)->orig = NULL;
401 atomic_add(clone->truesize, &fq->q.net->mem);
402 }
403
404 /* We have to remove fragment header from datagram and to relocate
405 * header in order to calculate ICV correctly. */
406 skb_network_header(head)[fq->nhoffset] = skb_transport_header(head)[0];
407 memmove(head->head + sizeof(struct frag_hdr), head->head,
408 (head->data - head->head) - sizeof(struct frag_hdr));
409 head->mac_header += sizeof(struct frag_hdr);
410 head->network_header += sizeof(struct frag_hdr);
411
412 skb_shinfo(head)->frag_list = head->next;
413 skb_reset_transport_header(head);
414 skb_push(head, head->data - skb_network_header(head));
415
416 for (fp=head->next; fp; fp = fp->next) {
417 head->data_len += fp->len;
418 head->len += fp->len;
419 if (head->ip_summed != fp->ip_summed)
420 head->ip_summed = CHECKSUM_NONE;
421 else if (head->ip_summed == CHECKSUM_COMPLETE)
422 head->csum = csum_add(head->csum, fp->csum);
423 head->truesize += fp->truesize;
424 }
425 atomic_sub(head->truesize, &fq->q.net->mem);
426
427 head->local_df = 1;
428 head->next = NULL;
429 head->dev = dev;
430 head->tstamp = fq->q.stamp;
431 ipv6_hdr(head)->payload_len = htons(payload_len);
432 IP6CB(head)->frag_max_size = sizeof(struct ipv6hdr) + fq->q.max_size;
433
434 /* Yes, and fold redundant checksum back. 8) */
435 if (head->ip_summed == CHECKSUM_COMPLETE)
436 head->csum = csum_partial(skb_network_header(head),
437 skb_network_header_len(head),
438 head->csum);
439
440 fq->q.fragments = NULL;
441 fq->q.fragments_tail = NULL;
442
443 /* all original skbs are linked into the NFCT_FRAG6_CB(head).orig */
444 fp = skb_shinfo(head)->frag_list;
445 if (fp && NFCT_FRAG6_CB(fp)->orig == NULL)
446 /* at above code, head skb is divided into two skbs. */
447 fp = fp->next;
448
449 op = NFCT_FRAG6_CB(head)->orig;
450 for (; fp; fp = fp->next) {
451 struct sk_buff *orig = NFCT_FRAG6_CB(fp)->orig;
452
453 op->next = orig;
454 op = orig;
455 NFCT_FRAG6_CB(fp)->orig = NULL;
456 }
457
458 return head;
459
460 out_oversize:
461 net_dbg_ratelimited("nf_ct_frag6_reasm: payload len = %d\n",
462 payload_len);
463 goto out_fail;
464 out_oom:
465 net_dbg_ratelimited("nf_ct_frag6_reasm: no memory for reassembly\n");
466 out_fail:
467 return NULL;
468 }
469
470 /*
471 * find the header just before Fragment Header.
472 *
473 * if success return 0 and set ...
474 * (*prevhdrp): the value of "Next Header Field" in the header
475 * just before Fragment Header.
476 * (*prevhoff): the offset of "Next Header Field" in the header
477 * just before Fragment Header.
478 * (*fhoff) : the offset of Fragment Header.
479 *
480 * Based on ipv6_skip_hdr() in net/ipv6/exthdr.c
481 *
482 */
483 static int
484 find_prev_fhdr(struct sk_buff *skb, u8 *prevhdrp, int *prevhoff, int *fhoff)
485 {
486 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
487 const int netoff = skb_network_offset(skb);
488 u8 prev_nhoff = netoff + offsetof(struct ipv6hdr, nexthdr);
489 int start = netoff + sizeof(struct ipv6hdr);
490 int len = skb->len - start;
491 u8 prevhdr = NEXTHDR_IPV6;
492
493 while (nexthdr != NEXTHDR_FRAGMENT) {
494 struct ipv6_opt_hdr hdr;
495 int hdrlen;
496
497 if (!ipv6_ext_hdr(nexthdr)) {
498 return -1;
499 }
500 if (nexthdr == NEXTHDR_NONE) {
501 pr_debug("next header is none\n");
502 return -1;
503 }
504 if (len < (int)sizeof(struct ipv6_opt_hdr)) {
505 pr_debug("too short\n");
506 return -1;
507 }
508 if (skb_copy_bits(skb, start, &hdr, sizeof(hdr)))
509 BUG();
510 if (nexthdr == NEXTHDR_AUTH)
511 hdrlen = (hdr.hdrlen+2)<<2;
512 else
513 hdrlen = ipv6_optlen(&hdr);
514
515 prevhdr = nexthdr;
516 prev_nhoff = start;
517
518 nexthdr = hdr.nexthdr;
519 len -= hdrlen;
520 start += hdrlen;
521 }
522
523 if (len < 0)
524 return -1;
525
526 *prevhdrp = prevhdr;
527 *prevhoff = prev_nhoff;
528 *fhoff = start;
529
530 return 0;
531 }
532
533 struct sk_buff *nf_ct_frag6_gather(struct sk_buff *skb, u32 user)
534 {
535 struct sk_buff *clone;
536 struct net_device *dev = skb->dev;
537 struct net *net = skb_dst(skb) ? dev_net(skb_dst(skb)->dev)
538 : dev_net(skb->dev);
539 struct frag_hdr *fhdr;
540 struct frag_queue *fq;
541 struct ipv6hdr *hdr;
542 int fhoff, nhoff;
543 u8 prevhdr;
544 struct sk_buff *ret_skb = NULL;
545
546 /* Jumbo payload inhibits frag. header */
547 if (ipv6_hdr(skb)->payload_len == 0) {
548 pr_debug("payload len = 0\n");
549 return skb;
550 }
551
552 if (find_prev_fhdr(skb, &prevhdr, &nhoff, &fhoff) < 0)
553 return skb;
554
555 clone = skb_clone(skb, GFP_ATOMIC);
556 if (clone == NULL) {
557 pr_debug("Can't clone skb\n");
558 return skb;
559 }
560
561 NFCT_FRAG6_CB(clone)->orig = skb;
562
563 if (!pskb_may_pull(clone, fhoff + sizeof(*fhdr))) {
564 pr_debug("message is too short.\n");
565 goto ret_orig;
566 }
567
568 skb_set_transport_header(clone, fhoff);
569 hdr = ipv6_hdr(clone);
570 fhdr = (struct frag_hdr *)skb_transport_header(clone);
571
572 local_bh_disable();
573 inet_frag_evictor(&net->nf_frag.frags, &nf_frags, false);
574 local_bh_enable();
575
576 fq = fq_find(net, fhdr->identification, user, &hdr->saddr, &hdr->daddr);
577 if (fq == NULL) {
578 pr_debug("Can't find and can't create new queue\n");
579 goto ret_orig;
580 }
581
582 spin_lock_bh(&fq->q.lock);
583
584 if (nf_ct_frag6_queue(fq, clone, fhdr, nhoff) < 0) {
585 spin_unlock_bh(&fq->q.lock);
586 pr_debug("Can't insert skb to queue\n");
587 inet_frag_put(&fq->q, &nf_frags);
588 goto ret_orig;
589 }
590
591 if (fq->q.last_in == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
592 fq->q.meat == fq->q.len) {
593 ret_skb = nf_ct_frag6_reasm(fq, dev);
594 if (ret_skb == NULL)
595 pr_debug("Can't reassemble fragmented packets\n");
596 }
597 spin_unlock_bh(&fq->q.lock);
598
599 inet_frag_put(&fq->q, &nf_frags);
600 return ret_skb;
601
602 ret_orig:
603 kfree_skb(clone);
604 return skb;
605 }
606
607 void nf_ct_frag6_output(unsigned int hooknum, struct sk_buff *skb,
608 struct net_device *in, struct net_device *out,
609 int (*okfn)(struct sk_buff *))
610 {
611 struct sk_buff *s, *s2;
612 unsigned int ret = 0;
613
614 for (s = NFCT_FRAG6_CB(skb)->orig; s;) {
615 nf_conntrack_put_reasm(s->nfct_reasm);
616 nf_conntrack_get_reasm(skb);
617 s->nfct_reasm = skb;
618
619 s2 = s->next;
620 s->next = NULL;
621
622 if (ret != -ECANCELED)
623 ret = NF_HOOK_THRESH(NFPROTO_IPV6, hooknum, s,
624 in, out, okfn,
625 NF_IP6_PRI_CONNTRACK_DEFRAG + 1);
626 else
627 kfree_skb(s);
628
629 s = s2;
630 }
631 nf_conntrack_put_reasm(skb);
632 }
633
634 static int nf_ct_net_init(struct net *net)
635 {
636 net->nf_frag.frags.high_thresh = IPV6_FRAG_HIGH_THRESH;
637 net->nf_frag.frags.low_thresh = IPV6_FRAG_LOW_THRESH;
638 net->nf_frag.frags.timeout = IPV6_FRAG_TIMEOUT;
639 inet_frags_init_net(&net->nf_frag.frags);
640
641 return nf_ct_frag6_sysctl_register(net);
642 }
643
644 static void nf_ct_net_exit(struct net *net)
645 {
646 nf_ct_frags6_sysctl_unregister(net);
647 inet_frags_exit_net(&net->nf_frag.frags, &nf_frags);
648 }
649
650 static struct pernet_operations nf_ct_net_ops = {
651 .init = nf_ct_net_init,
652 .exit = nf_ct_net_exit,
653 };
654
655 int nf_ct_frag6_init(void)
656 {
657 int ret = 0;
658
659 nf_frags.hashfn = nf_hashfn;
660 nf_frags.constructor = ip6_frag_init;
661 nf_frags.destructor = NULL;
662 nf_frags.skb_free = nf_skb_free;
663 nf_frags.qsize = sizeof(struct frag_queue);
664 nf_frags.match = ip6_frag_match;
665 nf_frags.frag_expire = nf_ct_frag6_expire;
666 nf_frags.secret_interval = 10 * 60 * HZ;
667 inet_frags_init(&nf_frags);
668
669 ret = register_pernet_subsys(&nf_ct_net_ops);
670 if (ret)
671 inet_frags_fini(&nf_frags);
672
673 return ret;
674 }
675
676 void nf_ct_frag6_cleanup(void)
677 {
678 unregister_pernet_subsys(&nf_ct_net_ops);
679 inet_frags_fini(&nf_frags);
680 }