* [PATCH 2.6.11]: Clear NAT status bits on module unload
@ 2005-02-05 2:53 Patrick McHardy
2005-02-07 6:13 ` David S. Miller
0 siblings, 1 reply; 2+ messages in thread
From: Patrick McHardy @ 2005-02-05 2:53 UTC (permalink / raw)
To: David S. Miller; +Cc: Netfilter Development Mailinglist
[-- Attachment #1: Type: text/plain, Size: 139 bytes --]
Hi Dave,
another patch which I think should go in 2.6.11, it fixes a crash
when unloading, then reloading iptable_nat.
Regards
Patrick
[-- Attachment #2: x --]
[-- Type: text/plain, Size: 1584 bytes --]
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2005/02/05 03:49:38+01:00 kaber@coreworks.de
# [NETFILTER]: Clear NAT status bits on module unload
#
# ip_nat_core doesn't clear the status bits in struct ip_conntrack on
# module unload, but zeroes out the nat area. When the module is loaded
# again and a connection times out ip_nat_cleanup_conntrack tries to
# list_del the zeroed list-head and crashes. There are probably more
# conditions under which it can crash or cause other misbehaviour.
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
# net/ipv4/netfilter/ip_nat_core.c
# 2005/02/05 03:49:28+01:00 kaber@coreworks.de +1 -0
# [NETFILTER]: Clear NAT status bits on module unload
#
# ip_nat_core doesn't clear the status bits in struct ip_conntrack on
# module unload, but zeroes out the nat area. When the module is loaded
# again and a connection times out ip_nat_cleanup_conntrack tries to
# list_del the zeroed list-head and crashes. There are probably more
# conditions under which it can crash or cause other misbehaviour.
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
diff -Nru a/net/ipv4/netfilter/ip_nat_core.c b/net/ipv4/netfilter/ip_nat_core.c
--- a/net/ipv4/netfilter/ip_nat_core.c 2005-02-05 03:50:14 +01:00
+++ b/net/ipv4/netfilter/ip_nat_core.c 2005-02-05 03:50:14 +01:00
@@ -543,6 +543,7 @@
static int clean_nat(struct ip_conntrack *i, void *data)
{
memset(&i->nat, 0, sizeof(i->nat));
+ i->status &= ~(IPS_NAT_MASK | IPS_NAT_DONE_MASK | IPS_SEQ_ADJUST);
return 0;
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 2.6.11]: Clear NAT status bits on module unload
2005-02-05 2:53 [PATCH 2.6.11]: Clear NAT status bits on module unload Patrick McHardy
@ 2005-02-07 6:13 ` David S. Miller
0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2005-02-07 6:13 UTC (permalink / raw)
To: Patrick McHardy; +Cc: netfilter-devel
On Sat, 05 Feb 2005 03:53:16 +0100
Patrick McHardy <kaber@trash.net> wrote:
> another patch which I think should go in 2.6.11, it fixes a crash
> when unloading, then reloading iptable_nat.
Applied, thanks Patrick.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-02-07 6:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-05 2:53 [PATCH 2.6.11]: Clear NAT status bits on module unload Patrick McHardy
2005-02-07 6:13 ` David S. Miller
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.