Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1495247

Re: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay L2

From James Chapman <jchapman@katalix.com>
Newsgroups linux.kernel
Subject Re: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay L2
Date 2016-10-04 10:00 +0200
Message-ID <sosNP-87P-19@gated-at.bofh.it> (permalink)
References <skjg6-2JH-33@gated-at.bofh.it> <smLrz-5OR-11@gated-at.bofh.it> <smW3E-4iP-3@gated-at.bofh.it> <snvNM-2Ll-3@gated-at.bofh.it> <sooqR-5eb-5@gated-at.bofh.it>
Organization Katalix Systems Ltd

Show all headers | View raw


On 04/10/16 04:12, R. Parameswaran wrote:
>
> Hi James, 
>
> Please see inline, thanks for the reply:
>
> On Sat, 1 Oct 2016, James Chapman wrote:
>
>> On 30/09/16 03:39, R. Parameswaran wrote:
>>>>> +	/* Adjust MTU, factor overhead - underlay L3 hdr, overlay L2 hdr*/
>>>>> +	if (tunnel->sock->sk_family == AF_INET)
>>>>> +		overhead += (ETH_HLEN + sizeof(struct iphdr));
>>>>> +	else if (tunnel->sock->sk_family == AF_INET6)
>>>>> +		overhead += (ETH_HLEN + sizeof(struct ipv6hdr));
>>>> What about options in the IP header? If certain options are set on the
>>>> socket, the IP header may be larger.
>>>>
>>> Thanks for the reply - It looks like IP options can only be 
>>> enabled through setsockopt on an application's socket (if there's any 
>>> other way to turn on IP options, please let me know - didn't see any 
>>> sysctl setting for transmit). This scenario would come 
>>> into picture when an application opens a raw IP or UDP socket such that it 
>>> routes into the L2TP logical interface.
>> No. An L2TP daemon (userspace) will open a socket for each tunnel that
>> it creates. Control and data packets use the same socket, which is the
>> socket used by this code. It may set any options on its sockets. L2TP
>> tunnel sockets can be created either by an L2TP daemon (managed tunnels)
>> or by ip l2tp commands (unmanaged tunnels).
>>
> One Q I have is whether it would be sufficient to solve this for the
> common case (i.e no IP options) and have an expectation that the 
> administrator will explicitly provision the mtu using the 'ip link ... 
> mtu'  command when dealing with infrequent occurences like IP options? 
>
> But looking at the code, it looks to be possible to pick up whether 
> options are enabled and how long the options are, from the ip_options struct 
> embedded in the tunnel socket. If you want me to, I can repost the patch
> with this change (will need a few days) - please let me know if this is 
> what you had in mind.
>
>
Yes, that's what I had in mind. But my preference would be that this
would be a new function in the ip core, for use by any encap protocol,
where appropriate.

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay L2 James Chapman <jchapman@katalix.com> - 2016-09-29 17:30 +0200
  Re: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay  L2 "R. Parameswaran" <parameswaran.r7@gmail.com> - 2016-09-30 04:50 +0200
    Re: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay L2 James Chapman <jchapman@katalix.com> - 2016-10-01 19:00 +0200
      Re: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay  L2 "R. Parameswaran" <parameswaran.r7@gmail.com> - 2016-10-04 05:20 +0200
        Re: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay L2 James Chapman <jchapman@katalix.com> - 2016-10-04 10:00 +0200
          Re: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay L2 James Chapman <jchapman@katalix.com> - 2016-10-11 09:50 +0200

csiph-web