summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2018-04-05 11:19:54 +0200
committerBeniamino Galvani <bgalvani@redhat.com>2018-05-05 09:57:51 +0200
commite958209891a4e9180778b79738f14178bb847420 (patch)
tree842f233fa900008d83d4a7b2fc6d0d1862403715
parent2e628535097cf28177feb20bd5277d02e8e2a3b5 (diff)
downloadNetworkManager-e958209891a4e9180778b79738f14178bb847420.tar.gz
manager: trust the state file more when assuming connections
If we can't generate a connection and maybe_later is TRUE, it means that the device can generate/assume connections but it failed for the moment due to missing master/slaves/addresses. In this case, just assume the connection from state file. https://bugzilla.redhat.com/show_bug.cgi?id=1551958 (cherry picked from commit 236edfc908add56201fdaaff32bb025701e7a8ac)
-rw-r--r--src/nm-manager.c50
1 files changed, 32 insertions, 18 deletions
diff --git a/src/nm-manager.c b/src/nm-manager.c
index 9744c4da2d..fdf7cee53d 100644
--- a/src/nm-manager.c
+++ b/src/nm-manager.c
@@ -1747,13 +1747,14 @@ get_existing_connection (NMManager *self,
gs_unref_object NMConnection *connection = NULL;
NMSettingsConnection *added = NULL;
GError *error = NULL;
+ gs_free_error GError *gen_error = NULL;
NMDevice *master = NULL;
int ifindex = nm_device_get_ifindex (device);
NMSettingsConnection *matched;
NMSettingsConnection *connection_checked = NULL;
gboolean assume_state_guess_assume = FALSE;
const char *assume_state_connection_uuid = NULL;
- gboolean maybe_later;
+ gboolean maybe_later, only_by_uuid = FALSE;
if (out_generated)
*out_generated = FALSE;
@@ -1786,14 +1787,18 @@ get_existing_connection (NMManager *self,
* update_connection() implemented, otherwise nm_device_generate_connection()
* returns NULL.
*/
- connection = nm_device_generate_connection (device, master, &maybe_later, &error);
+ connection = nm_device_generate_connection (device, master, &maybe_later, &gen_error);
if (!connection) {
- if (!maybe_later)
+ if (maybe_later) {
+ /* The device can generate a connection, but it failed for now.
+ * Give it a chance to match a connection from the state file. */
+ only_by_uuid = TRUE;
+ } else {
nm_device_assume_state_reset (device);
- _LOG2D (LOGD_DEVICE, device, "assume: cannot generate connection: %s",
- error->message);
- g_error_free (error);
- return NULL;
+ _LOG2D (LOGD_DEVICE, device, "assume: cannot generate connection: %s",
+ gen_error->message);
+ return NULL;
+ }
}
nm_device_assume_state_get (device,
@@ -1814,20 +1819,29 @@ get_existing_connection (NMManager *self,
&& !active_connection_find_first (self, connection_checked, NULL,
NM_ACTIVE_CONNECTION_STATE_DEACTIVATING)
&& nm_device_check_connection_compatible (device, NM_CONNECTION (connection_checked))) {
- NMConnection *const connections[] = {
- NM_CONNECTION (connection_checked),
- NULL,
- };
-
- matched = NM_SETTINGS_CONNECTION (nm_utils_match_connection (connections,
- connection,
- nm_device_has_carrier (device),
- nm_device_get_ip4_route_metric (device),
- nm_device_get_ip6_route_metric (device),
- NULL, NULL));
+ if (connection) {
+ NMConnection *const connections[] = {
+ NM_CONNECTION (connection_checked),
+ NULL,
+ };
+
+ matched = NM_SETTINGS_CONNECTION (nm_utils_match_connection (connections,
+ connection,
+ nm_device_has_carrier (device),
+ nm_device_get_ip4_route_metric (device),
+ nm_device_get_ip6_route_metric (device),
+ NULL, NULL));
+ } else
+ matched = connection_checked;
} else
matched = NULL;
+ if (!matched && only_by_uuid) {
+ _LOG2D (LOGD_DEVICE, device, "assume: cannot generate connection: %s",
+ gen_error->message);
+ return NULL;
+ }
+
if (!matched && assume_state_guess_assume) {
gs_free NMSettingsConnection **connections = NULL;
guint len, i, j;