[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <c9185b5b-942d-4927-8171-f3460619aed1@openvpn.net>
Date: Sat, 23 Nov 2024 23:52:54 +0100
From: Antonio Quartulli <antonio@...nvpn.net>
To: Sergey Ryazanov <ryazanov.s.a@...il.com>
Cc: Andrew Lunn <andrew@...n.ch>, Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>,
Donald Hunter <donald.hunter@...il.com>, Shuah Khan <shuah@...nel.org>,
sd@...asysnail.net, netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-kselftest@...r.kernel.org
Subject: Re: [PATCH net-next v11 05/23] ovpn: keep carrier always on
On 23/11/2024 23:25, Sergey Ryazanov wrote:
> On 21.11.2024 23:17, Antonio Quartulli wrote:
>> On 20/11/2024 23:56, Sergey Ryazanov wrote:
>>> On 15.11.2024 16:13, Antonio Quartulli wrote:
>>>> On 09/11/2024 02:11, Sergey Ryazanov wrote:
>>>>> On 29.10.2024 12:47, Antonio Quartulli wrote:
>>>>>> An ovpn interface will keep carrier always on and let the user
>>>>>> decide when an interface should be considered disconnected.
>>>>>>
>>>>>> This way, even if an ovpn interface is not connected to any peer,
>>>>>> it can still retain all IPs and routes and thus prevent any data
>>>>>> leak.
>>>>>>
>>>>>> Signed-off-by: Antonio Quartulli <antonio@...nvpn.net>
>>>>>> Reviewed-by: Andrew Lunn <andrew@...n.ch>
>>>>>> ---
>>>>>> drivers/net/ovpn/main.c | 7 +++++++
>>>>>> 1 file changed, 7 insertions(+)
>>>>>>
>>>>>> diff --git a/drivers/net/ovpn/main.c b/drivers/net/ovpn/main.c
>>>>>> index
>>>>>> eead7677b8239eb3c48bb26ca95492d88512b8d4..eaa83a8662e4ac2c758201008268f9633643c0b6 100644
>>>>>> --- a/drivers/net/ovpn/main.c
>>>>>> +++ b/drivers/net/ovpn/main.c
>>>>>> @@ -31,6 +31,13 @@ static void ovpn_struct_free(struct net_device
>>>>>> *net)
>>>>>> static int ovpn_net_open(struct net_device *dev)
>>>>>> {
>>>>>> + /* ovpn keeps the carrier always on to avoid losing IP or route
>>>>>> + * configuration upon disconnection. This way it can prevent
>>>>>> leaks
>>>>>> + * of traffic outside of the VPN tunnel.
>>>>>> + * The user may override this behaviour by tearing down the
>>>>>> interface
>>>>>> + * manually.
>>>>>> + */
>>>>>> + netif_carrier_on(dev);
>>>>>
>>>>> If a user cares about the traffic leaking, then he can create a
>>>>> blackhole route with huge metric:
>>>>>
>>>>> # ip route add blackhole default metric 10000
>>>>>
>>>>> Why the network interface should implicitly provide this
>>>>> functionality? And on another hand, how a routing daemon can learn
>>>>> a topology change without indication from the interface?
>>>>
>>>> This was discussed loooong ago with Andrew. Here my last response:
>>>>
>>>> https://lore.kernel.org/all/d896bbd8-2709-4834-a637-
>>>> f982fc51fc57@...nvpn.net/
>>>
>>> Thank you for sharing the link to the beginning of the conversation.
>>> Till the moment we have 3 topics regarding the operational state
>>> indication:
>>> 1. possible absence of a conception of running state,
>>> 2. influence on routing protocol implementations,
>>> 3. traffic leaking.
>>>
>>> As for conception of the running state, it should exists for
>>> tunneling protocols with a state tracking. In this specific case, we
>>> can assume interface running when it has configured peer with keys.
>>> The protocol even has nice feature for the connection monitoring -
>>> keepalive.
>>
>> What about a device in MP mode? It doesn't make sense to turn the
>> carrier off when the MP node has no peers connected.
>> At the same time I don't like having P2P and MP devices behaving
>> differently in this regard.
>
> MP with a single network interface is an endless headache. Indeed. On
> the other hand, penalizing P2P users just because protocol support MP
> doesn't look like a solution either.
On the upper side, with "iroutes" implemented using the system routing
table, routing protocols will be able to detect new routes only when the
related client has connected. (The same for the disconnection)
But this is a bit orthogonal compared to the oper state.
>
>> Therefore keeping the carrier on seemed the most logical way forward
>> (at least for now - we can still come back to this once we have
>> something smarter to implement).
>
> It was shown above how to distinguish between running and non-running
> cases.
>
> If an author doesn't want to implement operational state indication now,
> then I'm Ok with it. Not a big deal now. I just don't like the idea to
> promote the abuse of the running state indicator. Please see below.
>
>>> Routing protocols on one hand could benefit from the operational
>>> state indication. On another hand, hello/hold timer values mentioned
>>> in the documentation are comparable with default routing protocols
>>> timers. So, actual improvement is debatable.
>>>
>>> Regarding the traffic leading, as I mentioned before, the blackhole
>>> route or a firewall rule works better then implicit blackholing with
>>> a non-running interface.
>>>
>>> Long story short, I agree that we might not need a real operational
>>> state indication now. Still protecting from a traffic leaking is not
>>> good enough justification.
>>
>> Well, it's the so called "persistent interface" concept in VPNs: leave
>> everything as is, even if the connection is lost.
>
> It's called routing framework abuse. The IP router will choose the route
> and the egress interface not because this route is a good option to
> deliver a packet, but because someone trick it.
This is what the user wants.
OpenVPN (userspace) will tear down the P2P interface upon disconnection,
assuming the --persist-tun option was not specified by the user.
So the interface is gone in any case.
By keeping the netcarrier on we are just ensuring that, if the user
wanted persist-tun, the iface is not actually making decisions on its own.
With a tun interface this can be done, now you want to basically drop
this feature that existed for long time and break existing setups.
>
> At some circumstance, e.g. Android app, it could be the only way to
> prevent traffic leaking. But these special circumstances do not make
> solution generic and eligible for inclusion into the mainline code.
Why not? We are not changing the general rule, but just defining a
specific behaviour for a specific driver.
For example, I don't think a tun interface goes down when there is no
socket attached to it, still packets are just going to be blackhole'd in
that case. No?
>
>> I know it can be implemented in many other different ways..but I don't
>> see a real problem with keeping this way.
>
> At least routing protocols and network monitoring software will not be
> happy to see a dead interface pretending that it's still running.
They won't know that the interface is disconnected, they will possibly
just see traffic being dropped.
> Generally speaking, saying that interface is running, when module knows
> for sure that a packet can not be delivered is a user misguiding.
Or a feature, wanted by the user.
>
>> A blackhole/firewall can still be added if the user prefers (and not
>> use the persistent interface).
>
> The solution with false-indication is not so reliable as it might look.
> Interface shutdown, inability of a user-space application to start,
> user-space application crash, user-space application restart, each of
> them will void the trick. Ergo, blackhole/firewall must be employed by a
> security concerned user. What makes the proposed feature odd.
Yeah, this is what other VPN clients call "kill switch".
Persist-tun is just one piece of the puzzle, yet important.
>
> To summaries, I'm Ok if this change will be merged with a comment like
> "For future study" or "To be done" or "To be implemented". But a comment
> like "to prevent traffic leaking" or any other comment implying a
> "breakthrough security feature" will have a big NACK from my side.
What if the comment redirects the user to --persist-tun option in order
to clarify the context and the wanted behaviour?
Would that help?
>
> --
> Sergey
--
Antonio Quartulli
OpenVPN Inc.
Powered by blists - more mailing lists