aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorHannes Frederic Sowa <hannes@stressinduktion.org>2015-10-16 05:32:43 -0400
committerDavid S. Miller <davem@davemloft.net>2015-10-23 05:49:36 -0400
commitb72a2b01b686f242028038f630555513c9e4de38 (patch)
tree00351145ca8f839024370cf1909358845357bf3a /net/ipv6
parent79907146fb5b1778035870db895fb2bf64061284 (diff)
ipv6: protect mtu calculation of wrap-around and infinite loop by rounding issues
Raw sockets with hdrincl enabled can insert ipv6 extension headers right into the data stream. In case we need to fragment those packets, we reparse the options header to find the place where we can insert the fragment header. If the extension headers exceed the link's MTU we actually cannot make progress in such a case. Instead of ending up in broken arithmetic or rounding towards 0 and entering an endless loop in ip6_fragment, just prevent those cases by aborting early and signal -EMSGSIZE to user space. Reported-by: Dmitry Vyukov <dvyukov@google.com> Cc: Dmitry Vyukov <dvyukov@google.com> Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/ip6_output.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
index d03d6da772f3..8dddb45c433e 100644
--- a/net/ipv6/ip6_output.c
+++ b/net/ipv6/ip6_output.c
@@ -28,6 +28,7 @@
28 28
29#include <linux/errno.h> 29#include <linux/errno.h>
30#include <linux/kernel.h> 30#include <linux/kernel.h>
31#include <linux/overflow-arith.h>
31#include <linux/string.h> 32#include <linux/string.h>
32#include <linux/socket.h> 33#include <linux/socket.h>
33#include <linux/net.h> 34#include <linux/net.h>
@@ -584,7 +585,10 @@ int ip6_fragment(struct sock *sk, struct sk_buff *skb,
584 if (np->frag_size) 585 if (np->frag_size)
585 mtu = np->frag_size; 586 mtu = np->frag_size;
586 } 587 }
587 mtu -= hlen + sizeof(struct frag_hdr); 588
589 if (overflow_usub(mtu, hlen + sizeof(struct frag_hdr), &mtu) ||
590 mtu <= 7)
591 goto fail_toobig;
588 592
589 frag_id = ipv6_select_ident(net, &ipv6_hdr(skb)->daddr, 593 frag_id = ipv6_select_ident(net, &ipv6_hdr(skb)->daddr,
590 &ipv6_hdr(skb)->saddr); 594 &ipv6_hdr(skb)->saddr);