]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/ipv4/ip_fragment.c
ipv4: introduce frag_expire_skip_icmp()
[mirror_ubuntu-artful-kernel.git] / net / ipv4 / ip_fragment.c
CommitLineData
1da177e4
LT
1/*
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.
e905a9ed 7 *
1da177e4 8 * Authors: Fred N. van Kempen <waltje@uWalt.NL.Mugnet.ORG>
113aa838 9 * Alan Cox <alan@lxorguk.ukuu.org.uk>
1da177e4
LT
10 *
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
afd46503
JP
23#define pr_fmt(fmt) "IPv4: " fmt
24
89cee8b1 25#include <linux/compiler.h>
1da177e4
LT
26#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>
5a0e3ad6 37#include <linux/slab.h>
e9017b55
SW
38#include <net/route.h>
39#include <net/dst.h>
1da177e4
LT
40#include <net/sock.h>
41#include <net/ip.h>
42#include <net/icmp.h>
43#include <net/checksum.h>
89cee8b1 44#include <net/inetpeer.h>
5ab11c98 45#include <net/inet_frag.h>
1da177e4
LT
46#include <linux/tcp.h>
47#include <linux/udp.h>
48#include <linux/inet.h>
49#include <linux/netfilter_ipv4.h>
6623e3b2 50#include <net/inet_ecn.h>
1da177e4
LT
51
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
8d8354d2 57static int sysctl_ipfrag_max_dist __read_mostly = 64;
d4ad4d22 58static const char ip_frag_cache_name[] = "ip4-frags";
89cee8b1 59
1da177e4
LT
60struct ipfrag_skb_cb
61{
62 struct inet_skb_parm h;
63 int offset;
64};
65
fd3f8c4c 66#define FRAG_CB(skb) ((struct ipfrag_skb_cb *)((skb)->cb))
1da177e4
LT
67
68/* Describe an entry in the "incomplete datagrams" queue. */
69struct ipq {
5ab11c98
PE
70 struct inet_frag_queue q;
71
1da177e4 72 u32 user;
18277770
AV
73 __be32 saddr;
74 __be32 daddr;
75 __be16 id;
1da177e4 76 u8 protocol;
6623e3b2 77 u8 ecn; /* RFC3168 support */
89cee8b1
HX
78 int iif;
79 unsigned int rid;
80 struct inet_peer *peer;
1da177e4
LT
81};
82
aa1f731e 83static u8 ip4_frag_ecn(u8 tos)
6623e3b2 84{
5173cc05 85 return 1 << (tos & INET_ECN_MASK);
6623e3b2
ED
86}
87
7eb95156 88static struct inet_frags ip4_frags;
1da177e4 89
6ddc0822 90int ip_frag_mem(struct net *net)
7eb95156 91{
d433673e 92 return sum_frag_mem_limit(&net->ipv4.frags);
7eb95156 93}
1da177e4 94
1706d587
HX
95static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
96 struct net_device *dev);
97
c6fda282
PE
98struct ip4_create_arg {
99 struct iphdr *iph;
100 u32 user;
101};
102
18277770 103static unsigned int ipqhashfn(__be16 id, __be32 saddr, __be32 daddr, u8 prot)
1da177e4 104{
e7b519ba 105 net_get_random_once(&ip4_frags.rnd, sizeof(ip4_frags.rnd));
18277770
AV
106 return jhash_3words((__force u32)id << 16 | prot,
107 (__force u32)saddr, (__force u32)daddr,
fb3cfe6e 108 ip4_frags.rnd);
1da177e4
LT
109}
110
36c77782 111static unsigned int ip4_hashfn(const struct inet_frag_queue *q)
1da177e4 112{
36c77782 113 const struct ipq *ipq;
1da177e4 114
321a3a99
PE
115 ipq = container_of(q, struct ipq, q);
116 return ipqhashfn(ipq->id, ipq->saddr, ipq->daddr, ipq->protocol);
1da177e4
LT
117}
118
36c77782 119static bool ip4_frag_match(const struct inet_frag_queue *q, const void *a)
abd6523d 120{
36c77782
FW
121 const struct ipq *qp;
122 const struct ip4_create_arg *arg = a;
abd6523d
PE
123
124 qp = container_of(q, struct ipq, q);
a02cec21 125 return qp->id == arg->iph->id &&
cbc264ca
ED
126 qp->saddr == arg->iph->saddr &&
127 qp->daddr == arg->iph->daddr &&
128 qp->protocol == arg->iph->protocol &&
129 qp->user == arg->user;
abd6523d
PE
130}
131
36c77782 132static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
c6fda282
PE
133{
134 struct ipq *qp = container_of(q, struct ipq, q);
54db0cc2
G
135 struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4,
136 frags);
137 struct net *net = container_of(ipv4, struct net, ipv4);
138
36c77782 139 const struct ip4_create_arg *arg = a;
c6fda282
PE
140
141 qp->protocol = arg->iph->protocol;
142 qp->id = arg->iph->id;
6623e3b2 143 qp->ecn = ip4_frag_ecn(arg->iph->tos);
c6fda282
PE
144 qp->saddr = arg->iph->saddr;
145 qp->daddr = arg->iph->daddr;
146 qp->user = arg->user;
147 qp->peer = sysctl_ipfrag_max_dist ?
c0efc887 148 inet_getpeer_v4(net->ipv4.peers, arg->iph->saddr, 1) : NULL;
c6fda282
PE
149}
150
aa1f731e 151static void ip4_frag_free(struct inet_frag_queue *q)
1da177e4 152{
1e4b8287
PE
153 struct ipq *qp;
154
155 qp = container_of(q, struct ipq, q);
156 if (qp->peer)
157 inet_putpeer(qp->peer);
1da177e4
LT
158}
159
1da177e4
LT
160
161/* Destruction primitives. */
162
aa1f731e 163static void ipq_put(struct ipq *ipq)
1da177e4 164{
762cc408 165 inet_frag_put(&ipq->q, &ip4_frags);
1da177e4
LT
166}
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{
277e650d 173 inet_frag_kill(&ipq->q, &ip4_frags);
1da177e4
LT
174}
175
5cf42280
AZ
176static 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,
180 __IP_DEFRAG_CONNTRACK_IN_END);
181}
182
1da177e4
LT
183/*
184 * Oops, a fragment queue timed out. Kill it and send an ICMP reply.
185 */
186static void ip_expire(unsigned long arg)
187{
e521db9d 188 struct ipq *qp;
84a3aa00 189 struct net *net;
e521db9d
PE
190
191 qp = container_of((struct inet_frag_queue *) arg, struct ipq, q);
84a3aa00 192 net = container_of(qp->q.net, struct net, ipv4.frags);
1da177e4 193
5ab11c98 194 spin_lock(&qp->q.lock);
1da177e4 195
06aa8b8a 196 if (qp->q.flags & INET_FRAG_COMPLETE)
1da177e4
LT
197 goto out;
198
199 ipq_kill(qp);
7c73a6fa 200 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
1da177e4 201
2e404f63 202 if (!(qp->q.flags & INET_FRAG_EVICTED)) {
5ab11c98 203 struct sk_buff *head = qp->q.fragments;
64f3b9e2
ED
204 const struct iphdr *iph;
205 int err;
cb84663e 206
2e404f63
NA
207 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMTIMEOUT);
208
209 if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !qp->q.fragments)
210 goto out;
211
69df9d59
ED
212 rcu_read_lock();
213 head->dev = dev_get_by_index_rcu(net, qp->iif);
e9017b55
SW
214 if (!head->dev)
215 goto out_rcu_unlock;
216
97599dc7 217 /* skb has no dst, perform route lookup again */
64f3b9e2 218 iph = ip_hdr(head);
c6cffba4
DM
219 err = ip_route_input_noref(head, iph->daddr, iph->saddr,
220 iph->tos, head->dev);
64f3b9e2
ED
221 if (err)
222 goto out_rcu_unlock;
223
2e404f63 224 /* Only an end host needs to send an ICMP
64f3b9e2 225 * "Fragment Reassembly Timeout" message, per RFC792.
e9017b55 226 */
5cf42280
AZ
227 if (frag_expire_skip_icmp(qp->user) &&
228 (skb_rtable(head)->rt_type != RTN_LOCAL))
64f3b9e2
ED
229 goto out_rcu_unlock;
230
e9017b55
SW
231 /* Send an ICMP "Fragment Reassembly Timeout" message. */
232 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
e9017b55 233out_rcu_unlock:
d1c9ae6d
PM
234 rcu_read_unlock();
235 }
1da177e4 236out:
5ab11c98 237 spin_unlock(&qp->q.lock);
4b6cb5d8 238 ipq_put(qp);
1da177e4
LT
239}
240
abd6523d
PE
241/* Find the correct entry in the "incomplete datagrams" queue for
242 * this IP datagram, and create new one, if nothing is found.
243 */
aa1f731e 244static struct ipq *ip_find(struct net *net, struct iphdr *iph, u32 user)
1da177e4 245{
c6fda282
PE
246 struct inet_frag_queue *q;
247 struct ip4_create_arg arg;
abd6523d 248 unsigned int hash;
1da177e4 249
c6fda282
PE
250 arg.iph = iph;
251 arg.user = user;
9a375803 252
abd6523d 253 hash = ipqhashfn(iph->id, iph->saddr, iph->daddr, iph->protocol);
1da177e4 254
ac18e750 255 q = inet_frag_find(&net->ipv4.frags, &ip4_frags, &arg, hash);
5a3da1fe
HFS
256 if (IS_ERR_OR_NULL(q)) {
257 inet_frag_maybe_warn_overflow(q, pr_fmt());
258 return NULL;
259 }
c6fda282 260 return container_of(q, struct ipq, q);
1da177e4
LT
261}
262
89cee8b1 263/* Is the fragment too far ahead to be part of ipq? */
aa1f731e 264static int ip_frag_too_far(struct ipq *qp)
89cee8b1
HX
265{
266 struct inet_peer *peer = qp->peer;
267 unsigned int max = sysctl_ipfrag_max_dist;
268 unsigned int start, end;
269
270 int rc;
271
272 if (!peer || !max)
273 return 0;
274
275 start = qp->rid;
276 end = atomic_inc_return(&peer->rid);
277 qp->rid = end;
278
5ab11c98 279 rc = qp->q.fragments && (end - start) > max;
89cee8b1
HX
280
281 if (rc) {
7c73a6fa
PE
282 struct net *net;
283
284 net = container_of(qp->q.net, struct net, ipv4.frags);
285 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
89cee8b1
HX
286 }
287
288 return rc;
289}
290
291static int ip_frag_reinit(struct ipq *qp)
292{
293 struct sk_buff *fp;
d433673e 294 unsigned int sum_truesize = 0;
89cee8b1 295
b2fd5321 296 if (!mod_timer(&qp->q.timer, jiffies + qp->q.net->timeout)) {
5ab11c98 297 atomic_inc(&qp->q.refcnt);
89cee8b1
HX
298 return -ETIMEDOUT;
299 }
300
5ab11c98 301 fp = qp->q.fragments;
89cee8b1
HX
302 do {
303 struct sk_buff *xp = fp->next;
d433673e
JDB
304
305 sum_truesize += fp->truesize;
306 kfree_skb(fp);
89cee8b1
HX
307 fp = xp;
308 } while (fp);
d433673e 309 sub_frag_mem_limit(&qp->q, sum_truesize);
89cee8b1 310
06aa8b8a 311 qp->q.flags = 0;
5ab11c98
PE
312 qp->q.len = 0;
313 qp->q.meat = 0;
314 qp->q.fragments = NULL;
d6bebca9 315 qp->q.fragments_tail = NULL;
89cee8b1 316 qp->iif = 0;
6623e3b2 317 qp->ecn = 0;
89cee8b1
HX
318
319 return 0;
320}
321
1da177e4 322/* Add new segment to existing queue. */
1706d587 323static int ip_frag_queue(struct ipq *qp, struct sk_buff *skb)
1da177e4
LT
324{
325 struct sk_buff *prev, *next;
1706d587 326 struct net_device *dev;
1da177e4
LT
327 int flags, offset;
328 int ihl, end;
1706d587 329 int err = -ENOENT;
6623e3b2 330 u8 ecn;
1da177e4 331
06aa8b8a 332 if (qp->q.flags & INET_FRAG_COMPLETE)
1da177e4
LT
333 goto err;
334
89cee8b1 335 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
1706d587
HX
336 unlikely(ip_frag_too_far(qp)) &&
337 unlikely(err = ip_frag_reinit(qp))) {
89cee8b1
HX
338 ipq_kill(qp);
339 goto err;
340 }
341
6623e3b2 342 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
eddc9ec5 343 offset = ntohs(ip_hdr(skb)->frag_off);
1da177e4
LT
344 flags = offset & ~IP_OFFSET;
345 offset &= IP_OFFSET;
346 offset <<= 3; /* offset is in 8-byte chunks */
c9bdd4b5 347 ihl = ip_hdrlen(skb);
1da177e4
LT
348
349 /* Determine the position of this fragment. */
e905a9ed 350 end = offset + skb->len - ihl;
1706d587 351 err = -EINVAL;
1da177e4
LT
352
353 /* Is this the final fragment? */
354 if ((flags & IP_MF) == 0) {
355 /* If we already have some bits beyond end
42b2aa86 356 * or have different end, the segment is corrupted.
1da177e4 357 */
5ab11c98 358 if (end < qp->q.len ||
06aa8b8a 359 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
1da177e4 360 goto err;
06aa8b8a 361 qp->q.flags |= INET_FRAG_LAST_IN;
5ab11c98 362 qp->q.len = end;
1da177e4
LT
363 } else {
364 if (end&7) {
365 end &= ~7;
366 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
367 skb->ip_summed = CHECKSUM_NONE;
368 }
5ab11c98 369 if (end > qp->q.len) {
1da177e4 370 /* Some bits beyond end -> corruption. */
06aa8b8a 371 if (qp->q.flags & INET_FRAG_LAST_IN)
1da177e4 372 goto err;
5ab11c98 373 qp->q.len = end;
1da177e4
LT
374 }
375 }
376 if (end == offset)
377 goto err;
378
1706d587 379 err = -ENOMEM;
51456b29 380 if (!pskb_pull(skb, ihl))
1da177e4 381 goto err;
1706d587
HX
382
383 err = pskb_trim_rcsum(skb, end - offset);
384 if (err)
1da177e4
LT
385 goto err;
386
387 /* Find out which fragments are in front and at the back of us
388 * in the chain of fragments so far. We must know where to put
389 * this fragment, right?
390 */
d6bebca9
CG
391 prev = qp->q.fragments_tail;
392 if (!prev || FRAG_CB(prev)->offset < offset) {
393 next = NULL;
394 goto found;
395 }
1da177e4 396 prev = NULL;
5ab11c98 397 for (next = qp->q.fragments; next != NULL; next = next->next) {
1da177e4
LT
398 if (FRAG_CB(next)->offset >= offset)
399 break; /* bingo! */
400 prev = next;
401 }
402
d6bebca9 403found:
1da177e4
LT
404 /* We found where to put this one. Check for overlap with
405 * preceding fragment, and, if needed, align things so that
406 * any overlaps are eliminated.
407 */
408 if (prev) {
409 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
410
411 if (i > 0) {
412 offset += i;
1706d587 413 err = -EINVAL;
1da177e4
LT
414 if (end <= offset)
415 goto err;
1706d587 416 err = -ENOMEM;
1da177e4
LT
417 if (!pskb_pull(skb, i))
418 goto err;
419 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
420 skb->ip_summed = CHECKSUM_NONE;
421 }
422 }
423
1706d587
HX
424 err = -ENOMEM;
425
1da177e4
LT
426 while (next && FRAG_CB(next)->offset < end) {
427 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
428
429 if (i < next->len) {
430 /* Eat head of the next overlapped fragment
431 * and leave the loop. The next ones cannot overlap.
432 */
433 if (!pskb_pull(next, i))
434 goto err;
435 FRAG_CB(next)->offset += i;
5ab11c98 436 qp->q.meat -= i;
1da177e4
LT
437 if (next->ip_summed != CHECKSUM_UNNECESSARY)
438 next->ip_summed = CHECKSUM_NONE;
439 break;
440 } else {
441 struct sk_buff *free_it = next;
442
47c6bf77 443 /* Old fragment is completely overridden with
1da177e4
LT
444 * new one drop it.
445 */
446 next = next->next;
447
448 if (prev)
449 prev->next = next;
450 else
5ab11c98 451 qp->q.fragments = next;
1da177e4 452
5ab11c98 453 qp->q.meat -= free_it->len;
d433673e
JDB
454 sub_frag_mem_limit(&qp->q, free_it->truesize);
455 kfree_skb(free_it);
1da177e4
LT
456 }
457 }
458
459 FRAG_CB(skb)->offset = offset;
460
461 /* Insert this fragment in the chain of fragments. */
462 skb->next = next;
d6bebca9
CG
463 if (!next)
464 qp->q.fragments_tail = skb;
1da177e4
LT
465 if (prev)
466 prev->next = skb;
467 else
5ab11c98 468 qp->q.fragments = skb;
1da177e4 469
1706d587
HX
470 dev = skb->dev;
471 if (dev) {
472 qp->iif = dev->ifindex;
473 skb->dev = NULL;
474 }
5ab11c98
PE
475 qp->q.stamp = skb->tstamp;
476 qp->q.meat += skb->len;
6623e3b2 477 qp->ecn |= ecn;
d433673e 478 add_frag_mem_limit(&qp->q, skb->truesize);
1da177e4 479 if (offset == 0)
06aa8b8a 480 qp->q.flags |= INET_FRAG_FIRST_IN;
1da177e4 481
5f2d04f1
PM
482 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
483 skb->len + ihl > qp->q.max_size)
484 qp->q.max_size = skb->len + ihl;
485
06aa8b8a 486 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
97599dc7
ED
487 qp->q.meat == qp->q.len) {
488 unsigned long orefdst = skb->_skb_refdst;
1706d587 489
97599dc7
ED
490 skb->_skb_refdst = 0UL;
491 err = ip_frag_reasm(qp, prev, dev);
492 skb->_skb_refdst = orefdst;
493 return err;
494 }
495
496 skb_dst_drop(skb);
1706d587 497 return -EINPROGRESS;
1da177e4
LT
498
499err:
500 kfree_skb(skb);
1706d587 501 return err;
1da177e4
LT
502}
503
504
505/* Build a new IP datagram from all its fragments. */
506
1706d587
HX
507static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
508 struct net_device *dev)
1da177e4 509{
2bad35b7 510 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
1da177e4 511 struct iphdr *iph;
5ab11c98 512 struct sk_buff *fp, *head = qp->q.fragments;
1da177e4
LT
513 int len;
514 int ihlen;
1706d587 515 int err;
3cc49492 516 int sum_truesize;
5173cc05 517 u8 ecn;
1da177e4
LT
518
519 ipq_kill(qp);
520
be991971 521 ecn = ip_frag_ecn_table[qp->ecn];
5173cc05
ED
522 if (unlikely(ecn == 0xff)) {
523 err = -EINVAL;
524 goto out_fail;
525 }
1706d587
HX
526 /* Make the one we just received the head. */
527 if (prev) {
528 head = prev->next;
529 fp = skb_clone(head, GFP_ATOMIC);
1706d587
HX
530 if (!fp)
531 goto out_nomem;
532
533 fp->next = head->next;
d6bebca9
CG
534 if (!fp->next)
535 qp->q.fragments_tail = fp;
1706d587
HX
536 prev->next = fp;
537
5ab11c98
PE
538 skb_morph(head, qp->q.fragments);
539 head->next = qp->q.fragments->next;
1706d587 540
cbf8f7bb 541 consume_skb(qp->q.fragments);
5ab11c98 542 qp->q.fragments = head;
1706d587
HX
543 }
544
51456b29 545 WARN_ON(!head);
547b792c 546 WARN_ON(FRAG_CB(head)->offset != 0);
1da177e4
LT
547
548 /* Allocate a new buffer for the datagram. */
c9bdd4b5 549 ihlen = ip_hdrlen(head);
5ab11c98 550 len = ihlen + qp->q.len;
1da177e4 551
1706d587 552 err = -E2BIG;
132adf54 553 if (len > 65535)
1da177e4
LT
554 goto out_oversize;
555
556 /* Head of list must not be cloned. */
14bbd6a5 557 if (skb_unclone(head, GFP_ATOMIC))
1da177e4
LT
558 goto out_nomem;
559
560 /* If the first fragment is fragmented itself, we split
561 * it to two chunks: the first with data and paged part
562 * and the second, holding only fragments. */
21dc3301 563 if (skb_has_frag_list(head)) {
1da177e4
LT
564 struct sk_buff *clone;
565 int i, plen = 0;
566
51456b29
IM
567 clone = alloc_skb(0, GFP_ATOMIC);
568 if (!clone)
1da177e4
LT
569 goto out_nomem;
570 clone->next = head->next;
571 head->next = clone;
572 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
d7fcf1a5 573 skb_frag_list_init(head);
9e903e08
ED
574 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
575 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
1da177e4
LT
576 clone->len = clone->data_len = head->data_len - plen;
577 head->data_len -= clone->len;
578 head->len -= clone->len;
579 clone->csum = 0;
580 clone->ip_summed = head->ip_summed;
d433673e 581 add_frag_mem_limit(&qp->q, clone->truesize);
1da177e4
LT
582 }
583
d56f90a7 584 skb_push(head, head->data - skb_network_header(head));
1da177e4 585
3cc49492
ED
586 sum_truesize = head->truesize;
587 for (fp = head->next; fp;) {
588 bool headstolen;
589 int delta;
590 struct sk_buff *next = fp->next;
591
592 sum_truesize += fp->truesize;
1da177e4
LT
593 if (head->ip_summed != fp->ip_summed)
594 head->ip_summed = CHECKSUM_NONE;
84fa7933 595 else if (head->ip_summed == CHECKSUM_COMPLETE)
1da177e4 596 head->csum = csum_add(head->csum, fp->csum);
3cc49492
ED
597
598 if (skb_try_coalesce(head, fp, &headstolen, &delta)) {
599 kfree_skb_partial(fp, headstolen);
600 } else {
601 if (!skb_shinfo(head)->frag_list)
602 skb_shinfo(head)->frag_list = fp;
603 head->data_len += fp->len;
604 head->len += fp->len;
605 head->truesize += fp->truesize;
606 }
607 fp = next;
1da177e4 608 }
d433673e 609 sub_frag_mem_limit(&qp->q, sum_truesize);
1da177e4
LT
610
611 head->next = NULL;
612 head->dev = dev;
5ab11c98 613 head->tstamp = qp->q.stamp;
5f2d04f1 614 IPCB(head)->frag_max_size = qp->q.max_size;
1da177e4 615
eddc9ec5 616 iph = ip_hdr(head);
5f2d04f1
PM
617 /* max_size != 0 implies at least one fragment had IP_DF set */
618 iph->frag_off = qp->q.max_size ? htons(IP_DF) : 0;
1da177e4 619 iph->tot_len = htons(len);
5173cc05 620 iph->tos |= ecn;
2bad35b7 621 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMOKS);
5ab11c98 622 qp->q.fragments = NULL;
d6bebca9 623 qp->q.fragments_tail = NULL;
1706d587 624 return 0;
1da177e4
LT
625
626out_nomem:
ba7a46f1 627 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
45542479 628 err = -ENOMEM;
1da177e4
LT
629 goto out_fail;
630out_oversize:
e87cc472 631 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->saddr);
1da177e4 632out_fail:
bbf31bf1 633 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
1706d587 634 return err;
1da177e4
LT
635}
636
637/* Process an incoming IP datagram fragment. */
776c729e 638int ip_defrag(struct sk_buff *skb, u32 user)
1da177e4 639{
1da177e4 640 struct ipq *qp;
ac18e750 641 struct net *net;
e905a9ed 642
adf30907 643 net = skb->dev ? dev_net(skb->dev) : dev_net(skb_dst(skb)->dev);
7c73a6fa 644 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMREQDS);
1da177e4 645
1da177e4 646 /* Lookup (or create) queue header */
00db4124
IM
647 qp = ip_find(net, ip_hdr(skb), user);
648 if (qp) {
1706d587 649 int ret;
1da177e4 650
5ab11c98 651 spin_lock(&qp->q.lock);
1da177e4 652
1706d587 653 ret = ip_frag_queue(qp, skb);
1da177e4 654
5ab11c98 655 spin_unlock(&qp->q.lock);
4b6cb5d8 656 ipq_put(qp);
776c729e 657 return ret;
1da177e4
LT
658 }
659
7c73a6fa 660 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
1da177e4 661 kfree_skb(skb);
776c729e 662 return -ENOMEM;
1da177e4 663}
4bc2f18b 664EXPORT_SYMBOL(ip_defrag);
1da177e4 665
bc416d97
ED
666struct sk_buff *ip_check_defrag(struct sk_buff *skb, u32 user)
667{
1bf3751e 668 struct iphdr iph;
3e32e733 669 int netoff;
bc416d97
ED
670 u32 len;
671
672 if (skb->protocol != htons(ETH_P_IP))
673 return skb;
674
3e32e733
AD
675 netoff = skb_network_offset(skb);
676
677 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
bc416d97
ED
678 return skb;
679
1bf3751e 680 if (iph.ihl < 5 || iph.version != 4)
bc416d97 681 return skb;
1bf3751e
JB
682
683 len = ntohs(iph.tot_len);
3e32e733 684 if (skb->len < netoff + len || len < (iph.ihl * 4))
bc416d97
ED
685 return skb;
686
1bf3751e 687 if (ip_is_fragment(&iph)) {
bc416d97
ED
688 skb = skb_share_check(skb, GFP_ATOMIC);
689 if (skb) {
3e32e733 690 if (!pskb_may_pull(skb, netoff + iph.ihl * 4))
1bf3751e 691 return skb;
3e32e733 692 if (pskb_trim_rcsum(skb, netoff + len))
bc416d97
ED
693 return skb;
694 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
695 if (ip_defrag(skb, user))
696 return NULL;
7539fadc 697 skb_clear_hash(skb);
bc416d97
ED
698 }
699 }
700 return skb;
701}
702EXPORT_SYMBOL(ip_check_defrag);
703
8d8354d2
PE
704#ifdef CONFIG_SYSCTL
705static int zero;
706
0a64b4b8 707static struct ctl_table ip4_frags_ns_ctl_table[] = {
8d8354d2 708 {
8d8354d2 709 .procname = "ipfrag_high_thresh",
e31e0bdc 710 .data = &init_net.ipv4.frags.high_thresh,
8d8354d2
PE
711 .maxlen = sizeof(int),
712 .mode = 0644,
1bab4c75
NA
713 .proc_handler = proc_dointvec_minmax,
714 .extra1 = &init_net.ipv4.frags.low_thresh
8d8354d2
PE
715 },
716 {
8d8354d2 717 .procname = "ipfrag_low_thresh",
e31e0bdc 718 .data = &init_net.ipv4.frags.low_thresh,
8d8354d2
PE
719 .maxlen = sizeof(int),
720 .mode = 0644,
1bab4c75
NA
721 .proc_handler = proc_dointvec_minmax,
722 .extra1 = &zero,
723 .extra2 = &init_net.ipv4.frags.high_thresh
8d8354d2
PE
724 },
725 {
8d8354d2 726 .procname = "ipfrag_time",
b2fd5321 727 .data = &init_net.ipv4.frags.timeout,
8d8354d2
PE
728 .maxlen = sizeof(int),
729 .mode = 0644,
6d9f239a 730 .proc_handler = proc_dointvec_jiffies,
8d8354d2 731 },
7d291ebb
PE
732 { }
733};
734
e3a57d18
FW
735/* secret interval has been deprecated */
736static int ip4_frags_secret_interval_unused;
7d291ebb 737static struct ctl_table ip4_frags_ctl_table[] = {
8d8354d2 738 {
8d8354d2 739 .procname = "ipfrag_secret_interval",
e3a57d18 740 .data = &ip4_frags_secret_interval_unused,
8d8354d2
PE
741 .maxlen = sizeof(int),
742 .mode = 0644,
6d9f239a 743 .proc_handler = proc_dointvec_jiffies,
8d8354d2
PE
744 },
745 {
746 .procname = "ipfrag_max_dist",
747 .data = &sysctl_ipfrag_max_dist,
748 .maxlen = sizeof(int),
749 .mode = 0644,
6d9f239a 750 .proc_handler = proc_dointvec_minmax,
8d8354d2
PE
751 .extra1 = &zero
752 },
753 { }
754};
755
2c8c1e72 756static int __net_init ip4_frags_ns_ctl_register(struct net *net)
8d8354d2 757{
e4a2d5c2 758 struct ctl_table *table;
8d8354d2
PE
759 struct ctl_table_header *hdr;
760
0a64b4b8 761 table = ip4_frags_ns_ctl_table;
09ad9bc7 762 if (!net_eq(net, &init_net)) {
0a64b4b8 763 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
51456b29 764 if (!table)
e4a2d5c2
PE
765 goto err_alloc;
766
e31e0bdc 767 table[0].data = &net->ipv4.frags.high_thresh;
1bab4c75
NA
768 table[0].extra1 = &net->ipv4.frags.low_thresh;
769 table[0].extra2 = &init_net.ipv4.frags.high_thresh;
e31e0bdc 770 table[1].data = &net->ipv4.frags.low_thresh;
1bab4c75 771 table[1].extra2 = &net->ipv4.frags.high_thresh;
b2fd5321 772 table[2].data = &net->ipv4.frags.timeout;
464dc801
EB
773
774 /* Don't export sysctls to unprivileged users */
775 if (net->user_ns != &init_user_ns)
776 table[0].procname = NULL;
e4a2d5c2
PE
777 }
778
ec8f23ce 779 hdr = register_net_sysctl(net, "net/ipv4", table);
51456b29 780 if (!hdr)
e4a2d5c2
PE
781 goto err_reg;
782
783 net->ipv4.frags_hdr = hdr;
784 return 0;
785
786err_reg:
09ad9bc7 787 if (!net_eq(net, &init_net))
e4a2d5c2
PE
788 kfree(table);
789err_alloc:
790 return -ENOMEM;
791}
792
2c8c1e72 793static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
e4a2d5c2
PE
794{
795 struct ctl_table *table;
796
797 table = net->ipv4.frags_hdr->ctl_table_arg;
798 unregister_net_sysctl_table(net->ipv4.frags_hdr);
799 kfree(table);
8d8354d2 800}
7d291ebb 801
57a02c39 802static void __init ip4_frags_ctl_register(void)
7d291ebb 803{
43444757 804 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
7d291ebb 805}
8d8354d2 806#else
aa1f731e 807static int ip4_frags_ns_ctl_register(struct net *net)
8d8354d2
PE
808{
809 return 0;
810}
e4a2d5c2 811
aa1f731e 812static void ip4_frags_ns_ctl_unregister(struct net *net)
e4a2d5c2
PE
813{
814}
7d291ebb 815
aa1f731e 816static void __init ip4_frags_ctl_register(void)
7d291ebb
PE
817{
818}
8d8354d2
PE
819#endif
820
2c8c1e72 821static int __net_init ipv4_frags_init_net(struct net *net)
8d8354d2 822{
c2a93660
JDB
823 /* Fragment cache limits.
824 *
825 * The fragment memory accounting code, (tries to) account for
826 * the real memory usage, by measuring both the size of frag
827 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
828 * and the SKB's truesize.
829 *
830 * A 64K fragment consumes 129736 bytes (44*2944)+200
831 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
832 *
833 * We will commit 4MB at one time. Should we cross that limit
834 * we will prune down to 3MB, making room for approx 8 big 64K
835 * fragments 8x128k.
e31e0bdc 836 */
c2a93660
JDB
837 net->ipv4.frags.high_thresh = 4 * 1024 * 1024;
838 net->ipv4.frags.low_thresh = 3 * 1024 * 1024;
b2fd5321
PE
839 /*
840 * Important NOTE! Fragment queue must be destroyed before MSL expires.
841 * RFC791 is wrong proposing to prolongate timer each fragment arrival
842 * by TTL.
843 */
844 net->ipv4.frags.timeout = IP_FRAG_TIME;
845
e5a2bb84
PE
846 inet_frags_init_net(&net->ipv4.frags);
847
0a64b4b8 848 return ip4_frags_ns_ctl_register(net);
8d8354d2
PE
849}
850
2c8c1e72 851static void __net_exit ipv4_frags_exit_net(struct net *net)
81566e83 852{
0a64b4b8 853 ip4_frags_ns_ctl_unregister(net);
81566e83
PE
854 inet_frags_exit_net(&net->ipv4.frags, &ip4_frags);
855}
856
857static struct pernet_operations ip4_frags_ops = {
858 .init = ipv4_frags_init_net,
859 .exit = ipv4_frags_exit_net,
860};
861
b7aa0bf7 862void __init ipfrag_init(void)
1da177e4 863{
7d291ebb 864 ip4_frags_ctl_register();
81566e83 865 register_pernet_subsys(&ip4_frags_ops);
321a3a99 866 ip4_frags.hashfn = ip4_hashfn;
c6fda282 867 ip4_frags.constructor = ip4_frag_init;
1e4b8287
PE
868 ip4_frags.destructor = ip4_frag_free;
869 ip4_frags.skb_free = NULL;
870 ip4_frags.qsize = sizeof(struct ipq);
abd6523d 871 ip4_frags.match = ip4_frag_match;
e521db9d 872 ip4_frags.frag_expire = ip_expire;
d4ad4d22
NA
873 ip4_frags.frags_cache_name = ip_frag_cache_name;
874 if (inet_frags_init(&ip4_frags))
875 panic("IP: failed to allocate ip4_frags cache\n");
1da177e4 876}