lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1cf97615-a38d-48c3-9e23-4ba82012b32d@gmail.com>
Date: Sun, 24 Nov 2024 00:25:03 +0200
From: Sergey Ryazanov <ryazanov.s.a@...il.com>
To: Antonio Quartulli <antonio@...nvpn.net>
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 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.

> 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.

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.

> 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. 
Generally speaking, saying that interface is running, when module knows 
for sure that a packet can not be delivered is a user misguiding.

> 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.

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.

--
Sergey

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