[Openvpn-devel] Adapt to RegGetValue brokenness in Windows 7

Message ID 1519191510-3826-1-git-send-email-selva.nair@gmail.com
State Accepted
Headers show
Series [Openvpn-devel] Adapt to RegGetValue brokenness in Windows 7 | expand

Commit Message

Selva Nair Feb. 20, 2018, 6:38 p.m. UTC
From: Selva Nair <selva.nair@gmail.com>

- RegGetValue with flags = RRF_RT_REG_SZ|RRF_RT_REG_EXPAND_SZ
  fails in Windows 7 with an "invalid parameter" error.
  Fix by using RRF_RT_REG_SZ alone.

Note: This is not a regression as in no released version did the
service support expandable strings (ones with embedded %FOO%) in
the registry. However, the GUI does expand such strings. The two
can be made consistent by explicitly expanding the strings -- that
is left for a future patch.

Signed-off-by: Selva Nair <selva.nair@gmail.com>
---
 src/openvpnserv/common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Gert Doering Feb. 21, 2018, 7:47 a.m. UTC | #1
Acked-by: Gert Doering <gert@greenie.muc.de>

Patch matches the problem discussed in the mail thread here and on
stackoverflow (RRF_RT_REG_SZ|RRF_RT_REG_EXPAND_SZ broken on Win7),
cross compiled on ubuntu 16.04, installed & tested on Win7/64, and 
works again :-)

Thanks.

Your patch has been applied to the master and release/2.4 branch.

commit 7de0ee4f6f6f44fab48717e4cc2073ff4e8580f6 (master)
commit e9b85ebd2895fda85daeb15a9794d5a2e3a79fab (release/2.4)
Author: Selva Nair
Date:   Wed Feb 21 00:38:30 2018 -0500

     Adapt to RegGetValue brokenness in Windows 7

     Signed-off-by: Selva Nair <selva.nair@gmail.com>
     Acked-by: Gert Doering <gert@greenie.muc.de>
     Message-Id: <1519191510-3826-1-git-send-email-selva.nair@gmail.com>
     URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg16513.html
     Signed-off-by: Gert Doering <gert@greenie.muc.de>


--
kind regards,

Gert Doering


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot

Patch

diff --git a/src/openvpnserv/common.c b/src/openvpnserv/common.c
index 6c29f57..dc47666 100644
--- a/src/openvpnserv/common.c
+++ b/src/openvpnserv/common.c
@@ -59,7 +59,7 @@  openvpn_sntprintf(LPTSTR str, size_t size, LPCTSTR format, ...)
 static DWORD
 GetRegString(HKEY key, LPCTSTR value, LPTSTR data, DWORD size, LPCTSTR default_value)
 {
-    LONG status = RegGetValue(key, NULL, value, RRF_RT_REG_SZ|RRF_RT_REG_EXPAND_SZ,
+    LONG status = RegGetValue(key, NULL, value, RRF_RT_REG_SZ,
                               NULL, (LPBYTE) data, &size);
 
     if (status == ERROR_FILE_NOT_FOUND && default_value)