summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-11-04 21:42:56 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-11-04 21:42:56 +0000
commit373faab1faf0a7c90cbe08c0223dcae5d34be269 (patch)
tree435e343b49d2169848e36043305894e869e24270 /options.c
parent2534aa49c8189cc888e754fff97d4d89541fed54 (diff)
downloadopenvpn-373faab1faf0a7c90cbe08c0223dcae5d34be269.tar.gz
openvpn-373faab1faf0a7c90cbe08c0223dcae5d34be269.tar.xz
openvpn-373faab1faf0a7c90cbe08c0223dcae5d34be269.zip
Added config file option "setenv FORWARD_COMPATIBLE 1" to relax
config file syntax checking to allow directives for future OpenVPN versions to be ignored. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3476 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'options.c')
-rw-r--r--options.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/options.c b/options.c
index 95d81a0..7187d6e 100644
--- a/options.c
+++ b/options.c
@@ -191,6 +191,8 @@ static const char usage_message[] =
" flag to add a direct route to DHCP server, bypassing tunnel.\n"
" Add 'bypass-dns' flag to similarly bypass tunnel for DNS.\n"
"--setenv name value : Set a custom environmental variable to pass to script.\n"
+ "--setenv FORWARD_COMPATIBLE 1 : Relax config file syntax checking to allow\n"
+ " directives for future OpenVPN versions to be ignored.\n"
"--script-security level : 0 -- strictly no calling of external programs\n"
" 1 -- (default) only call built-ins such as ifconfig\n"
" 2 -- allow calling of built-ins and scripts\n"
@@ -3267,6 +3269,12 @@ no_more_than_n_args (const int msglevel,
return true;
}
+static inline int
+msglevel_forward_compatible (struct options *options)
+{
+ return options->forward_compatible ? M_WARN : msglevel;
+}
+
static void
add_option (struct options *options,
char *p[],
@@ -3280,6 +3288,7 @@ add_option (struct options *options,
{
struct gc_arena gc = gc_new ();
const bool pull_mode = BOOL_CAST (permission_mask & OPT_P_PULL_MODE);
+ int msglevel_fc = msglevel_forward_compatible (options);
ASSERT (MAX_PARMS >= 5);
if (!file)
@@ -4377,6 +4386,11 @@ add_option (struct options *options,
else if (streq (p[0], "setenv") && p[1])
{
VERIFY_PERMISSION (OPT_P_GENERAL);
+ if (streq (p[1], "FORWARD_COMPATIBLE") && p[2] && streq (p[2], "1"))
+ {
+ options->forward_compatible = true;
+ msglevel_fc = msglevel_forward_compatible (options);
+ }
setenv_str (es, p[1], p[2] ? p[2] : "");
}
else if (streq (p[0], "setenv-safe") && p[1])
@@ -5540,9 +5554,9 @@ add_option (struct options *options,
else
{
if (file)
- msg (msglevel, "Unrecognized option or missing parameter(s) in %s:%d: %s (%s)", file, line, p[0], PACKAGE_VERSION);
+ msg (msglevel_fc, "Unrecognized option or missing parameter(s) in %s:%d: %s (%s)", file, line, p[0], PACKAGE_VERSION);
else
- msg (msglevel, "Unrecognized option or missing parameter(s): --%s (%s)", p[0], PACKAGE_VERSION);
+ msg (msglevel_fc, "Unrecognized option or missing parameter(s): --%s (%s)", p[0], PACKAGE_VERSION);
}
err:
gc_free (&gc);