summaryrefslogtreecommitdiff
path: root/drivers/s390/net
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2013-03-18 07:01:28 (GMT)
committerDavid S. Miller <davem@davemloft.net>2013-03-18 17:31:28 (GMT)
commit0d4f0608619de59fd8169dd8e72aadc28d80e715 (patch)
tree22a078ce17e33c82c1809594ce1b761c9e30a3d3 /drivers/s390/net
parentb009aac12cd0fe34293c68af8ac48b85be3bd858 (diff)
downloadlinux-fsl-qoriq-0d4f0608619de59fd8169dd8e72aadc28d80e715.tar.xz
tcp: dont handle MTU reduction on LISTEN socket
When an ICMP ICMP_FRAG_NEEDED (or ICMPV6_PKT_TOOBIG) message finds a LISTEN socket, and this socket is currently owned by the user, we set TCP_MTU_REDUCED_DEFERRED flag in listener tsq_flags. This is bad because if we clone the parent before it had a chance to clear the flag, the child inherits the tsq_flags value, and next tcp_release_cb() on the child will decrement sk_refcnt. Result is that we might free a live TCP socket, as reported by Dormando. IPv4: Attempt to release TCP socket in state 1 Fix this issue by testing sk_state against TCP_LISTEN early, so that we set TCP_MTU_REDUCED_DEFERRED on appropriate sockets (not a LISTEN one) This bug was introduced in commit 563d34d05786 (tcp: dont drop MTU reduction indications) Reported-by: dormando <dormando@rydia.net> Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390/net')
0 files changed, 0 insertions, 0 deletions