]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/ieee802154/6lowpan/reassembly.c
ipv6: remove dependency of nf_defrag_ipv6 on ipv6 module
[mirror_ubuntu-bionic-kernel.git] / net / ieee802154 / 6lowpan / reassembly.c
CommitLineData
7240cdec
AA
1/* 6LoWPAN fragment reassembly
2 *
3 *
4 * Authors:
5 * Alexander Aring <aar@pengutronix.de>
6 *
7 * Based on: net/ipv6/reassembly.c
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15#define pr_fmt(fmt) "6LoWPAN: " fmt
16
17#include <linux/net.h>
18#include <linux/list.h>
19#include <linux/netdevice.h>
20#include <linux/random.h>
21#include <linux/jhash.h>
22#include <linux/skbuff.h>
23#include <linux/slab.h>
24#include <linux/export.h>
25
26#include <net/ieee802154_netdev.h>
cefc8c8a 27#include <net/6lowpan.h>
cf1b4a13 28#include <net/ipv6_frag.h>
7240cdec
AA
29#include <net/inet_frag.h>
30
8691ee59 31#include "6lowpan_i.h"
7240cdec 32
d4ad4d22
NA
33static const char lowpan_frags_cache_name[] = "lowpan-frags";
34
7240cdec
AA
35static struct inet_frags lowpan_frags;
36
37static int lowpan_frag_reasm(struct lowpan_frag_queue *fq,
f4606583 38 struct sk_buff *prev, struct net_device *ldev);
7240cdec 39
36c77782 40static void lowpan_frag_init(struct inet_frag_queue *q, const void *a)
7240cdec 41{
4e722036 42 const struct frag_lowpan_compare_key *key = a;
7240cdec 43 struct lowpan_frag_queue *fq;
7240cdec
AA
44
45 fq = container_of(q, struct lowpan_frag_queue, q);
46
4e722036
ED
47 BUILD_BUG_ON(sizeof(*key) > sizeof(q->key));
48 memcpy(&q->key, key, sizeof(*key));
7240cdec 49}
7240cdec 50
78802011 51static void lowpan_frag_expire(struct timer_list *t)
7240cdec 52{
78802011 53 struct inet_frag_queue *frag = from_timer(frag, t, timer);
7240cdec
AA
54 struct frag_queue *fq;
55 struct net *net;
56
78802011 57 fq = container_of(frag, struct frag_queue, q);
7240cdec
AA
58 net = container_of(fq->q.net, struct net, ieee802154_lowpan.frags);
59
17794326
FW
60 spin_lock(&fq->q.lock);
61
06aa8b8a 62 if (fq->q.flags & INET_FRAG_COMPLETE)
17794326
FW
63 goto out;
64
9bdf9ca9 65 inet_frag_kill(&fq->q);
17794326
FW
66out:
67 spin_unlock(&fq->q.lock);
9bdf9ca9 68 inet_frag_put(&fq->q);
7240cdec
AA
69}
70
71static inline struct lowpan_frag_queue *
72a5e6bb 72fq_find(struct net *net, const struct lowpan_802154_cb *cb,
ae531b94
PB
73 const struct ieee802154_addr *src,
74 const struct ieee802154_addr *dst)
7240cdec 75{
599018a7
LR
76 struct netns_ieee802154_lowpan *ieee802154_lowpan =
77 net_ieee802154_lowpan(net);
a547d85c 78 struct frag_lowpan_compare_key key = {};
4e722036 79 struct inet_frag_queue *q;
7240cdec 80
a547d85c
AA
81 key.tag = cb->d_tag;
82 key.d_size = cb->d_size;
83 key.src = *src;
84 key.dst = *dst;
85
4e722036 86 q = inet_frag_find(&ieee802154_lowpan->frags, &key);
79583fc1 87 if (!q)
7240cdec 88 return NULL;
79583fc1 89
7240cdec
AA
90 return container_of(q, struct lowpan_frag_queue, q);
91}
92
93static int lowpan_frag_queue(struct lowpan_frag_queue *fq,
72a5e6bb 94 struct sk_buff *skb, u8 frag_type)
7240cdec
AA
95{
96 struct sk_buff *prev, *next;
f4606583 97 struct net_device *ldev;
7240cdec
AA
98 int end, offset;
99
06aa8b8a 100 if (fq->q.flags & INET_FRAG_COMPLETE)
7240cdec
AA
101 goto err;
102
72a5e6bb
AA
103 offset = lowpan_802154_cb(skb)->d_offset << 3;
104 end = lowpan_802154_cb(skb)->d_size;
7240cdec
AA
105
106 /* Is this the final fragment? */
107 if (offset + skb->len == end) {
108 /* If we already have some bits beyond end
109 * or have different end, the segment is corrupted.
110 */
111 if (end < fq->q.len ||
06aa8b8a 112 ((fq->q.flags & INET_FRAG_LAST_IN) && end != fq->q.len))
7240cdec 113 goto err;
06aa8b8a 114 fq->q.flags |= INET_FRAG_LAST_IN;
7240cdec
AA
115 fq->q.len = end;
116 } else {
117 if (end > fq->q.len) {
118 /* Some bits beyond end -> corruption. */
06aa8b8a 119 if (fq->q.flags & INET_FRAG_LAST_IN)
7240cdec
AA
120 goto err;
121 fq->q.len = end;
122 }
123 }
124
125 /* Find out which fragments are in front and at the back of us
126 * in the chain of fragments so far. We must know where to put
127 * this fragment, right?
128 */
129 prev = fq->q.fragments_tail;
72a5e6bb
AA
130 if (!prev ||
131 lowpan_802154_cb(prev)->d_offset <
132 lowpan_802154_cb(skb)->d_offset) {
7240cdec
AA
133 next = NULL;
134 goto found;
135 }
136 prev = NULL;
137 for (next = fq->q.fragments; next != NULL; next = next->next) {
72a5e6bb
AA
138 if (lowpan_802154_cb(next)->d_offset >=
139 lowpan_802154_cb(skb)->d_offset)
7240cdec
AA
140 break; /* bingo! */
141 prev = next;
142 }
143
144found:
145 /* Insert this fragment in the chain of fragments. */
146 skb->next = next;
147 if (!next)
148 fq->q.fragments_tail = skb;
149 if (prev)
150 prev->next = skb;
151 else
152 fq->q.fragments = skb;
153
f4606583
AA
154 ldev = skb->dev;
155 if (ldev)
7240cdec
AA
156 skb->dev = NULL;
157
158 fq->q.stamp = skb->tstamp;
72a5e6bb 159 if (frag_type == LOWPAN_DISPATCH_FRAG1)
06aa8b8a 160 fq->q.flags |= INET_FRAG_FIRST_IN;
72a5e6bb
AA
161
162 fq->q.meat += skb->len;
0e60d245 163 add_frag_mem_limit(fq->q.net, skb->truesize);
7240cdec 164
06aa8b8a 165 if (fq->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
7240cdec
AA
166 fq->q.meat == fq->q.len) {
167 int res;
168 unsigned long orefdst = skb->_skb_refdst;
169
170 skb->_skb_refdst = 0UL;
f4606583 171 res = lowpan_frag_reasm(fq, prev, ldev);
7240cdec
AA
172 skb->_skb_refdst = orefdst;
173 return res;
174 }
175
7240cdec
AA
176 return -1;
177err:
178 kfree_skb(skb);
179 return -1;
180}
181
182/* Check if this packet is complete.
183 * Returns NULL on failure by any reason, and pointer
184 * to current nexthdr field in reassembled frame.
185 *
186 * It is called with locked fq, and caller must check that
187 * queue is eligible for reassembly i.e. it is not COMPLETE,
188 * the last and the first frames arrived and all the bits are here.
189 */
190static int lowpan_frag_reasm(struct lowpan_frag_queue *fq, struct sk_buff *prev,
f4606583 191 struct net_device *ldev)
7240cdec
AA
192{
193 struct sk_buff *fp, *head = fq->q.fragments;
194 int sum_truesize;
195
9bdf9ca9 196 inet_frag_kill(&fq->q);
7240cdec
AA
197
198 /* Make the one we just received the head. */
199 if (prev) {
200 head = prev->next;
201 fp = skb_clone(head, GFP_ATOMIC);
202
203 if (!fp)
204 goto out_oom;
205
206 fp->next = head->next;
207 if (!fp->next)
208 fq->q.fragments_tail = fp;
209 prev->next = fp;
210
211 skb_morph(head, fq->q.fragments);
212 head->next = fq->q.fragments->next;
213
214 consume_skb(fq->q.fragments);
215 fq->q.fragments = head;
216 }
217
218 /* Head of list must not be cloned. */
219 if (skb_unclone(head, GFP_ATOMIC))
220 goto out_oom;
221
222 /* If the first fragment is fragmented itself, we split
223 * it to two chunks: the first with data and paged part
224 * and the second, holding only fragments.
225 */
226 if (skb_has_frag_list(head)) {
227 struct sk_buff *clone;
228 int i, plen = 0;
229
230 clone = alloc_skb(0, GFP_ATOMIC);
231 if (!clone)
232 goto out_oom;
233 clone->next = head->next;
234 head->next = clone;
235 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
236 skb_frag_list_init(head);
237 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
238 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
239 clone->len = head->data_len - plen;
240 clone->data_len = clone->len;
241 head->data_len -= clone->len;
242 head->len -= clone->len;
0e60d245 243 add_frag_mem_limit(fq->q.net, clone->truesize);
7240cdec
AA
244 }
245
246 WARN_ON(head == NULL);
247
248 sum_truesize = head->truesize;
249 for (fp = head->next; fp;) {
250 bool headstolen;
251 int delta;
252 struct sk_buff *next = fp->next;
253
254 sum_truesize += fp->truesize;
255 if (skb_try_coalesce(head, fp, &headstolen, &delta)) {
256 kfree_skb_partial(fp, headstolen);
257 } else {
258 if (!skb_shinfo(head)->frag_list)
259 skb_shinfo(head)->frag_list = fp;
260 head->data_len += fp->len;
261 head->len += fp->len;
262 head->truesize += fp->truesize;
263 }
264 fp = next;
265 }
0e60d245 266 sub_frag_mem_limit(fq->q.net, sum_truesize);
7240cdec
AA
267
268 head->next = NULL;
f4606583 269 head->dev = ldev;
7240cdec
AA
270 head->tstamp = fq->q.stamp;
271
272 fq->q.fragments = NULL;
273 fq->q.fragments_tail = NULL;
274
275 return 1;
276out_oom:
277 net_dbg_ratelimited("lowpan_frag_reasm: no memory for reassembly\n");
278 return -1;
279}
280
72a5e6bb
AA
281static int lowpan_frag_rx_handlers_result(struct sk_buff *skb,
282 lowpan_rx_result res)
283{
284 switch (res) {
285 case RX_QUEUED:
286 return NET_RX_SUCCESS;
287 case RX_CONTINUE:
288 /* nobody cared about this packet */
289 net_warn_ratelimited("%s: received unknown dispatch\n",
290 __func__);
291
292 /* fall-through */
293 default:
294 /* all others failure */
295 return NET_RX_DROP;
296 }
297}
298
299static lowpan_rx_result lowpan_frag_rx_h_iphc(struct sk_buff *skb)
300{
301 int ret;
302
303 if (!lowpan_is_iphc(*skb_network_header(skb)))
304 return RX_CONTINUE;
305
306 ret = lowpan_iphc_decompress(skb);
307 if (ret < 0)
308 return RX_DROP;
309
310 return RX_QUEUED;
311}
312
313static int lowpan_invoke_frag_rx_handlers(struct sk_buff *skb)
314{
315 lowpan_rx_result res;
316
317#define CALL_RXH(rxh) \
318 do { \
319 res = rxh(skb); \
320 if (res != RX_CONTINUE) \
321 goto rxh_next; \
322 } while (0)
323
324 /* likely at first */
325 CALL_RXH(lowpan_frag_rx_h_iphc);
326 CALL_RXH(lowpan_rx_h_ipv6);
327
328rxh_next:
329 return lowpan_frag_rx_handlers_result(skb, res);
330#undef CALL_RXH
331}
332
333#define LOWPAN_FRAG_DGRAM_SIZE_HIGH_MASK 0x07
334#define LOWPAN_FRAG_DGRAM_SIZE_HIGH_SHIFT 8
335
336static int lowpan_get_cb(struct sk_buff *skb, u8 frag_type,
337 struct lowpan_802154_cb *cb)
7240cdec
AA
338{
339 bool fail;
72a5e6bb 340 u8 high = 0, low = 0;
f870b8c6 341 __be16 d_tag = 0;
7240cdec 342
72a5e6bb 343 fail = lowpan_fetch_skb(skb, &high, 1);
7240cdec 344 fail |= lowpan_fetch_skb(skb, &low, 1);
72a5e6bb
AA
345 /* remove the dispatch value and use first three bits as high value
346 * for the datagram size
347 */
348 cb->d_size = (high & LOWPAN_FRAG_DGRAM_SIZE_HIGH_MASK) <<
349 LOWPAN_FRAG_DGRAM_SIZE_HIGH_SHIFT | low;
f870b8c6 350 fail |= lowpan_fetch_skb(skb, &d_tag, 2);
72a5e6bb 351 cb->d_tag = ntohs(d_tag);
7240cdec
AA
352
353 if (frag_type == LOWPAN_DISPATCH_FRAGN) {
72a5e6bb 354 fail |= lowpan_fetch_skb(skb, &cb->d_offset, 1);
7240cdec
AA
355 } else {
356 skb_reset_network_header(skb);
72a5e6bb
AA
357 cb->d_offset = 0;
358 /* check if datagram_size has ipv6hdr on FRAG1 */
359 fail |= cb->d_size < sizeof(struct ipv6hdr);
360 /* check if we can dereference the dispatch value */
361 fail |= !skb->len;
7240cdec
AA
362 }
363
364 if (unlikely(fail))
365 return -EIO;
366
367 return 0;
368}
369
72a5e6bb 370int lowpan_frag_rcv(struct sk_buff *skb, u8 frag_type)
7240cdec
AA
371{
372 struct lowpan_frag_queue *fq;
373 struct net *net = dev_net(skb->dev);
72a5e6bb 374 struct lowpan_802154_cb *cb = lowpan_802154_cb(skb);
a547d85c 375 struct ieee802154_hdr hdr = {};
7240cdec
AA
376 int err;
377
72a5e6bb
AA
378 if (ieee802154_hdr_peek_addrs(skb, &hdr) < 0)
379 goto err;
ae531b94 380
72a5e6bb 381 err = lowpan_get_cb(skb, frag_type, cb);
7240cdec
AA
382 if (err < 0)
383 goto err;
384
72a5e6bb
AA
385 if (frag_type == LOWPAN_DISPATCH_FRAG1) {
386 err = lowpan_invoke_frag_rx_handlers(skb);
387 if (err == NET_RX_DROP)
388 goto err;
389 }
390
391 if (cb->d_size > IPV6_MIN_MTU) {
6697dabe 392 net_warn_ratelimited("lowpan_frag_rcv: datagram size exceeds MTU\n");
7240cdec 393 goto err;
6697dabe 394 }
7240cdec 395
72a5e6bb 396 fq = fq_find(net, cb, &hdr.source, &hdr.dest);
7240cdec
AA
397 if (fq != NULL) {
398 int ret;
4710d806 399
7240cdec
AA
400 spin_lock(&fq->q.lock);
401 ret = lowpan_frag_queue(fq, skb, frag_type);
402 spin_unlock(&fq->q.lock);
403
9bdf9ca9 404 inet_frag_put(&fq->q);
7240cdec
AA
405 return ret;
406 }
407
408err:
409 kfree_skb(skb);
410 return -1;
411}
7240cdec
AA
412
413#ifdef CONFIG_SYSCTL
1bab4c75 414
7240cdec
AA
415static struct ctl_table lowpan_frags_ns_ctl_table[] = {
416 {
417 .procname = "6lowpanfrag_high_thresh",
418 .data = &init_net.ieee802154_lowpan.frags.high_thresh,
c88be42e 419 .maxlen = sizeof(unsigned long),
7240cdec 420 .mode = 0644,
c88be42e 421 .proc_handler = proc_doulongvec_minmax,
1bab4c75 422 .extra1 = &init_net.ieee802154_lowpan.frags.low_thresh
7240cdec
AA
423 },
424 {
425 .procname = "6lowpanfrag_low_thresh",
426 .data = &init_net.ieee802154_lowpan.frags.low_thresh,
c88be42e 427 .maxlen = sizeof(unsigned long),
7240cdec 428 .mode = 0644,
c88be42e 429 .proc_handler = proc_doulongvec_minmax,
1bab4c75 430 .extra2 = &init_net.ieee802154_lowpan.frags.high_thresh
7240cdec
AA
431 },
432 {
433 .procname = "6lowpanfrag_time",
434 .data = &init_net.ieee802154_lowpan.frags.timeout,
435 .maxlen = sizeof(int),
436 .mode = 0644,
437 .proc_handler = proc_dointvec_jiffies,
438 },
7240cdec
AA
439 { }
440};
441
e3a57d18
FW
442/* secret interval has been deprecated */
443static int lowpan_frags_secret_interval_unused;
7240cdec
AA
444static struct ctl_table lowpan_frags_ctl_table[] = {
445 {
446 .procname = "6lowpanfrag_secret_interval",
e3a57d18 447 .data = &lowpan_frags_secret_interval_unused,
7240cdec
AA
448 .maxlen = sizeof(int),
449 .mode = 0644,
450 .proc_handler = proc_dointvec_jiffies,
451 },
452 { }
453};
454
455static int __net_init lowpan_frags_ns_sysctl_register(struct net *net)
456{
457 struct ctl_table *table;
458 struct ctl_table_header *hdr;
599018a7
LR
459 struct netns_ieee802154_lowpan *ieee802154_lowpan =
460 net_ieee802154_lowpan(net);
7240cdec
AA
461
462 table = lowpan_frags_ns_ctl_table;
463 if (!net_eq(net, &init_net)) {
464 table = kmemdup(table, sizeof(lowpan_frags_ns_ctl_table),
465 GFP_KERNEL);
466 if (table == NULL)
467 goto err_alloc;
468
599018a7 469 table[0].data = &ieee802154_lowpan->frags.high_thresh;
1bab4c75
NA
470 table[0].extra1 = &ieee802154_lowpan->frags.low_thresh;
471 table[0].extra2 = &init_net.ieee802154_lowpan.frags.high_thresh;
599018a7 472 table[1].data = &ieee802154_lowpan->frags.low_thresh;
1bab4c75 473 table[1].extra2 = &ieee802154_lowpan->frags.high_thresh;
599018a7 474 table[2].data = &ieee802154_lowpan->frags.timeout;
7240cdec
AA
475
476 /* Don't export sysctls to unprivileged users */
477 if (net->user_ns != &init_user_ns)
478 table[0].procname = NULL;
479 }
480
481 hdr = register_net_sysctl(net, "net/ieee802154/6lowpan", table);
482 if (hdr == NULL)
483 goto err_reg;
484
599018a7 485 ieee802154_lowpan->sysctl.frags_hdr = hdr;
7240cdec
AA
486 return 0;
487
488err_reg:
489 if (!net_eq(net, &init_net))
490 kfree(table);
491err_alloc:
492 return -ENOMEM;
493}
494
495static void __net_exit lowpan_frags_ns_sysctl_unregister(struct net *net)
496{
497 struct ctl_table *table;
599018a7
LR
498 struct netns_ieee802154_lowpan *ieee802154_lowpan =
499 net_ieee802154_lowpan(net);
7240cdec 500
599018a7
LR
501 table = ieee802154_lowpan->sysctl.frags_hdr->ctl_table_arg;
502 unregister_net_sysctl_table(ieee802154_lowpan->sysctl.frags_hdr);
7240cdec
AA
503 if (!net_eq(net, &init_net))
504 kfree(table);
505}
506
507static struct ctl_table_header *lowpan_ctl_header;
508
3243acd3 509static int __init lowpan_frags_sysctl_register(void)
7240cdec
AA
510{
511 lowpan_ctl_header = register_net_sysctl(&init_net,
512 "net/ieee802154/6lowpan",
513 lowpan_frags_ctl_table);
514 return lowpan_ctl_header == NULL ? -ENOMEM : 0;
515}
516
517static void lowpan_frags_sysctl_unregister(void)
518{
519 unregister_net_sysctl_table(lowpan_ctl_header);
520}
521#else
f0a0c1ce 522static inline int lowpan_frags_ns_sysctl_register(struct net *net)
7240cdec
AA
523{
524 return 0;
525}
526
527static inline void lowpan_frags_ns_sysctl_unregister(struct net *net)
528{
529}
530
f0a0c1ce 531static inline int __init lowpan_frags_sysctl_register(void)
7240cdec
AA
532{
533 return 0;
534}
535
536static inline void lowpan_frags_sysctl_unregister(void)
537{
538}
539#endif
540
541static int __net_init lowpan_frags_init_net(struct net *net)
542{
599018a7
LR
543 struct netns_ieee802154_lowpan *ieee802154_lowpan =
544 net_ieee802154_lowpan(net);
1f5c60ac 545 int res;
7240cdec 546
599018a7
LR
547 ieee802154_lowpan->frags.high_thresh = IPV6_FRAG_HIGH_THRESH;
548 ieee802154_lowpan->frags.low_thresh = IPV6_FRAG_LOW_THRESH;
549 ieee802154_lowpan->frags.timeout = IPV6_FRAG_TIMEOUT;
9bdf9ca9 550 ieee802154_lowpan->frags.f = &lowpan_frags;
599018a7 551
1f5c60ac
ED
552 res = inet_frags_init_net(&ieee802154_lowpan->frags);
553 if (res < 0)
554 return res;
555 res = lowpan_frags_ns_sysctl_register(net);
556 if (res < 0)
9bdf9ca9 557 inet_frags_exit_net(&ieee802154_lowpan->frags);
1f5c60ac 558 return res;
7240cdec
AA
559}
560
561static void __net_exit lowpan_frags_exit_net(struct net *net)
562{
599018a7
LR
563 struct netns_ieee802154_lowpan *ieee802154_lowpan =
564 net_ieee802154_lowpan(net);
565
7240cdec 566 lowpan_frags_ns_sysctl_unregister(net);
9bdf9ca9 567 inet_frags_exit_net(&ieee802154_lowpan->frags);
7240cdec
AA
568}
569
570static struct pernet_operations lowpan_frags_ops = {
571 .init = lowpan_frags_init_net,
572 .exit = lowpan_frags_exit_net,
573};
574
4e722036
ED
575static u32 lowpan_key_hashfn(const void *data, u32 len, u32 seed)
576{
577 return jhash2(data,
578 sizeof(struct frag_lowpan_compare_key) / sizeof(u32), seed);
579}
580
581static u32 lowpan_obj_hashfn(const void *data, u32 len, u32 seed)
582{
583 const struct inet_frag_queue *fq = data;
584
585 return jhash2((const u32 *)&fq->key,
586 sizeof(struct frag_lowpan_compare_key) / sizeof(u32), seed);
587}
588
589static int lowpan_obj_cmpfn(struct rhashtable_compare_arg *arg, const void *ptr)
590{
591 const struct frag_lowpan_compare_key *key = arg->key;
592 const struct inet_frag_queue *fq = ptr;
593
594 return !!memcmp(&fq->key, key, sizeof(*key));
595}
596
597static const struct rhashtable_params lowpan_rhash_params = {
598 .head_offset = offsetof(struct inet_frag_queue, node),
599 .hashfn = lowpan_key_hashfn,
600 .obj_hashfn = lowpan_obj_hashfn,
601 .obj_cmpfn = lowpan_obj_cmpfn,
602 .automatic_shrinking = true,
603};
604
7240cdec
AA
605int __init lowpan_net_frag_init(void)
606{
607 int ret;
608
7240cdec
AA
609 lowpan_frags.constructor = lowpan_frag_init;
610 lowpan_frags.destructor = NULL;
7240cdec 611 lowpan_frags.qsize = sizeof(struct frag_queue);
7240cdec 612 lowpan_frags.frag_expire = lowpan_frag_expire;
d4ad4d22 613 lowpan_frags.frags_cache_name = lowpan_frags_cache_name;
4e722036 614 lowpan_frags.rhash_params = lowpan_rhash_params;
d4ad4d22
NA
615 ret = inet_frags_init(&lowpan_frags);
616 if (ret)
4feacdd6 617 goto out;
37147652 618
4feacdd6
ED
619 ret = lowpan_frags_sysctl_register();
620 if (ret)
621 goto err_sysctl;
622
623 ret = register_pernet_subsys(&lowpan_frags_ops);
624 if (ret)
625 goto err_pernet;
626out:
37147652 627 return ret;
7240cdec
AA
628err_pernet:
629 lowpan_frags_sysctl_unregister();
4feacdd6
ED
630err_sysctl:
631 inet_frags_fini(&lowpan_frags);
7240cdec
AA
632 return ret;
633}
634
635void lowpan_net_frag_exit(void)
636{
637 inet_frags_fini(&lowpan_frags);
638 lowpan_frags_sysctl_unregister();
639 unregister_pernet_subsys(&lowpan_frags_ops);
640}