treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152
[linux-2.6-block.git] / net / ieee802154 / 6lowpan / reassembly.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
7240cdec 2/* 6LoWPAN fragment reassembly
7240cdec
AA
3 *
4 * Authors:
5 * Alexander Aring <aar@pengutronix.de>
6 *
7 * Based on: net/ipv6/reassembly.c
7240cdec
AA
8 */
9
10#define pr_fmt(fmt) "6LoWPAN: " fmt
11
12#include <linux/net.h>
13#include <linux/list.h>
14#include <linux/netdevice.h>
15#include <linux/random.h>
16#include <linux/jhash.h>
17#include <linux/skbuff.h>
18#include <linux/slab.h>
19#include <linux/export.h>
20
21#include <net/ieee802154_netdev.h>
cefc8c8a 22#include <net/6lowpan.h>
70b095c8 23#include <net/ipv6_frag.h>
7240cdec 24#include <net/inet_frag.h>
254c5dbe 25#include <net/ip.h>
7240cdec 26
8691ee59 27#include "6lowpan_i.h"
7240cdec 28
d4ad4d22
NA
29static const char lowpan_frags_cache_name[] = "lowpan-frags";
30
7240cdec
AA
31static struct inet_frags lowpan_frags;
32
254c5dbe
PO
33static int lowpan_frag_reasm(struct lowpan_frag_queue *fq, struct sk_buff *skb,
34 struct sk_buff *prev, struct net_device *ldev);
7240cdec 35
36c77782 36static void lowpan_frag_init(struct inet_frag_queue *q, const void *a)
7240cdec 37{
648700f7 38 const struct frag_lowpan_compare_key *key = a;
7240cdec 39
648700f7
ED
40 BUILD_BUG_ON(sizeof(*key) > sizeof(q->key));
41 memcpy(&q->key, key, sizeof(*key));
7240cdec 42}
7240cdec 43
78802011 44static void lowpan_frag_expire(struct timer_list *t)
7240cdec 45{
78802011 46 struct inet_frag_queue *frag = from_timer(frag, t, timer);
7240cdec 47 struct frag_queue *fq;
7240cdec 48
78802011 49 fq = container_of(frag, struct frag_queue, q);
7240cdec 50
17794326
FW
51 spin_lock(&fq->q.lock);
52
06aa8b8a 53 if (fq->q.flags & INET_FRAG_COMPLETE)
17794326
FW
54 goto out;
55
093ba729 56 inet_frag_kill(&fq->q);
17794326
FW
57out:
58 spin_unlock(&fq->q.lock);
093ba729 59 inet_frag_put(&fq->q);
7240cdec
AA
60}
61
62static inline struct lowpan_frag_queue *
72a5e6bb 63fq_find(struct net *net, const struct lowpan_802154_cb *cb,
ae531b94
PB
64 const struct ieee802154_addr *src,
65 const struct ieee802154_addr *dst)
7240cdec 66{
599018a7
LR
67 struct netns_ieee802154_lowpan *ieee802154_lowpan =
68 net_ieee802154_lowpan(net);
f18fa5de 69 struct frag_lowpan_compare_key key = {};
648700f7 70 struct inet_frag_queue *q;
7240cdec 71
f18fa5de
AA
72 key.tag = cb->d_tag;
73 key.d_size = cb->d_size;
74 key.src = *src;
75 key.dst = *dst;
76
648700f7 77 q = inet_frag_find(&ieee802154_lowpan->frags, &key);
2d44ed22 78 if (!q)
7240cdec 79 return NULL;
2d44ed22 80
7240cdec
AA
81 return container_of(q, struct lowpan_frag_queue, q);
82}
83
84static int lowpan_frag_queue(struct lowpan_frag_queue *fq,
72a5e6bb 85 struct sk_buff *skb, u8 frag_type)
7240cdec 86{
254c5dbe 87 struct sk_buff *prev_tail;
f4606583 88 struct net_device *ldev;
254c5dbe
PO
89 int end, offset, err;
90
91 /* inet_frag_queue_* functions use skb->cb; see struct ipfrag_skb_cb
92 * in inet_fragment.c
93 */
94 BUILD_BUG_ON(sizeof(struct lowpan_802154_cb) > sizeof(struct inet_skb_parm));
95 BUILD_BUG_ON(sizeof(struct lowpan_802154_cb) > sizeof(struct inet6_skb_parm));
7240cdec 96
06aa8b8a 97 if (fq->q.flags & INET_FRAG_COMPLETE)
7240cdec
AA
98 goto err;
99
72a5e6bb
AA
100 offset = lowpan_802154_cb(skb)->d_offset << 3;
101 end = lowpan_802154_cb(skb)->d_size;
7240cdec
AA
102
103 /* Is this the final fragment? */
104 if (offset + skb->len == end) {
105 /* If we already have some bits beyond end
106 * or have different end, the segment is corrupted.
107 */
108 if (end < fq->q.len ||
06aa8b8a 109 ((fq->q.flags & INET_FRAG_LAST_IN) && end != fq->q.len))
7240cdec 110 goto err;
06aa8b8a 111 fq->q.flags |= INET_FRAG_LAST_IN;
7240cdec
AA
112 fq->q.len = end;
113 } else {
114 if (end > fq->q.len) {
115 /* Some bits beyond end -> corruption. */
06aa8b8a 116 if (fq->q.flags & INET_FRAG_LAST_IN)
7240cdec
AA
117 goto err;
118 fq->q.len = end;
119 }
120 }
121
f4606583
AA
122 ldev = skb->dev;
123 if (ldev)
7240cdec 124 skb->dev = NULL;
254c5dbe
PO
125 barrier();
126
127 prev_tail = fq->q.fragments_tail;
128 err = inet_frag_queue_insert(&fq->q, skb, offset, end);
129 if (err)
130 goto err;
7240cdec
AA
131
132 fq->q.stamp = skb->tstamp;
72a5e6bb 133 if (frag_type == LOWPAN_DISPATCH_FRAG1)
06aa8b8a 134 fq->q.flags |= INET_FRAG_FIRST_IN;
72a5e6bb
AA
135
136 fq->q.meat += skb->len;
0e60d245 137 add_frag_mem_limit(fq->q.net, skb->truesize);
7240cdec 138
06aa8b8a 139 if (fq->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
7240cdec
AA
140 fq->q.meat == fq->q.len) {
141 int res;
142 unsigned long orefdst = skb->_skb_refdst;
143
144 skb->_skb_refdst = 0UL;
254c5dbe 145 res = lowpan_frag_reasm(fq, skb, prev_tail, ldev);
7240cdec
AA
146 skb->_skb_refdst = orefdst;
147 return res;
148 }
254c5dbe 149 skb_dst_drop(skb);
7240cdec 150
7240cdec
AA
151 return -1;
152err:
153 kfree_skb(skb);
154 return -1;
155}
156
157/* Check if this packet is complete.
7240cdec
AA
158 *
159 * It is called with locked fq, and caller must check that
160 * queue is eligible for reassembly i.e. it is not COMPLETE,
161 * the last and the first frames arrived and all the bits are here.
162 */
254c5dbe
PO
163static int lowpan_frag_reasm(struct lowpan_frag_queue *fq, struct sk_buff *skb,
164 struct sk_buff *prev_tail, struct net_device *ldev)
7240cdec 165{
254c5dbe 166 void *reasm_data;
7240cdec 167
093ba729 168 inet_frag_kill(&fq->q);
7240cdec 169
254c5dbe
PO
170 reasm_data = inet_frag_reasm_prepare(&fq->q, skb, prev_tail);
171 if (!reasm_data)
7240cdec 172 goto out_oom;
254c5dbe 173 inet_frag_reasm_finish(&fq->q, skb, reasm_data);
7240cdec 174
254c5dbe
PO
175 skb->dev = ldev;
176 skb->tstamp = fq->q.stamp;
254c5dbe 177 fq->q.rb_fragments = RB_ROOT;
7240cdec 178 fq->q.fragments_tail = NULL;
254c5dbe 179 fq->q.last_run_head = NULL;
7240cdec
AA
180
181 return 1;
182out_oom:
183 net_dbg_ratelimited("lowpan_frag_reasm: no memory for reassembly\n");
184 return -1;
185}
186
72a5e6bb
AA
187static int lowpan_frag_rx_handlers_result(struct sk_buff *skb,
188 lowpan_rx_result res)
189{
190 switch (res) {
191 case RX_QUEUED:
192 return NET_RX_SUCCESS;
193 case RX_CONTINUE:
194 /* nobody cared about this packet */
195 net_warn_ratelimited("%s: received unknown dispatch\n",
196 __func__);
197
198 /* fall-through */
199 default:
200 /* all others failure */
201 return NET_RX_DROP;
202 }
203}
204
205static lowpan_rx_result lowpan_frag_rx_h_iphc(struct sk_buff *skb)
206{
207 int ret;
208
209 if (!lowpan_is_iphc(*skb_network_header(skb)))
210 return RX_CONTINUE;
211
212 ret = lowpan_iphc_decompress(skb);
213 if (ret < 0)
214 return RX_DROP;
215
216 return RX_QUEUED;
217}
218
219static int lowpan_invoke_frag_rx_handlers(struct sk_buff *skb)
220{
221 lowpan_rx_result res;
222
223#define CALL_RXH(rxh) \
224 do { \
225 res = rxh(skb); \
226 if (res != RX_CONTINUE) \
227 goto rxh_next; \
228 } while (0)
229
230 /* likely at first */
231 CALL_RXH(lowpan_frag_rx_h_iphc);
232 CALL_RXH(lowpan_rx_h_ipv6);
233
234rxh_next:
235 return lowpan_frag_rx_handlers_result(skb, res);
236#undef CALL_RXH
237}
238
239#define LOWPAN_FRAG_DGRAM_SIZE_HIGH_MASK 0x07
240#define LOWPAN_FRAG_DGRAM_SIZE_HIGH_SHIFT 8
241
242static int lowpan_get_cb(struct sk_buff *skb, u8 frag_type,
243 struct lowpan_802154_cb *cb)
7240cdec
AA
244{
245 bool fail;
72a5e6bb 246 u8 high = 0, low = 0;
f870b8c6 247 __be16 d_tag = 0;
7240cdec 248
72a5e6bb 249 fail = lowpan_fetch_skb(skb, &high, 1);
7240cdec 250 fail |= lowpan_fetch_skb(skb, &low, 1);
72a5e6bb
AA
251 /* remove the dispatch value and use first three bits as high value
252 * for the datagram size
253 */
254 cb->d_size = (high & LOWPAN_FRAG_DGRAM_SIZE_HIGH_MASK) <<
255 LOWPAN_FRAG_DGRAM_SIZE_HIGH_SHIFT | low;
f870b8c6 256 fail |= lowpan_fetch_skb(skb, &d_tag, 2);
72a5e6bb 257 cb->d_tag = ntohs(d_tag);
7240cdec
AA
258
259 if (frag_type == LOWPAN_DISPATCH_FRAGN) {
72a5e6bb 260 fail |= lowpan_fetch_skb(skb, &cb->d_offset, 1);
7240cdec
AA
261 } else {
262 skb_reset_network_header(skb);
72a5e6bb
AA
263 cb->d_offset = 0;
264 /* check if datagram_size has ipv6hdr on FRAG1 */
265 fail |= cb->d_size < sizeof(struct ipv6hdr);
266 /* check if we can dereference the dispatch value */
267 fail |= !skb->len;
7240cdec
AA
268 }
269
270 if (unlikely(fail))
271 return -EIO;
272
273 return 0;
274}
275
72a5e6bb 276int lowpan_frag_rcv(struct sk_buff *skb, u8 frag_type)
7240cdec
AA
277{
278 struct lowpan_frag_queue *fq;
279 struct net *net = dev_net(skb->dev);
72a5e6bb 280 struct lowpan_802154_cb *cb = lowpan_802154_cb(skb);
f18fa5de 281 struct ieee802154_hdr hdr = {};
7240cdec
AA
282 int err;
283
72a5e6bb
AA
284 if (ieee802154_hdr_peek_addrs(skb, &hdr) < 0)
285 goto err;
ae531b94 286
72a5e6bb 287 err = lowpan_get_cb(skb, frag_type, cb);
7240cdec
AA
288 if (err < 0)
289 goto err;
290
72a5e6bb
AA
291 if (frag_type == LOWPAN_DISPATCH_FRAG1) {
292 err = lowpan_invoke_frag_rx_handlers(skb);
293 if (err == NET_RX_DROP)
294 goto err;
295 }
296
297 if (cb->d_size > IPV6_MIN_MTU) {
6697dabe 298 net_warn_ratelimited("lowpan_frag_rcv: datagram size exceeds MTU\n");
7240cdec 299 goto err;
6697dabe 300 }
7240cdec 301
72a5e6bb 302 fq = fq_find(net, cb, &hdr.source, &hdr.dest);
7240cdec
AA
303 if (fq != NULL) {
304 int ret;
4710d806 305
7240cdec
AA
306 spin_lock(&fq->q.lock);
307 ret = lowpan_frag_queue(fq, skb, frag_type);
308 spin_unlock(&fq->q.lock);
309
093ba729 310 inet_frag_put(&fq->q);
7240cdec
AA
311 return ret;
312 }
313
314err:
315 kfree_skb(skb);
316 return -1;
317}
7240cdec
AA
318
319#ifdef CONFIG_SYSCTL
1bab4c75 320
7240cdec
AA
321static struct ctl_table lowpan_frags_ns_ctl_table[] = {
322 {
323 .procname = "6lowpanfrag_high_thresh",
324 .data = &init_net.ieee802154_lowpan.frags.high_thresh,
3e67f106 325 .maxlen = sizeof(unsigned long),
7240cdec 326 .mode = 0644,
3e67f106 327 .proc_handler = proc_doulongvec_minmax,
1bab4c75 328 .extra1 = &init_net.ieee802154_lowpan.frags.low_thresh
7240cdec
AA
329 },
330 {
331 .procname = "6lowpanfrag_low_thresh",
332 .data = &init_net.ieee802154_lowpan.frags.low_thresh,
3e67f106 333 .maxlen = sizeof(unsigned long),
7240cdec 334 .mode = 0644,
3e67f106 335 .proc_handler = proc_doulongvec_minmax,
1bab4c75 336 .extra2 = &init_net.ieee802154_lowpan.frags.high_thresh
7240cdec
AA
337 },
338 {
339 .procname = "6lowpanfrag_time",
340 .data = &init_net.ieee802154_lowpan.frags.timeout,
341 .maxlen = sizeof(int),
342 .mode = 0644,
343 .proc_handler = proc_dointvec_jiffies,
344 },
7240cdec
AA
345 { }
346};
347
e3a57d18
FW
348/* secret interval has been deprecated */
349static int lowpan_frags_secret_interval_unused;
7240cdec
AA
350static struct ctl_table lowpan_frags_ctl_table[] = {
351 {
352 .procname = "6lowpanfrag_secret_interval",
e3a57d18 353 .data = &lowpan_frags_secret_interval_unused,
7240cdec
AA
354 .maxlen = sizeof(int),
355 .mode = 0644,
356 .proc_handler = proc_dointvec_jiffies,
357 },
358 { }
359};
360
361static int __net_init lowpan_frags_ns_sysctl_register(struct net *net)
362{
363 struct ctl_table *table;
364 struct ctl_table_header *hdr;
599018a7
LR
365 struct netns_ieee802154_lowpan *ieee802154_lowpan =
366 net_ieee802154_lowpan(net);
7240cdec
AA
367
368 table = lowpan_frags_ns_ctl_table;
369 if (!net_eq(net, &init_net)) {
370 table = kmemdup(table, sizeof(lowpan_frags_ns_ctl_table),
371 GFP_KERNEL);
372 if (table == NULL)
373 goto err_alloc;
374
599018a7 375 table[0].data = &ieee802154_lowpan->frags.high_thresh;
1bab4c75 376 table[0].extra1 = &ieee802154_lowpan->frags.low_thresh;
599018a7 377 table[1].data = &ieee802154_lowpan->frags.low_thresh;
1bab4c75 378 table[1].extra2 = &ieee802154_lowpan->frags.high_thresh;
599018a7 379 table[2].data = &ieee802154_lowpan->frags.timeout;
7240cdec
AA
380
381 /* Don't export sysctls to unprivileged users */
382 if (net->user_ns != &init_user_ns)
383 table[0].procname = NULL;
384 }
385
386 hdr = register_net_sysctl(net, "net/ieee802154/6lowpan", table);
387 if (hdr == NULL)
388 goto err_reg;
389
599018a7 390 ieee802154_lowpan->sysctl.frags_hdr = hdr;
7240cdec
AA
391 return 0;
392
393err_reg:
394 if (!net_eq(net, &init_net))
395 kfree(table);
396err_alloc:
397 return -ENOMEM;
398}
399
400static void __net_exit lowpan_frags_ns_sysctl_unregister(struct net *net)
401{
402 struct ctl_table *table;
599018a7
LR
403 struct netns_ieee802154_lowpan *ieee802154_lowpan =
404 net_ieee802154_lowpan(net);
7240cdec 405
599018a7
LR
406 table = ieee802154_lowpan->sysctl.frags_hdr->ctl_table_arg;
407 unregister_net_sysctl_table(ieee802154_lowpan->sysctl.frags_hdr);
7240cdec
AA
408 if (!net_eq(net, &init_net))
409 kfree(table);
410}
411
412static struct ctl_table_header *lowpan_ctl_header;
413
3243acd3 414static int __init lowpan_frags_sysctl_register(void)
7240cdec
AA
415{
416 lowpan_ctl_header = register_net_sysctl(&init_net,
417 "net/ieee802154/6lowpan",
418 lowpan_frags_ctl_table);
419 return lowpan_ctl_header == NULL ? -ENOMEM : 0;
420}
421
422static void lowpan_frags_sysctl_unregister(void)
423{
424 unregister_net_sysctl_table(lowpan_ctl_header);
425}
426#else
f0a0c1ce 427static inline int lowpan_frags_ns_sysctl_register(struct net *net)
7240cdec
AA
428{
429 return 0;
430}
431
432static inline void lowpan_frags_ns_sysctl_unregister(struct net *net)
433{
434}
435
f0a0c1ce 436static inline int __init lowpan_frags_sysctl_register(void)
7240cdec
AA
437{
438 return 0;
439}
440
441static inline void lowpan_frags_sysctl_unregister(void)
442{
443}
444#endif
445
446static int __net_init lowpan_frags_init_net(struct net *net)
447{
599018a7
LR
448 struct netns_ieee802154_lowpan *ieee802154_lowpan =
449 net_ieee802154_lowpan(net);
787bea77 450 int res;
7240cdec 451
599018a7
LR
452 ieee802154_lowpan->frags.high_thresh = IPV6_FRAG_HIGH_THRESH;
453 ieee802154_lowpan->frags.low_thresh = IPV6_FRAG_LOW_THRESH;
454 ieee802154_lowpan->frags.timeout = IPV6_FRAG_TIMEOUT;
093ba729 455 ieee802154_lowpan->frags.f = &lowpan_frags;
599018a7 456
787bea77
ED
457 res = inet_frags_init_net(&ieee802154_lowpan->frags);
458 if (res < 0)
459 return res;
460 res = lowpan_frags_ns_sysctl_register(net);
461 if (res < 0)
093ba729 462 inet_frags_exit_net(&ieee802154_lowpan->frags);
787bea77 463 return res;
7240cdec
AA
464}
465
466static void __net_exit lowpan_frags_exit_net(struct net *net)
467{
599018a7
LR
468 struct netns_ieee802154_lowpan *ieee802154_lowpan =
469 net_ieee802154_lowpan(net);
470
7240cdec 471 lowpan_frags_ns_sysctl_unregister(net);
093ba729 472 inet_frags_exit_net(&ieee802154_lowpan->frags);
7240cdec
AA
473}
474
475static struct pernet_operations lowpan_frags_ops = {
476 .init = lowpan_frags_init_net,
477 .exit = lowpan_frags_exit_net,
478};
479
648700f7
ED
480static u32 lowpan_key_hashfn(const void *data, u32 len, u32 seed)
481{
482 return jhash2(data,
483 sizeof(struct frag_lowpan_compare_key) / sizeof(u32), seed);
484}
485
486static u32 lowpan_obj_hashfn(const void *data, u32 len, u32 seed)
487{
488 const struct inet_frag_queue *fq = data;
489
490 return jhash2((const u32 *)&fq->key,
491 sizeof(struct frag_lowpan_compare_key) / sizeof(u32), seed);
492}
493
494static int lowpan_obj_cmpfn(struct rhashtable_compare_arg *arg, const void *ptr)
495{
496 const struct frag_lowpan_compare_key *key = arg->key;
497 const struct inet_frag_queue *fq = ptr;
498
499 return !!memcmp(&fq->key, key, sizeof(*key));
500}
501
502static const struct rhashtable_params lowpan_rhash_params = {
503 .head_offset = offsetof(struct inet_frag_queue, node),
504 .hashfn = lowpan_key_hashfn,
505 .obj_hashfn = lowpan_obj_hashfn,
506 .obj_cmpfn = lowpan_obj_cmpfn,
507 .automatic_shrinking = true,
508};
509
7240cdec
AA
510int __init lowpan_net_frag_init(void)
511{
512 int ret;
513
7240cdec
AA
514 lowpan_frags.constructor = lowpan_frag_init;
515 lowpan_frags.destructor = NULL;
7240cdec 516 lowpan_frags.qsize = sizeof(struct frag_queue);
7240cdec 517 lowpan_frags.frag_expire = lowpan_frag_expire;
d4ad4d22 518 lowpan_frags.frags_cache_name = lowpan_frags_cache_name;
648700f7 519 lowpan_frags.rhash_params = lowpan_rhash_params;
d4ad4d22
NA
520 ret = inet_frags_init(&lowpan_frags);
521 if (ret)
807f1844 522 goto out;
37147652 523
807f1844
ED
524 ret = lowpan_frags_sysctl_register();
525 if (ret)
526 goto err_sysctl;
527
528 ret = register_pernet_subsys(&lowpan_frags_ops);
529 if (ret)
530 goto err_pernet;
531out:
37147652 532 return ret;
7240cdec
AA
533err_pernet:
534 lowpan_frags_sysctl_unregister();
807f1844
ED
535err_sysctl:
536 inet_frags_fini(&lowpan_frags);
7240cdec
AA
537 return ret;
538}
539
540void lowpan_net_frag_exit(void)
541{
542 inet_frags_fini(&lowpan_frags);
543 lowpan_frags_sysctl_unregister();
544 unregister_pernet_subsys(&lowpan_frags_ops);
545}