hook gvariant vectors up to kdbus
[platform/upstream/glib.git] / gio / gdbusproxy.c
index fe5c97d..33492b7 100644 (file)
@@ -13,9 +13,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General
- * Public License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
- * Boston, MA 02111-1307, USA.
+ * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  *
  * Author: David Zeuthen <davidz@redhat.com>
  */
 #include <stdlib.h>
 #include <string.h>
 
-#include <gobject/gvaluecollector.h>
-
 #include "gdbusutils.h"
 #include "gdbusproxy.h"
 #include "gioenumtypes.h"
 #include "gdbusconnection.h"
 #include "gdbuserror.h"
 #include "gdbusprivate.h"
-#include "gio-marshal.h"
 #include "ginitable.h"
 #include "gasyncinitable.h"
 #include "gioerror.h"
 #include "gasyncresult.h"
 #include "gsimpleasyncresult.h"
+#include "gcancellable.h"
+#include "gdbusinterface.h"
+
+#ifdef G_OS_UNIX
+#include "gunixfdlist.h"
+#endif
 
 #include "glibintl.h"
-#include "gioalias.h"
 
 /**
  * SECTION:gdbusproxy
- * @short_description: Base class for proxies
+ * @short_description: Client-side D-Bus interface proxy
  * @include: gio/gio.h
  *
  * #GDBusProxy is a base class used for proxies to access a D-Bus
- * interface on a remote object. A #GDBusProxy can only be constructed
- * for unique name bus and does not track whether the name
- * vanishes. Use g_bus_watch_proxy() to construct #GDBusProxy proxies
- * for owners of a well-known names.
+ * interface on a remote object. A #GDBusProxy can be constructed for
+ * both well-known and unique names.
  *
- * By default, #GDBusProxy will cache all properties (and listen for
- * their changes) of the remote object, and proxy all signals that gets
+ * By default, #GDBusProxy will cache all properties (and listen to
+ * changes) of the remote object, and proxy all signals that gets
  * emitted. This behaviour can be changed by passing suitable
- * #GDBusProxyFlags when the proxy is created.
- *
- * The generic #GDBusProxy::g-properties-changed and #GDBusProxy::g-signal
- * signals are not very convenient to work with. Therefore, the recommended
- * way of working with proxies is to subclass #GDBusProxy, and have
- * more natural properties and signals in your derived class. The
- * @interface_type argument of g_bus_watch_proxy() lets you obtain
- * instances of your derived class when using the high-level API.
- *
- * See <xref linkend="gdbus-example-proxy-subclass"/> for an example.
+ * #GDBusProxyFlags when the proxy is created. If the proxy is for a
+ * well-known name, the property cache is flushed when the name owner
+ * vanishes and reloaded when a name owner appears.
+ *
+ * If a #GDBusProxy is used for a well-known name, the owner of the
+ * name is tracked and can be read from
+ * #GDBusProxy:g-name-owner. Connect to the #GObject::notify signal to
+ * get notified of changes. Additionally, only signals and property
+ * changes emitted from the current name owner are considered and
+ * calls are always sent to the current name owner. This avoids a
+ * number of race conditions when the name is lost by one owner and
+ * claimed by another. However, if no name owner currently exists,
+ * then calls will be sent to the well-known name which may result in
+ * the message bus launching an owner (unless
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START is set).
+ *
+ * The generic #GDBusProxy::g-properties-changed and
+ * #GDBusProxy::g-signal signals are not very convenient to work with.
+ * Therefore, the recommended way of working with proxies is to subclass
+ * #GDBusProxy, and have more natural properties and signals in your derived
+ * class. This [example][gdbus-example-gdbus-codegen] shows how this can
+ * easily be done using the [gdbus-codegen][gdbus-codegen] tool.
+ *
+ * A #GDBusProxy instance can be used from multiple threads but note
+ * that all signals (e.g. #GDBusProxy::g-signal, #GDBusProxy::g-properties-changed
+ * and #GObject::notify) are emitted in the
+ * [thread-default main context][g-main-context-push-thread-default]
+ * of the thread where the instance was constructed.
+ *
+ * An example using a proxy for a well-known name can be found in
+ * [gdbus-example-watch-proxy.c](https://git.gnome.org/browse/glib/tree/gio/tests/gdbus-example-watch-proxy.c)
  */
 
+/* lock protecting the mutable properties: name_owner, timeout_msec,
+ * expected_interface, and the properties hash table
+ */
+G_LOCK_DEFINE_STATIC (properties_lock);
+
+/* ---------------------------------------------------------------------------------------------------- */
+
+G_LOCK_DEFINE_STATIC (signal_subscription_lock);
+
+typedef struct
+{
+  volatile gint ref_count;
+  GDBusProxy *proxy;
+} SignalSubscriptionData;
+
+static SignalSubscriptionData *
+signal_subscription_ref (SignalSubscriptionData *data)
+{
+  g_atomic_int_inc (&data->ref_count);
+  return data;
+}
+
+static void
+signal_subscription_unref (SignalSubscriptionData *data)
+{
+  if (g_atomic_int_dec_and_test (&data->ref_count))
+    {
+      g_slice_free (SignalSubscriptionData, data);
+    }
+}
+
+/* ---------------------------------------------------------------------------------------------------- */
+
 struct _GDBusProxyPrivate
 {
-  GDBusConnection *connection;
+  GBusType bus_type;
   GDBusProxyFlags flags;
-  gchar *unique_bus_name;
+  GDBusConnection *connection;
+
+  gchar *name;
+  /* mutable, protected by properties_lock */
+  gchar *name_owner;
   gchar *object_path;
   gchar *interface_name;
+  /* mutable, protected by properties_lock */
   gint timeout_msec;
 
-  /* gchar* -> GVariant* */
+  guint name_owner_changed_subscription_id;
+
+  GCancellable *get_all_cancellable;
+
+  /* gchar* -> GVariant*, protected by properties_lock */
   GHashTable *properties;
 
+  /* mutable, protected by properties_lock */
   GDBusInterfaceInfo *expected_interface;
 
-  guint properties_changed_subscriber_id;
-  guint signals_subscriber_id;
+  guint properties_changed_subscription_id;
+  guint signals_subscription_id;
 
   gboolean initialized;
+
+  /* mutable, protected by properties_lock */
+  GDBusObject *object;
+
+  SignalSubscriptionData *signal_subscription_data;
 };
 
 enum
 {
   PROP_0,
   PROP_G_CONNECTION,
-  PROP_G_UNIQUE_BUS_NAME,
+  PROP_G_BUS_TYPE,
+  PROP_G_NAME,
+  PROP_G_NAME_OWNER,
   PROP_G_FLAGS,
   PROP_G_OBJECT_PATH,
   PROP_G_INTERFACE_NAME,
@@ -108,40 +177,70 @@ enum
   LAST_SIGNAL,
 };
 
-static void g_dbus_proxy_constructed (GObject *object);
-
-guint signals[LAST_SIGNAL] = {0};
+static guint signals[LAST_SIGNAL] = {0};
 
+static void dbus_interface_iface_init (GDBusInterfaceIface *dbus_interface_iface);
 static void initable_iface_init       (GInitableIface *initable_iface);
 static void async_initable_iface_init (GAsyncInitableIface *async_initable_iface);
 
 G_DEFINE_TYPE_WITH_CODE (GDBusProxy, g_dbus_proxy, G_TYPE_OBJECT,
+                         G_ADD_PRIVATE (GDBusProxy)
+                         G_IMPLEMENT_INTERFACE (G_TYPE_DBUS_INTERFACE, dbus_interface_iface_init)
                          G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE, initable_iface_init)
-                         G_IMPLEMENT_INTERFACE (G_TYPE_ASYNC_INITABLE, async_initable_iface_init)
-                         );
+                         G_IMPLEMENT_INTERFACE (G_TYPE_ASYNC_INITABLE, async_initable_iface_init))
+
+static void
+g_dbus_proxy_dispose (GObject *object)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (object);
+  G_LOCK (signal_subscription_lock);
+  if (proxy->priv->signal_subscription_data != NULL)
+    {
+      proxy->priv->signal_subscription_data->proxy = NULL;
+      signal_subscription_unref (proxy->priv->signal_subscription_data);
+      proxy->priv->signal_subscription_data = NULL;
+    }
+  G_UNLOCK (signal_subscription_lock);
+
+  G_OBJECT_CLASS (g_dbus_proxy_parent_class)->dispose (object);
+}
 
 static void
 g_dbus_proxy_finalize (GObject *object)
 {
   GDBusProxy *proxy = G_DBUS_PROXY (object);
 
-  if (proxy->priv->properties_changed_subscriber_id > 0)
+  g_warn_if_fail (proxy->priv->get_all_cancellable == NULL);
+
+  if (proxy->priv->name_owner_changed_subscription_id > 0)
+    g_dbus_connection_signal_unsubscribe (proxy->priv->connection,
+                                          proxy->priv->name_owner_changed_subscription_id);
+
+  if (proxy->priv->properties_changed_subscription_id > 0)
     g_dbus_connection_signal_unsubscribe (proxy->priv->connection,
-                                          proxy->priv->properties_changed_subscriber_id);
+                                          proxy->priv->properties_changed_subscription_id);
 
-  if (proxy->priv->signals_subscriber_id > 0)
+  if (proxy->priv->signals_subscription_id > 0)
     g_dbus_connection_signal_unsubscribe (proxy->priv->connection,
-                                          proxy->priv->signals_subscriber_id);
+                                          proxy->priv->signals_subscription_id);
 
-  g_object_unref (proxy->priv->connection);
-  g_free (proxy->priv->unique_bus_name);
+  if (proxy->priv->connection != NULL)
+    g_object_unref (proxy->priv->connection);
+  g_free (proxy->priv->name);
+  g_free (proxy->priv->name_owner);
   g_free (proxy->priv->object_path);
   g_free (proxy->priv->interface_name);
   if (proxy->priv->properties != NULL)
     g_hash_table_unref (proxy->priv->properties);
 
   if (proxy->priv->expected_interface != NULL)
-    g_dbus_interface_info_unref (proxy->priv->expected_interface);
+    {
+      g_dbus_interface_info_cache_release (proxy->priv->expected_interface);
+      g_dbus_interface_info_unref (proxy->priv->expected_interface);
+    }
+
+  if (proxy->priv->object != NULL)
+    g_object_remove_weak_pointer (G_OBJECT (proxy->priv->object), (gpointer *) &proxy->priv->object);
 
   G_OBJECT_CLASS (g_dbus_proxy_parent_class)->finalize (object);
 }
