ipv6: udp packets following an UFO enqueued packet need also be handled by UFO
authorHannes Frederic Sowa <hannes@stressinduktion.org>
Sat, 21 Sep 2013 04:27:00 +0000 (06:27 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 19 May 2014 05:54:20 +0000 (07:54 +0200)
commita0feaea482be55e26370b9f1f91f6eeac9248c66
tree5a438d700c4271c75e95c9775fc8627920174e42
parent4d464ca439a6951821f039dd341732fa859df767
ipv6: udp packets following an UFO enqueued packet need also be handled by UFO

In the following scenario the socket is corked:
If the first UDP packet is larger then the mtu we try to append it to the
write queue via ip6_ufo_append_data. A following packet, which is smaller
than the mtu would be appended to the already queued up gso-skb via
plain ip6_append_data. This causes random memory corruptions.

In ip6_ufo_append_data we also have to be careful to not queue up the
same skb multiple times. So setup the gso frame only when no first skb
is available.

This also fixes a shortcoming where we add the current packet's length to
cork->length but return early because of a packet > mtu with dontfrag set
(instead of sutracting it again).

Found with trinity.

Cc: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
(cherry picked from commit 2811ebac2521ceac84f2bdae402455baa6a7fb47)
[wt: 2.6.32 doesn't have dontfrag so remove the optimization]
Signed-off-by: Willy Tarreau <w@1wt.eu>
net/ipv6/ip6_output.c