From: Chris Mi <cmi@nvidia.com>
To: Florian Westphal <fw@strlen.de>
Cc: Pablo Neira Ayuso <pablo@netfilter.org>,
Ali Abdallah <aabdallah@suse.de>,
<netfilter-devel@vger.kernel.org>
Subject: Re: ct hardware offload ignores RST packet
Date: Mon, 23 Sep 2024 23:47:31 +0800 [thread overview]
Message-ID: <5edeab2c-2d36-4cef-b005-bf98a496db2c@nvidia.com> (raw)
In-Reply-To: <20240923100346.GA27491@breakpoint.cc>
On 9/23/2024 6:03 PM, Florian Westphal wrote:
> Chris Mi <cmi@nvidia.com> wrote:
>> Hi Pablo & Ali,
>>
>> Our customer reported an issue. I found that it can be reproduced like
>> this. If the tcp client program sets socketopt linger to 0, when the client
>> program exits, RST packet will be sent instead of FIN.
>>
>> But this RST packet doesn't match the expected sequence, server will
>> ignore it and the ct entry will be in ESTABLISHED state for 5 days.
>> It seems like an expected behavior due to commit [1].
>>
>> We found another commit [2] in recent kernel. We tried to set
>> nf_conntrack_tcp_ignore_invalid_rst to 1.
>> It doesn't work as well. And the commit message is too short. We don't
>> know what's the usecase for it.
>>
>> In our case, if we have the following diff, ct will be closed normally:
>>
>> diff --git a/net/netfilter/nf_conntrack_proto_tcp.c
>> b/net/netfilter/nf_conntrack_proto_tcp.c
>> index ae493599a3ef..04c0e5a86990 100644
>> --- a/net/netfilter/nf_conntrack_proto_tcp.c
>> +++ b/net/netfilter/nf_conntrack_proto_tcp.c
>> @@ -1218,7 +1218,8 @@ int nf_conntrack_tcp_packet(struct nf_conn *ct,
>> /* ... RST sequence number doesn't match exactly,
>> keep
>> * established state to allow a possible challenge
>> ACK.
>> */
>> - new_state = old_state;
>> + if (!tn->tcp_ignore_invalid_rst)
>> + new_state = old_state;
>
> Can you test if a call to
> nf_tcp_handle_invalid() here resolves the problem as well?
> Intent would be to reduce timeout but keep connecton state
> as-is.
>
> I don't think we should force customers to tweak sysctls to
> make expiry work as intended.
It doesn't work. The if statement is not executed because the condition
is not met.
[Mon Sep 23 18:41:59 2024] nf_tcp_handle_invalid: 756, last_dir: 0, dir:
0, last_index: 3
Even if the if statement is executed, the timeout is still not changed.
next prev parent reply other threads:[~2024-09-23 15:47 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-23 9:47 ct hardware offload ignores RST packet Chris Mi
2024-09-23 10:03 ` Florian Westphal
2024-09-23 15:47 ` Chris Mi [this message]
2024-09-23 16:51 ` Florian Westphal
2024-09-23 17:41 ` Pablo Neira Ayuso
2024-09-24 1:04 ` Chris Mi
2024-09-24 1:03 ` Chris Mi
2024-09-24 19:11 ` Florian Westphal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5edeab2c-2d36-4cef-b005-bf98a496db2c@nvidia.com \
--to=cmi@nvidia.com \
--cc=aabdallah@suse.de \
--cc=fw@strlen.de \
--cc=netfilter-devel@vger.kernel.org \
--cc=pablo@netfilter.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).