blob: e235f62dab583370727f1b6a84b3dddd05218da7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * The IP fragmentation functionality.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: Fred N. van Kempen <waltje@uWalt.NL.Mugnet.ORG>
Alan Cox113aa832008-10-13 19:01:08 -07009 * Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Fixes:
12 * Alan Cox : Split from ip.c , see ip_input.c for history.
13 * David S. Miller : Begin massive cleanup...
14 * Andi Kleen : Add sysctls.
15 * xxxx : Overlapfrag bug.
16 * Ultima : ip_expire() kernel panic.
17 * Bill Hawes : Frag accounting and evictor fixes.
18 * John McDonald : 0 length frag bug.
19 * Alexey Kuznetsov: SMP races, threading, cleanup.
20 * Patrick McHardy : LRU queue of frag heads for evictor.
21 */
22
Joe Perchesafd465032012-03-12 07:03:32 +000023#define pr_fmt(fmt) "IPv4: " fmt
24
Herbert Xu89cee8b2005-12-13 23:14:27 -080025#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/types.h>
28#include <linux/mm.h>
29#include <linux/jiffies.h>
30#include <linux/skbuff.h>
31#include <linux/list.h>
32#include <linux/ip.h>
33#include <linux/icmp.h>
34#include <linux/netdevice.h>
35#include <linux/jhash.h>
36#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Shan Weie9017b52010-01-23 01:57:42 -080038#include <net/route.h>
39#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <net/sock.h>
41#include <net/ip.h>
42#include <net/icmp.h>
43#include <net/checksum.h>
Herbert Xu89cee8b2005-12-13 23:14:27 -080044#include <net/inetpeer.h>
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070045#include <net/inet_frag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/tcp.h>
47#include <linux/udp.h>
48#include <linux/inet.h>
49#include <linux/netfilter_ipv4.h>
Eric Dumazet6623e3b2011-01-05 07:52:55 +000050#include <net/inet_ecn.h>
David Ahern385add92015-09-29 20:07:13 -070051#include <net/l3mdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
54 * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
55 * as well. Or notify me, at least. --ANK
56 */
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +020057static const char ip_frag_cache_name[] = "ip4-frags";
Herbert Xu89cee8b2005-12-13 23:14:27 -080058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059struct ipfrag_skb_cb
60{
61 struct inet_skb_parm h;
62 int offset;
63};
64
Jianjun Kongfd3f8c42008-11-03 02:47:38 -080065#define FRAG_CB(skb) ((struct ipfrag_skb_cb *)((skb)->cb))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* Describe an entry in the "incomplete datagrams" queue. */
68struct ipq {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -070069 struct inet_frag_queue q;
70
Eric Dumazet6623e3b2011-01-05 07:52:55 +000071 u8 ecn; /* RFC3168 support */
Florian Westphald6b915e2015-05-22 16:32:51 +020072 u16 max_df_size; /* largest frag with DF set seen */
Herbert Xu89cee8b2005-12-13 23:14:27 -080073 int iif;
74 unsigned int rid;
75 struct inet_peer *peer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
Fabian Frederickaa1f7312014-11-04 20:44:04 +010078static u8 ip4_frag_ecn(u8 tos)
Eric Dumazet6623e3b2011-01-05 07:52:55 +000079{
Eric Dumazet5173cc02011-05-16 08:37:37 +000080 return 1 << (tos & INET_ECN_MASK);
Eric Dumazet6623e3b2011-01-05 07:52:55 +000081}
82
Pavel Emelyanov7eb95152007-10-15 02:31:52 -070083static struct inet_frags ip4_frags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Herbert Xu1706d582007-10-14 00:38:15 -070085static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
86 struct net_device *dev);
87
Pavel Emelyanovabd65232007-10-17 19:47:21 -070088
Florian Westphal36c77782014-07-24 16:50:29 +020089static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070090{
91 struct ipq *qp = container_of(q, struct ipq, q);
Gao feng54db0cc2012-06-08 01:21:40 +000092 struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4,
93 frags);
94 struct net *net = container_of(ipv4, struct net, ipv4);
95
Eric Dumazet23ce9c52018-10-10 12:29:56 -070096 const struct frag_v4_compare_key *key = a;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -070097
Eric Dumazet23ce9c52018-10-10 12:29:56 -070098 q->key.v4 = *key;
99 qp->ecn = 0;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200100 qp->peer = q->net->max_dist ?
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700101 inet_getpeer_v4(net->ipv4.peers, key->saddr, key->vif, 1) :
David Ahern192132b2015-08-27 16:07:03 -0700102 NULL;
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700103}
104
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100105static void ip4_frag_free(struct inet_frag_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700107 struct ipq *qp;
108
109 qp = container_of(q, struct ipq, q);
110 if (qp->peer)
111 inet_putpeer(qp->peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115/* Destruction primitives. */
116
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100117static void ipq_put(struct ipq *ipq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700119 inet_frag_put(&ipq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122/* Kill ipq entry. It is not destroyed immediately,
123 * because caller (and someone more) holds reference count.
124 */
125static void ipq_kill(struct ipq *ipq)
126{
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700127 inet_frag_kill(&ipq->q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Andy Zhou5cf42282015-05-15 14:15:35 -0700130static bool frag_expire_skip_icmp(u32 user)
131{
132 return user == IP_DEFRAG_AF_PACKET ||
133 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_IN,
Andy Zhou8bc04862015-05-15 14:15:36 -0700134 __IP_DEFRAG_CONNTRACK_IN_END) ||
135 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_BRIDGE_IN,
136 __IP_DEFRAG_CONNTRACK_BRIDGE_IN);
Andy Zhou5cf42282015-05-15 14:15:35 -0700137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
140 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
141 */
142static void ip_expire(unsigned long arg)
143{
Eric Dumazet49106f32018-10-10 12:29:58 -0700144 const struct iphdr *iph;
Eric Dumazet7a87ec92018-10-10 12:30:01 -0700145 struct sk_buff *head;
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700146 struct net *net;
Eric Dumazet49106f32018-10-10 12:29:58 -0700147 struct ipq *qp;
148 int err;
Pavel Emelyanove521db92007-10-17 19:45:23 -0700149
150 qp = container_of((struct inet_frag_queue *) arg, struct ipq, q);
Pavel Emelyanov84a3aa02008-07-16 20:19:08 -0700151 net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Eric Dumazet76568712017-03-22 08:57:15 -0700153 rcu_read_lock();
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700154 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200156 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 goto out;
158
159 ipq_kill(qp);
Eric Dumazetb45386e2016-04-27 16:44:35 -0700160 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Eric Dumazet49106f32018-10-10 12:29:58 -0700162 head = qp->q.fragments;
Denis V. Lunevcb846632008-03-24 15:31:00 -0700163
Eric Dumazet49106f32018-10-10 12:29:58 -0700164 __IP_INC_STATS(net, IPSTATS_MIB_REASMTIMEOUT);
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200165
Eric Dumazet49106f32018-10-10 12:29:58 -0700166 if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !head)
167 goto out;
Nikolay Aleksandrov2e404f62014-08-01 12:29:47 +0200168
Eric Dumazet49106f32018-10-10 12:29:58 -0700169 head->dev = dev_get_by_index_rcu(net, qp->iif);
170 if (!head->dev)
171 goto out;
Eric Dumazet76568712017-03-22 08:57:15 -0700172
Shan Weie9017b52010-01-23 01:57:42 -0800173
Eric Dumazet49106f32018-10-10 12:29:58 -0700174 /* skb has no dst, perform route lookup again */
175 iph = ip_hdr(head);
176 err = ip_route_input_noref(head, iph->daddr, iph->saddr,
David S. Millerc6cffba2012-07-26 11:14:38 +0000177 iph->tos, head->dev);
Eric Dumazet49106f32018-10-10 12:29:58 -0700178 if (err)
179 goto out;
Eric Dumazet64f3b9e2011-05-04 10:02:26 +0000180
Eric Dumazet49106f32018-10-10 12:29:58 -0700181 /* Only an end host needs to send an ICMP
182 * "Fragment Reassembly Timeout" message, per RFC792.
183 */
184 if (frag_expire_skip_icmp(qp->q.key.v4.user) &&
185 (skb_rtable(head)->rt_type != RTN_LOCAL))
186 goto out;
Eric Dumazet76568712017-03-22 08:57:15 -0700187
Eric Dumazet7a87ec92018-10-10 12:30:01 -0700188 skb_get(head);
189 spin_unlock(&qp->q.lock);
190 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
191 kfree_skb(head);
192 goto out_rcu_unlock;
Shan Weie9017b52010-01-23 01:57:42 -0800193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194out:
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700195 spin_unlock(&qp->q.lock);
Eric Dumazet76568712017-03-22 08:57:15 -0700196out_rcu_unlock:
197 rcu_read_unlock();
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700198 ipq_put(qp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Pavel Emelyanovabd65232007-10-17 19:47:21 -0700201/* Find the correct entry in the "incomplete datagrams" queue for
202 * this IP datagram, and create new one, if nothing is found.
203 */
David Ahern9972f132015-08-13 14:59:09 -0600204static struct ipq *ip_find(struct net *net, struct iphdr *iph,
205 u32 user, int vif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700207 struct frag_v4_compare_key key = {
208 .saddr = iph->saddr,
209 .daddr = iph->daddr,
210 .user = user,
211 .vif = vif,
212 .id = iph->id,
213 .protocol = iph->protocol,
214 };
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700215 struct inet_frag_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700217 q = inet_frag_find(&net->ipv4.frags, &key);
Eric Dumazet965e2ad2018-10-10 12:29:59 -0700218 if (!q)
Hannes Frederic Sowa5a3da1f2013-03-15 11:32:30 +0000219 return NULL;
Eric Dumazet965e2ad2018-10-10 12:29:59 -0700220
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700221 return container_of(q, struct ipq, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Herbert Xu89cee8b2005-12-13 23:14:27 -0800224/* Is the fragment too far ahead to be part of ipq? */
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100225static int ip_frag_too_far(struct ipq *qp)
Herbert Xu89cee8b2005-12-13 23:14:27 -0800226{
227 struct inet_peer *peer = qp->peer;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200228 unsigned int max = qp->q.net->max_dist;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800229 unsigned int start, end;
230
231 int rc;
232
233 if (!peer || !max)
234 return 0;
235
236 start = qp->rid;
237 end = atomic_inc_return(&peer->rid);
238 qp->rid = end;
239
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700240 rc = qp->q.fragments && (end - start) > max;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800241
242 if (rc) {
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700243 struct net *net;
244
245 net = container_of(qp->q.net, struct net, ipv4.frags);
Eric Dumazetb45386e2016-04-27 16:44:35 -0700246 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800247 }
248
249 return rc;
250}
251
252static int ip_frag_reinit(struct ipq *qp)
253{
254 struct sk_buff *fp;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000255 unsigned int sum_truesize = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800256
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800257 if (!mod_timer(&qp->q.timer, jiffies + qp->q.net->timeout)) {
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700258 atomic_inc(&qp->q.refcnt);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800259 return -ETIMEDOUT;
260 }
261
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700262 fp = qp->q.fragments;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800263 do {
264 struct sk_buff *xp = fp->next;
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000265
266 sum_truesize += fp->truesize;
267 kfree_skb(fp);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800268 fp = xp;
269 } while (fp);
Florian Westphal0e60d242015-07-23 12:05:38 +0200270 sub_frag_mem_limit(qp->q.net, sum_truesize);
Herbert Xu89cee8b2005-12-13 23:14:27 -0800271
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200272 qp->q.flags = 0;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700273 qp->q.len = 0;
274 qp->q.meat = 0;
275 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000276 qp->q.fragments_tail = NULL;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800277 qp->iif = 0;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000278 qp->ecn = 0;
Herbert Xu89cee8b2005-12-13 23:14:27 -0800279
280 return 0;
281}
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/* Add new segment to existing queue. */
Herbert Xu1706d582007-10-14 00:38:15 -0700284static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 struct sk_buff *prev, *next;
Herbert Xu1706d582007-10-14 00:38:15 -0700287 struct net_device *dev;
Florian Westphald6b915e2015-05-22 16:32:51 +0200288 unsigned int fragsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 int flags, offset;
290 int ihl, end;
Herbert Xu1706d582007-10-14 00:38:15 -0700291 int err = -ENOENT;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000292 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200294 if (qp->q.flags & INET_FRAG_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 goto err;
296
Herbert Xu89cee8b2005-12-13 23:14:27 -0800297 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
Herbert Xu1706d582007-10-14 00:38:15 -0700298 unlikely(ip_frag_too_far(qp)) &&
299 unlikely(err = ip_frag_reinit(qp))) {
Herbert Xu89cee8b2005-12-13 23:14:27 -0800300 ipq_kill(qp);
301 goto err;
302 }
303
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000304 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700305 offset = ntohs(ip_hdr(skb)->frag_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 flags = offset & ~IP_OFFSET;
307 offset &= IP_OFFSET;
308 offset <<= 3; /* offset is in 8-byte chunks */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300309 ihl = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 /* Determine the position of this fragment. */
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200312 end = offset + skb->len - skb_network_offset(skb) - ihl;
Herbert Xu1706d582007-10-14 00:38:15 -0700313 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 /* Is this the final fragment? */
316 if ((flags & IP_MF) == 0) {
317 /* If we already have some bits beyond end
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800318 * or have different end, the segment is corrupted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 */
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700320 if (end < qp->q.len ||
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200321 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 goto err;
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200323 qp->q.flags |= INET_FRAG_LAST_IN;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700324 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 } else {
326 if (end&7) {
327 end &= ~7;
328 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
329 skb->ip_summed = CHECKSUM_NONE;
330 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700331 if (end > qp->q.len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* Some bits beyond end -> corruption. */
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200333 if (qp->q.flags & INET_FRAG_LAST_IN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 goto err;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700335 qp->q.len = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 }
338 if (end == offset)
339 goto err;
340
Herbert Xu1706d582007-10-14 00:38:15 -0700341 err = -ENOMEM;
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200342 if (!pskb_pull(skb, skb_network_offset(skb) + ihl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700344
345 err = pskb_trim_rcsum(skb, end - offset);
346 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 goto err;
348
349 /* Find out which fragments are in front and at the back of us
350 * in the chain of fragments so far. We must know where to put
351 * this fragment, right?
352 */
Changli Gaod6bebca2010-06-29 04:39:37 +0000353 prev = qp->q.fragments_tail;
354 if (!prev || FRAG_CB(prev)->offset < offset) {
355 next = NULL;
356 goto found;
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 prev = NULL;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700359 for (next = qp->q.fragments; next != NULL; next = next->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (FRAG_CB(next)->offset >= offset)
361 break; /* bingo! */
362 prev = next;
363 }
364
Changli Gaod6bebca2010-06-29 04:39:37 +0000365found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /* We found where to put this one. Check for overlap with
367 * preceding fragment, and, if needed, align things so that
368 * any overlaps are eliminated.
369 */
370 if (prev) {
371 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
372
373 if (i > 0) {
374 offset += i;
Herbert Xu1706d582007-10-14 00:38:15 -0700375 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (end <= offset)
377 goto err;
Herbert Xu1706d582007-10-14 00:38:15 -0700378 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (!pskb_pull(skb, i))
380 goto err;
381 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
382 skb->ip_summed = CHECKSUM_NONE;
383 }
384 }
385
Herbert Xu1706d582007-10-14 00:38:15 -0700386 err = -ENOMEM;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 while (next && FRAG_CB(next)->offset < end) {
389 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
390
391 if (i < next->len) {
Eric Dumazetd59dcdf2018-07-30 21:50:29 -0700392 int delta = -next->truesize;
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /* Eat head of the next overlapped fragment
395 * and leave the loop. The next ones cannot overlap.
396 */
397 if (!pskb_pull(next, i))
398 goto err;
Eric Dumazetd59dcdf2018-07-30 21:50:29 -0700399 delta += next->truesize;
400 if (delta)
401 add_frag_mem_limit(qp->q.net, delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 FRAG_CB(next)->offset += i;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700403 qp->q.meat -= i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (next->ip_summed != CHECKSUM_UNNECESSARY)
405 next->ip_summed = CHECKSUM_NONE;
406 break;
407 } else {
408 struct sk_buff *free_it = next;
409
Peter Zijlstra47c6bf772006-12-12 19:48:59 +0100410 /* Old fragment is completely overridden with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * new one drop it.
412 */
413 next = next->next;
414
415 if (prev)
416 prev->next = next;
417 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700418 qp->q.fragments = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700420 qp->q.meat -= free_it->len;
Florian Westphal0e60d242015-07-23 12:05:38 +0200421 sub_frag_mem_limit(qp->q.net, free_it->truesize);
Jesper Dangaard Brouerd4336732013-01-28 23:45:12 +0000422 kfree_skb(free_it);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424 }
425
426 FRAG_CB(skb)->offset = offset;
427
428 /* Insert this fragment in the chain of fragments. */
429 skb->next = next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000430 if (!next)
431 qp->q.fragments_tail = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (prev)
433 prev->next = skb;
434 else
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700435 qp->q.fragments = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Herbert Xu1706d582007-10-14 00:38:15 -0700437 dev = skb->dev;
438 if (dev) {
439 qp->iif = dev->ifindex;
440 skb->dev = NULL;
441 }
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700442 qp->q.stamp = skb->tstamp;
443 qp->q.meat += skb->len;
Eric Dumazet6623e3b2011-01-05 07:52:55 +0000444 qp->ecn |= ecn;
Florian Westphal0e60d242015-07-23 12:05:38 +0200445 add_frag_mem_limit(qp->q.net, skb->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (offset == 0)
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200447 qp->q.flags |= INET_FRAG_FIRST_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Florian Westphald6b915e2015-05-22 16:32:51 +0200449 fragsize = skb->len + ihl;
450
451 if (fragsize > qp->q.max_size)
452 qp->q.max_size = fragsize;
453
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200454 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
Florian Westphald6b915e2015-05-22 16:32:51 +0200455 fragsize > qp->max_df_size)
456 qp->max_df_size = fragsize;
Patrick McHardy5f2d04f2012-08-26 19:13:55 +0200457
Nikolay Aleksandrov06aa8b82014-08-01 12:29:44 +0200458 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
Eric Dumazet97599dc2013-04-16 12:55:41 +0000459 qp->q.meat == qp->q.len) {
460 unsigned long orefdst = skb->_skb_refdst;
Herbert Xu1706d582007-10-14 00:38:15 -0700461
Eric Dumazet97599dc2013-04-16 12:55:41 +0000462 skb->_skb_refdst = 0UL;
463 err = ip_frag_reasm(qp, prev, dev);
464 skb->_skb_refdst = orefdst;
465 return err;
466 }
467
468 skb_dst_drop(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700469 return -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471err:
472 kfree_skb(skb);
Herbert Xu1706d582007-10-14 00:38:15 -0700473 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
476
477/* Build a new IP datagram from all its fragments. */
478
Herbert Xu1706d582007-10-14 00:38:15 -0700479static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
480 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Jorge Boncompte [DTI2]2bad35b2009-03-18 23:26:11 -0700482 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 struct iphdr *iph;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700484 struct sk_buff *fp, *head = qp->q.fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 int len;
486 int ihlen;
Herbert Xu1706d582007-10-14 00:38:15 -0700487 int err;
Eric Dumazet5173cc02011-05-16 08:37:37 +0000488 u8 ecn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 ipq_kill(qp);
491
Hannes Frederic Sowabe991972013-03-22 08:24:37 +0000492 ecn = ip_frag_ecn_table[qp->ecn];
Eric Dumazet5173cc02011-05-16 08:37:37 +0000493 if (unlikely(ecn == 0xff)) {
494 err = -EINVAL;
495 goto out_fail;
496 }
Herbert Xu1706d582007-10-14 00:38:15 -0700497 /* Make the one we just received the head. */
498 if (prev) {
499 head = prev->next;
500 fp = skb_clone(head, GFP_ATOMIC);
Herbert Xu1706d582007-10-14 00:38:15 -0700501 if (!fp)
502 goto out_nomem;
503
504 fp->next = head->next;
Changli Gaod6bebca2010-06-29 04:39:37 +0000505 if (!fp->next)
506 qp->q.fragments_tail = fp;
Herbert Xu1706d582007-10-14 00:38:15 -0700507 prev->next = fp;
508
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700509 skb_morph(head, qp->q.fragments);
510 head->next = qp->q.fragments->next;
Herbert Xu1706d582007-10-14 00:38:15 -0700511
Eric Dumazetcbf8f7b2012-04-19 06:10:26 +0000512 consume_skb(qp->q.fragments);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700513 qp->q.fragments = head;
Herbert Xu1706d582007-10-14 00:38:15 -0700514 }
515
Ian Morris51456b22015-04-03 09:17:26 +0100516 WARN_ON(!head);
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700517 WARN_ON(FRAG_CB(head)->offset != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 /* Allocate a new buffer for the datagram. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300520 ihlen = ip_hdrlen(head);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700521 len = ihlen + qp->q.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Herbert Xu1706d582007-10-14 00:38:15 -0700523 err = -E2BIG;
Stephen Hemminger132adf52007-03-08 20:44:43 -0800524 if (len > 65535)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto out_oversize;
526
527 /* Head of list must not be cloned. */
Pravin B Shelar14bbd6a2013-02-14 09:44:49 +0000528 if (skb_unclone(head, GFP_ATOMIC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 goto out_nomem;
530
531 /* If the first fragment is fragmented itself, we split
532 * it to two chunks: the first with data and paged part
533 * and the second, holding only fragments. */
David S. Miller21dc3302010-08-23 00:13:46 -0700534 if (skb_has_frag_list(head)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 struct sk_buff *clone;
536 int i, plen = 0;
537
Ian Morris51456b22015-04-03 09:17:26 +0100538 clone = alloc_skb(0, GFP_ATOMIC);
539 if (!clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 goto out_nomem;
541 clone->next = head->next;
542 head->next = clone;
543 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
David S. Millerd7fcf1a2009-06-09 00:19:37 -0700544 skb_frag_list_init(head);
Eric Dumazet9e903e02011-10-18 21:00:24 +0000545 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
546 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 clone->len = clone->data_len = head->data_len - plen;
548 head->data_len -= clone->len;
549 head->len -= clone->len;
550 clone->csum = 0;
551 clone->ip_summed = head->ip_summed;
Florian Westphal0e60d242015-07-23 12:05:38 +0200552 add_frag_mem_limit(qp->q.net, clone->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
Florian Westphal14fe22e2015-07-11 01:37:36 +0200555 skb_shinfo(head)->frag_list = head->next;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700556 skb_push(head, head->data - skb_network_header(head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Florian Westphal14fe22e2015-07-11 01:37:36 +0200558 for (fp=head->next; fp; fp = fp->next) {
559 head->data_len += fp->len;
560 head->len += fp->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (head->ip_summed != fp->ip_summed)
562 head->ip_summed = CHECKSUM_NONE;
Patrick McHardy84fa7932006-08-29 16:44:56 -0700563 else if (head->ip_summed == CHECKSUM_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 head->csum = csum_add(head->csum, fp->csum);
Florian Westphal14fe22e2015-07-11 01:37:36 +0200565 head->truesize += fp->truesize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
David S. Miller5510b3c2015-07-31 23:52:20 -0700567 sub_frag_mem_limit(qp->q.net, head->truesize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 head->next = NULL;
570 head->dev = dev;
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700571 head->tstamp = qp->q.stamp;
Florian Westphald6b915e2015-05-22 16:32:51 +0200572 IPCB(head)->frag_max_size = max(qp->max_df_size, qp->q.max_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700574 iph = ip_hdr(head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 iph->tot_len = htons(len);
Eric Dumazet5173cc02011-05-16 08:37:37 +0000576 iph->tos |= ecn;
Florian Westphald6b915e2015-05-22 16:32:51 +0200577
578 /* When we set IP_DF on a refragmented skb we must also force a
579 * call to ip_fragment to avoid forwarding a DF-skb of size s while
580 * original sender only sent fragments of size f (where f < s).
581 *
582 * We only set DF/IPSKB_FRAG_PMTU if such DF fragment was the largest
583 * frag seen to avoid sending tiny DF-fragments in case skb was built
584 * from one very small df-fragment and one large non-df frag.
585 */
586 if (qp->max_df_size == qp->q.max_size) {
587 IPCB(head)->flags |= IPSKB_FRAG_PMTU;
588 iph->frag_off = htons(IP_DF);
589 } else {
590 iph->frag_off = 0;
591 }
592
Edward Hyunkoo Jee0848f642015-07-21 09:43:59 +0200593 ip_send_check(iph);
594
Eric Dumazetb45386e2016-04-27 16:44:35 -0700595 __IP_INC_STATS(net, IPSTATS_MIB_REASMOKS);
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700596 qp->q.fragments = NULL;
Changli Gaod6bebca2010-06-29 04:39:37 +0000597 qp->q.fragments_tail = NULL;
Herbert Xu1706d582007-10-14 00:38:15 -0700598 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600out_nomem:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800601 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
David Howells45542472007-10-17 21:37:22 -0700602 err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 goto out_fail;
604out_oversize:
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700605 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->q.key.v4.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606out_fail:
Eric Dumazetb45386e2016-04-27 16:44:35 -0700607 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Herbert Xu1706d582007-10-14 00:38:15 -0700608 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/* Process an incoming IP datagram fragment. */
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500612int ip_defrag(struct net *net, struct sk_buff *skb, u32 user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
David Ahern9972f132015-08-13 14:59:09 -0600614 struct net_device *dev = skb->dev ? : skb_dst(skb)->dev;
David Ahern385add92015-09-29 20:07:13 -0700615 int vif = l3mdev_master_ifindex_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 struct ipq *qp;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900617
Eric Dumazetb45386e2016-04-27 16:44:35 -0700618 __IP_INC_STATS(net, IPSTATS_MIB_REASMREQDS);
Joe Stringer8282f272016-01-22 15:49:12 -0800619 skb_orphan(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* Lookup (or create) queue header */
David Ahern9972f132015-08-13 14:59:09 -0600622 qp = ip_find(net, ip_hdr(skb), user, vif);
Ian Morris00db4122015-04-03 09:17:27 +0100623 if (qp) {
Herbert Xu1706d582007-10-14 00:38:15 -0700624 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700626 spin_lock(&qp->q.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Herbert Xu1706d582007-10-14 00:38:15 -0700628 ret = ip_frag_queue(qp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Pavel Emelyanov5ab11c92007-10-15 02:24:19 -0700630 spin_unlock(&qp->q.lock);
Pavel Emelyanov4b6cb5d2007-10-15 02:41:09 -0700631 ipq_put(qp);
Herbert Xu776c7292007-10-14 00:38:32 -0700632 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
Eric Dumazetb45386e2016-04-27 16:44:35 -0700635 __IP_INC_STATS(net, IPSTATS_MIB_REASMFAILS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 kfree_skb(skb);
Herbert Xu776c7292007-10-14 00:38:32 -0700637 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
Eric Dumazet4bc2f182010-07-09 21:22:10 +0000639EXPORT_SYMBOL(ip_defrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500641struct sk_buff *ip_check_defrag(struct net *net, struct sk_buff *skb, u32 user)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000642{
Johannes Berg1bf37512012-12-09 23:41:06 +0000643 struct iphdr iph;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300644 int netoff;
Eric Dumazetbc416d92011-10-06 10:28:31 +0000645 u32 len;
646
647 if (skb->protocol != htons(ETH_P_IP))
648 return skb;
649
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300650 netoff = skb_network_offset(skb);
651
652 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000653 return skb;
654
Johannes Berg1bf37512012-12-09 23:41:06 +0000655 if (iph.ihl < 5 || iph.version != 4)
Eric Dumazetbc416d92011-10-06 10:28:31 +0000656 return skb;
657
Johannes Berg1bf37512012-12-09 23:41:06 +0000658 len = ntohs(iph.tot_len);
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300659 if (skb->len < netoff + len || len < (iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000660 return skb;
661
662 if (ip_is_fragment(&iph)) {
Eric Dumazetbc416d92011-10-06 10:28:31 +0000663 skb = skb_share_check(skb, GFP_ATOMIC);
664 if (skb) {
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300665 if (!pskb_may_pull(skb, netoff + iph.ihl * 4))
Johannes Berg1bf37512012-12-09 23:41:06 +0000666 return skb;
Alexander Drozdov3e32e732015-03-05 10:29:39 +0300667 if (pskb_trim_rcsum(skb, netoff + len))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000668 return skb;
669 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Eric W. Biederman19bcf9f2015-10-09 13:44:54 -0500670 if (ip_defrag(net, skb, user))
Eric Dumazetbc416d92011-10-06 10:28:31 +0000671 return NULL;
Tom Herbert7539fad2013-12-15 22:12:18 -0800672 skb_clear_hash(skb);
Eric Dumazetbc416d92011-10-06 10:28:31 +0000673 }
674 }
675 return skb;
676}
677EXPORT_SYMBOL(ip_check_defrag);
678
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800679#ifdef CONFIG_SYSCTL
Eric Dumazet7f617062018-10-10 12:30:00 -0700680static long zero;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800681
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700682static struct ctl_table ip4_frags_ns_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800683 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800684 .procname = "ipfrag_high_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800685 .data = &init_net.ipv4.frags.high_thresh,
Eric Dumazet7f617062018-10-10 12:30:00 -0700686 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800687 .mode = 0644,
Eric Dumazet7f617062018-10-10 12:30:00 -0700688 .proc_handler = proc_doulongvec_minmax,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200689 .extra1 = &init_net.ipv4.frags.low_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800690 },
691 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800692 .procname = "ipfrag_low_thresh",
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800693 .data = &init_net.ipv4.frags.low_thresh,
Eric Dumazet7f617062018-10-10 12:30:00 -0700694 .maxlen = sizeof(unsigned long),
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800695 .mode = 0644,
Eric Dumazet7f617062018-10-10 12:30:00 -0700696 .proc_handler = proc_doulongvec_minmax,
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200697 .extra1 = &zero,
698 .extra2 = &init_net.ipv4.frags.high_thresh
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800699 },
700 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800701 .procname = "ipfrag_time",
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800702 .data = &init_net.ipv4.frags.timeout,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800703 .maxlen = sizeof(int),
704 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800705 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800706 },
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200707 {
708 .procname = "ipfrag_max_dist",
709 .data = &init_net.ipv4.frags.max_dist,
710 .maxlen = sizeof(int),
711 .mode = 0644,
712 .proc_handler = proc_dointvec_minmax,
713 .extra1 = &zero
714 },
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700715 { }
716};
717
Florian Westphale3a57d12014-07-24 16:50:35 +0200718/* secret interval has been deprecated */
719static int ip4_frags_secret_interval_unused;
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700720static struct ctl_table ip4_frags_ctl_table[] = {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800721 {
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800722 .procname = "ipfrag_secret_interval",
Florian Westphale3a57d12014-07-24 16:50:35 +0200723 .data = &ip4_frags_secret_interval_unused,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800724 .maxlen = sizeof(int),
725 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800726 .proc_handler = proc_dointvec_jiffies,
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800727 },
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800728 { }
729};
730
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000731static int __net_init ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800732{
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800733 struct ctl_table *table;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800734 struct ctl_table_header *hdr;
735
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700736 table = ip4_frags_ns_ctl_table;
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800737 if (!net_eq(net, &init_net)) {
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700738 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
Ian Morris51456b22015-04-03 09:17:26 +0100739 if (!table)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800740 goto err_alloc;
741
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800742 table[0].data = &net->ipv4.frags.high_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200743 table[0].extra1 = &net->ipv4.frags.low_thresh;
744 table[0].extra2 = &init_net.ipv4.frags.high_thresh;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800745 table[1].data = &net->ipv4.frags.low_thresh;
Nikolay Aleksandrov1bab4c72014-07-24 16:50:37 +0200746 table[1].extra2 = &net->ipv4.frags.high_thresh;
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800747 table[2].data = &net->ipv4.frags.timeout;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200748 table[3].data = &net->ipv4.frags.max_dist;
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800749 }
750
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +0000751 hdr = register_net_sysctl(net, "net/ipv4", table);
Ian Morris51456b22015-04-03 09:17:26 +0100752 if (!hdr)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800753 goto err_reg;
754
755 net->ipv4.frags_hdr = hdr;
756 return 0;
757
758err_reg:
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800759 if (!net_eq(net, &init_net))
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800760 kfree(table);
761err_alloc:
762 return -ENOMEM;
763}
764
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000765static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800766{
767 struct ctl_table *table;
768
769 table = net->ipv4.frags_hdr->ctl_table_arg;
770 unregister_net_sysctl_table(net->ipv4.frags_hdr);
771 kfree(table);
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800772}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700773
Fabian Frederick57a02c32014-10-01 19:18:57 +0200774static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700775{
Eric W. Biederman43444752012-04-19 13:22:55 +0000776 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700777}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800778#else
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100779static int ip4_frags_ns_ctl_register(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800780{
781 return 0;
782}
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800783
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100784static void ip4_frags_ns_ctl_unregister(struct net *net)
Pavel Emelyanove4a2d5c2008-01-22 06:08:36 -0800785{
786}
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700787
Fabian Frederickaa1f7312014-11-04 20:44:04 +0100788static void __init ip4_frags_ctl_register(void)
Pavel Emelyanov7d291eb2008-05-19 13:53:02 -0700789{
790}
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800791#endif
792
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000793static int __net_init ipv4_frags_init_net(struct net *net)
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800794{
Eric Dumazet7fca7712018-10-10 12:29:49 -0700795 int res;
796
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000797 /* Fragment cache limits.
798 *
799 * The fragment memory accounting code, (tries to) account for
800 * the real memory usage, by measuring both the size of frag
801 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
802 * and the SKB's truesize.
803 *
804 * A 64K fragment consumes 129736 bytes (44*2944)+200
805 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
806 *
807 * We will commit 4MB at one time. Should we cross that limit
808 * we will prune down to 3MB, making room for approx 8 big 64K
809 * fragments 8x128k.
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800810 */
Jesper Dangaard Brouerc2a93662013-01-15 07:16:35 +0000811 net->ipv4.frags.high_thresh = 4 * 1024 * 1024;
812 net->ipv4.frags.low_thresh = 3 * 1024 * 1024;
Pavel Emelyanove31e0bdc72008-01-22 06:10:13 -0800813 /*
Pavel Emelyanovb2fd5322008-01-22 06:09:37 -0800814 * Important NOTE! Fragment queue must be destroyed before MSL expires.
815 * RFC791 is wrong proposing to prolongate timer each fragment arrival
816 * by TTL.
817 */
818 net->ipv4.frags.timeout = IP_FRAG_TIME;
819
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200820 net->ipv4.frags.max_dist = 64;
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700821 net->ipv4.frags.f = &ip4_frags;
Nikolay Borisov0fbf4cb2016-02-15 12:11:31 +0200822
Eric Dumazet7fca7712018-10-10 12:29:49 -0700823 res = inet_frags_init_net(&net->ipv4.frags);
824 if (res < 0)
825 return res;
826 res = ip4_frags_ns_ctl_register(net);
827 if (res < 0)
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700828 inet_frags_exit_net(&net->ipv4.frags);
Eric Dumazet7fca7712018-10-10 12:29:49 -0700829 return res;
Pavel Emelyanov8d8354d2008-01-22 05:58:31 -0800830}
831
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000832static void __net_exit ipv4_frags_exit_net(struct net *net)
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800833{
Pavel Emelyanov0a64b4b2008-05-19 13:51:29 -0700834 ip4_frags_ns_ctl_unregister(net);
Eric Dumazet2ffb1c32018-10-10 12:29:50 -0700835 inet_frags_exit_net(&net->ipv4.frags);
Pavel Emelyanov81566e82008-01-22 06:12:39 -0800836}
837
838static struct pernet_operations ip4_frags_ops = {
839 .init = ipv4_frags_init_net,
840 .exit = ipv4_frags_exit_net,
841};
842
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700843
844static u32 ip4_key_hashfn(const void *data, u32 len, u32 seed)
845{
846 return jhash2(data,
847 sizeof(struct frag_v4_compare_key) / sizeof(u32), seed);
848}
849
850static u32 ip4_obj_hashfn(const void *data, u32 len, u32 seed)
851{
852 const struct inet_frag_queue *fq = data;
853
854 return jhash2((const u32 *)&fq->key.v4,
855 sizeof(struct frag_v4_compare_key) / sizeof(u32), seed);
856}
857
858static int ip4_obj_cmpfn(struct rhashtable_compare_arg *arg, const void *ptr)
859{
860 const struct frag_v4_compare_key *key = arg->key;
861 const struct inet_frag_queue *fq = ptr;
862
863 return !!memcmp(&fq->key, key, sizeof(*key));
864}
865
866static const struct rhashtable_params ip4_rhash_params = {
867 .head_offset = offsetof(struct inet_frag_queue, node),
868 .key_offset = offsetof(struct inet_frag_queue, key),
869 .key_len = sizeof(struct frag_v4_compare_key),
870 .hashfn = ip4_key_hashfn,
871 .obj_hashfn = ip4_obj_hashfn,
872 .obj_cmpfn = ip4_obj_cmpfn,
873 .automatic_shrinking = true,
874};
875
Eric Dumazetb7aa0bf2007-04-19 16:16:32 -0700876void __init ipfrag_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Pavel Emelyanovc6fda282007-10-17 19:46:47 -0700878 ip4_frags.constructor = ip4_frag_init;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700879 ip4_frags.destructor = ip4_frag_free;
Pavel Emelyanov1e4b8282007-10-15 02:39:14 -0700880 ip4_frags.qsize = sizeof(struct ipq);
Pavel Emelyanove521db92007-10-17 19:45:23 -0700881 ip4_frags.frag_expire = ip_expire;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200882 ip4_frags.frags_cache_name = ip_frag_cache_name;
Eric Dumazet23ce9c52018-10-10 12:29:56 -0700883 ip4_frags.rhash_params = ip4_rhash_params;
Nikolay Aleksandrovd4ad4d22014-08-01 12:29:48 +0200884 if (inet_frags_init(&ip4_frags))
885 panic("IP: failed to allocate ip4_frags cache\n");
Eric Dumazetbbf6d862018-10-10 12:29:51 -0700886 ip4_frags_ctl_register();
887 register_pernet_subsys(&ip4_frags_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}