blob: 4bf3b8af02571a6f39da06dabd816c8381cc9d6a [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 u32 user;
Al Viro18277772006-09-26 22:19:02 -070072 __be32 saddr;
73 __be32 daddr;
74 __be16 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 u8 protocol;
Eric Dumazet6623e3b2011-01-05 07:52:55 +000076 u8 ecn; /* RFC3168 support */
Florian Westphald6b915e2015-05-22 16:32:51 +020077 u16 max_df_size; /* largest frag with DF set seen */
Herbert Xu89cee8b2005-12-13 23:14:27 -080078 int iif;
David Ahern385add92015-09-29 20:07:13 -070079 int vif; /* L3 master device index */
Herbert Xu89cee8b2005-12-13 23:14:27 -080080 unsigned int rid;
81 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
Fabian Frederickaa1f7312014-11-04 20:44:04 +010084static u8 ip4_frag_ecn(u8 tos)
Eric Dumazet6623e3b2011-01-05 07:52:55 +000085{
Eric Dumazet5173cc02011-05-16 08:37:37 +000086 return 1 << (tos & INET_ECN_MASK);
Eric Dumazet6623e3b2011-01-05 07:52:55 +000087}
88
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070089static struct inet_frags ip4_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -080091int ip_frag_mem(struct net *net)
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070092{
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +000093 return sum_frag_mem_limit(&net->ipv4.frags);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070094}
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Herbert Xu1706d582007-10-14 00:38:15 -070096static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
97 struct net_device *dev);
98
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070099struct ip4_create_arg {
100 struct iphdr *iph;
101 u32 user;
David Ahern9972f132015-08-13 14:59:09 -0600102 int vif;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700103};
104
Al Viro18277772006-09-26 22:19:02 -0700105static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Hannes Frederic Sowae7b519b2013-10-23 11:06:55 +0200107 net_get_random_once(&ip4_frags.rnd, sizeof(ip4_frags.rnd));
Al Viro18277772006-09-26 22:19:02 -0700108 return jhash_3words((__force u32)id << 16 | prot,
109 (__force u32)saddr, (__force u32)daddr,
Florian Westphalfb3cfe62014-07-24 16:50:30 +0200110 ip4_frags.rnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Florian Westphal36c77782014-07-24 16:50:29 +0200113static unsigned int ip4_hashfn(const struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Florian Westphal36c77782014-07-24 16:50:29 +0200115 const struct ipq *ipq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700117 ipq = container_of(q, struct ipq, q);
118 return ipqhashfn(ipq->id, ipq->saddr, ipq->daddr, ipq->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Florian Westphal36c77782014-07-24 16:50:29 +0200121static bool ip4_frag_match(const struct inet_frag_queue *q, const void *a)
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700122{
Florian Westphal36c77782014-07-24 16:50:29 +0200123 const struct ipq *qp;
124 const struct ip4_create_arg *arg = a;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700125
126 qp = container_of(q, struct ipq, q);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000127 return qp->id == arg->iph->id &&
Eric Dumazetcbc264c2012-05-18 05:57:13 +0200128 qp->saddr == arg->iph->saddr &&
129 qp->daddr == arg->iph->daddr &&
130 qp->protocol == arg->iph->protocol &&
David Ahern9972f132015-08-13 14:59:09 -0600131 qp->user == arg->user &&
132 qp->vif == arg->vif;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700133}
134
Florian Westphal36c77782014-07-24 16:50:29 +0200135static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700136{
137 struct ipq *qp = container_of(q, struct ipq, q);
Gao feng54db0cc2012-06-08 01:21:40 +0000138 struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4,
139 frags);
140 struct net *net = container_of(ipv4, struct net, ipv4);
141
Florian Westphal36c77782014-07-24 16:50:29 +0200142 const struct ip4_create_arg *arg = a;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700143
144 qp->protocol = arg->iph->protocol;
145 qp->id = arg->iph->id;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000146 qp->ecn = ip4_frag_ecn(arg->iph->tos);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700147 qp->saddr = arg->iph->saddr;
148 qp->daddr = arg->iph->daddr;
David Ahern9972f132015-08-13 14:59:09 -0600149 qp->vif = arg->vif;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700150 qp->user = arg->user;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200151 qp->peer = q->net->max_dist ?
David Ahern192132b2015-08-27 16:07:03 -0700152 inet_getpeer_v4(net->ipv4.peers, arg->iph->saddr, arg->vif, 1) :
153 NULL;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700154}
155
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100156static void ip4_frag_free(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700158 struct ipq *qp;
159
160 qp = container_of(q, struct ipq, q);
161 if (qp->peer)
162 inet_putpeer(qp->peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/* Destruction primitives. */
167
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100168static void ipq_put(struct ipq *ipq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Pavel Emelyanov762cc402007-10-15 02:41:56 -0700170 inet_frag_put(&ipq->q, &ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173/* Kill ipq entry. It is not destroyed immediately,
174 * because caller (and someone more) holds reference count.
175 */
176static void ipq_kill(struct ipq *ipq)
177{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700178 inet_frag_kill(&ipq->q, &ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Andy Zhou5cf42282015-05-15 14:15:35 -0700181static bool frag_expire_skip_icmp(u32 user)
182{
183 return user == IP_DEFRAG_AF_PACKET ||
184 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_IN,
Andy Zhou8bc04862015-05-15 14:15:36 -0700185 __IP_DEFRAG_CONNTRACK_IN_END) ||
186 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_BRIDGE_IN,
187 __IP_DEFRAG_CONNTRACK_BRIDGE_IN);
Andy Zhou5cf42282015-05-15 14:15:35 -0700188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/*
191 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
192 */
193static void ip_expire(unsigned long arg)
194{
Pavel Emelyanove521db92007-10-17 19:45:23 -0700195 struct ipq *qp;
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700196 struct net *net;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700197
198 qp = container_of((struct inet_frag_queue *) arg, struct ipq, q);
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700199 net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Eric Dumazet76568712017-03-22 08:57:15 -0700201 rcu_read_lock();
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700202 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200204 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 goto out;
206
207 ipq_kill(qp);
Eric Dumazetb45386e2016-04-27 16:44:35 -0700208 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Nikolay Aleksandrovcaaecdd2015-07-23 12:05:40 +0200210 if (!inet_frag_evicting(&qp->q)) {
Eric Dumazet76568712017-03-22 08:57:15 -0700211 struct sk_buff *clone, *head = qp->q.fragments;
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000212 const struct iphdr *iph;
213 int err;
Denis V. Lunevcb846632008-03-24 15:31:00 -0700214
Eric Dumazetb45386e2016-04-27 16:44:35 -0700215 __IP_INC_STATS(net, IPSTATS_MIB_REASMTIMEOUT);
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200216
217 if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !qp->q.fragments)
218 goto out;
219
Eric Dumazet69df9d52009-11-05 20:59:47 -0800220 head->dev = dev_get_by_index_rcu(net, qp->iif);
Shan Weie9017b52010-01-23 01:57:42 -0800221 if (!head->dev)
Eric Dumazet76568712017-03-22 08:57:15 -0700222 goto out;
223
Shan Weie9017b52010-01-23 01:57:42 -0800224
Eric Dumazet97599dc2013-04-16 12:55:41 +0000225 /* skb has no dst, perform route lookup again */
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000226 iph = ip_hdr(head);
David S. Millerc6cffba2012-07-26 11:14:38 +0000227 err = ip_route_input_noref(head, iph->daddr, iph->saddr,
228 iph->tos, head->dev);
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000229 if (err)
Eric Dumazet76568712017-03-22 08:57:15 -0700230 goto out;
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000231
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200232 /* Only an end host needs to send an ICMP
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000233 * "Fragment Reassembly Timeout" message, per RFC792.
Shan Weie9017b52010-01-23 01:57:42 -0800234 */
Andy Zhou5cf42282015-05-15 14:15:35 -0700235 if (frag_expire_skip_icmp(qp->user) &&
236 (skb_rtable(head)->rt_type != RTN_LOCAL))
Eric Dumazet76568712017-03-22 08:57:15 -0700237 goto out;
238
239 clone = skb_clone(head, GFP_ATOMIC);
Shan Weie9017b52010-01-23 01:57:42 -0800240
Shan Weie9017b52010-01-23 01:57:42 -0800241 /* Send an ICMP "Fragment Reassembly Timeout" message. */
Eric Dumazet76568712017-03-22 08:57:15 -0700242 if (clone) {
243 spin_unlock(&qp->q.lock);
244 icmp_send(clone, ICMP_TIME_EXCEEDED,
245 ICMP_EXC_FRAGTIME, 0);
246 consume_skb(clone);
247 goto out_rcu_unlock;
248 }
Patrick McHardyd1c9ae62010-02-02 11:46:50 -0800249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700251 spin_unlock(&qp->q.lock);
Eric Dumazet76568712017-03-22 08:57:15 -0700252out_rcu_unlock:
253 rcu_read_unlock();
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700254 ipq_put(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700257/* Find the correct entry in the "incomplete datagrams" queue for
258 * this IP datagram, and create new one, if nothing is found.
259 */
David Ahern9972f132015-08-13 14:59:09 -0600260static struct ipq *ip_find(struct net *net, struct iphdr *iph,
261 u32 user, int vif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700263 struct inet_frag_queue *q;
264 struct ip4_create_arg arg;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700265 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700267 arg.iph = iph;
268 arg.user = user;
David Ahern9972f132015-08-13 14:59:09 -0600269 arg.vif = vif;
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700270
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700271 hash = ipqhashfn(iph->id, iph->saddr, iph->daddr, iph->protocol);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700272
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800273 q = inet_frag_find(&net->ipv4.frags, &ip4_frags, &arg, hash);
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000274 if (IS_ERR_OR_NULL(q)) {
275 inet_frag_maybe_warn_overflow(q, pr_fmt());
276 return NULL;
277 }
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700278 return container_of(q, struct ipq, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Herbert Xu89cee8b2005-12-13 23:14:27 -0800281/* Is the fragment too far ahead to be part of ipq? */
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100282static int ip_frag_too_far(struct ipq *qp)
Herbert Xu89cee8b2005-12-13 23:14:27 -0800283{
284 struct inet_peer *peer = qp->peer;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200285 unsigned int max = qp->q.net->max_dist;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800286 unsigned int start, end;
287
288 int rc;
289
290 if (!peer || !max)
291 return 0;
292
293 start = qp->rid;
294 end = atomic_inc_return(&peer->rid);
295 qp->rid = end;
296
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700297 rc = qp->q.fragments && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800298
299 if (rc) {
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700300 struct net *net;
301
302 net = container_of(qp->q.net, struct net, ipv4.frags);
Eric Dumazetb45386e2016-04-27 16:44:35 -0700303 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800304 }
305
306 return rc;
307}
308
309static int ip_frag_reinit(struct ipq *qp)
310{
311 struct sk_buff *fp;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000312 unsigned int sum_truesize = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800313
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800314 if (!mod_timer(&qp->q.timer, jiffies + qp->q.net->timeout)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700315 atomic_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800316 return -ETIMEDOUT;
317 }
318
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700319 fp = qp->q.fragments;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800320 do {
321 struct sk_buff *xp = fp->next;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000322
323 sum_truesize += fp->truesize;
324 kfree_skb(fp);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800325 fp = xp;
326 } while (fp);
Florian Westphal0e60d242015-07-23 12:05:38 +0200327 sub_frag_mem_limit(qp->q.net, sum_truesize);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800328
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200329 qp->q.flags = 0;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700330 qp->q.len = 0;
331 qp->q.meat = 0;
332 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000333 qp->q.fragments_tail = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800334 qp->iif = 0;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000335 qp->ecn = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800336
337 return 0;
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700341static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700344 struct net_device *dev;
Florian Westphald6b915e2015-05-22 16:32:51 +0200345 unsigned int fragsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 int flags, offset;
347 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700348 int err = -ENOENT;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000349 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200351 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 goto err;
353
Herbert Xu89cee8b2005-12-13 23:14:27 -0800354 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700355 unlikely(ip_frag_too_far(qp)) &&
356 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800357 ipq_kill(qp);
358 goto err;
359 }
360
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000361 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700362 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 flags = offset & ~IP_OFFSET;
364 offset &= IP_OFFSET;
365 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300366 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 /* Determine the position of this fragment. */
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200369 end = offset + skb->len - skb_network_offset(skb) - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700370 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 /* Is this the final fragment? */
373 if ((flags & IP_MF) == 0) {
374 /* If we already have some bits beyond end
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800375 * or have different end, the segment is corrupted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700377 if (end < qp->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200378 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 goto err;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200380 qp->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700381 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 } else {
383 if (end&7) {
384 end &= ~7;
385 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
386 skb->ip_summed = CHECKSUM_NONE;
387 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700388 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200390 if (qp->q.flags & INET_FRAG_LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700392 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394 }
395 if (end == offset)
396 goto err;
397
Herbert Xu1706d582007-10-14 00:38:15 -0700398 err = -ENOMEM;
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200399 if (!pskb_pull(skb, skb_network_offset(skb) + ihl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700401
402 err = pskb_trim_rcsum(skb, end - offset);
403 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 goto err;
405
406 /* Find out which fragments are in front and at the back of us
407 * in the chain of fragments so far. We must know where to put
408 * this fragment, right?
409 */
Changli Gaod6bebca2010-06-29 04:39:37 +0000410 prev = qp->q.fragments_tail;
411 if (!prev || FRAG_CB(prev)->offset < offset) {
412 next = NULL;
413 goto found;
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700416 for (next = qp->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (FRAG_CB(next)->offset >= offset)
418 break; /* bingo! */
419 prev = next;
420 }
421
Changli Gaod6bebca2010-06-29 04:39:37 +0000422found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /* We found where to put this one. Check for overlap with
424 * preceding fragment, and, if needed, align things so that
425 * any overlaps are eliminated.
426 */
427 if (prev) {
428 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
429
430 if (i > 0) {
431 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700432 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (end <= offset)
434 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700435 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (!pskb_pull(skb, i))
437 goto err;
438 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
439 skb->ip_summed = CHECKSUM_NONE;
440 }
441 }
442
Herbert Xu1706d582007-10-14 00:38:15 -0700443 err = -ENOMEM;
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 while (next && FRAG_CB(next)->offset < end) {
446 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
447
448 if (i < next->len) {
449 /* Eat head of the next overlapped fragment
450 * and leave the loop. The next ones cannot overlap.
451 */
452 if (!pskb_pull(next, i))
453 goto err;
454 FRAG_CB(next)->offset += i;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700455 qp->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (next->ip_summed != CHECKSUM_UNNECESSARY)
457 next->ip_summed = CHECKSUM_NONE;
458 break;
459 } else {
460 struct sk_buff *free_it = next;
461
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100462 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * new one drop it.
464 */
465 next = next->next;
466
467 if (prev)
468 prev->next = next;
469 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700470 qp->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700472 qp->q.meat -= free_it->len;
Florian Westphal0e60d242015-07-23 12:05:38 +0200473 sub_frag_mem_limit(qp->q.net, free_it->truesize);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000474 kfree_skb(free_it);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 }
477
478 FRAG_CB(skb)->offset = offset;
479
480 /* Insert this fragment in the chain of fragments. */
481 skb->next = next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000482 if (!next)
483 qp->q.fragments_tail = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (prev)
485 prev->next = skb;
486 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700487 qp->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Herbert Xu1706d582007-10-14 00:38:15 -0700489 dev = skb->dev;
490 if (dev) {
491 qp->iif = dev->ifindex;
492 skb->dev = NULL;
493 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700494 qp->q.stamp = skb->tstamp;
495 qp->q.meat += skb->len;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000496 qp->ecn |= ecn;
Florian Westphal0e60d242015-07-23 12:05:38 +0200497 add_frag_mem_limit(qp->q.net, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (offset == 0)
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200499 qp->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Florian Westphald6b915e2015-05-22 16:32:51 +0200501 fragsize = skb->len + ihl;
502
503 if (fragsize > qp->q.max_size)
504 qp->q.max_size = fragsize;
505
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200506 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
Florian Westphald6b915e2015-05-22 16:32:51 +0200507 fragsize > qp->max_df_size)
508 qp->max_df_size = fragsize;
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200509
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200510 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000511 qp->q.meat == qp->q.len) {
512 unsigned long orefdst = skb->_skb_refdst;
Herbert Xu1706d582007-10-14 00:38:15 -0700513
Eric Dumazet97599dc2013-04-16 12:55:41 +0000514 skb->_skb_refdst = 0UL;
515 err = ip_frag_reasm(qp, prev, dev);
516 skb->_skb_refdst = orefdst;
517 return err;
518 }
519
520 skb_dst_drop(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700521 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523err:
524 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700525 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
528
529/* Build a new IP datagram from all its fragments. */
530
Herbert Xu1706d582007-10-14 00:38:15 -0700531static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
532 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700534 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 struct iphdr *iph;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700536 struct sk_buff *fp, *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 int len;
538 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700539 int err;
Eric Dumazet5173cc02011-05-16 08:37:37 +0000540 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 ipq_kill(qp);
543
Hannes Frederic Sowabe991972013-03-22 08:24:37 +0000544 ecn = ip_frag_ecn_table[qp->ecn];
Eric Dumazet5173cc02011-05-16 08:37:37 +0000545 if (unlikely(ecn == 0xff)) {
546 err = -EINVAL;
547 goto out_fail;
548 }
Herbert Xu1706d582007-10-14 00:38:15 -0700549 /* Make the one we just received the head. */
550 if (prev) {
551 head = prev->next;
552 fp = skb_clone(head, GFP_ATOMIC);
Herbert Xu1706d582007-10-14 00:38:15 -0700553 if (!fp)
554 goto out_nomem;
555
556 fp->next = head->next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000557 if (!fp->next)
558 qp->q.fragments_tail = fp;
Herbert Xu1706d582007-10-14 00:38:15 -0700559 prev->next = fp;
560
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700561 skb_morph(head, qp->q.fragments);
562 head->next = qp->q.fragments->next;
Herbert Xu1706d582007-10-14 00:38:15 -0700563
Eric Dumazetcbf8f7b2012-04-19 06:10:26 +0000564 consume_skb(qp->q.fragments);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700565 qp->q.fragments = head;
Herbert Xu1706d582007-10-14 00:38:15 -0700566 }
567
Ian Morris51456b22015-04-03 09:17:26 +0100568 WARN_ON(!head);
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700569 WARN_ON(FRAG_CB(head)->offset != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300572 ihlen = ip_hdrlen(head);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700573 len = ihlen + qp->q.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Herbert Xu1706d582007-10-14 00:38:15 -0700575 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800576 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 goto out_oversize;
578
579 /* Head of list must not be cloned. */
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000580 if (skb_unclone(head, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 goto out_nomem;
582
583 /* If the first fragment is fragmented itself, we split
584 * it to two chunks: the first with data and paged part
585 * and the second, holding only fragments. */
David S. Miller21dc3302010-08-23 00:13:46 -0700586 if (skb_has_frag_list(head)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 struct sk_buff *clone;
588 int i, plen = 0;
589
Ian Morris51456b22015-04-03 09:17:26 +0100590 clone = alloc_skb(0, GFP_ATOMIC);
591 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 goto out_nomem;
593 clone->next = head->next;
594 head->next = clone;
595 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
David S. Millerd7fcf1a2009-06-09 00:19:37 -0700596 skb_frag_list_init(head);
Eric Dumazet9e903e02011-10-18 21:00:24 +0000597 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
598 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 clone->len = clone->data_len = head->data_len - plen;
600 head->data_len -= clone->len;
601 head->len -= clone->len;
602 clone->csum = 0;
603 clone->ip_summed = head->ip_summed;
Florian Westphal0e60d242015-07-23 12:05:38 +0200604 add_frag_mem_limit(qp->q.net, clone->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606
Florian Westphal14fe22e2015-07-11 01:37:36 +0200607 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700608 skb_push(head, head->data - skb_network_header(head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Florian Westphal14fe22e2015-07-11 01:37:36 +0200610 for (fp=head->next; fp; fp = fp->next) {
611 head->data_len += fp->len;
612 head->len += fp->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (head->ip_summed != fp->ip_summed)
614 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700615 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 head->csum = csum_add(head->csum, fp->csum);
Florian Westphal14fe22e2015-07-11 01:37:36 +0200617 head->truesize += fp->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
David S. Miller5510b3c2015-07-31 23:52:20 -0700619 sub_frag_mem_limit(qp->q.net, head->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 head->next = NULL;
622 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700623 head->tstamp = qp->q.stamp;
Florian Westphald6b915e2015-05-22 16:32:51 +0200624 IPCB(head)->frag_max_size = max(qp->max_df_size, qp->q.max_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700626 iph = ip_hdr(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 iph->tot_len = htons(len);
Eric Dumazet5173cc02011-05-16 08:37:37 +0000628 iph->tos |= ecn;
Florian Westphald6b915e2015-05-22 16:32:51 +0200629
630 /* When we set IP_DF on a refragmented skb we must also force a
631 * call to ip_fragment to avoid forwarding a DF-skb of size s while
632 * original sender only sent fragments of size f (where f < s).
633 *
634 * We only set DF/IPSKB_FRAG_PMTU if such DF fragment was the largest
635 * frag seen to avoid sending tiny DF-fragments in case skb was built
636 * from one very small df-fragment and one large non-df frag.
637 */
638 if (qp->max_df_size == qp->q.max_size) {
639 IPCB(head)->flags |= IPSKB_FRAG_PMTU;
640 iph->frag_off = htons(IP_DF);
641 } else {
642 iph->frag_off = 0;
643 }
644
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200645 ip_send_check(iph);
646
Eric Dumazetb45386e2016-04-27 16:44:35 -0700647 __IP_INC_STATS(net, IPSTATS_MIB_REASMOKS);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700648 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000649 qp->q.fragments_tail = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700650 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652out_nomem:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800653 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
David Howells45542472007-10-17 21:37:22 -0700654 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 goto out_fail;
656out_oversize:
Joe Perchese87cc472012-05-13 21:56:26 +0000657 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658out_fail:
Eric Dumazetb45386e2016-04-27 16:44:35 -0700659 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700660 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663/* Process an incoming IP datagram fragment. */
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500664int ip_defrag(struct net *net, struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
David Ahern9972f132015-08-13 14:59:09 -0600666 struct net_device *dev = skb->dev ? : skb_dst(skb)->dev;
David Ahern385add92015-09-29 20:07:13 -0700667 int vif = l3mdev_master_ifindex_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900669
Eric Dumazetb45386e2016-04-27 16:44:35 -0700670 __IP_INC_STATS(net, IPSTATS_MIB_REASMREQDS);
Joe Stringer8282f272016-01-22 15:49:12 -0800671 skb_orphan(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /* Lookup (or create) queue header */
David Ahern9972f132015-08-13 14:59:09 -0600674 qp = ip_find(net, ip_hdr(skb), user, vif);
Ian Morris00db4122015-04-03 09:17:27 +0100675 if (qp) {
Herbert Xu1706d582007-10-14 00:38:15 -0700676 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700678 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Herbert Xu1706d582007-10-14 00:38:15 -0700680 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700682 spin_unlock(&qp->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700683 ipq_put(qp);
Herbert Xu776c7292007-10-14 00:38:32 -0700684 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
Eric Dumazetb45386e2016-04-27 16:44:35 -0700687 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700689 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000691EXPORT_SYMBOL(ip_defrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500693struct sk_buff *ip_check_defrag(struct net *net, struct sk_buff *skb, u32 user)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000694{
Johannes Berg1bf37512012-12-09 23:41:06 +0000695 struct iphdr iph;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300696 int netoff;
Eric Dumazetbc416d92011-10-06 10:28:31 +0000697 u32 len;
698
699 if (skb->protocol != htons(ETH_P_IP))
700 return skb;
701
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300702 netoff = skb_network_offset(skb);
703
704 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000705 return skb;
706
Johannes Berg1bf37512012-12-09 23:41:06 +0000707 if (iph.ihl < 5 || iph.version != 4)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000708 return skb;
709
Johannes Berg1bf37512012-12-09 23:41:06 +0000710 len = ntohs(iph.tot_len);
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300711 if (skb->len < netoff + len || len < (iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000712 return skb;
713
714 if (ip_is_fragment(&iph)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +0000715 skb = skb_share_check(skb, GFP_ATOMIC);
716 if (skb) {
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300717 if (!pskb_may_pull(skb, netoff + iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000718 return skb;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300719 if (pskb_trim_rcsum(skb, netoff + len))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000720 return skb;
721 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500722 if (ip_defrag(net, skb, user))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000723 return NULL;
Tom Herbert7539fad2013-12-15 22:12:18 -0800724 skb_clear_hash(skb);
Eric Dumazetbc416d92011-10-06 10:28:31 +0000725 }
726 }
727 return skb;
728}
729EXPORT_SYMBOL(ip_check_defrag);
730
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800731#ifdef CONFIG_SYSCTL
732static int zero;
733
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700734static struct ctl_table ip4_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800735 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800736 .procname = "ipfrag_high_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800737 .data = &init_net.ipv4.frags.high_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800738 .maxlen = sizeof(int),
739 .mode = 0644,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200740 .proc_handler = proc_dointvec_minmax,
741 .extra1 = &init_net.ipv4.frags.low_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800742 },
743 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800744 .procname = "ipfrag_low_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800745 .data = &init_net.ipv4.frags.low_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800746 .maxlen = sizeof(int),
747 .mode = 0644,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200748 .proc_handler = proc_dointvec_minmax,
749 .extra1 = &zero,
750 .extra2 = &init_net.ipv4.frags.high_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800751 },
752 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800753 .procname = "ipfrag_time",
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800754 .data = &init_net.ipv4.frags.timeout,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800755 .maxlen = sizeof(int),
756 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800757 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800758 },
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200759 {
760 .procname = "ipfrag_max_dist",
761 .data = &init_net.ipv4.frags.max_dist,
762 .maxlen = sizeof(int),
763 .mode = 0644,
764 .proc_handler = proc_dointvec_minmax,
765 .extra1 = &zero
766 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700767 { }
768};
769
Florian Westphale3a57d12014-07-24 16:50:35 +0200770/* secret interval has been deprecated */
771static int ip4_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700772static struct ctl_table ip4_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800773 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800774 .procname = "ipfrag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200775 .data = &ip4_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800776 .maxlen = sizeof(int),
777 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800778 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800779 },
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800780 { }
781};
782
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000783static int __net_init ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800784{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800785 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800786 struct ctl_table_header *hdr;
787
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700788 table = ip4_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800789 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700790 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100791 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800792 goto err_alloc;
793
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800794 table[0].data = &net->ipv4.frags.high_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200795 table[0].extra1 = &net->ipv4.frags.low_thresh;
796 table[0].extra2 = &init_net.ipv4.frags.high_thresh;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800797 table[1].data = &net->ipv4.frags.low_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200798 table[1].extra2 = &net->ipv4.frags.high_thresh;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800799 table[2].data = &net->ipv4.frags.timeout;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200800 table[3].data = &net->ipv4.frags.max_dist;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800801 }
802
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000803 hdr = register_net_sysctl(net, "net/ipv4", table);
Ian Morris51456b22015-04-03 09:17:26 +0100804 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800805 goto err_reg;
806
807 net->ipv4.frags_hdr = hdr;
808 return 0;
809
810err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800811 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800812 kfree(table);
813err_alloc:
814 return -ENOMEM;
815}
816
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000817static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800818{
819 struct ctl_table *table;
820
821 table = net->ipv4.frags_hdr->ctl_table_arg;
822 unregister_net_sysctl_table(net->ipv4.frags_hdr);
823 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800824}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700825
Fabian Frederick57a02c32014-10-01 19:18:57 +0200826static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700827{
Eric W. Biederman43444752012-04-19 13:22:55 +0000828 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700829}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800830#else
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100831static int ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800832{
833 return 0;
834}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800835
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100836static void ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800837{
838}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700839
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100840static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700841{
842}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800843#endif
844
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000845static int __net_init ipv4_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800846{
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000847 /* Fragment cache limits.
848 *
849 * The fragment memory accounting code, (tries to) account for
850 * the real memory usage, by measuring both the size of frag
851 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
852 * and the SKB's truesize.
853 *
854 * A 64K fragment consumes 129736 bytes (44*2944)+200
855 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
856 *
857 * We will commit 4MB at one time. Should we cross that limit
858 * we will prune down to 3MB, making room for approx 8 big 64K
859 * fragments 8x128k.
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800860 */
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000861 net->ipv4.frags.high_thresh = 4 * 1024 * 1024;
862 net->ipv4.frags.low_thresh = 3 * 1024 * 1024;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800863 /*
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800864 * Important NOTE! Fragment queue must be destroyed before MSL expires.
865 * RFC791 is wrong proposing to prolongate timer each fragment arrival
866 * by TTL.
867 */
868 net->ipv4.frags.timeout = IP_FRAG_TIME;
869
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200870 net->ipv4.frags.max_dist = 64;
871
Jesper Dangaard Brouer1bcf1872017-09-01 11:26:13 +0200872 inet_frags_init_net(&net->ipv4.frags);
873
874 return ip4_frags_ns_ctl_register(net);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800875}
876
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000877static void __net_exit ipv4_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800878{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700879 ip4_frags_ns_ctl_unregister(net);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800880 inet_frags_exit_net(&net->ipv4.frags, &ip4_frags);
881}
882
883static struct pernet_operations ip4_frags_ops = {
884 .init = ipv4_frags_init_net,
885 .exit = ipv4_frags_exit_net,
886};
887
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700888void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700890 ip4_frags_ctl_register();
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800891 register_pernet_subsys(&ip4_frags_ops);
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700892 ip4_frags.hashfn = ip4_hashfn;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700893 ip4_frags.constructor = ip4_frag_init;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700894 ip4_frags.destructor = ip4_frag_free;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700895 ip4_frags.qsize = sizeof(struct ipq);
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700896 ip4_frags.match = ip4_frag_match;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700897 ip4_frags.frag_expire = ip_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200898 ip4_frags.frags_cache_name = ip_frag_cache_name;
899 if (inet_frags_init(&ip4_frags))
900 panic("IP: failed to allocate ip4_frags cache\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}