[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20140814.144055.2100860870774307871.davem@redhat.com>
Date: Thu, 14 Aug 2014 14:40:55 -0700 (PDT)
From: David Miller <davem@...hat.com>
To: hannes@...essinduktion.org
Cc: netdev@...r.kernel.org, eric.dumazet@...il.com, fw@...len.de
Subject: Re: [PATCH net v2] tcp: don't allow syn packets without timestamps
to pass tcp_tw_recycle logic
From: Hannes Frederic Sowa <hannes@...essinduktion.org>
Date: Thu, 14 Aug 2014 22:06:12 +0200
> tcp_tw_recycle heavily relies on tcp timestamps to build a per-host
> ordering of incoming connections and teardowns without the need to
> hold state on a specific quadruple for TCP_TIMEWAIT_LEN, but only for
> the last measured RTO. To do so, we keep the last seen timestamp in a
> per-host indexed data structure and verify if the incoming timestamp
> in a connection request is strictly greater than the saved one during
> last connection teardown. Thus we can verify later on that no old data
> packets will be accepted by the new connection.
>
> During moving a socket to time-wait state we already verify if timestamps
> where seen on a connection. Only if that was the case we let the
> time-wait socket expire after the RTO, otherwise normal TCP_TIMEWAIT_LEN
> will be used. But we don't verify this on incoming SYN packets. If a
> connection teardown was less than TCP_PAWS_MSL seconds in the past we
> cannot guarantee to not accept data packets from an old connection if
> no timestamps are present. We should drop this SYN packet. This patch
> closes this loophole.
>
> Please note, this patch does not make tcp_tw_recycle in any way more
> usable but only adds another safety check:
> Sporadic drops of SYN packets because of reordering in the network or
> in the socket backlog queues can happen. Users behing NAT trying to
> connect to a tcp_tw_recycle enabled server can get caught in blackholes
> and their connection requests may regullary get dropped because hosts
> behind an address translator don't have synchronized tcp timestamp clocks.
> tcp_tw_recycle cannot work if peers don't have tcp timestamps enabled.
>
> In general, use of tcp_tw_recycle is disadvised.
>
> Cc: Eric Dumazet <eric.dumazet@...il.com>
> Cc: Florian Westphal <fw@...len.de>
> Signed-off-by: Hannes Frederic Sowa <hannes@...essinduktion.org>
Applied.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists