diff options
author | Hans Wippel <hwippel@linux.vnet.ibm.com> | 2018-03-23 13:05:45 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-26 03:53:54 +0300 |
commit | bc58a1baf2a97838a422ce4e75180c4b680e7a9b (patch) | |
tree | 28d3be12af108d383d1ef92fa75c60dfe74d54b0 /net/ipv6/syncookies.c | |
parent | b9ee96b45fddc2e507102f32ead30311814c1fc0 (diff) | |
download | linux-bc58a1baf2a97838a422ce4e75180c4b680e7a9b.tar.xz |
net/ipv4: disable SMC TCP option with SYN Cookies
Currently, the SMC experimental TCP option in a SYN packet is lost on
the server side when SYN Cookies are active. However, the corresponding
SYNACK sent back to the client contains the SMC option. This causes an
inconsistent view of the SMC capabilities on the client and server.
This patch disables the SMC option in the SYNACK when SYN Cookies are
active to avoid this issue.
Fixes: 60e2a7780793b ("tcp: TCP experimental option for SMC")
Signed-off-by: Hans Wippel <hwippel@linux.vnet.ibm.com>
Signed-off-by: Ursula Braun <ubraun@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/syncookies.c')
-rw-r--r-- | net/ipv6/syncookies.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv6/syncookies.c b/net/ipv6/syncookies.c index e7a3a6b6cf56..e997141aed8c 100644 --- a/net/ipv6/syncookies.c +++ b/net/ipv6/syncookies.c @@ -217,6 +217,8 @@ struct sock *cookie_v6_check(struct sock *sk, struct sk_buff *skb) treq->snt_isn = cookie; treq->ts_off = 0; treq->txhash = net_tx_rndhash(); + if (IS_ENABLED(CONFIG_SMC)) + ireq->smc_ok = 0; /* * We need to lookup the dst_entry to get the correct window size. |