netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Patrick McHardy <kaber@trash.net>
Cc: Jesper Dangaard Brouer <hawk@diku.dk>,
	Netfilter Developers <netfilter-devel@vger.kernel.org>,
	netdev <netdev@vger.kernel.org>
Subject: Re: [PATCH 03/19] netfilter: nf_conntrack_ipv6: improve fragmentation handling
Date: Thu, 30 Aug 2012 05:06:35 +0200	[thread overview]
Message-ID: <20120830030635.GA17583@1984> (raw)
In-Reply-To: <Pine.GSO.4.63.1208291424550.26100@stinky-local.trash.net>

On Wed, Aug 29, 2012 at 02:27:00PM +0200, Patrick McHardy wrote:
> On Wed, 29 Aug 2012, Jesper Dangaard Brouer wrote:
> 
> >
> >Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
> >
> >And some nitpicks below...
> >
> >>diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
> >>index 5b2d63e..a4f6263 100644
> >>--- a/net/ipv6/ip6_output.c
> >>+++ b/net/ipv6/ip6_output.c
> >>@@ -493,7 +493,8 @@ int ip6_forward(struct sk_buff *skb)
> >>	if (mtu < IPV6_MIN_MTU)
> >>		mtu = IPV6_MIN_MTU;
> >>
> >>-	if (skb->len > mtu && !skb_is_gso(skb)) {
> >>+	if ((!skb->local_df && skb->len > mtu && !skb_is_gso(skb)) ||
> >
> >You use (!skb->local_df) to invalidate the use of skb->len,
> >instead of (!IP6CB(skb)->frag_max_size), (which is okay, because
> >you set local_df later).  Is there are reason this check is
> >better?
> 
> Just that it's consistent with ip6_output and the regular local_df
> handling. It saves one extra condition in ip6_output.
> 
> >>+	    (IP6CB(skb)->frag_max_size && IP6CB(skb)->frag_max_size > mtu)) {
> >
> >Eric Dumazet would probably nitpick and say, it can be reduced to:
> >(IP6CB(skb)->frag_max_size > mtu)
> >;-)
> 
> True. I'll fix that once Pablo has pulled in the patches.

If you don't want to wait, you can send me a follow up patch, I'll
apply it manually.

  reply	other threads:[~2012-08-30  3:06 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-28 21:48 [PATCH 00/19] netfilter: IPv6 NAT Patrick McHardy
2012-08-28 21:48 ` [PATCH 01/19] ipv4: fix path MTU discovery with connection tracking Patrick McHardy
2012-08-28 21:48 ` [PATCH 02/19] Cleaning up the IPv6 MTU checking in the IPVS xmit code, by using a common helper function __mtu_check_toobig_v6() Patrick McHardy
2012-08-29  8:02   ` Jesper Dangaard Brouer
2012-08-29 12:24     ` Patrick McHardy
2012-08-30  1:01       ` Pablo Neira Ayuso
2012-08-28 21:48 ` [PATCH 03/19] netfilter: nf_conntrack_ipv6: improve fragmentation handling Patrick McHardy
2012-08-29  8:21   ` Jesper Dangaard Brouer
2012-08-29 12:27     ` Patrick McHardy
2012-08-30  3:06       ` Pablo Neira Ayuso [this message]
2012-08-30  6:54         ` Patrick McHardy
2012-08-28 21:48 ` [PATCH 04/19] netfilter: nf_conntrack_ipv6: fix tracking of ICMPv6 error messages containing fragments Patrick McHardy
2012-08-28 21:48 ` [PATCH 05/19] netfilter: nf_conntrack: restrict NAT helper invocation to IPv4 Patrick McHardy
2012-08-28 21:48 ` [PATCH 06/19] netfilter: nf_nat: add protoff argument to packet mangling functions Patrick McHardy
2012-08-28 21:48 ` [PATCH 07/19] netfilter: add protocol independent NAT core Patrick McHardy
2012-08-28 21:48 ` [PATCH 08/19] netfilter: ipv6: expand skb head in ip6_route_me_harder after oif change Patrick McHardy
2012-08-28 21:48 ` [PATCH 09/19] net: core: add function for incremental IPv6 pseudo header checksum updates Patrick McHardy
2012-08-28 21:48 ` [PATCH 10/19] netfilter: ipv6: add IPv6 NAT support Patrick McHardy
2012-08-28 21:48 ` [PATCH 11/19] netfilter: ip6tables: add MASQUERADE target Patrick McHardy
2012-08-28 21:48 ` [PATCH 12/19] netfilter: ip6tables: add REDIRECT target Patrick McHardy
2012-08-28 21:48 ` [PATCH 13/19] netfilter: ip6tables: add NETMAP target Patrick McHardy
2012-08-28 21:48 ` [PATCH 14/19] netfilter: nf_nat: support IPv6 in FTP NAT helper Patrick McHardy
2012-08-28 21:48 ` [PATCH 15/19] netfilter: nf_nat: support IPv6 in amanda " Patrick McHardy
2012-08-28 21:48 ` [PATCH 16/19] netfilter: nf_nat: support IPv6 in SIP " Patrick McHardy
2012-08-28 21:48 ` [PATCH 17/19] netfilter: nf_nat: support IPv6 in IRC " Patrick McHardy
2012-08-28 21:48 ` [PATCH 18/19] netfilter: nf_nat: support IPv6 in TFTP " Patrick McHardy
2012-08-28 21:48 ` [PATCH 19/19] netfilter: ip6tables: add stateless IPv6-to-IPv6 Network Prefix Translation target Patrick McHardy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120830030635.GA17583@1984 \
    --to=pablo@netfilter.org \
    --cc=hawk@diku.dk \
    --cc=kaber@trash.net \
    --cc=netdev@vger.kernel.org \
    --cc=netfilter-devel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).