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