* [patch net] ipvs: avoid oops for passive FTP
@ 2010-09-02 9:07 Simon Horman
2010-09-02 17:05 ` David Miller
2010-09-02 20:52 ` Julian Anastasov
0 siblings, 2 replies; 3+ messages in thread
From: Simon Horman @ 2010-09-02 9:07 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel
Cc: David S. Miller, Patrick McHardy, Wensong Zhang, Julian Anastasov
From: Julian Anastasov <ja@ssi.bg>
Fix Passive FTP problem in ip_vs_ftp:
- Do not oops in nf_nat_set_seq_adjust (adjust_tcp_sequence) when
iptable_nat module is not loaded
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
Dave, this patch fixes a regression since 2.6.35 so please consider it for net.
Julian has also found another regression, but the fix is a bit
more complex so I have posted it to the netfilter list for review.
http://marc.info/?l=netfilter-devel&m=128339248723532&w=2
This change (and the other one) is also applicable to net-next, although
there is some diff noise. Do you want me to resolve that and post a
net-next version separately?
--- v2.6.36-rc2/linux/net/netfilter/ipvs/ip_vs_ftp.c 2010-09-02 00:45:54.000000000 +0300
+++ linux/net/netfilter/ipvs/ip_vs_ftp.c 2010-09-02 02:12:52.000000000 +0300
@@ -45,6 +45,7 @@
#include <linux/netfilter.h>
#include <net/netfilter/nf_conntrack.h>
#include <net/netfilter/nf_conntrack_expect.h>
+#include <net/netfilter/nf_nat.h>
#include <net/netfilter/nf_nat_helper.h>
#include <linux/gfp.h>
#include <net/protocol.h>
@@ -359,7 +360,7 @@ static int ip_vs_ftp_out(struct ip_vs_ap
buf_len = strlen(buf);
ct = nf_ct_get(skb, &ctinfo);
- if (ct && !nf_ct_is_untracked(ct)) {
+ if (ct && !nf_ct_is_untracked(ct) && nfct_nat(ct)) {
/* If mangling fails this function will return 0
* which will cause the packet to be dropped.
* Mangling can only fail under memory pressure,
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [patch net] ipvs: avoid oops for passive FTP
2010-09-02 9:07 [patch net] ipvs: avoid oops for passive FTP Simon Horman
@ 2010-09-02 17:05 ` David Miller
2010-09-02 20:52 ` Julian Anastasov
1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2010-09-02 17:05 UTC (permalink / raw)
To: horms; +Cc: lvs-devel, netdev, netfilter-devel, kaber, wensong, ja
From: Simon Horman <horms@verge.net.au>
Date: Thu, 2 Sep 2010 18:07:10 +0900
> From: Julian Anastasov <ja@ssi.bg>
>
> Fix Passive FTP problem in ip_vs_ftp:
>
> - Do not oops in nf_nat_set_seq_adjust (adjust_tcp_sequence) when
> iptable_nat module is not loaded
>
> Signed-off-by: Julian Anastasov <ja@ssi.bg>
> Signed-off-by: Simon Horman <horms@verge.net.au>
Also applied, thanks Simon.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [patch net] ipvs: avoid oops for passive FTP
2010-09-02 9:07 [patch net] ipvs: avoid oops for passive FTP Simon Horman
2010-09-02 17:05 ` David Miller
@ 2010-09-02 20:52 ` Julian Anastasov
1 sibling, 0 replies; 3+ messages in thread
From: Julian Anastasov @ 2010-09-02 20:52 UTC (permalink / raw)
To: Simon Horman
Cc: lvs-devel, netdev, netfilter-devel, David S. Miller,
Patrick McHardy, Wensong Zhang
Hello,
On Thu, 2 Sep 2010, Simon Horman wrote:
> From: Julian Anastasov <ja@ssi.bg>
>
> Fix Passive FTP problem in ip_vs_ftp:
>
> - Do not oops in nf_nat_set_seq_adjust (adjust_tcp_sequence) when
> iptable_nat module is not loaded
>
> Signed-off-by: Julian Anastasov <ja@ssi.bg>
> Signed-off-by: Simon Horman <horms@verge.net.au>
>
> ---
>
> Dave, this patch fixes a regression since 2.6.35 so please consider it for net.
> Julian has also found another regression, but the fix is a bit
> more complex so I have posted it to the netfilter list for review.
Just to clarify that both patches for ip_vs_ftp are
only for code that come in 2.6.36-rc, 2.6.35 is ok and does
not need them.
The other problem is that 2.6.36-rc comes with
requirement IPVS to keep netfilter conntracks for all
connections, eg. DirectRouting, not only for LVS-NAT (ip_vs_ftp).
I have a bigger patch to make the IPVS conntracking support
an option (enabled by default only for ip_vs_ftp) but
may be it is not appropriate for -rc series. So, for now
we are fixing just the fatal problems but the risk of
IPVS setups with low nf_conntrack_max value to stop
processing high loads remains without making the conntrack
support an option. Before now all conntracks were created
and destroyed for every packet and nf_conntrack_max,
even if low, probably is never reached.
> http://marc.info/?l=netfilter-devel&m=128339248723532&w=2
>
> This change (and the other one) is also applicable to net-next, although
> there is some diff noise. Do you want me to resolve that and post a
> net-next version separately?
>
> --- v2.6.36-rc2/linux/net/netfilter/ipvs/ip_vs_ftp.c 2010-09-02 00:45:54.000000000 +0300
> +++ linux/net/netfilter/ipvs/ip_vs_ftp.c 2010-09-02 02:12:52.000000000 +0300
> @@ -45,6 +45,7 @@
> #include <linux/netfilter.h>
> #include <net/netfilter/nf_conntrack.h>
> #include <net/netfilter/nf_conntrack_expect.h>
> +#include <net/netfilter/nf_nat.h>
> #include <net/netfilter/nf_nat_helper.h>
> #include <linux/gfp.h>
> #include <net/protocol.h>
> @@ -359,7 +360,7 @@ static int ip_vs_ftp_out(struct ip_vs_ap
> buf_len = strlen(buf);
>
> ct = nf_ct_get(skb, &ctinfo);
> - if (ct && !nf_ct_is_untracked(ct)) {
> + if (ct && !nf_ct_is_untracked(ct) && nfct_nat(ct)) {
> /* If mangling fails this function will return 0
> * which will cause the packet to be dropped.
> * Mangling can only fail under memory pressure,
Regards
--
Julian Anastasov <ja@ssi.bg>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-09-02 20:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-02 9:07 [patch net] ipvs: avoid oops for passive FTP Simon Horman
2010-09-02 17:05 ` David Miller
2010-09-02 20:52 ` Julian Anastasov
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).