From: Jesse Gross <je...@kernel.org> Date: Mon, 7 Mar 2016 15:42:59 -0800
> On Mon, Mar 7, 2016 at 3:06 PM, Alex Duyck <adu...@mirantis.com> wrote: >> On Mon, Mar 7, 2016 at 11:09 AM, David Miller <da...@davemloft.net> wrote: >>> From: Or Gerlitz <gerlitz...@gmail.com> >>> Date: Mon, 7 Mar 2016 20:05:20 +0200 >>> >>>> On Mon, Mar 7, 2016 at 7:22 PM, Alexander Duyck <adu...@mirantis.com> >>>> wrote: >>>>> This change enforces the IP ID verification on outer headers. As a result >>>>> if the DF flag is not set on the outer header we will force the flow to be >>>>> flushed in the event that the IP ID is out of sequence with the existing >>>>> flow. >>>> >>>> Can you please state the precise requirement for aggregation w.r.t IP >>>> IDs here? and point to where/how this is enforced, e.g for >>>> non-tunneled TCP GRO-ing? >>> >>> I also didn't see a nice "PATCH 0/4" posting explaining this series and >>> I'd really like to see that. >> >> Sorry about that. I forgot to add the cover page when I sent this. >> >> The enforcement is coming from the IP and TCP layers. If you take a >> look in inet_gro_receive we have the NAPI_GRO_CB(p)->flush_id value >> being populated based on the difference between the expected ID and >> the received one. So for IPv4 we overwrite it, and for IPv6 we set it >> to 0. The only consumer currently using it is TCP in tcp_gro_receive. >> The problem is with tunnels we lose the data for the outer when the >> inner overwrites it, as a result we can put whatever we want currently >> in the outer IP ID and it will be accepted. >> >> The patch set is based off of a conversation several of us had on the >> list about doing TSO for tunnels and the fact that the IP IDs for the >> outer header have to advance. It makes it easier for me to validate >> that I am doing things properly if GRO doesn't destroy the IP ID data >> for the outer headers. > > In net/ipv4/af_inet.c:inet_gro_receive() there is the following > comment above where NAPI_GRO_CB(p)->flush_id is set: > > /* Save the IP ID check to be included later when we get to > * the transport layer so only the inner most IP ID is checked. > * This is because some GSO/TSO implementations do not > * correctly increment the IP ID for the outer hdrs. > */ > > There was a long discussion about this a couple years ago and the > conclusion was that it is the inner IP ID is really the important one > in the case of encapsulation. Obviously, things like TCP/IP header > compression don't apply to the outer encapsulation header. That's how I remember the conversation going as wel...