Commit f2dd495a authored by Pablo Neira Ayuso's avatar Pablo Neira Ayuso

netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options

Do not reset IP_CT_TCP_FLAG_BE_LIBERAL flag in out-of-sync scenarios
coming before the TCP window tracking, otherwise such connections will
fail in the window check.

Update tcp_options() to leave this flag in place and add a new helper
function to reset the tcp window state.

Based on patch from Sven Auhagen.

Fixes: c4832c7b ("netfilter: nf_ct_tcp: improve out-of-sync situation in TCP tracking")
Tested-by: default avatarSven Auhagen <sven.auhagen@voleatech.de>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent d645552e
...@@ -341,8 +341,8 @@ static void tcp_options(const struct sk_buff *skb, ...@@ -341,8 +341,8 @@ static void tcp_options(const struct sk_buff *skb,
if (!ptr) if (!ptr)
return; return;
state->td_scale = state->td_scale = 0;
state->flags = 0; state->flags &= IP_CT_TCP_FLAG_BE_LIBERAL;
while (length > 0) { while (length > 0) {
int opcode=*ptr++; int opcode=*ptr++;
...@@ -862,6 +862,16 @@ static bool tcp_can_early_drop(const struct nf_conn *ct) ...@@ -862,6 +862,16 @@ static bool tcp_can_early_drop(const struct nf_conn *ct)
return false; return false;
} }
static void nf_ct_tcp_state_reset(struct ip_ct_tcp_state *state)
{
state->td_end = 0;
state->td_maxend = 0;
state->td_maxwin = 0;
state->td_maxack = 0;
state->td_scale = 0;
state->flags &= IP_CT_TCP_FLAG_BE_LIBERAL;
}
/* Returns verdict for packet, or -1 for invalid. */ /* Returns verdict for packet, or -1 for invalid. */
int nf_conntrack_tcp_packet(struct nf_conn *ct, int nf_conntrack_tcp_packet(struct nf_conn *ct,
struct sk_buff *skb, struct sk_buff *skb,
...@@ -968,8 +978,7 @@ int nf_conntrack_tcp_packet(struct nf_conn *ct, ...@@ -968,8 +978,7 @@ int nf_conntrack_tcp_packet(struct nf_conn *ct,
ct->proto.tcp.last_flags &= ~IP_CT_EXP_CHALLENGE_ACK; ct->proto.tcp.last_flags &= ~IP_CT_EXP_CHALLENGE_ACK;
ct->proto.tcp.seen[ct->proto.tcp.last_dir].flags = ct->proto.tcp.seen[ct->proto.tcp.last_dir].flags =
ct->proto.tcp.last_flags; ct->proto.tcp.last_flags;
memset(&ct->proto.tcp.seen[dir], 0, nf_ct_tcp_state_reset(&ct->proto.tcp.seen[dir]);
sizeof(struct ip_ct_tcp_state));
break; break;
} }
ct->proto.tcp.last_index = index; ct->proto.tcp.last_index = index;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment