All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix connlimit bug when receive RST packet in ESTABLISHED state
@ 2008-06-02 11:22 Dong Wei
  2008-06-02 12:20 ` Patrick McHardy
  0 siblings, 1 reply; 7+ messages in thread
From: Dong Wei @ 2008-06-02 11:22 UTC (permalink / raw)
  To: netfilter-devel

[-- Attachment #1: Type: text/plain, Size: 1023 bytes --]

Hi, all
  In xt_connlimit match module, the counter of an IP is decreased when
the TCP packet is go through the chain with ip_conntrack state TW.
Well, it's very natural that the server and client close the socket
with FIN packet. But when the client/server close the socket with RST
packet(using so_linger), the counter for this connection still exsit.
The following patch can fix it which is based on linux-2.6.25.4

diff -ruN a/net/netfilter/xt_connlimit.c b/net/netfilter/xt_connlimit.c
--- a/net/netfilter/xt_connlimit.c      2008-06-02 18:48:38.000000000 +0800
+++ b/net/netfilter/xt_connlimit.c      2008-06-02 18:50:40.000000000 +0800
@@ -75,7 +75,8 @@
        u_int16_t proto = conn->tuplehash[0].tuple.dst.protonum;

        if (proto == IPPROTO_TCP)
-               return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT;
+               return (conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT
+                       || conn->proto.tcp.state == TCP_CONNTRACK_CLOSE);
        else
                return 0;
 }

[-- Attachment #2: xt_connlimit.txt --]
[-- Type: text/plain, Size: 525 bytes --]

diff -ruN a/net/netfilter/xt_connlimit.c b/net/netfilter/xt_connlimit.c
--- a/net/netfilter/xt_connlimit.c	2008-06-02 18:48:38.000000000 +0800
+++ b/net/netfilter/xt_connlimit.c	2008-06-02 18:50:40.000000000 +0800
@@ -75,7 +75,8 @@
 	u_int16_t proto = conn->tuplehash[0].tuple.dst.protonum;
 
 	if (proto == IPPROTO_TCP)
-		return conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT;
+		return (conn->proto.tcp.state == TCP_CONNTRACK_TIME_WAIT
+		        || conn->proto.tcp.state == TCP_CONNTRACK_CLOSE);
 	else
 		return 0;
 }

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-06-02 14:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-02 11:22 [PATCH] Fix connlimit bug when receive RST packet in ESTABLISHED state Dong Wei
2008-06-02 12:20 ` Patrick McHardy
2008-06-02 12:46   ` Jan Engelhardt
2008-06-02 13:01     ` Patrick McHardy
2008-06-02 13:44       ` Dong Wei
2008-06-02 13:51         ` Patrick McHardy
2008-06-02 14:35       ` Jan Engelhardt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.