1 // SPDX-License-Identifier: GPL-2.0
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
7 * The IP fragmentation functionality.
9 * Authors: Fred N. van Kempen <waltje@uWalt.NL.Mugnet.ORG>
10 * Alan Cox <alan@lxorguk.ukuu.org.uk>
13 * Alan Cox : Split from ip.c , see ip_input.c for history.
14 * David S. Miller : Begin massive cleanup...
15 * Andi Kleen : Add sysctls.
16 * xxxx : Overlapfrag bug.
17 * Ultima : ip_expire() kernel panic.
18 * Bill Hawes : Frag accounting and evictor fixes.
19 * John McDonald : 0 length frag bug.
20 * Alexey Kuznetsov: SMP races, threading, cleanup.
21 * Patrick McHardy : LRU queue of frag heads for evictor.
24 #define pr_fmt(fmt) "IPv4: " fmt
26 #include <linux/compiler.h>
27 #include <linux/module.h>
28 #include <linux/types.h>
30 #include <linux/jiffies.h>
31 #include <linux/skbuff.h>
32 #include <linux/list.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>
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>
54 /* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
55 * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
56 * as well. Or notify me, at least. --ANK
58 static const char ip_frag_cache_name
[] = "ip4-frags";
60 /* Describe an entry in the "incomplete datagrams" queue. */
62 struct inet_frag_queue q
;
64 u8 ecn
; /* RFC3168 support */
65 u16 max_df_size
; /* largest frag with DF set seen */
68 struct inet_peer
*peer
;
71 static u8
ip4_frag_ecn(u8 tos
)
73 return 1 << (tos
& INET_ECN_MASK
);
76 static struct inet_frags ip4_frags
;
78 static int ip_frag_reasm(struct ipq
*qp
, struct sk_buff
*skb
,
79 struct sk_buff
*prev_tail
, struct net_device
*dev
);
82 static void ip4_frag_init(struct inet_frag_queue
*q
, const void *a
)
84 struct ipq
*qp
= container_of(q
, struct ipq
, q
);
85 struct netns_ipv4
*ipv4
= container_of(q
->net
, struct netns_ipv4
,
87 struct net
*net
= container_of(ipv4
, struct net
, ipv4
);
89 const struct frag_v4_compare_key
*key
= a
;
93 qp
->peer
= q
->net
->max_dist
?
94 inet_getpeer_v4(net
->ipv4
.peers
, key
->saddr
, key
->vif
, 1) :
98 static void ip4_frag_free(struct inet_frag_queue
*q
)
102 qp
= container_of(q
, struct ipq
, q
);
104 inet_putpeer(qp
->peer
);
108 /* Destruction primitives. */
110 static void ipq_put(struct ipq
*ipq
)
112 inet_frag_put(&ipq
->q
);
115 /* Kill ipq entry. It is not destroyed immediately,
116 * because caller (and someone more) holds reference count.
118 static void ipq_kill(struct ipq
*ipq
)
120 inet_frag_kill(&ipq
->q
);
123 static bool frag_expire_skip_icmp(u32 user
)
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
);
133 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
135 static void ip_expire(struct timer_list
*t
)
137 struct inet_frag_queue
*frag
= from_timer(frag
, t
, timer
);
138 const struct iphdr
*iph
;
139 struct sk_buff
*head
= NULL
;
144 qp
= container_of(frag
, struct ipq
, q
);
145 net
= container_of(qp
->q
.net
, struct net
, ipv4
.frags
);
148 spin_lock(&qp
->q
.lock
);
150 if (qp
->q
.flags
& INET_FRAG_COMPLETE
)
154 __IP_INC_STATS(net
, IPSTATS_MIB_REASMFAILS
);
155 __IP_INC_STATS(net
, IPSTATS_MIB_REASMTIMEOUT
);
157 if (!(qp
->q
.flags
& INET_FRAG_FIRST_IN
))
160 /* sk_buff::dev and sk_buff::rbnode are unionized. So we
161 * pull the head out of the tree in order to be able to
162 * deal with head->dev.
164 head
= inet_frag_pull_head(&qp
->q
);
167 head
->dev
= dev_get_by_index_rcu(net
, qp
->iif
);
172 /* skb has no dst, perform route lookup again */
174 err
= ip_route_input_noref(head
, iph
->daddr
, iph
->saddr
,
175 iph
->tos
, head
->dev
);
179 /* Only an end host needs to send an ICMP
180 * "Fragment Reassembly Timeout" message, per RFC792.
182 if (frag_expire_skip_icmp(qp
->q
.key
.v4
.user
) &&
183 (skb_rtable(head
)->rt_type
!= RTN_LOCAL
))
186 spin_unlock(&qp
->q
.lock
);
187 icmp_send(head
, ICMP_TIME_EXCEEDED
, ICMP_EXC_FRAGTIME
, 0);
191 spin_unlock(&qp
->q
.lock
);
198 /* Find the correct entry in the "incomplete datagrams" queue for
199 * this IP datagram, and create new one, if nothing is found.
201 static struct ipq
*ip_find(struct net
*net
, struct iphdr
*iph
,
204 struct frag_v4_compare_key key
= {
210 .protocol
= iph
->protocol
,
212 struct inet_frag_queue
*q
;
214 q
= inet_frag_find(&net
->ipv4
.frags
, &key
);
218 return container_of(q
, struct ipq
, q
);
221 /* Is the fragment too far ahead to be part of ipq? */
222 static int ip_frag_too_far(struct ipq
*qp
)
224 struct inet_peer
*peer
= qp
->peer
;
225 unsigned int max
= qp
->q
.net
->max_dist
;
226 unsigned int start
, end
;
234 end
= atomic_inc_return(&peer
->rid
);
237 rc
= qp
->q
.fragments_tail
&& (end
- start
) > max
;
242 net
= container_of(qp
->q
.net
, struct net
, ipv4
.frags
);
243 __IP_INC_STATS(net
, IPSTATS_MIB_REASMFAILS
);
249 static int ip_frag_reinit(struct ipq
*qp
)
251 unsigned int sum_truesize
= 0;
253 if (!mod_timer(&qp
->q
.timer
, jiffies
+ qp
->q
.net
->timeout
)) {
254 refcount_inc(&qp
->q
.refcnt
);
258 sum_truesize
= inet_frag_rbtree_purge(&qp
->q
.rb_fragments
);
259 sub_frag_mem_limit(qp
->q
.net
, sum_truesize
);
264 qp
->q
.rb_fragments
= RB_ROOT
;
265 qp
->q
.fragments_tail
= NULL
;
266 qp
->q
.last_run_head
= NULL
;
273 /* Add new segment to existing queue. */
274 static int ip_frag_queue(struct ipq
*qp
, struct sk_buff
*skb
)
276 struct net
*net
= container_of(qp
->q
.net
, struct net
, ipv4
.frags
);
277 int ihl
, end
, flags
, offset
;
278 struct sk_buff
*prev_tail
;
279 struct net_device
*dev
;
280 unsigned int fragsize
;
284 if (qp
->q
.flags
& INET_FRAG_COMPLETE
)
287 if (!(IPCB(skb
)->flags
& IPSKB_FRAG_COMPLETE
) &&
288 unlikely(ip_frag_too_far(qp
)) &&
289 unlikely(err
= ip_frag_reinit(qp
))) {
294 ecn
= ip4_frag_ecn(ip_hdr(skb
)->tos
);
295 offset
= ntohs(ip_hdr(skb
)->frag_off
);
296 flags
= offset
& ~IP_OFFSET
;
298 offset
<<= 3; /* offset is in 8-byte chunks */
299 ihl
= ip_hdrlen(skb
);
301 /* Determine the position of this fragment. */
302 end
= offset
+ skb
->len
- skb_network_offset(skb
) - ihl
;
305 /* Is this the final fragment? */
306 if ((flags
& IP_MF
) == 0) {
307 /* If we already have some bits beyond end
308 * or have different end, the segment is corrupted.
310 if (end
< qp
->q
.len
||
311 ((qp
->q
.flags
& INET_FRAG_LAST_IN
) && end
!= qp
->q
.len
))
313 qp
->q
.flags
|= INET_FRAG_LAST_IN
;
318 if (skb
->ip_summed
!= CHECKSUM_UNNECESSARY
)
319 skb
->ip_summed
= CHECKSUM_NONE
;
321 if (end
> qp
->q
.len
) {
322 /* Some bits beyond end -> corruption. */
323 if (qp
->q
.flags
& INET_FRAG_LAST_IN
)
332 if (!pskb_pull(skb
, skb_network_offset(skb
) + ihl
))
335 err
= pskb_trim_rcsum(skb
, end
- offset
);
339 /* Note : skb->rbnode and skb->dev share the same location. */
341 /* Makes sure compiler wont do silly aliasing games */
344 prev_tail
= qp
->q
.fragments_tail
;
345 err
= inet_frag_queue_insert(&qp
->q
, skb
, offset
, end
);
350 qp
->iif
= dev
->ifindex
;
352 qp
->q
.stamp
= skb
->tstamp
;
353 qp
->q
.meat
+= skb
->len
;
355 add_frag_mem_limit(qp
->q
.net
, skb
->truesize
);
357 qp
->q
.flags
|= INET_FRAG_FIRST_IN
;
359 fragsize
= skb
->len
+ ihl
;
361 if (fragsize
> qp
->q
.max_size
)
362 qp
->q
.max_size
= fragsize
;
364 if (ip_hdr(skb
)->frag_off
& htons(IP_DF
) &&
365 fragsize
> qp
->max_df_size
)
366 qp
->max_df_size
= fragsize
;
368 if (qp
->q
.flags
== (INET_FRAG_FIRST_IN
| INET_FRAG_LAST_IN
) &&
369 qp
->q
.meat
== qp
->q
.len
) {
370 unsigned long orefdst
= skb
->_skb_refdst
;
372 skb
->_skb_refdst
= 0UL;
373 err
= ip_frag_reasm(qp
, skb
, prev_tail
, dev
);
374 skb
->_skb_refdst
= orefdst
;
376 inet_frag_kill(&qp
->q
);
384 if (err
== IPFRAG_DUP
) {
389 __IP_INC_STATS(net
, IPSTATS_MIB_REASM_OVERLAPS
);
391 inet_frag_kill(&qp
->q
);
392 __IP_INC_STATS(net
, IPSTATS_MIB_REASMFAILS
);
398 /* Build a new IP datagram from all its fragments. */
399 static int ip_frag_reasm(struct ipq
*qp
, struct sk_buff
*skb
,
400 struct sk_buff
*prev_tail
, struct net_device
*dev
)
402 struct net
*net
= container_of(qp
->q
.net
, struct net
, ipv4
.frags
);
410 ecn
= ip_frag_ecn_table
[qp
->ecn
];
411 if (unlikely(ecn
== 0xff)) {
416 /* Make the one we just received the head. */
417 reasm_data
= inet_frag_reasm_prepare(&qp
->q
, skb
, prev_tail
);
421 len
= ip_hdrlen(skb
) + qp
->q
.len
;
426 inet_frag_reasm_finish(&qp
->q
, skb
, reasm_data
);
429 IPCB(skb
)->frag_max_size
= max(qp
->max_df_size
, qp
->q
.max_size
);
432 iph
->tot_len
= htons(len
);
435 /* When we set IP_DF on a refragmented skb we must also force a
436 * call to ip_fragment to avoid forwarding a DF-skb of size s while
437 * original sender only sent fragments of size f (where f < s).
439 * We only set DF/IPSKB_FRAG_PMTU if such DF fragment was the largest
440 * frag seen to avoid sending tiny DF-fragments in case skb was built
441 * from one very small df-fragment and one large non-df frag.
443 if (qp
->max_df_size
== qp
->q
.max_size
) {
444 IPCB(skb
)->flags
|= IPSKB_FRAG_PMTU
;
445 iph
->frag_off
= htons(IP_DF
);
452 __IP_INC_STATS(net
, IPSTATS_MIB_REASMOKS
);
453 qp
->q
.rb_fragments
= RB_ROOT
;
454 qp
->q
.fragments_tail
= NULL
;
455 qp
->q
.last_run_head
= NULL
;
459 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp
);
463 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp
->q
.key
.v4
.saddr
);
465 __IP_INC_STATS(net
, IPSTATS_MIB_REASMFAILS
);
469 /* Process an incoming IP datagram fragment. */
470 int ip_defrag(struct net
*net
, struct sk_buff
*skb
, u32 user
)
472 struct net_device
*dev
= skb
->dev
? : skb_dst(skb
)->dev
;
473 int vif
= l3mdev_master_ifindex_rcu(dev
);
476 __IP_INC_STATS(net
, IPSTATS_MIB_REASMREQDS
);
479 /* Lookup (or create) queue header */
480 qp
= ip_find(net
, ip_hdr(skb
), user
, vif
);
484 spin_lock(&qp
->q
.lock
);
486 ret
= ip_frag_queue(qp
, skb
);
488 spin_unlock(&qp
->q
.lock
);
493 __IP_INC_STATS(net
, IPSTATS_MIB_REASMFAILS
);
497 EXPORT_SYMBOL(ip_defrag
);
499 struct sk_buff
*ip_check_defrag(struct net
*net
, struct sk_buff
*skb
, u32 user
)
505 if (skb
->protocol
!= htons(ETH_P_IP
))
508 netoff
= skb_network_offset(skb
);
510 if (skb_copy_bits(skb
, netoff
, &iph
, sizeof(iph
)) < 0)
513 if (iph
.ihl
< 5 || iph
.version
!= 4)
516 len
= ntohs(iph
.tot_len
);
517 if (skb
->len
< netoff
+ len
|| len
< (iph
.ihl
* 4))
520 if (ip_is_fragment(&iph
)) {
521 skb
= skb_share_check(skb
, GFP_ATOMIC
);
523 if (!pskb_may_pull(skb
, netoff
+ iph
.ihl
* 4)) {
527 if (pskb_trim_rcsum(skb
, netoff
+ len
)) {
531 memset(IPCB(skb
), 0, sizeof(struct inet_skb_parm
));
532 if (ip_defrag(net
, skb
, user
))
539 EXPORT_SYMBOL(ip_check_defrag
);
544 static struct ctl_table ip4_frags_ns_ctl_table
[] = {
546 .procname
= "ipfrag_high_thresh",
547 .data
= &init_net
.ipv4
.frags
.high_thresh
,
548 .maxlen
= sizeof(unsigned long),
550 .proc_handler
= proc_doulongvec_minmax
,
551 .extra1
= &init_net
.ipv4
.frags
.low_thresh
554 .procname
= "ipfrag_low_thresh",
555 .data
= &init_net
.ipv4
.frags
.low_thresh
,
556 .maxlen
= sizeof(unsigned long),
558 .proc_handler
= proc_doulongvec_minmax
,
559 .extra2
= &init_net
.ipv4
.frags
.high_thresh
562 .procname
= "ipfrag_time",
563 .data
= &init_net
.ipv4
.frags
.timeout
,
564 .maxlen
= sizeof(int),
566 .proc_handler
= proc_dointvec_jiffies
,
569 .procname
= "ipfrag_max_dist",
570 .data
= &init_net
.ipv4
.frags
.max_dist
,
571 .maxlen
= sizeof(int),
573 .proc_handler
= proc_dointvec_minmax
,
579 /* secret interval has been deprecated */
580 static int ip4_frags_secret_interval_unused
;
581 static struct ctl_table ip4_frags_ctl_table
[] = {
583 .procname
= "ipfrag_secret_interval",
584 .data
= &ip4_frags_secret_interval_unused
,
585 .maxlen
= sizeof(int),
587 .proc_handler
= proc_dointvec_jiffies
,
592 static int __net_init
ip4_frags_ns_ctl_register(struct net
*net
)
594 struct ctl_table
*table
;
595 struct ctl_table_header
*hdr
;
597 table
= ip4_frags_ns_ctl_table
;
598 if (!net_eq(net
, &init_net
)) {
599 table
= kmemdup(table
, sizeof(ip4_frags_ns_ctl_table
), GFP_KERNEL
);
603 table
[0].data
= &net
->ipv4
.frags
.high_thresh
;
604 table
[0].extra1
= &net
->ipv4
.frags
.low_thresh
;
605 table
[1].data
= &net
->ipv4
.frags
.low_thresh
;
606 table
[1].extra2
= &net
->ipv4
.frags
.high_thresh
;
607 table
[2].data
= &net
->ipv4
.frags
.timeout
;
608 table
[3].data
= &net
->ipv4
.frags
.max_dist
;
611 hdr
= register_net_sysctl(net
, "net/ipv4", table
);
615 net
->ipv4
.frags_hdr
= hdr
;
619 if (!net_eq(net
, &init_net
))
625 static void __net_exit
ip4_frags_ns_ctl_unregister(struct net
*net
)
627 struct ctl_table
*table
;
629 table
= net
->ipv4
.frags_hdr
->ctl_table_arg
;
630 unregister_net_sysctl_table(net
->ipv4
.frags_hdr
);
634 static void __init
ip4_frags_ctl_register(void)
636 register_net_sysctl(&init_net
, "net/ipv4", ip4_frags_ctl_table
);
639 static int ip4_frags_ns_ctl_register(struct net
*net
)
644 static void ip4_frags_ns_ctl_unregister(struct net
*net
)
648 static void __init
ip4_frags_ctl_register(void)
653 static int __net_init
ipv4_frags_init_net(struct net
*net
)
657 /* Fragment cache limits.
659 * The fragment memory accounting code, (tries to) account for
660 * the real memory usage, by measuring both the size of frag
661 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
662 * and the SKB's truesize.
664 * A 64K fragment consumes 129736 bytes (44*2944)+200
665 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
667 * We will commit 4MB at one time. Should we cross that limit
668 * we will prune down to 3MB, making room for approx 8 big 64K
671 net
->ipv4
.frags
.high_thresh
= 4 * 1024 * 1024;
672 net
->ipv4
.frags
.low_thresh
= 3 * 1024 * 1024;
674 * Important NOTE! Fragment queue must be destroyed before MSL expires.
675 * RFC791 is wrong proposing to prolongate timer each fragment arrival
678 net
->ipv4
.frags
.timeout
= IP_FRAG_TIME
;
680 net
->ipv4
.frags
.max_dist
= 64;
681 net
->ipv4
.frags
.f
= &ip4_frags
;
683 res
= inet_frags_init_net(&net
->ipv4
.frags
);
686 res
= ip4_frags_ns_ctl_register(net
);
688 inet_frags_exit_net(&net
->ipv4
.frags
);
692 static void __net_exit
ipv4_frags_exit_net(struct net
*net
)
694 ip4_frags_ns_ctl_unregister(net
);
695 inet_frags_exit_net(&net
->ipv4
.frags
);
698 static struct pernet_operations ip4_frags_ops
= {
699 .init
= ipv4_frags_init_net
,
700 .exit
= ipv4_frags_exit_net
,
704 static u32
ip4_key_hashfn(const void *data
, u32 len
, u32 seed
)
707 sizeof(struct frag_v4_compare_key
) / sizeof(u32
), seed
);
710 static u32
ip4_obj_hashfn(const void *data
, u32 len
, u32 seed
)
712 const struct inet_frag_queue
*fq
= data
;
714 return jhash2((const u32
*)&fq
->key
.v4
,
715 sizeof(struct frag_v4_compare_key
) / sizeof(u32
), seed
);
718 static int ip4_obj_cmpfn(struct rhashtable_compare_arg
*arg
, const void *ptr
)
720 const struct frag_v4_compare_key
*key
= arg
->key
;
721 const struct inet_frag_queue
*fq
= ptr
;
723 return !!memcmp(&fq
->key
, key
, sizeof(*key
));
726 static const struct rhashtable_params ip4_rhash_params
= {
727 .head_offset
= offsetof(struct inet_frag_queue
, node
),
728 .key_offset
= offsetof(struct inet_frag_queue
, key
),
729 .key_len
= sizeof(struct frag_v4_compare_key
),
730 .hashfn
= ip4_key_hashfn
,
731 .obj_hashfn
= ip4_obj_hashfn
,
732 .obj_cmpfn
= ip4_obj_cmpfn
,
733 .automatic_shrinking
= true,
736 void __init
ipfrag_init(void)
738 ip4_frags
.constructor
= ip4_frag_init
;
739 ip4_frags
.destructor
= ip4_frag_free
;
740 ip4_frags
.qsize
= sizeof(struct ipq
);
741 ip4_frags
.frag_expire
= ip_expire
;
742 ip4_frags
.frags_cache_name
= ip_frag_cache_name
;
743 ip4_frags
.rhash_params
= ip4_rhash_params
;
744 if (inet_frags_init(&ip4_frags
))
745 panic("IP: failed to allocate ip4_frags cache\n");
746 ip4_frags_ctl_register();
747 register_pernet_subsys(&ip4_frags_ops
);