summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2015-09-26 08:44:37 +0200
committerLubomir Rintel <lkundrak@v3.sk>2015-10-06 14:10:55 +0200
commit8c9b791768e0dc90c0f019cbd15a6653689f6619 (patch)
tree4fb87c67ee6f982ac5363cacc878a1db96cf113c
parent46911015175f0e7d347e6a372993269caa2e5b5f (diff)
downloadNetworkManager-8c9b791768e0dc90c0f019cbd15a6653689f6619.tar.gz
libnm: avoid notifying for objects until they're async-inited
Otherwise the uninitializeded objects could be prematurely signalled if their paths are seen twice in quick succession. This happens when you have ethernet hardware and add an ethernet connection -- it's immediatelly added to AvialableConnections and the property reload signals the object addition before the NMRemoteSettings's GetSettings() finishes: # nmcli c add type ethernet autoconnect no ifname '*' (process:4610): libnm-CRITICAL **: nm_connection_get_id: assertion 's_con != NULL' failed Connection '(null)' ((null)) successfully added. # https://bugzilla.gnome.org/show_bug.cgi?id=754794
-rw-r--r--libnm/nm-object.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/libnm/nm-object.c b/libnm/nm-object.c
index adc22e7e09..6ba6fb083f 100644
--- a/libnm/nm-object.c
+++ b/libnm/nm-object.c
@@ -85,6 +85,10 @@ typedef struct {
NMObject *parent;
gboolean suppress_property_updates;
+ gboolean inited; /* async init finished? */
+ GSList *waiters; /* if async init did not finish, users of this object need
+ * to defer their notifications by adding themselves here. */
+
GSList *notify_items;
guint32 notify_id;
@@ -201,6 +205,24 @@ deferred_notify_cb (gpointer data)
if (priv->reload_remaining)
return G_SOURCE_REMOVE;
+ /* If not all added object are finished yet, then defer the deferred
+ * notification. */
+ for (iter = priv->notify_items; iter; iter = g_slist_next (iter)) {
+ NotifyItem *item = iter->data;
+ NMObjectPrivate *item_priv;
+
+ if (!item->changed)
+ continue;
+
+ item_priv = NM_OBJECT_GET_PRIVATE (item->changed);
+ if (!item_priv->inited) {
+ if (!g_slist_find (item_priv->waiters, object))
+ item_priv->waiters = g_slist_prepend (item_priv->waiters,
+ g_object_ref (object));
+ return G_SOURCE_REMOVE;
+ }
+ }
+
/* Clear priv->notify_items early so that an NMObject subclass that
* listens to property changes can queue up other property changes
* during the g_object_notify() call separately from the property
@@ -426,6 +448,7 @@ _nm_object_create (GType type, GDBusConnection *connection, const char *path)
* before any external code sees it.
*/
_nm_object_cache_add (NM_OBJECT (object));
+ NM_OBJECT_GET_PRIVATE (object)->inited = TRUE;
if (!g_initable_init (G_INITABLE (object), NULL, &error)) {
dbgmsg ("Could not create object for %s: %s", path, error->message);
g_error_free (error);
@@ -460,6 +483,7 @@ create_async_inited (GObject *object, GAsyncResult *result, gpointer user_data)
NMObjectTypeAsyncData *async_data = user_data;
GError *error = NULL;
+ NM_OBJECT_GET_PRIVATE (object)->inited = TRUE;
if (!g_async_initable_init_finish (G_ASYNC_INITABLE (object), result, &error)) {
dbgmsg ("Could not create object for %s: %s",
nm_object_get_path (NM_OBJECT (object)),
@@ -469,6 +493,19 @@ create_async_inited (GObject *object, GAsyncResult *result, gpointer user_data)
}
create_async_complete (object, async_data);
+
+ if (object) {
+ NMObjectPrivate *priv = NM_OBJECT_GET_PRIVATE (object);
+
+ /* Re-queue notification checks for whoever was waiting for
+ * this object to initialize. */
+ while (priv->waiters) {
+ NMObject *item = priv->waiters->data;
+ priv->waiters = g_slist_remove (priv->waiters, item);
+ _nm_object_defer_notify (item);
+ g_object_unref (item);
+ }
+ }
}
static void
@@ -1679,6 +1716,7 @@ dispose (GObject *object)
g_slist_free_full (priv->notify_items, (GDestroyNotify) notify_item_free);
priv->notify_items = NULL;
+ g_slist_free_full (priv->waiters, g_object_unref);
g_clear_pointer (&priv->proxies, g_hash_table_unref);
g_clear_object (&priv->properties_proxy);