blob: 29038513f3ca19aed34e78f2c60bbdc9a787f4ec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * The IP fragmentation functionality.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: Fred N. van Kempen <waltje@uWalt.NL.Mugnet.ORG>
Alan Cox113aa832008-10-13 19:01:08 -07009 * Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Fixes:
12 * Alan Cox : Split from ip.c , see ip_input.c for history.
13 * David S. Miller : Begin massive cleanup...
14 * Andi Kleen : Add sysctls.
15 * xxxx : Overlapfrag bug.
16 * Ultima : ip_expire() kernel panic.
17 * Bill Hawes : Frag accounting and evictor fixes.
18 * John McDonald : 0 length frag bug.
19 * Alexey Kuznetsov: SMP races, threading, cleanup.
20 * Patrick McHardy : LRU queue of frag heads for evictor.
21 */
22
Joe Perchesafd465032012-03-12 07:03:32 +000023#define pr_fmt(fmt) "IPv4: " fmt
24
Herbert Xu89cee8b2005-12-13 23:14:27 -080025#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/mm.h>
29#include <linux/jiffies.h>
30#include <linux/skbuff.h>
31#include <linux/list.h>
32#include <linux/ip.h>
33#include <linux/icmp.h>
34#include <linux/netdevice.h>
35#include <linux/jhash.h>
36#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Shan Weie9017b52010-01-23 01:57:42 -080038#include <net/route.h>
39#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <net/sock.h>
41#include <net/ip.h>
42#include <net/icmp.h>
43#include <net/checksum.h>
Herbert Xu89cee8b2005-12-13 23:14:27 -080044#include <net/inetpeer.h>
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070045#include <net/inet_frag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/tcp.h>
47#include <linux/udp.h>
48#include <linux/inet.h>
49#include <linux/netfilter_ipv4.h>
Eric Dumazet6623e3b2011-01-05 07:52:55 +000050#include <net/inet_ecn.h>
David Ahern385add92015-09-29 20:07:13 -070051#include <net/l3mdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
54 * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
55 * as well. Or notify me, at least. --ANK
56 */
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020057static const char ip_frag_cache_name[] = "ip4-frags";
Herbert Xu89cee8b2005-12-13 23:14:27 -080058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059struct ipfrag_skb_cb
60{
61 struct inet_skb_parm h;
62 int offset;
63};
64
Jianjun Kongfd3f8c42008-11-03 02:47:38 -080065#define FRAG_CB(skb) ((struct ipfrag_skb_cb *)((skb)->cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* Describe an entry in the "incomplete datagrams" queue. */
68struct ipq {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070069 struct inet_frag_queue q;
70
Eric Dumazet6623e3b2011-01-05 07:52:55 +000071 u8 ecn; /* RFC3168 support */
Florian Westphald6b915e2015-05-22 16:32:51 +020072 u16 max_df_size; /* largest frag with DF set seen */
Herbert Xu89cee8b2005-12-13 23:14:27 -080073 int iif;
74 unsigned int rid;
75 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
Fabian Frederickaa1f7312014-11-04 20:44:04 +010078static u8 ip4_frag_ecn(u8 tos)
Eric Dumazet6623e3b2011-01-05 07:52:55 +000079{
Eric Dumazet5173cc02011-05-16 08:37:37 +000080 return 1 << (tos & INET_ECN_MASK);
Eric Dumazet6623e3b2011-01-05 07:52:55 +000081}
82
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070083static struct inet_frags ip4_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -080085int ip_frag_mem(struct net *net)
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070086{
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +000087 return sum_frag_mem_limit(&net->ipv4.frags);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070088}
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Herbert Xu1706d582007-10-14 00:38:15 -070090static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
91 struct net_device *dev);
92
Pavel Emelyanovabd65232007-10-17 19:47:21 -070093
Florian Westphal36c77782014-07-24 16:50:29 +020094static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070095{
96 struct ipq *qp = container_of(q, struct ipq, q);
Gao feng54db0cc2012-06-08 01:21:40 +000097 struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4,
98 frags);
99 struct net *net = container_of(ipv4, struct net, ipv4);
100
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700101 const struct frag_v4_compare_key *key = a;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700102
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700103 q->key.v4 = *key;
104 qp->ecn = 0;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200105 qp->peer = q->net->max_dist ?
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700106 inet_getpeer_v4(net->ipv4.peers, key->saddr, key->vif, 1) :
David Ahern192132b2015-08-27 16:07:03 -0700107 NULL;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700108}
109
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100110static void ip4_frag_free(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700112 struct ipq *qp;
113
114 qp = container_of(q, struct ipq, q);
115 if (qp->peer)
116 inet_putpeer(qp->peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120/* Destruction primitives. */
121
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100122static void ipq_put(struct ipq *ipq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700124 inet_frag_put(&ipq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127/* Kill ipq entry. It is not destroyed immediately,
128 * because caller (and someone more) holds reference count.
129 */
130static void ipq_kill(struct ipq *ipq)
131{
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700132 inet_frag_kill(&ipq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
Andy Zhou5cf42282015-05-15 14:15:35 -0700135static bool frag_expire_skip_icmp(u32 user)
136{
137 return user == IP_DEFRAG_AF_PACKET ||
138 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_IN,
Andy Zhou8bc04862015-05-15 14:15:36 -0700139 __IP_DEFRAG_CONNTRACK_IN_END) ||
140 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_BRIDGE_IN,
141 __IP_DEFRAG_CONNTRACK_BRIDGE_IN);
Andy Zhou5cf42282015-05-15 14:15:35 -0700142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/*
145 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
146 */
147static void ip_expire(unsigned long arg)
148{
Pavel Emelyanove521db92007-10-17 19:45:23 -0700149 struct ipq *qp;
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700150 struct net *net;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700151
152 qp = container_of((struct inet_frag_queue *) arg, struct ipq, q);
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700153 net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Eric Dumazet76568712017-03-22 08:57:15 -0700155 rcu_read_lock();
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700156 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200158 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 goto out;
160
161 ipq_kill(qp);
Eric Dumazetb45386e2016-04-27 16:44:35 -0700162 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Nikolay Aleksandrovcaaecdd2015-07-23 12:05:40 +0200164 if (!inet_frag_evicting(&qp->q)) {
Eric Dumazet76568712017-03-22 08:57:15 -0700165 struct sk_buff *clone, *head = qp->q.fragments;
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000166 const struct iphdr *iph;
167 int err;
Denis V. Lunevcb846632008-03-24 15:31:00 -0700168
Eric Dumazetb45386e2016-04-27 16:44:35 -0700169 __IP_INC_STATS(net, IPSTATS_MIB_REASMTIMEOUT);
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200170
171 if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !qp->q.fragments)
172 goto out;
173
Eric Dumazet69df9d52009-11-05 20:59:47 -0800174 head->dev = dev_get_by_index_rcu(net, qp->iif);
Shan Weie9017b52010-01-23 01:57:42 -0800175 if (!head->dev)
Eric Dumazet76568712017-03-22 08:57:15 -0700176 goto out;
177
Shan Weie9017b52010-01-23 01:57:42 -0800178
Eric Dumazet97599dc2013-04-16 12:55:41 +0000179 /* skb has no dst, perform route lookup again */
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000180 iph = ip_hdr(head);
David S. Millerc6cffba2012-07-26 11:14:38 +0000181 err = ip_route_input_noref(head, iph->daddr, iph->saddr,
182 iph->tos, head->dev);
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000183 if (err)
Eric Dumazet76568712017-03-22 08:57:15 -0700184 goto out;
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000185
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200186 /* Only an end host needs to send an ICMP
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000187 * "Fragment Reassembly Timeout" message, per RFC792.
Shan Weie9017b52010-01-23 01:57:42 -0800188 */
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700189 if (frag_expire_skip_icmp(qp->q.key.v4.user) &&
Andy Zhou5cf42282015-05-15 14:15:35 -0700190 (skb_rtable(head)->rt_type != RTN_LOCAL))
Eric Dumazet76568712017-03-22 08:57:15 -0700191 goto out;
192
193 clone = skb_clone(head, GFP_ATOMIC);
Shan Weie9017b52010-01-23 01:57:42 -0800194
Shan Weie9017b52010-01-23 01:57:42 -0800195 /* Send an ICMP "Fragment Reassembly Timeout" message. */
Eric Dumazet76568712017-03-22 08:57:15 -0700196 if (clone) {
197 spin_unlock(&qp->q.lock);
198 icmp_send(clone, ICMP_TIME_EXCEEDED,
199 ICMP_EXC_FRAGTIME, 0);
200 consume_skb(clone);
201 goto out_rcu_unlock;
202 }
Patrick McHardyd1c9ae62010-02-02 11:46:50 -0800203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700205 spin_unlock(&qp->q.lock);
Eric Dumazet76568712017-03-22 08:57:15 -0700206out_rcu_unlock:
207 rcu_read_unlock();
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700208 ipq_put(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700211/* Find the correct entry in the "incomplete datagrams" queue for
212 * this IP datagram, and create new one, if nothing is found.
213 */
David Ahern9972f132015-08-13 14:59:09 -0600214static struct ipq *ip_find(struct net *net, struct iphdr *iph,
215 u32 user, int vif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700217 struct frag_v4_compare_key key = {
218 .saddr = iph->saddr,
219 .daddr = iph->daddr,
220 .user = user,
221 .vif = vif,
222 .id = iph->id,
223 .protocol = iph->protocol,
224 };
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700225 struct inet_frag_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700227 q = inet_frag_find(&net->ipv4.frags, &key);
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000228 if (IS_ERR_OR_NULL(q)) {
229 inet_frag_maybe_warn_overflow(q, pr_fmt());
230 return NULL;
231 }
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700232 return container_of(q, struct ipq, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Herbert Xu89cee8b2005-12-13 23:14:27 -0800235/* Is the fragment too far ahead to be part of ipq? */
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100236static int ip_frag_too_far(struct ipq *qp)
Herbert Xu89cee8b2005-12-13 23:14:27 -0800237{
238 struct inet_peer *peer = qp->peer;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200239 unsigned int max = qp->q.net->max_dist;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800240 unsigned int start, end;
241
242 int rc;
243
244 if (!peer || !max)
245 return 0;
246
247 start = qp->rid;
248 end = atomic_inc_return(&peer->rid);
249 qp->rid = end;
250
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700251 rc = qp->q.fragments && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800252
253 if (rc) {
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700254 struct net *net;
255
256 net = container_of(qp->q.net, struct net, ipv4.frags);
Eric Dumazetb45386e2016-04-27 16:44:35 -0700257 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800258 }
259
260 return rc;
261}
262
263static int ip_frag_reinit(struct ipq *qp)
264{
265 struct sk_buff *fp;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000266 unsigned int sum_truesize = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800267
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800268 if (!mod_timer(&qp->q.timer, jiffies + qp->q.net->timeout)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700269 atomic_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800270 return -ETIMEDOUT;
271 }
272
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700273 fp = qp->q.fragments;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800274 do {
275 struct sk_buff *xp = fp->next;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000276
277 sum_truesize += fp->truesize;
278 kfree_skb(fp);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800279 fp = xp;
280 } while (fp);
Florian Westphal0e60d242015-07-23 12:05:38 +0200281 sub_frag_mem_limit(qp->q.net, sum_truesize);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800282
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200283 qp->q.flags = 0;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700284 qp->q.len = 0;
285 qp->q.meat = 0;
286 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000287 qp->q.fragments_tail = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800288 qp->iif = 0;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000289 qp->ecn = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800290
291 return 0;
292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700295static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700298 struct net_device *dev;
Florian Westphald6b915e2015-05-22 16:32:51 +0200299 unsigned int fragsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 int flags, offset;
301 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700302 int err = -ENOENT;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000303 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200305 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 goto err;
307
Herbert Xu89cee8b2005-12-13 23:14:27 -0800308 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700309 unlikely(ip_frag_too_far(qp)) &&
310 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800311 ipq_kill(qp);
312 goto err;
313 }
314
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000315 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700316 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 flags = offset & ~IP_OFFSET;
318 offset &= IP_OFFSET;
319 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300320 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 /* Determine the position of this fragment. */
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200323 end = offset + skb->len - skb_network_offset(skb) - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700324 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /* Is this the final fragment? */
327 if ((flags & IP_MF) == 0) {
328 /* If we already have some bits beyond end
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800329 * or have different end, the segment is corrupted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700331 if (end < qp->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200332 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 goto err;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200334 qp->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700335 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 } else {
337 if (end&7) {
338 end &= ~7;
339 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
340 skb->ip_summed = CHECKSUM_NONE;
341 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700342 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200344 if (qp->q.flags & INET_FRAG_LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700346 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348 }
349 if (end == offset)
350 goto err;
351
Herbert Xu1706d582007-10-14 00:38:15 -0700352 err = -ENOMEM;
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200353 if (!pskb_pull(skb, skb_network_offset(skb) + ihl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700355
356 err = pskb_trim_rcsum(skb, end - offset);
357 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 goto err;
359
360 /* Find out which fragments are in front and at the back of us
361 * in the chain of fragments so far. We must know where to put
362 * this fragment, right?
363 */
Changli Gaod6bebca2010-06-29 04:39:37 +0000364 prev = qp->q.fragments_tail;
365 if (!prev || FRAG_CB(prev)->offset < offset) {
366 next = NULL;
367 goto found;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700370 for (next = qp->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (FRAG_CB(next)->offset >= offset)
372 break; /* bingo! */
373 prev = next;
374 }
375
Changli Gaod6bebca2010-06-29 04:39:37 +0000376found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* We found where to put this one. Check for overlap with
378 * preceding fragment, and, if needed, align things so that
379 * any overlaps are eliminated.
380 */
381 if (prev) {
382 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
383
384 if (i > 0) {
385 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700386 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (end <= offset)
388 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700389 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (!pskb_pull(skb, i))
391 goto err;
392 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
393 skb->ip_summed = CHECKSUM_NONE;
394 }
395 }
396
Herbert Xu1706d582007-10-14 00:38:15 -0700397 err = -ENOMEM;
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 while (next && FRAG_CB(next)->offset < end) {
400 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
401
402 if (i < next->len) {
Eric Dumazetd59dcdf2018-07-30 21:50:29 -0700403 int delta = -next->truesize;
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /* Eat head of the next overlapped fragment
406 * and leave the loop. The next ones cannot overlap.
407 */
408 if (!pskb_pull(next, i))
409 goto err;
Eric Dumazetd59dcdf2018-07-30 21:50:29 -0700410 delta += next->truesize;
411 if (delta)
412 add_frag_mem_limit(qp->q.net, delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 FRAG_CB(next)->offset += i;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700414 qp->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (next->ip_summed != CHECKSUM_UNNECESSARY)
416 next->ip_summed = CHECKSUM_NONE;
417 break;
418 } else {
419 struct sk_buff *free_it = next;
420
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100421 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * new one drop it.
423 */
424 next = next->next;
425
426 if (prev)
427 prev->next = next;
428 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700429 qp->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700431 qp->q.meat -= free_it->len;
Florian Westphal0e60d242015-07-23 12:05:38 +0200432 sub_frag_mem_limit(qp->q.net, free_it->truesize);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000433 kfree_skb(free_it);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435 }
436
437 FRAG_CB(skb)->offset = offset;
438
439 /* Insert this fragment in the chain of fragments. */
440 skb->next = next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000441 if (!next)
442 qp->q.fragments_tail = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (prev)
444 prev->next = skb;
445 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700446 qp->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Herbert Xu1706d582007-10-14 00:38:15 -0700448 dev = skb->dev;
449 if (dev) {
450 qp->iif = dev->ifindex;
451 skb->dev = NULL;
452 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700453 qp->q.stamp = skb->tstamp;
454 qp->q.meat += skb->len;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000455 qp->ecn |= ecn;
Florian Westphal0e60d242015-07-23 12:05:38 +0200456 add_frag_mem_limit(qp->q.net, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (offset == 0)
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200458 qp->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Florian Westphald6b915e2015-05-22 16:32:51 +0200460 fragsize = skb->len + ihl;
461
462 if (fragsize > qp->q.max_size)
463 qp->q.max_size = fragsize;
464
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200465 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
Florian Westphald6b915e2015-05-22 16:32:51 +0200466 fragsize > qp->max_df_size)
467 qp->max_df_size = fragsize;
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200468
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200469 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000470 qp->q.meat == qp->q.len) {
471 unsigned long orefdst = skb->_skb_refdst;
Herbert Xu1706d582007-10-14 00:38:15 -0700472
Eric Dumazet97599dc2013-04-16 12:55:41 +0000473 skb->_skb_refdst = 0UL;
474 err = ip_frag_reasm(qp, prev, dev);
475 skb->_skb_refdst = orefdst;
476 return err;
477 }
478
479 skb_dst_drop(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700480 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482err:
483 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700484 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
487
488/* Build a new IP datagram from all its fragments. */
489
Herbert Xu1706d582007-10-14 00:38:15 -0700490static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
491 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700493 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct iphdr *iph;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700495 struct sk_buff *fp, *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int len;
497 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700498 int err;
Eric Dumazet5173cc02011-05-16 08:37:37 +0000499 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 ipq_kill(qp);
502
Hannes Frederic Sowabe991972013-03-22 08:24:37 +0000503 ecn = ip_frag_ecn_table[qp->ecn];
Eric Dumazet5173cc02011-05-16 08:37:37 +0000504 if (unlikely(ecn == 0xff)) {
505 err = -EINVAL;
506 goto out_fail;
507 }
Herbert Xu1706d582007-10-14 00:38:15 -0700508 /* Make the one we just received the head. */
509 if (prev) {
510 head = prev->next;
511 fp = skb_clone(head, GFP_ATOMIC);
Herbert Xu1706d582007-10-14 00:38:15 -0700512 if (!fp)
513 goto out_nomem;
514
515 fp->next = head->next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000516 if (!fp->next)
517 qp->q.fragments_tail = fp;
Herbert Xu1706d582007-10-14 00:38:15 -0700518 prev->next = fp;
519
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700520 skb_morph(head, qp->q.fragments);
521 head->next = qp->q.fragments->next;
Herbert Xu1706d582007-10-14 00:38:15 -0700522
Eric Dumazetcbf8f7b2012-04-19 06:10:26 +0000523 consume_skb(qp->q.fragments);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700524 qp->q.fragments = head;
Herbert Xu1706d582007-10-14 00:38:15 -0700525 }
526
Ian Morris51456b22015-04-03 09:17:26 +0100527 WARN_ON(!head);
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700528 WARN_ON(FRAG_CB(head)->offset != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300531 ihlen = ip_hdrlen(head);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700532 len = ihlen + qp->q.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Herbert Xu1706d582007-10-14 00:38:15 -0700534 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800535 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto out_oversize;
537
538 /* Head of list must not be cloned. */
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000539 if (skb_unclone(head, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 goto out_nomem;
541
542 /* If the first fragment is fragmented itself, we split
543 * it to two chunks: the first with data and paged part
544 * and the second, holding only fragments. */
David S. Miller21dc3302010-08-23 00:13:46 -0700545 if (skb_has_frag_list(head)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 struct sk_buff *clone;
547 int i, plen = 0;
548
Ian Morris51456b22015-04-03 09:17:26 +0100549 clone = alloc_skb(0, GFP_ATOMIC);
550 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 goto out_nomem;
552 clone->next = head->next;
553 head->next = clone;
554 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
David S. Millerd7fcf1a2009-06-09 00:19:37 -0700555 skb_frag_list_init(head);
Eric Dumazet9e903e02011-10-18 21:00:24 +0000556 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
557 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 clone->len = clone->data_len = head->data_len - plen;
559 head->data_len -= clone->len;
560 head->len -= clone->len;
561 clone->csum = 0;
562 clone->ip_summed = head->ip_summed;
Florian Westphal0e60d242015-07-23 12:05:38 +0200563 add_frag_mem_limit(qp->q.net, clone->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565
Florian Westphal14fe22e2015-07-11 01:37:36 +0200566 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700567 skb_push(head, head->data - skb_network_header(head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Florian Westphal14fe22e2015-07-11 01:37:36 +0200569 for (fp=head->next; fp; fp = fp->next) {
570 head->data_len += fp->len;
571 head->len += fp->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (head->ip_summed != fp->ip_summed)
573 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700574 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 head->csum = csum_add(head->csum, fp->csum);
Florian Westphal14fe22e2015-07-11 01:37:36 +0200576 head->truesize += fp->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
David S. Miller5510b3c2015-07-31 23:52:20 -0700578 sub_frag_mem_limit(qp->q.net, head->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 head->next = NULL;
581 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700582 head->tstamp = qp->q.stamp;
Florian Westphald6b915e2015-05-22 16:32:51 +0200583 IPCB(head)->frag_max_size = max(qp->max_df_size, qp->q.max_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700585 iph = ip_hdr(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 iph->tot_len = htons(len);
Eric Dumazet5173cc02011-05-16 08:37:37 +0000587 iph->tos |= ecn;
Florian Westphald6b915e2015-05-22 16:32:51 +0200588
589 /* When we set IP_DF on a refragmented skb we must also force a
590 * call to ip_fragment to avoid forwarding a DF-skb of size s while
591 * original sender only sent fragments of size f (where f < s).
592 *
593 * We only set DF/IPSKB_FRAG_PMTU if such DF fragment was the largest
594 * frag seen to avoid sending tiny DF-fragments in case skb was built
595 * from one very small df-fragment and one large non-df frag.
596 */
597 if (qp->max_df_size == qp->q.max_size) {
598 IPCB(head)->flags |= IPSKB_FRAG_PMTU;
599 iph->frag_off = htons(IP_DF);
600 } else {
601 iph->frag_off = 0;
602 }
603
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200604 ip_send_check(iph);
605
Eric Dumazetb45386e2016-04-27 16:44:35 -0700606 __IP_INC_STATS(net, IPSTATS_MIB_REASMOKS);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700607 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000608 qp->q.fragments_tail = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700609 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611out_nomem:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800612 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
David Howells45542472007-10-17 21:37:22 -0700613 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 goto out_fail;
615out_oversize:
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700616 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->q.key.v4.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617out_fail:
Eric Dumazetb45386e2016-04-27 16:44:35 -0700618 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700619 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620}
621
622/* Process an incoming IP datagram fragment. */
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500623int ip_defrag(struct net *net, struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
David Ahern9972f132015-08-13 14:59:09 -0600625 struct net_device *dev = skb->dev ? : skb_dst(skb)->dev;
David Ahern385add92015-09-29 20:07:13 -0700626 int vif = l3mdev_master_ifindex_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900628
Eric Dumazetb45386e2016-04-27 16:44:35 -0700629 __IP_INC_STATS(net, IPSTATS_MIB_REASMREQDS);
Joe Stringer8282f272016-01-22 15:49:12 -0800630 skb_orphan(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /* Lookup (or create) queue header */
David Ahern9972f132015-08-13 14:59:09 -0600633 qp = ip_find(net, ip_hdr(skb), user, vif);
Ian Morris00db4122015-04-03 09:17:27 +0100634 if (qp) {
Herbert Xu1706d582007-10-14 00:38:15 -0700635 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700637 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Herbert Xu1706d582007-10-14 00:38:15 -0700639 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700641 spin_unlock(&qp->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700642 ipq_put(qp);
Herbert Xu776c7292007-10-14 00:38:32 -0700643 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
Eric Dumazetb45386e2016-04-27 16:44:35 -0700646 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700648 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000650EXPORT_SYMBOL(ip_defrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500652struct sk_buff *ip_check_defrag(struct net *net, struct sk_buff *skb, u32 user)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000653{
Johannes Berg1bf37512012-12-09 23:41:06 +0000654 struct iphdr iph;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300655 int netoff;
Eric Dumazetbc416d92011-10-06 10:28:31 +0000656 u32 len;
657
658 if (skb->protocol != htons(ETH_P_IP))
659 return skb;
660
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300661 netoff = skb_network_offset(skb);
662
663 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000664 return skb;
665
Johannes Berg1bf37512012-12-09 23:41:06 +0000666 if (iph.ihl < 5 || iph.version != 4)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000667 return skb;
668
Johannes Berg1bf37512012-12-09 23:41:06 +0000669 len = ntohs(iph.tot_len);
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300670 if (skb->len < netoff + len || len < (iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000671 return skb;
672
673 if (ip_is_fragment(&iph)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +0000674 skb = skb_share_check(skb, GFP_ATOMIC);
675 if (skb) {
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300676 if (!pskb_may_pull(skb, netoff + iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000677 return skb;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300678 if (pskb_trim_rcsum(skb, netoff + len))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000679 return skb;
680 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500681 if (ip_defrag(net, skb, user))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000682 return NULL;
Tom Herbert7539fad2013-12-15 22:12:18 -0800683 skb_clear_hash(skb);
Eric Dumazetbc416d92011-10-06 10:28:31 +0000684 }
685 }
686 return skb;
687}
688EXPORT_SYMBOL(ip_check_defrag);
689
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800690#ifdef CONFIG_SYSCTL
691static int zero;
692
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700693static struct ctl_table ip4_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800694 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800695 .procname = "ipfrag_high_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800696 .data = &init_net.ipv4.frags.high_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800697 .maxlen = sizeof(int),
698 .mode = 0644,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200699 .proc_handler = proc_dointvec_minmax,
700 .extra1 = &init_net.ipv4.frags.low_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800701 },
702 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800703 .procname = "ipfrag_low_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800704 .data = &init_net.ipv4.frags.low_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800705 .maxlen = sizeof(int),
706 .mode = 0644,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200707 .proc_handler = proc_dointvec_minmax,
708 .extra1 = &zero,
709 .extra2 = &init_net.ipv4.frags.high_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800710 },
711 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800712 .procname = "ipfrag_time",
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800713 .data = &init_net.ipv4.frags.timeout,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800714 .maxlen = sizeof(int),
715 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800716 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800717 },
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200718 {
719 .procname = "ipfrag_max_dist",
720 .data = &init_net.ipv4.frags.max_dist,
721 .maxlen = sizeof(int),
722 .mode = 0644,
723 .proc_handler = proc_dointvec_minmax,
724 .extra1 = &zero
725 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700726 { }
727};
728
Florian Westphale3a57d12014-07-24 16:50:35 +0200729/* secret interval has been deprecated */
730static int ip4_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700731static struct ctl_table ip4_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800732 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800733 .procname = "ipfrag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200734 .data = &ip4_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800735 .maxlen = sizeof(int),
736 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800737 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800738 },
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800739 { }
740};
741
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000742static int __net_init ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800743{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800744 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800745 struct ctl_table_header *hdr;
746
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700747 table = ip4_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800748 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700749 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100750 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800751 goto err_alloc;
752
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800753 table[0].data = &net->ipv4.frags.high_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200754 table[0].extra1 = &net->ipv4.frags.low_thresh;
755 table[0].extra2 = &init_net.ipv4.frags.high_thresh;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800756 table[1].data = &net->ipv4.frags.low_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200757 table[1].extra2 = &net->ipv4.frags.high_thresh;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800758 table[2].data = &net->ipv4.frags.timeout;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200759 table[3].data = &net->ipv4.frags.max_dist;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800760 }
761
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000762 hdr = register_net_sysctl(net, "net/ipv4", table);
Ian Morris51456b22015-04-03 09:17:26 +0100763 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800764 goto err_reg;
765
766 net->ipv4.frags_hdr = hdr;
767 return 0;
768
769err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800770 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800771 kfree(table);
772err_alloc:
773 return -ENOMEM;
774}
775
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000776static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800777{
778 struct ctl_table *table;
779
780 table = net->ipv4.frags_hdr->ctl_table_arg;
781 unregister_net_sysctl_table(net->ipv4.frags_hdr);
782 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800783}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700784
Fabian Frederick57a02c32014-10-01 19:18:57 +0200785static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700786{
Eric W. Biederman43444752012-04-19 13:22:55 +0000787 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700788}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800789#else
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100790static int ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800791{
792 return 0;
793}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800794
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100795static void ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800796{
797}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700798
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100799static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700800{
801}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800802#endif
803
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000804static int __net_init ipv4_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800805{
Eric Dumazet7fca7712018-10-10 12:29:49 -0700806 int res;
807
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000808 /* Fragment cache limits.
809 *
810 * The fragment memory accounting code, (tries to) account for
811 * the real memory usage, by measuring both the size of frag
812 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
813 * and the SKB's truesize.
814 *
815 * A 64K fragment consumes 129736 bytes (44*2944)+200
816 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
817 *
818 * We will commit 4MB at one time. Should we cross that limit
819 * we will prune down to 3MB, making room for approx 8 big 64K
820 * fragments 8x128k.
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800821 */
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000822 net->ipv4.frags.high_thresh = 4 * 1024 * 1024;
823 net->ipv4.frags.low_thresh = 3 * 1024 * 1024;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800824 /*
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800825 * Important NOTE! Fragment queue must be destroyed before MSL expires.
826 * RFC791 is wrong proposing to prolongate timer each fragment arrival
827 * by TTL.
828 */
829 net->ipv4.frags.timeout = IP_FRAG_TIME;
830
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200831 net->ipv4.frags.max_dist = 64;
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700832 net->ipv4.frags.f = &ip4_frags;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200833
Eric Dumazet7fca7712018-10-10 12:29:49 -0700834 res = inet_frags_init_net(&net->ipv4.frags);
835 if (res < 0)
836 return res;
837 res = ip4_frags_ns_ctl_register(net);
838 if (res < 0)
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700839 inet_frags_exit_net(&net->ipv4.frags);
Eric Dumazet7fca7712018-10-10 12:29:49 -0700840 return res;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800841}
842
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000843static void __net_exit ipv4_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800844{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700845 ip4_frags_ns_ctl_unregister(net);
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700846 inet_frags_exit_net(&net->ipv4.frags);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800847}
848
849static struct pernet_operations ip4_frags_ops = {
850 .init = ipv4_frags_init_net,
851 .exit = ipv4_frags_exit_net,
852};
853
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700854
855static u32 ip4_key_hashfn(const void *data, u32 len, u32 seed)
856{
857 return jhash2(data,
858 sizeof(struct frag_v4_compare_key) / sizeof(u32), seed);
859}
860
861static u32 ip4_obj_hashfn(const void *data, u32 len, u32 seed)
862{
863 const struct inet_frag_queue *fq = data;
864
865 return jhash2((const u32 *)&fq->key.v4,
866 sizeof(struct frag_v4_compare_key) / sizeof(u32), seed);
867}
868
869static int ip4_obj_cmpfn(struct rhashtable_compare_arg *arg, const void *ptr)
870{
871 const struct frag_v4_compare_key *key = arg->key;
872 const struct inet_frag_queue *fq = ptr;
873
874 return !!memcmp(&fq->key, key, sizeof(*key));
875}
876
877static const struct rhashtable_params ip4_rhash_params = {
878 .head_offset = offsetof(struct inet_frag_queue, node),
879 .key_offset = offsetof(struct inet_frag_queue, key),
880 .key_len = sizeof(struct frag_v4_compare_key),
881 .hashfn = ip4_key_hashfn,
882 .obj_hashfn = ip4_obj_hashfn,
883 .obj_cmpfn = ip4_obj_cmpfn,
884 .automatic_shrinking = true,
885};
886
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700887void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700889 ip4_frags.constructor = ip4_frag_init;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700890 ip4_frags.destructor = ip4_frag_free;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700891 ip4_frags.qsize = sizeof(struct ipq);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700892 ip4_frags.frag_expire = ip_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200893 ip4_frags.frags_cache_name = ip_frag_cache_name;
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700894 ip4_frags.rhash_params = ip4_rhash_params;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200895 if (inet_frags_init(&ip4_frags))
896 panic("IP: failed to allocate ip4_frags cache\n");
Eric Dumazetbbf6d862018-10-10 12:29:51 -0700897 ip4_frags_ctl_register();
898 register_pernet_subsys(&ip4_frags_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}