1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#define pr_fmt(fmt) "IPv4: " fmt
25
26#include <linux/compiler.h>
27#include <linux/module.h>
28#include <linux/types.h>
29#include <linux/mm.h>
30#include <linux/jiffies.h>
31#include <linux/skbuff.h>
32#include <linux/list.h>
33#include <linux/ip.h>
34#include <linux/icmp.h>
35#include <linux/netdevice.h>
36#include <linux/jhash.h>
37#include <linux/random.h>
38#include <linux/slab.h>
39#include <net/route.h>
40#include <net/dst.h>
41#include <net/sock.h>
42#include <net/ip.h>
43#include <net/icmp.h>
44#include <net/checksum.h>
45#include <net/inetpeer.h>
46#include <net/inet_frag.h>
47#include <linux/tcp.h>
48#include <linux/udp.h>
49#include <linux/inet.h>
50#include <linux/netfilter_ipv4.h>
51#include <net/inet_ecn.h>
52#include <net/l3mdev.h>
53
54
55
56
57
58static const char ip_frag_cache_name[] = "ip4-frags";
59
60
61struct ipq {
62 struct inet_frag_queue q;
63
64 u8 ecn;
65 u16 max_df_size;
66 int iif;
67 unsigned int rid;
68 struct inet_peer *peer;
69};
70
71static u8 ip4_frag_ecn(u8 tos)
72{
73 return 1 << (tos & INET_ECN_MASK);
74}
75
76static struct inet_frags ip4_frags;
77
78static int ip_frag_reasm(struct ipq *qp, struct sk_buff *skb,
79 struct sk_buff *prev_tail, struct net_device *dev);
80
81
82static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
83{
84 struct ipq *qp = container_of(q, struct ipq, q);
85 struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4,
86 frags);
87 struct net *net = container_of(ipv4, struct net, ipv4);
88
89 const struct frag_v4_compare_key *key = a;
90
91 q->key.v4 = *key;
92 qp->ecn = 0;
93 qp->peer = q->net->max_dist ?
94 inet_getpeer_v4(net->ipv4.peers, key->saddr, key->vif, 1) :
95 NULL;
96}
97
98static void ip4_frag_free(struct inet_frag_queue *q)
99{
100 struct ipq *qp;
101
102 qp = container_of(q, struct ipq, q);
103 if (qp->peer)
104 inet_putpeer(qp->peer);
105}
106
107
108
109
110static void ipq_put(struct ipq *ipq)
111{
112 inet_frag_put(&ipq->q);
113}
114
115
116
117
118static void ipq_kill(struct ipq *ipq)
119{
120 inet_frag_kill(&ipq->q);
121}
122
123static bool frag_expire_skip_icmp(u32 user)
124{
125 return user == IP_DEFRAG_AF_PACKET ||
126 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_IN,
127 __IP_DEFRAG_CONNTRACK_IN_END) ||
128 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_BRIDGE_IN,
129 __IP_DEFRAG_CONNTRACK_BRIDGE_IN);
130}
131
132
133
134
135static void ip_expire(struct timer_list *t)
136{
137 struct inet_frag_queue *frag = from_timer(frag, t, timer);
138 const struct iphdr *iph;
139 struct sk_buff *head = NULL;
140 struct net *net;
141 struct ipq *qp;
142 int err;
143
144 qp = container_of(frag, struct ipq, q);
145 net = container_of(qp->q.net, struct net, ipv4.frags);
146
147 rcu_read_lock();
148 spin_lock(&qp->q.lock);
149
150 if (qp->q.flags & INET_FRAG_COMPLETE)
151 goto out;
152
153 ipq_kill(qp);
154 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
155 __IP_INC_STATS(net, IPSTATS_MIB_REASMTIMEOUT);
156
157 if (!(qp->q.flags & INET_FRAG_FIRST_IN))
158 goto out;
159
160
161
162
163
164 head = inet_frag_pull_head(&qp->q);
165 if (!head)
166 goto out;
167 head->dev = dev_get_by_index_rcu(net, qp->iif);
168 if (!head->dev)
169 goto out;
170
171
172
173 iph = ip_hdr(head);
174 err = ip_route_input_noref(head, iph->daddr, iph->saddr,
175 iph->tos, head->dev);
176 if (err)
177 goto out;
178
179
180
181
182 if (frag_expire_skip_icmp(qp->q.key.v4.user) &&
183 (skb_rtable(head)->rt_type != RTN_LOCAL))
184 goto out;
185
186 spin_unlock(&qp->q.lock);
187 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
188 goto out_rcu_unlock;
189
190out:
191 spin_unlock(&qp->q.lock);
192out_rcu_unlock:
193 rcu_read_unlock();
194 if (head)
195 kfree_skb(head);
196 ipq_put(qp);
197}
198
199
200
201
202static struct ipq *ip_find(struct net *net, struct iphdr *iph,
203 u32 user, int vif)
204{
205 struct frag_v4_compare_key key = {
206 .saddr = iph->saddr,
207 .daddr = iph->daddr,
208 .user = user,
209 .vif = vif,
210 .id = iph->id,
211 .protocol = iph->protocol,
212 };
213 struct inet_frag_queue *q;
214
215 q = inet_frag_find(&net->ipv4.frags, &key);
216 if (!q)
217 return NULL;
218
219 return container_of(q, struct ipq, q);
220}
221
222
223static int ip_frag_too_far(struct ipq *qp)
224{
225 struct inet_peer *peer = qp->peer;
226 unsigned int max = qp->q.net->max_dist;
227 unsigned int start, end;
228
229 int rc;
230
231 if (!peer || !max)
232 return 0;
233
234 start = qp->rid;
235 end = atomic_inc_return(&peer->rid);
236 qp->rid = end;
237
238 rc = qp->q.fragments_tail && (end - start) > max;
239
240 if (rc) {
241 struct net *net;
242
243 net = container_of(qp->q.net, struct net, ipv4.frags);
244 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
245 }
246
247 return rc;
248}
249
250static int ip_frag_reinit(struct ipq *qp)
251{
252 unsigned int sum_truesize = 0;
253
254 if (!mod_timer(&qp->q.timer, jiffies + qp->q.net->timeout)) {
255 refcount_inc(&qp->q.refcnt);
256 return -ETIMEDOUT;
257 }
258
259 sum_truesize = inet_frag_rbtree_purge(&qp->q.rb_fragments);
260 sub_frag_mem_limit(qp->q.net, sum_truesize);
261
262 qp->q.flags = 0;
263 qp->q.len = 0;
264 qp->q.meat = 0;
265 qp->q.fragments = NULL;
266 qp->q.rb_fragments = RB_ROOT;
267 qp->q.fragments_tail = NULL;
268 qp->q.last_run_head = NULL;
269 qp->iif = 0;
270 qp->ecn = 0;
271
272 return 0;
273}
274
275
276static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
277{
278 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
279 int ihl, end, flags, offset;
280 struct sk_buff *prev_tail;
281 struct net_device *dev;
282 unsigned int fragsize;
283 int err = -ENOENT;
284 u8 ecn;
285
286 if (qp->q.flags & INET_FRAG_COMPLETE)
287 goto err;
288
289 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
290 unlikely(ip_frag_too_far(qp)) &&
291 unlikely(err = ip_frag_reinit(qp))) {
292 ipq_kill(qp);
293 goto err;
294 }
295
296 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
297 offset = ntohs(ip_hdr(skb)->frag_off);
298 flags = offset & ~IP_OFFSET;
299 offset &= IP_OFFSET;
300 offset <<= 3;
301 ihl = ip_hdrlen(skb);
302
303
304 end = offset + skb->len - skb_network_offset(skb) - ihl;
305 err = -EINVAL;
306
307
308 if ((flags & IP_MF) == 0) {
309
310
311
312 if (end < qp->q.len ||
313 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
314 goto discard_qp;
315 qp->q.flags |= INET_FRAG_LAST_IN;
316 qp->q.len = end;
317 } else {
318 if (end&7) {
319 end &= ~7;
320 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
321 skb->ip_summed = CHECKSUM_NONE;
322 }
323 if (end > qp->q.len) {
324
325 if (qp->q.flags & INET_FRAG_LAST_IN)
326 goto discard_qp;
327 qp->q.len = end;
328 }
329 }
330 if (end == offset)
331 goto discard_qp;
332
333 err = -ENOMEM;
334 if (!pskb_pull(skb, skb_network_offset(skb) + ihl))
335 goto discard_qp;
336
337 err = pskb_trim_rcsum(skb, end - offset);
338 if (err)
339 goto discard_qp;
340
341
342 dev = skb->dev;
343
344 barrier();
345
346 prev_tail = qp->q.fragments_tail;
347 err = inet_frag_queue_insert(&qp->q, skb, offset, end);
348 if (err)
349 goto insert_error;
350
351 if (dev)
352 qp->iif = dev->ifindex;
353
354 qp->q.stamp = skb->tstamp;
355 qp->q.meat += skb->len;
356 qp->ecn |= ecn;
357 add_frag_mem_limit(qp->q.net, skb->truesize);
358 if (offset == 0)
359 qp->q.flags |= INET_FRAG_FIRST_IN;
360
361 fragsize = skb->len + ihl;
362
363 if (fragsize > qp->q.max_size)
364 qp->q.max_size = fragsize;
365
366 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
367 fragsize > qp->max_df_size)
368 qp->max_df_size = fragsize;
369
370 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
371 qp->q.meat == qp->q.len) {
372 unsigned long orefdst = skb->_skb_refdst;
373
374 skb->_skb_refdst = 0UL;
375 err = ip_frag_reasm(qp, skb, prev_tail, dev);
376 skb->_skb_refdst = orefdst;
377 if (err)
378 inet_frag_kill(&qp->q);
379 return err;
380 }
381
382 skb_dst_drop(skb);
383 return -EINPROGRESS;
384
385insert_error:
386 if (err == IPFRAG_DUP) {
387 kfree_skb(skb);
388 return -EINVAL;
389 }
390 err = -EINVAL;
391 __IP_INC_STATS(net, IPSTATS_MIB_REASM_OVERLAPS);
392discard_qp:
393 inet_frag_kill(&qp->q);
394 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
395err:
396 kfree_skb(skb);
397 return err;
398}
399
400static bool ip_frag_coalesce_ok(const struct ipq *qp)
401{
402 return qp->q.key.v4.user == IP_DEFRAG_LOCAL_DELIVER;
403}
404
405
406static int ip_frag_reasm(struct ipq *qp, struct sk_buff *skb,
407 struct sk_buff *prev_tail, struct net_device *dev)
408{
409 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
410 struct iphdr *iph;
411 void *reasm_data;
412 int len, err;
413 u8 ecn;
414
415 ipq_kill(qp);
416
417 ecn = ip_frag_ecn_table[qp->ecn];
418 if (unlikely(ecn == 0xff)) {
419 err = -EINVAL;
420 goto out_fail;
421 }
422
423
424 reasm_data = inet_frag_reasm_prepare(&qp->q, skb, prev_tail);
425 if (!reasm_data)
426 goto out_nomem;
427
428 len = ip_hdrlen(skb) + qp->q.len;
429 err = -E2BIG;
430 if (len > 65535)
431 goto out_oversize;
432
433 inet_frag_reasm_finish(&qp->q, skb, reasm_data,
434 ip_frag_coalesce_ok(qp));
435
436 skb->dev = dev;
437 IPCB(skb)->frag_max_size = max(qp->max_df_size, qp->q.max_size);
438
439 iph = ip_hdr(skb);
440 iph->tot_len = htons(len);
441 iph->tos |= ecn;
442
443
444
445
446
447
448
449
450
451 if (qp->max_df_size == qp->q.max_size) {
452 IPCB(skb)->flags |= IPSKB_FRAG_PMTU;
453 iph->frag_off = htons(IP_DF);
454 } else {
455 iph->frag_off = 0;
456 }
457
458 ip_send_check(iph);
459
460 __IP_INC_STATS(net, IPSTATS_MIB_REASMOKS);
461 qp->q.fragments = NULL;
462 qp->q.rb_fragments = RB_ROOT;
463 qp->q.fragments_tail = NULL;
464 qp->q.last_run_head = NULL;
465 return 0;
466
467out_nomem:
468 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
469 err = -ENOMEM;
470 goto out_fail;
471out_oversize:
472 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->q.key.v4.saddr);
473out_fail:
474 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
475 return err;
476}
477
478
479int ip_defrag(struct net *net, struct sk_buff *skb, u32 user)
480{
481 struct net_device *dev = skb->dev ? : skb_dst(skb)->dev;
482 int vif = l3mdev_master_ifindex_rcu(dev);
483 struct ipq *qp;
484
485 __IP_INC_STATS(net, IPSTATS_MIB_REASMREQDS);
486 skb_orphan(skb);
487
488
489 qp = ip_find(net, ip_hdr(skb), user, vif);
490 if (qp) {
491 int ret;
492
493 spin_lock(&qp->q.lock);
494
495 ret = ip_frag_queue(qp, skb);
496
497 spin_unlock(&qp->q.lock);
498 ipq_put(qp);
499 return ret;
500 }
501
502 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
503 kfree_skb(skb);
504 return -ENOMEM;
505}
506EXPORT_SYMBOL(ip_defrag);
507
508struct sk_buff *ip_check_defrag(struct net *net, struct sk_buff *skb, u32 user)
509{
510 struct iphdr iph;
511 int netoff;
512 u32 len;
513
514 if (skb->protocol != htons(ETH_P_IP))
515 return skb;
516
517 netoff = skb_network_offset(skb);
518
519 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
520 return skb;
521
522 if (iph.ihl < 5 || iph.version != 4)
523 return skb;
524
525 len = ntohs(iph.tot_len);
526 if (skb->len < netoff + len || len < (iph.ihl * 4))
527 return skb;
528
529 if (ip_is_fragment(&iph)) {
530 skb = skb_share_check(skb, GFP_ATOMIC);
531 if (skb) {
532 if (!pskb_may_pull(skb, netoff + iph.ihl * 4)) {
533 kfree_skb(skb);
534 return NULL;
535 }
536 if (pskb_trim_rcsum(skb, netoff + len)) {
537 kfree_skb(skb);
538 return NULL;
539 }
540 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
541 if (ip_defrag(net, skb, user))
542 return NULL;
543 skb_clear_hash(skb);
544 }
545 }
546 return skb;
547}
548EXPORT_SYMBOL(ip_check_defrag);
549
550#ifdef CONFIG_SYSCTL
551static int dist_min;
552
553static struct ctl_table ip4_frags_ns_ctl_table[] = {
554 {
555 .procname = "ipfrag_high_thresh",
556 .data = &init_net.ipv4.frags.high_thresh,
557 .maxlen = sizeof(unsigned long),
558 .mode = 0644,
559 .proc_handler = proc_doulongvec_minmax,
560 .extra1 = &init_net.ipv4.frags.low_thresh
561 },
562 {
563 .procname = "ipfrag_low_thresh",
564 .data = &init_net.ipv4.frags.low_thresh,
565 .maxlen = sizeof(unsigned long),
566 .mode = 0644,
567 .proc_handler = proc_doulongvec_minmax,
568 .extra2 = &init_net.ipv4.frags.high_thresh
569 },
570 {
571 .procname = "ipfrag_time",
572 .data = &init_net.ipv4.frags.timeout,
573 .maxlen = sizeof(int),
574 .mode = 0644,
575 .proc_handler = proc_dointvec_jiffies,
576 },
577 {
578 .procname = "ipfrag_max_dist",
579 .data = &init_net.ipv4.frags.max_dist,
580 .maxlen = sizeof(int),
581 .mode = 0644,
582 .proc_handler = proc_dointvec_minmax,
583 .extra1 = &dist_min,
584 },
585 { }
586};
587
588
589static int ip4_frags_secret_interval_unused;
590static struct ctl_table ip4_frags_ctl_table[] = {
591 {
592 .procname = "ipfrag_secret_interval",
593 .data = &ip4_frags_secret_interval_unused,
594 .maxlen = sizeof(int),
595 .mode = 0644,
596 .proc_handler = proc_dointvec_jiffies,
597 },
598 { }
599};
600
601static int __net_init ip4_frags_ns_ctl_register(struct net *net)
602{
603 struct ctl_table *table;
604 struct ctl_table_header *hdr;
605
606 table = ip4_frags_ns_ctl_table;
607 if (!net_eq(net, &init_net)) {
608 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
609 if (!table)
610 goto err_alloc;
611
612 table[0].data = &net->ipv4.frags.high_thresh;
613 table[0].extra1 = &net->ipv4.frags.low_thresh;
614 table[1].data = &net->ipv4.frags.low_thresh;
615 table[1].extra2 = &net->ipv4.frags.high_thresh;
616 table[2].data = &net->ipv4.frags.timeout;
617 table[3].data = &net->ipv4.frags.max_dist;
618 }
619
620 hdr = register_net_sysctl(net, "net/ipv4", table);
621 if (!hdr)
622 goto err_reg;
623
624 net->ipv4.frags_hdr = hdr;
625 return 0;
626
627err_reg:
628 if (!net_eq(net, &init_net))
629 kfree(table);
630err_alloc:
631 return -ENOMEM;
632}
633
634static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
635{
636 struct ctl_table *table;
637
638 table = net->ipv4.frags_hdr->ctl_table_arg;
639 unregister_net_sysctl_table(net->ipv4.frags_hdr);
640 kfree(table);
641}
642
643static void __init ip4_frags_ctl_register(void)
644{
645 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
646}
647#else
648static int ip4_frags_ns_ctl_register(struct net *net)
649{
650 return 0;
651}
652
653static void ip4_frags_ns_ctl_unregister(struct net *net)
654{
655}
656
657static void __init ip4_frags_ctl_register(void)
658{
659}
660#endif
661
662static int __net_init ipv4_frags_init_net(struct net *net)
663{
664 int res;
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680 net->ipv4.frags.high_thresh = 4 * 1024 * 1024;
681 net->ipv4.frags.low_thresh = 3 * 1024 * 1024;
682
683
684
685
686
687 net->ipv4.frags.timeout = IP_FRAG_TIME;
688
689 net->ipv4.frags.max_dist = 64;
690 net->ipv4.frags.f = &ip4_frags;
691
692 res = inet_frags_init_net(&net->ipv4.frags);
693 if (res < 0)
694 return res;
695 res = ip4_frags_ns_ctl_register(net);
696 if (res < 0)
697 inet_frags_exit_net(&net->ipv4.frags);
698 return res;
699}
700
701static void __net_exit ipv4_frags_exit_net(struct net *net)
702{
703 ip4_frags_ns_ctl_unregister(net);
704 inet_frags_exit_net(&net->ipv4.frags);
705}
706
707static struct pernet_operations ip4_frags_ops = {
708 .init = ipv4_frags_init_net,
709 .exit = ipv4_frags_exit_net,
710};
711
712
713static u32 ip4_key_hashfn(const void *data, u32 len, u32 seed)
714{
715 return jhash2(data,
716 sizeof(struct frag_v4_compare_key) / sizeof(u32), seed);
717}
718
719static u32 ip4_obj_hashfn(const void *data, u32 len, u32 seed)
720{
721 const struct inet_frag_queue *fq = data;
722
723 return jhash2((const u32 *)&fq->key.v4,
724 sizeof(struct frag_v4_compare_key) / sizeof(u32), seed);
725}
726
727static int ip4_obj_cmpfn(struct rhashtable_compare_arg *arg, const void *ptr)
728{
729 const struct frag_v4_compare_key *key = arg->key;
730 const struct inet_frag_queue *fq = ptr;
731
732 return !!memcmp(&fq->key, key, sizeof(*key));
733}
734
735static const struct rhashtable_params ip4_rhash_params = {
736 .head_offset = offsetof(struct inet_frag_queue, node),
737 .key_offset = offsetof(struct inet_frag_queue, key),
738 .key_len = sizeof(struct frag_v4_compare_key),
739 .hashfn = ip4_key_hashfn,
740 .obj_hashfn = ip4_obj_hashfn,
741 .obj_cmpfn = ip4_obj_cmpfn,
742 .automatic_shrinking = true,
743};
744
745void __init ipfrag_init(void)
746{
747 ip4_frags.constructor = ip4_frag_init;
748 ip4_frags.destructor = ip4_frag_free;
749 ip4_frags.qsize = sizeof(struct ipq);
750 ip4_frags.frag_expire = ip_expire;
751 ip4_frags.frags_cache_name = ip_frag_cache_name;
752 ip4_frags.rhash_params = ip4_rhash_params;
753 if (inet_frags_init(&ip4_frags))
754 panic("IP: failed to allocate ip4_frags cache\n");
755 ip4_frags_ctl_register();
756 register_pernet_subsys(&ip4_frags_ops);
757}
758