* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets [not found] <bug-14837-10286@http.bugzilla.kernel.org/> @ 2009-12-18 23:32 ` Andrew Morton 2009-12-18 23:47 ` Stephen Hemminger 2009-12-19 12:55 ` jamal 0 siblings, 2 replies; 9+ messages in thread From: Andrew Morton @ 2009-12-18 23:32 UTC (permalink / raw) To: netdev; +Cc: bugzilla-daemon, bugme-daemon, benoit.papillault, Jamal Hadi Salim (switched to email. Please respond via emailed reply-to-all, not via the bugzilla web interface). On Fri, 18 Dec 2009 23:10:01 GMT bugzilla-daemon@bugzilla.kernel.org wrote: > http://bugzilla.kernel.org/show_bug.cgi?id=14837 > > Summary: gretap does not fragment IP packets > Product: Networking > Version: 2.5 > Kernel Version: 2.6.32 > Platform: All > OS/Version: Linux > Tree: Mainline > Status: NEW > Severity: normal > Priority: P1 > Component: IPV4 > AssignedTo: shemminger@linux-foundation.org > ReportedBy: benoit.papillault@free.fr > Regression: No > > > When gretap is used to encapsulate Ethernet packets into IP packets, the > encapsulated IP packets are larger than the original Ethernet packet, as > expected. > > Let's say you create a gre0 interface with a 1500 bytes MTU (since this > interface will latter be inserted in a bridge interface, its MTU must be 1500). > And Let's say the GRE encapsulated packet (now larger than 1500 bytes) is going > to be routed over an IP interface with a 1500 bytes MTU. > > The expected behavior would be that the encapsulated packet be fragmented. The > observed behavior is that any encapsulated packets over 1500 bytes are simply > dropped and an ICMP "fragmentation needed" message is sent to ... who knows. > > My feeling is that DF bit is not playing nice here. > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets 2009-12-18 23:32 ` [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets Andrew Morton @ 2009-12-18 23:47 ` Stephen Hemminger 2009-12-19 12:55 ` jamal 1 sibling, 0 replies; 9+ messages in thread From: Stephen Hemminger @ 2009-12-18 23:47 UTC (permalink / raw) To: Andrew Morton Cc: netdev, bugzilla-daemon, bugme-daemon, benoit.papillault, Jamal Hadi Salim On Fri, 18 Dec 2009 15:32:09 -0800 Andrew Morton <akpm@linux-foundation.org> wrote: > > > > The expected behavior would be that the encapsulated packet be fragmented. The > > observed behavior is that any encapsulated packets over 1500 bytes are simply > > dropped and an ICMP "fragmentation needed" message is sent to ... who knows. > > > > My feeling is that DF bit is not playing nice here. > > TCP uses DF bit to do path mtu discovery. If your firewall et all, doesn't do ICMP correctly, then this is the classic TCP path MTU discovery ICMP blackhole problem. http://www.ietf.org/rfc/rfc2923.txt ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets 2009-12-18 23:32 ` [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets Andrew Morton 2009-12-18 23:47 ` Stephen Hemminger @ 2009-12-19 12:55 ` jamal 2009-12-21 1:17 ` Benoit PAPILLAULT 1 sibling, 1 reply; 9+ messages in thread From: jamal @ 2009-12-19 12:55 UTC (permalink / raw) To: Andrew Morton; +Cc: netdev, bugzilla-daemon, bugme-daemon, benoit.papillault On Fri, 2009-12-18 at 15:32 -0800, Andrew Morton wrote: > (switched to email. Please respond via emailed reply-to-all, not via the > bugzilla web interface). > > On Fri, 18 Dec 2009 23:10:01 GMT > bugzilla-daemon@bugzilla.kernel.org wrote: > > > http://bugzilla.kernel.org/show_bug.cgi?id=14837 > > > > Summary: gretap does not fragment IP packets > > Product: Networking > > Version: 2.5 > > Kernel Version: 2.6.32 > > Platform: All > > OS/Version: Linux > > Tree: Mainline > > Status: NEW > > Severity: normal > > Priority: P1 > > Component: IPV4 > > AssignedTo: shemminger@linux-foundation.org > > ReportedBy: benoit.papillault@free.fr > > Regression: No > > > > > > When gretap is used to encapsulate Ethernet packets into IP packets, the > > encapsulated IP packets are larger than the original Ethernet packet, as > > expected. > > > > Let's say you create a gre0 interface with a 1500 bytes MTU (since this > > interface will latter be inserted in a bridge interface, its MTU must be 1500). > > And Let's say the GRE encapsulated packet (now larger than 1500 bytes) is going > > to be routed over an IP interface with a 1500 bytes MTU. > > > > The expected behavior would be that the encapsulated packet be fragmented. The > > observed behavior is that any encapsulated packets over 1500 bytes are simply > > dropped and an ICMP "fragmentation needed" message is sent to ... who knows. Sending back an ICMP is good behavior. Sending it "who knows" is not ;-> Make sure it is sent to the originator of the packet. The originator of the packet should play nice and reduce the path mtu. One work around is to reduce the gre device mtu to something less than 1500B. cheers, jamal ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets 2009-12-19 12:55 ` jamal @ 2009-12-21 1:17 ` Benoit PAPILLAULT 2009-12-21 19:09 ` jamal 0 siblings, 1 reply; 9+ messages in thread From: Benoit PAPILLAULT @ 2009-12-21 1:17 UTC (permalink / raw) To: hadi; +Cc: Andrew Morton, netdev, bugzilla-daemon, bugme-daemon jamal a écrit : > Sending back an ICMP is good behavior. Sending it "who knows" is not ;-> > Make sure it is sent to the originator of the packet. The originator of > the packet should play nice and reduce the path mtu. > > One work around is to reduce the gre device mtu to something less than > 1500B. > > cheers, > jamal > > > As I explained in my original message, the gre device MTU must be 1500 bytes (since it is used in an Ethernet bridge). To reproduce the problem, I did a very simple setup with two machines (A & B) connected with an Ethernet cable (so no router between them). On machine A : # ip link add gre0 type gretap local <A> remote <B> # ifconfig gre0 mtu 1500 # ifconfig gre0 192.192.192.1 up On machine B: # ip link add gre0 type gretap local <B> remote <A> # ifconfig gre0 mtu 1500 # ifconfig gre0 192.192.192.2 up On machine A: # ping 192.192.192.2 => working # ping -s 1434 192.192.192.2 => working, match a GRE packet of 1500 bytes # ping -s 1435 192.192.192.2 => not working, match a GRE packet of 1501 bytes (1435+8+20+38) # ping -s 1472 192.192.192.2 => not working, match an IP packet of 1500 bytes Doing a tcpdump on the machine (like tcpdump -pni any) shows that ICMP packets are simply dropped! Using tracepath 192.192.192.2, a tcpdump -pni lo shows : IP 192.192.192.1 > 192.192.192.1: ICMP 192.192.192.2 unreachable - need to frag (mtu 1500), length 556 Regards, Benoit ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets 2009-12-21 1:17 ` Benoit PAPILLAULT @ 2009-12-21 19:09 ` jamal 2010-01-07 14:30 ` Benoit PAPILLAULT 0 siblings, 1 reply; 9+ messages in thread From: jamal @ 2009-12-21 19:09 UTC (permalink / raw) To: Benoit PAPILLAULT; +Cc: Andrew Morton, netdev, bugzilla-daemon, bugme-daemon On Mon, 2009-12-21 at 02:17 +0100, Benoit PAPILLAULT wrote: > > > As I explained in my original message, the gre device MTU must be 1500 > bytes (since it is used in an Ethernet bridge). Ok, sorry i missed this bit. I didnt realize that the bridge device had such draconian enforcement. Bridge picks whatever the lowest common denominator is for MTU (I suspect so as to not keep track of all the interfaces; good policy, IMO, should allow a user to shoot themselves in the toe while defaulting to the min mtu). >From the looks of it, this enforcement could be changed with a one line patch - but not being privy to the reasoning it would be unfair of me to do so from my comfortable couch. Stephen? > To reproduce the > problem, I did a very simple setup with two machines (A & B) connected > with an Ethernet cable (so no router between them). > > On machine A : > # ip link add gre0 type gretap local <A> remote <B> > # ifconfig gre0 mtu 1500 What i meant is try to ifconfig gre0 to something small like 1420B cheers, jamal ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets 2009-12-21 19:09 ` jamal @ 2010-01-07 14:30 ` Benoit PAPILLAULT 2010-01-10 16:03 ` jamal 0 siblings, 1 reply; 9+ messages in thread From: Benoit PAPILLAULT @ 2010-01-07 14:30 UTC (permalink / raw) To: hadi; +Cc: Andrew Morton, netdev, bugzilla-daemon, bugme-daemon First of all, my best wishes for year 2010! Any comments on the patch I sent? Should I send it on a mailing list for a broader audience? Regards, Benoit ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets 2010-01-07 14:30 ` Benoit PAPILLAULT @ 2010-01-10 16:03 ` jamal 2010-01-10 17:43 ` Benoit PAPILLAULT 0 siblings, 1 reply; 9+ messages in thread From: jamal @ 2010-01-10 16:03 UTC (permalink / raw) To: Benoit PAPILLAULT Cc: Andrew Morton, netdev, bugzilla-daemon, bugme-daemon, Stephen Hemminger, Herbert Xu Salut Benoit, I didnt see any patch... Also did you try changing the mtu per suggestion i made? People tend to be busy and sometimes dont read the mailing list. To get proper answers, always CC the maintainers. In this case CC Stephen Hemminger - he maintains the bridging code. I am ccing Herbert Xu as well - he may have opinions on the gre side of things. My suggestion is you repost your issue along with your patch and describe why it solves your problem. cheers, jamal On Thu, 2010-01-07 at 15:30 +0100, Benoit PAPILLAULT wrote: > First of all, my best wishes for year 2010! > > Any comments on the patch I sent? Should I send it on a mailing list for > a broader audience? > > Regards, > Benoit > > -- > 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 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets 2010-01-10 16:03 ` jamal @ 2010-01-10 17:43 ` Benoit PAPILLAULT 2010-01-10 21:59 ` Herbert Xu 0 siblings, 1 reply; 9+ messages in thread From: Benoit PAPILLAULT @ 2010-01-10 17:43 UTC (permalink / raw) To: hadi Cc: Andrew Morton, netdev, bugzilla-daemon, bugme-daemon, Stephen Hemminger, Herbert Xu Hello Jamal, jamal a écrit : > Salut Benoit, > > I didnt see any patch... > > Also did you try changing the mtu per suggestion i made? > I cannot changed the MTU by design since I need to have the gretap interface be part of an Ethernet bridge. > People tend to be busy and sometimes dont read the mailing list. To > get proper answers, always CC the maintainers. In this case CC Stephen > Hemminger - he maintains the bridging code. I am ccing Herbert Xu as > well - he may have opinions on the gre side of things. My suggestion is > you repost your issue along with your patch and describe why it solves > your problem. > I know people can be busy, I am just trying to push things forward. Original bug is there : http://bugzilla.kernel.org/show_bug.cgi?id=14837 Patch is available here : http://bugzilla.kernel.org/attachment.cgi?id=24332 This patch fixes my issue since either packets get fragmented or an ICMP error packet is sent back to the sender. Regards, Benoit PS: Congrats to Herbert Xu which fixes a bug in gretap before I had the time to report it (was about the broadcast addr which was incorrect). > cheers, > jamal > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets 2010-01-10 17:43 ` Benoit PAPILLAULT @ 2010-01-10 21:59 ` Herbert Xu 0 siblings, 0 replies; 9+ messages in thread From: Herbert Xu @ 2010-01-10 21:59 UTC (permalink / raw) To: Benoit PAPILLAULT Cc: hadi, Andrew Morton, netdev, bugzilla-daemon, bugme-daemon, Stephen Hemminger, David S. Miller On Sun, Jan 10, 2010 at 06:43:56PM +0100, Benoit PAPILLAULT wrote: > > I know people can be busy, I am just trying to push things forward. > Original bug is there : > http://bugzilla.kernel.org/show_bug.cgi?id=14837 > > Patch is available here : > http://bugzilla.kernel.org/attachment.cgi?id=24332 > > This patch fixes my issue since either packets get fragmented or an ICMP > error packet is sent back to the sender. I was actually working on this back in November before getting side-tracked by travelling. I'll look into this again. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2010-01-10 22:00 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <bug-14837-10286@http.bugzilla.kernel.org/>
2009-12-18 23:32 ` [Bugme-new] [Bug 14837] New: gretap does not fragment IP packets Andrew Morton
2009-12-18 23:47 ` Stephen Hemminger
2009-12-19 12:55 ` jamal
2009-12-21 1:17 ` Benoit PAPILLAULT
2009-12-21 19:09 ` jamal
2010-01-07 14:30 ` Benoit PAPILLAULT
2010-01-10 16:03 ` jamal
2010-01-10 17:43 ` Benoit PAPILLAULT
2010-01-10 21:59 ` Herbert Xu
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).