netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* RST business
@ 2004-04-22  5:59 Alex Pankratov
  2004-04-22  7:08 ` Glen Turner
  2004-04-22 14:11 ` Steve Modica
  0 siblings, 2 replies; 4+ messages in thread
From: Alex Pankratov @ 2004-04-22  5:59 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Michael Rozhavsky


Looking at the hype around 'TCP vulnerability' the following
occured to me, and I wonder if it makes any sense -

A host may recieve legitimate RST packet only in response to
something that it has previously sent (let's call it a 'trigger').

SEQ/ACK values in RST packet are correlated to SEQ/ACK of the
trigger. If the correlation is not there, then RST packet is
most certainly spoofed and should be dropped even if its SEQ
falls into host's rcpt window.

In other words, it seems to be possible to stregthen ingress
RST checking (and thus better protect against blind RST attacks)
while maintaining _full RFC compliance_. Here's a how-to sketch.

     RFC 793 (page 35) states that for the connection in
     non-established state -

     If the incoming segment has an ACK field, the reset takes its
     sequence number from the ACK field of the segment, otherwise
     the reset has sequence number zero and the ACK field is set to
     the sum of the sequence number and segment length of the incoming
     segment.

Hence the second RST check (after standard window check) is

	if (! pkt->seq)
		check if we've recently sent a segment without
		an ACK with (pkt->ack - pkt->seq) bytes in it
	else
		check if we've recently sent a segment with ACK
		of (pkt->seq) and with (pkt->ack - pkt->seq)
		bytes in it

If RST passes the check, it's accepted. Otherwise checks continue.

     RFC 793 (page 36) states that for the connection in
     established state -

     .. elicit only an empty
     acknowledgment segment containing the current send-sequence number
     and an acknowledgment indicating the next sequence number expected
     to be received ..

At this point seeing a RST means that
(a) remote host is an ESTABLISHED state
(b) we sent a segment that it considers not to be a part of the
     current connection

And (b) is something that we can always check since we're now sure
about (a).

The above obviously requires keeping some sort of 'outbound history',
plus (b) involves some non-trivial logic, which however seems to be
doable from the first glance.

Comments ?

Alex

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-04-22 15:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-22  5:59 RST business Alex Pankratov
2004-04-22  7:08 ` Glen Turner
2004-04-22 14:11 ` Steve Modica
2004-04-22 15:17   ` Alex Pankratov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).