stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Missed mainstream fix in 3.10
@ 2015-06-09 15:15 Kirill Tkhai
  2015-06-09 15:23 ` Willy Tarreau
  0 siblings, 1 reply; 4+ messages in thread
From: Kirill Tkhai @ 2015-06-09 15:15 UTC (permalink / raw)
  To: stable; +Cc: Greg Kroah-Hartman

Hi,

it looks like the bellow commit is missed in stable 3.10 kernel.
In 2.6.32 without this commit we observed a bridge dropping big
packets. The fix is in mainstream kernel now.
Please, look if it's need in stable 3.10 kernel.

commit aff09ce303f83bd370772349238482ae422a2341
Author: Vasily Averin <vvs@parallels.com>
Date:   Mon May 5 00:17:48 2014 +0400

    bridge: superfluous skb->nfct check in br_nf_dev_queue_xmit

    Currently bridge can silently drop ipv4 fragments.
    If node have loaded nf_defrag_ipv4 module but have no nf_conntrack_ipv4,
    br_nf_pre_routing defragments incoming ipv4 fragments
    but nfct check in br_nf_dev_queue_xmit does not allow re-fragment combined
    packet back, and therefore it is dropped in br_dev_queue_push_xmit without
    incrementing of any failcounters
    
    It seems the only way to hit the ip_fragment code in the bridge xmit
    path is to have a fragment list whose reassembled fragments go over
    the mtu. This only happens if nf_defrag is enabled. Thanks to
    Florian Westphal for providing feedback to clarify this.
    
    Defragmentation ipv4 is required not only in conntracks but at least in
    TPROXY target and socket match, therefore #ifdef is changed from
    NF_CONNTRACK_IPV4 to NF_DEFRAG_IPV4
    
    Signed-off-by: Vasily Averin <vvs@openvz.org>
    Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

Kirill



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

* Re: Missed mainstream fix in 3.10
  2015-06-09 15:15 Missed mainstream fix in 3.10 Kirill Tkhai
@ 2015-06-09 15:23 ` Willy Tarreau
  2015-06-09 15:30   ` Kirill Tkhai
  0 siblings, 1 reply; 4+ messages in thread
From: Willy Tarreau @ 2015-06-09 15:23 UTC (permalink / raw)
  To: Kirill Tkhai; +Cc: stable, Greg Kroah-Hartman

Hi,

On Tue, Jun 09, 2015 at 06:15:28PM +0300, Kirill Tkhai wrote:
> Hi,
> 
> it looks like the bellow commit is missed in stable 3.10 kernel.
> In 2.6.32 without this commit we observed a bridge dropping big
> packets. The fix is in mainstream kernel now.
> Please, look if it's need in stable 3.10 kernel.
> 
> commit aff09ce303f83bd370772349238482ae422a2341
> Author: Vasily Averin <vvs@parallels.com>
> Date:   Mon May 5 00:17:48 2014 +0400
> 
>     bridge: superfluous skb->nfct check in br_nf_dev_queue_xmit
> 
(...)

But this patch is not in 2.6.32 either. Does this mean you applied it to
your own tree, in which case it should have been backported to all kernels
from 2.6.32 to 3.14 as well (since it was merged in 3.15) ? That's a bit
confusing.

Anyway anything related to network should pass via netdev.

Thanks,
Willy


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

* Re: Missed mainstream fix in 3.10
  2015-06-09 15:23 ` Willy Tarreau
@ 2015-06-09 15:30   ` Kirill Tkhai
  2015-06-09 15:33     ` Willy Tarreau
  0 siblings, 1 reply; 4+ messages in thread
From: Kirill Tkhai @ 2015-06-09 15:30 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: stable, Greg Kroah-Hartman

В Вт, 09/06/2015 в 17:23 +0200, Willy Tarreau пишет:
> Hi,
> 
> On Tue, Jun 09, 2015 at 06:15:28PM +0300, Kirill Tkhai wrote:
> > Hi,
> > 
> > it looks like the bellow commit is missed in stable 3.10 kernel.
> > In 2.6.32 without this commit we observed a bridge dropping big
> > packets. The fix is in mainstream kernel now.
> > Please, look if it's need in stable 3.10 kernel.
> > 
> > commit aff09ce303f83bd370772349238482ae422a2341
> > Author: Vasily Averin <vvs@parallels.com>
> > Date:   Mon May 5 00:17:48 2014 +0400
> > 
> >     bridge: superfluous skb->nfct check in br_nf_dev_queue_xmit
> > 
> (...)
> 
> But this patch is not in 2.6.32 either. Does this mean you applied it to
> your own tree, in which case it should have been backported to all kernels
> from 2.6.32 to 3.14 as well (since it was merged in 3.15) ? That's a bit
> confusing.

It was applied to our local 2.6.32 kernel tree and was commited to upstream.
We didn't trace if it was commited to stable trees.

Now I'm porting some local patches from 2.6.32 to 3.10 and found that this
patch isn't in stable 3.10. So I'm reporting to stable tree guys.

> Anyway anything related to network should pass via netdev.


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

* Re: Missed mainstream fix in 3.10
  2015-06-09 15:30   ` Kirill Tkhai
@ 2015-06-09 15:33     ` Willy Tarreau
  0 siblings, 0 replies; 4+ messages in thread
From: Willy Tarreau @ 2015-06-09 15:33 UTC (permalink / raw)
  To: Kirill Tkhai; +Cc: stable, Greg Kroah-Hartman

On Tue, Jun 09, 2015 at 06:30:46PM +0300, Kirill Tkhai wrote:
> ?? ????, 09/06/2015 ?? 17:23 +0200, Willy Tarreau ??????????:
> > Hi,
> > 
> > On Tue, Jun 09, 2015 at 06:15:28PM +0300, Kirill Tkhai wrote:
> > > Hi,
> > > 
> > > it looks like the bellow commit is missed in stable 3.10 kernel.
> > > In 2.6.32 without this commit we observed a bridge dropping big
> > > packets. The fix is in mainstream kernel now.
> > > Please, look if it's need in stable 3.10 kernel.
> > > 
> > > commit aff09ce303f83bd370772349238482ae422a2341
> > > Author: Vasily Averin <vvs@parallels.com>
> > > Date:   Mon May 5 00:17:48 2014 +0400
> > > 
> > >     bridge: superfluous skb->nfct check in br_nf_dev_queue_xmit
> > > 
> > (...)
> > 
> > But this patch is not in 2.6.32 either. Does this mean you applied it to
> > your own tree, in which case it should have been backported to all kernels
> > from 2.6.32 to 3.14 as well (since it was merged in 3.15) ? That's a bit
> > confusing.
> 
> It was applied to our local 2.6.32 kernel tree and was commited to upstream.
> We didn't trace if it was commited to stable trees.
> 
> Now I'm porting some local patches from 2.6.32 to 3.10 and found that this
> patch isn't in stable 3.10. So I'm reporting to stable tree guys.

OK. So then it should cover all stable trees, not just 3.10.

Since Davem handles the stable backports of the networking stuff, please
remind him to add this one to his queue.

Thanks,
Willy


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

end of thread, other threads:[~2015-06-09 15:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-09 15:15 Missed mainstream fix in 3.10 Kirill Tkhai
2015-06-09 15:23 ` Willy Tarreau
2015-06-09 15:30   ` Kirill Tkhai
2015-06-09 15:33     ` Willy Tarreau

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).