aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMichal Kubeček2017-06-19 06:03:43 -0500
committerGreg Kroah-Hartman2017-08-12 21:29:09 -0500
commitfab61468402b5189bb843cff96066693d03a716b (patch)
tree0e2af34d702db309509685815916e9ae5660f8b6 /net
parent96cdeaa3af8f310c52489fc9342c1b2d32aa7678 (diff)
downloadkernel-omap-fab61468402b5189bb843cff96066693d03a716b.tar.gz
kernel-omap-fab61468402b5189bb843cff96066693d03a716b.tar.xz
kernel-omap-fab61468402b5189bb843cff96066693d03a716b.zip
net: account for current skb length when deciding about UFO
commit a5cb659bbc1c8644efa0c3138a757a1e432a4880 upstream. Our customer encountered stuck NFS writes for blocks starting at specific offsets w.r.t. page boundary caused by networking stack sending packets via UFO enabled device with wrong checksum. The problem can be reproduced by composing a long UDP datagram from multiple parts using MSG_MORE flag: sendto(sd, buff, 1000, MSG_MORE, ...); sendto(sd, buff, 1000, MSG_MORE, ...); sendto(sd, buff, 3000, 0, ...); Assume this packet is to be routed via a device with MTU 1500 and NETIF_F_UFO enabled. When second sendto() gets into __ip_append_data(), this condition is tested (among others) to decide whether to call ip_ufo_append_data(): ((length + fragheaderlen) > mtu) || (skb && skb_is_gso(skb)) At the moment, we already have skb with 1028 bytes of data which is not marked for GSO so that the test is false (fragheaderlen is usually 20). Thus we append second 1000 bytes to this skb without invoking UFO. Third sendto(), however, has sufficient length to trigger the UFO path so that we end up with non-UFO skb followed by a UFO one. Later on, udp_send_skb() uses udp_csum() to calculate the checksum but that assumes all fragments have correct checksum in skb->csum which is not true for UFO fragments. When checking against MTU, we need to add skb->len to length of new segment if we already have a partially filled skb and fragheaderlen only if there isn't one. In the IPv6 case, skb can only be null if this is the first segment so that we have to use headersize (length of the first IPv6 header) rather than fragheaderlen (length of IPv6 header of further fragments) for skb == NULL. Fixes: e89e9cf539a2 ("[IPv4/IPv6]: UFO Scatter-gather approach") Fixes: e4c5e13aa45c ("ipv6: Should use consistent conditional judgement for ip6 fragment between __ip6_append_data and ip6_finish_output") Signed-off-by: Michal Kubecek <mkubecek@suse.cz> Acked-by: Vlad Yasevich <vyasevic@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/ip_output.c2
-rw-r--r--net/ipv6/ip6_output.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index 0efa401c39f4..09c73dd541c5 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -923,7 +923,7 @@ static int __ip_append_data(struct sock *sk,
923 923
924 cork->length += length; 924 cork->length += length;
925 if ((skb && skb_is_gso(skb)) || 925 if ((skb && skb_is_gso(skb)) ||
926 (((length + fragheaderlen) > mtu) && 926 (((length + (skb ? skb->len : fragheaderlen)) > mtu) &&
927 (skb_queue_len(queue) <= 1) && 927 (skb_queue_len(queue) <= 1) &&
928 (sk->sk_protocol == IPPROTO_UDP) && 928 (sk->sk_protocol == IPPROTO_UDP) &&
929 (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len && 929 (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len &&
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
index b725efc0d4ea..e22339fad10b 100644
--- a/net/ipv6/ip6_output.c
+++ b/net/ipv6/ip6_output.c
@@ -1358,7 +1358,7 @@ emsgsize:
1358 1358
1359 cork->length += length; 1359 cork->length += length;
1360 if ((skb && skb_is_gso(skb)) || 1360 if ((skb && skb_is_gso(skb)) ||
1361 (((length + fragheaderlen) > mtu) && 1361 (((length + (skb ? skb->len : headersize)) > mtu) &&
1362 (skb_queue_len(queue) <= 1) && 1362 (skb_queue_len(queue) <= 1) &&
1363 (sk->sk_protocol == IPPROTO_UDP) && 1363 (sk->sk_protocol == IPPROTO_UDP) &&
1364 (rt->dst.dev->features & NETIF_F_UFO) && 1364 (rt->dst.dev->features & NETIF_F_UFO) &&