lkml.org 
[lkml]   [2016]   [Oct]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH net v2] L2TP:Adjust intf MTU,factor underlay L3,overlay L2
From
Date
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).

> If you take the case of a plain IP (ethernet) interface, even if an
> application opened a socket turning on IP options, it would not change
> the MTU of the underlying interface, and it would not affect other
> applications transacting packets on the same interface. I know its not an
> exact parallel to this case, but since the IP option control is per
> application, we probably should not factor it into the L2TP logical interface?
> We cannot affect other applications/processes running on the same L2TP
> tunnel. Also, since the application using IP options knows that it has turned
> on IP options, maybe we can count on it to factor the size of the options
> into the size of the payload it sends into the socket, or set the mtu on the
> L2TP interface through config?

No. See above.

>
> Other than this, I don't see keepalives or anything else in which the
> kernel will source its own packet into the L2TP interface, outside of
> an application injected packet - if there is something like that, please
> let me know. The user space L2TP daemon would probably fall in the
> category of applications.
>
> thanks,
>
> Ramkumar
>
>


\
 
 \ /
  Last update: 2016-10-01 18:51    [W:2.050 / U:2.284 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site