]> git.ipfire.org Git - thirdparty/openvpn.git/commit - src/openvpn/init.c
Fix fatal error at switching remotes (#629)
authorVladislav Grishenko <themiron@yandex-team.ru>
Wed, 16 Sep 2020 14:17:55 +0000 (19:17 +0500)
committerGert Doering <gert@greenie.muc.de>
Thu, 17 Sep 2020 08:32:20 +0000 (10:32 +0200)
commit3ad86c2534a92af137809b6d446d570193e6d01f
tree265c4dacf9d27f23f1b26f36d569459822f48326
parent6345cea86bde14b22a8024cad5026a7d302db25c
Fix fatal error at switching remotes (#629)

If remote server has been resolved to multiple addresses, at
least one connection attempt has been made and connection to
the last address was skipped by management - resolved earlier
link socket addrinfo objects will not be cleared neither on
instance close nor in the next connection entry loop.
This causes fatal error assert:

    >REMOTE:openvpn.net,1194,udp
    remote ACCEPT
    SUCCESS: remote command succeeded
    >REMOTE:openvpn.net,1194,udp
    remote SKIP
    SUCCESS: remote command succeeded
    >FATAL:Assertion failed at init.c:504
(c->c1.link_socket_addr.current_remote == NULL)

Fix this behaviour by cleaning stale addrinfo objects.

v2: better comment placement and too long length fix

Signed-off-by: Vladislav Grishenko <themiron@yandex-team.ru>
Acked-by: Lev Stipakov <lstipakov@gmail.com>
Message-Id: <20200916141755.1923-1-themiron@yandex-team.ru>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg21019.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
src/openvpn/init.c