Merge branch 'timer/cleanup' into late/mvebu2
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / ipv6 / netfilter / nf_conntrack_reasm.c
CommitLineData
9fb9cbb1
YK
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
9fb9cbb1
YK
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>
5a0e3ad6 30#include <linux/slab.h>
9fb9cbb1
YK
31
32#include <net/sock.h>
33#include <net/snmp.h>
5ab11c98 34#include <net/inet_frag.h>
9fb9cbb1
YK
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>
99fa5f53 42#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
9fb9cbb1
YK
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>
bced94ed 48#include <net/netfilter/ipv6/nf_defrag_ipv6.h>
9fb9cbb1 49
9fb9cbb1 50
9fb9cbb1
YK
51struct 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
7eb95156 60static struct inet_frags nf_frags;
9fb9cbb1 61
8d8354d2 62#ifdef CONFIG_SYSCTL
be9e9163 63static struct ctl_table nf_ct_frag6_sysctl_table[] = {
8d8354d2
PE
64 {
65 .procname = "nf_conntrack_frag6_timeout",
c038a767 66 .data = &init_net.nf_frag.frags.timeout,
8d8354d2
PE
67 .maxlen = sizeof(unsigned int),
68 .mode = 0644,
6d9f239a 69 .proc_handler = proc_dointvec_jiffies,
8d8354d2
PE
70 },
71 {
8d8354d2 72 .procname = "nf_conntrack_frag6_low_thresh",
c038a767 73 .data = &init_net.nf_frag.frags.low_thresh,
8d8354d2
PE
74 .maxlen = sizeof(unsigned int),
75 .mode = 0644,
6d9f239a 76 .proc_handler = proc_dointvec,
8d8354d2
PE
77 },
78 {
8d8354d2 79 .procname = "nf_conntrack_frag6_high_thresh",
c038a767 80 .data = &init_net.nf_frag.frags.high_thresh,
8d8354d2
PE
81 .maxlen = sizeof(unsigned int),
82 .mode = 0644,
6d9f239a 83 .proc_handler = proc_dointvec,
8d8354d2 84 },
f8572d8f 85 { }
8d8354d2 86};
e97c3e27 87
f1df1374 88static int nf_ct_frag6_sysctl_register(struct net *net)
c038a767
AW
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
4b7cc7fc 109 net->nf_frag.sysctl.frags_hdr = hdr;
c038a767
AW
110 return 0;
111
112err_reg:
113 if (!net_eq(net, &init_net))
114 kfree(table);
115err_alloc:
116 return -ENOMEM;
117}
118
119static 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
f1df1374 130static int nf_ct_frag6_sysctl_register(struct net *net)
c038a767
AW
131{
132 return 0;
133}
134static void __net_exit nf_ct_frags6_sysctl_unregister(struct net *net)
135{
136}
8d8354d2
PE
137#endif
138
321a3a99 139static unsigned int nf_hashfn(struct inet_frag_queue *q)
9fb9cbb1 140{
b836c99f 141 const struct frag_queue *nq;
9fb9cbb1 142
b836c99f 143 nq = container_of(q, struct frag_queue, q);
93c8b90f 144 return inet6_hash_frag(nq->id, &nq->saddr, &nq->daddr, nf_frags.rnd);
9fb9cbb1
YK
145}
146
1e4b8287
PE
147static 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
9fb9cbb1
YK
153static void nf_ct_frag6_expire(unsigned long data)
154{
b836c99f
AW
155 struct frag_queue *fq;
156 struct net *net;
9fb9cbb1 157
b836c99f
AW
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);
9fb9cbb1 160
b836c99f 161 ip6_expire_frag_queue(net, fq, &nf_frags);
9fb9cbb1
YK
162}
163
164/* Creation primitives. */
b836c99f
AW
165static inline struct frag_queue *fq_find(struct net *net, __be32 id,
166 u32 user, struct in6_addr *src,
167 struct in6_addr *dst)
9fb9cbb1 168{
2588fe1d 169 struct inet_frag_queue *q;
c6fda282 170 struct ip6_create_arg arg;
abd6523d 171 unsigned int hash;
9fb9cbb1 172
c6fda282 173 arg.id = id;
0b5ccb2e 174 arg.user = user;
c6fda282
PE
175 arg.src = src;
176 arg.dst = dst;
9a375803
PE
177
178 read_lock_bh(&nf_frags.lock);
93c8b90f 179 hash = inet6_hash_frag(id, src, dst, nf_frags.rnd);
9fb9cbb1 180
c038a767 181 q = inet_frag_find(&net->nf_frag.frags, &nf_frags, &arg, hash);
b9c69896 182 local_bh_enable();
c6fda282 183 if (q == NULL)
9fb9cbb1 184 goto oom;
9fb9cbb1 185
b836c99f 186 return container_of(q, struct frag_queue, q);
9fb9cbb1
YK
187
188oom:
189 return NULL;
190}
191
9fb9cbb1 192
b836c99f 193static int nf_ct_frag6_queue(struct frag_queue *fq, struct sk_buff *skb,
58c0fb0d 194 const struct frag_hdr *fhdr, int nhoff)
9fb9cbb1
YK
195{
196 struct sk_buff *prev, *next;
4cdd3408 197 unsigned int payload_len;
9fb9cbb1
YK
198 int offset, end;
199
bc578a54 200 if (fq->q.last_in & INET_FRAG_COMPLETE) {
698f9315 201 pr_debug("Already completed\n");
9fb9cbb1
YK
202 goto err;
203 }
204
4cdd3408
PM
205 payload_len = ntohs(ipv6_hdr(skb)->payload_len);
206
9fb9cbb1 207 offset = ntohs(fhdr->frag_off) & ~0x7;
4cdd3408 208 end = offset + (payload_len -
0660e03f 209 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
9fb9cbb1
YK
210
211 if ((unsigned int)end > IPV6_MAXPLEN) {
0d53778e 212 pr_debug("offset is too large.\n");
1ab1457c 213 return -1;
9fb9cbb1
YK
214 }
215
d56f90a7
ACM
216 if (skb->ip_summed == CHECKSUM_COMPLETE) {
217 const unsigned char *nh = skb_network_header(skb);
1ab1457c 218 skb->csum = csum_sub(skb->csum,
d56f90a7 219 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
9fb9cbb1 220 0));
d56f90a7 221 }
9fb9cbb1
YK
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 */
5ab11c98 228 if (end < fq->q.len ||
bc578a54 229 ((fq->q.last_in & INET_FRAG_LAST_IN) && end != fq->q.len)) {
0d53778e 230 pr_debug("already received last fragment\n");
9fb9cbb1
YK
231 goto err;
232 }
bc578a54 233 fq->q.last_in |= INET_FRAG_LAST_IN;
5ab11c98 234 fq->q.len = end;
9fb9cbb1
YK
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 */
0d53778e 243 pr_debug("end of fragment not rounded to 8 bytes.\n");
9fb9cbb1
YK
244 return -1;
245 }
5ab11c98 246 if (end > fq->q.len) {
9fb9cbb1 247 /* Some bits beyond end -> corruption. */
bc578a54 248 if (fq->q.last_in & INET_FRAG_LAST_IN) {
0d53778e 249 pr_debug("last packet already reached.\n");
9fb9cbb1
YK
250 goto err;
251 }
5ab11c98 252 fq->q.len = end;
9fb9cbb1
YK
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)) {
0d53778e 261 pr_debug("queue: message is too short.\n");
9fb9cbb1
YK
262 goto err;
263 }
b38dfee3 264 if (pskb_trim_rcsum(skb, end - offset)) {
0d53778e 265 pr_debug("Can't trim\n");
b38dfee3 266 goto err;
9fb9cbb1
YK
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 */
ea8fbe8f
CG
273 prev = fq->q.fragments_tail;
274 if (!prev || NFCT_FRAG6_CB(prev)->offset < offset) {
275 next = NULL;
276 goto found;
277 }
9fb9cbb1 278 prev = NULL;
5ab11c98 279 for (next = fq->q.fragments; next != NULL; next = next->next) {
9fb9cbb1
YK
280 if (NFCT_FRAG6_CB(next)->offset >= offset)
281 break; /* bingo! */
282 prev = next;
283 }
284
ea8fbe8f 285found:
1ee89bd0
ND
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.
9fb9cbb1 292 */
9fb9cbb1 293
1ee89bd0
ND
294 /* Check for overlap with preceding fragment. */
295 if (prev &&
22e091e5 296 (NFCT_FRAG6_CB(prev)->offset + prev->len) > offset)
1ee89bd0 297 goto discard_fq;
9fb9cbb1 298
1ee89bd0
ND
299 /* Look for overlap with succeeding segment. */
300 if (next && NFCT_FRAG6_CB(next)->offset < end)
301 goto discard_fq;
9fb9cbb1
YK
302
303 NFCT_FRAG6_CB(skb)->offset = offset;
304
305 /* Insert this fragment in the chain of fragments. */
306 skb->next = next;
ea8fbe8f
CG
307 if (!next)
308 fq->q.fragments_tail = skb;
9fb9cbb1
YK
309 if (prev)
310 prev->next = skb;
311 else
5ab11c98 312 fq->q.fragments = skb;
9fb9cbb1 313
97cf00e9
HX
314 if (skb->dev) {
315 fq->iif = skb->dev->ifindex;
316 skb->dev = NULL;
317 }
5ab11c98
PE
318 fq->q.stamp = skb->tstamp;
319 fq->q.meat += skb->len;
4cdd3408
PM
320 if (payload_len > fq->q.max_size)
321 fq->q.max_size = payload_len;
c038a767 322 atomic_add(skb->truesize, &fq->q.net->mem);
9fb9cbb1
YK
323
324 /* The first fragment.
325 * nhoffset is obtained from the first fragment, of course.
326 */
327 if (offset == 0) {
328 fq->nhoffset = nhoff;
bc578a54 329 fq->q.last_in |= INET_FRAG_FIRST_IN;
9fb9cbb1 330 }
7eb95156 331 write_lock(&nf_frags.lock);
c038a767 332 list_move_tail(&fq->q.lru_list, &fq->q.net->lru_list);
7eb95156 333 write_unlock(&nf_frags.lock);
9fb9cbb1
YK
334 return 0;
335
1ee89bd0 336discard_fq:
b836c99f 337 inet_frag_kill(&fq->q, &nf_frags);
9fb9cbb1
YK
338err:
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 */
351static struct sk_buff *
b836c99f 352nf_ct_frag6_reasm(struct frag_queue *fq, struct net_device *dev)
9fb9cbb1 353{
5ab11c98 354 struct sk_buff *fp, *op, *head = fq->q.fragments;
9fb9cbb1
YK
355 int payload_len;
356
b836c99f 357 inet_frag_kill(&fq->q, &nf_frags);
9fb9cbb1 358
547b792c
IJ
359 WARN_ON(head == NULL);
360 WARN_ON(NFCT_FRAG6_CB(head)->offset != 0);
9fb9cbb1
YK
361
362 /* Unfragmented part is taken from the first segment. */
d56f90a7 363 payload_len = ((head->data - skb_network_header(head)) -
5ab11c98 364 sizeof(struct ipv6hdr) + fq->q.len -
d56f90a7 365 sizeof(struct frag_hdr));
9fb9cbb1 366 if (payload_len > IPV6_MAXPLEN) {
0d53778e 367 pr_debug("payload len is too large.\n");
9fb9cbb1
YK
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)) {
0d53778e 373 pr_debug("skb is cloned but can't expand head");
9fb9cbb1
YK
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. */
21dc3301 380 if (skb_has_frag_list(head)) {
9fb9cbb1
YK
381 struct sk_buff *clone;
382 int i, plen = 0;
383
0a9ee813
JP
384 clone = alloc_skb(0, GFP_ATOMIC);
385 if (clone == NULL)
9fb9cbb1 386 goto out_oom;
0a9ee813 387
9fb9cbb1
YK
388 clone->next = head->next;
389 head->next = clone;
390 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
343a9972 391 skb_frag_list_init(head);
9e903e08
ED
392 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
393 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
9fb9cbb1
YK
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;
c038a767 401 atomic_add(clone->truesize, &fq->q.net->mem);
9fb9cbb1
YK
402 }
403
404 /* We have to remove fragment header from datagram and to relocate
405 * header in order to calculate ICV correctly. */
bff9b61c 406 skb_network_header(head)[fq->nhoffset] = skb_transport_header(head)[0];
1ab1457c 407 memmove(head->head + sizeof(struct frag_hdr), head->head,
9fb9cbb1 408 (head->data - head->head) - sizeof(struct frag_hdr));
b0e380b1
ACM
409 head->mac_header += sizeof(struct frag_hdr);
410 head->network_header += sizeof(struct frag_hdr);
9fb9cbb1
YK
411
412 skb_shinfo(head)->frag_list = head->next;
badff6d0 413 skb_reset_transport_header(head);
d56f90a7 414 skb_push(head, head->data - skb_network_header(head));
9fb9cbb1
YK
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;
84fa7933 421 else if (head->ip_summed == CHECKSUM_COMPLETE)
9fb9cbb1
YK
422 head->csum = csum_add(head->csum, fp->csum);
423 head->truesize += fp->truesize;
9fb9cbb1 424 }
c038a767 425 atomic_sub(head->truesize, &fq->q.net->mem);
9fb9cbb1 426
4cdd3408 427 head->local_df = 1;
9fb9cbb1
YK
428 head->next = NULL;
429 head->dev = dev;
5ab11c98 430 head->tstamp = fq->q.stamp;
0660e03f 431 ipv6_hdr(head)->payload_len = htons(payload_len);
4cdd3408 432 IP6CB(head)->frag_max_size = sizeof(struct ipv6hdr) + fq->q.max_size;
9fb9cbb1
YK
433
434 /* Yes, and fold redundant checksum back. 8) */
84fa7933 435 if (head->ip_summed == CHECKSUM_COMPLETE)
d56f90a7 436 head->csum = csum_partial(skb_network_header(head),
cfe1fc77 437 skb_network_header_len(head),
d56f90a7 438 head->csum);
9fb9cbb1 439
5ab11c98 440 fq->q.fragments = NULL;
ea8fbe8f 441 fq->q.fragments_tail = NULL;
9fb9cbb1
YK
442
443 /* all original skbs are linked into the NFCT_FRAG6_CB(head).orig */
444 fp = skb_shinfo(head)->frag_list;
9e2dcf72 445 if (fp && NFCT_FRAG6_CB(fp)->orig == NULL)
9fb9cbb1
YK
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
460out_oversize:
e87cc472
JP
461 net_dbg_ratelimited("nf_ct_frag6_reasm: payload len = %d\n",
462 payload_len);
9fb9cbb1
YK
463 goto out_fail;
464out_oom:
e87cc472 465 net_dbg_ratelimited("nf_ct_frag6_reasm: no memory for reassembly\n");
9fb9cbb1
YK
466out_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 */
483static int
484find_prev_fhdr(struct sk_buff *skb, u8 *prevhdrp, int *prevhoff, int *fhoff)
485{
0660e03f 486 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
6b88dd96
ACM
487 const int netoff = skb_network_offset(skb);
488 u8 prev_nhoff = netoff + offsetof(struct ipv6hdr, nexthdr);
489 int start = netoff + sizeof(struct ipv6hdr);
9fb9cbb1
YK
490 int len = skb->len - start;
491 u8 prevhdr = NEXTHDR_IPV6;
492
1ab1457c
YH
493 while (nexthdr != NEXTHDR_FRAGMENT) {
494 struct ipv6_opt_hdr hdr;
495 int hdrlen;
9fb9cbb1
YK
496
497 if (!ipv6_ext_hdr(nexthdr)) {
498 return -1;
499 }
1ab1457c 500 if (nexthdr == NEXTHDR_NONE) {
0d53778e 501 pr_debug("next header is none\n");
9fb9cbb1
YK
502 return -1;
503 }
d1238d53
CP
504 if (len < (int)sizeof(struct ipv6_opt_hdr)) {
505 pr_debug("too short\n");
506 return -1;
507 }
1ab1457c
YH
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);
9fb9cbb1
YK
514
515 prevhdr = nexthdr;
516 prev_nhoff = start;
517
1ab1457c
YH
518 nexthdr = hdr.nexthdr;
519 len -= hdrlen;
520 start += hdrlen;
521 }
9fb9cbb1
YK
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
0b5ccb2e 533struct sk_buff *nf_ct_frag6_gather(struct sk_buff *skb, u32 user)
9fb9cbb1 534{
1ab1457c 535 struct sk_buff *clone;
9fb9cbb1 536 struct net_device *dev = skb->dev;
c038a767
AW
537 struct net *net = skb_dst(skb) ? dev_net(skb_dst(skb)->dev)
538 : dev_net(skb->dev);
9fb9cbb1 539 struct frag_hdr *fhdr;
b836c99f 540 struct frag_queue *fq;
9fb9cbb1
YK
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 */
0660e03f 547 if (ipv6_hdr(skb)->payload_len == 0) {
0d53778e 548 pr_debug("payload len = 0\n");
9fb9cbb1
YK
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) {
0d53778e 557 pr_debug("Can't clone skb\n");
9fb9cbb1
YK
558 return skb;
559 }
560
561 NFCT_FRAG6_CB(clone)->orig = skb;
562
563 if (!pskb_may_pull(clone, fhoff + sizeof(*fhdr))) {
0d53778e 564 pr_debug("message is too short.\n");
9fb9cbb1
YK
565 goto ret_orig;
566 }
567
967b05f6 568 skb_set_transport_header(clone, fhoff);
0660e03f 569 hdr = ipv6_hdr(clone);
bff9b61c 570 fhdr = (struct frag_hdr *)skb_transport_header(clone);
9fb9cbb1 571
6b102865
AW
572 local_bh_disable();
573 inet_frag_evictor(&net->nf_frag.frags, &nf_frags, false);
574 local_bh_enable();
9fb9cbb1 575
c038a767 576 fq = fq_find(net, fhdr->identification, user, &hdr->saddr, &hdr->daddr);
9fb9cbb1 577 if (fq == NULL) {
0d53778e 578 pr_debug("Can't find and can't create new queue\n");
9fb9cbb1
YK
579 goto ret_orig;
580 }
581
b9c69896 582 spin_lock_bh(&fq->q.lock);
9fb9cbb1
YK
583
584 if (nf_ct_frag6_queue(fq, clone, fhdr, nhoff) < 0) {
b9c69896 585 spin_unlock_bh(&fq->q.lock);
0d53778e 586 pr_debug("Can't insert skb to queue\n");
b836c99f 587 inet_frag_put(&fq->q, &nf_frags);
9fb9cbb1
YK
588 goto ret_orig;
589 }
590
bc578a54
JP
591 if (fq->q.last_in == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
592 fq->q.meat == fq->q.len) {
9fb9cbb1
YK
593 ret_skb = nf_ct_frag6_reasm(fq, dev);
594 if (ret_skb == NULL)
0d53778e 595 pr_debug("Can't reassemble fragmented packets\n");
9fb9cbb1 596 }
b9c69896 597 spin_unlock_bh(&fq->q.lock);
9fb9cbb1 598
b836c99f 599 inet_frag_put(&fq->q, &nf_frags);
9fb9cbb1
YK
600 return ret_skb;
601
602ret_orig:
603 kfree_skb(clone);
604 return skb;
605}
606
607void 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;
4cdd3408 612 unsigned int ret = 0;
9fb9cbb1
YK
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;
f9f02cca
PM
620 s->next = NULL;
621
4cdd3408
PM
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
9fb9cbb1
YK
629 s = s2;
630 }
631 nf_conntrack_put_reasm(skb);
632}
633
c038a767
AW
634static 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
644static 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
650static struct pernet_operations nf_ct_net_ops = {
651 .init = nf_ct_net_init,
652 .exit = nf_ct_net_exit,
653};
654
9fb9cbb1
YK
655int nf_ct_frag6_init(void)
656{
c038a767
AW
657 int ret = 0;
658
321a3a99 659 nf_frags.hashfn = nf_hashfn;
c6fda282 660 nf_frags.constructor = ip6_frag_init;
c9547709 661 nf_frags.destructor = NULL;
1e4b8287 662 nf_frags.skb_free = nf_skb_free;
b836c99f 663 nf_frags.qsize = sizeof(struct frag_queue);
abd6523d 664 nf_frags.match = ip6_frag_match;
e521db9d 665 nf_frags.frag_expire = nf_ct_frag6_expire;
3b4bc4a2 666 nf_frags.secret_interval = 10 * 60 * HZ;
7eb95156 667 inet_frags_init(&nf_frags);
9fb9cbb1 668
c038a767
AW
669 ret = register_pernet_subsys(&nf_ct_net_ops);
670 if (ret)
e97c3e27 671 inet_frags_fini(&nf_frags);
e97c3e27 672
c038a767 673 return ret;
9fb9cbb1
YK
674}
675
676void nf_ct_frag6_cleanup(void)
677{
c038a767 678 unregister_pernet_subsys(&nf_ct_net_ops);
7eb95156 679 inet_frags_fini(&nf_frags);
9fb9cbb1 680}