Skip to content

Commit

Permalink
tcp: syncookies: reduce mss table to four values
Browse files Browse the repository at this point in the history
Halve mss table size to make blind cookie guessing more difficult.
This is sad since the tables were already small, but there
is little alternative except perhaps adding more precise mss information
in the tcp timestamp.  Timestamps are unfortunately not ubiquitous.

Guessing all possible cookie values still has 8-in 2**32 chance.

Reported-by: Jakob Lell <[email protected]>
Signed-off-by: Florian Westphal <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Florian Westphal authored and davem330 committed Sep 24, 2013
1 parent 8c27bd7 commit 0862935
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 17 deletions.
22 changes: 11 additions & 11 deletions net/ipv4/syncookies.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,22 +136,22 @@ static __u32 check_tcp_syn_cookie(__u32 cookie, __be32 saddr, __be32 daddr,
}

/*
* MSS Values are taken from the 2009 paper
* 'Measuring TCP Maximum Segment Size' by S. Alcock and R. Nelson:
* - values 1440 to 1460 accounted for 80% of observed mss values
* - values outside the 536-1460 range are rare (<0.2%).
* MSS Values are chosen based on the 2011 paper
* 'An Analysis of TCP Maximum Segement Sizes' by S. Alcock and R. Nelson.
* Values ..
* .. lower than 536 are rare (< 0.2%)
* .. between 537 and 1299 account for less than < 1.5% of observed values
* .. in the 1300-1349 range account for about 15 to 20% of observed mss values
* .. exceeding 1460 are very rare (< 0.04%)
*
* Table must be sorted.
* 1460 is the single most frequently announced mss value (30 to 46% depending
* on monitor location). Table must be sorted.
*/
static __u16 const msstab[] = {
64,
512,
536,
1024,
1440,
1300,
1440, /* 1440, 1452: PPPoE */
1460,
4312,
8960,
};

/*
Expand Down
15 changes: 9 additions & 6 deletions net/ipv6/syncookies.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,18 @@
#define COOKIEBITS 24 /* Upper bits store count */
#define COOKIEMASK (((__u32)1 << COOKIEBITS) - 1)

/* Table must be sorted. */
/* RFC 2460, Section 8.3:
* [ipv6 tcp] MSS must be computed as the maximum packet size minus 60 [..]
*
* Due to IPV6_MIN_MTU=1280 the lowest possible MSS is 1220, which allows
* using higher values than ipv4 tcp syncookies.
* The other values are chosen based on ethernet (1500 and 9k MTU), plus
* one that accounts for common encap (PPPoe) overhead. Table must be sorted.
*/
static __u16 const msstab[] = {
64,
512,
536,
1280 - 60,
1280 - 60, /* IPV6_MIN_MTU - 60 */
1480 - 60,
1500 - 60,
4460 - 60,
9000 - 60,
};

Expand Down

0 comments on commit 0862935

Please sign in to comment.