@@ -164,8 +263,12 @@ g_dbus_proxy_get_property (GObject    *object,
       g_value_set_flags (value, proxy->priv->flags);
       break;
 
-    case PROP_G_UNIQUE_BUS_NAME:
-      g_value_set_string (value, proxy->priv->unique_bus_name);
+    case PROP_G_NAME:
+      g_value_set_string (value, proxy->priv->name);
+      break;
+
+    case PROP_G_NAME_OWNER:
+      g_value_take_string (value, g_dbus_proxy_get_name_owner (proxy));
       break;
 
     case PROP_G_OBJECT_PATH:
@@ -177,7 +280,7 @@ g_dbus_proxy_get_property (GObject    *object,
       break;
 
     case PROP_G_DEFAULT_TIMEOUT:
-      g_value_set_int (value, proxy->priv->timeout_msec);
+      g_value_set_int (value, g_dbus_proxy_get_default_timeout (proxy));
       break;
 
     case PROP_G_INTERFACE_INFO:
@@ -208,8 +311,8 @@ g_dbus_proxy_set_property (GObject      *object,
       proxy->priv->flags = g_value_get_flags (value);
       break;
 
-    case PROP_G_UNIQUE_BUS_NAME:
-      proxy->priv->unique_bus_name = g_value_dup_string (value);
+    case PROP_G_NAME:
+      proxy->priv->name = g_value_dup_string (value);
       break;
 
     case PROP_G_OBJECT_PATH:
@@ -228,6 +331,10 @@ g_dbus_proxy_set_property (GObject      *object,
       g_dbus_proxy_set_interface_info (proxy, g_value_get_boxed (value));
       break;
 
+    case PROP_G_BUS_TYPE:
+      proxy->priv->bus_type = g_value_get_enum (value);
+      break;
+
     default:
       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
       break;
@@ -239,10 +346,10 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
 {
   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
 
+  gobject_class->dispose      = g_dbus_proxy_dispose;
   gobject_class->finalize     = g_dbus_proxy_finalize;
   gobject_class->set_property = g_dbus_proxy_set_property;
   gobject_class->get_property = g_dbus_proxy_get_property;
-  gobject_class->constructed  = g_dbus_proxy_constructed;
 
   /* Note that all property names are prefixed to avoid collisions with D-Bus property names
    * in derived classes */
@@ -251,10 +358,29 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
    * GDBusProxy:g-interface-info:
    *
    * Ensure that interactions with this proxy conform to the given
-   * interface.  For example, when completing a method call, if the
-   * type signature of the message isn't what's expected, the given
-   * #GError is set.  Signals that have a type signature mismatch are
-   * simply dropped.
+   * interface. This is mainly to ensure that malformed data received
+   * from the other peer is ignored. The given #GDBusInterfaceInfo is
+   * said to be the "expected interface".
+   *
+   * The checks performed are:
+   * - When completing a method call, if the type signature of
+   *   the reply message isn't what's expected, the reply is
+   *   discarded and the #GError is set to %G_IO_ERROR_INVALID_ARGUMENT.
+   *
+   * - Received signals that have a type signature mismatch are dropped and
+   *   a warning is logged via g_warning().
+   *
+   * - Properties received via the initial `GetAll()` call or via the 
+   *   `::PropertiesChanged` signal (on the
+   *   [org.freedesktop.DBus.Properties](http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties)
+   *   interface) or set using g_dbus_proxy_set_cached_property()
+   *   with a type signature mismatch are ignored and a warning is
+   *   logged via g_warning().
+   *
+   * Note that these checks are never done on methods, signals and
+   * properties that are not referenced in the given
+   * #GDBusInterfaceInfo, since extending a D-Bus interface on the
+   * service-side is not considered an ABI break.
    *
    * Since: 2.26
    */
@@ -291,6 +417,29 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
                                                         G_PARAM_STATIC_NICK));
 
   /**
+   * GDBusProxy:g-bus-type:
+   *
+   * If this property is not %G_BUS_TYPE_NONE, then
+   * #GDBusProxy:g-connection must be %NULL and will be set to the
+   * #GDBusConnection obtained by calling g_bus_get() with the value
+   * of this property.
+   *
+   * Since: 2.26
+   */
+  g_object_class_install_property (gobject_class,
+                                   PROP_G_BUS_TYPE,
+                                   g_param_spec_enum ("g-bus-type",
+                                                      P_("Bus Type"),
+                                                      P_("The bus to connect to, if any"),
+                                                      G_TYPE_BUS_TYPE,
+                                                      G_BUS_TYPE_NONE,
+                                                      G_PARAM_WRITABLE |
+                                                      G_PARAM_CONSTRUCT_ONLY |
+                                                      G_PARAM_STATIC_NAME |
+                                                      G_PARAM_STATIC_BLURB |
+                                                      G_PARAM_STATIC_NICK));
+
+  /**
    * GDBusProxy:g-flags:
    *
    * Flags from the #GDBusProxyFlags enumeration.
@@ -312,17 +461,17 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
                                                        G_PARAM_STATIC_NICK));
 
   /**
-   * GDBusProxy:g-unique-bus-name:
+   * GDBusProxy:g-name:
    *
-   * The unique bus name the proxy is for.
+   * The well-known or unique name that the proxy is for.
    *
    * Since: 2.26
    */
   g_object_class_install_property (gobject_class,
-                                   PROP_G_UNIQUE_BUS_NAME,
-                                   g_param_spec_string ("g-unique-bus-name",
-                                                        P_("g-unique-bus-name"),
-                                                        P_("The unique bus name the proxy is for"),
+                                   PROP_G_NAME,
+                                   g_param_spec_string ("g-name",
+                                                        P_("g-name"),
+                                                        P_("The well-known or unique name that the proxy is for"),
                                                         NULL,
                                                         G_PARAM_READABLE |
                                                         G_PARAM_WRITABLE |
@@ -332,6 +481,26 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
                                                         G_PARAM_STATIC_NICK));
 
   /**
+   * GDBusProxy:g-name-owner:
+   *
+   * The unique name that owns #GDBusProxy:g-name or %NULL if no-one
+   * currently owns that name. You may connect to #GObject::notify signal to
+   * track changes to this property.
+   *
+   * Since: 2.26
+   */
+  g_object_class_install_property (gobject_class,
+                                   PROP_G_NAME_OWNER,
+                                   g_param_spec_string ("g-name-owner",
+                                                        P_("g-name-owner"),
+                                                        P_("The unique name for the owner"),
+                                                        NULL,
+                                                        G_PARAM_READABLE |
+                                                        G_PARAM_STATIC_NAME |
+                                                        G_PARAM_STATIC_BLURB |
+                                                        G_PARAM_STATIC_NICK));
+
+  /**
    * GDBusProxy:g-object-path:
    *
    * The object path the proxy is for.
@@ -411,19 +580,23 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
    * that both @changed_properties and @invalidated_properties are
    * guaranteed to never be %NULL (either may be empty though).
    *
+   * If the proxy has the flag
+   * %G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES set, then
+   * @invalidated_properties will always be empty.
+   *
    * This signal corresponds to the
-   * <literal>PropertiesChanged</literal> D-Bus signal on the
-   * <literal>org.freedesktop.DBus.Properties</literal> interface.
+   * `PropertiesChanged` D-Bus signal on the
+   * `org.freedesktop.DBus.Properties` interface.
    *
    * Since: 2.26
    */
   signals[PROPERTIES_CHANGED_SIGNAL] = g_signal_new ("g-properties-changed",
                                                      G_TYPE_DBUS_PROXY,
-                                                     G_SIGNAL_RUN_LAST,
+                                                     G_SIGNAL_RUN_LAST | G_SIGNAL_MUST_COLLECT,
                                                      G_STRUCT_OFFSET (GDBusProxyClass, g_properties_changed),
                                                      NULL,
                                                      NULL,
-                                                     _gio_marshal_VOID__BOXED_BOXED,
+                                                     NULL,
                                                      G_TYPE_NONE,
                                                      2,
                                                      G_TYPE_VARIANT,
@@ -432,7 +605,7 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
   /**
    * GDBusProxy::g-signal:
    * @proxy: The #GDBusProxy emitting the signal.
-   * @sender_name: The sender of the signal or %NULL if the connection is not a bus connection.
+   * @sender_name: (allow-none): The sender of the signal or %NULL if the connection is not a bus connection.
    * @signal_name: The name of the signal.
    * @parameters: A #GVariant tuple with parameters for the signal.
    *
@@ -442,25 +615,26 @@ g_dbus_proxy_class_init (GDBusProxyClass *klass)
    */
   signals[SIGNAL_SIGNAL] = g_signal_new ("g-signal",
                                          G_TYPE_DBUS_PROXY,
-                                         G_SIGNAL_RUN_LAST,
+                                         G_SIGNAL_RUN_LAST | G_SIGNAL_MUST_COLLECT,
                                          G_STRUCT_OFFSET (GDBusProxyClass, g_signal),
                                          NULL,
                                          NULL,
-                                         _gio_marshal_VOID__STRING_STRING_BOXED,
+                                         NULL,
                                          G_TYPE_NONE,
                                          3,
                                          G_TYPE_STRING,
                                          G_TYPE_STRING,
                                          G_TYPE_VARIANT);
 
-
-  g_type_class_add_private (klass, sizeof (GDBusProxyPrivate));
 }
 
 static void
 g_dbus_proxy_init (GDBusProxy *proxy)
 {
-  proxy->priv = G_TYPE_INSTANCE_GET_PRIVATE (proxy, G_TYPE_DBUS_PROXY, GDBusProxyPrivate);
+  proxy->priv = g_dbus_proxy_get_instance_private (proxy);
+  proxy->priv->signal_subscription_data = g_slice_new0 (SignalSubscriptionData);
+  proxy->priv->signal_subscription_data->ref_count = 1;
+  proxy->priv->signal_subscription_data->proxy = proxy;
   proxy->priv->properties = g_hash_table_new_full (g_str_hash,
                                                    g_str_equal,
                                                    g_free,
@@ -469,14 +643,22 @@ g_dbus_proxy_init (GDBusProxy *proxy)
 
 /* ---------------------------------------------------------------------------------------------------- */
 
+static gint
+property_name_sort_func (const gchar **a,
+                         const gchar **b)
+{
+  return g_strcmp0 (*a, *b);
+}
+
 /**
  * g_dbus_proxy_get_cached_property_names:
  * @proxy: A #GDBusProxy.
  *
  * Gets the names of all cached properties on @proxy.
  *
- * Returns: A %NULL-terminated array of strings or %NULL if @proxy has
- * no cached properties. Free the returned array with g_strfreev().
+ * Returns: (transfer full): A %NULL-terminated array of strings or %NULL if
+ *          @proxy has no cached properties. Free the returned array with
+ *          g_strfreev().
  *
  * Since: 2.26
  */
@@ -490,6 +672,8 @@ g_dbus_proxy_get_cached_property_names (GDBusProxy  *proxy)
 
   g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
 
+  G_LOCK (properties_lock);
+
   names = NULL;
   if (g_hash_table_size (proxy->priv->properties) == 0)
     goto out;
@@ -499,32 +683,31 @@ g_dbus_proxy_get_cached_property_names (GDBusProxy  *proxy)
   g_hash_table_iter_init (&iter, proxy->priv->properties);
   while (g_hash_table_iter_next (&iter, (gpointer) &key, NULL))
     g_ptr_array_add (p, g_strdup (key));
-  g_ptr_array_sort (p, (GCompareFunc) g_strcmp0);
+  g_ptr_array_sort (p, (GCompareFunc) property_name_sort_func);
   g_ptr_array_add (p, NULL);
 
   names = (gchar **) g_ptr_array_free (p, FALSE);
 
  out:
+  G_UNLOCK (properties_lock);
   return names;
 }
 
+/* properties_lock must be held for as long as you will keep the
+ * returned value
+ */
 static const GDBusPropertyInfo *
-lookup_property_info_or_warn (GDBusProxy  *proxy,
-                              const gchar *property_name)
+lookup_property_info (GDBusProxy  *proxy,
+                      const gchar *property_name)
 {
-  const GDBusPropertyInfo *info;
+  const GDBusPropertyInfo *info = NULL;
 
   if (proxy->priv->expected_interface == NULL)
-    return NULL;
+    goto out;
 
   info = g_dbus_interface_info_lookup_property (proxy->priv->expected_interface, property_name);
-  if (info == NULL)
-    {
-      g_warning ("Trying to lookup property %s which isn't in expected interface %s",
-                 property_name,
-                 proxy->priv->expected_interface->name);
-    }
 
+ out:
   return info;
 }
 
@@ -537,8 +720,8 @@ lookup_property_info_or_warn (GDBusProxy  *proxy,
  * blocking IO.
  *
  * If @proxy has an expected interface (see
- * #GDBusProxy:g-interface-info), then @property_name (for existence)
- * is checked against it.
+ * #GDBusProxy:g-interface-info) and @property_name is referenced by
+ * it, then @value is checked against the type of the property.
  *
  * Returns: A reference to the #GVariant instance that holds the value
  * for @property_name or %NULL if the value is not in the cache. The
@@ -550,23 +733,38 @@ GVariant *
 g_dbus_proxy_get_cached_property (GDBusProxy   *proxy,
                                   const gchar  *property_name)
 {
+  const GDBusPropertyInfo *info;
   GVariant *value;
 
   g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
   g_return_val_if_fail (property_name != NULL, NULL);
 
+  G_LOCK (properties_lock);
+
   value = g_hash_table_lookup (proxy->priv->properties, property_name);
   if (value == NULL)
+    goto out;
+
+  info = lookup_property_info (proxy, property_name);
+  if (info != NULL)
     {
-      const GDBusPropertyInfo *info;
-      info = lookup_property_info_or_warn (proxy, property_name);
-      /* no difference */
-      goto out;
+      const gchar *type_string = g_variant_get_type_string (value);
+      if (g_strcmp0 (type_string, info->signature) != 0)
+        {
+          g_warning ("Trying to get property %s with type %s but according to the expected "
+                     "interface the type is %s",
+                     property_name,
+                     type_string,
+                     info->signature);
+          value = NULL;
+          goto out;
+        }
     }
 
   g_variant_ref (value);
 
  out:
+  G_UNLOCK (properties_lock);
   return value;
 }
 
@@ -574,7 +772,7 @@ g_dbus_proxy_get_cached_property (GDBusProxy   *proxy,
  * g_dbus_proxy_set_cached_property:
  * @proxy: A #GDBusProxy
  * @property_name: Property name.
- * @value: Value for the property or %NULL to remove it from the cache.
+ * @value: (allow-none): Value for the property or %NULL to remove it from the cache.
  *
  * If @value is not %NULL, sets the cached value for the property with
  * name @property_name to the value in @value.
@@ -583,12 +781,12 @@ g_dbus_proxy_get_cached_property (GDBusProxy   *proxy,
  * property cache.
  *
  * If @proxy has an expected interface (see
- * #GDBusProxy:g-interface-info), then @property_name (for existence)
- * and @value (for the type) is checked against it.
+ * #GDBusProxy:g-interface-info) and @property_name is referenced by
+ * it, then @value is checked against the type of the property.
  *
  * If the @value #GVariant is floating, it is consumed. This allows
  * convenient 'inline' use of g_variant_new(), e.g.
- * |[
+ * |[<!-- language="C" -->
  *  g_dbus_proxy_set_cached_property (proxy,
  *                                    "SomeProperty",
  *                                    g_variant_new ("(si)",
@@ -596,20 +794,19 @@ g_dbus_proxy_get_cached_property (GDBusProxy   *proxy,
  *                                                  42));
  * ]|
  *
- * Normally you will not need to use this method since @proxy is
- * tracking changes using the
- * <literal>org.freedesktop.DBus.Properties.PropertiesChanged</literal>
- * D-Bus signal. However, for performance reasons an object may decide
- * to not use this signal for some properties and instead use a
- * proprietary out-of-band mechanism to transmit changes.
+ * Normally you will not need to use this method since @proxy
+ * is tracking changes using the
+ * `org.freedesktop.DBus.Properties.PropertiesChanged`
+ * D-Bus signal. However, for performance reasons an object may
+ * decide to not use this signal for some properties and instead
+ * use a proprietary out-of-band mechanism to transmit changes.
  *
  * As a concrete example, consider an object with a property
- * <literal>ChatroomParticipants</literal> which is an array of
- * strings. Instead of transmitting the same (long) array every time
- * the property changes, it is more efficient to only transmit the
- * delta using e.g. signals <literal>ChatroomParticipantJoined(String
- * name)</literal> and <literal>ChatroomParticipantParted(String
- * name)</literal>.
+ * `ChatroomParticipants` which is an array of strings. Instead of
+ * transmitting the same (long) array every time the property changes,
+ * it is more efficient to only transmit the delta using e.g. signals
+ * `ChatroomParticipantJoined(String name)` and
+ * `ChatroomParticipantParted(String name)`.
  *
  * Since: 2.26
  */
@@ -623,15 +820,17 @@ g_dbus_proxy_set_cached_property (GDBusProxy   *proxy,
   g_return_if_fail (G_IS_DBUS_PROXY (proxy));
   g_return_if_fail (property_name != NULL);
 
+  G_LOCK (properties_lock);
+
   if (value != NULL)
     {
-      info = lookup_property_info_or_warn (proxy, property_name);
+      info = lookup_property_info (proxy, property_name);
       if (info != NULL)
         {
           if (g_strcmp0 (info->signature, g_variant_get_type_string (value)) != 0)
             {
-              g_warning (_("Trying to set property %s of type %s but according to the expected "
-                           "interface the type is %s"),
+              g_warning ("Trying to set property %s of type %s but according to the expected "
+                        "interface the type is %s",
                          property_name,
                          g_variant_get_type_string (value),
                          info->signature);
@@ -648,7 +847,7 @@ g_dbus_proxy_set_cached_property (GDBusProxy   *proxy,
     }
 
  out:
-  ;
+  G_UNLOCK (properties_lock);
 }
 
 /* ---------------------------------------------------------------------------------------------------- */
@@ -662,23 +861,167 @@ on_signal_received (GDBusConnection *connection,
                     GVariant        *parameters,
                     gpointer         user_data)
 {
-  GDBusProxy *proxy = G_DBUS_PROXY (user_data);
+  SignalSubscriptionData *data = user_data;
+  GDBusProxy *proxy;
+
+  G_LOCK (signal_subscription_lock);
+  proxy = data->proxy;
+  if (proxy == NULL)
+    {
+      G_UNLOCK (signal_subscription_lock);
+      return;
+    }
+  else
+    {
+      g_object_ref (proxy);
+      G_UNLOCK (signal_subscription_lock);
+    }
 
   if (!proxy->priv->initialized)
     goto out;
 
+  G_LOCK (properties_lock);
+
+  if (proxy->priv->name_owner != NULL && g_strcmp0 (sender_name, proxy->priv->name_owner) != 0)
+    {
+      G_UNLOCK (properties_lock);
+      goto out;
+    }
+
+  if (proxy->priv->expected_interface != NULL)
+    {
+      const GDBusSignalInfo *info;
+      info = g_dbus_interface_info_lookup_signal (proxy->priv->expected_interface, signal_name);
+      if (info != NULL)
+        {
+          GVariantType *expected_type;
+          expected_type = _g_dbus_compute_complete_signature (info->args);
+          if (!g_variant_type_equal (expected_type, g_variant_get_type (parameters)))
+            {
+              gchar *expected_type_string = g_variant_type_dup_string (expected_type);
+              g_warning ("Dropping signal %s of type %s since the type from the expected interface is %s",
+                         info->name,
+                         g_variant_get_type_string (parameters),
+                         expected_type_string);
+              g_free (expected_type_string);
+              g_variant_type_free (expected_type);
+              G_UNLOCK (properties_lock);
+              goto out;
+            }
+          g_variant_type_free (expected_type);
+        }
+    }
+
+  G_UNLOCK (properties_lock);
+
   g_signal_emit (proxy,
                  signals[SIGNAL_SIGNAL],
                  0,
                  sender_name,
                  signal_name,
                  parameters);
+
  out:
-  ;
+  if (proxy != NULL)
+    g_object_unref (proxy);
 }
 
 /* ---------------------------------------------------------------------------------------------------- */
 
+/* must hold properties_lock */
+static void
+insert_property_checked (GDBusProxy  *proxy,
+                        gchar *property_name,
+                        GVariant *value)
+{
+  if (proxy->priv->expected_interface != NULL)
+    {
+      const GDBusPropertyInfo *info;
+      info = g_dbus_interface_info_lookup_property (proxy->priv->expected_interface, property_name);
+      /* Only check known properties */
+      if (info != NULL)
+        {
+          /* Warn about properties with the wrong type */
+          if (g_strcmp0 (info->signature, g_variant_get_type_string (value)) != 0)
+            {
+              g_warning ("Received property %s with type %s does not match expected type "
+                         "%s in the expected interface",
+                         property_name,
+                         g_variant_get_type_string (value),
+                         info->signature);
+              goto invalid;
+            }
+        }
+    }
+
+  g_hash_table_insert (proxy->priv->properties,
+                      property_name, /* adopts string */
+                      value); /* adopts value */
+
+  return;
+
+ invalid:
+  g_variant_unref (value);
+  g_free (property_name);
+}
+
+typedef struct
+{
+  GDBusProxy *proxy;
+  gchar *prop_name;
+} InvalidatedPropGetData;
+
+static void
+invalidated_property_get_cb (GDBusConnection *connection,
+                             GAsyncResult    *res,
+                             gpointer         user_data)
+{
+  InvalidatedPropGetData *data = user_data;
+  const gchar *invalidated_properties[] = {NULL};
+  GVariantBuilder builder;
+  GVariant *value = NULL;
+  GVariant *unpacked_value = NULL;
+
+  /* errors are fine, the other end could have disconnected */
+  value = g_dbus_connection_call_finish (connection, res, NULL);
+  if (value == NULL)
+    {
+      goto out;
+    }
+
+  if (!g_variant_is_of_type (value, G_VARIANT_TYPE ("(v)")))
+    {
+      g_warning ("Expected type '(v)' for Get() reply, got '%s'", g_variant_get_type_string (value));
+      goto out;
+    }
+
+  g_variant_get (value, "(v)", &unpacked_value);
+
+  /* synthesize the a{sv} in the PropertiesChanged signal */
+  g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{sv}"));
+  g_variant_builder_add (&builder, "{sv}", data->prop_name, unpacked_value);
+
+  G_LOCK (properties_lock);
+  insert_property_checked (data->proxy,
+                           data->prop_name,  /* adopts string */
+                           unpacked_value);  /* adopts value */
+  data->prop_name = NULL;
+  G_UNLOCK (properties_lock);
+
+  g_signal_emit (data->proxy,
+                 signals[PROPERTIES_CHANGED_SIGNAL], 0,
+                 g_variant_builder_end (&builder), /* consumed */
+                 invalidated_properties);
+
+
+ out:
+  if (value != NULL)
+    g_variant_unref (value);
+  g_object_unref (data->proxy);
+  g_free (data->prop_name);
+  g_slice_free (InvalidatedPropGetData, data);
+}
+
 static void
 on_properties_changed (GDBusConnection *connection,
                        const gchar     *sender_name,
@@ -688,8 +1031,9 @@ on_properties_changed (GDBusConnection *connection,
                        GVariant        *parameters,
                        gpointer         user_data)
 {
-  GDBusProxy *proxy = G_DBUS_PROXY (user_data);
-  GError *error;
+  SignalSubscriptionData *data = user_data;
+  gboolean emit_g_signal = FALSE;
+  GDBusProxy *proxy;
   const gchar *interface_name_for_signal;
   GVariant *changed_properties;
   gchar **invalidated_properties;
@@ -698,17 +1042,38 @@ on_properties_changed (GDBusConnection *connection,
   GVariant *value;
   guint n;
 
-  error = NULL;
   changed_properties = NULL;
   invalidated_properties = NULL;
 
+  G_LOCK (signal_subscription_lock);
+  proxy = data->proxy;
+  if (proxy == NULL)
+    {
+      G_UNLOCK (signal_subscription_lock);
+      goto out;
+    }
+  else
+    {
+      g_object_ref (proxy);
+      G_UNLOCK (signal_subscription_lock);
+    }
+
   if (!proxy->priv->initialized)
     goto out;
 
+  G_LOCK (properties_lock);
+
+  if (proxy->priv->name_owner != NULL && g_strcmp0 (sender_name, proxy->priv->name_owner) != 0)
+    {
+      G_UNLOCK (properties_lock);
+      goto out;
+    }
+
   if (!g_variant_is_of_type (parameters, G_VARIANT_TYPE ("(sa{sv}as)")))
     {
-      g_warning ("Value for PropertiesChanged signal with type `%s' does not match `(sa{sv}as)'",
+      g_warning ("Value for PropertiesChanged signal with type '%s' does not match '(sa{sv}as)'",
                  g_variant_get_type_string (parameters));
+      G_UNLOCK (properties_lock);
       goto out;
     }
 
@@ -719,76 +1084,70 @@ on_properties_changed (GDBusConnection *connection,
                  &invalidated_properties);
 
   if (g_strcmp0 (interface_name_for_signal, proxy->priv->interface_name) != 0)
-    goto out;
+    {
+      G_UNLOCK (properties_lock);
+      goto out;
+    }
 
   g_variant_iter_init (&iter, changed_properties);
   while (g_variant_iter_next (&iter, "{sv}", &key, &value))
     {
-      g_hash_table_insert (proxy->priv->properties,
-                           key, /* adopts string */
-                           value); /* adopts value */
+      insert_property_checked (proxy,
+                              key, /* adopts string */
+                              value); /* adopts value */
+      emit_g_signal = TRUE;
     }
 
-  for (n = 0; invalidated_properties[n] != NULL; n++)
+  if (proxy->priv->flags & G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES)
+    {
+      if (proxy->priv->name_owner != NULL)
+        {
+          for (n = 0; invalidated_properties[n] != NULL; n++)
+            {
+              InvalidatedPropGetData *data;
+              data = g_slice_new0 (InvalidatedPropGetData);
+              data->proxy = g_object_ref (proxy);
+              data->prop_name = g_strdup (invalidated_properties[n]);
+              g_dbus_connection_call (proxy->priv->connection,
+                                      proxy->priv->name_owner,
+                                      proxy->priv->object_path,
+                                      "org.freedesktop.DBus.Properties",
+                                      "Get",
+                                      g_variant_new ("(ss)", proxy->priv->interface_name, data->prop_name),
+                                      G_VARIANT_TYPE ("(v)"),
+                                      G_DBUS_CALL_FLAGS_NONE,
+                                      -1,           /* timeout */
+                                      NULL,         /* GCancellable */
+                                      (GAsyncReadyCallback) invalidated_property_get_cb,
+                                      data);
+            }
+        }
+    }
+  else
     {
-      g_hash_table_remove (proxy->priv->properties, invalidated_properties[n]);
+      emit_g_signal = TRUE;
+      for (n = 0; invalidated_properties[n] != NULL; n++)
+        {
+          g_hash_table_remove (proxy->priv->properties, invalidated_properties[n]);
+        }
     }
 
-  /* emit signal */
-  g_signal_emit (proxy, signals[PROPERTIES_CHANGED_SIGNAL],
-                 0,
-                 changed_properties,
-                 invalidated_properties);
+  G_UNLOCK (properties_lock);
+
+  if (emit_g_signal)
+    {
+      g_signal_emit (proxy, signals[PROPERTIES_CHANGED_SIGNAL],
+                     0,
+                     changed_properties,
+                     invalidated_properties);
+    }
 
  out:
   if (changed_properties != NULL)
     g_variant_unref (changed_properties);
   g_free (invalidated_properties);
-}
-
-/* ---------------------------------------------------------------------------------------------------- */
-
-static void
-g_dbus_proxy_constructed (GObject *object)
-{
-  if (G_OBJECT_CLASS (g_dbus_proxy_parent_class)->constructed != NULL)
-    G_OBJECT_CLASS (g_dbus_proxy_parent_class)->constructed (object);
-}
-
-/* ---------------------------------------------------------------------------------------------------- */
-
-static void
-subscribe_to_signals (GDBusProxy *proxy)
-{
-  if (!(proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES))
-    {
-      /* subscribe to PropertiesChanged() */
-      proxy->priv->properties_changed_subscriber_id =
-        g_dbus_connection_signal_subscribe (proxy->priv->connection,
-                                            proxy->priv->unique_bus_name,
-                                            "org.freedesktop.DBus.Properties",
-                                            "PropertiesChanged",
-                                            proxy->priv->object_path,
-                                            proxy->priv->interface_name,
-                                            on_properties_changed,
-                                            proxy,
-                                            NULL);
-    }
-
-  if (!(proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS))
-    {
-      /* subscribe to all signals for the object */
-      proxy->priv->signals_subscriber_id =
-        g_dbus_connection_signal_subscribe (proxy->priv->connection,
-                                            proxy->priv->unique_bus_name,
-                                            proxy->priv->interface_name,
-                                            NULL,                        /* member */
-                                            proxy->priv->object_path,
-                                            NULL,                        /* arg0 */
-                                            on_signal_received,
-                                            proxy,
-                                            NULL);
-    }
+  if (proxy != NULL)
+    g_object_unref (proxy);
 }
 
 /* ---------------------------------------------------------------------------------------------------- */
@@ -800,104 +1159,281 @@ process_get_all_reply (GDBusProxy *proxy,
   GVariantIter *iter;
   gchar *key;
   GVariant *value;
+  guint num_properties;
 
-  if (strcmp (g_variant_get_type_string (result), "(a{sv})") != 0)
+  if (!g_variant_is_of_type (result, G_VARIANT_TYPE ("(a{sv})")))
     {
-      g_warning ("Value for GetAll reply with type `%s' does not match `(a{sv})'",
+      g_warning ("Value for GetAll reply with type '%s' does not match '(a{sv})'",
                  g_variant_get_type_string (result));
       goto out;
     }
 
+  G_LOCK (properties_lock);
+
   g_variant_get (result, "(a{sv})", &iter);
   while (g_variant_iter_next (iter, "{sv}", &key, &value))
     {
-      //g_print ("got %s -> %s\n", key, g_variant_markup_print (value, FALSE, 0, 0));
-
-      g_hash_table_insert (proxy->priv->properties,
-                           key, /* adopts string */
-                           value); /* adopts value */
+      insert_property_checked (proxy,
+                              key, /* adopts string */
+                              value); /* adopts value */
     }
   g_variant_iter_free (iter);
 
+  num_properties = g_hash_table_size (proxy->priv->properties);
+  G_UNLOCK (properties_lock);
+
+  /* Synthesize ::g-properties-changed changed */
+  if (num_properties > 0)
+    {
+      GVariant *changed_properties;
+      const gchar *invalidated_properties[1] = {NULL};
+
+      g_variant_get (result,
+                     "(@a{sv})",
+                     &changed_properties);
+      g_signal_emit (proxy, signals[PROPERTIES_CHANGED_SIGNAL],
+                     0,
+                     changed_properties,
+                     invalidated_properties);
+      g_variant_unref (changed_properties);
+    }
+
  out:
   ;
 }
 
-static gboolean
-initable_init (GInitable     *initable,
-               GCancellable  *cancellable,
-               GError       **error)
+typedef struct
 {
-  GDBusProxy *proxy = G_DBUS_PROXY (initable);
-  GVariant *result;
-  gboolean ret;
+  GDBusProxy *proxy;
+  GCancellable *cancellable;
+  gchar *name_owner;
+} LoadPropertiesOnNameOwnerChangedData;
 
-  ret = FALSE;
+static void
+on_name_owner_changed_get_all_cb (GDBusConnection *connection,
+                                  GAsyncResult    *res,
+                                  gpointer         user_data)
+{
+  LoadPropertiesOnNameOwnerChangedData *data = user_data;
+  GVariant *result;
+  GError *error;
+  gboolean cancelled;
 
-  subscribe_to_signals (proxy);
+  cancelled = FALSE;
 
-  if (!(proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES))
-    {
-      /* load all properties synchronously */
-      result = g_dbus_connection_call_sync (proxy->priv->connection,
-                                            proxy->priv->unique_bus_name,
-                                            proxy->priv->object_path,
-                                            "org.freedesktop.DBus.Properties",
-                                            "GetAll",
-                                            g_variant_new ("(s)", proxy->priv->interface_name),
-                                            G_VARIANT_TYPE ("(a{sv})"),
-                                            G_DBUS_CALL_FLAGS_NONE,
-                                            -1,           /* timeout */
-                                            cancellable,
-                                            error);
-      if (result == NULL)
+  error = NULL;
+  result = g_dbus_connection_call_finish (connection,
+                                          res,
+                                          &error);
+  if (result == NULL)
+    {
+      if (error->domain == G_IO_ERROR && error->code == G_IO_ERROR_CANCELLED)
+        cancelled = TRUE;
+      /* We just ignore if GetAll() is failing. Because this might happen
+       * if the object has no properties at all. Or if the caller is
+       * not authorized to see the properties.
+       *
+       * Either way, apps can know about this by using
+       * get_cached_property_names() or get_cached_property().
+       *
+       * TODO: handle G_DBUS_DEBUG flag 'proxy' and, if enabled, log the
+       * fact that GetAll() failed
+       */
+      //g_debug ("error: %d %d %s", error->domain, error->code, error->message);
+      g_error_free (error);
+    }
+
+  /* and finally we can notify */
+  if (!cancelled)
+    {
+      G_LOCK (properties_lock);
+      g_free (data->proxy->priv->name_owner);
+      data->proxy->priv->name_owner = data->name_owner;
+      data->name_owner = NULL; /* to avoid an extra copy, we steal the string */
+      g_hash_table_remove_all (data->proxy->priv->properties);
+      G_UNLOCK (properties_lock);
+      if (result != NULL)
         {
-          /* We just ignore if GetAll() is failing. Because this might happen
-           * if the object has no properties at all. Or if the caller is
-           * not authorized to see the properties.
-           *
-           * Either way, apps can know about this by using
-           * get_cached_property_names() or get_cached_property().
-           *
-           * TODO: handle G_DBUS_DEBUG flag 'proxy' and, if enabled, log the
-           * fact that GetAll() failed
-           */
-          //g_debug ("error: %d %d %s", error->domain, error->code, error->message);
-          if (error != NULL)
-            {
-              g_error_free (*error);
-              *error = NULL;
-            }
-          ret = TRUE;
-          goto out;
+          process_get_all_reply (data->proxy, result);
+          g_variant_unref (result);
         }
 
-      process_get_all_reply (proxy, result);
-
-      g_variant_unref (result);
+      g_object_notify (G_OBJECT (data->proxy), "g-name-owner");
     }
 
-  ret = TRUE;
+  if (data->cancellable == data->proxy->priv->get_all_cancellable)
+    data->proxy->priv->get_all_cancellable = NULL;
 
- out:
-  proxy->priv->initialized = TRUE;
-  return ret;
+  g_object_unref (data->proxy);
+  g_object_unref (data->cancellable);
+  g_free (data->name_owner);
+  g_free (data);
 }
 
 static void
-initable_iface_init (GInitableIface *initable_iface)
+on_name_owner_changed (GDBusConnection *connection,
+                       const gchar      *sender_name,
+                       const gchar      *object_path,
+                       const gchar      *interface_name,
+                       const gchar      *signal_name,
+                       GVariant         *parameters,
+                       gpointer          user_data)
 {
-  initable_iface->init = initable_init;
+  SignalSubscriptionData *data = user_data;
+  GDBusProxy *proxy;
+  const gchar *old_owner;
+  const gchar *new_owner;
+
+  G_LOCK (signal_subscription_lock);
+  proxy = data->proxy;
+  if (proxy == NULL)
+    {
+      G_UNLOCK (signal_subscription_lock);
+      goto out;
+    }
+  else
+    {
+      g_object_ref (proxy);
+      G_UNLOCK (signal_subscription_lock);
+    }
+
+  /* if we are already trying to load properties, cancel that */
+  if (proxy->priv->get_all_cancellable != NULL)
+    {
+      g_cancellable_cancel (proxy->priv->get_all_cancellable);
+      proxy->priv->get_all_cancellable = NULL;
+    }
+
+  g_variant_get (parameters,
+                 "(&s&s&s)",
+                 NULL,
+                 &old_owner,
+                 &new_owner);
+
+  if (strlen (new_owner) == 0)
+    {
+      G_LOCK (properties_lock);
+      g_free (proxy->priv->name_owner);
+      proxy->priv->name_owner = NULL;
+
+      /* Synthesize ::g-properties-changed changed */
+      if (!(proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES) &&
+          g_hash_table_size (proxy->priv->properties) > 0)
+        {
+          GVariantBuilder builder;
+          GPtrArray *invalidated_properties;
+          GHashTableIter iter;
+          const gchar *key;
+
+          /* Build changed_properties (always empty) and invalidated_properties ... */
+          g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{sv}"));
+
+          invalidated_properties = g_ptr_array_new_with_free_func (g_free);
+          g_hash_table_iter_init (&iter, proxy->priv->properties);
+          while (g_hash_table_iter_next (&iter, (gpointer) &key, NULL))
+            g_ptr_array_add (invalidated_properties, g_strdup (key));
+          g_ptr_array_add (invalidated_properties, NULL);
+
+          /* ... throw out the properties ... */
+          g_hash_table_remove_all (proxy->priv->properties);
+
+          G_UNLOCK (properties_lock);
+
+          /* ... and finally emit the ::g-properties-changed signal */
+          g_signal_emit (proxy, signals[PROPERTIES_CHANGED_SIGNAL],
+                         0,
+                         g_variant_builder_end (&builder) /* consumed */,
+                         (const gchar* const *) invalidated_properties->pdata);
+          g_ptr_array_unref (invalidated_properties);
+        }
+      else
+        {
+          G_UNLOCK (properties_lock);
+        }
+      g_object_notify (G_OBJECT (proxy), "g-name-owner");
+    }
+  else
+    {
+      G_LOCK (properties_lock);
+
+      /* ignore duplicates - this can happen when activating the service */
+      if (g_strcmp0 (new_owner, proxy->priv->name_owner) == 0)
+        {
+          G_UNLOCK (properties_lock);
+          goto out;
+        }
+
+      if (proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES)
+        {
+          g_free (proxy->priv->name_owner);
+          proxy->priv->name_owner = g_strdup (new_owner);
+
+          g_hash_table_remove_all (proxy->priv->properties);
+          G_UNLOCK (properties_lock);
+          g_object_notify (G_OBJECT (proxy), "g-name-owner");
+        }
+      else
+        {
+          LoadPropertiesOnNameOwnerChangedData *data;
+
+          G_UNLOCK (properties_lock);
+
+          /* start loading properties.. only then emit notify::g-name-owner .. we
+           * need to be able to cancel this in the event another NameOwnerChanged
+           * signal suddenly happens
+           */
+
+          g_assert (proxy->priv->get_all_cancellable == NULL);
+          proxy->priv->get_all_cancellable = g_cancellable_new ();
+          data = g_new0 (LoadPropertiesOnNameOwnerChangedData, 1);
+          data->proxy = g_object_ref (proxy);
+          data->cancellable = proxy->priv->get_all_cancellable;
+          data->name_owner = g_strdup (new_owner);
+          g_dbus_connection_call (proxy->priv->connection,
+                                  data->name_owner,
+                                  proxy->priv->object_path,
+                                  "org.freedesktop.DBus.Properties",
+                                  "GetAll",
+                                  g_variant_new ("(s)", proxy->priv->interface_name),
+                                  G_VARIANT_TYPE ("(a{sv})"),
+                                  G_DBUS_CALL_FLAGS_NONE,
+                                  -1,           /* timeout */
+                                  proxy->priv->get_all_cancellable,
+                                  (GAsyncReadyCallback) on_name_owner_changed_get_all_cb,
+                                  data);
+        }
+    }
+
+ out:
+  if (proxy != NULL)
+    g_object_unref (proxy);
 }
 
 /* ---------------------------------------------------------------------------------------------------- */
 
+typedef struct
+{
+  GDBusProxy *proxy;
+  GCancellable *cancellable;
+  GSimpleAsyncResult *simple;
+} AsyncInitData;
+
 static void
-get_all_cb (GDBusConnection *connection,
-            GAsyncResult    *res,
-            gpointer         user_data)
+async_init_data_free (AsyncInitData *data)
 {
-  GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (user_data);
+  g_object_unref (data->proxy);
+  if (data->cancellable != NULL)
+    g_object_unref (data->cancellable);
+  g_object_unref (data->simple);
+  g_free (data);
+}
+
+static void
+async_init_get_all_cb (GDBusConnection *connection,
+                       GAsyncResult    *res,
+                       gpointer         user_data)
+{
+  AsyncInitData *data = user_data;
   GVariant *result;
   GError *error;
 
@@ -922,59 +1458,281 @@ get_all_cb (GDBusConnection *connection,
     }
   else
     {
-      g_simple_async_result_set_op_res_gpointer (simple,
+      g_simple_async_result_set_op_res_gpointer (data->simple,
                                                  result,
                                                  (GDestroyNotify) g_variant_unref);
     }
 
-  g_simple_async_result_complete_in_idle (simple);
-  g_object_unref (simple);
+  g_simple_async_result_complete_in_idle (data->simple);
+  async_init_data_free (data);
 }
 
 static void
-async_initable_init_async (GAsyncInitable      *initable,
-                           gint                 io_priority,
-                           GCancellable        *cancellable,
-                           GAsyncReadyCallback  callback,
-                           gpointer             user_data)
+async_init_data_set_name_owner (AsyncInitData *data,
+                                const gchar   *name_owner)
 {
-  GDBusProxy *proxy = G_DBUS_PROXY (initable);
-  GSimpleAsyncResult *simple;
+  gboolean get_all;
 
-  simple = g_simple_async_result_new (G_OBJECT (proxy),
-                                      callback,
-                                      user_data,
-                                      NULL);
 
-  subscribe_to_signals (proxy);
+  if (name_owner != NULL)
+    {
+      /* it starts as NULL anyway */
+      G_LOCK (properties_lock);
+      data->proxy->priv->name_owner = g_strdup (name_owner);
+      G_UNLOCK (properties_lock);
+    }
 
-  if (!(proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES))
+  get_all = TRUE;
+
+  if (data->proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES)
+    {
+      /* Don't load properties if the API user doesn't want them */
+      get_all = FALSE;
+    }
+  else if (name_owner == NULL && data->proxy->priv->name != NULL)
+    {
+      /* Don't attempt to load properties if the name_owner is NULL (which
+       * usually means the name isn't owned), unless name is also NULL (which
+       * means we actually wanted to talk to the directly-connected process -
+       * either dbus-daemon or a peer - instead of going via dbus-daemon)
+       */
+        get_all = FALSE;
+    }
+
+  if (get_all)
     {
       /* load all properties asynchronously */
-      g_dbus_connection_call (proxy->priv->connection,
-                              proxy->priv->unique_bus_name,
-                              proxy->priv->object_path,
+      g_dbus_connection_call (data->proxy->priv->connection,
+                              name_owner,
+                              data->proxy->priv->object_path,
                               "org.freedesktop.DBus.Properties",
                               "GetAll",
-                              g_variant_new ("(s)", proxy->priv->interface_name),
+                              g_variant_new ("(s)", data->proxy->priv->interface_name),
                               G_VARIANT_TYPE ("(a{sv})"),
                               G_DBUS_CALL_FLAGS_NONE,
                               -1,           /* timeout */
-                              cancellable,
-                              (GAsyncReadyCallback) get_all_cb,
-                              simple);
+                              data->cancellable,
+                              (GAsyncReadyCallback) async_init_get_all_cb,
+                              data);
     }
   else
     {
-      g_simple_async_result_complete_in_idle (simple);
-      g_object_unref (simple);
+      g_simple_async_result_complete_in_idle (data->simple);
+      async_init_data_free (data);
+    }
+}
+
+static void
+async_init_get_name_owner_cb (GDBusConnection *connection,
+                              GAsyncResult    *res,
+                              gpointer         user_data)
+{
+  AsyncInitData *data = user_data;
+  GError *error;
+  GVariant *result;
+
+  error = NULL;
+  result = g_dbus_connection_call_finish (connection,
+                                          res,
+                                          &error);
+  if (result == NULL)
+    {
+      if (error->domain == G_DBUS_ERROR &&
+          error->code == G_DBUS_ERROR_NAME_HAS_NO_OWNER)
+        {
+          g_error_free (error);
+          async_init_data_set_name_owner (data, NULL);
+        }
+      else
+        {
+          g_simple_async_result_take_error (data->simple, error);
+          g_simple_async_result_complete_in_idle (data->simple);
+          async_init_data_free (data);
+        }
+    }
+  else
+    {
+      /* borrowed from result to avoid an extra copy */
+      const gchar *name_owner;
+
+      g_variant_get (result, "(&s)", &name_owner);
+      async_init_data_set_name_owner (data, name_owner);
+      g_variant_unref (result);
+    }
+}
+
+static void
+async_init_call_get_name_owner (AsyncInitData *data)
+{
+  g_dbus_connection_call (data->proxy->priv->connection,
+                          "org.freedesktop.DBus",  /* name */
+                          "/org/freedesktop/DBus", /* object path */
+                          "org.freedesktop.DBus",  /* interface */
+                          "GetNameOwner",
+                          g_variant_new ("(s)",
+                                         data->proxy->priv->name),
+                          G_VARIANT_TYPE ("(s)"),
+                          G_DBUS_CALL_FLAGS_NONE,
+                          -1,           /* timeout */
+                          data->cancellable,
+                          (GAsyncReadyCallback) async_init_get_name_owner_cb,
+                          data);
+}
+
+static void
+async_init_start_service_by_name_cb (GDBusConnection *connection,
+                                     GAsyncResult    *res,
+                                     gpointer         user_data)
+{
+  AsyncInitData *data = user_data;
+  GError *error;
+  GVariant *result;
+
+  error = NULL;
+  result = g_dbus_connection_call_finish (connection,
+                                          res,
+                                          &error);
+  if (result == NULL)
+    {
+      /* Errors are not unexpected; the bus will reply e.g.
+       *
+       *   org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.Epiphany2
+       *   was not provided by any .service files
+       *
+       * or (see #677718)
+       *
+       *   org.freedesktop.systemd1.Masked: Unit polkit.service is masked.
+       *
+       * This doesn't mean that the name doesn't have an owner, just
+       * that it's not provided by a .service file or can't currently
+       * be started.
+       *
+       * In particular, in both cases, it could be that a service
+       * owner will actually appear later. So instead of erroring out,
+       * we just proceed to invoke GetNameOwner() if dealing with the
+       * kind of errors above.
+       */
+      if (error->domain == G_DBUS_ERROR && error->code == G_DBUS_ERROR_SERVICE_UNKNOWN)
+        {
+          g_error_free (error);
+        }
+      else
+        {
+          gchar *remote_error = g_dbus_error_get_remote_error (error);
+          if (g_strcmp0 (remote_error, "org.freedesktop.systemd1.Masked") == 0)
+            {
+              g_error_free (error);
+              g_free (remote_error);
+            }
+          else
+            {
+              g_prefix_error (&error,
+                              _("Error calling StartServiceByName for %s: "),
+                              data->proxy->priv->name);
+              g_free (remote_error);
+              goto failed;
+            }
+        }
+    }
+  else
+    {
+      guint32 start_service_result;
+      g_variant_get (result,
+                     "(u)",
+                     &start_service_result);
+      g_variant_unref (result);
+      if (start_service_result == 1 ||  /* DBUS_START_REPLY_SUCCESS */
+          start_service_result == 2)    /* DBUS_START_REPLY_ALREADY_RUNNING */
+        {
+          /* continue to invoke GetNameOwner() */
+        }
+      else
+        {
+          error = g_error_new (G_IO_ERROR,
+                               G_IO_ERROR_FAILED,
+                               _("Unexpected reply %d from StartServiceByName(\"%s\") method"),
+                               start_service_result,
+                               data->proxy->priv->name);
+          goto failed;
+        }
+    }
+
+  async_init_call_get_name_owner (data);
+  return;
+
+ failed:
+  g_warn_if_fail (error != NULL);
+  g_simple_async_result_take_error (data->simple, error);
+  g_simple_async_result_complete_in_idle (data->simple);
+  async_init_data_free (data);
+}
+
+static void
+async_init_call_start_service_by_name (AsyncInitData *data)
+{
+  g_dbus_connection_call (data->proxy->priv->connection,
+                          "org.freedesktop.DBus",  /* name */
+                          "/org/freedesktop/DBus", /* object path */
+                          "org.freedesktop.DBus",  /* interface */
+                          "StartServiceByName",
+                          g_variant_new ("(su)",
+                                         data->proxy->priv->name,
+                                         0),
+                          G_VARIANT_TYPE ("(u)"),
+                          G_DBUS_CALL_FLAGS_NONE,
+                          -1,           /* timeout */
+                          data->cancellable,
+                          (GAsyncReadyCallback) async_init_start_service_by_name_cb,
+                          data);
+}
+
+static void
+async_initable_init_second_async (GAsyncInitable      *initable,
+                                  gint                 io_priority,
+                                  GCancellable        *cancellable,
+                                  GAsyncReadyCallback  callback,
+                                  gpointer             user_data)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (initable);
+  AsyncInitData *data;
+
+  data = g_new0 (AsyncInitData, 1);
+  data->proxy = g_object_ref (proxy);
+  data->cancellable = cancellable != NULL ? g_object_ref (cancellable) : NULL;
+  data->simple = g_simple_async_result_new (G_OBJECT (proxy),
+                                            callback,
+                                            user_data,
+                                            NULL);
+  g_simple_async_result_set_check_cancellable (data->simple, cancellable);
+
+  /* Check name ownership asynchronously - possibly also start the service */
+  if (proxy->priv->name == NULL)
+    {
+      /* Do nothing */
+      async_init_data_set_name_owner (data, NULL);
+    }
+  else if (g_dbus_is_unique_name (proxy->priv->name))
+    {
+      async_init_data_set_name_owner (data, proxy->priv->name);
+    }
+  else
+    {
+      if ((proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START) ||
+          (proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION))
+        {
+          async_init_call_get_name_owner (data);
+        }
+      else
+        {
+          async_init_call_start_service_by_name (data);
+        }
     }
 }
 
 static gboolean
-async_initable_init_finish (GAsyncInitable  *initable,
-                            GAsyncResult    *res,
-                            GError         **error)
+async_initable_init_second_finish (GAsyncInitable  *initable,
+                                   GAsyncResult    *res,
+                                   GError         **error)
 {
   GDBusProxy *proxy = G_DBUS_PROXY (initable);
   GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
@@ -999,6 +1757,162 @@ async_initable_init_finish (GAsyncInitable  *initable,
   return ret;
 }
 
+/* ---------------------------------------------------------------------------------------------------- */
+
+static void
+async_initable_init_first (GAsyncInitable *initable)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (initable);
+
+  if (!(proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES))
+    {
+      /* subscribe to PropertiesChanged() */
+      proxy->priv->properties_changed_subscription_id =
+        g_dbus_connection_signal_subscribe (proxy->priv->connection,
+                                            proxy->priv->name,
+                                            "org.freedesktop.DBus.Properties",
+                                            "PropertiesChanged",
+                                            proxy->priv->object_path,
+                                            proxy->priv->interface_name,
+                                            G_DBUS_SIGNAL_FLAGS_NONE,
+                                            on_properties_changed,
+                                            signal_subscription_ref (proxy->priv->signal_subscription_data),
+                                            (GDestroyNotify) signal_subscription_unref);
+    }
+
+  if (!(proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS))
+    {
+      /* subscribe to all signals for the object */
+      proxy->priv->signals_subscription_id =
+        g_dbus_connection_signal_subscribe (proxy->priv->connection,
+                                            proxy->priv->name,
+                                            proxy->priv->interface_name,
+                                            NULL,                        /* member */
+                                            proxy->priv->object_path,
+                                            NULL,                        /* arg0 */
+                                            G_DBUS_SIGNAL_FLAGS_NONE,
+                                            on_signal_received,
+                                            signal_subscription_ref (proxy->priv->signal_subscription_data),
+                                            (GDestroyNotify) signal_subscription_unref);
+    }
+
+  if (proxy->priv->name != NULL && !g_dbus_is_unique_name (proxy->priv->name))
+    {
+      proxy->priv->name_owner_changed_subscription_id =
+        g_dbus_connection_signal_subscribe (proxy->priv->connection,
+                                            "org.freedesktop.DBus",  /* name */
+                                            "org.freedesktop.DBus",  /* interface */
+                                            "NameOwnerChanged",      /* signal name */
+                                            "/org/freedesktop/DBus", /* path */
+                                            proxy->priv->name,       /* arg0 */
+                                            G_DBUS_SIGNAL_FLAGS_NONE,
+                                            on_name_owner_changed,
+                                            signal_subscription_ref (proxy->priv->signal_subscription_data),
+                                            (GDestroyNotify) signal_subscription_unref);
+    }
+}
+
+/* ---------------------------------------------------------------------------------------------------- */
+
+/* initialization is split into two parts - the first is the
+ * non-blocing part that requires the callers GMainContext - the
+ * second is a blocking part async part that doesn't require the
+ * callers GMainContext.. we do this split so the code can be reused
+ * in the GInitable implementation below.
+ *
+ * Note that obtaining a GDBusConnection is not shared between the two
+ * paths.
+ */
+
+typedef struct
+{
+  GDBusProxy          *proxy;
+  gint                 io_priority;
+  GCancellable        *cancellable;
+  GAsyncReadyCallback  callback;
+  gpointer             user_data;
+} GetConnectionData;
+
+static void
+get_connection_cb (GObject       *source_object,
+                   GAsyncResult  *res,
+                   gpointer       user_data)
+{
+  GetConnectionData *data = user_data;
+  GError *error;
+
+  error = NULL;
+  data->proxy->priv->connection = g_bus_get_finish (res, &error);
+  if (data->proxy->priv->connection == NULL)
+    {
+      GSimpleAsyncResult *simple;
+      simple = g_simple_async_result_new (G_OBJECT (data->proxy),
+                                          data->callback,
+                                          data->user_data,
+                                          NULL);
+      g_simple_async_result_set_check_cancellable (simple, data->cancellable);
+      g_simple_async_result_take_error (simple, error);
+      g_simple_async_result_complete_in_idle (simple);
+      g_object_unref (simple);
+    }
+  else
+    {
+      async_initable_init_first (G_ASYNC_INITABLE (data->proxy));
+      async_initable_init_second_async (G_ASYNC_INITABLE (data->proxy),
+                                        data->io_priority,
+                                        data->cancellable,
+                                        data->callback,
+                                        data->user_data);
+    }
+
+  if (data->cancellable != NULL)
+    g_object_unref (data->cancellable);
+
+  g_object_unref (data->proxy);
+  g_free (data);
+}
+
+static void
+async_initable_init_async (GAsyncInitable      *initable,
+                           gint                 io_priority,
+                           GCancellable        *cancellable,
+                           GAsyncReadyCallback  callback,
+                           gpointer             user_data)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (initable);
+
+  if (proxy->priv->bus_type != G_BUS_TYPE_NONE)
+    {
+      GetConnectionData *data;
+
+      g_assert (proxy->priv->connection == NULL);
+
+      data = g_new0 (GetConnectionData, 1);
+      data->proxy = g_object_ref (proxy);
+      data->io_priority = io_priority;
+      data->cancellable = cancellable != NULL ? g_object_ref (cancellable) : NULL;
+      data->callback = callback;
+      data->user_data = user_data;
+      g_bus_get (proxy->priv->bus_type,
+                 cancellable,
+                 get_connection_cb,
+                 data);
+    }
+  else
+    {
+      async_initable_init_first (initable);
+      async_initable_init_second_async (initable, io_priority, cancellable, callback, user_data);
+    }
+}
+
+static gboolean
+async_initable_init_finish (GAsyncInitable  *initable,
+                            GAsyncResult    *res,
+                            GError         **error)
+{
+  return async_initable_init_second_finish (initable, res, error);
+}
+
 static void
 async_initable_iface_init (GAsyncInitableIface *async_initable_iface)
 {
@@ -1008,72 +1922,312 @@ async_initable_iface_init (GAsyncInitableIface *async_initable_iface)
 
 /* ---------------------------------------------------------------------------------------------------- */
 
+typedef struct
+{
+  GMainContext *context;
+  GMainLoop *loop;
+  GAsyncResult *res;
+} InitableAsyncInitableData;
+
+static void
+async_initable_init_async_cb (GObject      *source_object,
+                              GAsyncResult *res,
+                              gpointer      user_data)
+{
+  InitableAsyncInitableData *data = user_data;
+  data->res = g_object_ref (res);
+  g_main_loop_quit (data->loop);
+}
+
+/* Simply reuse the GAsyncInitable implementation but run the first
+ * part (that is non-blocking and requires the callers GMainContext)
+ * with the callers GMainContext.. and the second with a private
+ * GMainContext (bug 621310 is slightly related).
+ *
+ * Note that obtaining a GDBusConnection is not shared between the two
+ * paths.
+ */
+static gboolean
+initable_init (GInitable     *initable,
+               GCancellable  *cancellable,
+               GError       **error)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (initable);
+  InitableAsyncInitableData *data;
+  gboolean ret;
+
+  ret = FALSE;
+
+  if (proxy->priv->bus_type != G_BUS_TYPE_NONE)
+    {
+      g_assert (proxy->priv->connection == NULL);
+      proxy->priv->connection = g_bus_get_sync (proxy->priv->bus_type,
+                                                cancellable,
+                                                error);
+      if (proxy->priv->connection == NULL)
+        goto out;
+    }
+
+  async_initable_init_first (G_ASYNC_INITABLE (initable));
+
+  data = g_new0 (InitableAsyncInitableData, 1);
+  data->context = g_main_context_new ();
+  data->loop = g_main_loop_new (data->context, FALSE);
+
+  g_main_context_push_thread_default (data->context);
+
+  async_initable_init_second_async (G_ASYNC_INITABLE (initable),
+                                    G_PRIORITY_DEFAULT,
+                                    cancellable,
+                                    async_initable_init_async_cb,
+                                    data);
+
+  g_main_loop_run (data->loop);
+
+  ret = async_initable_init_second_finish (G_ASYNC_INITABLE (initable),
+                                           data->res,
+                                           error);
+
+  g_main_context_pop_thread_default (data->context);
+
+  g_main_context_unref (data->context);
+  g_main_loop_unref (data->loop);
+  g_object_unref (data->res);
+  g_free (data);
+
+ out:
+
+  return ret;
+}
+
+static void
+initable_iface_init (GInitableIface *initable_iface)
+{
+  initable_iface->init = initable_init;
+}
+
+/* ---------------------------------------------------------------------------------------------------- */
+
+/**
+ * g_dbus_proxy_new:
+ * @connection: A #GDBusConnection.
+ * @flags: Flags used when constructing the proxy.
+ * @info: (allow-none): A #GDBusInterfaceInfo specifying the minimal interface that @proxy conforms to or %NULL.
+ * @name: (allow-none): A bus name (well-known or unique) or %NULL if @connection is not a message bus connection.
+ * @object_path: An object path.
+ * @interface_name: A D-Bus interface name.
+ * @cancellable: (allow-none): A #GCancellable or %NULL.
+ * @callback: Callback function to invoke when the proxy is ready.
+ * @user_data: User data to pass to @callback.
+ *
+ * Creates a proxy for accessing @interface_name on the remote object
+ * at @object_path owned by @name at @connection and asynchronously
+ * loads D-Bus properties unless the
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to
+ * the #GDBusProxy::g-properties-changed signal to get notified about
+ * property changes.
+ *
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
+ * to handle signals from the remote object.
+ *
+ * If @name is a well-known name and the
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
+ * flags aren't set and no name owner currently exists, the message bus
+ * will be requested to launch a name owner for the name.
+ *
+ * This is a failable asynchronous constructor - when the proxy is
+ * ready, @callback will be invoked and you can use
+ * g_dbus_proxy_new_finish() to get the result.
+ *
+ * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
+ *
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
+ *
+ * Since: 2.26
+ */
+void
+g_dbus_proxy_new (GDBusConnection     *connection,
+                  GDBusProxyFlags      flags,
+                  GDBusInterfaceInfo  *info,
+                  const gchar         *name,
+                  const gchar         *object_path,
+                  const gchar         *interface_name,
+                  GCancellable        *cancellable,
+                  GAsyncReadyCallback  callback,
+                  gpointer             user_data)
+{
+  g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
+  g_return_if_fail ((name == NULL && g_dbus_connection_get_unique_name (connection) == NULL) || g_dbus_is_name (name));
+  g_return_if_fail (g_variant_is_object_path (object_path));
+  g_return_if_fail (g_dbus_is_interface_name (interface_name));
+
+  g_async_initable_new_async (G_TYPE_DBUS_PROXY,
+                              G_PRIORITY_DEFAULT,
+                              cancellable,
+                              callback,
+                              user_data,
+                              "g-flags", flags,
+                              "g-interface-info", info,
+                              "g-name", name,
+                              "g-connection", connection,
+                              "g-object-path", object_path,
+                              "g-interface-name", interface_name,
+                              NULL);
+}
+
+/**
+ * g_dbus_proxy_new_finish:
+ * @res: A #GAsyncResult obtained from the #GAsyncReadyCallback function passed to g_dbus_proxy_new().
+ * @error: Return location for error or %NULL.
+ *
+ * Finishes creating a #GDBusProxy.
+ *
+ * Returns: A #GDBusProxy or %NULL if @error is set. Free with g_object_unref().
+ *
+ * Since: 2.26
+ */
+GDBusProxy *
+g_dbus_proxy_new_finish (GAsyncResult  *res,
+                         GError       **error)
+{
+  GObject *object;
+  GObject *source_object;
+
+  source_object = g_async_result_get_source_object (res);
+  g_assert (source_object != NULL);
+
+  object = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object),
+                                        res,
+                                        error);
+  g_object_unref (source_object);
+
+  if (object != NULL)
+    return G_DBUS_PROXY (object);
+  else
+    return NULL;
+}
+
+/**
+ * g_dbus_proxy_new_sync:
+ * @connection: A #GDBusConnection.
+ * @flags: Flags used when constructing the proxy.
+ * @info: (allow-none): A #GDBusInterfaceInfo specifying the minimal interface that @proxy conforms to or %NULL.
+ * @name: (allow-none): A bus name (well-known or unique) or %NULL if @connection is not a message bus connection.
+ * @object_path: An object path.
+ * @interface_name: A D-Bus interface name.
+ * @cancellable: (allow-none): A #GCancellable or %NULL.
+ * @error: (allow-none): Return location for error or %NULL.
+ *
+ * Creates a proxy for accessing @interface_name on the remote object
+ * at @object_path owned by @name at @connection and synchronously
+ * loads D-Bus properties unless the
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used.
+ *
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
+ * to handle signals from the remote object.
+ *
+ * If @name is a well-known name and the
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
+ * flags aren't set and no name owner currently exists, the message bus
+ * will be requested to launch a name owner for the name.
+ *
+ * This is a synchronous failable constructor. See g_dbus_proxy_new()
+ * and g_dbus_proxy_new_finish() for the asynchronous version.
+ *
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
+ *
+ * Returns: A #GDBusProxy or %NULL if error is set. Free with g_object_unref().
+ *
+ * Since: 2.26
+ */
+GDBusProxy *
+g_dbus_proxy_new_sync (GDBusConnection     *connection,
+                       GDBusProxyFlags      flags,
+                       GDBusInterfaceInfo  *info,
+                       const gchar         *name,
+                       const gchar         *object_path,
+                       const gchar         *interface_name,
+                       GCancellable        *cancellable,
+                       GError             **error)
+{
+  GInitable *initable;
+
+  g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
+  g_return_val_if_fail ((name == NULL && g_dbus_connection_get_unique_name (connection) == NULL) ||
+                        g_dbus_is_name (name), NULL);
+  g_return_val_if_fail (g_variant_is_object_path (object_path), NULL);
+  g_return_val_if_fail (g_dbus_is_interface_name (interface_name), NULL);
+
+  initable = g_initable_new (G_TYPE_DBUS_PROXY,
+                             cancellable,
+                             error,
+                             "g-flags", flags,
+                             "g-interface-info", info,
+                             "g-name", name,
+                             "g-connection", connection,
+                             "g-object-path", object_path,
+                             "g-interface-name", interface_name,
+                             NULL);
+  if (initable != NULL)
+    return G_DBUS_PROXY (initable);
+  else
+    return NULL;
+}
+
+/* ---------------------------------------------------------------------------------------------------- */
+
 /**
- * g_dbus_proxy_new:
- * @connection: A #GDBusConnection.
- * @object_type: Either #G_TYPE_DBUS_PROXY or the #GType for the #GDBusProxy<!-- -->-derived type of proxy to create.
+ * g_dbus_proxy_new_for_bus:
+ * @bus_type: A #GBusType.
  * @flags: Flags used when constructing the proxy.
- * @info: A #GDBusInterfaceInfo specifying the minimal interface that @proxy conforms to or %NULL.
- * @unique_bus_name: A unique bus name or %NULL if @connection is not a message bus connection.
+ * @info: (allow-none): A #GDBusInterfaceInfo specifying the minimal interface that @proxy conforms to or %NULL.
+ * @name: A bus name (well-known or unique).
  * @object_path: An object path.
  * @interface_name: A D-Bus interface name.
- * @cancellable: A #GCancellable or %NULL.
+ * @cancellable: (allow-none): A #GCancellable or %NULL.
  * @callback: Callback function to invoke when the proxy is ready.
  * @user_data: User data to pass to @callback.
  *
- * Creates a proxy for accessing @interface_name on the remote object at @object_path
- * owned by @unique_bus_name at @connection and asynchronously loads D-Bus properties unless the
- * #G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to the
- * #GDBusProxy::g-properties-changed signal to get notified about property changes.
+ * Like g_dbus_proxy_new() but takes a #GBusType instead of a #GDBusConnection.
  *
- * If the #G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
- * match rules for signals. Connect to the #GDBusProxy::g-signal signal
- * to handle signals from the remote object.
- *
- * This is a failable asynchronous constructor - when the proxy is
- * ready, @callback will be invoked and you can use
- * g_dbus_proxy_new_finish() to get the result.
- *
- * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
  *
  * Since: 2.26
  */
 void
-g_dbus_proxy_new (GDBusConnection     *connection,
-                  GType                object_type,
-                  GDBusProxyFlags      flags,
-                  GDBusInterfaceInfo  *info,
-                  const gchar         *unique_bus_name,
-                  const gchar         *object_path,
-                  const gchar         *interface_name,
-                  GCancellable        *cancellable,
-                  GAsyncReadyCallback  callback,
-                  gpointer             user_data)
+g_dbus_proxy_new_for_bus (GBusType             bus_type,
+                          GDBusProxyFlags      flags,
+                          GDBusInterfaceInfo  *info,
+                          const gchar         *name,
+                          const gchar         *object_path,
+                          const gchar         *interface_name,
+                          GCancellable        *cancellable,
+                          GAsyncReadyCallback  callback,
+                          gpointer             user_data)
 {
-  g_return_if_fail (G_IS_DBUS_CONNECTION (connection));
-  g_return_if_fail (g_type_is_a (object_type, G_TYPE_DBUS_PROXY));
-  g_return_if_fail ((unique_bus_name == NULL && g_dbus_connection_get_unique_name (connection) == NULL) ||
-                    g_dbus_is_unique_name (unique_bus_name));
+  g_return_if_fail (g_dbus_is_name (name));
   g_return_if_fail (g_variant_is_object_path (object_path));
   g_return_if_fail (g_dbus_is_interface_name (interface_name));
 
-  g_async_initable_new_async (object_type,
+  g_async_initable_new_async (G_TYPE_DBUS_PROXY,
                               G_PRIORITY_DEFAULT,
                               cancellable,
                               callback,
                               user_data,
                               "g-flags", flags,
                               "g-interface-info", info,
-                              "g-unique-bus-name", unique_bus_name,
-                              "g-connection", connection,
+                              "g-name", name,
+                              "g-bus-type", bus_type,
                               "g-object-path", object_path,
                               "g-interface-name", interface_name,
                               NULL);
 }
 
 /**
- * g_dbus_proxy_new_finish:
- * @res: A #GAsyncResult obtained from the #GAsyncReadyCallback function passed to g_dbus_proxy_new().
+ * g_dbus_proxy_new_for_bus_finish:
+ * @res: A #GAsyncResult obtained from the #GAsyncReadyCallback function passed to g_dbus_proxy_new_for_bus().
  * @error: Return location for error or %NULL.
  *
  * Finishes creating a #GDBusProxy.
@@ -1083,83 +2237,55 @@ g_dbus_proxy_new (GDBusConnection     *connection,
  * Since: 2.26
  */
 GDBusProxy *
-g_dbus_proxy_new_finish (GAsyncResult  *res,
-                         GError       **error)
+g_dbus_proxy_new_for_bus_finish (GAsyncResult  *res,
+                                 GError       **error)
 {
-  GObject *object;
-  GObject *source_object;
-
-  source_object = g_async_result_get_source_object (res);
-  g_assert (source_object != NULL);
-
-  object = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object),
-                                        res,
-                                        error);
-  g_object_unref (source_object);
-
-  if (object != NULL)
-    return G_DBUS_PROXY (object);
-  else
-    return NULL;
+  return g_dbus_proxy_new_finish (res, error);
 }
 
-
-/* ---------------------------------------------------------------------------------------------------- */
-
 /**
- * g_dbus_proxy_new_sync:
- * @connection: A #GDBusConnection.
- * @object_type: Either #G_TYPE_DBUS_PROXY or the #GType for the #GDBusProxy<!-- -->-derived type of proxy to create.
+ * g_dbus_proxy_new_for_bus_sync:
+ * @bus_type: A #GBusType.
  * @flags: Flags used when constructing the proxy.
- * @info: A #GDBusInterfaceInfo specifying the minimal interface that @proxy conforms to or %NULL.
- * @unique_bus_name: A unique bus name or %NULL if @connection is not a message bus connection.
+ * @info: (allow-none): A #GDBusInterfaceInfo specifying the minimal interface
+ *        that @proxy conforms to or %NULL.
+ * @name: A bus name (well-known or unique).
  * @object_path: An object path.
  * @interface_name: A D-Bus interface name.
- * @cancellable: A #GCancellable or %NULL.
+ * @cancellable: (allow-none): A #GCancellable or %NULL.
  * @error: Return location for error or %NULL.
  *
- * Creates a proxy for accessing @interface_name on the remote object at @object_path
- * owned by @unique_bus_name at @connection and synchronously loads D-Bus properties unless the
- * #G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used.
- *
- * If the #G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
- * match rules for signals. Connect to the #GDBusProxy::g-signal signal
- * to handle signals from the remote object.
+ * Like g_dbus_proxy_new_sync() but takes a #GBusType instead of a #GDBusConnection.
  *
- * This is a synchronous failable constructor. See g_dbus_proxy_new()
- * and g_dbus_proxy_new_finish() for the asynchronous version.
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
  *
  * Returns: A #GDBusProxy or %NULL if error is set. Free with g_object_unref().
  *
  * Since: 2.26
  */
 GDBusProxy *
-g_dbus_proxy_new_sync (GDBusConnection     *connection,
-                       GType                object_type,
-                       GDBusProxyFlags      flags,
-                       GDBusInterfaceInfo  *info,
-                       const gchar         *unique_bus_name,
-                       const gchar         *object_path,
-                       const gchar         *interface_name,
-                       GCancellable        *cancellable,
-                       GError             **error)
+g_dbus_proxy_new_for_bus_sync (GBusType             bus_type,
+                               GDBusProxyFlags      flags,
+                               GDBusInterfaceInfo  *info,
+                               const gchar         *name,
+                               const gchar         *object_path,
+                               const gchar         *interface_name,
+                               GCancellable        *cancellable,
+                               GError             **error)
 {
   GInitable *initable;
 
-  g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
-  g_return_val_if_fail (g_type_is_a (object_type, G_TYPE_DBUS_PROXY), NULL);
-  g_return_val_if_fail ((unique_bus_name == NULL && g_dbus_connection_get_unique_name (connection) == NULL) ||
-                        g_dbus_is_unique_name (unique_bus_name), NULL);
+  g_return_val_if_fail (g_dbus_is_name (name), NULL);
   g_return_val_if_fail (g_variant_is_object_path (object_path), NULL);
   g_return_val_if_fail (g_dbus_is_interface_name (interface_name), NULL);
 
-  initable = g_initable_new (object_type,
+  initable = g_initable_new (G_TYPE_DBUS_PROXY,
                              cancellable,
                              error,
                              "g-flags", flags,
                              "g-interface-info", info,
-                             "g-unique-bus-name", unique_bus_name,
-                             "g-connection", connection,
+                             "g-name", name,
+                             "g-bus-type", bus_type,
                              "g-object-path", object_path,
                              "g-interface-name", interface_name,
                              NULL);
@@ -1177,7 +2303,7 @@ g_dbus_proxy_new_sync (GDBusConnection     *connection,
  *
  * Gets the connection @proxy is for.
  *
- * Returns: A #GDBusConnection owned by @proxy. Do not free.
+ * Returns: (transfer none): A #GDBusConnection owned by @proxy. Do not free.
  *
  * Since: 2.26
  */
@@ -1206,20 +2332,46 @@ g_dbus_proxy_get_flags (GDBusProxy *proxy)
 }
 
 /**
- * g_dbus_proxy_get_unique_bus_name:
+ * g_dbus_proxy_get_name:
  * @proxy: A #GDBusProxy.
  *
- * Gets the unique bus name @proxy is for.
+ * Gets the name that @proxy was constructed for.
  *
  * Returns: A string owned by @proxy. Do not free.
  *
  * Since: 2.26
  */
 const gchar *
-g_dbus_proxy_get_unique_bus_name (GDBusProxy *proxy)
+g_dbus_proxy_get_name (GDBusProxy *proxy)
+{
+  g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
+  return proxy->priv->name;
+}
+
+/**
+ * g_dbus_proxy_get_name_owner:
+ * @proxy: A #GDBusProxy.
+ *
+ * The unique name that owns the name that @proxy is for or %NULL if
+ * no-one currently owns that name. You may connect to the
+ * #GObject::notify signal to track changes to the
+ * #GDBusProxy:g-name-owner property.
+ *
+ * Returns: The name owner or %NULL if no name owner exists. Free with g_free().
+ *
+ * Since: 2.26
+ */
+gchar *
+g_dbus_proxy_get_name_owner (GDBusProxy *proxy)
 {
+  gchar *ret;
+
   g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
-  return proxy->priv->unique_bus_name;
+
+  G_LOCK (properties_lock);
+  ret = g_strdup (proxy->priv->name_owner);
+  G_UNLOCK (properties_lock);
+  return ret;
 }
 
 /**
@@ -1273,8 +2425,14 @@ g_dbus_proxy_get_interface_name (GDBusProxy *proxy)
 gint
 g_dbus_proxy_get_default_timeout (GDBusProxy *proxy)
 {
+  gint ret;
+
   g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), -1);
-  return proxy->priv->timeout_msec;
+
+  G_LOCK (properties_lock);
+  ret = proxy->priv->timeout_msec;
+  G_UNLOCK (properties_lock);
+  return ret;
 }
 
 /**
@@ -1297,22 +2455,28 @@ g_dbus_proxy_set_default_timeout (GDBusProxy *proxy,
   g_return_if_fail (G_IS_DBUS_PROXY (proxy));
   g_return_if_fail (timeout_msec == -1 || timeout_msec >= 0);
 
-  /* TODO: locking? */
+  G_LOCK (properties_lock);
+
   if (proxy->priv->timeout_msec != timeout_msec)
     {
       proxy->priv->timeout_msec = timeout_msec;
+      G_UNLOCK (properties_lock);
+
       g_object_notify (G_OBJECT (proxy), "g-default-timeout");
     }
+  else
+    {
+      G_UNLOCK (properties_lock);
+    }
 }
 
 /**
  * g_dbus_proxy_get_interface_info:
  * @proxy: A #GDBusProxy
  *
- * Returns the #GDBusInterfaceInfo, if any, specifying the minimal
- * interface that @proxy conforms to.
- *
- * See the #GDBusProxy:g-interface-info property for more details.
+ * Returns the #GDBusInterfaceInfo, if any, specifying the interface
+ * that @proxy conforms to. See the #GDBusProxy:g-interface-info
+ * property for more details.
  *
  * Returns: A #GDBusInterfaceInfo or %NULL. Do not unref the returned
  * object, it is owned by @proxy.
@@ -1322,22 +2486,27 @@ g_dbus_proxy_set_default_timeout (GDBusProxy *proxy,
 GDBusInterfaceInfo *
 g_dbus_proxy_get_interface_info (GDBusProxy *proxy)
 {
+  GDBusInterfaceInfo *ret;
+
   g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
-  return proxy->priv->expected_interface;
+
+  G_LOCK (properties_lock);
+  ret = proxy->priv->expected_interface;
+  G_UNLOCK (properties_lock);
+  /* FIXME: returning a borrowed ref with no guarantee that nobody will
+   * call g_dbus_proxy_set_interface_info() and make it invalid...
+   */
+  return ret;
 }
 
 /**
  * g_dbus_proxy_set_interface_info:
  * @proxy: A #GDBusProxy
- * @info: Minimum interface this proxy conforms to or %NULL to unset.
+ * @info: (allow-none): Minimum interface this proxy conforms to or %NULL to unset.
  *
  * Ensure that interactions with @proxy conform to the given
- * interface.  For example, when completing a method call, if the type
- * signature of the message isn't what's expected, the given #GError
- * is set.  Signals that have a type signature mismatch are simply
- * dropped.
- *
- * See the #GDBusProxy:g-interface-info property for more details.
+ * interface. See the #GDBusProxy:g-interface-info property for more
+ * details.
  *
  * Since: 2.26
  */
@@ -1346,103 +2515,438 @@ g_dbus_proxy_set_interface_info (GDBusProxy         *proxy,
                                  GDBusInterfaceInfo *info)
 {
   g_return_if_fail (G_IS_DBUS_PROXY (proxy));
+  G_LOCK (properties_lock);
+
   if (proxy->priv->expected_interface != NULL)
-    g_dbus_interface_info_unref (proxy->priv->expected_interface);
+    {
+      g_dbus_interface_info_cache_release (proxy->priv->expected_interface);
+      g_dbus_interface_info_unref (proxy->priv->expected_interface);
+    }
   proxy->priv->expected_interface = info != NULL ? g_dbus_interface_info_ref (info) : NULL;
+  if (proxy->priv->expected_interface != NULL)
+    g_dbus_interface_info_cache_build (proxy->priv->expected_interface);
+
+  G_UNLOCK (properties_lock);
+}
+
+/* ---------------------------------------------------------------------------------------------------- */
+
+static gboolean
+maybe_split_method_name (const gchar  *method_name,
+                         gchar       **out_interface_name,
+                         const gchar **out_method_name)
+{
+  gboolean was_split;
+
+  was_split = FALSE;
+  g_assert (out_interface_name != NULL);
+  g_assert (out_method_name != NULL);
+  *out_interface_name = NULL;
+  *out_method_name = NULL;
+
+  if (strchr (method_name, '.') != NULL)
+    {
+      gchar *p;
+      gchar *last_dot;
+
+      p = g_strdup (method_name);
+      last_dot = strrchr (p, '.');
+      *last_dot = '\0';
+
+      *out_interface_name = p;
+      *out_method_name = last_dot + 1;
+
+      was_split = TRUE;
+    }
+
+  return was_split;
+}
+
+typedef struct
+{
+  GVariant *value;
+#ifdef G_OS_UNIX
+  GUnixFDList *fd_list;
+#endif
+} ReplyData;
+
+static void
+reply_data_free (ReplyData *data)
+{
+  g_variant_unref (data->value);
+#ifdef G_OS_UNIX
+  if (data->fd_list != NULL)
+    g_object_unref (data->fd_list);
+#endif
+  g_slice_free (ReplyData, data);
+}
+
+static void
+reply_cb (GDBusConnection *connection,
+          GAsyncResult    *res,
+          gpointer         user_data)
+{
+  GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (user_data);
+  GVariant *value;
+  GError *error;
+#ifdef G_OS_UNIX
+  GUnixFDList *fd_list;
+#endif
+
+  error = NULL;
+#ifdef G_OS_UNIX
+  value = g_dbus_connection_call_with_unix_fd_list_finish (connection,
+                                                           &fd_list,
+                                                           res,
+                                                           &error);
+#else
+  value = g_dbus_connection_call_finish (connection,
+                                         res,
+                                         &error);
+#endif
+  if (error != NULL)
+    {
+      g_simple_async_result_take_error (simple, error);
+    }
+  else
+    {
+      ReplyData *data;
+      data = g_slice_new0 (ReplyData);
+      data->value = value;
+#ifdef G_OS_UNIX
+      data->fd_list = fd_list;
+#endif
+      g_simple_async_result_set_op_res_gpointer (simple, data, (GDestroyNotify) reply_data_free);
+    }
+
+  /* no need to complete in idle since the method GDBusConnection already does */
+  g_simple_async_result_complete (simple);
+  g_object_unref (simple);
+}
+
+/* properties_lock must be held for as long as you will keep the
+ * returned value
+ */
+static const GDBusMethodInfo *
+lookup_method_info (GDBusProxy  *proxy,
+                    const gchar *method_name)
+{
+  const GDBusMethodInfo *info = NULL;
+
+  if (proxy->priv->expected_interface == NULL)
+    goto out;
+
+  info = g_dbus_interface_info_lookup_method (proxy->priv->expected_interface, method_name);
+
+out:
+  return info;
+}
+
+/* properties_lock must be held for as long as you will keep the
+ * returned value
+ */
+static const gchar *
+get_destination_for_call (GDBusProxy *proxy)
+{
+  const gchar *ret;
+
+  ret = NULL;
+
+  /* If proxy->priv->name is a unique name, then proxy->priv->name_owner
+   * is never NULL and always the same as proxy->priv->name. We use this
+   * knowledge to avoid checking if proxy->priv->name is a unique or
+   * well-known name.
+   */
+  ret = proxy->priv->name_owner;
+  if (ret != NULL)
+    goto out;
+
+  if (proxy->priv->flags & G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START)
+    goto out;
+
+  ret = proxy->priv->name;
+
+ out:
+  return ret;
+}
+
+/* ---------------------------------------------------------------------------------------------------- */
+
+static void
+g_dbus_proxy_call_internal (GDBusProxy          *proxy,
+                            const gchar         *method_name,
+                            GVariant            *parameters,
+                            GDBusCallFlags       flags,
+                            gint                 timeout_msec,
+                            GUnixFDList         *fd_list,
+                            GCancellable        *cancellable,
+                            GAsyncReadyCallback  callback,
+                            gpointer             user_data)
+{
+  GSimpleAsyncResult *simple;
+  gboolean was_split;
+  gchar *split_interface_name;
+  const gchar *split_method_name;
+  const gchar *target_method_name;
+  const gchar *target_interface_name;
+  gchar *destination;
+  GVariantType *reply_type;
+  GAsyncReadyCallback my_callback;
+
+  g_return_if_fail (G_IS_DBUS_PROXY (proxy));
+  g_return_if_fail (g_dbus_is_member_name (method_name) || g_dbus_is_interface_name (method_name));
+  g_return_if_fail (parameters == NULL || g_variant_is_of_type (parameters, G_VARIANT_TYPE_TUPLE));
+  g_return_if_fail (timeout_msec == -1 || timeout_msec >= 0);
+#ifdef G_OS_UNIX
+  g_return_if_fail (fd_list == NULL || G_IS_UNIX_FD_LIST (fd_list));
+#else
+  g_return_if_fail (fd_list == NULL);
+#endif
+
+  reply_type = NULL;
+  split_interface_name = NULL;
+
+  /* g_dbus_connection_call() is optimised for the case of a NULL
+   * callback.  If we get a NULL callback from our user then make sure
+   * we pass along a NULL callback for ourselves as well.
+   */
+  if (callback != NULL)
+    {
+      my_callback = (GAsyncReadyCallback) reply_cb;
+      simple = g_simple_async_result_new (G_OBJECT (proxy),
+                                          callback,
+                                          user_data,
+                                          g_dbus_proxy_call_internal);
+      g_simple_async_result_set_check_cancellable (simple, cancellable);
+    }
+  else
+    {
+      my_callback = NULL;
+      simple = NULL;
+    }
+
+  G_LOCK (properties_lock);
+
+  was_split = maybe_split_method_name (method_name, &split_interface_name, &split_method_name);
+  target_method_name = was_split ? split_method_name : method_name;
+  target_interface_name = was_split ? split_interface_name : proxy->priv->interface_name;
+
+  /* Warn if method is unexpected (cf. :g-interface-info) */
+  if (!was_split)
+    {
+      const GDBusMethodInfo *expected_method_info;
+      expected_method_info = lookup_method_info (proxy, target_method_name);
+      if (expected_method_info != NULL)
+        reply_type = _g_dbus_compute_complete_signature (expected_method_info->out_args);
+    }
+
+  destination = NULL;
+  if (proxy->priv->name != NULL)
+    {
+      destination = g_strdup (get_destination_for_call (proxy));
+      if (destination == NULL)
+        {
+          if (simple != NULL)
+            {
+              g_simple_async_result_set_error (simple,
+                                               G_IO_ERROR,
+                                               G_IO_ERROR_FAILED,
+                                               _("Cannot invoke method; proxy is for a well-known name without an owner and proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag"));
+              g_simple_async_result_complete_in_idle (simple);
+              g_object_unref (simple);
+            }
+          G_UNLOCK (properties_lock);
+          goto out;
+        }
+    }
+
+  G_UNLOCK (properties_lock);
+
+#ifdef G_OS_UNIX
+  g_dbus_connection_call_with_unix_fd_list (proxy->priv->connection,
+                                            destination,
+                                            proxy->priv->object_path,
+                                            target_interface_name,
+                                            target_method_name,
+                                            parameters,
+                                            reply_type,
+                                            flags,
+                                            timeout_msec == -1 ? proxy->priv->timeout_msec : timeout_msec,
+                                            fd_list,
+                                            cancellable,
+                                            my_callback,
+                                            simple);
+#else
+  g_dbus_connection_call (proxy->priv->connection,
+                          destination,
+                          proxy->priv->object_path,
+                          target_interface_name,
+                          target_method_name,
+                          parameters,
+                          reply_type,
+                          flags,
+                          timeout_msec == -1 ? proxy->priv->timeout_msec : timeout_msec,
+                          cancellable,
+                          my_callback,
+                          simple);
+#endif
+
+ out:
+  if (reply_type != NULL)
+    g_variant_type_free (reply_type);
+
+  g_free (destination);
+  g_free (split_interface_name);
 }
 
-/* ---------------------------------------------------------------------------------------------------- */
-
-static gboolean
-maybe_split_method_name (const gchar  *method_name,
-                         gchar       **out_interface_name,
-                         const gchar **out_method_name)
+static GVariant *
+g_dbus_proxy_call_finish_internal (GDBusProxy    *proxy,
+                                   GUnixFDList  **out_fd_list,
+                                   GAsyncResult  *res,
+                                   GError       **error)
 {
-  gboolean was_split;
+  GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
+  GVariant *value;
+  ReplyData *data;
 
-  was_split = FALSE;
-  g_assert (out_interface_name != NULL);
-  g_assert (out_method_name != NULL);
-  *out_interface_name = NULL;
-  *out_method_name = NULL;
+  g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
+  g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
+  g_return_val_if_fail (error == NULL || *error == NULL, NULL);
 
-  if (strchr (method_name, '.') != NULL)
-    {
-      gchar *p;
-      gchar *last_dot;
+  g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_dbus_proxy_call_internal);
 
-      p = g_strdup (method_name);
-      last_dot = strrchr (p, '.');
-      *last_dot = '\0';
+  value = NULL;
 
-      *out_interface_name = p;
-      *out_method_name = last_dot + 1;
+  if (g_simple_async_result_propagate_error (simple, error))
+    goto out;
 
-      was_split = TRUE;
-    }
+  data = g_simple_async_result_get_op_res_gpointer (simple);
+  value = g_variant_ref (data->value);
+#ifdef G_OS_UNIX
+  if (out_fd_list != NULL)
+    *out_fd_list = data->fd_list != NULL ? g_object_ref (data->fd_list) : NULL;
+#endif
 
-  return was_split;
+ out:
+  return value;
 }
 
-
-static void
-reply_cb (GDBusConnection *connection,
-          GAsyncResult    *res,
-          gpointer         user_data)
+static GVariant *
+g_dbus_proxy_call_sync_internal (GDBusProxy      *proxy,
+                                 const gchar     *method_name,
+                                 GVariant        *parameters,
+                                 GDBusCallFlags   flags,
+                                 gint             timeout_msec,
+                                 GUnixFDList     *fd_list,
+                                 GUnixFDList    **out_fd_list,
+                                 GCancellable    *cancellable,
+                                 GError         **error)
 {
-  GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (user_data);
-  GVariant *value;
-  GError *error;
+  GVariant *ret;
+  gboolean was_split;
+  gchar *split_interface_name;
+  const gchar *split_method_name;
+  const gchar *target_method_name;
+  const gchar *target_interface_name;
+  gchar *destination;
+  GVariantType *reply_type;
 
-  error = NULL;
-  value = g_dbus_connection_call_finish (connection,
-                                         res,
-                                         &error);
-  if (error != NULL)
+  g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
+  g_return_val_if_fail (g_dbus_is_member_name (method_name) || g_dbus_is_interface_name (method_name), NULL);
+  g_return_val_if_fail (parameters == NULL || g_variant_is_of_type (parameters, G_VARIANT_TYPE_TUPLE), NULL);
+  g_return_val_if_fail (timeout_msec == -1 || timeout_msec >= 0, NULL);
+#ifdef G_OS_UNIX
+  g_return_val_if_fail (fd_list == NULL || G_IS_UNIX_FD_LIST (fd_list), NULL);
+#else
+  g_return_val_if_fail (fd_list == NULL, NULL);
+#endif
+  g_return_val_if_fail (error == NULL || *error == NULL, NULL);
+
+  reply_type = NULL;
+
+  G_LOCK (properties_lock);
+
+  was_split = maybe_split_method_name (method_name, &split_interface_name, &split_method_name);
+  target_method_name = was_split ? split_method_name : method_name;
+  target_interface_name = was_split ? split_interface_name : proxy->priv->interface_name;
+
+  /* Warn if method is unexpected (cf. :g-interface-info) */
+  if (!was_split)
     {
-      g_simple_async_result_set_from_error (simple,
-                                            error);
-      g_error_free (error);
+      const GDBusMethodInfo *expected_method_info;
+      expected_method_info = lookup_method_info (proxy, target_method_name);
+      if (expected_method_info != NULL)
+        reply_type = _g_dbus_compute_complete_signature (expected_method_info->out_args);
     }
-  else
+
+  destination = NULL;
+  if (proxy->priv->name != NULL)
     {
-      g_simple_async_result_set_op_res_gpointer (simple,
-                                                 value,
-                                                 (GDestroyNotify) g_variant_unref);
+      destination = g_strdup (get_destination_for_call (proxy));
+      if (destination == NULL)
+        {
+          g_set_error_literal (error,
+                               G_IO_ERROR,
+                               G_IO_ERROR_FAILED,
+                               _("Cannot invoke method; proxy is for a well-known name without an owner and proxy was constructed with the G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START flag"));
+          ret = NULL;
+          G_UNLOCK (properties_lock);
+          goto out;
+        }
     }
 
-  /* no need to complete in idle since the method GDBusConnection already does */
-  g_simple_async_result_complete (simple);
-}
-
-static const GDBusMethodInfo *
-lookup_method_info_or_warn (GDBusProxy  *proxy,
-                            const gchar *method_name)
-{
-  const GDBusMethodInfo *info;
+  G_UNLOCK (properties_lock);
+
+#ifdef G_OS_UNIX
+  ret = g_dbus_connection_call_with_unix_fd_list_sync (proxy->priv->connection,
+                                                       destination,
+                                                       proxy->priv->object_path,
+                                                       target_interface_name,
+                                                       target_method_name,
+                                                       parameters,
+                                                       reply_type,
+                                                       flags,
+                                                       timeout_msec == -1 ? proxy->priv->timeout_msec : timeout_msec,
+                                                       fd_list,
+                                                       out_fd_list,
+                                                       cancellable,
+                                                       error);
+#else
+  ret = g_dbus_connection_call_sync (proxy->priv->connection,
+                                     destination,
+                                     proxy->priv->object_path,
+                                     target_interface_name,
+                                     target_method_name,
+                                     parameters,
+                                     reply_type,
+                                     flags,
+                                     timeout_msec == -1 ? proxy->priv->timeout_msec : timeout_msec,
+                                     cancellable,
+                                     error);
+#endif
 
-  if (proxy->priv->expected_interface == NULL)
-    return NULL;
+ out:
+  if (reply_type != NULL)
+    g_variant_type_free (reply_type);
 
-  info = g_dbus_interface_info_lookup_method (proxy->priv->expected_interface, method_name);
-  if (info == NULL)
-    {
-      g_warning ("Trying to invoke method %s which isn't in expected interface %s",
-                 method_name, proxy->priv->expected_interface->name);
-    }
+  g_free (destination);
+  g_free (split_interface_name);
 
-  return info;
+  return ret;
 }
 
+/* ---------------------------------------------------------------------------------------------------- */
+
 /**
  * g_dbus_proxy_call:
  * @proxy: A #GDBusProxy.
  * @method_name: Name of method to invoke.
- * @parameters: A #GVariant tuple with parameters for the signal or %NULL if not passing parameters.
+ * @parameters: (allow-none): A #GVariant tuple with parameters for the signal or %NULL if not passing parameters.
  * @flags: Flags from the #GDBusCallFlags enumeration.
- * @timeout_msec: The timeout in milliseconds or -1 to use the proxy default timeout.
- * @cancellable: A #GCancellable or %NULL.
- * @callback: A #GAsyncReadyCallback to call when the request is satisfied or %NULL if you don't
+ * @timeout_msec: The timeout in milliseconds (with %G_MAXINT meaning
+ *                "infinite") or -1 to use the proxy default timeout.
+ * @cancellable: (allow-none): A #GCancellable or %NULL.
+ * @callback: (allow-none): A #GAsyncReadyCallback to call when the request is satisfied or %NULL if you don't
  * care about the result of the method invocation.
  * @user_data: The data to pass to @callback.
  *
@@ -1461,7 +2965,7 @@ lookup_method_info_or_warn (GDBusProxy  *proxy,
  *
  * If the @parameters #GVariant is floating, it is consumed. This allows
  * convenient 'inline' use of g_variant_new(), e.g.:
- * |[
+ * |[<!-- language="C" -->
  *  g_dbus_proxy_call (proxy,
  *                     "TwoStrings",
  *                     g_variant_new ("(ss)",
@@ -1471,17 +2975,24 @@ lookup_method_info_or_warn (GDBusProxy  *proxy,
  *                     -1,
  *                     NULL,
  *                     (GAsyncReadyCallback) two_strings_done,
- *                     &amp;data);
+ *                     &data);
  * ]|
  *
+ * If @proxy has an expected interface (see
+ * #GDBusProxy:g-interface-info) and @method_name is referenced by it,
+ * then the return value is checked against the return type.
+ *
  * This is an asynchronous method. When the operation is finished,
  * @callback will be invoked in the
- * <link linkend="g-main-context-push-thread-default">thread-default
- * main loop</link> of the thread you are calling this method from.
+ * [thread-default main context][g-main-context-push-thread-default]
+ * of the thread you are calling this method from.
  * You can then call g_dbus_proxy_call_finish() to get the result of
  * the operation. See g_dbus_proxy_call_sync() for the synchronous
  * version of this method.
  *
+ * If @callback is %NULL then the D-Bus method call message will be sent with
+ * the %G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED flag set.
+ *
  * Since: 2.26
  */
 void
@@ -1494,56 +3005,7 @@ g_dbus_proxy_call (GDBusProxy          *proxy,
                    GAsyncReadyCallback  callback,
                    gpointer             user_data)
 {
-  GSimpleAsyncResult *simple;
-  gboolean was_split;
-  gchar *split_interface_name;
-  const gchar *split_method_name;
-  const GDBusMethodInfo *expected_method_info;
-  const gchar *target_method_name;
-  const gchar *target_interface_name;
-  GVariantType *reply_type;
-
-  g_return_if_fail (G_IS_DBUS_PROXY (proxy));
-  g_return_if_fail (g_dbus_is_member_name (method_name) || g_dbus_is_interface_name (method_name));
-  g_return_if_fail (parameters == NULL || g_variant_is_of_type (parameters, G_VARIANT_TYPE_TUPLE));
-  g_return_if_fail (timeout_msec == -1 || timeout_msec >= 0);
-
-  simple = g_simple_async_result_new (G_OBJECT (proxy),
-                                      callback,
-                                      user_data,
-                                      g_dbus_proxy_call);
-
-  was_split = maybe_split_method_name (method_name, &split_interface_name, &split_method_name);
-  target_method_name = was_split ? split_method_name : method_name;
-  target_interface_name = was_split ? split_interface_name : proxy->priv->interface_name;
-
-  g_object_set_data_full (G_OBJECT (simple), "-gdbus-proxy-method-name", g_strdup (target_method_name), g_free);
-
-  /* Just warn here */
-  expected_method_info = lookup_method_info_or_warn (proxy, target_method_name);
-
-  if (expected_method_info)
-    reply_type = _g_dbus_compute_complete_signature (expected_method_info->out_args);
-  else
-    reply_type = NULL;
-
-  g_dbus_connection_call (proxy->priv->connection,
-                          proxy->priv->unique_bus_name,
-                          proxy->priv->object_path,
-                          target_interface_name,
-                          target_method_name,
-                          parameters,
-                          reply_type,
-                          flags,
-                          timeout_msec == -1 ? proxy->priv->timeout_msec : timeout_msec,
-                          cancellable,
-                          (GAsyncReadyCallback) reply_cb,
-                          simple);
-
-  if (reply_type != NULL)
-    g_variant_type_free (reply_type);
-
-  g_free (split_interface_name);
+  g_dbus_proxy_call_internal (proxy, method_name, parameters, flags, timeout_msec, NULL, cancellable, callback, user_data);
 }
 
 /**
@@ -1564,36 +3026,19 @@ g_dbus_proxy_call_finish (GDBusProxy    *proxy,
                           GAsyncResult  *res,
                           GError       **error)
 {
-  GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (res);
-  GVariant *value;
-  const char *method_name;
-
-  g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
-  g_return_val_if_fail (G_IS_ASYNC_RESULT (res), NULL);
-  g_return_val_if_fail (error == NULL || *error == NULL, NULL);
-
-  g_warn_if_fail (g_simple_async_result_get_source_tag (simple) == g_dbus_proxy_call);
-
-  value = NULL;
-
-  if (g_simple_async_result_propagate_error (simple, error))
-    goto out;
-
-  value = g_simple_async_result_get_op_res_gpointer (simple);
-  method_name = g_object_get_data (G_OBJECT (simple), "-gdbus-proxy-method-name");
-
- out:
-  return value;
+  return g_dbus_proxy_call_finish_internal (proxy, NULL, res, error);
 }
 
 /**
  * g_dbus_proxy_call_sync:
  * @proxy: A #GDBusProxy.
  * @method_name: Name of method to invoke.
- * @parameters: A #GVariant tuple with parameters for the signal or %NULL if not passing parameters.
+ * @parameters: (allow-none): A #GVariant tuple with parameters for the signal
+ *              or %NULL if not passing parameters.
  * @flags: Flags from the #GDBusCallFlags enumeration.
- * @timeout_msec: The timeout in milliseconds or -1 to use the proxy default timeout.
- * @cancellable: A #GCancellable or %NULL.
+ * @timeout_msec: The timeout in milliseconds (with %G_MAXINT meaning
+ *                "infinite") or -1 to use the proxy default timeout.
+ * @cancellable: (allow-none): A #GCancellable or %NULL.
  * @error: Return location for error or %NULL.
  *
  * Synchronously invokes the @method_name method on @proxy.
@@ -1611,7 +3056,7 @@ g_dbus_proxy_call_finish (GDBusProxy    *proxy,
  *
  * If the @parameters #GVariant is floating, it is consumed. This allows
  * convenient 'inline' use of g_variant_new(), e.g.:
- * |[
+ * |[<!-- language="C" -->
  *  g_dbus_proxy_call_sync (proxy,
  *                          "TwoStrings",
  *                          g_variant_new ("(ss)",
@@ -1620,13 +3065,17 @@ g_dbus_proxy_call_finish (GDBusProxy    *proxy,
  *                          G_DBUS_CALL_FLAGS_NONE,
  *                          -1,
  *                          NULL,
- *                          &amp;error);
+ *                          &error);
  * ]|
  *
  * The calling thread is blocked until a reply is received. See
  * g_dbus_proxy_call() for the asynchronous version of this
  * method.
  *
+ * If @proxy has an expected interface (see
+ * #GDBusProxy:g-interface-info) and @method_name is referenced by it,
+ * then the return value is checked against the return type.
+ *
  * Returns: %NULL if @error is set. Otherwise a #GVariant tuple with
  * return values. Free with g_variant_unref().
  *
@@ -1641,66 +3090,159 @@ g_dbus_proxy_call_sync (GDBusProxy      *proxy,
                         GCancellable    *cancellable,
                         GError         **error)
 {
-  GVariant *ret;
-  gboolean was_split;
-  gchar *split_interface_name;
-  const gchar *split_method_name;
-  const GDBusMethodInfo *expected_method_info;
-  const gchar *target_method_name;
-  const gchar *target_interface_name;
-  GVariantType *reply_type;
+  return g_dbus_proxy_call_sync_internal (proxy, method_name, parameters, flags, timeout_msec, NULL, NULL, cancellable, error);
+}
 
-  g_return_val_if_fail (G_IS_DBUS_PROXY (proxy), NULL);
-  g_return_val_if_fail (g_dbus_is_member_name (method_name) || g_dbus_is_interface_name (method_name), NULL);
-  g_return_val_if_fail (parameters == NULL || g_variant_is_of_type (parameters, G_VARIANT_TYPE_TUPLE), NULL);
-  g_return_val_if_fail (timeout_msec == -1 || timeout_msec >= 0, NULL);
-  g_return_val_if_fail (error == NULL || *error == NULL, NULL);
+/* ---------------------------------------------------------------------------------------------------- */
 
-  was_split = maybe_split_method_name (method_name, &split_interface_name, &split_method_name);
-  target_method_name = was_split ? split_method_name : method_name;
-  target_interface_name = was_split ? split_interface_name : proxy->priv->interface_name;
+#ifdef G_OS_UNIX
 
-  if (proxy->priv->expected_interface)
-    {
-      expected_method_info = g_dbus_interface_info_lookup_method (proxy->priv->expected_interface, target_method_name);
-      if (expected_method_info == NULL)
-        {
-          g_warning ("Trying to invoke method `%s' which isn't in expected interface `%s'",
-                     target_method_name,
-                     target_interface_name);
-        }
-    }
-  else
-    {
-      expected_method_info = NULL;
-    }
+/**
+ * g_dbus_proxy_call_with_unix_fd_list:
+ * @proxy: A #GDBusProxy.
+ * @method_name: Name of method to invoke.
+ * @parameters: (allow-none): A #GVariant tuple with parameters for the signal or %NULL if not passing parameters.
+ * @flags: Flags from the #GDBusCallFlags enumeration.
+ * @timeout_msec: The timeout in milliseconds (with %G_MAXINT meaning
+ *                "infinite") or -1 to use the proxy default timeout.
+ * @fd_list: (allow-none): A #GUnixFDList or %NULL.
+ * @cancellable: (allow-none): A #GCancellable or %NULL.
+ * @callback: (allow-none): A #GAsyncReadyCallback to call when the request is satisfied or %NULL if you don't
+ * care about the result of the method invocation.
+ * @user_data: The data to pass to @callback.
+ *
+ * Like g_dbus_proxy_call() but also takes a #GUnixFDList object.
+ *
+ * This method is only available on UNIX.
+ *
+ * Since: 2.30
+ */
+void
+g_dbus_proxy_call_with_unix_fd_list (GDBusProxy          *proxy,
+                                     const gchar         *method_name,
+                                     GVariant            *parameters,
+                                     GDBusCallFlags       flags,
+                                     gint                 timeout_msec,
+                                     GUnixFDList         *fd_list,
+                                     GCancellable        *cancellable,
+                                     GAsyncReadyCallback  callback,
+                                     gpointer             user_data)
+{
+  g_dbus_proxy_call_internal (proxy, method_name, parameters, flags, timeout_msec, fd_list, cancellable, callback, user_data);
+}
 
-  if (expected_method_info)
-    reply_type = _g_dbus_compute_complete_signature (expected_method_info->out_args);
-  else
-    reply_type = NULL;
+/**
+ * g_dbus_proxy_call_with_unix_fd_list_finish:
+ * @proxy: A #GDBusProxy.
+ * @out_fd_list: (out) (allow-none): Return location for a #GUnixFDList or %NULL.
+ * @res: A #GAsyncResult obtained from the #GAsyncReadyCallback passed to g_dbus_proxy_call_with_unix_fd_list().
+ * @error: Return location for error or %NULL.
+ *
+ * Finishes an operation started with g_dbus_proxy_call_with_unix_fd_list().
+ *
+ * Returns: %NULL if @error is set. Otherwise a #GVariant tuple with
+ * return values. Free with g_variant_unref().
+ *
+ * Since: 2.30
+ */
+GVariant *
+g_dbus_proxy_call_with_unix_fd_list_finish (GDBusProxy    *proxy,
+                                            GUnixFDList  **out_fd_list,
+                                            GAsyncResult  *res,
+                                            GError       **error)
+{
+  return g_dbus_proxy_call_finish_internal (proxy, out_fd_list, res, error);
+}
 
-  ret = g_dbus_connection_call_sync (proxy->priv->connection,
-                                     proxy->priv->unique_bus_name,
-                                     proxy->priv->object_path,
-                                     target_interface_name,
-                                     target_method_name,
-                                     parameters,
-                                     reply_type,
-                                     flags,
-                                     timeout_msec == -1 ? proxy->priv->timeout_msec : timeout_msec,
-                                     cancellable,
-                                     error);
+/**
+ * g_dbus_proxy_call_with_unix_fd_list_sync:
+ * @proxy: A #GDBusProxy.
+ * @method_name: Name of method to invoke.
+ * @parameters: (allow-none): A #GVariant tuple with parameters for the signal
+ *              or %NULL if not passing parameters.
+ * @flags: Flags from the #GDBusCallFlags enumeration.
+ * @timeout_msec: The timeout in milliseconds (with %G_MAXINT meaning
+ *                "infinite") or -1 to use the proxy default timeout.
+ * @fd_list: (allow-none): A #GUnixFDList or %NULL.
+ * @out_fd_list: (out) (allow-none): Return location for a #GUnixFDList or %NULL.
+ * @cancellable: (allow-none): A #GCancellable or %NULL.
+ * @error: Return location for error or %NULL.
+ *
+ * Like g_dbus_proxy_call_sync() but also takes and returns #GUnixFDList objects.
+ *
+ * This method is only available on UNIX.
+ *
+ * Returns: %NULL if @error is set. Otherwise a #GVariant tuple with
+ * return values. Free with g_variant_unref().
+ *
+ * Since: 2.30
+ */
+GVariant *
+g_dbus_proxy_call_with_unix_fd_list_sync (GDBusProxy      *proxy,
+                                          const gchar     *method_name,
+                                          GVariant        *parameters,
+                                          GDBusCallFlags   flags,
+                                          gint             timeout_msec,
+                                          GUnixFDList     *fd_list,
+                                          GUnixFDList    **out_fd_list,
+                                          GCancellable    *cancellable,
+                                          GError         **error)
+{
+  return g_dbus_proxy_call_sync_internal (proxy, method_name, parameters, flags, timeout_msec, fd_list, out_fd_list, cancellable, error);
+}
 
-  if (reply_type != NULL)
-    g_variant_type_free (reply_type);
+#endif /* G_OS_UNIX */
 
-  g_free (split_interface_name);
+/* ---------------------------------------------------------------------------------------------------- */
+
+static GDBusInterfaceInfo *
+_g_dbus_proxy_get_info (GDBusInterface *interface)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (interface);
+  return g_dbus_proxy_get_interface_info (proxy);
+}
+
+static GDBusObject *
+_g_dbus_proxy_get_object (GDBusInterface *interface)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (interface);
+  return proxy->priv->object;
+}
+
+static GDBusObject *
+_g_dbus_proxy_dup_object (GDBusInterface *interface)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (interface);
+  GDBusObject *ret = NULL;
 
+  G_LOCK (properties_lock);
+  if (proxy->priv->object != NULL)
+    ret = g_object_ref (proxy->priv->object);
+  G_UNLOCK (properties_lock);
   return ret;
 }
 
-/* ---------------------------------------------------------------------------------------------------- */
+static void
+_g_dbus_proxy_set_object (GDBusInterface *interface,
+                          GDBusObject    *object)
+{
+  GDBusProxy *proxy = G_DBUS_PROXY (interface);
+  G_LOCK (properties_lock);
+  if (proxy->priv->object != NULL)
+    g_object_remove_weak_pointer (G_OBJECT (proxy->priv->object), (gpointer *) &proxy->priv->object);
+  proxy->priv->object = object;
+  if (proxy->priv->object != NULL)
+    g_object_add_weak_pointer (G_OBJECT (proxy->priv->object), (gpointer *) &proxy->priv->object);
+  G_UNLOCK (properties_lock);
+}
+
+static void
+dbus_interface_iface_init (GDBusInterfaceIface *dbus_interface_iface)
+{
+  dbus_interface_iface->get_info   = _g_dbus_proxy_get_info;
+  dbus_interface_iface->get_object = _g_dbus_proxy_get_object;
+  dbus_interface_iface->dup_object = _g_dbus_proxy_dup_object;
+  dbus_interface_iface->set_object = _g_dbus_proxy_set_object;
+}
 
-#define __G_DBUS_PROXY_C__
-#include "gioaliasdef.c"
+/* ---------------------------------------------------------------------------------------------------- */