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