Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[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>
385add90 51#include <net/l3mdev.h>
1da177e4
LT
52
53/* NOTE. Logic of IP defragmentation is parallel to corresponding IPv6
54 * code now. If you change something here, _PLEASE_ update ipv6/reassembly.c
55 * as well. Or notify me, at least. --ANK
56 */
57
8d8354d2 58static int sysctl_ipfrag_max_dist __read_mostly = 64;
d4ad4d22 59static const char ip_frag_cache_name[] = "ip4-frags";
89cee8b1 60
1da177e4
LT
61struct ipfrag_skb_cb
62{
63 struct inet_skb_parm h;
64 int offset;
65};
66
fd3f8c4c 67#define FRAG_CB(skb) ((struct ipfrag_skb_cb *)((skb)->cb))
1da177e4
LT
68
69/* Describe an entry in the "incomplete datagrams" queue. */
70struct ipq {
5ab11c98
PE
71 struct inet_frag_queue q;
72
1da177e4 73 u32 user;
18277770
AV
74 __be32 saddr;
75 __be32 daddr;
76 __be16 id;
1da177e4 77 u8 protocol;
6623e3b2 78 u8 ecn; /* RFC3168 support */
d6b915e2 79 u16 max_df_size; /* largest frag with DF set seen */
89cee8b1 80 int iif;
385add90 81 int vif; /* L3 master device index */
89cee8b1
HX
82 unsigned int rid;
83 struct inet_peer *peer;
1da177e4
LT
84};
85
aa1f731e 86static u8 ip4_frag_ecn(u8 tos)
6623e3b2 87{
5173cc05 88 return 1 << (tos & INET_ECN_MASK);
6623e3b2
ED
89}
90
7eb95156 91static struct inet_frags ip4_frags;
1da177e4 92
6ddc0822 93int ip_frag_mem(struct net *net)
7eb95156 94{
d433673e 95 return sum_frag_mem_limit(&net->ipv4.frags);
7eb95156 96}
1da177e4 97
1706d587
HX
98static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
99 struct net_device *dev);
100
c6fda282
PE
101struct ip4_create_arg {
102 struct iphdr *iph;
103 u32 user;
9972f134 104 int vif;
c6fda282
PE
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,
fb3cfe6e 112 ip4_frags.rnd);
1da177e4
LT
113}
114
36c77782 115static unsigned int ip4_hashfn(const struct inet_frag_queue *q)
1da177e4 116{
36c77782 117 const 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
36c77782 123static bool ip4_frag_match(const struct inet_frag_queue *q, const void *a)
abd6523d 124{
36c77782
FW
125 const struct ipq *qp;
126 const struct ip4_create_arg *arg = a;
abd6523d
PE
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 &&
9972f134
DA
133 qp->user == arg->user &&
134 qp->vif == arg->vif;
abd6523d
PE
135}
136
36c77782 137static void ip4_frag_init(struct inet_frag_queue *q, const void *a)
c6fda282
PE
138{
139 struct ipq *qp = container_of(q, struct ipq, q);
54db0cc2
G
140 struct netns_ipv4 *ipv4 = container_of(q->net, struct netns_ipv4,
141 frags);
142 struct net *net = container_of(ipv4, struct net, ipv4);
143
36c77782 144 const struct ip4_create_arg *arg = a;
c6fda282
PE
145
146 qp->protocol = arg->iph->protocol;
147 qp->id = arg->iph->id;
6623e3b2 148 qp->ecn = ip4_frag_ecn(arg->iph->tos);
c6fda282
PE
149 qp->saddr = arg->iph->saddr;
150 qp->daddr = arg->iph->daddr;
9972f134 151 qp->vif = arg->vif;
c6fda282
PE
152 qp->user = arg->user;
153 qp->peer = sysctl_ipfrag_max_dist ?
192132b9
DA
154 inet_getpeer_v4(net->ipv4.peers, arg->iph->saddr, arg->vif, 1) :
155 NULL;
c6fda282
PE
156}
157
aa1f731e 158static void ip4_frag_free(struct inet_frag_queue *q)
1da177e4 159{
1e4b8287
PE
160 struct ipq *qp;
161
162 qp = container_of(q, struct ipq, q);
163 if (qp->peer)
164 inet_putpeer(qp->peer);
1da177e4
LT
165}
166
1da177e4
LT
167
168/* Destruction primitives. */
169
aa1f731e 170static void ipq_put(struct ipq *ipq)
1da177e4 171{
762cc408 172 inet_frag_put(&ipq->q, &ip4_frags);
1da177e4
LT
173}
174
175/* Kill ipq entry. It is not destroyed immediately,
176 * because caller (and someone more) holds reference count.
177 */
178static void ipq_kill(struct ipq *ipq)
179{
277e650d 180 inet_frag_kill(&ipq->q, &ip4_frags);
1da177e4
LT
181}
182
5cf42280
AZ
183static bool frag_expire_skip_icmp(u32 user)
184{
185 return user == IP_DEFRAG_AF_PACKET ||
186 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_IN,
8bc04864
AZ
187 __IP_DEFRAG_CONNTRACK_IN_END) ||
188 ip_defrag_user_in_between(user, IP_DEFRAG_CONNTRACK_BRIDGE_IN,
189 __IP_DEFRAG_CONNTRACK_BRIDGE_IN);
5cf42280
AZ
190}
191
1da177e4
LT
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
06aa8b8a 205 if (qp->q.flags & INET_FRAG_COMPLETE)
1da177e4
LT
206 goto out;
207
208 ipq_kill(qp);
7c73a6fa 209 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
1da177e4 210
caaecdd3 211 if (!inet_frag_evicting(&qp->q)) {
5ab11c98 212 struct sk_buff *head = qp->q.fragments;
64f3b9e2
ED
213 const struct iphdr *iph;
214 int err;
cb84663e 215
2e404f63
NA
216 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMTIMEOUT);
217
218 if (!(qp->q.flags & INET_FRAG_FIRST_IN) || !qp->q.fragments)
219 goto out;
220
69df9d59
ED
221 rcu_read_lock();
222 head->dev = dev_get_by_index_rcu(net, qp->iif);
e9017b55
SW
223 if (!head->dev)
224 goto out_rcu_unlock;
225
97599dc7 226 /* skb has no dst, perform route lookup again */
64f3b9e2 227 iph = ip_hdr(head);
c6cffba4
DM
228 err = ip_route_input_noref(head, iph->daddr, iph->saddr,
229 iph->tos, head->dev);
64f3b9e2
ED
230 if (err)
231 goto out_rcu_unlock;
232
2e404f63 233 /* Only an end host needs to send an ICMP
64f3b9e2 234 * "Fragment Reassembly Timeout" message, per RFC792.
e9017b55 235 */
5cf42280
AZ
236 if (frag_expire_skip_icmp(qp->user) &&
237 (skb_rtable(head)->rt_type != RTN_LOCAL))
64f3b9e2
ED
238 goto out_rcu_unlock;
239
e9017b55
SW
240 /* Send an ICMP "Fragment Reassembly Timeout" message. */
241 icmp_send(head, ICMP_TIME_EXCEEDED, ICMP_EXC_FRAGTIME, 0);
e9017b55 242out_rcu_unlock:
d1c9ae6d
PM
243 rcu_read_unlock();
244 }
1da177e4 245out:
5ab11c98 246 spin_unlock(&qp->q.lock);
4b6cb5d8 247 ipq_put(qp);
1da177e4
LT
248}
249
abd6523d
PE
250/* Find the correct entry in the "incomplete datagrams" queue for
251 * this IP datagram, and create new one, if nothing is found.
252 */
9972f134
DA
253static struct ipq *ip_find(struct net *net, struct iphdr *iph,
254 u32 user, int vif)
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;
9972f134 262 arg.vif = vif;
9a375803 263
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 274/* Is the fragment too far ahead to be part of ipq? */
aa1f731e 275static int ip_frag_too_far(struct ipq *qp)
89cee8b1
HX
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);
0e60d245 320 sub_frag_mem_limit(qp->q.net, sum_truesize);
89cee8b1 321
06aa8b8a 322 qp->q.flags = 0;
5ab11c98
PE
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;
d6b915e2 338 unsigned int fragsize;
1da177e4
LT
339 int flags, offset;
340 int ihl, end;
1706d587 341 int err = -ENOENT;
6623e3b2 342 u8 ecn;
1da177e4 343
06aa8b8a 344 if (qp->q.flags & INET_FRAG_COMPLETE)
1da177e4
LT
345 goto err;
346
89cee8b1 347 if (!(IPCB(skb)->flags & IPSKB_FRAG_COMPLETE) &&
1706d587
HX
348 unlikely(ip_frag_too_far(qp)) &&
349 unlikely(err = ip_frag_reinit(qp))) {
89cee8b1
HX
350 ipq_kill(qp);
351 goto err;
352 }
353
6623e3b2 354 ecn = ip4_frag_ecn(ip_hdr(skb)->tos);
eddc9ec5 355 offset = ntohs(ip_hdr(skb)->frag_off);
1da177e4
LT
356 flags = offset & ~IP_OFFSET;
357 offset &= IP_OFFSET;
358 offset <<= 3; /* offset is in 8-byte chunks */
c9bdd4b5 359 ihl = ip_hdrlen(skb);
1da177e4
LT
360
361 /* Determine the position of this fragment. */
0848f642 362 end = offset + skb->len - skb_network_offset(skb) - ihl;
1706d587 363 err = -EINVAL;
1da177e4
LT
364
365 /* Is this the final fragment? */
366 if ((flags & IP_MF) == 0) {
367 /* If we already have some bits beyond end
42b2aa86 368 * or have different end, the segment is corrupted.
1da177e4 369 */
5ab11c98 370 if (end < qp->q.len ||
06aa8b8a 371 ((qp->q.flags & INET_FRAG_LAST_IN) && end != qp->q.len))
1da177e4 372 goto err;
06aa8b8a 373 qp->q.flags |= INET_FRAG_LAST_IN;
5ab11c98 374 qp->q.len = end;
1da177e4
LT
375 } else {
376 if (end&7) {
377 end &= ~7;
378 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
379 skb->ip_summed = CHECKSUM_NONE;
380 }
5ab11c98 381 if (end > qp->q.len) {
1da177e4 382 /* Some bits beyond end -> corruption. */
06aa8b8a 383 if (qp->q.flags & INET_FRAG_LAST_IN)
1da177e4 384 goto err;
5ab11c98 385 qp->q.len = end;
1da177e4
LT
386 }
387 }
388 if (end == offset)
389 goto err;
390
1706d587 391 err = -ENOMEM;
0848f642 392 if (!pskb_pull(skb, skb_network_offset(skb) + ihl))
1da177e4 393 goto err;
1706d587
HX
394
395 err = pskb_trim_rcsum(skb, end - offset);
396 if (err)
1da177e4
LT
397 goto err;
398
399 /* Find out which fragments are in front and at the back of us
400 * in the chain of fragments so far. We must know where to put
401 * this fragment, right?
402 */
d6bebca9
CG
403 prev = qp->q.fragments_tail;
404 if (!prev || FRAG_CB(prev)->offset < offset) {
405 next = NULL;
406 goto found;
407 }
1da177e4 408 prev = NULL;
5ab11c98 409 for (next = qp->q.fragments; next != NULL; next = next->next) {
1da177e4
LT
410 if (FRAG_CB(next)->offset >= offset)
411 break; /* bingo! */
412 prev = next;
413 }
414
d6bebca9 415found:
1da177e4
LT
416 /* We found where to put this one. Check for overlap with
417 * preceding fragment, and, if needed, align things so that
418 * any overlaps are eliminated.
419 */
420 if (prev) {
421 int i = (FRAG_CB(prev)->offset + prev->len) - offset;
422
423 if (i > 0) {
424 offset += i;
1706d587 425 err = -EINVAL;
1da177e4
LT
426 if (end <= offset)
427 goto err;
1706d587 428 err = -ENOMEM;
1da177e4
LT
429 if (!pskb_pull(skb, i))
430 goto err;
431 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
432 skb->ip_summed = CHECKSUM_NONE;
433 }
434 }
435
1706d587
HX
436 err = -ENOMEM;
437
1da177e4
LT
438 while (next && FRAG_CB(next)->offset < end) {
439 int i = end - FRAG_CB(next)->offset; /* overlap is 'i' bytes */
440
441 if (i < next->len) {
442 /* Eat head of the next overlapped fragment
443 * and leave the loop. The next ones cannot overlap.
444 */
445 if (!pskb_pull(next, i))
446 goto err;
447 FRAG_CB(next)->offset += i;
5ab11c98 448 qp->q.meat -= i;
1da177e4
LT
449 if (next->ip_summed != CHECKSUM_UNNECESSARY)
450 next->ip_summed = CHECKSUM_NONE;
451 break;
452 } else {
453 struct sk_buff *free_it = next;
454
47c6bf77 455 /* Old fragment is completely overridden with
1da177e4
LT
456 * new one drop it.
457 */
458 next = next->next;
459
460 if (prev)
461 prev->next = next;
462 else
5ab11c98 463 qp->q.fragments = next;
1da177e4 464
5ab11c98 465 qp->q.meat -= free_it->len;
0e60d245 466 sub_frag_mem_limit(qp->q.net, free_it->truesize);
d433673e 467 kfree_skb(free_it);
1da177e4
LT
468 }
469 }
470
471 FRAG_CB(skb)->offset = offset;
472
473 /* Insert this fragment in the chain of fragments. */
474 skb->next = next;
d6bebca9
CG
475 if (!next)
476 qp->q.fragments_tail = skb;
1da177e4
LT
477 if (prev)
478 prev->next = skb;
479 else
5ab11c98 480 qp->q.fragments = skb;
1da177e4 481
1706d587
HX
482 dev = skb->dev;
483 if (dev) {
484 qp->iif = dev->ifindex;
485 skb->dev = NULL;
486 }
5ab11c98
PE
487 qp->q.stamp = skb->tstamp;
488 qp->q.meat += skb->len;
6623e3b2 489 qp->ecn |= ecn;
0e60d245 490 add_frag_mem_limit(qp->q.net, skb->truesize);
1da177e4 491 if (offset == 0)
06aa8b8a 492 qp->q.flags |= INET_FRAG_FIRST_IN;
1da177e4 493
d6b915e2
FW
494 fragsize = skb->len + ihl;
495
496 if (fragsize > qp->q.max_size)
497 qp->q.max_size = fragsize;
498
5f2d04f1 499 if (ip_hdr(skb)->frag_off & htons(IP_DF) &&
d6b915e2
FW
500 fragsize > qp->max_df_size)
501 qp->max_df_size = fragsize;
5f2d04f1 502
06aa8b8a 503 if (qp->q.flags == (INET_FRAG_FIRST_IN | INET_FRAG_LAST_IN) &&
97599dc7
ED
504 qp->q.meat == qp->q.len) {
505 unsigned long orefdst = skb->_skb_refdst;
1706d587 506
97599dc7
ED
507 skb->_skb_refdst = 0UL;
508 err = ip_frag_reasm(qp, prev, dev);
509 skb->_skb_refdst = orefdst;
510 return err;
511 }
512
513 skb_dst_drop(skb);
1706d587 514 return -EINPROGRESS;
1da177e4
LT
515
516err:
517 kfree_skb(skb);
1706d587 518 return err;
1da177e4
LT
519}
520
521
522/* Build a new IP datagram from all its fragments. */
523
1706d587
HX
524static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,
525 struct net_device *dev)
1da177e4 526{
2bad35b7 527 struct net *net = container_of(qp->q.net, struct net, ipv4.frags);
1da177e4 528 struct iphdr *iph;
5ab11c98 529 struct sk_buff *fp, *head = qp->q.fragments;
1da177e4
LT
530 int len;
531 int ihlen;
1706d587 532 int err;
5173cc05 533 u8 ecn;
1da177e4
LT
534
535 ipq_kill(qp);
536
be991971 537 ecn = ip_frag_ecn_table[qp->ecn];
5173cc05
ED
538 if (unlikely(ecn == 0xff)) {
539 err = -EINVAL;
540 goto out_fail;
541 }
1706d587
HX
542 /* Make the one we just received the head. */
543 if (prev) {
544 head = prev->next;
545 fp = skb_clone(head, GFP_ATOMIC);
1706d587
HX
546 if (!fp)
547 goto out_nomem;
548
549 fp->next = head->next;
d6bebca9
CG
550 if (!fp->next)
551 qp->q.fragments_tail = fp;
1706d587
HX
552 prev->next = fp;
553
5ab11c98
PE
554 skb_morph(head, qp->q.fragments);
555 head->next = qp->q.fragments->next;
1706d587 556
cbf8f7bb 557 consume_skb(qp->q.fragments);
5ab11c98 558 qp->q.fragments = head;
1706d587
HX
559 }
560
51456b29 561 WARN_ON(!head);
547b792c 562 WARN_ON(FRAG_CB(head)->offset != 0);
1da177e4
LT
563
564 /* Allocate a new buffer for the datagram. */
c9bdd4b5 565 ihlen = ip_hdrlen(head);
5ab11c98 566 len = ihlen + qp->q.len;
1da177e4 567
1706d587 568 err = -E2BIG;
132adf54 569 if (len > 65535)
1da177e4
LT
570 goto out_oversize;
571
572 /* Head of list must not be cloned. */
14bbd6a5 573 if (skb_unclone(head, GFP_ATOMIC))
1da177e4
LT
574 goto out_nomem;
575
576 /* If the first fragment is fragmented itself, we split
577 * it to two chunks: the first with data and paged part
578 * and the second, holding only fragments. */
21dc3301 579 if (skb_has_frag_list(head)) {
1da177e4
LT
580 struct sk_buff *clone;
581 int i, plen = 0;
582
51456b29
IM
583 clone = alloc_skb(0, GFP_ATOMIC);
584 if (!clone)
1da177e4
LT
585 goto out_nomem;
586 clone->next = head->next;
587 head->next = clone;
588 skb_shinfo(clone)->frag_list = skb_shinfo(head)->frag_list;
d7fcf1a5 589 skb_frag_list_init(head);
9e903e08
ED
590 for (i = 0; i < skb_shinfo(head)->nr_frags; i++)
591 plen += skb_frag_size(&skb_shinfo(head)->frags[i]);
1da177e4
LT
592 clone->len = clone->data_len = head->data_len - plen;
593 head->data_len -= clone->len;
594 head->len -= clone->len;
595 clone->csum = 0;
596 clone->ip_summed = head->ip_summed;
0e60d245 597 add_frag_mem_limit(qp->q.net, clone->truesize);
1da177e4
LT
598 }
599
14fe22e3 600 skb_shinfo(head)->frag_list = head->next;
d56f90a7 601 skb_push(head, head->data - skb_network_header(head));
1da177e4 602
14fe22e3
FW
603 for (fp=head->next; fp; fp = fp->next) {
604 head->data_len += fp->len;
605 head->len += fp->len;
1da177e4
LT
606 if (head->ip_summed != fp->ip_summed)
607 head->ip_summed = CHECKSUM_NONE;
84fa7933 608 else if (head->ip_summed == CHECKSUM_COMPLETE)
1da177e4 609 head->csum = csum_add(head->csum, fp->csum);
14fe22e3 610 head->truesize += fp->truesize;
1da177e4 611 }
5510b3c2 612 sub_frag_mem_limit(qp->q.net, head->truesize);
1da177e4
LT
613
614 head->next = NULL;
615 head->dev = dev;
5ab11c98 616 head->tstamp = qp->q.stamp;
d6b915e2 617 IPCB(head)->frag_max_size = max(qp->max_df_size, qp->q.max_size);
1da177e4 618
eddc9ec5 619 iph = ip_hdr(head);
1da177e4 620 iph->tot_len = htons(len);
5173cc05 621 iph->tos |= ecn;
d6b915e2
FW
622
623 /* When we set IP_DF on a refragmented skb we must also force a
624 * call to ip_fragment to avoid forwarding a DF-skb of size s while
625 * original sender only sent fragments of size f (where f < s).
626 *
627 * We only set DF/IPSKB_FRAG_PMTU if such DF fragment was the largest
628 * frag seen to avoid sending tiny DF-fragments in case skb was built
629 * from one very small df-fragment and one large non-df frag.
630 */
631 if (qp->max_df_size == qp->q.max_size) {
632 IPCB(head)->flags |= IPSKB_FRAG_PMTU;
633 iph->frag_off = htons(IP_DF);
634 } else {
635 iph->frag_off = 0;
636 }
637
0848f642
EHJ
638 ip_send_check(iph);
639
2bad35b7 640 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMOKS);
5ab11c98 641 qp->q.fragments = NULL;
d6bebca9 642 qp->q.fragments_tail = NULL;
1706d587 643 return 0;
1da177e4
LT
644
645out_nomem:
ba7a46f1 646 net_dbg_ratelimited("queue_glue: no memory for gluing queue %p\n", qp);
45542479 647 err = -ENOMEM;
1da177e4
LT
648 goto out_fail;
649out_oversize:
e87cc472 650 net_info_ratelimited("Oversized IP packet from %pI4\n", &qp->saddr);
1da177e4 651out_fail:
bbf31bf1 652 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
1706d587 653 return err;
1da177e4
LT
654}
655
656/* Process an incoming IP datagram fragment. */
19bcf9f2 657int ip_defrag(struct net *net, struct sk_buff *skb, u32 user)
1da177e4 658{
9972f134 659 struct net_device *dev = skb->dev ? : skb_dst(skb)->dev;
385add90 660 int vif = l3mdev_master_ifindex_rcu(dev);
1da177e4 661 struct ipq *qp;
e905a9ed 662
7c73a6fa 663 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMREQDS);
8282f274 664 skb_orphan(skb);
1da177e4 665
1da177e4 666 /* Lookup (or create) queue header */
9972f134 667 qp = ip_find(net, ip_hdr(skb), user, vif);
00db4124 668 if (qp) {
1706d587 669 int ret;
1da177e4 670
5ab11c98 671 spin_lock(&qp->q.lock);
1da177e4 672
1706d587 673 ret = ip_frag_queue(qp, skb);
1da177e4 674
5ab11c98 675 spin_unlock(&qp->q.lock);
4b6cb5d8 676 ipq_put(qp);
776c729e 677 return ret;
1da177e4
LT
678 }
679
7c73a6fa 680 IP_INC_STATS_BH(net, IPSTATS_MIB_REASMFAILS);
1da177e4 681 kfree_skb(skb);
776c729e 682 return -ENOMEM;
1da177e4 683}
4bc2f18b 684EXPORT_SYMBOL(ip_defrag);
1da177e4 685
19bcf9f2 686struct sk_buff *ip_check_defrag(struct net *net, struct sk_buff *skb, u32 user)
bc416d97 687{
1bf3751e 688 struct iphdr iph;
3e32e733 689 int netoff;
bc416d97
ED
690 u32 len;
691
692 if (skb->protocol != htons(ETH_P_IP))
693 return skb;
694
3e32e733
AD
695 netoff = skb_network_offset(skb);
696
697 if (skb_copy_bits(skb, netoff, &iph, sizeof(iph)) < 0)
bc416d97
ED
698 return skb;
699
1bf3751e 700 if (iph.ihl < 5 || iph.version != 4)
bc416d97 701 return skb;
1bf3751e
JB
702
703 len = ntohs(iph.tot_len);
3e32e733 704 if (skb->len < netoff + len || len < (iph.ihl * 4))
bc416d97
ED
705 return skb;
706
1bf3751e 707 if (ip_is_fragment(&iph)) {
bc416d97
ED
708 skb = skb_share_check(skb, GFP_ATOMIC);
709 if (skb) {
3e32e733 710 if (!pskb_may_pull(skb, netoff + iph.ihl * 4))
1bf3751e 711 return skb;
3e32e733 712 if (pskb_trim_rcsum(skb, netoff + len))
bc416d97
ED
713 return skb;
714 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
19bcf9f2 715 if (ip_defrag(net, skb, user))
bc416d97 716 return NULL;
7539fadc 717 skb_clear_hash(skb);
bc416d97
ED
718 }
719 }
720 return skb;
721}
722EXPORT_SYMBOL(ip_check_defrag);
723
8d8354d2
PE
724#ifdef CONFIG_SYSCTL
725static int zero;
726
0a64b4b8 727static struct ctl_table ip4_frags_ns_ctl_table[] = {
8d8354d2 728 {
8d8354d2 729 .procname = "ipfrag_high_thresh",
e31e0bdc 730 .data = &init_net.ipv4.frags.high_thresh,
8d8354d2
PE
731 .maxlen = sizeof(int),
732 .mode = 0644,
1bab4c75
NA
733 .proc_handler = proc_dointvec_minmax,
734 .extra1 = &init_net.ipv4.frags.low_thresh
8d8354d2
PE
735 },
736 {
8d8354d2 737 .procname = "ipfrag_low_thresh",
e31e0bdc 738 .data = &init_net.ipv4.frags.low_thresh,
8d8354d2
PE
739 .maxlen = sizeof(int),
740 .mode = 0644,
1bab4c75
NA
741 .proc_handler = proc_dointvec_minmax,
742 .extra1 = &zero,
743 .extra2 = &init_net.ipv4.frags.high_thresh
8d8354d2
PE
744 },
745 {
8d8354d2 746 .procname = "ipfrag_time",
b2fd5321 747 .data = &init_net.ipv4.frags.timeout,
8d8354d2
PE
748 .maxlen = sizeof(int),
749 .mode = 0644,
6d9f239a 750 .proc_handler = proc_dointvec_jiffies,
8d8354d2 751 },
7d291ebb
PE
752 { }
753};
754
e3a57d18
FW
755/* secret interval has been deprecated */
756static int ip4_frags_secret_interval_unused;
7d291ebb 757static struct ctl_table ip4_frags_ctl_table[] = {
8d8354d2 758 {
8d8354d2 759 .procname = "ipfrag_secret_interval",
e3a57d18 760 .data = &ip4_frags_secret_interval_unused,
8d8354d2
PE
761 .maxlen = sizeof(int),
762 .mode = 0644,
6d9f239a 763 .proc_handler = proc_dointvec_jiffies,
8d8354d2
PE
764 },
765 {
766 .procname = "ipfrag_max_dist",
767 .data = &sysctl_ipfrag_max_dist,
768 .maxlen = sizeof(int),
769 .mode = 0644,
6d9f239a 770 .proc_handler = proc_dointvec_minmax,
8d8354d2
PE
771 .extra1 = &zero
772 },
773 { }
774};
775
2c8c1e72 776static int __net_init ip4_frags_ns_ctl_register(struct net *net)
8d8354d2 777{
e4a2d5c2 778 struct ctl_table *table;
8d8354d2
PE
779 struct ctl_table_header *hdr;
780
0a64b4b8 781 table = ip4_frags_ns_ctl_table;
09ad9bc7 782 if (!net_eq(net, &init_net)) {
0a64b4b8 783 table = kmemdup(table, sizeof(ip4_frags_ns_ctl_table), GFP_KERNEL);
51456b29 784 if (!table)
e4a2d5c2
PE
785 goto err_alloc;
786
e31e0bdc 787 table[0].data = &net->ipv4.frags.high_thresh;
1bab4c75
NA
788 table[0].extra1 = &net->ipv4.frags.low_thresh;
789 table[0].extra2 = &init_net.ipv4.frags.high_thresh;
e31e0bdc 790 table[1].data = &net->ipv4.frags.low_thresh;
1bab4c75 791 table[1].extra2 = &net->ipv4.frags.high_thresh;
b2fd5321 792 table[2].data = &net->ipv4.frags.timeout;
464dc801
EB
793
794 /* Don't export sysctls to unprivileged users */
795 if (net->user_ns != &init_user_ns)
796 table[0].procname = NULL;
e4a2d5c2
PE
797 }
798
ec8f23ce 799 hdr = register_net_sysctl(net, "net/ipv4", table);
51456b29 800 if (!hdr)
e4a2d5c2
PE
801 goto err_reg;
802
803 net->ipv4.frags_hdr = hdr;
804 return 0;
805
806err_reg:
09ad9bc7 807 if (!net_eq(net, &init_net))
e4a2d5c2
PE
808 kfree(table);
809err_alloc:
810 return -ENOMEM;
811}
812
2c8c1e72 813static void __net_exit ip4_frags_ns_ctl_unregister(struct net *net)
e4a2d5c2
PE
814{
815 struct ctl_table *table;
816
817 table = net->ipv4.frags_hdr->ctl_table_arg;
818 unregister_net_sysctl_table(net->ipv4.frags_hdr);
819 kfree(table);
8d8354d2 820}
7d291ebb 821
57a02c39 822static void __init ip4_frags_ctl_register(void)
7d291ebb 823{
43444757 824 register_net_sysctl(&init_net, "net/ipv4", ip4_frags_ctl_table);
7d291ebb 825}
8d8354d2 826#else
aa1f731e 827static int ip4_frags_ns_ctl_register(struct net *net)
8d8354d2
PE
828{
829 return 0;
830}
e4a2d5c2 831
aa1f731e 832static void ip4_frags_ns_ctl_unregister(struct net *net)
e4a2d5c2
PE
833{
834}
7d291ebb 835
aa1f731e 836static void __init ip4_frags_ctl_register(void)
7d291ebb
PE
837{
838}
8d8354d2
PE
839#endif
840
2c8c1e72 841static int __net_init ipv4_frags_init_net(struct net *net)
8d8354d2 842{
1d6119ba
ED
843 int res;
844
c2a93660
JDB
845 /* Fragment cache limits.
846 *
847 * The fragment memory accounting code, (tries to) account for
848 * the real memory usage, by measuring both the size of frag
849 * queue struct (inet_frag_queue (ipv4:ipq/ipv6:frag_queue))
850 * and the SKB's truesize.
851 *
852 * A 64K fragment consumes 129736 bytes (44*2944)+200
853 * (1500 truesize == 2944, sizeof(struct ipq) == 200)
854 *
855 * We will commit 4MB at one time. Should we cross that limit
856 * we will prune down to 3MB, making room for approx 8 big 64K
857 * fragments 8x128k.
e31e0bdc 858 */
c2a93660
JDB
859 net->ipv4.frags.high_thresh = 4 * 1024 * 1024;
860 net->ipv4.frags.low_thresh = 3 * 1024 * 1024;
b2fd5321
PE
861 /*
862 * Important NOTE! Fragment queue must be destroyed before MSL expires.
863 * RFC791 is wrong proposing to prolongate timer each fragment arrival
864 * by TTL.
865 */
866 net->ipv4.frags.timeout = IP_FRAG_TIME;
867
1d6119ba
ED
868 res = inet_frags_init_net(&net->ipv4.frags);
869 if (res)
870 return res;
871 res = ip4_frags_ns_ctl_register(net);
872 if (res)
873 inet_frags_uninit_net(&net->ipv4.frags);
874 return res;
8d8354d2
PE
875}
876
2c8c1e72 877static void __net_exit ipv4_frags_exit_net(struct net *net)
81566e83 878{
0a64b4b8 879 ip4_frags_ns_ctl_unregister(net);
81566e83
PE
880 inet_frags_exit_net(&net->ipv4.frags, &ip4_frags);
881}
882
883static struct pernet_operations ip4_frags_ops = {
884 .init = ipv4_frags_init_net,
885 .exit = ipv4_frags_exit_net,
886};
887
b7aa0bf7 888void __init ipfrag_init(void)
1da177e4 889{
7d291ebb 890 ip4_frags_ctl_register();
81566e83 891 register_pernet_subsys(&ip4_frags_ops);
321a3a99 892 ip4_frags.hashfn = ip4_hashfn;
c6fda282 893 ip4_frags.constructor = ip4_frag_init;
1e4b8287 894 ip4_frags.destructor = ip4_frag_free;
1e4b8287 895 ip4_frags.qsize = sizeof(struct ipq);
abd6523d 896 ip4_frags.match = ip4_frag_match;
e521db9d 897 ip4_frags.frag_expire = ip_expire;
d4ad4d22
NA
898 ip4_frags.frags_cache_name = ip_frag_cache_name;
899 if (inet_frags_init(&ip4_frags))
900 panic("IP: failed to allocate ip4_frags cache\n");
1da177e4 901}