i9c
changed/i9c/NetworkManager-libreswan-1.2.22-4.el9_5
parent
2b10e21766
commit
025431104d
@ -1 +1 @@
|
||||
a57014f8a1c360546cb7fed5231efd7cfbf85bf3 SOURCES/NetworkManager-libreswan-1.2.18.tar.xz
|
||||
7f62450f66f2a21789fd6cfebbf3355ae99553ea SOURCES/NetworkManager-libreswan-1.2.22.tar.xz
|
||||
|
@ -1 +1 @@
|
||||
SOURCES/NetworkManager-libreswan-1.2.18.tar.xz
|
||||
SOURCES/NetworkManager-libreswan-1.2.22.tar.xz
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,79 +0,0 @@
|
||||
From 0f0b2d375901e302e8a619e3911321f511b52885 Mon Sep 17 00:00:00 2001
|
||||
From: Beniamino Galvani <bgalvani@redhat.com>
|
||||
Date: Tue, 9 Jan 2024 23:30:42 +0100
|
||||
Subject: [PATCH 1/5] service,properties: add support for leftmodecfgclient
|
||||
|
||||
Previously the plugin always set leftmodecfgclient=yes, which is used
|
||||
for roaming clients to obtain a dynamic IP. In a server-to-server
|
||||
scenario we don't want that option; allow omitting it by passing
|
||||
leftmodecfgclient=no. It's somehow confusing that the new option has
|
||||
the opposite default value than Libreswan, but that's the only way to
|
||||
keep backwards compatibility for existing configurations.
|
||||
---
|
||||
properties/nm-libreswan-dialog.ui | 26 +++++++++++++++++++++++++
|
||||
properties/nm-libreswan-editor-plugin.c | 2 ++
|
||||
properties/nm-libreswan-editor.c | 9 +++++++++
|
||||
shared/nm-service-defines.h | 1 +
|
||||
shared/utils.c | 8 +++++++-
|
||||
src/nm-libreswan-service.c | 1 +
|
||||
6 files changed, 46 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/properties/nm-libreswan-editor-plugin.c b/properties/nm-libreswan-editor-plugin.c
|
||||
index b5c0d9e..89243cc 100644
|
||||
--- a/properties/nm-libreswan-editor-plugin.c
|
||||
+++ b/properties/nm-libreswan-editor-plugin.c
|
||||
@@ -182,6 +182,8 @@ import_from_file (NMVpnEditorPlugin *self,
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTUSERNAME, &str[13]);
|
||||
else if (g_str_has_prefix (str, "leftcert="))
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTCERT, &str[9]);
|
||||
+ else if (nm_streq0 (str, "leftmodecfgclient=no"))
|
||||
+ nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTMODECFGCLIENT, "no");
|
||||
else if (g_str_has_prefix (str, "pfs=no"))
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_PFS, "no");
|
||||
else if (g_str_has_prefix (str, "cisco-unity=yes"))
|
||||
diff --git a/shared/nm-service-defines.h b/shared/nm-service-defines.h
|
||||
index 3fdf2ef..14170ad 100644
|
||||
--- a/shared/nm-service-defines.h
|
||||
+++ b/shared/nm-service-defines.h
|
||||
@@ -41,6 +41,7 @@
|
||||
#define NM_LIBRESWAN_KEY_LEFTID "leftid"
|
||||
#define NM_LIBRESWAN_KEY_LEFTRSASIGKEY "leftrsasigkey"
|
||||
#define NM_LIBRESWAN_KEY_LEFTCERT "leftcert"
|
||||
+#define NM_LIBRESWAN_KEY_LEFTMODECFGCLIENT "leftmodecfgclient"
|
||||
#define NM_LIBRESWAN_KEY_AUTHBY "authby"
|
||||
#define NM_LIBRESWAN_KEY_PSK_VALUE "pskvalue"
|
||||
#define NM_LIBRESWAN_KEY_PSK_INPUT_MODES "pskinputmodes"
|
||||
diff --git a/shared/utils.c b/shared/utils.c
|
||||
index cbc117c..0bac9e6 100644
|
||||
--- a/shared/utils.c
|
||||
+++ b/shared/utils.c
|
||||
@@ -191,7 +191,13 @@ nm_libreswan_config_write (gint fd,
|
||||
else
|
||||
WRITE_CHECK (fd, debug_write_fcn, error, " left=%%defaultroute");
|
||||
|
||||
- WRITE_CHECK (fd, debug_write_fcn, error, " leftmodecfgclient=yes");
|
||||
+ item = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTMODECFGCLIENT);
|
||||
+ if (nm_streq0 (item, "no")) {
|
||||
+ WRITE_CHECK (fd, debug_write_fcn, error, " leftmodecfgclient=no");
|
||||
+ } else {
|
||||
+ WRITE_CHECK (fd, debug_write_fcn, error, " leftmodecfgclient=yes");
|
||||
+ }
|
||||
+
|
||||
if (leftupdown_script)
|
||||
WRITE_CHECK (fd, debug_write_fcn, error, " leftupdown=%s", leftupdown_script);
|
||||
|
||||
diff --git a/src/nm-libreswan-service.c b/src/nm-libreswan-service.c
|
||||
index fc470a6..874f767 100644
|
||||
--- a/src/nm-libreswan-service.c
|
||||
+++ b/src/nm-libreswan-service.c
|
||||
@@ -256,6 +256,7 @@ static ValidProperty valid_properties[] = {
|
||||
{ NM_LIBRESWAN_KEY_LEFTUSERNAME, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_LEFTRSASIGKEY, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_LEFTCERT, G_TYPE_STRING, 0, 0 },
|
||||
+ { NM_LIBRESWAN_KEY_LEFTMODECFGCLIENT, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_AUTHBY, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_DOMAIN, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_DHGROUP, G_TYPE_STRING, 0, 0 },
|
||||
--
|
||||
2.43.0
|
||||
|
@ -1,137 +0,0 @@
|
||||
From 09ee8838162cb6ea097375fb7d8b698566bb1c4d Mon Sep 17 00:00:00 2001
|
||||
From: Beniamino Galvani <bgalvani@redhat.com>
|
||||
Date: Wed, 10 Jan 2024 09:29:50 +0100
|
||||
Subject: [PATCH 2/5] service: use new API to send configuration to NM
|
||||
|
||||
Instead of emitting the "Ip4Config" signal that contains both generic
|
||||
and IPv4 configurations, use the more recent API and send two signals:
|
||||
"Config" for the generic configuration and "Ip4Config" for IPv4
|
||||
configuration.
|
||||
|
||||
In this way, it will be possible in the next commit to return no IPv4
|
||||
configuration at all.
|
||||
---
|
||||
src/nm-libreswan-service.c | 61 +++++++++++++++++++++++++-------------
|
||||
1 file changed, 40 insertions(+), 21 deletions(-)
|
||||
|
||||
diff --git a/src/nm-libreswan-service.c b/src/nm-libreswan-service.c
|
||||
index 874f767..2aca78f 100644
|
||||
--- a/src/nm-libreswan-service.c
|
||||
+++ b/src/nm-libreswan-service.c
|
||||
@@ -1270,16 +1270,14 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
goto out;
|
||||
}
|
||||
|
||||
+ /* First build and send the generic config */
|
||||
g_variant_builder_init (&config, G_VARIANT_TYPE_VARDICT);
|
||||
|
||||
- /* Right peer (or Gateway) */
|
||||
- val = addr4_to_gvariant (lookup_string (env, "PLUTO_PEER"));
|
||||
- if (val)
|
||||
- g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_GATEWAY, val);
|
||||
- else {
|
||||
- _LOGW ("IPsec/Pluto Right Peer (VPN Gateway)");
|
||||
- goto out;
|
||||
- }
|
||||
+ /*
|
||||
+ * Enabled address families
|
||||
+ */
|
||||
+ g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_CONFIG_HAS_IP4, g_variant_new_boolean (TRUE));
|
||||
+ g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_CONFIG_HAS_IP6, g_variant_new_boolean (FALSE));
|
||||
|
||||
/*
|
||||
* Tunnel device
|
||||
@@ -1290,15 +1288,43 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
} else {
|
||||
val = g_variant_new_string (NM_VPN_PLUGIN_IP4_CONFIG_TUNDEV_NONE);
|
||||
}
|
||||
+ g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_CONFIG_TUNDEV, val);
|
||||
+
|
||||
+ /* Banner */
|
||||
+ val = str_to_gvariant (lookup_string (env, "PLUTO_PEER_BANNER"), TRUE);
|
||||
+ if (val)
|
||||
+ g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_CONFIG_BANNER, val);
|
||||
+
|
||||
+ /* Right peer (or Gateway) */
|
||||
+ val = addr4_to_gvariant (lookup_string (env, "PLUTO_PEER"));
|
||||
+ if (val)
|
||||
+ g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_CONFIG_EXT_GATEWAY, val);
|
||||
+ else {
|
||||
+ _LOGW ("IPsec/Pluto Right Peer (VPN Gateway) is missing");
|
||||
+ goto out;
|
||||
+ }
|
||||
+
|
||||
+ nm_vpn_service_plugin_set_config (NM_VPN_SERVICE_PLUGIN (user_data),
|
||||
+ g_variant_builder_end (&config));
|
||||
|
||||
- g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_TUNDEV, val);
|
||||
+ /* Then build and send the IPv4 config */
|
||||
+ g_variant_builder_init (&config, G_VARIANT_TYPE_VARDICT);
|
||||
+
|
||||
+ /* Right peer (or Gateway) */
|
||||
+ val = addr4_to_gvariant (lookup_string (env, "PLUTO_PEER"));
|
||||
+ if (val)
|
||||
+ g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_GATEWAY, val);
|
||||
+ else {
|
||||
+ _LOGW ("IPsec/Pluto Right Peer (VPN Gateway) is missing");
|
||||
+ goto out;
|
||||
+ }
|
||||
|
||||
/* IP address */
|
||||
val = addr4_to_gvariant (lookup_string (env, "PLUTO_MY_SOURCEIP"));
|
||||
if (val)
|
||||
g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_ADDRESS, val);
|
||||
else {
|
||||
- _LOGW ("IP4 Address");
|
||||
+ _LOGW ("IP4 Address is missing");
|
||||
goto out;
|
||||
}
|
||||
|
||||
@@ -1307,7 +1333,7 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
if (val)
|
||||
g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_PTP, val);
|
||||
else {
|
||||
- _LOGW ("IP4 PTP Address");
|
||||
+ _LOGW ("IP4 PTP Address is missing");
|
||||
goto out;
|
||||
}
|
||||
|
||||
@@ -1324,7 +1350,6 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
if (val)
|
||||
g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_DNS, val);
|
||||
|
||||
-
|
||||
/* Default domain */
|
||||
val = str_to_gvariant (lookup_string (env, "PLUTO_CISCO_DOMAIN_INFO"), TRUE);
|
||||
if (!val) {
|
||||
@@ -1334,11 +1359,6 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
if (val)
|
||||
g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_DOMAIN, val);
|
||||
|
||||
- /* Banner */
|
||||
- val = str_to_gvariant (lookup_string (env, "PLUTO_PEER_BANNER"), TRUE);
|
||||
- if (val)
|
||||
- g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_BANNER, val);
|
||||
-
|
||||
/* Indicates whether the VPN is using a XFRM interface (via option ipsec-interface=) */
|
||||
is_xfrmi = nm_streq0 (lookup_string (env, "PLUTO_XFRMI_ROUTE"), "yes");
|
||||
|
||||
@@ -1369,12 +1389,11 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_IP4_CONFIG_NEVER_DEFAULT, g_variant_new_boolean (TRUE));
|
||||
|
||||
success = TRUE;
|
||||
+ nm_vpn_service_plugin_set_ip4_config (NM_VPN_SERVICE_PLUGIN (user_data),
|
||||
+ g_variant_builder_end (&config));
|
||||
|
||||
out:
|
||||
- if (success) {
|
||||
- nm_vpn_service_plugin_set_ip4_config (NM_VPN_SERVICE_PLUGIN (user_data),
|
||||
- g_variant_builder_end (&config));
|
||||
- } else {
|
||||
+ if (!success) {
|
||||
connect_failed (NM_LIBRESWAN_PLUGIN (user_data), NULL,
|
||||
NM_VPN_PLUGIN_FAILURE_CONNECT_FAILED);
|
||||
}
|
||||
--
|
||||
2.43.0
|
||||
|
@ -1,72 +0,0 @@
|
||||
From 74ec0f7dc18939dd4a5992584527ab044b284fc0 Mon Sep 17 00:00:00 2001
|
||||
From: Beniamino Galvani <bgalvani@redhat.com>
|
||||
Date: Wed, 10 Jan 2024 09:31:48 +0100
|
||||
Subject: [PATCH 3/5] service: don't send IPv4 config if mode config client is
|
||||
disabled
|
||||
|
||||
If the mode config client is disabled (i.e. in server-to-server
|
||||
scenario) we are not going to receive a dynamic IP. The IP address
|
||||
already configured on the existing interface is enough.
|
||||
---
|
||||
src/nm-libreswan-service.c | 20 +++++++++++++++++++-
|
||||
1 file changed, 19 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/nm-libreswan-service.c b/src/nm-libreswan-service.c
|
||||
index 2aca78f..12cf6f2 100644
|
||||
--- a/src/nm-libreswan-service.c
|
||||
+++ b/src/nm-libreswan-service.c
|
||||
@@ -1253,6 +1253,7 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
gpointer user_data)
|
||||
{
|
||||
NMLibreswanPluginPrivate *priv = NM_LIBRESWAN_PLUGIN_GET_PRIVATE (user_data);
|
||||
+ NMSettingVpn *s_vpn;
|
||||
GVariantBuilder config;
|
||||
GVariantBuilder builder;
|
||||
GVariant *val;
|
||||
@@ -1260,7 +1261,9 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
guint i;
|
||||
const char *verb;
|
||||
const char *virt_if;
|
||||
+ const char *str;
|
||||
gboolean is_xfrmi = FALSE;
|
||||
+ gboolean has_ip4;
|
||||
|
||||
_LOGI ("Configuration from the helper received.");
|
||||
|
||||
@@ -1273,10 +1276,21 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
/* First build and send the generic config */
|
||||
g_variant_builder_init (&config, G_VARIANT_TYPE_VARDICT);
|
||||
|
||||
+ if ( priv->connection
|
||||
+ && (s_vpn = nm_connection_get_setting_vpn (priv->connection))
|
||||
+ && (str = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTMODECFGCLIENT))
|
||||
+ && nm_streq (str, "no")) {
|
||||
+ has_ip4 = FALSE;
|
||||
+ } else {
|
||||
+ has_ip4 = TRUE;
|
||||
+ }
|
||||
+
|
||||
+ _LOGD ("Configuration has IPv4: %d", has_ip4);
|
||||
+
|
||||
/*
|
||||
* Enabled address families
|
||||
*/
|
||||
- g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_CONFIG_HAS_IP4, g_variant_new_boolean (TRUE));
|
||||
+ g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_CONFIG_HAS_IP4, g_variant_new_boolean (has_ip4));
|
||||
g_variant_builder_add (&config, "{sv}", NM_VPN_PLUGIN_CONFIG_HAS_IP6, g_variant_new_boolean (FALSE));
|
||||
|
||||
/*
|
||||
@@ -1306,6 +1320,10 @@ handle_callback (NMDBusLibreswanHelper *object,
|
||||
|
||||
nm_vpn_service_plugin_set_config (NM_VPN_SERVICE_PLUGIN (user_data),
|
||||
g_variant_builder_end (&config));
|
||||
+ if (!has_ip4) {
|
||||
+ success = TRUE;
|
||||
+ goto out;
|
||||
+ }
|
||||
|
||||
/* Then build and send the IPv4 config */
|
||||
g_variant_builder_init (&config, G_VARIANT_TYPE_VARDICT);
|
||||
--
|
||||
2.43.0
|
||||
|
@ -1,67 +0,0 @@
|
||||
From 8ceb901719acac3778e1d76779d9c14289185157 Mon Sep 17 00:00:00 2001
|
||||
From: Beniamino Galvani <bgalvani@redhat.com>
|
||||
Date: Sat, 13 Jan 2024 18:10:02 +0100
|
||||
Subject: [PATCH 4/5] service: fix wrong refcounting in D-Bus handler for
|
||||
Callback()
|
||||
|
||||
The Callback() D-Bus method is handled via a GDBus-generated skeleton
|
||||
code in nm-libreswan-helper-service-dbus.c, function
|
||||
_nmdbus_libreswan_helper_skeleton_handle_method_call(). The function
|
||||
emits signal "handle-callback" to let the program handle the incoming
|
||||
method. As documented in the GDoc comments, the signal handler must
|
||||
return TRUE if it handles the call.
|
||||
|
||||
```
|
||||
/**
|
||||
* NMDBusLibreswanHelper::handle-callback:
|
||||
* @object: A #NMDBusLibreswanHelper.
|
||||
* @invocation: A #GDBusMethodInvocation.
|
||||
* @arg_environment: Argument passed by remote caller.
|
||||
|
||||
* Signal emitted when a remote caller is invoking the Callback()
|
||||
D-Bus method.
|
||||
|
||||
* If a signal handler returns %TRUE, it means the signal handler
|
||||
will handle the invocation (e.g. take a reference to @invocation
|
||||
and eventually call nmdbus_libreswan_helper_complete_callback()
|
||||
or e.g. g_dbus_method_invocation_return_error() on it) and no
|
||||
other signal handlers will run. If no signal handler handles the
|
||||
invocation, the %G_DBUS_ERROR_UNKNOWN_METHOD error is returned.
|
||||
|
||||
* Returns: %G_DBUS_METHOD_INVOCATION_HANDLED or %TRUE if the
|
||||
invocation was handled, %G_DBUS_METHOD_INVOCATION_UNHANDLED or
|
||||
%FALSE to let other signal handlers run.
|
||||
*/
|
||||
```
|
||||
|
||||
At the moment, in case of error the handler first calls
|
||||
nmdbus_libreswan_helper_complete_callback() which decreases the
|
||||
refcount of "invocation", and then returns FALSE which tells the
|
||||
skeleton code to return an error, also unreferencing the
|
||||
invocation. This causes a crash.
|
||||
|
||||
Since the G_DBUS_METHOD_INVOCATION_HANDLED alias for TRUE is only
|
||||
available since GLib 2.68 (while we target 2.36), just return TRUE.
|
||||
|
||||
Fixes: acb9eb9de50b ('service: process the configuration in the service, not the helper')
|
||||
---
|
||||
src/nm-libreswan-service.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/nm-libreswan-service.c b/src/nm-libreswan-service.c
|
||||
index 12cf6f2..0d5c4b8 100644
|
||||
--- a/src/nm-libreswan-service.c
|
||||
+++ b/src/nm-libreswan-service.c
|
||||
@@ -1417,7 +1417,8 @@ out:
|
||||
}
|
||||
|
||||
nmdbus_libreswan_helper_complete_callback (object, invocation);
|
||||
- return success;
|
||||
+
|
||||
+ return TRUE;
|
||||
}
|
||||
|
||||
/****************************************************************/
|
||||
--
|
||||
2.43.0
|
||||
|
@ -1,91 +0,0 @@
|
||||
From b4ba2add64bd9d362fe2e66748f23449f072216b Mon Sep 17 00:00:00 2001
|
||||
From: Beniamino Galvani <bgalvani@redhat.com>
|
||||
Date: Mon, 15 Jan 2024 13:23:45 +0100
|
||||
Subject: [PATCH 5/5] service,properties: support type, hostaddrfamily,
|
||||
clientaddrfamily
|
||||
|
||||
Add support for:
|
||||
- type
|
||||
- hostaddrfamily
|
||||
- clientaddrfamily
|
||||
|
||||
Since those are very advanced options, don't implement the GUI part
|
||||
for now.
|
||||
---
|
||||
properties/nm-libreswan-editor-plugin.c | 6 ++++++
|
||||
shared/nm-service-defines.h | 3 +++
|
||||
shared/utils.c | 12 ++++++++++++
|
||||
src/nm-libreswan-service.c | 3 +++
|
||||
4 files changed, 24 insertions(+)
|
||||
|
||||
diff --git a/properties/nm-libreswan-editor-plugin.c b/properties/nm-libreswan-editor-plugin.c
|
||||
index 89243cc..fe85c81 100644
|
||||
--- a/properties/nm-libreswan-editor-plugin.c
|
||||
+++ b/properties/nm-libreswan-editor-plugin.c
|
||||
@@ -206,6 +206,12 @@ import_from_file (NMVpnEditorPlugin *self,
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_IPSEC_INTERFACE, &str[16]);
|
||||
else if (g_str_has_prefix (str, "authby="))
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_AUTHBY, &str[7]);
|
||||
+ else if (g_str_has_prefix (str, "type="))
|
||||
+ nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_TYPE, str + NM_STRLEN("type="));
|
||||
+ else if (g_str_has_prefix (str, "hostaddrfamily="))
|
||||
+ nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_HOSTADDRFAMILY, str + NM_STRLEN("hostaddrfamily="));
|
||||
+ else if (g_str_has_prefix (str, "clientaddrfamily="))
|
||||
+ nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_CLIENTADDRFAMILY, str + NM_STRLEN("clientaddrfamily="));
|
||||
else if (g_str_has_prefix (str, "rightsubnet=")) {
|
||||
if (!g_str_has_prefix (str, "rightsubnet=0.0.0.0/0"))
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_REMOTENETWORK, &str[12]);
|
||||
diff --git a/shared/nm-service-defines.h b/shared/nm-service-defines.h
|
||||
index 14170ad..95e19d4 100644
|
||||
--- a/shared/nm-service-defines.h
|
||||
+++ b/shared/nm-service-defines.h
|
||||
@@ -68,6 +68,9 @@
|
||||
#define NM_LIBRESWAN_KEY_FRAGMENTATION "fragmentation"
|
||||
#define NM_LIBRESWAN_KEY_MOBIKE "mobike"
|
||||
#define NM_LIBRESWAN_KEY_IPSEC_INTERFACE "ipsec-interface"
|
||||
+#define NM_LIBRESWAN_KEY_TYPE "type"
|
||||
+#define NM_LIBRESWAN_KEY_HOSTADDRFAMILY "hostaddrfamily"
|
||||
+#define NM_LIBRESWAN_KEY_CLIENTADDRFAMILY "clientaddrfamily"
|
||||
|
||||
#define NM_LIBRESWAN_IKEV2_NO "no"
|
||||
#define NM_LIBRESWAN_IKEV2_NEVER "never"
|
||||
diff --git a/shared/utils.c b/shared/utils.c
|
||||
index 0bac9e6..9e616f8 100644
|
||||
--- a/shared/utils.c
|
||||
+++ b/shared/utils.c
|
||||
@@ -325,6 +325,18 @@ nm_libreswan_config_write (gint fd,
|
||||
if (item && strlen (item))
|
||||
WRITE_CHECK (fd, debug_write_fcn, error, " ipsec-interface=%s", item);
|
||||
|
||||
+ item = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_TYPE);
|
||||
+ if (item && strlen (item))
|
||||
+ WRITE_CHECK (fd, debug_write_fcn, error, " type=%s", item);
|
||||
+
|
||||
+ item = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_HOSTADDRFAMILY);
|
||||
+ if (item && strlen (item))
|
||||
+ WRITE_CHECK (fd, debug_write_fcn, error, " hostaddrfamily=%s", item);
|
||||
+
|
||||
+ item = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_CLIENTADDRFAMILY);
|
||||
+ if (item && strlen (item))
|
||||
+ WRITE_CHECK (fd, debug_write_fcn, error, " clientaddrfamily=%s", item);
|
||||
+
|
||||
WRITE_CHECK (fd, debug_write_fcn, error, " nm-configured=yes");
|
||||
|
||||
WRITE_CHECK_NEWLINE (fd, trailing_newline, debug_write_fcn, error, " auto=add");
|
||||
diff --git a/src/nm-libreswan-service.c b/src/nm-libreswan-service.c
|
||||
index 0d5c4b8..7e96230 100644
|
||||
--- a/src/nm-libreswan-service.c
|
||||
+++ b/src/nm-libreswan-service.c
|
||||
@@ -277,6 +277,9 @@ static ValidProperty valid_properties[] = {
|
||||
{ NM_LIBRESWAN_KEY_FRAGMENTATION, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_MOBIKE, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_IPSEC_INTERFACE, G_TYPE_STRING, 0, 0 },
|
||||
+ { NM_LIBRESWAN_KEY_TYPE, G_TYPE_STRING, 0, 0 },
|
||||
+ { NM_LIBRESWAN_KEY_HOSTADDRFAMILY, G_TYPE_STRING, 0, 0 },
|
||||
+ { NM_LIBRESWAN_KEY_CLIENTADDRFAMILY, G_TYPE_STRING, 0, 0 },
|
||||
/* Ignored option for internal use */
|
||||
{ NM_LIBRESWAN_KEY_PSK_INPUT_MODES, G_TYPE_NONE, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_XAUTH_PASSWORD_INPUT_MODES, G_TYPE_NONE, 0, 0 },
|
||||
--
|
||||
2.43.0
|
||||
|
@ -1,71 +0,0 @@
|
||||
From 2045cdf3dec79ae7d7b03ca7a081b8c444e242ef Mon Sep 17 00:00:00 2001
|
||||
From: Beniamino Galvani <bgalvani@redhat.com>
|
||||
Date: Wed, 10 Apr 2024 13:23:56 +0200
|
||||
Subject: [PATCH] service,properties: support "leftsubnet"
|
||||
|
||||
https://gitlab.gnome.org/GNOME/NetworkManager-libreswan/-/merge_requests/30
|
||||
---
|
||||
properties/nm-libreswan-dialog.ui | 42 ++++++++++++++++++++-----
|
||||
properties/nm-libreswan-editor-plugin.c | 2 ++
|
||||
properties/nm-libreswan-editor.c | 12 +++++++
|
||||
shared/nm-service-defines.h | 1 +
|
||||
shared/utils.c | 5 +++
|
||||
src/nm-libreswan-service.c | 1 +
|
||||
6 files changed, 56 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/properties/nm-libreswan-editor-plugin.c b/properties/nm-libreswan-editor-plugin.c
|
||||
index fe85c81..bb1685d 100644
|
||||
--- a/properties/nm-libreswan-editor-plugin.c
|
||||
+++ b/properties/nm-libreswan-editor-plugin.c
|
||||
@@ -215,6 +215,8 @@ import_from_file (NMVpnEditorPlugin *self,
|
||||
else if (g_str_has_prefix (str, "rightsubnet=")) {
|
||||
if (!g_str_has_prefix (str, "rightsubnet=0.0.0.0/0"))
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_REMOTENETWORK, &str[12]);
|
||||
+ } else if (g_str_has_prefix (str, "leftsubnet=")) {
|
||||
+ nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_LOCALNETWORK, str + NM_STRLEN("leftsubnet="));
|
||||
} else if (g_str_has_prefix (str, "leftrsasigkey=")) {
|
||||
if (str[14] != '%')
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTRSASIGKEY, &str[14]);
|
||||
diff --git a/shared/nm-service-defines.h b/shared/nm-service-defines.h
|
||||
index 95e19d4..96e5c71 100644
|
||||
--- a/shared/nm-service-defines.h
|
||||
+++ b/shared/nm-service-defines.h
|
||||
@@ -62,6 +62,7 @@
|
||||
#define NM_LIBRESWAN_KEY_SALIFETIME "salifetime"
|
||||
#define NM_LIBRESWAN_KEY_VENDOR "vendor"
|
||||
#define NM_LIBRESWAN_KEY_REMOTENETWORK "rightsubnet"
|
||||
+#define NM_LIBRESWAN_KEY_LOCALNETWORK "leftsubnet"
|
||||
#define NM_LIBRESWAN_KEY_IKEV2 "ikev2"
|
||||
#define NM_LIBRESWAN_KEY_NARROWING "narrowing"
|
||||
#define NM_LIBRESWAN_KEY_REKEY "rekey"
|
||||
diff --git a/shared/utils.c b/shared/utils.c
|
||||
index 9e616f8..926d12d 100644
|
||||
--- a/shared/utils.c
|
||||
+++ b/shared/utils.c
|
||||
@@ -222,6 +222,11 @@ nm_libreswan_config_write (gint fd,
|
||||
WRITE_CHECK (fd, debug_write_fcn, error, " rightsubnet=%s",
|
||||
remote_network);
|
||||
|
||||
+ item = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_LOCALNETWORK);
|
||||
+ if (item) {
|
||||
+ WRITE_CHECK (fd, debug_write_fcn, error, " leftsubnet=%s", item);
|
||||
+ }
|
||||
+
|
||||
if (!is_ikev2) {
|
||||
/* When IKEv1 is in place, we enforce XAUTH: so, use IKE version
|
||||
* also to check if XAUTH conf options should be passed to Libreswan.
|
||||
diff --git a/src/nm-libreswan-service.c b/src/nm-libreswan-service.c
|
||||
index 7e96230..88c07d7 100644
|
||||
--- a/src/nm-libreswan-service.c
|
||||
+++ b/src/nm-libreswan-service.c
|
||||
@@ -271,6 +271,7 @@ static ValidProperty valid_properties[] = {
|
||||
{ NM_LIBRESWAN_KEY_SALIFETIME, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_VENDOR, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_REMOTENETWORK, G_TYPE_STRING, 0, 0 },
|
||||
+ { NM_LIBRESWAN_KEY_LOCALNETWORK, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_IKEV2, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_NARROWING, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_REKEY, G_TYPE_STRING, 0, 0 },
|
||||
--
|
||||
2.44.0
|
||||
|
@ -1,107 +0,0 @@
|
||||
0001-properties-service-suppor-rightcert-configuration.patch
|
||||
0002-properties-add-Remote-certificate-field-to-the-dialo.patch
|
||||
From a980e399694c0a9887d98f1e0f0f24a201cb29c7 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?=C3=8D=C3=B1igo=20Huguet?= <ihuguet@redhat.com>
|
||||
Date: Mon, 15 Apr 2024 10:42:08 +0200
|
||||
Subject: [PATCH 1/2] properties, service: suppor rightcert configuration
|
||||
|
||||
This configuration allows to specify a certificate from the NSS database
|
||||
to identify the remote, instead of pulling it.
|
||||
|
||||
(cherry picked from commit 2684233fd1c65c221d1f18c9d5b779c616c6d091)
|
||||
---
|
||||
properties/nm-libreswan-editor-plugin.c | 2 ++
|
||||
shared/nm-service-defines.h | 1 +
|
||||
shared/utils.c | 7 +++++++
|
||||
src/nm-libreswan-service.c | 8 ++++++--
|
||||
4 files changed, 16 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/properties/nm-libreswan-editor-plugin.c b/properties/nm-libreswan-editor-plugin.c
|
||||
index bb1685d..fe473d1 100644
|
||||
--- a/properties/nm-libreswan-editor-plugin.c
|
||||
+++ b/properties/nm-libreswan-editor-plugin.c
|
||||
@@ -182,6 +182,8 @@ import_from_file (NMVpnEditorPlugin *self,
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTUSERNAME, &str[13]);
|
||||
else if (g_str_has_prefix (str, "leftcert="))
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTCERT, &str[9]);
|
||||
+ else if (g_str_has_prefix (str, "rightcert="))
|
||||
+ nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_RIGHTCERT, &str[10]);
|
||||
else if (nm_streq0 (str, "leftmodecfgclient=no"))
|
||||
nm_setting_vpn_add_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTMODECFGCLIENT, "no");
|
||||
else if (g_str_has_prefix (str, "pfs=no"))
|
||||
diff --git a/shared/nm-service-defines.h b/shared/nm-service-defines.h
|
||||
index 96e5c71..167b837 100644
|
||||
--- a/shared/nm-service-defines.h
|
||||
+++ b/shared/nm-service-defines.h
|
||||
@@ -37,6 +37,7 @@
|
||||
#define NM_LIBRESWAN_KEY_RIGHT "right"
|
||||
#define NM_LIBRESWAN_KEY_RIGHTID "rightid"
|
||||
#define NM_LIBRESWAN_KEY_RIGHTRSASIGKEY "rightrsasigkey"
|
||||
+#define NM_LIBRESWAN_KEY_RIGHTCERT "rightcert"
|
||||
#define NM_LIBRESWAN_KEY_LEFT "left"
|
||||
#define NM_LIBRESWAN_KEY_LEFTID "leftid"
|
||||
#define NM_LIBRESWAN_KEY_LEFTRSASIGKEY "leftrsasigkey"
|
||||
diff --git a/shared/utils.c b/shared/utils.c
|
||||
index 926d12d..5e19316 100644
|
||||
--- a/shared/utils.c
|
||||
+++ b/shared/utils.c
|
||||
@@ -108,6 +108,7 @@ nm_libreswan_config_write (gint fd,
|
||||
const char *left;
|
||||
const char *leftid;
|
||||
const char *leftcert;
|
||||
+ const char *rightcert;
|
||||
const char *leftrsasigkey;
|
||||
const char *rightrsasigkey;
|
||||
const char *authby;
|
||||
@@ -165,7 +166,13 @@ nm_libreswan_config_write (gint fd,
|
||||
leftrsasigkey = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTRSASIGKEY);
|
||||
rightrsasigkey = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_RIGHTRSASIGKEY);
|
||||
leftcert = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTCERT);
|
||||
+ rightcert = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_RIGHTCERT);
|
||||
authby = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_AUTHBY);
|
||||
+ if (rightcert && strlen (rightcert)) {
|
||||
+ WRITE_CHECK (fd, debug_write_fcn, error, " rightcert=%s", rightcert);
|
||||
+ if (!rightrsasigkey)
|
||||
+ rightrsasigkey = "%cert";
|
||||
+ }
|
||||
if (leftcert && strlen (leftcert)) {
|
||||
WRITE_CHECK (fd, debug_write_fcn, error, " leftcert=%s", leftcert);
|
||||
if (!leftrsasigkey)
|
||||
diff --git a/src/nm-libreswan-service.c b/src/nm-libreswan-service.c
|
||||
index 88c07d7..516eaac 100644
|
||||
--- a/src/nm-libreswan-service.c
|
||||
+++ b/src/nm-libreswan-service.c
|
||||
@@ -250,6 +250,7 @@ static ValidProperty valid_properties[] = {
|
||||
{ NM_LIBRESWAN_KEY_RIGHT, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_RIGHTID, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_RIGHTRSASIGKEY, G_TYPE_STRING, 0, 0 },
|
||||
+ { NM_LIBRESWAN_KEY_RIGHTCERT, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_LEFT, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_LEFTID, G_TYPE_STRING, 0, 0 },
|
||||
{ NM_LIBRESWAN_KEY_LEFTXAUTHUSER, G_TYPE_STRING, 0, 0 },
|
||||
@@ -1801,6 +1802,7 @@ real_need_secrets (NMVpnServicePlugin *plugin,
|
||||
NMSettingVpn *s_vpn;
|
||||
const char *leftcert;
|
||||
const char *leftrsasigkey;
|
||||
+ const char *rightcert;
|
||||
const char *rightrsasigkey;
|
||||
const char *pw_type;
|
||||
|
||||
@@ -1821,10 +1823,12 @@ real_need_secrets (NMVpnServicePlugin *plugin,
|
||||
if (leftcert)
|
||||
goto xauth_check;
|
||||
|
||||
- /* If authentication is done through rsasigkeys, only the public keys are required */
|
||||
+ /* If authentication is done through rsasigkeys, only the public keys are required.
|
||||
+ * If rightcert is specified, rightrsasigkey is assumed to be '%cert' */
|
||||
leftrsasigkey = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_LEFTRSASIGKEY);
|
||||
rightrsasigkey = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_RIGHTRSASIGKEY);
|
||||
- if (leftrsasigkey && rightrsasigkey)
|
||||
+ rightcert = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_RIGHTCERT);
|
||||
+ if (leftrsasigkey && (rightrsasigkey || rightcert))
|
||||
goto xauth_check;
|
||||
|
||||
pw_type = nm_setting_vpn_get_data_item (s_vpn, NM_LIBRESWAN_KEY_PSK_INPUT_MODES);
|
||||
--
|
||||
2.44.0
|
||||
|
Loading…
Reference in new issue