Still oopsing in nf_nat_move_storage()

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Chuck Ebbert
Date: Tuesday, January 29, 2008 - 10:11 am

nf_nat_move_storage():
/usr/src/debug/kernel-2.6.23/linux-2.6.23.i686/net/ipv4/netfilter/nf_nat_core.c:612
      87:       f7 47 64 80 01 00 00    testl  $0x180,0x64(%edi)
      8e:       74 39                   je     c9 <nf_nat_move_storage+0x65>

line 612:
        if (!(ct->status & IPS_NAT_DONE_MASK))
                return;

ct is NULL



To reproduce, this is the Fedora iptables config file:

*nat
:PREROUTING ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
-A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to :21
COMMIT

*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -p icmp --icmp-type any -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -i eth0 -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Still oopsing in nf_nat_move_storage(), Chuck Ebbert, (Tue Jan 29, 10:11 am)
Re: Still oopsing in nf_nat_move_storage(), Patrick McHardy, (Tue Jan 29, 10:18 am)
Re: Still oopsing in nf_nat_move_storage(), Chuck Ebbert, (Thu Jan 31, 11:03 am)
Re: Still oopsing in nf_nat_move_storage(), Chuck Ebbert, (Fri Feb 1, 4:41 pm)
Re: Still oopsing in nf_nat_move_storage(), Patrick McHardy, (Sat Feb 2, 3:26 am)
Re: Still oopsing in nf_nat_move_storage(), Patrick McHardy, (Sat Feb 2, 4:02 am)
Re: Still oopsing in nf_nat_move_storage(), Thomas Woerner, (Tue Feb 5, 9:26 am)