In order to provide better support in case of troubleshooting issues,
it's important to know what exact DCO version is loaded on the user
system.
Therefore print the DCO version during bootup.
For Windows and FreeBSD we currently implement a placeholder printing 'v0'.
This should be improved with a follow-up patch.
For Linux we directly fetch the module version from /sys and print
something like:
DCO version:
0.1.20230206-15-g580608ec7c59
Change-Id: Ie1f6fa5d12a473d353d84fd119c2430b638e8bcd
Signed-off-by: Antonio Quartulli <a@unstable.cc>
Acked-by: Arne Schwabe <arne@rfc2549.org>
Message-Id: <
20230309131419.29157-1-a@unstable.cc>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg26370.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
*/
bool dco_available(int msglevel);
+
+/**
+ * Return a human readable string representing the DCO version
+ *
+ * @param gc the garbage collector to use for any dynamic allocation
+ * @return a pointer to the string (allocated via gc) containing the string
+ */
+const char *dco_version_string(struct gc_arena *gc);
+
/**
* Check whether the options struct has any option that is not supported by
* our current dco implementation. If so print a warning at warning level
return false;
}
+static inline const char *
+dco_version_string(struct gc_arena *gc)
+{
+ return "not-compiled";
+}
+
static inline bool
dco_check_option(int msglevel, const struct options *o)
{
return available;
}
+const char *
+dco_version_string(struct gc_arena *gc)
+{
+ return "v0";
+}
+
void
dco_event_set(dco_context_t *dco, struct event_set *es, void *arg)
{
"Note: Kernel support for ovpn-dco missing, disabling data channel offload.");
return false;
}
+
return true;
}
+const char *
+dco_version_string(struct gc_arena *gc)
+{
+ struct buffer out = alloc_buf_gc(256, gc);
+ FILE *fp = fopen("/sys/module/ovpn_dco_v2/version", "r");
+ if (!fp)
+ {
+ return "N/A";
+ }
+
+ if (!fgets(BSTR(&out), BCAP(&out), fp))
+ {
+ return "ERR";
+ }
+
+ /* remove potential newline at the end of the string */
+ char *str = BSTR(&out);
+ char *nl = strchr(str, '\n');
+ if (nl)
+ {
+ *nl = '\0';
+ }
+
+ return BSTR(&out);
+}
+
void
dco_event_set(dco_context_t *dco, struct event_set *es, void *arg)
{
return false;
}
+const char *
+dco_version_string(struct gc_arena *gc)
+{
+ return "v0";
+}
+
int
dco_do_read(dco_context_t *dco)
{
#endif
show_library_versions(M_INFO);
+ show_dco_version(M_INFO);
+
/* misc stuff */
pre_setup(&c.options);
}
#endif
+void
+show_dco_version(const unsigned int flags)
+{
+#ifdef ENABLE_DCO
+ struct gc_arena gc = gc_new();
+ msg(flags, "DCO version: %s", dco_version_string(&gc));
+ gc_free(&gc);
+#endif
+}
+
void
show_library_versions(const unsigned int flags)
{
#ifdef _WIN32
show_windows_version( M_INFO|M_NOPREFIX );
#endif
+ show_dco_version(M_INFO | M_NOPREFIX);
msg(M_INFO|M_NOPREFIX, "Originally developed by James Yonan");
msg(M_INFO|M_NOPREFIX, "Copyright (C) 2002-2023 OpenVPN Inc <sales@openvpn.net>");
#ifndef ENABLE_SMALL
#endif
+void show_dco_version(const unsigned int flags);
+
void init_options(struct options *o, const bool init_gc);
void uninit_options(struct options *o);