blob: 15762e758861b8d7101996a8faef749e2e8c7c3e [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 Ahern9972f132015-08-13 14:59:09 -060051#include <net/vrf.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 */
57
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -080058static int sysctl_ipfrag_max_dist __read_mostly = 64;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020059static const char ip_frag_cache_name[] = "ip4-frags";
Herbert Xu89cee8b2005-12-13 23:14:27 -080060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061struct ipfrag_skb_cb
62{
63 struct inet_skb_parm h;
64 int offset;
65};
66
Jianjun Kongfd3f8c42008-11-03 02:47:38 -080067#define FRAG_CB(skb) ((struct ipfrag_skb_cb *)((skb)->cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* Describe an entry in the "incomplete datagrams" queue. */
70struct ipq {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070071 struct inet_frag_queue q;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 u32 user;
Al Viro18277772006-09-26 22:19:02 -070074 __be32 saddr;
75 __be32 daddr;
76 __be16 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 u8 protocol;
Eric Dumazet6623e3b2011-01-05 07:52:55 +000078 u8 ecn; /* RFC3168 support */
Florian Westphald6b915e2015-05-22 16:32:51 +020079 u16 max_df_size; /* largest frag with DF set seen */
Herbert Xu89cee8b2005-12-13 23:14:27 -080080 int iif;
David Ahern9972f132015-08-13 14:59:09 -060081 int vif; /* VRF device index */
Herbert Xu89cee8b2005-12-13 23:14:27 -080082 unsigned int rid;
83 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Fabian Frederickaa1f7312014-11-04 20:44:04 +010086static u8 ip4_frag_ecn(u8 tos)
Eric Dumazet6623e3b2011-01-05 07:52:55 +000087{
Eric Dumazet5173cc02011-05-16 08:37:37 +000088 return 1 << (tos & INET_ECN_MASK);
Eric Dumazet6623e3b2011-01-05 07:52:55 +000089}
90
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070091static struct inet_frags ip4_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -080093int ip_frag_mem(struct net *net)
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070094{
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +000095 return sum_frag_mem_limit(&net->ipv4.frags);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070096}
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Herbert Xu1706d582007-10-14 00:38:15 -070098static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
99 struct net_device *dev);
100
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700101struct ip4_create_arg {
102 struct iphdr *iph;
103 u32 user;
David Ahern9972f132015-08-13 14:59:09 -0600104 int vif;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700105};
106
Al Viro18277772006-09-26 22:19:02 -0700107static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Hannes Frederic Sowae7b519b2013-10-23 11:06:55 +0200109 net_get_random_once(&ip4_frags.rnd, sizeof(ip4_frags.rnd));
Al Viro18277772006-09-26 22:19:02 -0700110 return jhash_3words((__force u32)id << 16 | prot,
111 (__force u32)saddr, (__force u32)daddr,
Florian Westphalfb3cfe62014-07-24 16:50:30 +0200112 ip4_frags.rnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Florian Westphal36c77782014-07-24 16:50:29 +0200115static unsigned int ip4_hashfn(const struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Florian Westphal36c77782014-07-24 16:50:29 +0200117 const struct ipq *ipq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700119 ipq = container_of(q, struct ipq, q);
120 return ipqhashfn(ipq->id, ipq->saddr, ipq->daddr, ipq->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
Florian Westphal36c77782014-07-24 16:50:29 +0200123static bool ip4_frag_match(const struct inet_frag_queue *q, const void *a)
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700124{
Florian Westphal36c77782014-07-24 16:50:29 +0200125 const struct ipq *qp;
126 const struct ip4_create_arg *arg = a;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700127
128 qp = container_of(q, struct ipq, q);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000129 return qp->id == arg->iph->id &&
Eric Dumazetcbc264c2012-05-18 05:57:13 +0200130 qp->saddr == arg->iph->saddr &&
131 qp->daddr == arg->iph->daddr &&
132 qp->protocol == arg->iph->protocol &&
David Ahern9972f132015-08-13 14:59:09 -0600133 qp->user == arg->user &&
134 qp->vif == arg->vif;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700135}
136
Florian Westphal36c77782014-07-24 16:50:29 +0200137static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700138{
139 struct ipq *qp = container_of(q, struct ipq, q);
Gao feng54db0cc2012-06-08 01:21:40 +0000140 struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4,
141 frags);
142 struct net *net = container_of(ipv4, struct net, ipv4);
143
Florian Westphal36c77782014-07-24 16:50:29 +0200144 const struct ip4_create_arg *arg = a;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700145
146 qp->protocol = arg->iph->protocol;
147 qp->id = arg->iph->id;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000148 qp->ecn = ip4_frag_ecn(arg->iph->tos);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700149 qp->saddr = arg->iph->saddr;
150 qp->daddr = arg->iph->daddr;
David Ahern9972f132015-08-13 14:59:09 -0600151 qp->vif = arg->vif;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700152 qp->user = arg->user;
153 qp->peer = sysctl_ipfrag_max_dist ?
David S. Millerc0efc882012-06-09 19:12:36 -0700154 inet_getpeer_v4(net->ipv4.peers, arg->iph->saddr, 1) : NULL;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700155}
156
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100157static void ip4_frag_free(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700159 struct ipq *qp;
160
161 qp = container_of(q, struct ipq, q);
162 if (qp->peer)
163 inet_putpeer(qp->peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/* Destruction primitives. */
168
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100169static void ipq_put(struct ipq *ipq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Pavel Emelyanov762cc402007-10-15 02:41:56 -0700171 inet_frag_put(&ipq->q, &ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174/* Kill ipq entry. It is not destroyed immediately,
175 * because caller (and someone more) holds reference count.
176 */
177static void ipq_kill(struct ipq *ipq)
178{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700179 inet_frag_kill(&ipq->q, &ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Andy Zhou5cf42282015-05-15 14:15:35 -0700182static bool frag_expire_skip_icmp(u32 user)
183{
184 return user == IP_DEFRAG_AF_PACKET ||
185 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_IN,
Andy Zhou8bc04862015-05-15 14:15:36 -0700186 __IP_DEFRAG_CONNTRACK_IN_END) ||
187 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_BRIDGE_IN,
188 __IP_DEFRAG_CONNTRACK_BRIDGE_IN);
Andy Zhou5cf42282015-05-15 14:15:35 -0700189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
192 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
193 */
194static void ip_expire(unsigned long arg)
195{
Pavel Emelyanove521db92007-10-17 19:45:23 -0700196 struct ipq *qp;
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700197 struct net *net;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700198
199 qp = container_of((struct inet_frag_queue *) arg, struct ipq, q);
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700200 net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
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);
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700208 IP_INC_STATS_BH(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)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700211 struct sk_buff *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
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200215 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMTIMEOUT);
216
217 if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !qp->q.fragments)
218 goto out;
219
Eric Dumazet69df9d52009-11-05 20:59:47 -0800220 rcu_read_lock();
221 head->dev = dev_get_by_index_rcu(net, qp->iif);
Shan Weie9017b52010-01-23 01:57:42 -0800222 if (!head->dev)
223 goto out_rcu_unlock;
224
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)
230 goto out_rcu_unlock;
231
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 Dumazet64f3b9e2011-05-04 10:02:26 +0000237 goto out_rcu_unlock;
Shan Weie9017b52010-01-23 01:57:42 -0800238
Shan Weie9017b52010-01-23 01:57:42 -0800239 /* Send an ICMP "Fragment Reassembly Timeout" message. */
240 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
Shan Weie9017b52010-01-23 01:57:42 -0800241out_rcu_unlock:
Patrick McHardyd1c9ae62010-02-02 11:46:50 -0800242 rcu_read_unlock();
243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700245 spin_unlock(&qp->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700246 ipq_put(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700249/* Find the correct entry in the "incomplete datagrams" queue for
250 * this IP datagram, and create new one, if nothing is found.
251 */
David Ahern9972f132015-08-13 14:59:09 -0600252static struct ipq *ip_find(struct net *net, struct iphdr *iph,
253 u32 user, int vif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700255 struct inet_frag_queue *q;
256 struct ip4_create_arg arg;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700257 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700259 arg.iph = iph;
260 arg.user = user;
David Ahern9972f132015-08-13 14:59:09 -0600261 arg.vif = vif;
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700262
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700263 hash = ipqhashfn(iph->id, iph->saddr, iph->daddr, iph->protocol);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700264
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800265 q = inet_frag_find(&net->ipv4.frags, &ip4_frags, &arg, hash);
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000266 if (IS_ERR_OR_NULL(q)) {
267 inet_frag_maybe_warn_overflow(q, pr_fmt());
268 return NULL;
269 }
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700270 return container_of(q, struct ipq, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Herbert Xu89cee8b2005-12-13 23:14:27 -0800273/* Is the fragment too far ahead to be part of ipq? */
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100274static int ip_frag_too_far(struct ipq *qp)
Herbert Xu89cee8b2005-12-13 23:14:27 -0800275{
276 struct inet_peer *peer = qp->peer;
277 unsigned int max = sysctl_ipfrag_max_dist;
278 unsigned int start, end;
279
280 int rc;
281
282 if (!peer || !max)
283 return 0;
284
285 start = qp->rid;
286 end = atomic_inc_return(&peer->rid);
287 qp->rid = end;
288
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700289 rc = qp->q.fragments && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800290
291 if (rc) {
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700292 struct net *net;
293
294 net = container_of(qp->q.net, struct net, ipv4.frags);
295 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800296 }
297
298 return rc;
299}
300
301static int ip_frag_reinit(struct ipq *qp)
302{
303 struct sk_buff *fp;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000304 unsigned int sum_truesize = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800305
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800306 if (!mod_timer(&qp->q.timer, jiffies + qp->q.net->timeout)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700307 atomic_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800308 return -ETIMEDOUT;
309 }
310
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700311 fp = qp->q.fragments;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800312 do {
313 struct sk_buff *xp = fp->next;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000314
315 sum_truesize += fp->truesize;
316 kfree_skb(fp);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800317 fp = xp;
318 } while (fp);
Florian Westphal0e60d242015-07-23 12:05:38 +0200319 sub_frag_mem_limit(qp->q.net, sum_truesize);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800320
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200321 qp->q.flags = 0;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700322 qp->q.len = 0;
323 qp->q.meat = 0;
324 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000325 qp->q.fragments_tail = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800326 qp->iif = 0;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000327 qp->ecn = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800328
329 return 0;
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700333static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700336 struct net_device *dev;
Florian Westphald6b915e2015-05-22 16:32:51 +0200337 unsigned int fragsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 int flags, offset;
339 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700340 int err = -ENOENT;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000341 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200343 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 goto err;
345
Herbert Xu89cee8b2005-12-13 23:14:27 -0800346 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700347 unlikely(ip_frag_too_far(qp)) &&
348 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800349 ipq_kill(qp);
350 goto err;
351 }
352
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000353 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700354 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 flags = offset & ~IP_OFFSET;
356 offset &= IP_OFFSET;
357 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300358 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 /* Determine the position of this fragment. */
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200361 end = offset + skb->len - skb_network_offset(skb) - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700362 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 /* Is this the final fragment? */
365 if ((flags & IP_MF) == 0) {
366 /* If we already have some bits beyond end
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800367 * or have different end, the segment is corrupted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700369 if (end < qp->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200370 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 goto err;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200372 qp->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700373 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 } else {
375 if (end&7) {
376 end &= ~7;
377 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
378 skb->ip_summed = CHECKSUM_NONE;
379 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700380 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200382 if (qp->q.flags & INET_FRAG_LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700384 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386 }
387 if (end == offset)
388 goto err;
389
Herbert Xu1706d582007-10-14 00:38:15 -0700390 err = -ENOMEM;
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200391 if (!pskb_pull(skb, skb_network_offset(skb) + ihl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700393
394 err = pskb_trim_rcsum(skb, end - offset);
395 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto err;
397
398 /* Find out which fragments are in front and at the back of us
399 * in the chain of fragments so far. We must know where to put
400 * this fragment, right?
401 */
Changli Gaod6bebca2010-06-29 04:39:37 +0000402 prev = qp->q.fragments_tail;
403 if (!prev || FRAG_CB(prev)->offset < offset) {
404 next = NULL;
405 goto found;
406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700408 for (next = qp->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (FRAG_CB(next)->offset >= offset)
410 break; /* bingo! */
411 prev = next;
412 }
413
Changli Gaod6bebca2010-06-29 04:39:37 +0000414found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* We found where to put this one. Check for overlap with
416 * preceding fragment, and, if needed, align things so that
417 * any overlaps are eliminated.
418 */
419 if (prev) {
420 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
421
422 if (i > 0) {
423 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700424 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (end <= offset)
426 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700427 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!pskb_pull(skb, i))
429 goto err;
430 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
431 skb->ip_summed = CHECKSUM_NONE;
432 }
433 }
434
Herbert Xu1706d582007-10-14 00:38:15 -0700435 err = -ENOMEM;
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 while (next && FRAG_CB(next)->offset < end) {
438 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
439
440 if (i < next->len) {
441 /* Eat head of the next overlapped fragment
442 * and leave the loop. The next ones cannot overlap.
443 */
444 if (!pskb_pull(next, i))
445 goto err;
446 FRAG_CB(next)->offset += i;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700447 qp->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (next->ip_summed != CHECKSUM_UNNECESSARY)
449 next->ip_summed = CHECKSUM_NONE;
450 break;
451 } else {
452 struct sk_buff *free_it = next;
453
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100454 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * new one drop it.
456 */
457 next = next->next;
458
459 if (prev)
460 prev->next = next;
461 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700462 qp->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700464 qp->q.meat -= free_it->len;
Florian Westphal0e60d242015-07-23 12:05:38 +0200465 sub_frag_mem_limit(qp->q.net, free_it->truesize);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000466 kfree_skb(free_it);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468 }
469
470 FRAG_CB(skb)->offset = offset;
471
472 /* Insert this fragment in the chain of fragments. */
473 skb->next = next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000474 if (!next)
475 qp->q.fragments_tail = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (prev)
477 prev->next = skb;
478 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700479 qp->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Herbert Xu1706d582007-10-14 00:38:15 -0700481 dev = skb->dev;
482 if (dev) {
483 qp->iif = dev->ifindex;
484 skb->dev = NULL;
485 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700486 qp->q.stamp = skb->tstamp;
487 qp->q.meat += skb->len;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000488 qp->ecn |= ecn;
Florian Westphal0e60d242015-07-23 12:05:38 +0200489 add_frag_mem_limit(qp->q.net, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (offset == 0)
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200491 qp->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Florian Westphald6b915e2015-05-22 16:32:51 +0200493 fragsize = skb->len + ihl;
494
495 if (fragsize > qp->q.max_size)
496 qp->q.max_size = fragsize;
497
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200498 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
Florian Westphald6b915e2015-05-22 16:32:51 +0200499 fragsize > qp->max_df_size)
500 qp->max_df_size = fragsize;
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200501
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200502 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000503 qp->q.meat == qp->q.len) {
504 unsigned long orefdst = skb->_skb_refdst;
Herbert Xu1706d582007-10-14 00:38:15 -0700505
Eric Dumazet97599dc2013-04-16 12:55:41 +0000506 skb->_skb_refdst = 0UL;
507 err = ip_frag_reasm(qp, prev, dev);
508 skb->_skb_refdst = orefdst;
509 return err;
510 }
511
512 skb_dst_drop(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700513 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515err:
516 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700517 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
520
521/* Build a new IP datagram from all its fragments. */
522
Herbert Xu1706d582007-10-14 00:38:15 -0700523static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
524 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700526 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 struct iphdr *iph;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700528 struct sk_buff *fp, *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 int len;
530 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700531 int err;
Eric Dumazet5173cc02011-05-16 08:37:37 +0000532 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 ipq_kill(qp);
535
Hannes Frederic Sowabe991972013-03-22 08:24:37 +0000536 ecn = ip_frag_ecn_table[qp->ecn];
Eric Dumazet5173cc02011-05-16 08:37:37 +0000537 if (unlikely(ecn == 0xff)) {
538 err = -EINVAL;
539 goto out_fail;
540 }
Herbert Xu1706d582007-10-14 00:38:15 -0700541 /* Make the one we just received the head. */
542 if (prev) {
543 head = prev->next;
544 fp = skb_clone(head, GFP_ATOMIC);
Herbert Xu1706d582007-10-14 00:38:15 -0700545 if (!fp)
546 goto out_nomem;
547
548 fp->next = head->next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000549 if (!fp->next)
550 qp->q.fragments_tail = fp;
Herbert Xu1706d582007-10-14 00:38:15 -0700551 prev->next = fp;
552
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700553 skb_morph(head, qp->q.fragments);
554 head->next = qp->q.fragments->next;
Herbert Xu1706d582007-10-14 00:38:15 -0700555
Eric Dumazetcbf8f7b2012-04-19 06:10:26 +0000556 consume_skb(qp->q.fragments);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700557 qp->q.fragments = head;
Herbert Xu1706d582007-10-14 00:38:15 -0700558 }
559
Ian Morris51456b22015-04-03 09:17:26 +0100560 WARN_ON(!head);
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700561 WARN_ON(FRAG_CB(head)->offset != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300564 ihlen = ip_hdrlen(head);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700565 len = ihlen + qp->q.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Herbert Xu1706d582007-10-14 00:38:15 -0700567 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800568 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 goto out_oversize;
570
571 /* Head of list must not be cloned. */
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000572 if (skb_unclone(head, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 goto out_nomem;
574
575 /* If the first fragment is fragmented itself, we split
576 * it to two chunks: the first with data and paged part
577 * and the second, holding only fragments. */
David S. Miller21dc3302010-08-23 00:13:46 -0700578 if (skb_has_frag_list(head)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 struct sk_buff *clone;
580 int i, plen = 0;
581
Ian Morris51456b22015-04-03 09:17:26 +0100582 clone = alloc_skb(0, GFP_ATOMIC);
583 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 goto out_nomem;
585 clone->next = head->next;
586 head->next = clone;
587 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
David S. Millerd7fcf1a2009-06-09 00:19:37 -0700588 skb_frag_list_init(head);
Eric Dumazet9e903e02011-10-18 21:00:24 +0000589 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
590 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 clone->len = clone->data_len = head->data_len - plen;
592 head->data_len -= clone->len;
593 head->len -= clone->len;
594 clone->csum = 0;
595 clone->ip_summed = head->ip_summed;
Florian Westphal0e60d242015-07-23 12:05:38 +0200596 add_frag_mem_limit(qp->q.net, clone->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
Florian Westphal14fe22e2015-07-11 01:37:36 +0200599 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700600 skb_push(head, head->data - skb_network_header(head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Florian Westphal14fe22e2015-07-11 01:37:36 +0200602 for (fp=head->next; fp; fp = fp->next) {
603 head->data_len += fp->len;
604 head->len += fp->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (head->ip_summed != fp->ip_summed)
606 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700607 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 head->csum = csum_add(head->csum, fp->csum);
Florian Westphal14fe22e2015-07-11 01:37:36 +0200609 head->truesize += fp->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
David S. Miller5510b3c2015-07-31 23:52:20 -0700611 sub_frag_mem_limit(qp->q.net, head->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 head->next = NULL;
614 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700615 head->tstamp = qp->q.stamp;
Florian Westphald6b915e2015-05-22 16:32:51 +0200616 IPCB(head)->frag_max_size = max(qp->max_df_size, qp->q.max_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700618 iph = ip_hdr(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 iph->tot_len = htons(len);
Eric Dumazet5173cc02011-05-16 08:37:37 +0000620 iph->tos |= ecn;
Florian Westphald6b915e2015-05-22 16:32:51 +0200621
622 /* When we set IP_DF on a refragmented skb we must also force a
623 * call to ip_fragment to avoid forwarding a DF-skb of size s while
624 * original sender only sent fragments of size f (where f < s).
625 *
626 * We only set DF/IPSKB_FRAG_PMTU if such DF fragment was the largest
627 * frag seen to avoid sending tiny DF-fragments in case skb was built
628 * from one very small df-fragment and one large non-df frag.
629 */
630 if (qp->max_df_size == qp->q.max_size) {
631 IPCB(head)->flags |= IPSKB_FRAG_PMTU;
632 iph->frag_off = htons(IP_DF);
633 } else {
634 iph->frag_off = 0;
635 }
636
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200637 ip_send_check(iph);
638
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700639 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMOKS);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700640 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000641 qp->q.fragments_tail = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644out_nomem:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800645 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
David Howells45542472007-10-17 21:37:22 -0700646 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 goto out_fail;
648out_oversize:
Joe Perchese87cc472012-05-13 21:56:26 +0000649 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650out_fail:
David Fordbbf31bf2009-11-29 23:02:22 -0800651 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700652 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
655/* Process an incoming IP datagram fragment. */
Herbert Xu776c7292007-10-14 00:38:32 -0700656int ip_defrag(struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
David Ahern9972f132015-08-13 14:59:09 -0600658 struct net_device *dev = skb->dev ? : skb_dst(skb)->dev;
659 int vif = vrf_master_ifindex_rcu(dev);
660 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900662
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700663 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 /* Lookup (or create) queue header */
David Ahern9972f132015-08-13 14:59:09 -0600666 qp = ip_find(net, ip_hdr(skb), user, vif);
Ian Morris00db4122015-04-03 09:17:27 +0100667 if (qp) {
Herbert Xu1706d582007-10-14 00:38:15 -0700668 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700670 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Herbert Xu1706d582007-10-14 00:38:15 -0700672 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700674 spin_unlock(&qp->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700675 ipq_put(qp);
Herbert Xu776c7292007-10-14 00:38:32 -0700676 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700679 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700681 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000683EXPORT_SYMBOL(ip_defrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Eric Dumazetbc416d92011-10-06 10:28:31 +0000685struct sk_buff *ip_check_defrag(struct sk_buff *skb, u32 user)
686{
Johannes Berg1bf37512012-12-09 23:41:06 +0000687 struct iphdr iph;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300688 int netoff;
Eric Dumazetbc416d92011-10-06 10:28:31 +0000689 u32 len;
690
691 if (skb->protocol != htons(ETH_P_IP))
692 return skb;
693
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300694 netoff = skb_network_offset(skb);
695
696 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000697 return skb;
698
Johannes Berg1bf37512012-12-09 23:41:06 +0000699 if (iph.ihl < 5 || iph.version != 4)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000700 return skb;
701
Johannes Berg1bf37512012-12-09 23:41:06 +0000702 len = ntohs(iph.tot_len);
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300703 if (skb->len < netoff + len || len < (iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000704 return skb;
705
706 if (ip_is_fragment(&iph)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +0000707 skb = skb_share_check(skb, GFP_ATOMIC);
708 if (skb) {
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300709 if (!pskb_may_pull(skb, netoff + iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000710 return skb;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300711 if (pskb_trim_rcsum(skb, netoff + len))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000712 return skb;
713 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
714 if (ip_defrag(skb, user))
715 return NULL;
Tom Herbert7539fad2013-12-15 22:12:18 -0800716 skb_clear_hash(skb);
Eric Dumazetbc416d92011-10-06 10:28:31 +0000717 }
718 }
719 return skb;
720}
721EXPORT_SYMBOL(ip_check_defrag);
722
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800723#ifdef CONFIG_SYSCTL
724static int zero;
725
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700726static struct ctl_table ip4_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800727 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800728 .procname = "ipfrag_high_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800729 .data = &init_net.ipv4.frags.high_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800730 .maxlen = sizeof(int),
731 .mode = 0644,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200732 .proc_handler = proc_dointvec_minmax,
733 .extra1 = &init_net.ipv4.frags.low_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800734 },
735 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800736 .procname = "ipfrag_low_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800737 .data = &init_net.ipv4.frags.low_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 = &zero,
742 .extra2 = &init_net.ipv4.frags.high_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800743 },
744 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800745 .procname = "ipfrag_time",
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800746 .data = &init_net.ipv4.frags.timeout,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800747 .maxlen = sizeof(int),
748 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800749 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800750 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700751 { }
752};
753
Florian Westphale3a57d12014-07-24 16:50:35 +0200754/* secret interval has been deprecated */
755static int ip4_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700756static struct ctl_table ip4_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800757 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800758 .procname = "ipfrag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200759 .data = &ip4_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800760 .maxlen = sizeof(int),
761 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800762 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800763 },
764 {
765 .procname = "ipfrag_max_dist",
766 .data = &sysctl_ipfrag_max_dist,
767 .maxlen = sizeof(int),
768 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800769 .proc_handler = proc_dointvec_minmax,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800770 .extra1 = &zero
771 },
772 { }
773};
774
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000775static int __net_init ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800776{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800777 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800778 struct ctl_table_header *hdr;
779
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700780 table = ip4_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800781 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700782 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100783 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800784 goto err_alloc;
785
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800786 table[0].data = &net->ipv4.frags.high_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200787 table[0].extra1 = &net->ipv4.frags.low_thresh;
788 table[0].extra2 = &init_net.ipv4.frags.high_thresh;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800789 table[1].data = &net->ipv4.frags.low_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200790 table[1].extra2 = &net->ipv4.frags.high_thresh;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800791 table[2].data = &net->ipv4.frags.timeout;
Eric W. Biederman464dc802012-11-16 03:02:59 +0000792
793 /* Don't export sysctls to unprivileged users */
794 if (net->user_ns != &init_user_ns)
795 table[0].procname = NULL;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800796 }
797
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000798 hdr = register_net_sysctl(net, "net/ipv4", table);
Ian Morris51456b22015-04-03 09:17:26 +0100799 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800800 goto err_reg;
801
802 net->ipv4.frags_hdr = hdr;
803 return 0;
804
805err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800806 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800807 kfree(table);
808err_alloc:
809 return -ENOMEM;
810}
811
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000812static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800813{
814 struct ctl_table *table;
815
816 table = net->ipv4.frags_hdr->ctl_table_arg;
817 unregister_net_sysctl_table(net->ipv4.frags_hdr);
818 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800819}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700820
Fabian Frederick57a02c32014-10-01 19:18:57 +0200821static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700822{
Eric W. Biederman43444752012-04-19 13:22:55 +0000823 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700824}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800825#else
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100826static int ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800827{
828 return 0;
829}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800830
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100831static void ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800832{
833}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700834
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100835static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700836{
837}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800838#endif
839
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000840static int __net_init ipv4_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800841{
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000842 /* Fragment cache limits.
843 *
844 * The fragment memory accounting code, (tries to) account for
845 * the real memory usage, by measuring both the size of frag
846 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
847 * and the SKB's truesize.
848 *
849 * A 64K fragment consumes 129736 bytes (44*2944)+200
850 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
851 *
852 * We will commit 4MB at one time. Should we cross that limit
853 * we will prune down to 3MB, making room for approx 8 big 64K
854 * fragments 8x128k.
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800855 */
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000856 net->ipv4.frags.high_thresh = 4 * 1024 * 1024;
857 net->ipv4.frags.low_thresh = 3 * 1024 * 1024;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800858 /*
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800859 * Important NOTE! Fragment queue must be destroyed before MSL expires.
860 * RFC791 is wrong proposing to prolongate timer each fragment arrival
861 * by TTL.
862 */
863 net->ipv4.frags.timeout = IP_FRAG_TIME;
864
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800865 inet_frags_init_net(&net->ipv4.frags);
866
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700867 return ip4_frags_ns_ctl_register(net);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800868}
869
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000870static void __net_exit ipv4_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800871{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700872 ip4_frags_ns_ctl_unregister(net);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800873 inet_frags_exit_net(&net->ipv4.frags, &ip4_frags);
874}
875
876static struct pernet_operations ip4_frags_ops = {
877 .init = ipv4_frags_init_net,
878 .exit = ipv4_frags_exit_net,
879};
880
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700881void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700883 ip4_frags_ctl_register();
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800884 register_pernet_subsys(&ip4_frags_ops);
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700885 ip4_frags.hashfn = ip4_hashfn;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700886 ip4_frags.constructor = ip4_frag_init;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700887 ip4_frags.destructor = ip4_frag_free;
888 ip4_frags.skb_free = NULL;
889 ip4_frags.qsize = sizeof(struct ipq);
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700890 ip4_frags.match = ip4_frag_match;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700891 ip4_frags.frag_expire = ip_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200892 ip4_frags.frags_cache_name = ip_frag_cache_name;
893 if (inet_frags_init(&ip4_frags))
894 panic("IP: failed to allocate ip4_frags cache\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}