Merge tag 'platform-drivers-x86-v6.9-3' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / net / ipv6 / netfilter / nf_conntrack_reasm.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
9fb9cbb1
YK
2/*
3 * IPv6 fragment reassembly for connection tracking
4 *
5 * Copyright (C)2004 USAGI/WIDE Project
6 *
7 * Author:
8 * Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
9 *
10 * Based on: net/ipv6/reassembly.c
9fb9cbb1
YK
11 */
12
5a3da1fe
HFS
13#define pr_fmt(fmt) "IPv6-nf: " fmt
14
9fb9cbb1
YK
15#include <linux/errno.h>
16#include <linux/types.h>
17#include <linux/string.h>
9fb9cbb1 18#include <linux/net.h>
9fb9cbb1 19#include <linux/netdevice.h>
9fb9cbb1 20#include <linux/ipv6.h>
5a0e3ad6 21#include <linux/slab.h>
9fb9cbb1 22
70b095c8 23#include <net/ipv6_frag.h>
9fb9cbb1 24
99fa5f53 25#include <net/netfilter/ipv6/nf_conntrack_ipv6.h>
9fb9cbb1
YK
26#include <linux/sysctl.h>
27#include <linux/netfilter.h>
28#include <linux/netfilter_ipv6.h>
29#include <linux/kernel.h>
30#include <linux/module.h>
bced94ed 31#include <net/netfilter/ipv6/nf_defrag_ipv6.h>
8b0adbe3 32#include <net/netns/generic.h>
9fb9cbb1 33
d4ad4d22 34static const char nf_frags_cache_name[] = "nf-frags";
9fb9cbb1 35
339031ba 36static unsigned int nf_frag_pernet_id __read_mostly;
7eb95156 37static struct inet_frags nf_frags;
9fb9cbb1 38
8b0adbe3
FW
39static struct nft_ct_frag6_pernet *nf_frag_pernet(struct net *net)
40{
41 return net_generic(net, nf_frag_pernet_id);
42}
43
8d8354d2 44#ifdef CONFIG_SYSCTL
1bab4c75 45
be9e9163 46static struct ctl_table nf_ct_frag6_sysctl_table[] = {
8d8354d2
PE
47 {
48 .procname = "nf_conntrack_frag6_timeout",
8d8354d2
PE
49 .maxlen = sizeof(unsigned int),
50 .mode = 0644,
6d9f239a 51 .proc_handler = proc_dointvec_jiffies,
8d8354d2
PE
52 },
53 {
8d8354d2 54 .procname = "nf_conntrack_frag6_low_thresh",
3e67f106 55 .maxlen = sizeof(unsigned long),
8d8354d2 56 .mode = 0644,
3e67f106 57 .proc_handler = proc_doulongvec_minmax,
8d8354d2
PE
58 },
59 {
8d8354d2 60 .procname = "nf_conntrack_frag6_high_thresh",
3e67f106 61 .maxlen = sizeof(unsigned long),
8d8354d2 62 .mode = 0644,
3e67f106 63 .proc_handler = proc_doulongvec_minmax,
8d8354d2 64 },
f8572d8f 65 { }
8d8354d2 66};
e97c3e27 67
f1df1374 68static int nf_ct_frag6_sysctl_register(struct net *net)
c038a767 69{
8b0adbe3 70 struct nft_ct_frag6_pernet *nf_frag;
c038a767
AW
71 struct ctl_table *table;
72 struct ctl_table_header *hdr;
73
74 table = nf_ct_frag6_sysctl_table;
75 if (!net_eq(net, &init_net)) {
76 table = kmemdup(table, sizeof(nf_ct_frag6_sysctl_table),
77 GFP_KERNEL);
78 if (table == NULL)
79 goto err_alloc;
c038a767
AW
80 }
81
8b0adbe3
FW
82 nf_frag = nf_frag_pernet(net);
83
84 table[0].data = &nf_frag->fqdir->timeout;
85 table[1].data = &nf_frag->fqdir->low_thresh;
86 table[1].extra2 = &nf_frag->fqdir->high_thresh;
87 table[2].data = &nf_frag->fqdir->high_thresh;
88 table[2].extra1 = &nf_frag->fqdir->low_thresh;
3bb13dd4 89
385a5dc9
JG
90 hdr = register_net_sysctl_sz(net, "net/netfilter", table,
91 ARRAY_SIZE(nf_ct_frag6_sysctl_table));
c038a767
AW
92 if (hdr == NULL)
93 goto err_reg;
94
8b0adbe3 95 nf_frag->nf_frag_frags_hdr = hdr;
c038a767
AW
96 return 0;
97
98err_reg:
99 if (!net_eq(net, &init_net))
100 kfree(table);
101err_alloc:
102 return -ENOMEM;
103}
104
105static void __net_exit nf_ct_frags6_sysctl_unregister(struct net *net)
106{
8b0adbe3 107 struct nft_ct_frag6_pernet *nf_frag = nf_frag_pernet(net);
c038a767
AW
108 struct ctl_table *table;
109
8b0adbe3
FW
110 table = nf_frag->nf_frag_frags_hdr->ctl_table_arg;
111 unregister_net_sysctl_table(nf_frag->nf_frag_frags_hdr);
c038a767
AW
112 if (!net_eq(net, &init_net))
113 kfree(table);
114}
115
116#else
f1df1374 117static int nf_ct_frag6_sysctl_register(struct net *net)
c038a767
AW
118{
119 return 0;
120}
121static void __net_exit nf_ct_frags6_sysctl_unregister(struct net *net)
122{
123}
8d8354d2
PE
124#endif
125
997dd964
PO
126static int nf_ct_frag6_reasm(struct frag_queue *fq, struct sk_buff *skb,
127 struct sk_buff *prev_tail, struct net_device *dev);
128
b8dd6a22
HFS
129static inline u8 ip6_frag_ecn(const struct ipv6hdr *ipv6h)
130{
131 return 1 << (ipv6_get_dsfield(ipv6h) & INET_ECN_MASK);
132}
133
78802011 134static void nf_ct_frag6_expire(struct timer_list *t)
9fb9cbb1 135{
78802011 136 struct inet_frag_queue *frag = from_timer(frag, t, timer);
b836c99f 137 struct frag_queue *fq;
9fb9cbb1 138
78802011 139 fq = container_of(frag, struct frag_queue, q);
9fb9cbb1 140
a39aca67 141 ip6frag_expire_frag_queue(fq->q.fqdir->net, fq);
9fb9cbb1
YK
142}
143
144/* Creation primitives. */
648700f7
ED
145static struct frag_queue *fq_find(struct net *net, __be32 id, u32 user,
146 const struct ipv6hdr *hdr, int iif)
9fb9cbb1 147{
8b0adbe3 148 struct nft_ct_frag6_pernet *nf_frag = nf_frag_pernet(net);
648700f7
ED
149 struct frag_v6_compare_key key = {
150 .id = id,
151 .saddr = hdr->saddr,
152 .daddr = hdr->daddr,
153 .user = user,
154 .iif = iif,
155 };
2588fe1d 156 struct inet_frag_queue *q;
9fb9cbb1 157
8b0adbe3 158 q = inet_frag_find(nf_frag->fqdir, &key);
2d44ed22 159 if (!q)
5a3da1fe 160 return NULL;
2d44ed22 161
b836c99f 162 return container_of(q, struct frag_queue, q);
9fb9cbb1
YK
163}
164
9fb9cbb1 165
b836c99f 166static int nf_ct_frag6_queue(struct frag_queue *fq, struct sk_buff *skb,
58c0fb0d 167 const struct frag_hdr *fhdr, int nhoff)
9fb9cbb1 168{
4cdd3408 169 unsigned int payload_len;
997dd964
PO
170 struct net_device *dev;
171 struct sk_buff *prev;
172 int offset, end, err;
b8dd6a22 173 u8 ecn;
9fb9cbb1 174
06aa8b8a 175 if (fq->q.flags & INET_FRAG_COMPLETE) {
698f9315 176 pr_debug("Already completed\n");
9fb9cbb1
YK
177 goto err;
178 }
179
4cdd3408
PM
180 payload_len = ntohs(ipv6_hdr(skb)->payload_len);
181
9fb9cbb1 182 offset = ntohs(fhdr->frag_off) & ~0x7;
4cdd3408 183 end = offset + (payload_len -
0660e03f 184 ((u8 *)(fhdr + 1) - (u8 *)(ipv6_hdr(skb) + 1)));
9fb9cbb1
YK
185
186 if ((unsigned int)end > IPV6_MAXPLEN) {
0d53778e 187 pr_debug("offset is too large.\n");
83f1999c 188 return -EINVAL;
9fb9cbb1
YK
189 }
190
b8dd6a22
HFS
191 ecn = ip6_frag_ecn(ipv6_hdr(skb));
192
d56f90a7
ACM
193 if (skb->ip_summed == CHECKSUM_COMPLETE) {
194 const unsigned char *nh = skb_network_header(skb);
1ab1457c 195 skb->csum = csum_sub(skb->csum,
d56f90a7 196 csum_partial(nh, (u8 *)(fhdr + 1) - nh,
9fb9cbb1 197 0));
d56f90a7 198 }
9fb9cbb1
YK
199
200 /* Is this the final fragment? */
201 if (!(fhdr->frag_off & htons(IP6_MF))) {
202 /* If we already have some bits beyond end
203 * or have different end, the segment is corrupted.
204 */
5ab11c98 205 if (end < fq->q.len ||
06aa8b8a 206 ((fq->q.flags & INET_FRAG_LAST_IN) && end != fq->q.len)) {
0d53778e 207 pr_debug("already received last fragment\n");
9fb9cbb1
YK
208 goto err;
209 }
06aa8b8a 210 fq->q.flags |= INET_FRAG_LAST_IN;
5ab11c98 211 fq->q.len = end;
9fb9cbb1
YK
212 } else {
213 /* Check if the fragment is rounded to 8 bytes.
214 * Required by the RFC.
215 */
216 if (end & 0x7) {
217 /* RFC2460 says always send parameter problem in
218 * this case. -DaveM
219 */
0d53778e 220 pr_debug("end of fragment not rounded to 8 bytes.\n");
093ba729 221 inet_frag_kill(&fq->q);
83f1999c 222 return -EPROTO;
9fb9cbb1 223 }
5ab11c98 224 if (end > fq->q.len) {
9fb9cbb1 225 /* Some bits beyond end -> corruption. */
06aa8b8a 226 if (fq->q.flags & INET_FRAG_LAST_IN) {
0d53778e 227 pr_debug("last packet already reached.\n");
9fb9cbb1
YK
228 goto err;
229 }
5ab11c98 230 fq->q.len = end;
9fb9cbb1
YK
231 }
232 }
233
234 if (end == offset)
235 goto err;
236
237 /* Point into the IP datagram 'data' part. */
238 if (!pskb_pull(skb, (u8 *) (fhdr + 1) - skb->data)) {
0d53778e 239 pr_debug("queue: message is too short.\n");
9fb9cbb1
YK
240 goto err;
241 }
b38dfee3 242 if (pskb_trim_rcsum(skb, end - offset)) {
0d53778e 243 pr_debug("Can't trim\n");
b38dfee3 244 goto err;
9fb9cbb1
YK
245 }
246
997dd964
PO
247 /* Note : skb->rbnode and skb->dev share the same location. */
248 dev = skb->dev;
f2d1c724
ED
249 /* Makes sure compiler wont do silly aliasing games */
250 barrier();
9fb9cbb1 251
997dd964
PO
252 prev = fq->q.fragments_tail;
253 err = inet_frag_queue_insert(&fq->q, skb, offset, end);
8a3dca63
GN
254 if (err) {
255 if (err == IPFRAG_DUP) {
256 /* No error for duplicates, pretend they got queued. */
4ecbb1c2 257 kfree_skb_reason(skb, SKB_DROP_REASON_DUP_FRAG);
8a3dca63
GN
258 return -EINPROGRESS;
259 }
997dd964 260 goto insert_error;
8a3dca63 261 }
997dd964
PO
262
263 if (dev)
264 fq->iif = dev->ifindex;
9fb9cbb1 265
5ab11c98 266 fq->q.stamp = skb->tstamp;
335c8cf3 267 fq->q.mono_delivery_time = skb->mono_delivery_time;
5ab11c98 268 fq->q.meat += skb->len;
b8dd6a22 269 fq->ecn |= ecn;
4cdd3408
PM
270 if (payload_len > fq->q.max_size)
271 fq->q.max_size = payload_len;
6ce3b4dc 272 add_frag_mem_limit(fq->q.fqdir, skb->truesize);
9fb9cbb1
YK
273
274 /* The first fragment.
275 * nhoffset is obtained from the first fragment, of course.
276 */
277 if (offset == 0) {
278 fq->nhoffset = nhoff;
06aa8b8a 279 fq->q.flags |= INET_FRAG_FIRST_IN;
9fb9cbb1 280 }
3ef0eb0d 281
997dd964
PO
282 if (fq->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
283 fq->q.meat == fq->q.len) {
284 unsigned long orefdst = skb->_skb_refdst;
9fb9cbb1 285
997dd964
PO
286 skb->_skb_refdst = 0UL;
287 err = nf_ct_frag6_reasm(fq, skb, prev, dev);
288 skb->_skb_refdst = orefdst;
a0d56cb9
GN
289
290 /* After queue has assumed skb ownership, only 0 or
291 * -EINPROGRESS must be returned.
292 */
293 return err ? -EINPROGRESS : 0;
997dd964
PO
294 }
295
296 skb_dst_drop(skb);
18685451 297 skb_orphan(skb);
997dd964
PO
298 return -EINPROGRESS;
299
300insert_error:
093ba729 301 inet_frag_kill(&fq->q);
9fb9cbb1 302err:
997dd964 303 skb_dst_drop(skb);
83f1999c 304 return -EINVAL;
9fb9cbb1
YK
305}
306
307/*
308 * Check if this packet is complete.
9fb9cbb1
YK
309 *
310 * It is called with locked fq, and caller must check that
311 * queue is eligible for reassembly i.e. it is not COMPLETE,
312 * the last and the first frames arrived and all the bits are here.
313 */
997dd964
PO
314static int nf_ct_frag6_reasm(struct frag_queue *fq, struct sk_buff *skb,
315 struct sk_buff *prev_tail, struct net_device *dev)
9fb9cbb1 316{
997dd964
PO
317 void *reasm_data;
318 int payload_len;
b8dd6a22 319 u8 ecn;
9fb9cbb1 320
093ba729 321 inet_frag_kill(&fq->q);
9fb9cbb1 322
b8dd6a22
HFS
323 ecn = ip_frag_ecn_table[fq->ecn];
324 if (unlikely(ecn == 0xff))
997dd964 325 goto err;
b8dd6a22 326
997dd964
PO
327 reasm_data = inet_frag_reasm_prepare(&fq->q, skb, prev_tail);
328 if (!reasm_data)
329 goto err;
330
80bfab79 331 payload_len = -skb_network_offset(skb) -
5ab11c98 332 sizeof(struct ipv6hdr) + fq->q.len -
80bfab79 333 sizeof(struct frag_hdr);
9fb9cbb1 334 if (payload_len > IPV6_MAXPLEN) {
daaa7d64
FW
335 net_dbg_ratelimited("nf_ct_frag6_reasm: payload len = %d\n",
336 payload_len);
997dd964 337 goto err;
029f7f3b
FW
338 }
339
9fb9cbb1
YK
340 /* We have to remove fragment header from datagram and to relocate
341 * header in order to calculate ICV correctly. */
997dd964
PO
342 skb_network_header(skb)[fq->nhoffset] = skb_transport_header(skb)[0];
343 memmove(skb->head + sizeof(struct frag_hdr), skb->head,
344 (skb->data - skb->head) - sizeof(struct frag_hdr));
345 skb->mac_header += sizeof(struct frag_hdr);
346 skb->network_header += sizeof(struct frag_hdr);
347
348 skb_reset_transport_header(skb);
9fb9cbb1 349
891584f4 350 inet_frag_reasm_finish(&fq->q, skb, reasm_data, false);
997dd964
PO
351
352 skb->ignore_df = 1;
353 skb->dev = dev;
354 ipv6_hdr(skb)->payload_len = htons(payload_len);
355 ipv6_change_dsfield(ipv6_hdr(skb), 0xff, ecn);
356 IP6CB(skb)->frag_max_size = sizeof(struct ipv6hdr) + fq->q.max_size;
68f9f9c2 357 IP6CB(skb)->flags |= IP6SKB_FRAGMENTED;
9fb9cbb1
YK
358
359 /* Yes, and fold redundant checksum back. 8) */
997dd964
PO
360 if (skb->ip_summed == CHECKSUM_COMPLETE)
361 skb->csum = csum_partial(skb_network_header(skb),
362 skb_network_header_len(skb),
363 skb->csum);
9fb9cbb1 364
fa0f5273 365 fq->q.rb_fragments = RB_ROOT;
ea8fbe8f 366 fq->q.fragments_tail = NULL;
997dd964
PO
367 fq->q.last_run_head = NULL;
368
369 return 0;
9fb9cbb1 370
997dd964
PO
371err:
372 inet_frag_kill(&fq->q);
373 return -EINVAL;
9fb9cbb1
YK
374}
375
376/*
377 * find the header just before Fragment Header.
378 *
379 * if success return 0 and set ...
380 * (*prevhdrp): the value of "Next Header Field" in the header
381 * just before Fragment Header.
382 * (*prevhoff): the offset of "Next Header Field" in the header
383 * just before Fragment Header.
384 * (*fhoff) : the offset of Fragment Header.
385 *
386 * Based on ipv6_skip_hdr() in net/ipv6/exthdr.c
387 *
388 */
389static int
390find_prev_fhdr(struct sk_buff *skb, u8 *prevhdrp, int *prevhoff, int *fhoff)
391{
0660e03f 392 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
6b88dd96
ACM
393 const int netoff = skb_network_offset(skb);
394 u8 prev_nhoff = netoff + offsetof(struct ipv6hdr, nexthdr);
395 int start = netoff + sizeof(struct ipv6hdr);
9fb9cbb1
YK
396 int len = skb->len - start;
397 u8 prevhdr = NEXTHDR_IPV6;
398
1ab1457c
YH
399 while (nexthdr != NEXTHDR_FRAGMENT) {
400 struct ipv6_opt_hdr hdr;
401 int hdrlen;
9fb9cbb1
YK
402
403 if (!ipv6_ext_hdr(nexthdr)) {
404 return -1;
405 }
1ab1457c 406 if (nexthdr == NEXTHDR_NONE) {
0d53778e 407 pr_debug("next header is none\n");
9fb9cbb1
YK
408 return -1;
409 }
d1238d53
CP
410 if (len < (int)sizeof(struct ipv6_opt_hdr)) {
411 pr_debug("too short\n");
412 return -1;
413 }
1ab1457c
YH
414 if (skb_copy_bits(skb, start, &hdr, sizeof(hdr)))
415 BUG();
416 if (nexthdr == NEXTHDR_AUTH)
416e8126 417 hdrlen = ipv6_authlen(&hdr);
1ab1457c
YH
418 else
419 hdrlen = ipv6_optlen(&hdr);
9fb9cbb1
YK
420
421 prevhdr = nexthdr;
422 prev_nhoff = start;
423
1ab1457c
YH
424 nexthdr = hdr.nexthdr;
425 len -= hdrlen;
426 start += hdrlen;
427 }
9fb9cbb1
YK
428
429 if (len < 0)
430 return -1;
431
432 *prevhdrp = prevhdr;
433 *prevhoff = prev_nhoff;
434 *fhoff = start;
435
436 return 0;
437}
438
daaa7d64 439int nf_ct_frag6_gather(struct net *net, struct sk_buff *skb, u32 user)
9fb9cbb1 440{
83f1999c 441 u16 savethdr = skb->transport_header;
9d9e937b 442 u8 nexthdr = NEXTHDR_FRAGMENT;
daaa7d64 443 int fhoff, nhoff, ret;
9fb9cbb1 444 struct frag_hdr *fhdr;
b836c99f 445 struct frag_queue *fq;
9fb9cbb1 446 struct ipv6hdr *hdr;
9fb9cbb1 447 u8 prevhdr;
9fb9cbb1
YK
448
449 /* Jumbo payload inhibits frag. header */
0660e03f 450 if (ipv6_hdr(skb)->payload_len == 0) {
0d53778e 451 pr_debug("payload len = 0\n");
9b57da06 452 return 0;
9fb9cbb1
YK
453 }
454
455 if (find_prev_fhdr(skb, &prevhdr, &nhoff, &fhoff) < 0)
9b57da06 456 return 0;
9fb9cbb1 457
9d9e937b
GK
458 /* Discard the first fragment if it does not include all headers
459 * RFC 8200, Section 4.5
460 */
2d8f6481 461 if (ipv6frag_thdr_truncated(skb, fhoff, &nexthdr)) {
9d9e937b
GK
462 pr_debug("Drop incomplete fragment\n");
463 return 0;
464 }
465
029f7f3b 466 if (!pskb_may_pull(skb, fhoff + sizeof(*fhdr)))
daaa7d64 467 return -ENOMEM;
9fb9cbb1 468
029f7f3b
FW
469 skb_set_transport_header(skb, fhoff);
470 hdr = ipv6_hdr(skb);
471 fhdr = (struct frag_hdr *)skb_transport_header(skb);
9fb9cbb1 472
648700f7
ED
473 fq = fq_find(net, fhdr->identification, user, hdr,
474 skb->dev ? skb->dev->ifindex : 0);
9fb9cbb1 475 if (fq == NULL) {
0d53778e 476 pr_debug("Can't find and can't create new queue\n");
daaa7d64 477 return -ENOMEM;
9fb9cbb1
YK
478 }
479
b9c69896 480 spin_lock_bh(&fq->q.lock);
9fb9cbb1 481
83f1999c 482 ret = nf_ct_frag6_queue(fq, skb, fhdr, nhoff);
997dd964
PO
483 if (ret == -EPROTO) {
484 skb->transport_header = savethdr;
485 ret = 0;
9fb9cbb1
YK
486 }
487
daaa7d64 488 spin_unlock_bh(&fq->q.lock);
093ba729 489 inet_frag_put(&fq->q);
daaa7d64 490 return ret;
9fb9cbb1 491}
5b490047 492EXPORT_SYMBOL_GPL(nf_ct_frag6_gather);
9fb9cbb1 493
c038a767
AW
494static int nf_ct_net_init(struct net *net)
495{
8b0adbe3 496 struct nft_ct_frag6_pernet *nf_frag = nf_frag_pernet(net);
787bea77
ED
497 int res;
498
8b0adbe3 499 res = fqdir_init(&nf_frag->fqdir, &nf_frags, net);
787bea77
ED
500 if (res < 0)
501 return res;
4907abc6 502
8b0adbe3
FW
503 nf_frag->fqdir->high_thresh = IPV6_FRAG_HIGH_THRESH;
504 nf_frag->fqdir->low_thresh = IPV6_FRAG_LOW_THRESH;
505 nf_frag->fqdir->timeout = IPV6_FRAG_TIMEOUT;
4907abc6 506
787bea77
ED
507 res = nf_ct_frag6_sysctl_register(net);
508 if (res < 0)
8b0adbe3 509 fqdir_exit(nf_frag->fqdir);
787bea77 510 return res;
c038a767
AW
511}
512
d5dd8879
ED
513static void nf_ct_net_pre_exit(struct net *net)
514{
8b0adbe3
FW
515 struct nft_ct_frag6_pernet *nf_frag = nf_frag_pernet(net);
516
517 fqdir_pre_exit(nf_frag->fqdir);
d5dd8879
ED
518}
519
c038a767
AW
520static void nf_ct_net_exit(struct net *net)
521{
8b0adbe3
FW
522 struct nft_ct_frag6_pernet *nf_frag = nf_frag_pernet(net);
523
c038a767 524 nf_ct_frags6_sysctl_unregister(net);
8b0adbe3 525 fqdir_exit(nf_frag->fqdir);
c038a767
AW
526}
527
528static struct pernet_operations nf_ct_net_ops = {
d5dd8879
ED
529 .init = nf_ct_net_init,
530 .pre_exit = nf_ct_net_pre_exit,
531 .exit = nf_ct_net_exit,
8b0adbe3
FW
532 .id = &nf_frag_pernet_id,
533 .size = sizeof(struct nft_ct_frag6_pernet),
c038a767
AW
534};
535
70b095c8
FW
536static const struct rhashtable_params nfct_rhash_params = {
537 .head_offset = offsetof(struct inet_frag_queue, node),
538 .hashfn = ip6frag_key_hashfn,
539 .obj_hashfn = ip6frag_obj_hashfn,
540 .obj_cmpfn = ip6frag_obj_cmpfn,
541 .automatic_shrinking = true,
542};
543
9fb9cbb1
YK
544int nf_ct_frag6_init(void)
545{
c038a767
AW
546 int ret = 0;
547
70b095c8 548 nf_frags.constructor = ip6frag_init;
c9547709 549 nf_frags.destructor = NULL;
b836c99f 550 nf_frags.qsize = sizeof(struct frag_queue);
e521db9d 551 nf_frags.frag_expire = nf_ct_frag6_expire;
d4ad4d22 552 nf_frags.frags_cache_name = nf_frags_cache_name;
70b095c8 553 nf_frags.rhash_params = nfct_rhash_params;
d4ad4d22
NA
554 ret = inet_frags_init(&nf_frags);
555 if (ret)
556 goto out;
c038a767
AW
557 ret = register_pernet_subsys(&nf_ct_net_ops);
558 if (ret)
e97c3e27 559 inet_frags_fini(&nf_frags);
e97c3e27 560
d4ad4d22 561out:
c038a767 562 return ret;
9fb9cbb1
YK
563}
564
565void nf_ct_frag6_cleanup(void)
566{
c038a767 567 unregister_pernet_subsys(&nf_ct_net_ops);
7eb95156 568 inet_frags_fini(&nf_frags);
9fb9cbb1 569}