@@ -339,4 +339,16 @@ dco_check_option_conflict(int msglevel, const struct options *o)
return true;
}
+bool
+dco_check_pull_options(int msglevel, const struct options *o)
+{
+ if (!o->use_peer_id)
+ {
+ msg(msglevel, "OPTIONS IMPORT: Server did not request DATA_V2 packet "
+ "format required for data channel offload");
+ return false;
+ }
+ return true;
+}
+
#endif /* defined(ENABLE_DCO) */
@@ -65,6 +65,17 @@ bool dco_available(int msglevel);
*/
bool dco_check_option_conflict(int msglevel, const struct options *o);
+/**
+ * Check whether any of the options pushed by the server is not supported by
+ * our current dco implementation. If so print a warning at warning level
+ * for the first conflicting option found and return false.
+ *
+ * @param msglevel the msg level to use to print the warnings
+ * @param o the options struct that hold the options
+ * @return true if no conflict was detected, false otherwise
+ */
+bool dco_check_pull_options(int msglevel, const struct options *o);
+
/**
* Initialize the DCO context
*
@@ -154,6 +165,12 @@ dco_check_option_conflict(int msglevel, const struct options *o)
return false;
}
+static inline bool
+dco_check_pull_options(int msglevel, const struct options *o)
+{
+ return false;
+}
+
static inline bool
ovpn_dco_init(int mode, dco_context_t *dco)
{
@@ -2366,6 +2366,17 @@ finish_options(struct context *c)
return false;
}
+ /* Check if the pushed options are compatible with DCO if we have
+ * DCO enabled */
+ if (dco_enabled(&c->options) && !dco_check_pull_options(D_TLS_ERRORS,
+ &c->options))
+ {
+ msg(D_TLS_ERRORS, "OPTIONS ERROR: pushed options are incompatible with "
+ "data channel offload. Use --disable-dco to connect"
+ "to this server");
+ return false;
+ }
+
return true;
}
A server may push options that are not compatible with DCO. In this case we should log a message and bail out. Signed-off-by: Antonio Quartulli <a@unstable.cc> --- Changes from v1: * move check_dco_pull_options() to dco.c (renamed to dco_check_pull_options()) * make options argument const * add msglevel as first argument src/openvpn/dco.c | 12 ++++++++++++ src/openvpn/dco.h | 17 +++++++++++++++++ src/openvpn/init.c | 11 +++++++++++ 3 files changed, 40 insertions(+)