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