* [BUG] connlimit breaks localhost connections since 6.17.13
@ 2026-01-08 16:37 Michal Slabihoudek
2026-01-08 17:15 ` Florian Westphal
0 siblings, 1 reply; 4+ messages in thread
From: Michal Slabihoudek @ 2026-01-08 16:37 UTC (permalink / raw)
To: netfilter; +Cc: Jaroslav Pulchart, Tomas Klouda
Hello netfilter maintainers,
I would like to report a regression related to the connlimit match.
Kernel versions:
• 6.17.12: working
• 6.17.13: broken
• 6.18.3: still broken
Distribution:
• CentOS Stream 9
Netfilter component:
• connlimit (iptables)
Description:
Applying an iptables rule using the connlimit module causes TCP connections
to be dropped (client observes connection timeout), even though the rule
action is LOG and not DROP/REJECT.
This happens specifically when connecting from localhost to a non-localhost
IP address (i.e. not in 127.0.0.0/8). The first connection succeeds, but
subsequent connections immediately time out.
Removing the iptables rule with the connlimit match fully resolves the issue.
Expected behavior:
• connlimit should only match and log packets
• connection handling should remain unaffected when using -j LOG
Actual behavior:
• connections are silently dropped
• client experiences TCP connection timeout
Reproducer:
Target port: TCP 443
iptables rule used (for custom logging only):
```
iptables -I INPUT -p tcp --dport 443 \
--tcp-flags FIN,SYN,RST,ACK SYN \
-m connlimit --connlimit-above 500 \
--connlimit-mask 32 --connlimit-saddr \
-j LOG --log-prefix "IPT-443: "
```
iptables ruleset:
```
Chain INPUT (policy ACCEPT)
num pkts bytes target prot opt in out source destination
1 0 0 LOG tcp -- * * 0.0.0.0/0 0.0.0.0/0
tcp dpt:443 flags:0x17/0x02 #conn src/32 > 500
LOG flags 0 level 4 prefix "IPT-443: "
```
Test case:
First connection from localhost to instance IP (X.X.X.X):
```
curl -I -L -k -m 3 https://X.X.X.X
-> HTTP/2 200 OK
```
Immediate second connection:
```
curl -I -L -k -m 3 https://X.X.X.X
-> curl: (28) Connection timed out after 3001 milliseconds
```
Without the iptables rule applied, repeated connections succeed without
any issue.
Notes:
• This looks like a regression introduced in 6.17.13
• The behavior resembles an implicit drop, despite using LOG only
• Regression might be introduced by https://github.com/torvalds/linux/commit/69894e5b4c5e28cda5f32af33d4a92b7a4b93b0e
Please let me know if further debugging data (conntrack state, traces,or kernel logs) would be helpful.
Best regards.
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [BUG] connlimit breaks localhost connections since 6.17.13
2026-01-08 16:37 [BUG] connlimit breaks localhost connections since 6.17.13 Michal Slabihoudek
@ 2026-01-08 17:15 ` Florian Westphal
2026-01-09 10:57 ` Fernando Fernandez Mancera
0 siblings, 1 reply; 4+ messages in thread
From: Florian Westphal @ 2026-01-08 17:15 UTC (permalink / raw)
To: Michal Slabihoudek; +Cc: netfilter, Jaroslav Pulchart, Tomas Klouda, fmancera
Michal Slabihoudek <michal.slabihoudek@gooddata.com> wrote:
[ CC Fernando ]
> This happens specifically when connecting from localhost to a non-localhost
> IP address (i.e. not in 127.0.0.0/8). The first connection succeeds, but
> subsequent connections immediately time out.
> Removing the iptables rule with the connlimit match fully resolves the issue.
>
> Expected behavior:
> • connlimit should only match and log packets
> • connection handling should remain unaffected when using -j LOG
>
> Actual behavior:
> • connections are silently dropped
> • client experiences TCP connection timeout
We have very little test cases or real world examples, especially
for iptables. Hence constant breakage is expected.
Fernando, can you please have a look?
> iptables rule used (for custom logging only):
> ```
> iptables -I INPUT -p tcp --dport 443 \
> --tcp-flags FIN,SYN,RST,ACK SYN \
> -m connlimit --connlimit-above 500 \
> --connlimit-mask 32 --connlimit-saddr \
> -j LOG --log-prefix "IPT-443: "
> ```
>
> iptables ruleset:
> ```
> Chain INPUT (policy ACCEPT)
> num pkts bytes target prot opt in out source destination
> 1 0 0 LOG tcp -- * * 0.0.0.0/0 0.0.0.0/0
> tcp dpt:443 flags:0x17/0x02 #conn src/32 > 500
> LOG flags 0 level 4 prefix "IPT-443: "
> ```
>
> Test case:
> First connection from localhost to instance IP (X.X.X.X):
> ```
> curl -I -L -k -m 3 https://X.X.X.X
> -> HTTP/2 200 OK
> ```
> Immediate second connection:
> ```
> curl -I -L -k -m 3 https://X.X.X.X
> -> curl: (28) Connection timed out after 3001 milliseconds
> ```
>
> Without the iptables rule applied, repeated connections succeed without
> any issue.
> Notes:
> • This looks like a regression introduced in 6.17.13
> • The behavior resembles an implicit drop, despite using LOG only
> • Regression might be introduced by https://github.com/torvalds/linux/commit/69894e5b4c5e28cda5f32af33d4a92b7a4b93b0e
>
> Please let me know if further debugging data (conntrack state, traces,or kernel logs) would be helpful.
>
> Best regards.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [BUG] connlimit breaks localhost connections since 6.17.13
2026-01-08 17:15 ` Florian Westphal
@ 2026-01-09 10:57 ` Fernando Fernandez Mancera
2026-01-13 11:19 ` Fernando Fernandez Mancera
0 siblings, 1 reply; 4+ messages in thread
From: Fernando Fernandez Mancera @ 2026-01-09 10:57 UTC (permalink / raw)
To: Florian Westphal, Michal Slabihoudek
Cc: netfilter, Jaroslav Pulchart, Tomas Klouda
Hi Michal,
On 1/8/26 6:15 PM, Florian Westphal wrote:
> Michal Slabihoudek <michal.slabihoudek@gooddata.com> wrote:
>
> [ CC Fernando ]
>
>> This happens specifically when connecting from localhost to a non-localhost
>> IP address (i.e. not in 127.0.0.0/8). The first connection succeeds, but
>> subsequent connections immediately time out.
>> Removing the iptables rule with the connlimit match fully resolves the issue.
>>
>> Expected behavior:
>> • connlimit should only match and log packets
>> • connection handling should remain unaffected when using -j LOG
>>
>> Actual behavior:
>> • connections are silently dropped
>> • client experiences TCP connection timeout
>
> We have very little test cases or real world examples, especially
> for iptables. Hence constant breakage is expected.
>
> Fernando, can you please have a look?
>
>> iptables rule used (for custom logging only):
>> ```
>> iptables -I INPUT -p tcp --dport 443 \
>> --tcp-flags FIN,SYN,RST,ACK SYN \
>> -m connlimit --connlimit-above 500 \
>> --connlimit-mask 32 --connlimit-saddr \
>> -j LOG --log-prefix "IPT-443: "
>> ```
>>
>> iptables ruleset:
>> ```
>> Chain INPUT (policy ACCEPT)
>> num pkts bytes target prot opt in out source destination
>> 1 0 0 LOG tcp -- * * 0.0.0.0/0 0.0.0.0/0
>> tcp dpt:443 flags:0x17/0x02 #conn src/32 > 500
>> LOG flags 0 level 4 prefix "IPT-443: "
>> ```
>>
>> Test case:
>> First connection from localhost to instance IP (X.X.X.X):
>> ```
>> curl -I -L -k -m 3 https://X.X.X.X
>> -> HTTP/2 200 OK
>> ```
>> Immediate second connection:
>> ```
>> curl -I -L -k -m 3 https://X.X.X.X
>> -> curl: (28) Connection timed out after 3001 milliseconds
>> ```
>>
>> Without the iptables rule applied, repeated connections succeed without
>> any issue.
>> Notes:
>> • This looks like a regression introduced in 6.17.13
>> • The behavior resembles an implicit drop, despite using LOG only
>> • Regression might be introduced by https://github.com/torvalds/linux/commit/69894e5b4c5e28cda5f32af33d4a92b7a4b93b0e
>>
>> Please let me know if further debugging data (conntrack state, traces,or kernel logs) would be helpful.
>>
Thank you for this report, I am trying to reproduce it. If I am able to
reproduce it I will provide a fix ASAP.
>> Best regards.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [BUG] connlimit breaks localhost connections since 6.17.13
2026-01-09 10:57 ` Fernando Fernandez Mancera
@ 2026-01-13 11:19 ` Fernando Fernandez Mancera
0 siblings, 0 replies; 4+ messages in thread
From: Fernando Fernandez Mancera @ 2026-01-13 11:19 UTC (permalink / raw)
To: Florian Westphal, Michal Slabihoudek
Cc: netfilter, Jaroslav Pulchart, Tomas Klouda
On 1/9/26 11:57 AM, Fernando Fernandez Mancera wrote:
> Hi Michal,
>
> On 1/8/26 6:15 PM, Florian Westphal wrote:
>> Michal Slabihoudek <michal.slabihoudek@gooddata.com> wrote:
>>
>> [ CC Fernando ]
>>
>>> This happens specifically when connecting from localhost to a non-
>>> localhost
>>> IP address (i.e. not in 127.0.0.0/8). The first connection succeeds, but
>>> subsequent connections immediately time out.
>>> Removing the iptables rule with the connlimit match fully resolves
>>> the issue.
>>>
>>> Expected behavior:
>>> • connlimit should only match and log packets
>>> • connection handling should remain unaffected when using -j LOG
>>>
>>> Actual behavior:
>>> • connections are silently dropped
>>> • client experiences TCP connection timeout
>>
>> We have very little test cases or real world examples, especially
>> for iptables. Hence constant breakage is expected.
>>
>> Fernando, can you please have a look?
>>
>>> iptables rule used (for custom logging only):
>>> ```
>>> iptables -I INPUT -p tcp --dport 443 \
>>> --tcp-flags FIN,SYN,RST,ACK SYN \
>>> -m connlimit --connlimit-above 500 \
>>> --connlimit-mask 32 --connlimit-saddr \
>>> -j LOG --log-prefix "IPT-443: "
>>> ```
>>>
>>> iptables ruleset:
>>> ```
>>> Chain INPUT (policy ACCEPT)
>>> num pkts bytes target prot opt in out source destination
>>> 1 0 0 LOG tcp -- * * 0.0.0.0/0 0.0.0.0/0
>>> tcp dpt:443 flags:0x17/0x02 #conn src/32 > 500
>>> LOG flags 0 level 4 prefix "IPT-443: "
>>> ```
>>>
>>> Test case:
>>> First connection from localhost to instance IP (X.X.X.X):
>>> ```
>>> curl -I -L -k -m 3 https://X.X.X.X
>>> -> HTTP/2 200 OK
>>> ```
>>> Immediate second connection:
>>> ```
>>> curl -I -L -k -m 3 https://X.X.X.X
>>> -> curl: (28) Connection timed out after 3001 milliseconds
>>> ```
>>>
>>> Without the iptables rule applied, repeated connections succeed without
>>> any issue.
>>> Notes:
>>> • This looks like a regression introduced in 6.17.13
>>> • The behavior resembles an implicit drop, despite using LOG only
>>> • Regression might be introduced by https://github.com/torvalds/
>>> linux/commit/69894e5b4c5e28cda5f32af33d4a92b7a4b93b0e
>>>
>>> Please let me know if further debugging data (conntrack state,
>>> traces,or kernel logs) would be helpful.
>>>
>
> Thank you for this report, I am trying to reproduce it. If I am able to
> reproduce it I will provide a fix ASAP.
>
Hi again, I have been doing some work around this issue. I have been
able to reproduce the problem. I am testing a small fix for it. In
addition, I couldn't reproduce this with nftables so far.
I am also wondering, what is the purpose of matching flags FIN, RST? I
believe SYN or ACK SYN alone would be more appropriated.
Thanks,
Fernando.
>>> Best regards.
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-01-13 11:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-08 16:37 [BUG] connlimit breaks localhost connections since 6.17.13 Michal Slabihoudek
2026-01-08 17:15 ` Florian Westphal
2026-01-09 10:57 ` Fernando Fernandez Mancera
2026-01-13 11:19 ` Fernando Fernandez Mancera
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox