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