blob: 47fa64ee82b150a03288417d871efa3e9d44490e [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
53 * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
54 * as well. Or notify me, at least. --ANK
55 */
56
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -080057static int sysctl_ipfrag_max_dist __read_mostly = 64;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020058static const char ip_frag_cache_name[] = "ip4-frags";
Herbert Xu89cee8b2005-12-13 23:14:27 -080059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060struct ipfrag_skb_cb
61{
62 struct inet_skb_parm h;
63 int offset;
64};
65
Jianjun Kongfd3f8c42008-11-03 02:47:38 -080066#define FRAG_CB(skb) ((struct ipfrag_skb_cb *)((skb)->cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/* Describe an entry in the "incomplete datagrams" queue. */
69struct ipq {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070070 struct inet_frag_queue q;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 u32 user;
Al Viro18277772006-09-26 22:19:02 -070073 __be32 saddr;
74 __be32 daddr;
75 __be16 id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 u8 protocol;
Eric Dumazet6623e3b2011-01-05 07:52:55 +000077 u8 ecn; /* RFC3168 support */
Herbert Xu89cee8b2005-12-13 23:14:27 -080078 int iif;
79 unsigned int rid;
80 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
Fabian Frederickaa1f7312014-11-04 20:44:04 +010083static u8 ip4_frag_ecn(u8 tos)
Eric Dumazet6623e3b2011-01-05 07:52:55 +000084{
Eric Dumazet5173cc02011-05-16 08:37:37 +000085 return 1 << (tos & INET_ECN_MASK);
Eric Dumazet6623e3b2011-01-05 07:52:55 +000086}
87
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070088static struct inet_frags ip4_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Pavel Emelyanov6ddc0822008-01-22 06:07:25 -080090int ip_frag_mem(struct net *net)
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070091{
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +000092 return sum_frag_mem_limit(&net->ipv4.frags);
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070093}
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Herbert Xu1706d582007-10-14 00:38:15 -070095static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
96 struct net_device *dev);
97
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070098struct ip4_create_arg {
99 struct iphdr *iph;
100 u32 user;
101};
102
Al Viro18277772006-09-26 22:19:02 -0700103static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Hannes Frederic Sowae7b519b2013-10-23 11:06:55 +0200105 net_get_random_once(&ip4_frags.rnd, sizeof(ip4_frags.rnd));
Al Viro18277772006-09-26 22:19:02 -0700106 return jhash_3words((__force u32)id << 16 | prot,
107 (__force u32)saddr, (__force u32)daddr,
Florian Westphalfb3cfe62014-07-24 16:50:30 +0200108 ip4_frags.rnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Florian Westphal36c77782014-07-24 16:50:29 +0200111static unsigned int ip4_hashfn(const struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Florian Westphal36c77782014-07-24 16:50:29 +0200113 const struct ipq *ipq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700115 ipq = container_of(q, struct ipq, q);
116 return ipqhashfn(ipq->id, ipq->saddr, ipq->daddr, ipq->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Florian Westphal36c77782014-07-24 16:50:29 +0200119static bool ip4_frag_match(const struct inet_frag_queue *q, const void *a)
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700120{
Florian Westphal36c77782014-07-24 16:50:29 +0200121 const struct ipq *qp;
122 const struct ip4_create_arg *arg = a;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700123
124 qp = container_of(q, struct ipq, q);
Eric Dumazeta02cec22010-09-22 20:43:57 +0000125 return qp->id == arg->iph->id &&
Eric Dumazetcbc264c2012-05-18 05:57:13 +0200126 qp->saddr == arg->iph->saddr &&
127 qp->daddr == arg->iph->daddr &&
128 qp->protocol == arg->iph->protocol &&
129 qp->user == arg->user;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700130}
131
Florian Westphal36c77782014-07-24 16:50:29 +0200132static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700133{
134 struct ipq *qp = container_of(q, struct ipq, q);
Gao feng54db0cc2012-06-08 01:21:40 +0000135 struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4,
136 frags);
137 struct net *net = container_of(ipv4, struct net, ipv4);
138
Florian Westphal36c77782014-07-24 16:50:29 +0200139 const struct ip4_create_arg *arg = a;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700140
141 qp->protocol = arg->iph->protocol;
142 qp->id = arg->iph->id;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000143 qp->ecn = ip4_frag_ecn(arg->iph->tos);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700144 qp->saddr = arg->iph->saddr;
145 qp->daddr = arg->iph->daddr;
146 qp->user = arg->user;
147 qp->peer = sysctl_ipfrag_max_dist ?
David S. Millerc0efc882012-06-09 19:12:36 -0700148 inet_getpeer_v4(net->ipv4.peers, arg->iph->saddr, 1) : NULL;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700149}
150
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100151static void ip4_frag_free(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700153 struct ipq *qp;
154
155 qp = container_of(q, struct ipq, q);
156 if (qp->peer)
157 inet_putpeer(qp->peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161/* Destruction primitives. */
162
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100163static void ipq_put(struct ipq *ipq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Pavel Emelyanov762cc402007-10-15 02:41:56 -0700165 inet_frag_put(&ipq->q, &ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168/* Kill ipq entry. It is not destroyed immediately,
169 * because caller (and someone more) holds reference count.
170 */
171static void ipq_kill(struct ipq *ipq)
172{
Pavel Emelyanov277e6502007-10-15 02:37:18 -0700173 inet_frag_kill(&ipq->q, &ip4_frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Andy Zhou5cf42282015-05-15 14:15:35 -0700176static bool frag_expire_skip_icmp(u32 user)
177{
178 return user == IP_DEFRAG_AF_PACKET ||
179 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_IN,
Andy Zhou8bc04862015-05-15 14:15:36 -0700180 __IP_DEFRAG_CONNTRACK_IN_END) ||
181 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_BRIDGE_IN,
182 __IP_DEFRAG_CONNTRACK_BRIDGE_IN);
Andy Zhou5cf42282015-05-15 14:15:35 -0700183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
186 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
187 */
188static void ip_expire(unsigned long arg)
189{
Pavel Emelyanove521db92007-10-17 19:45:23 -0700190 struct ipq *qp;
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700191 struct net *net;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700192
193 qp = container_of((struct inet_frag_queue *) arg, struct ipq, q);
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700194 net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700196 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200198 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 goto out;
200
201 ipq_kill(qp);
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700202 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200204 if (!(qp->q.flags & INET_FRAG_EVICTED)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700205 struct sk_buff *head = qp->q.fragments;
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000206 const struct iphdr *iph;
207 int err;
Denis V. Lunevcb846632008-03-24 15:31:00 -0700208
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200209 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMTIMEOUT);
210
211 if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !qp->q.fragments)
212 goto out;
213
Eric Dumazet69df9d52009-11-05 20:59:47 -0800214 rcu_read_lock();
215 head->dev = dev_get_by_index_rcu(net, qp->iif);
Shan Weie9017b52010-01-23 01:57:42 -0800216 if (!head->dev)
217 goto out_rcu_unlock;
218
Eric Dumazet97599dc2013-04-16 12:55:41 +0000219 /* skb has no dst, perform route lookup again */
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000220 iph = ip_hdr(head);
David S. Millerc6cffba2012-07-26 11:14:38 +0000221 err = ip_route_input_noref(head, iph->daddr, iph->saddr,
222 iph->tos, head->dev);
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000223 if (err)
224 goto out_rcu_unlock;
225
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200226 /* Only an end host needs to send an ICMP
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000227 * "Fragment Reassembly Timeout" message, per RFC792.
Shan Weie9017b52010-01-23 01:57:42 -0800228 */
Andy Zhou5cf42282015-05-15 14:15:35 -0700229 if (frag_expire_skip_icmp(qp->user) &&
230 (skb_rtable(head)->rt_type != RTN_LOCAL))
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000231 goto out_rcu_unlock;
Shan Weie9017b52010-01-23 01:57:42 -0800232
Shan Weie9017b52010-01-23 01:57:42 -0800233 /* Send an ICMP "Fragment Reassembly Timeout" message. */
234 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
Shan Weie9017b52010-01-23 01:57:42 -0800235out_rcu_unlock:
Patrick McHardyd1c9ae62010-02-02 11:46:50 -0800236 rcu_read_unlock();
237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700239 spin_unlock(&qp->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700240 ipq_put(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700243/* Find the correct entry in the "incomplete datagrams" queue for
244 * this IP datagram, and create new one, if nothing is found.
245 */
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100246static struct ipq *ip_find(struct net *net, struct iphdr *iph, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700248 struct inet_frag_queue *q;
249 struct ip4_create_arg arg;
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700250 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700252 arg.iph = iph;
253 arg.user = user;
Pavel Emelyanov9a375802008-06-27 20:06:08 -0700254
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700255 hash = ipqhashfn(iph->id, iph->saddr, iph->daddr, iph->protocol);
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700256
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800257 q = inet_frag_find(&net->ipv4.frags, &ip4_frags, &arg, hash);
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000258 if (IS_ERR_OR_NULL(q)) {
259 inet_frag_maybe_warn_overflow(q, pr_fmt());
260 return NULL;
261 }
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700262 return container_of(q, struct ipq, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Herbert Xu89cee8b2005-12-13 23:14:27 -0800265/* Is the fragment too far ahead to be part of ipq? */
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100266static int ip_frag_too_far(struct ipq *qp)
Herbert Xu89cee8b2005-12-13 23:14:27 -0800267{
268 struct inet_peer *peer = qp->peer;
269 unsigned int max = sysctl_ipfrag_max_dist;
270 unsigned int start, end;
271
272 int rc;
273
274 if (!peer || !max)
275 return 0;
276
277 start = qp->rid;
278 end = atomic_inc_return(&peer->rid);
279 qp->rid = end;
280
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700281 rc = qp->q.fragments && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800282
283 if (rc) {
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700284 struct net *net;
285
286 net = container_of(qp->q.net, struct net, ipv4.frags);
287 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800288 }
289
290 return rc;
291}
292
293static int ip_frag_reinit(struct ipq *qp)
294{
295 struct sk_buff *fp;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000296 unsigned int sum_truesize = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800297
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800298 if (!mod_timer(&qp->q.timer, jiffies + qp->q.net->timeout)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700299 atomic_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800300 return -ETIMEDOUT;
301 }
302
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700303 fp = qp->q.fragments;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800304 do {
305 struct sk_buff *xp = fp->next;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000306
307 sum_truesize += fp->truesize;
308 kfree_skb(fp);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800309 fp = xp;
310 } while (fp);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000311 sub_frag_mem_limit(&qp->q, sum_truesize);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800312
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200313 qp->q.flags = 0;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700314 qp->q.len = 0;
315 qp->q.meat = 0;
316 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000317 qp->q.fragments_tail = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800318 qp->iif = 0;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000319 qp->ecn = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800320
321 return 0;
322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700325static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700328 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 int flags, offset;
330 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700331 int err = -ENOENT;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000332 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200334 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 goto err;
336
Herbert Xu89cee8b2005-12-13 23:14:27 -0800337 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700338 unlikely(ip_frag_too_far(qp)) &&
339 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800340 ipq_kill(qp);
341 goto err;
342 }
343
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000344 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700345 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 flags = offset & ~IP_OFFSET;
347 offset &= IP_OFFSET;
348 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300349 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /* Determine the position of this fragment. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900352 end = offset + skb->len - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700353 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 /* Is this the final fragment? */
356 if ((flags & IP_MF) == 0) {
357 /* If we already have some bits beyond end
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800358 * or have different end, the segment is corrupted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700360 if (end < qp->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200361 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 goto err;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200363 qp->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700364 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 } else {
366 if (end&7) {
367 end &= ~7;
368 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
369 skb->ip_summed = CHECKSUM_NONE;
370 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700371 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200373 if (qp->q.flags & INET_FRAG_LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700375 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 }
378 if (end == offset)
379 goto err;
380
Herbert Xu1706d582007-10-14 00:38:15 -0700381 err = -ENOMEM;
Ian Morris51456b22015-04-03 09:17:26 +0100382 if (!pskb_pull(skb, ihl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700384
385 err = pskb_trim_rcsum(skb, end - offset);
386 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 goto err;
388
389 /* Find out which fragments are in front and at the back of us
390 * in the chain of fragments so far. We must know where to put
391 * this fragment, right?
392 */
Changli Gaod6bebca2010-06-29 04:39:37 +0000393 prev = qp->q.fragments_tail;
394 if (!prev || FRAG_CB(prev)->offset < offset) {
395 next = NULL;
396 goto found;
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700399 for (next = qp->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (FRAG_CB(next)->offset >= offset)
401 break; /* bingo! */
402 prev = next;
403 }
404
Changli Gaod6bebca2010-06-29 04:39:37 +0000405found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /* We found where to put this one. Check for overlap with
407 * preceding fragment, and, if needed, align things so that
408 * any overlaps are eliminated.
409 */
410 if (prev) {
411 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
412
413 if (i > 0) {
414 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700415 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (end <= offset)
417 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700418 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (!pskb_pull(skb, i))
420 goto err;
421 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
422 skb->ip_summed = CHECKSUM_NONE;
423 }
424 }
425
Herbert Xu1706d582007-10-14 00:38:15 -0700426 err = -ENOMEM;
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 while (next && FRAG_CB(next)->offset < end) {
429 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
430
431 if (i < next->len) {
432 /* Eat head of the next overlapped fragment
433 * and leave the loop. The next ones cannot overlap.
434 */
435 if (!pskb_pull(next, i))
436 goto err;
437 FRAG_CB(next)->offset += i;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700438 qp->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (next->ip_summed != CHECKSUM_UNNECESSARY)
440 next->ip_summed = CHECKSUM_NONE;
441 break;
442 } else {
443 struct sk_buff *free_it = next;
444
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100445 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * new one drop it.
447 */
448 next = next->next;
449
450 if (prev)
451 prev->next = next;
452 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700453 qp->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700455 qp->q.meat -= free_it->len;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000456 sub_frag_mem_limit(&qp->q, free_it->truesize);
457 kfree_skb(free_it);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 }
460
461 FRAG_CB(skb)->offset = offset;
462
463 /* Insert this fragment in the chain of fragments. */
464 skb->next = next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000465 if (!next)
466 qp->q.fragments_tail = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (prev)
468 prev->next = skb;
469 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700470 qp->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Herbert Xu1706d582007-10-14 00:38:15 -0700472 dev = skb->dev;
473 if (dev) {
474 qp->iif = dev->ifindex;
475 skb->dev = NULL;
476 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700477 qp->q.stamp = skb->tstamp;
478 qp->q.meat += skb->len;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000479 qp->ecn |= ecn;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000480 add_frag_mem_limit(&qp->q, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (offset == 0)
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200482 qp->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200484 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
485 skb->len + ihl > qp->q.max_size)
486 qp->q.max_size = skb->len + ihl;
487
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200488 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000489 qp->q.meat == qp->q.len) {
490 unsigned long orefdst = skb->_skb_refdst;
Herbert Xu1706d582007-10-14 00:38:15 -0700491
Eric Dumazet97599dc2013-04-16 12:55:41 +0000492 skb->_skb_refdst = 0UL;
493 err = ip_frag_reasm(qp, prev, dev);
494 skb->_skb_refdst = orefdst;
495 return err;
496 }
497
498 skb_dst_drop(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700499 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501err:
502 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700503 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
506
507/* Build a new IP datagram from all its fragments. */
508
Herbert Xu1706d582007-10-14 00:38:15 -0700509static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
510 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700512 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 struct iphdr *iph;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700514 struct sk_buff *fp, *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 int len;
516 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700517 int err;
Eric Dumazet3cc49492012-05-19 03:02:20 +0000518 int sum_truesize;
Eric Dumazet5173cc02011-05-16 08:37:37 +0000519 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 ipq_kill(qp);
522
Hannes Frederic Sowabe991972013-03-22 08:24:37 +0000523 ecn = ip_frag_ecn_table[qp->ecn];
Eric Dumazet5173cc02011-05-16 08:37:37 +0000524 if (unlikely(ecn == 0xff)) {
525 err = -EINVAL;
526 goto out_fail;
527 }
Herbert Xu1706d582007-10-14 00:38:15 -0700528 /* Make the one we just received the head. */
529 if (prev) {
530 head = prev->next;
531 fp = skb_clone(head, GFP_ATOMIC);
Herbert Xu1706d582007-10-14 00:38:15 -0700532 if (!fp)
533 goto out_nomem;
534
535 fp->next = head->next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000536 if (!fp->next)
537 qp->q.fragments_tail = fp;
Herbert Xu1706d582007-10-14 00:38:15 -0700538 prev->next = fp;
539
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700540 skb_morph(head, qp->q.fragments);
541 head->next = qp->q.fragments->next;
Herbert Xu1706d582007-10-14 00:38:15 -0700542
Eric Dumazetcbf8f7b2012-04-19 06:10:26 +0000543 consume_skb(qp->q.fragments);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700544 qp->q.fragments = head;
Herbert Xu1706d582007-10-14 00:38:15 -0700545 }
546
Ian Morris51456b22015-04-03 09:17:26 +0100547 WARN_ON(!head);
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700548 WARN_ON(FRAG_CB(head)->offset != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300551 ihlen = ip_hdrlen(head);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700552 len = ihlen + qp->q.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Herbert Xu1706d582007-10-14 00:38:15 -0700554 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800555 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 goto out_oversize;
557
558 /* Head of list must not be cloned. */
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000559 if (skb_unclone(head, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 goto out_nomem;
561
562 /* If the first fragment is fragmented itself, we split
563 * it to two chunks: the first with data and paged part
564 * and the second, holding only fragments. */
David S. Miller21dc3302010-08-23 00:13:46 -0700565 if (skb_has_frag_list(head)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 struct sk_buff *clone;
567 int i, plen = 0;
568
Ian Morris51456b22015-04-03 09:17:26 +0100569 clone = alloc_skb(0, GFP_ATOMIC);
570 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 goto out_nomem;
572 clone->next = head->next;
573 head->next = clone;
574 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
David S. Millerd7fcf1a2009-06-09 00:19:37 -0700575 skb_frag_list_init(head);
Eric Dumazet9e903e02011-10-18 21:00:24 +0000576 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
577 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 clone->len = clone->data_len = head->data_len - plen;
579 head->data_len -= clone->len;
580 head->len -= clone->len;
581 clone->csum = 0;
582 clone->ip_summed = head->ip_summed;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000583 add_frag_mem_limit(&qp->q, clone->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700586 skb_push(head, head->data - skb_network_header(head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Eric Dumazet3cc49492012-05-19 03:02:20 +0000588 sum_truesize = head->truesize;
589 for (fp = head->next; fp;) {
590 bool headstolen;
591 int delta;
592 struct sk_buff *next = fp->next;
593
594 sum_truesize += fp->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (head->ip_summed != fp->ip_summed)
596 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700597 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 head->csum = csum_add(head->csum, fp->csum);
Eric Dumazet3cc49492012-05-19 03:02:20 +0000599
600 if (skb_try_coalesce(head, fp, &headstolen, &delta)) {
601 kfree_skb_partial(fp, headstolen);
602 } else {
603 if (!skb_shinfo(head)->frag_list)
604 skb_shinfo(head)->frag_list = fp;
605 head->data_len += fp->len;
606 head->len += fp->len;
607 head->truesize += fp->truesize;
608 }
609 fp = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000611 sub_frag_mem_limit(&qp->q, sum_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;
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200616 IPCB(head)->frag_max_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);
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200619 /* max_size != 0 implies at least one fragment had IP_DF set */
620 iph->frag_off = qp->q.max_size ? htons(IP_DF) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 iph->tot_len = htons(len);
Eric Dumazet5173cc02011-05-16 08:37:37 +0000622 iph->tos |= ecn;
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700623 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMOKS);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700624 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000625 qp->q.fragments_tail = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700626 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628out_nomem:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800629 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
David Howells45542472007-10-17 21:37:22 -0700630 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 goto out_fail;
632out_oversize:
Joe Perchese87cc472012-05-13 21:56:26 +0000633 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634out_fail:
David Fordbbf31bf2009-11-29 23:02:22 -0800635 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700636 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
639/* Process an incoming IP datagram fragment. */
Herbert Xu776c7292007-10-14 00:38:32 -0700640int ip_defrag(struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 struct ipq *qp;
Pavel Emelyanovac18e752008-01-22 06:02:14 -0800643 struct net *net;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900644
Eric Dumazetadf30902009-06-02 05:19:30 +0000645 net = skb->dev ? dev_net(skb->dev) : dev_net(skb_dst(skb)->dev);
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700646 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMREQDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /* Lookup (or create) queue header */
Ian Morris00db4122015-04-03 09:17:27 +0100649 qp = ip_find(net, ip_hdr(skb), user);
650 if (qp) {
Herbert Xu1706d582007-10-14 00:38:15 -0700651 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700653 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Herbert Xu1706d582007-10-14 00:38:15 -0700655 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700657 spin_unlock(&qp->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700658 ipq_put(qp);
Herbert Xu776c7292007-10-14 00:38:32 -0700659 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700662 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700664 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000666EXPORT_SYMBOL(ip_defrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Eric Dumazetbc416d92011-10-06 10:28:31 +0000668struct sk_buff *ip_check_defrag(struct sk_buff *skb, u32 user)
669{
Johannes Berg1bf37512012-12-09 23:41:06 +0000670 struct iphdr iph;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300671 int netoff;
Eric Dumazetbc416d92011-10-06 10:28:31 +0000672 u32 len;
673
674 if (skb->protocol != htons(ETH_P_IP))
675 return skb;
676
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300677 netoff = skb_network_offset(skb);
678
679 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000680 return skb;
681
Johannes Berg1bf37512012-12-09 23:41:06 +0000682 if (iph.ihl < 5 || iph.version != 4)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000683 return skb;
684
Johannes Berg1bf37512012-12-09 23:41:06 +0000685 len = ntohs(iph.tot_len);
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300686 if (skb->len < netoff + len || len < (iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000687 return skb;
688
689 if (ip_is_fragment(&iph)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +0000690 skb = skb_share_check(skb, GFP_ATOMIC);
691 if (skb) {
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300692 if (!pskb_may_pull(skb, netoff + iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000693 return skb;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300694 if (pskb_trim_rcsum(skb, netoff + len))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000695 return skb;
696 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
697 if (ip_defrag(skb, user))
698 return NULL;
Tom Herbert7539fad2013-12-15 22:12:18 -0800699 skb_clear_hash(skb);
Eric Dumazetbc416d92011-10-06 10:28:31 +0000700 }
701 }
702 return skb;
703}
704EXPORT_SYMBOL(ip_check_defrag);
705
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800706#ifdef CONFIG_SYSCTL
707static int zero;
708
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700709static struct ctl_table ip4_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800710 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800711 .procname = "ipfrag_high_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800712 .data = &init_net.ipv4.frags.high_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800713 .maxlen = sizeof(int),
714 .mode = 0644,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200715 .proc_handler = proc_dointvec_minmax,
716 .extra1 = &init_net.ipv4.frags.low_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800717 },
718 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800719 .procname = "ipfrag_low_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800720 .data = &init_net.ipv4.frags.low_thresh,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800721 .maxlen = sizeof(int),
722 .mode = 0644,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200723 .proc_handler = proc_dointvec_minmax,
724 .extra1 = &zero,
725 .extra2 = &init_net.ipv4.frags.high_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800726 },
727 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800728 .procname = "ipfrag_time",
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800729 .data = &init_net.ipv4.frags.timeout,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800730 .maxlen = sizeof(int),
731 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800732 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800733 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700734 { }
735};
736
Florian Westphale3a57d12014-07-24 16:50:35 +0200737/* secret interval has been deprecated */
738static int ip4_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700739static struct ctl_table ip4_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800740 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800741 .procname = "ipfrag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200742 .data = &ip4_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800743 .maxlen = sizeof(int),
744 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800745 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800746 },
747 {
748 .procname = "ipfrag_max_dist",
749 .data = &sysctl_ipfrag_max_dist,
750 .maxlen = sizeof(int),
751 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800752 .proc_handler = proc_dointvec_minmax,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800753 .extra1 = &zero
754 },
755 { }
756};
757
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000758static int __net_init ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800759{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800760 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800761 struct ctl_table_header *hdr;
762
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700763 table = ip4_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800764 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700765 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100766 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800767 goto err_alloc;
768
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800769 table[0].data = &net->ipv4.frags.high_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200770 table[0].extra1 = &net->ipv4.frags.low_thresh;
771 table[0].extra2 = &init_net.ipv4.frags.high_thresh;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800772 table[1].data = &net->ipv4.frags.low_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200773 table[1].extra2 = &net->ipv4.frags.high_thresh;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800774 table[2].data = &net->ipv4.frags.timeout;
Eric W. Biederman464dc802012-11-16 03:02:59 +0000775
776 /* Don't export sysctls to unprivileged users */
777 if (net->user_ns != &init_user_ns)
778 table[0].procname = NULL;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800779 }
780
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000781 hdr = register_net_sysctl(net, "net/ipv4", table);
Ian Morris51456b22015-04-03 09:17:26 +0100782 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800783 goto err_reg;
784
785 net->ipv4.frags_hdr = hdr;
786 return 0;
787
788err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800789 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800790 kfree(table);
791err_alloc:
792 return -ENOMEM;
793}
794
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000795static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800796{
797 struct ctl_table *table;
798
799 table = net->ipv4.frags_hdr->ctl_table_arg;
800 unregister_net_sysctl_table(net->ipv4.frags_hdr);
801 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800802}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700803
Fabian Frederick57a02c32014-10-01 19:18:57 +0200804static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700805{
Eric W. Biederman43444752012-04-19 13:22:55 +0000806 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700807}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800808#else
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100809static int ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800810{
811 return 0;
812}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800813
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100814static void ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800815{
816}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700817
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100818static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700819{
820}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800821#endif
822
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000823static int __net_init ipv4_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800824{
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000825 /* Fragment cache limits.
826 *
827 * The fragment memory accounting code, (tries to) account for
828 * the real memory usage, by measuring both the size of frag
829 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
830 * and the SKB's truesize.
831 *
832 * A 64K fragment consumes 129736 bytes (44*2944)+200
833 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
834 *
835 * We will commit 4MB at one time. Should we cross that limit
836 * we will prune down to 3MB, making room for approx 8 big 64K
837 * fragments 8x128k.
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800838 */
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000839 net->ipv4.frags.high_thresh = 4 * 1024 * 1024;
840 net->ipv4.frags.low_thresh = 3 * 1024 * 1024;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800841 /*
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800842 * Important NOTE! Fragment queue must be destroyed before MSL expires.
843 * RFC791 is wrong proposing to prolongate timer each fragment arrival
844 * by TTL.
845 */
846 net->ipv4.frags.timeout = IP_FRAG_TIME;
847
Pavel Emelyanove5a2bb82008-01-22 06:06:23 -0800848 inet_frags_init_net(&net->ipv4.frags);
849
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700850 return ip4_frags_ns_ctl_register(net);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800851}
852
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000853static void __net_exit ipv4_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800854{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700855 ip4_frags_ns_ctl_unregister(net);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800856 inet_frags_exit_net(&net->ipv4.frags, &ip4_frags);
857}
858
859static struct pernet_operations ip4_frags_ops = {
860 .init = ipv4_frags_init_net,
861 .exit = ipv4_frags_exit_net,
862};
863
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700864void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700866 ip4_frags_ctl_register();
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800867 register_pernet_subsys(&ip4_frags_ops);
Pavel Emelyanov321a3a92007-10-15 02:38:08 -0700868 ip4_frags.hashfn = ip4_hashfn;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700869 ip4_frags.constructor = ip4_frag_init;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700870 ip4_frags.destructor = ip4_frag_free;
871 ip4_frags.skb_free = NULL;
872 ip4_frags.qsize = sizeof(struct ipq);
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700873 ip4_frags.match = ip4_frag_match;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700874 ip4_frags.frag_expire = ip_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200875 ip4_frags.frags_cache_name = ip_frag_cache_name;
876 if (inet_frags_init(&ip4_frags))
877 panic("IP: failed to allocate ip4_frags cache\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}